From c74559cbbb0e401b6ee59dc59422f9450e8cf7ba Mon Sep 17 00:00:00 2001 From: Anthony Volk Date: Thu, 18 Dec 2025 22:49:12 +0400 Subject: [PATCH 01/32] feat: First IndexedDB implementation --- app/package.json | 1 + app/src/storage/index.ts | 41 ++++++ app/src/storage/metadataBulkLoader.ts | 201 ++++++++++++++++++++++++++ app/src/storage/metadataDb.ts | 94 ++++++++++++ package-lock.json | 7 + 5 files changed, 344 insertions(+) create mode 100644 app/src/storage/index.ts create mode 100644 app/src/storage/metadataBulkLoader.ts create mode 100644 app/src/storage/metadataDb.ts diff --git a/app/package.json b/app/package.json index 3d9e54f86..672a18777 100644 --- a/app/package.json +++ b/app/package.json @@ -37,6 +37,7 @@ "@tanstack/react-query": "^5.84.1", "@tanstack/react-query-devtools": "^5.83.0", "dayjs": "^1.11.13", + "dexie": "^4.2.1", "framer-motion": "^12.23.24", "fuse.js": "^7.0.0", "jsonp": "^0.2.1", diff --git a/app/src/storage/index.ts b/app/src/storage/index.ts new file mode 100644 index 000000000..9de7ae7e8 --- /dev/null +++ b/app/src/storage/index.ts @@ -0,0 +1,41 @@ +// Database and types +export { + db, + _closeDb, + _deleteDb, + type Variable, + type Parameter, + type ParameterValue, + type MetadataDescription, +} from "./metadataDb"; + +// Bulk loading +export { + bulkLoadVariables, + bulkLoadParameters, + bulkLoadParameterValues, + clearAndLoadVariables, + clearAndLoadParameters, + clearAndLoadParameterValues, +} from "./metadataBulkLoader"; + +// Queries +export { + getVariablesByVersion, + getParametersByVersion, + getParameterValues, + getAllVariables, + getAllParameters, + getAllParameterValues, + getVariableByName, + getParameterByName, + getMetadataDescription, + setMetadataDescription, +} from "./metadataBulkLoader"; + +// Utilities +export { + clearVersionData, + clearAllStores, + getStoreCounts, +} from "./metadataBulkLoader"; diff --git a/app/src/storage/metadataBulkLoader.ts b/app/src/storage/metadataBulkLoader.ts new file mode 100644 index 000000000..af999cec4 --- /dev/null +++ b/app/src/storage/metadataBulkLoader.ts @@ -0,0 +1,201 @@ +import { + db, + Variable, + Parameter, + ParameterValue, + MetadataDescription, +} from "./metadataDb"; + +/** + * Bulk load variables, replacing any existing records + */ +export async function bulkLoadVariables(records: Variable[]): Promise { + if (records.length === 0) return 0; + await db.variables.bulkPut(records); + return records.length; +} + +/** + * Bulk load parameters, replacing any existing records + */ +export async function bulkLoadParameters(records: Parameter[]): Promise { + if (records.length === 0) return 0; + await db.parameters.bulkPut(records); + return records.length; +} + +/** + * Bulk load parameter values, replacing any existing records + */ +export async function bulkLoadParameterValues( + records: ParameterValue[], +): Promise { + if (records.length === 0) return 0; + await db.parameterValues.bulkPut(records); + return records.length; +} + +/** + * Clear variables and load new records atomically + */ +export async function clearAndLoadVariables( + records: Variable[], +): Promise { + await db.transaction("rw", db.variables, async () => { + await db.variables.clear(); + await db.variables.bulkPut(records); + }); + return records.length; +} + +/** + * Clear parameters and load new records atomically + */ +export async function clearAndLoadParameters( + records: Parameter[], +): Promise { + await db.transaction("rw", db.parameters, async () => { + await db.parameters.clear(); + await db.parameters.bulkPut(records); + }); + return records.length; +} + +/** + * Clear parameter values and load new records atomically + */ +export async function clearAndLoadParameterValues( + records: ParameterValue[], +): Promise { + await db.transaction("rw", db.parameterValues, async () => { + await db.parameterValues.clear(); + await db.parameterValues.bulkPut(records); + }); + return records.length; +} + +/** + * Get all variables for a specific version + */ +export async function getVariablesByVersion( + versionId: string, +): Promise { + return db.variables.where("tax_benefit_model_version_id").equals(versionId).toArray(); +} + +/** + * Get all parameters for a specific version + */ +export async function getParametersByVersion( + versionId: string, +): Promise { + return db.parameters.where("tax_benefit_model_version_id").equals(versionId).toArray(); +} + +/** + * Get all parameter values for a specific parameter + */ +export async function getParameterValues( + parameterId: string, +): Promise { + return db.parameterValues.where("parameter_id").equals(parameterId).toArray(); +} + +/** + * Get all variables + */ +export async function getAllVariables(): Promise { + return db.variables.toArray(); +} + +/** + * Get all parameters + */ +export async function getAllParameters(): Promise { + return db.parameters.toArray(); +} + +/** + * Get all parameter values + */ +export async function getAllParameterValues(): Promise { + return db.parameterValues.toArray(); +} + +/** + * Get a single variable by name + */ +export async function getVariableByName( + name: string, +): Promise { + return db.variables.where("name").equals(name).first(); +} + +/** + * Get a single parameter by name + */ +export async function getParameterByName( + name: string, +): Promise { + return db.parameters.where("name").equals(name).first(); +} + +/** + * Get metadata description for a country + */ +export async function getMetadataDescription( + countryId: string, +): Promise { + return db.metadataDescriptions.get(countryId); +} + +/** + * Update metadata description for a country + */ +export async function setMetadataDescription( + metadata: MetadataDescription, +): Promise { + await db.metadataDescriptions.put(metadata); +} + +/** + * Clear all data for a specific version + */ +export async function clearVersionData(versionId: string): Promise { + await db.transaction("rw", [db.variables, db.parameters], async () => { + await db.variables.where("tax_benefit_model_version_id").equals(versionId).delete(); + await db.parameters.where("tax_benefit_model_version_id").equals(versionId).delete(); + }); +} + +/** + * Clear all stores + */ +export async function clearAllStores(): Promise { + await db.transaction( + "rw", + [db.variables, db.parameters, db.parameterValues, db.metadataDescriptions], + async () => { + await db.variables.clear(); + await db.parameters.clear(); + await db.parameterValues.clear(); + await db.metadataDescriptions.clear(); + }, + ); +} + +/** + * Get record counts for all stores + */ +export async function getStoreCounts(): Promise<{ + variables: number; + parameters: number; + parameterValues: number; +}> { + const [variables, parameters, parameterValues] = await Promise.all([ + db.variables.count(), + db.parameters.count(), + db.parameterValues.count(), + ]); + return { variables, parameters, parameterValues }; +} diff --git a/app/src/storage/metadataDb.ts b/app/src/storage/metadataDb.ts new file mode 100644 index 000000000..b458eb4e4 --- /dev/null +++ b/app/src/storage/metadataDb.ts @@ -0,0 +1,94 @@ +import Dexie, { type EntityTable } from "dexie"; + +/** + * Variable record from V2 API + */ +export interface Variable { + id: string; + name: string; + entity: string; + description: string; + data_type: string; + possible_values: string[] | null; + tax_benefit_model_version_id: string; + created_at: string; +} + +/** + * Parameter record from V2 API + */ +export interface Parameter { + id: string; + name: string; + label: string; + description: string; + data_type: string; + unit: string | null; + tax_benefit_model_version_id: string; + created_at: string; +} + +/** + * Parameter value record from V2 API + */ +export interface ParameterValue { + id: string; + parameter_id: string; + value_json: unknown; + start_date: string; + end_date: string; + policy_id: string | null; + dynamic_id: string | null; + created_at: string; +} + +/** + * Metadata description for tracking loaded state per country + */ +export interface MetadataDescription { + countryId: string; + version: string; + versionId: string; + coreLoaded: boolean; + parametersLoaded: boolean; + timestamp: number; +} + +/** + * PolicyEngine metadata database using Dexie + */ +class PolicyEngineDatabase extends Dexie { + variables!: EntityTable; + parameters!: EntityTable; + parameterValues!: EntityTable; + metadataDescriptions!: EntityTable; + + constructor() { + super("policyengine"); + + this.version(1).stores({ + variables: "id, name, tax_benefit_model_version_id", + parameters: "id, name, tax_benefit_model_version_id", + parameterValues: "id, parameter_id", + metadataDescriptions: "countryId", + }); + } +} + +const db = new PolicyEngineDatabase(); + +export { db }; + +/** + * Close the database connection (internal use only) + */ +export async function _closeDb(): Promise { + db.close(); +} + +/** + * Delete the entire database (internal use only) + */ +export async function _deleteDb(): Promise { + await db.delete(); +} diff --git a/package-lock.json b/package-lock.json index 6357f72c2..b50941c51 100644 --- a/package-lock.json +++ b/package-lock.json @@ -35,6 +35,7 @@ "@tanstack/react-query": "^5.84.1", "@tanstack/react-query-devtools": "^5.83.0", "dayjs": "^1.11.13", + "dexie": "^4.2.1", "framer-motion": "^12.23.24", "fuse.js": "^7.0.0", "jsonp": "^0.2.1", @@ -13391,6 +13392,12 @@ "node": ">=6" } }, + "node_modules/dexie": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/dexie/-/dexie-4.2.1.tgz", + "integrity": "sha512-Ckej0NS6jxQ4Po3OrSQBFddayRhTCic2DoCAG5zacOfOVB9P2Q5Xc5uL/nVa7ZVs+HdMnvUPzLFCB/JwpB6Csg==", + "license": "Apache-2.0" + }, "node_modules/emoji-regex": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", From b797a56a17aa388bcf70aeb5b9e6387d0c4a9e81 Mon Sep 17 00:00:00 2001 From: Anthony Volk Date: Thu, 18 Dec 2025 22:54:57 +0400 Subject: [PATCH 02/32] feat: First API fetching code --- app/src/api/v2/datasets.ts | 29 ++++++++++ app/src/api/v2/index.ts | 25 +++++++++ app/src/api/v2/parameters.ts | 43 +++++++++++++++ app/src/api/v2/taxBenefitModels.ts | 85 ++++++++++++++++++++++++++++++ app/src/api/v2/variables.ts | 25 +++++++++ 5 files changed, 207 insertions(+) create mode 100644 app/src/api/v2/datasets.ts create mode 100644 app/src/api/v2/index.ts create mode 100644 app/src/api/v2/parameters.ts create mode 100644 app/src/api/v2/taxBenefitModels.ts create mode 100644 app/src/api/v2/variables.ts diff --git a/app/src/api/v2/datasets.ts b/app/src/api/v2/datasets.ts new file mode 100644 index 000000000..7e36dc8c1 --- /dev/null +++ b/app/src/api/v2/datasets.ts @@ -0,0 +1,29 @@ +import { API_V2_BASE_URL, getModelId } from "./taxBenefitModels"; + +export interface Dataset { + id: string; + name: string; + description: string; + filepath: string; + year: number; + is_output_dataset: boolean; + tax_benefit_model_id: string; + created_at: string; + updated_at: string; +} + +/** + * Fetch all datasets for a country + */ +export async function fetchDatasets(countryId: string): Promise { + const modelId = getModelId(countryId); + const res = await fetch( + `${API_V2_BASE_URL}/datasets/?tax_benefit_model_id=${modelId}`, + ); + + if (!res.ok) { + throw new Error(`Failed to fetch datasets for ${countryId}`); + } + + return res.json(); +} diff --git a/app/src/api/v2/index.ts b/app/src/api/v2/index.ts new file mode 100644 index 000000000..f3fbaeb36 --- /dev/null +++ b/app/src/api/v2/index.ts @@ -0,0 +1,25 @@ +// Tax benefit models +export { + API_V2_BASE_URL, + COUNTRY_TO_MODEL_ID, + getModelId, + fetchTaxBenefitModels, + fetchModelVersion, + fetchModelVersionId, + type TaxBenefitModel, + type TaxBenefitModelVersion, +} from "./taxBenefitModels"; + +// Variables +export { fetchVariables, type Variable } from "./variables"; + +// Parameters +export { + fetchParameters, + fetchParameterValues, + type Parameter, + type ParameterValue, +} from "./parameters"; + +// Datasets +export { fetchDatasets, type Dataset } from "./datasets"; diff --git a/app/src/api/v2/parameters.ts b/app/src/api/v2/parameters.ts new file mode 100644 index 000000000..226c3eeba --- /dev/null +++ b/app/src/api/v2/parameters.ts @@ -0,0 +1,43 @@ +import { API_V2_BASE_URL, getModelId } from "./taxBenefitModels"; +import type { Parameter, ParameterValue } from "@/storage"; + +export type { Parameter, ParameterValue }; + +const DEFAULT_LIMIT = 10000; + +/** + * Fetch all parameters for a country + */ +export async function fetchParameters( + countryId: string, + limit: number = DEFAULT_LIMIT, +): Promise { + const modelId = getModelId(countryId); + const res = await fetch( + `${API_V2_BASE_URL}/parameters/?tax_benefit_model_id=${modelId}&limit=${limit}`, + ); + + if (!res.ok) { + throw new Error(`Failed to fetch parameters for ${countryId}`); + } + + return res.json(); +} + +/** + * Fetch all parameter values for a country + */ +export async function fetchParameterValues( + countryId: string, +): Promise { + const modelId = getModelId(countryId); + const res = await fetch( + `${API_V2_BASE_URL}/parameter-values/?tax_benefit_model_id=${modelId}`, + ); + + if (!res.ok) { + throw new Error(`Failed to fetch parameter values for ${countryId}`); + } + + return res.json(); +} diff --git a/app/src/api/v2/taxBenefitModels.ts b/app/src/api/v2/taxBenefitModels.ts new file mode 100644 index 000000000..5fb49928f --- /dev/null +++ b/app/src/api/v2/taxBenefitModels.ts @@ -0,0 +1,85 @@ +export const API_V2_BASE_URL = "https://v2.api.policyengine.org"; + +export const COUNTRY_TO_MODEL_ID: Record = { + us: "8ac12923-1282-420e-a440-0fa60d43950a", + uk: "00652f95-f350-4932-b65d-9f9f03b4b8eb", +}; + +export interface TaxBenefitModel { + id: string; + name: string; + description: string; + created_at: string; +} + +export interface TaxBenefitModelVersion { + id: string; + model_id: string; + version: string; +} + +/** + * Fetch all tax benefit models + */ +export async function fetchTaxBenefitModels(): Promise { + const res = await fetch(`${API_V2_BASE_URL}/tax-benefit-models/`); + + if (!res.ok) { + throw new Error("Failed to fetch tax benefit models"); + } + + return res.json(); +} + +/** + * Get the model ID for a country + */ +export function getModelId(countryId: string): string { + const modelId = COUNTRY_TO_MODEL_ID[countryId]; + if (!modelId) { + throw new Error(`Unknown country: ${countryId}`); + } + return modelId; +} + +/** + * Fetch the current version for a country's model + */ +export async function fetchModelVersion(countryId: string): Promise { + const modelId = getModelId(countryId); + const res = await fetch( + `${API_V2_BASE_URL}/tax-benefit-model-versions/?model_id=${modelId}`, + ); + + if (!res.ok) { + throw new Error(`Failed to fetch model version for ${countryId}`); + } + + const versions: TaxBenefitModelVersion[] = await res.json(); + if (versions.length === 0) { + throw new Error(`No versions found for ${countryId}`); + } + + return versions[0].version; +} + +/** + * Fetch the current version ID for a country's model + */ +export async function fetchModelVersionId(countryId: string): Promise { + const modelId = getModelId(countryId); + const res = await fetch( + `${API_V2_BASE_URL}/tax-benefit-model-versions/?model_id=${modelId}`, + ); + + if (!res.ok) { + throw new Error(`Failed to fetch model version for ${countryId}`); + } + + const versions: TaxBenefitModelVersion[] = await res.json(); + if (versions.length === 0) { + throw new Error(`No versions found for ${countryId}`); + } + + return versions[0].id; +} diff --git a/app/src/api/v2/variables.ts b/app/src/api/v2/variables.ts new file mode 100644 index 000000000..b4c8570a1 --- /dev/null +++ b/app/src/api/v2/variables.ts @@ -0,0 +1,25 @@ +import { API_V2_BASE_URL, getModelId } from "./taxBenefitModels"; +import type { Variable } from "@/storage"; + +export type { Variable }; + +const DEFAULT_LIMIT = 10000; + +/** + * Fetch all variables for a country + */ +export async function fetchVariables( + countryId: string, + limit: number = DEFAULT_LIMIT, +): Promise { + const modelId = getModelId(countryId); + const res = await fetch( + `${API_V2_BASE_URL}/variables/?tax_benefit_model_id=${modelId}&limit=${limit}`, + ); + + if (!res.ok) { + throw new Error(`Failed to fetch variables for ${countryId}`); + } + + return res.json(); +} From 23f60752de7efd93cfb64c0f93d656eb84b65872 Mon Sep 17 00:00:00 2001 From: Anthony Volk Date: Fri, 19 Dec 2025 13:47:16 +0400 Subject: [PATCH 03/32] feat: Loaders for parameters, variables, datasets --- app/src/api/v2/datasets.ts | 13 +- app/src/api/v2/index.ts | 11 +- app/src/api/v2/parameters.ts | 7 +- app/src/api/v2/variables.ts | 5 +- app/src/storage/index.ts | 15 ++ app/src/storage/loaders/coreMetadataLoader.ts | 154 ++++++++++++++++++ app/src/storage/loaders/index.ts | 13 ++ app/src/storage/loaders/parametersLoader.ts | 105 ++++++++++++ app/src/storage/metadataBulkLoader.ts | 30 +++- app/src/storage/metadataDb.ts | 24 +++ 10 files changed, 347 insertions(+), 30 deletions(-) create mode 100644 app/src/storage/loaders/coreMetadataLoader.ts create mode 100644 app/src/storage/loaders/index.ts create mode 100644 app/src/storage/loaders/parametersLoader.ts diff --git a/app/src/api/v2/datasets.ts b/app/src/api/v2/datasets.ts index 7e36dc8c1..67cab010e 100644 --- a/app/src/api/v2/datasets.ts +++ b/app/src/api/v2/datasets.ts @@ -1,16 +1,5 @@ import { API_V2_BASE_URL, getModelId } from "./taxBenefitModels"; - -export interface Dataset { - id: string; - name: string; - description: string; - filepath: string; - year: number; - is_output_dataset: boolean; - tax_benefit_model_id: string; - created_at: string; - updated_at: string; -} +import type { Dataset } from "@/storage"; /** * Fetch all datasets for a country diff --git a/app/src/api/v2/index.ts b/app/src/api/v2/index.ts index f3fbaeb36..8ad683508 100644 --- a/app/src/api/v2/index.ts +++ b/app/src/api/v2/index.ts @@ -11,15 +11,10 @@ export { } from "./taxBenefitModels"; // Variables -export { fetchVariables, type Variable } from "./variables"; +export { fetchVariables } from "./variables"; // Parameters -export { - fetchParameters, - fetchParameterValues, - type Parameter, - type ParameterValue, -} from "./parameters"; +export { fetchParameters, fetchParameterValues } from "./parameters"; // Datasets -export { fetchDatasets, type Dataset } from "./datasets"; +export { fetchDatasets } from "./datasets"; diff --git a/app/src/api/v2/parameters.ts b/app/src/api/v2/parameters.ts index 226c3eeba..2e9cb2d4c 100644 --- a/app/src/api/v2/parameters.ts +++ b/app/src/api/v2/parameters.ts @@ -1,12 +1,11 @@ import { API_V2_BASE_URL, getModelId } from "./taxBenefitModels"; import type { Parameter, ParameterValue } from "@/storage"; -export type { Parameter, ParameterValue }; - +// API defaults to 100 records; set high to fetch all const DEFAULT_LIMIT = 10000; /** - * Fetch all parameters for a country + * Fetch all parameters for a country. */ export async function fetchParameters( countryId: string, @@ -25,7 +24,7 @@ export async function fetchParameters( } /** - * Fetch all parameter values for a country + * Fetch all parameter values for a country. */ export async function fetchParameterValues( countryId: string, diff --git a/app/src/api/v2/variables.ts b/app/src/api/v2/variables.ts index b4c8570a1..13f199714 100644 --- a/app/src/api/v2/variables.ts +++ b/app/src/api/v2/variables.ts @@ -1,12 +1,11 @@ import { API_V2_BASE_URL, getModelId } from "./taxBenefitModels"; import type { Variable } from "@/storage"; -export type { Variable }; - +// API defaults to 100 records; set high to fetch all const DEFAULT_LIMIT = 10000; /** - * Fetch all variables for a country + * Fetch all variables for a country. */ export async function fetchVariables( countryId: string, diff --git a/app/src/storage/index.ts b/app/src/storage/index.ts index 9de7ae7e8..49844476f 100644 --- a/app/src/storage/index.ts +++ b/app/src/storage/index.ts @@ -6,6 +6,7 @@ export { type Variable, type Parameter, type ParameterValue, + type Dataset, type MetadataDescription, } from "./metadataDb"; @@ -17,6 +18,7 @@ export { clearAndLoadVariables, clearAndLoadParameters, clearAndLoadParameterValues, + clearAndLoadDatasets, } from "./metadataBulkLoader"; // Queries @@ -27,6 +29,7 @@ export { getAllVariables, getAllParameters, getAllParameterValues, + getAllDatasets, getVariableByName, getParameterByName, getMetadataDescription, @@ -39,3 +42,15 @@ export { clearAllStores, getStoreCounts, } from "./metadataBulkLoader"; + +// Loaders (tiered loading) +export { + loadCoreMetadata, + isCoreMetadataCached, + loadParameters, + isParametersCached, + type CoreMetadata, + type CoreMetadataLoadResult, + type ParametersData, + type ParametersLoadResult, +} from "./loaders"; diff --git a/app/src/storage/loaders/coreMetadataLoader.ts b/app/src/storage/loaders/coreMetadataLoader.ts new file mode 100644 index 000000000..b9dee7452 --- /dev/null +++ b/app/src/storage/loaders/coreMetadataLoader.ts @@ -0,0 +1,154 @@ +import { + fetchVariables, + fetchDatasets, + fetchModelVersion, + fetchModelVersionId, +} from "@/api/v2"; +import { + getMetadataDescription, + setMetadataDescription, + clearAndLoadVariables, + clearAndLoadDatasets, + getAllVariables, + getAllDatasets, + type MetadataDescription, + type Variable, + type Dataset, +} from "@/storage"; + +export interface CoreMetadata { + variables: Variable[]; + datasets: Dataset[]; + version: string; + versionId: string; +} + +export interface CoreMetadataLoadResult { + data: CoreMetadata; + fromCache: boolean; +} + +interface VersionInfo { + version: string; + versionId: string; +} + +/** + * Fetch version info from the API + */ +async function fetchVersionInfo(countryId: string): Promise { + const [version, versionId] = await Promise.all([ + fetchModelVersion(countryId), + fetchModelVersionId(countryId), + ]); + return { version, versionId }; +} + +/** + * Check if cached metadata is still valid + */ +function isCacheValid( + cached: MetadataDescription | undefined, + remote: VersionInfo, +): boolean { + return ( + cached !== undefined && + cached.coreLoaded && + cached.version === remote.version && + cached.versionId === remote.versionId + ); +} + +/** + * Load core metadata from IndexedDB cache + */ +async function loadFromCache( + cached: MetadataDescription, +): Promise { + const [variables, datasets] = await Promise.all([ + getAllVariables(), + getAllDatasets(), + ]); + + return { + variables, + datasets, + version: cached.version, + versionId: cached.versionId, + }; +} + +/** + * Fetch fresh core metadata from the API + */ +async function fetchFreshMetadata( + countryId: string, +): Promise<{ variables: Variable[]; datasets: Dataset[] }> { + const [variables, datasets] = await Promise.all([ + fetchVariables(countryId), + fetchDatasets(countryId), + ]); + return { variables, datasets }; +} + +/** + * Store core metadata in IndexedDB + */ +async function storeInCache( + countryId: string, + variables: Variable[], + datasets: Dataset[], + versionInfo: VersionInfo, + previousCache: MetadataDescription | undefined, +): Promise { + await Promise.all([ + clearAndLoadVariables(variables), + clearAndLoadDatasets(datasets), + ]); + + await setMetadataDescription({ + countryId, + version: versionInfo.version, + versionId: versionInfo.versionId, + coreLoaded: true, + parametersLoaded: previousCache?.parametersLoaded ?? false, + timestamp: Date.now(), + }); +} + +/** + * Load core metadata (variables + datasets) for a country. + * Uses IndexedDB cache with version-based invalidation. + */ +export async function loadCoreMetadata( + countryId: string, +): Promise { + const cached = await getMetadataDescription(countryId); + const versionInfo = await fetchVersionInfo(countryId); + + if (isCacheValid(cached, versionInfo)) { + const data = await loadFromCache(cached!); + return { data, fromCache: true }; + } + + const { variables, datasets } = await fetchFreshMetadata(countryId); + await storeInCache(countryId, variables, datasets, versionInfo, cached); + + return { + data: { variables, datasets, ...versionInfo }, + fromCache: false, + }; +} + +/** + * Check if core metadata is cached and valid for a country + */ +export async function isCoreMetadataCached( + countryId: string, +): Promise { + const cached = await getMetadataDescription(countryId); + if (!cached?.coreLoaded) return false; + + const versionInfo = await fetchVersionInfo(countryId); + return isCacheValid(cached, versionInfo); +} diff --git a/app/src/storage/loaders/index.ts b/app/src/storage/loaders/index.ts new file mode 100644 index 000000000..42de69e86 --- /dev/null +++ b/app/src/storage/loaders/index.ts @@ -0,0 +1,13 @@ +export { + loadCoreMetadata, + isCoreMetadataCached, + type CoreMetadata, + type CoreMetadataLoadResult, +} from "./coreMetadataLoader"; + +export { + loadParameters, + isParametersCached, + type ParametersData, + type ParametersLoadResult, +} from "./parametersLoader"; diff --git a/app/src/storage/loaders/parametersLoader.ts b/app/src/storage/loaders/parametersLoader.ts new file mode 100644 index 000000000..86a6fd67f --- /dev/null +++ b/app/src/storage/loaders/parametersLoader.ts @@ -0,0 +1,105 @@ +import { + fetchParameters, + fetchParameterValues, + fetchModelVersion, +} from "@/api/v2"; +import { + getMetadataDescription, + setMetadataDescription, + clearAndLoadParameters, + clearAndLoadParameterValues, + getAllParameters, + getAllParameterValues, + type Parameter, + type ParameterValue, +} from "@/storage"; + +export interface ParametersData { + parameters: Parameter[]; + parameterValues: ParameterValue[]; +} + +export interface ParametersLoadResult { + data: ParametersData; + fromCache: boolean; +} + +/** + * Load parameters and parameter values for a country. + * Uses IndexedDB cache with version-based invalidation. + * + * This is Tier 2 loading - only called when needed for policy editing. + * + * @param countryId - Country ID (e.g., 'us', 'uk') + * @returns Parameters data and whether it came from cache + */ +export async function loadParameters( + countryId: string, +): Promise { + // Check cached metadata description + const cached = await getMetadataDescription(countryId); + + // Fetch current version from API + const remoteVersion = await fetchModelVersion(countryId); + + // Cache hit: version matches and parameters are loaded + if (cached?.version === remoteVersion && cached.parametersLoaded) { + const [parameters, parameterValues] = await Promise.all([ + getAllParameters(), + getAllParameterValues(), + ]); + + return { + data: { parameters, parameterValues }, + fromCache: true, + }; + } + + // Cache miss: fetch fresh data (parallel fetch) + const [parameters, parameterValues] = await Promise.all([ + fetchParameters(countryId), + fetchParameterValues(countryId), + ]); + + // Store in IndexedDB (parallel writes) + await Promise.all([ + clearAndLoadParameters(parameters), + clearAndLoadParameterValues(parameterValues), + ]); + + // Update metadata description + if (cached) { + await setMetadataDescription({ + ...cached, + parametersLoaded: true, + timestamp: Date.now(), + }); + } else { + // Edge case: parameters loaded before core (shouldn't happen normally) + await setMetadataDescription({ + countryId, + version: remoteVersion, + versionId: "", + coreLoaded: false, + parametersLoaded: true, + timestamp: Date.now(), + }); + } + + return { + data: { parameters, parameterValues }, + fromCache: false, + }; +} + +/** + * Check if parameters are cached for a country + */ +export async function isParametersCached(countryId: string): Promise { + const cached = await getMetadataDescription(countryId); + if (!cached?.parametersLoaded) return false; + + // Verify version is still current + const remoteVersion = await fetchModelVersion(countryId); + return cached.version === remoteVersion; +} diff --git a/app/src/storage/metadataBulkLoader.ts b/app/src/storage/metadataBulkLoader.ts index af999cec4..4c07746cd 100644 --- a/app/src/storage/metadataBulkLoader.ts +++ b/app/src/storage/metadataBulkLoader.ts @@ -3,6 +3,7 @@ import { Variable, Parameter, ParameterValue, + Dataset, MetadataDescription, } from "./metadataDb"; @@ -74,6 +75,26 @@ export async function clearAndLoadParameterValues( return records.length; } +/** + * Clear datasets and load new records atomically + */ +export async function clearAndLoadDatasets( + records: Dataset[], +): Promise { + await db.transaction("rw", db.datasets, async () => { + await db.datasets.clear(); + await db.datasets.bulkPut(records); + }); + return records.length; +} + +/** + * Get all datasets + */ +export async function getAllDatasets(): Promise { + return db.datasets.toArray(); +} + /** * Get all variables for a specific version */ @@ -174,11 +195,12 @@ export async function clearVersionData(versionId: string): Promise { export async function clearAllStores(): Promise { await db.transaction( "rw", - [db.variables, db.parameters, db.parameterValues, db.metadataDescriptions], + [db.variables, db.parameters, db.parameterValues, db.datasets, db.metadataDescriptions], async () => { await db.variables.clear(); await db.parameters.clear(); await db.parameterValues.clear(); + await db.datasets.clear(); await db.metadataDescriptions.clear(); }, ); @@ -191,11 +213,13 @@ export async function getStoreCounts(): Promise<{ variables: number; parameters: number; parameterValues: number; + datasets: number; }> { - const [variables, parameters, parameterValues] = await Promise.all([ + const [variables, parameters, parameterValues, datasets] = await Promise.all([ db.variables.count(), db.parameters.count(), db.parameterValues.count(), + db.datasets.count(), ]); - return { variables, parameters, parameterValues }; + return { variables, parameters, parameterValues, datasets }; } diff --git a/app/src/storage/metadataDb.ts b/app/src/storage/metadataDb.ts index b458eb4e4..86961f7df 100644 --- a/app/src/storage/metadataDb.ts +++ b/app/src/storage/metadataDb.ts @@ -42,6 +42,21 @@ export interface ParameterValue { created_at: string; } +/** + * Dataset record from V2 API + */ +export interface Dataset { + id: string; + name: string; + description: string; + filepath: string; + year: number; + is_output_dataset: boolean; + tax_benefit_model_id: string; + created_at: string; + updated_at: string; +} + /** * Metadata description for tracking loaded state per country */ @@ -61,6 +76,7 @@ class PolicyEngineDatabase extends Dexie { variables!: EntityTable; parameters!: EntityTable; parameterValues!: EntityTable; + datasets!: EntityTable; metadataDescriptions!: EntityTable; constructor() { @@ -72,6 +88,14 @@ class PolicyEngineDatabase extends Dexie { parameterValues: "id, parameter_id", metadataDescriptions: "countryId", }); + + this.version(2).stores({ + variables: "id, name, tax_benefit_model_version_id", + parameters: "id, name, tax_benefit_model_version_id", + parameterValues: "id, parameter_id", + datasets: "id, name, tax_benefit_model_id", + metadataDescriptions: "countryId", + }); } } From e34b97e0421026edd33029b4b3c0ef968b42ef71 Mon Sep 17 00:00:00 2001 From: Anthony Volk Date: Fri, 19 Dec 2025 14:35:56 +0400 Subject: [PATCH 04/32] feat: Metadata bulk loading and tests --- app/src/libs/metadataUtils.ts | 7 + app/src/reducers/metadataReducer.ts | 126 +++++++++++++++++- app/src/storage/index.ts | 6 +- app/src/storage/loaders/coreMetadataLoader.ts | 18 +-- app/src/storage/loaders/parametersLoader.ts | 16 +-- app/src/storage/metadataBulkLoader.ts | 22 +-- app/src/storage/metadataDb.ts | 15 +-- .../tests/fixtures/hooks/useMetadataMocks.ts | 3 + .../fixtures/hooks/useUserReportsMocks.ts | 2 + .../constituencyComponentMocks.ts | 2 + .../fixtures/reducers/metadataReducerMocks.ts | 13 ++ .../fixtures/utils/geographyUtilsMocks.ts | 3 + .../utils/householdComparisonMocks.ts | 2 + .../fixtures/utils/householdValuesMocks.ts | 2 + app/src/types/metadata.ts | 8 ++ 15 files changed, 200 insertions(+), 45 deletions(-) diff --git a/app/src/libs/metadataUtils.ts b/app/src/libs/metadataUtils.ts index 881a1ec9a..7d0185158 100644 --- a/app/src/libs/metadataUtils.ts +++ b/app/src/libs/metadataUtils.ts @@ -170,6 +170,13 @@ export function transformMetadataPayload( const data = payload.result; return { currentCountry: country, + // V2 tiered loading states (default to false for V1 transform) + coreLoading: false, + coreLoaded: false, + coreError: null, + parametersLoading: false, + parametersLoaded: false, + parametersError: null, progress: 100, // Transformation happens after successful load variables: data.variables ?? {}, parameters: data.parameters ?? {}, diff --git a/app/src/reducers/metadataReducer.ts b/app/src/reducers/metadataReducer.ts index 23fb39e30..8b9341d10 100644 --- a/app/src/reducers/metadataReducer.ts +++ b/app/src/reducers/metadataReducer.ts @@ -2,12 +2,21 @@ import { createAsyncThunk, createSlice, PayloadAction } from '@reduxjs/toolkit'; // Import the API function import { fetchMetadata as fetchMetadataApi } from '@/api/metadata'; import { buildParameterTree } from '@/libs/buildParameterTree'; +import { loadCoreMetadata, loadParameters } from '@/storage'; import { MetadataState } from '@/types/metadata'; const initialState: MetadataState = { loading: false, error: null, currentCountry: null, + + // V2 tiered loading states + coreLoading: false, + coreLoaded: false, + coreError: null, + parametersLoading: false, + parametersLoaded: false, + parametersError: null, progress: 0, variables: {}, @@ -22,7 +31,7 @@ const initialState: MetadataState = { parameterTree: null, }; -// Async thunk for fetching metadata +// Async thunk for fetching metadata (V1 - legacy) export const fetchMetadataThunk = createAsyncThunk< { data: Awaited>; country: string }, string @@ -35,6 +44,32 @@ export const fetchMetadataThunk = createAsyncThunk< } }); +// V2 thunk: Fetch core metadata (variables + datasets) +export const fetchCoreMetadataThunk = createAsyncThunk( + 'metadata/fetchCore', + async (countryId: string, { rejectWithValue }) => { + try { + const result = await loadCoreMetadata(countryId); + return { ...result, countryId }; + } catch (error) { + return rejectWithValue(error instanceof Error ? error.message : 'Unknown error'); + } + } +); + +// V2 thunk: Fetch parameters (lazy load) +export const fetchParametersThunk = createAsyncThunk( + 'metadata/fetchParameters', + async (countryId: string, { rejectWithValue }) => { + try { + const result = await loadParameters(countryId); + return result; + } catch (error) { + return rejectWithValue(error instanceof Error ? error.message : 'Unknown error'); + } + } +); + const metadataSlice = createSlice({ name: 'metadata', initialState, @@ -43,8 +78,8 @@ const metadataSlice = createSlice({ state.currentCountry = action.payload; // Optionally clear existing metadata when country changes // This prevents showing stale data from previous country - if (state.version !== null) { - // Clear metadata but keep loading/error states + if (state.version !== null || state.coreLoaded) { + // Clear metadata and reset V2 loading states state.variables = {}; state.parameters = {}; state.entities = {}; @@ -55,6 +90,13 @@ const metadataSlice = createSlice({ state.modelledPolicies = { core: {}, filtered: {} }; state.version = null; state.parameterTree = null; + // Reset V2 states + state.coreLoaded = false; + state.coreLoading = false; + state.coreError = null; + state.parametersLoaded = false; + state.parametersLoading = false; + state.parametersError = null; } }, clearMetadata(state) { @@ -96,6 +138,84 @@ const metadataSlice = createSlice({ .addCase(fetchMetadataThunk.rejected, (state, action) => { state.loading = false; state.error = action.payload as string; + }) + // V2: Core metadata thunk + .addCase(fetchCoreMetadataThunk.pending, (state) => { + state.coreLoading = true; + state.coreError = null; + }) + .addCase(fetchCoreMetadataThunk.fulfilled, (state, action) => { + const { data, countryId } = action.payload; + + state.coreLoading = false; + state.coreLoaded = true; + state.coreError = null; + state.currentCountry = countryId; + state.version = data.version; + + // Transform V2 variables array to record format + const variablesRecord: Record = {}; + for (const v of data.variables) { + variablesRecord[v.name] = v; + } + state.variables = variablesRecord; + + // Transform V2 datasets to economyOptions.datasets format + state.economyOptions.datasets = data.datasets.map((d, i) => ({ + name: d.name, + label: d.name, + title: d.description || d.name, + default: i === 0, + })); + }) + .addCase(fetchCoreMetadataThunk.rejected, (state, action) => { + state.coreLoading = false; + state.coreError = action.payload as string; + }) + // V2: Parameters thunk + .addCase(fetchParametersThunk.pending, (state) => { + state.parametersLoading = true; + state.parametersError = null; + }) + .addCase(fetchParametersThunk.fulfilled, (state, action) => { + const { data } = action.payload; + + state.parametersLoading = false; + state.parametersLoaded = true; + state.parametersError = null; + + // Transform V2 parameters array to record format with values + const parametersRecord: Record = {}; + for (const p of data.parameters) { + parametersRecord[p.name] = { + ...p, + // Parameter values will be associated by parameter_id + values: {}, + }; + } + + // Associate parameter values with their parameters + for (const pv of data.parameterValues) { + const param = data.parameters.find((p) => p.id === pv.parameter_id); + if (param && parametersRecord[param.name]) { + // Use start_date as key for values (V1 format compatibility) + const dateKey = pv.start_date.split('T')[0]; + parametersRecord[param.name].values[dateKey] = pv.value_json; + } + } + + state.parameters = parametersRecord; + + // Build parameter tree + try { + state.parameterTree = buildParameterTree(parametersRecord) || null; + } catch { + state.parameterTree = null; + } + }) + .addCase(fetchParametersThunk.rejected, (state, action) => { + state.parametersLoading = false; + state.parametersError = action.payload as string; }); }, }); diff --git a/app/src/storage/index.ts b/app/src/storage/index.ts index 49844476f..ca57fe3ad 100644 --- a/app/src/storage/index.ts +++ b/app/src/storage/index.ts @@ -7,7 +7,7 @@ export { type Parameter, type ParameterValue, type Dataset, - type MetadataDescription, + type CacheMetadata, } from "./metadataDb"; // Bulk loading @@ -32,8 +32,8 @@ export { getAllDatasets, getVariableByName, getParameterByName, - getMetadataDescription, - setMetadataDescription, + getCacheMetadata, + setCacheMetadata, } from "./metadataBulkLoader"; // Utilities diff --git a/app/src/storage/loaders/coreMetadataLoader.ts b/app/src/storage/loaders/coreMetadataLoader.ts index b9dee7452..552e20861 100644 --- a/app/src/storage/loaders/coreMetadataLoader.ts +++ b/app/src/storage/loaders/coreMetadataLoader.ts @@ -5,13 +5,13 @@ import { fetchModelVersionId, } from "@/api/v2"; import { - getMetadataDescription, - setMetadataDescription, + getCacheMetadata, + setCacheMetadata, clearAndLoadVariables, clearAndLoadDatasets, getAllVariables, getAllDatasets, - type MetadataDescription, + type CacheMetadata, type Variable, type Dataset, } from "@/storage"; @@ -48,7 +48,7 @@ async function fetchVersionInfo(countryId: string): Promise { * Check if cached metadata is still valid */ function isCacheValid( - cached: MetadataDescription | undefined, + cached: CacheMetadata | undefined, remote: VersionInfo, ): boolean { return ( @@ -63,7 +63,7 @@ function isCacheValid( * Load core metadata from IndexedDB cache */ async function loadFromCache( - cached: MetadataDescription, + cached: CacheMetadata, ): Promise { const [variables, datasets] = await Promise.all([ getAllVariables(), @@ -99,14 +99,14 @@ async function storeInCache( variables: Variable[], datasets: Dataset[], versionInfo: VersionInfo, - previousCache: MetadataDescription | undefined, + previousCache: CacheMetadata | undefined, ): Promise { await Promise.all([ clearAndLoadVariables(variables), clearAndLoadDatasets(datasets), ]); - await setMetadataDescription({ + await setCacheMetadata({ countryId, version: versionInfo.version, versionId: versionInfo.versionId, @@ -123,7 +123,7 @@ async function storeInCache( export async function loadCoreMetadata( countryId: string, ): Promise { - const cached = await getMetadataDescription(countryId); + const cached = await getCacheMetadata(countryId); const versionInfo = await fetchVersionInfo(countryId); if (isCacheValid(cached, versionInfo)) { @@ -146,7 +146,7 @@ export async function loadCoreMetadata( export async function isCoreMetadataCached( countryId: string, ): Promise { - const cached = await getMetadataDescription(countryId); + const cached = await getCacheMetadata(countryId); if (!cached?.coreLoaded) return false; const versionInfo = await fetchVersionInfo(countryId); diff --git a/app/src/storage/loaders/parametersLoader.ts b/app/src/storage/loaders/parametersLoader.ts index 86a6fd67f..a7120229b 100644 --- a/app/src/storage/loaders/parametersLoader.ts +++ b/app/src/storage/loaders/parametersLoader.ts @@ -4,8 +4,8 @@ import { fetchModelVersion, } from "@/api/v2"; import { - getMetadataDescription, - setMetadataDescription, + getCacheMetadata, + setCacheMetadata, clearAndLoadParameters, clearAndLoadParameterValues, getAllParameters, @@ -36,8 +36,8 @@ export interface ParametersLoadResult { export async function loadParameters( countryId: string, ): Promise { - // Check cached metadata description - const cached = await getMetadataDescription(countryId); + // Check cached metadata + const cached = await getCacheMetadata(countryId); // Fetch current version from API const remoteVersion = await fetchModelVersion(countryId); @@ -67,16 +67,16 @@ export async function loadParameters( clearAndLoadParameterValues(parameterValues), ]); - // Update metadata description + // Update cache metadata if (cached) { - await setMetadataDescription({ + await setCacheMetadata({ ...cached, parametersLoaded: true, timestamp: Date.now(), }); } else { // Edge case: parameters loaded before core (shouldn't happen normally) - await setMetadataDescription({ + await setCacheMetadata({ countryId, version: remoteVersion, versionId: "", @@ -96,7 +96,7 @@ export async function loadParameters( * Check if parameters are cached for a country */ export async function isParametersCached(countryId: string): Promise { - const cached = await getMetadataDescription(countryId); + const cached = await getCacheMetadata(countryId); if (!cached?.parametersLoaded) return false; // Verify version is still current diff --git a/app/src/storage/metadataBulkLoader.ts b/app/src/storage/metadataBulkLoader.ts index 4c07746cd..2a567c998 100644 --- a/app/src/storage/metadataBulkLoader.ts +++ b/app/src/storage/metadataBulkLoader.ts @@ -4,7 +4,7 @@ import { Parameter, ParameterValue, Dataset, - MetadataDescription, + CacheMetadata, } from "./metadataDb"; /** @@ -162,21 +162,21 @@ export async function getParameterByName( } /** - * Get metadata description for a country + * Get cache metadata for a country */ -export async function getMetadataDescription( +export async function getCacheMetadata( countryId: string, -): Promise { - return db.metadataDescriptions.get(countryId); +): Promise { + return db.cacheMetadata.get(countryId); } /** - * Update metadata description for a country + * Update cache metadata for a country */ -export async function setMetadataDescription( - metadata: MetadataDescription, +export async function setCacheMetadata( + metadata: CacheMetadata, ): Promise { - await db.metadataDescriptions.put(metadata); + await db.cacheMetadata.put(metadata); } /** @@ -195,13 +195,13 @@ export async function clearVersionData(versionId: string): Promise { export async function clearAllStores(): Promise { await db.transaction( "rw", - [db.variables, db.parameters, db.parameterValues, db.datasets, db.metadataDescriptions], + [db.variables, db.parameters, db.parameterValues, db.datasets, db.cacheMetadata], async () => { await db.variables.clear(); await db.parameters.clear(); await db.parameterValues.clear(); await db.datasets.clear(); - await db.metadataDescriptions.clear(); + await db.cacheMetadata.clear(); }, ); } diff --git a/app/src/storage/metadataDb.ts b/app/src/storage/metadataDb.ts index 86961f7df..3dd88a7c6 100644 --- a/app/src/storage/metadataDb.ts +++ b/app/src/storage/metadataDb.ts @@ -58,9 +58,9 @@ export interface Dataset { } /** - * Metadata description for tracking loaded state per country + * Cache metadata for tracking loaded state per country */ -export interface MetadataDescription { +export interface CacheMetadata { countryId: string; version: string; versionId: string; @@ -77,24 +77,17 @@ class PolicyEngineDatabase extends Dexie { parameters!: EntityTable; parameterValues!: EntityTable; datasets!: EntityTable; - metadataDescriptions!: EntityTable; + cacheMetadata!: EntityTable; constructor() { super("policyengine"); this.version(1).stores({ - variables: "id, name, tax_benefit_model_version_id", - parameters: "id, name, tax_benefit_model_version_id", - parameterValues: "id, parameter_id", - metadataDescriptions: "countryId", - }); - - this.version(2).stores({ variables: "id, name, tax_benefit_model_version_id", parameters: "id, name, tax_benefit_model_version_id", parameterValues: "id, parameter_id", datasets: "id, name, tax_benefit_model_id", - metadataDescriptions: "countryId", + cacheMetadata: "countryId", }); } } diff --git a/app/src/tests/fixtures/hooks/useMetadataMocks.ts b/app/src/tests/fixtures/hooks/useMetadataMocks.ts index c7b1f1bf2..4661cd8f4 100644 --- a/app/src/tests/fixtures/hooks/useMetadataMocks.ts +++ b/app/src/tests/fixtures/hooks/useMetadataMocks.ts @@ -1,6 +1,7 @@ import { CURRENT_YEAR } from '@/constants'; import { MetadataState } from '@/types/metadata'; import { UK_REGION_TYPES, US_REGION_TYPES } from '@/types/regionTypes'; +import { DEFAULT_V2_LOADING_STATES } from '../reducers/metadataReducerMocks'; // Test country IDs export const TEST_COUNTRY_US = 'us'; @@ -15,6 +16,7 @@ export const mockInitialMetadataState: MetadataState = { loading: false, error: null, currentCountry: null, + ...DEFAULT_V2_LOADING_STATES, progress: 0, variables: {}, parameters: {}, @@ -38,6 +40,7 @@ export const mockLoadedMetadataState: MetadataState = { loading: false, error: null, currentCountry: TEST_COUNTRY_US, + ...DEFAULT_V2_LOADING_STATES, progress: 100, variables: { income: { label: 'Income', unit: 'currency-USD' }, diff --git a/app/src/tests/fixtures/hooks/useUserReportsMocks.ts b/app/src/tests/fixtures/hooks/useUserReportsMocks.ts index d6b45ebc6..15dbadc87 100644 --- a/app/src/tests/fixtures/hooks/useUserReportsMocks.ts +++ b/app/src/tests/fixtures/hooks/useUserReportsMocks.ts @@ -12,6 +12,7 @@ import { SimulationMetadata } from '@/types/metadata/simulationMetadata'; import { US_REGION_TYPES } from '@/types/regionTypes'; import { mockReport } from '../adapters/reportMocks'; import { TEST_USER_ID } from '../api/reportAssociationMocks'; +import { DEFAULT_V2_LOADING_STATES } from '../reducers/metadataReducerMocks'; // Test ID constants export const TEST_SIMULATION_ID_1 = 'sim-456'; @@ -188,6 +189,7 @@ export const mockMetadataInitialState = { currentCountry: TEST_COUNTRIES.US, loading: false, error: null, + ...DEFAULT_V2_LOADING_STATES, progress: 100, variables: {}, parameters: {}, diff --git a/app/src/tests/fixtures/pages/constituency/constituencyComponentMocks.ts b/app/src/tests/fixtures/pages/constituency/constituencyComponentMocks.ts index 10d2de201..bcd20325a 100644 --- a/app/src/tests/fixtures/pages/constituency/constituencyComponentMocks.ts +++ b/app/src/tests/fixtures/pages/constituency/constituencyComponentMocks.ts @@ -1,5 +1,6 @@ import type { MetadataState } from '@/types/metadata'; import type { ReportOutputSocietyWideUK } from '@/types/metadata/ReportOutputSocietyWideUK'; +import { DEFAULT_V2_LOADING_STATES } from '../../reducers/metadataReducerMocks'; /** * Mock UK report output with constituency data @@ -196,6 +197,7 @@ export const MOCK_METADATA: MetadataState = { currentCountry: 'uk', loading: false, error: null, + ...DEFAULT_V2_LOADING_STATES, progress: 100, variables: {}, parameters: {}, diff --git a/app/src/tests/fixtures/reducers/metadataReducerMocks.ts b/app/src/tests/fixtures/reducers/metadataReducerMocks.ts index 8ae63b00b..63a2f0893 100644 --- a/app/src/tests/fixtures/reducers/metadataReducerMocks.ts +++ b/app/src/tests/fixtures/reducers/metadataReducerMocks.ts @@ -15,11 +15,22 @@ export const TEST_PARAMETER_LABEL = 'Income Tax'; export const TEST_VARIABLE_KEY = 'employment_income'; export const TEST_ENTITY_KEY = 'person'; +// Default V2 tiered loading states +export const DEFAULT_V2_LOADING_STATES = { + coreLoading: false, + coreLoaded: false, + coreError: null, + parametersLoading: false, + parametersLoaded: false, + parametersError: null, +} as const; + // Expected initial state export const EXPECTED_INITIAL_STATE: MetadataState = { loading: false, error: null, currentCountry: null, + ...DEFAULT_V2_LOADING_STATES, progress: 0, variables: {}, parameters: {}, @@ -182,6 +193,7 @@ export const createMockStateWithData = (overrides?: Partial): Met loading: false, error: null, currentCountry: TEST_COUNTRY_US, + ...DEFAULT_V2_LOADING_STATES, progress: 100, variables: MOCK_VARIABLES, parameters: MOCK_PARAMETERS, @@ -222,6 +234,7 @@ export const createExpectedFulfilledState = ( loading: false, error: null, currentCountry: country, + ...DEFAULT_V2_LOADING_STATES, progress: 100, variables: apiPayload.result.variables, parameters: apiPayload.result.parameters, diff --git a/app/src/tests/fixtures/utils/geographyUtilsMocks.ts b/app/src/tests/fixtures/utils/geographyUtilsMocks.ts index ba8c7c0a8..9e07319f8 100644 --- a/app/src/tests/fixtures/utils/geographyUtilsMocks.ts +++ b/app/src/tests/fixtures/utils/geographyUtilsMocks.ts @@ -1,5 +1,6 @@ import type { MetadataState } from '@/types/metadata'; import { UK_REGION_TYPES, US_REGION_TYPES } from '@/types/regionTypes'; +import { DEFAULT_V2_LOADING_STATES } from '../reducers/metadataReducerMocks'; export const TEST_COUNTRY_CODES = { US: 'us', @@ -79,6 +80,7 @@ export const mockMetadataWithRegions = (): MetadataState => ({ parameterTree: null, loading: false, error: null, + ...DEFAULT_V2_LOADING_STATES, progress: 100, }); @@ -101,4 +103,5 @@ export const mockMetadataEmptyRegions = (): MetadataState => ({ progress: 100, loading: false, error: null, + ...DEFAULT_V2_LOADING_STATES, }); diff --git a/app/src/tests/fixtures/utils/householdComparisonMocks.ts b/app/src/tests/fixtures/utils/householdComparisonMocks.ts index 8ea18afae..c504c69c2 100644 --- a/app/src/tests/fixtures/utils/householdComparisonMocks.ts +++ b/app/src/tests/fixtures/utils/householdComparisonMocks.ts @@ -1,5 +1,6 @@ import type { Household } from '@/types/ingredients/Household'; import type { MetadataState } from '@/types/metadata'; +import { DEFAULT_V2_LOADING_STATES } from '../reducers/metadataReducerMocks'; export const mockHousehold = (_netIncome: number = 50000): Household => ({ id: 'household-1', @@ -32,6 +33,7 @@ export const mockMetadata = (): MetadataState => ({ parameterTree: null, loading: false, error: null, + ...DEFAULT_V2_LOADING_STATES, progress: 100, }); diff --git a/app/src/tests/fixtures/utils/householdValuesMocks.ts b/app/src/tests/fixtures/utils/householdValuesMocks.ts index a5dc1e001..90a50949a 100644 --- a/app/src/tests/fixtures/utils/householdValuesMocks.ts +++ b/app/src/tests/fixtures/utils/householdValuesMocks.ts @@ -1,6 +1,7 @@ import { CURRENT_YEAR } from '@/constants'; import { Household } from '@/types/ingredients/Household'; import { MetadataState } from '@/types/metadata'; +import { DEFAULT_V2_LOADING_STATES } from '../reducers/metadataReducerMocks'; /** * Test fixtures for householdValues utility functions @@ -74,6 +75,7 @@ export const MOCK_METADATA: MetadataState = { version: '1.0.0', loading: false, error: null, + ...DEFAULT_V2_LOADING_STATES, progress: 100, parameterTree: null, }; diff --git a/app/src/types/metadata.ts b/app/src/types/metadata.ts index fd76834fa..c2aa42436 100644 --- a/app/src/types/metadata.ts +++ b/app/src/types/metadata.ts @@ -62,6 +62,14 @@ export interface MetadataState { /** Download progress percentage (0-100) for metadata fetch */ progress: number; + // V2 tiered loading states + coreLoading: boolean; + coreLoaded: boolean; + coreError: string | null; + parametersLoading: boolean; + parametersLoaded: boolean; + parametersError: string | null; + variables: Record; parameters: Record; entities: Record; From 614cff6e2bc9da15246b1205ea4c6fcf4faefbd6 Mon Sep 17 00:00:00 2001 From: Anthony Volk Date: Fri, 19 Dec 2025 14:47:22 +0400 Subject: [PATCH 05/32] feat: Metadata guard --- app/src/CalculatorRouter.tsx | 84 ++--- app/src/hooks/useCoreMetadata.ts | 40 +++ app/src/hooks/useMetadata.ts | 26 -- app/src/hooks/useParameters.ts | 49 +++ app/src/reducers/metadataReducer.ts | 47 +-- app/src/routing/guards/CoreMetadataGuard.tsx | 46 +++ app/src/routing/guards/MetadataLazyLoader.tsx | 47 --- app/src/routing/guards/ParametersGuard.tsx | 54 +++ app/src/tests/unit/hooks/useMetadata.test.tsx | 206 ------------ .../unit/reducers/metadataReducer.test.ts | 309 +++++++----------- 10 files changed, 347 insertions(+), 561 deletions(-) create mode 100644 app/src/hooks/useCoreMetadata.ts delete mode 100644 app/src/hooks/useMetadata.ts create mode 100644 app/src/hooks/useParameters.ts create mode 100644 app/src/routing/guards/CoreMetadataGuard.tsx delete mode 100644 app/src/routing/guards/MetadataLazyLoader.tsx create mode 100644 app/src/routing/guards/ParametersGuard.tsx delete mode 100644 app/src/tests/unit/hooks/useMetadata.test.tsx diff --git a/app/src/CalculatorRouter.tsx b/app/src/CalculatorRouter.tsx index e28e04783..34142e5f6 100644 --- a/app/src/CalculatorRouter.tsx +++ b/app/src/CalculatorRouter.tsx @@ -16,8 +16,8 @@ import PopulationPathwayWrapper from './pathways/population/PopulationPathwayWra import ReportPathwayWrapper from './pathways/report/ReportPathwayWrapper'; import SimulationPathwayWrapper from './pathways/simulation/SimulationPathwayWrapper'; import { CountryGuard } from './routing/guards/CountryGuard'; -import { MetadataGuard } from './routing/guards/MetadataGuard'; -import { MetadataLazyLoader } from './routing/guards/MetadataLazyLoader'; +import { CoreMetadataGuard } from './routing/guards/CoreMetadataGuard'; +import { ParametersGuard } from './routing/guards/ParametersGuard'; import { RedirectToCountry } from './routing/RedirectToCountry'; /** @@ -43,55 +43,39 @@ const router = createBrowserRouter( path: '/:countryId', element: , children: [ - // Routes with standard layout that need metadata (blocking) - // Layout is OUTSIDE the guard so app shell remains visible during loading + // All routes need core metadata (variables + datasets) { - element: , + element: , children: [ + // Routes that also need parameters (policy editing, reports) { - element: , + element: , children: [ { - path: 'report-output/:reportId/:subpage?/:view?', - element: , - }, - ], - }, - ], - }, - // Pathway routes that need metadata (blocking) - // Pathways manage their own AppShell layouts - do NOT wrap in StandardLayoutOutlet - // This allows views like PolicyParameterSelectorView to use custom AppShell configurations - { - element: , - children: [ - { - element: , - children: [ - { - path: 'reports/create', - element: , - }, - { - path: 'simulations/create', - element: , - }, - { - path: 'households/create', - element: , + element: ( + + + + ), + children: [ + { + path: 'report-output/:reportId/:subpage?/:view?', + element: , + }, + ], }, { - path: 'policies/create', - element: , + element: , + children: [ + { + path: 'policies/create', + element: , + }, + ], }, ], }, - ], - }, - // Routes that benefit from metadata but don't require it (lazy loader) - { - element: , - children: [ + // Routes that only need core metadata { element: , children: [ @@ -125,6 +109,24 @@ const router = createBrowserRouter( }, ], }, + // Pathway routes (core metadata only) + { + element: , + children: [ + { + path: 'reports/create', + element: , + }, + { + path: 'simulations/create', + element: , + }, + { + path: 'households/create', + element: , + }, + ], + }, ], }, ], diff --git a/app/src/hooks/useCoreMetadata.ts b/app/src/hooks/useCoreMetadata.ts new file mode 100644 index 000000000..a4c14a659 --- /dev/null +++ b/app/src/hooks/useCoreMetadata.ts @@ -0,0 +1,40 @@ +import { useEffect } from 'react'; +import { useDispatch, useSelector } from 'react-redux'; +import { fetchCoreMetadataThunk } from '@/reducers/metadataReducer'; +import { AppDispatch, RootState } from '@/store'; + +/** + * Selects core metadata loading state from Redux. + */ +export function selectCoreMetadataState(state: RootState) { + return { + coreLoading: state.metadata.coreLoading, + coreLoaded: state.metadata.coreLoaded, + coreError: state.metadata.coreError, + currentCountry: state.metadata.currentCountry, + }; +} + +/** + * Hook that fetches core metadata (variables + datasets) for a country. + * + * This is the V2 tiered loading approach - only loads what's needed immediately. + * Parameters are loaded separately via useFetchParameters when needed. + * + * @param countryId - Country to fetch metadata for (e.g., 'us', 'uk') + */ +export function useFetchCoreMetadata(countryId: string): void { + const dispatch = useDispatch(); + const { coreLoading, coreLoaded, currentCountry } = useSelector(selectCoreMetadataState); + + useEffect(() => { + // Fetch if: + // - Not currently loading + // - Not already loaded for this country + const needsFetch = !coreLoading && (!coreLoaded || countryId !== currentCountry); + + if (needsFetch && countryId) { + dispatch(fetchCoreMetadataThunk(countryId)); + } + }, [countryId, coreLoading, coreLoaded, currentCountry, dispatch]); +} diff --git a/app/src/hooks/useMetadata.ts b/app/src/hooks/useMetadata.ts deleted file mode 100644 index e6724d212..000000000 --- a/app/src/hooks/useMetadata.ts +++ /dev/null @@ -1,26 +0,0 @@ -import { useEffect } from 'react'; -import { useDispatch, useSelector } from 'react-redux'; -import { fetchMetadataThunk } from '@/reducers/metadataReducer'; -import { AppDispatch, RootState } from '@/store'; - -/** - * Hook that ensures metadata is fetched for the current country. - * - * This hook triggers a metadata fetch when: - * - Component mounts and no metadata exists - * - countryId parameter changes (e.g., when URL route changes) - * - Current country in state differs from requested country - * - * Components should use useSelector to read metadata from Redux state - */ -export function useFetchMetadata(countryId: string): void { - const dispatch = useDispatch(); - const metadata = useSelector((state: RootState) => state.metadata); - - useEffect(() => { - // Only fetch if we don't already have metadata for this country - if (!metadata.version || countryId !== metadata.currentCountry) { - dispatch(fetchMetadataThunk(countryId)); - } - }, [countryId, metadata.currentCountry, metadata.version, dispatch]); -} diff --git a/app/src/hooks/useParameters.ts b/app/src/hooks/useParameters.ts new file mode 100644 index 000000000..0011aac70 --- /dev/null +++ b/app/src/hooks/useParameters.ts @@ -0,0 +1,49 @@ +import { useEffect } from 'react'; +import { useDispatch, useSelector } from 'react-redux'; +import { fetchParametersThunk } from '@/reducers/metadataReducer'; +import { AppDispatch, RootState } from '@/store'; + +/** + * Selects parameters loading state from Redux. + */ +export function selectParametersState(state: RootState) { + return { + coreLoaded: state.metadata.coreLoaded, + parametersLoading: state.metadata.parametersLoading, + parametersLoaded: state.metadata.parametersLoaded, + parametersError: state.metadata.parametersError, + currentCountry: state.metadata.currentCountry, + }; +} + +/** + * Hook that fetches parameters for a country. + * + * This is Tier 2 of the V2 tiered loading approach - only loads parameters + * when needed (e.g., on policy editing pages). + * + * Prerequisites: + * - Core metadata must be loaded first (coreLoaded === true) + * + * @param countryId - Country to fetch parameters for (e.g., 'us', 'uk') + */ +export function useFetchParameters(countryId: string): void { + const dispatch = useDispatch(); + const { coreLoaded, parametersLoading, parametersLoaded, currentCountry } = + useSelector(selectParametersState); + + useEffect(() => { + // Only fetch if: + // - Core metadata is loaded (prerequisite) + // - Not currently loading parameters + // - Parameters not already loaded for this country + const needsFetch = + coreLoaded && + !parametersLoading && + (!parametersLoaded || countryId !== currentCountry); + + if (needsFetch && countryId) { + dispatch(fetchParametersThunk(countryId)); + } + }, [countryId, coreLoaded, parametersLoading, parametersLoaded, currentCountry, dispatch]); +} diff --git a/app/src/reducers/metadataReducer.ts b/app/src/reducers/metadataReducer.ts index 8b9341d10..65a53ae0c 100644 --- a/app/src/reducers/metadataReducer.ts +++ b/app/src/reducers/metadataReducer.ts @@ -1,6 +1,4 @@ import { createAsyncThunk, createSlice, PayloadAction } from '@reduxjs/toolkit'; -// Import the API function -import { fetchMetadata as fetchMetadataApi } from '@/api/metadata'; import { buildParameterTree } from '@/libs/buildParameterTree'; import { loadCoreMetadata, loadParameters } from '@/storage'; import { MetadataState } from '@/types/metadata'; @@ -10,7 +8,7 @@ const initialState: MetadataState = { error: null, currentCountry: null, - // V2 tiered loading states + // Tiered loading states coreLoading: false, coreLoaded: false, coreError: null, @@ -57,7 +55,7 @@ export const fetchCoreMetadataThunk = createAsyncThunk( } ); -// V2 thunk: Fetch parameters (lazy load) +// Fetch parameters (lazy load) export const fetchParametersThunk = createAsyncThunk( 'metadata/fetchParameters', async (countryId: string, { rejectWithValue }) => { @@ -105,41 +103,7 @@ const metadataSlice = createSlice({ }, extraReducers: (builder) => { builder - .addCase(fetchMetadataThunk.pending, (state) => { - state.loading = true; - state.error = null; - }) - .addCase(fetchMetadataThunk.fulfilled, (state, action) => { - const { data, country } = action.payload; - const body = data.result; - - state.loading = false; - state.error = null; - state.currentCountry = country; - - // Transform API response to state - state.variables = body.variables; - state.parameters = body.parameters; - state.entities = body.entities; - state.variableModules = body.variableModules; - state.economyOptions = body.economy_options; - state.currentLawId = body.current_law_id; - state.basicInputs = body.basicInputs; - state.modelledPolicies = body.modelled_policies; - state.version = body.version; - - // Build parameter tree from parameters (following V1 approach) - try { - state.parameterTree = buildParameterTree(body.parameters) || null; - } catch (error) { - state.parameterTree = null; - } - }) - .addCase(fetchMetadataThunk.rejected, (state, action) => { - state.loading = false; - state.error = action.payload as string; - }) - // V2: Core metadata thunk + // Core metadata thunk .addCase(fetchCoreMetadataThunk.pending, (state) => { state.coreLoading = true; state.coreError = null; @@ -172,7 +136,7 @@ const metadataSlice = createSlice({ state.coreLoading = false; state.coreError = action.payload as string; }) - // V2: Parameters thunk + // Parameters thunk .addCase(fetchParametersThunk.pending, (state) => { state.parametersLoading = true; state.parametersError = null; @@ -222,7 +186,4 @@ const metadataSlice = createSlice({ export const { setCurrentCountry, clearMetadata } = metadataSlice.actions; -// The metadata.currentCountry state is only used internally by useFetchMetadata -// to track which country's metadata is currently cached. - export default metadataSlice.reducer; diff --git a/app/src/routing/guards/CoreMetadataGuard.tsx b/app/src/routing/guards/CoreMetadataGuard.tsx new file mode 100644 index 000000000..f8273e638 --- /dev/null +++ b/app/src/routing/guards/CoreMetadataGuard.tsx @@ -0,0 +1,46 @@ +import { useSelector } from 'react-redux'; +import { Outlet } from 'react-router-dom'; +import { useCurrentCountry } from '@/hooks/useCurrentCountry'; +import { selectCoreMetadataState, useFetchCoreMetadata } from '@/hooks/useCoreMetadata'; +import ErrorPage from '@/pages/report-output/ErrorPage'; +import LoadingPage from '@/pages/report-output/LoadingPage'; + +/** + * Guard component that ensures core metadata (variables + datasets) is loaded + * before rendering child routes. + * + * This is the V2 tiered loading approach - only loads essential data immediately. + * For routes that also need parameters, wrap with ParametersGuard. + * + * Loading states: + * 1. coreLoading === true → Shows loading page + * 2. coreError !== null → Shows error page + * 3. coreLoaded === false → Shows loading page + * 4. coreLoaded === true → Renders child routes + * + * Example usage in Router: + * ```tsx + * { + * element: , + * children: [ + * { path: 'household/*', element: }, + * ], + * } + * ``` + */ +export function CoreMetadataGuard() { + const countryId = useCurrentCountry(); + useFetchCoreMetadata(countryId); + + const { coreLoading, coreLoaded, coreError } = useSelector(selectCoreMetadataState); + + if (coreError) { + return ; + } + + if (coreLoading || !coreLoaded) { + return ; + } + + return ; +} diff --git a/app/src/routing/guards/MetadataLazyLoader.tsx b/app/src/routing/guards/MetadataLazyLoader.tsx deleted file mode 100644 index 5db00a4e3..000000000 --- a/app/src/routing/guards/MetadataLazyLoader.tsx +++ /dev/null @@ -1,47 +0,0 @@ -import { Outlet } from 'react-router-dom'; -import { useCurrentCountry } from '@/hooks/useCurrentCountry'; -import { useFetchMetadata } from '@/hooks/useMetadata'; - -/** - * Lazy loader that triggers metadata fetch in the background without blocking. - * - * This component fetches metadata but renders child routes immediately, allowing - * pages to load instantly even while metadata is being fetched. Use this for routes - * that don't immediately require metadata to render but might need it later (e.g., - * HomePage, navigation pages, list pages). - * - * Benefits: - * - Fast initial page loads (no blocking on metadata fetch) - * - Metadata is prefetched for subsequent navigation - * - If user navigates to a MetadataGuard route, metadata may already be loaded - * - * Child components can check metadata state and show loading indicators if needed: - * ```tsx - * const metadata = useSelector((state: RootState) => state.metadata); - * if (metadata.loading) return ; - * if (!metadata.version) return ; - * ``` - * - * Example usage in Router: - * ```tsx - * { - * element: , - * children: [ - * { index: true, element: }, - * { path: 'simulations', element: }, - * ], - * } - * ``` - * - * Note: useFetchMetadata handles caching, so calling it in multiple guards - * (MetadataGuard and MetadataLazyLoader) won't cause duplicate fetches. - */ -export function MetadataLazyLoader() { - const countryId = useCurrentCountry(); - - // Trigger metadata fetch but don't wait for it - useFetchMetadata(countryId); - - // Always render children immediately - return ; -} diff --git a/app/src/routing/guards/ParametersGuard.tsx b/app/src/routing/guards/ParametersGuard.tsx new file mode 100644 index 000000000..0a0af72af --- /dev/null +++ b/app/src/routing/guards/ParametersGuard.tsx @@ -0,0 +1,54 @@ +import { useSelector } from 'react-redux'; +import { Outlet } from 'react-router-dom'; +import { useCurrentCountry } from '@/hooks/useCurrentCountry'; +import { selectParametersState, useFetchParameters } from '@/hooks/useParameters'; +import ErrorPage from '@/pages/report-output/ErrorPage'; +import LoadingPage from '@/pages/report-output/LoadingPage'; + +/** + * Guard component that ensures parameters are loaded before rendering child routes. + * + * This is Tier 2 of the V2 tiered loading approach - only used on routes that + * need policy parameters (e.g., policy editing pages, report pages). + * + * Prerequisites: + * - Must be nested inside CoreMetadataGuard (core metadata must be loaded first) + * + * Loading states: + * 1. parametersLoading === true → Shows loading page + * 2. parametersError !== null → Shows error page + * 3. parametersLoaded === false → Shows loading page + * 4. parametersLoaded === true → Renders child routes + * + * Example usage in Router: + * ```tsx + * { + * element: , + * children: [ + * { + * element: , + * children: [ + * { path: 'policy/*', element: }, + * ], + * }, + * ], + * } + * ``` + */ +export function ParametersGuard() { + const countryId = useCurrentCountry(); + useFetchParameters(countryId); + + const { parametersLoading, parametersLoaded, parametersError } = + useSelector(selectParametersState); + + if (parametersError) { + return ; + } + + if (parametersLoading || !parametersLoaded) { + return ; + } + + return ; +} diff --git a/app/src/tests/unit/hooks/useMetadata.test.tsx b/app/src/tests/unit/hooks/useMetadata.test.tsx deleted file mode 100644 index 58573a392..000000000 --- a/app/src/tests/unit/hooks/useMetadata.test.tsx +++ /dev/null @@ -1,206 +0,0 @@ -import React from 'react'; -import { configureStore } from '@reduxjs/toolkit'; -import { renderHook } from '@testing-library/react'; -import { Provider } from 'react-redux'; -import { beforeEach, describe, expect, test, vi } from 'vitest'; -import { useFetchMetadata } from '@/hooks/useMetadata'; -import { - mockErrorState, - mockInitialMetadataState, - mockLoadedMetadataState, - mockLoadingMetadataState, - mockStateWithCurrentCountry, - mockStateWithoutVersion, - TEST_COUNTRY_CA, - TEST_COUNTRY_UK, - TEST_COUNTRY_US, -} from '@/tests/fixtures/hooks/useMetadataMocks'; - -// Mock must be before imports that use it -vi.mock('@/reducers/metadataReducer', () => ({ - fetchMetadataThunk: vi.fn((country: string) => { - const thunk = () => ({ type: 'metadata/fetch/pending', meta: { arg: country } }); - thunk.country = country; // Add country as property for testing - return thunk; - }), - default: (state = {}) => state, -})); - -// Track dispatched thunks -let dispatchedThunks: any[] = []; - -// Helper to create test store and wrapper -const createTestSetup = (metadataState: any) => { - dispatchedThunks = []; - - const store = configureStore({ - reducer: { - metadata: () => metadataState, - policy: () => ({}), - simulation: () => ({}), - population: () => ({}), - }, - }); - - // Intercept dispatch to track thunks - const originalDispatch = store.dispatch; - store.dispatch = ((action: any) => { - if (typeof action === 'function' && action.country) { - dispatchedThunks.push(action.country); - } - return originalDispatch(action); - }) as any; - - const wrapper = ({ children }: { children: React.ReactNode }) => ( - {children} - ); - - return { store, wrapper }; -}; - -describe('useFetchMetadata', () => { - beforeEach(() => { - vi.clearAllMocks(); - dispatchedThunks = []; - }); - - test('given no metadata exists then fetches metadata for specified country', () => { - // Given - const { wrapper } = createTestSetup(mockInitialMetadataState); - - // When - renderHook(() => useFetchMetadata(TEST_COUNTRY_US), { wrapper }); - - // Then - expect(dispatchedThunks).toContain(TEST_COUNTRY_US); - }); - - test('given country parameter provided then fetches metadata for that country', () => { - // Given - const { wrapper } = createTestSetup(mockInitialMetadataState); - - // When - renderHook(() => useFetchMetadata(TEST_COUNTRY_UK), { wrapper }); - - // Then - expect(dispatchedThunks).toContain(TEST_COUNTRY_UK); - }); - - test('given metadata already exists for current country then does not fetch again', () => { - // Given - const { wrapper } = createTestSetup(mockLoadedMetadataState); - - // When - renderHook(() => useFetchMetadata(TEST_COUNTRY_US), { wrapper }); - - // Then - expect(dispatchedThunks).toHaveLength(0); - }); - - test('given metadata exists but country changes then fetches new metadata', () => { - // Given - const { wrapper } = createTestSetup(mockLoadedMetadataState); - - // When - renderHook(() => useFetchMetadata(TEST_COUNTRY_UK), { wrapper }); - - // Then - expect(dispatchedThunks).toContain(TEST_COUNTRY_UK); - }); - - test('given metadata has different country then fetches for new country', () => { - // Given - metadata has US, but we request CA - const { wrapper } = createTestSetup(mockStateWithCurrentCountry); - - // When - renderHook(() => useFetchMetadata(TEST_COUNTRY_CA), { wrapper }); - - // Then - expect(dispatchedThunks).toContain(TEST_COUNTRY_CA); - }); - - test('given metadata version is null then fetches metadata', () => { - // Given - const { wrapper } = createTestSetup(mockStateWithoutVersion); - - // When - renderHook(() => useFetchMetadata(TEST_COUNTRY_US), { wrapper }); - - // Then - expect(dispatchedThunks).toContain(TEST_COUNTRY_US); - }); - - test('given request for US when no metadata exists then fetches US metadata', () => { - // Given - const { wrapper } = createTestSetup(mockInitialMetadataState); - - // When - renderHook(() => useFetchMetadata(TEST_COUNTRY_US), { wrapper }); - - // Then - expect(dispatchedThunks).toContain(TEST_COUNTRY_US); - }); - - test('given request for UK when no metadata exists then fetches UK metadata', () => { - // Given - const { wrapper } = createTestSetup(mockInitialMetadataState); - - // When - renderHook(() => useFetchMetadata(TEST_COUNTRY_UK), { wrapper }); - - // Then - expect(dispatchedThunks).toContain(TEST_COUNTRY_UK); - }); - - test('given metadata fetch in progress then still fetches when version is null', () => { - // Given - const { wrapper } = createTestSetup(mockLoadingMetadataState); - - // When - renderHook(() => useFetchMetadata(TEST_COUNTRY_US), { wrapper }); - - // Then - should still fetch because version is null even though loading - expect(dispatchedThunks).toContain(TEST_COUNTRY_US); - }); - - test('given error in metadata state then attempts to fetch again', () => { - // Given - const { wrapper } = createTestSetup(mockErrorState); - - // When - renderHook(() => useFetchMetadata(TEST_COUNTRY_US), { wrapper }); - - // Then - expect(dispatchedThunks).toContain(TEST_COUNTRY_US); - }); - - test('given country changes in props then handles re-render correctly', () => { - // Given - metadata already loaded for US - const { wrapper } = createTestSetup(mockLoadedMetadataState); - const { rerender } = renderHook(({ country }) => useFetchMetadata(country), { - wrapper, - initialProps: { country: TEST_COUNTRY_US }, - }); - - // When - change to UK which needs fetching - dispatchedThunks = []; - rerender({ country: TEST_COUNTRY_UK }); - - // Then - should fetch UK metadata - expect(dispatchedThunks).toContain(TEST_COUNTRY_UK); - }); - - test('given hook unmounts then cleanup occurs without errors', () => { - // Given - const { wrapper } = createTestSetup(mockInitialMetadataState); - - // When - const { unmount } = renderHook(() => useFetchMetadata(TEST_COUNTRY_UK), { wrapper }); - - // Verify dispatch was called before unmount - expect(dispatchedThunks).toContain(TEST_COUNTRY_UK); - - // Then - unmount should not throw - expect(() => unmount()).not.toThrow(); - }); -}); diff --git a/app/src/tests/unit/reducers/metadataReducer.test.ts b/app/src/tests/unit/reducers/metadataReducer.test.ts index 4d832b26e..6f44e5d94 100644 --- a/app/src/tests/unit/reducers/metadataReducer.test.ts +++ b/app/src/tests/unit/reducers/metadataReducer.test.ts @@ -1,14 +1,13 @@ import { configureStore } from '@reduxjs/toolkit'; import { beforeEach, describe, expect, test, vi } from 'vitest'; -import * as metadataApi from '@/api/metadata'; import * as buildParameterTreeModule from '@/libs/buildParameterTree'; import metadataReducer, { clearMetadata, - fetchMetadataThunk, + fetchCoreMetadataThunk, + fetchParametersThunk, setCurrentCountry, } from '@/reducers/metadataReducer'; import { - createMockApiPayload, createMockClearedState, createMockStateWithData, expectCurrentCountry, @@ -18,102 +17,70 @@ import { expectLoadingState, expectParameterTree, expectStateToEqual, - expectVersion, - MOCK_BASIC_INPUTS, - MOCK_ECONOMY_OPTIONS, - MOCK_ENTITIES, - MOCK_LOADING_STATE, - MOCK_MODELLED_POLICIES, MOCK_PARAMETER_TREE, - MOCK_PARAMETERS, - MOCK_VARIABLE_MODULES, - MOCK_VARIABLES, TEST_COUNTRY_CA, TEST_COUNTRY_UK, TEST_COUNTRY_US, - TEST_CURRENT_LAW_ID, TEST_ERROR_MESSAGE, TEST_VERSION, } from '@/tests/fixtures/reducers/metadataReducerMocks'; -// Mock the API and buildParameterTree modules -vi.mock('@/api/metadata'); +// Mock the storage loaders +vi.mock('@/storage', () => ({ + loadCoreMetadata: vi.fn(), + loadParameters: vi.fn(), +})); + vi.mock('@/libs/buildParameterTree'); describe('metadataReducer', () => { beforeEach(() => { vi.clearAllMocks(); - // Mock console methods to avoid test output noise vi.spyOn(console, 'log').mockImplementation(() => {}); vi.spyOn(console, 'error').mockImplementation(() => {}); }); describe('initial state', () => { test('given no action then returns initial state', () => { - // Given const action = { type: 'unknown/action' }; - - // When const state = metadataReducer(undefined, action); - - // Then expectStateToEqual(state, EXPECTED_INITIAL_STATE); }); }); describe('setCurrentCountry action', () => { test('given setCurrentCountry with new country then updates country', () => { - // Given const initialState = EXPECTED_INITIAL_STATE; const action = setCurrentCountry(TEST_COUNTRY_US); - - // When const state = metadataReducer(initialState, action); - - // Then expectCurrentCountry(state, TEST_COUNTRY_US); }); test('given setCurrentCountry when version is null then does not clear metadata', () => { - // Given const initialState = EXPECTED_INITIAL_STATE; const action = setCurrentCountry(TEST_COUNTRY_US); - - // When const state = metadataReducer(initialState, action); - - // Then expectCurrentCountry(state, TEST_COUNTRY_US); expect(state.variables).toEqual({}); expect(state.parameters).toEqual({}); }); - test('given setCurrentCountry when version exists then clears metadata', () => { - // Given - const initialState = createMockStateWithData({ version: TEST_VERSION }); + test('given setCurrentCountry when coreLoaded is true then clears metadata', () => { + const initialState = createMockStateWithData({ coreLoaded: true }); const action = setCurrentCountry(TEST_COUNTRY_UK); - - // When const state = metadataReducer(initialState, action); - - // Then expectCurrentCountry(state, TEST_COUNTRY_UK); expectEmptyMetadata(state); }); test('given setCurrentCountry then preserves loading and error states', () => { - // Given const initialState = createMockStateWithData({ loading: true, error: TEST_ERROR_MESSAGE, - version: TEST_VERSION, + coreLoaded: true, }); const action = setCurrentCountry(TEST_COUNTRY_CA); - - // When const state = metadataReducer(initialState, action); - - // Then expectLoadingState(state, true); expectErrorState(state, TEST_ERROR_MESSAGE); }); @@ -121,216 +88,162 @@ describe('metadataReducer', () => { describe('clearMetadata action', () => { test('given clearMetadata then resets to initial state but keeps country', () => { - // Given const initialState = createMockStateWithData({ currentCountry: TEST_COUNTRY_US }); const action = clearMetadata(); - - // When const state = metadataReducer(initialState, action); - - // Then expectStateToEqual(state, createMockClearedState(TEST_COUNTRY_US)); }); test('given clearMetadata with no country then keeps null country', () => { - // Given const initialState = createMockStateWithData({ currentCountry: null }); const action = clearMetadata(); - - // When const state = metadataReducer(initialState, action); - - // Then expectStateToEqual(state, createMockClearedState(null)); }); }); - describe('fetchMetadataThunk', () => { - test('given pending action then sets loading state', () => { - // Given + describe('fetchCoreMetadataThunk', () => { + test('given pending action then sets coreLoading state', () => { const initialState = EXPECTED_INITIAL_STATE; - const action = { type: fetchMetadataThunk.pending.type }; - - // When + const action = { type: fetchCoreMetadataThunk.pending.type }; const state = metadataReducer(initialState, action); - - // Then - expectLoadingState(state, true); - expectErrorState(state, null); - }); - - test('given fulfilled action then updates all metadata fields', () => { - // Given - const initialState = MOCK_LOADING_STATE; - const apiPayload = createMockApiPayload(); + expect(state.coreLoading).toBe(true); + expect(state.coreError).toBeNull(); + }); + + test('given fulfilled action then updates core metadata fields', () => { + const initialState = { ...EXPECTED_INITIAL_STATE, coreLoading: true }; + const mockVariables = [ + { id: '1', name: 'income', entity: 'person', description: 'Income' }, + ]; + const mockDatasets = [ + { id: '1', name: 'cps_2024', description: 'CPS 2024' }, + ]; const action = { - type: fetchMetadataThunk.fulfilled.type, - payload: { data: apiPayload, country: TEST_COUNTRY_US }, + type: fetchCoreMetadataThunk.fulfilled.type, + payload: { + data: { + variables: mockVariables, + datasets: mockDatasets, + version: TEST_VERSION, + versionId: 'version-123', + }, + countryId: TEST_COUNTRY_US, + }, }; - // Mock buildParameterTree to return our mock tree - vi.mocked(buildParameterTreeModule.buildParameterTree).mockReturnValue(MOCK_PARAMETER_TREE); - - // When const state = metadataReducer(initialState, action); - // Then - expectLoadingState(state, false); - expectErrorState(state, null); - expectCurrentCountry(state, TEST_COUNTRY_US); - expect(state.variables).toEqual(MOCK_VARIABLES); - expect(state.parameters).toEqual(MOCK_PARAMETERS); - expect(state.entities).toEqual(MOCK_ENTITIES); - expect(state.variableModules).toEqual(MOCK_VARIABLE_MODULES); - expect(state.economyOptions).toEqual(MOCK_ECONOMY_OPTIONS); - expect(state.currentLawId).toBe(TEST_CURRENT_LAW_ID); - expect(state.basicInputs).toEqual(MOCK_BASIC_INPUTS); - expect(state.modelledPolicies).toEqual(MOCK_MODELLED_POLICIES); - expectVersion(state, TEST_VERSION); - expectParameterTree(state, true); + expect(state.coreLoading).toBe(false); + expect(state.coreLoaded).toBe(true); + expect(state.coreError).toBeNull(); + expect(state.currentCountry).toBe(TEST_COUNTRY_US); + expect(state.version).toBe(TEST_VERSION); + expect(state.variables).toEqual({ income: mockVariables[0] }); + expect(state.economyOptions.datasets).toHaveLength(1); + expect(state.economyOptions.datasets[0].name).toBe('cps_2024'); }); - test('given fulfilled action when buildParameterTree returns undefined then sets null tree', () => { - // Given - const initialState = MOCK_LOADING_STATE; - const apiPayload = createMockApiPayload(); + test('given rejected action then sets coreError state', () => { + const initialState = { ...EXPECTED_INITIAL_STATE, coreLoading: true }; const action = { - type: fetchMetadataThunk.fulfilled.type, - payload: { data: apiPayload, country: TEST_COUNTRY_US }, + type: fetchCoreMetadataThunk.rejected.type, + payload: TEST_ERROR_MESSAGE, }; - - // Mock buildParameterTree to return undefined - vi.mocked(buildParameterTreeModule.buildParameterTree).mockReturnValue(undefined); - - // When const state = metadataReducer(initialState, action); - - // Then - expectParameterTree(state, false); + expect(state.coreLoading).toBe(false); + expect(state.coreError).toBe(TEST_ERROR_MESSAGE); }); + }); - test('given fulfilled action when buildParameterTree throws error then sets null tree', () => { - // Given - const initialState = MOCK_LOADING_STATE; - const apiPayload = createMockApiPayload(); + describe('fetchParametersThunk', () => { + test('given pending action then sets parametersLoading state', () => { + const initialState = { ...EXPECTED_INITIAL_STATE, coreLoaded: true }; + const action = { type: fetchParametersThunk.pending.type }; + const state = metadataReducer(initialState, action); + expect(state.parametersLoading).toBe(true); + expect(state.parametersError).toBeNull(); + }); + + test('given fulfilled action then updates parameters fields', () => { + const initialState = { ...EXPECTED_INITIAL_STATE, coreLoaded: true, parametersLoading: true }; + const mockParameters = [ + { id: 'p1', name: 'tax.rate', label: 'Tax Rate' }, + ]; + const mockParameterValues = [ + { id: 'pv1', parameter_id: 'p1', start_date: '2024-01-01', value_json: 0.25 }, + ]; const action = { - type: fetchMetadataThunk.fulfilled.type, - payload: { data: apiPayload, country: TEST_COUNTRY_US }, + type: fetchParametersThunk.fulfilled.type, + payload: { + data: { + parameters: mockParameters, + parameterValues: mockParameterValues, + }, + }, }; - // Mock buildParameterTree to throw error - vi.mocked(buildParameterTreeModule.buildParameterTree).mockImplementation(() => { - throw new Error('Failed to build tree'); - }); + vi.mocked(buildParameterTreeModule.buildParameterTree).mockReturnValue(MOCK_PARAMETER_TREE); - // When const state = metadataReducer(initialState, action); - // Then - expectParameterTree(state, false); + expect(state.parametersLoading).toBe(false); + expect(state.parametersLoaded).toBe(true); + expect(state.parametersError).toBeNull(); + expect(state.parameters['tax.rate']).toBeDefined(); + expect(state.parameters['tax.rate'].values['2024-01-01']).toBe(0.25); + expectParameterTree(state, true); }); - test('given rejected action then sets error state', () => { - // Given - const initialState = MOCK_LOADING_STATE; + test('given rejected action then sets parametersError state', () => { + const initialState = { ...EXPECTED_INITIAL_STATE, coreLoaded: true, parametersLoading: true }; const action = { - type: fetchMetadataThunk.rejected.type, + type: fetchParametersThunk.rejected.type, payload: TEST_ERROR_MESSAGE, }; - - // When const state = metadataReducer(initialState, action); - - // Then - expectLoadingState(state, false); - expectErrorState(state, TEST_ERROR_MESSAGE); - }); - }); - - describe('fetchMetadataThunk async behavior', () => { - test('given successful API call then returns data and country', async () => { - // Given - const apiPayload = createMockApiPayload(); - vi.mocked(metadataApi.fetchMetadata).mockResolvedValue(apiPayload); - - const store = configureStore({ - reducer: { metadata: metadataReducer }, - }); - - // When - const result = await store.dispatch(fetchMetadataThunk(TEST_COUNTRY_US)); - - // Then - expect(result.type).toBe(fetchMetadataThunk.fulfilled.type); - expect(result.payload).toEqual({ data: apiPayload, country: TEST_COUNTRY_US }); - }); - - test('given API error then rejects with error message', async () => { - // Given - const error = new Error(TEST_ERROR_MESSAGE); - vi.mocked(metadataApi.fetchMetadata).mockRejectedValue(error); - - const store = configureStore({ - reducer: { metadata: metadataReducer }, - }); - - // When - const result = await store.dispatch(fetchMetadataThunk(TEST_COUNTRY_US)); - - // Then - expect(result.type).toBe(fetchMetadataThunk.rejected.type); - expect(result.payload).toBe(TEST_ERROR_MESSAGE); - }); - - test('given non-Error rejection then rejects with unknown error', async () => { - // Given - vi.mocked(metadataApi.fetchMetadata).mockRejectedValue('String error'); - - const store = configureStore({ - reducer: { metadata: metadataReducer }, - }); - - // When - const result = await store.dispatch(fetchMetadataThunk(TEST_COUNTRY_US)); - - // Then - expect(result.type).toBe(fetchMetadataThunk.rejected.type); - expect(result.payload).toBe('Unknown error'); + expect(state.parametersLoading).toBe(false); + expect(state.parametersError).toBe(TEST_ERROR_MESSAGE); }); }); describe('state transitions', () => { test('given sequence of actions then maintains correct state', () => { - // Given let state = EXPECTED_INITIAL_STATE; - // When & Then - Set country + // Set country state = metadataReducer(state, setCurrentCountry(TEST_COUNTRY_US)); expectCurrentCountry(state, TEST_COUNTRY_US); - // When & Then - Start loading - state = metadataReducer(state, { type: fetchMetadataThunk.pending.type }); - expectLoadingState(state, true); + // Start core loading + state = metadataReducer(state, { type: fetchCoreMetadataThunk.pending.type }); + expect(state.coreLoading).toBe(true); - // When & Then - Receive data - const apiPayload = createMockApiPayload(); - vi.mocked(buildParameterTreeModule.buildParameterTree).mockReturnValue(MOCK_PARAMETER_TREE); + // Receive core data state = metadataReducer(state, { - type: fetchMetadataThunk.fulfilled.type, - payload: { data: apiPayload, country: TEST_COUNTRY_US }, + type: fetchCoreMetadataThunk.fulfilled.type, + payload: { + data: { + variables: [{ id: '1', name: 'test', entity: 'person' }], + datasets: [], + version: TEST_VERSION, + versionId: 'v1', + }, + countryId: TEST_COUNTRY_US, + }, }); - expectLoadingState(state, false); - expectVersion(state, TEST_VERSION); + expect(state.coreLoading).toBe(false); + expect(state.coreLoaded).toBe(true); - // When & Then - Change country (should clear data) - state = metadataReducer(state, setCurrentCountry(TEST_COUNTRY_UK)); - expectCurrentCountry(state, TEST_COUNTRY_UK); - expectEmptyMetadata(state); + // Start parameters loading + state = metadataReducer(state, { type: fetchParametersThunk.pending.type }); + expect(state.parametersLoading).toBe(true); - // When & Then - Clear metadata - state = metadataReducer(state, clearMetadata()); + // Change country (should clear data and reset loading states) + state = metadataReducer(state, setCurrentCountry(TEST_COUNTRY_UK)); expectCurrentCountry(state, TEST_COUNTRY_UK); - expectEmptyMetadata(state); + expect(state.coreLoaded).toBe(false); + expect(state.parametersLoaded).toBe(false); }); }); }); From 80257042c8c58f3d8a14df84e95eb0f2e4666a94 Mon Sep 17 00:00:00 2001 From: Anthony Volk Date: Fri, 19 Dec 2025 16:19:48 +0400 Subject: [PATCH 06/32] feat: Static data --- app/src/data/static/basicInputs.ts | 36 ++++++++++ app/src/data/static/entities.ts | 86 +++++++++++++++++++++++ app/src/data/static/index.ts | 62 +++++++++++++++++ app/src/data/static/modelledPolicies.ts | 72 +++++++++++++++++++ app/src/data/static/regions.ts | 93 +++++++++++++++++++++++++ app/src/data/static/timePeriods.ts | 56 +++++++++++++++ app/src/reducers/metadataReducer.ts | 10 +++ 7 files changed, 415 insertions(+) create mode 100644 app/src/data/static/basicInputs.ts create mode 100644 app/src/data/static/entities.ts create mode 100644 app/src/data/static/index.ts create mode 100644 app/src/data/static/modelledPolicies.ts create mode 100644 app/src/data/static/regions.ts create mode 100644 app/src/data/static/timePeriods.ts diff --git a/app/src/data/static/basicInputs.ts b/app/src/data/static/basicInputs.ts new file mode 100644 index 000000000..221381e5d --- /dev/null +++ b/app/src/data/static/basicInputs.ts @@ -0,0 +1,36 @@ +/** + * Static basic input field definitions for US and UK + * These define which variable fields appear in the basic household input forms + */ + +/** + * US basic input fields + */ +export const US_BASIC_INPUTS: string[] = [ + 'age', + 'employment_income', + 'state_name', +]; + +/** + * UK basic input fields + */ +export const UK_BASIC_INPUTS: string[] = [ + 'age', + 'employment_income', + 'region', +]; + +/** + * Get basic inputs for a country + */ +export function getBasicInputs(countryId: string): string[] { + switch (countryId) { + case 'us': + return US_BASIC_INPUTS; + case 'uk': + return UK_BASIC_INPUTS; + default: + return []; + } +} diff --git a/app/src/data/static/entities.ts b/app/src/data/static/entities.ts new file mode 100644 index 000000000..91f1d9e34 --- /dev/null +++ b/app/src/data/static/entities.ts @@ -0,0 +1,86 @@ +/** + * Static entity definitions for US and UK + * These define the household structure entities (person, household, tax_unit, etc.) + */ + +export interface EntityInfo { + label: string; + plural: string; + description?: string; + is_person?: boolean; +} + +export type EntitiesRecord = Record; + +/** + * US entity definitions + */ +export const US_ENTITIES: EntitiesRecord = { + person: { + label: 'Person', + plural: 'people', + description: 'An individual person', + is_person: true, + }, + family: { + label: 'Family', + plural: 'families', + description: 'A family unit', + }, + household: { + label: 'Household', + plural: 'households', + description: 'A household unit', + }, + marital_unit: { + label: 'Marital Unit', + plural: 'marital units', + description: 'A marital unit (spouse pair or single adult)', + }, + tax_unit: { + label: 'Tax Unit', + plural: 'tax units', + description: 'A tax filing unit', + }, + spm_unit: { + label: 'SPM Unit', + plural: 'SPM units', + description: 'A Supplemental Poverty Measure unit', + }, +}; + +/** + * UK entity definitions + */ +export const UK_ENTITIES: EntitiesRecord = { + person: { + label: 'Person', + plural: 'people', + description: 'An individual person', + is_person: true, + }, + benunit: { + label: 'Benefit Unit', + plural: 'benefit units', + description: 'A benefit unit (nuclear family)', + }, + household: { + label: 'Household', + plural: 'households', + description: 'A household unit', + }, +}; + +/** + * Get entities for a country + */ +export function getEntities(countryId: string): EntitiesRecord { + switch (countryId) { + case 'us': + return US_ENTITIES; + case 'uk': + return UK_ENTITIES; + default: + return {}; + } +} diff --git a/app/src/data/static/index.ts b/app/src/data/static/index.ts new file mode 100644 index 000000000..76ae0f3bd --- /dev/null +++ b/app/src/data/static/index.ts @@ -0,0 +1,62 @@ +/** + * Static metadata loader + * Provides country-specific static data that doesn't come from the API + */ + +// Entity definitions +export { + getEntities, + US_ENTITIES, + UK_ENTITIES, + type EntityInfo, + type EntitiesRecord, +} from './entities'; + +// Basic input fields +export { + getBasicInputs, + US_BASIC_INPUTS, + UK_BASIC_INPUTS, +} from './basicInputs'; + +// Region definitions +export { getRegions, US_REGIONS, UK_REGIONS } from './regions'; + +// Modelled policies +export { + getModelledPolicies, + getCurrentLawId, + CURRENT_LAW_ID, + US_MODELLED_POLICIES, + UK_MODELLED_POLICIES, + type PolicyInfo, + type ModelledPolicies, +} from './modelledPolicies'; + +// Time periods +export { + getTimePeriods, + US_TIME_PERIODS, + UK_TIME_PERIODS, + type TimePeriodOption, +} from './timePeriods'; + +import { getEntities } from './entities'; +import { getBasicInputs } from './basicInputs'; +import { getRegions } from './regions'; +import { getModelledPolicies, getCurrentLawId } from './modelledPolicies'; +import { getTimePeriods } from './timePeriods'; + +/** + * Get all static data for a country + */ +export function getStaticData(countryId: string) { + return { + entities: getEntities(countryId), + basicInputs: getBasicInputs(countryId), + regions: getRegions(countryId), + modelledPolicies: getModelledPolicies(countryId), + currentLawId: getCurrentLawId(countryId), + timePeriods: getTimePeriods(countryId), + }; +} diff --git a/app/src/data/static/modelledPolicies.ts b/app/src/data/static/modelledPolicies.ts new file mode 100644 index 000000000..ce2bc0afa --- /dev/null +++ b/app/src/data/static/modelledPolicies.ts @@ -0,0 +1,72 @@ +/** + * Static modelled policy definitions for US and UK + * These define the pre-configured policy options (baseline, reforms, etc.) + * + * NOTE: This is a placeholder implementation. The modelled policies structure + * should be updated with correct policy definitions in the future. + */ + +export interface PolicyInfo { + id: number; + label: string; + description?: string; +} + +export interface ModelledPolicies { + core: Record; + filtered: Record; +} + +/** + * US modelled policies + */ +export const US_MODELLED_POLICIES: ModelledPolicies = { + core: { + baseline: { + id: 1, + label: 'Current law', + description: 'The current US tax and benefit system', + }, + }, + filtered: {}, +}; + +/** + * UK modelled policies + */ +export const UK_MODELLED_POLICIES: ModelledPolicies = { + core: { + baseline: { + id: 1, + label: 'Current law', + description: 'The current UK tax and benefit system', + }, + }, + filtered: {}, +}; + +/** + * Get modelled policies for a country + */ +export function getModelledPolicies(countryId: string): ModelledPolicies { + switch (countryId) { + case 'us': + return US_MODELLED_POLICIES; + case 'uk': + return UK_MODELLED_POLICIES; + default: + return { core: {}, filtered: {} }; + } +} + +/** + * Current law ID (same for all countries) + */ +export const CURRENT_LAW_ID = 1; + +/** + * Get current law ID for a country + */ +export function getCurrentLawId(_countryId: string): number { + return CURRENT_LAW_ID; +} diff --git a/app/src/data/static/regions.ts b/app/src/data/static/regions.ts new file mode 100644 index 000000000..a53a227be --- /dev/null +++ b/app/src/data/static/regions.ts @@ -0,0 +1,93 @@ +/** + * Static region definitions for US and UK + * These define the geographic regions available for economy-wide simulations + */ + +import { MetadataRegionEntry } from '@/types/metadata'; +import { UK_REGION_TYPES, US_REGION_TYPES } from '@/types/regionTypes'; + +/** + * US region options + * Note: Congressional districts are dynamically loaded, not included here + */ +export const US_REGIONS: MetadataRegionEntry[] = [ + { name: 'us', label: 'United States', type: US_REGION_TYPES.NATIONAL }, + { name: 'state/al', label: 'Alabama', type: US_REGION_TYPES.STATE }, + { name: 'state/ak', label: 'Alaska', type: US_REGION_TYPES.STATE }, + { name: 'state/az', label: 'Arizona', type: US_REGION_TYPES.STATE }, + { name: 'state/ar', label: 'Arkansas', type: US_REGION_TYPES.STATE }, + { name: 'state/ca', label: 'California', type: US_REGION_TYPES.STATE }, + { name: 'state/co', label: 'Colorado', type: US_REGION_TYPES.STATE }, + { name: 'state/ct', label: 'Connecticut', type: US_REGION_TYPES.STATE }, + { name: 'state/de', label: 'Delaware', type: US_REGION_TYPES.STATE }, + { name: 'state/fl', label: 'Florida', type: US_REGION_TYPES.STATE }, + { name: 'state/ga', label: 'Georgia', type: US_REGION_TYPES.STATE }, + { name: 'state/hi', label: 'Hawaii', type: US_REGION_TYPES.STATE }, + { name: 'state/id', label: 'Idaho', type: US_REGION_TYPES.STATE }, + { name: 'state/il', label: 'Illinois', type: US_REGION_TYPES.STATE }, + { name: 'state/in', label: 'Indiana', type: US_REGION_TYPES.STATE }, + { name: 'state/ia', label: 'Iowa', type: US_REGION_TYPES.STATE }, + { name: 'state/ks', label: 'Kansas', type: US_REGION_TYPES.STATE }, + { name: 'state/ky', label: 'Kentucky', type: US_REGION_TYPES.STATE }, + { name: 'state/la', label: 'Louisiana', type: US_REGION_TYPES.STATE }, + { name: 'state/me', label: 'Maine', type: US_REGION_TYPES.STATE }, + { name: 'state/md', label: 'Maryland', type: US_REGION_TYPES.STATE }, + { name: 'state/ma', label: 'Massachusetts', type: US_REGION_TYPES.STATE }, + { name: 'state/mi', label: 'Michigan', type: US_REGION_TYPES.STATE }, + { name: 'state/mn', label: 'Minnesota', type: US_REGION_TYPES.STATE }, + { name: 'state/ms', label: 'Mississippi', type: US_REGION_TYPES.STATE }, + { name: 'state/mo', label: 'Missouri', type: US_REGION_TYPES.STATE }, + { name: 'state/mt', label: 'Montana', type: US_REGION_TYPES.STATE }, + { name: 'state/ne', label: 'Nebraska', type: US_REGION_TYPES.STATE }, + { name: 'state/nv', label: 'Nevada', type: US_REGION_TYPES.STATE }, + { name: 'state/nh', label: 'New Hampshire', type: US_REGION_TYPES.STATE }, + { name: 'state/nj', label: 'New Jersey', type: US_REGION_TYPES.STATE }, + { name: 'state/nm', label: 'New Mexico', type: US_REGION_TYPES.STATE }, + { name: 'state/ny', label: 'New York', type: US_REGION_TYPES.STATE }, + { name: 'state/nc', label: 'North Carolina', type: US_REGION_TYPES.STATE }, + { name: 'state/nd', label: 'North Dakota', type: US_REGION_TYPES.STATE }, + { name: 'state/oh', label: 'Ohio', type: US_REGION_TYPES.STATE }, + { name: 'state/ok', label: 'Oklahoma', type: US_REGION_TYPES.STATE }, + { name: 'state/or', label: 'Oregon', type: US_REGION_TYPES.STATE }, + { name: 'state/pa', label: 'Pennsylvania', type: US_REGION_TYPES.STATE }, + { name: 'state/ri', label: 'Rhode Island', type: US_REGION_TYPES.STATE }, + { name: 'state/sc', label: 'South Carolina', type: US_REGION_TYPES.STATE }, + { name: 'state/sd', label: 'South Dakota', type: US_REGION_TYPES.STATE }, + { name: 'state/tn', label: 'Tennessee', type: US_REGION_TYPES.STATE }, + { name: 'state/tx', label: 'Texas', type: US_REGION_TYPES.STATE }, + { name: 'state/ut', label: 'Utah', type: US_REGION_TYPES.STATE }, + { name: 'state/vt', label: 'Vermont', type: US_REGION_TYPES.STATE }, + { name: 'state/va', label: 'Virginia', type: US_REGION_TYPES.STATE }, + { name: 'state/wa', label: 'Washington', type: US_REGION_TYPES.STATE }, + { name: 'state/wv', label: 'West Virginia', type: US_REGION_TYPES.STATE }, + { name: 'state/wi', label: 'Wisconsin', type: US_REGION_TYPES.STATE }, + { name: 'state/wy', label: 'Wyoming', type: US_REGION_TYPES.STATE }, + { name: 'state/dc', label: 'District of Columbia', type: US_REGION_TYPES.STATE }, + { name: 'city/nyc', label: 'New York City', type: US_REGION_TYPES.CITY }, +]; + +/** + * UK region options + * Note: Constituencies are dynamically loaded, not included here + */ +export const UK_REGIONS: MetadataRegionEntry[] = [ + { name: 'uk', label: 'United Kingdom', type: UK_REGION_TYPES.NATIONAL }, + { name: 'country/england', label: 'England', type: UK_REGION_TYPES.COUNTRY }, + { name: 'country/scotland', label: 'Scotland', type: UK_REGION_TYPES.COUNTRY }, + { name: 'country/wales', label: 'Wales', type: UK_REGION_TYPES.COUNTRY }, + { name: 'country/northern_ireland', label: 'Northern Ireland', type: UK_REGION_TYPES.COUNTRY }, +]; + +/** + * Get regions for a country + */ +export function getRegions(countryId: string): MetadataRegionEntry[] { + switch (countryId) { + case 'us': + return US_REGIONS; + case 'uk': + return UK_REGIONS; + default: + return []; + } +} diff --git a/app/src/data/static/timePeriods.ts b/app/src/data/static/timePeriods.ts new file mode 100644 index 000000000..4ac39187b --- /dev/null +++ b/app/src/data/static/timePeriods.ts @@ -0,0 +1,56 @@ +/** + * Static time period definitions for US and UK + * These define the available tax years for simulations + */ + +export interface TimePeriodOption { + name: number; + label: string; +} + +/** + * US time periods (tax years): 2022-2035 + */ +export const US_TIME_PERIODS: TimePeriodOption[] = [ + { name: 2022, label: '2022' }, + { name: 2023, label: '2023' }, + { name: 2024, label: '2024' }, + { name: 2025, label: '2025' }, + { name: 2026, label: '2026' }, + { name: 2027, label: '2027' }, + { name: 2028, label: '2028' }, + { name: 2029, label: '2029' }, + { name: 2030, label: '2030' }, + { name: 2031, label: '2031' }, + { name: 2032, label: '2032' }, + { name: 2033, label: '2033' }, + { name: 2034, label: '2034' }, + { name: 2035, label: '2035' }, +]; + +/** + * UK time periods (tax years): 2024-2030 + */ +export const UK_TIME_PERIODS: TimePeriodOption[] = [ + { name: 2024, label: '2024' }, + { name: 2025, label: '2025' }, + { name: 2026, label: '2026' }, + { name: 2027, label: '2027' }, + { name: 2028, label: '2028' }, + { name: 2029, label: '2029' }, + { name: 2030, label: '2030' }, +]; + +/** + * Get time periods for a country + */ +export function getTimePeriods(countryId: string): TimePeriodOption[] { + switch (countryId) { + case 'us': + return US_TIME_PERIODS; + case 'uk': + return UK_TIME_PERIODS; + default: + return []; + } +} diff --git a/app/src/reducers/metadataReducer.ts b/app/src/reducers/metadataReducer.ts index 65a53ae0c..e46d9341b 100644 --- a/app/src/reducers/metadataReducer.ts +++ b/app/src/reducers/metadataReducer.ts @@ -1,4 +1,5 @@ import { createAsyncThunk, createSlice, PayloadAction } from '@reduxjs/toolkit'; +import { getStaticData } from '@/data/static'; import { buildParameterTree } from '@/libs/buildParameterTree'; import { loadCoreMetadata, loadParameters } from '@/storage'; import { MetadataState } from '@/types/metadata'; @@ -131,6 +132,15 @@ const metadataSlice = createSlice({ title: d.description || d.name, default: i === 0, })); + + // Load static data for the country + const staticData = getStaticData(countryId); + state.entities = staticData.entities; + state.basicInputs = staticData.basicInputs; + state.economyOptions.region = staticData.regions; + state.economyOptions.time_period = staticData.timePeriods; + state.modelledPolicies = staticData.modelledPolicies; + state.currentLawId = staticData.currentLawId; }) .addCase(fetchCoreMetadataThunk.rejected, (state, action) => { state.coreLoading = false; From 7d20af473cdc4147b25e0ed1e8fa31c360200d9b Mon Sep 17 00:00:00 2001 From: Anthony Volk Date: Fri, 19 Dec 2025 16:41:43 +0400 Subject: [PATCH 07/32] feat: Regions --- app/src/data/static/index.ts | 14 +- app/src/data/static/regions/index.ts | 14 + app/src/data/static/regions/resolver.ts | 82 +++ app/src/data/static/regions/types.ts | 42 ++ .../data/static/regions/uk/constituencies.ts | 73 ++ .../regions/uk/data/constituencies_2024.csv | 651 ++++++++++++++++++ .../uk/data/local_authorities_2021.csv | 361 ++++++++++ .../static/regions/uk/localAuthorities.ts | 72 ++ .../regions/us/congressionalDistricts.ts | 205 ++++++ .../static/{regions.ts => staticRegions.ts} | 0 app/src/hooks/useRegions.ts | 54 ++ app/src/reducers/metadataReducer.ts | 10 +- app/src/vite-env.d.ts | 6 + 13 files changed, 1578 insertions(+), 6 deletions(-) create mode 100644 app/src/data/static/regions/index.ts create mode 100644 app/src/data/static/regions/resolver.ts create mode 100644 app/src/data/static/regions/types.ts create mode 100644 app/src/data/static/regions/uk/constituencies.ts create mode 100644 app/src/data/static/regions/uk/data/constituencies_2024.csv create mode 100644 app/src/data/static/regions/uk/data/local_authorities_2021.csv create mode 100644 app/src/data/static/regions/uk/localAuthorities.ts create mode 100644 app/src/data/static/regions/us/congressionalDistricts.ts rename app/src/data/static/{regions.ts => staticRegions.ts} (100%) create mode 100644 app/src/hooks/useRegions.ts diff --git a/app/src/data/static/index.ts b/app/src/data/static/index.ts index 76ae0f3bd..ff918364a 100644 --- a/app/src/data/static/index.ts +++ b/app/src/data/static/index.ts @@ -19,8 +19,10 @@ export { UK_BASIC_INPUTS, } from './basicInputs'; -// Region definitions -export { getRegions, US_REGIONS, UK_REGIONS } from './regions'; +// Static region definitions (states and countries only) +// For full regions including congressional districts, constituencies, etc., +// use the versioned regions module: import { resolveRegions } from '@/data/static/regions' +export { US_REGIONS, UK_REGIONS } from './staticRegions'; // Modelled policies export { @@ -43,18 +45,20 @@ export { import { getEntities } from './entities'; import { getBasicInputs } from './basicInputs'; -import { getRegions } from './regions'; import { getModelledPolicies, getCurrentLawId } from './modelledPolicies'; import { getTimePeriods } from './timePeriods'; /** - * Get all static data for a country + * Get all static data for a country (excluding regions) + * + * Regions are handled separately via the versioned regions module + * because they vary by simulation year. Use resolveRegions(countryId, year) + * from '@/data/static/regions' for year-aware region resolution. */ export function getStaticData(countryId: string) { return { entities: getEntities(countryId), basicInputs: getBasicInputs(countryId), - regions: getRegions(countryId), modelledPolicies: getModelledPolicies(countryId), currentLawId: getCurrentLawId(countryId), timePeriods: getTimePeriods(countryId), diff --git a/app/src/data/static/regions/index.ts b/app/src/data/static/regions/index.ts new file mode 100644 index 000000000..c3f5b7f1e --- /dev/null +++ b/app/src/data/static/regions/index.ts @@ -0,0 +1,14 @@ +/** + * Versioned regions module + * + * Provides access to geographic regions that vary by simulation year. + * Use resolveRegions() to get the correct regions for a given country and year. + */ + +export { resolveRegions, getAvailableVersions } from './resolver'; +export type { ResolvedRegions, RegionVersionMeta, VersionedRegionSet } from './types'; + +// Re-export versioned data for direct access if needed +export { US_CONGRESSIONAL_DISTRICTS } from './us/congressionalDistricts'; +export { UK_CONSTITUENCIES } from './uk/constituencies'; +export { UK_LOCAL_AUTHORITIES } from './uk/localAuthorities'; diff --git a/app/src/data/static/regions/resolver.ts b/app/src/data/static/regions/resolver.ts new file mode 100644 index 000000000..9d57e6c18 --- /dev/null +++ b/app/src/data/static/regions/resolver.ts @@ -0,0 +1,82 @@ +/** + * Region resolver - returns the correct regions for a country and simulation year + */ + +import { MetadataRegionEntry } from '@/types/metadata'; +import { US_REGIONS, UK_REGIONS } from '../staticRegions'; +import { US_CONGRESSIONAL_DISTRICTS } from './us/congressionalDistricts'; +import { UK_CONSTITUENCIES } from './uk/constituencies'; +import { UK_LOCAL_AUTHORITIES } from './uk/localAuthorities'; +import { ResolvedRegions } from './types'; + +/** + * Resolve all regions for a country and simulation year + * + * This function returns the correct set of regions based on: + * - Country (us/uk) + * - Simulation year (determines which version of dynamic regions to use) + * + * Static regions (states, countries) are always included. + * Dynamic regions (congressional districts, constituencies, local authorities) + * are resolved based on the simulation year. + */ +export function resolveRegions( + countryId: string, + year: number +): ResolvedRegions { + switch (countryId) { + case 'us': { + const districtVersion = + US_CONGRESSIONAL_DISTRICTS.getVersionForYear(year); + const districts = + US_CONGRESSIONAL_DISTRICTS.versions[districtVersion].data; + + return { + regions: [...US_REGIONS, ...districts], + versions: { congressionalDistricts: districtVersion }, + }; + } + + case 'uk': { + const constituencyVersion = UK_CONSTITUENCIES.getVersionForYear(year); + const constituencies = UK_CONSTITUENCIES.versions[constituencyVersion].data; + + const laVersion = UK_LOCAL_AUTHORITIES.getVersionForYear(year); + const localAuthorities = UK_LOCAL_AUTHORITIES.versions[laVersion].data; + + return { + regions: [...UK_REGIONS, ...constituencies, ...localAuthorities], + versions: { + constituencies: constituencyVersion, + localAuthorities: laVersion, + }, + }; + } + + default: + return { regions: [], versions: {} }; + } +} + +/** + * Get available region versions for a country + */ +export function getAvailableVersions(countryId: string): { + congressionalDistricts?: string[]; + constituencies?: string[]; + localAuthorities?: string[]; +} { + switch (countryId) { + case 'us': + return { + congressionalDistricts: Object.keys(US_CONGRESSIONAL_DISTRICTS.versions), + }; + case 'uk': + return { + constituencies: Object.keys(UK_CONSTITUENCIES.versions), + localAuthorities: Object.keys(UK_LOCAL_AUTHORITIES.versions), + }; + default: + return {}; + } +} diff --git a/app/src/data/static/regions/types.ts b/app/src/data/static/regions/types.ts new file mode 100644 index 000000000..03480757b --- /dev/null +++ b/app/src/data/static/regions/types.ts @@ -0,0 +1,42 @@ +/** + * Types for versioned region data + */ + +import { MetadataRegionEntry } from '@/types/metadata'; + +/** + * Metadata for a specific version of region data + */ +export interface RegionVersionMeta { + version: string; + effectiveFrom: number; // Year the version became effective + effectiveUntil: number | null; // Year the version stopped being effective (null = current) + description: string; + source?: string; +} + +/** + * A versioned set of regions with metadata + */ +export interface VersionedRegionSet { + versions: Record< + string, + { + meta: RegionVersionMeta; + data: MetadataRegionEntry[]; + } + >; + getVersionForYear: (year: number) => string; +} + +/** + * Result from resolving regions for a country and year + */ +export interface ResolvedRegions { + regions: MetadataRegionEntry[]; + versions: { + congressionalDistricts?: string; + constituencies?: string; + localAuthorities?: string; + }; +} diff --git a/app/src/data/static/regions/uk/constituencies.ts b/app/src/data/static/regions/uk/constituencies.ts new file mode 100644 index 000000000..898af7c18 --- /dev/null +++ b/app/src/data/static/regions/uk/constituencies.ts @@ -0,0 +1,73 @@ +/** + * UK Parliamentary Constituencies (2024 Boundaries) + * + * 650 constituencies total + * Effective from 2024 General Election onwards + * + * Data source: policyengine-api/data/constituencies_2024.csv + * Source: UK Boundary Commission reviews + */ + +import { MetadataRegionEntry } from '@/types/metadata'; +import { UK_REGION_TYPES } from '@/types/regionTypes'; +import { RegionVersionMeta, VersionedRegionSet } from '../types'; +import constituenciesCSV from './data/constituencies_2024.csv?raw'; + +/** + * Parse CSV data into constituency entries + * CSV format: code,name,x,y + */ +function parseConstituencies(csv: string): MetadataRegionEntry[] { + const lines = csv.trim().split('\n').slice(1); // Skip header + const constituencies: MetadataRegionEntry[] = []; + + for (const line of lines) { + if (!line.trim()) continue; + + // Handle CSV with potential quoted fields containing commas + let name: string; + const parts = line.split(','); + + if (line.includes('"')) { + // Find the quoted name + const quoteStart = line.indexOf('"'); + const quoteEnd = line.lastIndexOf('"'); + name = line.substring(quoteStart + 1, quoteEnd); + } else { + // Simple case: code,name,x,y + name = parts[1]; + } + + constituencies.push({ + name: `constituency/${name}`, + label: name, + type: UK_REGION_TYPES.CONSTITUENCY, + }); + } + + return constituencies.sort((a, b) => a.label.localeCompare(b.label)); +} + +const VERSION_2024_BOUNDARIES: RegionVersionMeta = { + version: '2024-boundaries', + effectiveFrom: 2024, + effectiveUntil: null, + description: 'New constituency boundaries effective from 2024 General Election', + source: 'https://www.legislation.gov.uk/uksi/2023/1230/contents/made', +}; + +// Parse constituencies once at module load +const CONSTITUENCIES_2024 = parseConstituencies(constituenciesCSV); + +export const UK_CONSTITUENCIES: VersionedRegionSet = { + versions: { + '2024-boundaries': { + meta: VERSION_2024_BOUNDARIES, + data: CONSTITUENCIES_2024, + }, + }, + getVersionForYear: (_year: number): string => { + // 2024 boundaries are currently the only version + return '2024-boundaries'; + }, +}; diff --git a/app/src/data/static/regions/uk/data/constituencies_2024.csv b/app/src/data/static/regions/uk/data/constituencies_2024.csv new file mode 100644 index 000000000..bd9a1df28 --- /dev/null +++ b/app/src/data/static/regions/uk/data/constituencies_2024.csv @@ -0,0 +1,651 @@ +code,name,x,y +E14001063,Aldershot,56,-40 +E14001064,Aldridge-Brownhills,56,-30 +E14001065,Altrincham and Sale West,52,-25 +E14001066,Amber Valley,58,-27 +E14001067,Arundel and South Downs,61,-44 +E14001068,Ashfield,60,-27 +E14001069,Ashford,72,-42 +E14001070,Ashton-under-Lyne,54,-23 +E14001071,Aylesbury,60,-35 +E14001072,Banbury,58,-33 +E14001073,Barking,68,-38 +E14001074,Barnsley North,57,-23 +E14001075,Barnsley South,58,-23 +E14001076,Barrow and Furness,54,-16 +E14001077,Basildon and Billericay,67,-34 +E14001078,Basingstoke,55,-39 +E14001079,Bassetlaw,61,-26 +E14001080,Bath,51,-40 +E14001081,Battersea,62,-41 +E14001082,Beaconsfield,57,-37 +E14001083,Beckenham and Penge,65,-43 +E14001084,Bedford,63,-32 +E14001085,Bermondsey and Old Southwark,64,-40 +E14001086,Bethnal Green and Stepney,65,-39 +E14001087,Beverley and Holderness,64,-22 +E14001088,Bexhill and Battle,70,-44 +E14001089,Bexleyheath and Crayford,67,-39 +E14001090,Bicester and Woodstock,59,-34 +E14001091,Birkenhead,49,-27 +E14001092,Birmingham Edgbaston,53,-33 +E14001093,Birmingham Erdington,54,-31 +E14001094,Birmingham Hall Green and Moseley,55,-32 +E14001095,Birmingham Hodge Hill and Solihull North,55,-31 +E14001096,Birmingham Ladywood,54,-32 +E14001097,Birmingham Northfield,54,-34 +E14001098,Birmingham Perry Barr,53,-31 +E14001099,Birmingham Selly Oak,54,-33 +E14001100,Birmingham Yardley,56,-32 +E14001101,Bishop Auckland,54,-14 +E14001102,Blackburn,53,-19 +E14001103,Blackley and Middleton South,53,-23 +E14001104,Blackpool North and Fleetwood,53,-18 +E14001105,Blackpool South,52,-18 +E14001106,Blaydon and Consett,55,-14 +E14001107,Blyth and Ashington,55,-12 +E14001108,Bognor Regis and Littlehampton,63,-44 +E14001109,Bolsover,60,-26 +E14001110,Bolton North East,52,-21 +E14001111,Bolton South and Walkden,52,-22 +E14001112,Bolton West,51,-21 +E14001113,Bootle,49,-22 +E14001114,Boston and Skegness,64,-26 +E14001115,Bournemouth East,52,-43 +E14001116,Bournemouth West,52,-42 +E14001117,Bracknell,56,-39 +E14001118,Bradford East,58,-20 +E14001119,Bradford South,56,-21 +E14001120,Bradford West,57,-20 +E14001121,Braintree,67,-31 +E14001122,Brent East,61,-38 +E14001123,Brent West,60,-38 +E14001124,Brentford and Isleworth,60,-40 +E14001125,Brentwood and Ongar,66,-33 +E14001126,Bridgwater,48,-41 +E14001127,Bridlington and The Wolds,63,-20 +E14001128,Brigg and Immingham,62,-24 +E14001129,Brighton Kemptown and Peacehaven,67,-45 +E14001130,Brighton Pavilion,67,-44 +E14001131,Bristol Central,51,-38 +E14001132,Bristol East,52,-38 +E14001133,Bristol North East,51,-37 +E14001134,Bristol North West,50,-38 +E14001135,Bristol South,51,-39 +E14001136,Broadland and Fakenham,66,-27 +E14001137,Bromley and Biggin Hill,67,-42 +E14001138,Bromsgrove,52,-33 +E14001139,Broxbourne,66,-35 +E14001140,Broxtowe,59,-27 +E14001141,Buckingham and Bletchley,60,-34 +E14001142,Burnley,55,-19 +E14001143,Burton and Uttoxeter,56,-28 +E14001144,Bury North,53,-21 +E14001145,Bury South,53,-22 +E14001146,Bury St Edmunds and Stowmarket,68,-31 +E14001147,Calder Valley,56,-20 +E14001148,Camborne and Redruth,43,-45 +E14001149,Cambridge,65,-30 +E14001150,Cannock Chase,54,-29 +E14001151,Canterbury,71,-41 +E14001152,Carlisle,53,-14 +E14001153,Carshalton and Wallington,62,-43 +E14001154,Castle Point,69,-36 +E14001155,Central Devon,47,-42 +E14001156,Central Suffolk and North Ipswich,68,-29 +E14001157,Chatham and Aylesford,69,-40 +E14001158,Cheadle,55,-26 +E14001159,Chelmsford,67,-33 +E14001160,Chelsea and Fulham,61,-40 +E14001161,Cheltenham,52,-36 +E14001162,Chesham and Amersham,59,-36 +E14001163,Chester North and Neston,50,-28 +E14001164,Chester South and Eddisbury,51,-27 +E14001165,Chesterfield,59,-26 +E14001166,Chichester,60,-44 +E14001167,Chingford and Woodford Green,64,-35 +E14001168,Chippenham,52,-39 +E14001169,Chipping Barnet,62,-36 +E14001170,Chorley,53,-20 +E14001171,Christchurch,53,-42 +E14001172,Cities of London and Westminster,63,-40 +E14001173,City of Durham,55,-16 +E14001174,Clacton,69,-32 +E14001175,Clapham and Brixton Hill,62,-42 +E14001176,Colchester,68,-32 +E14001177,Colne Valley,55,-23 +E14001178,Congleton,54,-27 +E14001179,Corby and East Northamptonshire,62,-30 +E14001180,Coventry East,57,-33 +E14001181,Coventry North West,56,-33 +E14001182,Coventry South,57,-34 +E14001183,Cramlington and Killingworth,56,-12 +E14001184,Crawley,69,-44 +E14001185,Crewe and Nantwich,53,-27 +E14001186,Croydon East,65,-42 +E14001187,Croydon South,64,-43 +E14001188,Croydon West,63,-43 +E14001189,Dagenham and Rainham,67,-37 +E14001190,Darlington,55,-17 +E14001191,Dartford,68,-40 +E14001192,Daventry,60,-32 +E14001193,Derby North,58,-28 +E14001194,Derby South,57,-28 +E14001195,Derbyshire Dales,57,-26 +E14001196,Dewsbury and Batley,57,-22 +E14001197,Didcot and Wantage,54,-38 +E14001198,Doncaster Central,60,-23 +E14001199,Doncaster East and the Isle of Axholme,61,-23 +E14001200,Doncaster North,61,-22 +E14001201,Dorking and Horley,59,-43 +E14001202,Dover and Deal,72,-41 +E14001203,Droitwich and Evesham,54,-36 +E14001204,Dudley,51,-31 +E14001205,Dulwich and West Norwood,63,-42 +E14001206,Dunstable and Leighton Buzzard,62,-33 +E14001207,Ealing Central and Acton,59,-39 +E14001208,Ealing North,59,-38 +E14001209,Ealing Southall,58,-39 +E14001210,Earley and Woodley,56,-36 +E14001211,Easington,57,-16 +E14001212,East Grinstead and Uckfield,69,-43 +E14001213,East Ham,67,-38 +E14001214,East Hampshire,55,-41 +E14001215,East Surrey,67,-43 +E14001216,East Thanet,71,-39 +E14001217,East Wiltshire,53,-41 +E14001218,East Worthing and Shoreham,65,-44 +E14001219,Eastbourne,69,-45 +E14001220,Eastleigh,54,-41 +E14001221,Edmonton and Winchmore Hill,64,-36 +E14001222,Ellesmere Port and Bromborough,50,-27 +E14001223,Eltham and Chislehurst,66,-41 +E14001224,Ely and East Cambridgeshire,66,-30 +E14001225,Enfield North,62,-35 +E14001226,Epping Forest,67,-35 +E14001227,Epsom and Ewell,60,-43 +E14001228,Erewash,59,-28 +E14001229,Erith and Thamesmead,67,-40 +E14001230,Esher and Walton,58,-42 +E14001231,Exeter,48,-42 +E14001232,Exmouth and Exeter East,48,-43 +E14001233,Fareham and Waterlooville,55,-43 +E14001234,Farnham and Bordon,56,-42 +E14001235,Faversham and Mid Kent,71,-40 +E14001236,Feltham and Heston,59,-40 +E14001237,Filton and Bradley Stoke,50,-37 +E14001238,Finchley and Golders Green,61,-37 +E14001239,Folkestone and Hythe,71,-42 +E14001240,Forest of Dean,50,-35 +E14001241,Frome and East Somerset,50,-41 +E14001242,Fylde,51,-19 +E14001243,Gainsborough,61,-25 +E14001244,Gateshead Central and Whickham,56,-15 +E14001245,Gedling,61,-28 +E14001246,Gillingham and Rainham,70,-40 +E14001247,Glastonbury and Somerton,49,-41 +E14001248,Gloucester,51,-35 +E14001249,Godalming and Ash,57,-42 +E14001250,Goole and Pocklington,61,-21 +E14001251,Gorton and Denton,55,-24 +E14001252,Gosport,57,-43 +E14001253,Grantham and Bourne,63,-28 +E14001254,Gravesham,68,-39 +E14001255,Great Grimsby and Cleethorpes,63,-24 +E14001256,Great Yarmouth,67,-27 +E14001257,Greenwich and Woolwich,66,-40 +E14001258,Guildford,56,-41 +E14001259,Hackney North and Stoke Newington,64,-38 +E14001260,Hackney South and Shoreditch,64,-39 +E14001261,Halesowen,51,-33 +E14001262,Halifax,55,-21 +E14001263,Hamble Valley,56,-43 +E14001264,Hammersmith and Chiswick,60,-39 +E14001265,Hampstead and Highgate,62,-38 +E14001266,"Harborough, Oadby and Wigston",61,-31 +E14001267,Harlow,67,-32 +E14001268,Harpenden and Berkhamsted,62,-34 +E14001269,Harrogate and Knaresborough,59,-18 +E14001270,Harrow East,60,-37 +E14001271,Harrow West,59,-37 +E14001272,Hartlepool,59,-16 +E14001273,Harwich and North Essex,69,-31 +E14001274,Hastings and Rye,70,-43 +E14001275,Havant,59,-44 +E14001276,Hayes and Harlington,58,-38 +E14001277,Hazel Grove,55,-25 +E14001278,Hemel Hempstead,64,-34 +E14001279,Hendon,61,-36 +E14001280,Henley and Thame,58,-35 +E14001281,Hereford and South Herefordshire,51,-34 +E14001282,Herne Bay and Sandwich,72,-40 +E14001283,Hertford and Stortford,66,-32 +E14001284,Hertsmere,66,-34 +E14001285,Hexham,53,-13 +E14001286,Heywood and Middleton North,54,-20 +E14001287,High Peak,56,-25 +E14001288,Hinckley and Bosworth,58,-30 +E14001289,Hitchin,64,-32 +E14001290,Holborn and St Pancras,62,-39 +E14001291,Honiton and Sidmouth,49,-43 +E14001292,Hornchurch and Upminster,66,-37 +E14001293,Hornsey and Friern Barnet,63,-36 +E14001294,Horsham,62,-44 +E14001295,Houghton and Sunderland South,57,-15 +E14001296,Hove and Portslade,66,-44 +E14001297,Huddersfield,56,-22 +E14001298,Huntingdon,63,-31 +E14001299,Hyndburn,54,-19 +E14001300,Ilford North,65,-36 +E14001301,Ilford South,65,-37 +E14001302,Ipswich,68,-30 +E14001303,Isle of Wight East,54,-45 +E14001304,Isle of Wight West,53,-45 +E14001305,Islington North,63,-38 +E14001306,Islington South and Finsbury,63,-39 +E14001307,Jarrow and Gateshead East,57,-14 +E14001308,Keighley and Ilkley,56,-19 +E14001309,Kenilworth and Southam,56,-34 +E14001310,Kensington and Bayswater,61,-39 +E14001311,Kettering,61,-30 +E14001312,Kingston and Surbiton,59,-42 +E14001313,Kingston upon Hull East,63,-22 +E14001314,Kingston upon Hull North and Cottingham,62,-21 +E14001315,Kingston upon Hull West and Haltemprice,62,-22 +E14001316,Kingswinford and South Staffordshire,52,-30 +E14001317,Knowsley,50,-23 +E14001318,Lancaster and Wyre,54,-18 +E14001319,Leeds Central and Headingley,60,-20 +E14001320,Leeds East,61,-20 +E14001321,Leeds North East,59,-19 +E14001322,Leeds North West,58,-19 +E14001323,Leeds South,59,-21 +E14001324,Leeds South West and Morley,58,-21 +E14001325,Leeds West and Pudsey,59,-20 +E14001326,Leicester East,60,-30 +E14001327,Leicester South,60,-31 +E14001328,Leicester West,59,-31 +E14001329,Leigh and Atherton,51,-25 +E14001330,Lewes,68,-45 +E14001331,Lewisham East,66,-42 +E14001332,Lewisham North,65,-40 +E14001333,Lewisham West and East Dulwich,65,-41 +E14001334,Leyton and Wanstead,64,-37 +E14001335,Lichfield,56,-29 +E14001336,Lincoln,62,-25 +E14001337,Liverpool Garston,50,-25 +E14001338,Liverpool Riverside,49,-24 +E14001339,Liverpool Walton,49,-23 +E14001340,Liverpool Wavertree,49,-25 +E14001341,Liverpool West Derby,50,-24 +E14001342,Loughborough,59,-30 +E14001343,Louth and Horncastle,63,-25 +E14001344,Lowestoft,68,-28 +E14001345,Luton North,63,-33 +E14001346,Luton South and South Bedfordshire,63,-34 +E14001347,Macclesfield,56,-26 +E14001348,Maidenhead,57,-36 +E14001349,Maidstone and Malling,69,-41 +E14001350,Makerfield,51,-22 +E14001351,Maldon,69,-33 +E14001352,Manchester Central,54,-24 +E14001353,Manchester Rusholme,53,-25 +E14001354,Manchester Withington,54,-26 +E14001355,Mansfield,61,-27 +E14001356,Melksham and Devizes,52,-40 +E14001357,Melton and Syston,61,-29 +E14001358,Meriden and Solihull East,55,-33 +E14001359,Mid Bedfordshire,62,-32 +E14001360,Mid Buckinghamshire,59,-35 +E14001361,Mid Cheshire,52,-27 +E14001362,Mid Derbyshire,57,-27 +E14001363,Mid Dorset and North Poole,50,-43 +E14001364,Mid Leicestershire,58,-31 +E14001365,Mid Norfolk,65,-28 +E14001366,Mid Sussex,68,-43 +E14001367,Middlesbrough and Thornaby East,57,-17 +E14001368,Middlesbrough South and East Cleveland,59,-17 +E14001369,Milton Keynes Central,61,-34 +E14001370,Milton Keynes North,61,-33 +E14001371,Mitcham and Morden,61,-43 +E14001372,Morecambe and Lunesdale,54,-17 +E14001373,New Forest East,54,-43 +E14001374,New Forest West,53,-43 +E14001375,Newark,62,-26 +E14001376,Newbury,54,-37 +E14001377,Newcastle upon Tyne Central and West,54,-13 +E14001378,Newcastle upon Tyne East and Wallsend,56,-14 +E14001379,Newcastle upon Tyne North,55,-13 +E14001380,Newcastle-under-Lyme,52,-28 +E14001381,Newton Abbot,47,-43 +E14001382,Newton Aycliffe and Spennymoor,56,-16 +E14001383,Normanton and Hemsworth,59,-23 +E14001384,North Bedfordshire,62,-31 +E14001385,North Cornwall,45,-43 +E14001386,North Cotswolds,53,-37 +E14001387,North Devon,46,-41 +E14001388,North Dorset,51,-42 +E14001389,North Durham,54,-15 +E14001390,North East Cambridgeshire,64,-29 +E14001391,North East Derbyshire,58,-26 +E14001392,North East Hampshire,56,-38 +E14001393,North East Hertfordshire,65,-32 +E14001394,North East Somerset and Hanham,50,-39 +E14001395,North Herefordshire,52,-34 +E14001396,North Norfolk,65,-27 +E14001397,North Northumberland,54,-12 +E14001398,North Shropshire,50,-29 +E14001399,North Somerset,49,-39 +E14001400,North Warwickshire and Bedworth,57,-32 +E14001401,North West Cambridgeshire,64,-30 +E14001402,North West Essex,66,-31 +E14001403,North West Hampshire,54,-39 +E14001404,North West Leicestershire,58,-29 +E14001405,North West Norfolk,64,-28 +E14001406,Northampton North,61,-32 +E14001407,Northampton South,60,-33 +E14001408,Norwich North,66,-28 +E14001409,Norwich South,66,-29 +E14001410,Nottingham East,60,-29 +E14001411,Nottingham North and Kimberley,60,-28 +E14001412,Nottingham South,59,-29 +E14001413,Nuneaton,57,-31 +E14001414,Old Bexley and Sidcup,67,-41 +E14001415,Oldham East and Saddleworth,55,-22 +E14001416,"Oldham West, Chadderton and Royton",54,-22 +E14001417,Orpington,66,-43 +E14001418,Ossett and Denby Dale,58,-22 +E14001419,Oxford East,58,-34 +E14001420,Oxford West and Abingdon,57,-35 +E14001421,Peckham,64,-41 +E14001422,Pendle and Clitheroe,56,-18 +E14001423,Penistone and Stocksbridge,56,-23 +E14001424,Penrith and Solway,52,-15 +E14001425,Peterborough,63,-29 +E14001426,Plymouth Moor View,46,-43 +E14001427,Plymouth Sutton and Devonport,47,-44 +E14001428,"Pontefract, Castleford and Knottingley",60,-22 +E14001429,Poole,51,-43 +E14001430,Poplar and Limehouse,66,-39 +E14001431,Portsmouth North,58,-43 +E14001432,Portsmouth South,58,-44 +E14001433,Preston,52,-19 +E14001434,Putney,61,-41 +E14001435,Queen's Park and Maida Vale,62,-40 +E14001436,Rawmarsh and Conisbrough,60,-24 +E14001437,Rayleigh and Wickford,68,-34 +E14001438,Reading Central,55,-37 +E14001439,Reading West and Mid Berkshire,55,-36 +E14001440,Redcar,58,-17 +E14001441,Redditch,53,-35 +E14001442,Reigate,68,-44 +E14001443,Ribble Valley,55,-18 +E14001444,Richmond and Northallerton,57,-18 +E14001445,Richmond Park,59,-41 +E14001446,Rochdale,54,-21 +E14001447,Rochester and Strood,69,-39 +E14001448,Romford,66,-36 +E14001449,Romsey and Southampton North,54,-40 +E14001450,Rossendale and Darwen,55,-20 +E14001451,Rother Valley,60,-25 +E14001452,Rotherham,59,-24 +E14001453,Rugby,58,-32 +E14001454,"Ruislip, Northwood and Pinner",60,-36 +E14001455,Runcorn and Helsby,51,-28 +E14001456,Runnymede and Weybridge,57,-41 +E14001457,Rushcliffe,62,-28 +E14001458,Rutland and Stamford,62,-29 +E14001459,Salford,53,-24 +E14001460,Salisbury,52,-41 +E14001461,Scarborough and Whitby,61,-19 +E14001462,Scunthorpe,61,-24 +E14001463,Sefton Central,50,-20 +E14001464,Selby,60,-21 +E14001465,Sevenoaks,68,-42 +E14001466,Sheffield Brightside and Hillsborough,58,-24 +E14001467,Sheffield Central,58,-25 +E14001468,Sheffield Hallam,57,-24 +E14001469,Sheffield Heeley,57,-25 +E14001470,Sheffield South East,59,-25 +E14001471,Sherwood Forest,62,-27 +E14001472,Shipley,57,-19 +E14001473,Shrewsbury,51,-30 +E14001474,Sittingbourne and Sheppey,70,-39 +E14001475,Skipton and Ripon,58,-18 +E14001476,Sleaford and North Hykeham,63,-26 +E14001477,Slough,56,-37 +E14001478,Smethwick,53,-32 +E14001479,Solihull West and Shirley,55,-34 +E14001480,South Basildon and East Thurrock,68,-36 +E14001481,South Cambridgeshire,65,-31 +E14001482,South Cotswolds,53,-38 +E14001483,South Derbyshire,57,-29 +E14001484,South Devon,48,-45 +E14001485,South Dorset,51,-44 +E14001486,South East Cornwall,46,-44 +E14001487,South Holland and The Deepings,63,-27 +E14001488,South Leicestershire,59,-32 +E14001489,South Norfolk,67,-29 +E14001490,South Northamptonshire,59,-33 +E14001491,South Ribble,52,-20 +E14001492,South Shields,58,-14 +E14001493,South Shropshire,50,-31 +E14001494,South Suffolk,69,-30 +E14001495,South West Devon,47,-45 +E14001496,South West Hertfordshire,61,-35 +E14001497,South West Norfolk,65,-29 +E14001498,South West Wiltshire,51,-41 +E14001499,Southampton Itchen,55,-42 +E14001500,Southampton Test,54,-42 +E14001501,Southend East and Rochford,69,-34 +E14001502,Southend West and Leigh,68,-35 +E14001503,Southgate and Wood Green,63,-35 +E14001504,Southport,50,-19 +E14001505,Spelthorne,58,-40 +E14001506,Spen Valley,57,-21 +E14001507,St Albans,65,-34 +E14001508,St Austell and Newquay,45,-44 +E14001509,St Helens North,50,-21 +E14001510,St Helens South and Whiston,50,-22 +E14001511,St Ives,43,-46 +E14001512,St Neots and Mid Cambridgeshire,64,-31 +E14001513,Stafford,54,-28 +E14001514,Staffordshire Moorlands,56,-27 +E14001515,Stalybridge and Hyde,56,-24 +E14001516,Stevenage,64,-33 +E14001517,Stockport,54,-25 +E14001518,Stockton North,58,-16 +E14001519,Stockton West,56,-17 +E14001520,Stoke-on-Trent Central,55,-28 +E14001521,Stoke-on-Trent North,55,-27 +E14001522,Stoke-on-Trent South,55,-29 +E14001523,"Stone, Great Wyrley and Penkridge",53,-28 +E14001524,Stourbridge,51,-32 +E14001525,Stratford and Bow,65,-38 +E14001526,Stratford-on-Avon,54,-35 +E14001527,Streatham and Croydon North,64,-42 +E14001528,Stretford and Urmston,52,-24 +E14001529,Stroud,52,-37 +E14001530,Suffolk Coastal,69,-29 +E14001531,Sunderland Central,58,-15 +E14001532,Surrey Heath,57,-39 +E14001533,Sussex Weald,70,-42 +E14001534,Sutton and Cheam,60,-42 +E14001535,Sutton Coldfield,56,-31 +E14001536,Swindon North,53,-39 +E14001537,Swindon South,53,-40 +E14001538,Tamworth,57,-30 +E14001539,Tatton,52,-26 +E14001540,Taunton and Wellington,49,-42 +E14001541,Telford,52,-29 +E14001542,Tewkesbury,53,-36 +E14001543,The Wrekin,51,-29 +E14001544,Thirsk and Malton,60,-18 +E14001545,Thornbury and Yate,51,-36 +E14001546,Thurrock,67,-36 +E14001547,Tipton and Wednesbury,52,-31 +E14001548,Tiverton and Minehead,47,-41 +E14001549,Tonbridge,68,-41 +E14001550,Tooting,61,-42 +E14001551,Torbay,48,-44 +E14001552,Torridge and Tavistock,46,-42 +E14001553,Tottenham,62,-37 +E14001554,Truro and Falmouth,44,-45 +E14001555,Tunbridge Wells,69,-42 +E14001556,Twickenham,58,-41 +E14001557,Tynemouth,56,-13 +E14001558,Uxbridge and South Ruislip,58,-37 +E14001559,Vauxhall and Camberwell Green,63,-41 +E14001560,Wakefield and Rothwell,59,-22 +E14001561,Wallasey,48,-27 +E14001562,Walsall and Bloxwich,55,-30 +E14001563,Walthamstow,63,-37 +E14001564,Warrington North,51,-23 +E14001565,Warrington South,51,-24 +E14001566,Warwick and Leamington,55,-35 +E14001567,Washington and Gateshead South,55,-15 +E14001568,Watford,65,-35 +E14001569,Waveney Valley,67,-28 +E14001570,Weald of Kent,70,-41 +E14001571,Wellingborough and Rushden,63,-30 +E14001572,Wells and Mendip Hills,50,-40 +E14001573,Welwyn Hatfield,65,-33 +E14001574,West Bromwich,52,-32 +E14001575,West Dorset,50,-44 +E14001576,West Ham and Beckton,66,-38 +E14001577,West Lancashire,49,-21 +E14001578,West Suffolk,67,-30 +E14001579,West Worcestershire,52,-35 +E14001580,Westmorland and Lonsdale,53,-15 +E14001581,Weston-super-Mare,49,-40 +E14001582,Wetherby and Easingwold,62,-20 +E14001583,Whitehaven and Workington,53,-16 +E14001584,Widnes and Halewood,51,-26 +E14001585,Wigan,51,-20 +E14001586,Wimbledon,60,-41 +E14001587,Winchester,55,-40 +E14001588,Windsor,57,-38 +E14001589,Wirral West,49,-28 +E14001590,Witham,68,-33 +E14001591,Witney,56,-35 +E14001592,Woking,57,-40 +E14001593,Wokingham,55,-38 +E14001594,Wolverhampton North East,53,-29 +E14001595,Wolverhampton South East,54,-30 +E14001596,Wolverhampton West,53,-30 +E14001597,Worcester,53,-34 +E14001598,Worsley and Eccles,52,-23 +E14001599,Worthing West,64,-44 +E14001600,Wycombe,58,-36 +E14001601,Wyre Forest,50,-33 +E14001602,Wythenshawe and Sale East,53,-26 +E14001603,Yeovil,50,-42 +E14001604,York Central,60,-19 +E14001605,York Outer,61,-18 +N05000001,Belfast East,45,-17 +N05000002,Belfast North,45,-16 +N05000003,Belfast South and Mid Down,45,-18 +N05000004,Belfast West,44,-17 +N05000005,East Antrim,45,-15 +N05000006,East Londonderry,43,-15 +N05000007,Fermanagh and South Tyrone,42,-17 +N05000008,Foyle,42,-15 +N05000009,Lagan Valley,44,-18 +N05000010,Mid Ulster,43,-16 +N05000011,Newry and Armagh,44,-19 +N05000012,North Antrim,44,-15 +N05000013,North Down,46,-16 +N05000014,South Antrim,44,-16 +N05000015,South Down,46,-18 +N05000016,Strangford,46,-17 +N05000017,Upper Bann,43,-18 +N05000018,West Tyrone,42,-16 +S14000021,East Renfrewshire,48,-11 +S14000027,Na h-Eileanan an Iar,47,-2 +S14000045,Midlothian,52,-11 +S14000048,North Ayrshire and Arran,48,-10 +S14000051,Orkney and Shetland,51,0 +S14000060,Aberdeen North,52,-3 +S14000061,Aberdeen South,52,-4 +S14000062,Aberdeenshire North and Moray East,51,-3 +S14000063,Airdrie and Shotts,50,-11 +S14000064,Alloa and Grangemouth,50,-7 +S14000065,Angus and Perthshire Glens,50,-5 +S14000066,Arbroath and Broughty Ferry,52,-5 +S14000067,"Argyll, Bute and South Lochaber",49,-5 +S14000068,Bathgate and Linlithgow,51,-9 +S14000069,"Caithness, Sutherland and Easter Ross",50,-2 +S14000070,Coatbridge and Bellshill,50,-12 +S14000071,Cowdenbeath and Kirkcaldy,52,-7 +S14000072,Cumbernauld and Kirkintilloch,50,-8 +S14000073,Dumfries and Galloway,51,-13 +S14000074,"Dumfriesshire, Clydesdale and Tweeddale",52,-13 +S14000075,Dundee Central,50,-6 +S14000076,Dunfermline and Dollar,51,-7 +S14000077,East Kilbride and Strathaven,48,-13 +S14000078,Edinburgh East and Musselburgh,54,-10 +S14000079,Edinburgh North and Leith,53,-9 +S14000080,Edinburgh South,53,-10 +S14000081,Edinburgh South West,52,-10 +S14000082,Edinburgh West,52,-9 +S14000083,Falkirk,51,-8 +S14000084,Glasgow East,51,-10 +S14000085,Glasgow North,49,-9 +S14000086,Glasgow North East,50,-9 +S14000087,Glasgow South,49,-11 +S14000088,Glasgow South West,50,-10 +S14000089,Glasgow West,49,-8 +S14000090,Glenrothes and Mid Fife,52,-6 +S14000091,Gordon and Buchan,50,-4 +S14000092,Hamilton and Clyde Valley,51,-12 +S14000093,Inverclyde and Renfrewshire West,48,-8 +S14000094,"Inverness, Skye and West Ross-shire",49,-3 +S14000095,Livingston,51,-11 +S14000096,Lothian East,53,-11 +S14000097,Mid Dunbartonshire,49,-7 +S14000098,"Moray West, Nairn and Strathspey",49,-4 +S14000099,"Motherwell, Wishaw and Carluke",52,-12 +S14000100,North East Fife,51,-6 +S14000101,Paisley and Renfrewshire North,48,-9 +S14000102,Paisley and Renfrewshire South,49,-10 +S14000103,Perth and Kinross-shire,51,-5 +S14000104,Rutherglen,49,-12 +S14000105,Stirling and Strathallan,49,-6 +S14000106,West Dunbartonshire,48,-7 +S14000107,"Ayr, Carrick and Cumnock",49,-13 +S14000108,"Berwickshire, Roxburgh and Selkirk",53,-12 +S14000109,Central Ayrshire,48,-12 +S14000110,Kilmarnock and Loudoun,50,-13 +S14000111,West Aberdeenshire and Kincardine,51,-4 +W07000081,Aberafan Maesteg,46,-36 +W07000082,Alyn and Deeside,49,-29 +W07000083,Bangor Aberconwy,47,-31 +W07000084,Blaenau Gwent and Rhymney,49,-33 +W07000085,"Brecon, Radnor and Cwm Tawe",50,-32 +W07000086,Bridgend,46,-37 +W07000087,Caerfyrddin,49,-32 +W07000088,Caerphilly,49,-35 +W07000089,Cardiff East,48,-37 +W07000090,Cardiff North,48,-36 +W07000091,Cardiff South and Penarth,48,-38 +W07000092,Cardiff West,47,-37 +W07000093,Ceredigion Preseli,48,-34 +W07000094,Clwyd East,49,-30 +W07000095,Clwyd North,48,-30 +W07000096,Dwyfor Meirionnydd,48,-31 +W07000097,Gower,44,-37 +W07000098,Llanelli,45,-36 +W07000099,Merthyr Tydfil and Aberdare,49,-34 +W07000100,Mid and South Pembrokeshire,44,-36 +W07000101,Monmouthshire,50,-36 +W07000102,Montgomeryshire and Glyndwr,49,-31 +W07000103,Neath and Swansea East,47,-35 +W07000104,Newport East,49,-37 +W07000105,Newport West and Islwyn,49,-36 +W07000106,Pontypridd,48,-35 +W07000107,Rhondda and Ogmore,47,-36 +W07000108,Swansea West,45,-37 +W07000109,Torfaen,50,-34 +W07000110,Vale of Glamorgan,47,-38 +W07000111,Wrexham,50,-30 +W07000112,Ynys Môn,46,-29 diff --git a/app/src/data/static/regions/uk/data/local_authorities_2021.csv b/app/src/data/static/regions/uk/data/local_authorities_2021.csv new file mode 100644 index 000000000..9fcf922ed --- /dev/null +++ b/app/src/data/static/regions/uk/data/local_authorities_2021.csv @@ -0,0 +1,361 @@ +code,x,y,name +E06000001,8.0,19.0,Hartlepool +E06000002,9.0,18.0,Middlesbrough +E06000003,9.0,19.0,Redcar and Cleveland +E06000004,8.0,18.0,Stockton-on-Tees +E06000005,7.0,18.0,Darlington +E06000006,1.0,11.0,Halton +E06000007,2.0,11.0,Warrington +E06000008,4.0,15.0,Blackburn with Darwen +E06000009,2.0,15.0,Blackpool +E06000010,10.0,15.0,"Kingston upon Hull, City of" +E06000011,11.0,16.0,East Riding of Yorkshire +E06000012,11.0,14.0,North East Lincolnshire +E06000013,10.0,14.0,North Lincolnshire +E06000014,9.0,17.0,York +E06000015,6.0,11.0,Derby +E06000016,8.0,8.0,Leicester +E06000017,10.0,9.0,Rutland +E06000018,8.0,10.0,Nottingham +E06000019,0.0,8.0,"Herefordshire, County of" +E06000020,2.0,9.0,Telford and Wrekin +E06000021,3.0,10.0,Stoke-on-Trent +E06000022,1.0,3.0,Bath and North East Somerset +E06000023,0.0,3.0,"Bristol, City of" +E06000024,0.0,2.0,North Somerset +E06000025,1.0,4.0,South Gloucestershire +E06000026,-4.0,-2.0,Plymouth +E06000027,-3.0,-2.0,Torbay +E06000030,2.0,4.0,Swindon +E06000031,11.0,9.0,Peterborough +E06000032,10.0,7.0,Luton +E06000033,16.0,6.0,Southend-on-Sea +E06000034,15.0,4.0,Thurrock +E06000035,15.0,1.0,Medway +E06000036,4.0,2.0,Bracknell Forest +E06000037,2.0,2.0,West Berkshire +E06000038,2.0,3.0,Reading +E06000039,6.0,4.0,Slough +E06000040,4.0,3.0,Windsor and Maidenhead +E06000041,3.0,3.0,Wokingham +E06000042,6.0,5.0,Milton Keynes +E06000043,9.0,-2.0,Brighton and Hove +E06000044,4.0,-1.0,Portsmouth +E06000045,2.0,0.0,Southampton +E06000046,1.0,-2.0,Isle of Wight +E06000047,6.0,18.0,County Durham +E06000049,4.0,11.0,Cheshire East +E06000050,3.0,11.0,Cheshire West and Chester +E06000051,1.0,9.0,Shropshire +E06000052,-5.0,-2.0,Cornwall +E06000053,-7.0,-3.0,Isles of Scilly +E06000054,1.0,2.0,Wiltshire +E06000055,9.0,7.0,Bedford +E06000056,9.0,6.0,Central Bedfordshire +E06000057,5.0,20.0,Northumberland +E06000058,0.0,0.0,"Bournemouth, Christchurch and Poole" +E06000059,-1.0,0.0,Dorset +E06000060,5.0,5.0,Buckinghamshire +E06000061,9.0,9.0,North Northamptonshire +E06000062,7.0,6.0,West Northamptonshire +E06000063,0.0,0.0,Cumberland +E06000064,0.0,0.0,Westmorland and Furness +E06000065,0.0,0.0,North Yorkshire +E06000066,0.0,0.0,Somerset +E07000008,12.0,8.0,Cambridge +E07000009,12.0,9.0,East Cambridgeshire +E07000010,13.0,10.0,Fenland +E07000011,10.0,8.0,Huntingdonshire +E07000012,11.0,8.0,South Cambridgeshire +E07000032,7.0,11.0,Amber Valley +E07000033,10.0,12.0,Bolsover +E07000034,9.0,12.0,Chesterfield +E07000035,7.0,12.0,Derbyshire Dales +E07000036,7.0,9.0,Erewash +E07000037,7.0,13.0,High Peak +E07000038,8.0,12.0,North East Derbyshire +E07000039,6.0,10.0,South Derbyshire +E07000040,-2.0,-1.0,East Devon +E07000041,-3.0,-1.0,Exeter +E07000042,-2.0,0.0,Mid Devon +E07000043,-3.0,1.0,North Devon +E07000044,-4.0,-3.0,South Hams +E07000045,-2.0,-2.0,Teignbridge +E07000046,-4.0,-1.0,Torridge +E07000047,-3.0,0.0,West Devon +E07000061,10.0,-2.0,Eastbourne +E07000062,13.0,-2.0,Hastings +E07000063,10.0,-1.0,Lewes +E07000064,12.0,-2.0,Rother +E07000065,11.0,-2.0,Wealden +E07000066,14.0,5.0,Basildon +E07000067,14.0,7.0,Braintree +E07000068,13.0,5.0,Brentwood +E07000069,15.0,5.0,Castle Point +E07000070,14.0,6.0,Chelmsford +E07000071,15.0,8.0,Colchester +E07000072,12.0,5.0,Epping Forest +E07000073,13.0,6.0,Harlow +E07000074,15.0,7.0,Maldon +E07000075,15.0,6.0,Rochford +E07000076,16.0,8.0,Tendring +E07000077,13.0,7.0,Uttlesford +E07000078,1.0,5.0,Cheltenham +E07000079,2.0,5.0,Cotswold +E07000080,-1.0,6.0,Forest of Dean +E07000081,0.0,6.0,Gloucester +E07000082,0.0,5.0,Stroud +E07000083,1.0,6.0,Tewkesbury +E07000084,2.0,1.0,Basingstoke and Deane +E07000085,4.0,0.0,East Hampshire +E07000086,3.0,0.0,Eastleigh +E07000087,2.0,-1.0,Fareham +E07000088,3.0,-1.0,Gosport +E07000089,3.0,2.0,Hart +E07000090,5.0,0.0,Havant +E07000091,1.0,0.0,New Forest +E07000092,4.0,1.0,Rushmoor +E07000093,1.0,1.0,Test Valley +E07000094,3.0,1.0,Winchester +E07000095,12.0,6.0,Broxbourne +E07000096,8.0,6.0,Dacorum +E07000098,9.0,5.0,Hertsmere +E07000099,11.0,7.0,North Hertfordshire +E07000102,7.0,5.0,Three Rivers +E07000103,8.0,5.0,Watford +E07000105,12.0,-1.0,Ashford +E07000106,15.0,0.0,Canterbury +E07000107,13.0,1.0,Dartford +E07000108,14.0,-1.0,Dover +E07000109,14.0,1.0,Gravesham +E07000110,14.0,0.0,Maidstone +E07000111,12.0,0.0,Sevenoaks +E07000112,13.0,-1.0,Folkestone and Hythe +E07000113,16.0,0.0,Swale +E07000114,15.0,-1.0,Thanet +E07000115,13.0,0.0,Tonbridge and Malling +E07000116,11.0,-1.0,Tunbridge Wells +E07000117,6.0,15.0,Burnley +E07000118,3.0,14.0,Chorley +E07000119,4.0,16.0,Fylde +E07000120,5.0,15.0,Hyndburn +E07000121,3.0,17.0,Lancaster +E07000122,6.0,16.0,Pendle +E07000123,5.0,16.0,Preston +E07000124,5.0,17.0,Ribble Valley +E07000125,6.0,14.0,Rossendale +E07000126,3.0,15.0,South Ribble +E07000127,2.0,13.0,West Lancashire +E07000128,3.0,16.0,Wyre +E07000129,7.0,7.0,Blaby +E07000130,8.0,9.0,Charnwood +E07000131,8.0,7.0,Harborough +E07000132,7.0,8.0,Hinckley and Bosworth +E07000133,11.0,10.0,Melton +E07000134,6.0,9.0,North West Leicestershire +E07000135,9.0,8.0,Oadby and Wigston +E07000136,12.0,12.0,Boston +E07000137,12.0,13.0,East Lindsey +E07000138,11.0,12.0,Lincoln +E07000139,11.0,11.0,North Kesteven +E07000140,12.0,11.0,South Holland +E07000141,12.0,10.0,South Kesteven +E07000142,11.0,13.0,West Lindsey +E07000143,14.0,10.0,Breckland +E07000144,15.0,12.0,Broadland +E07000145,15.0,11.0,Great Yarmouth +E07000146,13.0,11.0,King's Lynn and West Norfolk +E07000147,14.0,12.0,North Norfolk +E07000148,14.0,11.0,Norwich +E07000149,15.0,10.0,South Norfolk +E07000170,8.0,11.0,Ashfield +E07000171,10.0,13.0,Bassetlaw +E07000172,7.0,10.0,Broxtowe +E07000173,9.0,10.0,Gedling +E07000174,9.0,11.0,Mansfield +E07000175,10.0,11.0,Newark and Sherwood +E07000176,10.0,10.0,Rushcliffe +E07000177,4.0,5.0,Cherwell +E07000178,4.0,4.0,Oxford +E07000179,5.0,4.0,South Oxfordshire +E07000180,3.0,4.0,Vale of White Horse +E07000181,3.0,5.0,West Oxfordshire +E07000192,3.0,9.0,Cannock Chase +E07000193,5.0,11.0,East Staffordshire +E07000194,4.0,9.0,Lichfield +E07000195,2.0,10.0,Newcastle-under-Lyme +E07000196,2.0,8.0,South Staffordshire +E07000197,4.0,10.0,Stafford +E07000198,5.0,10.0,Staffordshire Moorlands +E07000199,5.0,9.0,Tamworth +E07000200,14.0,8.0,Babergh +E07000202,15.0,9.0,Ipswich +E07000203,14.0,9.0,Mid Suffolk +E07000207,7.0,2.0,Elmbridge +E07000208,8.0,0.0,Epsom and Ewell +E07000209,5.0,1.0,Guildford +E07000210,6.0,1.0,Mole Valley +E07000211,7.0,0.0,Reigate and Banstead +E07000212,5.0,3.0,Runnymede +E07000213,6.0,3.0,Spelthorne +E07000214,5.0,2.0,Surrey Heath +E07000215,9.0,-1.0,Tandridge +E07000216,6.0,0.0,Waverley +E07000217,6.0,2.0,Woking +E07000218,6.0,8.0,North Warwickshire +E07000219,6.0,7.0,Nuneaton and Bedworth +E07000220,6.0,6.0,Rugby +E07000221,3.0,6.0,Stratford-on-Avon +E07000222,4.0,6.0,Warwick +E07000223,8.0,-2.0,Adur +E07000224,6.0,-2.0,Arun +E07000225,5.0,-1.0,Chichester +E07000226,8.0,-1.0,Crawley +E07000227,6.0,-1.0,Horsham +E07000228,7.0,-1.0,Mid Sussex +E07000229,7.0,-2.0,Worthing +E07000234,2.0,7.0,Bromsgrove +E07000235,-1.0,7.0,Malvern Hills +E07000236,4.0,7.0,Redditch +E07000237,0.0,7.0,Worcester +E07000238,2.0,6.0,Wychavon +E07000239,1.0,8.0,Wyre Forest +E07000240,10.0,6.0,St Albans +E07000241,11.0,6.0,Welwyn Hatfield +E07000242,13.0,8.0,East Hertfordshire +E07000243,12.0,7.0,Stevenage +E07000244,16.0,10.0,East Suffolk +E07000245,13.0,9.0,West Suffolk +E08000001,4.0,14.0,Bolton +E08000002,5.0,14.0,Bury +E08000003,5.0,12.0,Manchester +E08000004,5.0,13.0,Oldham +E08000005,7.0,14.0,Rochdale +E08000006,4.0,13.0,Salford +E08000007,6.0,12.0,Stockport +E08000008,6.0,13.0,Tameside +E08000009,4.0,12.0,Trafford +E08000010,3.0,13.0,Wigan +E08000011,2.0,12.0,Knowsley +E08000012,1.0,13.0,Liverpool +E08000013,3.0,12.0,St. Helens +E08000014,2.0,14.0,Sefton +E08000015,1.0,12.0,Wirral +E08000016,8.0,14.0,Barnsley +E08000017,9.0,14.0,Doncaster +E08000018,9.0,13.0,Rotherham +E08000019,8.0,13.0,Sheffield +E08000021,5.0,19.0,Newcastle upon Tyne +E08000022,6.0,20.0,North Tyneside +E08000023,7.0,20.0,South Tyneside +E08000024,7.0,19.0,Sunderland +E08000025,5.0,8.0,Birmingham +E08000026,5.0,6.0,Coventry +E08000027,1.0,7.0,Dudley +E08000028,3.0,7.0,Sandwell +E08000029,5.0,7.0,Solihull +E08000030,4.0,8.0,Walsall +E08000031,3.0,8.0,Wolverhampton +E08000032,7.0,16.0,Bradford +E08000033,7.0,15.0,Calderdale +E08000034,8.0,15.0,Kirklees +E08000035,8.0,16.0,Leeds +E08000036,9.0,15.0,Wakefield +E08000037,6.0,19.0,Gateshead +E09000001,11.0,2.0,City of London +E09000002,13.0,3.0,Barking and Dagenham +E09000003,10.0,5.0,Barnet +E09000004,12.0,1.0,Bexley +E09000005,10.0,4.0,Brent +E09000006,11.0,0.0,Bromley +E09000007,11.0,4.0,Camden +E09000008,10.0,0.0,Croydon +E09000009,9.0,4.0,Ealing +E09000010,11.0,5.0,Enfield +E09000011,11.0,1.0,Greenwich +E09000012,12.0,3.0,Hackney +E09000013,8.0,3.0,Hammersmith and Fulham +E09000014,12.0,4.0,Haringey +E09000015,8.0,4.0,Harrow +E09000016,14.0,3.0,Havering +E09000017,7.0,4.0,Hillingdon +E09000018,7.0,3.0,Hounslow +E09000019,11.0,3.0,Islington +E09000020,9.0,3.0,Kensington and Chelsea +E09000021,7.0,1.0,Kingston upon Thames +E09000022,10.0,2.0,Lambeth +E09000023,10.0,1.0,Lewisham +E09000024,8.0,1.0,Merton +E09000025,13.0,2.0,Newham +E09000026,14.0,4.0,Redbridge +E09000027,8.0,2.0,Richmond upon Thames +E09000028,9.0,1.0,Southwark +E09000029,9.0,0.0,Sutton +E09000030,12.0,2.0,Tower Hamlets +E09000031,13.0,4.0,Waltham Forest +E09000032,9.0,2.0,Wandsworth +E09000033,10.0,3.0,Westminster +N09000001,-4.0,16.0,Antrim and Newtownabbey +N09000002,-5.0,16.0,"Armagh City, Banbridge and Craigavon" +N09000003,-4.0,17.0,Belfast +N09000004,-5.0,18.0,Causeway Coast and Glens +N09000005,-6.0,17.0,Derry City and Strabane +N09000006,-6.0,16.0,Fermanagh and Omagh +N09000007,-5.0,15.0,Lisburn and Castlereagh +N09000008,-4.0,18.0,Mid and East Antrim +N09000009,-5.0,17.0,Mid Ulster +N09000010,-4.0,15.0,"Newry, Mourne and Down" +S12000005,2.0,24.0,Clackmannanshire +S12000006,4.0,20.0,Dumfries and Galloway +S12000008,3.0,20.0,East Ayrshire +S12000010,5.0,22.0,East Lothian +S12000011,2.0,20.0,East Renfrewshire +S12000013,-1.0,27.0,Na h-Eileanan Siar +S12000014,2.0,23.0,Falkirk +S12000017,1.0,26.0,Highland +S12000018,0.0,21.0,Inverclyde +S12000019,3.0,21.0,Midlothian +S12000020,2.0,26.0,Moray +S12000021,1.0,20.0,North Ayrshire +S12000023,4.0,28.0,Orkney Islands +S12000026,4.0,21.0,Scottish Borders +S12000027,5.0,30.0,Shetland Islands +S12000028,1.0,19.0,South Ayrshire +S12000029,2.0,21.0,South Lanarkshire +S12000030,1.0,24.0,Stirling +S12000033,4.0,26.0,Aberdeen City +S12000034,3.0,26.0,Aberdeenshire +S12000035,0.0,24.0,Argyll and Bute +S12000036,4.0,22.0,City of Edinburgh +S12000038,1.0,22.0,Renfrewshire +S12000039,0.0,23.0,West Dunbartonshire +S12000040,3.0,22.0,West Lothian +S12000041,2.0,25.0,Angus +S12000042,3.0,25.0,Dundee City +S12000045,1.0,23.0,East Dunbartonshire +S12000047,3.0,24.0,Fife +S12000048,1.0,25.0,Perth and Kinross +S12000049,1.0,21.0,Glasgow City +S12000050,2.0,22.0,North Lanarkshire +W06000001,-2.0,12.0,Isle of Anglesey +W06000002,-2.0,10.0,Gwynedd +W06000003,-1.0,10.0,Conwy +W06000004,0.0,10.0,Denbighshire +W06000005,0.0,11.0,Flintshire +W06000006,1.0,10.0,Wrexham +W06000008,-2.0,9.0,Ceredigion +W06000009,-5.0,6.0,Pembrokeshire +W06000010,-4.0,6.0,Carmarthenshire +W06000011,-4.0,5.0,Swansea +W06000012,-3.0,5.0,Neath Port Talbot +W06000013,-3.0,6.0,Bridgend +W06000014,-2.0,4.0,Vale of Glamorgan +W06000015,-2.0,5.0,Cardiff +W06000016,-3.0,7.0,Rhondda Cynon Taf +W06000018,-2.0,6.0,Caerphilly +W06000019,0.0,9.0,Blaenau Gwent +W06000020,-2.0,7.0,Torfaen +W06000021,-1.0,8.0,Monmouthshire +W06000022,-1.0,5.0,Newport +W06000023,-1.0,9.0,Powys +W06000024,-2.0,8.0,Merthyr Tydfil diff --git a/app/src/data/static/regions/uk/localAuthorities.ts b/app/src/data/static/regions/uk/localAuthorities.ts new file mode 100644 index 000000000..1762b52ba --- /dev/null +++ b/app/src/data/static/regions/uk/localAuthorities.ts @@ -0,0 +1,72 @@ +/** + * UK Local Authorities (2021 Boundaries) + * + * ~360 local authorities total + * + * Data source: policyengine-api/data/local_authorities_2021.csv + * Source: Office for National Statistics + */ + +import { MetadataRegionEntry } from '@/types/metadata'; +import { UK_REGION_TYPES } from '@/types/regionTypes'; +import { RegionVersionMeta, VersionedRegionSet } from '../types'; +import localAuthoritiesCSV from './data/local_authorities_2021.csv?raw'; + +/** + * Parse CSV data into local authority entries + * CSV format: code,x,y,name + */ +function parseLocalAuthorities(csv: string): MetadataRegionEntry[] { + const lines = csv.trim().split('\n').slice(1); // Skip header + const authorities: MetadataRegionEntry[] = []; + + for (const line of lines) { + if (!line.trim()) continue; + + // Handle CSV with potential quoted fields containing commas + let name: string; + const parts = line.split(','); + + if (line.includes('"')) { + // Find the quoted name (it's the last field in this CSV) + const quoteStart = line.indexOf('"'); + const quoteEnd = line.lastIndexOf('"'); + name = line.substring(quoteStart + 1, quoteEnd); + } else { + // Simple case: code,x,y,name + name = parts.slice(3).join(','); // Name might have commas + } + + authorities.push({ + name: `local_authority/${name}`, + label: name, + type: UK_REGION_TYPES.LOCAL_AUTHORITY, + }); + } + + return authorities.sort((a, b) => a.label.localeCompare(b.label)); +} + +const VERSION_2021: RegionVersionMeta = { + version: '2021', + effectiveFrom: 2021, + effectiveUntil: null, + description: 'Local authority boundaries as of 2021', + source: 'https://www.ons.gov.uk/', +}; + +// Parse local authorities once at module load +const LOCAL_AUTHORITIES_2021 = parseLocalAuthorities(localAuthoritiesCSV); + +export const UK_LOCAL_AUTHORITIES: VersionedRegionSet = { + versions: { + '2021': { + meta: VERSION_2021, + data: LOCAL_AUTHORITIES_2021, + }, + }, + getVersionForYear: (_year: number): string => { + // 2021 boundaries are currently the only version + return '2021'; + }, +}; diff --git a/app/src/data/static/regions/us/congressionalDistricts.ts b/app/src/data/static/regions/us/congressionalDistricts.ts new file mode 100644 index 000000000..8c62c0c1e --- /dev/null +++ b/app/src/data/static/regions/us/congressionalDistricts.ts @@ -0,0 +1,205 @@ +/** + * US Congressional Districts (2020 Census Apportionment) + * + * 436 districts total (435 voting + DC non-voting delegate) + * Effective for 118th Congress (2023-2025) through at least 119th Congress (2025-2027) + * + * Source: https://ballotpedia.org/Congressional_apportionment_after_the_2020_census + */ + +import { MetadataRegionEntry } from '@/types/metadata'; +import { US_REGION_TYPES } from '@/types/regionTypes'; +import { RegionVersionMeta, VersionedRegionSet } from '../types'; + +// State code to full name mapping +const STATE_NAMES: Record = { + AL: 'Alabama', + AK: 'Alaska', + AZ: 'Arizona', + AR: 'Arkansas', + CA: 'California', + CO: 'Colorado', + CT: 'Connecticut', + DE: 'Delaware', + DC: 'District of Columbia', + FL: 'Florida', + GA: 'Georgia', + HI: 'Hawaii', + ID: 'Idaho', + IL: 'Illinois', + IN: 'Indiana', + IA: 'Iowa', + KS: 'Kansas', + KY: 'Kentucky', + LA: 'Louisiana', + ME: 'Maine', + MD: 'Maryland', + MA: 'Massachusetts', + MI: 'Michigan', + MN: 'Minnesota', + MS: 'Mississippi', + MO: 'Missouri', + MT: 'Montana', + NE: 'Nebraska', + NV: 'Nevada', + NH: 'New Hampshire', + NJ: 'New Jersey', + NM: 'New Mexico', + NY: 'New York', + NC: 'North Carolina', + ND: 'North Dakota', + OH: 'Ohio', + OK: 'Oklahoma', + OR: 'Oregon', + PA: 'Pennsylvania', + RI: 'Rhode Island', + SC: 'South Carolina', + SD: 'South Dakota', + TN: 'Tennessee', + TX: 'Texas', + UT: 'Utah', + VT: 'Vermont', + VA: 'Virginia', + WA: 'Washington', + WV: 'West Virginia', + WI: 'Wisconsin', + WY: 'Wyoming', +}; + +// States with only one at-large district +const AT_LARGE_STATES = new Set(['AK', 'DE', 'DC', 'ND', 'SD', 'VT', 'WY']); + +// District counts by state (2020 Census apportionment) +// Format: [stateCode, districtCount] +const DISTRICT_COUNTS_2020: [string, number][] = [ + ['AL', 7], + ['AK', 1], + ['AZ', 9], + ['AR', 4], + ['CA', 52], + ['CO', 8], + ['CT', 5], + ['DE', 1], + ['DC', 1], + ['FL', 28], + ['GA', 14], + ['HI', 2], + ['ID', 2], + ['IL', 17], + ['IN', 9], + ['IA', 4], + ['KS', 4], + ['KY', 6], + ['LA', 6], + ['ME', 2], + ['MD', 8], + ['MA', 9], + ['MI', 13], + ['MN', 8], + ['MS', 4], + ['MO', 8], + ['MT', 2], + ['NE', 3], + ['NV', 4], + ['NH', 2], + ['NJ', 12], + ['NM', 3], + ['NY', 26], + ['NC', 14], + ['ND', 1], + ['OH', 15], + ['OK', 5], + ['OR', 6], + ['PA', 17], + ['RI', 2], + ['SC', 7], + ['SD', 1], + ['TN', 9], + ['TX', 38], + ['UT', 4], + ['VT', 1], + ['VA', 11], + ['WA', 10], + ['WV', 2], + ['WI', 8], + ['WY', 1], +]; + +/** + * Get ordinal suffix for a number (1st, 2nd, 3rd, 4th, etc.) + */ +function getOrdinalSuffix(n: number): string { + if (n % 100 >= 11 && n % 100 <= 13) return 'th'; + switch (n % 10) { + case 1: + return 'st'; + case 2: + return 'nd'; + case 3: + return 'rd'; + default: + return 'th'; + } +} + +/** + * Build district label (e.g., "California's 1st congressional district") + */ +function buildDistrictLabel(stateCode: string, districtNumber: number): string { + const stateName = STATE_NAMES[stateCode]; + if (AT_LARGE_STATES.has(stateCode)) { + return `${stateName}'s at-large congressional district`; + } + return `${stateName}'s ${districtNumber}${getOrdinalSuffix(districtNumber)} congressional district`; +} + +/** + * Generate all congressional district entries from compact data + */ +function buildCongressionalDistricts( + districtCounts: [string, number][] +): MetadataRegionEntry[] { + const districts: MetadataRegionEntry[] = []; + + for (const [stateCode, count] of districtCounts) { + for (let i = 1; i <= count; i++) { + const districtNum = i.toString().padStart(2, '0'); + districts.push({ + name: `congressional_district/${stateCode}-${districtNum}`, + label: buildDistrictLabel(stateCode, i), + type: US_REGION_TYPES.CONGRESSIONAL_DISTRICT, + state_abbreviation: stateCode, + state_name: STATE_NAMES[stateCode], + }); + } + } + + return districts; +} + +const VERSION_2020_CENSUS: RegionVersionMeta = { + version: '2020-census', + effectiveFrom: 2023, + effectiveUntil: null, + description: + 'Districts based on 2020 Census apportionment (118th-119th Congress)', + source: + 'https://ballotpedia.org/Congressional_apportionment_after_the_2020_census', +}; + +// Generate districts once at module load +const DISTRICTS_2020_CENSUS = buildCongressionalDistricts(DISTRICT_COUNTS_2020); + +export const US_CONGRESSIONAL_DISTRICTS: VersionedRegionSet = { + versions: { + '2020-census': { + meta: VERSION_2020_CENSUS, + data: DISTRICTS_2020_CENSUS, + }, + }, + getVersionForYear: (_year: number): string => { + // 2020 Census districts effective from 2023 onwards + // For years before 2023, still return 2020-census as fallback + return '2020-census'; + }, +}; diff --git a/app/src/data/static/regions.ts b/app/src/data/static/staticRegions.ts similarity index 100% rename from app/src/data/static/regions.ts rename to app/src/data/static/staticRegions.ts diff --git a/app/src/hooks/useRegions.ts b/app/src/hooks/useRegions.ts new file mode 100644 index 000000000..0493efaad --- /dev/null +++ b/app/src/hooks/useRegions.ts @@ -0,0 +1,54 @@ +/** + * Hook for accessing regions based on country and simulation year + * + * Regions are derived data, not stored state. This hook computes the correct + * set of regions based on the country and simulation year, supporting multiple + * versions of dynamic regions (congressional districts, constituencies, etc.) + */ + +import { useMemo } from 'react'; +import { resolveRegions, ResolvedRegions } from '@/data/static/regions'; + +/** + * Get regions for a country and simulation year + * + * This hook returns the appropriate set of regions based on: + * - countryId: 'us' or 'uk' + * - year: The simulation year (determines which version of dynamic regions to use) + * + * The returned regions include both static regions (states, countries) and + * dynamic regions (congressional districts, constituencies, local authorities) + * resolved to the correct version for the given year. + * + * @example + * ```tsx + * function PopulationScopeView() { + * const countryId = useCurrentCountry(); + * const simulationYear = useSelector(selectSimulationYear); + * + * const { regions, versions } = useRegions(countryId, simulationYear); + * + * // Filter for specific region types + * const constituencies = getUKConstituencies(regions); + * const districts = getUSCongressionalDistricts(regions); + * + * return ; + * } + * ``` + */ +export function useRegions(countryId: string, year: number): ResolvedRegions { + return useMemo(() => resolveRegions(countryId, year), [countryId, year]); +} + +/** + * Get just the regions array for a country and year + * + * Convenience wrapper when you don't need version information. + */ +export function useRegionsList( + countryId: string, + year: number +): ResolvedRegions['regions'] { + const { regions } = useRegions(countryId, year); + return regions; +} diff --git a/app/src/reducers/metadataReducer.ts b/app/src/reducers/metadataReducer.ts index e46d9341b..987059d34 100644 --- a/app/src/reducers/metadataReducer.ts +++ b/app/src/reducers/metadataReducer.ts @@ -1,5 +1,7 @@ import { createAsyncThunk, createSlice, PayloadAction } from '@reduxjs/toolkit'; +import { CURRENT_YEAR } from '@/constants'; import { getStaticData } from '@/data/static'; +import { resolveRegions } from '@/data/static/regions'; import { buildParameterTree } from '@/libs/buildParameterTree'; import { loadCoreMetadata, loadParameters } from '@/storage'; import { MetadataState } from '@/types/metadata'; @@ -137,10 +139,16 @@ const metadataSlice = createSlice({ const staticData = getStaticData(countryId); state.entities = staticData.entities; state.basicInputs = staticData.basicInputs; - state.economyOptions.region = staticData.regions; state.economyOptions.time_period = staticData.timePeriods; state.modelledPolicies = staticData.modelledPolicies; state.currentLawId = staticData.currentLawId; + + // Load regions with year-based versioning + // Uses CURRENT_YEAR as default; components needing different years + // should use the useRegions(countryId, year) hook directly + const currentYear = parseInt(CURRENT_YEAR, 10); + const { regions } = resolveRegions(countryId, currentYear); + state.economyOptions.region = regions; }) .addCase(fetchCoreMetadataThunk.rejected, (state, action) => { state.coreLoading = false; diff --git a/app/src/vite-env.d.ts b/app/src/vite-env.d.ts index 11f02fe2a..ec7c0a821 100644 --- a/app/src/vite-env.d.ts +++ b/app/src/vite-env.d.ts @@ -1 +1,7 @@ /// + +// Allow importing CSV files as raw strings +declare module '*.csv?raw' { + const content: string; + export default content; +} From 38635e1e85fd5ae744bec3d257f11ce2410fc5b3 Mon Sep 17 00:00:00 2001 From: Anthony Volk Date: Mon, 22 Dec 2025 16:23:16 +0400 Subject: [PATCH 08/32] feat: Begin using migrated metadata endpoints in existing hooks; fix static data issues --- app/src/adapters/HouseholdAdapter.ts | 6 +- .../household/HouseholdSummaryCard.tsx | 19 ++- .../household/VariableArithmetic.tsx | 30 +++- app/src/data/static/index.ts | 3 + app/src/data/static/taxYears.ts | 47 ++++++ app/src/hooks/staticMetadata.ts | 66 ++++++++ app/src/hooks/useBasicInputFields.ts | 81 ++++++++++ app/src/hooks/useStaticMetadata.ts | 124 +++++++++++++++ app/src/hooks/useUserGeographic.ts | 20 +-- app/src/hooks/useUserReports.ts | 12 +- app/src/hooks/useUserSimulations.ts | 9 +- app/src/libs/metadataUtils.ts | 121 ++------------ app/src/pages/Populations.page.tsx | 14 +- .../pages/report-output/DynamicsSubPage.tsx | 3 +- app/src/pages/report-output/PolicySubPage.tsx | 5 +- .../BudgetaryImpactByProgramSubPage.tsx | 11 +- .../BudgetaryImpactSubPage.tsx | 9 +- ...stributionalImpactIncomeAverageSubPage.tsx | 9 +- ...tributionalImpactIncomeRelativeSubPage.tsx | 9 +- ...stributionalImpactWealthAverageSubPage.tsx | 9 +- ...tributionalImpactWealthRelativeSubPage.tsx | 9 +- .../WinnersLosersIncomeDecileSubPage.tsx | 9 +- .../WinnersLosersWealthDecileSubPage.tsx | 9 +- .../BaselineAndReformChart.tsx | 22 ++- .../earnings-variation/BaselineOnlyChart.tsx | 21 ++- .../EarningsVariationSubPage.tsx | 22 ++- .../InequalityImpactSubPage.tsx | 9 +- .../MarginalTaxRatesSubPage.tsx | 22 ++- .../net-income/NetIncomeSubPage.tsx | 28 +++- .../DeepPovertyImpactByAgeSubPage.tsx | 9 +- .../DeepPovertyImpactByGenderSubPage.tsx | 9 +- .../PovertyImpactByAgeSubPage.tsx | 9 +- .../PovertyImpactByGenderSubPage.tsx | 9 +- .../PovertyImpactByRaceSubPage.tsx | 9 +- .../population/PopulationPathwayWrapper.tsx | 7 +- .../pathways/report/ReportPathwayWrapper.tsx | 9 +- .../PolicyParameterSelectorValueSetter.tsx | 9 +- .../valueSetters/MultiYearValueSelector.tsx | 11 +- .../pathways/report/views/ReportLabelView.tsx | 7 +- .../policy/PolicyParameterSelectorView.tsx | 10 +- .../population/GeographicConfirmationView.tsx | 9 +- .../views/population/HouseholdBuilderView.tsx | 6 +- .../population/PopulationExistingView.tsx | 14 +- .../simulation/SimulationPathwayWrapper.tsx | 11 +- app/src/reducers/metadataReducer.ts | 50 ++---- .../tests/fixtures/hooks/useMetadataMocks.ts | 72 +++------ .../fixtures/hooks/useUserReportsMocks.ts | 19 +-- .../constituencyComponentMocks.ts | 19 +-- .../fixtures/reducers/metadataReducerMocks.ts | 55 ++----- .../fixtures/utils/geographyUtilsMocks.ts | 92 +++-------- .../utils/householdComparisonMocks.ts | 26 +-- .../fixtures/utils/householdValuesMocks.ts | 6 +- app/src/tests/unit/libs/metadataUtils.test.ts | 51 ++---- .../unit/reducers/metadataReducer.test.ts | 16 +- .../tests/unit/utils/geographyUtils.test.ts | 117 ++++++-------- .../unit/utils/householdComparison.test.ts | 26 +-- .../tests/unit/utils/householdValues.test.ts | 26 +-- app/src/types/metadata.ts | 22 ++- app/src/utils/geographyUtils.ts | 150 +++++++++--------- app/src/utils/householdComparison.ts | 7 +- app/src/utils/householdValues.ts | 17 +- app/src/utils/impactChartUtils.ts | 17 +- 62 files changed, 913 insertions(+), 771 deletions(-) create mode 100644 app/src/data/static/taxYears.ts create mode 100644 app/src/hooks/staticMetadata.ts create mode 100644 app/src/hooks/useBasicInputFields.ts create mode 100644 app/src/hooks/useStaticMetadata.ts diff --git a/app/src/adapters/HouseholdAdapter.ts b/app/src/adapters/HouseholdAdapter.ts index 0a560be47..3ab706f60 100644 --- a/app/src/adapters/HouseholdAdapter.ts +++ b/app/src/adapters/HouseholdAdapter.ts @@ -1,3 +1,4 @@ +import { getEntities } from '@/data/static'; import { countryIds } from '@/libs/countries'; import { store } from '@/store'; import { Household, HouseholdData } from '@/types/ingredients/Household'; @@ -5,11 +6,12 @@ import { HouseholdMetadata } from '@/types/metadata/householdMetadata'; import { HouseholdCreationPayload } from '@/types/payloads'; /** - * Get entity metadata from the Redux store + * Get entity metadata from static data based on current country */ function getEntityMetadata() { const state = store.getState(); - return state.metadata?.entities || {}; + const countryId = state.metadata?.currentCountry || 'us'; + return getEntities(countryId); } /** diff --git a/app/src/components/household/HouseholdSummaryCard.tsx b/app/src/components/household/HouseholdSummaryCard.tsx index 7469db933..82ee682f7 100644 --- a/app/src/components/household/HouseholdSummaryCard.tsx +++ b/app/src/components/household/HouseholdSummaryCard.tsx @@ -1,10 +1,13 @@ +import { useMemo } from 'react'; import { useSelector } from 'react-redux'; import { Box, Stack, Text } from '@mantine/core'; import { colors, spacing, typography } from '@/designTokens'; +import { useCurrentCountry } from '@/hooks/useCurrentCountry'; +import { useEntities } from '@/hooks/useStaticMetadata'; import { RootState } from '@/store'; import { Household } from '@/types/ingredients/Household'; import { calculateVariableComparison } from '@/utils/householdComparison'; -import { formatVariableValue } from '@/utils/householdValues'; +import { formatVariableValue, HouseholdMetadataContext } from '@/utils/householdValues'; import HouseholdBreakdown from './HouseholdBreakdown'; interface HouseholdSummaryCardProps { @@ -22,9 +25,17 @@ export default function HouseholdSummaryCard({ reform, policyLabels, }: HouseholdSummaryCardProps) { - const metadata = useSelector((state: RootState) => state.metadata); + const countryId = useCurrentCountry(); + const reduxMetadata = useSelector((state: RootState) => state.metadata); + const entities = useEntities(countryId); - const rootVariable = metadata.variables.household_net_income; + // Build HouseholdMetadataContext + const metadataContext: HouseholdMetadataContext = useMemo( + () => ({ variables: reduxMetadata.variables, entities }), + [reduxMetadata.variables, entities] + ); + + const rootVariable = reduxMetadata.variables.household_net_income; if (!rootVariable) { return ( @@ -39,7 +50,7 @@ export default function HouseholdSummaryCard({ 'household_net_income', baseline, reform, - metadata + metadataContext ); // Format the value diff --git a/app/src/components/household/VariableArithmetic.tsx b/app/src/components/household/VariableArithmetic.tsx index 28d070acd..06215247d 100644 --- a/app/src/components/household/VariableArithmetic.tsx +++ b/app/src/components/household/VariableArithmetic.tsx @@ -1,9 +1,11 @@ -import { useState } from 'react'; +import { useMemo, useState } from 'react'; import { IconCircleMinus, IconCirclePlus, IconTriangleFilled } from '@tabler/icons-react'; import { useSelector } from 'react-redux'; import { ActionIcon, Box, Group, Text } from '@mantine/core'; import { spacing, typography } from '@/designTokens'; +import { useCurrentCountry } from '@/hooks/useCurrentCountry'; import { useReportYear } from '@/hooks/useReportYear'; +import { useEntities } from '@/hooks/useStaticMetadata'; import { RootState } from '@/store'; import { Household } from '@/types/ingredients/Household'; import { calculateVariableComparison } from '@/utils/householdComparison'; @@ -12,6 +14,7 @@ import { getVariableDisplayText } from '@/utils/householdDisplayText'; import { formatVariableValue, getParameterAtInstant, + HouseholdMetadataContext, shouldShowVariable, } from '@/utils/householdValues'; @@ -40,16 +43,27 @@ export default function VariableArithmetic({ }: VariableArithmeticProps) { const [expanded, setExpanded] = useState(defaultExpanded); const reportYear = useReportYear(); - const metadata = useSelector((state: RootState) => state.metadata); + const countryId = useCurrentCountry(); + const reduxMetadata = useSelector((state: RootState) => state.metadata); + const entities = useEntities(countryId); + + // Build HouseholdMetadataContext by combining Redux variables with static entities + const metadataContext: HouseholdMetadataContext = useMemo( + () => ({ + variables: reduxMetadata.variables, + entities, + }), + [reduxMetadata.variables, entities] + ); - const variable = metadata.variables[variableName]; + const variable = reduxMetadata.variables[variableName]; if (!variable) { return null; } // Calculate comparison (handles both single and comparison modes) const isComparisonMode = reform !== null; - const comparison = calculateVariableComparison(variableName, baseline, reform, metadata); + const comparison = calculateVariableComparison(variableName, baseline, reform, metadataContext); // Get child variables (adds and subtracts) let addsArray: string[] = []; @@ -58,7 +72,7 @@ export default function VariableArithmetic({ if (variable.adds) { if (typeof variable.adds === 'string') { // It's a parameter name - resolve it - const parameter = metadata.parameters[variable.adds]; + const parameter = reduxMetadata.parameters[variable.adds]; if (parameter) { addsArray = getParameterAtInstant(parameter, `${reportYear}-01-01`) || []; } @@ -70,7 +84,7 @@ export default function VariableArithmetic({ if (variable.subtracts) { if (typeof variable.subtracts === 'string') { // It's a parameter name - resolve it - const parameter = metadata.parameters[variable.subtracts]; + const parameter = reduxMetadata.parameters[variable.subtracts]; if (parameter) { subtractsArray = getParameterAtInstant(parameter, `${reportYear}-01-01`) || []; } @@ -81,10 +95,10 @@ export default function VariableArithmetic({ // Filter child variables to only show non-zero ones const visibleAdds = addsArray.filter((v) => - shouldShowVariable(v, baseline, reform, metadata, false) + shouldShowVariable(v, baseline, reform, metadataContext, false) ); const visibleSubtracts = subtractsArray.filter((v) => - shouldShowVariable(v, baseline, reform, metadata, false) + shouldShowVariable(v, baseline, reform, metadataContext, false) ); // Recursively render children diff --git a/app/src/data/static/index.ts b/app/src/data/static/index.ts index ff918364a..f778fc4e5 100644 --- a/app/src/data/static/index.ts +++ b/app/src/data/static/index.ts @@ -43,6 +43,9 @@ export { type TimePeriodOption, } from './timePeriods'; +// Tax year utilities +export { getTaxYears, getDateRange } from './taxYears'; + import { getEntities } from './entities'; import { getBasicInputs } from './basicInputs'; import { getModelledPolicies, getCurrentLawId } from './modelledPolicies'; diff --git a/app/src/data/static/taxYears.ts b/app/src/data/static/taxYears.ts new file mode 100644 index 000000000..1e714d250 --- /dev/null +++ b/app/src/data/static/taxYears.ts @@ -0,0 +1,47 @@ +/** + * Tax year utilities + * Provides formatted tax year data from static time periods + */ + +import { getTimePeriods } from './timePeriods'; + +/** + * Get tax years formatted for Select components + * + * @param countryId - Country code ('us' or 'uk') + * @returns Array of { value: string, label: string } sorted by year ascending + */ +export function getTaxYears(countryId: string): Array<{ value: string; label: string }> { + const timePeriods = getTimePeriods(countryId); + + return timePeriods + .map((tp) => ({ + value: tp.name.toString(), + label: tp.label, + })) + .sort((a, b) => parseInt(a.value, 10) - parseInt(b.value, 10)); +} + +/** + * Get min/max date range from available time periods + * + * @param countryId - Country code ('us' or 'uk') + * @returns Object with minDate and maxDate in YYYY-MM-DD format + */ +export function getDateRange(countryId: string): { minDate: string; maxDate: string } { + const timePeriods = getTimePeriods(countryId); + + if (timePeriods.length === 0) { + return { + minDate: '2022-01-01', + maxDate: '2035-12-31', + }; + } + + const possibleYears = timePeriods.map((period) => period.name).sort(); + + return { + minDate: `${possibleYears[0]}-01-01`, + maxDate: `${possibleYears[possibleYears.length - 1]}-12-31`, + }; +} diff --git a/app/src/hooks/staticMetadata.ts b/app/src/hooks/staticMetadata.ts new file mode 100644 index 000000000..a0c952b56 --- /dev/null +++ b/app/src/hooks/staticMetadata.ts @@ -0,0 +1,66 @@ +/** + * Static Metadata Hooks + * + * This module provides hooks for accessing static (non-API) metadata. + * Static metadata is country-specific data defined in code that doesn't + * change at runtime. + * + * ## Quick Start + * + * ```typescript + * import { + * useStaticMetadata, // Get all static data at once + * useEntities, // Entity definitions + * useBasicInputs, // Required household input fields + * useTimePeriods, // Available simulation years + * useRegions, // Geographic regions (year-aware) + * useModelledPolicies,// Pre-configured policies + * useCurrentLawId, // Baseline policy ID + * } from '@/hooks/staticMetadata'; + * + * // Example: Get all static metadata + * const { entities, basicInputs, regions } = useStaticMetadata('us', 2025); + * + * // Example: Get just regions with version info + * const { regions, versions } = useRegions('us', 2025); + * // versions.congressionalDistricts = "2020-census" + * ``` + * + * ## What's Static vs API-Driven? + * + * | Static (this module) | API-Driven (Redux) | + * |--------------------------|---------------------------| + * | entities | variables | + * | basicInputs | parameters | + * | timePeriods | datasets | + * | regions | version | + * | modelledPolicies | parameterTree | + * | currentLawId | | + * + * ## Source Files + * + * Static data is defined in `src/data/static/`: + * - `entities.ts` - Person, family, household definitions + * - `basicInputs.ts` - Required input field names + * - `timePeriods.ts` - Available years (US: 2022-2035, UK: 2024-2030) + * - `modelledPolicies.ts` - Baseline and reform policies + * - `regions/` - Geographic regions with versioning + * - `us/congressionalDistricts.ts` - 436 districts (2020 Census) + * - `uk/constituencies.ts` - 650 constituencies (2024 boundaries) + * - `uk/localAuthorities.ts` - 360 local authorities + */ + +export { + // Main bundled hook + useStaticMetadata, + type StaticMetadata, + + // Individual hooks + useEntities, + useBasicInputs, + useTimePeriods, + useModelledPolicies, + useCurrentLawId, + useRegions, + useRegionsList, +} from './useStaticMetadata'; diff --git a/app/src/hooks/useBasicInputFields.ts b/app/src/hooks/useBasicInputFields.ts new file mode 100644 index 000000000..7b2f45e0e --- /dev/null +++ b/app/src/hooks/useBasicInputFields.ts @@ -0,0 +1,81 @@ +/** + * Hook for getting basic input fields categorized by entity type + * + * This hook combines static metadata (basicInputs, entities) with Redux-stored + * variables to produce a categorized object of input field names for the + * household builder. + * + * ## Usage + * + * ```typescript + * import { useBasicInputFields } from '@/hooks/useBasicInputFields'; + * + * // Get basic input fields categorized by entity + * const basicInputFields = useBasicInputFields('us'); + * // { person: ['age', 'employment_income'], tax_unit: [...], ... } + * ``` + */ + +import { useMemo } from 'react'; +import { useSelector } from 'react-redux'; +import { useBasicInputs, useEntities } from './useStaticMetadata'; +import { RootState } from '@/store'; + +/** + * Get basic input fields categorized by entity type + * + * Combines static basicInputs and entities with Redux-stored variables + * to produce a categorized object of input field names. + * + * @param countryId - Country code ('us' or 'uk') + * @returns Object with entity types as keys and arrays of field names as values + */ +export function useBasicInputFields(countryId: string) { + const basicInputs = useBasicInputs(countryId); + const entities = useEntities(countryId); + const variables = useSelector((state: RootState) => state.metadata.variables); + + return useMemo(() => { + const inputs = basicInputs || []; + + // Dynamically build categories from metadata entities (country-agnostic) + // This handles US entities (tax_unit, spm_unit, etc.) and UK entities (benunit) automatically + const categorized: Record = {}; + + // Initialize categories from available entities in metadata + if (entities) { + for (const [entityType, entityInfo] of Object.entries(entities)) { + // Use 'person' as the key for person entities, otherwise use the entity type + const key = (entityInfo as any).is_person ? 'person' : entityType; + categorized[key] = []; + } + } + + // Categorize each field by looking up its entity in metadata + for (const field of inputs) { + const variable = variables?.[field]; + if (!variable) { + continue; + } + + const entityType = variable.entity; + const entityInfo = entities?.[entityType]; + + if (!entityInfo) { + // Unknown entity - skip field with warning + console.warn(`[useBasicInputFields] Unknown entity type "${entityType}" for field "${field}"`); + continue; + } + + // Use 'person' as the key for person entities, otherwise use the entity type + const key = (entityInfo as any).is_person ? 'person' : entityType; + + if (!categorized[key]) { + categorized[key] = []; + } + categorized[key].push(field); + } + + return categorized; + }, [basicInputs, entities, variables]); +} diff --git a/app/src/hooks/useStaticMetadata.ts b/app/src/hooks/useStaticMetadata.ts new file mode 100644 index 000000000..9bd8a48d7 --- /dev/null +++ b/app/src/hooks/useStaticMetadata.ts @@ -0,0 +1,124 @@ +/** + * Unified hook for accessing static metadata + * + * Static metadata is country-specific data that doesn't come from the API. + * It's defined in static files and doesn't change at runtime. + * + * Usage: + * ```typescript + * // Get everything + * const { entities, basicInputs, timePeriods, regions, modelledPolicies, currentLawId } = + * useStaticMetadata('us', 2025); + * + * // Or destructure just what you need + * const { entities, basicInputs } = useStaticMetadata('us', 2025); + * + * // Individual hooks are also available + * const entities = useEntities('us'); + * const { regions, versions } = useRegions('us', 2025); + * ``` + */ + +import { useMemo } from 'react'; +import { + getEntities, + getBasicInputs, + getTimePeriods, + getModelledPolicies, + getCurrentLawId, + type EntitiesRecord, + type TimePeriodOption, + type ModelledPolicies, +} from '@/data/static'; +import { resolveRegions, type ResolvedRegions } from '@/data/static/regions'; +import { MetadataRegionEntry } from '@/types/metadata'; + +/** + * All static metadata for a country + */ +export interface StaticMetadata { + /** Entity definitions (person, family, household, etc.) */ + entities: EntitiesRecord; + /** Required input fields for household creation */ + basicInputs: string[]; + /** Available simulation years */ + timePeriods: TimePeriodOption[]; + /** Geographic regions (states, districts, constituencies, etc.) */ + regions: MetadataRegionEntry[]; + /** Region version info (which boundary set is active) */ + regionVersions: ResolvedRegions['versions']; + /** Pre-configured policy options */ + modelledPolicies: ModelledPolicies; + /** ID of the current law baseline policy */ + currentLawId: number; +} + +/** + * Get all static metadata for a country and simulation year + * + * This is the primary hook for accessing static metadata. It bundles + * all static data into a single object for easy destructuring. + * + * @param countryId - Country code ('us' or 'uk') + * @param year - Simulation year (affects which region boundaries are used) + */ +export function useStaticMetadata( + countryId: string, + year: number +): StaticMetadata { + return useMemo(() => { + const { regions, versions } = resolveRegions(countryId, year); + + return { + entities: getEntities(countryId), + basicInputs: getBasicInputs(countryId), + timePeriods: getTimePeriods(countryId), + regions, + regionVersions: versions, + modelledPolicies: getModelledPolicies(countryId), + currentLawId: getCurrentLawId(countryId), + }; + }, [countryId, year]); +} + +// ============================================================================ +// Individual hooks for when you only need one piece of static data +// ============================================================================ + +/** + * Get entity definitions for a country + */ +export function useEntities(countryId: string): EntitiesRecord { + return useMemo(() => getEntities(countryId), [countryId]); +} + +/** + * Get basic input fields for a country + */ +export function useBasicInputs(countryId: string): string[] { + return useMemo(() => getBasicInputs(countryId), [countryId]); +} + +/** + * Get available time periods for a country + */ +export function useTimePeriods(countryId: string): TimePeriodOption[] { + return useMemo(() => getTimePeriods(countryId), [countryId]); +} + +/** + * Get modelled policies for a country + */ +export function useModelledPolicies(countryId: string): ModelledPolicies { + return useMemo(() => getModelledPolicies(countryId), [countryId]); +} + +/** + * Get current law ID for a country + */ +export function useCurrentLawId(countryId: string): number { + return useMemo(() => getCurrentLawId(countryId), [countryId]); +} + +// Re-export useRegions for convenience (it's defined in its own file) +export { useRegions, useRegionsList } from './useRegions'; diff --git a/app/src/hooks/useUserGeographic.ts b/app/src/hooks/useUserGeographic.ts index 4315f0561..1b387aaee 100644 --- a/app/src/hooks/useUserGeographic.ts +++ b/app/src/hooks/useUserGeographic.ts @@ -1,10 +1,10 @@ import { useMutation, useQuery, useQueryClient } from '@tanstack/react-query'; -import { useSelector } from 'react-redux'; import { ApiGeographicStore, LocalStorageGeographicStore } from '@/api/geographicAssociation'; +import { CURRENT_YEAR } from '@/constants'; import { useCurrentCountry } from '@/hooks/useCurrentCountry'; +import { useRegionsList } from '@/hooks/useStaticMetadata'; import { queryConfig } from '@/libs/queryConfig'; import { geographicAssociationKeys } from '@/libs/queryKeys'; -import { RootState } from '@/store'; import { Geography } from '@/types/ingredients/Geography'; import { UserGeographyPopulation } from '@/types/ingredients/UserPopulation'; import { getCountryLabel } from '@/utils/geographyUtils'; @@ -131,8 +131,10 @@ export function isGeographicMetadataWithAssociation( } export const useUserGeographics = (userId: string) => { - // Get metadata for label lookups - const metadata = useSelector((state: RootState) => state.metadata); + // Get regions from static metadata for label lookups + const countryId = useCurrentCountry(); + const currentYear = parseInt(CURRENT_YEAR, 10); + const regions = useRegionsList(countryId, currentYear); // First, get the populations const { @@ -141,7 +143,7 @@ export const useUserGeographics = (userId: string) => { error: populationsError, } = useGeographicAssociationsByUser(userId); - // Helper function to get proper label from metadata or fallback + // Helper function to get proper label from regions or fallback const getGeographyName = (population: UserGeographyPopulation): string => { // If label exists, use it if (population.label) { @@ -153,19 +155,19 @@ export const useUserGeographics = (userId: string) => { return getCountryLabel(population.countryId); } - // For subnational, look up in metadata + // For subnational, look up in regions // population.geographyId now contains the FULL prefixed value for UK regions // e.g., "constituency/Sheffield Central" or "country/england" - if (metadata.economyOptions?.region) { + if (regions.length > 0) { // Try exact match first (handles prefixed UK values) - const region = metadata.economyOptions.region.find((r) => r.name === population.geographyId); + const region = regions.find((r) => r.name === population.geographyId); if (region?.label) { return region.label; } // Fallback: try adding prefixes (for backward compatibility) - const fallbackRegion = metadata.economyOptions.region.find( + const fallbackRegion = regions.find( (r) => r.name === `state/${population.geographyId}` || r.name === `constituency/${population.geographyId}` || diff --git a/app/src/hooks/useUserReports.ts b/app/src/hooks/useUserReports.ts index bddb1208e..0d7c9a7fa 100644 --- a/app/src/hooks/useUserReports.ts +++ b/app/src/hooks/useUserReports.ts @@ -1,13 +1,12 @@ import { useQueryNormalizer } from '@normy/react-query'; import { useQuery } from '@tanstack/react-query'; -import { useSelector } from 'react-redux'; import { HouseholdAdapter, PolicyAdapter, ReportAdapter, SimulationAdapter } from '@/adapters'; import { fetchHouseholdById } from '@/api/household'; import { fetchPolicyById } from '@/api/policy'; import { fetchReportById } from '@/api/report'; import { fetchSimulationById } from '@/api/simulation'; +import { CURRENT_YEAR } from '@/constants'; import { useCurrentCountry } from '@/hooks/useCurrentCountry'; -import { RootState } from '@/store'; import { Geography } from '@/types/ingredients/Geography'; import { Household } from '@/types/ingredients/Household'; import { Policy } from '@/types/ingredients/Policy'; @@ -21,6 +20,7 @@ import { import { UserReport } from '@/types/ingredients/UserReport'; import { UserSimulation } from '@/types/ingredients/UserSimulation'; import { householdKeys, policyKeys, reportKeys, simulationKeys } from '../libs/queryKeys'; +import { useRegionsList } from './useStaticMetadata'; import { useGeographicAssociationsByUser } from './useUserGeographic'; import { useHouseholdAssociationsByUser } from './useUserHousehold'; import { usePolicyAssociationsByUser } from './useUserPolicy'; @@ -75,8 +75,9 @@ export const useUserReports = (userId: string) => { const country = useCurrentCountry(); const queryNormalizer = useQueryNormalizer(); - // Get geography data from metadata - const geographyOptions = useSelector((state: RootState) => state.metadata.economyOptions.region); + // Get geography data from static metadata + const currentYear = parseInt(CURRENT_YEAR, 10); + const geographyOptions = useRegionsList(country, currentYear); // Step 1: Fetch all user associations in parallel const { @@ -346,6 +347,7 @@ export const useUserReportById = (userReportId: string, options?: { enabled?: bo const queryNormalizer = useQueryNormalizer(); const country = useCurrentCountry(); const isEnabled = options?.enabled !== false; + const currentYear = parseInt(CURRENT_YEAR, 10); // Step 1: Fetch UserReport by userReportId to get the base reportId const { @@ -458,7 +460,7 @@ export const useUserReportById = (userReportId: string, options?: { enabled?: bo ); // Step 7: Get geography data from simulations - const geographyOptions = useSelector((state: RootState) => state.metadata.economyOptions.region); + const geographyOptions = useRegionsList(country, currentYear); const geographies: Geography[] = []; simulations.forEach((sim) => { diff --git a/app/src/hooks/useUserSimulations.ts b/app/src/hooks/useUserSimulations.ts index b241bc3c7..8a90dbd11 100644 --- a/app/src/hooks/useUserSimulations.ts +++ b/app/src/hooks/useUserSimulations.ts @@ -1,12 +1,11 @@ import { useQueryNormalizer } from '@normy/react-query'; import { useQuery } from '@tanstack/react-query'; -import { useSelector } from 'react-redux'; import { HouseholdAdapter, PolicyAdapter, SimulationAdapter } from '@/adapters'; import { fetchHouseholdById } from '@/api/household'; import { fetchPolicyById } from '@/api/policy'; import { fetchSimulationById } from '@/api/simulation'; +import { CURRENT_YEAR } from '@/constants'; import { useCurrentCountry } from '@/hooks/useCurrentCountry'; -import { RootState } from '@/store'; import { Geography } from '@/types/ingredients/Geography'; import { Household } from '@/types/ingredients/Household'; import { Policy } from '@/types/ingredients/Policy'; @@ -16,6 +15,7 @@ import { UserHouseholdPopulation } from '@/types/ingredients/UserPopulation'; import { UserSimulation } from '@/types/ingredients/UserSimulation'; import { HouseholdMetadata } from '@/types/metadata/householdMetadata'; import { householdKeys, policyKeys, simulationKeys } from '../libs/queryKeys'; +import { useRegionsList } from './useStaticMetadata'; import { useHouseholdAssociationsByUser } from './useUserHousehold'; import { usePolicyAssociationsByUser } from './useUserPolicy'; import { useSimulationAssociationsByUser } from './useUserSimulationAssociations'; @@ -62,8 +62,9 @@ export const useUserSimulations = (userId: string) => { const country = useCurrentCountry(); const queryNormalizer = useQueryNormalizer(); - // Get geography data from metadata - const geographyOptions = useSelector((state: RootState) => state.metadata.economyOptions.region); + // Get geography data from static metadata + const currentYear = parseInt(CURRENT_YEAR, 10); + const geographyOptions = useRegionsList(country, currentYear); // Step 1: Fetch all user associations in parallel const { diff --git a/app/src/libs/metadataUtils.ts b/app/src/libs/metadataUtils.ts index 7d0185158..273c74c5a 100644 --- a/app/src/libs/metadataUtils.ts +++ b/app/src/libs/metadataUtils.ts @@ -1,105 +1,16 @@ +/** + * Metadata utility functions and selectors. + * + * Note: The following are now available from other modules: + * - getTaxYears() - pure function from @/data/static + * - getDateRange() - pure function from @/data/static + * - getRegions/useRegionsList() - from @/hooks/useStaticMetadata + * - useBasicInputFields() - hook from @/hooks/useBasicInputFields (combines static + Redux data) + */ import { createSelector } from '@reduxjs/toolkit'; import { RootState } from '@/store'; import { MetadataApiPayload, MetadataState } from '@/types/metadata'; -// Memoized selectors to prevent unnecessary re-renders -export const getTaxYears = createSelector( - (state: RootState) => state.metadata.economyOptions.time_period, - (timePeriods) => { - if (!timePeriods) { - return []; - } - - // Sort by year in ascending order (2025, 2026, 2027, etc.) - return timePeriods - .map((tp) => ({ - value: tp.name.toString(), - label: tp.label, - })) - .sort((a, b) => parseInt(a.value, 10) - parseInt(b.value, 10)); - } -); - -export const getDateRange = createSelector( - (state: RootState) => state.metadata.economyOptions.time_period, - (timePeriods) => { - if (!timePeriods || timePeriods.length === 0) { - return { - minDate: '2022-01-01', - maxDate: '2035-12-31', - }; - } - - // Calculate min/max dates from metadata.economy_options.time_period (following V1 approach) - const possibleYears = timePeriods.map((period) => period.name).sort(); - - return { - minDate: `${possibleYears[0]}-01-01`, - maxDate: `${possibleYears[possibleYears.length - 1]}-12-31`, - }; - } -); - -export const getRegions = createSelector( - (state: RootState) => state.metadata.economyOptions.region, - (regions) => - regions?.map((region) => ({ - value: region.name, - label: region.label, - })) || [] -); - -export const getBasicInputFields = createSelector( - [ - (state: RootState) => state.metadata.basicInputs, - (state: RootState) => state.metadata.variables, - (state: RootState) => state.metadata.entities, - ], - (basicInputs, variables, entities) => { - const inputs = basicInputs || []; - - // Dynamically build categories from metadata entities (country-agnostic) - // This handles US entities (tax_unit, spm_unit, etc.) and UK entities (benunit) automatically - const categorized: Record = {}; - - // Initialize categories from available entities in metadata - if (entities) { - for (const [entityType, entityInfo] of Object.entries(entities)) { - // Use 'person' as the key for person entities, otherwise use the entity type - const key = (entityInfo as any).is_person ? 'person' : entityType; - categorized[key] = []; - } - } - - // Categorize each field by looking up its entity in metadata - for (const field of inputs) { - const variable = variables?.[field]; - if (!variable) { - continue; - } - - const entityType = variable.entity; - const entityInfo = entities?.[entityType]; - - if (!entityInfo) { - // Unknown entity - skip field with warning - console.warn(`[metadataUtils] Unknown entity type "${entityType}" for field "${field}"`); - continue; - } - - // Use 'person' as the key for person entities, otherwise use the entity type - const key = entityInfo.is_person ? 'person' : entityType; - - if (!categorized[key]) { - categorized[key] = []; - } - categorized[key].push(field); - } - - return categorized; - } -); - // For field options, we need a function that takes fieldName as parameter // We'll use a factory function that returns a memoized selector export const makeGetFieldOptions = () => @@ -163,10 +74,15 @@ export const getFieldLabel = (fieldName: string) => { ); }; +/** + * Transform API payload to MetadataState format + * Note: Static data (entities, basicInputs, economyOptions, etc.) is now handled separately + * via static files in src/data/static/ + */ export function transformMetadataPayload( payload: MetadataApiPayload, country: string -): Omit { +): MetadataState { const data = payload.result; return { currentCountry: country, @@ -180,12 +96,7 @@ export function transformMetadataPayload( progress: 100, // Transformation happens after successful load variables: data.variables ?? {}, parameters: data.parameters ?? {}, - entities: data.entities ?? {}, - variableModules: data.variableModules ?? {}, - economyOptions: data.economy_options ?? { region: [], time_period: [], datasets: [] }, - currentLawId: data.current_law_id ?? 0, - basicInputs: data.basicInputs ?? [], - modelledPolicies: data.modelled_policies ?? { core: {}, filtered: {} }, + datasets: data.economy_options?.datasets ?? [], version: data.version ?? null, parameterTree: null, // Will be built separately in the reducer }; diff --git a/app/src/pages/Populations.page.tsx b/app/src/pages/Populations.page.tsx index a477760a6..f518382d2 100644 --- a/app/src/pages/Populations.page.tsx +++ b/app/src/pages/Populations.page.tsx @@ -1,20 +1,19 @@ import { useState } from 'react'; -import { useSelector } from 'react-redux'; import { useNavigate } from 'react-router-dom'; import { Stack } from '@mantine/core'; import { useDisclosure } from '@mantine/hooks'; import { BulletsValue, ColumnConfig, IngredientRecord, TextValue } from '@/components/columns'; import { RenameIngredientModal } from '@/components/common/RenameIngredientModal'; import IngredientReadView from '@/components/IngredientReadView'; -import { MOCK_USER_ID } from '@/constants'; +import { CURRENT_YEAR, MOCK_USER_ID } from '@/constants'; import { useCurrentCountry } from '@/hooks/useCurrentCountry'; +import { useRegionsList } from '@/hooks/useStaticMetadata'; import { useGeographicAssociationsByUser, useUpdateGeographicAssociation, } from '@/hooks/useUserGeographic'; import { useUpdateHouseholdAssociation, useUserHouseholds } from '@/hooks/useUserHousehold'; import { countryIds } from '@/libs/countries'; -import { RootState } from '@/store'; import { UserGeographyPopulation } from '@/types/ingredients/UserPopulation'; import { formatDate } from '@/utils/dateUtils'; import { getCountryLabel } from '@/utils/geographyUtils'; @@ -23,8 +22,9 @@ import { extractRegionDisplayValue } from '@/utils/regionStrategies'; export default function PopulationsPage() { const userId = MOCK_USER_ID.toString(); // TODO: Replace with actual user ID retrieval logic // TODO: Session storage hard-fixes "anonymous" as user ID; this should really just be anything - const metadata = useSelector((state: RootState) => state.metadata); const countryId = useCurrentCountry(); + const currentYear = parseInt(CURRENT_YEAR, 10); + const regions = useRegionsList(countryId, currentYear); // Fetch household associations const { @@ -151,15 +151,15 @@ export default function PopulationsPage() { // e.g., "constituency/Sheffield Central" or "country/england" let regionLabel = geography.geographyId; const fullRegionName = geography.geographyId; // Track the full name with prefix - if (metadata.economyOptions?.region) { + if (regions.length > 0) { // Try exact match first (handles prefixed UK values and US state codes) - const region = metadata.economyOptions.region.find((r) => r.name === geography.geographyId); + const region = regions.find((r) => r.name === geography.geographyId); if (region) { regionLabel = region.label; } else { // Fallback: try adding prefixes for backward compatibility - const fallbackRegion = metadata.economyOptions.region.find( + const fallbackRegion = regions.find( (r) => r.name === `state/${geography.geographyId}` || r.name === `constituency/${geography.geographyId}` || diff --git a/app/src/pages/report-output/DynamicsSubPage.tsx b/app/src/pages/report-output/DynamicsSubPage.tsx index a2edbb4ed..3c36bdec8 100644 --- a/app/src/pages/report-output/DynamicsSubPage.tsx +++ b/app/src/pages/report-output/DynamicsSubPage.tsx @@ -4,6 +4,7 @@ import ParameterTable from '@/components/report/ParameterTable'; import { getParamDefinitionDate } from '@/constants'; import { colors, spacing } from '@/designTokens'; import { useCurrentCountry } from '@/hooks/useCurrentCountry'; +import { useCurrentLawId } from '@/hooks/useStaticMetadata'; import { useReportYear } from '@/hooks/useReportYear'; import { RootState } from '@/store'; import { Policy } from '@/types/ingredients/Policy'; @@ -55,7 +56,7 @@ function collectDynamicsParameterNames(policies: Policy[], countryId: string): s export default function DynamicsSubPage({ policies, userPolicies }: DynamicsSubPageProps) { const countryId = useCurrentCountry(); const parameters = useSelector((state: RootState) => state.metadata.parameters); - const currentLawId = useSelector((state: RootState) => state.metadata.currentLawId); + const currentLawId = useCurrentLawId(countryId); const reportYear = useReportYear(); const reportDate = getParamDefinitionDate(reportYear ?? undefined); diff --git a/app/src/pages/report-output/PolicySubPage.tsx b/app/src/pages/report-output/PolicySubPage.tsx index b1875acc2..f8cf0ffa6 100644 --- a/app/src/pages/report-output/PolicySubPage.tsx +++ b/app/src/pages/report-output/PolicySubPage.tsx @@ -1,7 +1,9 @@ import { useSelector } from 'react-redux'; import ParameterTable from '@/components/report/ParameterTable'; import { getParamDefinitionDate } from '@/constants'; +import { useCurrentCountry } from '@/hooks/useCurrentCountry'; import { useReportYear } from '@/hooks/useReportYear'; +import { useCurrentLawId } from '@/hooks/useStaticMetadata'; import { RootState } from '@/store'; import { Policy } from '@/types/ingredients/Policy'; import { UserPolicy } from '@/types/ingredients/UserPolicy'; @@ -30,8 +32,9 @@ interface PolicySubPageProps { * all policies in a unified view. */ export default function PolicySubPage({ policies, userPolicies }: PolicySubPageProps) { + const countryId = useCurrentCountry(); const parameters = useSelector((state: RootState) => state.metadata.parameters); - const currentLawId = useSelector((state: RootState) => state.metadata.currentLawId); + const currentLawId = useCurrentLawId(countryId); const reportYear = useReportYear(); const reportDate = getParamDefinitionDate(reportYear ?? undefined); diff --git a/app/src/pages/report-output/budgetary-impact/BudgetaryImpactByProgramSubPage.tsx b/app/src/pages/report-output/budgetary-impact/BudgetaryImpactByProgramSubPage.tsx index 122870e68..82e51ca21 100644 --- a/app/src/pages/report-output/budgetary-impact/BudgetaryImpactByProgramSubPage.tsx +++ b/app/src/pages/report-output/budgetary-impact/BudgetaryImpactByProgramSubPage.tsx @@ -5,10 +5,12 @@ import { Stack, Text } from '@mantine/core'; import { useMediaQuery, useViewportSize } from '@mantine/hooks'; import type { SocietyWideReportOutput } from '@/api/societyWideCalculation'; import { ChartContainer } from '@/components/ChartContainer'; +import { CURRENT_YEAR } from '@/constants'; import { colors } from '@/designTokens/colors'; import { spacing } from '@/designTokens/spacing'; import { useCurrentCountry } from '@/hooks/useCurrentCountry'; -import type { RootState } from '@/store'; +import { useRegionsList } from '@/hooks/useStaticMetadata'; +import { RootState } from '@/store'; import { absoluteChangeMessage } from '@/utils/chartMessages'; import { DEFAULT_CHART_CONFIG, downloadCsv, getClampedChartHeight } from '@/utils/chartUtils'; import { currencySymbol, formatCurrencyAbbr, localeCode } from '@/utils/formatters'; @@ -27,8 +29,9 @@ interface ProgramBudgetItem { export default function BudgetaryImpactByProgramSubPage({ output }: Props) { const mobile = useMediaQuery('(max-width: 768px)'); const countryId = useCurrentCountry(); - const metadata = useSelector((state: RootState) => state.metadata); - const variables = metadata.variables; + const currentYear = parseInt(CURRENT_YEAR, 10); + const regions = useRegionsList(countryId, currentYear); + const variables = useSelector((state: RootState) => state.metadata.variables); const { height: viewportHeight } = useViewportSize(); const chartHeight = getClampedChartHeight(viewportHeight, mobile); @@ -119,7 +122,7 @@ export default function BudgetaryImpactByProgramSubPage({ output }: Props) { }); const signTerm = budgetaryImpact > 0 ? 'raise' : 'cost'; - const region = regionName(metadata); + const region = regionName(regions); const regionPhrase = region ? ` in ${region}` : ''; if (budgetaryImpact === 0) { diff --git a/app/src/pages/report-output/budgetary-impact/BudgetaryImpactSubPage.tsx b/app/src/pages/report-output/budgetary-impact/BudgetaryImpactSubPage.tsx index 5f657204e..90cac2f3e 100644 --- a/app/src/pages/report-output/budgetary-impact/BudgetaryImpactSubPage.tsx +++ b/app/src/pages/report-output/budgetary-impact/BudgetaryImpactSubPage.tsx @@ -1,14 +1,14 @@ import type { Layout } from 'plotly.js'; import Plot from 'react-plotly.js'; -import { useSelector } from 'react-redux'; import { Stack } from '@mantine/core'; import { useMediaQuery, useViewportSize } from '@mantine/hooks'; import type { SocietyWideReportOutput } from '@/api/societyWideCalculation'; import { ChartContainer } from '@/components/ChartContainer'; +import { CURRENT_YEAR } from '@/constants'; import { colors } from '@/designTokens/colors'; import { spacing } from '@/designTokens/spacing'; import { useCurrentCountry } from '@/hooks/useCurrentCountry'; -import type { RootState } from '@/store'; +import { useRegionsList } from '@/hooks/useStaticMetadata'; import { absoluteChangeMessage } from '@/utils/chartMessages'; import { DEFAULT_CHART_CONFIG, downloadCsv, getClampedChartHeight } from '@/utils/chartUtils'; import { currencySymbol, formatCurrencyAbbr, localeCode } from '@/utils/formatters'; @@ -22,7 +22,8 @@ export default function BudgetaryImpactSubPage({ output }: Props) { const mobile = useMediaQuery('(max-width: 768px)'); const { height: viewportHeight } = useViewportSize(); const countryId = useCurrentCountry(); - const metadata = useSelector((state: RootState) => state.metadata); + const currentYear = parseInt(CURRENT_YEAR, 10); + const regions = useRegionsList(countryId, currentYear); const chartHeight = getClampedChartHeight(viewportHeight, mobile); // Extract data @@ -94,7 +95,7 @@ export default function BudgetaryImpactSubPage({ output }: Props) { }); const signTerm = budgetaryImpact > 0 ? 'raise' : 'cost'; - const region = regionName(metadata); + const region = regionName(regions); const regionPhrase = region ? ` in ${region}` : ''; if (budgetaryImpact === 0) { diff --git a/app/src/pages/report-output/distributional-impact/DistributionalImpactIncomeAverageSubPage.tsx b/app/src/pages/report-output/distributional-impact/DistributionalImpactIncomeAverageSubPage.tsx index eb678e573..2601bebda 100644 --- a/app/src/pages/report-output/distributional-impact/DistributionalImpactIncomeAverageSubPage.tsx +++ b/app/src/pages/report-output/distributional-impact/DistributionalImpactIncomeAverageSubPage.tsx @@ -1,14 +1,14 @@ import type { Layout } from 'plotly.js'; import Plot from 'react-plotly.js'; -import { useSelector } from 'react-redux'; import { Stack, Text } from '@mantine/core'; import { useMediaQuery, useViewportSize } from '@mantine/hooks'; import type { SocietyWideReportOutput } from '@/api/societyWideCalculation'; import { ChartContainer } from '@/components/ChartContainer'; +import { CURRENT_YEAR } from '@/constants'; import { colors } from '@/designTokens/colors'; import { spacing } from '@/designTokens/spacing'; import { useCurrentCountry } from '@/hooks/useCurrentCountry'; -import type { RootState } from '@/store'; +import { useRegionsList } from '@/hooks/useStaticMetadata'; import { absoluteChangeMessage } from '@/utils/chartMessages'; import { DEFAULT_CHART_CONFIG, downloadCsv, getClampedChartHeight } from '@/utils/chartUtils'; import { currencySymbol, formatCurrency, localeCode, ordinal, precision } from '@/utils/formatters'; @@ -21,7 +21,8 @@ interface Props { export default function DistributionalImpactIncomeAverageSubPage({ output }: Props) { const mobile = useMediaQuery('(max-width: 768px)'); const countryId = useCurrentCountry(); - const metadata = useSelector((state: RootState) => state.metadata); + const currentYear = parseInt(CURRENT_YEAR, 10); + const regions = useRegionsList(countryId, currentYear); const { height: viewportHeight } = useViewportSize(); const chartHeight = getClampedChartHeight(viewportHeight, mobile); @@ -65,7 +66,7 @@ export default function DistributionalImpactIncomeAverageSubPage({ output }: Pro }); const signTerm = averageChange > 0 ? 'increase' : 'decrease'; - const region = regionName(metadata); + const region = regionName(regions); const regionPhrase = region ? ` in ${region}` : ''; if (averageChange === 0) { diff --git a/app/src/pages/report-output/distributional-impact/DistributionalImpactIncomeRelativeSubPage.tsx b/app/src/pages/report-output/distributional-impact/DistributionalImpactIncomeRelativeSubPage.tsx index 3018e2f41..37ae86731 100644 --- a/app/src/pages/report-output/distributional-impact/DistributionalImpactIncomeRelativeSubPage.tsx +++ b/app/src/pages/report-output/distributional-impact/DistributionalImpactIncomeRelativeSubPage.tsx @@ -1,14 +1,14 @@ import type { Layout } from 'plotly.js'; import Plot from 'react-plotly.js'; -import { useSelector } from 'react-redux'; import { Stack, Text } from '@mantine/core'; import { useMediaQuery, useViewportSize } from '@mantine/hooks'; import type { SocietyWideReportOutput } from '@/api/societyWideCalculation'; import { ChartContainer } from '@/components/ChartContainer'; +import { CURRENT_YEAR } from '@/constants'; import { colors } from '@/designTokens/colors'; import { spacing } from '@/designTokens/spacing'; import { useCurrentCountry } from '@/hooks/useCurrentCountry'; -import type { RootState } from '@/store'; +import { useRegionsList } from '@/hooks/useStaticMetadata'; import { relativeChangeMessage } from '@/utils/chartMessages'; import { DEFAULT_CHART_CONFIG, downloadCsv, getClampedChartHeight } from '@/utils/chartUtils'; import { formatPercent, localeCode, ordinal, precision } from '@/utils/formatters'; @@ -21,7 +21,8 @@ interface Props { export default function DistributionalImpactIncomeRelativeSubPage({ output }: Props) { const mobile = useMediaQuery('(max-width: 768px)'); const countryId = useCurrentCountry(); - const metadata = useSelector((state: RootState) => state.metadata); + const currentYear = parseInt(CURRENT_YEAR, 10); + const regions = useRegionsList(countryId, currentYear); const { height: viewportHeight } = useViewportSize(); const chartHeight = getClampedChartHeight(viewportHeight, mobile); @@ -57,7 +58,7 @@ export default function DistributionalImpactIncomeRelativeSubPage({ output }: Pr }); const signTerm = relativeChange > 0 ? 'increase' : 'decrease'; - const region = regionName(metadata); + const region = regionName(regions); const regionPhrase = region ? ` in ${region}` : ''; if (relativeChange === 0) { diff --git a/app/src/pages/report-output/distributional-impact/DistributionalImpactWealthAverageSubPage.tsx b/app/src/pages/report-output/distributional-impact/DistributionalImpactWealthAverageSubPage.tsx index 45bb529cf..2febfb40b 100644 --- a/app/src/pages/report-output/distributional-impact/DistributionalImpactWealthAverageSubPage.tsx +++ b/app/src/pages/report-output/distributional-impact/DistributionalImpactWealthAverageSubPage.tsx @@ -1,14 +1,14 @@ import type { Layout } from 'plotly.js'; import Plot from 'react-plotly.js'; -import { useSelector } from 'react-redux'; import { Stack, Text } from '@mantine/core'; import { useMediaQuery, useViewportSize } from '@mantine/hooks'; import type { SocietyWideReportOutput } from '@/api/societyWideCalculation'; import { ChartContainer } from '@/components/ChartContainer'; +import { CURRENT_YEAR } from '@/constants'; import { colors } from '@/designTokens/colors'; import { spacing } from '@/designTokens/spacing'; import { useCurrentCountry } from '@/hooks/useCurrentCountry'; -import type { RootState } from '@/store'; +import { useRegionsList } from '@/hooks/useStaticMetadata'; import { absoluteChangeMessage } from '@/utils/chartMessages'; import { DEFAULT_CHART_CONFIG, downloadCsv, getClampedChartHeight } from '@/utils/chartUtils'; import { currencySymbol, formatCurrency, localeCode, ordinal, precision } from '@/utils/formatters'; @@ -21,7 +21,8 @@ interface Props { export default function DistributionalImpactWealthAverageSubPage({ output }: Props) { const mobile = useMediaQuery('(max-width: 768px)'); const countryId = useCurrentCountry(); - const metadata = useSelector((state: RootState) => state.metadata); + const currentYear = parseInt(CURRENT_YEAR, 10); + const regions = useRegionsList(countryId, currentYear); const { height: viewportHeight } = useViewportSize(); const chartHeight = getClampedChartHeight(viewportHeight, mobile); @@ -65,7 +66,7 @@ export default function DistributionalImpactWealthAverageSubPage({ output }: Pro }); const signTerm = averageChange > 0 ? 'increase' : 'decrease'; - const region = regionName(metadata); + const region = regionName(regions); const regionPhrase = region ? ` in ${region}` : ''; if (averageChange === 0) { diff --git a/app/src/pages/report-output/distributional-impact/DistributionalImpactWealthRelativeSubPage.tsx b/app/src/pages/report-output/distributional-impact/DistributionalImpactWealthRelativeSubPage.tsx index c3cb9c507..4243cdd90 100644 --- a/app/src/pages/report-output/distributional-impact/DistributionalImpactWealthRelativeSubPage.tsx +++ b/app/src/pages/report-output/distributional-impact/DistributionalImpactWealthRelativeSubPage.tsx @@ -1,14 +1,14 @@ import type { Layout } from 'plotly.js'; import Plot from 'react-plotly.js'; -import { useSelector } from 'react-redux'; import { Stack, Text } from '@mantine/core'; import { useMediaQuery, useViewportSize } from '@mantine/hooks'; import type { SocietyWideReportOutput } from '@/api/societyWideCalculation'; import { ChartContainer } from '@/components/ChartContainer'; +import { CURRENT_YEAR } from '@/constants'; import { colors } from '@/designTokens/colors'; import { spacing } from '@/designTokens/spacing'; import { useCurrentCountry } from '@/hooks/useCurrentCountry'; -import type { RootState } from '@/store'; +import { useRegionsList } from '@/hooks/useStaticMetadata'; import { relativeChangeMessage } from '@/utils/chartMessages'; import { DEFAULT_CHART_CONFIG, downloadCsv, getClampedChartHeight } from '@/utils/chartUtils'; import { formatPercent, localeCode, ordinal, precision } from '@/utils/formatters'; @@ -21,7 +21,8 @@ interface Props { export default function DistributionalImpactWealthRelativeSubPage({ output }: Props) { const mobile = useMediaQuery('(max-width: 768px)'); const countryId = useCurrentCountry(); - const metadata = useSelector((state: RootState) => state.metadata); + const currentYear = parseInt(CURRENT_YEAR, 10); + const regions = useRegionsList(countryId, currentYear); const { height: viewportHeight } = useViewportSize(); const chartHeight = getClampedChartHeight(viewportHeight, mobile); @@ -57,7 +58,7 @@ export default function DistributionalImpactWealthRelativeSubPage({ output }: Pr }); const signTerm = relativeChange > 0 ? 'increase' : 'decrease'; - const region = regionName(metadata); + const region = regionName(regions); const regionPhrase = region ? ` in ${region}` : ''; if (relativeChange === 0) { diff --git a/app/src/pages/report-output/distributional-impact/WinnersLosersIncomeDecileSubPage.tsx b/app/src/pages/report-output/distributional-impact/WinnersLosersIncomeDecileSubPage.tsx index 021ac2c2e..fa8376169 100644 --- a/app/src/pages/report-output/distributional-impact/WinnersLosersIncomeDecileSubPage.tsx +++ b/app/src/pages/report-output/distributional-impact/WinnersLosersIncomeDecileSubPage.tsx @@ -1,14 +1,14 @@ import type { Layout } from 'plotly.js'; import Plot from 'react-plotly.js'; -import { useSelector } from 'react-redux'; import { Stack, Text } from '@mantine/core'; import { useMediaQuery, useViewportSize } from '@mantine/hooks'; import type { SocietyWideReportOutput } from '@/api/societyWideCalculation'; import { ChartContainer } from '@/components/ChartContainer'; +import { CURRENT_YEAR } from '@/constants'; import { colors } from '@/designTokens/colors'; import { spacing } from '@/designTokens/spacing'; import { useCurrentCountry } from '@/hooks/useCurrentCountry'; -import type { RootState } from '@/store'; +import { useRegionsList } from '@/hooks/useStaticMetadata'; import { DEFAULT_CHART_CONFIG, DEFAULT_CHART_LAYOUT, @@ -58,7 +58,8 @@ const LEGEND_TEXT_MAP: Record = { export default function WinnersLosersIncomeDecileSubPage({ output }: Props) { const mobile = useMediaQuery('(max-width: 768px)'); const countryId = useCurrentCountry(); - const metadata = useSelector((state: RootState) => state.metadata); + const currentYear = parseInt(CURRENT_YEAR, 10); + const regions = useRegionsList(countryId, currentYear); const { height: viewportHeight } = useViewportSize(); const chartHeight = getClampedChartHeight(viewportHeight, mobile); @@ -109,7 +110,7 @@ export default function WinnersLosersIncomeDecileSubPage({ output }: Props) { const totalAheadTerm = percent(totalAhead); const totalBehindTerm = percent(totalBehind); const objectTerm = 'the net income'; - const region = regionName(metadata); + const region = regionName(regions); const regionPhrase = region ? ` in ${region}` : ''; if (totalAhead > 0 && totalBehind > 0) { diff --git a/app/src/pages/report-output/distributional-impact/WinnersLosersWealthDecileSubPage.tsx b/app/src/pages/report-output/distributional-impact/WinnersLosersWealthDecileSubPage.tsx index 7be8a7b12..eeb1ccdbb 100644 --- a/app/src/pages/report-output/distributional-impact/WinnersLosersWealthDecileSubPage.tsx +++ b/app/src/pages/report-output/distributional-impact/WinnersLosersWealthDecileSubPage.tsx @@ -1,14 +1,14 @@ import type { Layout } from 'plotly.js'; import Plot from 'react-plotly.js'; -import { useSelector } from 'react-redux'; import { Stack, Text } from '@mantine/core'; import { useMediaQuery, useViewportSize } from '@mantine/hooks'; import type { SocietyWideReportOutput } from '@/api/societyWideCalculation'; import { ChartContainer } from '@/components/ChartContainer'; +import { CURRENT_YEAR } from '@/constants'; import { colors } from '@/designTokens/colors'; import { spacing } from '@/designTokens/spacing'; import { useCurrentCountry } from '@/hooks/useCurrentCountry'; -import type { RootState } from '@/store'; +import { useRegionsList } from '@/hooks/useStaticMetadata'; import { DEFAULT_CHART_CONFIG, DEFAULT_CHART_LAYOUT, @@ -58,7 +58,8 @@ const LEGEND_TEXT_MAP: Record = { export default function WinnersLosersWealthDecileSubPage({ output }: Props) { const mobile = useMediaQuery('(max-width: 768px)'); const countryId = useCurrentCountry(); - const metadata = useSelector((state: RootState) => state.metadata); + const currentYear = parseInt(CURRENT_YEAR, 10); + const regions = useRegionsList(countryId, currentYear); const { height: viewportHeight } = useViewportSize(); const chartHeight = getClampedChartHeight(viewportHeight, mobile); @@ -117,7 +118,7 @@ export default function WinnersLosersWealthDecileSubPage({ output }: Props) { const totalAheadTerm = percent(totalAhead); const totalBehindTerm = percent(totalBehind); const objectTerm = 'the net income'; - const region = regionName(metadata); + const region = regionName(regions); const regionPhrase = region ? ` in ${region}` : ''; if (totalAhead > 0 && totalBehind > 0) { diff --git a/app/src/pages/report-output/earnings-variation/BaselineAndReformChart.tsx b/app/src/pages/report-output/earnings-variation/BaselineAndReformChart.tsx index df8e4736c..f7ddf7312 100644 --- a/app/src/pages/report-output/earnings-variation/BaselineAndReformChart.tsx +++ b/app/src/pages/report-output/earnings-variation/BaselineAndReformChart.tsx @@ -1,4 +1,4 @@ -import { useState } from 'react'; +import { useMemo, useState } from 'react'; import type { Layout } from 'plotly.js'; import Plot from 'react-plotly.js'; import { useSelector } from 'react-redux'; @@ -7,6 +7,7 @@ import { useMediaQuery, useViewportSize } from '@mantine/hooks'; import { colors } from '@/designTokens'; import { spacing } from '@/designTokens/spacing'; import { useCurrentCountry } from '@/hooks/useCurrentCountry'; +import { useEntities } from '@/hooks/useStaticMetadata'; import type { RootState } from '@/store'; import type { Household } from '@/types/ingredients/Household'; import { @@ -15,7 +16,7 @@ import { getClampedChartHeight, } from '@/utils/chartUtils'; import { currencySymbol, localeCode } from '@/utils/formatters'; -import { getValueFromHousehold } from '@/utils/householdValues'; +import { getValueFromHousehold, HouseholdMetadataContext } from '@/utils/householdValues'; interface Props { baseline: Household; @@ -46,10 +47,17 @@ export default function BaselineAndReformChart({ const mobile = useMediaQuery('(max-width: 768px)'); const { height: viewportHeight } = useViewportSize(); const countryId = useCurrentCountry(); - const metadata = useSelector((state: RootState) => state.metadata); + const reduxMetadata = useSelector((state: RootState) => state.metadata); + const entities = useEntities(countryId); const chartHeight = getClampedChartHeight(viewportHeight, mobile); - const variable = metadata.variables[variableName]; + // Build HouseholdMetadataContext + const metadataContext: HouseholdMetadataContext = useMemo( + () => ({ variables: reduxMetadata.variables, entities }), + [reduxMetadata.variables, entities] + ); + + const variable = reduxMetadata.variables[variableName]; if (!variable) { return
Variable not found
; } @@ -60,9 +68,9 @@ export default function BaselineAndReformChart({ year, null, baselineVariation, - metadata + metadataContext ); - const reformYValues = getValueFromHousehold(variableName, year, null, reformVariation, metadata); + const reformYValues = getValueFromHousehold(variableName, year, null, reformVariation, metadataContext); if (!Array.isArray(baselineYValues) || !Array.isArray(reformYValues)) { return
No variation data available
; @@ -74,7 +82,7 @@ export default function BaselineAndReformChart({ year, null, baseline, - metadata + metadataContext ) as number; // X-axis is earnings range diff --git a/app/src/pages/report-output/earnings-variation/BaselineOnlyChart.tsx b/app/src/pages/report-output/earnings-variation/BaselineOnlyChart.tsx index 0e640be83..79d23a97b 100644 --- a/app/src/pages/report-output/earnings-variation/BaselineOnlyChart.tsx +++ b/app/src/pages/report-output/earnings-variation/BaselineOnlyChart.tsx @@ -1,9 +1,11 @@ +import { useMemo } from 'react'; import type { Layout } from 'plotly.js'; import Plot from 'react-plotly.js'; import { useSelector } from 'react-redux'; import { useMediaQuery, useViewportSize } from '@mantine/hooks'; import { colors } from '@/designTokens'; import { useCurrentCountry } from '@/hooks/useCurrentCountry'; +import { useEntities } from '@/hooks/useStaticMetadata'; import type { RootState } from '@/store'; import type { Household } from '@/types/ingredients/Household'; import { @@ -12,7 +14,7 @@ import { getClampedChartHeight, } from '@/utils/chartUtils'; import { currencySymbol, localeCode } from '@/utils/formatters'; -import { getValueFromHousehold } from '@/utils/householdValues'; +import { getValueFromHousehold, HouseholdMetadataContext } from '@/utils/householdValues'; interface Props { baseline: Household; @@ -34,16 +36,23 @@ export default function BaselineOnlyChart({ const mobile = useMediaQuery('(max-width: 768px)'); const { height: viewportHeight } = useViewportSize(); const countryId = useCurrentCountry(); - const metadata = useSelector((state: RootState) => state.metadata); + const reduxMetadata = useSelector((state: RootState) => state.metadata); + const entities = useEntities(countryId); const chartHeight = getClampedChartHeight(viewportHeight, mobile); - const variable = metadata.variables[variableName]; + // Build HouseholdMetadataContext + const metadataContext: HouseholdMetadataContext = useMemo( + () => ({ variables: reduxMetadata.variables, entities }), + [reduxMetadata.variables, entities] + ); + + const variable = reduxMetadata.variables[variableName]; if (!variable) { return
Variable not found
; } // Get variation data (401-point array) - const yValues = getValueFromHousehold(variableName, year, null, baselineVariation, metadata); + const yValues = getValueFromHousehold(variableName, year, null, baselineVariation, metadataContext); if (!Array.isArray(yValues)) { return
No variation data available
; @@ -55,7 +64,7 @@ export default function BaselineOnlyChart({ year, null, baseline, - metadata + metadataContext ) as number; // Get current earnings to show marker position @@ -64,7 +73,7 @@ export default function BaselineOnlyChart({ year, null, baseline, - metadata + metadataContext ) as number; // X-axis is earnings range diff --git a/app/src/pages/report-output/earnings-variation/EarningsVariationSubPage.tsx b/app/src/pages/report-output/earnings-variation/EarningsVariationSubPage.tsx index 80ab49c8f..3b0b67666 100644 --- a/app/src/pages/report-output/earnings-variation/EarningsVariationSubPage.tsx +++ b/app/src/pages/report-output/earnings-variation/EarningsVariationSubPage.tsx @@ -1,4 +1,4 @@ -import { useState } from 'react'; +import { useMemo, useState } from 'react'; import { useSelector } from 'react-redux'; import { Group, Select, Stack, Text } from '@mantine/core'; import { PolicyAdapter } from '@/adapters/PolicyAdapter'; @@ -6,12 +6,13 @@ import { spacing } from '@/designTokens'; import { useCurrentCountry } from '@/hooks/useCurrentCountry'; import { useHouseholdVariation } from '@/hooks/useHouseholdVariation'; import { useReportYear } from '@/hooks/useReportYear'; +import { useEntities } from '@/hooks/useStaticMetadata'; import type { RootState } from '@/store'; import type { Household } from '@/types/ingredients/Household'; import type { Policy } from '@/types/ingredients/Policy'; import type { Simulation } from '@/types/ingredients/Simulation'; import type { UserPolicy } from '@/types/ingredients/UserPolicy'; -import { getValueFromHousehold } from '@/utils/householdValues'; +import { getValueFromHousehold, HouseholdMetadataContext } from '@/utils/householdValues'; import LoadingPage from '../LoadingPage'; import BaselineAndReformChart from './BaselineAndReformChart'; import BaselineOnlyChart from './BaselineOnlyChart'; @@ -41,7 +42,14 @@ export default function EarningsVariationSubPage({ const [selectedVariable, setSelectedVariable] = useState('household_net_income'); const countryId = useCurrentCountry(); const reportYear = useReportYear(); - const metadata = useSelector((state: RootState) => state.metadata); + const reduxMetadata = useSelector((state: RootState) => state.metadata); + const entities = useEntities(countryId); + + // Build HouseholdMetadataContext + const metadataContext: HouseholdMetadataContext = useMemo( + () => ({ variables: reduxMetadata.variables, entities }), + [reduxMetadata.variables, entities] + ); // Early return if no report year available (shouldn't happen in report output context) if (!reportYear) { @@ -132,21 +140,21 @@ export default function EarningsVariationSubPage({ } // Build variable options (only non-input variables with array values) - const variableOptions = Object.keys(metadata.variables) + const variableOptions = Object.keys(reduxMetadata.variables) .filter((varName) => { - const variable = metadata.variables[varName]; + const variable = reduxMetadata.variables[varName]; // Exclude input variables and marginal_tax_rate (has its own page) if (!variable || variable.isInputVariable || varName === 'marginal_tax_rate') { return false; } // Check if baseline variation has array values for this variable - const value = getValueFromHousehold(varName, reportYear, null, baselineVariation, metadata); + const value = getValueFromHousehold(varName, reportYear, null, baselineVariation, metadataContext); return Array.isArray(value); }) .map((varName) => ({ value: varName, - label: metadata.variables[varName]?.label || varName, + label: reduxMetadata.variables[varName]?.label || varName, })); return ( diff --git a/app/src/pages/report-output/inequality-impact/InequalityImpactSubPage.tsx b/app/src/pages/report-output/inequality-impact/InequalityImpactSubPage.tsx index e753574d5..9966a1023 100644 --- a/app/src/pages/report-output/inequality-impact/InequalityImpactSubPage.tsx +++ b/app/src/pages/report-output/inequality-impact/InequalityImpactSubPage.tsx @@ -1,14 +1,14 @@ import type { Layout } from 'plotly.js'; import Plot from 'react-plotly.js'; -import { useSelector } from 'react-redux'; import { Stack, Text } from '@mantine/core'; import { useMediaQuery, useViewportSize } from '@mantine/hooks'; import type { SocietyWideReportOutput } from '@/api/societyWideCalculation'; import { ChartContainer } from '@/components/ChartContainer'; +import { CURRENT_YEAR } from '@/constants'; import { colors } from '@/designTokens/colors'; import { spacing } from '@/designTokens/spacing'; import { useCurrentCountry } from '@/hooks/useCurrentCountry'; -import type { RootState } from '@/store'; +import { useRegionsList } from '@/hooks/useStaticMetadata'; import { relativeChangeMessage } from '@/utils/chartMessages'; import { DEFAULT_CHART_CONFIG, downloadCsv, getClampedChartHeight } from '@/utils/chartUtils'; import { formatPercent, localeCode, precision } from '@/utils/formatters'; @@ -21,7 +21,8 @@ interface Props { export default function InequalityImpactSubPage({ output }: Props) { const mobile = useMediaQuery('(max-width: 768px)'); const countryId = useCurrentCountry(); - const metadata = useSelector((state: RootState) => state.metadata); + const currentYear = parseInt(CURRENT_YEAR, 10); + const regions = useRegionsList(countryId, currentYear); const { height: viewportHeight } = useViewportSize(); const chartHeight = getClampedChartHeight(viewportHeight, mobile); @@ -89,7 +90,7 @@ export default function InequalityImpactSubPage({ output }: Props) { : metricChanges[0] < 0 && metricChanges[1] < 0 && metricChanges[2] < 0 ? 'decrease' : 'have an ambiguous effect on'; - const region = regionName(metadata); + const region = regionName(regions); const regionPhrase = region ? ` in ${region}` : ''; return `This reform would ${signTerm} income inequality${regionPhrase}`; }; diff --git a/app/src/pages/report-output/marginal-tax-rates/MarginalTaxRatesSubPage.tsx b/app/src/pages/report-output/marginal-tax-rates/MarginalTaxRatesSubPage.tsx index d99f0720a..ceb08b02b 100644 --- a/app/src/pages/report-output/marginal-tax-rates/MarginalTaxRatesSubPage.tsx +++ b/app/src/pages/report-output/marginal-tax-rates/MarginalTaxRatesSubPage.tsx @@ -1,4 +1,4 @@ -import { useState } from 'react'; +import { useMemo, useState } from 'react'; import type { Layout } from 'plotly.js'; import Plot from 'react-plotly.js'; import { useSelector } from 'react-redux'; @@ -9,6 +9,7 @@ import { colors, spacing } from '@/designTokens'; import { useCurrentCountry } from '@/hooks/useCurrentCountry'; import { useHouseholdVariation } from '@/hooks/useHouseholdVariation'; import { useReportYear } from '@/hooks/useReportYear'; +import { useEntities } from '@/hooks/useStaticMetadata'; import type { RootState } from '@/store'; import type { Household } from '@/types/ingredients/Household'; import type { Policy } from '@/types/ingredients/Policy'; @@ -20,7 +21,7 @@ import { getClampedChartHeight, } from '@/utils/chartUtils'; import { currencySymbol, localeCode } from '@/utils/formatters'; -import { getValueFromHousehold } from '@/utils/householdValues'; +import { getValueFromHousehold, HouseholdMetadataContext } from '@/utils/householdValues'; import LoadingPage from '../LoadingPage'; interface Props { @@ -52,9 +53,16 @@ export default function MarginalTaxRatesSubPage({ const { height: viewportHeight } = useViewportSize(); const countryId = useCurrentCountry(); const reportYear = useReportYear(); - const metadata = useSelector((state: RootState) => state.metadata); + const reduxMetadata = useSelector((state: RootState) => state.metadata); + const entities = useEntities(countryId); const chartHeight = getClampedChartHeight(viewportHeight, mobile); + // Build HouseholdMetadataContext + const metadataContext: HouseholdMetadataContext = useMemo( + () => ({ variables: reduxMetadata.variables, entities }), + [reduxMetadata.variables, entities] + ); + // Early return if no report year available (shouldn't happen in report output context) if (!reportYear) { return ( @@ -152,7 +160,7 @@ export default function MarginalTaxRatesSubPage({ reportYear, firstPersonName, baselineVariation, - metadata + metadataContext ); const reformMTR = @@ -162,7 +170,7 @@ export default function MarginalTaxRatesSubPage({ reportYear, firstPersonName, reformVariation, - metadata + metadataContext ) : null; @@ -188,7 +196,7 @@ export default function MarginalTaxRatesSubPage({ reportYear, firstPersonNameBaseline, baseline, - metadata + metadataContext ) as number; // Get current MTR (first person only) @@ -197,7 +205,7 @@ export default function MarginalTaxRatesSubPage({ reportYear, firstPersonNameBaseline, baseline, - metadata + metadataContext ) as number; // X-axis is earnings range diff --git a/app/src/pages/report-output/net-income/NetIncomeSubPage.tsx b/app/src/pages/report-output/net-income/NetIncomeSubPage.tsx index 31e7419c0..52fb9ffc0 100644 --- a/app/src/pages/report-output/net-income/NetIncomeSubPage.tsx +++ b/app/src/pages/report-output/net-income/NetIncomeSubPage.tsx @@ -1,11 +1,18 @@ +import { useMemo } from 'react'; import { useSelector } from 'react-redux'; import { Stack, Text, Title } from '@mantine/core'; import VariableArithmetic from '@/components/household/VariableArithmetic'; import { spacing } from '@/designTokens'; +import { useCurrentCountry } from '@/hooks/useCurrentCountry'; import { useReportYear } from '@/hooks/useReportYear'; +import { useEntities } from '@/hooks/useStaticMetadata'; import type { RootState } from '@/store'; import type { Household } from '@/types/ingredients/Household'; -import { formatVariableValue, getValueFromHousehold } from '@/utils/householdValues'; +import { + formatVariableValue, + getValueFromHousehold, + HouseholdMetadataContext, +} from '@/utils/householdValues'; interface Props { baseline: Household; @@ -18,11 +25,22 @@ interface Props { * Supports both single mode (baseline only) and comparison mode (baseline vs reform) */ export default function NetIncomeSubPage({ baseline, reform }: Props) { - const metadata = useSelector((state: RootState) => state.metadata); + const countryId = useCurrentCountry(); + const reduxMetadata = useSelector((state: RootState) => state.metadata); + const entities = useEntities(countryId); const reportYear = useReportYear(); + // Build HouseholdMetadataContext by combining Redux variables with static entities + const metadataContext: HouseholdMetadataContext = useMemo( + () => ({ + variables: reduxMetadata.variables, + entities, + }), + [reduxMetadata.variables, entities] + ); + // Check if we have the household_net_income variable - const netIncomeVariable = metadata.variables.household_net_income; + const netIncomeVariable = reduxMetadata.variables.household_net_income; if (!netIncomeVariable) { return ( @@ -37,11 +55,11 @@ export default function NetIncomeSubPage({ baseline, reform }: Props) { reportYear, null, baseline, - metadata + metadataContext ); const reformValue = reform - ? getValueFromHousehold('household_net_income', reportYear, null, reform, metadata) + ? getValueFromHousehold('household_net_income', reportYear, null, reform, metadataContext) : null; // Calculate comparison diff --git a/app/src/pages/report-output/poverty-impact/DeepPovertyImpactByAgeSubPage.tsx b/app/src/pages/report-output/poverty-impact/DeepPovertyImpactByAgeSubPage.tsx index 7204c46fa..7a7e07614 100644 --- a/app/src/pages/report-output/poverty-impact/DeepPovertyImpactByAgeSubPage.tsx +++ b/app/src/pages/report-output/poverty-impact/DeepPovertyImpactByAgeSubPage.tsx @@ -1,14 +1,14 @@ import type { Layout } from 'plotly.js'; import Plot from 'react-plotly.js'; -import { useSelector } from 'react-redux'; import { Stack, Text } from '@mantine/core'; import { useMediaQuery, useViewportSize } from '@mantine/hooks'; import type { SocietyWideReportOutput } from '@/api/societyWideCalculation'; import { ChartContainer } from '@/components/ChartContainer'; +import { CURRENT_YEAR } from '@/constants'; import { colors } from '@/designTokens/colors'; import { spacing } from '@/designTokens/spacing'; import { useCurrentCountry } from '@/hooks/useCurrentCountry'; -import type { RootState } from '@/store'; +import { useRegionsList } from '@/hooks/useStaticMetadata'; import { relativeChangeMessage } from '@/utils/chartMessages'; import { DEFAULT_CHART_CONFIG, downloadCsv, getClampedChartHeight } from '@/utils/chartUtils'; import { formatNumber, formatPercent, localeCode, precision } from '@/utils/formatters'; @@ -21,7 +21,8 @@ interface Props { export default function DeepPovertyImpactByAgeSubPage({ output }: Props) { const mobile = useMediaQuery('(max-width: 768px)'); const countryId = useCurrentCountry(); - const metadata = useSelector((state: RootState) => state.metadata); + const currentYear = parseInt(CURRENT_YEAR, 10); + const regions = useRegionsList(countryId, currentYear); const { height: viewportHeight } = useViewportSize(); const chartHeight = getClampedChartHeight(viewportHeight, mobile); @@ -86,7 +87,7 @@ export default function DeepPovertyImpactByAgeSubPage({ output }: Props) { }); const term2 = `${relTerm} (${absTerm}pp)`; const signTerm = relativeChange > 0 ? 'increase' : 'decrease'; - const region = regionName(metadata); + const region = regionName(regions); const regionPhrase = region ? ` in ${region}` : ''; if (absTerm === '0') { diff --git a/app/src/pages/report-output/poverty-impact/DeepPovertyImpactByGenderSubPage.tsx b/app/src/pages/report-output/poverty-impact/DeepPovertyImpactByGenderSubPage.tsx index 930cf3630..a6d591d7b 100644 --- a/app/src/pages/report-output/poverty-impact/DeepPovertyImpactByGenderSubPage.tsx +++ b/app/src/pages/report-output/poverty-impact/DeepPovertyImpactByGenderSubPage.tsx @@ -1,14 +1,14 @@ import type { Layout } from 'plotly.js'; import Plot from 'react-plotly.js'; -import { useSelector } from 'react-redux'; import { Stack, Text } from '@mantine/core'; import { useMediaQuery, useViewportSize } from '@mantine/hooks'; import type { SocietyWideReportOutput } from '@/api/societyWideCalculation'; import { ChartContainer } from '@/components/ChartContainer'; +import { CURRENT_YEAR } from '@/constants'; import { colors } from '@/designTokens/colors'; import { spacing } from '@/designTokens/spacing'; import { useCurrentCountry } from '@/hooks/useCurrentCountry'; -import type { RootState } from '@/store'; +import { useRegionsList } from '@/hooks/useStaticMetadata'; import { relativeChangeMessage } from '@/utils/chartMessages'; import { DEFAULT_CHART_CONFIG, downloadCsv, getClampedChartHeight } from '@/utils/chartUtils'; import { formatNumber, formatPercent, localeCode, precision } from '@/utils/formatters'; @@ -21,7 +21,8 @@ interface Props { export default function DeepPovertyImpactByGenderSubPage({ output }: Props) { const mobile = useMediaQuery('(max-width: 768px)'); const countryId = useCurrentCountry(); - const metadata = useSelector((state: RootState) => state.metadata); + const currentYear = parseInt(CURRENT_YEAR, 10); + const regions = useRegionsList(countryId, currentYear); const { height: viewportHeight } = useViewportSize(); const chartHeight = getClampedChartHeight(viewportHeight, mobile); @@ -88,7 +89,7 @@ export default function DeepPovertyImpactByGenderSubPage({ output }: Props) { }); const term2 = `${relTerm} (${absTerm}pp)`; const signTerm = relativeChange > 0 ? 'increase' : 'decrease'; - const region = regionName(metadata); + const region = regionName(regions); const regionPhrase = region ? ` in ${region}` : ''; if (absTerm === '0') { diff --git a/app/src/pages/report-output/poverty-impact/PovertyImpactByAgeSubPage.tsx b/app/src/pages/report-output/poverty-impact/PovertyImpactByAgeSubPage.tsx index b6e439c47..1a60b8367 100644 --- a/app/src/pages/report-output/poverty-impact/PovertyImpactByAgeSubPage.tsx +++ b/app/src/pages/report-output/poverty-impact/PovertyImpactByAgeSubPage.tsx @@ -1,14 +1,14 @@ import type { Layout } from 'plotly.js'; import Plot from 'react-plotly.js'; -import { useSelector } from 'react-redux'; import { Stack, Text } from '@mantine/core'; import { useMediaQuery, useViewportSize } from '@mantine/hooks'; import type { SocietyWideReportOutput } from '@/api/societyWideCalculation'; import { ChartContainer } from '@/components/ChartContainer'; +import { CURRENT_YEAR } from '@/constants'; import { colors } from '@/designTokens/colors'; import { spacing } from '@/designTokens/spacing'; import { useCurrentCountry } from '@/hooks/useCurrentCountry'; -import type { RootState } from '@/store'; +import { useRegionsList } from '@/hooks/useStaticMetadata'; import { relativeChangeMessage } from '@/utils/chartMessages'; import { DEFAULT_CHART_CONFIG, downloadCsv, getClampedChartHeight } from '@/utils/chartUtils'; import { formatNumber, formatPercent, localeCode, precision } from '@/utils/formatters'; @@ -21,7 +21,8 @@ interface Props { export default function PovertyImpactByAgeSubPage({ output }: Props) { const mobile = useMediaQuery('(max-width: 768px)'); const countryId = useCurrentCountry(); - const metadata = useSelector((state: RootState) => state.metadata); + const currentYear = parseInt(CURRENT_YEAR, 10); + const regions = useRegionsList(countryId, currentYear); const { height: viewportHeight } = useViewportSize(); const chartHeight = getClampedChartHeight(viewportHeight, mobile); @@ -85,7 +86,7 @@ export default function PovertyImpactByAgeSubPage({ output }: Props) { }); const term2 = `${relTerm} (${absTerm}pp)`; const signTerm = relativeChange > 0 ? 'increase' : 'decrease'; - const region = regionName(metadata); + const region = regionName(regions); const regionPhrase = region ? ` in ${region}` : ''; if (absTerm === '0') { diff --git a/app/src/pages/report-output/poverty-impact/PovertyImpactByGenderSubPage.tsx b/app/src/pages/report-output/poverty-impact/PovertyImpactByGenderSubPage.tsx index f7360f79f..d1336f599 100644 --- a/app/src/pages/report-output/poverty-impact/PovertyImpactByGenderSubPage.tsx +++ b/app/src/pages/report-output/poverty-impact/PovertyImpactByGenderSubPage.tsx @@ -1,14 +1,14 @@ import type { Layout } from 'plotly.js'; import Plot from 'react-plotly.js'; -import { useSelector } from 'react-redux'; import { Stack, Text } from '@mantine/core'; import { useMediaQuery, useViewportSize } from '@mantine/hooks'; import type { SocietyWideReportOutput } from '@/api/societyWideCalculation'; import { ChartContainer } from '@/components/ChartContainer'; +import { CURRENT_YEAR } from '@/constants'; import { colors } from '@/designTokens/colors'; import { spacing } from '@/designTokens/spacing'; import { useCurrentCountry } from '@/hooks/useCurrentCountry'; -import type { RootState } from '@/store'; +import { useRegionsList } from '@/hooks/useStaticMetadata'; import { relativeChangeMessage } from '@/utils/chartMessages'; import { DEFAULT_CHART_CONFIG, downloadCsv, getClampedChartHeight } from '@/utils/chartUtils'; import { formatNumber, formatPercent, localeCode, precision } from '@/utils/formatters'; @@ -21,7 +21,8 @@ interface Props { export default function PovertyImpactByGenderSubPage({ output }: Props) { const mobile = useMediaQuery('(max-width: 768px)'); const countryId = useCurrentCountry(); - const metadata = useSelector((state: RootState) => state.metadata); + const currentYear = parseInt(CURRENT_YEAR, 10); + const regions = useRegionsList(countryId, currentYear); const { height: viewportHeight } = useViewportSize(); const chartHeight = getClampedChartHeight(viewportHeight, mobile); @@ -88,7 +89,7 @@ export default function PovertyImpactByGenderSubPage({ output }: Props) { }); const term2 = `${relTerm} (${absTerm}pp)`; const signTerm = relativeChange > 0 ? 'increase' : 'decrease'; - const region = regionName(metadata); + const region = regionName(regions); const regionPhrase = region ? ` in ${region}` : ''; if (absTerm === '0') { diff --git a/app/src/pages/report-output/poverty-impact/PovertyImpactByRaceSubPage.tsx b/app/src/pages/report-output/poverty-impact/PovertyImpactByRaceSubPage.tsx index 2a3af9b0d..10302d8e9 100644 --- a/app/src/pages/report-output/poverty-impact/PovertyImpactByRaceSubPage.tsx +++ b/app/src/pages/report-output/poverty-impact/PovertyImpactByRaceSubPage.tsx @@ -1,14 +1,14 @@ import type { Layout } from 'plotly.js'; import Plot from 'react-plotly.js'; -import { useSelector } from 'react-redux'; import { Stack, Text } from '@mantine/core'; import { useMediaQuery, useViewportSize } from '@mantine/hooks'; import type { SocietyWideReportOutput } from '@/api/societyWideCalculation'; import { ChartContainer } from '@/components/ChartContainer'; +import { CURRENT_YEAR } from '@/constants'; import { colors } from '@/designTokens/colors'; import { spacing } from '@/designTokens/spacing'; import { useCurrentCountry } from '@/hooks/useCurrentCountry'; -import type { RootState } from '@/store'; +import { useRegionsList } from '@/hooks/useStaticMetadata'; import { relativeChangeMessage } from '@/utils/chartMessages'; import { DEFAULT_CHART_CONFIG, downloadCsv, getClampedChartHeight } from '@/utils/chartUtils'; import { formatNumber, formatPercent, localeCode, precision } from '@/utils/formatters'; @@ -21,7 +21,8 @@ interface Props { export default function PovertyImpactByRaceSubPage({ output }: Props) { const mobile = useMediaQuery('(max-width: 768px)'); const countryId = useCurrentCountry(); - const metadata = useSelector((state: RootState) => state.metadata); + const currentYear = parseInt(CURRENT_YEAR, 10); + const regions = useRegionsList(countryId, currentYear); const { height: viewportHeight } = useViewportSize(); const chartHeight = getClampedChartHeight(viewportHeight, mobile); @@ -86,7 +87,7 @@ export default function PovertyImpactByRaceSubPage({ output }: Props) { }); const term2 = `${relTerm} (${absTerm}pp)`; const signTerm = relativeChange > 0 ? 'increase' : 'decrease'; - const region = regionName(metadata); + const region = regionName(regions); const regionPhrase = region ? ` in ${region}` : ''; if (absTerm === '0') { diff --git a/app/src/pathways/population/PopulationPathwayWrapper.tsx b/app/src/pathways/population/PopulationPathwayWrapper.tsx index 4e167a0d0..586dbc938 100644 --- a/app/src/pathways/population/PopulationPathwayWrapper.tsx +++ b/app/src/pathways/population/PopulationPathwayWrapper.tsx @@ -13,6 +13,7 @@ import { CURRENT_YEAR } from '@/constants'; import { ReportYearProvider } from '@/contexts/ReportYearContext'; import { useCurrentCountry } from '@/hooks/useCurrentCountry'; import { usePathwayNavigation } from '@/hooks/usePathwayNavigation'; +import { useRegionsList } from '@/hooks/useStaticMetadata'; import { RootState } from '@/store'; import { Household } from '@/types/ingredients/Household'; import { StandalonePopulationViewMode } from '@/types/pathwayModes/PopulationViewMode'; @@ -40,6 +41,8 @@ export default function PopulationPathwayWrapper({ onComplete }: PopulationPathw // Get metadata for views const metadata = useSelector((state: RootState) => state.metadata); + const currentYear = parseInt(CURRENT_YEAR, 10); + const regionData = useRegionsList(countryId, currentYear); // ========== NAVIGATION ========== const { currentMode, navigateToMode, goBack, canGoBack } = usePathwayNavigation( @@ -76,7 +79,7 @@ export default function PopulationPathwayWrapper({ onComplete }: PopulationPathw currentView = ( navigate(`/${countryId}/households`)} @@ -118,7 +121,7 @@ export default function PopulationPathwayWrapper({ onComplete }: PopulationPathw currentView = ( diff --git a/app/src/pathways/report/ReportPathwayWrapper.tsx b/app/src/pathways/report/ReportPathwayWrapper.tsx index 46bb2eb2a..c104eae78 100644 --- a/app/src/pathways/report/ReportPathwayWrapper.tsx +++ b/app/src/pathways/report/ReportPathwayWrapper.tsx @@ -16,6 +16,7 @@ import { MOCK_USER_ID } from '@/constants'; import { ReportYearProvider } from '@/contexts/ReportYearContext'; import { useCreateReport } from '@/hooks/useCreateReport'; import { usePathwayNavigation } from '@/hooks/usePathwayNavigation'; +import { useCurrentLawId, useRegionsList } from '@/hooks/useStaticMetadata'; import { useUserGeographics } from '@/hooks/useUserGeographic'; import { useUserHouseholds } from '@/hooks/useUserHousehold'; import { useUserSimulations } from '@/hooks/useUserSimulations'; @@ -90,7 +91,9 @@ export default function ReportPathwayWrapper({ onComplete }: ReportPathwayWrappe // Get metadata for population views const metadata = useSelector((state: RootState) => state.metadata); - const currentLawId = useSelector((state: RootState) => state.metadata.currentLawId); + const currentLawId = useCurrentLawId(countryId); + const reportYear = parseInt(reportState.year || '2025', 10); + const regionData = useRegionsList(countryId, reportYear); // ========== NAVIGATION ========== const { currentMode, navigateToMode, goBack, canGoBack } = usePathwayNavigation( @@ -491,7 +494,7 @@ export default function ReportPathwayWrapper({ onComplete }: ReportPathwayWrappe currentView = ( navigate(`/${countryId}/reports`)} @@ -535,7 +538,7 @@ export default function ReportPathwayWrapper({ onComplete }: ReportPathwayWrappe currentView = ( diff --git a/app/src/pathways/report/components/PolicyParameterSelectorValueSetter.tsx b/app/src/pathways/report/components/PolicyParameterSelectorValueSetter.tsx index 78da5424c..42bc4e62c 100644 --- a/app/src/pathways/report/components/PolicyParameterSelectorValueSetter.tsx +++ b/app/src/pathways/report/components/PolicyParameterSelectorValueSetter.tsx @@ -5,9 +5,9 @@ */ import { useState } from 'react'; -import { useSelector } from 'react-redux'; import { Button, Container, Divider, Group, Stack, Text } from '@mantine/core'; -import { getDateRange } from '@/libs/metadataUtils'; +import { getDateRange } from '@/data/static'; +import { useCurrentCountry } from '@/hooks/useCurrentCountry'; import { ParameterMetadata } from '@/types/metadata/parameterMetadata'; import { PolicyStateProps } from '@/types/pathwayState'; import { getParameterByName } from '@/types/subIngredients/parameter'; @@ -25,10 +25,11 @@ export default function PolicyParameterSelectorValueSetter({ policy, onPolicyUpdate, }: PolicyParameterSelectorValueSetterProps) { + const countryId = useCurrentCountry(); const [mode, setMode] = useState(ValueSetterMode.DEFAULT); - // Get date ranges from metadata using utility selector - const { minDate, maxDate } = useSelector(getDateRange); + // Get date ranges from static metadata + const { minDate, maxDate } = getDateRange(countryId); const [intervals, setIntervals] = useState([]); diff --git a/app/src/pathways/report/components/valueSetters/MultiYearValueSelector.tsx b/app/src/pathways/report/components/valueSetters/MultiYearValueSelector.tsx index 3ea2af81b..1df82f963 100644 --- a/app/src/pathways/report/components/valueSetters/MultiYearValueSelector.tsx +++ b/app/src/pathways/report/components/valueSetters/MultiYearValueSelector.tsx @@ -1,8 +1,7 @@ import { useEffect, useMemo, useState } from 'react'; -import { useSelector } from 'react-redux'; import { Box, Group, SimpleGrid, Stack, Text } from '@mantine/core'; -import { getTaxYears } from '@/libs/metadataUtils'; -import { RootState } from '@/store'; +import { getTaxYears } from '@/data/static'; +import { useCurrentCountry } from '@/hooks/useCurrentCountry'; import { ValueInterval } from '@/types/subIngredients/valueInterval'; import { getDefaultValueForParam } from './getDefaultValueForParam'; import { ValueInputBox } from './ValueInputBox'; @@ -11,9 +10,9 @@ import { ValueSetterProps } from './ValueSetterProps'; export function MultiYearValueSelector(props: ValueSetterProps) { const { param, policy, setIntervals } = props; - // Get available years from metadata - const availableYears = useSelector(getTaxYears); - const countryId = useSelector((state: RootState) => state.metadata.currentCountry); + // Get available years from static metadata + const countryId = useCurrentCountry(); + const availableYears = getTaxYears(countryId); // Country-specific max years configuration const MAX_YEARS_BY_COUNTRY: Record = { diff --git a/app/src/pathways/report/views/ReportLabelView.tsx b/app/src/pathways/report/views/ReportLabelView.tsx index 5ba101391..1876757ca 100644 --- a/app/src/pathways/report/views/ReportLabelView.tsx +++ b/app/src/pathways/report/views/ReportLabelView.tsx @@ -1,10 +1,9 @@ import { useState } from 'react'; -import { useSelector } from 'react-redux'; import { Select, TextInput } from '@mantine/core'; import PathwayView from '@/components/common/PathwayView'; import { CURRENT_YEAR } from '@/constants'; +import { getTaxYears } from '@/data/static'; import { useCurrentCountry } from '@/hooks/useCurrentCountry'; -import { getTaxYears } from '@/libs/metadataUtils'; interface ReportLabelViewProps { label: string | null; @@ -29,8 +28,8 @@ export default function ReportLabelView({ const [localLabel, setLocalLabel] = useState(label || ''); const [localYear, setLocalYear] = useState(year || CURRENT_YEAR); - // Get available years from metadata - const availableYears = useSelector(getTaxYears); + // Get available years from static metadata + const availableYears = getTaxYears(countryId); // Use British spelling for UK const initializeText = countryId === 'uk' ? 'Initialise' : 'Initialize'; diff --git a/app/src/pathways/report/views/policy/PolicyParameterSelectorView.tsx b/app/src/pathways/report/views/policy/PolicyParameterSelectorView.tsx index 67d301e0c..3646a540f 100644 --- a/app/src/pathways/report/views/policy/PolicyParameterSelectorView.tsx +++ b/app/src/pathways/report/views/policy/PolicyParameterSelectorView.tsx @@ -37,7 +37,7 @@ export default function PolicyParameterSelectorView({ const [mobileOpened, { toggle: toggleMobile }] = useDisclosure(); // Get metadata from Redux state - const { parameterTree, parameters, loading, error } = useSelector( + const { parameterTree, parameters, coreLoading, coreError } = useSelector( (state: RootState) => state.metadata ); @@ -45,10 +45,10 @@ export default function PolicyParameterSelectorView({ const modificationCount = countPolicyModifications(policy); // Show error if metadata failed to load - if (error) { + if (coreError) { return (
- Error loading parameters: {error} + Error loading parameters: {coreError} Please try refreshing the page.
); @@ -110,7 +110,7 @@ export default function PolicyParameterSelectorView({ - {loading || !parameterTree ? ( + {coreLoading || !parameterTree ? (
Loading parameters...
) : ( @@ -118,7 +118,7 @@ export default function PolicyParameterSelectorView({ - {loading || !parameterTree ? ( + {coreLoading || !parameterTree ? ( ) : selectedLeafParam ? ( void; onBack?: () => void; } export default function GeographicConfirmationView({ population, - metadata, + regions, onSubmitSuccess, onBack, }: GeographicConfirmationViewProps) { @@ -87,8 +88,8 @@ export default function GeographicConfirmationView({ // Subnational const regionCode = population.geography.geographyId; - const regionLabel = getRegionLabel(regionCode, metadata); - const regionTypeName = getRegionTypeLabel(geographyCountryId, regionCode, metadata); + const regionLabel = getRegionLabel(regionCode, regions); + const regionTypeName = getRegionTypeLabel(geographyCountryId, regionCode, regions); return ( diff --git a/app/src/pathways/report/views/population/HouseholdBuilderView.tsx b/app/src/pathways/report/views/population/HouseholdBuilderView.tsx index f6b9df9cb..b3b172487 100644 --- a/app/src/pathways/report/views/population/HouseholdBuilderView.tsx +++ b/app/src/pathways/report/views/population/HouseholdBuilderView.tsx @@ -11,8 +11,8 @@ import { HouseholdAdapter } from '@/adapters/HouseholdAdapter'; import PathwayView from '@/components/common/PathwayView'; import HouseholdBuilderForm from '@/components/household/HouseholdBuilderForm'; import { useCreateHousehold } from '@/hooks/useCreateHousehold'; +import { useBasicInputFields } from '@/hooks/useBasicInputFields'; import { useReportYear } from '@/hooks/useReportYear'; -import { getBasicInputFields } from '@/libs/metadataUtils'; import { RootState } from '@/store'; import { Household } from '@/types/ingredients/Household'; import { PopulationStateProps } from '@/types/pathwayState'; @@ -36,9 +36,9 @@ export default function HouseholdBuilderView({ const reportYear = useReportYear(); // Get metadata-driven options - const basicInputFields = useSelector(getBasicInputFields); + const basicInputFields = useBasicInputFields(countryId); const metadata = useSelector((state: RootState) => state.metadata); - const { loading, error } = metadata; + const { coreLoading: loading, coreError: error } = metadata; // Get all basic non-person fields dynamically (country-agnostic) // This handles US entities (tax_unit, spm_unit, etc.) and UK entities (benunit) automatically diff --git a/app/src/pathways/report/views/population/PopulationExistingView.tsx b/app/src/pathways/report/views/population/PopulationExistingView.tsx index 4047630ec..84eeefda2 100644 --- a/app/src/pathways/report/views/population/PopulationExistingView.tsx +++ b/app/src/pathways/report/views/population/PopulationExistingView.tsx @@ -5,11 +5,12 @@ */ import { useState } from 'react'; -import { useSelector } from 'react-redux'; import { Text } from '@mantine/core'; import { HouseholdAdapter } from '@/adapters'; import PathwayView from '@/components/common/PathwayView'; -import { MOCK_USER_ID } from '@/constants'; +import { CURRENT_YEAR, MOCK_USER_ID } from '@/constants'; +import { useCurrentCountry } from '@/hooks/useCurrentCountry'; +import { useRegionsList } from '@/hooks/useStaticMetadata'; import { isGeographicMetadataWithAssociation, UserGeographicMetadataWithAssociation, @@ -20,7 +21,6 @@ import { UserHouseholdMetadataWithAssociation, useUserHouseholds, } from '@/hooks/useUserHousehold'; -import { RootState } from '@/store'; import { Geography } from '@/types/ingredients/Geography'; import { Household } from '@/types/ingredients/Household'; import { getCountryLabel, getRegionLabel } from '@/utils/geographyUtils'; @@ -43,7 +43,9 @@ export default function PopulationExistingView({ onCancel, }: PopulationExistingViewProps) { const userId = MOCK_USER_ID.toString(); - const metadata = useSelector((state: RootState) => state.metadata); + const countryId = useCurrentCountry(); + const currentYear = parseInt(CURRENT_YEAR, 10); + const regions = useRegionsList(countryId, currentYear); // Fetch household populations const { @@ -246,9 +248,9 @@ export default function PopulationExistingView({ return getCountryLabel(geography.countryId); } - // For subnational, look up in metadata + // For subnational, look up in regions if (geography.scope === 'subnational') { - return getRegionLabel(geography.geographyId, metadata); + return getRegionLabel(geography.geographyId, regions); } return geography.name || geography.geographyId; }; diff --git a/app/src/pathways/simulation/SimulationPathwayWrapper.tsx b/app/src/pathways/simulation/SimulationPathwayWrapper.tsx index 0030d0ee6..5295229dd 100644 --- a/app/src/pathways/simulation/SimulationPathwayWrapper.tsx +++ b/app/src/pathways/simulation/SimulationPathwayWrapper.tsx @@ -9,9 +9,10 @@ import { useCallback, useState } from 'react'; import { useSelector } from 'react-redux'; import { useNavigate } from 'react-router-dom'; import StandardLayout from '@/components/StandardLayout'; -import { MOCK_USER_ID } from '@/constants'; +import { CURRENT_YEAR, MOCK_USER_ID } from '@/constants'; import { useCurrentCountry } from '@/hooks/useCurrentCountry'; import { usePathwayNavigation } from '@/hooks/usePathwayNavigation'; +import { useCurrentLawId, useRegionsList } from '@/hooks/useStaticMetadata'; import { useUserGeographics } from '@/hooks/useUserGeographic'; import { useUserHouseholds } from '@/hooks/useUserHousehold'; import { useUserPolicies } from '@/hooks/useUserPolicy'; @@ -62,7 +63,9 @@ export default function SimulationPathwayWrapper({ onComplete }: SimulationPathw // Get metadata for population views const metadata = useSelector((state: RootState) => state.metadata); - const currentLawId = useSelector((state: RootState) => state.metadata.currentLawId); + const currentLawId = useCurrentLawId(countryId); + const currentYear = parseInt(CURRENT_YEAR, 10); + const regionData = useRegionsList(countryId, currentYear); // ========== NAVIGATION ========== const { currentMode, navigateToMode, goBack, canGoBack } = usePathwayNavigation( @@ -285,7 +288,7 @@ export default function SimulationPathwayWrapper({ onComplete }: SimulationPathw currentView = ( navigate(`/${countryId}/simulations`)} @@ -327,7 +330,7 @@ export default function SimulationPathwayWrapper({ onComplete }: SimulationPathw currentView = ( diff --git a/app/src/reducers/metadataReducer.ts b/app/src/reducers/metadataReducer.ts index 987059d34..bb582c9ab 100644 --- a/app/src/reducers/metadataReducer.ts +++ b/app/src/reducers/metadataReducer.ts @@ -1,14 +1,15 @@ import { createAsyncThunk, createSlice, PayloadAction } from '@reduxjs/toolkit'; -import { CURRENT_YEAR } from '@/constants'; -import { getStaticData } from '@/data/static'; -import { resolveRegions } from '@/data/static/regions'; import { buildParameterTree } from '@/libs/buildParameterTree'; import { loadCoreMetadata, loadParameters } from '@/storage'; import { MetadataState } from '@/types/metadata'; +/** + * Initial state for API-driven metadata + * + * Static metadata (entities, basicInputs, timePeriods, regions, modelledPolicies, currentLawId) + * is no longer stored in Redux. Access it via hooks from @/hooks/useStaticMetadata. + */ const initialState: MetadataState = { - loading: false, - error: null, currentCountry: null, // Tiered loading states @@ -20,14 +21,10 @@ const initialState: MetadataState = { parametersError: null, progress: 0, + // API-driven data variables: {}, parameters: {}, - entities: {}, - variableModules: {}, - economyOptions: { region: [], time_period: [], datasets: [] }, - currentLawId: 0, - basicInputs: [], - modelledPolicies: { core: {}, filtered: {} }, + datasets: [], version: null, parameterTree: null, }; @@ -80,18 +77,13 @@ const metadataSlice = createSlice({ // Optionally clear existing metadata when country changes // This prevents showing stale data from previous country if (state.version !== null || state.coreLoaded) { - // Clear metadata and reset V2 loading states + // Clear API-driven metadata and reset loading states state.variables = {}; state.parameters = {}; - state.entities = {}; - state.variableModules = {}; - state.economyOptions = { region: [], time_period: [], datasets: [] }; - state.currentLawId = 0; - state.basicInputs = []; - state.modelledPolicies = { core: {}, filtered: {} }; + state.datasets = []; state.version = null; state.parameterTree = null; - // Reset V2 states + // Reset loading states state.coreLoaded = false; state.coreLoading = false; state.coreError = null; @@ -127,28 +119,16 @@ const metadataSlice = createSlice({ } state.variables = variablesRecord; - // Transform V2 datasets to economyOptions.datasets format - state.economyOptions.datasets = data.datasets.map((d, i) => ({ + // Transform V2 datasets + state.datasets = data.datasets.map((d, i) => ({ name: d.name, label: d.name, title: d.description || d.name, default: i === 0, })); - // Load static data for the country - const staticData = getStaticData(countryId); - state.entities = staticData.entities; - state.basicInputs = staticData.basicInputs; - state.economyOptions.time_period = staticData.timePeriods; - state.modelledPolicies = staticData.modelledPolicies; - state.currentLawId = staticData.currentLawId; - - // Load regions with year-based versioning - // Uses CURRENT_YEAR as default; components needing different years - // should use the useRegions(countryId, year) hook directly - const currentYear = parseInt(CURRENT_YEAR, 10); - const { regions } = resolveRegions(countryId, currentYear); - state.economyOptions.region = regions; + // Static data (entities, basicInputs, timePeriods, regions, modelledPolicies, currentLawId) + // is no longer stored in Redux. Access it via hooks from @/hooks/useStaticMetadata. }) .addCase(fetchCoreMetadataThunk.rejected, (state, action) => { state.coreLoading = false; diff --git a/app/src/tests/fixtures/hooks/useMetadataMocks.ts b/app/src/tests/fixtures/hooks/useMetadataMocks.ts index 4661cd8f4..9cadeffe9 100644 --- a/app/src/tests/fixtures/hooks/useMetadataMocks.ts +++ b/app/src/tests/fixtures/hooks/useMetadataMocks.ts @@ -1,6 +1,5 @@ import { CURRENT_YEAR } from '@/constants'; import { MetadataState } from '@/types/metadata'; -import { UK_REGION_TYPES, US_REGION_TYPES } from '@/types/regionTypes'; import { DEFAULT_V2_LOADING_STATES } from '../reducers/metadataReducerMocks'; // Test country IDs @@ -11,36 +10,29 @@ export const TEST_COUNTRY_CA = 'ca'; // Test error message export const TEST_ERROR_MESSAGE = 'Previous fetch failed'; -// Mock metadata states +// Mock metadata states (only API-driven data, not static data) export const mockInitialMetadataState: MetadataState = { - loading: false, - error: null, currentCountry: null, ...DEFAULT_V2_LOADING_STATES, progress: 0, variables: {}, parameters: {}, - entities: {}, - variableModules: {}, - economyOptions: { region: [], time_period: [], datasets: [] }, - currentLawId: 0, - basicInputs: [], - modelledPolicies: { core: {}, filtered: {} }, + datasets: [], version: null, parameterTree: null, }; export const mockLoadingMetadataState: MetadataState = { ...mockInitialMetadataState, - loading: true, + coreLoading: true, currentCountry: TEST_COUNTRY_US, }; export const mockLoadedMetadataState: MetadataState = { - loading: false, - error: null, currentCountry: TEST_COUNTRY_US, ...DEFAULT_V2_LOADING_STATES, + coreLoaded: true, + parametersLoaded: true, progress: 100, variables: { income: { label: 'Income', unit: 'currency-USD' }, @@ -49,30 +41,14 @@ export const mockLoadedMetadataState: MetadataState = { parameters: { tax_rate: { label: 'Tax Rate', values: { [CURRENT_YEAR]: 0.25 } }, }, - entities: { - person: { label: 'Person', plural: 'People' }, - }, - variableModules: { - person: { label: 'Person', description: 'Person variables' }, - }, - economyOptions: { - region: [{ name: 'us', label: 'United States', type: US_REGION_TYPES.NATIONAL }], - time_period: [{ name: parseInt(CURRENT_YEAR, 10), label: CURRENT_YEAR }], - datasets: [ - { - name: `cps_${CURRENT_YEAR}`, - label: `CPS ${CURRENT_YEAR}`, - title: `Current Population Survey ${CURRENT_YEAR}`, - default: true, - }, - ], - }, - currentLawId: 1, - basicInputs: ['income', 'age'], - modelledPolicies: { - core: { baseline: { id: 1, label: 'Current Law' } }, - filtered: {}, - }, + datasets: [ + { + name: `cps_${CURRENT_YEAR}`, + label: `CPS ${CURRENT_YEAR}`, + title: `Current Population Survey ${CURRENT_YEAR}`, + default: true, + }, + ], version: '1.0.0', parameterTree: { name: 'root', @@ -88,18 +64,14 @@ export const mockUKMetadataState: MetadataState = { variables: { income: { label: 'Income', unit: 'currency-GBP' }, }, - economyOptions: { - region: [{ name: 'uk', label: 'United Kingdom', type: UK_REGION_TYPES.NATIONAL }], - time_period: [{ name: parseInt(CURRENT_YEAR, 10), label: CURRENT_YEAR }], - datasets: [ - { - name: `frs_${CURRENT_YEAR}`, - label: `FRS ${CURRENT_YEAR}`, - title: `Family Resources Survey ${CURRENT_YEAR}`, - default: true, - }, - ], - }, + datasets: [ + { + name: `frs_${CURRENT_YEAR}`, + label: `FRS ${CURRENT_YEAR}`, + title: `Family Resources Survey ${CURRENT_YEAR}`, + default: true, + }, + ], version: '2.0.0', }; @@ -115,6 +87,6 @@ export const mockStateWithoutVersion: MetadataState = { export const mockErrorState: MetadataState = { ...mockInitialMetadataState, - error: TEST_ERROR_MESSAGE, + coreError: TEST_ERROR_MESSAGE, currentCountry: TEST_COUNTRY_US, }; diff --git a/app/src/tests/fixtures/hooks/useUserReportsMocks.ts b/app/src/tests/fixtures/hooks/useUserReportsMocks.ts index 15dbadc87..db71ed836 100644 --- a/app/src/tests/fixtures/hooks/useUserReportsMocks.ts +++ b/app/src/tests/fixtures/hooks/useUserReportsMocks.ts @@ -183,29 +183,16 @@ export const mockHouseholdMetadata: HouseholdMetadata = { label: 'Test Household', }; -// Mock Redux store initial state +// Mock Redux store initial state (only API-driven data) export const mockMetadataInitialState = { metadata: { currentCountry: TEST_COUNTRIES.US, - loading: false, - error: null, ...DEFAULT_V2_LOADING_STATES, + coreLoaded: true, progress: 100, variables: {}, parameters: {}, - entities: {}, - variableModules: {}, - economyOptions: { - region: [ - { name: 'state/ca', label: 'California', type: US_REGION_TYPES.STATE }, - { name: 'state/tx', label: 'Texas', type: US_REGION_TYPES.STATE }, - ], - time_period: [], - datasets: [], - }, - currentLawId: 0, - basicInputs: [], - modelledPolicies: { core: {}, filtered: {} }, + datasets: [], version: 'v1.0.0', parameterTree: null, } satisfies MetadataState, diff --git a/app/src/tests/fixtures/pages/constituency/constituencyComponentMocks.ts b/app/src/tests/fixtures/pages/constituency/constituencyComponentMocks.ts index bcd20325a..4b48a8e40 100644 --- a/app/src/tests/fixtures/pages/constituency/constituencyComponentMocks.ts +++ b/app/src/tests/fixtures/pages/constituency/constituencyComponentMocks.ts @@ -191,29 +191,16 @@ export const MOCK_UK_REPORT_OUTPUT_NO_CONSTITUENCY: ReportOutputSocietyWideUK = }; /** - * Mock metadata state + * Mock metadata state (only API-driven data) */ export const MOCK_METADATA: MetadataState = { currentCountry: 'uk', - loading: false, - error: null, ...DEFAULT_V2_LOADING_STATES, + coreLoaded: true, progress: 100, variables: {}, parameters: {}, - entities: {}, - variableModules: {}, - economyOptions: { - region: [], - time_period: [], - datasets: [], - }, - currentLawId: 1, - basicInputs: [], - modelledPolicies: { - core: {}, - filtered: {}, - }, + datasets: [], version: '1.0.0', parameterTree: null, }; diff --git a/app/src/tests/fixtures/reducers/metadataReducerMocks.ts b/app/src/tests/fixtures/reducers/metadataReducerMocks.ts index 63a2f0893..8cfe1914d 100644 --- a/app/src/tests/fixtures/reducers/metadataReducerMocks.ts +++ b/app/src/tests/fixtures/reducers/metadataReducerMocks.ts @@ -25,21 +25,14 @@ export const DEFAULT_V2_LOADING_STATES = { parametersError: null, } as const; -// Expected initial state +// Expected initial state (only contains API-driven data, not static data) export const EXPECTED_INITIAL_STATE: MetadataState = { - loading: false, - error: null, currentCountry: null, ...DEFAULT_V2_LOADING_STATES, progress: 0, variables: {}, parameters: {}, - entities: {}, - variableModules: {}, - economyOptions: { region: [], time_period: [], datasets: [] }, - currentLawId: 0, - basicInputs: [], - modelledPolicies: { core: {}, filtered: {} }, + datasets: [], version: null, parameterTree: null, }; @@ -188,21 +181,16 @@ export const createMockApiPayload = ( }, }); -// Mock state with data +// Mock state with data (only API-driven data) export const createMockStateWithData = (overrides?: Partial): MetadataState => ({ - loading: false, - error: null, currentCountry: TEST_COUNTRY_US, ...DEFAULT_V2_LOADING_STATES, + coreLoaded: true, + parametersLoaded: true, progress: 100, variables: MOCK_VARIABLES, parameters: MOCK_PARAMETERS, - entities: MOCK_ENTITIES, - variableModules: MOCK_VARIABLE_MODULES, - economyOptions: MOCK_ECONOMY_OPTIONS, - currentLawId: TEST_CURRENT_LAW_ID, - basicInputs: MOCK_BASIC_INPUTS, - modelledPolicies: MOCK_MODELLED_POLICIES, + datasets: MOCK_ECONOMY_OPTIONS.datasets, version: TEST_VERSION, parameterTree: MOCK_PARAMETER_TREE, ...overrides, @@ -211,13 +199,13 @@ export const createMockStateWithData = (overrides?: Partial): Met // Mock loading state export const MOCK_LOADING_STATE: MetadataState = { ...EXPECTED_INITIAL_STATE, - loading: true, + coreLoading: true, }; // Mock error state export const MOCK_ERROR_STATE: MetadataState = { ...EXPECTED_INITIAL_STATE, - error: TEST_ERROR_MESSAGE, + coreError: TEST_ERROR_MESSAGE, }; // Mock state after clearing @@ -226,24 +214,18 @@ export const createMockClearedState = (country: string | null): MetadataState => currentCountry: country, }); -// Expected state after successful fetch +// Expected state after successful fetch (only API-driven data) export const createExpectedFulfilledState = ( country: string, apiPayload: MetadataApiPayload ): MetadataState => ({ - loading: false, - error: null, currentCountry: country, ...DEFAULT_V2_LOADING_STATES, + coreLoaded: true, progress: 100, variables: apiPayload.result.variables, parameters: apiPayload.result.parameters, - entities: apiPayload.result.entities, - variableModules: apiPayload.result.variableModules, - economyOptions: apiPayload.result.economy_options, - currentLawId: apiPayload.result.current_law_id, - basicInputs: apiPayload.result.basicInputs, - modelledPolicies: apiPayload.result.modelled_policies, + datasets: apiPayload.result.economy_options.datasets, version: apiPayload.result.version, parameterTree: null, // Will be built by reducer }); @@ -253,12 +235,12 @@ export const expectStateToEqual = (actual: MetadataState, expected: MetadataStat expect(actual).toEqual(expected); }; -export const expectLoadingState = (state: MetadataState, isLoading: boolean) => { - expect(state.loading).toBe(isLoading); +export const expectCoreLoadingState = (state: MetadataState, isLoading: boolean) => { + expect(state.coreLoading).toBe(isLoading); }; -export const expectErrorState = (state: MetadataState, error: string | null) => { - expect(state.error).toBe(error); +export const expectCoreErrorState = (state: MetadataState, error: string | null) => { + expect(state.coreError).toBe(error); }; export const expectCurrentCountry = (state: MetadataState, country: string | null) => { @@ -281,12 +263,7 @@ export const expectParameterTree = (state: MetadataState, hasTree: boolean) => { export const expectEmptyMetadata = (state: MetadataState) => { expect(state.variables).toEqual({}); expect(state.parameters).toEqual({}); - expect(state.entities).toEqual({}); - expect(state.variableModules).toEqual({}); - expect(state.economyOptions).toEqual({ region: [], time_period: [], datasets: [] }); - expect(state.currentLawId).toBe(0); - expect(state.basicInputs).toEqual([]); - expect(state.modelledPolicies).toEqual({ core: {}, filtered: {} }); + expect(state.datasets).toEqual([]); expect(state.version).toBeNull(); expect(state.parameterTree).toBeNull(); }; diff --git a/app/src/tests/fixtures/utils/geographyUtilsMocks.ts b/app/src/tests/fixtures/utils/geographyUtilsMocks.ts index 9e07319f8..5753e2f7e 100644 --- a/app/src/tests/fixtures/utils/geographyUtilsMocks.ts +++ b/app/src/tests/fixtures/utils/geographyUtilsMocks.ts @@ -1,6 +1,5 @@ -import type { MetadataState } from '@/types/metadata'; +import type { MetadataRegionEntry } from '@/types/metadata'; import { UK_REGION_TYPES, US_REGION_TYPES } from '@/types/regionTypes'; -import { DEFAULT_V2_LOADING_STATES } from '../reducers/metadataReducerMocks'; export const TEST_COUNTRY_CODES = { US: 'us', @@ -39,69 +38,30 @@ export const EXPECTED_REGION_TYPE_LABELS = { CONGRESSIONAL_DISTRICT: 'Congressional district', } as const; -export const mockMetadataWithRegions = (): MetadataState => ({ - currentCountry: 'us', - variables: {}, - parameters: {}, - entities: {}, - variableModules: {}, - economyOptions: { - region: [ - { name: 'state/ca', label: 'California', type: US_REGION_TYPES.STATE }, - { name: 'state/tx', label: 'Texas', type: US_REGION_TYPES.STATE }, - { - name: 'congressional_district/CA-01', - label: "California's 1st congressional district", - type: US_REGION_TYPES.CONGRESSIONAL_DISTRICT, - state_abbreviation: 'CA', - state_name: 'California', - }, - { name: 'country/wales', label: 'Wales', type: UK_REGION_TYPES.COUNTRY }, - { name: 'country/scotland', label: 'Scotland', type: UK_REGION_TYPES.COUNTRY }, - { - name: 'constituency/E14000698', - label: 'Cities of London and Westminster', - type: UK_REGION_TYPES.CONSTITUENCY, - }, - { - name: 'constituency/Sheffield Central', - label: 'Sheffield Central', - type: UK_REGION_TYPES.CONSTITUENCY, - }, - { name: 'country/england', label: 'England', type: UK_REGION_TYPES.COUNTRY }, - ], - time_period: [], - datasets: [], +// Region arrays for geography utility tests (no longer MetadataState) +export const mockRegionsWithData = (): MetadataRegionEntry[] => [ + { name: 'state/ca', label: 'California', type: US_REGION_TYPES.STATE }, + { name: 'state/tx', label: 'Texas', type: US_REGION_TYPES.STATE }, + { + name: 'congressional_district/CA-01', + label: "California's 1st congressional district", + type: US_REGION_TYPES.CONGRESSIONAL_DISTRICT, + state_abbreviation: 'CA', + state_name: 'California', }, - currentLawId: 1, - basicInputs: [], - modelledPolicies: { core: {}, filtered: {} }, - version: '1.0.0', - parameterTree: null, - loading: false, - error: null, - ...DEFAULT_V2_LOADING_STATES, - progress: 100, -}); - -export const mockMetadataEmptyRegions = (): MetadataState => ({ - currentCountry: 'us', - variables: {}, - parameters: {}, - entities: {}, - variableModules: {}, - economyOptions: { - region: [], - time_period: [], - datasets: [], + { name: 'country/wales', label: 'Wales', type: UK_REGION_TYPES.COUNTRY }, + { name: 'country/scotland', label: 'Scotland', type: UK_REGION_TYPES.COUNTRY }, + { + name: 'constituency/E14000698', + label: 'Cities of London and Westminster', + type: UK_REGION_TYPES.CONSTITUENCY, + }, + { + name: 'constituency/Sheffield Central', + label: 'Sheffield Central', + type: UK_REGION_TYPES.CONSTITUENCY, }, - currentLawId: 1, - basicInputs: [], - modelledPolicies: { core: {}, filtered: {} }, - version: '1.0.0', - parameterTree: null, - progress: 100, - loading: false, - error: null, - ...DEFAULT_V2_LOADING_STATES, -}); + { name: 'country/england', label: 'England', type: UK_REGION_TYPES.COUNTRY }, +]; + +export const mockEmptyRegions = (): MetadataRegionEntry[] => []; diff --git a/app/src/tests/fixtures/utils/householdComparisonMocks.ts b/app/src/tests/fixtures/utils/householdComparisonMocks.ts index c504c69c2..8cd9da1c7 100644 --- a/app/src/tests/fixtures/utils/householdComparisonMocks.ts +++ b/app/src/tests/fixtures/utils/householdComparisonMocks.ts @@ -1,6 +1,5 @@ import type { Household } from '@/types/ingredients/Household'; -import type { MetadataState } from '@/types/metadata'; -import { DEFAULT_V2_LOADING_STATES } from '../reducers/metadataReducerMocks'; +import type { HouseholdMetadataContext } from '@/utils/householdValues'; export const mockHousehold = (_netIncome: number = 50000): Household => ({ id: 'household-1', @@ -15,26 +14,13 @@ export const mockHousehold = (_netIncome: number = 50000): Household => ({ }, }); -export const mockMetadata = (): MetadataState => ({ - currentCountry: 'us', +// HouseholdMetadataContext for household comparison tests +export const mockMetadataContext = (): HouseholdMetadataContext => ({ variables: {}, - parameters: {}, - entities: {}, - variableModules: {}, - economyOptions: { - region: [], - time_period: [], - datasets: [], + entities: { + person: { plural: 'people', label: 'Person' }, + household: { plural: 'households', label: 'Household' }, }, - currentLawId: 1, - basicInputs: [], - modelledPolicies: { core: {}, filtered: {} }, - version: '1.0.0', - parameterTree: null, - loading: false, - error: null, - ...DEFAULT_V2_LOADING_STATES, - progress: 100, }); export const TEST_VARIABLE_NAMES = { diff --git a/app/src/tests/fixtures/utils/householdValuesMocks.ts b/app/src/tests/fixtures/utils/householdValuesMocks.ts index 90a50949a..3ba689e02 100644 --- a/app/src/tests/fixtures/utils/householdValuesMocks.ts +++ b/app/src/tests/fixtures/utils/householdValuesMocks.ts @@ -1,7 +1,6 @@ import { CURRENT_YEAR } from '@/constants'; import { Household } from '@/types/ingredients/Household'; -import { MetadataState } from '@/types/metadata'; -import { DEFAULT_V2_LOADING_STATES } from '../reducers/metadataReducerMocks'; +import { HouseholdMetadataContext } from '@/utils/householdValues'; /** * Test fixtures for householdValues utility functions @@ -39,7 +38,8 @@ export const MOCK_TAX_RATE_VARIABLE = { valueType: 'float', }; -export const MOCK_METADATA: MetadataState = { +// HouseholdMetadataContext for household value tests +export const MOCK_METADATA_CONTEXT: HouseholdMetadataContext = { variables: { household_income: MOCK_HOUSEHOLD_INCOME_VARIABLE, age: MOCK_AGE_VARIABLE, diff --git a/app/src/tests/unit/libs/metadataUtils.test.ts b/app/src/tests/unit/libs/metadataUtils.test.ts index 1d9b95d11..a28dc82eb 100644 --- a/app/src/tests/unit/libs/metadataUtils.test.ts +++ b/app/src/tests/unit/libs/metadataUtils.test.ts @@ -192,55 +192,28 @@ describe('metadataUtils', () => { // When const result = transformMetadataPayload(payload, 'us'); - // Then + // Then - only API-driven data is included expect(result.currentCountry).toBe('us'); - expect(result.currentLawId).toBe(1); - expect(result.basicInputs).toEqual(['age', 'employment_income']); expect(result.version).toBe('1.0.0'); expect(result.parameterTree).toBeNull(); expect(result.variables).toHaveProperty('age'); expect(result.variables).toHaveProperty('state_name'); expect(result.variables.state_name.possibleValues).toBeDefined(); + // Static data (entities, basicInputs, economyOptions, etc.) is no longer returned }); - it('given missing economy_options then uses default', () => { - // Given - const payload = mockMinimalPayload(); - - // When - const result = transformMetadataPayload(payload, 'us'); - - // Then - expect(result.economyOptions).toEqual({ - region: [], - time_period: [], - datasets: [], - }); - }); - - it('given missing basicInputs then uses empty array', () => { - // Given - const payload = mockMinimalPayload(); - - // When - const result = transformMetadataPayload(payload, 'us'); - - // Then - expect(result.basicInputs).toEqual([]); - }); - - it('given missing currentLawId then uses 0', () => { + it('given missing economy_options then datasets uses empty array', () => { // Given const payload = mockMinimalPayload(); // When const result = transformMetadataPayload(payload, 'us'); - // Then - expect(result.currentLawId).toBe(0); + // Then - datasets is extracted from economy_options + expect(result.datasets).toEqual([]); }); - it('given missing modelledPolicies then uses empty core and filtered', () => { + it('given parameterTree in payload then sets to null', () => { // Given const payload = mockMinimalPayload(); @@ -248,21 +221,19 @@ describe('metadataUtils', () => { const result = transformMetadataPayload(payload, 'us'); // Then - expect(result.modelledPolicies).toEqual({ - core: {}, - filtered: {}, - }); + expect(result.parameterTree).toBeNull(); }); - it('given parameterTree in payload then sets to null', () => { + it('given payload with datasets then extracts datasets', () => { // Given - const payload = mockMinimalPayload(); + const payload = mockMetadataPayload(); // When const result = transformMetadataPayload(payload, 'us'); // Then - expect(result.parameterTree).toBeNull(); + expect(result.datasets).toBeDefined(); + expect(Array.isArray(result.datasets)).toBe(true); }); }); }); diff --git a/app/src/tests/unit/reducers/metadataReducer.test.ts b/app/src/tests/unit/reducers/metadataReducer.test.ts index 6f44e5d94..0946fb662 100644 --- a/app/src/tests/unit/reducers/metadataReducer.test.ts +++ b/app/src/tests/unit/reducers/metadataReducer.test.ts @@ -13,8 +13,8 @@ import { expectCurrentCountry, EXPECTED_INITIAL_STATE, expectEmptyMetadata, - expectErrorState, - expectLoadingState, + expectCoreErrorState, + expectCoreLoadingState, expectParameterTree, expectStateToEqual, MOCK_PARAMETER_TREE, @@ -75,14 +75,14 @@ describe('metadataReducer', () => { test('given setCurrentCountry then preserves loading and error states', () => { const initialState = createMockStateWithData({ - loading: true, - error: TEST_ERROR_MESSAGE, + coreLoading: true, + coreError: TEST_ERROR_MESSAGE, coreLoaded: true, }); const action = setCurrentCountry(TEST_COUNTRY_CA); const state = metadataReducer(initialState, action); - expectLoadingState(state, true); - expectErrorState(state, TEST_ERROR_MESSAGE); + expectCoreLoadingState(state, true); + expectCoreErrorState(state, TEST_ERROR_MESSAGE); }); }); @@ -140,8 +140,8 @@ describe('metadataReducer', () => { expect(state.currentCountry).toBe(TEST_COUNTRY_US); expect(state.version).toBe(TEST_VERSION); expect(state.variables).toEqual({ income: mockVariables[0] }); - expect(state.economyOptions.datasets).toHaveLength(1); - expect(state.economyOptions.datasets[0].name).toBe('cps_2024'); + expect(state.datasets).toHaveLength(1); + expect(state.datasets[0].name).toBe('cps_2024'); }); test('given rejected action then sets coreError state', () => { diff --git a/app/src/tests/unit/utils/geographyUtils.test.ts b/app/src/tests/unit/utils/geographyUtils.test.ts index 98507359e..e5a150ee5 100644 --- a/app/src/tests/unit/utils/geographyUtils.test.ts +++ b/app/src/tests/unit/utils/geographyUtils.test.ts @@ -2,8 +2,8 @@ import { describe, expect, it } from 'vitest'; import { EXPECTED_COUNTRY_LABELS, EXPECTED_REGION_TYPE_LABELS, - mockMetadataEmptyRegions, - mockMetadataWithRegions, + mockEmptyRegions, + mockRegionsWithData, TEST_COUNTRY_CODES, TEST_REGION_CODES, } from '@/tests/fixtures/utils/geographyUtilsMocks'; @@ -55,10 +55,10 @@ describe('geographyUtils', () => { describe('getRegionLabel', () => { it('given California code then returns California', () => { // Given - const metadata = mockMetadataWithRegions(); + const regions = mockRegionsWithData(); // When - const result = getRegionLabel(TEST_REGION_CODES.CALIFORNIA, metadata); + const result = getRegionLabel(TEST_REGION_CODES.CALIFORNIA, regions); // Then expect(result).toBe('California'); @@ -66,10 +66,10 @@ describe('geographyUtils', () => { it('given state/ca format then returns California', () => { // Given - const metadata = mockMetadataWithRegions(); + const regions = mockRegionsWithData(); // When - const result = getRegionLabel('state/ca', metadata); + const result = getRegionLabel('state/ca', regions); // Then expect(result).toBe('California'); @@ -77,10 +77,10 @@ describe('geographyUtils', () => { it('given constituency code then returns label', () => { // Given - const metadata = mockMetadataWithRegions(); + const regions = mockRegionsWithData(); // When - const result = getRegionLabel(TEST_REGION_CODES.LONDON, metadata); + const result = getRegionLabel(TEST_REGION_CODES.LONDON, regions); // Then expect(result).toBe('Cities of London and Westminster'); @@ -88,21 +88,21 @@ describe('geographyUtils', () => { it('given unknown region then returns code', () => { // Given - const metadata = mockMetadataWithRegions(); + const regions = mockRegionsWithData(); // When - const result = getRegionLabel('unknown', metadata); + const result = getRegionLabel('unknown', regions); // Then expect(result).toBe('unknown'); }); - it('given empty metadata then returns code', () => { + it('given empty regions then returns code', () => { // Given - const metadata = mockMetadataEmptyRegions(); + const regions = mockEmptyRegions(); // When - const result = getRegionLabel(TEST_REGION_CODES.CALIFORNIA, metadata); + const result = getRegionLabel(TEST_REGION_CODES.CALIFORNIA, regions); // Then expect(result).toBe(TEST_REGION_CODES.CALIFORNIA); @@ -110,11 +110,11 @@ describe('geographyUtils', () => { it('given UK constituency with prefix then returns label via exact match', () => { // Given - const metadata = mockMetadataWithRegions(); + const regions = mockRegionsWithData(); const regionCode = TEST_REGION_CODES.UK_CONSTITUENCY_PREFIXED; // When - const result = getRegionLabel(regionCode, metadata); + const result = getRegionLabel(regionCode, regions); // Then expect(result).toBe('Sheffield Central'); @@ -122,11 +122,11 @@ describe('geographyUtils', () => { it('given UK country with prefix then returns label via exact match', () => { // Given - const metadata = mockMetadataWithRegions(); + const regions = mockRegionsWithData(); const regionCode = TEST_REGION_CODES.UK_COUNTRY_PREFIXED; // When - const result = getRegionLabel(regionCode, metadata); + const result = getRegionLabel(regionCode, regions); // Then expect(result).toBe('England'); @@ -134,11 +134,11 @@ describe('geographyUtils', () => { it('given unprefixed UK region then tries fallback with prefix', () => { // Given - const metadata = mockMetadataWithRegions(); + const regions = mockRegionsWithData(); const unprefixedCode = 'Sheffield Central'; // When - const result = getRegionLabel(unprefixedCode, metadata); + const result = getRegionLabel(unprefixedCode, regions); // Then // Should find it by adding the constituency/ prefix @@ -147,11 +147,11 @@ describe('geographyUtils', () => { it('given congressional district with prefix then returns label', () => { // Given - const metadata = mockMetadataWithRegions(); + const regions = mockRegionsWithData(); const regionCode = TEST_REGION_CODES.US_CONGRESSIONAL_DISTRICT_PREFIXED; // When - const result = getRegionLabel(regionCode, metadata); + const result = getRegionLabel(regionCode, regions); // Then expect(result).toBe("California's 1st congressional district"); @@ -159,53 +159,27 @@ describe('geographyUtils', () => { it('given legacy US state code (tx) without prefix then finds via fallback', () => { // Given - const metadata = mockMetadataWithRegions(); + const regions = mockRegionsWithData(); const legacyCode = TEST_REGION_CODES.US_LEGACY_STATE_TX; // When - const result = getRegionLabel(legacyCode, metadata); + const result = getRegionLabel(legacyCode, regions); // Then expect(result).toBe('Texas'); }); }); - describe('getRegionType', () => { - it('given US then returns state', () => { - // When - const result = getRegionType(TEST_COUNTRY_CODES.US); - - // Then - expect(result).toBe('state'); - }); - - it('given UK then returns constituency', () => { - // When - const result = getRegionType(TEST_COUNTRY_CODES.UK); - - // Then - expect(result).toBe('constituency'); - }); - - it('given CA then returns constituency', () => { - // When - const result = getRegionType(TEST_COUNTRY_CODES.CA); - - // Then - expect(result).toBe('constituency'); - }); - }); - describe('getRegionTypeLabel', () => { it('given US state then returns State', () => { // Given - const metadata = mockMetadataWithRegions(); + const regions = mockRegionsWithData(); // When const result = getRegionTypeLabel( TEST_COUNTRY_CODES.US, TEST_REGION_CODES.CALIFORNIA, - metadata + regions ); // Then @@ -214,10 +188,10 @@ describe('geographyUtils', () => { it('given UK country then returns Country', () => { // Given - const metadata = mockMetadataWithRegions(); + const regions = mockRegionsWithData(); // When - const result = getRegionTypeLabel(TEST_COUNTRY_CODES.UK, TEST_REGION_CODES.WALES, metadata); + const result = getRegionTypeLabel(TEST_COUNTRY_CODES.UK, TEST_REGION_CODES.WALES, regions); // Then expect(result).toBe(EXPECTED_REGION_TYPE_LABELS.COUNTRY); @@ -225,57 +199,58 @@ describe('geographyUtils', () => { it('given UK constituency then returns Constituency', () => { // Given - const metadata = mockMetadataWithRegions(); + const regions = mockRegionsWithData(); // When - const result = getRegionTypeLabel(TEST_COUNTRY_CODES.UK, TEST_REGION_CODES.LONDON, metadata); + const result = getRegionTypeLabel(TEST_COUNTRY_CODES.UK, TEST_REGION_CODES.LONDON, regions); // Then expect(result).toBe(EXPECTED_REGION_TYPE_LABELS.CONSTITUENCY); }); - it('given UK region not in metadata then returns Constituency as fallback', () => { + it('given region not found then returns Region as fallback', () => { // Given - const metadata = mockMetadataWithRegions(); + const regions = mockRegionsWithData(); // When - const result = getRegionTypeLabel(TEST_COUNTRY_CODES.UK, 'unknown-region', metadata); + const result = getRegionTypeLabel(TEST_COUNTRY_CODES.UK, 'unknown-region', regions); // Then - expect(result).toBe(EXPECTED_REGION_TYPE_LABELS.CONSTITUENCY); + expect(result).toBe(EXPECTED_REGION_TYPE_LABELS.REGION); }); it('given unknown country then returns Region as fallback', () => { // Given - const metadata = mockMetadataWithRegions(); + const regions = mockRegionsWithData(); // When - const result = getRegionTypeLabel('zz', 'some-region', metadata); + const result = getRegionTypeLabel('zz', 'some-region', regions); // Then expect(result).toBe(EXPECTED_REGION_TYPE_LABELS.REGION); }); - it('given empty metadata then returns appropriate fallback', () => { + it('given empty regions then returns Region as fallback', () => { // Given - const metadata = mockMetadataEmptyRegions(); + const regions = mockEmptyRegions(); // When - const resultUS = getRegionTypeLabel(TEST_COUNTRY_CODES.US, 'ca', metadata); - const resultUK = getRegionTypeLabel(TEST_COUNTRY_CODES.UK, 'wales', metadata); + const resultUS = getRegionTypeLabel(TEST_COUNTRY_CODES.US, 'ca', regions); + const resultUK = getRegionTypeLabel(TEST_COUNTRY_CODES.UK, 'wales', regions); // Then - expect(resultUS).toBe(EXPECTED_REGION_TYPE_LABELS.STATE); - expect(resultUK).toBe(EXPECTED_REGION_TYPE_LABELS.CONSTITUENCY); + // Without region data, both return generic 'Region' fallback + expect(resultUS).toBe(EXPECTED_REGION_TYPE_LABELS.REGION); + expect(resultUK).toBe(EXPECTED_REGION_TYPE_LABELS.REGION); }); it('given US congressional district with prefix then returns Congressional district', () => { // Given - const metadata = mockMetadataWithRegions(); + const regions = mockRegionsWithData(); const regionCode = TEST_REGION_CODES.US_CONGRESSIONAL_DISTRICT_PREFIXED; // When - const result = getRegionTypeLabel(TEST_COUNTRY_CODES.US, regionCode, metadata); + const result = getRegionTypeLabel(TEST_COUNTRY_CODES.US, regionCode, regions); // Then expect(result).toBe(EXPECTED_REGION_TYPE_LABELS.CONGRESSIONAL_DISTRICT); @@ -283,11 +258,11 @@ describe('geographyUtils', () => { it('given legacy US state code (tx) then returns State via fallback', () => { // Given - const metadata = mockMetadataWithRegions(); + const regions = mockRegionsWithData(); const legacyCode = TEST_REGION_CODES.US_LEGACY_STATE_TX; // When - const result = getRegionTypeLabel(TEST_COUNTRY_CODES.US, legacyCode, metadata); + const result = getRegionTypeLabel(TEST_COUNTRY_CODES.US, legacyCode, regions); // Then expect(result).toBe(EXPECTED_REGION_TYPE_LABELS.STATE); diff --git a/app/src/tests/unit/utils/householdComparison.test.ts b/app/src/tests/unit/utils/householdComparison.test.ts index 0a173c414..b95bc033d 100644 --- a/app/src/tests/unit/utils/householdComparison.test.ts +++ b/app/src/tests/unit/utils/householdComparison.test.ts @@ -1,7 +1,7 @@ import { beforeEach, describe, expect, it, vi } from 'vitest'; import { mockHousehold, - mockMetadata, + mockMetadataContext, TEST_VALUES, TEST_VARIABLE_NAMES, } from '@/tests/fixtures/utils/householdComparisonMocks'; @@ -23,7 +23,7 @@ describe('householdComparison', () => { it('given baseline only then returns baseline value with no-change', () => { // Given const baseline = mockHousehold(); - const metadata = mockMetadata(); + const metadataContext = mockMetadataContext(); (getValueFromHousehold as any).mockReturnValue(TEST_VALUES.BASELINE_INCOME); // When @@ -31,7 +31,7 @@ describe('householdComparison', () => { TEST_VARIABLE_NAMES.NET_INCOME, baseline, null, - metadata + metadataContext ); // Then @@ -45,7 +45,7 @@ describe('householdComparison', () => { it('given non-numeric value then uses 0', () => { // Given const baseline = mockHousehold(); - const metadata = mockMetadata(); + const metadataContext = mockMetadataContext(); (getValueFromHousehold as any).mockReturnValue('invalid'); // When @@ -53,7 +53,7 @@ describe('householdComparison', () => { TEST_VARIABLE_NAMES.NET_INCOME, baseline, null, - metadata + metadataContext ); // Then @@ -67,7 +67,7 @@ describe('householdComparison', () => { // Given const baseline = mockHousehold(); const reform = mockHousehold(); - const metadata = mockMetadata(); + const metadataContext = mockMetadataContext(); (getValueFromHousehold as any) .mockReturnValueOnce(TEST_VALUES.BASELINE_INCOME) .mockReturnValueOnce(TEST_VALUES.REFORM_INCOME_INCREASE); @@ -77,7 +77,7 @@ describe('householdComparison', () => { TEST_VARIABLE_NAMES.NET_INCOME, baseline, reform, - metadata + metadataContext ); // Then @@ -93,7 +93,7 @@ describe('householdComparison', () => { // Given const baseline = mockHousehold(); const reform = mockHousehold(); - const metadata = mockMetadata(); + const metadataContext = mockMetadataContext(); (getValueFromHousehold as any) .mockReturnValueOnce(TEST_VALUES.BASELINE_INCOME) .mockReturnValueOnce(TEST_VALUES.REFORM_INCOME_DECREASE); @@ -103,7 +103,7 @@ describe('householdComparison', () => { TEST_VARIABLE_NAMES.NET_INCOME, baseline, reform, - metadata + metadataContext ); // Then @@ -119,7 +119,7 @@ describe('householdComparison', () => { // Given const baseline = mockHousehold(); const reform = mockHousehold(); - const metadata = mockMetadata(); + const metadataContext = mockMetadataContext(); (getValueFromHousehold as any) .mockReturnValueOnce(TEST_VALUES.BASELINE_INCOME) .mockReturnValueOnce(TEST_VALUES.REFORM_INCOME_SAME); @@ -129,7 +129,7 @@ describe('householdComparison', () => { TEST_VARIABLE_NAMES.NET_INCOME, baseline, reform, - metadata + metadataContext ); // Then @@ -145,7 +145,7 @@ describe('householdComparison', () => { // Given const baseline = mockHousehold(); const reform = mockHousehold(); - const metadata = mockMetadata(); + const metadataContext = mockMetadataContext(); (getValueFromHousehold as any) .mockReturnValueOnce('invalid') .mockReturnValueOnce('invalid'); @@ -155,7 +155,7 @@ describe('householdComparison', () => { TEST_VARIABLE_NAMES.NET_INCOME, baseline, reform, - metadata + metadataContext ); // Then diff --git a/app/src/tests/unit/utils/householdValues.test.ts b/app/src/tests/unit/utils/householdValues.test.ts index cdbea73c3..7cc4faced 100644 --- a/app/src/tests/unit/utils/householdValues.test.ts +++ b/app/src/tests/unit/utils/householdValues.test.ts @@ -7,7 +7,7 @@ import { MOCK_HOUSEHOLD_DATA_MULTI_PERIOD, MOCK_HOUSEHOLD_DATA_REFORM, MOCK_HOUSEHOLD_INCOME_VARIABLE, - MOCK_METADATA, + MOCK_METADATA_CONTEXT, MOCK_PARAMETER, MOCK_TAX_RATE_VARIABLE, TEST_ENTITY_NAMES, @@ -35,7 +35,7 @@ describe('getValueFromHousehold', () => { timePeriod, entityName, MOCK_HOUSEHOLD_DATA, - MOCK_METADATA + MOCK_METADATA_CONTEXT ); // Then @@ -54,7 +54,7 @@ describe('getValueFromHousehold', () => { timePeriod, entityName, MOCK_HOUSEHOLD_DATA, - MOCK_METADATA + MOCK_METADATA_CONTEXT ); // Then @@ -73,7 +73,7 @@ describe('getValueFromHousehold', () => { timePeriod, entityName, MOCK_HOUSEHOLD_DATA, - MOCK_METADATA + MOCK_METADATA_CONTEXT ); // Then @@ -92,7 +92,7 @@ describe('getValueFromHousehold', () => { timePeriod, entityName, MOCK_HOUSEHOLD_DATA_MULTI_PERIOD, - MOCK_METADATA + MOCK_METADATA_CONTEXT ); // Then @@ -111,7 +111,7 @@ describe('getValueFromHousehold', () => { timePeriod, entityName, MOCK_HOUSEHOLD_DATA, - MOCK_METADATA + MOCK_METADATA_CONTEXT ); // Then @@ -130,7 +130,7 @@ describe('getValueFromHousehold', () => { timePeriod, entityName, MOCK_HOUSEHOLD_DATA, - MOCK_METADATA + MOCK_METADATA_CONTEXT ); // Then @@ -150,7 +150,7 @@ describe('getValueFromHousehold', () => { timePeriod, entityName, MOCK_HOUSEHOLD_DATA, - MOCK_METADATA, + MOCK_METADATA_CONTEXT, valueFromFirstOnly ); @@ -442,7 +442,7 @@ describe('shouldShowVariable', () => { const variableName = TEST_VARIABLE_NAMES.HOUSEHOLD_INCOME; // When - const result = shouldShowVariable(variableName, MOCK_HOUSEHOLD_DATA, null, MOCK_METADATA); + const result = shouldShowVariable(variableName, MOCK_HOUSEHOLD_DATA, null, MOCK_METADATA_CONTEXT); // Then expect(result).toBe(true); @@ -453,7 +453,7 @@ describe('shouldShowVariable', () => { const variableName = TEST_VARIABLE_NAMES.NONEXISTENT; // When - const result = shouldShowVariable(variableName, MOCK_HOUSEHOLD_DATA, null, MOCK_METADATA); + const result = shouldShowVariable(variableName, MOCK_HOUSEHOLD_DATA, null, MOCK_METADATA_CONTEXT); // Then expect(result).toBe(false); @@ -479,7 +479,7 @@ describe('shouldShowVariable', () => { variableName, householdZeroBenefits, MOCK_HOUSEHOLD_DATA_REFORM, - MOCK_METADATA + MOCK_METADATA_CONTEXT ); // Then @@ -496,7 +496,7 @@ describe('shouldShowVariable', () => { variableName, MOCK_HOUSEHOLD_DATA, null, - MOCK_METADATA, + MOCK_METADATA_CONTEXT, forceShow ); @@ -513,7 +513,7 @@ describe('shouldShowVariable', () => { variableName, MOCK_HOUSEHOLD_DATA, MOCK_HOUSEHOLD_DATA_REFORM, - MOCK_METADATA + MOCK_METADATA_CONTEXT ); // Then diff --git a/app/src/types/metadata.ts b/app/src/types/metadata.ts index c2aa42436..be0a06165 100644 --- a/app/src/types/metadata.ts +++ b/app/src/types/metadata.ts @@ -55,6 +55,13 @@ export interface ParameterTreeNode { household?: boolean; } +/** + * MetadataState - Redux state for API-driven metadata + * + * This state contains only data fetched from the API. + * Static metadata (entities, basicInputs, timePeriods, regions, modelledPolicies, currentLawId) + * is accessed via hooks from @/hooks/useStaticMetadata or @/hooks/useDerivedMetadata. + */ export interface MetadataState { currentCountry: string | null; loading: boolean; @@ -70,21 +77,10 @@ export interface MetadataState { parametersLoaded: boolean; parametersError: string | null; + // API-driven data variables: Record; parameters: Record; - entities: Record; - variableModules: Record; - economyOptions: { - region: MetadataRegionEntry[]; - time_period: Array<{ name: number; label: string }>; - datasets: Array<{ name: string; label: string; title: string; default: boolean }>; - }; - currentLawId: number; - basicInputs: string[]; - modelledPolicies: { - core: Record; - filtered: Record; - }; + datasets: Array<{ name: string; label: string; title: string; default: boolean }>; version: string | null; // Computed parameter tree for policy creation UI (built when metadata is fetched) diff --git a/app/src/utils/geographyUtils.ts b/app/src/utils/geographyUtils.ts index c079b3508..964583668 100644 --- a/app/src/utils/geographyUtils.ts +++ b/app/src/utils/geographyUtils.ts @@ -1,5 +1,35 @@ import type { Geography } from '@/types/ingredients/Geography'; -import { MetadataState } from '@/types/metadata'; +import { MetadataRegionEntry } from '@/types/metadata'; + +/** + * Human-readable labels for region types. + * Maps the internal type constants to display labels. + */ +const REGION_TYPE_LABELS: Record = { + // Shared + national: 'National', + // US region types + state: 'State', + congressional_district: 'Congressional district', + city: 'City', + // UK region types + country: 'Country', + constituency: 'Constituency', + local_authority: 'Local authority', +}; + +/** + * Known region type prefixes used in region name strings. + * Used for fallback matching when a region code doesn't have its prefix. + */ +const KNOWN_PREFIXES = [ + 'state', + 'congressional_district', + 'city', + 'country', + 'constituency', + 'local_authority', +]; import { UK_REGION_TYPES } from '@/types/regionTypes'; /** @@ -68,97 +98,69 @@ export function getCountryLabel(countryCode: string): string { return countryLabels[countryCode]; } -export function getRegionLabel(regionCode: string, metadata: MetadataState): string { - // regionCode now contains the FULL prefixed value for UK regions - // e.g., "constituency/Sheffield Central" or "country/england" - // For US: just the state code like "ca" - - // Try exact match first (handles prefixed UK values and US state codes) - const region = metadata.economyOptions.region.find((r) => r.name === regionCode); - - if (region) { - return region.label; +/** + * Find a region entry by code, trying exact match first then prefixed variants. + * + * @param regionCode - The region code to find + * @param regions - Array of region entries from static metadata + * @returns The matched region entry or undefined + */ +function findRegion(regionCode: string, regions: MetadataRegionEntry[]): MetadataRegionEntry | undefined { + // Try exact match first + const exactMatch = regions.find((r) => r.name === regionCode); + if (exactMatch) { + return exactMatch; } - // Fallback: if no match, try stripping prefix for display - // This handles edge cases where we might receive unprefixed values - const fallbackRegion = metadata.economyOptions.region.find( - (r) => - r.name === `state/${regionCode}` || - r.name === `country/${regionCode}` || - r.name === `constituency/${regionCode}` || - r.name === `local_authority/${regionCode}` - ); + // Try with known prefixes (for legacy codes without prefix) + for (const prefix of KNOWN_PREFIXES) { + const prefixedMatch = regions.find((r) => r.name === `${prefix}/${regionCode}`); + if (prefixedMatch) { + return prefixedMatch; + } + } - return fallbackRegion?.label || regionCode; + return undefined; } -export function getRegionType(countryCode: string): 'state' | 'constituency' { - return countryCode === 'us' ? 'state' : 'constituency'; +/** + * Get the display label for a region code. + * + * @param regionCode - The region code (e.g., 'constituency/Sheffield Central', 'state/ca') + * @param regions - Array of region entries from static metadata + * @returns The human-readable label for the region, or the code itself if not found + */ +export function getRegionLabel(regionCode: string, regions: MetadataRegionEntry[]): string { + const region = findRegion(regionCode, regions); + return region?.label || regionCode; } /** - * Get the specific region type label for a geography based on country and metadata. - * Uses a strategy pattern: checks the actual metadata entry to determine the type. + * Get the human-readable label for a region's type. + * Uses the `type` field from the region entry directly, avoiding country-specific logic. * - * @param countryId - The country ID (e.g., 'us', 'uk') - * @param regionCode - The region code (e.g., 'california', 'wales', 'brighton-pavilion') - * @param metadata - The metadata containing region definitions - * @returns The display label for the region type (e.g., 'State', 'Country', 'Constituency', 'Congressional District') + * @param _countryId - The country ID (unused, kept for API compatibility) + * @param regionCode - The region code (e.g., 'state/ca', 'constituency/Sheffield Central') + * @param regions - Array of region entries from static metadata + * @returns The display label for the region type (e.g., 'State', 'Constituency') */ export function getRegionTypeLabel( - countryId: string, + _countryId: string, regionCode: string, - metadata: MetadataState + regions: MetadataRegionEntry[] ): string { - // US strategy: check metadata to determine if it's a state or congressional district - if (countryId === 'us') { - const region = metadata.economyOptions.region.find( - (r) => - r.name === regionCode || - r.name === `state/${regionCode}` || - r.name === `congressional_district/${regionCode}` - ); - - if (region) { - if (region.name.startsWith('congressional_district/')) { - return 'Congressional district'; - } - if (region.name.startsWith('state/')) { - return 'State'; - } - } + const region = findRegion(regionCode, regions); - // Fallback to State for US if we can't determine - return 'State'; + if (region?.type) { + return REGION_TYPE_LABELS[region.type] || 'Region'; } - // UK strategy: check metadata to determine if it's a country, constituency, or local authority - if (countryId === 'uk') { - const region = metadata.economyOptions.region.find( - (r) => - r.name === regionCode || - r.name === `country/${regionCode}` || - r.name === `constituency/${regionCode}` || - r.name === `local_authority/${regionCode}` - ); - - if (region) { - if (region.name.startsWith('country/')) { - return 'Country'; - } - if (region.name.startsWith('constituency/')) { - return 'Constituency'; - } - if (region.name.startsWith('local_authority/')) { - return 'Local authority'; - } + // Fallback: try to infer from prefix in the region code + for (const prefix of KNOWN_PREFIXES) { + if (regionCode.startsWith(`${prefix}/`)) { + return REGION_TYPE_LABELS[prefix] || 'Region'; } - - // Fallback to constituency for UK if we can't determine - return 'Constituency'; } - // Default fallback return 'Region'; } diff --git a/app/src/utils/householdComparison.ts b/app/src/utils/householdComparison.ts index e4798ca0c..cabf9e50a 100644 --- a/app/src/utils/householdComparison.ts +++ b/app/src/utils/householdComparison.ts @@ -1,6 +1,5 @@ import { Household } from '@/types/ingredients/Household'; -import { MetadataState } from '@/types/metadata'; -import { getValueFromHousehold } from './householdValues'; +import { getValueFromHousehold, HouseholdMetadataContext } from './householdValues'; /** * Represents the comparison between baseline and reform values for a variable @@ -21,14 +20,14 @@ export interface VariableComparison { * @param variableName - The variable to compare * @param baseline - The baseline household * @param reform - The reform household (null for single mode) - * @param metadata - The metadata + * @param metadata - The metadata context (variables from Redux + entities from static data) * @returns Comparison result with display value and direction */ export function calculateVariableComparison( variableName: string, baseline: Household, reform: Household | null, - metadata: MetadataState + metadata: HouseholdMetadataContext ): VariableComparison { const baselineValue = getValueFromHousehold(variableName, null, null, baseline, metadata); const baselineNumeric = typeof baselineValue === 'number' ? baselineValue : 0; diff --git a/app/src/utils/householdValues.ts b/app/src/utils/householdValues.ts index 2f15f93d9..292e13945 100644 --- a/app/src/utils/householdValues.ts +++ b/app/src/utils/householdValues.ts @@ -1,5 +1,14 @@ +import type { EntitiesRecord } from '@/data/static'; import { Household } from '@/types/ingredients/Household'; -import { MetadataState } from '@/types/metadata'; + +/** + * Metadata interface for household value extraction + * Components should build this by combining Redux metadata.variables with static entities + */ +export interface HouseholdMetadataContext { + variables: Record; + entities: EntitiesRecord; +} /** * Extracts a value from household data for a specific variable @@ -9,7 +18,7 @@ import { MetadataState } from '@/types/metadata'; * @param timePeriod - Specific time period (e.g., "2025"), or null to aggregate all periods * @param entityName - Specific entity name (e.g., "your household"), or null to aggregate all entities * @param household - The household data structure - * @param metadata - The metadata containing variable definitions + * @param metadata - The metadata containing variable definitions and entities * @param valueFromFirstOnly - If true, only returns value from first entity (no aggregation) * @returns The extracted value (number or array) */ @@ -18,7 +27,7 @@ export function getValueFromHousehold( timePeriod: string | null, entityName: string | null, household: Household, - metadata: MetadataState, + metadata: HouseholdMetadataContext, valueFromFirstOnly = false ): number | number[] { const variable = metadata.variables[variableName]; @@ -277,7 +286,7 @@ export function shouldShowVariable( variableName: string, householdBaseline: Household, householdReform: Household | null, - metadata: MetadataState, + metadata: HouseholdMetadataContext, forceShow = false ): boolean { if (forceShow) { diff --git a/app/src/utils/impactChartUtils.ts b/app/src/utils/impactChartUtils.ts index 0c17473bd..c5bb3c1a5 100644 --- a/app/src/utils/impactChartUtils.ts +++ b/app/src/utils/impactChartUtils.ts @@ -3,11 +3,7 @@ * These are used across multiple chart types (budgetary, distributional, etc.) */ -interface Metadata { - economyOptions: { - region: Array<{ name: string; label: string }>; - }; -} +import { MetadataRegionEntry } from '@/types/metadata'; /** * Get region name from URL params for chart titles @@ -16,19 +12,18 @@ interface Metadata { * Note this is not a general-purpose function -- it is meant to be used to * create titles in impact charts. * - * @param metadata the metadata object - * @returns name of the region if it is found in metadata.economy_options.region - * and it is not us or uk + * @param regions Array of region entries from static metadata + * @returns name of the region if it is found in regions and it is not us or uk */ -export function regionName(metadata: Metadata): string | undefined { +export function regionName(regions: MetadataRegionEntry[]): string | undefined { const ignoreList = ['us', 'uk']; const urlParams = new URLSearchParams(window.location.search); const region = urlParams.get('region'); if (!region || ignoreList.includes(region)) { return undefined; } - const options = metadata.economyOptions.region.map((region) => { - return { value: region.name, label: region.label }; + const options = regions.map((r) => { + return { value: r.name, label: r.label }; }); return options.find((option) => option.value === region)?.label; } From 1d76ec97c290c261dceff6f68c801b489bab4cec Mon Sep 17 00:00:00 2001 From: Anthony Volk Date: Mon, 22 Dec 2025 17:23:53 +0400 Subject: [PATCH 09/32] fix: Remove unused function --- app/src/tests/unit/reducers/metadataReducer.test.ts | 8 +++++--- app/src/tests/unit/utils/geographyUtils.test.ts | 1 - app/src/utils/geographyUtils.ts | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/app/src/tests/unit/reducers/metadataReducer.test.ts b/app/src/tests/unit/reducers/metadataReducer.test.ts index 0946fb662..741babd7c 100644 --- a/app/src/tests/unit/reducers/metadataReducer.test.ts +++ b/app/src/tests/unit/reducers/metadataReducer.test.ts @@ -73,7 +73,9 @@ describe('metadataReducer', () => { expectEmptyMetadata(state); }); - test('given setCurrentCountry then preserves loading and error states', () => { + test('given setCurrentCountry when coreLoaded is true then resets loading and error states', () => { + // When switching countries with data already loaded, states should reset + // so the new country's data can be fetched fresh const initialState = createMockStateWithData({ coreLoading: true, coreError: TEST_ERROR_MESSAGE, @@ -81,8 +83,8 @@ describe('metadataReducer', () => { }); const action = setCurrentCountry(TEST_COUNTRY_CA); const state = metadataReducer(initialState, action); - expectCoreLoadingState(state, true); - expectCoreErrorState(state, TEST_ERROR_MESSAGE); + expectCoreLoadingState(state, false); + expectCoreErrorState(state, null); }); }); diff --git a/app/src/tests/unit/utils/geographyUtils.test.ts b/app/src/tests/unit/utils/geographyUtils.test.ts index e5a150ee5..0b3d262b5 100644 --- a/app/src/tests/unit/utils/geographyUtils.test.ts +++ b/app/src/tests/unit/utils/geographyUtils.test.ts @@ -11,7 +11,6 @@ import type { Geography } from '@/types/ingredients/Geography'; import { getCountryLabel, getRegionLabel, - getRegionType, getRegionTypeLabel, getUKRegionTypeFromGeography, isUKLocalLevelGeography, diff --git a/app/src/utils/geographyUtils.ts b/app/src/utils/geographyUtils.ts index 964583668..faa05d2bb 100644 --- a/app/src/utils/geographyUtils.ts +++ b/app/src/utils/geographyUtils.ts @@ -1,5 +1,6 @@ import type { Geography } from '@/types/ingredients/Geography'; import { MetadataRegionEntry } from '@/types/metadata'; +import { UK_REGION_TYPES } from '@/types/regionTypes'; /** * Human-readable labels for region types. @@ -30,7 +31,6 @@ const KNOWN_PREFIXES = [ 'constituency', 'local_authority', ]; -import { UK_REGION_TYPES } from '@/types/regionTypes'; /** * Extracts the UK region type from a Geography object based on its geographyId. From 628e99015f1e8a978d5d13d505c7de5ea5d07a3d Mon Sep 17 00:00:00 2001 From: Anthony Volk Date: Mon, 22 Dec 2025 21:30:08 +0400 Subject: [PATCH 10/32] test: Add tests --- app/src/tests/fixtures/api/v2/apiV2Mocks.ts | 102 ++++ .../fixtures/data/static/staticDataMocks.ts | 58 +++ .../fixtures/hooks/metadataHooksMocks.ts | 100 ++++ .../fixtures/routing/guards/guardsMocks.ts | 68 +++ .../tests/fixtures/storage/loadersMocks.ts | 100 ++++ .../tests/fixtures/storage/storageMocks.ts | 145 ++++++ app/src/tests/unit/api/v2/datasets.test.ts | 75 +++ app/src/tests/unit/api/v2/parameters.test.ts | 122 +++++ .../unit/api/v2/taxBenefitModels.test.ts | 174 +++++++ app/src/tests/unit/api/v2/variables.test.ts | 76 +++ .../unit/data/static/basicInputs.test.ts | 71 +++ .../tests/unit/data/static/entities.test.ts | 95 ++++ .../tests/unit/data/static/taxYears.test.ts | 134 +++++ .../unit/hooks/useBasicInputFields.test.ts | 72 +++ .../tests/unit/hooks/useCoreMetadata.test.ts | 153 ++++++ .../unit/hooks/useStaticMetadata.test.ts | 188 +++++++ .../routing/guards/CoreMetadataGuard.test.tsx | 157 ++++++ .../routing/guards/ParametersGuard.test.tsx | 157 ++++++ .../loaders/coreMetadataLoader.test.ts | 230 +++++++++ .../storage/loaders/parametersLoader.test.ts | 259 ++++++++++ .../unit/storage/metadataBulkLoader.test.ts | 475 ++++++++++++++++++ 21 files changed, 3011 insertions(+) create mode 100644 app/src/tests/fixtures/api/v2/apiV2Mocks.ts create mode 100644 app/src/tests/fixtures/data/static/staticDataMocks.ts create mode 100644 app/src/tests/fixtures/hooks/metadataHooksMocks.ts create mode 100644 app/src/tests/fixtures/routing/guards/guardsMocks.ts create mode 100644 app/src/tests/fixtures/storage/loadersMocks.ts create mode 100644 app/src/tests/fixtures/storage/storageMocks.ts create mode 100644 app/src/tests/unit/api/v2/datasets.test.ts create mode 100644 app/src/tests/unit/api/v2/parameters.test.ts create mode 100644 app/src/tests/unit/api/v2/taxBenefitModels.test.ts create mode 100644 app/src/tests/unit/api/v2/variables.test.ts create mode 100644 app/src/tests/unit/data/static/basicInputs.test.ts create mode 100644 app/src/tests/unit/data/static/entities.test.ts create mode 100644 app/src/tests/unit/data/static/taxYears.test.ts create mode 100644 app/src/tests/unit/hooks/useBasicInputFields.test.ts create mode 100644 app/src/tests/unit/hooks/useCoreMetadata.test.ts create mode 100644 app/src/tests/unit/hooks/useStaticMetadata.test.ts create mode 100644 app/src/tests/unit/routing/guards/CoreMetadataGuard.test.tsx create mode 100644 app/src/tests/unit/routing/guards/ParametersGuard.test.tsx create mode 100644 app/src/tests/unit/storage/loaders/coreMetadataLoader.test.ts create mode 100644 app/src/tests/unit/storage/loaders/parametersLoader.test.ts create mode 100644 app/src/tests/unit/storage/metadataBulkLoader.test.ts diff --git a/app/src/tests/fixtures/api/v2/apiV2Mocks.ts b/app/src/tests/fixtures/api/v2/apiV2Mocks.ts new file mode 100644 index 000000000..06c01907b --- /dev/null +++ b/app/src/tests/fixtures/api/v2/apiV2Mocks.ts @@ -0,0 +1,102 @@ +/** + * Fixtures for API v2 module tests + */ +import type { TaxBenefitModel, TaxBenefitModelVersion } from '@/api/v2/taxBenefitModels'; +import { + createMockVariables, + createMockParameters, + createMockParameterValues, + createMockDatasets, + TEST_COUNTRIES, +} from '@/tests/fixtures/storage/storageMocks'; + +// Re-export shared constants +export { TEST_COUNTRIES }; + +// Model IDs +export const MODEL_IDS = { + US: '8ac12923-1282-420e-a440-0fa60d43950a', + UK: '00652f95-f350-4932-b65d-9f9f03b4b8eb', +} as const; + +// API Base URL +export const API_V2_BASE_URL = 'https://v2.api.policyengine.org'; + +// HTTP status codes +export const HTTP_STATUS = { + OK: 200, + BAD_REQUEST: 400, + NOT_FOUND: 404, + INTERNAL_SERVER_ERROR: 500, +} as const; + +// Tax benefit model factory +export function createMockTaxBenefitModel( + overrides: Partial = {} +): TaxBenefitModel { + return { + id: MODEL_IDS.US, + name: 'US Model', + description: 'US Tax-Benefit Model', + created_at: '2024-01-01T00:00:00Z', + ...overrides, + }; +} + +// Tax benefit model version factory +export function createMockModelVersion( + overrides: Partial = {} +): TaxBenefitModelVersion { + return { + id: 'version-id-123', + model_id: MODEL_IDS.US, + version: '1.0.0', + ...overrides, + }; +} + +// Mock fetch success response +export function mockFetchSuccess(data: T): Response { + return { + ok: true, + status: HTTP_STATUS.OK, + json: () => Promise.resolve(data), + } as Response; +} + +// Mock fetch error response +export function mockFetchError(status: number = HTTP_STATUS.INTERNAL_SERVER_ERROR): Response { + return { + ok: false, + status, + statusText: status === HTTP_STATUS.NOT_FOUND ? 'Not Found' : 'Internal Server Error', + } as Response; +} + +// Sample API responses +export const SAMPLE_RESPONSES = { + TAX_BENEFIT_MODELS: [ + createMockTaxBenefitModel({ id: MODEL_IDS.US, name: 'US Model' }), + createMockTaxBenefitModel({ id: MODEL_IDS.UK, name: 'UK Model' }), + ], + MODEL_VERSIONS: [createMockModelVersion()], + EMPTY_VERSIONS: [] as TaxBenefitModelVersion[], + VARIABLES: createMockVariables(5), + PARAMETERS: createMockParameters(5), + PARAMETER_VALUES: createMockParameterValues(10), + DATASETS: createMockDatasets(3), +} as const; + +// Expected API endpoints +export const API_ENDPOINTS = { + TAX_BENEFIT_MODELS: `${API_V2_BASE_URL}/tax-benefit-models/`, + MODEL_VERSIONS: (modelId: string) => + `${API_V2_BASE_URL}/tax-benefit-model-versions/?model_id=${modelId}`, + VARIABLES: (modelId: string, limit: number = 10000) => + `${API_V2_BASE_URL}/variables/?tax_benefit_model_id=${modelId}&limit=${limit}`, + PARAMETERS: (modelId: string, limit: number = 10000) => + `${API_V2_BASE_URL}/parameters/?tax_benefit_model_id=${modelId}&limit=${limit}`, + PARAMETER_VALUES: (modelId: string) => + `${API_V2_BASE_URL}/parameter-values/?tax_benefit_model_id=${modelId}`, + DATASETS: (modelId: string) => `${API_V2_BASE_URL}/datasets/?tax_benefit_model_id=${modelId}`, +} as const; diff --git a/app/src/tests/fixtures/data/static/staticDataMocks.ts b/app/src/tests/fixtures/data/static/staticDataMocks.ts new file mode 100644 index 000000000..26bc218a3 --- /dev/null +++ b/app/src/tests/fixtures/data/static/staticDataMocks.ts @@ -0,0 +1,58 @@ +/** + * Fixtures for static data module tests + */ + +// Test country codes +export const TEST_COUNTRIES = { + US: 'us', + UK: 'uk', + UNKNOWN: 'zz', +} as const; + +// Expected US entity keys +export const EXPECTED_US_ENTITY_KEYS = [ + 'person', + 'family', + 'household', + 'marital_unit', + 'tax_unit', + 'spm_unit', +] as const; + +// Expected UK entity keys +export const EXPECTED_UK_ENTITY_KEYS = ['person', 'benunit', 'household'] as const; + +// Expected US basic inputs +export const EXPECTED_US_BASIC_INPUTS = ['age', 'employment_income', 'state_name'] as const; + +// Expected UK basic inputs +export const EXPECTED_UK_BASIC_INPUTS = ['age', 'employment_income', 'region'] as const; + +// Default date range fallback values +export const DEFAULT_DATE_RANGE = { + minDate: '2022-01-01', + maxDate: '2035-12-31', +} as const; + +// Expected tax year range (based on actual time periods in timePeriods.ts) +export const EXPECTED_TAX_YEAR_RANGE = { + US: { min: 2022, max: 2035 }, + UK: { min: 2024, max: 2030 }, +} as const; + +// Expected entity properties +export const EXPECTED_ENTITY_PROPERTIES = { + PERSON: { + label: 'Person', + plural: 'people', + is_person: true, + }, + TAX_UNIT: { + label: 'Tax Unit', + plural: 'tax units', + }, + BENUNIT: { + label: 'Benefit Unit', + plural: 'benefit units', + }, +} as const; diff --git a/app/src/tests/fixtures/hooks/metadataHooksMocks.ts b/app/src/tests/fixtures/hooks/metadataHooksMocks.ts new file mode 100644 index 000000000..b02a723c9 --- /dev/null +++ b/app/src/tests/fixtures/hooks/metadataHooksMocks.ts @@ -0,0 +1,100 @@ +/** + * Fixtures for metadata hooks tests + */ +import { createMockVariables, TEST_COUNTRIES, TEST_VERSIONS } from '../storage/storageMocks'; + +// Re-export shared constants +export { TEST_COUNTRIES, TEST_VERSIONS }; + +// Default year for testing +export const TEST_YEAR = 2025; + +// Mock Redux state for metadata +export const MOCK_METADATA_STATE_INITIAL = { + coreLoading: false, + coreLoaded: false, + coreError: null, + parametersLoading: false, + parametersLoaded: false, + parametersError: null, + currentCountry: null, + version: null, + versionId: null, + variables: {}, + parameters: {}, + parameterValues: {}, + datasets: [], +}; + +export const MOCK_METADATA_STATE_LOADING = { + ...MOCK_METADATA_STATE_INITIAL, + coreLoading: true, +}; + +export const MOCK_METADATA_STATE_LOADED = { + ...MOCK_METADATA_STATE_INITIAL, + coreLoaded: true, + currentCountry: TEST_COUNTRIES.US, + version: TEST_VERSIONS.US_VERSION, + versionId: TEST_VERSIONS.US_VERSION_ID, +}; + +export const MOCK_METADATA_STATE_ERROR = { + ...MOCK_METADATA_STATE_INITIAL, + coreError: 'Failed to load metadata', +}; + +// Mock variables for entity categorization tests +export const MOCK_VARIABLES_RECORD = { + age: { + name: 'age', + entity: 'person', + description: 'Age of the person', + data_type: 'int', + }, + employment_income: { + name: 'employment_income', + entity: 'person', + description: 'Employment income', + data_type: 'float', + }, + state_name: { + name: 'state_name', + entity: 'household', + description: 'State name', + data_type: 'enum', + }, + is_married: { + name: 'is_married', + entity: 'tax_unit', + description: 'Whether filing jointly', + data_type: 'bool', + }, +}; + +// Expected US entities structure +export const EXPECTED_US_ENTITIES = { + person: { label: 'Person', plural: 'people', is_person: true }, + family: { label: 'Family', plural: 'families' }, + household: { label: 'Household', plural: 'households' }, + tax_unit: { label: 'Tax Unit', plural: 'tax units' }, + spm_unit: { label: 'SPM Unit', plural: 'SPM units' }, + marital_unit: { label: 'Marital Unit', plural: 'marital units' }, +}; + +// Expected UK entities structure +export const EXPECTED_UK_ENTITIES = { + person: { label: 'Person', plural: 'people', is_person: true }, + benunit: { label: 'Benefit Unit', plural: 'benefit units' }, + household: { label: 'Household', plural: 'households' }, +}; + +// Mock root state factory +export function createMockRootState(metadataOverrides = {}) { + return { + metadata: { + ...MOCK_METADATA_STATE_INITIAL, + ...metadataOverrides, + }, + }; +} diff --git a/app/src/tests/fixtures/routing/guards/guardsMocks.ts b/app/src/tests/fixtures/routing/guards/guardsMocks.ts new file mode 100644 index 000000000..89d21048f --- /dev/null +++ b/app/src/tests/fixtures/routing/guards/guardsMocks.ts @@ -0,0 +1,68 @@ +/** + * Fixtures for guards tests + */ +import { TEST_COUNTRIES } from '@/tests/fixtures/hooks/metadataHooksMocks'; + +// Re-export shared constants +export { TEST_COUNTRIES }; + +// Core metadata states +export const CORE_STATE = { + INITIAL: { + coreLoading: false, + coreLoaded: false, + coreError: null, + currentCountry: null, + }, + LOADING: { + coreLoading: true, + coreLoaded: false, + coreError: null, + currentCountry: TEST_COUNTRIES.US, + }, + LOADED: { + coreLoading: false, + coreLoaded: true, + coreError: null, + currentCountry: TEST_COUNTRIES.US, + }, + ERROR: { + coreLoading: false, + coreLoaded: false, + coreError: 'Failed to load core metadata', + currentCountry: TEST_COUNTRIES.US, + }, +} as const; + +// Parameters states +export const PARAMETERS_STATE = { + INITIAL: { + parametersLoading: false, + parametersLoaded: false, + parametersError: null, + }, + LOADING: { + parametersLoading: true, + parametersLoaded: false, + parametersError: null, + }, + LOADED: { + parametersLoading: false, + parametersLoaded: true, + parametersError: null, + }, + ERROR: { + parametersLoading: false, + parametersLoaded: false, + parametersError: 'Failed to load parameters', + }, +} as const; + +// Loading page messages +export const LOADING_MESSAGES = { + CORE: 'Loading metadata...', + PARAMETERS: 'Loading policy parameters...', +} as const; + +// Test child content +export const CHILD_CONTENT = 'Child Route Content'; diff --git a/app/src/tests/fixtures/storage/loadersMocks.ts b/app/src/tests/fixtures/storage/loadersMocks.ts new file mode 100644 index 000000000..a9cf297ad --- /dev/null +++ b/app/src/tests/fixtures/storage/loadersMocks.ts @@ -0,0 +1,100 @@ +/** + * Fixtures for storage loaders tests + */ +import type { CoreMetadata, CoreMetadataLoadResult } from '@/storage/loaders/coreMetadataLoader'; +import type { ParametersData, ParametersLoadResult } from '@/storage/loaders/parametersLoader'; +import { + createMockVariables, + createMockParameters, + createMockParameterValues, + createMockDatasets, + createMockCacheMetadata, + TEST_COUNTRIES, + TEST_VERSIONS, +} from './storageMocks'; + +// Re-export shared constants +export { TEST_COUNTRIES, TEST_VERSIONS }; + +// Core metadata factory +export function createMockCoreMetadata( + overrides: Partial = {} +): CoreMetadata { + return { + variables: createMockVariables(5), + datasets: createMockDatasets(2), + version: TEST_VERSIONS.US_VERSION, + versionId: TEST_VERSIONS.US_VERSION_ID, + ...overrides, + }; +} + +// Core metadata load result factory +export function createMockCoreMetadataLoadResult( + overrides: Partial = {} +): CoreMetadataLoadResult { + return { + data: createMockCoreMetadata(), + fromCache: false, + ...overrides, + }; +} + +// Parameters data factory +export function createMockParametersData( + overrides: Partial = {} +): ParametersData { + return { + parameters: createMockParameters(5), + parameterValues: createMockParameterValues(10), + ...overrides, + }; +} + +// Parameters load result factory +export function createMockParametersLoadResult( + overrides: Partial = {} +): ParametersLoadResult { + return { + data: createMockParametersData(), + fromCache: false, + ...overrides, + }; +} + +// Valid cache metadata for core (already loaded) +export function createValidCoreCache() { + return createMockCacheMetadata({ + coreLoaded: true, + parametersLoaded: false, + version: TEST_VERSIONS.US_VERSION, + versionId: TEST_VERSIONS.US_VERSION_ID, + }); +} + +// Valid cache metadata for parameters (already loaded) +export function createValidParametersCache() { + return createMockCacheMetadata({ + coreLoaded: true, + parametersLoaded: true, + version: TEST_VERSIONS.US_VERSION, + versionId: TEST_VERSIONS.US_VERSION_ID, + }); +} + +// Stale cache metadata (version mismatch) +export function createStaleCoreCache() { + return createMockCacheMetadata({ + coreLoaded: true, + parametersLoaded: false, + version: 'old-version-0.9.0', + versionId: 'old-version-id', + }); +} + +// API response shapes for mocking +export const API_RESPONSES = { + MODEL_VERSION: TEST_VERSIONS.US_VERSION, + MODEL_VERSION_ID: TEST_VERSIONS.US_VERSION_ID, + STALE_VERSION: 'old-version-0.9.0', +} as const; diff --git a/app/src/tests/fixtures/storage/storageMocks.ts b/app/src/tests/fixtures/storage/storageMocks.ts new file mode 100644 index 000000000..cdfc9341e --- /dev/null +++ b/app/src/tests/fixtures/storage/storageMocks.ts @@ -0,0 +1,145 @@ +/** + * Fixtures for storage module tests + */ +import type { + Variable, + Parameter, + ParameterValue, + Dataset, + CacheMetadata, +} from '@/storage/metadataDb'; + +// Test country IDs +export const TEST_COUNTRIES = { + US: 'us', + UK: 'uk', +} as const; + +// Test version IDs +export const TEST_VERSIONS = { + US_VERSION: 'us-version-1.0.0', + US_VERSION_ID: 'us-version-id-123', + UK_VERSION: 'uk-version-1.0.0', + UK_VERSION_ID: 'uk-version-id-456', +} as const; + +// Mock variable factory +export function createMockVariable(overrides: Partial = {}): Variable { + return { + id: 'var-1', + name: 'income_tax', + entity: 'person', + description: 'Income tax owed', + data_type: 'float', + possible_values: null, + tax_benefit_model_version_id: TEST_VERSIONS.US_VERSION_ID, + created_at: '2024-01-01T00:00:00Z', + ...overrides, + }; +} + +// Mock parameter factory +export function createMockParameter(overrides: Partial = {}): Parameter { + return { + id: 'param-1', + name: 'basic_rate', + label: 'Basic Rate', + description: 'Basic tax rate', + data_type: 'float', + unit: 'currency-USD', + tax_benefit_model_version_id: TEST_VERSIONS.US_VERSION_ID, + created_at: '2024-01-01T00:00:00Z', + ...overrides, + }; +} + +// Mock parameter value factory +export function createMockParameterValue( + overrides: Partial = {} +): ParameterValue { + return { + id: 'pv-1', + parameter_id: 'param-1', + value_json: 0.2, + start_date: '2024-01-01', + end_date: '2024-12-31', + policy_id: null, + dynamic_id: null, + created_at: '2024-01-01T00:00:00Z', + ...overrides, + }; +} + +// Mock dataset factory +export function createMockDataset(overrides: Partial = {}): Dataset { + return { + id: 'dataset-1', + name: 'cps_2023', + description: 'Current Population Survey 2023', + filepath: '/data/cps_2023.h5', + year: 2023, + is_output_dataset: false, + tax_benefit_model_id: 'model-us-123', + created_at: '2024-01-01T00:00:00Z', + updated_at: '2024-01-01T00:00:00Z', + ...overrides, + }; +} + +// Mock cache metadata factory +export function createMockCacheMetadata( + overrides: Partial = {} +): CacheMetadata { + return { + countryId: TEST_COUNTRIES.US, + version: TEST_VERSIONS.US_VERSION, + versionId: TEST_VERSIONS.US_VERSION_ID, + coreLoaded: true, + parametersLoaded: false, + timestamp: Date.now(), + ...overrides, + }; +} + +// Create multiple mock variables +export function createMockVariables(count: number): Variable[] { + return Array.from({ length: count }, (_, i) => + createMockVariable({ + id: `var-${i + 1}`, + name: `variable_${i + 1}`, + }) + ); +} + +// Create multiple mock parameters +export function createMockParameters(count: number): Parameter[] { + return Array.from({ length: count }, (_, i) => + createMockParameter({ + id: `param-${i + 1}`, + name: `parameter_${i + 1}`, + }) + ); +} + +// Create multiple mock parameter values +export function createMockParameterValues(count: number): ParameterValue[] { + return Array.from({ length: count }, (_, i) => + createMockParameterValue({ + id: `pv-${i + 1}`, + parameter_id: `param-${(i % 3) + 1}`, + start_date: `202${i}-01-01`, + end_date: `202${i}-12-31`, + }) + ); +} + +// Create multiple mock datasets +export function createMockDatasets(count: number): Dataset[] { + return Array.from({ length: count }, (_, i) => + createMockDataset({ + id: `dataset-${i + 1}`, + name: `dataset_${i + 1}`, + year: 2020 + i, + }) + ); +} diff --git a/app/src/tests/unit/api/v2/datasets.test.ts b/app/src/tests/unit/api/v2/datasets.test.ts new file mode 100644 index 000000000..a817d35b2 --- /dev/null +++ b/app/src/tests/unit/api/v2/datasets.test.ts @@ -0,0 +1,75 @@ +import { describe, expect, it, vi, beforeEach, afterEach } from 'vitest'; +import { + TEST_COUNTRIES, + MODEL_IDS, + SAMPLE_RESPONSES, + API_ENDPOINTS, + mockFetchSuccess, + mockFetchError, +} from '@/tests/fixtures/api/v2/apiV2Mocks'; + +import { fetchDatasets } from '@/api/v2/datasets'; + +describe('datasets', () => { + const originalFetch = global.fetch; + + beforeEach(() => { + vi.clearAllMocks(); + global.fetch = vi.fn(); + }); + + afterEach(() => { + global.fetch = originalFetch; + }); + + describe('fetchDatasets', () => { + it('given US country then fetches datasets with correct URL', async () => { + // Given + vi.mocked(global.fetch).mockResolvedValue(mockFetchSuccess(SAMPLE_RESPONSES.DATASETS)); + + // When + const result = await fetchDatasets(TEST_COUNTRIES.US); + + // Then + expect(result).toEqual(SAMPLE_RESPONSES.DATASETS); + expect(global.fetch).toHaveBeenCalledWith(API_ENDPOINTS.DATASETS(MODEL_IDS.US)); + }); + + it('given UK country then fetches datasets with correct model ID', async () => { + // Given + vi.mocked(global.fetch).mockResolvedValue(mockFetchSuccess(SAMPLE_RESPONSES.DATASETS)); + + // When + await fetchDatasets(TEST_COUNTRIES.UK); + + // Then + expect(global.fetch).toHaveBeenCalledWith(API_ENDPOINTS.DATASETS(MODEL_IDS.UK)); + }); + + it('given failed response then throws error', async () => { + // Given + vi.mocked(global.fetch).mockResolvedValue(mockFetchError()); + + // When/Then + await expect(fetchDatasets(TEST_COUNTRIES.US)).rejects.toThrow( + `Failed to fetch datasets for ${TEST_COUNTRIES.US}` + ); + }); + + it('given unknown country then throws error', async () => { + // When/Then + await expect(fetchDatasets('unknown')).rejects.toThrow('Unknown country: unknown'); + }); + + it('given empty datasets response then returns empty array', async () => { + // Given + vi.mocked(global.fetch).mockResolvedValue(mockFetchSuccess([])); + + // When + const result = await fetchDatasets(TEST_COUNTRIES.US); + + // Then + expect(result).toEqual([]); + }); + }); +}); diff --git a/app/src/tests/unit/api/v2/parameters.test.ts b/app/src/tests/unit/api/v2/parameters.test.ts new file mode 100644 index 000000000..fea85bf4f --- /dev/null +++ b/app/src/tests/unit/api/v2/parameters.test.ts @@ -0,0 +1,122 @@ +import { describe, expect, it, vi, beforeEach, afterEach } from 'vitest'; +import { + TEST_COUNTRIES, + MODEL_IDS, + SAMPLE_RESPONSES, + API_ENDPOINTS, + mockFetchSuccess, + mockFetchError, +} from '@/tests/fixtures/api/v2/apiV2Mocks'; + +import { fetchParameters, fetchParameterValues } from '@/api/v2/parameters'; + +describe('parameters', () => { + const originalFetch = global.fetch; + + beforeEach(() => { + vi.clearAllMocks(); + global.fetch = vi.fn(); + }); + + afterEach(() => { + global.fetch = originalFetch; + }); + + describe('fetchParameters', () => { + it('given US country then fetches parameters with correct URL', async () => { + // Given + vi.mocked(global.fetch).mockResolvedValue(mockFetchSuccess(SAMPLE_RESPONSES.PARAMETERS)); + + // When + const result = await fetchParameters(TEST_COUNTRIES.US); + + // Then + expect(result).toEqual(SAMPLE_RESPONSES.PARAMETERS); + expect(global.fetch).toHaveBeenCalledWith(API_ENDPOINTS.PARAMETERS(MODEL_IDS.US)); + }); + + it('given UK country then fetches parameters with correct model ID', async () => { + // Given + vi.mocked(global.fetch).mockResolvedValue(mockFetchSuccess(SAMPLE_RESPONSES.PARAMETERS)); + + // When + await fetchParameters(TEST_COUNTRIES.UK); + + // Then + expect(global.fetch).toHaveBeenCalledWith(API_ENDPOINTS.PARAMETERS(MODEL_IDS.UK)); + }); + + it('given custom limit then includes limit in URL', async () => { + // Given + const customLimit = 500; + vi.mocked(global.fetch).mockResolvedValue(mockFetchSuccess(SAMPLE_RESPONSES.PARAMETERS)); + + // When + await fetchParameters(TEST_COUNTRIES.US, customLimit); + + // Then + expect(global.fetch).toHaveBeenCalledWith( + API_ENDPOINTS.PARAMETERS(MODEL_IDS.US, customLimit) + ); + }); + + it('given failed response then throws error', async () => { + // Given + vi.mocked(global.fetch).mockResolvedValue(mockFetchError()); + + // When/Then + await expect(fetchParameters(TEST_COUNTRIES.US)).rejects.toThrow( + `Failed to fetch parameters for ${TEST_COUNTRIES.US}` + ); + }); + + it('given unknown country then throws error', async () => { + // When/Then + await expect(fetchParameters('unknown')).rejects.toThrow('Unknown country: unknown'); + }); + }); + + describe('fetchParameterValues', () => { + it('given US country then fetches parameter values with correct URL', async () => { + // Given + vi.mocked(global.fetch).mockResolvedValue( + mockFetchSuccess(SAMPLE_RESPONSES.PARAMETER_VALUES) + ); + + // When + const result = await fetchParameterValues(TEST_COUNTRIES.US); + + // Then + expect(result).toEqual(SAMPLE_RESPONSES.PARAMETER_VALUES); + expect(global.fetch).toHaveBeenCalledWith(API_ENDPOINTS.PARAMETER_VALUES(MODEL_IDS.US)); + }); + + it('given UK country then fetches parameter values with correct model ID', async () => { + // Given + vi.mocked(global.fetch).mockResolvedValue( + mockFetchSuccess(SAMPLE_RESPONSES.PARAMETER_VALUES) + ); + + // When + await fetchParameterValues(TEST_COUNTRIES.UK); + + // Then + expect(global.fetch).toHaveBeenCalledWith(API_ENDPOINTS.PARAMETER_VALUES(MODEL_IDS.UK)); + }); + + it('given failed response then throws error', async () => { + // Given + vi.mocked(global.fetch).mockResolvedValue(mockFetchError()); + + // When/Then + await expect(fetchParameterValues(TEST_COUNTRIES.US)).rejects.toThrow( + `Failed to fetch parameter values for ${TEST_COUNTRIES.US}` + ); + }); + + it('given unknown country then throws error', async () => { + // When/Then + await expect(fetchParameterValues('unknown')).rejects.toThrow('Unknown country: unknown'); + }); + }); +}); diff --git a/app/src/tests/unit/api/v2/taxBenefitModels.test.ts b/app/src/tests/unit/api/v2/taxBenefitModels.test.ts new file mode 100644 index 000000000..fd36291b7 --- /dev/null +++ b/app/src/tests/unit/api/v2/taxBenefitModels.test.ts @@ -0,0 +1,174 @@ +import { describe, expect, it, vi, beforeEach, afterEach } from 'vitest'; +import { + TEST_COUNTRIES, + MODEL_IDS, + SAMPLE_RESPONSES, + API_ENDPOINTS, + mockFetchSuccess, + mockFetchError, +} from '@/tests/fixtures/api/v2/apiV2Mocks'; + +// Import the module +import { + fetchTaxBenefitModels, + fetchModelVersion, + fetchModelVersionId, + getModelId, + COUNTRY_TO_MODEL_ID, + API_V2_BASE_URL, +} from '@/api/v2/taxBenefitModels'; + +describe('taxBenefitModels', () => { + const originalFetch = global.fetch; + + beforeEach(() => { + vi.clearAllMocks(); + global.fetch = vi.fn(); + }); + + afterEach(() => { + global.fetch = originalFetch; + }); + + describe('COUNTRY_TO_MODEL_ID', () => { + it('given US country then returns correct model ID', () => { + // Then + expect(COUNTRY_TO_MODEL_ID.us).toBe(MODEL_IDS.US); + }); + + it('given UK country then returns correct model ID', () => { + // Then + expect(COUNTRY_TO_MODEL_ID.uk).toBe(MODEL_IDS.UK); + }); + }); + + describe('API_V2_BASE_URL', () => { + it('given API URL then matches expected value', () => { + // Then + expect(API_V2_BASE_URL).toBe('https://v2.api.policyengine.org'); + }); + }); + + describe('getModelId', () => { + it('given US country then returns US model ID', () => { + // When + const result = getModelId(TEST_COUNTRIES.US); + + // Then + expect(result).toBe(MODEL_IDS.US); + }); + + it('given UK country then returns UK model ID', () => { + // When + const result = getModelId(TEST_COUNTRIES.UK); + + // Then + expect(result).toBe(MODEL_IDS.UK); + }); + + it('given unknown country then throws error', () => { + // When/Then + expect(() => getModelId('unknown')).toThrow('Unknown country: unknown'); + }); + }); + + describe('fetchTaxBenefitModels', () => { + it('given successful response then returns array of models', async () => { + // Given + vi.mocked(global.fetch).mockResolvedValue( + mockFetchSuccess(SAMPLE_RESPONSES.TAX_BENEFIT_MODELS) + ); + + // When + const result = await fetchTaxBenefitModels(); + + // Then + expect(result).toEqual(SAMPLE_RESPONSES.TAX_BENEFIT_MODELS); + expect(global.fetch).toHaveBeenCalledWith(API_ENDPOINTS.TAX_BENEFIT_MODELS); + }); + + it('given failed response then throws error', async () => { + // Given + vi.mocked(global.fetch).mockResolvedValue(mockFetchError()); + + // When/Then + await expect(fetchTaxBenefitModels()).rejects.toThrow('Failed to fetch tax benefit models'); + }); + }); + + describe('fetchModelVersion', () => { + it('given US country with versions then returns first version string', async () => { + // Given + vi.mocked(global.fetch).mockResolvedValue( + mockFetchSuccess(SAMPLE_RESPONSES.MODEL_VERSIONS) + ); + + // When + const result = await fetchModelVersion(TEST_COUNTRIES.US); + + // Then + expect(result).toBe(SAMPLE_RESPONSES.MODEL_VERSIONS[0].version); + expect(global.fetch).toHaveBeenCalledWith(API_ENDPOINTS.MODEL_VERSIONS(MODEL_IDS.US)); + }); + + it('given failed response then throws error', async () => { + // Given + vi.mocked(global.fetch).mockResolvedValue(mockFetchError()); + + // When/Then + await expect(fetchModelVersion(TEST_COUNTRIES.US)).rejects.toThrow( + `Failed to fetch model version for ${TEST_COUNTRIES.US}` + ); + }); + + it('given empty versions array then throws error', async () => { + // Given + vi.mocked(global.fetch).mockResolvedValue( + mockFetchSuccess(SAMPLE_RESPONSES.EMPTY_VERSIONS) + ); + + // When/Then + await expect(fetchModelVersion(TEST_COUNTRIES.US)).rejects.toThrow( + `No versions found for ${TEST_COUNTRIES.US}` + ); + }); + }); + + describe('fetchModelVersionId', () => { + it('given US country with versions then returns first version ID', async () => { + // Given + vi.mocked(global.fetch).mockResolvedValue( + mockFetchSuccess(SAMPLE_RESPONSES.MODEL_VERSIONS) + ); + + // When + const result = await fetchModelVersionId(TEST_COUNTRIES.US); + + // Then + expect(result).toBe(SAMPLE_RESPONSES.MODEL_VERSIONS[0].id); + expect(global.fetch).toHaveBeenCalledWith(API_ENDPOINTS.MODEL_VERSIONS(MODEL_IDS.US)); + }); + + it('given failed response then throws error', async () => { + // Given + vi.mocked(global.fetch).mockResolvedValue(mockFetchError()); + + // When/Then + await expect(fetchModelVersionId(TEST_COUNTRIES.US)).rejects.toThrow( + `Failed to fetch model version for ${TEST_COUNTRIES.US}` + ); + }); + + it('given empty versions array then throws error', async () => { + // Given + vi.mocked(global.fetch).mockResolvedValue( + mockFetchSuccess(SAMPLE_RESPONSES.EMPTY_VERSIONS) + ); + + // When/Then + await expect(fetchModelVersionId(TEST_COUNTRIES.US)).rejects.toThrow( + `No versions found for ${TEST_COUNTRIES.US}` + ); + }); + }); +}); diff --git a/app/src/tests/unit/api/v2/variables.test.ts b/app/src/tests/unit/api/v2/variables.test.ts new file mode 100644 index 000000000..356eaf972 --- /dev/null +++ b/app/src/tests/unit/api/v2/variables.test.ts @@ -0,0 +1,76 @@ +import { describe, expect, it, vi, beforeEach, afterEach } from 'vitest'; +import { + TEST_COUNTRIES, + MODEL_IDS, + SAMPLE_RESPONSES, + API_ENDPOINTS, + mockFetchSuccess, + mockFetchError, +} from '@/tests/fixtures/api/v2/apiV2Mocks'; + +import { fetchVariables } from '@/api/v2/variables'; + +describe('variables', () => { + const originalFetch = global.fetch; + + beforeEach(() => { + vi.clearAllMocks(); + global.fetch = vi.fn(); + }); + + afterEach(() => { + global.fetch = originalFetch; + }); + + describe('fetchVariables', () => { + it('given US country then fetches variables with correct URL', async () => { + // Given + vi.mocked(global.fetch).mockResolvedValue(mockFetchSuccess(SAMPLE_RESPONSES.VARIABLES)); + + // When + const result = await fetchVariables(TEST_COUNTRIES.US); + + // Then + expect(result).toEqual(SAMPLE_RESPONSES.VARIABLES); + expect(global.fetch).toHaveBeenCalledWith(API_ENDPOINTS.VARIABLES(MODEL_IDS.US)); + }); + + it('given UK country then fetches variables with correct model ID', async () => { + // Given + vi.mocked(global.fetch).mockResolvedValue(mockFetchSuccess(SAMPLE_RESPONSES.VARIABLES)); + + // When + await fetchVariables(TEST_COUNTRIES.UK); + + // Then + expect(global.fetch).toHaveBeenCalledWith(API_ENDPOINTS.VARIABLES(MODEL_IDS.UK)); + }); + + it('given custom limit then includes limit in URL', async () => { + // Given + const customLimit = 500; + vi.mocked(global.fetch).mockResolvedValue(mockFetchSuccess(SAMPLE_RESPONSES.VARIABLES)); + + // When + await fetchVariables(TEST_COUNTRIES.US, customLimit); + + // Then + expect(global.fetch).toHaveBeenCalledWith(API_ENDPOINTS.VARIABLES(MODEL_IDS.US, customLimit)); + }); + + it('given failed response then throws error', async () => { + // Given + vi.mocked(global.fetch).mockResolvedValue(mockFetchError()); + + // When/Then + await expect(fetchVariables(TEST_COUNTRIES.US)).rejects.toThrow( + `Failed to fetch variables for ${TEST_COUNTRIES.US}` + ); + }); + + it('given unknown country then throws error', async () => { + // When/Then + await expect(fetchVariables('unknown')).rejects.toThrow('Unknown country: unknown'); + }); + }); +}); diff --git a/app/src/tests/unit/data/static/basicInputs.test.ts b/app/src/tests/unit/data/static/basicInputs.test.ts new file mode 100644 index 000000000..2e76e4380 --- /dev/null +++ b/app/src/tests/unit/data/static/basicInputs.test.ts @@ -0,0 +1,71 @@ +import { describe, expect, it } from 'vitest'; +import { getBasicInputs, US_BASIC_INPUTS, UK_BASIC_INPUTS } from '@/data/static/basicInputs'; +import { + TEST_COUNTRIES, + EXPECTED_US_BASIC_INPUTS, + EXPECTED_UK_BASIC_INPUTS, +} from '@/tests/fixtures/data/static/staticDataMocks'; + +describe('basicInputs', () => { + describe('US_BASIC_INPUTS', () => { + it('given US basic inputs then contains expected fields', () => { + // Then + expect(US_BASIC_INPUTS).toEqual([...EXPECTED_US_BASIC_INPUTS]); + }); + + it('given US basic inputs then includes age and employment_income', () => { + // Then + expect(US_BASIC_INPUTS).toContain('age'); + expect(US_BASIC_INPUTS).toContain('employment_income'); + }); + + it('given US basic inputs then includes state_name for geographic selection', () => { + // Then + expect(US_BASIC_INPUTS).toContain('state_name'); + }); + }); + + describe('UK_BASIC_INPUTS', () => { + it('given UK basic inputs then contains expected fields', () => { + // Then + expect(UK_BASIC_INPUTS).toEqual([...EXPECTED_UK_BASIC_INPUTS]); + }); + + it('given UK basic inputs then includes age and employment_income', () => { + // Then + expect(UK_BASIC_INPUTS).toContain('age'); + expect(UK_BASIC_INPUTS).toContain('employment_income'); + }); + + it('given UK basic inputs then includes region for geographic selection', () => { + // Then + expect(UK_BASIC_INPUTS).toContain('region'); + }); + }); + + describe('getBasicInputs', () => { + it('given US country code then returns US basic inputs', () => { + // When + const inputs = getBasicInputs(TEST_COUNTRIES.US); + + // Then + expect(inputs).toBe(US_BASIC_INPUTS); + }); + + it('given UK country code then returns UK basic inputs', () => { + // When + const inputs = getBasicInputs(TEST_COUNTRIES.UK); + + // Then + expect(inputs).toBe(UK_BASIC_INPUTS); + }); + + it('given unknown country code then returns empty array', () => { + // When + const inputs = getBasicInputs(TEST_COUNTRIES.UNKNOWN); + + // Then + expect(inputs).toEqual([]); + }); + }); +}); diff --git a/app/src/tests/unit/data/static/entities.test.ts b/app/src/tests/unit/data/static/entities.test.ts new file mode 100644 index 000000000..47fdad11c --- /dev/null +++ b/app/src/tests/unit/data/static/entities.test.ts @@ -0,0 +1,95 @@ +import { describe, expect, it } from 'vitest'; +import { getEntities, US_ENTITIES, UK_ENTITIES } from '@/data/static/entities'; +import { + TEST_COUNTRIES, + EXPECTED_US_ENTITY_KEYS, + EXPECTED_UK_ENTITY_KEYS, + EXPECTED_ENTITY_PROPERTIES, +} from '@/tests/fixtures/data/static/staticDataMocks'; + +describe('entities', () => { + describe('US_ENTITIES', () => { + it('given US entities then contains all expected entity types', () => { + // When + const entityKeys = Object.keys(US_ENTITIES); + + // Then + expect(entityKeys).toEqual(expect.arrayContaining([...EXPECTED_US_ENTITY_KEYS])); + expect(entityKeys.length).toBe(EXPECTED_US_ENTITY_KEYS.length); + }); + + it('given US entities then person has is_person flag', () => { + // When + const person = US_ENTITIES.person; + + // Then + expect(person.is_person).toBe(true); + expect(person.label).toBe(EXPECTED_ENTITY_PROPERTIES.PERSON.label); + expect(person.plural).toBe(EXPECTED_ENTITY_PROPERTIES.PERSON.plural); + }); + + it('given US entities then tax_unit has correct properties', () => { + // When + const taxUnit = US_ENTITIES.tax_unit; + + // Then + expect(taxUnit.label).toBe(EXPECTED_ENTITY_PROPERTIES.TAX_UNIT.label); + expect(taxUnit.plural).toBe(EXPECTED_ENTITY_PROPERTIES.TAX_UNIT.plural); + expect(taxUnit.is_person).toBeUndefined(); + }); + }); + + describe('UK_ENTITIES', () => { + it('given UK entities then contains all expected entity types', () => { + // When + const entityKeys = Object.keys(UK_ENTITIES); + + // Then + expect(entityKeys).toEqual(expect.arrayContaining([...EXPECTED_UK_ENTITY_KEYS])); + expect(entityKeys.length).toBe(EXPECTED_UK_ENTITY_KEYS.length); + }); + + it('given UK entities then person has is_person flag', () => { + // When + const person = UK_ENTITIES.person; + + // Then + expect(person.is_person).toBe(true); + }); + + it('given UK entities then benunit has correct properties', () => { + // When + const benunit = UK_ENTITIES.benunit; + + // Then + expect(benunit.label).toBe(EXPECTED_ENTITY_PROPERTIES.BENUNIT.label); + expect(benunit.plural).toBe(EXPECTED_ENTITY_PROPERTIES.BENUNIT.plural); + }); + }); + + describe('getEntities', () => { + it('given US country code then returns US entities', () => { + // When + const entities = getEntities(TEST_COUNTRIES.US); + + // Then + expect(entities).toBe(US_ENTITIES); + }); + + it('given UK country code then returns UK entities', () => { + // When + const entities = getEntities(TEST_COUNTRIES.UK); + + // Then + expect(entities).toBe(UK_ENTITIES); + }); + + it('given unknown country code then returns empty object', () => { + // When + const entities = getEntities(TEST_COUNTRIES.UNKNOWN); + + // Then + expect(entities).toEqual({}); + }); + }); +}); diff --git a/app/src/tests/unit/data/static/taxYears.test.ts b/app/src/tests/unit/data/static/taxYears.test.ts new file mode 100644 index 000000000..67eed3357 --- /dev/null +++ b/app/src/tests/unit/data/static/taxYears.test.ts @@ -0,0 +1,134 @@ +import { describe, expect, it } from 'vitest'; +import { getTaxYears, getDateRange } from '@/data/static/taxYears'; +import { + TEST_COUNTRIES, + EXPECTED_TAX_YEAR_RANGE, + DEFAULT_DATE_RANGE, +} from '@/tests/fixtures/data/static/staticDataMocks'; + +describe('taxYears', () => { + describe('getTaxYears', () => { + it('given US country code then returns array of tax year options', () => { + // When + const taxYears = getTaxYears(TEST_COUNTRIES.US); + + // Then + expect(Array.isArray(taxYears)).toBe(true); + expect(taxYears.length).toBeGreaterThan(0); + }); + + it('given US country code then each option has value and label', () => { + // When + const taxYears = getTaxYears(TEST_COUNTRIES.US); + + // Then + taxYears.forEach((option) => { + expect(option).toHaveProperty('value'); + expect(option).toHaveProperty('label'); + expect(typeof option.value).toBe('string'); + expect(typeof option.label).toBe('string'); + }); + }); + + it('given US country code then years are sorted ascending', () => { + // When + const taxYears = getTaxYears(TEST_COUNTRIES.US); + const years = taxYears.map((opt) => parseInt(opt.value, 10)); + + // Then + for (let i = 1; i < years.length; i++) { + expect(years[i]).toBeGreaterThanOrEqual(years[i - 1]); + } + }); + + it('given US country code then includes expected year range', () => { + // When + const taxYears = getTaxYears(TEST_COUNTRIES.US); + const years = taxYears.map((opt) => parseInt(opt.value, 10)); + + // Then + expect(Math.min(...years)).toBe(EXPECTED_TAX_YEAR_RANGE.US.min); + expect(Math.max(...years)).toBe(EXPECTED_TAX_YEAR_RANGE.US.max); + }); + + it('given UK country code then returns array of tax year options', () => { + // When + const taxYears = getTaxYears(TEST_COUNTRIES.UK); + + // Then + expect(Array.isArray(taxYears)).toBe(true); + expect(taxYears.length).toBeGreaterThan(0); + }); + + it('given UK country code then includes expected year range', () => { + // When + const taxYears = getTaxYears(TEST_COUNTRIES.UK); + const years = taxYears.map((opt) => parseInt(opt.value, 10)); + + // Then + expect(Math.min(...years)).toBe(EXPECTED_TAX_YEAR_RANGE.UK.min); + expect(Math.max(...years)).toBe(EXPECTED_TAX_YEAR_RANGE.UK.max); + }); + + it('given unknown country code then returns empty array', () => { + // When + const taxYears = getTaxYears(TEST_COUNTRIES.UNKNOWN); + + // Then + expect(taxYears).toEqual([]); + }); + }); + + describe('getDateRange', () => { + it('given US country code then returns date range object', () => { + // When + const dateRange = getDateRange(TEST_COUNTRIES.US); + + // Then + expect(dateRange).toHaveProperty('minDate'); + expect(dateRange).toHaveProperty('maxDate'); + }); + + it('given US country code then dates are in YYYY-MM-DD format', () => { + // When + const dateRange = getDateRange(TEST_COUNTRIES.US); + + // Then + expect(dateRange.minDate).toMatch(/^\d{4}-\d{2}-\d{2}$/); + expect(dateRange.maxDate).toMatch(/^\d{4}-\d{2}-\d{2}$/); + }); + + it('given US country code then minDate starts on Jan 1', () => { + // When + const dateRange = getDateRange(TEST_COUNTRIES.US); + + // Then + expect(dateRange.minDate).toMatch(/-01-01$/); + }); + + it('given US country code then maxDate ends on Dec 31', () => { + // When + const dateRange = getDateRange(TEST_COUNTRIES.US); + + // Then + expect(dateRange.maxDate).toMatch(/-12-31$/); + }); + + it('given UK country code then returns valid date range', () => { + // When + const dateRange = getDateRange(TEST_COUNTRIES.UK); + + // Then + expect(dateRange.minDate).toMatch(/^\d{4}-01-01$/); + expect(dateRange.maxDate).toMatch(/^\d{4}-12-31$/); + }); + + it('given unknown country code then returns default fallback range', () => { + // When + const dateRange = getDateRange(TEST_COUNTRIES.UNKNOWN); + + // Then + expect(dateRange).toEqual(DEFAULT_DATE_RANGE); + }); + }); +}); diff --git a/app/src/tests/unit/hooks/useBasicInputFields.test.ts b/app/src/tests/unit/hooks/useBasicInputFields.test.ts new file mode 100644 index 000000000..d3389207b --- /dev/null +++ b/app/src/tests/unit/hooks/useBasicInputFields.test.ts @@ -0,0 +1,72 @@ +import { describe, expect, it, vi } from 'vitest'; +import { renderHook } from '@test-utils'; +import { useBasicInputFields } from '@/hooks/useBasicInputFields'; +import { + TEST_COUNTRIES, + MOCK_VARIABLES_RECORD, + createMockRootState, +} from '@/tests/fixtures/hooks/metadataHooksMocks'; + +// Mock react-redux +vi.mock('react-redux', async () => { + const actual = await vi.importActual('react-redux'); + return { + ...actual, + useSelector: vi.fn((selector) => + selector( + createMockRootState({ + variables: MOCK_VARIABLES_RECORD, + }) + ) + ), + }; +}); + +describe('useBasicInputFields', () => { + describe('entity categorization', () => { + it('given US country with variables then returns categorized fields', () => { + // When + const { result } = renderHook(() => useBasicInputFields(TEST_COUNTRIES.US)); + + // Then + expect(typeof result.current).toBe('object'); + }); + + it('given US country then person fields include age and employment_income', () => { + // When + const { result } = renderHook(() => useBasicInputFields(TEST_COUNTRIES.US)); + + // Then + if (result.current.person) { + expect(result.current.person).toContain('age'); + expect(result.current.person).toContain('employment_income'); + } + }); + + it('given US country then creates separate categories for different entities', () => { + // When + const { result } = renderHook(() => useBasicInputFields(TEST_COUNTRIES.US)); + + // Then + // Should have at least person category + expect(Object.keys(result.current).length).toBeGreaterThan(0); + }); + }); + + describe('memoization', () => { + it('given same country then returns memoized result', () => { + // Given + const { result, rerender } = renderHook( + ({ countryId }) => useBasicInputFields(countryId), + { initialProps: { countryId: TEST_COUNTRIES.US } } + ); + const firstResult = result.current; + + // When + rerender({ countryId: TEST_COUNTRIES.US }); + + // Then - should return stable reference + expect(result.current).toBe(firstResult); + }); + }); +}); diff --git a/app/src/tests/unit/hooks/useCoreMetadata.test.ts b/app/src/tests/unit/hooks/useCoreMetadata.test.ts new file mode 100644 index 000000000..e96f80579 --- /dev/null +++ b/app/src/tests/unit/hooks/useCoreMetadata.test.ts @@ -0,0 +1,153 @@ +import { describe, expect, it, vi, beforeEach } from 'vitest'; +import { renderHook } from '@test-utils'; +import { + TEST_COUNTRIES, + MOCK_METADATA_STATE_INITIAL, + MOCK_METADATA_STATE_LOADING, + MOCK_METADATA_STATE_LOADED, + MOCK_METADATA_STATE_ERROR, +} from '@/tests/fixtures/hooks/metadataHooksMocks'; + +// Mock dispatch function +const mockDispatch = vi.fn(); + +// Mock state values +let mockState = { metadata: MOCK_METADATA_STATE_INITIAL }; + +// Mock react-redux +vi.mock('react-redux', async () => { + const actual = await vi.importActual('react-redux'); + return { + ...actual, + useDispatch: () => mockDispatch, + useSelector: (selector: (state: typeof mockState) => unknown) => selector(mockState), + }; +}); + +// Mock the reducer module - need to include default export for store +vi.mock('@/reducers/metadataReducer', async (importOriginal) => { + const actual = await importOriginal(); + return { + ...actual, + fetchCoreMetadataThunk: vi.fn((countryId: string) => ({ type: 'FETCH_CORE', payload: countryId })), + }; +}); + +// Import after mocks are set up +import { selectCoreMetadataState, useFetchCoreMetadata } from '@/hooks/useCoreMetadata'; +import { fetchCoreMetadataThunk } from '@/reducers/metadataReducer'; + +describe('useCoreMetadata', () => { + beforeEach(() => { + vi.clearAllMocks(); + mockState = { metadata: MOCK_METADATA_STATE_INITIAL }; + }); + + describe('selectCoreMetadataState', () => { + it('given initial state then returns loading as false', () => { + // Given + const state = { metadata: MOCK_METADATA_STATE_INITIAL }; + + // When + const result = selectCoreMetadataState(state); + + // Then + expect(result.coreLoading).toBe(false); + expect(result.coreLoaded).toBe(false); + expect(result.coreError).toBeNull(); + }); + + it('given loading state then returns loading as true', () => { + // Given + const state = { metadata: MOCK_METADATA_STATE_LOADING }; + + // When + const result = selectCoreMetadataState(state); + + // Then + expect(result.coreLoading).toBe(true); + }); + + it('given loaded state then returns loaded as true with country', () => { + // Given + const state = { metadata: MOCK_METADATA_STATE_LOADED }; + + // When + const result = selectCoreMetadataState(state); + + // Then + expect(result.coreLoaded).toBe(true); + expect(result.currentCountry).toBe(TEST_COUNTRIES.US); + }); + + it('given error state then returns error message', () => { + // Given + const state = { metadata: MOCK_METADATA_STATE_ERROR }; + + // When + const result = selectCoreMetadataState(state); + + // Then + expect(result.coreError).toBe('Failed to load metadata'); + }); + }); + + describe('useFetchCoreMetadata', () => { + it('given initial state and country then dispatches fetch action', () => { + // Given + mockState = { metadata: MOCK_METADATA_STATE_INITIAL }; + + // When + renderHook(() => useFetchCoreMetadata(TEST_COUNTRIES.US)); + + // Then + expect(mockDispatch).toHaveBeenCalled(); + expect(fetchCoreMetadataThunk).toHaveBeenCalledWith(TEST_COUNTRIES.US); + }); + + it('given loading state then does not dispatch', () => { + // Given + mockState = { metadata: MOCK_METADATA_STATE_LOADING }; + + // When + renderHook(() => useFetchCoreMetadata(TEST_COUNTRIES.US)); + + // Then + expect(mockDispatch).not.toHaveBeenCalled(); + }); + + it('given loaded state for same country then does not dispatch', () => { + // Given + mockState = { metadata: MOCK_METADATA_STATE_LOADED }; + + // When + renderHook(() => useFetchCoreMetadata(TEST_COUNTRIES.US)); + + // Then + expect(mockDispatch).not.toHaveBeenCalled(); + }); + + it('given loaded state for different country then dispatches fetch', () => { + // Given + mockState = { metadata: MOCK_METADATA_STATE_LOADED }; + + // When + renderHook(() => useFetchCoreMetadata(TEST_COUNTRIES.UK)); + + // Then + expect(mockDispatch).toHaveBeenCalled(); + expect(fetchCoreMetadataThunk).toHaveBeenCalledWith(TEST_COUNTRIES.UK); + }); + + it('given empty country then does not dispatch', () => { + // Given + mockState = { metadata: MOCK_METADATA_STATE_INITIAL }; + + // When + renderHook(() => useFetchCoreMetadata('')); + + // Then + expect(mockDispatch).not.toHaveBeenCalled(); + }); + }); +}); diff --git a/app/src/tests/unit/hooks/useStaticMetadata.test.ts b/app/src/tests/unit/hooks/useStaticMetadata.test.ts new file mode 100644 index 000000000..66a57e768 --- /dev/null +++ b/app/src/tests/unit/hooks/useStaticMetadata.test.ts @@ -0,0 +1,188 @@ +import { describe, expect, it } from 'vitest'; +import { renderHook } from '@test-utils'; +import { + useStaticMetadata, + useEntities, + useBasicInputs, + useTimePeriods, + useModelledPolicies, + useCurrentLawId, +} from '@/hooks/useStaticMetadata'; +import { TEST_COUNTRIES, TEST_YEAR } from '@/tests/fixtures/hooks/metadataHooksMocks'; + +describe('useStaticMetadata', () => { + describe('useStaticMetadata (composite hook)', () => { + it('given US country then returns complete static metadata', () => { + // When + const { result } = renderHook(() => useStaticMetadata(TEST_COUNTRIES.US, TEST_YEAR)); + + // Then + expect(result.current).toHaveProperty('entities'); + expect(result.current).toHaveProperty('basicInputs'); + expect(result.current).toHaveProperty('timePeriods'); + expect(result.current).toHaveProperty('regions'); + expect(result.current).toHaveProperty('regionVersions'); + expect(result.current).toHaveProperty('modelledPolicies'); + expect(result.current).toHaveProperty('currentLawId'); + }); + + it('given US country then entities contains person entity', () => { + // When + const { result } = renderHook(() => useStaticMetadata(TEST_COUNTRIES.US, TEST_YEAR)); + + // Then + expect(result.current.entities).toHaveProperty('person'); + expect(result.current.entities.person).toHaveProperty('label'); + }); + + it('given US country then basicInputs includes age and employment_income', () => { + // When + const { result } = renderHook(() => useStaticMetadata(TEST_COUNTRIES.US, TEST_YEAR)); + + // Then + expect(result.current.basicInputs).toContain('age'); + expect(result.current.basicInputs).toContain('employment_income'); + }); + + it('given UK country then returns UK-specific entities', () => { + // When + const { result } = renderHook(() => useStaticMetadata(TEST_COUNTRIES.UK, TEST_YEAR)); + + // Then + expect(result.current.entities).toHaveProperty('person'); + expect(result.current.entities).toHaveProperty('benunit'); + expect(result.current.entities).not.toHaveProperty('tax_unit'); + }); + + it('given year change then updates regions', () => { + // Given + const { result, rerender } = renderHook( + ({ year }) => useStaticMetadata(TEST_COUNTRIES.US, year), + { initialProps: { year: 2024 } } + ); + const firstRegions = result.current.regions; + + // When + rerender({ year: 2025 }); + + // Then - regions array reference should be stable if content is same + expect(result.current.regions).toBeDefined(); + }); + }); + + describe('useEntities', () => { + it('given US country then returns US entity definitions', () => { + // When + const { result } = renderHook(() => useEntities(TEST_COUNTRIES.US)); + + // Then + expect(result.current).toHaveProperty('person'); + expect(result.current).toHaveProperty('tax_unit'); + expect(result.current).toHaveProperty('household'); + }); + + it('given UK country then returns UK entity definitions', () => { + // When + const { result } = renderHook(() => useEntities(TEST_COUNTRIES.UK)); + + // Then + expect(result.current).toHaveProperty('person'); + expect(result.current).toHaveProperty('benunit'); + }); + + it('given same country then returns memoized result', () => { + // Given + const { result, rerender } = renderHook( + ({ countryId }) => useEntities(countryId), + { initialProps: { countryId: TEST_COUNTRIES.US } } + ); + const firstResult = result.current; + + // When + rerender({ countryId: TEST_COUNTRIES.US }); + + // Then + expect(result.current).toBe(firstResult); + }); + }); + + describe('useBasicInputs', () => { + it('given US country then returns US basic inputs', () => { + // When + const { result } = renderHook(() => useBasicInputs(TEST_COUNTRIES.US)); + + // Then + expect(result.current).toContain('age'); + expect(result.current).toContain('employment_income'); + expect(result.current).toContain('state_name'); + }); + + it('given UK country then returns UK basic inputs', () => { + // When + const { result } = renderHook(() => useBasicInputs(TEST_COUNTRIES.UK)); + + // Then + expect(result.current).toContain('age'); + expect(result.current).toContain('employment_income'); + expect(result.current).toContain('region'); + }); + + it('given unknown country then returns empty array', () => { + // When + const { result } = renderHook(() => useBasicInputs('unknown')); + + // Then + expect(result.current).toEqual([]); + }); + }); + + describe('useTimePeriods', () => { + it('given US country then returns array of time period options', () => { + // When + const { result } = renderHook(() => useTimePeriods(TEST_COUNTRIES.US)); + + // Then + expect(Array.isArray(result.current)).toBe(true); + expect(result.current.length).toBeGreaterThan(0); + }); + + it('given US country then time periods have name and label', () => { + // When + const { result } = renderHook(() => useTimePeriods(TEST_COUNTRIES.US)); + + // Then + result.current.forEach((period) => { + expect(period).toHaveProperty('name'); + expect(period).toHaveProperty('label'); + }); + }); + }); + + describe('useModelledPolicies', () => { + it('given US country then returns modelled policies object', () => { + // When + const { result } = renderHook(() => useModelledPolicies(TEST_COUNTRIES.US)); + + // Then + expect(typeof result.current).toBe('object'); + }); + }); + + describe('useCurrentLawId', () => { + it('given US country then returns number', () => { + // When + const { result } = renderHook(() => useCurrentLawId(TEST_COUNTRIES.US)); + + // Then + expect(typeof result.current).toBe('number'); + }); + + it('given UK country then returns number', () => { + // When + const { result } = renderHook(() => useCurrentLawId(TEST_COUNTRIES.UK)); + + // Then + expect(typeof result.current).toBe('number'); + }); + }); +}); diff --git a/app/src/tests/unit/routing/guards/CoreMetadataGuard.test.tsx b/app/src/tests/unit/routing/guards/CoreMetadataGuard.test.tsx new file mode 100644 index 000000000..6f3f90076 --- /dev/null +++ b/app/src/tests/unit/routing/guards/CoreMetadataGuard.test.tsx @@ -0,0 +1,157 @@ +import { describe, expect, it, vi, beforeEach } from 'vitest'; +import { render, screen } from '@testing-library/react'; +import { Provider } from 'react-redux'; +import { configureStore } from '@reduxjs/toolkit'; +import { MemoryRouter, Routes, Route } from 'react-router-dom'; +import { MantineProvider } from '@mantine/core'; +import metadataReducer from '@/reducers/metadataReducer'; +import { policyEngineTheme } from '@/theme'; +import { + TEST_COUNTRIES, + CORE_STATE, + LOADING_MESSAGES, + CHILD_CONTENT, +} from '@/tests/fixtures/routing/guards/guardsMocks'; + +// Track current mock state +let mockCoreState = CORE_STATE.INITIAL; + +// Mock the hooks +vi.mock('@/hooks/useCurrentCountry', () => ({ + useCurrentCountry: () => TEST_COUNTRIES.US, +})); + +vi.mock('@/hooks/useCoreMetadata', () => ({ + useFetchCoreMetadata: vi.fn(), + selectCoreMetadataState: () => mockCoreState, +})); + +// Mock react-redux +vi.mock('react-redux', async () => { + const actual = await vi.importActual('react-redux'); + return { + ...actual, + useSelector: (selector: () => unknown) => selector(), + }; +}); + +// Mock pages +vi.mock('@/pages/report-output/ErrorPage', () => ({ + default: ({ error }: { error: string }) =>
{error}
, +})); + +vi.mock('@/pages/report-output/LoadingPage', () => ({ + default: ({ message }: { message: string }) =>
{message}
, +})); + +// Import after mocks +import { CoreMetadataGuard } from '@/routing/guards/CoreMetadataGuard'; + +// Create a fresh store for each test +function createTestStore() { + return configureStore({ + reducer: { + metadata: metadataReducer, + }, + }); +} + +// Test wrapper with router +function renderWithRouter() { + const store = createTestStore(); + return render( + + + + + }> + {CHILD_CONTENT}} /> + + + + + + ); +} + +describe('CoreMetadataGuard', () => { + beforeEach(() => { + vi.clearAllMocks(); + mockCoreState = CORE_STATE.INITIAL; + }); + + describe('loading state', () => { + it('given coreLoading is true then renders loading page', () => { + // Given + mockCoreState = CORE_STATE.LOADING; + + // When + renderWithRouter(); + + // Then + expect(screen.getByTestId('loading-page')).toBeInTheDocument(); + expect(screen.getByText(LOADING_MESSAGES.CORE)).toBeInTheDocument(); + }); + + it('given coreLoaded is false then renders loading page', () => { + // Given + mockCoreState = CORE_STATE.INITIAL; + + // When + renderWithRouter(); + + // Then + expect(screen.getByTestId('loading-page')).toBeInTheDocument(); + }); + }); + + describe('error state', () => { + it('given coreError is set then renders error page', () => { + // Given + mockCoreState = CORE_STATE.ERROR; + + // When + renderWithRouter(); + + // Then + expect(screen.getByTestId('error-page')).toBeInTheDocument(); + expect(screen.getByText(CORE_STATE.ERROR.coreError)).toBeInTheDocument(); + }); + }); + + describe('loaded state', () => { + it('given coreLoaded is true then renders child routes', () => { + // Given + mockCoreState = CORE_STATE.LOADED; + + // When + renderWithRouter(); + + // Then + expect(screen.getByTestId('child-content')).toBeInTheDocument(); + expect(screen.getByText(CHILD_CONTENT)).toBeInTheDocument(); + }); + + it('given coreLoaded is true then does not render loading page', () => { + // Given + mockCoreState = CORE_STATE.LOADED; + + // When + renderWithRouter(); + + // Then + expect(screen.queryByTestId('loading-page')).not.toBeInTheDocument(); + }); + + it('given coreLoaded is true then does not render error page', () => { + // Given + mockCoreState = CORE_STATE.LOADED; + + // When + renderWithRouter(); + + // Then + expect(screen.queryByTestId('error-page')).not.toBeInTheDocument(); + }); + }); +}); diff --git a/app/src/tests/unit/routing/guards/ParametersGuard.test.tsx b/app/src/tests/unit/routing/guards/ParametersGuard.test.tsx new file mode 100644 index 000000000..069464e8f --- /dev/null +++ b/app/src/tests/unit/routing/guards/ParametersGuard.test.tsx @@ -0,0 +1,157 @@ +import { describe, expect, it, vi, beforeEach } from 'vitest'; +import { render, screen } from '@testing-library/react'; +import { Provider } from 'react-redux'; +import { configureStore } from '@reduxjs/toolkit'; +import { MemoryRouter, Routes, Route } from 'react-router-dom'; +import { MantineProvider } from '@mantine/core'; +import metadataReducer from '@/reducers/metadataReducer'; +import { policyEngineTheme } from '@/theme'; +import { + TEST_COUNTRIES, + PARAMETERS_STATE, + LOADING_MESSAGES, + CHILD_CONTENT, +} from '@/tests/fixtures/routing/guards/guardsMocks'; + +// Track current mock state +let mockParametersState = PARAMETERS_STATE.INITIAL; + +// Mock the hooks +vi.mock('@/hooks/useCurrentCountry', () => ({ + useCurrentCountry: () => TEST_COUNTRIES.US, +})); + +vi.mock('@/hooks/useParameters', () => ({ + useFetchParameters: vi.fn(), + selectParametersState: () => mockParametersState, +})); + +// Mock react-redux +vi.mock('react-redux', async () => { + const actual = await vi.importActual('react-redux'); + return { + ...actual, + useSelector: (selector: () => unknown) => selector(), + }; +}); + +// Mock pages +vi.mock('@/pages/report-output/ErrorPage', () => ({ + default: ({ error }: { error: string }) =>
{error}
, +})); + +vi.mock('@/pages/report-output/LoadingPage', () => ({ + default: ({ message }: { message: string }) =>
{message}
, +})); + +// Import after mocks +import { ParametersGuard } from '@/routing/guards/ParametersGuard'; + +// Create a fresh store for each test +function createTestStore() { + return configureStore({ + reducer: { + metadata: metadataReducer, + }, + }); +} + +// Test wrapper with router +function renderWithRouter() { + const store = createTestStore(); + return render( + + + + + }> + {CHILD_CONTENT}} /> + + + + + + ); +} + +describe('ParametersGuard', () => { + beforeEach(() => { + vi.clearAllMocks(); + mockParametersState = PARAMETERS_STATE.INITIAL; + }); + + describe('loading state', () => { + it('given parametersLoading is true then renders loading page', () => { + // Given + mockParametersState = PARAMETERS_STATE.LOADING; + + // When + renderWithRouter(); + + // Then + expect(screen.getByTestId('loading-page')).toBeInTheDocument(); + expect(screen.getByText(LOADING_MESSAGES.PARAMETERS)).toBeInTheDocument(); + }); + + it('given parametersLoaded is false then renders loading page', () => { + // Given + mockParametersState = PARAMETERS_STATE.INITIAL; + + // When + renderWithRouter(); + + // Then + expect(screen.getByTestId('loading-page')).toBeInTheDocument(); + }); + }); + + describe('error state', () => { + it('given parametersError is set then renders error page', () => { + // Given + mockParametersState = PARAMETERS_STATE.ERROR; + + // When + renderWithRouter(); + + // Then + expect(screen.getByTestId('error-page')).toBeInTheDocument(); + expect(screen.getByText(PARAMETERS_STATE.ERROR.parametersError)).toBeInTheDocument(); + }); + }); + + describe('loaded state', () => { + it('given parametersLoaded is true then renders child routes', () => { + // Given + mockParametersState = PARAMETERS_STATE.LOADED; + + // When + renderWithRouter(); + + // Then + expect(screen.getByTestId('child-content')).toBeInTheDocument(); + expect(screen.getByText(CHILD_CONTENT)).toBeInTheDocument(); + }); + + it('given parametersLoaded is true then does not render loading page', () => { + // Given + mockParametersState = PARAMETERS_STATE.LOADED; + + // When + renderWithRouter(); + + // Then + expect(screen.queryByTestId('loading-page')).not.toBeInTheDocument(); + }); + + it('given parametersLoaded is true then does not render error page', () => { + // Given + mockParametersState = PARAMETERS_STATE.LOADED; + + // When + renderWithRouter(); + + // Then + expect(screen.queryByTestId('error-page')).not.toBeInTheDocument(); + }); + }); +}); diff --git a/app/src/tests/unit/storage/loaders/coreMetadataLoader.test.ts b/app/src/tests/unit/storage/loaders/coreMetadataLoader.test.ts new file mode 100644 index 000000000..c00396713 --- /dev/null +++ b/app/src/tests/unit/storage/loaders/coreMetadataLoader.test.ts @@ -0,0 +1,230 @@ +import { describe, expect, it, vi, beforeEach } from 'vitest'; +import { + createMockVariables, + createMockDatasets, +} from '@/tests/fixtures/storage/storageMocks'; +import { + TEST_COUNTRIES, + TEST_VERSIONS, + API_RESPONSES, + createValidCoreCache, + createStaleCoreCache, +} from '@/tests/fixtures/storage/loadersMocks'; + +// Mock the API module +vi.mock('@/api/v2', () => ({ + fetchVariables: vi.fn(), + fetchDatasets: vi.fn(), + fetchModelVersion: vi.fn(), + fetchModelVersionId: vi.fn(), +})); + +// Mock the storage module +vi.mock('@/storage', () => ({ + getCacheMetadata: vi.fn(), + setCacheMetadata: vi.fn(), + clearAndLoadVariables: vi.fn(), + clearAndLoadDatasets: vi.fn(), + getAllVariables: vi.fn(), + getAllDatasets: vi.fn(), +})); + +// Import after mock setup +import { + fetchVariables, + fetchDatasets, + fetchModelVersion, + fetchModelVersionId, +} from '@/api/v2'; +import { + getCacheMetadata, + setCacheMetadata, + clearAndLoadVariables, + clearAndLoadDatasets, + getAllVariables, + getAllDatasets, +} from '@/storage'; +import { loadCoreMetadata, isCoreMetadataCached } from '@/storage/loaders/coreMetadataLoader'; + +describe('coreMetadataLoader', () => { + beforeEach(() => { + vi.clearAllMocks(); + }); + + describe('loadCoreMetadata', () => { + it('given valid cache then returns cached data without API fetch', async () => { + // Given + const cachedVariables = createMockVariables(5); + const cachedDatasets = createMockDatasets(2); + const validCache = createValidCoreCache(); + + vi.mocked(getCacheMetadata).mockResolvedValue(validCache); + vi.mocked(fetchModelVersion).mockResolvedValue(API_RESPONSES.MODEL_VERSION); + vi.mocked(fetchModelVersionId).mockResolvedValue(API_RESPONSES.MODEL_VERSION_ID); + vi.mocked(getAllVariables).mockResolvedValue(cachedVariables); + vi.mocked(getAllDatasets).mockResolvedValue(cachedDatasets); + + // When + const result = await loadCoreMetadata(TEST_COUNTRIES.US); + + // Then + expect(result.fromCache).toBe(true); + expect(result.data.variables).toEqual(cachedVariables); + expect(result.data.datasets).toEqual(cachedDatasets); + expect(result.data.version).toBe(TEST_VERSIONS.US_VERSION); + expect(result.data.versionId).toBe(TEST_VERSIONS.US_VERSION_ID); + expect(fetchVariables).not.toHaveBeenCalled(); + expect(fetchDatasets).not.toHaveBeenCalled(); + }); + + it('given stale cache then fetches fresh data from API', async () => { + // Given + const freshVariables = createMockVariables(10); + const freshDatasets = createMockDatasets(3); + const staleCache = createStaleCoreCache(); + + vi.mocked(getCacheMetadata).mockResolvedValue(staleCache); + vi.mocked(fetchModelVersion).mockResolvedValue(API_RESPONSES.MODEL_VERSION); + vi.mocked(fetchModelVersionId).mockResolvedValue(API_RESPONSES.MODEL_VERSION_ID); + vi.mocked(fetchVariables).mockResolvedValue(freshVariables); + vi.mocked(fetchDatasets).mockResolvedValue(freshDatasets); + + // When + const result = await loadCoreMetadata(TEST_COUNTRIES.US); + + // Then + expect(result.fromCache).toBe(false); + expect(result.data.variables).toEqual(freshVariables); + expect(result.data.datasets).toEqual(freshDatasets); + expect(fetchVariables).toHaveBeenCalledWith(TEST_COUNTRIES.US); + expect(fetchDatasets).toHaveBeenCalledWith(TEST_COUNTRIES.US); + }); + + it('given no cache then fetches fresh data from API', async () => { + // Given + const freshVariables = createMockVariables(5); + const freshDatasets = createMockDatasets(2); + + vi.mocked(getCacheMetadata).mockResolvedValue(undefined); + vi.mocked(fetchModelVersion).mockResolvedValue(API_RESPONSES.MODEL_VERSION); + vi.mocked(fetchModelVersionId).mockResolvedValue(API_RESPONSES.MODEL_VERSION_ID); + vi.mocked(fetchVariables).mockResolvedValue(freshVariables); + vi.mocked(fetchDatasets).mockResolvedValue(freshDatasets); + + // When + const result = await loadCoreMetadata(TEST_COUNTRIES.US); + + // Then + expect(result.fromCache).toBe(false); + expect(result.data.variables).toEqual(freshVariables); + expect(result.data.datasets).toEqual(freshDatasets); + }); + + it('given fresh data then stores in cache', async () => { + // Given + const freshVariables = createMockVariables(5); + const freshDatasets = createMockDatasets(2); + + vi.mocked(getCacheMetadata).mockResolvedValue(undefined); + vi.mocked(fetchModelVersion).mockResolvedValue(API_RESPONSES.MODEL_VERSION); + vi.mocked(fetchModelVersionId).mockResolvedValue(API_RESPONSES.MODEL_VERSION_ID); + vi.mocked(fetchVariables).mockResolvedValue(freshVariables); + vi.mocked(fetchDatasets).mockResolvedValue(freshDatasets); + + // When + await loadCoreMetadata(TEST_COUNTRIES.US); + + // Then + expect(clearAndLoadVariables).toHaveBeenCalledWith(freshVariables); + expect(clearAndLoadDatasets).toHaveBeenCalledWith(freshDatasets); + expect(setCacheMetadata).toHaveBeenCalledWith( + expect.objectContaining({ + countryId: TEST_COUNTRIES.US, + version: API_RESPONSES.MODEL_VERSION, + versionId: API_RESPONSES.MODEL_VERSION_ID, + coreLoaded: true, + }) + ); + }); + + it('given existing cache with parameters loaded then preserves parametersLoaded flag', async () => { + // Given + const freshVariables = createMockVariables(5); + const freshDatasets = createMockDatasets(2); + const cacheWithParams = createValidCoreCache(); + // Make it stale but with parametersLoaded + cacheWithParams.version = 'old-version'; + cacheWithParams.parametersLoaded = true; + + vi.mocked(getCacheMetadata).mockResolvedValue(cacheWithParams); + vi.mocked(fetchModelVersion).mockResolvedValue(API_RESPONSES.MODEL_VERSION); + vi.mocked(fetchModelVersionId).mockResolvedValue(API_RESPONSES.MODEL_VERSION_ID); + vi.mocked(fetchVariables).mockResolvedValue(freshVariables); + vi.mocked(fetchDatasets).mockResolvedValue(freshDatasets); + + // When + await loadCoreMetadata(TEST_COUNTRIES.US); + + // Then + expect(setCacheMetadata).toHaveBeenCalledWith( + expect.objectContaining({ + parametersLoaded: true, + }) + ); + }); + }); + + describe('isCoreMetadataCached', () => { + it('given valid cache then returns true', async () => { + // Given + const validCache = createValidCoreCache(); + vi.mocked(getCacheMetadata).mockResolvedValue(validCache); + vi.mocked(fetchModelVersion).mockResolvedValue(API_RESPONSES.MODEL_VERSION); + vi.mocked(fetchModelVersionId).mockResolvedValue(API_RESPONSES.MODEL_VERSION_ID); + + // When + const result = await isCoreMetadataCached(TEST_COUNTRIES.US); + + // Then + expect(result).toBe(true); + }); + + it('given no cache then returns false', async () => { + // Given + vi.mocked(getCacheMetadata).mockResolvedValue(undefined); + + // When + const result = await isCoreMetadataCached(TEST_COUNTRIES.US); + + // Then + expect(result).toBe(false); + }); + + it('given cache with coreLoaded false then returns false', async () => { + // Given + const incompleteCache = createValidCoreCache(); + incompleteCache.coreLoaded = false; + vi.mocked(getCacheMetadata).mockResolvedValue(incompleteCache); + + // When + const result = await isCoreMetadataCached(TEST_COUNTRIES.US); + + // Then + expect(result).toBe(false); + }); + + it('given stale cache version then returns false', async () => { + // Given + const staleCache = createValidCoreCache(); + vi.mocked(getCacheMetadata).mockResolvedValue(staleCache); + vi.mocked(fetchModelVersion).mockResolvedValue('new-version'); + vi.mocked(fetchModelVersionId).mockResolvedValue('new-version-id'); + + // When + const result = await isCoreMetadataCached(TEST_COUNTRIES.US); + + // Then + expect(result).toBe(false); + }); + }); +}); diff --git a/app/src/tests/unit/storage/loaders/parametersLoader.test.ts b/app/src/tests/unit/storage/loaders/parametersLoader.test.ts new file mode 100644 index 000000000..0f9349397 --- /dev/null +++ b/app/src/tests/unit/storage/loaders/parametersLoader.test.ts @@ -0,0 +1,259 @@ +import { describe, expect, it, vi, beforeEach } from 'vitest'; +import { + createMockParameters, + createMockParameterValues, +} from '@/tests/fixtures/storage/storageMocks'; +import { + TEST_COUNTRIES, + TEST_VERSIONS, + API_RESPONSES, + createValidCoreCache, + createValidParametersCache, +} from '@/tests/fixtures/storage/loadersMocks'; + +// Mock the API module +vi.mock('@/api/v2', () => ({ + fetchParameters: vi.fn(), + fetchParameterValues: vi.fn(), + fetchModelVersion: vi.fn(), +})); + +// Mock the storage module +vi.mock('@/storage', () => ({ + getCacheMetadata: vi.fn(), + setCacheMetadata: vi.fn(), + clearAndLoadParameters: vi.fn(), + clearAndLoadParameterValues: vi.fn(), + getAllParameters: vi.fn(), + getAllParameterValues: vi.fn(), +})); + +// Import after mock setup +import { fetchParameters, fetchParameterValues, fetchModelVersion } from '@/api/v2'; +import { + getCacheMetadata, + setCacheMetadata, + clearAndLoadParameters, + clearAndLoadParameterValues, + getAllParameters, + getAllParameterValues, +} from '@/storage'; +import { loadParameters, isParametersCached } from '@/storage/loaders/parametersLoader'; + +describe('parametersLoader', () => { + beforeEach(() => { + vi.clearAllMocks(); + }); + + describe('loadParameters', () => { + it('given valid cache with parameters then returns cached data without API fetch', async () => { + // Given + const cachedParameters = createMockParameters(10); + const cachedParameterValues = createMockParameterValues(50); + const validCache = createValidParametersCache(); + + vi.mocked(getCacheMetadata).mockResolvedValue(validCache); + vi.mocked(fetchModelVersion).mockResolvedValue(API_RESPONSES.MODEL_VERSION); + vi.mocked(getAllParameters).mockResolvedValue(cachedParameters); + vi.mocked(getAllParameterValues).mockResolvedValue(cachedParameterValues); + + // When + const result = await loadParameters(TEST_COUNTRIES.US); + + // Then + expect(result.fromCache).toBe(true); + expect(result.data.parameters).toEqual(cachedParameters); + expect(result.data.parameterValues).toEqual(cachedParameterValues); + expect(fetchParameters).not.toHaveBeenCalled(); + expect(fetchParameterValues).not.toHaveBeenCalled(); + }); + + it('given cache without parameters loaded then fetches fresh data', async () => { + // Given + const freshParameters = createMockParameters(10); + const freshParameterValues = createMockParameterValues(50); + const cacheWithoutParams = createValidCoreCache(); // coreLoaded but not parametersLoaded + + vi.mocked(getCacheMetadata).mockResolvedValue(cacheWithoutParams); + vi.mocked(fetchModelVersion).mockResolvedValue(API_RESPONSES.MODEL_VERSION); + vi.mocked(fetchParameters).mockResolvedValue(freshParameters); + vi.mocked(fetchParameterValues).mockResolvedValue(freshParameterValues); + + // When + const result = await loadParameters(TEST_COUNTRIES.US); + + // Then + expect(result.fromCache).toBe(false); + expect(result.data.parameters).toEqual(freshParameters); + expect(result.data.parameterValues).toEqual(freshParameterValues); + expect(fetchParameters).toHaveBeenCalledWith(TEST_COUNTRIES.US); + expect(fetchParameterValues).toHaveBeenCalledWith(TEST_COUNTRIES.US); + }); + + it('given stale version then fetches fresh data', async () => { + // Given + const freshParameters = createMockParameters(10); + const freshParameterValues = createMockParameterValues(50); + const staleCache = createValidParametersCache(); + staleCache.version = 'old-version'; + + vi.mocked(getCacheMetadata).mockResolvedValue(staleCache); + vi.mocked(fetchModelVersion).mockResolvedValue(API_RESPONSES.MODEL_VERSION); + vi.mocked(fetchParameters).mockResolvedValue(freshParameters); + vi.mocked(fetchParameterValues).mockResolvedValue(freshParameterValues); + + // When + const result = await loadParameters(TEST_COUNTRIES.US); + + // Then + expect(result.fromCache).toBe(false); + expect(fetchParameters).toHaveBeenCalled(); + expect(fetchParameterValues).toHaveBeenCalled(); + }); + + it('given no cache then fetches fresh data', async () => { + // Given + const freshParameters = createMockParameters(10); + const freshParameterValues = createMockParameterValues(50); + + vi.mocked(getCacheMetadata).mockResolvedValue(undefined); + vi.mocked(fetchModelVersion).mockResolvedValue(API_RESPONSES.MODEL_VERSION); + vi.mocked(fetchParameters).mockResolvedValue(freshParameters); + vi.mocked(fetchParameterValues).mockResolvedValue(freshParameterValues); + + // When + const result = await loadParameters(TEST_COUNTRIES.US); + + // Then + expect(result.fromCache).toBe(false); + expect(result.data.parameters).toEqual(freshParameters); + expect(result.data.parameterValues).toEqual(freshParameterValues); + }); + + it('given fresh data then stores in cache', async () => { + // Given + const freshParameters = createMockParameters(10); + const freshParameterValues = createMockParameterValues(50); + const existingCache = createValidCoreCache(); + + vi.mocked(getCacheMetadata).mockResolvedValue(existingCache); + vi.mocked(fetchModelVersion).mockResolvedValue(API_RESPONSES.MODEL_VERSION); + vi.mocked(fetchParameters).mockResolvedValue(freshParameters); + vi.mocked(fetchParameterValues).mockResolvedValue(freshParameterValues); + + // When + await loadParameters(TEST_COUNTRIES.US); + + // Then + expect(clearAndLoadParameters).toHaveBeenCalledWith(freshParameters); + expect(clearAndLoadParameterValues).toHaveBeenCalledWith(freshParameterValues); + expect(setCacheMetadata).toHaveBeenCalledWith( + expect.objectContaining({ + parametersLoaded: true, + }) + ); + }); + + it('given no prior cache then creates new cache metadata', async () => { + // Given + const freshParameters = createMockParameters(10); + const freshParameterValues = createMockParameterValues(50); + + vi.mocked(getCacheMetadata).mockResolvedValue(undefined); + vi.mocked(fetchModelVersion).mockResolvedValue(API_RESPONSES.MODEL_VERSION); + vi.mocked(fetchParameters).mockResolvedValue(freshParameters); + vi.mocked(fetchParameterValues).mockResolvedValue(freshParameterValues); + + // When + await loadParameters(TEST_COUNTRIES.US); + + // Then + expect(setCacheMetadata).toHaveBeenCalledWith( + expect.objectContaining({ + countryId: TEST_COUNTRIES.US, + version: API_RESPONSES.MODEL_VERSION, + versionId: '', + coreLoaded: false, + parametersLoaded: true, + }) + ); + }); + + it('given existing cache then preserves existing fields', async () => { + // Given + const freshParameters = createMockParameters(10); + const freshParameterValues = createMockParameterValues(50); + const existingCache = createValidCoreCache(); + + vi.mocked(getCacheMetadata).mockResolvedValue(existingCache); + vi.mocked(fetchModelVersion).mockResolvedValue(API_RESPONSES.MODEL_VERSION); + vi.mocked(fetchParameters).mockResolvedValue(freshParameters); + vi.mocked(fetchParameterValues).mockResolvedValue(freshParameterValues); + + // When + await loadParameters(TEST_COUNTRIES.US); + + // Then + expect(setCacheMetadata).toHaveBeenCalledWith( + expect.objectContaining({ + countryId: existingCache.countryId, + version: existingCache.version, + versionId: existingCache.versionId, + coreLoaded: existingCache.coreLoaded, + parametersLoaded: true, + }) + ); + }); + }); + + describe('isParametersCached', () => { + it('given valid cache with parameters then returns true', async () => { + // Given + const validCache = createValidParametersCache(); + vi.mocked(getCacheMetadata).mockResolvedValue(validCache); + vi.mocked(fetchModelVersion).mockResolvedValue(API_RESPONSES.MODEL_VERSION); + + // When + const result = await isParametersCached(TEST_COUNTRIES.US); + + // Then + expect(result).toBe(true); + }); + + it('given no cache then returns false', async () => { + // Given + vi.mocked(getCacheMetadata).mockResolvedValue(undefined); + + // When + const result = await isParametersCached(TEST_COUNTRIES.US); + + // Then + expect(result).toBe(false); + }); + + it('given cache with parametersLoaded false then returns false', async () => { + // Given + const cacheWithoutParams = createValidCoreCache(); + vi.mocked(getCacheMetadata).mockResolvedValue(cacheWithoutParams); + + // When + const result = await isParametersCached(TEST_COUNTRIES.US); + + // Then + expect(result).toBe(false); + }); + + it('given stale version then returns false', async () => { + // Given + const staleCache = createValidParametersCache(); + vi.mocked(getCacheMetadata).mockResolvedValue(staleCache); + vi.mocked(fetchModelVersion).mockResolvedValue('new-version'); + + // When + const result = await isParametersCached(TEST_COUNTRIES.US); + + // Then + expect(result).toBe(false); + }); + }); +}); diff --git a/app/src/tests/unit/storage/metadataBulkLoader.test.ts b/app/src/tests/unit/storage/metadataBulkLoader.test.ts new file mode 100644 index 000000000..d8e56a38b --- /dev/null +++ b/app/src/tests/unit/storage/metadataBulkLoader.test.ts @@ -0,0 +1,475 @@ +import { describe, expect, it, vi, beforeEach } from 'vitest'; +import { + createMockVariables, + createMockParameters, + createMockParameterValues, + createMockDatasets, + createMockCacheMetadata, + createMockVariable, + createMockParameter, + TEST_COUNTRIES, + TEST_VERSIONS, +} from '@/tests/fixtures/storage/storageMocks'; + +// Mock the database module +vi.mock('@/storage/metadataDb', () => { + const mockTable = { + bulkPut: vi.fn().mockResolvedValue(undefined), + clear: vi.fn().mockResolvedValue(undefined), + toArray: vi.fn().mockResolvedValue([]), + where: vi.fn().mockReturnThis(), + equals: vi.fn().mockReturnThis(), + first: vi.fn().mockResolvedValue(undefined), + delete: vi.fn().mockResolvedValue(undefined), + count: vi.fn().mockResolvedValue(0), + get: vi.fn().mockResolvedValue(undefined), + put: vi.fn().mockResolvedValue(undefined), + }; + + return { + db: { + variables: { ...mockTable }, + parameters: { ...mockTable }, + parameterValues: { ...mockTable }, + datasets: { ...mockTable }, + cacheMetadata: { ...mockTable }, + transaction: vi.fn((mode, tables, callback) => callback()), + }, + }; +}); + +// Import after mock setup +import { db } from '@/storage/metadataDb'; +import { + bulkLoadVariables, + bulkLoadParameters, + bulkLoadParameterValues, + clearAndLoadVariables, + clearAndLoadParameters, + clearAndLoadParameterValues, + clearAndLoadDatasets, + getAllVariables, + getAllParameters, + getAllParameterValues, + getAllDatasets, + getVariablesByVersion, + getParametersByVersion, + getParameterValues, + getVariableByName, + getParameterByName, + getCacheMetadata, + setCacheMetadata, + clearVersionData, + getStoreCounts, + clearAllStores, +} from '@/storage/metadataBulkLoader'; + +describe('metadataBulkLoader', () => { + beforeEach(() => { + vi.clearAllMocks(); + }); + + describe('bulkLoadVariables', () => { + it('given empty array then returns 0 without database call', async () => { + // When + const result = await bulkLoadVariables([]); + + // Then + expect(result).toBe(0); + expect(db.variables.bulkPut).not.toHaveBeenCalled(); + }); + + it('given array of variables then calls bulkPut and returns count', async () => { + // Given + const variables = createMockVariables(5); + + // When + const result = await bulkLoadVariables(variables); + + // Then + expect(result).toBe(5); + expect(db.variables.bulkPut).toHaveBeenCalledWith(variables); + }); + }); + + describe('bulkLoadParameters', () => { + it('given empty array then returns 0 without database call', async () => { + // When + const result = await bulkLoadParameters([]); + + // Then + expect(result).toBe(0); + expect(db.parameters.bulkPut).not.toHaveBeenCalled(); + }); + + it('given array of parameters then calls bulkPut and returns count', async () => { + // Given + const parameters = createMockParameters(3); + + // When + const result = await bulkLoadParameters(parameters); + + // Then + expect(result).toBe(3); + expect(db.parameters.bulkPut).toHaveBeenCalledWith(parameters); + }); + }); + + describe('bulkLoadParameterValues', () => { + it('given empty array then returns 0 without database call', async () => { + // When + const result = await bulkLoadParameterValues([]); + + // Then + expect(result).toBe(0); + expect(db.parameterValues.bulkPut).not.toHaveBeenCalled(); + }); + + it('given array of parameter values then calls bulkPut and returns count', async () => { + // Given + const parameterValues = createMockParameterValues(5); + + // When + const result = await bulkLoadParameterValues(parameterValues); + + // Then + expect(result).toBe(5); + expect(db.parameterValues.bulkPut).toHaveBeenCalledWith(parameterValues); + }); + }); + + describe('clearAndLoadVariables', () => { + it('given array of variables then clears and loads in transaction', async () => { + // Given + const variables = createMockVariables(10); + + // When + const result = await clearAndLoadVariables(variables); + + // Then + expect(result).toBe(10); + expect(db.transaction).toHaveBeenCalled(); + expect(db.variables.clear).toHaveBeenCalled(); + expect(db.variables.bulkPut).toHaveBeenCalledWith(variables); + }); + }); + + describe('clearAndLoadParameters', () => { + it('given array of parameters then clears and loads in transaction', async () => { + // Given + const parameters = createMockParameters(7); + + // When + const result = await clearAndLoadParameters(parameters); + + // Then + expect(result).toBe(7); + expect(db.transaction).toHaveBeenCalled(); + expect(db.parameters.clear).toHaveBeenCalled(); + expect(db.parameters.bulkPut).toHaveBeenCalledWith(parameters); + }); + }); + + describe('clearAndLoadParameterValues', () => { + it('given array of parameter values then clears and loads in transaction', async () => { + // Given + const parameterValues = createMockParameterValues(10); + + // When + const result = await clearAndLoadParameterValues(parameterValues); + + // Then + expect(result).toBe(10); + expect(db.transaction).toHaveBeenCalled(); + expect(db.parameterValues.clear).toHaveBeenCalled(); + expect(db.parameterValues.bulkPut).toHaveBeenCalledWith(parameterValues); + }); + }); + + describe('clearAndLoadDatasets', () => { + it('given array of datasets then clears and loads in transaction', async () => { + // Given + const datasets = createMockDatasets(3); + + // When + const result = await clearAndLoadDatasets(datasets); + + // Then + expect(result).toBe(3); + expect(db.transaction).toHaveBeenCalled(); + expect(db.datasets.clear).toHaveBeenCalled(); + expect(db.datasets.bulkPut).toHaveBeenCalledWith(datasets); + }); + }); + + describe('getAllVariables', () => { + it('given database with variables then returns all variables', async () => { + // Given + const variables = createMockVariables(5); + vi.mocked(db.variables.toArray).mockResolvedValue(variables); + + // When + const result = await getAllVariables(); + + // Then + expect(result).toEqual(variables); + expect(db.variables.toArray).toHaveBeenCalled(); + }); + }); + + describe('getAllParameters', () => { + it('given database with parameters then returns all parameters', async () => { + // Given + const parameters = createMockParameters(3); + vi.mocked(db.parameters.toArray).mockResolvedValue(parameters); + + // When + const result = await getAllParameters(); + + // Then + expect(result).toEqual(parameters); + expect(db.parameters.toArray).toHaveBeenCalled(); + }); + }); + + describe('getAllDatasets', () => { + it('given database with datasets then returns all datasets', async () => { + // Given + const datasets = createMockDatasets(2); + vi.mocked(db.datasets.toArray).mockResolvedValue(datasets); + + // When + const result = await getAllDatasets(); + + // Then + expect(result).toEqual(datasets); + expect(db.datasets.toArray).toHaveBeenCalled(); + }); + }); + + describe('getAllParameterValues', () => { + it('given database with parameter values then returns all parameter values', async () => { + // Given + const parameterValues = createMockParameterValues(5); + vi.mocked(db.parameterValues.toArray).mockResolvedValue(parameterValues); + + // When + const result = await getAllParameterValues(); + + // Then + expect(result).toEqual(parameterValues); + expect(db.parameterValues.toArray).toHaveBeenCalled(); + }); + }); + + describe('getVariablesByVersion', () => { + it('given version id then queries variables by version', async () => { + // Given + const variables = createMockVariables(3); + vi.mocked(db.variables.where).mockReturnThis(); + vi.mocked(db.variables.equals).mockReturnThis(); + vi.mocked(db.variables.toArray).mockResolvedValue(variables); + + // When + const result = await getVariablesByVersion(TEST_VERSIONS.US_VERSION_ID); + + // Then + expect(result).toEqual(variables); + expect(db.variables.where).toHaveBeenCalledWith('tax_benefit_model_version_id'); + expect(db.variables.equals).toHaveBeenCalledWith(TEST_VERSIONS.US_VERSION_ID); + }); + }); + + describe('getParametersByVersion', () => { + it('given version id then queries parameters by version', async () => { + // Given + const parameters = createMockParameters(3); + vi.mocked(db.parameters.where).mockReturnThis(); + vi.mocked(db.parameters.equals).mockReturnThis(); + vi.mocked(db.parameters.toArray).mockResolvedValue(parameters); + + // When + const result = await getParametersByVersion(TEST_VERSIONS.US_VERSION_ID); + + // Then + expect(result).toEqual(parameters); + expect(db.parameters.where).toHaveBeenCalledWith('tax_benefit_model_version_id'); + expect(db.parameters.equals).toHaveBeenCalledWith(TEST_VERSIONS.US_VERSION_ID); + }); + }); + + describe('getParameterValues', () => { + it('given parameter id then queries parameter values by parameter id', async () => { + // Given + const parameterValues = createMockParameterValues(2); + vi.mocked(db.parameterValues.where).mockReturnThis(); + vi.mocked(db.parameterValues.equals).mockReturnThis(); + vi.mocked(db.parameterValues.toArray).mockResolvedValue(parameterValues); + + // When + const result = await getParameterValues('param-1'); + + // Then + expect(result).toEqual(parameterValues); + expect(db.parameterValues.where).toHaveBeenCalledWith('parameter_id'); + expect(db.parameterValues.equals).toHaveBeenCalledWith('param-1'); + }); + }); + + describe('getVariableByName', () => { + it('given variable name then queries and returns variable', async () => { + // Given + const variable = createMockVariable({ name: 'income_tax' }); + vi.mocked(db.variables.where).mockReturnThis(); + vi.mocked(db.variables.equals).mockReturnThis(); + vi.mocked(db.variables.first).mockResolvedValue(variable); + + // When + const result = await getVariableByName('income_tax'); + + // Then + expect(result).toEqual(variable); + expect(db.variables.where).toHaveBeenCalledWith('name'); + expect(db.variables.equals).toHaveBeenCalledWith('income_tax'); + }); + + it('given non-existent variable name then returns undefined', async () => { + // Given + vi.mocked(db.variables.where).mockReturnThis(); + vi.mocked(db.variables.equals).mockReturnThis(); + vi.mocked(db.variables.first).mockResolvedValue(undefined); + + // When + const result = await getVariableByName('non_existent'); + + // Then + expect(result).toBeUndefined(); + }); + }); + + describe('getParameterByName', () => { + it('given parameter name then queries and returns parameter', async () => { + // Given + const parameter = createMockParameter({ name: 'basic_rate' }); + vi.mocked(db.parameters.where).mockReturnThis(); + vi.mocked(db.parameters.equals).mockReturnThis(); + vi.mocked(db.parameters.first).mockResolvedValue(parameter); + + // When + const result = await getParameterByName('basic_rate'); + + // Then + expect(result).toEqual(parameter); + expect(db.parameters.where).toHaveBeenCalledWith('name'); + expect(db.parameters.equals).toHaveBeenCalledWith('basic_rate'); + }); + + it('given non-existent parameter name then returns undefined', async () => { + // Given + vi.mocked(db.parameters.where).mockReturnThis(); + vi.mocked(db.parameters.equals).mockReturnThis(); + vi.mocked(db.parameters.first).mockResolvedValue(undefined); + + // When + const result = await getParameterByName('non_existent'); + + // Then + expect(result).toBeUndefined(); + }); + }); + + describe('clearVersionData', () => { + it('given version id then clears variables and parameters for that version', async () => { + // Given + vi.mocked(db.variables.where).mockReturnThis(); + vi.mocked(db.variables.equals).mockReturnThis(); + vi.mocked(db.parameters.where).mockReturnThis(); + vi.mocked(db.parameters.equals).mockReturnThis(); + + // When + await clearVersionData(TEST_VERSIONS.US_VERSION_ID); + + // Then + expect(db.transaction).toHaveBeenCalled(); + expect(db.variables.where).toHaveBeenCalledWith('tax_benefit_model_version_id'); + expect(db.variables.equals).toHaveBeenCalledWith(TEST_VERSIONS.US_VERSION_ID); + expect(db.variables.delete).toHaveBeenCalled(); + expect(db.parameters.where).toHaveBeenCalledWith('tax_benefit_model_version_id'); + expect(db.parameters.equals).toHaveBeenCalledWith(TEST_VERSIONS.US_VERSION_ID); + expect(db.parameters.delete).toHaveBeenCalled(); + }); + }); + + describe('getCacheMetadata', () => { + it('given country with cache then returns cache metadata', async () => { + // Given + const cacheMetadata = createMockCacheMetadata(); + vi.mocked(db.cacheMetadata.get).mockResolvedValue(cacheMetadata); + + // When + const result = await getCacheMetadata(TEST_COUNTRIES.US); + + // Then + expect(result).toEqual(cacheMetadata); + expect(db.cacheMetadata.get).toHaveBeenCalledWith(TEST_COUNTRIES.US); + }); + + it('given country without cache then returns undefined', async () => { + // Given + vi.mocked(db.cacheMetadata.get).mockResolvedValue(undefined); + + // When + const result = await getCacheMetadata(TEST_COUNTRIES.UK); + + // Then + expect(result).toBeUndefined(); + }); + }); + + describe('setCacheMetadata', () => { + it('given cache metadata then stores in database', async () => { + // Given + const cacheMetadata = createMockCacheMetadata(); + + // When + await setCacheMetadata(cacheMetadata); + + // Then + expect(db.cacheMetadata.put).toHaveBeenCalledWith(cacheMetadata); + }); + }); + + describe('getStoreCounts', () => { + it('given database with data then returns counts for all stores', async () => { + // Given + vi.mocked(db.variables.count).mockResolvedValueOnce(100); + vi.mocked(db.parameters.count).mockResolvedValueOnce(50); + vi.mocked(db.parameterValues.count).mockResolvedValueOnce(500); + vi.mocked(db.datasets.count).mockResolvedValueOnce(5); + + // When + const result = await getStoreCounts(); + + // Then + expect(result.variables).toBe(100); + expect(result.parameters).toBe(50); + expect(result.parameterValues).toBe(500); + expect(result.datasets).toBe(5); + }); + }); + + describe('clearAllStores', () => { + it('given database with data then clears all stores in transaction', async () => { + // When + await clearAllStores(); + + // Then + expect(db.transaction).toHaveBeenCalled(); + expect(db.variables.clear).toHaveBeenCalled(); + expect(db.parameters.clear).toHaveBeenCalled(); + expect(db.parameterValues.clear).toHaveBeenCalled(); + expect(db.datasets.clear).toHaveBeenCalled(); + expect(db.cacheMetadata.clear).toHaveBeenCalled(); + }); + }); +}); From 07bb8d64d6d7b74aacd71f08effba3d1cffce08f Mon Sep 17 00:00:00 2001 From: Anthony Volk Date: Tue, 23 Dec 2025 15:58:50 +0400 Subject: [PATCH 11/32] fix: Fix imports --- app/src/CalculatorRouter.tsx | 43 +-- app/src/TEST_TO_DELETE/mockParamMetadata.ts | 151 ++++++++++ .../household/VariableArithmetic.tsx | 2 +- app/src/components/report/ParameterTable.tsx | 2 +- app/src/hooks/useCoreMetadata.ts | 17 +- app/src/hooks/useParameters.ts | 49 ---- app/src/libs/metadataUtils.ts | 41 +-- .../PolicyParameterSelectorMain.tsx | 2 +- .../PolicyParameterSelectorValueSetter.tsx | 2 +- .../HistoricalValues.tsx | 2 +- .../components/valueSetters/ValueInputBox.tsx | 2 +- .../valueSetters/ValueSetterProps.ts | 2 +- .../valueSetters/getDefaultValueForParam.ts | 2 +- .../policy/PolicyParameterSelectorView.tsx | 12 +- .../views/population/HouseholdBuilderView.tsx | 2 +- app/src/reducers/metadataReducer.ts | 136 +++++---- app/src/routing/guards/CoreMetadataGuard.tsx | 23 +- app/src/routing/guards/ParametersGuard.tsx | 54 ---- app/src/storage/index.ts | 10 +- app/src/storage/loaders/coreMetadataLoader.ts | 80 ++++-- app/src/storage/loaders/index.ts | 11 +- app/src/storage/loaders/parametersLoader.ts | 105 ------- app/src/storage/metadataDb.ts | 3 +- .../components/HistoricalValuesMocks.ts | 2 +- .../components/report/ParameterTable.ts | 2 +- .../tests/fixtures/hooks/useMetadataMocks.ts | 23 +- .../fixtures/hooks/useUserReportsMocks.ts | 6 +- .../constituencyComponentMocks.ts | 6 +- .../pages/report-output/DynamicsSubPage.ts | 2 +- .../fixtures/reducers/metadataReducerMocks.ts | 52 ++-- .../tests/fixtures/storage/loadersMocks.ts | 65 +---- .../tests/fixtures/storage/storageMocks.ts | 3 +- .../fixtures/utils/parameterLabelsMocks.ts | 2 +- .../loaders/coreMetadataLoader.test.ts | 88 +++--- .../storage/loaders/parametersLoader.test.ts | 259 ------------------ app/src/types/metadata.ts | 137 +++++++-- app/src/types/metadata/parameterMetadata.ts | 14 - app/src/utils/HouseholdValidation.ts | 27 +- app/src/utils/parameterLabels.ts | 2 +- app/src/utils/policyTableHelpers.ts | 2 +- 40 files changed, 579 insertions(+), 866 deletions(-) create mode 100644 app/src/TEST_TO_DELETE/mockParamMetadata.ts delete mode 100644 app/src/hooks/useParameters.ts delete mode 100644 app/src/routing/guards/ParametersGuard.tsx delete mode 100644 app/src/storage/loaders/parametersLoader.ts delete mode 100644 app/src/tests/unit/storage/loaders/parametersLoader.test.ts delete mode 100644 app/src/types/metadata/parameterMetadata.ts diff --git a/app/src/CalculatorRouter.tsx b/app/src/CalculatorRouter.tsx index 34142e5f6..7b5a948e7 100644 --- a/app/src/CalculatorRouter.tsx +++ b/app/src/CalculatorRouter.tsx @@ -17,7 +17,6 @@ import ReportPathwayWrapper from './pathways/report/ReportPathwayWrapper'; import SimulationPathwayWrapper from './pathways/simulation/SimulationPathwayWrapper'; import { CountryGuard } from './routing/guards/CountryGuard'; import { CoreMetadataGuard } from './routing/guards/CoreMetadataGuard'; -import { ParametersGuard } from './routing/guards/ParametersGuard'; import { RedirectToCountry } from './routing/RedirectToCountry'; /** @@ -43,39 +42,11 @@ const router = createBrowserRouter( path: '/:countryId', element: , children: [ - // All routes need core metadata (variables + datasets) + // All routes need metadata (variables, datasets, parameters, parameterValues) { element: , children: [ - // Routes that also need parameters (policy editing, reports) - { - element: , - children: [ - { - element: ( - - - - ), - children: [ - { - path: 'report-output/:reportId/:subpage?/:view?', - element: , - }, - ], - }, - { - element: , - children: [ - { - path: 'policies/create', - element: , - }, - ], - }, - ], - }, - // Routes that only need core metadata + // Routes with StandardLayout { element: , children: [ @@ -107,9 +78,13 @@ const router = createBrowserRouter( path: 'account', element:
Account settings page
, }, + { + path: 'report-output/:reportId/:subpage?/:view?', + element: , + }, ], }, - // Pathway routes (core metadata only) + // Pathway routes { element: , children: [ @@ -125,6 +100,10 @@ const router = createBrowserRouter( path: 'households/create', element: , }, + { + path: 'policies/create', + element: , + }, ], }, ], diff --git a/app/src/TEST_TO_DELETE/mockParamMetadata.ts b/app/src/TEST_TO_DELETE/mockParamMetadata.ts new file mode 100644 index 000000000..55597536e --- /dev/null +++ b/app/src/TEST_TO_DELETE/mockParamMetadata.ts @@ -0,0 +1,151 @@ +import { ParameterMetadataCollection } from '@/types/metadata'; + +export const mockParamMetadata: { parameters: ParameterMetadataCollection } = { + parameters: { + gov: { + type: 'parameterNode', + parameter: 'gov', + description: null, + label: 'Government', + economy: true, + household: true, + }, + 'gov.aca.max_child_count': { + type: 'parameter', + parameter: 'gov.aca.max_child_count', + description: + 'Maximum number of children who pay an age-based ACA plan premium. This parameter is yearly.', + label: 'ACA maximum child count', + unit: null, + period: null, + values: { + '2014-01-01': 3, + }, + economy: true, + household: true, + }, + 'gov.states': { + type: 'parameterNode', + parameter: 'gov.states', + description: null, + label: 'States', + economy: true, + household: true, + }, + 'gov.states.de': { + type: 'parameterNode', + parameter: 'gov.states.de', + description: null, + label: 'Delaware', + economy: true, + household: true, + }, + 'gov.states.de.tax': { + type: 'parameterNode', + parameter: 'gov.states.de.tax', + description: null, + label: 'tax', + economy: true, + household: true, + }, + 'gov.states.de.tax.income': { + type: 'parameterNode', + parameter: 'gov.states.de.tax.income', + description: null, + label: 'income', + economy: true, + household: true, + }, + 'gov.states.de.tax.income.rate': { + type: 'parameterNode', + parameter: 'gov.states.de.tax.income.rate', + description: 'Delaware taxes personal income according to this rate schedule.', + label: 'Delaware personal income tax rate', + }, + 'gov.states.de.tax.income.rate[0]': { + type: 'parameterNode', + parameter: 'gov.states.de.tax.income.rate[0]', + description: null, + label: 'bracket 1', + }, + 'gov.states.de.tax.income.rate[0].threshold': { + type: 'parameter', + parameter: 'gov.states.de.tax.income.rate[0].threshold', + description: null, + label: 'threshold', + unit: 'currency-USD', + period: null, + values: { + '1996-01-01': 0, + }, + economy: true, + household: true, + }, + 'gov.states.de.tax.income.rate[0].rate': { + type: 'parameter', + parameter: 'gov.states.de.tax.income.rate[0].rate', + description: null, + label: 'rate', + unit: '/1', + period: null, + values: { + '1996-01-01': 0, + }, + economy: true, + household: true, + }, + 'gov.states.de.tax.income.rate[1]': { + type: 'parameterNode', + parameter: 'gov.states.de.tax.income.rate[1]', + description: null, + label: 'bracket 2', + }, + 'gov.states.de.tax.income.rate[1].threshold': { + type: 'parameter', + parameter: 'gov.states.de.tax.income.rate[1].threshold', + description: null, + label: 'threshold', + unit: 'currency-USD', + period: null, + values: { + '1996-01-01': 2000, + }, + economy: true, + household: true, + }, + 'gov.states.de.tax.income.rate[1].rate': { + type: 'parameter', + parameter: 'gov.states.de.tax.income.rate[1].rate', + description: null, + label: 'rate', + unit: '/1', + period: null, + values: { + '2014-01-01': 0.022, + '1999-01-01': 0.026, + '1996-01-01': 0.031, + }, + economy: true, + household: true, + }, + 'gov.states.de.tax.income.rate[2]': { + type: 'parameterNode', + parameter: 'gov.states.de.tax.income.rate[2]', + description: null, + label: 'bracket 3', + }, + 'gov.states.de.tax.income.rate[2].threshold': { + type: 'parameter', + parameter: 'gov.states.de.tax.income.rate[2].threshold', + description: null, + label: 'threshold', + unit: 'currency-USD', + period: null, + values: { + '1996-01-01': 5000, + }, + economy: true, + household: true, + }, + }, +}; diff --git a/app/src/components/household/VariableArithmetic.tsx b/app/src/components/household/VariableArithmetic.tsx index 06215247d..ebce2722f 100644 --- a/app/src/components/household/VariableArithmetic.tsx +++ b/app/src/components/household/VariableArithmetic.tsx @@ -133,7 +133,7 @@ export default function VariableArithmetic({ } // Get display text and style configuration - const displayText = getVariableDisplayText(variable.label, comparison, isComparisonMode); + const displayText = getVariableDisplayText(variable.label ?? variable.name, comparison, isComparisonMode); const styleConfig = getDisplayStyleConfig(isComparisonMode, comparison.direction, isAdd); // Create arrow element based on configuration (hide if no change) diff --git a/app/src/components/report/ParameterTable.tsx b/app/src/components/report/ParameterTable.tsx index 41662a22d..a88a36945 100644 --- a/app/src/components/report/ParameterTable.tsx +++ b/app/src/components/report/ParameterTable.tsx @@ -1,7 +1,7 @@ import { useState } from 'react'; import { Box, Table, Text } from '@mantine/core'; import { colors, spacing, typography } from '@/designTokens'; -import { ParameterMetadata } from '@/types/metadata/parameterMetadata'; +import { ParameterMetadata } from '@/types/metadata'; import { buildCompactLabel, formatLabelParts, diff --git a/app/src/hooks/useCoreMetadata.ts b/app/src/hooks/useCoreMetadata.ts index a4c14a659..10991b455 100644 --- a/app/src/hooks/useCoreMetadata.ts +++ b/app/src/hooks/useCoreMetadata.ts @@ -8,33 +8,32 @@ import { AppDispatch, RootState } from '@/store'; */ export function selectCoreMetadataState(state: RootState) { return { - coreLoading: state.metadata.coreLoading, - coreLoaded: state.metadata.coreLoaded, - coreError: state.metadata.coreError, + loading: state.metadata.loading, + loaded: state.metadata.loaded, + error: state.metadata.error, currentCountry: state.metadata.currentCountry, }; } /** - * Hook that fetches core metadata (variables + datasets) for a country. + * Hook that fetches all metadata (variables, datasets, parameters, parameterValues) for a country. * - * This is the V2 tiered loading approach - only loads what's needed immediately. - * Parameters are loaded separately via useFetchParameters when needed. + * This is the V2 unified loading approach - loads all metadata in a single fetch. * * @param countryId - Country to fetch metadata for (e.g., 'us', 'uk') */ export function useFetchCoreMetadata(countryId: string): void { const dispatch = useDispatch(); - const { coreLoading, coreLoaded, currentCountry } = useSelector(selectCoreMetadataState); + const { loading, loaded, currentCountry } = useSelector(selectCoreMetadataState); useEffect(() => { // Fetch if: // - Not currently loading // - Not already loaded for this country - const needsFetch = !coreLoading && (!coreLoaded || countryId !== currentCountry); + const needsFetch = !loading && (!loaded || countryId !== currentCountry); if (needsFetch && countryId) { dispatch(fetchCoreMetadataThunk(countryId)); } - }, [countryId, coreLoading, coreLoaded, currentCountry, dispatch]); + }, [countryId, loading, loaded, currentCountry, dispatch]); } diff --git a/app/src/hooks/useParameters.ts b/app/src/hooks/useParameters.ts deleted file mode 100644 index 0011aac70..000000000 --- a/app/src/hooks/useParameters.ts +++ /dev/null @@ -1,49 +0,0 @@ -import { useEffect } from 'react'; -import { useDispatch, useSelector } from 'react-redux'; -import { fetchParametersThunk } from '@/reducers/metadataReducer'; -import { AppDispatch, RootState } from '@/store'; - -/** - * Selects parameters loading state from Redux. - */ -export function selectParametersState(state: RootState) { - return { - coreLoaded: state.metadata.coreLoaded, - parametersLoading: state.metadata.parametersLoading, - parametersLoaded: state.metadata.parametersLoaded, - parametersError: state.metadata.parametersError, - currentCountry: state.metadata.currentCountry, - }; -} - -/** - * Hook that fetches parameters for a country. - * - * This is Tier 2 of the V2 tiered loading approach - only loads parameters - * when needed (e.g., on policy editing pages). - * - * Prerequisites: - * - Core metadata must be loaded first (coreLoaded === true) - * - * @param countryId - Country to fetch parameters for (e.g., 'us', 'uk') - */ -export function useFetchParameters(countryId: string): void { - const dispatch = useDispatch(); - const { coreLoaded, parametersLoading, parametersLoaded, currentCountry } = - useSelector(selectParametersState); - - useEffect(() => { - // Only fetch if: - // - Core metadata is loaded (prerequisite) - // - Not currently loading parameters - // - Parameters not already loaded for this country - const needsFetch = - coreLoaded && - !parametersLoading && - (!parametersLoaded || countryId !== currentCountry); - - if (needsFetch && countryId) { - dispatch(fetchParametersThunk(countryId)); - } - }, [countryId, coreLoaded, parametersLoading, parametersLoaded, currentCountry, dispatch]); -} diff --git a/app/src/libs/metadataUtils.ts b/app/src/libs/metadataUtils.ts index 273c74c5a..e9fd0c7e6 100644 --- a/app/src/libs/metadataUtils.ts +++ b/app/src/libs/metadataUtils.ts @@ -23,16 +23,22 @@ export const makeGetFieldOptions = () => // Get field variable from metadata const fieldVariable = variables?.[fieldName]; - // Check if the variable has possibleValues (array format from API) - if ( - fieldVariable && - fieldVariable.possibleValues && - Array.isArray(fieldVariable.possibleValues) - ) { - return fieldVariable.possibleValues.map((option: { value: string; label: string }) => ({ - value: option.value, - label: option.label, - })); + // Check if the variable has possible_values + if (fieldVariable && fieldVariable.possible_values) { + // Handle array format (V2 API returns string[]) + if (Array.isArray(fieldVariable.possible_values)) { + return fieldVariable.possible_values.map((value: string) => ({ + value, + label: value, + })); + } + // Handle Record format (legacy/V1 format: { value: label }) + if (typeof fieldVariable.possible_values === 'object') { + return Object.entries(fieldVariable.possible_values).map(([value, label]) => ({ + value, + label: String(label), + })); + } } // Fallback for fields without metadata @@ -53,8 +59,8 @@ export const isDropdownField = (state: RootState, fieldName: string): boolean => const fieldVariable = state.metadata.variables?.[fieldName]; return !!( fieldVariable && - fieldVariable.possibleValues && - Array.isArray(fieldVariable.possibleValues) + fieldVariable.possible_values && + Array.isArray(fieldVariable.possible_values) ); }; @@ -86,13 +92,10 @@ export function transformMetadataPayload( const data = payload.result; return { currentCountry: country, - // V2 tiered loading states (default to false for V1 transform) - coreLoading: false, - coreLoaded: false, - coreError: null, - parametersLoading: false, - parametersLoaded: false, - parametersError: null, + // V2 unified loading states + loading: false, + loaded: false, + error: null, progress: 100, // Transformation happens after successful load variables: data.variables ?? {}, parameters: data.parameters ?? {}, diff --git a/app/src/pathways/report/components/PolicyParameterSelectorMain.tsx b/app/src/pathways/report/components/PolicyParameterSelectorMain.tsx index ca6b50905..36338153b 100644 --- a/app/src/pathways/report/components/PolicyParameterSelectorMain.tsx +++ b/app/src/pathways/report/components/PolicyParameterSelectorMain.tsx @@ -5,7 +5,7 @@ */ import { Container, Text, Title } from '@mantine/core'; -import { ParameterMetadata } from '@/types/metadata/parameterMetadata'; +import { ParameterMetadata } from '@/types/metadata'; import { PolicyStateProps } from '@/types/pathwayState'; import { getParameterByName } from '@/types/subIngredients/parameter'; import { ValueIntervalCollection, ValuesList } from '@/types/subIngredients/valueInterval'; diff --git a/app/src/pathways/report/components/PolicyParameterSelectorValueSetter.tsx b/app/src/pathways/report/components/PolicyParameterSelectorValueSetter.tsx index 42bc4e62c..c5d4c9480 100644 --- a/app/src/pathways/report/components/PolicyParameterSelectorValueSetter.tsx +++ b/app/src/pathways/report/components/PolicyParameterSelectorValueSetter.tsx @@ -8,7 +8,7 @@ import { useState } from 'react'; import { Button, Container, Divider, Group, Stack, Text } from '@mantine/core'; import { getDateRange } from '@/data/static'; import { useCurrentCountry } from '@/hooks/useCurrentCountry'; -import { ParameterMetadata } from '@/types/metadata/parameterMetadata'; +import { ParameterMetadata } from '@/types/metadata'; import { PolicyStateProps } from '@/types/pathwayState'; import { getParameterByName } from '@/types/subIngredients/parameter'; import { ValueInterval, ValueIntervalCollection } from '@/types/subIngredients/valueInterval'; diff --git a/app/src/pathways/report/components/policyParameterSelector/HistoricalValues.tsx b/app/src/pathways/report/components/policyParameterSelector/HistoricalValues.tsx index 6d0b04013..8af96d0a2 100644 --- a/app/src/pathways/report/components/policyParameterSelector/HistoricalValues.tsx +++ b/app/src/pathways/report/components/policyParameterSelector/HistoricalValues.tsx @@ -3,7 +3,7 @@ import Plot from 'react-plotly.js'; import { Stack, Text } from '@mantine/core'; import { CHART_COLORS } from '@/constants/chartColors'; import { useChartWidth, useIsMobile, useWindowHeight } from '@/hooks/useChartDimensions'; -import { ParameterMetadata } from '@/types/metadata/parameterMetadata'; +import { ParameterMetadata } from '@/types/metadata'; import { ValueIntervalCollection } from '@/types/subIngredients/valueInterval'; import { extendForDisplay, diff --git a/app/src/pathways/report/components/valueSetters/ValueInputBox.tsx b/app/src/pathways/report/components/valueSetters/ValueInputBox.tsx index 40bcad0e8..565d8b796 100644 --- a/app/src/pathways/report/components/valueSetters/ValueInputBox.tsx +++ b/app/src/pathways/report/components/valueSetters/ValueInputBox.tsx @@ -1,5 +1,5 @@ import { Group, NumberInput, Stack, Switch, Text } from '@mantine/core'; -import { ParameterMetadata } from '@/types/metadata/parameterMetadata'; +import { ParameterMetadata } from '@/types/metadata'; interface ValueInputBoxProps { label?: string; diff --git a/app/src/pathways/report/components/valueSetters/ValueSetterProps.ts b/app/src/pathways/report/components/valueSetters/ValueSetterProps.ts index 50d96a96e..dfc3d3b97 100644 --- a/app/src/pathways/report/components/valueSetters/ValueSetterProps.ts +++ b/app/src/pathways/report/components/valueSetters/ValueSetterProps.ts @@ -1,5 +1,5 @@ import { Dispatch, SetStateAction } from 'react'; -import { ParameterMetadata } from '@/types/metadata/parameterMetadata'; +import { ParameterMetadata } from '@/types/metadata'; import { PolicyStateProps } from '@/types/pathwayState'; import { ValueInterval } from '@/types/subIngredients/valueInterval'; diff --git a/app/src/pathways/report/components/valueSetters/getDefaultValueForParam.ts b/app/src/pathways/report/components/valueSetters/getDefaultValueForParam.ts index fadf06326..6cdf40ed8 100644 --- a/app/src/pathways/report/components/valueSetters/getDefaultValueForParam.ts +++ b/app/src/pathways/report/components/valueSetters/getDefaultValueForParam.ts @@ -1,4 +1,4 @@ -import { ParameterMetadata } from '@/types/metadata/parameterMetadata'; +import { ParameterMetadata } from '@/types/metadata'; import { PolicyStateProps } from '@/types/pathwayState'; import { getParameterByName } from '@/types/subIngredients/parameter'; import { ValueIntervalCollection } from '@/types/subIngredients/valueInterval'; diff --git a/app/src/pathways/report/views/policy/PolicyParameterSelectorView.tsx b/app/src/pathways/report/views/policy/PolicyParameterSelectorView.tsx index 3646a540f..423fbd4f2 100644 --- a/app/src/pathways/report/views/policy/PolicyParameterSelectorView.tsx +++ b/app/src/pathways/report/views/policy/PolicyParameterSelectorView.tsx @@ -13,7 +13,7 @@ import HeaderNavigation from '@/components/shared/HomeHeader'; import { spacing } from '@/designTokens'; import { colors } from '@/designTokens/colors'; import { RootState } from '@/store'; -import { ParameterMetadata } from '@/types/metadata/parameterMetadata'; +import { ParameterMetadata } from '@/types/metadata'; import { PolicyStateProps } from '@/types/pathwayState'; import { countPolicyModifications } from '@/utils/countParameterChanges'; import MainEmpty from '../../components/policyParameterSelector/MainEmpty'; @@ -37,7 +37,7 @@ export default function PolicyParameterSelectorView({ const [mobileOpened, { toggle: toggleMobile }] = useDisclosure(); // Get metadata from Redux state - const { parameterTree, parameters, coreLoading, coreError } = useSelector( + const { parameterTree, parameters, loading, error } = useSelector( (state: RootState) => state.metadata ); @@ -45,10 +45,10 @@ export default function PolicyParameterSelectorView({ const modificationCount = countPolicyModifications(policy); // Show error if metadata failed to load - if (coreError) { + if (error) { return (
- Error loading parameters: {coreError} + Error loading parameters: {error} Please try refreshing the page.
); @@ -110,7 +110,7 @@ export default function PolicyParameterSelectorView({ - {coreLoading || !parameterTree ? ( + {loading || !parameterTree ? (
Loading parameters...
) : ( @@ -118,7 +118,7 @@ export default function PolicyParameterSelectorView({ - {coreLoading || !parameterTree ? ( + {loading || !parameterTree ? ( ) : selectedLeafParam ? ( state.metadata); - const { coreLoading: loading, coreError: error } = metadata; + const { loading, error } = metadata; // Get all basic non-person fields dynamically (country-agnostic) // This handles US entities (tax_unit, spm_unit, etc.) and UK entities (benunit) automatically diff --git a/app/src/reducers/metadataReducer.ts b/app/src/reducers/metadataReducer.ts index bb582c9ab..66efb97af 100644 --- a/app/src/reducers/metadataReducer.ts +++ b/app/src/reducers/metadataReducer.ts @@ -1,7 +1,11 @@ -import { createAsyncThunk, createSlice, PayloadAction } from '@reduxjs/toolkit'; -import { buildParameterTree } from '@/libs/buildParameterTree'; -import { loadCoreMetadata, loadParameters } from '@/storage'; -import { MetadataState } from '@/types/metadata'; +import { createAsyncThunk, createSlice, PayloadAction } from "@reduxjs/toolkit"; +import { buildParameterTree } from "@/libs/buildParameterTree"; +import { loadCoreMetadata } from "@/storage"; +import { + MetadataState, + VariableMetadata, + ParameterMetadata, +} from "@/types/metadata"; /** * Initial state for API-driven metadata @@ -12,13 +16,10 @@ import { MetadataState } from '@/types/metadata'; const initialState: MetadataState = { currentCountry: null, - // Tiered loading states - coreLoading: false, - coreLoaded: false, - coreError: null, - parametersLoading: false, - parametersLoaded: false, - parametersError: null, + // Unified loading state + loading: false, + loaded: false, + error: null, progress: 0, // API-driven data @@ -42,41 +43,30 @@ export const fetchMetadataThunk = createAsyncThunk< } }); -// V2 thunk: Fetch core metadata (variables + datasets) +// V2 thunk: Fetch all metadata (variables, datasets, parameters, parameterValues) export const fetchCoreMetadataThunk = createAsyncThunk( - 'metadata/fetchCore', + "metadata/fetchCore", async (countryId: string, { rejectWithValue }) => { try { const result = await loadCoreMetadata(countryId); return { ...result, countryId }; } catch (error) { - return rejectWithValue(error instanceof Error ? error.message : 'Unknown error'); + return rejectWithValue( + error instanceof Error ? error.message : "Unknown error", + ); } - } -); - -// Fetch parameters (lazy load) -export const fetchParametersThunk = createAsyncThunk( - 'metadata/fetchParameters', - async (countryId: string, { rejectWithValue }) => { - try { - const result = await loadParameters(countryId); - return result; - } catch (error) { - return rejectWithValue(error instanceof Error ? error.message : 'Unknown error'); - } - } + }, ); const metadataSlice = createSlice({ - name: 'metadata', + name: "metadata", initialState, reducers: { setCurrentCountry(state, action: PayloadAction) { state.currentCountry = action.payload; // Optionally clear existing metadata when country changes // This prevents showing stale data from previous country - if (state.version !== null || state.coreLoaded) { + if (state.version !== null || state.loaded) { // Clear API-driven metadata and reset loading states state.variables = {}; state.parameters = {}; @@ -84,12 +74,9 @@ const metadataSlice = createSlice({ state.version = null; state.parameterTree = null; // Reset loading states - state.coreLoaded = false; - state.coreLoading = false; - state.coreError = null; - state.parametersLoaded = false; - state.parametersLoading = false; - state.parametersError = null; + state.loaded = false; + state.loading = false; + state.error = null; } }, clearMetadata(state) { @@ -98,24 +85,36 @@ const metadataSlice = createSlice({ }, extraReducers: (builder) => { builder - // Core metadata thunk .addCase(fetchCoreMetadataThunk.pending, (state) => { - state.coreLoading = true; - state.coreError = null; + state.loading = true; + state.error = null; }) .addCase(fetchCoreMetadataThunk.fulfilled, (state, action) => { const { data, countryId } = action.payload; - state.coreLoading = false; - state.coreLoaded = true; - state.coreError = null; + state.loading = false; + state.loaded = true; + state.error = null; state.currentCountry = countryId; state.version = data.version; // Transform V2 variables array to record format - const variablesRecord: Record = {}; + const variablesRecord: Record = {}; for (const v of data.variables) { - variablesRecord[v.name] = v; + variablesRecord[v.name] = { + id: v.id, + name: v.name, + entity: v.entity, + description: v.description, + data_type: v.data_type, + possible_values: v.possible_values, + tax_benefit_model_version_id: v.tax_benefit_model_version_id, + created_at: v.created_at, + // Generate label from name if not provided + label: v.name + .replace(/_/g, " ") + .replace(/\b\w/g, (c) => c.toUpperCase()), + }; } state.variables = variablesRecord; @@ -127,31 +126,20 @@ const metadataSlice = createSlice({ default: i === 0, })); - // Static data (entities, basicInputs, timePeriods, regions, modelledPolicies, currentLawId) - // is no longer stored in Redux. Access it via hooks from @/hooks/useStaticMetadata. - }) - .addCase(fetchCoreMetadataThunk.rejected, (state, action) => { - state.coreLoading = false; - state.coreError = action.payload as string; - }) - // Parameters thunk - .addCase(fetchParametersThunk.pending, (state) => { - state.parametersLoading = true; - state.parametersError = null; - }) - .addCase(fetchParametersThunk.fulfilled, (state, action) => { - const { data } = action.payload; - - state.parametersLoading = false; - state.parametersLoaded = true; - state.parametersError = null; - // Transform V2 parameters array to record format with values - const parametersRecord: Record = {}; + const parametersRecord: Record = {}; for (const p of data.parameters) { parametersRecord[p.name] = { - ...p, - // Parameter values will be associated by parameter_id + id: p.id, + name: p.name, + label: p.label, + description: p.description, + unit: p.unit, + data_type: p.data_type, + tax_benefit_model_version_id: p.tax_benefit_model_version_id, + created_at: p.created_at, + parameter: p.name, // Use name as parameter path + type: "parameter", values: {}, }; } @@ -161,8 +149,11 @@ const metadataSlice = createSlice({ const param = data.parameters.find((p) => p.id === pv.parameter_id); if (param && parametersRecord[param.name]) { // Use start_date as key for values (V1 format compatibility) - const dateKey = pv.start_date.split('T')[0]; - parametersRecord[param.name].values[dateKey] = pv.value_json; + const dateKey = pv.start_date.split("T")[0]; + if (!parametersRecord[param.name].values) { + parametersRecord[param.name].values = {}; + } + parametersRecord[param.name].values![dateKey] = pv.value_json; } } @@ -174,10 +165,13 @@ const metadataSlice = createSlice({ } catch { state.parameterTree = null; } + + // Static data (entities, basicInputs, timePeriods, regions, modelledPolicies, currentLawId) + // is no longer stored in Redux. Access it via hooks from @/hooks/useStaticMetadata. }) - .addCase(fetchParametersThunk.rejected, (state, action) => { - state.parametersLoading = false; - state.parametersError = action.payload as string; + .addCase(fetchCoreMetadataThunk.rejected, (state, action) => { + state.loading = false; + state.error = action.payload as string; }); }, }); diff --git a/app/src/routing/guards/CoreMetadataGuard.tsx b/app/src/routing/guards/CoreMetadataGuard.tsx index f8273e638..9e247add9 100644 --- a/app/src/routing/guards/CoreMetadataGuard.tsx +++ b/app/src/routing/guards/CoreMetadataGuard.tsx @@ -6,17 +6,16 @@ import ErrorPage from '@/pages/report-output/ErrorPage'; import LoadingPage from '@/pages/report-output/LoadingPage'; /** - * Guard component that ensures core metadata (variables + datasets) is loaded - * before rendering child routes. + * Guard component that ensures all metadata (variables, datasets, parameters, parameterValues) + * is loaded before rendering child routes. * - * This is the V2 tiered loading approach - only loads essential data immediately. - * For routes that also need parameters, wrap with ParametersGuard. + * This is the V2 unified loading approach - loads all metadata in one request. * * Loading states: - * 1. coreLoading === true → Shows loading page - * 2. coreError !== null → Shows error page - * 3. coreLoaded === false → Shows loading page - * 4. coreLoaded === true → Renders child routes + * 1. loading === true → Shows loading page + * 2. error !== null → Shows error page + * 3. loaded === false → Shows loading page + * 4. loaded === true → Renders child routes * * Example usage in Router: * ```tsx @@ -32,13 +31,13 @@ export function CoreMetadataGuard() { const countryId = useCurrentCountry(); useFetchCoreMetadata(countryId); - const { coreLoading, coreLoaded, coreError } = useSelector(selectCoreMetadataState); + const { loading, loaded, error } = useSelector(selectCoreMetadataState); - if (coreError) { - return ; + if (error) { + return ; } - if (coreLoading || !coreLoaded) { + if (loading || !loaded) { return ; } diff --git a/app/src/routing/guards/ParametersGuard.tsx b/app/src/routing/guards/ParametersGuard.tsx deleted file mode 100644 index 0a0af72af..000000000 --- a/app/src/routing/guards/ParametersGuard.tsx +++ /dev/null @@ -1,54 +0,0 @@ -import { useSelector } from 'react-redux'; -import { Outlet } from 'react-router-dom'; -import { useCurrentCountry } from '@/hooks/useCurrentCountry'; -import { selectParametersState, useFetchParameters } from '@/hooks/useParameters'; -import ErrorPage from '@/pages/report-output/ErrorPage'; -import LoadingPage from '@/pages/report-output/LoadingPage'; - -/** - * Guard component that ensures parameters are loaded before rendering child routes. - * - * This is Tier 2 of the V2 tiered loading approach - only used on routes that - * need policy parameters (e.g., policy editing pages, report pages). - * - * Prerequisites: - * - Must be nested inside CoreMetadataGuard (core metadata must be loaded first) - * - * Loading states: - * 1. parametersLoading === true → Shows loading page - * 2. parametersError !== null → Shows error page - * 3. parametersLoaded === false → Shows loading page - * 4. parametersLoaded === true → Renders child routes - * - * Example usage in Router: - * ```tsx - * { - * element: , - * children: [ - * { - * element: , - * children: [ - * { path: 'policy/*', element: }, - * ], - * }, - * ], - * } - * ``` - */ -export function ParametersGuard() { - const countryId = useCurrentCountry(); - useFetchParameters(countryId); - - const { parametersLoading, parametersLoaded, parametersError } = - useSelector(selectParametersState); - - if (parametersError) { - return ; - } - - if (parametersLoading || !parametersLoaded) { - return ; - } - - return ; -} diff --git a/app/src/storage/index.ts b/app/src/storage/index.ts index ca57fe3ad..8a94ee251 100644 --- a/app/src/storage/index.ts +++ b/app/src/storage/index.ts @@ -43,14 +43,10 @@ export { getStoreCounts, } from "./metadataBulkLoader"; -// Loaders (tiered loading) +// Loaders (unified metadata loading) export { loadCoreMetadata, isCoreMetadataCached, - loadParameters, - isParametersCached, - type CoreMetadata, - type CoreMetadataLoadResult, - type ParametersData, - type ParametersLoadResult, + type Metadata, + type MetadataLoadResult, } from "./loaders"; diff --git a/app/src/storage/loaders/coreMetadataLoader.ts b/app/src/storage/loaders/coreMetadataLoader.ts index 552e20861..7ec61c131 100644 --- a/app/src/storage/loaders/coreMetadataLoader.ts +++ b/app/src/storage/loaders/coreMetadataLoader.ts @@ -1,6 +1,8 @@ import { fetchVariables, fetchDatasets, + fetchParameters, + fetchParameterValues, fetchModelVersion, fetchModelVersionId, } from "@/api/v2"; @@ -9,25 +11,34 @@ import { setCacheMetadata, clearAndLoadVariables, clearAndLoadDatasets, + clearAndLoadParameters, + clearAndLoadParameterValues, getAllVariables, getAllDatasets, + getAllParameters, + getAllParameterValues, type CacheMetadata, type Variable, type Dataset, + type Parameter, + type ParameterValue, } from "@/storage"; -export interface CoreMetadata { +export interface Metadata { variables: Variable[]; datasets: Dataset[]; + parameters: Parameter[]; + parameterValues: ParameterValue[]; version: string; versionId: string; } -export interface CoreMetadataLoadResult { - data: CoreMetadata; +export interface MetadataLoadResult { + data: Metadata; fromCache: boolean; } + interface VersionInfo { version: string; versionId: string; @@ -53,76 +64,85 @@ function isCacheValid( ): boolean { return ( cached !== undefined && - cached.coreLoaded && + cached.loaded && cached.version === remote.version && cached.versionId === remote.versionId ); } /** - * Load core metadata from IndexedDB cache + * Load metadata from IndexedDB cache */ -async function loadFromCache( - cached: CacheMetadata, -): Promise { - const [variables, datasets] = await Promise.all([ +async function loadFromCache(cached: CacheMetadata): Promise { + const [variables, datasets, parameters, parameterValues] = await Promise.all([ getAllVariables(), getAllDatasets(), + getAllParameters(), + getAllParameterValues(), ]); return { variables, datasets, + parameters, + parameterValues, version: cached.version, versionId: cached.versionId, }; } /** - * Fetch fresh core metadata from the API + * Fetch fresh metadata from the API */ -async function fetchFreshMetadata( - countryId: string, -): Promise<{ variables: Variable[]; datasets: Dataset[] }> { - const [variables, datasets] = await Promise.all([ +async function fetchFreshMetadata(countryId: string): Promise<{ + variables: Variable[]; + datasets: Dataset[]; + parameters: Parameter[]; + parameterValues: ParameterValue[]; +}> { + const [variables, datasets, parameters, parameterValues] = await Promise.all([ fetchVariables(countryId), fetchDatasets(countryId), + fetchParameters(countryId), + fetchParameterValues(countryId), ]); - return { variables, datasets }; + return { variables, datasets, parameters, parameterValues }; } /** - * Store core metadata in IndexedDB + * Store metadata in IndexedDB */ async function storeInCache( countryId: string, variables: Variable[], datasets: Dataset[], + parameters: Parameter[], + parameterValues: ParameterValue[], versionInfo: VersionInfo, - previousCache: CacheMetadata | undefined, ): Promise { await Promise.all([ clearAndLoadVariables(variables), clearAndLoadDatasets(datasets), + clearAndLoadParameters(parameters), + clearAndLoadParameterValues(parameterValues), ]); await setCacheMetadata({ countryId, version: versionInfo.version, versionId: versionInfo.versionId, - coreLoaded: true, - parametersLoaded: previousCache?.parametersLoaded ?? false, + loaded: true, timestamp: Date.now(), }); } /** - * Load core metadata (variables + datasets) for a country. + * Load all metadata (variables, datasets, parameters, parameterValues) for a country. * Uses IndexedDB cache with version-based invalidation. */ export async function loadCoreMetadata( countryId: string, -): Promise { +): Promise { const cached = await getCacheMetadata(countryId); const versionInfo = await fetchVersionInfo(countryId); @@ -131,23 +151,31 @@ export async function loadCoreMetadata( return { data, fromCache: true }; } - const { variables, datasets } = await fetchFreshMetadata(countryId); - await storeInCache(countryId, variables, datasets, versionInfo, cached); + const { variables, datasets, parameters, parameterValues } = + await fetchFreshMetadata(countryId); + await storeInCache( + countryId, + variables, + datasets, + parameters, + parameterValues, + versionInfo, + ); return { - data: { variables, datasets, ...versionInfo }, + data: { variables, datasets, parameters, parameterValues, ...versionInfo }, fromCache: false, }; } /** - * Check if core metadata is cached and valid for a country + * Check if metadata is cached and valid for a country */ export async function isCoreMetadataCached( countryId: string, ): Promise { const cached = await getCacheMetadata(countryId); - if (!cached?.coreLoaded) return false; + if (!cached?.loaded) return false; const versionInfo = await fetchVersionInfo(countryId); return isCacheValid(cached, versionInfo); diff --git a/app/src/storage/loaders/index.ts b/app/src/storage/loaders/index.ts index 42de69e86..eea29cc8d 100644 --- a/app/src/storage/loaders/index.ts +++ b/app/src/storage/loaders/index.ts @@ -1,13 +1,6 @@ export { loadCoreMetadata, isCoreMetadataCached, - type CoreMetadata, - type CoreMetadataLoadResult, + type Metadata, + type MetadataLoadResult, } from "./coreMetadataLoader"; - -export { - loadParameters, - isParametersCached, - type ParametersData, - type ParametersLoadResult, -} from "./parametersLoader"; diff --git a/app/src/storage/loaders/parametersLoader.ts b/app/src/storage/loaders/parametersLoader.ts deleted file mode 100644 index a7120229b..000000000 --- a/app/src/storage/loaders/parametersLoader.ts +++ /dev/null @@ -1,105 +0,0 @@ -import { - fetchParameters, - fetchParameterValues, - fetchModelVersion, -} from "@/api/v2"; -import { - getCacheMetadata, - setCacheMetadata, - clearAndLoadParameters, - clearAndLoadParameterValues, - getAllParameters, - getAllParameterValues, - type Parameter, - type ParameterValue, -} from "@/storage"; - -export interface ParametersData { - parameters: Parameter[]; - parameterValues: ParameterValue[]; -} - -export interface ParametersLoadResult { - data: ParametersData; - fromCache: boolean; -} - -/** - * Load parameters and parameter values for a country. - * Uses IndexedDB cache with version-based invalidation. - * - * This is Tier 2 loading - only called when needed for policy editing. - * - * @param countryId - Country ID (e.g., 'us', 'uk') - * @returns Parameters data and whether it came from cache - */ -export async function loadParameters( - countryId: string, -): Promise { - // Check cached metadata - const cached = await getCacheMetadata(countryId); - - // Fetch current version from API - const remoteVersion = await fetchModelVersion(countryId); - - // Cache hit: version matches and parameters are loaded - if (cached?.version === remoteVersion && cached.parametersLoaded) { - const [parameters, parameterValues] = await Promise.all([ - getAllParameters(), - getAllParameterValues(), - ]); - - return { - data: { parameters, parameterValues }, - fromCache: true, - }; - } - - // Cache miss: fetch fresh data (parallel fetch) - const [parameters, parameterValues] = await Promise.all([ - fetchParameters(countryId), - fetchParameterValues(countryId), - ]); - - // Store in IndexedDB (parallel writes) - await Promise.all([ - clearAndLoadParameters(parameters), - clearAndLoadParameterValues(parameterValues), - ]); - - // Update cache metadata - if (cached) { - await setCacheMetadata({ - ...cached, - parametersLoaded: true, - timestamp: Date.now(), - }); - } else { - // Edge case: parameters loaded before core (shouldn't happen normally) - await setCacheMetadata({ - countryId, - version: remoteVersion, - versionId: "", - coreLoaded: false, - parametersLoaded: true, - timestamp: Date.now(), - }); - } - - return { - data: { parameters, parameterValues }, - fromCache: false, - }; -} - -/** - * Check if parameters are cached for a country - */ -export async function isParametersCached(countryId: string): Promise { - const cached = await getCacheMetadata(countryId); - if (!cached?.parametersLoaded) return false; - - // Verify version is still current - const remoteVersion = await fetchModelVersion(countryId); - return cached.version === remoteVersion; -} diff --git a/app/src/storage/metadataDb.ts b/app/src/storage/metadataDb.ts index 3dd88a7c6..360191256 100644 --- a/app/src/storage/metadataDb.ts +++ b/app/src/storage/metadataDb.ts @@ -64,8 +64,7 @@ export interface CacheMetadata { countryId: string; version: string; versionId: string; - coreLoaded: boolean; - parametersLoaded: boolean; + loaded: boolean; timestamp: number; } diff --git a/app/src/tests/fixtures/components/HistoricalValuesMocks.ts b/app/src/tests/fixtures/components/HistoricalValuesMocks.ts index 4ed23bc8d..d524cac29 100644 --- a/app/src/tests/fixtures/components/HistoricalValuesMocks.ts +++ b/app/src/tests/fixtures/components/HistoricalValuesMocks.ts @@ -2,7 +2,7 @@ * Mock data and fixtures for testing HistoricalValues chart component */ -import { ParameterMetadata } from '@/types/metadata/parameterMetadata'; +import { ParameterMetadata } from '@/types/metadata'; import { ValueIntervalCollection } from '@/types/subIngredients/valueInterval'; // Sample parameter metadata for different unit types diff --git a/app/src/tests/fixtures/components/report/ParameterTable.ts b/app/src/tests/fixtures/components/report/ParameterTable.ts index 82e574a6c..52a126de6 100644 --- a/app/src/tests/fixtures/components/report/ParameterTable.ts +++ b/app/src/tests/fixtures/components/report/ParameterTable.ts @@ -1,6 +1,6 @@ import { vi } from 'vitest'; import { Policy } from '@/types/ingredients/Policy'; -import { ParameterMetadata } from '@/types/metadata/parameterMetadata'; +import { ParameterMetadata } from '@/types/metadata'; import { PolicyColumn } from '@/utils/policyTableHelpers'; export const MOCK_PARAMETER_METADATA: Record = { diff --git a/app/src/tests/fixtures/hooks/useMetadataMocks.ts b/app/src/tests/fixtures/hooks/useMetadataMocks.ts index 9cadeffe9..e5a3b8c7d 100644 --- a/app/src/tests/fixtures/hooks/useMetadataMocks.ts +++ b/app/src/tests/fixtures/hooks/useMetadataMocks.ts @@ -1,6 +1,6 @@ import { CURRENT_YEAR } from '@/constants'; -import { MetadataState } from '@/types/metadata'; -import { DEFAULT_V2_LOADING_STATES } from '../reducers/metadataReducerMocks'; +import { MetadataState, VariableMetadata, ParameterMetadata } from '@/types/metadata'; +import { DEFAULT_LOADING_STATES } from '../reducers/metadataReducerMocks'; // Test country IDs export const TEST_COUNTRY_US = 'us'; @@ -13,7 +13,7 @@ export const TEST_ERROR_MESSAGE = 'Previous fetch failed'; // Mock metadata states (only API-driven data, not static data) export const mockInitialMetadataState: MetadataState = { currentCountry: null, - ...DEFAULT_V2_LOADING_STATES, + ...DEFAULT_LOADING_STATES, progress: 0, variables: {}, parameters: {}, @@ -24,22 +24,21 @@ export const mockInitialMetadataState: MetadataState = { export const mockLoadingMetadataState: MetadataState = { ...mockInitialMetadataState, - coreLoading: true, + loading: true, currentCountry: TEST_COUNTRY_US, }; export const mockLoadedMetadataState: MetadataState = { currentCountry: TEST_COUNTRY_US, - ...DEFAULT_V2_LOADING_STATES, - coreLoaded: true, - parametersLoaded: true, + ...DEFAULT_LOADING_STATES, + loaded: true, progress: 100, variables: { - income: { label: 'Income', unit: 'currency-USD' }, - age: { label: 'Age', unit: 'year' }, + income: { name: 'income', entity: 'person', description: 'Total income', label: 'Income', unit: 'currency-USD' } as VariableMetadata, + age: { name: 'age', entity: 'person', description: 'Age in years', label: 'Age', unit: 'year' } as VariableMetadata, }, parameters: { - tax_rate: { label: 'Tax Rate', values: { [CURRENT_YEAR]: 0.25 } }, + tax_rate: { parameter: 'tax_rate', label: 'Tax Rate', values: { [CURRENT_YEAR]: 0.25 } } as ParameterMetadata, }, datasets: [ { @@ -62,7 +61,7 @@ export const mockUKMetadataState: MetadataState = { ...mockLoadedMetadataState, currentCountry: TEST_COUNTRY_UK, variables: { - income: { label: 'Income', unit: 'currency-GBP' }, + income: { name: 'income', entity: 'person', description: 'Total income', label: 'Income', unit: 'currency-GBP' } as VariableMetadata, }, datasets: [ { @@ -87,6 +86,6 @@ export const mockStateWithoutVersion: MetadataState = { export const mockErrorState: MetadataState = { ...mockInitialMetadataState, - coreError: TEST_ERROR_MESSAGE, + error: TEST_ERROR_MESSAGE, currentCountry: TEST_COUNTRY_US, }; diff --git a/app/src/tests/fixtures/hooks/useUserReportsMocks.ts b/app/src/tests/fixtures/hooks/useUserReportsMocks.ts index db71ed836..2918df8fd 100644 --- a/app/src/tests/fixtures/hooks/useUserReportsMocks.ts +++ b/app/src/tests/fixtures/hooks/useUserReportsMocks.ts @@ -12,7 +12,7 @@ import { SimulationMetadata } from '@/types/metadata/simulationMetadata'; import { US_REGION_TYPES } from '@/types/regionTypes'; import { mockReport } from '../adapters/reportMocks'; import { TEST_USER_ID } from '../api/reportAssociationMocks'; -import { DEFAULT_V2_LOADING_STATES } from '../reducers/metadataReducerMocks'; +import { DEFAULT_LOADING_STATES } from '../reducers/metadataReducerMocks'; // Test ID constants export const TEST_SIMULATION_ID_1 = 'sim-456'; @@ -187,8 +187,8 @@ export const mockHouseholdMetadata: HouseholdMetadata = { export const mockMetadataInitialState = { metadata: { currentCountry: TEST_COUNTRIES.US, - ...DEFAULT_V2_LOADING_STATES, - coreLoaded: true, + ...DEFAULT_LOADING_STATES, + loaded: true, progress: 100, variables: {}, parameters: {}, diff --git a/app/src/tests/fixtures/pages/constituency/constituencyComponentMocks.ts b/app/src/tests/fixtures/pages/constituency/constituencyComponentMocks.ts index 4b48a8e40..91568f3c7 100644 --- a/app/src/tests/fixtures/pages/constituency/constituencyComponentMocks.ts +++ b/app/src/tests/fixtures/pages/constituency/constituencyComponentMocks.ts @@ -1,6 +1,6 @@ import type { MetadataState } from '@/types/metadata'; import type { ReportOutputSocietyWideUK } from '@/types/metadata/ReportOutputSocietyWideUK'; -import { DEFAULT_V2_LOADING_STATES } from '../../reducers/metadataReducerMocks'; +import { DEFAULT_LOADING_STATES } from '../../reducers/metadataReducerMocks'; /** * Mock UK report output with constituency data @@ -195,8 +195,8 @@ export const MOCK_UK_REPORT_OUTPUT_NO_CONSTITUENCY: ReportOutputSocietyWideUK = */ export const MOCK_METADATA: MetadataState = { currentCountry: 'uk', - ...DEFAULT_V2_LOADING_STATES, - coreLoaded: true, + ...DEFAULT_LOADING_STATES, + loaded: true, progress: 100, variables: {}, parameters: {}, diff --git a/app/src/tests/fixtures/pages/report-output/DynamicsSubPage.ts b/app/src/tests/fixtures/pages/report-output/DynamicsSubPage.ts index f10da2b52..474ebeb8b 100644 --- a/app/src/tests/fixtures/pages/report-output/DynamicsSubPage.ts +++ b/app/src/tests/fixtures/pages/report-output/DynamicsSubPage.ts @@ -1,6 +1,6 @@ import { configureStore } from '@reduxjs/toolkit'; import { Policy } from '@/types/ingredients/Policy'; -import { ParameterMetadata } from '@/types/metadata/parameterMetadata'; +import { ParameterMetadata } from '@/types/metadata'; export const MOCK_PARAMETER_METADATA: Record = { 'gov.irs.credits.ctc.amount': { diff --git a/app/src/tests/fixtures/reducers/metadataReducerMocks.ts b/app/src/tests/fixtures/reducers/metadataReducerMocks.ts index 8cfe1914d..2dd324c52 100644 --- a/app/src/tests/fixtures/reducers/metadataReducerMocks.ts +++ b/app/src/tests/fixtures/reducers/metadataReducerMocks.ts @@ -1,6 +1,6 @@ import { CURRENT_YEAR } from '@/constants'; import { ParameterTreeNode } from '@/libs/buildParameterTree'; -import { MetadataApiPayload, MetadataState } from '@/types/metadata'; +import { MetadataApiPayload, MetadataState, VariableMetadata, ParameterMetadata } from '@/types/metadata'; import { US_REGION_TYPES } from '@/types/regionTypes'; // Test constants @@ -15,20 +15,17 @@ export const TEST_PARAMETER_LABEL = 'Income Tax'; export const TEST_VARIABLE_KEY = 'employment_income'; export const TEST_ENTITY_KEY = 'person'; -// Default V2 tiered loading states -export const DEFAULT_V2_LOADING_STATES = { - coreLoading: false, - coreLoaded: false, - coreError: null, - parametersLoading: false, - parametersLoaded: false, - parametersError: null, +// Default unified loading states +export const DEFAULT_LOADING_STATES = { + loading: false, + loaded: false, + error: null, } as const; // Expected initial state (only contains API-driven data, not static data) export const EXPECTED_INITIAL_STATE: MetadataState = { currentCountry: null, - ...DEFAULT_V2_LOADING_STATES, + ...DEFAULT_LOADING_STATES, progress: 0, variables: {}, parameters: {}, @@ -38,13 +35,19 @@ export const EXPECTED_INITIAL_STATE: MetadataState = { }; // Mock variables -export const MOCK_VARIABLES = { +export const MOCK_VARIABLES: Record = { [TEST_VARIABLE_KEY]: { + name: TEST_VARIABLE_KEY, + entity: 'person', + description: 'Annual employment income', label: 'Employment Income', unit: 'currency-USD', documentation: 'Annual employment income', }, marital_status: { + name: 'marital_status', + entity: 'person', + description: 'Marital status of the person', label: 'Marital Status', possible_values: { single: 'Single', @@ -54,7 +57,7 @@ export const MOCK_VARIABLES = { }; // Mock parameters -export const MOCK_PARAMETERS = { +export const MOCK_PARAMETERS: Record = { [TEST_PARAMETER_KEY]: { parameter: TEST_PARAMETER_KEY, label: TEST_PARAMETER_LABEL, @@ -78,12 +81,10 @@ export const MOCK_ENTITIES = { [TEST_ENTITY_KEY]: { label: 'Person', plural: 'people', - documentation: 'A person entity', }, household: { label: 'Household', plural: 'households', - documentation: 'A household entity', }, }; @@ -91,11 +92,9 @@ export const MOCK_ENTITIES = { export const MOCK_VARIABLE_MODULES = { 'gov.tax': { label: 'Taxation', - documentation: 'Tax-related variables', }, 'gov.benefit': { label: 'Benefits', - documentation: 'Benefit-related variables', }, }; @@ -184,9 +183,8 @@ export const createMockApiPayload = ( // Mock state with data (only API-driven data) export const createMockStateWithData = (overrides?: Partial): MetadataState => ({ currentCountry: TEST_COUNTRY_US, - ...DEFAULT_V2_LOADING_STATES, - coreLoaded: true, - parametersLoaded: true, + ...DEFAULT_LOADING_STATES, + loaded: true, progress: 100, variables: MOCK_VARIABLES, parameters: MOCK_PARAMETERS, @@ -199,13 +197,13 @@ export const createMockStateWithData = (overrides?: Partial): Met // Mock loading state export const MOCK_LOADING_STATE: MetadataState = { ...EXPECTED_INITIAL_STATE, - coreLoading: true, + loading: true, }; // Mock error state export const MOCK_ERROR_STATE: MetadataState = { ...EXPECTED_INITIAL_STATE, - coreError: TEST_ERROR_MESSAGE, + error: TEST_ERROR_MESSAGE, }; // Mock state after clearing @@ -220,8 +218,8 @@ export const createExpectedFulfilledState = ( apiPayload: MetadataApiPayload ): MetadataState => ({ currentCountry: country, - ...DEFAULT_V2_LOADING_STATES, - coreLoaded: true, + ...DEFAULT_LOADING_STATES, + loaded: true, progress: 100, variables: apiPayload.result.variables, parameters: apiPayload.result.parameters, @@ -235,12 +233,12 @@ export const expectStateToEqual = (actual: MetadataState, expected: MetadataStat expect(actual).toEqual(expected); }; -export const expectCoreLoadingState = (state: MetadataState, isLoading: boolean) => { - expect(state.coreLoading).toBe(isLoading); +export const expectLoadingState = (state: MetadataState, isLoading: boolean) => { + expect(state.loading).toBe(isLoading); }; -export const expectCoreErrorState = (state: MetadataState, error: string | null) => { - expect(state.coreError).toBe(error); +export const expectErrorState = (state: MetadataState, error: string | null) => { + expect(state.error).toBe(error); }; export const expectCurrentCountry = (state: MetadataState, country: string | null) => { diff --git a/app/src/tests/fixtures/storage/loadersMocks.ts b/app/src/tests/fixtures/storage/loadersMocks.ts index a9cf297ad..3bfc783d0 100644 --- a/app/src/tests/fixtures/storage/loadersMocks.ts +++ b/app/src/tests/fixtures/storage/loadersMocks.ts @@ -1,8 +1,7 @@ /** * Fixtures for storage loaders tests */ -import type { CoreMetadata, CoreMetadataLoadResult } from '@/storage/loaders/coreMetadataLoader'; -import type { ParametersData, ParametersLoadResult } from '@/storage/loaders/parametersLoader'; +import type { Metadata, MetadataLoadResult } from '@/storage/loaders/coreMetadataLoader'; import { createMockVariables, createMockParameters, @@ -16,77 +15,43 @@ import { // Re-export shared constants export { TEST_COUNTRIES, TEST_VERSIONS }; -// Core metadata factory -export function createMockCoreMetadata( - overrides: Partial = {} -): CoreMetadata { +// Metadata factory (unified: includes parameters) +export function createMockMetadata(overrides: Partial = {}): Metadata { return { variables: createMockVariables(5), datasets: createMockDatasets(2), - version: TEST_VERSIONS.US_VERSION, - versionId: TEST_VERSIONS.US_VERSION_ID, - ...overrides, - }; -} - -// Core metadata load result factory -export function createMockCoreMetadataLoadResult( - overrides: Partial = {} -): CoreMetadataLoadResult { - return { - data: createMockCoreMetadata(), - fromCache: false, - ...overrides, - }; -} - -// Parameters data factory -export function createMockParametersData( - overrides: Partial = {} -): ParametersData { - return { parameters: createMockParameters(5), parameterValues: createMockParameterValues(10), + version: TEST_VERSIONS.US_VERSION, + versionId: TEST_VERSIONS.US_VERSION_ID, ...overrides, }; } -// Parameters load result factory -export function createMockParametersLoadResult( - overrides: Partial = {} -): ParametersLoadResult { +// Metadata load result factory +export function createMockMetadataLoadResult( + overrides: Partial = {}, +): MetadataLoadResult { return { - data: createMockParametersData(), + data: createMockMetadata(), fromCache: false, ...overrides, }; } -// Valid cache metadata for core (already loaded) -export function createValidCoreCache() { - return createMockCacheMetadata({ - coreLoaded: true, - parametersLoaded: false, - version: TEST_VERSIONS.US_VERSION, - versionId: TEST_VERSIONS.US_VERSION_ID, - }); -} - -// Valid cache metadata for parameters (already loaded) -export function createValidParametersCache() { +// Valid cache metadata (already loaded) +export function createValidCache() { return createMockCacheMetadata({ - coreLoaded: true, - parametersLoaded: true, + loaded: true, version: TEST_VERSIONS.US_VERSION, versionId: TEST_VERSIONS.US_VERSION_ID, }); } // Stale cache metadata (version mismatch) -export function createStaleCoreCache() { +export function createStaleCache() { return createMockCacheMetadata({ - coreLoaded: true, - parametersLoaded: false, + loaded: true, version: 'old-version-0.9.0', versionId: 'old-version-id', }); diff --git a/app/src/tests/fixtures/storage/storageMocks.ts b/app/src/tests/fixtures/storage/storageMocks.ts index cdfc9341e..819579283 100644 --- a/app/src/tests/fixtures/storage/storageMocks.ts +++ b/app/src/tests/fixtures/storage/storageMocks.ts @@ -94,8 +94,7 @@ export function createMockCacheMetadata( countryId: TEST_COUNTRIES.US, version: TEST_VERSIONS.US_VERSION, versionId: TEST_VERSIONS.US_VERSION_ID, - coreLoaded: true, - parametersLoaded: false, + loaded: true, timestamp: Date.now(), ...overrides, }; diff --git a/app/src/tests/fixtures/utils/parameterLabelsMocks.ts b/app/src/tests/fixtures/utils/parameterLabelsMocks.ts index 57c49adbe..b641b6164 100644 --- a/app/src/tests/fixtures/utils/parameterLabelsMocks.ts +++ b/app/src/tests/fixtures/utils/parameterLabelsMocks.ts @@ -2,7 +2,7 @@ * Test fixtures for parameterLabels utility functions */ -import { ParameterMetadataCollection } from '@/types/metadata/parameterMetadata'; +import { ParameterMetadataCollection } from '@/types/metadata'; /** * Test parameter names representing different hierarchical depths diff --git a/app/src/tests/unit/storage/loaders/coreMetadataLoader.test.ts b/app/src/tests/unit/storage/loaders/coreMetadataLoader.test.ts index c00396713..36dedf730 100644 --- a/app/src/tests/unit/storage/loaders/coreMetadataLoader.test.ts +++ b/app/src/tests/unit/storage/loaders/coreMetadataLoader.test.ts @@ -2,19 +2,23 @@ import { describe, expect, it, vi, beforeEach } from 'vitest'; import { createMockVariables, createMockDatasets, + createMockParameters, + createMockParameterValues, } from '@/tests/fixtures/storage/storageMocks'; import { TEST_COUNTRIES, TEST_VERSIONS, API_RESPONSES, - createValidCoreCache, - createStaleCoreCache, + createValidCache, + createStaleCache, } from '@/tests/fixtures/storage/loadersMocks'; // Mock the API module vi.mock('@/api/v2', () => ({ fetchVariables: vi.fn(), fetchDatasets: vi.fn(), + fetchParameters: vi.fn(), + fetchParameterValues: vi.fn(), fetchModelVersion: vi.fn(), fetchModelVersionId: vi.fn(), })); @@ -25,14 +29,20 @@ vi.mock('@/storage', () => ({ setCacheMetadata: vi.fn(), clearAndLoadVariables: vi.fn(), clearAndLoadDatasets: vi.fn(), + clearAndLoadParameters: vi.fn(), + clearAndLoadParameterValues: vi.fn(), getAllVariables: vi.fn(), getAllDatasets: vi.fn(), + getAllParameters: vi.fn(), + getAllParameterValues: vi.fn(), })); // Import after mock setup import { fetchVariables, fetchDatasets, + fetchParameters, + fetchParameterValues, fetchModelVersion, fetchModelVersionId, } from '@/api/v2'; @@ -41,8 +51,12 @@ import { setCacheMetadata, clearAndLoadVariables, clearAndLoadDatasets, + clearAndLoadParameters, + clearAndLoadParameterValues, getAllVariables, getAllDatasets, + getAllParameters, + getAllParameterValues, } from '@/storage'; import { loadCoreMetadata, isCoreMetadataCached } from '@/storage/loaders/coreMetadataLoader'; @@ -56,13 +70,17 @@ describe('coreMetadataLoader', () => { // Given const cachedVariables = createMockVariables(5); const cachedDatasets = createMockDatasets(2); - const validCache = createValidCoreCache(); + const cachedParameters = createMockParameters(5); + const cachedParameterValues = createMockParameterValues(10); + const validCache = createValidCache(); vi.mocked(getCacheMetadata).mockResolvedValue(validCache); vi.mocked(fetchModelVersion).mockResolvedValue(API_RESPONSES.MODEL_VERSION); vi.mocked(fetchModelVersionId).mockResolvedValue(API_RESPONSES.MODEL_VERSION_ID); vi.mocked(getAllVariables).mockResolvedValue(cachedVariables); vi.mocked(getAllDatasets).mockResolvedValue(cachedDatasets); + vi.mocked(getAllParameters).mockResolvedValue(cachedParameters); + vi.mocked(getAllParameterValues).mockResolvedValue(cachedParameterValues); // When const result = await loadCoreMetadata(TEST_COUNTRIES.US); @@ -71,23 +89,31 @@ describe('coreMetadataLoader', () => { expect(result.fromCache).toBe(true); expect(result.data.variables).toEqual(cachedVariables); expect(result.data.datasets).toEqual(cachedDatasets); + expect(result.data.parameters).toEqual(cachedParameters); + expect(result.data.parameterValues).toEqual(cachedParameterValues); expect(result.data.version).toBe(TEST_VERSIONS.US_VERSION); expect(result.data.versionId).toBe(TEST_VERSIONS.US_VERSION_ID); expect(fetchVariables).not.toHaveBeenCalled(); expect(fetchDatasets).not.toHaveBeenCalled(); + expect(fetchParameters).not.toHaveBeenCalled(); + expect(fetchParameterValues).not.toHaveBeenCalled(); }); it('given stale cache then fetches fresh data from API', async () => { // Given const freshVariables = createMockVariables(10); const freshDatasets = createMockDatasets(3); - const staleCache = createStaleCoreCache(); + const freshParameters = createMockParameters(5); + const freshParameterValues = createMockParameterValues(10); + const staleCache = createStaleCache(); vi.mocked(getCacheMetadata).mockResolvedValue(staleCache); vi.mocked(fetchModelVersion).mockResolvedValue(API_RESPONSES.MODEL_VERSION); vi.mocked(fetchModelVersionId).mockResolvedValue(API_RESPONSES.MODEL_VERSION_ID); vi.mocked(fetchVariables).mockResolvedValue(freshVariables); vi.mocked(fetchDatasets).mockResolvedValue(freshDatasets); + vi.mocked(fetchParameters).mockResolvedValue(freshParameters); + vi.mocked(fetchParameterValues).mockResolvedValue(freshParameterValues); // When const result = await loadCoreMetadata(TEST_COUNTRIES.US); @@ -96,20 +122,28 @@ describe('coreMetadataLoader', () => { expect(result.fromCache).toBe(false); expect(result.data.variables).toEqual(freshVariables); expect(result.data.datasets).toEqual(freshDatasets); + expect(result.data.parameters).toEqual(freshParameters); + expect(result.data.parameterValues).toEqual(freshParameterValues); expect(fetchVariables).toHaveBeenCalledWith(TEST_COUNTRIES.US); expect(fetchDatasets).toHaveBeenCalledWith(TEST_COUNTRIES.US); + expect(fetchParameters).toHaveBeenCalledWith(TEST_COUNTRIES.US); + expect(fetchParameterValues).toHaveBeenCalledWith(TEST_COUNTRIES.US); }); it('given no cache then fetches fresh data from API', async () => { // Given const freshVariables = createMockVariables(5); const freshDatasets = createMockDatasets(2); + const freshParameters = createMockParameters(5); + const freshParameterValues = createMockParameterValues(10); vi.mocked(getCacheMetadata).mockResolvedValue(undefined); vi.mocked(fetchModelVersion).mockResolvedValue(API_RESPONSES.MODEL_VERSION); vi.mocked(fetchModelVersionId).mockResolvedValue(API_RESPONSES.MODEL_VERSION_ID); vi.mocked(fetchVariables).mockResolvedValue(freshVariables); vi.mocked(fetchDatasets).mockResolvedValue(freshDatasets); + vi.mocked(fetchParameters).mockResolvedValue(freshParameters); + vi.mocked(fetchParameterValues).mockResolvedValue(freshParameterValues); // When const result = await loadCoreMetadata(TEST_COUNTRIES.US); @@ -118,18 +152,24 @@ describe('coreMetadataLoader', () => { expect(result.fromCache).toBe(false); expect(result.data.variables).toEqual(freshVariables); expect(result.data.datasets).toEqual(freshDatasets); + expect(result.data.parameters).toEqual(freshParameters); + expect(result.data.parameterValues).toEqual(freshParameterValues); }); it('given fresh data then stores in cache', async () => { // Given const freshVariables = createMockVariables(5); const freshDatasets = createMockDatasets(2); + const freshParameters = createMockParameters(5); + const freshParameterValues = createMockParameterValues(10); vi.mocked(getCacheMetadata).mockResolvedValue(undefined); vi.mocked(fetchModelVersion).mockResolvedValue(API_RESPONSES.MODEL_VERSION); vi.mocked(fetchModelVersionId).mockResolvedValue(API_RESPONSES.MODEL_VERSION_ID); vi.mocked(fetchVariables).mockResolvedValue(freshVariables); vi.mocked(fetchDatasets).mockResolvedValue(freshDatasets); + vi.mocked(fetchParameters).mockResolvedValue(freshParameters); + vi.mocked(fetchParameterValues).mockResolvedValue(freshParameterValues); // When await loadCoreMetadata(TEST_COUNTRIES.US); @@ -137,38 +177,14 @@ describe('coreMetadataLoader', () => { // Then expect(clearAndLoadVariables).toHaveBeenCalledWith(freshVariables); expect(clearAndLoadDatasets).toHaveBeenCalledWith(freshDatasets); + expect(clearAndLoadParameters).toHaveBeenCalledWith(freshParameters); + expect(clearAndLoadParameterValues).toHaveBeenCalledWith(freshParameterValues); expect(setCacheMetadata).toHaveBeenCalledWith( expect.objectContaining({ countryId: TEST_COUNTRIES.US, version: API_RESPONSES.MODEL_VERSION, versionId: API_RESPONSES.MODEL_VERSION_ID, - coreLoaded: true, - }) - ); - }); - - it('given existing cache with parameters loaded then preserves parametersLoaded flag', async () => { - // Given - const freshVariables = createMockVariables(5); - const freshDatasets = createMockDatasets(2); - const cacheWithParams = createValidCoreCache(); - // Make it stale but with parametersLoaded - cacheWithParams.version = 'old-version'; - cacheWithParams.parametersLoaded = true; - - vi.mocked(getCacheMetadata).mockResolvedValue(cacheWithParams); - vi.mocked(fetchModelVersion).mockResolvedValue(API_RESPONSES.MODEL_VERSION); - vi.mocked(fetchModelVersionId).mockResolvedValue(API_RESPONSES.MODEL_VERSION_ID); - vi.mocked(fetchVariables).mockResolvedValue(freshVariables); - vi.mocked(fetchDatasets).mockResolvedValue(freshDatasets); - - // When - await loadCoreMetadata(TEST_COUNTRIES.US); - - // Then - expect(setCacheMetadata).toHaveBeenCalledWith( - expect.objectContaining({ - parametersLoaded: true, + loaded: true, }) ); }); @@ -177,7 +193,7 @@ describe('coreMetadataLoader', () => { describe('isCoreMetadataCached', () => { it('given valid cache then returns true', async () => { // Given - const validCache = createValidCoreCache(); + const validCache = createValidCache(); vi.mocked(getCacheMetadata).mockResolvedValue(validCache); vi.mocked(fetchModelVersion).mockResolvedValue(API_RESPONSES.MODEL_VERSION); vi.mocked(fetchModelVersionId).mockResolvedValue(API_RESPONSES.MODEL_VERSION_ID); @@ -200,10 +216,10 @@ describe('coreMetadataLoader', () => { expect(result).toBe(false); }); - it('given cache with coreLoaded false then returns false', async () => { + it('given cache with loaded false then returns false', async () => { // Given - const incompleteCache = createValidCoreCache(); - incompleteCache.coreLoaded = false; + const incompleteCache = createValidCache(); + incompleteCache.loaded = false; vi.mocked(getCacheMetadata).mockResolvedValue(incompleteCache); // When @@ -215,7 +231,7 @@ describe('coreMetadataLoader', () => { it('given stale cache version then returns false', async () => { // Given - const staleCache = createValidCoreCache(); + const staleCache = createValidCache(); vi.mocked(getCacheMetadata).mockResolvedValue(staleCache); vi.mocked(fetchModelVersion).mockResolvedValue('new-version'); vi.mocked(fetchModelVersionId).mockResolvedValue('new-version-id'); diff --git a/app/src/tests/unit/storage/loaders/parametersLoader.test.ts b/app/src/tests/unit/storage/loaders/parametersLoader.test.ts deleted file mode 100644 index 0f9349397..000000000 --- a/app/src/tests/unit/storage/loaders/parametersLoader.test.ts +++ /dev/null @@ -1,259 +0,0 @@ -import { describe, expect, it, vi, beforeEach } from 'vitest'; -import { - createMockParameters, - createMockParameterValues, -} from '@/tests/fixtures/storage/storageMocks'; -import { - TEST_COUNTRIES, - TEST_VERSIONS, - API_RESPONSES, - createValidCoreCache, - createValidParametersCache, -} from '@/tests/fixtures/storage/loadersMocks'; - -// Mock the API module -vi.mock('@/api/v2', () => ({ - fetchParameters: vi.fn(), - fetchParameterValues: vi.fn(), - fetchModelVersion: vi.fn(), -})); - -// Mock the storage module -vi.mock('@/storage', () => ({ - getCacheMetadata: vi.fn(), - setCacheMetadata: vi.fn(), - clearAndLoadParameters: vi.fn(), - clearAndLoadParameterValues: vi.fn(), - getAllParameters: vi.fn(), - getAllParameterValues: vi.fn(), -})); - -// Import after mock setup -import { fetchParameters, fetchParameterValues, fetchModelVersion } from '@/api/v2'; -import { - getCacheMetadata, - setCacheMetadata, - clearAndLoadParameters, - clearAndLoadParameterValues, - getAllParameters, - getAllParameterValues, -} from '@/storage'; -import { loadParameters, isParametersCached } from '@/storage/loaders/parametersLoader'; - -describe('parametersLoader', () => { - beforeEach(() => { - vi.clearAllMocks(); - }); - - describe('loadParameters', () => { - it('given valid cache with parameters then returns cached data without API fetch', async () => { - // Given - const cachedParameters = createMockParameters(10); - const cachedParameterValues = createMockParameterValues(50); - const validCache = createValidParametersCache(); - - vi.mocked(getCacheMetadata).mockResolvedValue(validCache); - vi.mocked(fetchModelVersion).mockResolvedValue(API_RESPONSES.MODEL_VERSION); - vi.mocked(getAllParameters).mockResolvedValue(cachedParameters); - vi.mocked(getAllParameterValues).mockResolvedValue(cachedParameterValues); - - // When - const result = await loadParameters(TEST_COUNTRIES.US); - - // Then - expect(result.fromCache).toBe(true); - expect(result.data.parameters).toEqual(cachedParameters); - expect(result.data.parameterValues).toEqual(cachedParameterValues); - expect(fetchParameters).not.toHaveBeenCalled(); - expect(fetchParameterValues).not.toHaveBeenCalled(); - }); - - it('given cache without parameters loaded then fetches fresh data', async () => { - // Given - const freshParameters = createMockParameters(10); - const freshParameterValues = createMockParameterValues(50); - const cacheWithoutParams = createValidCoreCache(); // coreLoaded but not parametersLoaded - - vi.mocked(getCacheMetadata).mockResolvedValue(cacheWithoutParams); - vi.mocked(fetchModelVersion).mockResolvedValue(API_RESPONSES.MODEL_VERSION); - vi.mocked(fetchParameters).mockResolvedValue(freshParameters); - vi.mocked(fetchParameterValues).mockResolvedValue(freshParameterValues); - - // When - const result = await loadParameters(TEST_COUNTRIES.US); - - // Then - expect(result.fromCache).toBe(false); - expect(result.data.parameters).toEqual(freshParameters); - expect(result.data.parameterValues).toEqual(freshParameterValues); - expect(fetchParameters).toHaveBeenCalledWith(TEST_COUNTRIES.US); - expect(fetchParameterValues).toHaveBeenCalledWith(TEST_COUNTRIES.US); - }); - - it('given stale version then fetches fresh data', async () => { - // Given - const freshParameters = createMockParameters(10); - const freshParameterValues = createMockParameterValues(50); - const staleCache = createValidParametersCache(); - staleCache.version = 'old-version'; - - vi.mocked(getCacheMetadata).mockResolvedValue(staleCache); - vi.mocked(fetchModelVersion).mockResolvedValue(API_RESPONSES.MODEL_VERSION); - vi.mocked(fetchParameters).mockResolvedValue(freshParameters); - vi.mocked(fetchParameterValues).mockResolvedValue(freshParameterValues); - - // When - const result = await loadParameters(TEST_COUNTRIES.US); - - // Then - expect(result.fromCache).toBe(false); - expect(fetchParameters).toHaveBeenCalled(); - expect(fetchParameterValues).toHaveBeenCalled(); - }); - - it('given no cache then fetches fresh data', async () => { - // Given - const freshParameters = createMockParameters(10); - const freshParameterValues = createMockParameterValues(50); - - vi.mocked(getCacheMetadata).mockResolvedValue(undefined); - vi.mocked(fetchModelVersion).mockResolvedValue(API_RESPONSES.MODEL_VERSION); - vi.mocked(fetchParameters).mockResolvedValue(freshParameters); - vi.mocked(fetchParameterValues).mockResolvedValue(freshParameterValues); - - // When - const result = await loadParameters(TEST_COUNTRIES.US); - - // Then - expect(result.fromCache).toBe(false); - expect(result.data.parameters).toEqual(freshParameters); - expect(result.data.parameterValues).toEqual(freshParameterValues); - }); - - it('given fresh data then stores in cache', async () => { - // Given - const freshParameters = createMockParameters(10); - const freshParameterValues = createMockParameterValues(50); - const existingCache = createValidCoreCache(); - - vi.mocked(getCacheMetadata).mockResolvedValue(existingCache); - vi.mocked(fetchModelVersion).mockResolvedValue(API_RESPONSES.MODEL_VERSION); - vi.mocked(fetchParameters).mockResolvedValue(freshParameters); - vi.mocked(fetchParameterValues).mockResolvedValue(freshParameterValues); - - // When - await loadParameters(TEST_COUNTRIES.US); - - // Then - expect(clearAndLoadParameters).toHaveBeenCalledWith(freshParameters); - expect(clearAndLoadParameterValues).toHaveBeenCalledWith(freshParameterValues); - expect(setCacheMetadata).toHaveBeenCalledWith( - expect.objectContaining({ - parametersLoaded: true, - }) - ); - }); - - it('given no prior cache then creates new cache metadata', async () => { - // Given - const freshParameters = createMockParameters(10); - const freshParameterValues = createMockParameterValues(50); - - vi.mocked(getCacheMetadata).mockResolvedValue(undefined); - vi.mocked(fetchModelVersion).mockResolvedValue(API_RESPONSES.MODEL_VERSION); - vi.mocked(fetchParameters).mockResolvedValue(freshParameters); - vi.mocked(fetchParameterValues).mockResolvedValue(freshParameterValues); - - // When - await loadParameters(TEST_COUNTRIES.US); - - // Then - expect(setCacheMetadata).toHaveBeenCalledWith( - expect.objectContaining({ - countryId: TEST_COUNTRIES.US, - version: API_RESPONSES.MODEL_VERSION, - versionId: '', - coreLoaded: false, - parametersLoaded: true, - }) - ); - }); - - it('given existing cache then preserves existing fields', async () => { - // Given - const freshParameters = createMockParameters(10); - const freshParameterValues = createMockParameterValues(50); - const existingCache = createValidCoreCache(); - - vi.mocked(getCacheMetadata).mockResolvedValue(existingCache); - vi.mocked(fetchModelVersion).mockResolvedValue(API_RESPONSES.MODEL_VERSION); - vi.mocked(fetchParameters).mockResolvedValue(freshParameters); - vi.mocked(fetchParameterValues).mockResolvedValue(freshParameterValues); - - // When - await loadParameters(TEST_COUNTRIES.US); - - // Then - expect(setCacheMetadata).toHaveBeenCalledWith( - expect.objectContaining({ - countryId: existingCache.countryId, - version: existingCache.version, - versionId: existingCache.versionId, - coreLoaded: existingCache.coreLoaded, - parametersLoaded: true, - }) - ); - }); - }); - - describe('isParametersCached', () => { - it('given valid cache with parameters then returns true', async () => { - // Given - const validCache = createValidParametersCache(); - vi.mocked(getCacheMetadata).mockResolvedValue(validCache); - vi.mocked(fetchModelVersion).mockResolvedValue(API_RESPONSES.MODEL_VERSION); - - // When - const result = await isParametersCached(TEST_COUNTRIES.US); - - // Then - expect(result).toBe(true); - }); - - it('given no cache then returns false', async () => { - // Given - vi.mocked(getCacheMetadata).mockResolvedValue(undefined); - - // When - const result = await isParametersCached(TEST_COUNTRIES.US); - - // Then - expect(result).toBe(false); - }); - - it('given cache with parametersLoaded false then returns false', async () => { - // Given - const cacheWithoutParams = createValidCoreCache(); - vi.mocked(getCacheMetadata).mockResolvedValue(cacheWithoutParams); - - // When - const result = await isParametersCached(TEST_COUNTRIES.US); - - // Then - expect(result).toBe(false); - }); - - it('given stale version then returns false', async () => { - // Given - const staleCache = createValidParametersCache(); - vi.mocked(getCacheMetadata).mockResolvedValue(staleCache); - vi.mocked(fetchModelVersion).mockResolvedValue('new-version'); - - // When - const result = await isParametersCached(TEST_COUNTRIES.US); - - // Then - expect(result).toBe(false); - }); - }); -}); diff --git a/app/src/types/metadata.ts b/app/src/types/metadata.ts index be0a06165..5038bc09a 100644 --- a/app/src/types/metadata.ts +++ b/app/src/types/metadata.ts @@ -1,4 +1,4 @@ -import { UK_REGION_TYPES, US_REGION_TYPES } from './regionTypes'; +import { UK_REGION_TYPES, US_REGION_TYPES } from "./regionTypes"; /** * Region entry from API metadata @@ -20,37 +20,132 @@ export interface MetadataApiPayload { status: string; message: string | null; result: { - variables: Record; - parameters: Record; - entities: Record; - variableModules: Record; + variables: Record; + parameters: Record; + entities: Record; + variableModules: Record; economy_options: { region: MetadataRegionEntry[]; time_period: Array<{ name: number; label: string }>; - datasets: Array<{ name: string; label: string; title: string; default: boolean }>; + datasets: Array<{ + name: string; + label: string; + title: string; + default: boolean; + }>; }; current_law_id: number; basicInputs: string[]; modelled_policies: { - core: Record; - filtered: Record; + core: Record; + filtered: Record; }; version: string; }; } +/** + * Variable metadata - represents a variable in the tax-benefit model + */ +export interface VariableMetadata { + // Core fields from V2 API + id?: string; + name: string; + entity: string; + description: string | null; + data_type?: string; + possible_values?: string[] | Record | null; + tax_benefit_model_version_id?: string; + created_at?: string; + + // V1 API fields (may not be present in V2) + label?: string; + unit?: string | null; + valueType?: string; + definitionPeriod?: string; + documentation?: string | null; + isInputVariable?: boolean; + moduleName?: string; + indexInModule?: number; + hidden?: boolean; + + // Variable arithmetic (for breakdown calculations) + adds?: string | string[]; + subtracts?: string | string[]; +} + +/** + * Parameter metadata - represents a policy parameter + */ +export interface ParameterMetadata { + // Core fields + id?: string; + name?: string; + label: string; + description?: string | null; + unit?: string | null; + data_type?: string; + tax_benefit_model_version_id?: string; + created_at?: string; + + // Parameter tree fields + type?: "parameter" | "parameterNode"; + parameter: string; // Dot-separated path to parameter + + // Values indexed by date + values?: Record; + + // Scope flags + economy?: boolean; + household?: boolean; + + // Period for time-based parameters + period?: string | null; +} + +/** + * Collection of parameter metadata indexed by parameter name + */ +export type ParameterMetadataCollection = Record; + +/** + * Entity metadata - represents an entity type (person, household, etc.) + */ +export interface EntityMetadata { + label: string; + plural: string; + documentation?: string; + is_person?: boolean; +} + +/** + * Module metadata - represents a variable module + */ +export interface ModuleMetadata { + label: string; + documentation?: string; +} + +/** + * Modelled policy metadata + */ +export interface ModelledPolicy { + label: string; + id: number; +} + // Re-export ParameterTreeNode type from buildParameterTree export interface ParameterTreeNode { name: string; label: string; index: number; children?: ParameterTreeNode[]; - type?: 'parameterNode' | 'parameter'; + type?: "parameterNode" | "parameter"; parameter?: string; description?: string | null; unit?: string | null; period?: string | null; - values?: Record; + values?: Record; economy?: boolean; household?: boolean; } @@ -69,18 +164,20 @@ export interface MetadataState { /** Download progress percentage (0-100) for metadata fetch */ progress: number; - // V2 tiered loading states - coreLoading: boolean; - coreLoaded: boolean; - coreError: string | null; - parametersLoading: boolean; - parametersLoaded: boolean; - parametersError: string | null; + // Unified loading state + loading: boolean; + loaded: boolean; + error: string | null; // API-driven data - variables: Record; - parameters: Record; - datasets: Array<{ name: string; label: string; title: string; default: boolean }>; + variables: Record; + parameters: Record; + datasets: Array<{ + name: string; + label: string; + title: string; + default: boolean; + }>; version: string | null; // Computed parameter tree for policy creation UI (built when metadata is fetched) diff --git a/app/src/types/metadata/parameterMetadata.ts b/app/src/types/metadata/parameterMetadata.ts deleted file mode 100644 index 217b93748..000000000 --- a/app/src/types/metadata/parameterMetadata.ts +++ /dev/null @@ -1,14 +0,0 @@ -// Based on what the API currently exposes -export interface ParameterMetadata { - label: string; - type: 'parameter' | 'parameterNode' | any; // TODO: Add more types as needed - parameter: string; // Dot-separated path to parameter; often used as 'name' elsewhere in app - description?: string | null; - unit?: string | null; - period?: string | null; // TODO: Specify period values - values?: Record; // Historical values - economy?: boolean; - household?: boolean; -} - -export type ParameterMetadataCollection = Record; diff --git a/app/src/utils/HouseholdValidation.ts b/app/src/utils/HouseholdValidation.ts index 8d5ff8386..2bfd302c6 100644 --- a/app/src/utils/HouseholdValidation.ts +++ b/app/src/utils/HouseholdValidation.ts @@ -1,5 +1,6 @@ import { RootState } from '@/store'; import { Household, HouseholdGroupEntity } from '@/types/ingredients/Household'; +import { VariableMetadata } from '@/types/metadata'; import * as HouseholdQueries from './HouseholdQueries'; /** @@ -23,20 +24,6 @@ export interface ValidationWarning { field?: string; } -/** - * Variable metadata structure based on the provided format - */ -export interface VariableMetadata { - entity: string; // Could be any entity type, not limited to specific ones - valueType: 'float' | 'int' | 'bool' | 'string'; - definitionPeriod: 'year' | 'month' | 'day' | 'eternity'; - name: string; - label: string; - unit?: string; - isInputVariable: boolean; - defaultValue: any; -} - /** * Validation utilities for Household structures * Country-agnostic base validation with country-specific extensions @@ -315,15 +302,7 @@ export const HouseholdValidation = { return undefined; } - return { - entity: variable.entity, - valueType: variable.valueType as any, - definitionPeriod: variable.definitionPeriod as any, - name: variable.name, - label: variable.label, - unit: variable.unit, - isInputVariable: variable.isInputVariable, - defaultValue: variable.defaultValue, - }; + // Return the variable directly - it's already typed as VariableMetadata + return variable; }, }; diff --git a/app/src/utils/parameterLabels.ts b/app/src/utils/parameterLabels.ts index 0b174cc4a..5128a0b5a 100644 --- a/app/src/utils/parameterLabels.ts +++ b/app/src/utils/parameterLabels.ts @@ -1,4 +1,4 @@ -import { ParameterMetadataCollection } from '@/types/metadata/parameterMetadata'; +import { ParameterMetadataCollection } from '@/types/metadata'; /** * Splits a parameter path into its hierarchical parts. diff --git a/app/src/utils/policyTableHelpers.ts b/app/src/utils/policyTableHelpers.ts index 1091b6898..03a784cb5 100644 --- a/app/src/utils/policyTableHelpers.ts +++ b/app/src/utils/policyTableHelpers.ts @@ -1,6 +1,6 @@ import { getParamDefinitionDate } from '@/constants'; import { Policy } from '@/types/ingredients/Policy'; -import { ParameterMetadata } from '@/types/metadata/parameterMetadata'; +import { ParameterMetadata } from '@/types/metadata'; import { ValueIntervalCollection } from '@/types/subIngredients/valueInterval'; export { determinePolicyColumns } from './policyComparison'; From 3d93f24e0fc113c7be248c04ee49f33f03c705e2 Mon Sep 17 00:00:00 2001 From: Anthony Volk Date: Tue, 23 Dec 2025 16:38:03 +0400 Subject: [PATCH 12/32] fix: Continue fixing metadata to use one-stage loading approach --- app/src/docs/ARCHITECTURE-COUNTRY-ID.md | 43 +++-- app/src/tests/unit/api/metadata.test.ts | 112 ------------- .../routing/guards/ParametersGuard.test.tsx | 157 ------------------ 3 files changed, 20 insertions(+), 292 deletions(-) delete mode 100644 app/src/tests/unit/api/metadata.test.ts delete mode 100644 app/src/tests/unit/routing/guards/ParametersGuard.test.tsx diff --git a/app/src/docs/ARCHITECTURE-COUNTRY-ID.md b/app/src/docs/ARCHITECTURE-COUNTRY-ID.md index 9606223fa..079fd9ac7 100644 --- a/app/src/docs/ARCHITECTURE-COUNTRY-ID.md +++ b/app/src/docs/ARCHITECTURE-COUNTRY-ID.md @@ -97,7 +97,7 @@ While the URL is the source of truth for components, Redux stores a copy for spe - Set by CountryGuard via `setCurrentCountry()` - Used by: - - `useFetchMetadata` to determine which country's metadata to load + - `useFetchCoreMetadata` to determine which country's metadata to load - `clearReport` thunk to set report.countryId **report.countryId**: @@ -177,26 +177,22 @@ clearAllPopulations(); ## Metadata Loading -### MetadataGuard & MetadataLazyLoader +### CoreMetadataGuard -Two guards handle metadata loading: +A single guard handles all metadata loading (variables, datasets, parameters, parameterValues): -**MetadataGuard** (Blocking): +**CoreMetadataGuard** (Blocking): -- Blocks rendering until metadata loads +- Blocks rendering until all metadata loads - Shows loading/error pages -- Used for routes that require metadata immediately (e.g., report-output) +- Uses V2 API with IndexedDB caching for performance +- Loads all metadata in a single unified request -**MetadataLazyLoader** (Non-blocking): +**The guard**: -- Triggers metadata fetch but doesn't block rendering -- Used for routes that benefit from metadata but can render without it (e.g., reports, policies) - -**Both guards**: - -- Use `useCurrentCountry()` to read country from URL -- Call `useFetchMetadata(countryId)` to trigger fetch -- Smart caching prevents duplicate fetches +- Uses `useCurrentCountry()` to read country from URL +- Calls `useFetchCoreMetadata(countryId)` to trigger fetch +- Smart caching with version-based invalidation prevents duplicate fetches **Flow**: @@ -205,17 +201,17 @@ User navigates to /uk/reports ↓ CountryGuard validates 'uk' and sets metadata.currentCountry = 'uk' ↓ -MetadataLazyLoader renders +CoreMetadataGuard renders ↓ Calls useCurrentCountry() → returns 'uk' from URL ↓ -Calls useFetchMetadata('uk') +Calls useFetchCoreMetadata('uk') ↓ -useFetchMetadata checks if metadata.currentCountry === 'uk' and metadata.version exists +useFetchCoreMetadata checks if metadata.loaded === true and currentCountry === 'uk' ↓ -If not, dispatches fetchMetadataThunk('uk') +If not, dispatches fetchCoreMetadataThunk('uk') ↓ -Metadata loads for UK +All metadata (variables, datasets, parameters, parameterValues) loads for UK ``` ## Data Flow Diagram @@ -375,10 +371,11 @@ All of these patterns have been replaced with the URL-as-source-of-truth archite - `src/routing/guards/CountryGuard.tsx` - Entry point and state management - `src/hooks/useCurrentCountry.ts` - Hook to read country from URL +- `src/hooks/useCoreMetadata.ts` - Hook for fetching metadata - `src/reducers/reportReducer.ts` - Report state with clearReport thunk -- `src/reducers/metadataReducer.ts` - Metadata state with setCurrentCountry -- `src/routing/guards/MetadataGuard.tsx` - Blocking metadata loader -- `src/routing/guards/MetadataLazyLoader.tsx` - Non-blocking metadata loader +- `src/reducers/metadataReducer.ts` - Metadata state with unified loading +- `src/routing/guards/CoreMetadataGuard.tsx` - Unified metadata loader (blocking) +- `src/storage/loaders/coreMetadataLoader.ts` - V2 API + IndexedDB caching ### Tests diff --git a/app/src/tests/unit/api/metadata.test.ts b/app/src/tests/unit/api/metadata.test.ts deleted file mode 100644 index d762dcbe4..000000000 --- a/app/src/tests/unit/api/metadata.test.ts +++ /dev/null @@ -1,112 +0,0 @@ -import { beforeEach, describe, expect, test, vi } from 'vitest'; -import { fetchMetadata } from '@/api/metadata'; -import { BASE_URL } from '@/constants'; -import { - getExpectedFetchError, - mock404Response, - mock500Response, - mockCountryId, - mockCustomResponse, - mockCustomSuccessResponse, - mockInvalidCountryId, - mockInvalidJSONResponse, - mockJSONParseError, - mockMetadataResponse, - mockNetworkError, - mockSuccessResponse, - mockUSCountryId, - TEST_PARAMETER_KEY, - TEST_PARAMETER_VALUE, -} from '@/tests/fixtures/api/metadataMocks'; - -describe('fetchMetadata', () => { - beforeEach(() => { - vi.clearAllMocks(); - global.fetch = vi.fn(); - }); - - test('given valid countryId then returns metadata successfully', async () => { - const mockFetch = vi.mocked(global.fetch); - mockFetch.mockResolvedValueOnce(mockSuccessResponse); - - const result = await fetchMetadata(mockCountryId); - - expect(mockFetch).toHaveBeenCalledWith(`${BASE_URL}/${mockCountryId}/metadata`, { - method: 'GET', - headers: { - 'Content-Type': 'application/json', - Accept: 'application/json', - }, - }); - expect(result).toEqual(mockMetadataResponse); - }); - - test('given non-ok response then throws error with country ID', async () => { - const mockFetch = vi.mocked(global.fetch); - mockFetch.mockResolvedValueOnce(mock404Response); - - await expect(fetchMetadata(mockInvalidCountryId)).rejects.toThrow( - getExpectedFetchError(mockInvalidCountryId) - ); - }); - - test('given fetch throws network error then propagates error', async () => { - const mockFetch = vi.mocked(global.fetch); - mockFetch.mockRejectedValueOnce(mockNetworkError); - - await expect(fetchMetadata(mockCountryId)).rejects.toThrow(mockNetworkError.message); - }); - - test('given countryId then constructs correct API URL', async () => { - const mockFetch = vi.mocked(global.fetch); - mockFetch.mockResolvedValueOnce(mockSuccessResponse); - - await fetchMetadata(mockUSCountryId); - - expect(mockFetch).toHaveBeenCalledWith( - `${BASE_URL}/${mockUSCountryId}/metadata`, - expect.any(Object) - ); - }); - - test('given request then includes correct headers', async () => { - const mockFetch = vi.mocked(global.fetch); - mockFetch.mockResolvedValueOnce(mockSuccessResponse); - - await fetchMetadata(mockCountryId); - - expect(mockFetch).toHaveBeenCalledWith(expect.any(String), { - method: 'GET', - headers: { - 'Content-Type': 'application/json', - Accept: 'application/json', - }, - }); - }); - - test('given server returns 500 then throws error', async () => { - const mockFetch = vi.mocked(global.fetch); - mockFetch.mockResolvedValueOnce(mock500Response); - - await expect(fetchMetadata(mockCountryId)).rejects.toThrow( - getExpectedFetchError(mockCountryId) - ); - }); - - test('given invalid JSON response then throws parsing error', async () => { - const mockFetch = vi.mocked(global.fetch); - mockFetch.mockResolvedValueOnce(mockInvalidJSONResponse); - - await expect(fetchMetadata(mockCountryId)).rejects.toThrow(mockJSONParseError.message); - }); - - test('given successful response then parses JSON correctly', async () => { - const mockFetch = vi.mocked(global.fetch); - mockFetch.mockResolvedValueOnce(mockCustomSuccessResponse); - - const result = await fetchMetadata(mockCountryId); - - expect(result).toEqual(mockCustomResponse); - expect(result.result.parameters[TEST_PARAMETER_KEY]).toBe(TEST_PARAMETER_VALUE); - }); -}); diff --git a/app/src/tests/unit/routing/guards/ParametersGuard.test.tsx b/app/src/tests/unit/routing/guards/ParametersGuard.test.tsx deleted file mode 100644 index 069464e8f..000000000 --- a/app/src/tests/unit/routing/guards/ParametersGuard.test.tsx +++ /dev/null @@ -1,157 +0,0 @@ -import { describe, expect, it, vi, beforeEach } from 'vitest'; -import { render, screen } from '@testing-library/react'; -import { Provider } from 'react-redux'; -import { configureStore } from '@reduxjs/toolkit'; -import { MemoryRouter, Routes, Route } from 'react-router-dom'; -import { MantineProvider } from '@mantine/core'; -import metadataReducer from '@/reducers/metadataReducer'; -import { policyEngineTheme } from '@/theme'; -import { - TEST_COUNTRIES, - PARAMETERS_STATE, - LOADING_MESSAGES, - CHILD_CONTENT, -} from '@/tests/fixtures/routing/guards/guardsMocks'; - -// Track current mock state -let mockParametersState = PARAMETERS_STATE.INITIAL; - -// Mock the hooks -vi.mock('@/hooks/useCurrentCountry', () => ({ - useCurrentCountry: () => TEST_COUNTRIES.US, -})); - -vi.mock('@/hooks/useParameters', () => ({ - useFetchParameters: vi.fn(), - selectParametersState: () => mockParametersState, -})); - -// Mock react-redux -vi.mock('react-redux', async () => { - const actual = await vi.importActual('react-redux'); - return { - ...actual, - useSelector: (selector: () => unknown) => selector(), - }; -}); - -// Mock pages -vi.mock('@/pages/report-output/ErrorPage', () => ({ - default: ({ error }: { error: string }) =>
{error}
, -})); - -vi.mock('@/pages/report-output/LoadingPage', () => ({ - default: ({ message }: { message: string }) =>
{message}
, -})); - -// Import after mocks -import { ParametersGuard } from '@/routing/guards/ParametersGuard'; - -// Create a fresh store for each test -function createTestStore() { - return configureStore({ - reducer: { - metadata: metadataReducer, - }, - }); -} - -// Test wrapper with router -function renderWithRouter() { - const store = createTestStore(); - return render( - - - - - }> - {CHILD_CONTENT}} /> - - - - - - ); -} - -describe('ParametersGuard', () => { - beforeEach(() => { - vi.clearAllMocks(); - mockParametersState = PARAMETERS_STATE.INITIAL; - }); - - describe('loading state', () => { - it('given parametersLoading is true then renders loading page', () => { - // Given - mockParametersState = PARAMETERS_STATE.LOADING; - - // When - renderWithRouter(); - - // Then - expect(screen.getByTestId('loading-page')).toBeInTheDocument(); - expect(screen.getByText(LOADING_MESSAGES.PARAMETERS)).toBeInTheDocument(); - }); - - it('given parametersLoaded is false then renders loading page', () => { - // Given - mockParametersState = PARAMETERS_STATE.INITIAL; - - // When - renderWithRouter(); - - // Then - expect(screen.getByTestId('loading-page')).toBeInTheDocument(); - }); - }); - - describe('error state', () => { - it('given parametersError is set then renders error page', () => { - // Given - mockParametersState = PARAMETERS_STATE.ERROR; - - // When - renderWithRouter(); - - // Then - expect(screen.getByTestId('error-page')).toBeInTheDocument(); - expect(screen.getByText(PARAMETERS_STATE.ERROR.parametersError)).toBeInTheDocument(); - }); - }); - - describe('loaded state', () => { - it('given parametersLoaded is true then renders child routes', () => { - // Given - mockParametersState = PARAMETERS_STATE.LOADED; - - // When - renderWithRouter(); - - // Then - expect(screen.getByTestId('child-content')).toBeInTheDocument(); - expect(screen.getByText(CHILD_CONTENT)).toBeInTheDocument(); - }); - - it('given parametersLoaded is true then does not render loading page', () => { - // Given - mockParametersState = PARAMETERS_STATE.LOADED; - - // When - renderWithRouter(); - - // Then - expect(screen.queryByTestId('loading-page')).not.toBeInTheDocument(); - }); - - it('given parametersLoaded is true then does not render error page', () => { - // Given - mockParametersState = PARAMETERS_STATE.LOADED; - - // When - renderWithRouter(); - - // Then - expect(screen.queryByTestId('error-page')).not.toBeInTheDocument(); - }); - }); -}); From c3dd97eea39cde0f586b2ff339515febf327da6b Mon Sep 17 00:00:00 2001 From: Anthony Volk Date: Tue, 23 Dec 2025 17:07:44 +0400 Subject: [PATCH 13/32] test: Fix tests --- app/src/tests/fixtures/api/metadataMocks.ts | 21 +-- .../fixtures/hooks/metadataHooksMocks.ts | 30 ++-- .../fixtures/routing/guards/guardsMocks.ts | 55 ++------ .../utils/householdValidationMocks.ts | 26 ++-- .../tests/unit/hooks/useCoreMetadata.test.ts | 16 +-- app/src/tests/unit/libs/metadataUtils.test.ts | 2 +- .../unit/reducers/metadataReducer.test.ts | 128 ++++++------------ .../routing/guards/CoreMetadataGuard.test.tsx | 43 +++--- .../unit/storage/metadataBulkLoader.test.ts | 87 ++++++------ 9 files changed, 175 insertions(+), 233 deletions(-) diff --git a/app/src/tests/fixtures/api/metadataMocks.ts b/app/src/tests/fixtures/api/metadataMocks.ts index 8f5c351cc..f042b3c6f 100644 --- a/app/src/tests/fixtures/api/metadataMocks.ts +++ b/app/src/tests/fixtures/api/metadataMocks.ts @@ -8,6 +8,7 @@ export const mockMetadataResponse: MetadataApiPayload = { result: { parameters: { income_tax: { + parameter: 'income_tax', description: 'Income tax', label: 'Income tax', unit: 'currency-GBP', @@ -17,6 +18,7 @@ export const mockMetadataResponse: MetadataApiPayload = { }, }, national_insurance: { + parameter: 'national_insurance', description: 'National Insurance contributions', label: 'National Insurance', unit: 'currency-GBP', @@ -28,12 +30,16 @@ export const mockMetadataResponse: MetadataApiPayload = { }, variables: { household_income: { + name: 'household_income', + entity: 'household', description: 'Total household income', label: 'Household income', unit: 'currency-GBP', valueType: 'float', }, age: { + name: 'age', + entity: 'person', description: 'Age of person', label: 'Age', unit: 'year', @@ -42,12 +48,10 @@ export const mockMetadataResponse: MetadataApiPayload = { }, entities: { person: { - description: 'An individual person', label: 'Person', plural: 'People', }, household: { - description: 'A household unit', label: 'Household', plural: 'Households', }, @@ -55,11 +59,9 @@ export const mockMetadataResponse: MetadataApiPayload = { variableModules: { household: { label: 'Household', - description: 'Household-related variables', }, person: { label: 'Person', - description: 'Person-related variables', }, }, economy_options: { @@ -95,14 +97,12 @@ export const mockMetadataResponse: MetadataApiPayload = { baseline: { id: 1, label: 'Current law', - description: 'The current tax and benefit system', }, }, filtered: { reform: { id: 2, label: 'Reform proposal', - description: 'Proposed changes to the system', }, }, }, @@ -117,13 +117,18 @@ export const mockEmptyCountryId = ''; // Test constants for assertions export const TEST_PARAMETER_KEY = 'test'; -export const TEST_PARAMETER_VALUE = 'value'; export const mockCustomResponse: MetadataApiPayload = { status: 'ok', message: null, result: { - parameters: { [TEST_PARAMETER_KEY]: TEST_PARAMETER_VALUE }, + parameters: { + [TEST_PARAMETER_KEY]: { + parameter: TEST_PARAMETER_KEY, + label: 'Test Parameter', + values: { '2024-01-01': 100 }, + }, + }, variables: {}, entities: {}, variableModules: {}, diff --git a/app/src/tests/fixtures/hooks/metadataHooksMocks.ts b/app/src/tests/fixtures/hooks/metadataHooksMocks.ts index b02a723c9..dcf5a6095 100644 --- a/app/src/tests/fixtures/hooks/metadataHooksMocks.ts +++ b/app/src/tests/fixtures/hooks/metadataHooksMocks.ts @@ -1,7 +1,8 @@ /** * Fixtures for metadata hooks tests */ -import { createMockVariables, TEST_COUNTRIES, TEST_VERSIONS } from '../storage/storageMocks'; +import { MetadataState } from '@/types/metadata'; +import { TEST_COUNTRIES, TEST_VERSIONS } from '../storage/storageMocks'; // Re-export shared constants export { TEST_COUNTRIES, TEST_VERSIONS }; @@ -10,38 +11,33 @@ export { TEST_COUNTRIES, TEST_VERSIONS }; export const TEST_YEAR = 2025; // Mock Redux state for metadata -export const MOCK_METADATA_STATE_INITIAL = { - coreLoading: false, - coreLoaded: false, - coreError: null, - parametersLoading: false, - parametersLoaded: false, - parametersError: null, +export const MOCK_METADATA_STATE_INITIAL: MetadataState = { + loading: false, + loaded: false, + error: null, currentCountry: null, version: null, - versionId: null, variables: {}, parameters: {}, - parameterValues: {}, datasets: [], + parameterTree: null, }; -export const MOCK_METADATA_STATE_LOADING = { +export const MOCK_METADATA_STATE_LOADING: MetadataState = { ...MOCK_METADATA_STATE_INITIAL, - coreLoading: true, + loading: true, }; -export const MOCK_METADATA_STATE_LOADED = { +export const MOCK_METADATA_STATE_LOADED: MetadataState = { ...MOCK_METADATA_STATE_INITIAL, - coreLoaded: true, + loaded: true, currentCountry: TEST_COUNTRIES.US, version: TEST_VERSIONS.US_VERSION, - versionId: TEST_VERSIONS.US_VERSION_ID, }; -export const MOCK_METADATA_STATE_ERROR = { +export const MOCK_METADATA_STATE_ERROR: MetadataState = { ...MOCK_METADATA_STATE_INITIAL, - coreError: 'Failed to load metadata', + error: 'Failed to load metadata', }; // Mock variables for entity categorization tests diff --git a/app/src/tests/fixtures/routing/guards/guardsMocks.ts b/app/src/tests/fixtures/routing/guards/guardsMocks.ts index 89d21048f..b29dea923 100644 --- a/app/src/tests/fixtures/routing/guards/guardsMocks.ts +++ b/app/src/tests/fixtures/routing/guards/guardsMocks.ts @@ -6,62 +6,37 @@ import { TEST_COUNTRIES } from '@/tests/fixtures/hooks/metadataHooksMocks'; // Re-export shared constants export { TEST_COUNTRIES }; -// Core metadata states -export const CORE_STATE = { +// Metadata states (unified loading) +export const METADATA_STATE = { INITIAL: { - coreLoading: false, - coreLoaded: false, - coreError: null, + loading: false, + loaded: false, + error: null, currentCountry: null, }, LOADING: { - coreLoading: true, - coreLoaded: false, - coreError: null, + loading: true, + loaded: false, + error: null, currentCountry: TEST_COUNTRIES.US, }, LOADED: { - coreLoading: false, - coreLoaded: true, - coreError: null, + loading: false, + loaded: true, + error: null, currentCountry: TEST_COUNTRIES.US, }, ERROR: { - coreLoading: false, - coreLoaded: false, - coreError: 'Failed to load core metadata', + loading: false, + loaded: false, + error: 'Failed to load metadata', currentCountry: TEST_COUNTRIES.US, }, } as const; -// Parameters states -export const PARAMETERS_STATE = { - INITIAL: { - parametersLoading: false, - parametersLoaded: false, - parametersError: null, - }, - LOADING: { - parametersLoading: true, - parametersLoaded: false, - parametersError: null, - }, - LOADED: { - parametersLoading: false, - parametersLoaded: true, - parametersError: null, - }, - ERROR: { - parametersLoading: false, - parametersLoaded: false, - parametersError: 'Failed to load parameters', - }, -} as const; - // Loading page messages export const LOADING_MESSAGES = { - CORE: 'Loading metadata...', - PARAMETERS: 'Loading policy parameters...', + METADATA: 'Loading metadata...', } as const; // Test child content diff --git a/app/src/tests/fixtures/utils/householdValidationMocks.ts b/app/src/tests/fixtures/utils/householdValidationMocks.ts index af10f1caa..11f4154d2 100644 --- a/app/src/tests/fixtures/utils/householdValidationMocks.ts +++ b/app/src/tests/fixtures/utils/householdValidationMocks.ts @@ -1,11 +1,11 @@ import { CURRENT_YEAR } from '@/constants'; import { RootState } from '@/store'; import { Household, HouseholdPerson } from '@/types/ingredients/Household'; +import { VariableMetadata } from '@/types/metadata'; import { ValidationError, ValidationResult, ValidationWarning, - VariableMetadata, } from '@/utils/HouseholdValidation'; // ============= TEST CONSTANTS ============= @@ -312,43 +312,43 @@ export const mockEmptyHousehold: Household = { export const mockFloatMetadata: VariableMetadata = { entity: VALIDATION_ENTITY_NAMES.PEOPLE, - valueType: VALIDATION_VALUE_TYPES.FLOAT as any, - definitionPeriod: VALIDATION_DEFINITION_PERIODS.YEAR as any, + valueType: VALIDATION_VALUE_TYPES.FLOAT, + definitionPeriod: VALIDATION_DEFINITION_PERIODS.YEAR, name: VALIDATION_VARIABLE_NAMES.EMPLOYMENT_INCOME, + description: 'Employment income', label: 'Employment Income', unit: 'USD', isInputVariable: true, - defaultValue: 0, }; export const mockIntMetadata: VariableMetadata = { entity: VALIDATION_ENTITY_NAMES.HOUSEHOLDS, - valueType: VALIDATION_VALUE_TYPES.INT as any, - definitionPeriod: VALIDATION_DEFINITION_PERIODS.YEAR as any, + valueType: VALIDATION_VALUE_TYPES.INT, + definitionPeriod: VALIDATION_DEFINITION_PERIODS.YEAR, name: VALIDATION_VARIABLE_NAMES.HOUSEHOLD_SIZE, + description: 'Household size', label: 'Household Size', isInputVariable: false, - defaultValue: 1, }; export const mockBoolMetadata: VariableMetadata = { entity: VALIDATION_ENTITY_NAMES.PEOPLE, - valueType: VALIDATION_VALUE_TYPES.BOOL as any, - definitionPeriod: VALIDATION_DEFINITION_PERIODS.ETERNITY as any, + valueType: VALIDATION_VALUE_TYPES.BOOL, + definitionPeriod: VALIDATION_DEFINITION_PERIODS.ETERNITY, name: VALIDATION_VARIABLE_NAMES.IS_MARRIED, + description: 'Is married', label: 'Is Married', isInputVariable: true, - defaultValue: false, }; export const mockStringMetadata: VariableMetadata = { entity: VALIDATION_ENTITY_NAMES.HOUSEHOLDS, - valueType: VALIDATION_VALUE_TYPES.STRING as any, - definitionPeriod: VALIDATION_DEFINITION_PERIODS.YEAR as any, + valueType: VALIDATION_VALUE_TYPES.STRING, + definitionPeriod: VALIDATION_DEFINITION_PERIODS.YEAR, name: VALIDATION_VARIABLE_NAMES.STATE_CODE, + description: 'State code', label: 'State Code', isInputVariable: true, - defaultValue: '', }; // ============= MOCK REDUX STATE ============= diff --git a/app/src/tests/unit/hooks/useCoreMetadata.test.ts b/app/src/tests/unit/hooks/useCoreMetadata.test.ts index e96f80579..b0988956c 100644 --- a/app/src/tests/unit/hooks/useCoreMetadata.test.ts +++ b/app/src/tests/unit/hooks/useCoreMetadata.test.ts @@ -11,8 +11,8 @@ import { // Mock dispatch function const mockDispatch = vi.fn(); -// Mock state values -let mockState = { metadata: MOCK_METADATA_STATE_INITIAL }; +// Mock state values - type to allow reassignment +let mockState: { metadata: typeof MOCK_METADATA_STATE_INITIAL } = { metadata: MOCK_METADATA_STATE_INITIAL }; // Mock react-redux vi.mock('react-redux', async () => { @@ -52,9 +52,9 @@ describe('useCoreMetadata', () => { const result = selectCoreMetadataState(state); // Then - expect(result.coreLoading).toBe(false); - expect(result.coreLoaded).toBe(false); - expect(result.coreError).toBeNull(); + expect(result.loading).toBe(false); + expect(result.loaded).toBe(false); + expect(result.error).toBeNull(); }); it('given loading state then returns loading as true', () => { @@ -65,7 +65,7 @@ describe('useCoreMetadata', () => { const result = selectCoreMetadataState(state); // Then - expect(result.coreLoading).toBe(true); + expect(result.loading).toBe(true); }); it('given loaded state then returns loaded as true with country', () => { @@ -76,7 +76,7 @@ describe('useCoreMetadata', () => { const result = selectCoreMetadataState(state); // Then - expect(result.coreLoaded).toBe(true); + expect(result.loaded).toBe(true); expect(result.currentCountry).toBe(TEST_COUNTRIES.US); }); @@ -88,7 +88,7 @@ describe('useCoreMetadata', () => { const result = selectCoreMetadataState(state); // Then - expect(result.coreError).toBe('Failed to load metadata'); + expect(result.error).toBe('Failed to load metadata'); }); }); diff --git a/app/src/tests/unit/libs/metadataUtils.test.ts b/app/src/tests/unit/libs/metadataUtils.test.ts index a28dc82eb..2a10a2e92 100644 --- a/app/src/tests/unit/libs/metadataUtils.test.ts +++ b/app/src/tests/unit/libs/metadataUtils.test.ts @@ -198,7 +198,7 @@ describe('metadataUtils', () => { expect(result.parameterTree).toBeNull(); expect(result.variables).toHaveProperty('age'); expect(result.variables).toHaveProperty('state_name'); - expect(result.variables.state_name.possibleValues).toBeDefined(); + expect(result.variables.state_name.possible_values).toBeDefined(); // Static data (entities, basicInputs, economyOptions, etc.) is no longer returned }); diff --git a/app/src/tests/unit/reducers/metadataReducer.test.ts b/app/src/tests/unit/reducers/metadataReducer.test.ts index 741babd7c..af5b4d24a 100644 --- a/app/src/tests/unit/reducers/metadataReducer.test.ts +++ b/app/src/tests/unit/reducers/metadataReducer.test.ts @@ -4,7 +4,6 @@ import * as buildParameterTreeModule from '@/libs/buildParameterTree'; import metadataReducer, { clearMetadata, fetchCoreMetadataThunk, - fetchParametersThunk, setCurrentCountry, } from '@/reducers/metadataReducer'; import { @@ -13,8 +12,8 @@ import { expectCurrentCountry, EXPECTED_INITIAL_STATE, expectEmptyMetadata, - expectCoreErrorState, - expectCoreLoadingState, + expectErrorState, + expectLoadingState, expectParameterTree, expectStateToEqual, MOCK_PARAMETER_TREE, @@ -28,7 +27,6 @@ import { // Mock the storage loaders vi.mock('@/storage', () => ({ loadCoreMetadata: vi.fn(), - loadParameters: vi.fn(), })); vi.mock('@/libs/buildParameterTree'); @@ -65,26 +63,26 @@ describe('metadataReducer', () => { expect(state.parameters).toEqual({}); }); - test('given setCurrentCountry when coreLoaded is true then clears metadata', () => { - const initialState = createMockStateWithData({ coreLoaded: true }); + test('given setCurrentCountry when loaded is true then clears metadata', () => { + const initialState = createMockStateWithData({ loaded: true }); const action = setCurrentCountry(TEST_COUNTRY_UK); const state = metadataReducer(initialState, action); expectCurrentCountry(state, TEST_COUNTRY_UK); expectEmptyMetadata(state); }); - test('given setCurrentCountry when coreLoaded is true then resets loading and error states', () => { + test('given setCurrentCountry when loaded is true then resets loading and error states', () => { // When switching countries with data already loaded, states should reset // so the new country's data can be fetched fresh const initialState = createMockStateWithData({ - coreLoading: true, - coreError: TEST_ERROR_MESSAGE, - coreLoaded: true, + loading: true, + error: TEST_ERROR_MESSAGE, + loaded: true, }); const action = setCurrentCountry(TEST_COUNTRY_CA); const state = metadataReducer(initialState, action); - expectCoreLoadingState(state, false); - expectCoreErrorState(state, null); + expectLoadingState(state, false); + expectErrorState(state, null); }); }); @@ -105,28 +103,36 @@ describe('metadataReducer', () => { }); describe('fetchCoreMetadataThunk', () => { - test('given pending action then sets coreLoading state', () => { + test('given pending action then sets loading state', () => { const initialState = EXPECTED_INITIAL_STATE; const action = { type: fetchCoreMetadataThunk.pending.type }; const state = metadataReducer(initialState, action); - expect(state.coreLoading).toBe(true); - expect(state.coreError).toBeNull(); + expect(state.loading).toBe(true); + expect(state.error).toBeNull(); }); - test('given fulfilled action then updates core metadata fields', () => { - const initialState = { ...EXPECTED_INITIAL_STATE, coreLoading: true }; + test('given fulfilled action then updates all metadata fields', () => { + const initialState = { ...EXPECTED_INITIAL_STATE, loading: true }; const mockVariables = [ { id: '1', name: 'income', entity: 'person', description: 'Income' }, ]; const mockDatasets = [ { id: '1', name: 'cps_2024', description: 'CPS 2024' }, ]; + const mockParameters = [ + { id: 'p1', name: 'tax.rate', label: 'Tax Rate' }, + ]; + const mockParameterValues = [ + { id: 'pv1', parameter_id: 'p1', start_date: '2024-01-01', value_json: 0.25 }, + ]; const action = { type: fetchCoreMetadataThunk.fulfilled.type, payload: { data: { variables: mockVariables, datasets: mockDatasets, + parameters: mockParameters, + parameterValues: mockParameterValues, version: TEST_VERSION, versionId: 'version-123', }, @@ -134,78 +140,32 @@ describe('metadataReducer', () => { }, }; + vi.mocked(buildParameterTreeModule.buildParameterTree).mockReturnValue(MOCK_PARAMETER_TREE); + const state = metadataReducer(initialState, action); - expect(state.coreLoading).toBe(false); - expect(state.coreLoaded).toBe(true); - expect(state.coreError).toBeNull(); + expect(state.loading).toBe(false); + expect(state.loaded).toBe(true); + expect(state.error).toBeNull(); expect(state.currentCountry).toBe(TEST_COUNTRY_US); expect(state.version).toBe(TEST_VERSION); expect(state.variables).toEqual({ income: mockVariables[0] }); expect(state.datasets).toHaveLength(1); expect(state.datasets[0].name).toBe('cps_2024'); - }); - - test('given rejected action then sets coreError state', () => { - const initialState = { ...EXPECTED_INITIAL_STATE, coreLoading: true }; - const action = { - type: fetchCoreMetadataThunk.rejected.type, - payload: TEST_ERROR_MESSAGE, - }; - const state = metadataReducer(initialState, action); - expect(state.coreLoading).toBe(false); - expect(state.coreError).toBe(TEST_ERROR_MESSAGE); - }); - }); - - describe('fetchParametersThunk', () => { - test('given pending action then sets parametersLoading state', () => { - const initialState = { ...EXPECTED_INITIAL_STATE, coreLoaded: true }; - const action = { type: fetchParametersThunk.pending.type }; - const state = metadataReducer(initialState, action); - expect(state.parametersLoading).toBe(true); - expect(state.parametersError).toBeNull(); - }); - - test('given fulfilled action then updates parameters fields', () => { - const initialState = { ...EXPECTED_INITIAL_STATE, coreLoaded: true, parametersLoading: true }; - const mockParameters = [ - { id: 'p1', name: 'tax.rate', label: 'Tax Rate' }, - ]; - const mockParameterValues = [ - { id: 'pv1', parameter_id: 'p1', start_date: '2024-01-01', value_json: 0.25 }, - ]; - const action = { - type: fetchParametersThunk.fulfilled.type, - payload: { - data: { - parameters: mockParameters, - parameterValues: mockParameterValues, - }, - }, - }; - - vi.mocked(buildParameterTreeModule.buildParameterTree).mockReturnValue(MOCK_PARAMETER_TREE); - - const state = metadataReducer(initialState, action); - - expect(state.parametersLoading).toBe(false); - expect(state.parametersLoaded).toBe(true); - expect(state.parametersError).toBeNull(); expect(state.parameters['tax.rate']).toBeDefined(); - expect(state.parameters['tax.rate'].values['2024-01-01']).toBe(0.25); + expect(state.parameters['tax.rate']?.values?.['2024-01-01']).toBe(0.25); expectParameterTree(state, true); }); - test('given rejected action then sets parametersError state', () => { - const initialState = { ...EXPECTED_INITIAL_STATE, coreLoaded: true, parametersLoading: true }; + test('given rejected action then sets error state', () => { + const initialState = { ...EXPECTED_INITIAL_STATE, loading: true }; const action = { - type: fetchParametersThunk.rejected.type, + type: fetchCoreMetadataThunk.rejected.type, payload: TEST_ERROR_MESSAGE, }; const state = metadataReducer(initialState, action); - expect(state.parametersLoading).toBe(false); - expect(state.parametersError).toBe(TEST_ERROR_MESSAGE); + expect(state.loading).toBe(false); + expect(state.error).toBe(TEST_ERROR_MESSAGE); }); }); @@ -217,35 +177,33 @@ describe('metadataReducer', () => { state = metadataReducer(state, setCurrentCountry(TEST_COUNTRY_US)); expectCurrentCountry(state, TEST_COUNTRY_US); - // Start core loading + // Start loading state = metadataReducer(state, { type: fetchCoreMetadataThunk.pending.type }); - expect(state.coreLoading).toBe(true); + expect(state.loading).toBe(true); - // Receive core data + // Receive data + vi.mocked(buildParameterTreeModule.buildParameterTree).mockReturnValue(MOCK_PARAMETER_TREE); state = metadataReducer(state, { type: fetchCoreMetadataThunk.fulfilled.type, payload: { data: { variables: [{ id: '1', name: 'test', entity: 'person' }], datasets: [], + parameters: [], + parameterValues: [], version: TEST_VERSION, versionId: 'v1', }, countryId: TEST_COUNTRY_US, }, }); - expect(state.coreLoading).toBe(false); - expect(state.coreLoaded).toBe(true); - - // Start parameters loading - state = metadataReducer(state, { type: fetchParametersThunk.pending.type }); - expect(state.parametersLoading).toBe(true); + expect(state.loading).toBe(false); + expect(state.loaded).toBe(true); // Change country (should clear data and reset loading states) state = metadataReducer(state, setCurrentCountry(TEST_COUNTRY_UK)); expectCurrentCountry(state, TEST_COUNTRY_UK); - expect(state.coreLoaded).toBe(false); - expect(state.parametersLoaded).toBe(false); + expect(state.loaded).toBe(false); }); }); }); diff --git a/app/src/tests/unit/routing/guards/CoreMetadataGuard.test.tsx b/app/src/tests/unit/routing/guards/CoreMetadataGuard.test.tsx index 6f3f90076..bc6f3ad93 100644 --- a/app/src/tests/unit/routing/guards/CoreMetadataGuard.test.tsx +++ b/app/src/tests/unit/routing/guards/CoreMetadataGuard.test.tsx @@ -8,13 +8,18 @@ import metadataReducer from '@/reducers/metadataReducer'; import { policyEngineTheme } from '@/theme'; import { TEST_COUNTRIES, - CORE_STATE, + METADATA_STATE, LOADING_MESSAGES, CHILD_CONTENT, } from '@/tests/fixtures/routing/guards/guardsMocks'; -// Track current mock state -let mockCoreState = CORE_STATE.INITIAL; +// Track current mock state - type to allow reassignment to different states +let mockMetadataState: { + loading: boolean; + loaded: boolean; + error: string | null; + currentCountry: string | null; +} = METADATA_STATE.INITIAL; // Mock the hooks vi.mock('@/hooks/useCurrentCountry', () => ({ @@ -23,7 +28,7 @@ vi.mock('@/hooks/useCurrentCountry', () => ({ vi.mock('@/hooks/useCoreMetadata', () => ({ useFetchCoreMetadata: vi.fn(), - selectCoreMetadataState: () => mockCoreState, + selectCoreMetadataState: () => mockMetadataState, })); // Mock react-redux @@ -77,25 +82,25 @@ function renderWithRouter() { describe('CoreMetadataGuard', () => { beforeEach(() => { vi.clearAllMocks(); - mockCoreState = CORE_STATE.INITIAL; + mockMetadataState = METADATA_STATE.INITIAL; }); describe('loading state', () => { - it('given coreLoading is true then renders loading page', () => { + it('given loading is true then renders loading page', () => { // Given - mockCoreState = CORE_STATE.LOADING; + mockMetadataState = METADATA_STATE.LOADING; // When renderWithRouter(); // Then expect(screen.getByTestId('loading-page')).toBeInTheDocument(); - expect(screen.getByText(LOADING_MESSAGES.CORE)).toBeInTheDocument(); + expect(screen.getByText(LOADING_MESSAGES.METADATA)).toBeInTheDocument(); }); - it('given coreLoaded is false then renders loading page', () => { + it('given loaded is false then renders loading page', () => { // Given - mockCoreState = CORE_STATE.INITIAL; + mockMetadataState = METADATA_STATE.INITIAL; // When renderWithRouter(); @@ -106,23 +111,23 @@ describe('CoreMetadataGuard', () => { }); describe('error state', () => { - it('given coreError is set then renders error page', () => { + it('given error is set then renders error page', () => { // Given - mockCoreState = CORE_STATE.ERROR; + mockMetadataState = METADATA_STATE.ERROR; // When renderWithRouter(); // Then expect(screen.getByTestId('error-page')).toBeInTheDocument(); - expect(screen.getByText(CORE_STATE.ERROR.coreError)).toBeInTheDocument(); + expect(screen.getByText(METADATA_STATE.ERROR.error)).toBeInTheDocument(); }); }); describe('loaded state', () => { - it('given coreLoaded is true then renders child routes', () => { + it('given loaded is true then renders child routes', () => { // Given - mockCoreState = CORE_STATE.LOADED; + mockMetadataState = METADATA_STATE.LOADED; // When renderWithRouter(); @@ -132,9 +137,9 @@ describe('CoreMetadataGuard', () => { expect(screen.getByText(CHILD_CONTENT)).toBeInTheDocument(); }); - it('given coreLoaded is true then does not render loading page', () => { + it('given loaded is true then does not render loading page', () => { // Given - mockCoreState = CORE_STATE.LOADED; + mockMetadataState = METADATA_STATE.LOADED; // When renderWithRouter(); @@ -143,9 +148,9 @@ describe('CoreMetadataGuard', () => { expect(screen.queryByTestId('loading-page')).not.toBeInTheDocument(); }); - it('given coreLoaded is true then does not render error page', () => { + it('given loaded is true then does not render error page', () => { // Given - mockCoreState = CORE_STATE.LOADED; + mockMetadataState = METADATA_STATE.LOADED; // When renderWithRouter(); diff --git a/app/src/tests/unit/storage/metadataBulkLoader.test.ts b/app/src/tests/unit/storage/metadataBulkLoader.test.ts index d8e56a38b..2be630df9 100644 --- a/app/src/tests/unit/storage/metadataBulkLoader.test.ts +++ b/app/src/tests/unit/storage/metadataBulkLoader.test.ts @@ -40,6 +40,9 @@ vi.mock('@/storage/metadataDb', () => { // Import after mock setup import { db } from '@/storage/metadataDb'; + +// Cast db to any for mocking chained methods that don't exist on the actual type +const mockDb = db as any; import { bulkLoadVariables, bulkLoadParameters, @@ -266,17 +269,17 @@ describe('metadataBulkLoader', () => { it('given version id then queries variables by version', async () => { // Given const variables = createMockVariables(3); - vi.mocked(db.variables.where).mockReturnThis(); - vi.mocked(db.variables.equals).mockReturnThis(); - vi.mocked(db.variables.toArray).mockResolvedValue(variables); + vi.mocked(mockDb.variables.where).mockReturnThis(); + vi.mocked(mockDb.variables.equals).mockReturnThis(); + vi.mocked(mockDb.variables.toArray).mockResolvedValue(variables); // When const result = await getVariablesByVersion(TEST_VERSIONS.US_VERSION_ID); // Then expect(result).toEqual(variables); - expect(db.variables.where).toHaveBeenCalledWith('tax_benefit_model_version_id'); - expect(db.variables.equals).toHaveBeenCalledWith(TEST_VERSIONS.US_VERSION_ID); + expect(mockDb.variables.where).toHaveBeenCalledWith('tax_benefit_model_version_id'); + expect(mockDb.variables.equals).toHaveBeenCalledWith(TEST_VERSIONS.US_VERSION_ID); }); }); @@ -284,17 +287,17 @@ describe('metadataBulkLoader', () => { it('given version id then queries parameters by version', async () => { // Given const parameters = createMockParameters(3); - vi.mocked(db.parameters.where).mockReturnThis(); - vi.mocked(db.parameters.equals).mockReturnThis(); - vi.mocked(db.parameters.toArray).mockResolvedValue(parameters); + vi.mocked(mockDb.parameters.where).mockReturnThis(); + vi.mocked(mockDb.parameters.equals).mockReturnThis(); + vi.mocked(mockDb.parameters.toArray).mockResolvedValue(parameters); // When const result = await getParametersByVersion(TEST_VERSIONS.US_VERSION_ID); // Then expect(result).toEqual(parameters); - expect(db.parameters.where).toHaveBeenCalledWith('tax_benefit_model_version_id'); - expect(db.parameters.equals).toHaveBeenCalledWith(TEST_VERSIONS.US_VERSION_ID); + expect(mockDb.parameters.where).toHaveBeenCalledWith('tax_benefit_model_version_id'); + expect(mockDb.parameters.equals).toHaveBeenCalledWith(TEST_VERSIONS.US_VERSION_ID); }); }); @@ -302,17 +305,17 @@ describe('metadataBulkLoader', () => { it('given parameter id then queries parameter values by parameter id', async () => { // Given const parameterValues = createMockParameterValues(2); - vi.mocked(db.parameterValues.where).mockReturnThis(); - vi.mocked(db.parameterValues.equals).mockReturnThis(); - vi.mocked(db.parameterValues.toArray).mockResolvedValue(parameterValues); + vi.mocked(mockDb.parameterValues.where).mockReturnThis(); + vi.mocked(mockDb.parameterValues.equals).mockReturnThis(); + vi.mocked(mockDb.parameterValues.toArray).mockResolvedValue(parameterValues); // When const result = await getParameterValues('param-1'); // Then expect(result).toEqual(parameterValues); - expect(db.parameterValues.where).toHaveBeenCalledWith('parameter_id'); - expect(db.parameterValues.equals).toHaveBeenCalledWith('param-1'); + expect(mockDb.parameterValues.where).toHaveBeenCalledWith('parameter_id'); + expect(mockDb.parameterValues.equals).toHaveBeenCalledWith('param-1'); }); }); @@ -320,24 +323,24 @@ describe('metadataBulkLoader', () => { it('given variable name then queries and returns variable', async () => { // Given const variable = createMockVariable({ name: 'income_tax' }); - vi.mocked(db.variables.where).mockReturnThis(); - vi.mocked(db.variables.equals).mockReturnThis(); - vi.mocked(db.variables.first).mockResolvedValue(variable); + vi.mocked(mockDb.variables.where).mockReturnThis(); + vi.mocked(mockDb.variables.equals).mockReturnThis(); + vi.mocked(mockDb.variables.first).mockResolvedValue(variable); // When const result = await getVariableByName('income_tax'); // Then expect(result).toEqual(variable); - expect(db.variables.where).toHaveBeenCalledWith('name'); - expect(db.variables.equals).toHaveBeenCalledWith('income_tax'); + expect(mockDb.variables.where).toHaveBeenCalledWith('name'); + expect(mockDb.variables.equals).toHaveBeenCalledWith('income_tax'); }); it('given non-existent variable name then returns undefined', async () => { // Given - vi.mocked(db.variables.where).mockReturnThis(); - vi.mocked(db.variables.equals).mockReturnThis(); - vi.mocked(db.variables.first).mockResolvedValue(undefined); + vi.mocked(mockDb.variables.where).mockReturnThis(); + vi.mocked(mockDb.variables.equals).mockReturnThis(); + vi.mocked(mockDb.variables.first).mockResolvedValue(undefined); // When const result = await getVariableByName('non_existent'); @@ -351,24 +354,24 @@ describe('metadataBulkLoader', () => { it('given parameter name then queries and returns parameter', async () => { // Given const parameter = createMockParameter({ name: 'basic_rate' }); - vi.mocked(db.parameters.where).mockReturnThis(); - vi.mocked(db.parameters.equals).mockReturnThis(); - vi.mocked(db.parameters.first).mockResolvedValue(parameter); + vi.mocked(mockDb.parameters.where).mockReturnThis(); + vi.mocked(mockDb.parameters.equals).mockReturnThis(); + vi.mocked(mockDb.parameters.first).mockResolvedValue(parameter); // When const result = await getParameterByName('basic_rate'); // Then expect(result).toEqual(parameter); - expect(db.parameters.where).toHaveBeenCalledWith('name'); - expect(db.parameters.equals).toHaveBeenCalledWith('basic_rate'); + expect(mockDb.parameters.where).toHaveBeenCalledWith('name'); + expect(mockDb.parameters.equals).toHaveBeenCalledWith('basic_rate'); }); it('given non-existent parameter name then returns undefined', async () => { // Given - vi.mocked(db.parameters.where).mockReturnThis(); - vi.mocked(db.parameters.equals).mockReturnThis(); - vi.mocked(db.parameters.first).mockResolvedValue(undefined); + vi.mocked(mockDb.parameters.where).mockReturnThis(); + vi.mocked(mockDb.parameters.equals).mockReturnThis(); + vi.mocked(mockDb.parameters.first).mockResolvedValue(undefined); // When const result = await getParameterByName('non_existent'); @@ -381,22 +384,22 @@ describe('metadataBulkLoader', () => { describe('clearVersionData', () => { it('given version id then clears variables and parameters for that version', async () => { // Given - vi.mocked(db.variables.where).mockReturnThis(); - vi.mocked(db.variables.equals).mockReturnThis(); - vi.mocked(db.parameters.where).mockReturnThis(); - vi.mocked(db.parameters.equals).mockReturnThis(); + vi.mocked(mockDb.variables.where).mockReturnThis(); + vi.mocked(mockDb.variables.equals).mockReturnThis(); + vi.mocked(mockDb.parameters.where).mockReturnThis(); + vi.mocked(mockDb.parameters.equals).mockReturnThis(); // When await clearVersionData(TEST_VERSIONS.US_VERSION_ID); // Then - expect(db.transaction).toHaveBeenCalled(); - expect(db.variables.where).toHaveBeenCalledWith('tax_benefit_model_version_id'); - expect(db.variables.equals).toHaveBeenCalledWith(TEST_VERSIONS.US_VERSION_ID); - expect(db.variables.delete).toHaveBeenCalled(); - expect(db.parameters.where).toHaveBeenCalledWith('tax_benefit_model_version_id'); - expect(db.parameters.equals).toHaveBeenCalledWith(TEST_VERSIONS.US_VERSION_ID); - expect(db.parameters.delete).toHaveBeenCalled(); + expect(mockDb.transaction).toHaveBeenCalled(); + expect(mockDb.variables.where).toHaveBeenCalledWith('tax_benefit_model_version_id'); + expect(mockDb.variables.equals).toHaveBeenCalledWith(TEST_VERSIONS.US_VERSION_ID); + expect(mockDb.variables.delete).toHaveBeenCalled(); + expect(mockDb.parameters.where).toHaveBeenCalledWith('tax_benefit_model_version_id'); + expect(mockDb.parameters.equals).toHaveBeenCalledWith(TEST_VERSIONS.US_VERSION_ID); + expect(mockDb.parameters.delete).toHaveBeenCalled(); }); }); From 3dd9926e254120aca738ed70d42601cda5b43a2e Mon Sep 17 00:00:00 2001 From: Anthony Volk Date: Tue, 23 Dec 2025 17:30:15 +0400 Subject: [PATCH 14/32] test: Update tests --- app/src/libs/metadataUtils.ts | 4 +- .../tests/fixtures/libs/metadataUtilsMocks.ts | 53 ++++++++++++------- .../tests/fixtures/pages/populationsMocks.ts | 1 + .../common/RenameIngredientModal.test.tsx | 7 ++- .../report-output/PolicySubPage.test.tsx | 7 ++- .../unit/reducers/metadataReducer.test.ts | 6 ++- 6 files changed, 53 insertions(+), 25 deletions(-) diff --git a/app/src/libs/metadataUtils.ts b/app/src/libs/metadataUtils.ts index e9fd0c7e6..b80cf87c0 100644 --- a/app/src/libs/metadataUtils.ts +++ b/app/src/libs/metadataUtils.ts @@ -55,12 +55,14 @@ export const getFieldOptions = (state: RootState, fieldName: string) => { }; // Check if a field should be a dropdown based on metadata +// Accepts both array format (string[]) and record format (Record) export const isDropdownField = (state: RootState, fieldName: string): boolean => { const fieldVariable = state.metadata.variables?.[fieldName]; return !!( fieldVariable && fieldVariable.possible_values && - Array.isArray(fieldVariable.possible_values) + (Array.isArray(fieldVariable.possible_values) || + typeof fieldVariable.possible_values === 'object') ); }; diff --git a/app/src/tests/fixtures/libs/metadataUtilsMocks.ts b/app/src/tests/fixtures/libs/metadataUtilsMocks.ts index 7fd60905b..142f122d5 100644 --- a/app/src/tests/fixtures/libs/metadataUtilsMocks.ts +++ b/app/src/tests/fixtures/libs/metadataUtilsMocks.ts @@ -27,36 +27,53 @@ export const mockMetadataPayload = (overrides?: any): MetadataApiPayload => ({ message: 'Success', result: { variables: { - age: { label: 'Age' }, + age: { name: 'age', entity: 'person', description: 'Age', label: 'Age' }, state_name: { + name: 'state_name', + entity: 'household', + description: 'State Name', label: 'State', - possibleValues: [ - { value: 'CA', label: 'California' }, - { value: 'NY', label: 'New York' }, - ], + possible_values: { + CA: 'California', + NY: 'New York', + }, }, region: { + name: 'region', + entity: 'household', + description: 'Region', label: 'Region', - possibleValues: [ - { value: 'NORTH_EAST', label: 'North East' }, - { value: 'SOUTH', label: 'South' }, - ], + possible_values: { + NORTH_EAST: 'North East', + SOUTH: 'South', + }, }, brma: { + name: 'brma', + entity: 'household', + description: 'BRMA', label: 'BRMA', - possibleValues: [ - { value: 'LONDON', label: 'London' }, - { value: 'MANCHESTER', label: 'Manchester' }, - ], + possible_values: { + LONDON: 'London', + MANCHESTER: 'Manchester', + }, }, local_authority: { + name: 'local_authority', + entity: 'household', + description: 'Local Authority', label: 'Local Authority', - possibleValues: [ - { value: 'WESTMINSTER', label: 'Westminster' }, - { value: 'CAMDEN', label: 'Camden' }, - ], + possible_values: { + WESTMINSTER: 'Westminster', + CAMDEN: 'Camden', + }, + }, + employment_income: { + name: 'employment_income', + entity: 'person', + description: 'Employment Income', + label: 'Employment Income', }, - employment_income: { label: 'Employment Income' }, }, parameters: { tax_rate: {} }, entities: { person: {} }, diff --git a/app/src/tests/fixtures/pages/populationsMocks.ts b/app/src/tests/fixtures/pages/populationsMocks.ts index c91be68ae..3d9b437bb 100644 --- a/app/src/tests/fixtures/pages/populationsMocks.ts +++ b/app/src/tests/fixtures/pages/populationsMocks.ts @@ -40,6 +40,7 @@ export const POPULATION_GEO = { COUNTRY_US: 'us', COUNTRY_UK: 'uk', STATE_CA: 'ca', + STATE_CA_LABEL: 'California', // Full label used when regions are loaded STATE_NY: 'ny', TYPE_NATIONAL: 'national' as const, TYPE_SUBNATIONAL: 'subnational' as const, diff --git a/app/src/tests/unit/components/common/RenameIngredientModal.test.tsx b/app/src/tests/unit/components/common/RenameIngredientModal.test.tsx index 4fd250d3c..3e3638da8 100644 --- a/app/src/tests/unit/components/common/RenameIngredientModal.test.tsx +++ b/app/src/tests/unit/components/common/RenameIngredientModal.test.tsx @@ -1,4 +1,4 @@ -import { render, screen, userEvent } from '@test-utils'; +import { fireEvent, render, screen, userEvent } from '@test-utils'; import { beforeEach, describe, expect, test, vi } from 'vitest'; import { RenameIngredientModal } from '@/components/common/RenameIngredientModal'; import { @@ -276,9 +276,8 @@ describe('RenameIngredientModal', () => { const input = screen.getByRole('textbox', { name: /report name/i }); const exactly100Chars = 'a'.repeat(100); - // When - await user.clear(input); - await user.type(input, exactly100Chars); + // When - use fireEvent for long strings (userEvent.type is too slow for 100 chars) + fireEvent.change(input, { target: { value: exactly100Chars } }); await user.click(screen.getByRole('button', { name: /^rename$/i })); // Then diff --git a/app/src/tests/unit/pages/report-output/PolicySubPage.test.tsx b/app/src/tests/unit/pages/report-output/PolicySubPage.test.tsx index 2a84994d0..8e0497eb6 100644 --- a/app/src/tests/unit/pages/report-output/PolicySubPage.test.tsx +++ b/app/src/tests/unit/pages/report-output/PolicySubPage.test.tsx @@ -1,7 +1,7 @@ import { configureStore } from '@reduxjs/toolkit'; import { render, screen, within } from '@test-utils'; import { Provider } from 'react-redux'; -import { beforeEach, describe, expect, test } from 'vitest'; +import { beforeEach, describe, expect, test, vi } from 'vitest'; import PolicySubPage from '@/pages/report-output/PolicySubPage'; import { createPolicySubPageProps, @@ -11,6 +11,11 @@ import { TEST_PARAMETER_NAMES, } from '@/tests/fixtures/pages/report-output/PolicySubPage'; +// Mock useCurrentCountry hook +vi.mock('@/hooks/useCurrentCountry', () => ({ + useCurrentCountry: () => 'us', +})); + describe('PolicySubPage - Design 4 Table Format (No Current Law)', () => { let store: any; diff --git a/app/src/tests/unit/reducers/metadataReducer.test.ts b/app/src/tests/unit/reducers/metadataReducer.test.ts index af5b4d24a..7a6bfe5a1 100644 --- a/app/src/tests/unit/reducers/metadataReducer.test.ts +++ b/app/src/tests/unit/reducers/metadataReducer.test.ts @@ -149,7 +149,11 @@ describe('metadataReducer', () => { expect(state.error).toBeNull(); expect(state.currentCountry).toBe(TEST_COUNTRY_US); expect(state.version).toBe(TEST_VERSION); - expect(state.variables).toEqual({ income: mockVariables[0] }); + // Reducer transforms variables by adding label and other fields + expect(state.variables.income).toBeDefined(); + expect(state.variables.income.name).toBe('income'); + expect(state.variables.income.entity).toBe('person'); + expect(state.variables.income.label).toBe('Income'); // Generated from name expect(state.datasets).toHaveLength(1); expect(state.datasets[0].name).toBe('cps_2024'); expect(state.parameters['tax.rate']).toBeDefined(); From bb2fc8ec0fcffafc0f4069b8a81b71895ffa367f Mon Sep 17 00:00:00 2001 From: Anthony Volk Date: Wed, 24 Dec 2025 22:13:23 +0400 Subject: [PATCH 15/32] fix: Fix loading into IndexedDB --- app/src/api/v2/parameters.ts | 10 ++-------- app/src/api/v2/variables.ts | 10 ++-------- app/src/storage/loaders/coreMetadataLoader.ts | 2 +- app/src/tests/unit/api/v2/parameters.test.ts | 16 +--------------- app/src/tests/unit/api/v2/variables.test.ts | 14 +------------- 5 files changed, 7 insertions(+), 45 deletions(-) diff --git a/app/src/api/v2/parameters.ts b/app/src/api/v2/parameters.ts index 2e9cb2d4c..320b061d4 100644 --- a/app/src/api/v2/parameters.ts +++ b/app/src/api/v2/parameters.ts @@ -1,19 +1,13 @@ import { API_V2_BASE_URL, getModelId } from "./taxBenefitModels"; import type { Parameter, ParameterValue } from "@/storage"; -// API defaults to 100 records; set high to fetch all -const DEFAULT_LIMIT = 10000; - /** * Fetch all parameters for a country. */ -export async function fetchParameters( - countryId: string, - limit: number = DEFAULT_LIMIT, -): Promise { +export async function fetchParameters(countryId: string): Promise { const modelId = getModelId(countryId); const res = await fetch( - `${API_V2_BASE_URL}/parameters/?tax_benefit_model_id=${modelId}&limit=${limit}`, + `${API_V2_BASE_URL}/parameters/?tax_benefit_model_id=${modelId}&limit=10000`, ); if (!res.ok) { diff --git a/app/src/api/v2/variables.ts b/app/src/api/v2/variables.ts index 13f199714..8e3419f08 100644 --- a/app/src/api/v2/variables.ts +++ b/app/src/api/v2/variables.ts @@ -1,19 +1,13 @@ import { API_V2_BASE_URL, getModelId } from "./taxBenefitModels"; import type { Variable } from "@/storage"; -// API defaults to 100 records; set high to fetch all -const DEFAULT_LIMIT = 10000; - /** * Fetch all variables for a country. */ -export async function fetchVariables( - countryId: string, - limit: number = DEFAULT_LIMIT, -): Promise { +export async function fetchVariables(countryId: string): Promise { const modelId = getModelId(countryId); const res = await fetch( - `${API_V2_BASE_URL}/variables/?tax_benefit_model_id=${modelId}&limit=${limit}`, + `${API_V2_BASE_URL}/variables/?tax_benefit_model_id=${modelId}&limit=10000`, ); if (!res.ok) { diff --git a/app/src/storage/loaders/coreMetadataLoader.ts b/app/src/storage/loaders/coreMetadataLoader.ts index 7ec61c131..238697312 100644 --- a/app/src/storage/loaders/coreMetadataLoader.ts +++ b/app/src/storage/loaders/coreMetadataLoader.ts @@ -38,7 +38,6 @@ export interface MetadataLoadResult { fromCache: boolean; } - interface VersionInfo { version: string; versionId: string; @@ -106,6 +105,7 @@ async function fetchFreshMetadata(countryId: string): Promise<{ fetchParameters(countryId), fetchParameterValues(countryId), ]); + return { variables, datasets, parameters, parameterValues }; } diff --git a/app/src/tests/unit/api/v2/parameters.test.ts b/app/src/tests/unit/api/v2/parameters.test.ts index fea85bf4f..6b131f74d 100644 --- a/app/src/tests/unit/api/v2/parameters.test.ts +++ b/app/src/tests/unit/api/v2/parameters.test.ts @@ -23,7 +23,7 @@ describe('parameters', () => { }); describe('fetchParameters', () => { - it('given US country then fetches parameters with correct URL', async () => { + it('given US country then fetches parameters with correct model ID', async () => { // Given vi.mocked(global.fetch).mockResolvedValue(mockFetchSuccess(SAMPLE_RESPONSES.PARAMETERS)); @@ -46,20 +46,6 @@ describe('parameters', () => { expect(global.fetch).toHaveBeenCalledWith(API_ENDPOINTS.PARAMETERS(MODEL_IDS.UK)); }); - it('given custom limit then includes limit in URL', async () => { - // Given - const customLimit = 500; - vi.mocked(global.fetch).mockResolvedValue(mockFetchSuccess(SAMPLE_RESPONSES.PARAMETERS)); - - // When - await fetchParameters(TEST_COUNTRIES.US, customLimit); - - // Then - expect(global.fetch).toHaveBeenCalledWith( - API_ENDPOINTS.PARAMETERS(MODEL_IDS.US, customLimit) - ); - }); - it('given failed response then throws error', async () => { // Given vi.mocked(global.fetch).mockResolvedValue(mockFetchError()); diff --git a/app/src/tests/unit/api/v2/variables.test.ts b/app/src/tests/unit/api/v2/variables.test.ts index 356eaf972..0e5f0ae11 100644 --- a/app/src/tests/unit/api/v2/variables.test.ts +++ b/app/src/tests/unit/api/v2/variables.test.ts @@ -23,7 +23,7 @@ describe('variables', () => { }); describe('fetchVariables', () => { - it('given US country then fetches variables with correct URL', async () => { + it('given US country then fetches variables with correct model ID', async () => { // Given vi.mocked(global.fetch).mockResolvedValue(mockFetchSuccess(SAMPLE_RESPONSES.VARIABLES)); @@ -46,18 +46,6 @@ describe('variables', () => { expect(global.fetch).toHaveBeenCalledWith(API_ENDPOINTS.VARIABLES(MODEL_IDS.UK)); }); - it('given custom limit then includes limit in URL', async () => { - // Given - const customLimit = 500; - vi.mocked(global.fetch).mockResolvedValue(mockFetchSuccess(SAMPLE_RESPONSES.VARIABLES)); - - // When - await fetchVariables(TEST_COUNTRIES.US, customLimit); - - // Then - expect(global.fetch).toHaveBeenCalledWith(API_ENDPOINTS.VARIABLES(MODEL_IDS.US, customLimit)); - }); - it('given failed response then throws error', async () => { // Given vi.mocked(global.fetch).mockResolvedValue(mockFetchError()); From 72f73c409b498f36bb4aa38c951f8c92fb11aed2 Mon Sep 17 00:00:00 2001 From: Anthony Volk Date: Wed, 24 Dec 2025 22:58:38 +0400 Subject: [PATCH 16/32] fix: Rename metadata loader; remove unneeded compatibility features --- app/src/CalculatorRouter.tsx | 6 +- app/src/api/v2/index.ts | 2 +- app/src/api/v2/parameters.ts | 20 +---- app/src/docs/ARCHITECTURE-COUNTRY-ID.md | 26 +++--- .../{useCoreMetadata.ts => useMetadata.ts} | 14 ++-- app/src/reducers/metadataReducer.ts | 45 +++-------- app/src/routing/guards/CoreMetadataGuard.tsx | 45 ----------- app/src/routing/guards/MetadataGuard.tsx | 47 ++++------- app/src/storage/index.ts | 9 +-- app/src/storage/loaders/index.ts | 6 +- ...oreMetadataLoader.ts => metadataLoader.ts} | 28 ++----- app/src/storage/metadataBulkLoader.ts | 58 +------------ app/src/storage/metadataDb.ts | 16 ---- app/src/tests/fixtures/api/v2/apiV2Mocks.ts | 4 - .../tests/fixtures/storage/loadersMocks.ts | 4 +- .../tests/fixtures/storage/storageMocks.ts | 30 ------- app/src/tests/unit/api/v2/parameters.test.ts | 46 +---------- ...reMetadata.test.ts => useMetadata.test.ts} | 34 ++++---- .../unit/reducers/metadataReducer.test.ts | 24 +++--- ...aGuard.test.tsx => MetadataGuard.test.tsx} | 12 +-- ...aLoader.test.ts => metadataLoader.test.ts} | 45 +++-------- .../unit/storage/metadataBulkLoader.test.ts | 81 ------------------- 22 files changed, 115 insertions(+), 487 deletions(-) rename app/src/hooks/{useCoreMetadata.ts => useMetadata.ts} (73%) delete mode 100644 app/src/routing/guards/CoreMetadataGuard.tsx rename app/src/storage/loaders/{coreMetadataLoader.ts => metadataLoader.ts} (78%) rename app/src/tests/unit/hooks/{useCoreMetadata.test.ts => useMetadata.test.ts} (76%) rename app/src/tests/unit/routing/guards/{CoreMetadataGuard.test.tsx => MetadataGuard.test.tsx} (93%) rename app/src/tests/unit/storage/loaders/{coreMetadataLoader.test.ts => metadataLoader.test.ts} (78%) diff --git a/app/src/CalculatorRouter.tsx b/app/src/CalculatorRouter.tsx index 7b5a948e7..6c3bb2d37 100644 --- a/app/src/CalculatorRouter.tsx +++ b/app/src/CalculatorRouter.tsx @@ -16,7 +16,7 @@ import PopulationPathwayWrapper from './pathways/population/PopulationPathwayWra import ReportPathwayWrapper from './pathways/report/ReportPathwayWrapper'; import SimulationPathwayWrapper from './pathways/simulation/SimulationPathwayWrapper'; import { CountryGuard } from './routing/guards/CountryGuard'; -import { CoreMetadataGuard } from './routing/guards/CoreMetadataGuard'; +import { MetadataGuard } from './routing/guards/MetadataGuard'; import { RedirectToCountry } from './routing/RedirectToCountry'; /** @@ -42,9 +42,9 @@ const router = createBrowserRouter( path: '/:countryId', element: , children: [ - // All routes need metadata (variables, datasets, parameters, parameterValues) + // All routes need metadata (variables, datasets, parameters) { - element: , + element: , children: [ // Routes with StandardLayout { diff --git a/app/src/api/v2/index.ts b/app/src/api/v2/index.ts index 8ad683508..44812f3a2 100644 --- a/app/src/api/v2/index.ts +++ b/app/src/api/v2/index.ts @@ -14,7 +14,7 @@ export { export { fetchVariables } from "./variables"; // Parameters -export { fetchParameters, fetchParameterValues } from "./parameters"; +export { fetchParameters } from "./parameters"; // Datasets export { fetchDatasets } from "./datasets"; diff --git a/app/src/api/v2/parameters.ts b/app/src/api/v2/parameters.ts index 320b061d4..a9cb2e7a6 100644 --- a/app/src/api/v2/parameters.ts +++ b/app/src/api/v2/parameters.ts @@ -1,5 +1,5 @@ import { API_V2_BASE_URL, getModelId } from "./taxBenefitModels"; -import type { Parameter, ParameterValue } from "@/storage"; +import type { Parameter } from "@/storage"; /** * Fetch all parameters for a country. @@ -16,21 +16,3 @@ export async function fetchParameters(countryId: string): Promise { return res.json(); } - -/** - * Fetch all parameter values for a country. - */ -export async function fetchParameterValues( - countryId: string, -): Promise { - const modelId = getModelId(countryId); - const res = await fetch( - `${API_V2_BASE_URL}/parameter-values/?tax_benefit_model_id=${modelId}`, - ); - - if (!res.ok) { - throw new Error(`Failed to fetch parameter values for ${countryId}`); - } - - return res.json(); -} diff --git a/app/src/docs/ARCHITECTURE-COUNTRY-ID.md b/app/src/docs/ARCHITECTURE-COUNTRY-ID.md index 079fd9ac7..ff40273f1 100644 --- a/app/src/docs/ARCHITECTURE-COUNTRY-ID.md +++ b/app/src/docs/ARCHITECTURE-COUNTRY-ID.md @@ -97,7 +97,7 @@ While the URL is the source of truth for components, Redux stores a copy for spe - Set by CountryGuard via `setCurrentCountry()` - Used by: - - `useFetchCoreMetadata` to determine which country's metadata to load + - `useFetchMetadata` to determine which country's metadata to load - `clearReport` thunk to set report.countryId **report.countryId**: @@ -177,11 +177,11 @@ clearAllPopulations(); ## Metadata Loading -### CoreMetadataGuard +### MetadataGuard -A single guard handles all metadata loading (variables, datasets, parameters, parameterValues): +A single guard handles all metadata loading (variables, datasets, parameters): -**CoreMetadataGuard** (Blocking): +**MetadataGuard** (Blocking): - Blocks rendering until all metadata loads - Shows loading/error pages @@ -191,7 +191,7 @@ A single guard handles all metadata loading (variables, datasets, parameters, pa **The guard**: - Uses `useCurrentCountry()` to read country from URL -- Calls `useFetchCoreMetadata(countryId)` to trigger fetch +- Calls `useFetchMetadata(countryId)` to trigger fetch - Smart caching with version-based invalidation prevents duplicate fetches **Flow**: @@ -201,17 +201,17 @@ User navigates to /uk/reports ↓ CountryGuard validates 'uk' and sets metadata.currentCountry = 'uk' ↓ -CoreMetadataGuard renders +MetadataGuard renders ↓ Calls useCurrentCountry() → returns 'uk' from URL ↓ -Calls useFetchCoreMetadata('uk') +Calls useFetchMetadata('uk') ↓ -useFetchCoreMetadata checks if metadata.loaded === true and currentCountry === 'uk' +useFetchMetadata checks if metadata.loaded === true and currentCountry === 'uk' ↓ -If not, dispatches fetchCoreMetadataThunk('uk') +If not, dispatches fetchMetadataThunk('uk') ↓ -All metadata (variables, datasets, parameters, parameterValues) loads for UK +All metadata (variables, datasets, parameters) loads for UK ``` ## Data Flow Diagram @@ -371,11 +371,11 @@ All of these patterns have been replaced with the URL-as-source-of-truth archite - `src/routing/guards/CountryGuard.tsx` - Entry point and state management - `src/hooks/useCurrentCountry.ts` - Hook to read country from URL -- `src/hooks/useCoreMetadata.ts` - Hook for fetching metadata +- `src/hooks/useMetadata.ts` - Hook for fetching metadata - `src/reducers/reportReducer.ts` - Report state with clearReport thunk - `src/reducers/metadataReducer.ts` - Metadata state with unified loading -- `src/routing/guards/CoreMetadataGuard.tsx` - Unified metadata loader (blocking) -- `src/storage/loaders/coreMetadataLoader.ts` - V2 API + IndexedDB caching +- `src/routing/guards/MetadataGuard.tsx` - Unified metadata loader (blocking) +- `src/storage/loaders/metadataLoader.ts` - V2 API + IndexedDB caching ### Tests diff --git a/app/src/hooks/useCoreMetadata.ts b/app/src/hooks/useMetadata.ts similarity index 73% rename from app/src/hooks/useCoreMetadata.ts rename to app/src/hooks/useMetadata.ts index 10991b455..1774f5093 100644 --- a/app/src/hooks/useCoreMetadata.ts +++ b/app/src/hooks/useMetadata.ts @@ -1,12 +1,12 @@ import { useEffect } from 'react'; import { useDispatch, useSelector } from 'react-redux'; -import { fetchCoreMetadataThunk } from '@/reducers/metadataReducer'; +import { fetchMetadataThunk } from '@/reducers/metadataReducer'; import { AppDispatch, RootState } from '@/store'; /** - * Selects core metadata loading state from Redux. + * Selects metadata loading state from Redux. */ -export function selectCoreMetadataState(state: RootState) { +export function selectMetadataState(state: RootState) { return { loading: state.metadata.loading, loaded: state.metadata.loaded, @@ -16,15 +16,15 @@ export function selectCoreMetadataState(state: RootState) { } /** - * Hook that fetches all metadata (variables, datasets, parameters, parameterValues) for a country. + * Hook that fetches all metadata (variables, datasets, parameters) for a country. * * This is the V2 unified loading approach - loads all metadata in a single fetch. * * @param countryId - Country to fetch metadata for (e.g., 'us', 'uk') */ -export function useFetchCoreMetadata(countryId: string): void { +export function useFetchMetadata(countryId: string): void { const dispatch = useDispatch(); - const { loading, loaded, currentCountry } = useSelector(selectCoreMetadataState); + const { loading, loaded, currentCountry } = useSelector(selectMetadataState); useEffect(() => { // Fetch if: @@ -33,7 +33,7 @@ export function useFetchCoreMetadata(countryId: string): void { const needsFetch = !loading && (!loaded || countryId !== currentCountry); if (needsFetch && countryId) { - dispatch(fetchCoreMetadataThunk(countryId)); + dispatch(fetchMetadataThunk(countryId)); } }, [countryId, loading, loaded, currentCountry, dispatch]); } diff --git a/app/src/reducers/metadataReducer.ts b/app/src/reducers/metadataReducer.ts index 66efb97af..12dda06f5 100644 --- a/app/src/reducers/metadataReducer.ts +++ b/app/src/reducers/metadataReducer.ts @@ -1,6 +1,6 @@ import { createAsyncThunk, createSlice, PayloadAction } from "@reduxjs/toolkit"; import { buildParameterTree } from "@/libs/buildParameterTree"; -import { loadCoreMetadata } from "@/storage"; +import { loadMetadata } from "@/storage"; import { MetadataState, VariableMetadata, @@ -30,25 +30,12 @@ const initialState: MetadataState = { parameterTree: null, }; -// Async thunk for fetching metadata (V1 - legacy) -export const fetchMetadataThunk = createAsyncThunk< - { data: Awaited>; country: string }, - string ->('metadata/fetch', async (country: string, { rejectWithValue }) => { - try { - const data = await fetchMetadataApi(country); - return { data, country }; - } catch (error) { - return rejectWithValue(error instanceof Error ? error.message : 'Unknown error'); - } -}); - -// V2 thunk: Fetch all metadata (variables, datasets, parameters, parameterValues) -export const fetchCoreMetadataThunk = createAsyncThunk( - "metadata/fetchCore", +// Fetch all metadata (variables, datasets, parameters) +export const fetchMetadataThunk = createAsyncThunk( + "metadata/fetch", async (countryId: string, { rejectWithValue }) => { try { - const result = await loadCoreMetadata(countryId); + const result = await loadMetadata(countryId); return { ...result, countryId }; } catch (error) { return rejectWithValue( @@ -85,11 +72,11 @@ const metadataSlice = createSlice({ }, extraReducers: (builder) => { builder - .addCase(fetchCoreMetadataThunk.pending, (state) => { + .addCase(fetchMetadataThunk.pending, (state) => { state.loading = true; state.error = null; }) - .addCase(fetchCoreMetadataThunk.fulfilled, (state, action) => { + .addCase(fetchMetadataThunk.fulfilled, (state, action) => { const { data, countryId } = action.payload; state.loading = false; @@ -126,7 +113,8 @@ const metadataSlice = createSlice({ default: i === 0, })); - // Transform V2 parameters array to record format with values + // Transform V2 parameters array to record format + // Note: Parameter values are fetched on-demand, not prefetched const parametersRecord: Record = {}; for (const p of data.parameters) { parametersRecord[p.name] = { @@ -144,19 +132,6 @@ const metadataSlice = createSlice({ }; } - // Associate parameter values with their parameters - for (const pv of data.parameterValues) { - const param = data.parameters.find((p) => p.id === pv.parameter_id); - if (param && parametersRecord[param.name]) { - // Use start_date as key for values (V1 format compatibility) - const dateKey = pv.start_date.split("T")[0]; - if (!parametersRecord[param.name].values) { - parametersRecord[param.name].values = {}; - } - parametersRecord[param.name].values![dateKey] = pv.value_json; - } - } - state.parameters = parametersRecord; // Build parameter tree @@ -169,7 +144,7 @@ const metadataSlice = createSlice({ // Static data (entities, basicInputs, timePeriods, regions, modelledPolicies, currentLawId) // is no longer stored in Redux. Access it via hooks from @/hooks/useStaticMetadata. }) - .addCase(fetchCoreMetadataThunk.rejected, (state, action) => { + .addCase(fetchMetadataThunk.rejected, (state, action) => { state.loading = false; state.error = action.payload as string; }); diff --git a/app/src/routing/guards/CoreMetadataGuard.tsx b/app/src/routing/guards/CoreMetadataGuard.tsx deleted file mode 100644 index 9e247add9..000000000 --- a/app/src/routing/guards/CoreMetadataGuard.tsx +++ /dev/null @@ -1,45 +0,0 @@ -import { useSelector } from 'react-redux'; -import { Outlet } from 'react-router-dom'; -import { useCurrentCountry } from '@/hooks/useCurrentCountry'; -import { selectCoreMetadataState, useFetchCoreMetadata } from '@/hooks/useCoreMetadata'; -import ErrorPage from '@/pages/report-output/ErrorPage'; -import LoadingPage from '@/pages/report-output/LoadingPage'; - -/** - * Guard component that ensures all metadata (variables, datasets, parameters, parameterValues) - * is loaded before rendering child routes. - * - * This is the V2 unified loading approach - loads all metadata in one request. - * - * Loading states: - * 1. loading === true → Shows loading page - * 2. error !== null → Shows error page - * 3. loaded === false → Shows loading page - * 4. loaded === true → Renders child routes - * - * Example usage in Router: - * ```tsx - * { - * element: , - * children: [ - * { path: 'household/*', element: }, - * ], - * } - * ``` - */ -export function CoreMetadataGuard() { - const countryId = useCurrentCountry(); - useFetchCoreMetadata(countryId); - - const { loading, loaded, error } = useSelector(selectCoreMetadataState); - - if (error) { - return ; - } - - if (loading || !loaded) { - return ; - } - - return ; -} diff --git a/app/src/routing/guards/MetadataGuard.tsx b/app/src/routing/guards/MetadataGuard.tsx index 89f0c99e9..6d88a231f 100644 --- a/app/src/routing/guards/MetadataGuard.tsx +++ b/app/src/routing/guards/MetadataGuard.tsx @@ -1,34 +1,28 @@ import { useSelector } from 'react-redux'; import { Outlet } from 'react-router-dom'; -import { MetadataLoadingExperience } from '@/components/common/MetadataLoadingExperience'; import { useCurrentCountry } from '@/hooks/useCurrentCountry'; -import { useFetchMetadata } from '@/hooks/useMetadata'; +import { selectMetadataState, useFetchMetadata } from '@/hooks/useMetadata'; import ErrorPage from '@/pages/report-output/ErrorPage'; -import { RootState } from '@/store'; +import LoadingPage from '@/pages/report-output/LoadingPage'; /** - * Guard component that ensures metadata is loaded before rendering child routes. + * Guard component that ensures all metadata (variables, datasets, parameters) + * is loaded before rendering child routes. * - * This guard BLOCKS rendering until metadata is fully loaded, showing a polished - * loading experience while fetching. Use this for routes that absolutely require - * metadata to render properly (e.g., ReportOutputPage, HouseholdOverview). + * This is the V2 unified loading approach - loads all metadata in one request. * - * The guard checks: - * 1. If metadata is currently loading - shows MetadataLoadingExperience with progress - * 2. If metadata fetch failed - shows error page - * 3. If metadata.version is missing - shows MetadataLoadingExperience - * 4. Otherwise - renders child routes via - * - * Note: useFetchMetadata is smart and won't re-fetch if metadata already exists - * for the current country, so navigation between guarded routes is instant once - * metadata is cached. + * Loading states: + * 1. loading === true → Shows loading page + * 2. error !== null → Shows error page + * 3. loaded === false → Shows loading page + * 4. loaded === true → Renders child routes * * Example usage in Router: * ```tsx * { * element: , * children: [ - * { path: 'report-output/:reportId', element: }, + * { path: 'household/*', element: }, * ], * } * ``` @@ -37,24 +31,15 @@ export function MetadataGuard() { const countryId = useCurrentCountry(); useFetchMetadata(countryId); - const metadata = useSelector((state: RootState) => state.metadata); - - // Show loading experience while metadata is being fetched - if (metadata.loading) { - return ; - } + const { loading, loaded, error } = useSelector(selectMetadataState); - // Show error page if fetch failed - if (metadata.error) { - return ; + if (error) { + return ; } - // If metadata.version is null/undefined, metadata hasn't loaded yet - // This handles the case where loading is false but fetch hasn't started - if (!metadata.version) { - return ; + if (loading || !loaded) { + return ; } - // Metadata is loaded and ready - render child routes return ; } diff --git a/app/src/storage/index.ts b/app/src/storage/index.ts index 8a94ee251..b947eb209 100644 --- a/app/src/storage/index.ts +++ b/app/src/storage/index.ts @@ -5,7 +5,6 @@ export { _deleteDb, type Variable, type Parameter, - type ParameterValue, type Dataset, type CacheMetadata, } from "./metadataDb"; @@ -14,10 +13,8 @@ export { export { bulkLoadVariables, bulkLoadParameters, - bulkLoadParameterValues, clearAndLoadVariables, clearAndLoadParameters, - clearAndLoadParameterValues, clearAndLoadDatasets, } from "./metadataBulkLoader"; @@ -25,10 +22,8 @@ export { export { getVariablesByVersion, getParametersByVersion, - getParameterValues, getAllVariables, getAllParameters, - getAllParameterValues, getAllDatasets, getVariableByName, getParameterByName, @@ -45,8 +40,8 @@ export { // Loaders (unified metadata loading) export { - loadCoreMetadata, - isCoreMetadataCached, + loadMetadata, + isMetadataCached, type Metadata, type MetadataLoadResult, } from "./loaders"; diff --git a/app/src/storage/loaders/index.ts b/app/src/storage/loaders/index.ts index eea29cc8d..aee79947f 100644 --- a/app/src/storage/loaders/index.ts +++ b/app/src/storage/loaders/index.ts @@ -1,6 +1,6 @@ export { - loadCoreMetadata, - isCoreMetadataCached, + loadMetadata, + isMetadataCached, type Metadata, type MetadataLoadResult, -} from "./coreMetadataLoader"; +} from "./metadataLoader"; diff --git a/app/src/storage/loaders/coreMetadataLoader.ts b/app/src/storage/loaders/metadataLoader.ts similarity index 78% rename from app/src/storage/loaders/coreMetadataLoader.ts rename to app/src/storage/loaders/metadataLoader.ts index 238697312..4160d58bb 100644 --- a/app/src/storage/loaders/coreMetadataLoader.ts +++ b/app/src/storage/loaders/metadataLoader.ts @@ -2,7 +2,6 @@ import { fetchVariables, fetchDatasets, fetchParameters, - fetchParameterValues, fetchModelVersion, fetchModelVersionId, } from "@/api/v2"; @@ -12,23 +11,19 @@ import { clearAndLoadVariables, clearAndLoadDatasets, clearAndLoadParameters, - clearAndLoadParameterValues, getAllVariables, getAllDatasets, getAllParameters, - getAllParameterValues, type CacheMetadata, type Variable, type Dataset, type Parameter, - type ParameterValue, } from "@/storage"; export interface Metadata { variables: Variable[]; datasets: Dataset[]; parameters: Parameter[]; - parameterValues: ParameterValue[]; version: string; versionId: string; } @@ -73,18 +68,16 @@ function isCacheValid( * Load metadata from IndexedDB cache */ async function loadFromCache(cached: CacheMetadata): Promise { - const [variables, datasets, parameters, parameterValues] = await Promise.all([ + const [variables, datasets, parameters] = await Promise.all([ getAllVariables(), getAllDatasets(), getAllParameters(), - getAllParameterValues(), ]); return { variables, datasets, parameters, - parameterValues, version: cached.version, versionId: cached.versionId, }; @@ -97,16 +90,14 @@ async function fetchFreshMetadata(countryId: string): Promise<{ variables: Variable[]; datasets: Dataset[]; parameters: Parameter[]; - parameterValues: ParameterValue[]; }> { - const [variables, datasets, parameters, parameterValues] = await Promise.all([ + const [variables, datasets, parameters] = await Promise.all([ fetchVariables(countryId), fetchDatasets(countryId), fetchParameters(countryId), - fetchParameterValues(countryId), ]); - return { variables, datasets, parameters, parameterValues }; + return { variables, datasets, parameters }; } /** @@ -117,14 +108,12 @@ async function storeInCache( variables: Variable[], datasets: Dataset[], parameters: Parameter[], - parameterValues: ParameterValue[], versionInfo: VersionInfo, ): Promise { await Promise.all([ clearAndLoadVariables(variables), clearAndLoadDatasets(datasets), clearAndLoadParameters(parameters), - clearAndLoadParameterValues(parameterValues), ]); await setCacheMetadata({ @@ -137,10 +126,10 @@ async function storeInCache( } /** - * Load all metadata (variables, datasets, parameters, parameterValues) for a country. + * Load all metadata (variables, datasets, parameters) for a country. * Uses IndexedDB cache with version-based invalidation. */ -export async function loadCoreMetadata( +export async function loadMetadata( countryId: string, ): Promise { const cached = await getCacheMetadata(countryId); @@ -151,19 +140,18 @@ export async function loadCoreMetadata( return { data, fromCache: true }; } - const { variables, datasets, parameters, parameterValues } = + const { variables, datasets, parameters } = await fetchFreshMetadata(countryId); await storeInCache( countryId, variables, datasets, parameters, - parameterValues, versionInfo, ); return { - data: { variables, datasets, parameters, parameterValues, ...versionInfo }, + data: { variables, datasets, parameters, ...versionInfo }, fromCache: false, }; } @@ -171,7 +159,7 @@ export async function loadCoreMetadata( /** * Check if metadata is cached and valid for a country */ -export async function isCoreMetadataCached( +export async function isMetadataCached( countryId: string, ): Promise { const cached = await getCacheMetadata(countryId); diff --git a/app/src/storage/metadataBulkLoader.ts b/app/src/storage/metadataBulkLoader.ts index 2a567c998..95712348f 100644 --- a/app/src/storage/metadataBulkLoader.ts +++ b/app/src/storage/metadataBulkLoader.ts @@ -1,11 +1,4 @@ -import { - db, - Variable, - Parameter, - ParameterValue, - Dataset, - CacheMetadata, -} from "./metadataDb"; +import { db, Variable, Parameter, Dataset, CacheMetadata } from "./metadataDb"; /** * Bulk load variables, replacing any existing records @@ -25,17 +18,6 @@ export async function bulkLoadParameters(records: Parameter[]): Promise return records.length; } -/** - * Bulk load parameter values, replacing any existing records - */ -export async function bulkLoadParameterValues( - records: ParameterValue[], -): Promise { - if (records.length === 0) return 0; - await db.parameterValues.bulkPut(records); - return records.length; -} - /** * Clear variables and load new records atomically */ @@ -62,19 +44,6 @@ export async function clearAndLoadParameters( return records.length; } -/** - * Clear parameter values and load new records atomically - */ -export async function clearAndLoadParameterValues( - records: ParameterValue[], -): Promise { - await db.transaction("rw", db.parameterValues, async () => { - await db.parameterValues.clear(); - await db.parameterValues.bulkPut(records); - }); - return records.length; -} - /** * Clear datasets and load new records atomically */ @@ -113,15 +82,6 @@ export async function getParametersByVersion( return db.parameters.where("tax_benefit_model_version_id").equals(versionId).toArray(); } -/** - * Get all parameter values for a specific parameter - */ -export async function getParameterValues( - parameterId: string, -): Promise { - return db.parameterValues.where("parameter_id").equals(parameterId).toArray(); -} - /** * Get all variables */ @@ -136,13 +96,6 @@ export async function getAllParameters(): Promise { return db.parameters.toArray(); } -/** - * Get all parameter values - */ -export async function getAllParameterValues(): Promise { - return db.parameterValues.toArray(); -} - /** * Get a single variable by name */ @@ -195,11 +148,10 @@ export async function clearVersionData(versionId: string): Promise { export async function clearAllStores(): Promise { await db.transaction( "rw", - [db.variables, db.parameters, db.parameterValues, db.datasets, db.cacheMetadata], + [db.variables, db.parameters, db.datasets, db.cacheMetadata], async () => { await db.variables.clear(); await db.parameters.clear(); - await db.parameterValues.clear(); await db.datasets.clear(); await db.cacheMetadata.clear(); }, @@ -212,14 +164,12 @@ export async function clearAllStores(): Promise { export async function getStoreCounts(): Promise<{ variables: number; parameters: number; - parameterValues: number; datasets: number; }> { - const [variables, parameters, parameterValues, datasets] = await Promise.all([ + const [variables, parameters, datasets] = await Promise.all([ db.variables.count(), db.parameters.count(), - db.parameterValues.count(), db.datasets.count(), ]); - return { variables, parameters, parameterValues, datasets }; + return { variables, parameters, datasets }; } diff --git a/app/src/storage/metadataDb.ts b/app/src/storage/metadataDb.ts index 360191256..d1a7bb3d8 100644 --- a/app/src/storage/metadataDb.ts +++ b/app/src/storage/metadataDb.ts @@ -28,20 +28,6 @@ export interface Parameter { created_at: string; } -/** - * Parameter value record from V2 API - */ -export interface ParameterValue { - id: string; - parameter_id: string; - value_json: unknown; - start_date: string; - end_date: string; - policy_id: string | null; - dynamic_id: string | null; - created_at: string; -} - /** * Dataset record from V2 API */ @@ -74,7 +60,6 @@ export interface CacheMetadata { class PolicyEngineDatabase extends Dexie { variables!: EntityTable; parameters!: EntityTable; - parameterValues!: EntityTable; datasets!: EntityTable; cacheMetadata!: EntityTable; @@ -84,7 +69,6 @@ class PolicyEngineDatabase extends Dexie { this.version(1).stores({ variables: "id, name, tax_benefit_model_version_id", parameters: "id, name, tax_benefit_model_version_id", - parameterValues: "id, parameter_id", datasets: "id, name, tax_benefit_model_id", cacheMetadata: "countryId", }); diff --git a/app/src/tests/fixtures/api/v2/apiV2Mocks.ts b/app/src/tests/fixtures/api/v2/apiV2Mocks.ts index 06c01907b..8be9497d8 100644 --- a/app/src/tests/fixtures/api/v2/apiV2Mocks.ts +++ b/app/src/tests/fixtures/api/v2/apiV2Mocks.ts @@ -5,7 +5,6 @@ import type { TaxBenefitModel, TaxBenefitModelVersion } from '@/api/v2/taxBenefi import { createMockVariables, createMockParameters, - createMockParameterValues, createMockDatasets, TEST_COUNTRIES, } from '@/tests/fixtures/storage/storageMocks'; @@ -83,7 +82,6 @@ export const SAMPLE_RESPONSES = { EMPTY_VERSIONS: [] as TaxBenefitModelVersion[], VARIABLES: createMockVariables(5), PARAMETERS: createMockParameters(5), - PARAMETER_VALUES: createMockParameterValues(10), DATASETS: createMockDatasets(3), } as const; @@ -96,7 +94,5 @@ export const API_ENDPOINTS = { `${API_V2_BASE_URL}/variables/?tax_benefit_model_id=${modelId}&limit=${limit}`, PARAMETERS: (modelId: string, limit: number = 10000) => `${API_V2_BASE_URL}/parameters/?tax_benefit_model_id=${modelId}&limit=${limit}`, - PARAMETER_VALUES: (modelId: string) => - `${API_V2_BASE_URL}/parameter-values/?tax_benefit_model_id=${modelId}`, DATASETS: (modelId: string) => `${API_V2_BASE_URL}/datasets/?tax_benefit_model_id=${modelId}`, } as const; diff --git a/app/src/tests/fixtures/storage/loadersMocks.ts b/app/src/tests/fixtures/storage/loadersMocks.ts index 3bfc783d0..9281c0ce6 100644 --- a/app/src/tests/fixtures/storage/loadersMocks.ts +++ b/app/src/tests/fixtures/storage/loadersMocks.ts @@ -1,11 +1,10 @@ /** * Fixtures for storage loaders tests */ -import type { Metadata, MetadataLoadResult } from '@/storage/loaders/coreMetadataLoader'; +import type { Metadata, MetadataLoadResult } from '@/storage/loaders/metadataLoader'; import { createMockVariables, createMockParameters, - createMockParameterValues, createMockDatasets, createMockCacheMetadata, TEST_COUNTRIES, @@ -21,7 +20,6 @@ export function createMockMetadata(overrides: Partial = {}): Metadata variables: createMockVariables(5), datasets: createMockDatasets(2), parameters: createMockParameters(5), - parameterValues: createMockParameterValues(10), version: TEST_VERSIONS.US_VERSION, versionId: TEST_VERSIONS.US_VERSION_ID, ...overrides, diff --git a/app/src/tests/fixtures/storage/storageMocks.ts b/app/src/tests/fixtures/storage/storageMocks.ts index 819579283..903775af9 100644 --- a/app/src/tests/fixtures/storage/storageMocks.ts +++ b/app/src/tests/fixtures/storage/storageMocks.ts @@ -4,7 +4,6 @@ import type { Variable, Parameter, - ParameterValue, Dataset, CacheMetadata, } from '@/storage/metadataDb'; @@ -53,23 +52,6 @@ export function createMockParameter(overrides: Partial = {}): Paramet }; } -// Mock parameter value factory -export function createMockParameterValue( - overrides: Partial = {} -): ParameterValue { - return { - id: 'pv-1', - parameter_id: 'param-1', - value_json: 0.2, - start_date: '2024-01-01', - end_date: '2024-12-31', - policy_id: null, - dynamic_id: null, - created_at: '2024-01-01T00:00:00Z', - ...overrides, - }; -} - // Mock dataset factory export function createMockDataset(overrides: Partial = {}): Dataset { return { @@ -120,18 +102,6 @@ export function createMockParameters(count: number): Parameter[] { ); } -// Create multiple mock parameter values -export function createMockParameterValues(count: number): ParameterValue[] { - return Array.from({ length: count }, (_, i) => - createMockParameterValue({ - id: `pv-${i + 1}`, - parameter_id: `param-${(i % 3) + 1}`, - start_date: `202${i}-01-01`, - end_date: `202${i}-12-31`, - }) - ); -} - // Create multiple mock datasets export function createMockDatasets(count: number): Dataset[] { return Array.from({ length: count }, (_, i) => diff --git a/app/src/tests/unit/api/v2/parameters.test.ts b/app/src/tests/unit/api/v2/parameters.test.ts index 6b131f74d..2126b7fbd 100644 --- a/app/src/tests/unit/api/v2/parameters.test.ts +++ b/app/src/tests/unit/api/v2/parameters.test.ts @@ -8,7 +8,7 @@ import { mockFetchError, } from '@/tests/fixtures/api/v2/apiV2Mocks'; -import { fetchParameters, fetchParameterValues } from '@/api/v2/parameters'; +import { fetchParameters } from '@/api/v2/parameters'; describe('parameters', () => { const originalFetch = global.fetch; @@ -61,48 +61,4 @@ describe('parameters', () => { await expect(fetchParameters('unknown')).rejects.toThrow('Unknown country: unknown'); }); }); - - describe('fetchParameterValues', () => { - it('given US country then fetches parameter values with correct URL', async () => { - // Given - vi.mocked(global.fetch).mockResolvedValue( - mockFetchSuccess(SAMPLE_RESPONSES.PARAMETER_VALUES) - ); - - // When - const result = await fetchParameterValues(TEST_COUNTRIES.US); - - // Then - expect(result).toEqual(SAMPLE_RESPONSES.PARAMETER_VALUES); - expect(global.fetch).toHaveBeenCalledWith(API_ENDPOINTS.PARAMETER_VALUES(MODEL_IDS.US)); - }); - - it('given UK country then fetches parameter values with correct model ID', async () => { - // Given - vi.mocked(global.fetch).mockResolvedValue( - mockFetchSuccess(SAMPLE_RESPONSES.PARAMETER_VALUES) - ); - - // When - await fetchParameterValues(TEST_COUNTRIES.UK); - - // Then - expect(global.fetch).toHaveBeenCalledWith(API_ENDPOINTS.PARAMETER_VALUES(MODEL_IDS.UK)); - }); - - it('given failed response then throws error', async () => { - // Given - vi.mocked(global.fetch).mockResolvedValue(mockFetchError()); - - // When/Then - await expect(fetchParameterValues(TEST_COUNTRIES.US)).rejects.toThrow( - `Failed to fetch parameter values for ${TEST_COUNTRIES.US}` - ); - }); - - it('given unknown country then throws error', async () => { - // When/Then - await expect(fetchParameterValues('unknown')).rejects.toThrow('Unknown country: unknown'); - }); - }); }); diff --git a/app/src/tests/unit/hooks/useCoreMetadata.test.ts b/app/src/tests/unit/hooks/useMetadata.test.ts similarity index 76% rename from app/src/tests/unit/hooks/useCoreMetadata.test.ts rename to app/src/tests/unit/hooks/useMetadata.test.ts index b0988956c..e65ec9458 100644 --- a/app/src/tests/unit/hooks/useCoreMetadata.test.ts +++ b/app/src/tests/unit/hooks/useMetadata.test.ts @@ -29,27 +29,27 @@ vi.mock('@/reducers/metadataReducer', async (importOriginal) => { const actual = await importOriginal(); return { ...actual, - fetchCoreMetadataThunk: vi.fn((countryId: string) => ({ type: 'FETCH_CORE', payload: countryId })), + fetchMetadataThunk: vi.fn((countryId: string) => ({ type: 'FETCH_METADATA', payload: countryId })), }; }); // Import after mocks are set up -import { selectCoreMetadataState, useFetchCoreMetadata } from '@/hooks/useCoreMetadata'; -import { fetchCoreMetadataThunk } from '@/reducers/metadataReducer'; +import { selectMetadataState, useFetchMetadata } from '@/hooks/useMetadata'; +import { fetchMetadataThunk } from '@/reducers/metadataReducer'; -describe('useCoreMetadata', () => { +describe('useMetadata', () => { beforeEach(() => { vi.clearAllMocks(); mockState = { metadata: MOCK_METADATA_STATE_INITIAL }; }); - describe('selectCoreMetadataState', () => { + describe('selectMetadataState', () => { it('given initial state then returns loading as false', () => { // Given const state = { metadata: MOCK_METADATA_STATE_INITIAL }; // When - const result = selectCoreMetadataState(state); + const result = selectMetadataState(state); // Then expect(result.loading).toBe(false); @@ -62,7 +62,7 @@ describe('useCoreMetadata', () => { const state = { metadata: MOCK_METADATA_STATE_LOADING }; // When - const result = selectCoreMetadataState(state); + const result = selectMetadataState(state); // Then expect(result.loading).toBe(true); @@ -73,7 +73,7 @@ describe('useCoreMetadata', () => { const state = { metadata: MOCK_METADATA_STATE_LOADED }; // When - const result = selectCoreMetadataState(state); + const result = selectMetadataState(state); // Then expect(result.loaded).toBe(true); @@ -85,24 +85,24 @@ describe('useCoreMetadata', () => { const state = { metadata: MOCK_METADATA_STATE_ERROR }; // When - const result = selectCoreMetadataState(state); + const result = selectMetadataState(state); // Then expect(result.error).toBe('Failed to load metadata'); }); }); - describe('useFetchCoreMetadata', () => { + describe('useFetchMetadata', () => { it('given initial state and country then dispatches fetch action', () => { // Given mockState = { metadata: MOCK_METADATA_STATE_INITIAL }; // When - renderHook(() => useFetchCoreMetadata(TEST_COUNTRIES.US)); + renderHook(() => useFetchMetadata(TEST_COUNTRIES.US)); // Then expect(mockDispatch).toHaveBeenCalled(); - expect(fetchCoreMetadataThunk).toHaveBeenCalledWith(TEST_COUNTRIES.US); + expect(fetchMetadataThunk).toHaveBeenCalledWith(TEST_COUNTRIES.US); }); it('given loading state then does not dispatch', () => { @@ -110,7 +110,7 @@ describe('useCoreMetadata', () => { mockState = { metadata: MOCK_METADATA_STATE_LOADING }; // When - renderHook(() => useFetchCoreMetadata(TEST_COUNTRIES.US)); + renderHook(() => useFetchMetadata(TEST_COUNTRIES.US)); // Then expect(mockDispatch).not.toHaveBeenCalled(); @@ -121,7 +121,7 @@ describe('useCoreMetadata', () => { mockState = { metadata: MOCK_METADATA_STATE_LOADED }; // When - renderHook(() => useFetchCoreMetadata(TEST_COUNTRIES.US)); + renderHook(() => useFetchMetadata(TEST_COUNTRIES.US)); // Then expect(mockDispatch).not.toHaveBeenCalled(); @@ -132,11 +132,11 @@ describe('useCoreMetadata', () => { mockState = { metadata: MOCK_METADATA_STATE_LOADED }; // When - renderHook(() => useFetchCoreMetadata(TEST_COUNTRIES.UK)); + renderHook(() => useFetchMetadata(TEST_COUNTRIES.UK)); // Then expect(mockDispatch).toHaveBeenCalled(); - expect(fetchCoreMetadataThunk).toHaveBeenCalledWith(TEST_COUNTRIES.UK); + expect(fetchMetadataThunk).toHaveBeenCalledWith(TEST_COUNTRIES.UK); }); it('given empty country then does not dispatch', () => { @@ -144,7 +144,7 @@ describe('useCoreMetadata', () => { mockState = { metadata: MOCK_METADATA_STATE_INITIAL }; // When - renderHook(() => useFetchCoreMetadata('')); + renderHook(() => useFetchMetadata('')); // Then expect(mockDispatch).not.toHaveBeenCalled(); diff --git a/app/src/tests/unit/reducers/metadataReducer.test.ts b/app/src/tests/unit/reducers/metadataReducer.test.ts index 7a6bfe5a1..f9c048d64 100644 --- a/app/src/tests/unit/reducers/metadataReducer.test.ts +++ b/app/src/tests/unit/reducers/metadataReducer.test.ts @@ -3,7 +3,7 @@ import { beforeEach, describe, expect, test, vi } from 'vitest'; import * as buildParameterTreeModule from '@/libs/buildParameterTree'; import metadataReducer, { clearMetadata, - fetchCoreMetadataThunk, + fetchMetadataThunk, setCurrentCountry, } from '@/reducers/metadataReducer'; import { @@ -26,7 +26,7 @@ import { // Mock the storage loaders vi.mock('@/storage', () => ({ - loadCoreMetadata: vi.fn(), + loadMetadata: vi.fn(), })); vi.mock('@/libs/buildParameterTree'); @@ -102,10 +102,10 @@ describe('metadataReducer', () => { }); }); - describe('fetchCoreMetadataThunk', () => { + describe('fetchMetadataThunk', () => { test('given pending action then sets loading state', () => { const initialState = EXPECTED_INITIAL_STATE; - const action = { type: fetchCoreMetadataThunk.pending.type }; + const action = { type: fetchMetadataThunk.pending.type }; const state = metadataReducer(initialState, action); expect(state.loading).toBe(true); expect(state.error).toBeNull(); @@ -122,17 +122,13 @@ describe('metadataReducer', () => { const mockParameters = [ { id: 'p1', name: 'tax.rate', label: 'Tax Rate' }, ]; - const mockParameterValues = [ - { id: 'pv1', parameter_id: 'p1', start_date: '2024-01-01', value_json: 0.25 }, - ]; const action = { - type: fetchCoreMetadataThunk.fulfilled.type, + type: fetchMetadataThunk.fulfilled.type, payload: { data: { variables: mockVariables, datasets: mockDatasets, parameters: mockParameters, - parameterValues: mockParameterValues, version: TEST_VERSION, versionId: 'version-123', }, @@ -157,14 +153,15 @@ describe('metadataReducer', () => { expect(state.datasets).toHaveLength(1); expect(state.datasets[0].name).toBe('cps_2024'); expect(state.parameters['tax.rate']).toBeDefined(); - expect(state.parameters['tax.rate']?.values?.['2024-01-01']).toBe(0.25); + // Parameter values are fetched on-demand, not prefetched + expect(state.parameters['tax.rate']?.values).toEqual({}); expectParameterTree(state, true); }); test('given rejected action then sets error state', () => { const initialState = { ...EXPECTED_INITIAL_STATE, loading: true }; const action = { - type: fetchCoreMetadataThunk.rejected.type, + type: fetchMetadataThunk.rejected.type, payload: TEST_ERROR_MESSAGE, }; const state = metadataReducer(initialState, action); @@ -182,19 +179,18 @@ describe('metadataReducer', () => { expectCurrentCountry(state, TEST_COUNTRY_US); // Start loading - state = metadataReducer(state, { type: fetchCoreMetadataThunk.pending.type }); + state = metadataReducer(state, { type: fetchMetadataThunk.pending.type }); expect(state.loading).toBe(true); // Receive data vi.mocked(buildParameterTreeModule.buildParameterTree).mockReturnValue(MOCK_PARAMETER_TREE); state = metadataReducer(state, { - type: fetchCoreMetadataThunk.fulfilled.type, + type: fetchMetadataThunk.fulfilled.type, payload: { data: { variables: [{ id: '1', name: 'test', entity: 'person' }], datasets: [], parameters: [], - parameterValues: [], version: TEST_VERSION, versionId: 'v1', }, diff --git a/app/src/tests/unit/routing/guards/CoreMetadataGuard.test.tsx b/app/src/tests/unit/routing/guards/MetadataGuard.test.tsx similarity index 93% rename from app/src/tests/unit/routing/guards/CoreMetadataGuard.test.tsx rename to app/src/tests/unit/routing/guards/MetadataGuard.test.tsx index bc6f3ad93..c8e55d89e 100644 --- a/app/src/tests/unit/routing/guards/CoreMetadataGuard.test.tsx +++ b/app/src/tests/unit/routing/guards/MetadataGuard.test.tsx @@ -26,9 +26,9 @@ vi.mock('@/hooks/useCurrentCountry', () => ({ useCurrentCountry: () => TEST_COUNTRIES.US, })); -vi.mock('@/hooks/useCoreMetadata', () => ({ - useFetchCoreMetadata: vi.fn(), - selectCoreMetadataState: () => mockMetadataState, +vi.mock('@/hooks/useMetadata', () => ({ + useFetchMetadata: vi.fn(), + selectMetadataState: () => mockMetadataState, })); // Mock react-redux @@ -50,7 +50,7 @@ vi.mock('@/pages/report-output/LoadingPage', () => ({ })); // Import after mocks -import { CoreMetadataGuard } from '@/routing/guards/CoreMetadataGuard'; +import { MetadataGuard } from '@/routing/guards/MetadataGuard'; // Create a fresh store for each test function createTestStore() { @@ -69,7 +69,7 @@ function renderWithRouter() { - }> + }> {CHILD_CONTENT}} /> @@ -79,7 +79,7 @@ function renderWithRouter() { ); } -describe('CoreMetadataGuard', () => { +describe('MetadataGuard', () => { beforeEach(() => { vi.clearAllMocks(); mockMetadataState = METADATA_STATE.INITIAL; diff --git a/app/src/tests/unit/storage/loaders/coreMetadataLoader.test.ts b/app/src/tests/unit/storage/loaders/metadataLoader.test.ts similarity index 78% rename from app/src/tests/unit/storage/loaders/coreMetadataLoader.test.ts rename to app/src/tests/unit/storage/loaders/metadataLoader.test.ts index 36dedf730..ee9415001 100644 --- a/app/src/tests/unit/storage/loaders/coreMetadataLoader.test.ts +++ b/app/src/tests/unit/storage/loaders/metadataLoader.test.ts @@ -3,7 +3,6 @@ import { createMockVariables, createMockDatasets, createMockParameters, - createMockParameterValues, } from '@/tests/fixtures/storage/storageMocks'; import { TEST_COUNTRIES, @@ -18,7 +17,6 @@ vi.mock('@/api/v2', () => ({ fetchVariables: vi.fn(), fetchDatasets: vi.fn(), fetchParameters: vi.fn(), - fetchParameterValues: vi.fn(), fetchModelVersion: vi.fn(), fetchModelVersionId: vi.fn(), })); @@ -30,11 +28,9 @@ vi.mock('@/storage', () => ({ clearAndLoadVariables: vi.fn(), clearAndLoadDatasets: vi.fn(), clearAndLoadParameters: vi.fn(), - clearAndLoadParameterValues: vi.fn(), getAllVariables: vi.fn(), getAllDatasets: vi.fn(), getAllParameters: vi.fn(), - getAllParameterValues: vi.fn(), })); // Import after mock setup @@ -42,7 +38,6 @@ import { fetchVariables, fetchDatasets, fetchParameters, - fetchParameterValues, fetchModelVersion, fetchModelVersionId, } from '@/api/v2'; @@ -52,26 +47,23 @@ import { clearAndLoadVariables, clearAndLoadDatasets, clearAndLoadParameters, - clearAndLoadParameterValues, getAllVariables, getAllDatasets, getAllParameters, - getAllParameterValues, } from '@/storage'; -import { loadCoreMetadata, isCoreMetadataCached } from '@/storage/loaders/coreMetadataLoader'; +import { loadMetadata, isMetadataCached } from '@/storage/loaders/metadataLoader'; -describe('coreMetadataLoader', () => { +describe('metadataLoader', () => { beforeEach(() => { vi.clearAllMocks(); }); - describe('loadCoreMetadata', () => { + describe('loadMetadata', () => { it('given valid cache then returns cached data without API fetch', async () => { // Given const cachedVariables = createMockVariables(5); const cachedDatasets = createMockDatasets(2); const cachedParameters = createMockParameters(5); - const cachedParameterValues = createMockParameterValues(10); const validCache = createValidCache(); vi.mocked(getCacheMetadata).mockResolvedValue(validCache); @@ -80,23 +72,20 @@ describe('coreMetadataLoader', () => { vi.mocked(getAllVariables).mockResolvedValue(cachedVariables); vi.mocked(getAllDatasets).mockResolvedValue(cachedDatasets); vi.mocked(getAllParameters).mockResolvedValue(cachedParameters); - vi.mocked(getAllParameterValues).mockResolvedValue(cachedParameterValues); // When - const result = await loadCoreMetadata(TEST_COUNTRIES.US); + const result = await loadMetadata(TEST_COUNTRIES.US); // Then expect(result.fromCache).toBe(true); expect(result.data.variables).toEqual(cachedVariables); expect(result.data.datasets).toEqual(cachedDatasets); expect(result.data.parameters).toEqual(cachedParameters); - expect(result.data.parameterValues).toEqual(cachedParameterValues); expect(result.data.version).toBe(TEST_VERSIONS.US_VERSION); expect(result.data.versionId).toBe(TEST_VERSIONS.US_VERSION_ID); expect(fetchVariables).not.toHaveBeenCalled(); expect(fetchDatasets).not.toHaveBeenCalled(); expect(fetchParameters).not.toHaveBeenCalled(); - expect(fetchParameterValues).not.toHaveBeenCalled(); }); it('given stale cache then fetches fresh data from API', async () => { @@ -104,7 +93,6 @@ describe('coreMetadataLoader', () => { const freshVariables = createMockVariables(10); const freshDatasets = createMockDatasets(3); const freshParameters = createMockParameters(5); - const freshParameterValues = createMockParameterValues(10); const staleCache = createStaleCache(); vi.mocked(getCacheMetadata).mockResolvedValue(staleCache); @@ -113,21 +101,18 @@ describe('coreMetadataLoader', () => { vi.mocked(fetchVariables).mockResolvedValue(freshVariables); vi.mocked(fetchDatasets).mockResolvedValue(freshDatasets); vi.mocked(fetchParameters).mockResolvedValue(freshParameters); - vi.mocked(fetchParameterValues).mockResolvedValue(freshParameterValues); // When - const result = await loadCoreMetadata(TEST_COUNTRIES.US); + const result = await loadMetadata(TEST_COUNTRIES.US); // Then expect(result.fromCache).toBe(false); expect(result.data.variables).toEqual(freshVariables); expect(result.data.datasets).toEqual(freshDatasets); expect(result.data.parameters).toEqual(freshParameters); - expect(result.data.parameterValues).toEqual(freshParameterValues); expect(fetchVariables).toHaveBeenCalledWith(TEST_COUNTRIES.US); expect(fetchDatasets).toHaveBeenCalledWith(TEST_COUNTRIES.US); expect(fetchParameters).toHaveBeenCalledWith(TEST_COUNTRIES.US); - expect(fetchParameterValues).toHaveBeenCalledWith(TEST_COUNTRIES.US); }); it('given no cache then fetches fresh data from API', async () => { @@ -135,7 +120,6 @@ describe('coreMetadataLoader', () => { const freshVariables = createMockVariables(5); const freshDatasets = createMockDatasets(2); const freshParameters = createMockParameters(5); - const freshParameterValues = createMockParameterValues(10); vi.mocked(getCacheMetadata).mockResolvedValue(undefined); vi.mocked(fetchModelVersion).mockResolvedValue(API_RESPONSES.MODEL_VERSION); @@ -143,17 +127,15 @@ describe('coreMetadataLoader', () => { vi.mocked(fetchVariables).mockResolvedValue(freshVariables); vi.mocked(fetchDatasets).mockResolvedValue(freshDatasets); vi.mocked(fetchParameters).mockResolvedValue(freshParameters); - vi.mocked(fetchParameterValues).mockResolvedValue(freshParameterValues); // When - const result = await loadCoreMetadata(TEST_COUNTRIES.US); + const result = await loadMetadata(TEST_COUNTRIES.US); // Then expect(result.fromCache).toBe(false); expect(result.data.variables).toEqual(freshVariables); expect(result.data.datasets).toEqual(freshDatasets); expect(result.data.parameters).toEqual(freshParameters); - expect(result.data.parameterValues).toEqual(freshParameterValues); }); it('given fresh data then stores in cache', async () => { @@ -161,7 +143,6 @@ describe('coreMetadataLoader', () => { const freshVariables = createMockVariables(5); const freshDatasets = createMockDatasets(2); const freshParameters = createMockParameters(5); - const freshParameterValues = createMockParameterValues(10); vi.mocked(getCacheMetadata).mockResolvedValue(undefined); vi.mocked(fetchModelVersion).mockResolvedValue(API_RESPONSES.MODEL_VERSION); @@ -169,16 +150,14 @@ describe('coreMetadataLoader', () => { vi.mocked(fetchVariables).mockResolvedValue(freshVariables); vi.mocked(fetchDatasets).mockResolvedValue(freshDatasets); vi.mocked(fetchParameters).mockResolvedValue(freshParameters); - vi.mocked(fetchParameterValues).mockResolvedValue(freshParameterValues); // When - await loadCoreMetadata(TEST_COUNTRIES.US); + await loadMetadata(TEST_COUNTRIES.US); // Then expect(clearAndLoadVariables).toHaveBeenCalledWith(freshVariables); expect(clearAndLoadDatasets).toHaveBeenCalledWith(freshDatasets); expect(clearAndLoadParameters).toHaveBeenCalledWith(freshParameters); - expect(clearAndLoadParameterValues).toHaveBeenCalledWith(freshParameterValues); expect(setCacheMetadata).toHaveBeenCalledWith( expect.objectContaining({ countryId: TEST_COUNTRIES.US, @@ -190,7 +169,7 @@ describe('coreMetadataLoader', () => { }); }); - describe('isCoreMetadataCached', () => { + describe('isMetadataCached', () => { it('given valid cache then returns true', async () => { // Given const validCache = createValidCache(); @@ -199,7 +178,7 @@ describe('coreMetadataLoader', () => { vi.mocked(fetchModelVersionId).mockResolvedValue(API_RESPONSES.MODEL_VERSION_ID); // When - const result = await isCoreMetadataCached(TEST_COUNTRIES.US); + const result = await isMetadataCached(TEST_COUNTRIES.US); // Then expect(result).toBe(true); @@ -210,7 +189,7 @@ describe('coreMetadataLoader', () => { vi.mocked(getCacheMetadata).mockResolvedValue(undefined); // When - const result = await isCoreMetadataCached(TEST_COUNTRIES.US); + const result = await isMetadataCached(TEST_COUNTRIES.US); // Then expect(result).toBe(false); @@ -223,7 +202,7 @@ describe('coreMetadataLoader', () => { vi.mocked(getCacheMetadata).mockResolvedValue(incompleteCache); // When - const result = await isCoreMetadataCached(TEST_COUNTRIES.US); + const result = await isMetadataCached(TEST_COUNTRIES.US); // Then expect(result).toBe(false); @@ -237,7 +216,7 @@ describe('coreMetadataLoader', () => { vi.mocked(fetchModelVersionId).mockResolvedValue('new-version-id'); // When - const result = await isCoreMetadataCached(TEST_COUNTRIES.US); + const result = await isMetadataCached(TEST_COUNTRIES.US); // Then expect(result).toBe(false); diff --git a/app/src/tests/unit/storage/metadataBulkLoader.test.ts b/app/src/tests/unit/storage/metadataBulkLoader.test.ts index 2be630df9..973165807 100644 --- a/app/src/tests/unit/storage/metadataBulkLoader.test.ts +++ b/app/src/tests/unit/storage/metadataBulkLoader.test.ts @@ -2,7 +2,6 @@ import { describe, expect, it, vi, beforeEach } from 'vitest'; import { createMockVariables, createMockParameters, - createMockParameterValues, createMockDatasets, createMockCacheMetadata, createMockVariable, @@ -30,7 +29,6 @@ vi.mock('@/storage/metadataDb', () => { db: { variables: { ...mockTable }, parameters: { ...mockTable }, - parameterValues: { ...mockTable }, datasets: { ...mockTable }, cacheMetadata: { ...mockTable }, transaction: vi.fn((mode, tables, callback) => callback()), @@ -46,18 +44,14 @@ const mockDb = db as any; import { bulkLoadVariables, bulkLoadParameters, - bulkLoadParameterValues, clearAndLoadVariables, clearAndLoadParameters, - clearAndLoadParameterValues, clearAndLoadDatasets, getAllVariables, getAllParameters, - getAllParameterValues, getAllDatasets, getVariablesByVersion, getParametersByVersion, - getParameterValues, getVariableByName, getParameterByName, getCacheMetadata, @@ -118,29 +112,6 @@ describe('metadataBulkLoader', () => { }); }); - describe('bulkLoadParameterValues', () => { - it('given empty array then returns 0 without database call', async () => { - // When - const result = await bulkLoadParameterValues([]); - - // Then - expect(result).toBe(0); - expect(db.parameterValues.bulkPut).not.toHaveBeenCalled(); - }); - - it('given array of parameter values then calls bulkPut and returns count', async () => { - // Given - const parameterValues = createMockParameterValues(5); - - // When - const result = await bulkLoadParameterValues(parameterValues); - - // Then - expect(result).toBe(5); - expect(db.parameterValues.bulkPut).toHaveBeenCalledWith(parameterValues); - }); - }); - describe('clearAndLoadVariables', () => { it('given array of variables then clears and loads in transaction', async () => { // Given @@ -173,22 +144,6 @@ describe('metadataBulkLoader', () => { }); }); - describe('clearAndLoadParameterValues', () => { - it('given array of parameter values then clears and loads in transaction', async () => { - // Given - const parameterValues = createMockParameterValues(10); - - // When - const result = await clearAndLoadParameterValues(parameterValues); - - // Then - expect(result).toBe(10); - expect(db.transaction).toHaveBeenCalled(); - expect(db.parameterValues.clear).toHaveBeenCalled(); - expect(db.parameterValues.bulkPut).toHaveBeenCalledWith(parameterValues); - }); - }); - describe('clearAndLoadDatasets', () => { it('given array of datasets then clears and loads in transaction', async () => { // Given @@ -250,21 +205,6 @@ describe('metadataBulkLoader', () => { }); }); - describe('getAllParameterValues', () => { - it('given database with parameter values then returns all parameter values', async () => { - // Given - const parameterValues = createMockParameterValues(5); - vi.mocked(db.parameterValues.toArray).mockResolvedValue(parameterValues); - - // When - const result = await getAllParameterValues(); - - // Then - expect(result).toEqual(parameterValues); - expect(db.parameterValues.toArray).toHaveBeenCalled(); - }); - }); - describe('getVariablesByVersion', () => { it('given version id then queries variables by version', async () => { // Given @@ -301,24 +241,6 @@ describe('metadataBulkLoader', () => { }); }); - describe('getParameterValues', () => { - it('given parameter id then queries parameter values by parameter id', async () => { - // Given - const parameterValues = createMockParameterValues(2); - vi.mocked(mockDb.parameterValues.where).mockReturnThis(); - vi.mocked(mockDb.parameterValues.equals).mockReturnThis(); - vi.mocked(mockDb.parameterValues.toArray).mockResolvedValue(parameterValues); - - // When - const result = await getParameterValues('param-1'); - - // Then - expect(result).toEqual(parameterValues); - expect(mockDb.parameterValues.where).toHaveBeenCalledWith('parameter_id'); - expect(mockDb.parameterValues.equals).toHaveBeenCalledWith('param-1'); - }); - }); - describe('getVariableByName', () => { it('given variable name then queries and returns variable', async () => { // Given @@ -447,7 +369,6 @@ describe('metadataBulkLoader', () => { // Given vi.mocked(db.variables.count).mockResolvedValueOnce(100); vi.mocked(db.parameters.count).mockResolvedValueOnce(50); - vi.mocked(db.parameterValues.count).mockResolvedValueOnce(500); vi.mocked(db.datasets.count).mockResolvedValueOnce(5); // When @@ -456,7 +377,6 @@ describe('metadataBulkLoader', () => { // Then expect(result.variables).toBe(100); expect(result.parameters).toBe(50); - expect(result.parameterValues).toBe(500); expect(result.datasets).toBe(5); }); }); @@ -470,7 +390,6 @@ describe('metadataBulkLoader', () => { expect(db.transaction).toHaveBeenCalled(); expect(db.variables.clear).toHaveBeenCalled(); expect(db.parameters.clear).toHaveBeenCalled(); - expect(db.parameterValues.clear).toHaveBeenCalled(); expect(db.datasets.clear).toHaveBeenCalled(); expect(db.cacheMetadata.clear).toHaveBeenCalled(); }); From 59d988fea99d7462f0211840b7febbad0f956db5 Mon Sep 17 00:00:00 2001 From: Anthony Volk Date: Fri, 26 Dec 2025 16:22:43 +0400 Subject: [PATCH 17/32] fix: Move toward saving v2 variables and params in Redux --- app/src/adapters/MetadataAdapter.ts | 109 +++++ app/src/adapters/index.ts | 2 + app/src/api/v2/datasets.ts | 4 +- app/src/api/v2/parameters.ts | 4 +- app/src/api/v2/variables.ts | 4 +- app/src/reducers/metadataReducer.ts | 81 ++-- app/src/storage/index.ts | 47 --- app/src/storage/loaders/index.ts | 6 - app/src/storage/loaders/metadataLoader.ts | 170 -------- app/src/storage/metadataBulkLoader.ts | 175 -------- app/src/storage/metadataDb.ts | 94 ----- app/src/tests/fixtures/api/v2/apiV2Mocks.ts | 89 +++- .../fixtures/hooks/metadataHooksMocks.ts | 2 +- .../tests/fixtures/storage/loadersMocks.ts | 63 --- .../tests/fixtures/storage/storageMocks.ts | 114 ----- .../unit/reducers/metadataReducer.test.ts | 9 +- .../storage/loaders/metadataLoader.test.ts | 225 ---------- .../unit/storage/metadataBulkLoader.test.ts | 397 ------------------ app/src/types/metadata.ts | 39 ++ 19 files changed, 268 insertions(+), 1366 deletions(-) create mode 100644 app/src/adapters/MetadataAdapter.ts delete mode 100644 app/src/storage/index.ts delete mode 100644 app/src/storage/loaders/index.ts delete mode 100644 app/src/storage/loaders/metadataLoader.ts delete mode 100644 app/src/storage/metadataBulkLoader.ts delete mode 100644 app/src/storage/metadataDb.ts delete mode 100644 app/src/tests/fixtures/storage/loadersMocks.ts delete mode 100644 app/src/tests/fixtures/storage/storageMocks.ts delete mode 100644 app/src/tests/unit/storage/loaders/metadataLoader.test.ts delete mode 100644 app/src/tests/unit/storage/metadataBulkLoader.test.ts diff --git a/app/src/adapters/MetadataAdapter.ts b/app/src/adapters/MetadataAdapter.ts new file mode 100644 index 000000000..074a49946 --- /dev/null +++ b/app/src/adapters/MetadataAdapter.ts @@ -0,0 +1,109 @@ +import { + V2VariableMetadata, + V2ParameterMetadata, + V2DatasetMetadata, + VariableMetadata, + ParameterMetadata, +} from "@/types/metadata"; + +/** + * Dataset type used in the frontend (simplified from V2DatasetMetadata) + */ +export interface DatasetEntry { + name: string; + label: string; + title: string; + default: boolean; +} + +/** + * Adapter for converting between V2 API metadata and internal formats + */ +export class MetadataAdapter { + /** + * Convert a single V2 variable to frontend VariableMetadata + */ + static variableFromV2(v2: V2VariableMetadata): VariableMetadata { + return { + id: v2.id, + name: v2.name, + entity: v2.entity, + description: v2.description, + data_type: v2.data_type, + possible_values: v2.possible_values, + tax_benefit_model_version_id: v2.tax_benefit_model_version_id, + created_at: v2.created_at, + // Generate label from name if not provided + label: v2.name + .replace(/_/g, " ") + .replace(/\b\w/g, (c: string) => c.toUpperCase()), + }; + } + + /** + * Convert V2 variables array to a keyed record + */ + static variablesFromV2( + variables: V2VariableMetadata[] + ): Record { + const record: Record = {}; + for (const v of variables) { + record[v.name] = MetadataAdapter.variableFromV2(v); + } + return record; + } + + /** + * Convert a single V2 parameter to frontend ParameterMetadata + */ + static parameterFromV2(p: V2ParameterMetadata): ParameterMetadata { + return { + id: p.id, + name: p.name, + label: p.label, + description: p.description, + unit: p.unit, + data_type: p.data_type, + tax_benefit_model_version_id: p.tax_benefit_model_version_id, + created_at: p.created_at, + parameter: p.name, // Use name as parameter path + type: "parameter", + values: {}, // Parameter values are fetched on-demand + }; + } + + /** + * Convert V2 parameters array to a keyed record + */ + static parametersFromV2( + parameters: V2ParameterMetadata[] + ): Record { + const record: Record = {}; + for (const p of parameters) { + record[p.name] = MetadataAdapter.parameterFromV2(p); + } + return record; + } + + /** + * Convert a single V2 dataset to frontend DatasetEntry + * @param d V2 dataset + * @param isDefault Whether this is the default dataset + */ + static datasetFromV2(d: V2DatasetMetadata, isDefault: boolean): DatasetEntry { + return { + name: d.name, + label: d.name, + title: d.description || d.name, + default: isDefault, + }; + } + + /** + * Convert V2 datasets array to frontend format + * First dataset is marked as default + */ + static datasetsFromV2(datasets: V2DatasetMetadata[]): DatasetEntry[] { + return datasets.map((d, i) => MetadataAdapter.datasetFromV2(d, i === 0)); + } +} diff --git a/app/src/adapters/index.ts b/app/src/adapters/index.ts index e6d8da67e..203c07c14 100644 --- a/app/src/adapters/index.ts +++ b/app/src/adapters/index.ts @@ -3,6 +3,8 @@ export { PolicyAdapter } from './PolicyAdapter'; export { SimulationAdapter } from './SimulationAdapter'; export { ReportAdapter } from './ReportAdapter'; export { HouseholdAdapter } from './HouseholdAdapter'; +export { MetadataAdapter } from './MetadataAdapter'; +export type { DatasetEntry } from './MetadataAdapter'; // User Ingredient Adapters export { UserReportAdapter } from './UserReportAdapter'; diff --git a/app/src/api/v2/datasets.ts b/app/src/api/v2/datasets.ts index 67cab010e..245673681 100644 --- a/app/src/api/v2/datasets.ts +++ b/app/src/api/v2/datasets.ts @@ -1,10 +1,10 @@ import { API_V2_BASE_URL, getModelId } from "./taxBenefitModels"; -import type { Dataset } from "@/storage"; +import type { V2DatasetMetadata } from "@/types/metadata"; /** * Fetch all datasets for a country */ -export async function fetchDatasets(countryId: string): Promise { +export async function fetchDatasets(countryId: string): Promise { const modelId = getModelId(countryId); const res = await fetch( `${API_V2_BASE_URL}/datasets/?tax_benefit_model_id=${modelId}`, diff --git a/app/src/api/v2/parameters.ts b/app/src/api/v2/parameters.ts index a9cb2e7a6..9b5484c15 100644 --- a/app/src/api/v2/parameters.ts +++ b/app/src/api/v2/parameters.ts @@ -1,10 +1,10 @@ import { API_V2_BASE_URL, getModelId } from "./taxBenefitModels"; -import type { Parameter } from "@/storage"; +import type { V2ParameterMetadata } from "@/types/metadata"; /** * Fetch all parameters for a country. */ -export async function fetchParameters(countryId: string): Promise { +export async function fetchParameters(countryId: string): Promise { const modelId = getModelId(countryId); const res = await fetch( `${API_V2_BASE_URL}/parameters/?tax_benefit_model_id=${modelId}&limit=10000`, diff --git a/app/src/api/v2/variables.ts b/app/src/api/v2/variables.ts index 8e3419f08..81d34fcd5 100644 --- a/app/src/api/v2/variables.ts +++ b/app/src/api/v2/variables.ts @@ -1,10 +1,10 @@ import { API_V2_BASE_URL, getModelId } from "./taxBenefitModels"; -import type { Variable } from "@/storage"; +import type { V2VariableMetadata } from "@/types/metadata"; /** * Fetch all variables for a country. */ -export async function fetchVariables(countryId: string): Promise { +export async function fetchVariables(countryId: string): Promise { const modelId = getModelId(countryId); const res = await fetch( `${API_V2_BASE_URL}/variables/?tax_benefit_model_id=${modelId}&limit=10000`, diff --git a/app/src/reducers/metadataReducer.ts b/app/src/reducers/metadataReducer.ts index 12dda06f5..76cb19fd8 100644 --- a/app/src/reducers/metadataReducer.ts +++ b/app/src/reducers/metadataReducer.ts @@ -1,11 +1,13 @@ import { createAsyncThunk, createSlice, PayloadAction } from "@reduxjs/toolkit"; -import { buildParameterTree } from "@/libs/buildParameterTree"; -import { loadMetadata } from "@/storage"; import { - MetadataState, - VariableMetadata, - ParameterMetadata, -} from "@/types/metadata"; + fetchVariables, + fetchDatasets, + fetchParameters, + fetchModelVersion, +} from "@/api/v2"; +import { MetadataAdapter } from "@/adapters"; +import { buildParameterTree } from "@/libs/buildParameterTree"; +import { MetadataState } from "@/types/metadata"; /** * Initial state for API-driven metadata @@ -30,13 +32,21 @@ const initialState: MetadataState = { parameterTree: null, }; -// Fetch all metadata (variables, datasets, parameters) +// Fetch all metadata (variables, datasets, parameters) directly from API export const fetchMetadataThunk = createAsyncThunk( "metadata/fetch", async (countryId: string, { rejectWithValue }) => { try { - const result = await loadMetadata(countryId); - return { ...result, countryId }; + const [variables, datasets, parameters, version] = await Promise.all([ + fetchVariables(countryId), + fetchDatasets(countryId), + fetchParameters(countryId), + fetchModelVersion(countryId), + ]); + return { + data: { variables, datasets, parameters, version }, + countryId, + }; } catch (error) { return rejectWithValue( error instanceof Error ? error.message : "Unknown error", @@ -85,53 +95,12 @@ const metadataSlice = createSlice({ state.currentCountry = countryId; state.version = data.version; - // Transform V2 variables array to record format - const variablesRecord: Record = {}; - for (const v of data.variables) { - variablesRecord[v.name] = { - id: v.id, - name: v.name, - entity: v.entity, - description: v.description, - data_type: v.data_type, - possible_values: v.possible_values, - tax_benefit_model_version_id: v.tax_benefit_model_version_id, - created_at: v.created_at, - // Generate label from name if not provided - label: v.name - .replace(/_/g, " ") - .replace(/\b\w/g, (c) => c.toUpperCase()), - }; - } - state.variables = variablesRecord; - - // Transform V2 datasets - state.datasets = data.datasets.map((d, i) => ({ - name: d.name, - label: d.name, - title: d.description || d.name, - default: i === 0, - })); - - // Transform V2 parameters array to record format - // Note: Parameter values are fetched on-demand, not prefetched - const parametersRecord: Record = {}; - for (const p of data.parameters) { - parametersRecord[p.name] = { - id: p.id, - name: p.name, - label: p.label, - description: p.description, - unit: p.unit, - data_type: p.data_type, - tax_benefit_model_version_id: p.tax_benefit_model_version_id, - created_at: p.created_at, - parameter: p.name, // Use name as parameter path - type: "parameter", - values: {}, - }; - } - + // Convert V2 API data to frontend format using adapters + state.variables = MetadataAdapter.variablesFromV2(data.variables); + state.datasets = MetadataAdapter.datasetsFromV2(data.datasets); + const parametersRecord = MetadataAdapter.parametersFromV2( + data.parameters + ); state.parameters = parametersRecord; // Build parameter tree diff --git a/app/src/storage/index.ts b/app/src/storage/index.ts deleted file mode 100644 index b947eb209..000000000 --- a/app/src/storage/index.ts +++ /dev/null @@ -1,47 +0,0 @@ -// Database and types -export { - db, - _closeDb, - _deleteDb, - type Variable, - type Parameter, - type Dataset, - type CacheMetadata, -} from "./metadataDb"; - -// Bulk loading -export { - bulkLoadVariables, - bulkLoadParameters, - clearAndLoadVariables, - clearAndLoadParameters, - clearAndLoadDatasets, -} from "./metadataBulkLoader"; - -// Queries -export { - getVariablesByVersion, - getParametersByVersion, - getAllVariables, - getAllParameters, - getAllDatasets, - getVariableByName, - getParameterByName, - getCacheMetadata, - setCacheMetadata, -} from "./metadataBulkLoader"; - -// Utilities -export { - clearVersionData, - clearAllStores, - getStoreCounts, -} from "./metadataBulkLoader"; - -// Loaders (unified metadata loading) -export { - loadMetadata, - isMetadataCached, - type Metadata, - type MetadataLoadResult, -} from "./loaders"; diff --git a/app/src/storage/loaders/index.ts b/app/src/storage/loaders/index.ts deleted file mode 100644 index aee79947f..000000000 --- a/app/src/storage/loaders/index.ts +++ /dev/null @@ -1,6 +0,0 @@ -export { - loadMetadata, - isMetadataCached, - type Metadata, - type MetadataLoadResult, -} from "./metadataLoader"; diff --git a/app/src/storage/loaders/metadataLoader.ts b/app/src/storage/loaders/metadataLoader.ts deleted file mode 100644 index 4160d58bb..000000000 --- a/app/src/storage/loaders/metadataLoader.ts +++ /dev/null @@ -1,170 +0,0 @@ -import { - fetchVariables, - fetchDatasets, - fetchParameters, - fetchModelVersion, - fetchModelVersionId, -} from "@/api/v2"; -import { - getCacheMetadata, - setCacheMetadata, - clearAndLoadVariables, - clearAndLoadDatasets, - clearAndLoadParameters, - getAllVariables, - getAllDatasets, - getAllParameters, - type CacheMetadata, - type Variable, - type Dataset, - type Parameter, -} from "@/storage"; - -export interface Metadata { - variables: Variable[]; - datasets: Dataset[]; - parameters: Parameter[]; - version: string; - versionId: string; -} - -export interface MetadataLoadResult { - data: Metadata; - fromCache: boolean; -} - -interface VersionInfo { - version: string; - versionId: string; -} - -/** - * Fetch version info from the API - */ -async function fetchVersionInfo(countryId: string): Promise { - const [version, versionId] = await Promise.all([ - fetchModelVersion(countryId), - fetchModelVersionId(countryId), - ]); - return { version, versionId }; -} - -/** - * Check if cached metadata is still valid - */ -function isCacheValid( - cached: CacheMetadata | undefined, - remote: VersionInfo, -): boolean { - return ( - cached !== undefined && - cached.loaded && - cached.version === remote.version && - cached.versionId === remote.versionId - ); -} - -/** - * Load metadata from IndexedDB cache - */ -async function loadFromCache(cached: CacheMetadata): Promise { - const [variables, datasets, parameters] = await Promise.all([ - getAllVariables(), - getAllDatasets(), - getAllParameters(), - ]); - - return { - variables, - datasets, - parameters, - version: cached.version, - versionId: cached.versionId, - }; -} - -/** - * Fetch fresh metadata from the API - */ -async function fetchFreshMetadata(countryId: string): Promise<{ - variables: Variable[]; - datasets: Dataset[]; - parameters: Parameter[]; -}> { - const [variables, datasets, parameters] = await Promise.all([ - fetchVariables(countryId), - fetchDatasets(countryId), - fetchParameters(countryId), - ]); - - return { variables, datasets, parameters }; -} - -/** - * Store metadata in IndexedDB - */ -async function storeInCache( - countryId: string, - variables: Variable[], - datasets: Dataset[], - parameters: Parameter[], - versionInfo: VersionInfo, -): Promise { - await Promise.all([ - clearAndLoadVariables(variables), - clearAndLoadDatasets(datasets), - clearAndLoadParameters(parameters), - ]); - - await setCacheMetadata({ - countryId, - version: versionInfo.version, - versionId: versionInfo.versionId, - loaded: true, - timestamp: Date.now(), - }); -} - -/** - * Load all metadata (variables, datasets, parameters) for a country. - * Uses IndexedDB cache with version-based invalidation. - */ -export async function loadMetadata( - countryId: string, -): Promise { - const cached = await getCacheMetadata(countryId); - const versionInfo = await fetchVersionInfo(countryId); - - if (isCacheValid(cached, versionInfo)) { - const data = await loadFromCache(cached!); - return { data, fromCache: true }; - } - - const { variables, datasets, parameters } = - await fetchFreshMetadata(countryId); - await storeInCache( - countryId, - variables, - datasets, - parameters, - versionInfo, - ); - - return { - data: { variables, datasets, parameters, ...versionInfo }, - fromCache: false, - }; -} - -/** - * Check if metadata is cached and valid for a country - */ -export async function isMetadataCached( - countryId: string, -): Promise { - const cached = await getCacheMetadata(countryId); - if (!cached?.loaded) return false; - - const versionInfo = await fetchVersionInfo(countryId); - return isCacheValid(cached, versionInfo); -} diff --git a/app/src/storage/metadataBulkLoader.ts b/app/src/storage/metadataBulkLoader.ts deleted file mode 100644 index 95712348f..000000000 --- a/app/src/storage/metadataBulkLoader.ts +++ /dev/null @@ -1,175 +0,0 @@ -import { db, Variable, Parameter, Dataset, CacheMetadata } from "./metadataDb"; - -/** - * Bulk load variables, replacing any existing records - */ -export async function bulkLoadVariables(records: Variable[]): Promise { - if (records.length === 0) return 0; - await db.variables.bulkPut(records); - return records.length; -} - -/** - * Bulk load parameters, replacing any existing records - */ -export async function bulkLoadParameters(records: Parameter[]): Promise { - if (records.length === 0) return 0; - await db.parameters.bulkPut(records); - return records.length; -} - -/** - * Clear variables and load new records atomically - */ -export async function clearAndLoadVariables( - records: Variable[], -): Promise { - await db.transaction("rw", db.variables, async () => { - await db.variables.clear(); - await db.variables.bulkPut(records); - }); - return records.length; -} - -/** - * Clear parameters and load new records atomically - */ -export async function clearAndLoadParameters( - records: Parameter[], -): Promise { - await db.transaction("rw", db.parameters, async () => { - await db.parameters.clear(); - await db.parameters.bulkPut(records); - }); - return records.length; -} - -/** - * Clear datasets and load new records atomically - */ -export async function clearAndLoadDatasets( - records: Dataset[], -): Promise { - await db.transaction("rw", db.datasets, async () => { - await db.datasets.clear(); - await db.datasets.bulkPut(records); - }); - return records.length; -} - -/** - * Get all datasets - */ -export async function getAllDatasets(): Promise { - return db.datasets.toArray(); -} - -/** - * Get all variables for a specific version - */ -export async function getVariablesByVersion( - versionId: string, -): Promise { - return db.variables.where("tax_benefit_model_version_id").equals(versionId).toArray(); -} - -/** - * Get all parameters for a specific version - */ -export async function getParametersByVersion( - versionId: string, -): Promise { - return db.parameters.where("tax_benefit_model_version_id").equals(versionId).toArray(); -} - -/** - * Get all variables - */ -export async function getAllVariables(): Promise { - return db.variables.toArray(); -} - -/** - * Get all parameters - */ -export async function getAllParameters(): Promise { - return db.parameters.toArray(); -} - -/** - * Get a single variable by name - */ -export async function getVariableByName( - name: string, -): Promise { - return db.variables.where("name").equals(name).first(); -} - -/** - * Get a single parameter by name - */ -export async function getParameterByName( - name: string, -): Promise { - return db.parameters.where("name").equals(name).first(); -} - -/** - * Get cache metadata for a country - */ -export async function getCacheMetadata( - countryId: string, -): Promise { - return db.cacheMetadata.get(countryId); -} - -/** - * Update cache metadata for a country - */ -export async function setCacheMetadata( - metadata: CacheMetadata, -): Promise { - await db.cacheMetadata.put(metadata); -} - -/** - * Clear all data for a specific version - */ -export async function clearVersionData(versionId: string): Promise { - await db.transaction("rw", [db.variables, db.parameters], async () => { - await db.variables.where("tax_benefit_model_version_id").equals(versionId).delete(); - await db.parameters.where("tax_benefit_model_version_id").equals(versionId).delete(); - }); -} - -/** - * Clear all stores - */ -export async function clearAllStores(): Promise { - await db.transaction( - "rw", - [db.variables, db.parameters, db.datasets, db.cacheMetadata], - async () => { - await db.variables.clear(); - await db.parameters.clear(); - await db.datasets.clear(); - await db.cacheMetadata.clear(); - }, - ); -} - -/** - * Get record counts for all stores - */ -export async function getStoreCounts(): Promise<{ - variables: number; - parameters: number; - datasets: number; -}> { - const [variables, parameters, datasets] = await Promise.all([ - db.variables.count(), - db.parameters.count(), - db.datasets.count(), - ]); - return { variables, parameters, datasets }; -} diff --git a/app/src/storage/metadataDb.ts b/app/src/storage/metadataDb.ts deleted file mode 100644 index d1a7bb3d8..000000000 --- a/app/src/storage/metadataDb.ts +++ /dev/null @@ -1,94 +0,0 @@ -import Dexie, { type EntityTable } from "dexie"; - -/** - * Variable record from V2 API - */ -export interface Variable { - id: string; - name: string; - entity: string; - description: string; - data_type: string; - possible_values: string[] | null; - tax_benefit_model_version_id: string; - created_at: string; -} - -/** - * Parameter record from V2 API - */ -export interface Parameter { - id: string; - name: string; - label: string; - description: string; - data_type: string; - unit: string | null; - tax_benefit_model_version_id: string; - created_at: string; -} - -/** - * Dataset record from V2 API - */ -export interface Dataset { - id: string; - name: string; - description: string; - filepath: string; - year: number; - is_output_dataset: boolean; - tax_benefit_model_id: string; - created_at: string; - updated_at: string; -} - -/** - * Cache metadata for tracking loaded state per country - */ -export interface CacheMetadata { - countryId: string; - version: string; - versionId: string; - loaded: boolean; - timestamp: number; -} - -/** - * PolicyEngine metadata database using Dexie - */ -class PolicyEngineDatabase extends Dexie { - variables!: EntityTable; - parameters!: EntityTable; - datasets!: EntityTable; - cacheMetadata!: EntityTable; - - constructor() { - super("policyengine"); - - this.version(1).stores({ - variables: "id, name, tax_benefit_model_version_id", - parameters: "id, name, tax_benefit_model_version_id", - datasets: "id, name, tax_benefit_model_id", - cacheMetadata: "countryId", - }); - } -} - -const db = new PolicyEngineDatabase(); - -export { db }; - -/** - * Close the database connection (internal use only) - */ -export async function _closeDb(): Promise { - db.close(); -} - -/** - * Delete the entire database (internal use only) - */ -export async function _deleteDb(): Promise { - await db.delete(); -} diff --git a/app/src/tests/fixtures/api/v2/apiV2Mocks.ts b/app/src/tests/fixtures/api/v2/apiV2Mocks.ts index 8be9497d8..2e5b23992 100644 --- a/app/src/tests/fixtures/api/v2/apiV2Mocks.ts +++ b/app/src/tests/fixtures/api/v2/apiV2Mocks.ts @@ -2,15 +2,86 @@ * Fixtures for API v2 module tests */ import type { TaxBenefitModel, TaxBenefitModelVersion } from '@/api/v2/taxBenefitModels'; -import { - createMockVariables, - createMockParameters, - createMockDatasets, - TEST_COUNTRIES, -} from '@/tests/fixtures/storage/storageMocks'; - -// Re-export shared constants -export { TEST_COUNTRIES }; +import type { V2VariableMetadata, V2ParameterMetadata, V2DatasetMetadata } from '@/types/metadata'; + +// Test countries +export const TEST_COUNTRIES = { + US: 'us', + UK: 'uk', + CA: 'ca', +} as const; + +// Test versions +export const TEST_VERSIONS = { + US_VERSION: '1.0.0', + US_VERSION_ID: 'version-id-123', + UK_VERSION: '2.0.0', + UK_VERSION_ID: 'version-id-456', +} as const; + +// Variable factory +export function createMockVariable(overrides: Partial = {}): V2VariableMetadata { + return { + id: 'var-1', + name: 'test_variable', + entity: 'person', + description: 'Test variable description', + data_type: 'float', + possible_values: null, + tax_benefit_model_version_id: TEST_VERSIONS.US_VERSION_ID, + created_at: '2024-01-01T00:00:00Z', + ...overrides, + }; +} + +export function createMockVariables(count: number): V2VariableMetadata[] { + return Array.from({ length: count }, (_, i) => + createMockVariable({ id: `var-${i}`, name: `variable_${i}` }) + ); +} + +// Parameter factory +export function createMockParameter(overrides: Partial = {}): V2ParameterMetadata { + return { + id: 'param-1', + name: 'test.parameter', + label: 'Test Parameter', + description: 'Test parameter description', + data_type: 'float', + unit: null, + tax_benefit_model_version_id: TEST_VERSIONS.US_VERSION_ID, + created_at: '2024-01-01T00:00:00Z', + ...overrides, + }; +} + +export function createMockParameters(count: number): V2ParameterMetadata[] { + return Array.from({ length: count }, (_, i) => + createMockParameter({ id: `param-${i}`, name: `test.param_${i}`, label: `Param ${i}` }) + ); +} + +// Dataset factory +export function createMockDataset(overrides: Partial = {}): V2DatasetMetadata { + return { + id: 'dataset-1', + name: 'test_dataset', + description: 'Test dataset description', + filepath: '/path/to/dataset', + year: 2024, + is_output_dataset: false, + tax_benefit_model_id: '8ac12923-1282-420e-a440-0fa60d43950a', + created_at: '2024-01-01T00:00:00Z', + updated_at: '2024-01-01T00:00:00Z', + ...overrides, + }; +} + +export function createMockDatasets(count: number): V2DatasetMetadata[] { + return Array.from({ length: count }, (_, i) => + createMockDataset({ id: `dataset-${i}`, name: `dataset_${i}` }) + ); +} // Model IDs export const MODEL_IDS = { diff --git a/app/src/tests/fixtures/hooks/metadataHooksMocks.ts b/app/src/tests/fixtures/hooks/metadataHooksMocks.ts index dcf5a6095..6629babcf 100644 --- a/app/src/tests/fixtures/hooks/metadataHooksMocks.ts +++ b/app/src/tests/fixtures/hooks/metadataHooksMocks.ts @@ -2,7 +2,7 @@ * Fixtures for metadata hooks tests */ import { MetadataState } from '@/types/metadata'; -import { TEST_COUNTRIES, TEST_VERSIONS } from '../storage/storageMocks'; +import { TEST_COUNTRIES, TEST_VERSIONS } from '../api/v2/apiV2Mocks'; // Re-export shared constants export { TEST_COUNTRIES, TEST_VERSIONS }; diff --git a/app/src/tests/fixtures/storage/loadersMocks.ts b/app/src/tests/fixtures/storage/loadersMocks.ts deleted file mode 100644 index 9281c0ce6..000000000 --- a/app/src/tests/fixtures/storage/loadersMocks.ts +++ /dev/null @@ -1,63 +0,0 @@ -/** - * Fixtures for storage loaders tests - */ -import type { Metadata, MetadataLoadResult } from '@/storage/loaders/metadataLoader'; -import { - createMockVariables, - createMockParameters, - createMockDatasets, - createMockCacheMetadata, - TEST_COUNTRIES, - TEST_VERSIONS, -} from './storageMocks'; - -// Re-export shared constants -export { TEST_COUNTRIES, TEST_VERSIONS }; - -// Metadata factory (unified: includes parameters) -export function createMockMetadata(overrides: Partial = {}): Metadata { - return { - variables: createMockVariables(5), - datasets: createMockDatasets(2), - parameters: createMockParameters(5), - version: TEST_VERSIONS.US_VERSION, - versionId: TEST_VERSIONS.US_VERSION_ID, - ...overrides, - }; -} - -// Metadata load result factory -export function createMockMetadataLoadResult( - overrides: Partial = {}, -): MetadataLoadResult { - return { - data: createMockMetadata(), - fromCache: false, - ...overrides, - }; -} - -// Valid cache metadata (already loaded) -export function createValidCache() { - return createMockCacheMetadata({ - loaded: true, - version: TEST_VERSIONS.US_VERSION, - versionId: TEST_VERSIONS.US_VERSION_ID, - }); -} - -// Stale cache metadata (version mismatch) -export function createStaleCache() { - return createMockCacheMetadata({ - loaded: true, - version: 'old-version-0.9.0', - versionId: 'old-version-id', - }); -} - -// API response shapes for mocking -export const API_RESPONSES = { - MODEL_VERSION: TEST_VERSIONS.US_VERSION, - MODEL_VERSION_ID: TEST_VERSIONS.US_VERSION_ID, - STALE_VERSION: 'old-version-0.9.0', -} as const; diff --git a/app/src/tests/fixtures/storage/storageMocks.ts b/app/src/tests/fixtures/storage/storageMocks.ts deleted file mode 100644 index 903775af9..000000000 --- a/app/src/tests/fixtures/storage/storageMocks.ts +++ /dev/null @@ -1,114 +0,0 @@ -/** - * Fixtures for storage module tests - */ -import type { - Variable, - Parameter, - Dataset, - CacheMetadata, -} from '@/storage/metadataDb'; - -// Test country IDs -export const TEST_COUNTRIES = { - US: 'us', - UK: 'uk', -} as const; - -// Test version IDs -export const TEST_VERSIONS = { - US_VERSION: 'us-version-1.0.0', - US_VERSION_ID: 'us-version-id-123', - UK_VERSION: 'uk-version-1.0.0', - UK_VERSION_ID: 'uk-version-id-456', -} as const; - -// Mock variable factory -export function createMockVariable(overrides: Partial = {}): Variable { - return { - id: 'var-1', - name: 'income_tax', - entity: 'person', - description: 'Income tax owed', - data_type: 'float', - possible_values: null, - tax_benefit_model_version_id: TEST_VERSIONS.US_VERSION_ID, - created_at: '2024-01-01T00:00:00Z', - ...overrides, - }; -} - -// Mock parameter factory -export function createMockParameter(overrides: Partial = {}): Parameter { - return { - id: 'param-1', - name: 'basic_rate', - label: 'Basic Rate', - description: 'Basic tax rate', - data_type: 'float', - unit: 'currency-USD', - tax_benefit_model_version_id: TEST_VERSIONS.US_VERSION_ID, - created_at: '2024-01-01T00:00:00Z', - ...overrides, - }; -} - -// Mock dataset factory -export function createMockDataset(overrides: Partial = {}): Dataset { - return { - id: 'dataset-1', - name: 'cps_2023', - description: 'Current Population Survey 2023', - filepath: '/data/cps_2023.h5', - year: 2023, - is_output_dataset: false, - tax_benefit_model_id: 'model-us-123', - created_at: '2024-01-01T00:00:00Z', - updated_at: '2024-01-01T00:00:00Z', - ...overrides, - }; -} - -// Mock cache metadata factory -export function createMockCacheMetadata( - overrides: Partial = {} -): CacheMetadata { - return { - countryId: TEST_COUNTRIES.US, - version: TEST_VERSIONS.US_VERSION, - versionId: TEST_VERSIONS.US_VERSION_ID, - loaded: true, - timestamp: Date.now(), - ...overrides, - }; -} - -// Create multiple mock variables -export function createMockVariables(count: number): Variable[] { - return Array.from({ length: count }, (_, i) => - createMockVariable({ - id: `var-${i + 1}`, - name: `variable_${i + 1}`, - }) - ); -} - -// Create multiple mock parameters -export function createMockParameters(count: number): Parameter[] { - return Array.from({ length: count }, (_, i) => - createMockParameter({ - id: `param-${i + 1}`, - name: `parameter_${i + 1}`, - }) - ); -} - -// Create multiple mock datasets -export function createMockDatasets(count: number): Dataset[] { - return Array.from({ length: count }, (_, i) => - createMockDataset({ - id: `dataset-${i + 1}`, - name: `dataset_${i + 1}`, - year: 2020 + i, - }) - ); -} diff --git a/app/src/tests/unit/reducers/metadataReducer.test.ts b/app/src/tests/unit/reducers/metadataReducer.test.ts index f9c048d64..d7be37a9a 100644 --- a/app/src/tests/unit/reducers/metadataReducer.test.ts +++ b/app/src/tests/unit/reducers/metadataReducer.test.ts @@ -24,9 +24,12 @@ import { TEST_VERSION, } from '@/tests/fixtures/reducers/metadataReducerMocks'; -// Mock the storage loaders -vi.mock('@/storage', () => ({ - loadMetadata: vi.fn(), +// Mock the API calls (not used in reducer tests, but prevents actual network calls) +vi.mock('@/api/v2', () => ({ + fetchVariables: vi.fn(), + fetchDatasets: vi.fn(), + fetchParameters: vi.fn(), + fetchModelVersion: vi.fn(), })); vi.mock('@/libs/buildParameterTree'); diff --git a/app/src/tests/unit/storage/loaders/metadataLoader.test.ts b/app/src/tests/unit/storage/loaders/metadataLoader.test.ts deleted file mode 100644 index ee9415001..000000000 --- a/app/src/tests/unit/storage/loaders/metadataLoader.test.ts +++ /dev/null @@ -1,225 +0,0 @@ -import { describe, expect, it, vi, beforeEach } from 'vitest'; -import { - createMockVariables, - createMockDatasets, - createMockParameters, -} from '@/tests/fixtures/storage/storageMocks'; -import { - TEST_COUNTRIES, - TEST_VERSIONS, - API_RESPONSES, - createValidCache, - createStaleCache, -} from '@/tests/fixtures/storage/loadersMocks'; - -// Mock the API module -vi.mock('@/api/v2', () => ({ - fetchVariables: vi.fn(), - fetchDatasets: vi.fn(), - fetchParameters: vi.fn(), - fetchModelVersion: vi.fn(), - fetchModelVersionId: vi.fn(), -})); - -// Mock the storage module -vi.mock('@/storage', () => ({ - getCacheMetadata: vi.fn(), - setCacheMetadata: vi.fn(), - clearAndLoadVariables: vi.fn(), - clearAndLoadDatasets: vi.fn(), - clearAndLoadParameters: vi.fn(), - getAllVariables: vi.fn(), - getAllDatasets: vi.fn(), - getAllParameters: vi.fn(), -})); - -// Import after mock setup -import { - fetchVariables, - fetchDatasets, - fetchParameters, - fetchModelVersion, - fetchModelVersionId, -} from '@/api/v2'; -import { - getCacheMetadata, - setCacheMetadata, - clearAndLoadVariables, - clearAndLoadDatasets, - clearAndLoadParameters, - getAllVariables, - getAllDatasets, - getAllParameters, -} from '@/storage'; -import { loadMetadata, isMetadataCached } from '@/storage/loaders/metadataLoader'; - -describe('metadataLoader', () => { - beforeEach(() => { - vi.clearAllMocks(); - }); - - describe('loadMetadata', () => { - it('given valid cache then returns cached data without API fetch', async () => { - // Given - const cachedVariables = createMockVariables(5); - const cachedDatasets = createMockDatasets(2); - const cachedParameters = createMockParameters(5); - const validCache = createValidCache(); - - vi.mocked(getCacheMetadata).mockResolvedValue(validCache); - vi.mocked(fetchModelVersion).mockResolvedValue(API_RESPONSES.MODEL_VERSION); - vi.mocked(fetchModelVersionId).mockResolvedValue(API_RESPONSES.MODEL_VERSION_ID); - vi.mocked(getAllVariables).mockResolvedValue(cachedVariables); - vi.mocked(getAllDatasets).mockResolvedValue(cachedDatasets); - vi.mocked(getAllParameters).mockResolvedValue(cachedParameters); - - // When - const result = await loadMetadata(TEST_COUNTRIES.US); - - // Then - expect(result.fromCache).toBe(true); - expect(result.data.variables).toEqual(cachedVariables); - expect(result.data.datasets).toEqual(cachedDatasets); - expect(result.data.parameters).toEqual(cachedParameters); - expect(result.data.version).toBe(TEST_VERSIONS.US_VERSION); - expect(result.data.versionId).toBe(TEST_VERSIONS.US_VERSION_ID); - expect(fetchVariables).not.toHaveBeenCalled(); - expect(fetchDatasets).not.toHaveBeenCalled(); - expect(fetchParameters).not.toHaveBeenCalled(); - }); - - it('given stale cache then fetches fresh data from API', async () => { - // Given - const freshVariables = createMockVariables(10); - const freshDatasets = createMockDatasets(3); - const freshParameters = createMockParameters(5); - const staleCache = createStaleCache(); - - vi.mocked(getCacheMetadata).mockResolvedValue(staleCache); - vi.mocked(fetchModelVersion).mockResolvedValue(API_RESPONSES.MODEL_VERSION); - vi.mocked(fetchModelVersionId).mockResolvedValue(API_RESPONSES.MODEL_VERSION_ID); - vi.mocked(fetchVariables).mockResolvedValue(freshVariables); - vi.mocked(fetchDatasets).mockResolvedValue(freshDatasets); - vi.mocked(fetchParameters).mockResolvedValue(freshParameters); - - // When - const result = await loadMetadata(TEST_COUNTRIES.US); - - // Then - expect(result.fromCache).toBe(false); - expect(result.data.variables).toEqual(freshVariables); - expect(result.data.datasets).toEqual(freshDatasets); - expect(result.data.parameters).toEqual(freshParameters); - expect(fetchVariables).toHaveBeenCalledWith(TEST_COUNTRIES.US); - expect(fetchDatasets).toHaveBeenCalledWith(TEST_COUNTRIES.US); - expect(fetchParameters).toHaveBeenCalledWith(TEST_COUNTRIES.US); - }); - - it('given no cache then fetches fresh data from API', async () => { - // Given - const freshVariables = createMockVariables(5); - const freshDatasets = createMockDatasets(2); - const freshParameters = createMockParameters(5); - - vi.mocked(getCacheMetadata).mockResolvedValue(undefined); - vi.mocked(fetchModelVersion).mockResolvedValue(API_RESPONSES.MODEL_VERSION); - vi.mocked(fetchModelVersionId).mockResolvedValue(API_RESPONSES.MODEL_VERSION_ID); - vi.mocked(fetchVariables).mockResolvedValue(freshVariables); - vi.mocked(fetchDatasets).mockResolvedValue(freshDatasets); - vi.mocked(fetchParameters).mockResolvedValue(freshParameters); - - // When - const result = await loadMetadata(TEST_COUNTRIES.US); - - // Then - expect(result.fromCache).toBe(false); - expect(result.data.variables).toEqual(freshVariables); - expect(result.data.datasets).toEqual(freshDatasets); - expect(result.data.parameters).toEqual(freshParameters); - }); - - it('given fresh data then stores in cache', async () => { - // Given - const freshVariables = createMockVariables(5); - const freshDatasets = createMockDatasets(2); - const freshParameters = createMockParameters(5); - - vi.mocked(getCacheMetadata).mockResolvedValue(undefined); - vi.mocked(fetchModelVersion).mockResolvedValue(API_RESPONSES.MODEL_VERSION); - vi.mocked(fetchModelVersionId).mockResolvedValue(API_RESPONSES.MODEL_VERSION_ID); - vi.mocked(fetchVariables).mockResolvedValue(freshVariables); - vi.mocked(fetchDatasets).mockResolvedValue(freshDatasets); - vi.mocked(fetchParameters).mockResolvedValue(freshParameters); - - // When - await loadMetadata(TEST_COUNTRIES.US); - - // Then - expect(clearAndLoadVariables).toHaveBeenCalledWith(freshVariables); - expect(clearAndLoadDatasets).toHaveBeenCalledWith(freshDatasets); - expect(clearAndLoadParameters).toHaveBeenCalledWith(freshParameters); - expect(setCacheMetadata).toHaveBeenCalledWith( - expect.objectContaining({ - countryId: TEST_COUNTRIES.US, - version: API_RESPONSES.MODEL_VERSION, - versionId: API_RESPONSES.MODEL_VERSION_ID, - loaded: true, - }) - ); - }); - }); - - describe('isMetadataCached', () => { - it('given valid cache then returns true', async () => { - // Given - const validCache = createValidCache(); - vi.mocked(getCacheMetadata).mockResolvedValue(validCache); - vi.mocked(fetchModelVersion).mockResolvedValue(API_RESPONSES.MODEL_VERSION); - vi.mocked(fetchModelVersionId).mockResolvedValue(API_RESPONSES.MODEL_VERSION_ID); - - // When - const result = await isMetadataCached(TEST_COUNTRIES.US); - - // Then - expect(result).toBe(true); - }); - - it('given no cache then returns false', async () => { - // Given - vi.mocked(getCacheMetadata).mockResolvedValue(undefined); - - // When - const result = await isMetadataCached(TEST_COUNTRIES.US); - - // Then - expect(result).toBe(false); - }); - - it('given cache with loaded false then returns false', async () => { - // Given - const incompleteCache = createValidCache(); - incompleteCache.loaded = false; - vi.mocked(getCacheMetadata).mockResolvedValue(incompleteCache); - - // When - const result = await isMetadataCached(TEST_COUNTRIES.US); - - // Then - expect(result).toBe(false); - }); - - it('given stale cache version then returns false', async () => { - // Given - const staleCache = createValidCache(); - vi.mocked(getCacheMetadata).mockResolvedValue(staleCache); - vi.mocked(fetchModelVersion).mockResolvedValue('new-version'); - vi.mocked(fetchModelVersionId).mockResolvedValue('new-version-id'); - - // When - const result = await isMetadataCached(TEST_COUNTRIES.US); - - // Then - expect(result).toBe(false); - }); - }); -}); diff --git a/app/src/tests/unit/storage/metadataBulkLoader.test.ts b/app/src/tests/unit/storage/metadataBulkLoader.test.ts deleted file mode 100644 index 973165807..000000000 --- a/app/src/tests/unit/storage/metadataBulkLoader.test.ts +++ /dev/null @@ -1,397 +0,0 @@ -import { describe, expect, it, vi, beforeEach } from 'vitest'; -import { - createMockVariables, - createMockParameters, - createMockDatasets, - createMockCacheMetadata, - createMockVariable, - createMockParameter, - TEST_COUNTRIES, - TEST_VERSIONS, -} from '@/tests/fixtures/storage/storageMocks'; - -// Mock the database module -vi.mock('@/storage/metadataDb', () => { - const mockTable = { - bulkPut: vi.fn().mockResolvedValue(undefined), - clear: vi.fn().mockResolvedValue(undefined), - toArray: vi.fn().mockResolvedValue([]), - where: vi.fn().mockReturnThis(), - equals: vi.fn().mockReturnThis(), - first: vi.fn().mockResolvedValue(undefined), - delete: vi.fn().mockResolvedValue(undefined), - count: vi.fn().mockResolvedValue(0), - get: vi.fn().mockResolvedValue(undefined), - put: vi.fn().mockResolvedValue(undefined), - }; - - return { - db: { - variables: { ...mockTable }, - parameters: { ...mockTable }, - datasets: { ...mockTable }, - cacheMetadata: { ...mockTable }, - transaction: vi.fn((mode, tables, callback) => callback()), - }, - }; -}); - -// Import after mock setup -import { db } from '@/storage/metadataDb'; - -// Cast db to any for mocking chained methods that don't exist on the actual type -const mockDb = db as any; -import { - bulkLoadVariables, - bulkLoadParameters, - clearAndLoadVariables, - clearAndLoadParameters, - clearAndLoadDatasets, - getAllVariables, - getAllParameters, - getAllDatasets, - getVariablesByVersion, - getParametersByVersion, - getVariableByName, - getParameterByName, - getCacheMetadata, - setCacheMetadata, - clearVersionData, - getStoreCounts, - clearAllStores, -} from '@/storage/metadataBulkLoader'; - -describe('metadataBulkLoader', () => { - beforeEach(() => { - vi.clearAllMocks(); - }); - - describe('bulkLoadVariables', () => { - it('given empty array then returns 0 without database call', async () => { - // When - const result = await bulkLoadVariables([]); - - // Then - expect(result).toBe(0); - expect(db.variables.bulkPut).not.toHaveBeenCalled(); - }); - - it('given array of variables then calls bulkPut and returns count', async () => { - // Given - const variables = createMockVariables(5); - - // When - const result = await bulkLoadVariables(variables); - - // Then - expect(result).toBe(5); - expect(db.variables.bulkPut).toHaveBeenCalledWith(variables); - }); - }); - - describe('bulkLoadParameters', () => { - it('given empty array then returns 0 without database call', async () => { - // When - const result = await bulkLoadParameters([]); - - // Then - expect(result).toBe(0); - expect(db.parameters.bulkPut).not.toHaveBeenCalled(); - }); - - it('given array of parameters then calls bulkPut and returns count', async () => { - // Given - const parameters = createMockParameters(3); - - // When - const result = await bulkLoadParameters(parameters); - - // Then - expect(result).toBe(3); - expect(db.parameters.bulkPut).toHaveBeenCalledWith(parameters); - }); - }); - - describe('clearAndLoadVariables', () => { - it('given array of variables then clears and loads in transaction', async () => { - // Given - const variables = createMockVariables(10); - - // When - const result = await clearAndLoadVariables(variables); - - // Then - expect(result).toBe(10); - expect(db.transaction).toHaveBeenCalled(); - expect(db.variables.clear).toHaveBeenCalled(); - expect(db.variables.bulkPut).toHaveBeenCalledWith(variables); - }); - }); - - describe('clearAndLoadParameters', () => { - it('given array of parameters then clears and loads in transaction', async () => { - // Given - const parameters = createMockParameters(7); - - // When - const result = await clearAndLoadParameters(parameters); - - // Then - expect(result).toBe(7); - expect(db.transaction).toHaveBeenCalled(); - expect(db.parameters.clear).toHaveBeenCalled(); - expect(db.parameters.bulkPut).toHaveBeenCalledWith(parameters); - }); - }); - - describe('clearAndLoadDatasets', () => { - it('given array of datasets then clears and loads in transaction', async () => { - // Given - const datasets = createMockDatasets(3); - - // When - const result = await clearAndLoadDatasets(datasets); - - // Then - expect(result).toBe(3); - expect(db.transaction).toHaveBeenCalled(); - expect(db.datasets.clear).toHaveBeenCalled(); - expect(db.datasets.bulkPut).toHaveBeenCalledWith(datasets); - }); - }); - - describe('getAllVariables', () => { - it('given database with variables then returns all variables', async () => { - // Given - const variables = createMockVariables(5); - vi.mocked(db.variables.toArray).mockResolvedValue(variables); - - // When - const result = await getAllVariables(); - - // Then - expect(result).toEqual(variables); - expect(db.variables.toArray).toHaveBeenCalled(); - }); - }); - - describe('getAllParameters', () => { - it('given database with parameters then returns all parameters', async () => { - // Given - const parameters = createMockParameters(3); - vi.mocked(db.parameters.toArray).mockResolvedValue(parameters); - - // When - const result = await getAllParameters(); - - // Then - expect(result).toEqual(parameters); - expect(db.parameters.toArray).toHaveBeenCalled(); - }); - }); - - describe('getAllDatasets', () => { - it('given database with datasets then returns all datasets', async () => { - // Given - const datasets = createMockDatasets(2); - vi.mocked(db.datasets.toArray).mockResolvedValue(datasets); - - // When - const result = await getAllDatasets(); - - // Then - expect(result).toEqual(datasets); - expect(db.datasets.toArray).toHaveBeenCalled(); - }); - }); - - describe('getVariablesByVersion', () => { - it('given version id then queries variables by version', async () => { - // Given - const variables = createMockVariables(3); - vi.mocked(mockDb.variables.where).mockReturnThis(); - vi.mocked(mockDb.variables.equals).mockReturnThis(); - vi.mocked(mockDb.variables.toArray).mockResolvedValue(variables); - - // When - const result = await getVariablesByVersion(TEST_VERSIONS.US_VERSION_ID); - - // Then - expect(result).toEqual(variables); - expect(mockDb.variables.where).toHaveBeenCalledWith('tax_benefit_model_version_id'); - expect(mockDb.variables.equals).toHaveBeenCalledWith(TEST_VERSIONS.US_VERSION_ID); - }); - }); - - describe('getParametersByVersion', () => { - it('given version id then queries parameters by version', async () => { - // Given - const parameters = createMockParameters(3); - vi.mocked(mockDb.parameters.where).mockReturnThis(); - vi.mocked(mockDb.parameters.equals).mockReturnThis(); - vi.mocked(mockDb.parameters.toArray).mockResolvedValue(parameters); - - // When - const result = await getParametersByVersion(TEST_VERSIONS.US_VERSION_ID); - - // Then - expect(result).toEqual(parameters); - expect(mockDb.parameters.where).toHaveBeenCalledWith('tax_benefit_model_version_id'); - expect(mockDb.parameters.equals).toHaveBeenCalledWith(TEST_VERSIONS.US_VERSION_ID); - }); - }); - - describe('getVariableByName', () => { - it('given variable name then queries and returns variable', async () => { - // Given - const variable = createMockVariable({ name: 'income_tax' }); - vi.mocked(mockDb.variables.where).mockReturnThis(); - vi.mocked(mockDb.variables.equals).mockReturnThis(); - vi.mocked(mockDb.variables.first).mockResolvedValue(variable); - - // When - const result = await getVariableByName('income_tax'); - - // Then - expect(result).toEqual(variable); - expect(mockDb.variables.where).toHaveBeenCalledWith('name'); - expect(mockDb.variables.equals).toHaveBeenCalledWith('income_tax'); - }); - - it('given non-existent variable name then returns undefined', async () => { - // Given - vi.mocked(mockDb.variables.where).mockReturnThis(); - vi.mocked(mockDb.variables.equals).mockReturnThis(); - vi.mocked(mockDb.variables.first).mockResolvedValue(undefined); - - // When - const result = await getVariableByName('non_existent'); - - // Then - expect(result).toBeUndefined(); - }); - }); - - describe('getParameterByName', () => { - it('given parameter name then queries and returns parameter', async () => { - // Given - const parameter = createMockParameter({ name: 'basic_rate' }); - vi.mocked(mockDb.parameters.where).mockReturnThis(); - vi.mocked(mockDb.parameters.equals).mockReturnThis(); - vi.mocked(mockDb.parameters.first).mockResolvedValue(parameter); - - // When - const result = await getParameterByName('basic_rate'); - - // Then - expect(result).toEqual(parameter); - expect(mockDb.parameters.where).toHaveBeenCalledWith('name'); - expect(mockDb.parameters.equals).toHaveBeenCalledWith('basic_rate'); - }); - - it('given non-existent parameter name then returns undefined', async () => { - // Given - vi.mocked(mockDb.parameters.where).mockReturnThis(); - vi.mocked(mockDb.parameters.equals).mockReturnThis(); - vi.mocked(mockDb.parameters.first).mockResolvedValue(undefined); - - // When - const result = await getParameterByName('non_existent'); - - // Then - expect(result).toBeUndefined(); - }); - }); - - describe('clearVersionData', () => { - it('given version id then clears variables and parameters for that version', async () => { - // Given - vi.mocked(mockDb.variables.where).mockReturnThis(); - vi.mocked(mockDb.variables.equals).mockReturnThis(); - vi.mocked(mockDb.parameters.where).mockReturnThis(); - vi.mocked(mockDb.parameters.equals).mockReturnThis(); - - // When - await clearVersionData(TEST_VERSIONS.US_VERSION_ID); - - // Then - expect(mockDb.transaction).toHaveBeenCalled(); - expect(mockDb.variables.where).toHaveBeenCalledWith('tax_benefit_model_version_id'); - expect(mockDb.variables.equals).toHaveBeenCalledWith(TEST_VERSIONS.US_VERSION_ID); - expect(mockDb.variables.delete).toHaveBeenCalled(); - expect(mockDb.parameters.where).toHaveBeenCalledWith('tax_benefit_model_version_id'); - expect(mockDb.parameters.equals).toHaveBeenCalledWith(TEST_VERSIONS.US_VERSION_ID); - expect(mockDb.parameters.delete).toHaveBeenCalled(); - }); - }); - - describe('getCacheMetadata', () => { - it('given country with cache then returns cache metadata', async () => { - // Given - const cacheMetadata = createMockCacheMetadata(); - vi.mocked(db.cacheMetadata.get).mockResolvedValue(cacheMetadata); - - // When - const result = await getCacheMetadata(TEST_COUNTRIES.US); - - // Then - expect(result).toEqual(cacheMetadata); - expect(db.cacheMetadata.get).toHaveBeenCalledWith(TEST_COUNTRIES.US); - }); - - it('given country without cache then returns undefined', async () => { - // Given - vi.mocked(db.cacheMetadata.get).mockResolvedValue(undefined); - - // When - const result = await getCacheMetadata(TEST_COUNTRIES.UK); - - // Then - expect(result).toBeUndefined(); - }); - }); - - describe('setCacheMetadata', () => { - it('given cache metadata then stores in database', async () => { - // Given - const cacheMetadata = createMockCacheMetadata(); - - // When - await setCacheMetadata(cacheMetadata); - - // Then - expect(db.cacheMetadata.put).toHaveBeenCalledWith(cacheMetadata); - }); - }); - - describe('getStoreCounts', () => { - it('given database with data then returns counts for all stores', async () => { - // Given - vi.mocked(db.variables.count).mockResolvedValueOnce(100); - vi.mocked(db.parameters.count).mockResolvedValueOnce(50); - vi.mocked(db.datasets.count).mockResolvedValueOnce(5); - - // When - const result = await getStoreCounts(); - - // Then - expect(result.variables).toBe(100); - expect(result.parameters).toBe(50); - expect(result.datasets).toBe(5); - }); - }); - - describe('clearAllStores', () => { - it('given database with data then clears all stores in transaction', async () => { - // When - await clearAllStores(); - - // Then - expect(db.transaction).toHaveBeenCalled(); - expect(db.variables.clear).toHaveBeenCalled(); - expect(db.parameters.clear).toHaveBeenCalled(); - expect(db.datasets.clear).toHaveBeenCalled(); - expect(db.cacheMetadata.clear).toHaveBeenCalled(); - }); - }); -}); diff --git a/app/src/types/metadata.ts b/app/src/types/metadata.ts index 5038bc09a..80ded7e66 100644 --- a/app/src/types/metadata.ts +++ b/app/src/types/metadata.ts @@ -1,5 +1,44 @@ import { UK_REGION_TYPES, US_REGION_TYPES } from "./regionTypes"; +/** + * V2 API response types - raw data from the API + * These represent the exact shape of data returned by the V2 API endpoints. + */ + +export interface V2VariableMetadata { + id: string; + name: string; + entity: string; + description: string; + data_type: string; + possible_values: string[] | null; + tax_benefit_model_version_id: string; + created_at: string; +} + +export interface V2ParameterMetadata { + id: string; + name: string; + label: string; + description: string; + data_type: string; + unit: string | null; + tax_benefit_model_version_id: string; + created_at: string; +} + +export interface V2DatasetMetadata { + id: string; + name: string; + description: string; + filepath: string; + year: number; + is_output_dataset: boolean; + tax_benefit_model_id: string; + created_at: string; + updated_at: string; +} + /** * Region entry from API metadata * All regions have: name, label, type From 4d84c9c70c475caf93663f9a432f440bed5b3dd6 Mon Sep 17 00:00:00 2001 From: Anthony Volk Date: Fri, 26 Dec 2025 23:27:00 +0400 Subject: [PATCH 18/32] feat: Fetch parameter values from API v2 --- app/src/adapters/MetadataAdapter.ts | 16 ++++++++++++ app/src/api/v2/index.ts | 3 +++ app/src/api/v2/parameterValues.ts | 33 ++++++++++++++++++++++++ app/src/hooks/useParameterValues.ts | 40 +++++++++++++++++++++++++++++ app/src/libs/queryKeys.ts | 8 +++++- app/src/types/metadata.ts | 13 ++++++++++ 6 files changed, 112 insertions(+), 1 deletion(-) create mode 100644 app/src/api/v2/parameterValues.ts create mode 100644 app/src/hooks/useParameterValues.ts diff --git a/app/src/adapters/MetadataAdapter.ts b/app/src/adapters/MetadataAdapter.ts index 074a49946..473286d12 100644 --- a/app/src/adapters/MetadataAdapter.ts +++ b/app/src/adapters/MetadataAdapter.ts @@ -2,9 +2,11 @@ import { V2VariableMetadata, V2ParameterMetadata, V2DatasetMetadata, + V2ParameterValueMetadata, VariableMetadata, ParameterMetadata, } from "@/types/metadata"; +import { ValuesList } from "@/types/subIngredients/valueInterval"; /** * Dataset type used in the frontend (simplified from V2DatasetMetadata) @@ -106,4 +108,18 @@ export class MetadataAdapter { static datasetsFromV2(datasets: V2DatasetMetadata[]): DatasetEntry[] { return datasets.map((d, i) => MetadataAdapter.datasetFromV2(d, i === 0)); } + + /** + * Convert V2 parameter values array to ValuesList format + * ValuesList is a Record used by the frontend + * @param values Array of V2 parameter value records + * @returns ValuesList format (e.g., { "2023-01-01": 100, "2024-01-01": 150 }) + */ + static parameterValuesFromV2(values: V2ParameterValueMetadata[]): ValuesList { + const valuesList: ValuesList = {}; + for (const v of values) { + valuesList[v.start_date] = v.value; + } + return valuesList; + } } diff --git a/app/src/api/v2/index.ts b/app/src/api/v2/index.ts index 44812f3a2..28b55f080 100644 --- a/app/src/api/v2/index.ts +++ b/app/src/api/v2/index.ts @@ -16,5 +16,8 @@ export { fetchVariables } from "./variables"; // Parameters export { fetchParameters } from "./parameters"; +// Parameter values (on-demand fetching) +export { fetchParameterValues } from "./parameterValues"; + // Datasets export { fetchDatasets } from "./datasets"; diff --git a/app/src/api/v2/parameterValues.ts b/app/src/api/v2/parameterValues.ts new file mode 100644 index 000000000..ee2f750e6 --- /dev/null +++ b/app/src/api/v2/parameterValues.ts @@ -0,0 +1,33 @@ +import { API_V2_BASE_URL } from "./taxBenefitModels"; +import type { V2ParameterValueMetadata } from "@/types/metadata"; + +/** + * Fetch parameter values for a specific parameter and policy. + * + * All parameter values are stored separately and linked to a policy. + * Both baseline (current law) and reform policies have their own sets of values. + * + * @param parameterId - The ID of the parameter to fetch values for + * @param policyId - The ID of the policy to fetch values for + * @returns Array of parameter value records + */ +export async function fetchParameterValues( + parameterId: string, + policyId: string +): Promise { + const params = new URLSearchParams(); + params.set("parameter_id", parameterId); + params.set("policy_id", policyId); + + const res = await fetch( + `${API_V2_BASE_URL}/parameter-values/?${params.toString()}` + ); + + if (!res.ok) { + throw new Error( + `Failed to fetch parameter values for parameter ${parameterId} with policy ${policyId}` + ); + } + + return res.json(); +} diff --git a/app/src/hooks/useParameterValues.ts b/app/src/hooks/useParameterValues.ts new file mode 100644 index 000000000..e3f64de55 --- /dev/null +++ b/app/src/hooks/useParameterValues.ts @@ -0,0 +1,40 @@ +import { useQuery } from "@tanstack/react-query"; +import { fetchParameterValues } from "@/api/v2/parameterValues"; +import { MetadataAdapter } from "@/adapters"; +import { parameterValueKeys } from "@/libs/queryKeys"; +import { ValuesList } from "@/types/subIngredients/valueInterval"; + +/** + * Hook to fetch parameter values for a specific parameter and policy on-demand. + * + * All parameter values are stored separately and linked to a policy. + * Both baseline (current law) and reform policies have their own sets of values. + * + * @param parameterId - The ID of the parameter to fetch values for + * @param policyId - The ID of the policy to fetch values for + * @param options.enabled - Whether to enable the query (default: true if both IDs provided) + * @returns Query result with data as ValuesList (Record) + */ +export function useParameterValues( + parameterId: string | undefined, + policyId: string | undefined, + options?: { enabled?: boolean } +) { + return useQuery({ + queryKey: parameterValueKeys.byPolicyAndParameter( + policyId ?? "", + parameterId ?? "" + ), + queryFn: async (): Promise => { + if (!parameterId || !policyId) { + return {}; + } + const values = await fetchParameterValues(parameterId, policyId); + return MetadataAdapter.parameterValuesFromV2(values); + }, + enabled: options?.enabled ?? (!!parameterId && !!policyId), + staleTime: 5 * 60 * 1000, // 5 minutes - parameter values don't change often + }); +} + +export { fetchParameterValues } from "@/api/v2/parameterValues"; diff --git a/app/src/libs/queryKeys.ts b/app/src/libs/queryKeys.ts index 0a607758b..b86e7cd8a 100644 --- a/app/src/libs/queryKeys.ts +++ b/app/src/libs/queryKeys.ts @@ -46,7 +46,6 @@ export const reportAssociationKeys = { [...reportAssociationKeys.all, 'user_report_id', userReportId] as const, }; -// Keep your existing keys unchanged export const policyKeys = { all: ['policies'] as const, byId: (policyId: string) => [...policyKeys.all, 'policy_id', policyId] as const, @@ -104,3 +103,10 @@ export const householdVariationKeys = { countryId, ] as const, }; + +export const parameterValueKeys = { + all: ['parameter-values'] as const, + /** Query key for values of a parameter under a specific policy */ + byPolicyAndParameter: (policyId: string, parameterId: string) => + [...parameterValueKeys.all, 'policy', policyId, 'parameter', parameterId] as const, +}; diff --git a/app/src/types/metadata.ts b/app/src/types/metadata.ts index 80ded7e66..9b3a9a9a4 100644 --- a/app/src/types/metadata.ts +++ b/app/src/types/metadata.ts @@ -39,6 +39,19 @@ export interface V2DatasetMetadata { updated_at: string; } +/** + * V2 API parameter value - represents a single value entry for a parameter + * Fetched on-demand when parameter values are needed (e.g., in policy creator) + */ +export interface V2ParameterValueMetadata { + id: string; + parameter_id: string; + policy_id: string | null; + start_date: string; // ISO date string (YYYY-MM-DD) + value: number | string | boolean; + created_at: string; +} + /** * Region entry from API metadata * All regions have: name, label, type From d17635116345de7a25be93321974045037f51714 Mon Sep 17 00:00:00 2001 From: Anthony Volk Date: Mon, 29 Dec 2025 15:04:18 +0400 Subject: [PATCH 19/32] test: Add tests --- app/src/tests/fixtures/api/v2/apiV2Mocks.ts | 48 ++- .../unit/adapters/MetadataAdapter.test.ts | 299 ++++++++++++++++++ .../tests/unit/api/v2/parameterValues.test.ts | 81 +++++ .../unit/hooks/useParameterValues.test.ts | 257 +++++++++++++++ app/src/tests/unit/libs/queryKeys.test.ts | 88 +++++- 5 files changed, 771 insertions(+), 2 deletions(-) create mode 100644 app/src/tests/unit/adapters/MetadataAdapter.test.ts create mode 100644 app/src/tests/unit/api/v2/parameterValues.test.ts create mode 100644 app/src/tests/unit/hooks/useParameterValues.test.ts diff --git a/app/src/tests/fixtures/api/v2/apiV2Mocks.ts b/app/src/tests/fixtures/api/v2/apiV2Mocks.ts index 2e5b23992..21ef7fbb1 100644 --- a/app/src/tests/fixtures/api/v2/apiV2Mocks.ts +++ b/app/src/tests/fixtures/api/v2/apiV2Mocks.ts @@ -2,7 +2,12 @@ * Fixtures for API v2 module tests */ import type { TaxBenefitModel, TaxBenefitModelVersion } from '@/api/v2/taxBenefitModels'; -import type { V2VariableMetadata, V2ParameterMetadata, V2DatasetMetadata } from '@/types/metadata'; +import type { + V2VariableMetadata, + V2ParameterMetadata, + V2DatasetMetadata, + V2ParameterValueMetadata, +} from '@/types/metadata'; // Test countries export const TEST_COUNTRIES = { @@ -83,6 +88,44 @@ export function createMockDatasets(count: number): V2DatasetMetadata[] { ); } +// Test policy IDs +export const TEST_POLICY_IDS = { + BASELINE: 'policy-baseline-123', + REFORM: 'policy-reform-456', +} as const; + +// Parameter value factory +export function createMockParameterValue( + overrides: Partial = {} +): V2ParameterValueMetadata { + return { + id: 'pv-1', + parameter_id: 'param-1', + policy_id: TEST_POLICY_IDS.BASELINE, + start_date: '2024-01-01', + value: 100, + created_at: '2024-01-01T00:00:00Z', + ...overrides, + }; +} + +export function createMockParameterValues( + count: number, + parameterId: string = 'param-1', + policyId: string = TEST_POLICY_IDS.BASELINE +): V2ParameterValueMetadata[] { + const baseYear = 2020; + return Array.from({ length: count }, (_, i) => + createMockParameterValue({ + id: `pv-${i}`, + parameter_id: parameterId, + policy_id: policyId, + start_date: `${baseYear + i}-01-01`, + value: 100 + i * 10, + }) + ); +} + // Model IDs export const MODEL_IDS = { US: '8ac12923-1282-420e-a440-0fa60d43950a', @@ -154,6 +197,7 @@ export const SAMPLE_RESPONSES = { VARIABLES: createMockVariables(5), PARAMETERS: createMockParameters(5), DATASETS: createMockDatasets(3), + PARAMETER_VALUES: createMockParameterValues(3), } as const; // Expected API endpoints @@ -166,4 +210,6 @@ export const API_ENDPOINTS = { PARAMETERS: (modelId: string, limit: number = 10000) => `${API_V2_BASE_URL}/parameters/?tax_benefit_model_id=${modelId}&limit=${limit}`, DATASETS: (modelId: string) => `${API_V2_BASE_URL}/datasets/?tax_benefit_model_id=${modelId}`, + PARAMETER_VALUES: (parameterId: string, policyId: string) => + `${API_V2_BASE_URL}/parameter-values/?parameter_id=${parameterId}&policy_id=${policyId}`, } as const; diff --git a/app/src/tests/unit/adapters/MetadataAdapter.test.ts b/app/src/tests/unit/adapters/MetadataAdapter.test.ts new file mode 100644 index 000000000..139367fb8 --- /dev/null +++ b/app/src/tests/unit/adapters/MetadataAdapter.test.ts @@ -0,0 +1,299 @@ +import { describe, expect, it } from 'vitest'; +import { MetadataAdapter } from '@/adapters/MetadataAdapter'; +import { + createMockVariable, + createMockVariables, + createMockParameter, + createMockParameters, + createMockDataset, + createMockDatasets, + createMockParameterValue, + createMockParameterValues, + TEST_POLICY_IDS, +} from '@/tests/fixtures/api/v2/apiV2Mocks'; + +describe('MetadataAdapter', () => { + describe('variableFromV2', () => { + it('given V2 variable then converts to VariableMetadata', () => { + // Given + const v2Variable = createMockVariable({ + id: 'var-123', + name: 'employment_income', + entity: 'person', + description: 'Employment income', + }); + + // When + const result = MetadataAdapter.variableFromV2(v2Variable); + + // Then + expect(result.id).toBe('var-123'); + expect(result.name).toBe('employment_income'); + expect(result.entity).toBe('person'); + expect(result.description).toBe('Employment income'); + }); + + it('given variable name with underscores then generates title-case label', () => { + // Given + const v2Variable = createMockVariable({ name: 'employment_income' }); + + // When + const result = MetadataAdapter.variableFromV2(v2Variable); + + // Then + expect(result.label).toBe('Employment Income'); + }); + + it('given single word name then capitalizes label', () => { + // Given + const v2Variable = createMockVariable({ name: 'age' }); + + // When + const result = MetadataAdapter.variableFromV2(v2Variable); + + // Then + expect(result.label).toBe('Age'); + }); + }); + + describe('variablesFromV2', () => { + it('given array of V2 variables then converts to keyed record', () => { + // Given + const v2Variables = createMockVariables(3); + + // When + const result = MetadataAdapter.variablesFromV2(v2Variables); + + // Then + expect(Object.keys(result)).toHaveLength(3); + expect(result['variable_0']).toBeDefined(); + expect(result['variable_1']).toBeDefined(); + expect(result['variable_2']).toBeDefined(); + }); + + it('given empty array then returns empty record', () => { + // Given + const v2Variables: ReturnType[] = []; + + // When + const result = MetadataAdapter.variablesFromV2(v2Variables); + + // Then + expect(result).toEqual({}); + }); + }); + + describe('parameterFromV2', () => { + it('given V2 parameter then converts to ParameterMetadata', () => { + // Given + const v2Parameter = createMockParameter({ + id: 'param-123', + name: 'tax.rate', + label: 'Tax Rate', + description: 'Standard tax rate', + unit: '/1', + }); + + // When + const result = MetadataAdapter.parameterFromV2(v2Parameter); + + // Then + expect(result.id).toBe('param-123'); + expect(result.name).toBe('tax.rate'); + expect(result.label).toBe('Tax Rate'); + expect(result.description).toBe('Standard tax rate'); + expect(result.unit).toBe('/1'); + }); + + it('given V2 parameter then sets parameter path from name', () => { + // Given + const v2Parameter = createMockParameter({ name: 'gov.tax.income.rate' }); + + // When + const result = MetadataAdapter.parameterFromV2(v2Parameter); + + // Then + expect(result.parameter).toBe('gov.tax.income.rate'); + }); + + it('given V2 parameter then sets type to parameter', () => { + // Given + const v2Parameter = createMockParameter(); + + // When + const result = MetadataAdapter.parameterFromV2(v2Parameter); + + // Then + expect(result.type).toBe('parameter'); + }); + + it('given V2 parameter then initializes values as empty object', () => { + // Given + const v2Parameter = createMockParameter(); + + // When + const result = MetadataAdapter.parameterFromV2(v2Parameter); + + // Then + expect(result.values).toEqual({}); + }); + }); + + describe('parametersFromV2', () => { + it('given array of V2 parameters then converts to keyed record', () => { + // Given + const v2Parameters = createMockParameters(3); + + // When + const result = MetadataAdapter.parametersFromV2(v2Parameters); + + // Then + expect(Object.keys(result)).toHaveLength(3); + expect(result['test.param_0']).toBeDefined(); + expect(result['test.param_1']).toBeDefined(); + expect(result['test.param_2']).toBeDefined(); + }); + + it('given empty array then returns empty record', () => { + // Given + const v2Parameters: ReturnType[] = []; + + // When + const result = MetadataAdapter.parametersFromV2(v2Parameters); + + // Then + expect(result).toEqual({}); + }); + }); + + describe('datasetFromV2', () => { + it('given V2 dataset then converts to DatasetEntry', () => { + // Given + const v2Dataset = createMockDataset({ + name: 'cps_2024', + description: 'Current Population Survey 2024', + }); + + // When + const result = MetadataAdapter.datasetFromV2(v2Dataset, false); + + // Then + expect(result.name).toBe('cps_2024'); + expect(result.label).toBe('cps_2024'); + expect(result.title).toBe('Current Population Survey 2024'); + expect(result.default).toBe(false); + }); + + it('given isDefault true then sets default flag', () => { + // Given + const v2Dataset = createMockDataset(); + + // When + const result = MetadataAdapter.datasetFromV2(v2Dataset, true); + + // Then + expect(result.default).toBe(true); + }); + + it('given dataset without description then uses name as title', () => { + // Given + const v2Dataset = createMockDataset({ name: 'cps_2024', description: '' }); + + // When + const result = MetadataAdapter.datasetFromV2(v2Dataset, false); + + // Then + expect(result.title).toBe('cps_2024'); + }); + }); + + describe('datasetsFromV2', () => { + it('given array of V2 datasets then first is marked as default', () => { + // Given + const v2Datasets = createMockDatasets(3); + + // When + const result = MetadataAdapter.datasetsFromV2(v2Datasets); + + // Then + expect(result).toHaveLength(3); + expect(result[0].default).toBe(true); + expect(result[1].default).toBe(false); + expect(result[2].default).toBe(false); + }); + + it('given empty array then returns empty array', () => { + // Given + const v2Datasets: ReturnType[] = []; + + // When + const result = MetadataAdapter.datasetsFromV2(v2Datasets); + + // Then + expect(result).toEqual([]); + }); + }); + + describe('parameterValuesFromV2', () => { + it('given V2 parameter values then converts to ValuesList', () => { + // Given + const v2Values = [ + createMockParameterValue({ start_date: '2020-01-01', value: 100 }), + createMockParameterValue({ start_date: '2021-01-01', value: 110 }), + createMockParameterValue({ start_date: '2022-01-01', value: 120 }), + ]; + + // When + const result = MetadataAdapter.parameterValuesFromV2(v2Values); + + // Then + expect(result).toEqual({ + '2020-01-01': 100, + '2021-01-01': 110, + '2022-01-01': 120, + }); + }); + + it('given empty array then returns empty object', () => { + // Given + const v2Values: ReturnType[] = []; + + // When + const result = MetadataAdapter.parameterValuesFromV2(v2Values); + + // Then + expect(result).toEqual({}); + }); + + it('given values with different types then preserves types', () => { + // Given + const v2Values = [ + createMockParameterValue({ start_date: '2020-01-01', value: 100 }), + createMockParameterValue({ start_date: '2021-01-01', value: 0.25 }), + createMockParameterValue({ start_date: '2022-01-01', value: true }), + ]; + + // When + const result = MetadataAdapter.parameterValuesFromV2(v2Values); + + // Then + expect(result['2020-01-01']).toBe(100); + expect(result['2021-01-01']).toBe(0.25); + expect(result['2022-01-01']).toBe(true); + }); + + it('given values from factory then converts correctly', () => { + // Given + const v2Values = createMockParameterValues(3, 'param-1', TEST_POLICY_IDS.BASELINE); + + // When + const result = MetadataAdapter.parameterValuesFromV2(v2Values); + + // Then + expect(Object.keys(result)).toHaveLength(3); + expect(result['2020-01-01']).toBe(100); + expect(result['2021-01-01']).toBe(110); + expect(result['2022-01-01']).toBe(120); + }); + }); +}); diff --git a/app/src/tests/unit/api/v2/parameterValues.test.ts b/app/src/tests/unit/api/v2/parameterValues.test.ts new file mode 100644 index 000000000..3526183b6 --- /dev/null +++ b/app/src/tests/unit/api/v2/parameterValues.test.ts @@ -0,0 +1,81 @@ +import { describe, expect, it, vi, beforeEach, afterEach } from 'vitest'; +import { + TEST_POLICY_IDS, + SAMPLE_RESPONSES, + API_ENDPOINTS, + mockFetchSuccess, + mockFetchError, +} from '@/tests/fixtures/api/v2/apiV2Mocks'; + +import { fetchParameterValues } from '@/api/v2/parameterValues'; + +describe('parameterValues', () => { + const originalFetch = global.fetch; + + beforeEach(() => { + vi.clearAllMocks(); + global.fetch = vi.fn(); + }); + + afterEach(() => { + global.fetch = originalFetch; + }); + + describe('fetchParameterValues', () => { + const TEST_PARAMETER_ID = 'param-1'; + + it('given parameter and policy IDs then fetches with correct query params', async () => { + // Given + vi.mocked(global.fetch).mockResolvedValue( + mockFetchSuccess(SAMPLE_RESPONSES.PARAMETER_VALUES) + ); + + // When + const result = await fetchParameterValues(TEST_PARAMETER_ID, TEST_POLICY_IDS.BASELINE); + + // Then + expect(result).toEqual(SAMPLE_RESPONSES.PARAMETER_VALUES); + expect(global.fetch).toHaveBeenCalledWith( + API_ENDPOINTS.PARAMETER_VALUES(TEST_PARAMETER_ID, TEST_POLICY_IDS.BASELINE) + ); + }); + + it('given different policy ID then fetches with that policy', async () => { + // Given + vi.mocked(global.fetch).mockResolvedValue( + mockFetchSuccess(SAMPLE_RESPONSES.PARAMETER_VALUES) + ); + + // When + await fetchParameterValues(TEST_PARAMETER_ID, TEST_POLICY_IDS.REFORM); + + // Then + expect(global.fetch).toHaveBeenCalledWith( + API_ENDPOINTS.PARAMETER_VALUES(TEST_PARAMETER_ID, TEST_POLICY_IDS.REFORM) + ); + }); + + it('given failed response then throws error with parameter and policy IDs', async () => { + // Given + vi.mocked(global.fetch).mockResolvedValue(mockFetchError()); + + // When/Then + await expect( + fetchParameterValues(TEST_PARAMETER_ID, TEST_POLICY_IDS.BASELINE) + ).rejects.toThrow( + `Failed to fetch parameter values for parameter ${TEST_PARAMETER_ID} with policy ${TEST_POLICY_IDS.BASELINE}` + ); + }); + + it('given empty response then returns empty array', async () => { + // Given + vi.mocked(global.fetch).mockResolvedValue(mockFetchSuccess([])); + + // When + const result = await fetchParameterValues(TEST_PARAMETER_ID, TEST_POLICY_IDS.BASELINE); + + // Then + expect(result).toEqual([]); + }); + }); +}); diff --git a/app/src/tests/unit/hooks/useParameterValues.test.ts b/app/src/tests/unit/hooks/useParameterValues.test.ts new file mode 100644 index 000000000..637c5c597 --- /dev/null +++ b/app/src/tests/unit/hooks/useParameterValues.test.ts @@ -0,0 +1,257 @@ +import React from 'react'; +import { QueryClient, QueryClientProvider } from '@tanstack/react-query'; +import { renderHook, waitFor } from '@testing-library/react'; +import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest'; +import { useParameterValues } from '@/hooks/useParameterValues'; +import { + createMockParameterValues, + TEST_POLICY_IDS, +} from '@/tests/fixtures/api/v2/apiV2Mocks'; + +// Mock the API module +vi.mock('@/api/v2/parameterValues', () => ({ + fetchParameterValues: vi.fn(), +})); + +// Import the mocked function +import { fetchParameterValues } from '@/api/v2/parameterValues'; + +describe('useParameterValues', () => { + let queryClient: QueryClient; + + const TEST_PARAMETER_ID = 'param-123'; + + beforeEach(() => { + vi.clearAllMocks(); + queryClient = new QueryClient({ + defaultOptions: { + queries: { + retry: false, + gcTime: 0, + }, + }, + }); + }); + + afterEach(() => { + queryClient.clear(); + }); + + const wrapper = ({ children }: { children: React.ReactNode }) => + React.createElement(QueryClientProvider, { client: queryClient }, children); + + describe('successful fetching', () => { + it('given parameter and policy IDs then fetches and converts to ValuesList', async () => { + // Given + const mockValues = createMockParameterValues(3, TEST_PARAMETER_ID, TEST_POLICY_IDS.BASELINE); + vi.mocked(fetchParameterValues).mockResolvedValue(mockValues); + + // When + const { result } = renderHook( + () => useParameterValues(TEST_PARAMETER_ID, TEST_POLICY_IDS.BASELINE), + { wrapper } + ); + + // Then + await waitFor(() => { + expect(result.current.isSuccess).toBe(true); + }); + + expect(result.current.data).toEqual({ + '2020-01-01': 100, + '2021-01-01': 110, + '2022-01-01': 120, + }); + expect(fetchParameterValues).toHaveBeenCalledWith( + TEST_PARAMETER_ID, + TEST_POLICY_IDS.BASELINE + ); + }); + + it('given empty response then returns empty object', async () => { + // Given + vi.mocked(fetchParameterValues).mockResolvedValue([]); + + // When + const { result } = renderHook( + () => useParameterValues(TEST_PARAMETER_ID, TEST_POLICY_IDS.BASELINE), + { wrapper } + ); + + // Then + await waitFor(() => { + expect(result.current.isSuccess).toBe(true); + }); + + expect(result.current.data).toEqual({}); + }); + }); + + describe('disabled states', () => { + it('given undefined parameterId then does not fetch', async () => { + // When + const { result } = renderHook( + () => useParameterValues(undefined, TEST_POLICY_IDS.BASELINE), + { wrapper } + ); + + // Then + // Query should be disabled and return empty object + expect(result.current.fetchStatus).toBe('idle'); + expect(fetchParameterValues).not.toHaveBeenCalled(); + }); + + it('given undefined policyId then does not fetch', async () => { + // When + const { result } = renderHook( + () => useParameterValues(TEST_PARAMETER_ID, undefined), + { wrapper } + ); + + // Then + expect(result.current.fetchStatus).toBe('idle'); + expect(fetchParameterValues).not.toHaveBeenCalled(); + }); + + it('given both IDs undefined then does not fetch', async () => { + // When + const { result } = renderHook(() => useParameterValues(undefined, undefined), { wrapper }); + + // Then + expect(result.current.fetchStatus).toBe('idle'); + expect(fetchParameterValues).not.toHaveBeenCalled(); + }); + + it('given enabled option false then does not fetch', async () => { + // When + const { result } = renderHook( + () => + useParameterValues(TEST_PARAMETER_ID, TEST_POLICY_IDS.BASELINE, { + enabled: false, + }), + { wrapper } + ); + + // Then + expect(result.current.fetchStatus).toBe('idle'); + expect(fetchParameterValues).not.toHaveBeenCalled(); + }); + }); + + describe('error handling', () => { + it('given fetch fails then returns error state', async () => { + // Given + const error = new Error('Failed to fetch parameter values'); + vi.mocked(fetchParameterValues).mockRejectedValue(error); + + // When + const { result } = renderHook( + () => useParameterValues(TEST_PARAMETER_ID, TEST_POLICY_IDS.BASELINE), + { wrapper } + ); + + // Then + await waitFor(() => { + expect(result.current.isError).toBe(true); + }); + + expect(result.current.error).toEqual(error); + }); + }); + + describe('loading states', () => { + it('given query in progress then isLoading is true', async () => { + // Given + let resolvePromise: (value: any) => void; + const pendingPromise = new Promise((resolve) => { + resolvePromise = resolve; + }); + vi.mocked(fetchParameterValues).mockReturnValue(pendingPromise as any); + + // When + const { result } = renderHook( + () => useParameterValues(TEST_PARAMETER_ID, TEST_POLICY_IDS.BASELINE), + { wrapper } + ); + + // Then + expect(result.current.isLoading).toBe(true); + + // Cleanup + resolvePromise!([]); + await waitFor(() => { + expect(result.current.isLoading).toBe(false); + }); + }); + }); + + describe('caching', () => { + it('given same parameters then returns cached result', async () => { + // Given + const mockValues = createMockParameterValues(2, TEST_PARAMETER_ID, TEST_POLICY_IDS.BASELINE); + vi.mocked(fetchParameterValues).mockResolvedValue(mockValues); + + // When - First call + const { result: result1 } = renderHook( + () => useParameterValues(TEST_PARAMETER_ID, TEST_POLICY_IDS.BASELINE), + { wrapper } + ); + + await waitFor(() => { + expect(result1.current.isSuccess).toBe(true); + }); + + // When - Second call with same params + const { result: result2 } = renderHook( + () => useParameterValues(TEST_PARAMETER_ID, TEST_POLICY_IDS.BASELINE), + { wrapper } + ); + + // Then - Should use cached value, only one fetch + expect(fetchParameterValues).toHaveBeenCalledTimes(1); + expect(result2.current.data).toEqual(result1.current.data); + }); + + it('given different policy ID then fetches again', async () => { + // Given + const mockValues1 = createMockParameterValues(2, TEST_PARAMETER_ID, TEST_POLICY_IDS.BASELINE); + const mockValues2 = createMockParameterValues(2, TEST_PARAMETER_ID, TEST_POLICY_IDS.REFORM); + vi.mocked(fetchParameterValues) + .mockResolvedValueOnce(mockValues1) + .mockResolvedValueOnce(mockValues2); + + // When - First call with baseline + const { result: result1 } = renderHook( + () => useParameterValues(TEST_PARAMETER_ID, TEST_POLICY_IDS.BASELINE), + { wrapper } + ); + + await waitFor(() => { + expect(result1.current.isSuccess).toBe(true); + }); + + // When - Second call with reform + const { result: result2 } = renderHook( + () => useParameterValues(TEST_PARAMETER_ID, TEST_POLICY_IDS.REFORM), + { wrapper } + ); + + await waitFor(() => { + expect(result2.current.isSuccess).toBe(true); + }); + + // Then - Should have fetched twice with different params + expect(fetchParameterValues).toHaveBeenCalledTimes(2); + expect(fetchParameterValues).toHaveBeenNthCalledWith( + 1, + TEST_PARAMETER_ID, + TEST_POLICY_IDS.BASELINE + ); + expect(fetchParameterValues).toHaveBeenNthCalledWith( + 2, + TEST_PARAMETER_ID, + TEST_POLICY_IDS.REFORM + ); + }); + }); +}); diff --git a/app/src/tests/unit/libs/queryKeys.test.ts b/app/src/tests/unit/libs/queryKeys.test.ts index 8a693a459..8d3e679f3 100644 --- a/app/src/tests/unit/libs/queryKeys.test.ts +++ b/app/src/tests/unit/libs/queryKeys.test.ts @@ -1,5 +1,6 @@ import { describe, expect, it } from 'vitest'; -import { calculationKeys } from '@/libs/queryKeys'; +import { calculationKeys, parameterValueKeys } from '@/libs/queryKeys'; +import { TEST_POLICY_IDS } from '@/tests/fixtures/api/v2/apiV2Mocks'; describe('calculationKeys', () => { describe('all', () => { @@ -75,3 +76,88 @@ describe('calculationKeys', () => { }); }); }); + +describe('parameterValueKeys', () => { + const TEST_PARAMETER_ID = 'param-123'; + + describe('all', () => { + it('given base key then returns parameter-values array', () => { + expect(parameterValueKeys.all).toEqual(['parameter-values']); + }); + + it('given base key then has correct length', () => { + expect(parameterValueKeys.all).toHaveLength(1); + }); + }); + + describe('byPolicyAndParameter', () => { + it('given policy and parameter IDs then returns correct key structure', () => { + // When + const key = parameterValueKeys.byPolicyAndParameter( + TEST_POLICY_IDS.BASELINE, + TEST_PARAMETER_ID + ); + + // Then + expect(key).toEqual([ + 'parameter-values', + 'policy', + TEST_POLICY_IDS.BASELINE, + 'parameter', + TEST_PARAMETER_ID, + ]); + }); + + it('given different policy ID then generates unique key', () => { + // When + const baselineKey = parameterValueKeys.byPolicyAndParameter( + TEST_POLICY_IDS.BASELINE, + TEST_PARAMETER_ID + ); + const reformKey = parameterValueKeys.byPolicyAndParameter( + TEST_POLICY_IDS.REFORM, + TEST_PARAMETER_ID + ); + + // Then + expect(baselineKey).not.toEqual(reformKey); + expect(baselineKey[2]).toBe(TEST_POLICY_IDS.BASELINE); + expect(reformKey[2]).toBe(TEST_POLICY_IDS.REFORM); + }); + + it('given different parameter ID then generates unique key', () => { + // When + const key1 = parameterValueKeys.byPolicyAndParameter(TEST_POLICY_IDS.BASELINE, 'param-1'); + const key2 = parameterValueKeys.byPolicyAndParameter(TEST_POLICY_IDS.BASELINE, 'param-2'); + + // Then + expect(key1).not.toEqual(key2); + expect(key1[4]).toBe('param-1'); + expect(key2[4]).toBe('param-2'); + }); + + it('given key then policy comes before parameter in structure', () => { + // When + const key = parameterValueKeys.byPolicyAndParameter( + TEST_POLICY_IDS.BASELINE, + TEST_PARAMETER_ID + ); + + // Then + expect(key[1]).toBe('policy'); + expect(key[3]).toBe('parameter'); + }); + + it('given key then is type-safe', () => { + // When + const key = parameterValueKeys.byPolicyAndParameter( + TEST_POLICY_IDS.BASELINE, + TEST_PARAMETER_ID + ); + + // Then - TypeScript should infer the exact tuple type + const _typeCheck: readonly ['parameter-values', 'policy', string, 'parameter', string] = key; + expect(_typeCheck).toBeDefined(); + }); + }); +}); From 90ad5ba84637e1401fe51e32692b81e47a7aa0c1 Mon Sep 17 00:00:00 2001 From: Anthony Volk Date: Mon, 29 Dec 2025 18:10:44 +0400 Subject: [PATCH 20/32] feat: Use new parameter value features --- app/src/adapters/MetadataAdapter.ts | 4 +- app/src/api/v2/index.ts | 2 +- app/src/api/v2/parameterValues.ts | 16 ++- app/src/hooks/useParameterValues.ts | 126 +++++++++++++++++- .../pages/report-output/DynamicsSubPage.tsx | 17 ++- app/src/pages/report-output/PolicySubPage.tsx | 16 ++- .../PolicyParameterSelectorMain.tsx | 14 +- .../PolicyParameterSelectorValueSetter.tsx | 10 +- .../valueSetters/DateValueSelector.tsx | 9 +- .../valueSetters/DefaultValueSelector.tsx | 9 +- .../valueSetters/ValueSetterProps.ts | 4 +- .../valueSetters/YearlyValueSelector.tsx | 9 +- .../valueSetters/getDefaultValueForParam.ts | 23 +++- app/src/tests/fixtures/api/v2/apiV2Mocks.ts | 13 +- .../unit/adapters/MetadataAdapter.test.ts | 16 +-- .../report-output/PolicySubPage.test.tsx | 40 +++++- app/src/types/metadata.ts | 6 +- app/src/utils/policyTableHelpers.ts | 21 ++- app/test-utils/render.tsx | 33 ++++- app/test-utils/renderWithCountry.tsx | 37 +++-- 20 files changed, 352 insertions(+), 73 deletions(-) diff --git a/app/src/adapters/MetadataAdapter.ts b/app/src/adapters/MetadataAdapter.ts index 473286d12..b265f15f6 100644 --- a/app/src/adapters/MetadataAdapter.ts +++ b/app/src/adapters/MetadataAdapter.ts @@ -118,7 +118,9 @@ export class MetadataAdapter { static parameterValuesFromV2(values: V2ParameterValueMetadata[]): ValuesList { const valuesList: ValuesList = {}; for (const v of values) { - valuesList[v.start_date] = v.value; + // Convert ISO timestamp (e.g., "2025-01-01T00:00:00") to date string (e.g., "2025-01-01") + const dateKey = v.start_date.split("T")[0]; + valuesList[dateKey] = v.value_json; } return valuesList; } diff --git a/app/src/api/v2/index.ts b/app/src/api/v2/index.ts index 28b55f080..319119aac 100644 --- a/app/src/api/v2/index.ts +++ b/app/src/api/v2/index.ts @@ -17,7 +17,7 @@ export { fetchVariables } from "./variables"; export { fetchParameters } from "./parameters"; // Parameter values (on-demand fetching) -export { fetchParameterValues } from "./parameterValues"; +export { fetchParameterValues, BASELINE_POLICY_ID } from "./parameterValues"; // Datasets export { fetchDatasets } from "./datasets"; diff --git a/app/src/api/v2/parameterValues.ts b/app/src/api/v2/parameterValues.ts index ee2f750e6..d1e0c6723 100644 --- a/app/src/api/v2/parameterValues.ts +++ b/app/src/api/v2/parameterValues.ts @@ -1,6 +1,13 @@ import { API_V2_BASE_URL } from "./taxBenefitModels"; import type { V2ParameterValueMetadata } from "@/types/metadata"; +/** + * Special constant to indicate baseline (current law) values. + * Baseline values have policy_id = null in the database. + * When fetching baseline values, we omit the policy_id parameter entirely. + */ +export const BASELINE_POLICY_ID = "baseline" as const; + /** * Fetch parameter values for a specific parameter and policy. * @@ -8,7 +15,7 @@ import type { V2ParameterValueMetadata } from "@/types/metadata"; * Both baseline (current law) and reform policies have their own sets of values. * * @param parameterId - The ID of the parameter to fetch values for - * @param policyId - The ID of the policy to fetch values for + * @param policyId - The ID of the policy, or "baseline" for current law values (omits policy_id from query) * @returns Array of parameter value records */ export async function fetchParameterValues( @@ -17,7 +24,12 @@ export async function fetchParameterValues( ): Promise { const params = new URLSearchParams(); params.set("parameter_id", parameterId); - params.set("policy_id", policyId); + + // For baseline (current law), omit policy_id to get values where policy_id IS NULL + // For reform policies, include the actual policy UUID + if (policyId !== BASELINE_POLICY_ID) { + params.set("policy_id", policyId); + } const res = await fetch( `${API_V2_BASE_URL}/parameter-values/?${params.toString()}` diff --git a/app/src/hooks/useParameterValues.ts b/app/src/hooks/useParameterValues.ts index e3f64de55..185f44bd4 100644 --- a/app/src/hooks/useParameterValues.ts +++ b/app/src/hooks/useParameterValues.ts @@ -1,9 +1,29 @@ -import { useQuery } from "@tanstack/react-query"; -import { fetchParameterValues } from "@/api/v2/parameterValues"; +import { useMemo } from "react"; +import { useQuery, useQueries } from "@tanstack/react-query"; +import { + fetchParameterValues, + BASELINE_POLICY_ID, +} from "@/api/v2/parameterValues"; import { MetadataAdapter } from "@/adapters"; import { parameterValueKeys } from "@/libs/queryKeys"; +import { ParameterMetadata } from "@/types/metadata"; import { ValuesList } from "@/types/subIngredients/valueInterval"; +export { BASELINE_POLICY_ID } from "@/api/v2/parameterValues"; + +/** + * Extract parameter IDs from parameter names using the parameters metadata. + * Filters out any parameters that don't have an ID in the metadata. + */ +export function extractParameterIds( + parameterNames: string[], + parameters: Record +): string[] { + return parameterNames + .map((name) => parameters[name]?.id) + .filter((id): id is string => !!id); +} + /** * Hook to fetch parameter values for a specific parameter and policy on-demand. * @@ -37,4 +57,106 @@ export function useParameterValues( }); } +/** + * Hook to fetch parameter values for multiple parameters in parallel. + * + * Uses React Query's useQueries to run all requests concurrently. + * + * @param parameterIds - Array of parameter IDs to fetch values for + * @param policyId - The ID of the policy (or "baseline" for current law) + * @param options.enabled - Whether to enable the queries + * @returns Object with: + * - data: Record mapping parameter IDs to their values + * - isLoading: true if any query is still loading + * - isError: true if any query has an error + */ +export function useMultipleParameterValues( + parameterIds: string[], + policyId: string | undefined, + options?: { enabled?: boolean } +) { + const queries = useQueries({ + queries: parameterIds.map((parameterId) => ({ + queryKey: parameterValueKeys.byPolicyAndParameter(policyId ?? "", parameterId), + queryFn: async (): Promise<{ parameterId: string; values: ValuesList }> => { + if (!policyId) { + return { parameterId, values: {} }; + } + const values = await fetchParameterValues(parameterId, policyId); + return { + parameterId, + values: MetadataAdapter.parameterValuesFromV2(values), + }; + }, + enabled: options?.enabled ?? !!policyId, + staleTime: 5 * 60 * 1000, + })), + }); + + const isLoading = queries.some((q) => q.isLoading); + const isError = queries.some((q) => q.isError); + + // Build the data map from successful queries + const data: Record = {}; + for (const query of queries) { + if (query.data) { + data[query.data.parameterId] = query.data.values; + } + } + + return { + data, + isLoading, + isError, + }; +} + export { fetchParameterValues } from "@/api/v2/parameterValues"; + +/** + * Result type for useBaselineValuesForParameters hook + */ +export interface BaselineValuesResult { + /** Map of parameter ID to its baseline values */ + baselineValuesMap: Record; + /** Whether any values are still loading */ + isLoading: boolean; + /** Whether any fetch encountered an error */ + isError: boolean; +} + +/** + * Hook to fetch baseline (current law) values for a list of parameters. + * + * This hook encapsulates the common pattern of: + * 1. Converting parameter names to IDs + * 2. Fetching baseline values for all parameters in parallel + * 3. Returning the values in a map keyed by parameter ID + * + * @param parameterNames - Array of parameter names to fetch values for + * @param parameters - Parameters metadata (from Redux store) + * @returns BaselineValuesResult with the values map and loading state + */ +export function useBaselineValuesForParameters( + parameterNames: string[], + parameters: Record +): BaselineValuesResult { + // Extract parameter IDs from names (memoized for hook stability) + const parameterIds = useMemo( + () => extractParameterIds(parameterNames, parameters), + [parameterNames, parameters] + ); + + // Fetch baseline values for all parameters in parallel + const { data, isLoading, isError } = useMultipleParameterValues( + parameterIds, + BASELINE_POLICY_ID, + { enabled: parameterIds.length > 0 } + ); + + return { + baselineValuesMap: data, + isLoading, + isError, + }; +} diff --git a/app/src/pages/report-output/DynamicsSubPage.tsx b/app/src/pages/report-output/DynamicsSubPage.tsx index 3c36bdec8..9bbd6d917 100644 --- a/app/src/pages/report-output/DynamicsSubPage.tsx +++ b/app/src/pages/report-output/DynamicsSubPage.tsx @@ -1,9 +1,12 @@ +import { useMemo } from 'react'; import { useSelector } from 'react-redux'; import { Box, Text } from '@mantine/core'; import ParameterTable from '@/components/report/ParameterTable'; import { getParamDefinitionDate } from '@/constants'; import { colors, spacing } from '@/designTokens'; import { useCurrentCountry } from '@/hooks/useCurrentCountry'; +import { useBaselineValuesForParameters } from '@/hooks/useParameterValues'; +import { useReportYear } from '@/hooks/useReportYear'; import { useCurrentLawId } from '@/hooks/useStaticMetadata'; import { useReportYear } from '@/hooks/useReportYear'; import { RootState } from '@/store'; @@ -60,6 +63,15 @@ export default function DynamicsSubPage({ policies, userPolicies }: DynamicsSubP const reportYear = useReportYear(); const reportDate = getParamDefinitionDate(reportYear ?? undefined); + // Collect dynamics parameters only + const paramList = useMemo( + () => (policies ? collectDynamicsParameterNames(policies, countryId) : []), + [policies, countryId] + ); + + // Fetch baseline values for all dynamics parameters from V2 API + const { baselineValuesMap } = useBaselineValuesForParameters(paramList, parameters); + if (!policies || policies.length === 0) { return
No policy data available
; } @@ -67,9 +79,6 @@ export default function DynamicsSubPage({ policies, userPolicies }: DynamicsSubP // Extract baseline and reform from policies array const { baseline, reform } = extractPoliciesFromArray(policies); - // Collect dynamics parameters only - const paramList = collectDynamicsParameterNames(policies, countryId); - // If no dynamics parameters, show empty state if (paramList.length === 0) { return ( @@ -116,7 +125,7 @@ export default function DynamicsSubPage({ policies, userPolicies }: DynamicsSubP valueColumnWidth={valueColumnWidth} renderColumnHeader={(column) => buildColumnHeaderText(column, userPolicies)} renderCurrentLawValue={(paramName) => - getCurrentLawParameterValue(paramName, parameters, reportDate) + getCurrentLawParameterValue(paramName, parameters, reportDate, baselineValuesMap) } renderColumnValue={(column, paramName) => { // For merged columns, just use the first policy since they're equal diff --git a/app/src/pages/report-output/PolicySubPage.tsx b/app/src/pages/report-output/PolicySubPage.tsx index f8cf0ffa6..b9edd942a 100644 --- a/app/src/pages/report-output/PolicySubPage.tsx +++ b/app/src/pages/report-output/PolicySubPage.tsx @@ -1,7 +1,9 @@ +import { useMemo } from 'react'; import { useSelector } from 'react-redux'; import ParameterTable from '@/components/report/ParameterTable'; import { getParamDefinitionDate } from '@/constants'; import { useCurrentCountry } from '@/hooks/useCurrentCountry'; +import { useBaselineValuesForParameters } from '@/hooks/useParameterValues'; import { useReportYear } from '@/hooks/useReportYear'; import { useCurrentLawId } from '@/hooks/useStaticMetadata'; import { RootState } from '@/store'; @@ -38,6 +40,15 @@ export default function PolicySubPage({ policies, userPolicies }: PolicySubPageP const reportYear = useReportYear(); const reportDate = getParamDefinitionDate(reportYear ?? undefined); + // Collect all unique parameter names across all policies + const paramList = useMemo( + () => (policies ? collectUniqueParameterNames(policies) : []), + [policies] + ); + + // Fetch baseline values for all parameters from V2 API + const { baselineValuesMap } = useBaselineValuesForParameters(paramList, parameters); + if (!policies || policies.length === 0) { return
No policy data available
; } @@ -51,9 +62,6 @@ export default function PolicySubPage({ policies, userPolicies }: PolicySubPageP // Determine column structure with smart collapsing const columns = determinePolicyColumns(undefined, baseline, reform); - // Collect all unique parameter names across all policies - const paramList = collectUniqueParameterNames(policies); - // Check if there are no policy changes (all policies are current law or have no parameters) const hasNoPolicyChanges = paramList.length === 0 || (policies.length === 1 && policies[0].id === String(currentLawId)); @@ -81,7 +89,7 @@ export default function PolicySubPage({ policies, userPolicies }: PolicySubPageP valueColumnWidth={valueColumnWidth} renderColumnHeader={(column) => buildColumnHeaderText(column, userPolicies, currentLawId)} renderCurrentLawValue={(paramName) => - getCurrentLawParameterValue(paramName, parameters, reportDate) + getCurrentLawParameterValue(paramName, parameters, reportDate, baselineValuesMap) } renderColumnValue={(column, paramName) => { // For merged columns, just use the first policy since they're equal diff --git a/app/src/pathways/report/components/PolicyParameterSelectorMain.tsx b/app/src/pathways/report/components/PolicyParameterSelectorMain.tsx index 36338153b..5f8724fe1 100644 --- a/app/src/pathways/report/components/PolicyParameterSelectorMain.tsx +++ b/app/src/pathways/report/components/PolicyParameterSelectorMain.tsx @@ -4,7 +4,8 @@ * Manages parameter display and modification without Redux */ -import { Container, Text, Title } from '@mantine/core'; +import { Container, Loader, Text, Title } from '@mantine/core'; +import { useParameterValues, BASELINE_POLICY_ID } from '@/hooks/useParameterValues'; import { ParameterMetadata } from '@/types/metadata'; import { PolicyStateProps } from '@/types/pathwayState'; import { getParameterByName } from '@/types/subIngredients/parameter'; @@ -24,7 +25,15 @@ export default function PolicyParameterSelectorMain({ policy, onPolicyUpdate, }: PolicyParameterSelectorMainProps) { - const baseValues = new ValueIntervalCollection(param.values as ValuesList); + // Fetch baseline parameter values on-demand from V2 API + const { data: fetchedBaselineValues, isLoading: isLoadingBaseline } = useParameterValues( + param.id, + BASELINE_POLICY_ID + ); + + // Use fetched values if available, otherwise fall back to metadata values (for backward compatibility) + const baselineValuesSource = fetchedBaselineValues ?? (param.values as ValuesList) ?? {}; + const baseValues = new ValueIntervalCollection(baselineValuesSource); // Always start reform with a copy of base values (reform line matches current law initially) const reformValues = new ValueIntervalCollection(baseValues); @@ -68,6 +77,7 @@ export default function PolicyParameterSelectorMain({ param={param} policy={policy} onPolicyUpdate={onPolicyUpdate} + baselineValues={baselineValuesSource} /> void; + /** Baseline (current law) values fetched from V2 API */ + baselineValues?: ValuesList; } export default function PolicyParameterSelectorValueSetter({ param, policy, onPolicyUpdate, + baselineValues, }: PolicyParameterSelectorValueSetterProps) { const countryId = useCurrentCountry(); const [mode, setMode] = useState(ValueSetterMode.DEFAULT); @@ -98,6 +105,7 @@ export default function PolicyParameterSelectorValueSetter({ setStartDate, endDate, setEndDate, + baselineValues, }; return ( diff --git a/app/src/pathways/report/components/valueSetters/DateValueSelector.tsx b/app/src/pathways/report/components/valueSetters/DateValueSelector.tsx index 405d4bd53..fac66e7a2 100644 --- a/app/src/pathways/report/components/valueSetters/DateValueSelector.tsx +++ b/app/src/pathways/report/components/valueSetters/DateValueSelector.tsx @@ -19,11 +19,12 @@ export function DateValueSelector(props: ValueSetterProps) { setStartDate, endDate, setEndDate, + baselineValues, } = props; // Local state for param value const [paramValue, setParamValue] = useState( - getDefaultValueForParam(param, policy, startDate) + getDefaultValueForParam(param, policy, startDate, baselineValues) ); // Set endDate to end of year of startDate @@ -34,13 +35,13 @@ export function DateValueSelector(props: ValueSetterProps) { } }, [startDate, setEndDate]); - // Update param value when startDate changes + // Update param value when startDate or baselineValues changes useEffect(() => { if (startDate) { - const newValue = getDefaultValueForParam(param, policy, startDate); + const newValue = getDefaultValueForParam(param, policy, startDate, baselineValues); setParamValue(newValue); } - }, [startDate, param, policy]); + }, [startDate, param, policy, baselineValues]); // Update intervals whenever local state changes useEffect(() => { diff --git a/app/src/pathways/report/components/valueSetters/DefaultValueSelector.tsx b/app/src/pathways/report/components/valueSetters/DefaultValueSelector.tsx index c01a459f2..997f8fa9c 100644 --- a/app/src/pathways/report/components/valueSetters/DefaultValueSelector.tsx +++ b/app/src/pathways/report/components/valueSetters/DefaultValueSelector.tsx @@ -19,11 +19,12 @@ export function DefaultValueSelector(props: ValueSetterProps) { setStartDate, endDate, setEndDate, + baselineValues, } = props; // Local state for param value const [paramValue, setParamValue] = useState( - getDefaultValueForParam(param, policy, startDate) + getDefaultValueForParam(param, policy, startDate, baselineValues) ); // Set endDate to 2100-12-31 for default mode @@ -31,13 +32,13 @@ export function DefaultValueSelector(props: ValueSetterProps) { setEndDate(FOREVER); }, [setEndDate]); - // Update param value when startDate changes + // Update param value when startDate or baselineValues changes useEffect(() => { if (startDate) { - const newValue = getDefaultValueForParam(param, policy, startDate); + const newValue = getDefaultValueForParam(param, policy, startDate, baselineValues); setParamValue(newValue); } - }, [startDate, param, policy]); + }, [startDate, param, policy, baselineValues]); // Update intervals whenever local state changes useEffect(() => { diff --git a/app/src/pathways/report/components/valueSetters/ValueSetterProps.ts b/app/src/pathways/report/components/valueSetters/ValueSetterProps.ts index dfc3d3b97..3383686d7 100644 --- a/app/src/pathways/report/components/valueSetters/ValueSetterProps.ts +++ b/app/src/pathways/report/components/valueSetters/ValueSetterProps.ts @@ -1,7 +1,7 @@ import { Dispatch, SetStateAction } from 'react'; import { ParameterMetadata } from '@/types/metadata'; import { PolicyStateProps } from '@/types/pathwayState'; -import { ValueInterval } from '@/types/subIngredients/valueInterval'; +import { ValueInterval, ValuesList } from '@/types/subIngredients/valueInterval'; export interface ValueSetterProps { minDate: string; @@ -14,4 +14,6 @@ export interface ValueSetterProps { setStartDate: Dispatch>; endDate: string; setEndDate: Dispatch>; + /** Baseline (current law) values fetched from V2 API */ + baselineValues?: ValuesList; } diff --git a/app/src/pathways/report/components/valueSetters/YearlyValueSelector.tsx b/app/src/pathways/report/components/valueSetters/YearlyValueSelector.tsx index e800a6224..3cac12fc6 100644 --- a/app/src/pathways/report/components/valueSetters/YearlyValueSelector.tsx +++ b/app/src/pathways/report/components/valueSetters/YearlyValueSelector.tsx @@ -19,11 +19,12 @@ export function YearlyValueSelector(props: ValueSetterProps) { setStartDate, endDate, setEndDate, + baselineValues, } = props; // Local state for param value const [paramValue, setParamValue] = useState( - getDefaultValueForParam(param, policy, startDate) + getDefaultValueForParam(param, policy, startDate, baselineValues) ); // Set endDate to end of year of startDate @@ -34,13 +35,13 @@ export function YearlyValueSelector(props: ValueSetterProps) { } }, [startDate, setEndDate]); - // Update param value when startDate changes + // Update param value when startDate or baselineValues changes useEffect(() => { if (startDate) { - const newValue = getDefaultValueForParam(param, policy, startDate); + const newValue = getDefaultValueForParam(param, policy, startDate, baselineValues); setParamValue(newValue); } - }, [startDate, param, policy]); + }, [startDate, param, policy, baselineValues]); // Update intervals whenever local state changes useEffect(() => { diff --git a/app/src/pathways/report/components/valueSetters/getDefaultValueForParam.ts b/app/src/pathways/report/components/valueSetters/getDefaultValueForParam.ts index 6cdf40ed8..5d169b6f8 100644 --- a/app/src/pathways/report/components/valueSetters/getDefaultValueForParam.ts +++ b/app/src/pathways/report/components/valueSetters/getDefaultValueForParam.ts @@ -1,16 +1,22 @@ import { ParameterMetadata } from '@/types/metadata'; import { PolicyStateProps } from '@/types/pathwayState'; import { getParameterByName } from '@/types/subIngredients/parameter'; -import { ValueIntervalCollection } from '@/types/subIngredients/valueInterval'; +import { ValueIntervalCollection, ValuesList } from '@/types/subIngredients/valueInterval'; /** * Helper function to get default value for a parameter at a specific date - * Priority: 1) User's reform value, 2) Baseline current law value + * Priority: 1) User's reform value, 2) Fetched baseline values, 3) Param metadata values + * + * @param param - The parameter metadata + * @param policy - The user's policy with any reform values + * @param date - The date to get the value for + * @param baselineValues - Optional baseline values fetched from V2 API */ export function getDefaultValueForParam( param: ParameterMetadata, policy: PolicyStateProps | null, - date: string + date: string, + baselineValues?: ValuesList ): any { // First check if user has set a reform value for this parameter if (policy) { @@ -24,7 +30,16 @@ export function getDefaultValueForParam( } } - // Fall back to baseline current law value from metadata + // Use fetched baseline values if available (V2 API) + if (baselineValues && Object.keys(baselineValues).length > 0) { + const collection = new ValueIntervalCollection(baselineValues); + const value = collection.getValueAtDate(date); + if (value !== undefined) { + return value; + } + } + + // Fall back to baseline current law value from param metadata (backward compatibility) if (param.values) { const collection = new ValueIntervalCollection(param.values as any); const value = collection.getValueAtDate(date); diff --git a/app/src/tests/fixtures/api/v2/apiV2Mocks.ts b/app/src/tests/fixtures/api/v2/apiV2Mocks.ts index 21ef7fbb1..90b23c8f8 100644 --- a/app/src/tests/fixtures/api/v2/apiV2Mocks.ts +++ b/app/src/tests/fixtures/api/v2/apiV2Mocks.ts @@ -102,8 +102,10 @@ export function createMockParameterValue( id: 'pv-1', parameter_id: 'param-1', policy_id: TEST_POLICY_IDS.BASELINE, - start_date: '2024-01-01', - value: 100, + dynamic_id: null, + start_date: '2024-01-01T00:00:00', + end_date: null, + value_json: 100, created_at: '2024-01-01T00:00:00Z', ...overrides, }; @@ -112,7 +114,7 @@ export function createMockParameterValue( export function createMockParameterValues( count: number, parameterId: string = 'param-1', - policyId: string = TEST_POLICY_IDS.BASELINE + policyId: string | null = TEST_POLICY_IDS.BASELINE ): V2ParameterValueMetadata[] { const baseYear = 2020; return Array.from({ length: count }, (_, i) => @@ -120,8 +122,9 @@ export function createMockParameterValues( id: `pv-${i}`, parameter_id: parameterId, policy_id: policyId, - start_date: `${baseYear + i}-01-01`, - value: 100 + i * 10, + start_date: `${baseYear + i}-01-01T00:00:00`, + end_date: i > 0 ? `${baseYear + i - 1}-01-01T00:00:00` : null, + value_json: 100 + i * 10, }) ); } diff --git a/app/src/tests/unit/adapters/MetadataAdapter.test.ts b/app/src/tests/unit/adapters/MetadataAdapter.test.ts index 139367fb8..ebc398a3b 100644 --- a/app/src/tests/unit/adapters/MetadataAdapter.test.ts +++ b/app/src/tests/unit/adapters/MetadataAdapter.test.ts @@ -236,17 +236,17 @@ describe('MetadataAdapter', () => { describe('parameterValuesFromV2', () => { it('given V2 parameter values then converts to ValuesList', () => { - // Given + // Given (note: API returns ISO timestamps like "2020-01-01T00:00:00") const v2Values = [ - createMockParameterValue({ start_date: '2020-01-01', value: 100 }), - createMockParameterValue({ start_date: '2021-01-01', value: 110 }), - createMockParameterValue({ start_date: '2022-01-01', value: 120 }), + createMockParameterValue({ start_date: '2020-01-01T00:00:00', value_json: 100 }), + createMockParameterValue({ start_date: '2021-01-01T00:00:00', value_json: 110 }), + createMockParameterValue({ start_date: '2022-01-01T00:00:00', value_json: 120 }), ]; // When const result = MetadataAdapter.parameterValuesFromV2(v2Values); - // Then + // Then (dates are converted to YYYY-MM-DD format) expect(result).toEqual({ '2020-01-01': 100, '2021-01-01': 110, @@ -268,9 +268,9 @@ describe('MetadataAdapter', () => { it('given values with different types then preserves types', () => { // Given const v2Values = [ - createMockParameterValue({ start_date: '2020-01-01', value: 100 }), - createMockParameterValue({ start_date: '2021-01-01', value: 0.25 }), - createMockParameterValue({ start_date: '2022-01-01', value: true }), + createMockParameterValue({ start_date: '2020-01-01T00:00:00', value_json: 100 }), + createMockParameterValue({ start_date: '2021-01-01T00:00:00', value_json: 0.25 }), + createMockParameterValue({ start_date: '2022-01-01T00:00:00', value_json: true }), ]; // When diff --git a/app/src/tests/unit/pages/report-output/PolicySubPage.test.tsx b/app/src/tests/unit/pages/report-output/PolicySubPage.test.tsx index 8e0497eb6..e4fd0f511 100644 --- a/app/src/tests/unit/pages/report-output/PolicySubPage.test.tsx +++ b/app/src/tests/unit/pages/report-output/PolicySubPage.test.tsx @@ -1,3 +1,4 @@ +import { QueryClient, QueryClientProvider } from '@tanstack/react-query'; import { configureStore } from '@reduxjs/toolkit'; import { render, screen, within } from '@test-utils'; import { Provider } from 'react-redux'; @@ -16,10 +17,35 @@ vi.mock('@/hooks/useCurrentCountry', () => ({ useCurrentCountry: () => 'us', })); +// Mock useReportYear hook +vi.mock('@/hooks/useReportYear', () => ({ + useReportYear: () => 2024, +})); + +// Mock useBaselineValuesForParameters to avoid actual API calls in tests +vi.mock('@/hooks/useParameterValues', () => ({ + useBaselineValuesForParameters: () => ({ + baselineValuesMap: {}, + isLoading: false, + isError: false, + }), +})); + describe('PolicySubPage - Design 4 Table Format (No Current Law)', () => { let store: any; + let queryClient: QueryClient; beforeEach(() => { + // Create a fresh QueryClient for each test + queryClient = new QueryClient({ + defaultOptions: { + queries: { + retry: false, + staleTime: 0, + }, + }, + }); + // Create a mock store with metadata reducer containing parameter metadata store = configureStore({ reducer: { @@ -46,7 +72,11 @@ describe('PolicySubPage - Design 4 Table Format (No Current Law)', () => { }); const renderWithStore = (ui: React.ReactElement) => { - return render({ui}); + return render( + + {ui} + + ); }; describe('Empty and error states', () => { @@ -231,9 +261,11 @@ describe('PolicySubPage - Design 4 Table Format (No Current Law)', () => { const props = createPolicySubPageProps.baselineOnly(); render( - - - + + + + + ); // Parameter name should be used as fallback label (appears twice: as label and as name) diff --git a/app/src/types/metadata.ts b/app/src/types/metadata.ts index 9b3a9a9a4..3325733de 100644 --- a/app/src/types/metadata.ts +++ b/app/src/types/metadata.ts @@ -47,8 +47,10 @@ export interface V2ParameterValueMetadata { id: string; parameter_id: string; policy_id: string | null; - start_date: string; // ISO date string (YYYY-MM-DD) - value: number | string | boolean; + dynamic_id: string | null; + start_date: string; // ISO timestamp (e.g., "2025-01-01T00:00:00") + end_date: string | null; // ISO timestamp or null for indefinite + value_json: number | string | boolean; // The actual parameter value created_at: string; } diff --git a/app/src/utils/policyTableHelpers.ts b/app/src/utils/policyTableHelpers.ts index 03a784cb5..b87b8799e 100644 --- a/app/src/utils/policyTableHelpers.ts +++ b/app/src/utils/policyTableHelpers.ts @@ -1,7 +1,7 @@ import { getParamDefinitionDate } from '@/constants'; import { Policy } from '@/types/ingredients/Policy'; import { ParameterMetadata } from '@/types/metadata'; -import { ValueIntervalCollection } from '@/types/subIngredients/valueInterval'; +import { ValueIntervalCollection, ValuesList } from '@/types/subIngredients/valueInterval'; export { determinePolicyColumns } from './policyComparison'; export type { PolicyColumn } from './policyComparison'; @@ -105,12 +105,14 @@ export function formatParameterValue(value: any, unit?: string): string { * @param paramName - The parameter identifier (e.g., "gov.hmrc.income_tax.rates.uk[0].rate") * @param parameters - The parameter metadata collection * @param date - ISO date string (YYYY-MM-DD) to query, defaults to current year via getParamDefinitionDate() + * @param baselineValuesMap - Optional map of parameter IDs to fetched baseline values from V2 API * @returns Formatted string value or '—' if not found */ export function getCurrentLawParameterValue( paramName: string, parameters: Record, - date: string = getParamDefinitionDate() + date: string = getParamDefinitionDate(), + baselineValuesMap?: Record ): string { const metadata = parameters[paramName]; @@ -119,7 +121,20 @@ export function getCurrentLawParameterValue( return '—'; } - // If no values defined, return dash + // Prefer fetched baseline values from V2 API (keyed by parameter ID) + if (baselineValuesMap && metadata.id && baselineValuesMap[metadata.id]) { + const fetchedValues = baselineValuesMap[metadata.id]; + if (Object.keys(fetchedValues).length > 0) { + const intervalCollection = new ValueIntervalCollection(fetchedValues); + const value = intervalCollection.getValueAtDate(date); + if (value !== undefined) { + const unit = metadata.unit || ''; + return formatParameterValue(value, unit); + } + } + } + + // Fall back to metadata values (backward compatibility) if (!metadata.values) { return '—'; } diff --git a/app/test-utils/render.tsx b/app/test-utils/render.tsx index 451f3b8cd..d561bcc10 100644 --- a/app/test-utils/render.tsx +++ b/app/test-utils/render.tsx @@ -1,3 +1,4 @@ +import { QueryClient, QueryClientProvider } from '@tanstack/react-query'; import { render as testingLibraryRender } from '@testing-library/react'; import { Provider as ReduxProvider } from 'react-redux'; import { MemoryRouter } from 'react-router-dom'; @@ -5,16 +6,34 @@ import { MantineProvider } from '@mantine/core'; import { store } from '../src/store'; import { policyEngineTheme } from '../src/theme'; +// Create a fresh QueryClient for each test to avoid shared state +function createTestQueryClient() { + return new QueryClient({ + defaultOptions: { + queries: { + // Disable retries in tests for faster failures + retry: false, + // Disable caching in tests to ensure fresh data + staleTime: 0, + }, + }, + }); +} + export function render(ui: React.ReactNode) { + const testQueryClient = createTestQueryClient(); + return testingLibraryRender(ui, { wrapper: ({ children }: { children: React.ReactNode }) => ( - - - - {children} - - - + + + + + {children} + + + + ), }); } diff --git a/app/test-utils/renderWithCountry.tsx b/app/test-utils/renderWithCountry.tsx index a06343f44..10fead807 100644 --- a/app/test-utils/renderWithCountry.tsx +++ b/app/test-utils/renderWithCountry.tsx @@ -1,3 +1,4 @@ +import { QueryClient, QueryClientProvider } from '@tanstack/react-query'; import { render as testingLibraryRender } from '@testing-library/react'; import { Provider as ReduxProvider } from 'react-redux'; import { MemoryRouter, Route, Routes } from 'react-router-dom'; @@ -5,23 +6,39 @@ import { MantineProvider } from '@mantine/core'; import { store } from '../src/store'; import { policyEngineTheme } from '../src/theme'; +// Create a fresh QueryClient for each test to avoid shared state +function createTestQueryClient() { + return new QueryClient({ + defaultOptions: { + queries: { + retry: false, + staleTime: 0, + }, + }, + }); +} + export function renderWithCountry( ui: React.ReactNode, countryId: string = 'us', path: string = `/${countryId}` ) { + const testQueryClient = createTestQueryClient(); + return testingLibraryRender(ui, { wrapper: ({ children }: { children: React.ReactNode }) => ( - - - - - - - - - - + + + + + + + + + + + + ), }); } From fd162d7f682d86c7a6cb9103c1ef5a6853f5b9fb Mon Sep 17 00:00:00 2001 From: Anthony Volk Date: Mon, 29 Dec 2025 22:19:07 +0400 Subject: [PATCH 21/32] fix: Properly pass metadata to household overview page in report output --- .../pages/report-output/DynamicsSubPage.tsx | 1 - .../pages/report-output/HouseholdOverview.tsx | 22 +++++++++++++++---- .../fixtures/hooks/metadataHooksMocks.ts | 1 + .../fixtures/utils/householdValuesMocks.ts | 20 ----------------- app/src/types/metadata.ts | 2 -- 5 files changed, 19 insertions(+), 27 deletions(-) diff --git a/app/src/pages/report-output/DynamicsSubPage.tsx b/app/src/pages/report-output/DynamicsSubPage.tsx index 9bbd6d917..04367c0a3 100644 --- a/app/src/pages/report-output/DynamicsSubPage.tsx +++ b/app/src/pages/report-output/DynamicsSubPage.tsx @@ -8,7 +8,6 @@ import { useCurrentCountry } from '@/hooks/useCurrentCountry'; import { useBaselineValuesForParameters } from '@/hooks/useParameterValues'; import { useReportYear } from '@/hooks/useReportYear'; import { useCurrentLawId } from '@/hooks/useStaticMetadata'; -import { useReportYear } from '@/hooks/useReportYear'; import { RootState } from '@/store'; import { Policy } from '@/types/ingredients/Policy'; import { UserPolicy } from '@/types/ingredients/UserPolicy'; diff --git a/app/src/pages/report-output/HouseholdOverview.tsx b/app/src/pages/report-output/HouseholdOverview.tsx index 8bbd0f54b..fec80f357 100644 --- a/app/src/pages/report-output/HouseholdOverview.tsx +++ b/app/src/pages/report-output/HouseholdOverview.tsx @@ -1,3 +1,4 @@ +import { useMemo } from 'react'; import { IconChevronDown, IconChevronRight, IconWallet } from '@tabler/icons-react'; import { useSelector } from 'react-redux'; import { Box, Collapse, Group, Stack, Text, UnstyledButton } from '@mantine/core'; @@ -5,10 +6,12 @@ import { useDisclosure } from '@mantine/hooks'; import HouseholdBreakdown from '@/components/household/HouseholdBreakdown'; import MetricCard from '@/components/report/MetricCard'; import { colors, spacing, typography } from '@/designTokens'; +import { useCurrentCountry } from '@/hooks/useCurrentCountry'; +import { useEntities } from '@/hooks/useStaticMetadata'; import { RootState } from '@/store'; import { Household } from '@/types/ingredients/Household'; import { calculateVariableComparison } from '@/utils/householdComparison'; -import { formatVariableValue } from '@/utils/householdValues'; +import { formatVariableValue, HouseholdMetadataContext } from '@/utils/householdValues'; interface HouseholdOverviewProps { outputs: Household[]; @@ -28,9 +31,20 @@ const HERO_ICON_SIZE = 48; */ export default function HouseholdOverview({ outputs, policyLabels }: HouseholdOverviewProps) { const [breakdownOpen, { toggle: toggleBreakdown }] = useDisclosure(false); - const metadata = useSelector((state: RootState) => state.metadata); + const countryId = useCurrentCountry(); + const reduxMetadata = useSelector((state: RootState) => state.metadata); + const entities = useEntities(countryId); + + // Build HouseholdMetadataContext by combining Redux variables with static entities + const metadataContext: HouseholdMetadataContext = useMemo( + () => ({ + variables: reduxMetadata.variables, + entities, + }), + [reduxMetadata.variables, entities] + ); - const rootVariable = metadata.variables.household_net_income; + const rootVariable = reduxMetadata.variables.household_net_income; if (!rootVariable) { return ( @@ -49,7 +63,7 @@ export default function HouseholdOverview({ outputs, policyLabels }: HouseholdOv 'household_net_income', baseline, reform, - metadata + metadataContext ); // Format the value diff --git a/app/src/tests/fixtures/hooks/metadataHooksMocks.ts b/app/src/tests/fixtures/hooks/metadataHooksMocks.ts index 6629babcf..dc38e3477 100644 --- a/app/src/tests/fixtures/hooks/metadataHooksMocks.ts +++ b/app/src/tests/fixtures/hooks/metadataHooksMocks.ts @@ -15,6 +15,7 @@ export const MOCK_METADATA_STATE_INITIAL: MetadataState = { loading: false, loaded: false, error: null, + progress: 0, currentCountry: null, version: null, variables: {}, diff --git a/app/src/tests/fixtures/utils/householdValuesMocks.ts b/app/src/tests/fixtures/utils/householdValuesMocks.ts index 3ba689e02..6497b61b4 100644 --- a/app/src/tests/fixtures/utils/householdValuesMocks.ts +++ b/app/src/tests/fixtures/utils/householdValuesMocks.ts @@ -58,26 +58,6 @@ export const MOCK_METADATA_CONTEXT: HouseholdMetadataContext = { description: 'An individual person', }, }, - parameters: {}, - variableModules: {}, - economyOptions: { - region: [], - time_period: [], - datasets: [], - }, - currentCountry: 'us', - currentLawId: 1, - basicInputs: [], - modelledPolicies: { - core: {}, - filtered: {}, - }, - version: '1.0.0', - loading: false, - error: null, - ...DEFAULT_V2_LOADING_STATES, - progress: 100, - parameterTree: null, }; export const MOCK_HOUSEHOLD_DATA: Household = { diff --git a/app/src/types/metadata.ts b/app/src/types/metadata.ts index 3325733de..fcf8ca65a 100644 --- a/app/src/types/metadata.ts +++ b/app/src/types/metadata.ts @@ -213,8 +213,6 @@ export interface ParameterTreeNode { */ export interface MetadataState { currentCountry: string | null; - loading: boolean; - error: string | null; /** Download progress percentage (0-100) for metadata fetch */ progress: number; From 7e4bbf0fa24995dec2ff5e5b4a2bfe25145700bd Mon Sep 17 00:00:00 2001 From: Anthony Volk Date: Mon, 29 Dec 2025 23:02:34 +0400 Subject: [PATCH 22/32] fix: Fix current law IDs --- app/src/data/static/index.ts | 2 +- app/src/data/static/modelledPolicies.ts | 14 +++++++++----- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/app/src/data/static/index.ts b/app/src/data/static/index.ts index f778fc4e5..12838478f 100644 --- a/app/src/data/static/index.ts +++ b/app/src/data/static/index.ts @@ -28,7 +28,7 @@ export { US_REGIONS, UK_REGIONS } from './staticRegions'; export { getModelledPolicies, getCurrentLawId, - CURRENT_LAW_ID, + CURRENT_LAW_IDS, US_MODELLED_POLICIES, UK_MODELLED_POLICIES, type PolicyInfo, diff --git a/app/src/data/static/modelledPolicies.ts b/app/src/data/static/modelledPolicies.ts index ce2bc0afa..f106feb92 100644 --- a/app/src/data/static/modelledPolicies.ts +++ b/app/src/data/static/modelledPolicies.ts @@ -23,7 +23,7 @@ export interface ModelledPolicies { export const US_MODELLED_POLICIES: ModelledPolicies = { core: { baseline: { - id: 1, + id: 2, label: 'Current law', description: 'The current US tax and benefit system', }, @@ -60,13 +60,17 @@ export function getModelledPolicies(countryId: string): ModelledPolicies { } /** - * Current law ID (same for all countries) + * Current law IDs by country + * US: 2, UK: 1 */ -export const CURRENT_LAW_ID = 1; +export const CURRENT_LAW_IDS: Record = { + us: 2, + uk: 1, +}; /** * Get current law ID for a country */ -export function getCurrentLawId(_countryId: string): number { - return CURRENT_LAW_ID; +export function getCurrentLawId(countryId: string): number { + return CURRENT_LAW_IDS[countryId] ?? 1; } From 5c285f98357d9218093263c3b92b7f743359d773 Mon Sep 17 00:00:00 2001 From: Anthony Volk Date: Tue, 30 Dec 2025 00:29:04 +0400 Subject: [PATCH 23/32] fix: Create new param metadata tree builder func --- app/src/libs/buildParameterTree.ts | 136 +++++++++++++++++++++++++++- app/src/reducers/metadataReducer.ts | 6 +- 2 files changed, 138 insertions(+), 4 deletions(-) diff --git a/app/src/libs/buildParameterTree.ts b/app/src/libs/buildParameterTree.ts index f227004df..6801451ff 100644 --- a/app/src/libs/buildParameterTree.ts +++ b/app/src/libs/buildParameterTree.ts @@ -1,4 +1,4 @@ -import { MetadataApiPayload } from '@/types/metadata'; +import { MetadataApiPayload, ParameterMetadata } from '@/types/metadata'; export interface ParameterTreeNode { name: string; @@ -7,6 +7,7 @@ export interface ParameterTreeNode { children?: ParameterTreeNode[]; type?: 'parameterNode' | 'parameter'; // Include metadata for actual parameters + id?: string; parameter?: string; description?: string | null; unit?: string | null; @@ -134,6 +135,139 @@ export function buildParameterTree(parameters: Record): ParameterTr return govTree; } +/** + * Prefixes to exclude from the parameter tree. + * These are internal/calibration parameters not meant for policy editing. + */ +const EXCLUDED_PREFIXES = [ + 'calibration.', + 'gov.abolitions.', + 'taxsim.', +]; + +/** + * Checks if a parameter name should be included in the tree. + * V2 API returns all parameters, so we filter to only policy-relevant ones. + */ +function shouldIncludeParameter(paramName: string): boolean { + // Must start with "gov." to be a policy parameter + if (!paramName.startsWith('gov.')) { + return false; + } + + // Exclude internal/calibration parameters + for (const prefix of EXCLUDED_PREFIXES) { + if (paramName.startsWith(prefix)) { + return false; + } + } + + return true; +} + +/** + * Builds a hierarchical parameter tree from V2 API parameters. + * + * Unlike the V1 version, V2 parameters don't have economy/household flags. + * Instead, we filter based on the parameter name prefix: + * - Include: Parameters starting with "gov." (policy parameters) + * - Exclude: calibration.*, gov.abolitions.*, taxsim.* + * + * @param parameters - Record of parameters keyed by name from V2 API + * @returns The root "gov" node of the parameter tree, or undefined if empty + */ +export function buildParameterTreeV2( + parameters: Record +): ParameterTreeNode | undefined { + const tree: { children?: ParameterTreeNode[] } = {}; + + for (const parameter of Object.values(parameters)) { + // Use the parameter path (name) for filtering + const paramPath = parameter.parameter || parameter.name || ''; + + if (!shouldIncludeParameter(paramPath)) { + continue; + } + + const nodeToInsert: ParameterTreeNode = { + name: paramPath, + label: capitalize( + (parameter.label || paramPath.split(/\.|\[/).pop() || '').replaceAll('_', ' ') + ), + index: 0, + type: 'parameter', + id: parameter.id, + parameter: paramPath, + description: parameter.description, + unit: parameter.unit, + period: parameter.period, + values: parameter.values, + }; + + // Split based on . or [ + const pathComponents = paramPath.split(/\.|\[/); + // Keep track of the delimiters so we can reconstruct the path later + const delimiters = paramPath.match(/\.|\[/g); + + let currentNode = tree; + let cumulativePath = ''; + + // For a given path "x.y.z.a", create the nodes x, x.y and x.y.z if they don't exist + for (const key of pathComponents.slice(0, -1)) { + cumulativePath += key; + const fixedCumulativePath = cumulativePath; + + // Try to get label from the parameters record, fall back to the key + let label = (cumulativePath in parameters && parameters[cumulativePath].label) || key; + + // Transform e.g. "0]" -> "Bracket 1" + if (key.endsWith(']')) { + label = `Bracket ${parseInt(key.slice(0, -1), 10) + 1}`; + } + label = capitalize(label.replaceAll('_', ' ')); + + if (!currentNode.children) { + currentNode.children = []; + } + + if (!currentNode.children.find((child) => child.name === fixedCumulativePath)) { + currentNode.children.push({ + label, + name: cumulativePath, + index: 0, + children: [], + type: 'parameterNode', + }); + } + + currentNode = currentNode.children.find((child) => child.name === fixedCumulativePath)!; + + // Re-add the delimiter to the cumulative path + if (delimiters) { + cumulativePath += delimiters.shift(); + } + } + + try { + if (!currentNode.children) { + currentNode.children = []; + } + currentNode.children.push(nodeToInsert); + } catch (e) { + console.error('Error inserting node', nodeToInsert, 'into', currentNode); + } + } + + const govTree = tree.children?.find((child) => child.name === 'gov'); + + // Sort the tree alphabetically by label + if (govTree?.children) { + sortTreeInPlace(govTree.children); + } + + return govTree; +} + /** * Converts metadata API response to parameter tree format */ diff --git a/app/src/reducers/metadataReducer.ts b/app/src/reducers/metadataReducer.ts index 76cb19fd8..6adcb5659 100644 --- a/app/src/reducers/metadataReducer.ts +++ b/app/src/reducers/metadataReducer.ts @@ -6,7 +6,7 @@ import { fetchModelVersion, } from "@/api/v2"; import { MetadataAdapter } from "@/adapters"; -import { buildParameterTree } from "@/libs/buildParameterTree"; +import { buildParameterTreeV2 } from "@/libs/buildParameterTree"; import { MetadataState } from "@/types/metadata"; /** @@ -103,9 +103,9 @@ const metadataSlice = createSlice({ ); state.parameters = parametersRecord; - // Build parameter tree + // Build parameter tree from V2 API data try { - state.parameterTree = buildParameterTree(parametersRecord) || null; + state.parameterTree = buildParameterTreeV2(parametersRecord) || null; } catch { state.parameterTree = null; } From 6c41ae9d4b58fcb850c7e3c1683cc6687ce5cdce Mon Sep 17 00:00:00 2001 From: Anthony Volk Date: Tue, 13 Jan 2026 01:28:37 +0300 Subject: [PATCH 24/32] feat: Use new tax_benefit_model_name URL param --- app/src/api/v2/datasets.ts | 6 +- app/src/api/v2/index.ts | 4 +- app/src/api/v2/parameters.ts | 6 +- app/src/api/v2/taxBenefitModels.ts | 80 +++++++--- app/src/api/v2/variables.ts | 6 +- app/src/tests/fixtures/api/v2/apiV2Mocks.ts | 25 ++-- app/src/tests/unit/api/v2/datasets.test.ts | 8 +- app/src/tests/unit/api/v2/parameters.test.ts | 10 +- .../unit/api/v2/taxBenefitModels.test.ts | 141 +++++++++++++----- app/src/tests/unit/api/v2/variables.test.ts | 10 +- 10 files changed, 201 insertions(+), 95 deletions(-) diff --git a/app/src/api/v2/datasets.ts b/app/src/api/v2/datasets.ts index 245673681..bcd766bc8 100644 --- a/app/src/api/v2/datasets.ts +++ b/app/src/api/v2/datasets.ts @@ -1,13 +1,13 @@ -import { API_V2_BASE_URL, getModelId } from "./taxBenefitModels"; +import { API_V2_BASE_URL, getModelName } from "./taxBenefitModels"; import type { V2DatasetMetadata } from "@/types/metadata"; /** * Fetch all datasets for a country */ export async function fetchDatasets(countryId: string): Promise { - const modelId = getModelId(countryId); + const modelName = getModelName(countryId); const res = await fetch( - `${API_V2_BASE_URL}/datasets/?tax_benefit_model_id=${modelId}`, + `${API_V2_BASE_URL}/datasets/?tax_benefit_model_name=${modelName}`, ); if (!res.ok) { diff --git a/app/src/api/v2/index.ts b/app/src/api/v2/index.ts index 319119aac..4ac7f2475 100644 --- a/app/src/api/v2/index.ts +++ b/app/src/api/v2/index.ts @@ -1,8 +1,8 @@ // Tax benefit models export { API_V2_BASE_URL, - COUNTRY_TO_MODEL_ID, - getModelId, + COUNTRY_TO_MODEL_NAME, + getModelName, fetchTaxBenefitModels, fetchModelVersion, fetchModelVersionId, diff --git a/app/src/api/v2/parameters.ts b/app/src/api/v2/parameters.ts index 9b5484c15..3cc67fe69 100644 --- a/app/src/api/v2/parameters.ts +++ b/app/src/api/v2/parameters.ts @@ -1,13 +1,13 @@ -import { API_V2_BASE_URL, getModelId } from "./taxBenefitModels"; +import { API_V2_BASE_URL, getModelName } from "./taxBenefitModels"; import type { V2ParameterMetadata } from "@/types/metadata"; /** * Fetch all parameters for a country. */ export async function fetchParameters(countryId: string): Promise { - const modelId = getModelId(countryId); + const modelName = getModelName(countryId); const res = await fetch( - `${API_V2_BASE_URL}/parameters/?tax_benefit_model_id=${modelId}&limit=10000`, + `${API_V2_BASE_URL}/parameters/?tax_benefit_model_name=${modelName}&limit=10000`, ); if (!res.ok) { diff --git a/app/src/api/v2/taxBenefitModels.ts b/app/src/api/v2/taxBenefitModels.ts index 5fb49928f..aa1a96ff6 100644 --- a/app/src/api/v2/taxBenefitModels.ts +++ b/app/src/api/v2/taxBenefitModels.ts @@ -1,8 +1,12 @@ export const API_V2_BASE_URL = "https://v2.api.policyengine.org"; -export const COUNTRY_TO_MODEL_ID: Record = { - us: "8ac12923-1282-420e-a440-0fa60d43950a", - uk: "00652f95-f350-4932-b65d-9f9f03b4b8eb", +/** + * Map country IDs to their API model names. + * The API uses model names (e.g., "policyengine-us") for filtering. + */ +export const COUNTRY_TO_MODEL_NAME: Record = { + us: "policyengine-us", + uk: "policyengine-uk", }; export interface TaxBenefitModel { @@ -32,54 +36,82 @@ export async function fetchTaxBenefitModels(): Promise { } /** - * Get the model ID for a country + * Get the model name for a country (e.g., "policyengine-us") */ -export function getModelId(countryId: string): string { - const modelId = COUNTRY_TO_MODEL_ID[countryId]; - if (!modelId) { +export function getModelName(countryId: string): string { + const modelName = COUNTRY_TO_MODEL_NAME[countryId]; + if (!modelName) { throw new Error(`Unknown country: ${countryId}`); } - return modelId; + return modelName; } /** * Fetch the current version for a country's model */ export async function fetchModelVersion(countryId: string): Promise { - const modelId = getModelId(countryId); - const res = await fetch( - `${API_V2_BASE_URL}/tax-benefit-model-versions/?model_id=${modelId}`, - ); + const modelName = getModelName(countryId); + const res = await fetch(`${API_V2_BASE_URL}/tax-benefit-models/`); if (!res.ok) { - throw new Error(`Failed to fetch model version for ${countryId}`); + throw new Error(`Failed to fetch models`); + } + + const models: TaxBenefitModel[] = await res.json(); + const model = models.find((m) => m.name === modelName); + if (!model) { + throw new Error(`Model not found for ${countryId}`); + } + + const versionsRes = await fetch( + `${API_V2_BASE_URL}/tax-benefit-model-versions/`, + ); + + if (!versionsRes.ok) { + throw new Error(`Failed to fetch model versions`); } - const versions: TaxBenefitModelVersion[] = await res.json(); - if (versions.length === 0) { + const versions: TaxBenefitModelVersion[] = await versionsRes.json(); + const modelVersions = versions.filter((v) => v.model_id === model.id); + + if (modelVersions.length === 0) { throw new Error(`No versions found for ${countryId}`); } - return versions[0].version; + return modelVersions[0].version; } /** * Fetch the current version ID for a country's model */ export async function fetchModelVersionId(countryId: string): Promise { - const modelId = getModelId(countryId); - const res = await fetch( - `${API_V2_BASE_URL}/tax-benefit-model-versions/?model_id=${modelId}`, - ); + const modelName = getModelName(countryId); + const res = await fetch(`${API_V2_BASE_URL}/tax-benefit-models/`); if (!res.ok) { - throw new Error(`Failed to fetch model version for ${countryId}`); + throw new Error(`Failed to fetch models`); + } + + const models: TaxBenefitModel[] = await res.json(); + const model = models.find((m) => m.name === modelName); + if (!model) { + throw new Error(`Model not found for ${countryId}`); } - const versions: TaxBenefitModelVersion[] = await res.json(); - if (versions.length === 0) { + const versionsRes = await fetch( + `${API_V2_BASE_URL}/tax-benefit-model-versions/`, + ); + + if (!versionsRes.ok) { + throw new Error(`Failed to fetch model versions`); + } + + const versions: TaxBenefitModelVersion[] = await versionsRes.json(); + const modelVersions = versions.filter((v) => v.model_id === model.id); + + if (modelVersions.length === 0) { throw new Error(`No versions found for ${countryId}`); } - return versions[0].id; + return modelVersions[0].id; } diff --git a/app/src/api/v2/variables.ts b/app/src/api/v2/variables.ts index 81d34fcd5..4848d38ff 100644 --- a/app/src/api/v2/variables.ts +++ b/app/src/api/v2/variables.ts @@ -1,13 +1,13 @@ -import { API_V2_BASE_URL, getModelId } from "./taxBenefitModels"; +import { API_V2_BASE_URL, getModelName } from "./taxBenefitModels"; import type { V2VariableMetadata } from "@/types/metadata"; /** * Fetch all variables for a country. */ export async function fetchVariables(countryId: string): Promise { - const modelId = getModelId(countryId); + const modelName = getModelName(countryId); const res = await fetch( - `${API_V2_BASE_URL}/variables/?tax_benefit_model_id=${modelId}&limit=10000`, + `${API_V2_BASE_URL}/variables/?tax_benefit_model_name=${modelName}&limit=10000`, ); if (!res.ok) { diff --git a/app/src/tests/fixtures/api/v2/apiV2Mocks.ts b/app/src/tests/fixtures/api/v2/apiV2Mocks.ts index 90b23c8f8..88a34f11b 100644 --- a/app/src/tests/fixtures/api/v2/apiV2Mocks.ts +++ b/app/src/tests/fixtures/api/v2/apiV2Mocks.ts @@ -129,12 +129,18 @@ export function createMockParameterValues( ); } -// Model IDs +// Model IDs (UUIDs returned in API responses) export const MODEL_IDS = { US: '8ac12923-1282-420e-a440-0fa60d43950a', UK: '00652f95-f350-4932-b65d-9f9f03b4b8eb', } as const; +// Model names (used for API query parameters) +export const MODEL_NAMES = { + US: 'policyengine-us', + UK: 'policyengine-uk', +} as const; + // API Base URL export const API_V2_BASE_URL = 'https://v2.api.policyengine.org'; @@ -192,8 +198,8 @@ export function mockFetchError(status: number = HTTP_STATUS.INTERNAL_SERVER_ERRO // Sample API responses export const SAMPLE_RESPONSES = { TAX_BENEFIT_MODELS: [ - createMockTaxBenefitModel({ id: MODEL_IDS.US, name: 'US Model' }), - createMockTaxBenefitModel({ id: MODEL_IDS.UK, name: 'UK Model' }), + createMockTaxBenefitModel({ id: MODEL_IDS.US, name: MODEL_NAMES.US }), + createMockTaxBenefitModel({ id: MODEL_IDS.UK, name: MODEL_NAMES.UK }), ], MODEL_VERSIONS: [createMockModelVersion()], EMPTY_VERSIONS: [] as TaxBenefitModelVersion[], @@ -206,13 +212,12 @@ export const SAMPLE_RESPONSES = { // Expected API endpoints export const API_ENDPOINTS = { TAX_BENEFIT_MODELS: `${API_V2_BASE_URL}/tax-benefit-models/`, - MODEL_VERSIONS: (modelId: string) => - `${API_V2_BASE_URL}/tax-benefit-model-versions/?model_id=${modelId}`, - VARIABLES: (modelId: string, limit: number = 10000) => - `${API_V2_BASE_URL}/variables/?tax_benefit_model_id=${modelId}&limit=${limit}`, - PARAMETERS: (modelId: string, limit: number = 10000) => - `${API_V2_BASE_URL}/parameters/?tax_benefit_model_id=${modelId}&limit=${limit}`, - DATASETS: (modelId: string) => `${API_V2_BASE_URL}/datasets/?tax_benefit_model_id=${modelId}`, + TAX_BENEFIT_MODEL_VERSIONS: `${API_V2_BASE_URL}/tax-benefit-model-versions/`, + VARIABLES: (modelName: string, limit: number = 10000) => + `${API_V2_BASE_URL}/variables/?tax_benefit_model_name=${modelName}&limit=${limit}`, + PARAMETERS: (modelName: string, limit: number = 10000) => + `${API_V2_BASE_URL}/parameters/?tax_benefit_model_name=${modelName}&limit=${limit}`, + DATASETS: (modelName: string) => `${API_V2_BASE_URL}/datasets/?tax_benefit_model_name=${modelName}`, PARAMETER_VALUES: (parameterId: string, policyId: string) => `${API_V2_BASE_URL}/parameter-values/?parameter_id=${parameterId}&policy_id=${policyId}`, } as const; diff --git a/app/src/tests/unit/api/v2/datasets.test.ts b/app/src/tests/unit/api/v2/datasets.test.ts index a817d35b2..d63312ee1 100644 --- a/app/src/tests/unit/api/v2/datasets.test.ts +++ b/app/src/tests/unit/api/v2/datasets.test.ts @@ -1,7 +1,7 @@ import { describe, expect, it, vi, beforeEach, afterEach } from 'vitest'; import { TEST_COUNTRIES, - MODEL_IDS, + MODEL_NAMES, SAMPLE_RESPONSES, API_ENDPOINTS, mockFetchSuccess, @@ -32,10 +32,10 @@ describe('datasets', () => { // Then expect(result).toEqual(SAMPLE_RESPONSES.DATASETS); - expect(global.fetch).toHaveBeenCalledWith(API_ENDPOINTS.DATASETS(MODEL_IDS.US)); + expect(global.fetch).toHaveBeenCalledWith(API_ENDPOINTS.DATASETS(MODEL_NAMES.US)); }); - it('given UK country then fetches datasets with correct model ID', async () => { + it('given UK country then fetches datasets with correct model name', async () => { // Given vi.mocked(global.fetch).mockResolvedValue(mockFetchSuccess(SAMPLE_RESPONSES.DATASETS)); @@ -43,7 +43,7 @@ describe('datasets', () => { await fetchDatasets(TEST_COUNTRIES.UK); // Then - expect(global.fetch).toHaveBeenCalledWith(API_ENDPOINTS.DATASETS(MODEL_IDS.UK)); + expect(global.fetch).toHaveBeenCalledWith(API_ENDPOINTS.DATASETS(MODEL_NAMES.UK)); }); it('given failed response then throws error', async () => { diff --git a/app/src/tests/unit/api/v2/parameters.test.ts b/app/src/tests/unit/api/v2/parameters.test.ts index 2126b7fbd..2f48471fc 100644 --- a/app/src/tests/unit/api/v2/parameters.test.ts +++ b/app/src/tests/unit/api/v2/parameters.test.ts @@ -1,7 +1,7 @@ import { describe, expect, it, vi, beforeEach, afterEach } from 'vitest'; import { TEST_COUNTRIES, - MODEL_IDS, + MODEL_NAMES, SAMPLE_RESPONSES, API_ENDPOINTS, mockFetchSuccess, @@ -23,7 +23,7 @@ describe('parameters', () => { }); describe('fetchParameters', () => { - it('given US country then fetches parameters with correct model ID', async () => { + it('given US country then fetches parameters with correct model name', async () => { // Given vi.mocked(global.fetch).mockResolvedValue(mockFetchSuccess(SAMPLE_RESPONSES.PARAMETERS)); @@ -32,10 +32,10 @@ describe('parameters', () => { // Then expect(result).toEqual(SAMPLE_RESPONSES.PARAMETERS); - expect(global.fetch).toHaveBeenCalledWith(API_ENDPOINTS.PARAMETERS(MODEL_IDS.US)); + expect(global.fetch).toHaveBeenCalledWith(API_ENDPOINTS.PARAMETERS(MODEL_NAMES.US)); }); - it('given UK country then fetches parameters with correct model ID', async () => { + it('given UK country then fetches parameters with correct model name', async () => { // Given vi.mocked(global.fetch).mockResolvedValue(mockFetchSuccess(SAMPLE_RESPONSES.PARAMETERS)); @@ -43,7 +43,7 @@ describe('parameters', () => { await fetchParameters(TEST_COUNTRIES.UK); // Then - expect(global.fetch).toHaveBeenCalledWith(API_ENDPOINTS.PARAMETERS(MODEL_IDS.UK)); + expect(global.fetch).toHaveBeenCalledWith(API_ENDPOINTS.PARAMETERS(MODEL_NAMES.UK)); }); it('given failed response then throws error', async () => { diff --git a/app/src/tests/unit/api/v2/taxBenefitModels.test.ts b/app/src/tests/unit/api/v2/taxBenefitModels.test.ts index fd36291b7..1d9f6145c 100644 --- a/app/src/tests/unit/api/v2/taxBenefitModels.test.ts +++ b/app/src/tests/unit/api/v2/taxBenefitModels.test.ts @@ -1,11 +1,13 @@ import { describe, expect, it, vi, beforeEach, afterEach } from 'vitest'; import { TEST_COUNTRIES, - MODEL_IDS, + MODEL_NAMES, SAMPLE_RESPONSES, API_ENDPOINTS, mockFetchSuccess, mockFetchError, + createMockTaxBenefitModel, + createMockModelVersion, } from '@/tests/fixtures/api/v2/apiV2Mocks'; // Import the module @@ -13,8 +15,8 @@ import { fetchTaxBenefitModels, fetchModelVersion, fetchModelVersionId, - getModelId, - COUNTRY_TO_MODEL_ID, + getModelName, + COUNTRY_TO_MODEL_NAME, API_V2_BASE_URL, } from '@/api/v2/taxBenefitModels'; @@ -30,15 +32,15 @@ describe('taxBenefitModels', () => { global.fetch = originalFetch; }); - describe('COUNTRY_TO_MODEL_ID', () => { - it('given US country then returns correct model ID', () => { + describe('COUNTRY_TO_MODEL_NAME', () => { + it('given US country then returns correct model name', () => { // Then - expect(COUNTRY_TO_MODEL_ID.us).toBe(MODEL_IDS.US); + expect(COUNTRY_TO_MODEL_NAME.us).toBe(MODEL_NAMES.US); }); - it('given UK country then returns correct model ID', () => { + it('given UK country then returns correct model name', () => { // Then - expect(COUNTRY_TO_MODEL_ID.uk).toBe(MODEL_IDS.UK); + expect(COUNTRY_TO_MODEL_NAME.uk).toBe(MODEL_NAMES.UK); }); }); @@ -49,26 +51,26 @@ describe('taxBenefitModels', () => { }); }); - describe('getModelId', () => { - it('given US country then returns US model ID', () => { + describe('getModelName', () => { + it('given US country then returns US model name', () => { // When - const result = getModelId(TEST_COUNTRIES.US); + const result = getModelName(TEST_COUNTRIES.US); // Then - expect(result).toBe(MODEL_IDS.US); + expect(result).toBe(MODEL_NAMES.US); }); - it('given UK country then returns UK model ID', () => { + it('given UK country then returns UK model name', () => { // When - const result = getModelId(TEST_COUNTRIES.UK); + const result = getModelName(TEST_COUNTRIES.UK); // Then - expect(result).toBe(MODEL_IDS.UK); + expect(result).toBe(MODEL_NAMES.UK); }); it('given unknown country then throws error', () => { // When/Then - expect(() => getModelId('unknown')).toThrow('Unknown country: unknown'); + expect(() => getModelName('unknown')).toThrow('Unknown country: unknown'); }); }); @@ -97,35 +99,76 @@ describe('taxBenefitModels', () => { }); describe('fetchModelVersion', () => { + // Model ID used for filtering versions + const US_MODEL_ID = 'model-id-us'; + it('given US country with versions then returns first version string', async () => { // Given - vi.mocked(global.fetch).mockResolvedValue( - mockFetchSuccess(SAMPLE_RESPONSES.MODEL_VERSIONS) - ); + const mockModels = [ + createMockTaxBenefitModel({ id: US_MODEL_ID, name: MODEL_NAMES.US }), + ]; + const mockVersions = [ + createMockModelVersion({ id: 'v1', model_id: US_MODEL_ID, version: '1.0.0' }), + ]; + + vi.mocked(global.fetch) + .mockResolvedValueOnce(mockFetchSuccess(mockModels)) + .mockResolvedValueOnce(mockFetchSuccess(mockVersions)); // When const result = await fetchModelVersion(TEST_COUNTRIES.US); // Then - expect(result).toBe(SAMPLE_RESPONSES.MODEL_VERSIONS[0].version); - expect(global.fetch).toHaveBeenCalledWith(API_ENDPOINTS.MODEL_VERSIONS(MODEL_IDS.US)); + expect(result).toBe('1.0.0'); + expect(global.fetch).toHaveBeenCalledTimes(2); + expect(global.fetch).toHaveBeenNthCalledWith(1, API_ENDPOINTS.TAX_BENEFIT_MODELS); + expect(global.fetch).toHaveBeenNthCalledWith(2, API_ENDPOINTS.TAX_BENEFIT_MODEL_VERSIONS); }); - it('given failed response then throws error', async () => { + it('given failed models fetch then throws error', async () => { // Given vi.mocked(global.fetch).mockResolvedValue(mockFetchError()); + // When/Then + await expect(fetchModelVersion(TEST_COUNTRIES.US)).rejects.toThrow('Failed to fetch models'); + }); + + it('given model not found then throws error', async () => { + // Given + const mockModels = [ + createMockTaxBenefitModel({ id: 'other-id', name: 'other-model' }), + ]; + vi.mocked(global.fetch).mockResolvedValue(mockFetchSuccess(mockModels)); + // When/Then await expect(fetchModelVersion(TEST_COUNTRIES.US)).rejects.toThrow( - `Failed to fetch model version for ${TEST_COUNTRIES.US}` + `Model not found for ${TEST_COUNTRIES.US}` ); }); - it('given empty versions array then throws error', async () => { + it('given failed versions fetch then throws error', async () => { // Given - vi.mocked(global.fetch).mockResolvedValue( - mockFetchSuccess(SAMPLE_RESPONSES.EMPTY_VERSIONS) + const mockModels = [ + createMockTaxBenefitModel({ id: US_MODEL_ID, name: MODEL_NAMES.US }), + ]; + vi.mocked(global.fetch) + .mockResolvedValueOnce(mockFetchSuccess(mockModels)) + .mockResolvedValueOnce(mockFetchError()); + + // When/Then + await expect(fetchModelVersion(TEST_COUNTRIES.US)).rejects.toThrow( + 'Failed to fetch model versions' ); + }); + + it('given empty versions array then throws error', async () => { + // Given + const mockModels = [ + createMockTaxBenefitModel({ id: US_MODEL_ID, name: MODEL_NAMES.US }), + ]; + vi.mocked(global.fetch) + .mockResolvedValueOnce(mockFetchSuccess(mockModels)) + .mockResolvedValueOnce(mockFetchSuccess([])); // When/Then await expect(fetchModelVersion(TEST_COUNTRIES.US)).rejects.toThrow( @@ -135,35 +178,61 @@ describe('taxBenefitModels', () => { }); describe('fetchModelVersionId', () => { + // Model ID used for filtering versions + const US_MODEL_ID = 'model-id-us'; + it('given US country with versions then returns first version ID', async () => { // Given - vi.mocked(global.fetch).mockResolvedValue( - mockFetchSuccess(SAMPLE_RESPONSES.MODEL_VERSIONS) - ); + const mockModels = [ + createMockTaxBenefitModel({ id: US_MODEL_ID, name: MODEL_NAMES.US }), + ]; + const mockVersions = [ + createMockModelVersion({ id: 'version-id-123', model_id: US_MODEL_ID, version: '1.0.0' }), + ]; + + vi.mocked(global.fetch) + .mockResolvedValueOnce(mockFetchSuccess(mockModels)) + .mockResolvedValueOnce(mockFetchSuccess(mockVersions)); // When const result = await fetchModelVersionId(TEST_COUNTRIES.US); // Then - expect(result).toBe(SAMPLE_RESPONSES.MODEL_VERSIONS[0].id); - expect(global.fetch).toHaveBeenCalledWith(API_ENDPOINTS.MODEL_VERSIONS(MODEL_IDS.US)); + expect(result).toBe('version-id-123'); + expect(global.fetch).toHaveBeenCalledTimes(2); + expect(global.fetch).toHaveBeenNthCalledWith(1, API_ENDPOINTS.TAX_BENEFIT_MODELS); + expect(global.fetch).toHaveBeenNthCalledWith(2, API_ENDPOINTS.TAX_BENEFIT_MODEL_VERSIONS); }); - it('given failed response then throws error', async () => { + it('given failed models fetch then throws error', async () => { // Given vi.mocked(global.fetch).mockResolvedValue(mockFetchError()); + // When/Then + await expect(fetchModelVersionId(TEST_COUNTRIES.US)).rejects.toThrow('Failed to fetch models'); + }); + + it('given model not found then throws error', async () => { + // Given + const mockModels = [ + createMockTaxBenefitModel({ id: 'other-id', name: 'other-model' }), + ]; + vi.mocked(global.fetch).mockResolvedValue(mockFetchSuccess(mockModels)); + // When/Then await expect(fetchModelVersionId(TEST_COUNTRIES.US)).rejects.toThrow( - `Failed to fetch model version for ${TEST_COUNTRIES.US}` + `Model not found for ${TEST_COUNTRIES.US}` ); }); it('given empty versions array then throws error', async () => { // Given - vi.mocked(global.fetch).mockResolvedValue( - mockFetchSuccess(SAMPLE_RESPONSES.EMPTY_VERSIONS) - ); + const mockModels = [ + createMockTaxBenefitModel({ id: US_MODEL_ID, name: MODEL_NAMES.US }), + ]; + vi.mocked(global.fetch) + .mockResolvedValueOnce(mockFetchSuccess(mockModels)) + .mockResolvedValueOnce(mockFetchSuccess([])); // When/Then await expect(fetchModelVersionId(TEST_COUNTRIES.US)).rejects.toThrow( diff --git a/app/src/tests/unit/api/v2/variables.test.ts b/app/src/tests/unit/api/v2/variables.test.ts index 0e5f0ae11..abb076977 100644 --- a/app/src/tests/unit/api/v2/variables.test.ts +++ b/app/src/tests/unit/api/v2/variables.test.ts @@ -1,7 +1,7 @@ import { describe, expect, it, vi, beforeEach, afterEach } from 'vitest'; import { TEST_COUNTRIES, - MODEL_IDS, + MODEL_NAMES, SAMPLE_RESPONSES, API_ENDPOINTS, mockFetchSuccess, @@ -23,7 +23,7 @@ describe('variables', () => { }); describe('fetchVariables', () => { - it('given US country then fetches variables with correct model ID', async () => { + it('given US country then fetches variables with correct model name', async () => { // Given vi.mocked(global.fetch).mockResolvedValue(mockFetchSuccess(SAMPLE_RESPONSES.VARIABLES)); @@ -32,10 +32,10 @@ describe('variables', () => { // Then expect(result).toEqual(SAMPLE_RESPONSES.VARIABLES); - expect(global.fetch).toHaveBeenCalledWith(API_ENDPOINTS.VARIABLES(MODEL_IDS.US)); + expect(global.fetch).toHaveBeenCalledWith(API_ENDPOINTS.VARIABLES(MODEL_NAMES.US)); }); - it('given UK country then fetches variables with correct model ID', async () => { + it('given UK country then fetches variables with correct model name', async () => { // Given vi.mocked(global.fetch).mockResolvedValue(mockFetchSuccess(SAMPLE_RESPONSES.VARIABLES)); @@ -43,7 +43,7 @@ describe('variables', () => { await fetchVariables(TEST_COUNTRIES.UK); // Then - expect(global.fetch).toHaveBeenCalledWith(API_ENDPOINTS.VARIABLES(MODEL_IDS.UK)); + expect(global.fetch).toHaveBeenCalledWith(API_ENDPOINTS.VARIABLES(MODEL_NAMES.UK)); }); it('given failed response then throws error', async () => { From 8be11672928686ed2caf2816cde1722b2bd5f0e3 Mon Sep 17 00:00:00 2001 From: Anthony Volk Date: Mon, 19 Jan 2026 17:45:31 +0300 Subject: [PATCH 25/32] fix: Add loading --- .../PolicyParameterSelectorMain.tsx | 4 +++- .../PolicyParameterSelectorValueSetter.tsx | 17 +++++++++------ .../HistoricalValues.tsx | 21 ++++++++++++------- 3 files changed, 27 insertions(+), 15 deletions(-) diff --git a/app/src/pathways/report/components/PolicyParameterSelectorMain.tsx b/app/src/pathways/report/components/PolicyParameterSelectorMain.tsx index 5f8724fe1..758b067b9 100644 --- a/app/src/pathways/report/components/PolicyParameterSelectorMain.tsx +++ b/app/src/pathways/report/components/PolicyParameterSelectorMain.tsx @@ -4,7 +4,7 @@ * Manages parameter display and modification without Redux */ -import { Container, Loader, Text, Title } from '@mantine/core'; +import { Container, Text, Title } from '@mantine/core'; import { useParameterValues, BASELINE_POLICY_ID } from '@/hooks/useParameterValues'; import { ParameterMetadata } from '@/types/metadata'; import { PolicyStateProps } from '@/types/pathwayState'; @@ -78,6 +78,7 @@ export default function PolicyParameterSelectorMain({ policy={policy} onPolicyUpdate={onPolicyUpdate} baselineValues={baselineValuesSource} + isLoading={isLoadingBaseline} /> ); diff --git a/app/src/pathways/report/components/PolicyParameterSelectorValueSetter.tsx b/app/src/pathways/report/components/PolicyParameterSelectorValueSetter.tsx index 9f34f472c..5d16d4b4a 100644 --- a/app/src/pathways/report/components/PolicyParameterSelectorValueSetter.tsx +++ b/app/src/pathways/report/components/PolicyParameterSelectorValueSetter.tsx @@ -5,7 +5,7 @@ */ import { useState } from 'react'; -import { Button, Container, Divider, Group, Stack, Text } from '@mantine/core'; +import { Button, Container, Divider, Group, Skeleton, Stack, Text } from '@mantine/core'; import { getDateRange } from '@/data/static'; import { useCurrentCountry } from '@/hooks/useCurrentCountry'; import { ParameterMetadata } from '@/types/metadata'; @@ -24,6 +24,8 @@ interface PolicyParameterSelectorValueSetterProps { onPolicyUpdate: (updatedPolicy: PolicyStateProps) => void; /** Baseline (current law) values fetched from V2 API */ baselineValues?: ValuesList; + /** Whether baseline values are currently loading */ + isLoading?: boolean; } export default function PolicyParameterSelectorValueSetter({ @@ -31,6 +33,7 @@ export default function PolicyParameterSelectorValueSetter({ policy, onPolicyUpdate, baselineValues, + isLoading = false, }: PolicyParameterSelectorValueSetterProps) { const countryId = useCurrentCountry(); const [mode, setMode] = useState(ValueSetterMode.DEFAULT); @@ -113,11 +116,13 @@ export default function PolicyParameterSelectorValueSetter({ Current value - - - - - + + + + + + + ); diff --git a/app/src/pathways/report/components/policyParameterSelector/HistoricalValues.tsx b/app/src/pathways/report/components/policyParameterSelector/HistoricalValues.tsx index 8af96d0a2..62aa8abb8 100644 --- a/app/src/pathways/report/components/policyParameterSelector/HistoricalValues.tsx +++ b/app/src/pathways/report/components/policyParameterSelector/HistoricalValues.tsx @@ -1,6 +1,6 @@ import { memo, useMemo, useRef } from 'react'; import Plot from 'react-plotly.js'; -import { Stack, Text } from '@mantine/core'; +import { Box, LoadingOverlay, Stack, Text } from '@mantine/core'; import { CHART_COLORS } from '@/constants/chartColors'; import { useChartWidth, useIsMobile, useWindowHeight } from '@/hooks/useChartDimensions'; import { ParameterMetadata } from '@/types/metadata'; @@ -22,6 +22,7 @@ interface PolicyParameterSelectorHistoricalValuesProps { reformValues?: ValueIntervalCollection; policyLabel?: string | null; policyId?: string | null; + isLoading?: boolean; } interface ParameterOverTimeChartProps { @@ -41,19 +42,23 @@ export default function PolicyParameterSelectorHistoricalValues( reformValues, policyLabel, policyId, + isLoading = false, } = props; return ( Historical values {capitalize(param.label)} over time - + + + + ); } From 5114d3e673a1367e050dd5214c5e364725131fb7 Mon Sep 17 00:00:00 2001 From: Anthony Volk Date: Mon, 19 Jan 2026 18:02:14 +0300 Subject: [PATCH 26/32] fix: Fix old hook usage --- app/src/hooks/useSaveSharedReport.ts | 9 ++--- .../hooks/utils/useFetchReportIngredients.ts | 9 ++--- .../AbsoluteChangeByDistrict.tsx | 11 ++++--- .../RelativeChangeByDistrict.tsx | 11 ++++--- .../congressionalDistrictComponentMocks.ts | 33 +++++++------------ 5 files changed, 36 insertions(+), 37 deletions(-) diff --git a/app/src/hooks/useSaveSharedReport.ts b/app/src/hooks/useSaveSharedReport.ts index 17b782c0a..8557637f3 100644 --- a/app/src/hooks/useSaveSharedReport.ts +++ b/app/src/hooks/useSaveSharedReport.ts @@ -7,10 +7,10 @@ */ import { useCallback, useRef, useState } from 'react'; -import { useSelector } from 'react-redux'; +import { useCurrentCountry } from '@/hooks/useCurrentCountry'; +import { useCurrentLawId } from '@/hooks/useStaticMetadata'; import { ReportIngredientsInput } from '@/hooks/utils/useFetchReportIngredients'; import { CountryId } from '@/libs/countries'; -import { RootState } from '@/store'; import { UserReport } from '@/types/ingredients/UserReport'; import { getShareDataUserReportId } from '@/utils/shareUtils'; import { useCreateGeographicAssociation } from './useUserGeographic'; @@ -40,8 +40,9 @@ export function useSaveSharedReport() { const createGeographicAssociation = useCreateGeographicAssociation(); const reportStore = useUserReportStore(); - // Get currentLawId to skip creating associations for current law policies - const currentLawId = useSelector((state: RootState) => state.metadata.currentLawId); + // Get currentLawId from static metadata to skip creating associations for current law policies + const countryId = useCurrentCountry(); + const currentLawId = useCurrentLawId(countryId); const [saveResult, setSaveResult] = useState(null); const timeoutRef = useRef(null); diff --git a/app/src/hooks/utils/useFetchReportIngredients.ts b/app/src/hooks/utils/useFetchReportIngredients.ts index 50e8a3f65..3991161d4 100644 --- a/app/src/hooks/utils/useFetchReportIngredients.ts +++ b/app/src/hooks/utils/useFetchReportIngredients.ts @@ -11,15 +11,15 @@ * and returns the fully-hydrated base ingredients. */ -import { useSelector } from 'react-redux'; import { HouseholdAdapter, PolicyAdapter, ReportAdapter, SimulationAdapter } from '@/adapters'; import { fetchHouseholdById } from '@/api/household'; import { fetchPolicyById } from '@/api/policy'; import { fetchReportById } from '@/api/report'; import { fetchSimulationById } from '@/api/simulation'; +import { CURRENT_YEAR } from '@/constants'; import { useCurrentCountry } from '@/hooks/useCurrentCountry'; +import { useRegionsList } from '@/hooks/useStaticMetadata'; import { householdKeys, policyKeys, reportKeys, simulationKeys } from '@/libs/queryKeys'; -import { RootState } from '@/store'; import { Geography } from '@/types/ingredients/Geography'; import { Household } from '@/types/ingredients/Household'; import { Policy } from '@/types/ingredients/Policy'; @@ -186,8 +186,9 @@ export function useFetchReportIngredients( // Use country from input if available (for shared reports), otherwise use current country const country = input?.userReport.countryId ?? currentCountry; - // Get geography metadata for building Geography objects - const geographyOptions = useSelector((state: RootState) => state.metadata.economyOptions.region); + // Get geography metadata for building Geography objects from static metadata + const currentYear = parseInt(CURRENT_YEAR, 10); + const geographyOptions = useRegionsList(country, currentYear); // Step 1: Fetch the base Report using reportId from userReport const reportId = input?.userReport.reportId; diff --git a/app/src/pages/report-output/congressional-district/AbsoluteChangeByDistrict.tsx b/app/src/pages/report-output/congressional-district/AbsoluteChangeByDistrict.tsx index c585b164d..08c0e5f1f 100644 --- a/app/src/pages/report-output/congressional-district/AbsoluteChangeByDistrict.tsx +++ b/app/src/pages/report-output/congressional-district/AbsoluteChangeByDistrict.tsx @@ -1,5 +1,4 @@ import { useMemo } from 'react'; -import { useSelector } from 'react-redux'; import { Stack, Text, Title } from '@mantine/core'; import { buildDistrictLabelLookup, @@ -7,7 +6,9 @@ import { } from '@/adapters/congressional-district/congressionalDistrictDataAdapter'; import type { SocietyWideReportOutput } from '@/api/societyWideCalculation'; import { USDistrictChoroplethMap } from '@/components/visualization/USDistrictChoroplethMap'; -import type { RootState } from '@/store'; +import { CURRENT_YEAR } from '@/constants'; +import { useCurrentCountry } from '@/hooks/useCurrentCountry'; +import { useRegionsList } from '@/hooks/useStaticMetadata'; import type { ReportOutputSocietyWideUS } from '@/types/metadata/ReportOutputSocietyWideUS'; import { formatParameterValue } from '@/utils/chartValueUtils'; import { DIVERGING_GRAY_TEAL } from '@/utils/visualization/colorScales'; @@ -23,8 +24,10 @@ interface AbsoluteChangeByDistrictProps { * for each US congressional district in currency terms. */ export function AbsoluteChangeByDistrict({ output }: AbsoluteChangeByDistrictProps) { - // Get district labels from metadata - const regions = useSelector((state: RootState) => state.metadata.economyOptions.region); + // Get district labels from static metadata + const countryId = useCurrentCountry(); + const currentYear = parseInt(CURRENT_YEAR, 10); + const regions = useRegionsList(countryId, currentYear); // Build label lookup from metadata (memoized) const labelLookup = useMemo(() => buildDistrictLabelLookup(regions), [regions]); diff --git a/app/src/pages/report-output/congressional-district/RelativeChangeByDistrict.tsx b/app/src/pages/report-output/congressional-district/RelativeChangeByDistrict.tsx index 82bcdabc6..63488bc26 100644 --- a/app/src/pages/report-output/congressional-district/RelativeChangeByDistrict.tsx +++ b/app/src/pages/report-output/congressional-district/RelativeChangeByDistrict.tsx @@ -1,5 +1,4 @@ import { useMemo } from 'react'; -import { useSelector } from 'react-redux'; import { Stack, Text, Title } from '@mantine/core'; import { buildDistrictLabelLookup, @@ -7,7 +6,9 @@ import { } from '@/adapters/congressional-district/congressionalDistrictDataAdapter'; import type { SocietyWideReportOutput } from '@/api/societyWideCalculation'; import { USDistrictChoroplethMap } from '@/components/visualization/USDistrictChoroplethMap'; -import type { RootState } from '@/store'; +import { CURRENT_YEAR } from '@/constants'; +import { useCurrentCountry } from '@/hooks/useCurrentCountry'; +import { useRegionsList } from '@/hooks/useStaticMetadata'; import type { ReportOutputSocietyWideUS } from '@/types/metadata/ReportOutputSocietyWideUS'; import { formatParameterValue } from '@/utils/chartValueUtils'; import { DIVERGING_GRAY_TEAL } from '@/utils/visualization/colorScales'; @@ -23,8 +24,10 @@ interface RelativeChangeByDistrictProps { * income change for each US congressional district. */ export function RelativeChangeByDistrict({ output }: RelativeChangeByDistrictProps) { - // Get district labels from metadata - const regions = useSelector((state: RootState) => state.metadata.economyOptions.region); + // Get district labels from static metadata + const countryId = useCurrentCountry(); + const currentYear = parseInt(CURRENT_YEAR, 10); + const regions = useRegionsList(countryId, currentYear); // Build label lookup from metadata (memoized) const labelLookup = useMemo(() => buildDistrictLabelLookup(regions), [regions]); diff --git a/app/src/tests/fixtures/pages/congressional-district/congressionalDistrictComponentMocks.ts b/app/src/tests/fixtures/pages/congressional-district/congressionalDistrictComponentMocks.ts index ad7119e84..ef9041131 100644 --- a/app/src/tests/fixtures/pages/congressional-district/congressionalDistrictComponentMocks.ts +++ b/app/src/tests/fixtures/pages/congressional-district/congressionalDistrictComponentMocks.ts @@ -204,35 +204,26 @@ export const MOCK_US_REPORT_OUTPUT_NO_DISTRICT: ReportOutputSocietyWideUS = { }; /** - * Mock metadata state with congressional district regions + * Mock metadata state matching the new MetadataState structure + * Note: Regions are now accessed via static metadata hooks (useRegionsList), + * not from Redux state. This mock only contains API-driven data. */ export const MOCK_METADATA_WITH_REGIONS: MetadataState = { currentCountry: 'us', loading: false, + loaded: true, error: null, progress: 100, variables: {}, parameters: {}, - entities: {}, - variableModules: {}, - economyOptions: { - region: MOCK_CONGRESSIONAL_DISTRICT_REGIONS, - time_period: [{ name: 2024, label: '2024' }], - datasets: [ - { - name: 'cps_2023', - label: 'CPS 2023', - title: 'Current Population Survey 2023', - default: true, - }, - ], - }, - currentLawId: 1, - basicInputs: [], - modelledPolicies: { - core: {}, - filtered: {}, - }, + datasets: [ + { + name: 'cps_2023', + label: 'CPS 2023', + title: 'Current Population Survey 2023', + default: true, + }, + ], version: '1.0.0', parameterTree: null, }; From eb2fd1949aa84520f9b58c65c0f960a22bf0ee4f Mon Sep 17 00:00:00 2001 From: Anthony Volk Date: Mon, 19 Jan 2026 18:24:22 +0300 Subject: [PATCH 27/32] fix: Fix various tests --- app/package.json | 1 + .../hooks/useSaveSharedReportMocks.ts | 6 +- .../congressionalDistrictComponentMocks.ts | 4 ++ .../unit/hooks/useSaveSharedReport.test.tsx | 57 +++++++------------ .../AbsoluteChangeByDistrict.test.tsx | 18 +++--- .../RelativeChangeByDistrict.test.tsx | 18 +++--- package-lock.json | 1 + 7 files changed, 52 insertions(+), 53 deletions(-) diff --git a/app/package.json b/app/package.json index 672a18777..726fe3939 100644 --- a/app/package.json +++ b/app/package.json @@ -72,6 +72,7 @@ "@types/react-plotly.js": "^2.6.3", "@types/react-syntax-highlighter": "^15.5.0", "@types/topojson-client": "^3.1.5", + "@types/topojson-specification": "^1.0.5", "@types/wordwrapjs": "^5.1.2", "@vercel/node": "^5.5.10", "@vitejs/plugin-react": "^4.5.2", diff --git a/app/src/tests/fixtures/hooks/useSaveSharedReportMocks.ts b/app/src/tests/fixtures/hooks/useSaveSharedReportMocks.ts index 3b43b0553..789949083 100644 --- a/app/src/tests/fixtures/hooks/useSaveSharedReportMocks.ts +++ b/app/src/tests/fixtures/hooks/useSaveSharedReportMocks.ts @@ -24,7 +24,11 @@ export const TEST_COUNTRIES = { UK: 'uk', } as const; -export const CURRENT_LAW_ID = '1'; +// Convenience exports for direct usage in mocks +export const TEST_COUNTRY_US = TEST_COUNTRIES.US; +export const TEST_COUNTRY_UK = TEST_COUNTRIES.UK; + +export const CURRENT_LAW_ID = 1; // ============================================================================ // ReportIngredientsInput Fixtures diff --git a/app/src/tests/fixtures/pages/congressional-district/congressionalDistrictComponentMocks.ts b/app/src/tests/fixtures/pages/congressional-district/congressionalDistrictComponentMocks.ts index ef9041131..cb5f0d472 100644 --- a/app/src/tests/fixtures/pages/congressional-district/congressionalDistrictComponentMocks.ts +++ b/app/src/tests/fixtures/pages/congressional-district/congressionalDistrictComponentMocks.ts @@ -2,6 +2,10 @@ import type { MetadataRegionEntry, MetadataState } from '@/types/metadata'; import type { ReportOutputSocietyWideUS } from '@/types/metadata/ReportOutputSocietyWideUS'; import { US_REGION_TYPES } from '@/types/regionTypes'; +// Test constants +export const TEST_COUNTRY_US = 'us'; +export const TEST_CURRENT_YEAR = 2025; + /** * Mock US congressional district region entries for metadata */ diff --git a/app/src/tests/unit/hooks/useSaveSharedReport.test.tsx b/app/src/tests/unit/hooks/useSaveSharedReport.test.tsx index 99ff5cadf..c273f3df0 100644 --- a/app/src/tests/unit/hooks/useSaveSharedReport.test.tsx +++ b/app/src/tests/unit/hooks/useSaveSharedReport.test.tsx @@ -1,8 +1,6 @@ import React from 'react'; -import { configureStore } from '@reduxjs/toolkit'; import { QueryClient, QueryClientProvider } from '@tanstack/react-query'; import { act, renderHook, waitFor } from '@testing-library/react'; -import { Provider } from 'react-redux'; import { beforeEach, describe, expect, test, vi } from 'vitest'; import { useSaveSharedReport } from '@/hooks/useSaveSharedReport'; import { @@ -15,6 +13,7 @@ import { MOCK_SHARE_DATA_WITH_CURRENT_LAW, MOCK_SHARE_DATA_WITH_HOUSEHOLD, MOCK_SHARE_DATA_WITHOUT_LABEL, + TEST_COUNTRY_US, TEST_ERRORS, TEST_IDS, } from '@/tests/fixtures/hooks/useSaveSharedReportMocks'; @@ -48,26 +47,21 @@ vi.mock('@/hooks/useUserReportAssociations', () => ({ useUserReportStore: () => mockReportStore, })); -describe('useSaveSharedReport', () => { - let queryClient: QueryClient; +// Mock static metadata hooks instead of Redux +vi.mock('@/hooks/useCurrentCountry', () => ({ + useCurrentCountry: vi.fn(() => TEST_COUNTRY_US), +})); - const createMockStore = (currentLawId: string = CURRENT_LAW_ID) => { - const metadataReducer = () => ({ - currentCountry: 'us', - currentLawId, - economyOptions: { region: [], time_period: [], datasets: [] }, - }); +vi.mock('@/hooks/useStaticMetadata', () => ({ + useCurrentLawId: vi.fn(() => CURRENT_LAW_ID), +})); - return configureStore({ - reducer: { metadata: metadataReducer }, - }); - }; +describe('useSaveSharedReport', () => { + let queryClient: QueryClient; - const createWrapper = (store: ReturnType) => { + const createWrapper = () => { return ({ children }: { children: React.ReactNode }) => ( - - {children} - + {children} ); }; @@ -88,8 +82,7 @@ describe('useSaveSharedReport', () => { test('given valid shareData then saves all associations and returns userReport', async () => { // Given - const store = createMockStore(); - const wrapper = createWrapper(store); + const wrapper = createWrapper(); // When const { result } = renderHook(() => useSaveSharedReport(), { wrapper }); @@ -126,8 +119,7 @@ describe('useSaveSharedReport', () => { test('given existing report then returns already_saved without creating duplicates', async () => { // Given mockReportStore.findByUserReportId.mockResolvedValue(MOCK_EXISTING_USER_REPORT); - const store = createMockStore(); - const wrapper = createWrapper(store); + const wrapper = createWrapper(); // When const { result } = renderHook(() => useSaveSharedReport(), { wrapper }); @@ -149,8 +141,7 @@ describe('useSaveSharedReport', () => { test('given shareData with current law policy then skips current law', async () => { // Given - const store = createMockStore(); - const wrapper = createWrapper(store); + const wrapper = createWrapper(); // When const { result } = renderHook(() => useSaveSharedReport(), { wrapper }); @@ -171,8 +162,7 @@ describe('useSaveSharedReport', () => { test('given shareData with household then saves household associations', async () => { // Given - const store = createMockStore(); - const wrapper = createWrapper(store); + const wrapper = createWrapper(); // When const { result } = renderHook(() => useSaveSharedReport(), { wrapper }); @@ -193,8 +183,7 @@ describe('useSaveSharedReport', () => { test('given shareData without label then generates default label', async () => { // Given - const store = createMockStore(); - const wrapper = createWrapper(store); + const wrapper = createWrapper(); // When const { result } = renderHook(() => useSaveSharedReport(), { wrapper }); @@ -214,8 +203,7 @@ describe('useSaveSharedReport', () => { test('given ingredient save failure then returns partial result', async () => { // Given mockCreateSimulation.mutateAsync.mockRejectedValue(TEST_ERRORS.SAVE_FAILED); - const store = createMockStore(); - const wrapper = createWrapper(store); + const wrapper = createWrapper(); // When const { result } = renderHook(() => useSaveSharedReport(), { wrapper }); @@ -233,8 +221,7 @@ describe('useSaveSharedReport', () => { test('given success then sets saveResult to success', async () => { // Given - const store = createMockStore(); - const wrapper = createWrapper(store); + const wrapper = createWrapper(); // When const { result } = renderHook(() => useSaveSharedReport(), { wrapper }); @@ -257,8 +244,7 @@ describe('useSaveSharedReport', () => { .mockResolvedValueOnce(MOCK_EXISTING_USER_REPORT); mockCreateReport.mutateAsync.mockRejectedValue(new Error('Duplicate key')); - const store = createMockStore(); - const wrapper = createWrapper(store); + const wrapper = createWrapper(); // When const { result } = renderHook(() => useSaveSharedReport(), { wrapper }); @@ -277,8 +263,7 @@ describe('useSaveSharedReport', () => { test('given setSaveResult then allows manual result override', async () => { // Given - const store = createMockStore(); - const wrapper = createWrapper(store); + const wrapper = createWrapper(); // When const { result } = renderHook(() => useSaveSharedReport(), { wrapper }); diff --git a/app/src/tests/unit/pages/report-output/congressional-district/AbsoluteChangeByDistrict.test.tsx b/app/src/tests/unit/pages/report-output/congressional-district/AbsoluteChangeByDistrict.test.tsx index 3c6113678..32dc26378 100644 --- a/app/src/tests/unit/pages/report-output/congressional-district/AbsoluteChangeByDistrict.test.tsx +++ b/app/src/tests/unit/pages/report-output/congressional-district/AbsoluteChangeByDistrict.test.tsx @@ -5,19 +5,21 @@ import { MOCK_CONGRESSIONAL_DISTRICT_REGIONS, MOCK_US_REPORT_OUTPUT, MOCK_US_REPORT_OUTPUT_NO_DISTRICT, + TEST_COUNTRY_US, } from '@/tests/fixtures/pages/congressional-district/congressionalDistrictComponentMocks'; // Mock Plotly vi.mock('react-plotly.js', () => ({ default: vi.fn(() => null) })); -// Mock react-redux to provide region data from metadata -vi.mock('react-redux', async () => { - const actual = await vi.importActual('react-redux'); - return { - ...actual, - useSelector: vi.fn(() => MOCK_CONGRESSIONAL_DISTRICT_REGIONS), - }; -}); +// Mock static metadata hooks to provide region data +vi.mock('@/hooks/useStaticMetadata', () => ({ + useRegionsList: vi.fn(() => MOCK_CONGRESSIONAL_DISTRICT_REGIONS), +})); + +// Mock useCurrentCountry hook +vi.mock('@/hooks/useCurrentCountry', () => ({ + useCurrentCountry: vi.fn(() => TEST_COUNTRY_US), +})); describe('AbsoluteChangeByDistrict', () => { test('given district data then renders component', () => { diff --git a/app/src/tests/unit/pages/report-output/congressional-district/RelativeChangeByDistrict.test.tsx b/app/src/tests/unit/pages/report-output/congressional-district/RelativeChangeByDistrict.test.tsx index 291b32440..f51c36016 100644 --- a/app/src/tests/unit/pages/report-output/congressional-district/RelativeChangeByDistrict.test.tsx +++ b/app/src/tests/unit/pages/report-output/congressional-district/RelativeChangeByDistrict.test.tsx @@ -5,19 +5,21 @@ import { MOCK_CONGRESSIONAL_DISTRICT_REGIONS, MOCK_US_REPORT_OUTPUT, MOCK_US_REPORT_OUTPUT_NO_DISTRICT, + TEST_COUNTRY_US, } from '@/tests/fixtures/pages/congressional-district/congressionalDistrictComponentMocks'; // Mock Plotly vi.mock('react-plotly.js', () => ({ default: vi.fn(() => null) })); -// Mock react-redux to provide region data from metadata -vi.mock('react-redux', async () => { - const actual = await vi.importActual('react-redux'); - return { - ...actual, - useSelector: vi.fn(() => MOCK_CONGRESSIONAL_DISTRICT_REGIONS), - }; -}); +// Mock static metadata hooks to provide region data +vi.mock('@/hooks/useStaticMetadata', () => ({ + useRegionsList: vi.fn(() => MOCK_CONGRESSIONAL_DISTRICT_REGIONS), +})); + +// Mock useCurrentCountry hook +vi.mock('@/hooks/useCurrentCountry', () => ({ + useCurrentCountry: vi.fn(() => TEST_COUNTRY_US), +})); describe('RelativeChangeByDistrict', () => { test('given district data then renders component', () => { diff --git a/package-lock.json b/package-lock.json index b50941c51..8697ee3a1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -70,6 +70,7 @@ "@types/react-plotly.js": "^2.6.3", "@types/react-syntax-highlighter": "^15.5.0", "@types/topojson-client": "^3.1.5", + "@types/topojson-specification": "^1.0.5", "@types/wordwrapjs": "^5.1.2", "@vercel/node": "^5.5.10", "@vitejs/plugin-react": "^4.5.2", From 59df97ef1d839b2ac214bc7cbec82d4600a36ea3 Mon Sep 17 00:00:00 2001 From: Anthony Volk Date: Mon, 19 Jan 2026 19:58:37 +0300 Subject: [PATCH 28/32] fix: Remove unused features from API v1 metadata --- app/src/TEST_TO_DELETE/mockParamMetadata.ts | 151 - app/src/api/metadata.ts | 25 - .../common/MetadataLoadingExperience.tsx | 35 - app/src/libs/buildParameterTree.ts | 100 +- app/src/libs/metadataUtils.ts | 25 - app/src/mocks/UK_Metadata.json | 48415 - app/src/mocks/US_Metadata.json | 880213 --------------- app/src/tests/fixtures/api/metadataMocks.ts | 186 - .../fixtures/libs/buildParameterTreeMocks.ts | 24 - .../tests/fixtures/libs/metadataUtilsMocks.ts | 147 +- .../fixtures/reducers/metadataReducerMocks.ts | 38 +- .../unit/libs/buildParameterTree.test.ts | 112 +- app/src/tests/unit/libs/metadataUtils.test.ts | 85 +- .../unit/reducers/metadataReducer.test.ts | 4 +- app/src/types/metadata.ts | 27 - 15 files changed, 91 insertions(+), 929496 deletions(-) delete mode 100644 app/src/TEST_TO_DELETE/mockParamMetadata.ts delete mode 100644 app/src/api/metadata.ts delete mode 100644 app/src/components/common/MetadataLoadingExperience.tsx delete mode 100644 app/src/mocks/UK_Metadata.json delete mode 100644 app/src/mocks/US_Metadata.json delete mode 100644 app/src/tests/fixtures/api/metadataMocks.ts diff --git a/app/src/TEST_TO_DELETE/mockParamMetadata.ts b/app/src/TEST_TO_DELETE/mockParamMetadata.ts deleted file mode 100644 index 55597536e..000000000 --- a/app/src/TEST_TO_DELETE/mockParamMetadata.ts +++ /dev/null @@ -1,151 +0,0 @@ -import { ParameterMetadataCollection } from '@/types/metadata'; - -export const mockParamMetadata: { parameters: ParameterMetadataCollection } = { - parameters: { - gov: { - type: 'parameterNode', - parameter: 'gov', - description: null, - label: 'Government', - economy: true, - household: true, - }, - 'gov.aca.max_child_count': { - type: 'parameter', - parameter: 'gov.aca.max_child_count', - description: - 'Maximum number of children who pay an age-based ACA plan premium. This parameter is yearly.', - label: 'ACA maximum child count', - unit: null, - period: null, - values: { - '2014-01-01': 3, - }, - economy: true, - household: true, - }, - 'gov.states': { - type: 'parameterNode', - parameter: 'gov.states', - description: null, - label: 'States', - economy: true, - household: true, - }, - 'gov.states.de': { - type: 'parameterNode', - parameter: 'gov.states.de', - description: null, - label: 'Delaware', - economy: true, - household: true, - }, - 'gov.states.de.tax': { - type: 'parameterNode', - parameter: 'gov.states.de.tax', - description: null, - label: 'tax', - economy: true, - household: true, - }, - 'gov.states.de.tax.income': { - type: 'parameterNode', - parameter: 'gov.states.de.tax.income', - description: null, - label: 'income', - economy: true, - household: true, - }, - 'gov.states.de.tax.income.rate': { - type: 'parameterNode', - parameter: 'gov.states.de.tax.income.rate', - description: 'Delaware taxes personal income according to this rate schedule.', - label: 'Delaware personal income tax rate', - }, - 'gov.states.de.tax.income.rate[0]': { - type: 'parameterNode', - parameter: 'gov.states.de.tax.income.rate[0]', - description: null, - label: 'bracket 1', - }, - 'gov.states.de.tax.income.rate[0].threshold': { - type: 'parameter', - parameter: 'gov.states.de.tax.income.rate[0].threshold', - description: null, - label: 'threshold', - unit: 'currency-USD', - period: null, - values: { - '1996-01-01': 0, - }, - economy: true, - household: true, - }, - 'gov.states.de.tax.income.rate[0].rate': { - type: 'parameter', - parameter: 'gov.states.de.tax.income.rate[0].rate', - description: null, - label: 'rate', - unit: '/1', - period: null, - values: { - '1996-01-01': 0, - }, - economy: true, - household: true, - }, - 'gov.states.de.tax.income.rate[1]': { - type: 'parameterNode', - parameter: 'gov.states.de.tax.income.rate[1]', - description: null, - label: 'bracket 2', - }, - 'gov.states.de.tax.income.rate[1].threshold': { - type: 'parameter', - parameter: 'gov.states.de.tax.income.rate[1].threshold', - description: null, - label: 'threshold', - unit: 'currency-USD', - period: null, - values: { - '1996-01-01': 2000, - }, - economy: true, - household: true, - }, - 'gov.states.de.tax.income.rate[1].rate': { - type: 'parameter', - parameter: 'gov.states.de.tax.income.rate[1].rate', - description: null, - label: 'rate', - unit: '/1', - period: null, - values: { - '2014-01-01': 0.022, - '1999-01-01': 0.026, - '1996-01-01': 0.031, - }, - economy: true, - household: true, - }, - 'gov.states.de.tax.income.rate[2]': { - type: 'parameterNode', - parameter: 'gov.states.de.tax.income.rate[2]', - description: null, - label: 'bracket 3', - }, - 'gov.states.de.tax.income.rate[2].threshold': { - type: 'parameter', - parameter: 'gov.states.de.tax.income.rate[2].threshold', - description: null, - label: 'threshold', - unit: 'currency-USD', - period: null, - values: { - '1996-01-01': 5000, - }, - economy: true, - household: true, - }, - }, -}; diff --git a/app/src/api/metadata.ts b/app/src/api/metadata.ts deleted file mode 100644 index 87e26aa36..000000000 --- a/app/src/api/metadata.ts +++ /dev/null @@ -1,25 +0,0 @@ -import { BASE_URL } from '@/constants'; -import { MetadataApiPayload } from '@/types/metadata'; - -/** - * Fetch metadata for a country - * - * @param countryId - Country code (us, uk) - */ -export async function fetchMetadata(countryId: string): Promise { - const url = `${BASE_URL}/${countryId}/metadata`; - - const res = await fetch(url, { - method: 'GET', - headers: { - 'Content-Type': 'application/json', - Accept: 'application/json', - }, - }); - - if (!res.ok) { - throw new Error(`Failed to fetch metadata for ${countryId}`); - } - - return res.json(); -} diff --git a/app/src/components/common/MetadataLoadingExperience.tsx b/app/src/components/common/MetadataLoadingExperience.tsx deleted file mode 100644 index f678c82ff..000000000 --- a/app/src/components/common/MetadataLoadingExperience.tsx +++ /dev/null @@ -1,35 +0,0 @@ -import { Container, Divider, Loader, Stack, Text, Title } from '@mantine/core'; - -interface MetadataLoadingExperienceProps { - /** Country code (us or uk) */ - countryId: string; -} - -/** - * MetadataLoadingExperience - Simple loading screen for metadata fetch - * - * Matches the PathwayView design pattern used in create pages. - * Shows a large centered loader within the app shell. - */ -export function MetadataLoadingExperience({ countryId }: MetadataLoadingExperienceProps) { - const countryName = countryId === 'uk' ? 'United Kingdom' : 'United States'; - - return ( - - - Loading - - - Fetching {countryName} policy data - - - - - - - This may take a moment for first-time loads - - - - ); -} diff --git a/app/src/libs/buildParameterTree.ts b/app/src/libs/buildParameterTree.ts index 6801451ff..c3d870e28 100644 --- a/app/src/libs/buildParameterTree.ts +++ b/app/src/libs/buildParameterTree.ts @@ -1,4 +1,4 @@ -import { MetadataApiPayload, ParameterMetadata } from '@/types/metadata'; +import { ParameterMetadata } from '@/types/metadata'; export interface ParameterTreeNode { name: string; @@ -44,96 +44,6 @@ function sortTreeInPlace(tree: ParameterTreeNode[]): ParameterTreeNode[] { return tree; } -/** - * Builds a hierarchical parameter tree from flat metadata parameters - * Adapted from policyengine-app/src/api/parameters.js - */ -export function buildParameterTree(parameters: Record): ParameterTreeNode | undefined { - const tree: { children?: ParameterTreeNode[] } = {}; - - for (const parameter of Object.values(parameters).filter( - (param: any) => - (param.economy || param.household) && - !param.parameter.includes('taxsim') && - !param.parameter.includes('gov.abolitions') - )) { - const nodeToInsert: ParameterTreeNode = { - name: parameter.parameter, - label: capitalize( - (parameter.label || parameter.parameter.split(/\.|\[/).pop()).replaceAll('_', ' ') - ), - index: parameter.indexInModule || 0, - type: parameter.type, - parameter: parameter.parameter, - description: parameter.description, - unit: parameter.unit, - period: parameter.period, - values: parameter.values, - economy: parameter.economy, - household: parameter.household, - }; - - // Split based on . or [ - const pathComponents = parameter.parameter.split(/\.|\[/); - // Keep track of the delimiters, so that we can reconstruct the path later. - const delimiters = parameter.parameter.match(/\.|\[/g); - // For a given path "x.y.z.a", create the nodes x, x.y and x.y.z if they don't exist. - - let currentNode = tree; - let cumulativePath = ''; - - for (const key of pathComponents.slice(0, -1)) { - cumulativePath += key; - const fixedCumulativePath = cumulativePath; - let label = (cumulativePath in parameters && parameters[cumulativePath].label) || key; - - // Transform e.g. "0]" -> "Bracket 1" - if (key.endsWith(']')) { - label = `Bracket ${parseInt(key.slice(0, -1), 10) + 1}`; - } - label = capitalize(label.replaceAll('_', ' ')); - - if (!currentNode.children) { - currentNode.children = []; - } - - if (!currentNode.children.find((child) => child.name === fixedCumulativePath)) { - currentNode.children.push({ - label, - name: cumulativePath, - index: 0, - children: [], - type: 'parameterNode', - }); - } - - currentNode = currentNode.children.find((child) => child.name === fixedCumulativePath)!; - - // Re-add the delimiter to the cumulative path - if (delimiters) { - cumulativePath += delimiters.shift(); - } - } - - try { - if (!currentNode.children) { - currentNode.children = []; - } - currentNode.children.push(nodeToInsert); - } catch (e) { - console.error('Error inserting node', nodeToInsert, 'into', currentNode); - } - } - - const govTree = tree.children?.find((child) => child.name === 'gov'); - - // Sort the tree alphabetically by label (matching V1 behavior) - if (govTree?.children) { - sortTreeInPlace(govTree.children); - } - - return govTree; -} /** * Prefixes to exclude from the parameter tree. @@ -268,11 +178,3 @@ export function buildParameterTreeV2( return govTree; } -/** - * Converts metadata API response to parameter tree format - */ -export function convertMetadataToParameterTree( - metadata: MetadataApiPayload -): ParameterTreeNode | undefined { - return buildParameterTree(metadata.result.parameters); -} diff --git a/app/src/libs/metadataUtils.ts b/app/src/libs/metadataUtils.ts index b80cf87c0..23ed7db19 100644 --- a/app/src/libs/metadataUtils.ts +++ b/app/src/libs/metadataUtils.ts @@ -9,7 +9,6 @@ */ import { createSelector } from '@reduxjs/toolkit'; import { RootState } from '@/store'; -import { MetadataApiPayload, MetadataState } from '@/types/metadata'; // For field options, we need a function that takes fieldName as parameter // We'll use a factory function that returns a memoized selector @@ -82,27 +81,3 @@ export const getFieldLabel = (fieldName: string) => { ); }; -/** - * Transform API payload to MetadataState format - * Note: Static data (entities, basicInputs, economyOptions, etc.) is now handled separately - * via static files in src/data/static/ - */ -export function transformMetadataPayload( - payload: MetadataApiPayload, - country: string -): MetadataState { - const data = payload.result; - return { - currentCountry: country, - // V2 unified loading states - loading: false, - loaded: false, - error: null, - progress: 100, // Transformation happens after successful load - variables: data.variables ?? {}, - parameters: data.parameters ?? {}, - datasets: data.economy_options?.datasets ?? [], - version: data.version ?? null, - parameterTree: null, // Will be built separately in the reducer - }; -} diff --git a/app/src/mocks/UK_Metadata.json b/app/src/mocks/UK_Metadata.json deleted file mode 100644 index 33118000b..000000000 --- a/app/src/mocks/UK_Metadata.json +++ /dev/null @@ -1,48415 +0,0 @@ -{ - "status": "ok", - "message": null, - "result": { - "variables": { - "consumer_incident_tax_revenue_change": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "consumer_incident_tax_revenue_change", - "label": "consumer-incident tax revenue change", - "category": null, - "unit": "currency-GBP", - "moduleName": "contrib.policyengine.consumer_incident_tax_revenue_change", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "corporate_incident_tax_revenue_change": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "corporate_incident_tax_revenue_change", - "label": "corporate-incident tax revenue change", - "category": null, - "unit": "currency-GBP", - "moduleName": "contrib.policyengine.corporate_incident_tax_revenue_change", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "education_budget_change": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "education_budget_change", - "label": "education budget change", - "category": null, - "unit": null, - "moduleName": "contrib.policyengine.education_budget_change", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "high_income_incident_tax_change": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "high_income_incident_tax_change", - "label": "high income-incident tax revenue change", - "category": null, - "unit": "currency-GBP", - "moduleName": "contrib.policyengine.high_income_incident_tax_change", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nhs_budget_change": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "nhs_budget_change", - "label": "NHS budget change", - "category": null, - "unit": null, - "moduleName": "contrib.policyengine.nhs_budget_change", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pre_budget_change_household_net_income": { - "documentation": "household net income", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "pre_budget_change_household_net_income", - "label": "household net income", - "category": null, - "unit": "currency-GBP", - "moduleName": "contrib.policyengine.pre_budget_change_household_net_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["household_market_income", "pre_budget_change_household_benefits"], - "subtracts": ["pre_budget_change_household_tax"], - "hidden_input": false - }, - "pre_budget_change_ons_household_income_decile": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "pre_budget_change_ons_household_income_decile", - "label": "pre-budget change household income decile (ONS matched)", - "category": null, - "unit": "currency-GBP", - "moduleName": "contrib.policyengine.pre_budget_change_ons_household_income_decile", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "other_public_spending_budget_change": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "other_public_spending_budget_change", - "label": "non- budget change", - "category": null, - "unit": null, - "moduleName": "contrib.policyengine.other_public_spending_budget_change", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pre_budget_change_household_tax": { - "documentation": "Total taxes owed by the household", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "pre_budget_change_household_tax", - "label": "household taxes", - "category": null, - "unit": "currency-GBP", - "moduleName": "contrib.policyengine.pre_budget_change_household_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "expected_sdlt", - "expected_ltt", - "expected_lbtt", - "corporate_sdlt", - "business_rates", - "council_tax", - "domestic_rates", - "fuel_duty", - "tv_licence", - "wealth_tax", - "non_primary_residence_wealth_tax", - "income_tax", - "national_insurance", - "LVT", - "carbon_tax", - "vat_change", - "capital_gains_tax" - ], - "subtracts": null, - "hidden_input": false - }, - "pre_budget_change_household_benefits": { - "documentation": "Total value of benefits received by household", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "pre_budget_change_household_benefits", - "label": "household benefits", - "category": null, - "unit": "currency-GBP", - "moduleName": "contrib.policyengine.pre_budget_change_household_benefits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "child_benefit", - "esa_income", - "housing_benefit", - "income_support", - "jsa_income", - "pension_credit", - "universal_credit", - "working_tax_credit", - "child_tax_credit", - "attendance_allowance", - "afcs", - "bsp", - "carers_allowance", - "dla", - "esa_contrib", - "iidb", - "incapacity_benefit", - "jsa_contrib", - "pip", - "sda", - "state_pension", - "maternity_allowance", - "statutory_sick_pay", - "statutory_maternity_pay", - "ssmg", - "basic_income", - "epg_subsidy", - "cost_of_living_support_payment", - "energy_bills_rebate" - ], - "subtracts": null, - "hidden_input": false - }, - "employer_ni_response_consumer_incidence": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "employer_ni_response_consumer_incidence", - "label": "price response to employer NI reform", - "category": null, - "unit": "currency-GBP", - "moduleName": "contrib.policyengine.employer_ni.employer_ni_response_consumer_incidence", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "employer_ni_fixed_employer_cost_change": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "employer_ni_fixed_employer_cost_change", - "label": "employer NI reform incidence", - "category": null, - "unit": "currency-GBP", - "moduleName": "contrib.policyengine.employer_ni.employer_ni_fixed_employer_cost_change", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "employer_cost": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "employer_cost", - "label": "employer cost", - "category": null, - "unit": "currency-GBP", - "moduleName": "contrib.policyengine.employer_ni.employer_cost", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "adjusted_employer_cost": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "adjusted_employer_cost", - "label": "employer cost", - "category": null, - "unit": "currency-GBP", - "moduleName": "contrib.policyengine.employer_ni.adjusted_employer_cost", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "baseline_employer_cost": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "baseline_employer_cost", - "label": "baseline employer cost", - "category": null, - "unit": "currency-GBP", - "moduleName": "contrib.policyengine.employer_ni.baseline_employer_cost", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "employer_ni_response_capital_incidence": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "employer_ni_response_capital_incidence", - "label": "capital response to employer NI reform", - "category": null, - "unit": "currency-GBP", - "moduleName": "contrib.policyengine.employer_ni.employer_ni_response_capital_incidence", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "attends_private_school": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "attends_private_school", - "label": "attends private school", - "category": null, - "unit": null, - "moduleName": "contrib.labour.attends_private_school", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "private_school_vat": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "private_school_vat", - "label": "private school VAT", - "category": null, - "unit": "currency-GBP", - "moduleName": "contrib.labour.private_school_vat", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "non_primary_residence_wealth_tax": { - "documentation": "Annual tax on household net wealth excluding primary residences", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "non_primary_residence_wealth_tax", - "label": "Wealth tax (non-primary residence)", - "category": null, - "unit": "currency-GBP", - "moduleName": "contrib.cec.non_primary_residence_wealth_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wealth_tax": { - "documentation": "Annual tax on household net wealth", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "wealth_tax", - "label": "Wealth tax", - "category": null, - "unit": "currency-GBP", - "moduleName": "contrib.ubi_center.wealth_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "carbon_tax": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "carbon_tax", - "label": "Carbon tax", - "category": null, - "unit": "currency-GBP", - "moduleName": "contrib.ubi_center.carbon_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "LVT": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "LVT", - "label": "Land value tax", - "category": null, - "unit": "currency-GBP", - "moduleName": "contrib.ubi_center.land_value_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "bi_individual_phaseout": { - "documentation": "Reduction in basic income from individual-level phase-outs.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "bi_individual_phaseout", - "label": "Basic income phase-out (individual)", - "category": null, - "unit": "currency-GBP", - "moduleName": "contrib.ubi_center.basic_income.bi_individual_phaseout", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "bi_phaseout": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "bi_phaseout", - "label": "Basic income phase-out", - "category": null, - "unit": "currency-GBP", - "moduleName": "contrib.ubi_center.basic_income.bi_phaseout", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["bi_individual_phaseout", "bi_household_phaseout"], - "subtracts": null, - "hidden_input": false - }, - "bi_household_phaseout": { - "documentation": "Reduction in basic income from household-level phase-outs.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "bi_household_phaseout", - "label": "Basic income phase-out (household)", - "category": null, - "unit": "currency-GBP", - "moduleName": "contrib.ubi_center.basic_income.bi_household_phaseout", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "bi_maximum": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "bi_maximum", - "label": "Basic income before phase-outs", - "category": null, - "unit": "currency-GBP", - "moduleName": "contrib.ubi_center.basic_income.bi_maximum", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "basic_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "basic_income", - "label": "Basic income", - "category": null, - "unit": "currency-GBP", - "moduleName": "contrib.ubi_center.basic_income.basic_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["bi_maximum"], - "subtracts": ["bi_phaseout"], - "hidden_input": false - }, - "cliff_evaluated": { - "documentation": "Whether this person's cliff has been simulated. If not, then the cliff gap is assumed to be zero.", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "cliff_evaluated", - "label": "cliff evaluated", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.cliff_evaluated", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "brma": { - "documentation": null, - "entity": "household", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "brma", - "label": "Broad Rental Market Area", - "category": null, - "unit": null, - "moduleName": "household.BRMA", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": "MAIDSTONE", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "ASHFORD", - "label": "Ashford" - }, - { - "value": "AYLESBURY", - "label": "Aylesbury" - }, - { - "value": "BARNSLEY", - "label": "Barnsley" - }, - { - "value": "BARROW_IN_FURNESS", - "label": "Barrow-in-Furness" - }, - { - "value": "BASINGSTOKE", - "label": "Basingstoke" - }, - { - "value": "BATH", - "label": "Bath" - }, - { - "value": "BEDFORD", - "label": "Bedford" - }, - { - "value": "BIRMINGHAM", - "label": "Birmingham" - }, - { - "value": "BLACK_COUNTRY", - "label": "Black Country" - }, - { - "value": "BLACKWATER_VALLEY", - "label": "Blackwater Valley" - }, - { - "value": "BOLTON_AND_BURY", - "label": "Bolton and Bury" - }, - { - "value": "BOURNEMOUTH", - "label": "Bournemouth" - }, - { - "value": "BRADFORD_SOUTH_DALES", - "label": "Bradford & South Dales" - }, - { - "value": "BRIGHTON_AND_HOVE", - "label": "Brighton and Hove" - }, - { - "value": "BRISTOL", - "label": "Bristol" - }, - { - "value": "BURY_ST_EDMUNDS", - "label": "Bury St Edmunds" - }, - { - "value": "CAMBRIDGE", - "label": "Cambridge" - }, - { - "value": "CANTERBURY", - "label": "Canterbury" - }, - { - "value": "CENTRAL_GREATER_MANCHESTER", - "label": "Central Greater Manchester" - }, - { - "value": "CENTRAL_LANCS", - "label": "Central Lancs" - }, - { - "value": "CENTRAL_LONDON", - "label": "Central London" - }, - { - "value": "CENTRAL_NORFOLK_NORWICH", - "label": "Central Norfolk & Norwich" - }, - { - "value": "CHELMSFORD", - "label": "Chelmsford" - }, - { - "value": "CHELTENHAM", - "label": "Cheltenham" - }, - { - "value": "CHERWELL_VALLEY", - "label": "Cherwell Valley" - }, - { - "value": "CHESTERFIELD", - "label": "Chesterfield" - }, - { - "value": "CHICHESTER", - "label": "Chichester" - }, - { - "value": "CHILTERNS", - "label": "Chilterns" - }, - { - "value": "COLCHESTER", - "label": "Colchester" - }, - { - "value": "COVENTRY", - "label": "Coventry" - }, - { - "value": "CRAWLEY_REIGATE", - "label": "Crawley & Reigate" - }, - { - "value": "DARLINGTON", - "label": "Darlington" - }, - { - "value": "DERBY", - "label": "Derby" - }, - { - "value": "DONCASTER", - "label": "Doncaster" - }, - { - "value": "DOVER_SHEPWAY", - "label": "Dover-Shepway" - }, - { - "value": "DURHAM", - "label": "Durham" - }, - { - "value": "EAST_CHESHIRE", - "label": "East Cheshire" - }, - { - "value": "EAST_LANCS", - "label": "East Lancs" - }, - { - "value": "EAST_THAMES_VALLEY", - "label": "East Thames Valley" - }, - { - "value": "EASTBOURNE", - "label": "Eastbourne" - }, - { - "value": "EASTERN_STAFFORDSHIRE", - "label": "Eastern Staffordshire" - }, - { - "value": "EXETER", - "label": "Exeter" - }, - { - "value": "FYLDE_COAST", - "label": "Fylde Coast" - }, - { - "value": "GLOUCESTER", - "label": "Gloucester" - }, - { - "value": "GRANTHAM_NEWARK", - "label": "Grantham & Newark" - }, - { - "value": "GREATER_LIVERPOOL", - "label": "Greater Liverpool" - }, - { - "value": "GRIMSBY", - "label": "Grimsby" - }, - { - "value": "GUILDFORD", - "label": "Guildford" - }, - { - "value": "HALIFAX", - "label": "Halifax" - }, - { - "value": "HARLOW_STORTFORD", - "label": "Harlow & Stortford" - }, - { - "value": "HARROGATE", - "label": "Harrogate" - }, - { - "value": "HEREFORDSHIRE", - "label": "Herefordshire" - }, - { - "value": "HIGH_WEALD", - "label": "High Weald" - }, - { - "value": "HULL_EAST_RIDING", - "label": "Hull & East Riding" - }, - { - "value": "HUNTINGDON", - "label": "Huntingdon" - }, - { - "value": "INNER_EAST_LONDON", - "label": "Inner East London" - }, - { - "value": "INNER_NORTH_LONDON", - "label": "Inner North London" - }, - { - "value": "INNER_SOUTH_EAST_LONDON", - "label": "Inner South East London" - }, - { - "value": "INNER_SOUTH_WEST_LONDON", - "label": "Inner South West London" - }, - { - "value": "INNER_WEST_LONDON", - "label": "Inner West London" - }, - { - "value": "IPSWICH", - "label": "Ipswich" - }, - { - "value": "ISLE_OF_WIGHT", - "label": "Isle of Wight" - }, - { - "value": "KENDAL", - "label": "Kendal" - }, - { - "value": "KERNOW_WEST", - "label": "Kernow West" - }, - { - "value": "KINGS_LYNN", - "label": "Kings Lynn" - }, - { - "value": "KIRKLEES", - "label": "Kirklees" - }, - { - "value": "LANCASTER", - "label": "Lancaster" - }, - { - "value": "LEEDS", - "label": "Leeds" - }, - { - "value": "LEICESTER", - "label": "Leicester" - }, - { - "value": "LINCOLN", - "label": "Lincoln" - }, - { - "value": "LINCOLNSHIRE_FENS", - "label": "Lincolnshire Fens" - }, - { - "value": "LOWESTOFT_GREAT_YARMOUTH", - "label": "Lowestoft & Great Yarmouth" - }, - { - "value": "LUTON", - "label": "Luton" - }, - { - "value": "MAIDSTONE", - "label": "Maidstone" - }, - { - "value": "MEDWAY_SWALE", - "label": "Medway & Swale" - }, - { - "value": "MENDIP", - "label": "Mendip" - }, - { - "value": "MID_EAST_DEVON", - "label": "Mid & East Devon" - }, - { - "value": "MID_WEST_DORSET", - "label": "Mid & West Dorset" - }, - { - "value": "MID_STAFFS", - "label": "Mid Staffs" - }, - { - "value": "MILTON_KEYNES", - "label": "Milton Keynes" - }, - { - "value": "NEWBURY", - "label": "Newbury" - }, - { - "value": "NORTH_CHESHIRE", - "label": "North Cheshire" - }, - { - "value": "NORTH_CORNWALL_DEVON_BORDERS", - "label": "North Cornwall & Devon Borders" - }, - { - "value": "NORTH_CUMBRIA", - "label": "North Cumbria" - }, - { - "value": "NORTH_DEVON", - "label": "North Devon" - }, - { - "value": "NORTH_NOTTINGHAM", - "label": "North Nottingham" - }, - { - "value": "NORTH_WEST_KENT", - "label": "North West Kent" - }, - { - "value": "NORTH_WEST_LONDON", - "label": "North West London" - }, - { - "value": "NORTHAMPTON", - "label": "Northampton" - }, - { - "value": "NORTHANTS_CENTRAL", - "label": "Northants Central" - }, - { - "value": "NORTHUMBERLAND", - "label": "Northumberland" - }, - { - "value": "NOTTINGHAM", - "label": "Nottingham" - }, - { - "value": "OLDHAM_ROCHDALE", - "label": "Oldham & Rochdale" - }, - { - "value": "OUTER_EAST_LONDON", - "label": "Outer East London" - }, - { - "value": "OUTER_NORTH_EAST_LONDON", - "label": "Outer North East London" - }, - { - "value": "OUTER_NORTH_LONDON", - "label": "Outer North London" - }, - { - "value": "OUTER_SOUTH_EAST_LONDON", - "label": "Outer South East London" - }, - { - "value": "OUTER_SOUTH_LONDON", - "label": "Outer South London" - }, - { - "value": "OUTER_SOUTH_WEST_LONDON", - "label": "Outer South West London" - }, - { - "value": "OUTER_WEST_LONDON", - "label": "Outer West London" - }, - { - "value": "OXFORD", - "label": "Oxford" - }, - { - "value": "PEAKS_DALES", - "label": "Peaks & Dales" - }, - { - "value": "PETERBOROUGH", - "label": "Peterborough" - }, - { - "value": "PLYMOUTH", - "label": "Plymouth" - }, - { - "value": "PORTSMOUTH", - "label": "Portsmouth" - }, - { - "value": "READING", - "label": "Reading" - }, - { - "value": "RICHMOND_HAMBLETON", - "label": "Richmond & Hambleton" - }, - { - "value": "ROTHERHAM", - "label": "Rotherham" - }, - { - "value": "RUGBY_EAST", - "label": "Rugby & East" - }, - { - "value": "SALISBURY", - "label": "Salisbury" - }, - { - "value": "SCARBOROUGH", - "label": "Scarborough" - }, - { - "value": "SCUNTHORPE", - "label": "Scunthorpe" - }, - { - "value": "SHEFFIELD", - "label": "Sheffield" - }, - { - "value": "SHROPSHIRE", - "label": "Shropshire" - }, - { - "value": "SOLIHULL", - "label": "Solihull" - }, - { - "value": "SOUTH_CHESHIRE", - "label": "South Cheshire" - }, - { - "value": "SOUTH_DEVON", - "label": "South Devon" - }, - { - "value": "SOUTH_EAST_HERTS", - "label": "South East Herts" - }, - { - "value": "SOUTH_WEST_ESSEX", - "label": "South West Essex" - }, - { - "value": "SOUTH_WEST_HERTS", - "label": "South West Herts" - }, - { - "value": "SOUTHAMPTON", - "label": "Southampton" - }, - { - "value": "SOUTHEND", - "label": "Southend" - }, - { - "value": "SOUTHERN_GREATER_MANCHESTER", - "label": "Southern Greater Manchester" - }, - { - "value": "SOUTHPORT", - "label": "Southport" - }, - { - "value": "ST_HELENS", - "label": "St Helens" - }, - { - "value": "STAFFORDSHIRE_NORTH", - "label": "Staffordshire North" - }, - { - "value": "STEVENAGE_NORTH_HERTS", - "label": "Stevenage & North Herts" - }, - { - "value": "SUNDERLAND", - "label": "Sunderland" - }, - { - "value": "SUSSEX_EAST", - "label": "Sussex East" - }, - { - "value": "SWINDON", - "label": "Swindon" - }, - { - "value": "TAMESIDE_GLOSSOP", - "label": "Tameside & Glossop" - }, - { - "value": "TAUNTON_WEST_SOMERSET", - "label": "Taunton & West Somerset" - }, - { - "value": "TEESSIDE", - "label": "Teesside" - }, - { - "value": "THANET", - "label": "Thanet" - }, - { - "value": "TYNESIDE", - "label": "Tyneside" - }, - { - "value": "WAKEFIELD", - "label": "Wakefield" - }, - { - "value": "WALTON", - "label": "Walton" - }, - { - "value": "WARWICKSHIRE_SOUTH", - "label": "Warwickshire South" - }, - { - "value": "WEST_CHESHIRE", - "label": "West Cheshire" - }, - { - "value": "WEST_CUMBRIA", - "label": "West Cumbria" - }, - { - "value": "WEST_PENNINE", - "label": "West Pennine" - }, - { - "value": "WEST_WILTSHIRE", - "label": "West Wiltshire" - }, - { - "value": "WESTON_S_MARE", - "label": "Weston-S-Mare" - }, - { - "value": "WIGAN", - "label": "Wigan" - }, - { - "value": "WINCHESTER", - "label": "Winchester" - }, - { - "value": "WIRRAL", - "label": "Wirral" - }, - { - "value": "WOLDS_AND_COAST", - "label": "Wolds and Coast" - }, - { - "value": "WORCESTER_NORTH", - "label": "Worcester North" - }, - { - "value": "WORCESTER_SOUTH", - "label": "Worcester South" - }, - { - "value": "WORTHING", - "label": "Worthing" - }, - { - "value": "YEOVIL", - "label": "Yeovil" - }, - { - "value": "YORK", - "label": "York" - }, - { - "value": "BELFAST", - "label": "Belfast" - }, - { - "value": "LOUGH_NEAGH_LOWER", - "label": "Lough Neagh Lower" - }, - { - "value": "LOUGH_NEAGH_UPPER", - "label": "Lough Neagh Upper" - }, - { - "value": "NORTH_NI", - "label": "North (NI)" - }, - { - "value": "NORTH_WEST_NI", - "label": "North West (NI)" - }, - { - "value": "SOUTH_NI", - "label": "South (NI)" - }, - { - "value": "SOUTH_EAST_NI", - "label": "South East (NI)" - }, - { - "value": "SOUTH_WEST_NI", - "label": "South West (NI)" - }, - { - "value": "ABERDEEN_AND_SHIRE", - "label": "Aberdeen and Shire" - }, - { - "value": "ARGYLL_AND_BUTE", - "label": "Argyll and Bute" - }, - { - "value": "AYRSHIRES", - "label": "Ayrshires" - }, - { - "value": "DUMFRIES_AND_GALLOWAY", - "label": "Dumfries and Galloway" - }, - { - "value": "DUNDEE_AND_ANGUS", - "label": "Dundee and Angus" - }, - { - "value": "EAST_DUNBARTONSHIRE", - "label": "East Dunbartonshire" - }, - { - "value": "FIFE", - "label": "Fife" - }, - { - "value": "FORTH_VALLEY", - "label": "Forth Valley" - }, - { - "value": "GREATER_GLASGOW", - "label": "Greater Glasgow" - }, - { - "value": "HIGHLAND_AND_ISLANDS", - "label": "Highland and Islands" - }, - { - "value": "LOTHIAN", - "label": "Lothian" - }, - { - "value": "NORTH_LANARKSHIRE", - "label": "North Lanarkshire" - }, - { - "value": "PERTH_AND_KINROSS", - "label": "Perth and Kinross" - }, - { - "value": "RENFREWSHIRE_AND_INVERCLYDE", - "label": "Renfrewshire and Inverclyde" - }, - { - "value": "SCOTTISH_BORDERS", - "label": "Scottish Borders" - }, - { - "value": "SOUTH_LANARKSHIRE", - "label": "South Lanarkshire" - }, - { - "value": "WEST_DUNBARTONSHIRE", - "label": "West Dunbartonshire" - }, - { - "value": "WEST_LOTHIAN", - "label": "West Lothian" - }, - { - "value": "BLAENAU_GWENT", - "label": "Blaenau Gwent" - }, - { - "value": "BRECON_AND_RADNOR", - "label": "Brecon and Radnor" - }, - { - "value": "BRIDGEND", - "label": "Bridgend" - }, - { - "value": "CAERPHILLY", - "label": "Caerphilly" - }, - { - "value": "CARDIFF", - "label": "Cardiff" - }, - { - "value": "CARMARTHENSHIRE", - "label": "Carmarthenshire" - }, - { - "value": "CEREDIGION", - "label": "Ceredigion" - }, - { - "value": "FLINTSHIRE", - "label": "Flintshire" - }, - { - "value": "MERTHYR_CYNON", - "label": "Merthyr Cynon" - }, - { - "value": "MONMOUTHSHIRE", - "label": "Monmouthshire" - }, - { - "value": "NEATH_PORT_TALBOT", - "label": "Neath Port Talbot" - }, - { - "value": "NEWPORT", - "label": "Newport" - }, - { - "value": "NORTH_CLWYD", - "label": "North Clwyd" - }, - { - "value": "NORTH_POWYS", - "label": "North Powys" - }, - { - "value": "NORTH_WEST_WALES", - "label": "North West Wales" - }, - { - "value": "PEMBROKESHIRE", - "label": "Pembrokeshire" - }, - { - "value": "SOUTH_GWYNEDD", - "label": "South Gwynedd" - }, - { - "value": "SWANSEA", - "label": "Swansea" - }, - { - "value": "TAFF_RHONDDA", - "label": "Taff Rhondda" - }, - { - "value": "TORFAEN", - "label": "Torfaen" - }, - { - "value": "VALE_OF_GLAMORGAN", - "label": "Vale of Glamorgan" - }, - { - "value": "WREXHAM", - "label": "Wrexham" - } - ] - }, - "region": { - "documentation": "Area of the UK", - "entity": "household", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "region", - "label": "region", - "category": null, - "unit": null, - "moduleName": "household.region", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": "LONDON", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "UNKNOWN", - "label": "Unknown" - }, - { - "value": "NORTH_EAST", - "label": "North East" - }, - { - "value": "NORTH_WEST", - "label": "North West" - }, - { - "value": "YORKSHIRE", - "label": "Yorkshire and the Humber" - }, - { - "value": "EAST_MIDLANDS", - "label": "East Midlands" - }, - { - "value": "WEST_MIDLANDS", - "label": "West Midlands" - }, - { - "value": "EAST_OF_ENGLAND", - "label": "East of England" - }, - { - "value": "LONDON", - "label": "London" - }, - { - "value": "SOUTH_EAST", - "label": "South East" - }, - { - "value": "SOUTH_WEST", - "label": "South West" - }, - { - "value": "WALES", - "label": "Wales" - }, - { - "value": "SCOTLAND", - "label": "Scotland" - }, - { - "value": "NORTHERN_IRELAND", - "label": "Northern Ireland" - } - ] - }, - "marginal_tax_rate": { - "documentation": "Percent of marginal income gains that do not increase household net income.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "marginal_tax_rate", - "label": "Marginal tax rate", - "category": null, - "unit": "/1", - "moduleName": "household.marginal_tax_rate", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_on_cliff": { - "documentation": "Whether this person would be worse off if their employment income were higher by delta amount.", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_on_cliff", - "label": "is on a tax-benefit cliff", - "category": null, - "unit": null, - "moduleName": "household.is_on_cliff", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "cliff_gap": { - "documentation": "Amount of income lost if this person's employment income increased by delta amount.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "cliff_gap", - "label": "cliff gap", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.cliff_gap", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_carer_for_benefits": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_carer_for_benefits", - "label": "Whether this person is a carer for benefits purposes", - "category": null, - "unit": null, - "moduleName": "household.demographic.is_carer_for_benefits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "country": { - "documentation": null, - "entity": "household", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "country", - "label": "Country of the UK", - "category": null, - "unit": null, - "moduleName": "household.demographic.country", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "ENGLAND", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "ENGLAND", - "label": "England" - }, - { - "value": "NORTHERN_IRELAND", - "label": "Northern Ireland" - }, - { - "value": "SCOTLAND", - "label": "Scotland" - }, - { - "value": "WALES", - "label": "Wales" - }, - { - "value": "UNKNOWN", - "label": "Unknown" - } - ] - }, - "in_social_housing": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "in_social_housing", - "label": "Whether this person lives in social housing", - "category": null, - "unit": null, - "moduleName": "household.demographic.in_social_housing", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "relation_type": { - "documentation": null, - "entity": "benunit", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "relation_type", - "label": "Whether single or a couple", - "category": null, - "unit": null, - "moduleName": "household.demographic.relation_type", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "SINGLE", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "SINGLE", - "label": "Single" - }, - { - "value": "COUPLE", - "label": "Couple" - } - ] - }, - "is_blind": { - "documentation": "Certified as blind or severely sight impaired by a consultant ophthalmologist", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_blind", - "label": "Blind", - "category": null, - "unit": null, - "moduleName": "household.demographic.is_blind", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "people": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "people", - "label": "Variable holding people", - "category": null, - "unit": null, - "moduleName": "household.demographic.people", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 1, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "household_weight": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "household_weight", - "label": "Weight factor for the household", - "category": null, - "unit": null, - "moduleName": "household.demographic.household_weight", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 1, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "age_18_64": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "age_18_64", - "label": "Whether the person is age 18 to 64", - "category": null, - "unit": null, - "moduleName": "household.demographic.age_18_64", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_higher_earner": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_higher_earner", - "label": "Whether this person is the highest earner in a family", - "category": null, - "unit": null, - "moduleName": "household.demographic.is_higher_earner", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_adult": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_adult", - "label": "Whether this person is an adult", - "category": null, - "unit": null, - "moduleName": "household.demographic.is_adult", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "household_owns_tv": { - "documentation": "Whether this household owns a functioning colour TV.", - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "household_owns_tv", - "label": "Owns a TV", - "category": null, - "unit": null, - "moduleName": "household.demographic.household_owns_tv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "benunit_tenure_type": { - "documentation": null, - "entity": "benunit", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "benunit_tenure_type", - "label": "Tenure type of the family's household", - "category": null, - "unit": null, - "moduleName": "household.demographic.benunit_tenure_type", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "RENT_PRIVATELY", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "RENT_FROM_COUNCIL", - "label": "Rented from Council" - }, - { - "value": "RENT_FROM_HA", - "label": "Rented from a Housing Association" - }, - { - "value": "RENT_PRIVATELY", - "label": "Rented privately" - }, - { - "value": "OWNED_OUTRIGHT", - "label": "Owned outright" - }, - { - "value": "OWNED_WITH_MORTGAGE", - "label": "Owned with a mortgage" - } - ] - }, - "households": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "households", - "label": "Variable holding households", - "category": null, - "unit": null, - "moduleName": "household.demographic.households", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 1, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "person_benunit_id": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "person_benunit_id", - "label": "Person's benefit unit ID", - "category": null, - "unit": null, - "moduleName": "household.demographic.person_benunit_id", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "num_enhanced_disabled_adults": { - "documentation": null, - "entity": "benunit", - "valueType": "int", - "definitionPeriod": "year", - "name": "num_enhanced_disabled_adults", - "label": "Number of enhanced disabled adults", - "category": null, - "unit": null, - "moduleName": "household.demographic.num_enhanced_disabled_adults", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "num_children": { - "documentation": null, - "entity": "benunit", - "valueType": "int", - "definitionPeriod": "year", - "name": "num_children", - "label": "The number of children in the family", - "category": null, - "unit": null, - "moduleName": "household.demographic.num_children", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_household_head": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_household_head", - "label": "Whether this person is the head-of-household", - "category": null, - "unit": null, - "moduleName": "household.demographic.is_household_head", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "eldest_child_age": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "eldest_child_age", - "label": "Eldest adult age", - "category": null, - "unit": null, - "moduleName": "household.demographic.eldest_child_age", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_shared_accommodation": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_shared_accommodation", - "label": "Whether the household is shared accommodation", - "category": null, - "unit": null, - "moduleName": "household.demographic.is_shared_accommodation", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_young_child": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_young_child", - "label": "Whether the person is under 14", - "category": null, - "unit": null, - "moduleName": "household.demographic.is_young_child", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "in_FE": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "in_FE", - "label": "Whether this person is in Further Education", - "category": null, - "unit": null, - "moduleName": "household.demographic.in_FE", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "family_type": { - "documentation": null, - "entity": "benunit", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "family_type", - "label": "Family composition", - "category": null, - "unit": null, - "moduleName": "household.demographic.family_type", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "SINGLE", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "SINGLE", - "label": "Single, with no children" - }, - { - "value": "COUPLE_NO_CHILDREN", - "label": "Couple, with no children" - }, - { - "value": "LONE_PARENT", - "label": "Lone parent, with children" - }, - { - "value": "COUPLE_WITH_CHILDREN", - "label": "Couple, with children" - } - ] - }, - "is_disabled_for_benefits": { - "documentation": "Whether this person is disabled for benefits purposes", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_disabled_for_benefits", - "label": "Has a disability", - "category": null, - "unit": null, - "moduleName": "household.demographic.is_disabled_for_benefits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_older_child": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_older_child", - "label": "Whether the person is over 14 but under 18", - "category": null, - "unit": null, - "moduleName": "household.demographic.is_older_child", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "age_over_64": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "age_over_64", - "label": "Whether the person is over age 64", - "category": null, - "unit": null, - "moduleName": "household.demographic.age_over_64", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_enhanced_disabled_for_benefits": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_enhanced_disabled_for_benefits", - "label": "Whether meets the middle disability benefit entitlement", - "category": null, - "unit": null, - "moduleName": "household.demographic.is_enhanced_disabled_for_benefits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "benunit_is_renting": { - "documentation": null, - "entity": "benunit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "benunit_is_renting", - "label": "Whether this family is renting", - "category": null, - "unit": null, - "moduleName": "household.demographic.benunit_is_renting", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "local_authority": { - "documentation": "The local authority for this household (this is often the same as your Broad Rental Market Area, but may differ).", - "entity": "household", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "local_authority", - "label": "Local Authority", - "category": null, - "unit": null, - "moduleName": "household.demographic.locations", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": "MAIDSTONE", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "ABERDEEN_CITY", - "label": "Aberdeen City" - }, - { - "value": "ABERDEENSHIRE", - "label": "Aberdeenshire" - }, - { - "value": "ADUR", - "label": "Adur" - }, - { - "value": "ALLERDALE", - "label": "Allerdale" - }, - { - "value": "AMBER_VALLEY", - "label": "Amber Valley" - }, - { - "value": "ANGUS", - "label": "Angus" - }, - { - "value": "ANTRIM_AND_NEWTOWNABBEY", - "label": "Antrim and Newtownabbey" - }, - { - "value": "ARDS_AND_NORTH_DOWN", - "label": "Ards and North Down" - }, - { - "value": "ARGYLL_AND_BUTE", - "label": "Argyll and Bute" - }, - { - "value": "ARMAGH_CITY_BANBRIDGE_AND_CRAIGAVON", - "label": "Armagh City, Banbridge and Craigavon" - }, - { - "value": "ARUN", - "label": "Arun" - }, - { - "value": "ASHFIELD", - "label": "Ashfield" - }, - { - "value": "ASHFORD", - "label": "Ashford" - }, - { - "value": "BABERGH", - "label": "Babergh" - }, - { - "value": "BARKING_AND_DAGENHAM", - "label": "Barking and Dagenham" - }, - { - "value": "BARNET", - "label": "Barnet" - }, - { - "value": "BARNSLEY", - "label": "Barnsley" - }, - { - "value": "BARROW_IN_FURNESS", - "label": "Barrow-in-Furness" - }, - { - "value": "BASILDON", - "label": "Basildon" - }, - { - "value": "BASINGSTOKE_AND_DEANE", - "label": "Basingstoke and Deane" - }, - { - "value": "BASSETLAW", - "label": "Bassetlaw" - }, - { - "value": "BATH_AND_NORTH_EAST_SOMERSET", - "label": "Bath and North East Somerset" - }, - { - "value": "BEDFORD", - "label": "Bedford" - }, - { - "value": "BELFAST", - "label": "Belfast" - }, - { - "value": "BEXLEY", - "label": "Bexley" - }, - { - "value": "BIRMINGHAM", - "label": "Birmingham" - }, - { - "value": "BLABY", - "label": "Blaby" - }, - { - "value": "BLACKBURN_WITH_DARWEN", - "label": "Blackburn with Darwen" - }, - { - "value": "BLACKPOOL", - "label": "Blackpool" - }, - { - "value": "BLAENAU_GWENT", - "label": "Blaenau Gwent" - }, - { - "value": "BOLSOVER", - "label": "Bolsover" - }, - { - "value": "BOLTON", - "label": "Bolton" - }, - { - "value": "BOSTON", - "label": "Boston" - }, - { - "value": "BOURNEMOUTH_CHRISTCHURCH_AND_POOLE", - "label": "Bournemouth, Christchurch and Poole" - }, - { - "value": "BRACKNELL_FOREST", - "label": "Bracknell Forest" - }, - { - "value": "BRADFORD", - "label": "Bradford" - }, - { - "value": "BRAINTREE", - "label": "Braintree" - }, - { - "value": "BRECKLAND", - "label": "Breckland" - }, - { - "value": "BRENT", - "label": "Brent" - }, - { - "value": "BRENTWOOD", - "label": "Brentwood" - }, - { - "value": "BRIDGEND", - "label": "Bridgend" - }, - { - "value": "BRIGHTON_AND_HOVE", - "label": "Brighton and Hove" - }, - { - "value": "BRISTOL_CITY_OF", - "label": "Bristol, City of" - }, - { - "value": "BROADLAND", - "label": "Broadland" - }, - { - "value": "BROMLEY", - "label": "Bromley" - }, - { - "value": "BROMSGROVE", - "label": "Bromsgrove" - }, - { - "value": "BROXBOURNE", - "label": "Broxbourne" - }, - { - "value": "BROXTOWE", - "label": "Broxtowe" - }, - { - "value": "BUCKINGHAMSHIRE", - "label": "Buckinghamshire" - }, - { - "value": "BURNLEY", - "label": "Burnley" - }, - { - "value": "BURY", - "label": "Bury" - }, - { - "value": "CAERPHILLY", - "label": "Caerphilly" - }, - { - "value": "CALDERDALE", - "label": "Calderdale" - }, - { - "value": "CAMBRIDGE", - "label": "Cambridge" - }, - { - "value": "CAMDEN", - "label": "Camden" - }, - { - "value": "CANNOCK_CHASE", - "label": "Cannock Chase" - }, - { - "value": "CANTERBURY", - "label": "Canterbury" - }, - { - "value": "CARDIFF", - "label": "Cardiff" - }, - { - "value": "CARLISLE", - "label": "Carlisle" - }, - { - "value": "CARMARTHENSHIRE", - "label": "Carmarthenshire" - }, - { - "value": "CASTLE_POINT", - "label": "Castle Point" - }, - { - "value": "CAUSEWAY_COAST_AND_GLENS", - "label": "Causeway Coast and Glens" - }, - { - "value": "CENTRAL_BEDFORDSHIRE", - "label": "Central Bedfordshire" - }, - { - "value": "CEREDIGION", - "label": "Ceredigion" - }, - { - "value": "CHARNWOOD", - "label": "Charnwood" - }, - { - "value": "CHELMSFORD", - "label": "Chelmsford" - }, - { - "value": "CHELTENHAM", - "label": "Cheltenham" - }, - { - "value": "CHERWELL", - "label": "Cherwell" - }, - { - "value": "CHESHIRE_EAST", - "label": "Cheshire East" - }, - { - "value": "CHESHIRE_WEST_AND_CHESTER", - "label": "Cheshire West and Chester" - }, - { - "value": "CHESTERFIELD", - "label": "Chesterfield" - }, - { - "value": "CHICHESTER", - "label": "Chichester" - }, - { - "value": "CHORLEY", - "label": "Chorley" - }, - { - "value": "CITY_OF_EDINBURGH", - "label": "City of Edinburgh" - }, - { - "value": "CITY_OF_LONDON", - "label": "City of London" - }, - { - "value": "CLACKMANNANSHIRE", - "label": "Clackmannanshire" - }, - { - "value": "COLCHESTER", - "label": "Colchester" - }, - { - "value": "CONWY", - "label": "Conwy" - }, - { - "value": "COPELAND", - "label": "Copeland" - }, - { - "value": "CORBY", - "label": "Corby" - }, - { - "value": "CORNWALL", - "label": "Cornwall" - }, - { - "value": "COTSWOLD", - "label": "Cotswold" - }, - { - "value": "COUNTY_DURHAM", - "label": "County Durham" - }, - { - "value": "COVENTRY", - "label": "Coventry" - }, - { - "value": "CRAVEN", - "label": "Craven" - }, - { - "value": "CRAWLEY", - "label": "Crawley" - }, - { - "value": "CROYDON", - "label": "Croydon" - }, - { - "value": "DACORUM", - "label": "Dacorum" - }, - { - "value": "DARLINGTON", - "label": "Darlington" - }, - { - "value": "DARTFORD", - "label": "Dartford" - }, - { - "value": "DAVENTRY", - "label": "Daventry" - }, - { - "value": "DENBIGHSHIRE", - "label": "Denbighshire" - }, - { - "value": "DERBY", - "label": "Derby" - }, - { - "value": "DERBYSHIRE_DALES", - "label": "Derbyshire Dales" - }, - { - "value": "DERRY_CITY_AND_STRABANE", - "label": "Derry City and Strabane" - }, - { - "value": "DONCASTER", - "label": "Doncaster" - }, - { - "value": "DORSET", - "label": "Dorset" - }, - { - "value": "DOVER", - "label": "Dover" - }, - { - "value": "DUDLEY", - "label": "Dudley" - }, - { - "value": "DUMFRIES_AND_GALLOWAY", - "label": "Dumfries and Galloway" - }, - { - "value": "DUNDEE_CITY", - "label": "Dundee City" - }, - { - "value": "EALING", - "label": "Ealing" - }, - { - "value": "EAST_AYRSHIRE", - "label": "East Ayrshire" - }, - { - "value": "EAST_CAMBRIDGESHIRE", - "label": "East Cambridgeshire" - }, - { - "value": "EAST_DEVON", - "label": "East Devon" - }, - { - "value": "EAST_DUNBARTONSHIRE", - "label": "East Dunbartonshire" - }, - { - "value": "EAST_HAMPSHIRE", - "label": "East Hampshire" - }, - { - "value": "EAST_HERTFORDSHIRE", - "label": "East Hertfordshire" - }, - { - "value": "EAST_LINDSEY", - "label": "East Lindsey" - }, - { - "value": "EAST_LOTHIAN", - "label": "East Lothian" - }, - { - "value": "EAST_NORTHAMPTONSHIRE", - "label": "East Northamptonshire" - }, - { - "value": "EAST_RENFREWSHIRE", - "label": "East Renfrewshire" - }, - { - "value": "EAST_RIDING_OF_YORKSHIRE", - "label": "East Riding of Yorkshire" - }, - { - "value": "EAST_STAFFORDSHIRE", - "label": "East Staffordshire" - }, - { - "value": "EAST_SUFFOLK", - "label": "East Suffolk" - }, - { - "value": "EASTBOURNE", - "label": "Eastbourne" - }, - { - "value": "EASTLEIGH", - "label": "Eastleigh" - }, - { - "value": "EDEN", - "label": "Eden" - }, - { - "value": "ELMBRIDGE", - "label": "Elmbridge" - }, - { - "value": "ENFIELD", - "label": "Enfield" - }, - { - "value": "EPPING_FOREST", - "label": "Epping Forest" - }, - { - "value": "EPSOM_AND_EWELL", - "label": "Epsom and Ewell" - }, - { - "value": "EREWASH", - "label": "Erewash" - }, - { - "value": "EXETER", - "label": "Exeter" - }, - { - "value": "FALKIRK", - "label": "Falkirk" - }, - { - "value": "FAREHAM", - "label": "Fareham" - }, - { - "value": "FENLAND", - "label": "Fenland" - }, - { - "value": "FERMANAGH_AND_OMAGH", - "label": "Fermanagh and Omagh" - }, - { - "value": "FIFE", - "label": "Fife" - }, - { - "value": "FLINTSHIRE", - "label": "Flintshire" - }, - { - "value": "FOLKESTONE_AND_HYTHE", - "label": "Folkestone and Hythe" - }, - { - "value": "FOREST_OF_DEAN", - "label": "Forest of Dean" - }, - { - "value": "FYLDE", - "label": "Fylde" - }, - { - "value": "GATESHEAD", - "label": "Gateshead" - }, - { - "value": "GEDLING", - "label": "Gedling" - }, - { - "value": "GLASGOW_CITY", - "label": "Glasgow City" - }, - { - "value": "GLOUCESTER", - "label": "Gloucester" - }, - { - "value": "GOSPORT", - "label": "Gosport" - }, - { - "value": "GRAVESHAM", - "label": "Gravesham" - }, - { - "value": "GREAT_YARMOUTH", - "label": "Great Yarmouth" - }, - { - "value": "GREENWICH", - "label": "Greenwich" - }, - { - "value": "GUILDFORD", - "label": "Guildford" - }, - { - "value": "GWYNEDD", - "label": "Gwynedd" - }, - { - "value": "HACKNEY", - "label": "Hackney" - }, - { - "value": "HALTON", - "label": "Halton" - }, - { - "value": "HAMBLETON", - "label": "Hambleton" - }, - { - "value": "HAMMERSMITH_AND_FULHAM", - "label": "Hammersmith and Fulham" - }, - { - "value": "HARBOROUGH", - "label": "Harborough" - }, - { - "value": "HARINGEY", - "label": "Haringey" - }, - { - "value": "HARLOW", - "label": "Harlow" - }, - { - "value": "HARROGATE", - "label": "Harrogate" - }, - { - "value": "HARROW", - "label": "Harrow" - }, - { - "value": "HART", - "label": "Hart" - }, - { - "value": "HARTLEPOOL", - "label": "Hartlepool" - }, - { - "value": "HASTINGS", - "label": "Hastings" - }, - { - "value": "HAVANT", - "label": "Havant" - }, - { - "value": "HAVERING", - "label": "Havering" - }, - { - "value": "HEREFORDSHIRE_COUNTY_OF", - "label": "Herefordshire, County of" - }, - { - "value": "HERTSMERE", - "label": "Hertsmere" - }, - { - "value": "HIGH_PEAK", - "label": "High Peak" - }, - { - "value": "HIGHLAND", - "label": "Highland" - }, - { - "value": "HILLINGDON", - "label": "Hillingdon" - }, - { - "value": "HINCKLEY_AND_BOSWORTH", - "label": "Hinckley and Bosworth" - }, - { - "value": "HORSHAM", - "label": "Horsham" - }, - { - "value": "HOUNSLOW", - "label": "Hounslow" - }, - { - "value": "HUNTINGDONSHIRE", - "label": "Huntingdonshire" - }, - { - "value": "HYNDBURN", - "label": "Hyndburn" - }, - { - "value": "INVERCLYDE", - "label": "Inverclyde" - }, - { - "value": "IPSWICH", - "label": "Ipswich" - }, - { - "value": "ISLE_OF_ANGLESEY", - "label": "Isle of Anglesey" - }, - { - "value": "ISLE_OF_WIGHT", - "label": "Isle of Wight" - }, - { - "value": "ISLES_OF_SCILLY", - "label": "Isles of Scilly" - }, - { - "value": "ISLINGTON", - "label": "Islington" - }, - { - "value": "KENSINGTON_AND_CHELSEA", - "label": "Kensington and Chelsea" - }, - { - "value": "KETTERING", - "label": "Kettering" - }, - { - "value": "KINGS_LYNN_AND_WEST_NORFOLK", - "label": "King's Lynn and West Norfolk" - }, - { - "value": "KINGSTON_UPON_HULL_CITY_OF", - "label": "Kingston upon Hull, City of" - }, - { - "value": "KINGSTON_UPON_THAMES", - "label": "Kingston upon Thames" - }, - { - "value": "KIRKLEES", - "label": "Kirklees" - }, - { - "value": "KNOWSLEY", - "label": "Knowsley" - }, - { - "value": "LAMBETH", - "label": "Lambeth" - }, - { - "value": "LANCASTER", - "label": "Lancaster" - }, - { - "value": "LEEDS", - "label": "Leeds" - }, - { - "value": "LEICESTER", - "label": "Leicester" - }, - { - "value": "LEWES", - "label": "Lewes" - }, - { - "value": "LEWISHAM", - "label": "Lewisham" - }, - { - "value": "LICHFIELD", - "label": "Lichfield" - }, - { - "value": "LINCOLN", - "label": "Lincoln" - }, - { - "value": "LISBURN_AND_CASTLEREAGH", - "label": "Lisburn and Castlereagh" - }, - { - "value": "LIVERPOOL", - "label": "Liverpool" - }, - { - "value": "LUTON", - "label": "Luton" - }, - { - "value": "MAIDSTONE", - "label": "Maidstone" - }, - { - "value": "MALDON", - "label": "Maldon" - }, - { - "value": "MALVERN_HILLS", - "label": "Malvern Hills" - }, - { - "value": "MANCHESTER", - "label": "Manchester" - }, - { - "value": "MANSFIELD", - "label": "Mansfield" - }, - { - "value": "MEDWAY", - "label": "Medway" - }, - { - "value": "MELTON", - "label": "Melton" - }, - { - "value": "MENDIP", - "label": "Mendip" - }, - { - "value": "MERTHYR_TYDFIL", - "label": "Merthyr Tydfil" - }, - { - "value": "MERTON", - "label": "Merton" - }, - { - "value": "MID_DEVON", - "label": "Mid Devon" - }, - { - "value": "MID_SUFFOLK", - "label": "Mid Suffolk" - }, - { - "value": "MID_SUSSEX", - "label": "Mid Sussex" - }, - { - "value": "MID_ULSTER", - "label": "Mid Ulster" - }, - { - "value": "MID_AND_EAST_ANTRIM", - "label": "Mid and East Antrim" - }, - { - "value": "MIDDLESBROUGH", - "label": "Middlesbrough" - }, - { - "value": "MIDLOTHIAN", - "label": "Midlothian" - }, - { - "value": "MILTON_KEYNES", - "label": "Milton Keynes" - }, - { - "value": "MOLE_VALLEY", - "label": "Mole Valley" - }, - { - "value": "MONMOUTHSHIRE", - "label": "Monmouthshire" - }, - { - "value": "MORAY", - "label": "Moray" - }, - { - "value": "NA_H_EILEANAN_SIAR", - "label": "Na h-Eileanan Siar" - }, - { - "value": "NEATH_PORT_TALBOT", - "label": "Neath Port Talbot" - }, - { - "value": "NEW_FOREST", - "label": "New Forest" - }, - { - "value": "NEWARK_AND_SHERWOOD", - "label": "Newark and Sherwood" - }, - { - "value": "NEWCASTLE_UPON_TYNE", - "label": "Newcastle upon Tyne" - }, - { - "value": "NEWCASTLE_UNDER_LYME", - "label": "Newcastle-under-Lyme" - }, - { - "value": "NEWHAM", - "label": "Newham" - }, - { - "value": "NEWPORT", - "label": "Newport" - }, - { - "value": "NEWRY_MOURNE_AND_DOWN", - "label": "Newry, Mourne and Down" - }, - { - "value": "NORTH_AYRSHIRE", - "label": "North Ayrshire" - }, - { - "value": "NORTH_DEVON", - "label": "North Devon" - }, - { - "value": "NORTH_EAST_DERBYSHIRE", - "label": "North East Derbyshire" - }, - { - "value": "NORTH_EAST_LINCOLNSHIRE", - "label": "North East Lincolnshire" - }, - { - "value": "NORTH_HERTFORDSHIRE", - "label": "North Hertfordshire" - }, - { - "value": "NORTH_KESTEVEN", - "label": "North Kesteven" - }, - { - "value": "NORTH_LANARKSHIRE", - "label": "North Lanarkshire" - }, - { - "value": "NORTH_LINCOLNSHIRE", - "label": "North Lincolnshire" - }, - { - "value": "NORTH_NORFOLK", - "label": "North Norfolk" - }, - { - "value": "NORTH_SOMERSET", - "label": "North Somerset" - }, - { - "value": "NORTH_TYNESIDE", - "label": "North Tyneside" - }, - { - "value": "NORTH_WARWICKSHIRE", - "label": "North Warwickshire" - }, - { - "value": "NORTH_WEST_LEICESTERSHIRE", - "label": "North West Leicestershire" - }, - { - "value": "NORTHAMPTON", - "label": "Northampton" - }, - { - "value": "NORTHUMBERLAND", - "label": "Northumberland" - }, - { - "value": "NORWICH", - "label": "Norwich" - }, - { - "value": "NOTTINGHAM", - "label": "Nottingham" - }, - { - "value": "NUNEATON_AND_BEDWORTH", - "label": "Nuneaton and Bedworth" - }, - { - "value": "OADBY_AND_WIGSTON", - "label": "Oadby and Wigston" - }, - { - "value": "OLDHAM", - "label": "Oldham" - }, - { - "value": "ORKNEY_ISLANDS", - "label": "Orkney Islands" - }, - { - "value": "OXFORD", - "label": "Oxford" - }, - { - "value": "PEMBROKESHIRE", - "label": "Pembrokeshire" - }, - { - "value": "PENDLE", - "label": "Pendle" - }, - { - "value": "PERTH_AND_KINROSS", - "label": "Perth and Kinross" - }, - { - "value": "PETERBOROUGH", - "label": "Peterborough" - }, - { - "value": "PLYMOUTH", - "label": "Plymouth" - }, - { - "value": "PORTSMOUTH", - "label": "Portsmouth" - }, - { - "value": "POWYS", - "label": "Powys" - }, - { - "value": "PRESTON", - "label": "Preston" - }, - { - "value": "READING", - "label": "Reading" - }, - { - "value": "REDBRIDGE", - "label": "Redbridge" - }, - { - "value": "REDCAR_AND_CLEVELAND", - "label": "Redcar and Cleveland" - }, - { - "value": "REDDITCH", - "label": "Redditch" - }, - { - "value": "REIGATE_AND_BANSTEAD", - "label": "Reigate and Banstead" - }, - { - "value": "RENFREWSHIRE", - "label": "Renfrewshire" - }, - { - "value": "RHONDDA_CYNON_TAF", - "label": "Rhondda Cynon Taf" - }, - { - "value": "RIBBLE_VALLEY", - "label": "Ribble Valley" - }, - { - "value": "RICHMOND_UPON_THAMES", - "label": "Richmond upon Thames" - }, - { - "value": "RICHMONDSHIRE", - "label": "Richmondshire" - }, - { - "value": "ROCHDALE", - "label": "Rochdale" - }, - { - "value": "ROCHFORD", - "label": "Rochford" - }, - { - "value": "ROSSENDALE", - "label": "Rossendale" - }, - { - "value": "ROTHER", - "label": "Rother" - }, - { - "value": "ROTHERHAM", - "label": "Rotherham" - }, - { - "value": "RUGBY", - "label": "Rugby" - }, - { - "value": "RUNNYMEDE", - "label": "Runnymede" - }, - { - "value": "RUSHCLIFFE", - "label": "Rushcliffe" - }, - { - "value": "RUSHMOOR", - "label": "Rushmoor" - }, - { - "value": "RUTLAND", - "label": "Rutland" - }, - { - "value": "RYEDALE", - "label": "Ryedale" - }, - { - "value": "SALFORD", - "label": "Salford" - }, - { - "value": "SANDWELL", - "label": "Sandwell" - }, - { - "value": "SCARBOROUGH", - "label": "Scarborough" - }, - { - "value": "SCOTTISH_BORDERS", - "label": "Scottish Borders" - }, - { - "value": "SEDGEMOOR", - "label": "Sedgemoor" - }, - { - "value": "SEFTON", - "label": "Sefton" - }, - { - "value": "SELBY", - "label": "Selby" - }, - { - "value": "SEVENOAKS", - "label": "Sevenoaks" - }, - { - "value": "SHEFFIELD", - "label": "Sheffield" - }, - { - "value": "SHETLAND_ISLANDS", - "label": "Shetland Islands" - }, - { - "value": "SHROPSHIRE", - "label": "Shropshire" - }, - { - "value": "SLOUGH", - "label": "Slough" - }, - { - "value": "SOLIHULL", - "label": "Solihull" - }, - { - "value": "SOMERSET_WEST_AND_TAUNTON", - "label": "Somerset West and Taunton" - }, - { - "value": "SOUTH_AYRSHIRE", - "label": "South Ayrshire" - }, - { - "value": "SOUTH_CAMBRIDGESHIRE", - "label": "South Cambridgeshire" - }, - { - "value": "SOUTH_DERBYSHIRE", - "label": "South Derbyshire" - }, - { - "value": "SOUTH_GLOUCESTERSHIRE", - "label": "South Gloucestershire" - }, - { - "value": "SOUTH_HAMS", - "label": "South Hams" - }, - { - "value": "SOUTH_HOLLAND", - "label": "South Holland" - }, - { - "value": "SOUTH_KESTEVEN", - "label": "South Kesteven" - }, - { - "value": "SOUTH_LAKELAND", - "label": "South Lakeland" - }, - { - "value": "SOUTH_LANARKSHIRE", - "label": "South Lanarkshire" - }, - { - "value": "SOUTH_NORFOLK", - "label": "South Norfolk" - }, - { - "value": "SOUTH_NORTHAMPTONSHIRE", - "label": "South Northamptonshire" - }, - { - "value": "SOUTH_OXFORDSHIRE", - "label": "South Oxfordshire" - }, - { - "value": "SOUTH_RIBBLE", - "label": "South Ribble" - }, - { - "value": "SOUTH_SOMERSET", - "label": "South Somerset" - }, - { - "value": "SOUTH_STAFFORDSHIRE", - "label": "South Staffordshire" - }, - { - "value": "SOUTH_TYNESIDE", - "label": "South Tyneside" - }, - { - "value": "SOUTHAMPTON", - "label": "Southampton" - }, - { - "value": "SOUTHEND_ON_SEA", - "label": "Southend-on-Sea" - }, - { - "value": "SOUTHWARK", - "label": "Southwark" - }, - { - "value": "SPELTHORNE", - "label": "Spelthorne" - }, - { - "value": "ST_ALBANS", - "label": "St Albans" - }, - { - "value": "ST_HELENS", - "label": "St. Helens" - }, - { - "value": "STAFFORD", - "label": "Stafford" - }, - { - "value": "STAFFORDSHIRE_MOORLANDS", - "label": "Staffordshire Moorlands" - }, - { - "value": "STEVENAGE", - "label": "Stevenage" - }, - { - "value": "STIRLING", - "label": "Stirling" - }, - { - "value": "STOCKPORT", - "label": "Stockport" - }, - { - "value": "STOCKTON_ON_TEES", - "label": "Stockton-on-Tees" - }, - { - "value": "STOKE_ON_TRENT", - "label": "Stoke-on-Trent" - }, - { - "value": "STRATFORD_ON_AVON", - "label": "Stratford-on-Avon" - }, - { - "value": "STROUD", - "label": "Stroud" - }, - { - "value": "SUNDERLAND", - "label": "Sunderland" - }, - { - "value": "SURREY_HEATH", - "label": "Surrey Heath" - }, - { - "value": "SUTTON", - "label": "Sutton" - }, - { - "value": "SWALE", - "label": "Swale" - }, - { - "value": "SWANSEA", - "label": "Swansea" - }, - { - "value": "SWINDON", - "label": "Swindon" - }, - { - "value": "TAMESIDE", - "label": "Tameside" - }, - { - "value": "TAMWORTH", - "label": "Tamworth" - }, - { - "value": "TANDRIDGE", - "label": "Tandridge" - }, - { - "value": "TEIGNBRIDGE", - "label": "Teignbridge" - }, - { - "value": "TELFORD_AND_WREKIN", - "label": "Telford and Wrekin" - }, - { - "value": "TENDRING", - "label": "Tendring" - }, - { - "value": "TEST_VALLEY", - "label": "Test Valley" - }, - { - "value": "TEWKESBURY", - "label": "Tewkesbury" - }, - { - "value": "THANET", - "label": "Thanet" - }, - { - "value": "THREE_RIVERS", - "label": "Three Rivers" - }, - { - "value": "THURROCK", - "label": "Thurrock" - }, - { - "value": "TONBRIDGE_AND_MALLING", - "label": "Tonbridge and Malling" - }, - { - "value": "TORBAY", - "label": "Torbay" - }, - { - "value": "TORFAEN", - "label": "Torfaen" - }, - { - "value": "TORRIDGE", - "label": "Torridge" - }, - { - "value": "TOWER_HAMLETS", - "label": "Tower Hamlets" - }, - { - "value": "TRAFFORD", - "label": "Trafford" - }, - { - "value": "TUNBRIDGE_WELLS", - "label": "Tunbridge Wells" - }, - { - "value": "UTTLESFORD", - "label": "Uttlesford" - }, - { - "value": "VALE_OF_GLAMORGAN", - "label": "Vale of Glamorgan" - }, - { - "value": "VALE_OF_WHITE_HORSE", - "label": "Vale of White Horse" - }, - { - "value": "WAKEFIELD", - "label": "Wakefield" - }, - { - "value": "WALSALL", - "label": "Walsall" - }, - { - "value": "WALTHAM_FOREST", - "label": "Waltham Forest" - }, - { - "value": "WANDSWORTH", - "label": "Wandsworth" - }, - { - "value": "WARRINGTON", - "label": "Warrington" - }, - { - "value": "WARWICK", - "label": "Warwick" - }, - { - "value": "WATFORD", - "label": "Watford" - }, - { - "value": "WAVERLEY", - "label": "Waverley" - }, - { - "value": "WEALDEN", - "label": "Wealden" - }, - { - "value": "WELLINGBOROUGH", - "label": "Wellingborough" - }, - { - "value": "WELWYN_HATFIELD", - "label": "Welwyn Hatfield" - }, - { - "value": "WEST_BERKSHIRE", - "label": "West Berkshire" - }, - { - "value": "WEST_DEVON", - "label": "West Devon" - }, - { - "value": "WEST_DUNBARTONSHIRE", - "label": "West Dunbartonshire" - }, - { - "value": "WEST_LANCASHIRE", - "label": "West Lancashire" - }, - { - "value": "WEST_LINDSEY", - "label": "West Lindsey" - }, - { - "value": "WEST_LOTHIAN", - "label": "West Lothian" - }, - { - "value": "WEST_OXFORDSHIRE", - "label": "West Oxfordshire" - }, - { - "value": "WEST_SUFFOLK", - "label": "West Suffolk" - }, - { - "value": "WESTMINSTER", - "label": "Westminster" - }, - { - "value": "WIGAN", - "label": "Wigan" - }, - { - "value": "WILTSHIRE", - "label": "Wiltshire" - }, - { - "value": "WINCHESTER", - "label": "Winchester" - }, - { - "value": "WINDSOR_AND_MAIDENHEAD", - "label": "Windsor and Maidenhead" - }, - { - "value": "WIRRAL", - "label": "Wirral" - }, - { - "value": "WOKING", - "label": "Woking" - }, - { - "value": "WOKINGHAM", - "label": "Wokingham" - }, - { - "value": "WOLVERHAMPTON", - "label": "Wolverhampton" - }, - { - "value": "WORCESTER", - "label": "Worcester" - }, - { - "value": "WORTHING", - "label": "Worthing" - }, - { - "value": "WREXHAM", - "label": "Wrexham" - }, - { - "value": "WYCHAVON", - "label": "Wychavon" - }, - { - "value": "WYRE", - "label": "Wyre" - }, - { - "value": "WYRE_FOREST", - "label": "Wyre Forest" - }, - { - "value": "YORK", - "label": "York" - } - ] - }, - "household_id": { - "documentation": null, - "entity": "household", - "valueType": "int", - "definitionPeriod": "year", - "name": "household_id", - "label": "ID for the household", - "category": null, - "unit": null, - "moduleName": "household.demographic.household_id", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "num_enhanced_disabled_children": { - "documentation": null, - "entity": "benunit", - "valueType": "int", - "definitionPeriod": "year", - "name": "num_enhanced_disabled_children", - "label": "Number of enhanced disabled children", - "category": null, - "unit": null, - "moduleName": "household.demographic.num_enhanced_disabled_children", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "disability_premium": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "disability_premium", - "label": "Disability premium", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.demographic.disability_premium", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "num_bedrooms": { - "documentation": null, - "entity": "household", - "valueType": "int", - "definitionPeriod": "year", - "name": "num_bedrooms", - "label": "The number of bedrooms in the house", - "category": null, - "unit": null, - "moduleName": "household.demographic.num_bedrooms", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "child_index": { - "documentation": null, - "entity": "person", - "valueType": "int", - "definitionPeriod": "year", - "name": "child_index", - "label": "Child reference number", - "category": null, - "unit": null, - "moduleName": "household.demographic.child_index", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_eldest_child": { - "documentation": "Whether this person is the eldest child in the benefit unit", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_eldest_child", - "label": "Is the eldest child", - "category": null, - "unit": null, - "moduleName": "household.demographic.is_eldest_child", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "carer_premium": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "carer_premium", - "label": "Carer premium", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.demographic.carer_premium", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "num_severely_disabled_adults": { - "documentation": null, - "entity": "benunit", - "valueType": "int", - "definitionPeriod": "year", - "name": "num_severely_disabled_adults", - "label": "Number of severely disabled adults", - "category": null, - "unit": null, - "moduleName": "household.demographic.num_severely_disabled_adults", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "role": { - "documentation": null, - "entity": "person", - "valueType": "str", - "definitionPeriod": "year", - "name": "role", - "label": "Role (adult/child)", - "category": null, - "unit": null, - "moduleName": "household.demographic.role", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": null, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "accommodation_type": { - "documentation": null, - "entity": "household", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "accommodation_type", - "label": "Type of accommodation", - "category": null, - "unit": null, - "moduleName": "household.demographic.accommodation_type", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": "UNKNOWN", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "HOUSE_DETACHED", - "label": "Detached house" - }, - { - "value": "HOUSE_SEMI_DETACHED", - "label": "Semi-detached house" - }, - { - "value": "HOUSE_TERRACED", - "label": "Terraced house" - }, - { - "value": "FLAT", - "label": "Purpose-built flat or maisonette" - }, - { - "value": "CONVERTED_HOUSE", - "label": "Converted house or building" - }, - { - "value": "MOBILE", - "label": "Caravan/Mobile home or houseboat" - }, - { - "value": "OTHER", - "label": "Other" - }, - { - "value": "UNKNOWN", - "label": "Unknown" - } - ] - }, - "is_male": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_male", - "label": "Whether the person is male", - "category": null, - "unit": null, - "moduleName": "household.demographic.is_male", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "enhanced_disability_premium": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "enhanced_disability_premium", - "label": "Enhanced disability premium", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.demographic.enhanced_disability_premium", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "person_id": { - "documentation": null, - "entity": "person", - "valueType": "int", - "definitionPeriod": "year", - "name": "person_id", - "label": "ID for the person", - "category": null, - "unit": null, - "moduleName": "household.demographic.person_id", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "benunit_has_carer": { - "documentation": null, - "entity": "benunit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "benunit_has_carer", - "label": "Benefit unit has a carer", - "category": null, - "unit": null, - "moduleName": "household.demographic.benunit_has_carer", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "severe_disability_premium": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "severe_disability_premium", - "label": "Severe disability premium", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.demographic.severe_disability_premium", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_married": { - "documentation": "Whether the benefit unit adults are married to each other or in a civil partnership", - "entity": "benunit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_married", - "label": "Married", - "category": null, - "unit": null, - "moduleName": "household.demographic.is_married", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "benunit_region": { - "documentation": null, - "entity": "benunit", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "benunit_region", - "label": "benefit unit region", - "category": null, - "unit": null, - "moduleName": "household.demographic.benunit_region", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "LONDON", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "UNKNOWN", - "label": "Unknown" - }, - { - "value": "NORTH_EAST", - "label": "North East" - }, - { - "value": "NORTH_WEST", - "label": "North West" - }, - { - "value": "YORKSHIRE", - "label": "Yorkshire and the Humber" - }, - { - "value": "EAST_MIDLANDS", - "label": "East Midlands" - }, - { - "value": "WEST_MIDLANDS", - "label": "West Midlands" - }, - { - "value": "EAST_OF_ENGLAND", - "label": "East of England" - }, - { - "value": "LONDON", - "label": "London" - }, - { - "value": "SOUTH_EAST", - "label": "South East" - }, - { - "value": "SOUTH_WEST", - "label": "South West" - }, - { - "value": "WALES", - "label": "Wales" - }, - { - "value": "SCOTLAND", - "label": "Scotland" - }, - { - "value": "NORTHERN_IRELAND", - "label": "Northern Ireland" - } - ] - }, - "tenure_type": { - "documentation": null, - "entity": "household", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "tenure_type", - "label": "Tenure type of the household", - "category": null, - "unit": null, - "moduleName": "household.demographic.tenure_type", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": "RENT_PRIVATELY", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "RENT_FROM_COUNCIL", - "label": "Rented from Council" - }, - { - "value": "RENT_FROM_HA", - "label": "Rented from a Housing Association" - }, - { - "value": "RENT_PRIVATELY", - "label": "Rented privately" - }, - { - "value": "OWNED_OUTRIGHT", - "label": "Owned outright" - }, - { - "value": "OWNED_WITH_MORTGAGE", - "label": "Owned with a mortgage" - } - ] - }, - "current_education": { - "documentation": null, - "entity": "person", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "current_education", - "label": "Current education", - "category": null, - "unit": null, - "moduleName": "household.demographic.current_education", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "NOT_IN_EDUCATION", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "NOT_IN_EDUCATION", - "label": "Not in education" - }, - { - "value": "PRE_PRIMARY", - "label": "Pre-primary" - }, - { - "value": "NOT_COMPLETED_PRIMARY", - "label": "Not completed primary" - }, - { - "value": "PRIMARY", - "label": "Primary" - }, - { - "value": "LOWER_SECONDARY", - "label": "Lower Secondary" - }, - { - "value": "UPPER_SECONDARY", - "label": "Upper Secondary" - }, - { - "value": "POST_SECONDARY", - "label": "Post Secondary" - }, - { - "value": "TERTIARY", - "label": "Tertiary" - } - ] - }, - "num_carers": { - "documentation": null, - "entity": "benunit", - "valueType": "int", - "definitionPeriod": "year", - "name": "num_carers", - "label": "Number of carers in the family", - "category": null, - "unit": null, - "moduleName": "household.demographic.num_carers", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "num_disabled_children": { - "documentation": null, - "entity": "benunit", - "valueType": "int", - "definitionPeriod": "year", - "name": "num_disabled_children", - "label": "Number of disabled children", - "category": null, - "unit": null, - "moduleName": "household.demographic.num_disabled_children", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "benunit_id": { - "documentation": null, - "entity": "benunit", - "valueType": "int", - "definitionPeriod": "year", - "name": "benunit_id", - "label": "ID for the family", - "category": null, - "unit": null, - "moduleName": "household.demographic.benunit_id", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "person_weight": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "person_weight", - "label": "Weight", - "category": null, - "unit": null, - "moduleName": "household.demographic.person_weight", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "num_adults": { - "documentation": null, - "entity": "benunit", - "valueType": "int", - "definitionPeriod": "year", - "name": "num_adults", - "label": "The number of adults in the family", - "category": null, - "unit": null, - "moduleName": "household.demographic.num_adults", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "person_household_role": { - "documentation": null, - "entity": "person", - "valueType": "str", - "definitionPeriod": "year", - "name": "person_household_role", - "label": "Role (adult/child)", - "category": null, - "unit": null, - "moduleName": "household.demographic.person_household_role", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": null, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "over_16": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "over_16", - "label": "Whether the person is over 16", - "category": null, - "unit": null, - "moduleName": "household.demographic.over_16", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_benunit_eldest_child": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_benunit_eldest_child", - "label": "Eldest child in the benefit unit", - "category": null, - "unit": null, - "moduleName": "household.demographic.is_benunit_eldest_child", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "raw_person_weight": { - "documentation": "Used to translate from survey respondents to UK residents", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "raw_person_weight", - "label": "Weight factor", - "category": null, - "unit": null, - "moduleName": "household.demographic.raw_person_weight", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 1, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "household_count_people": { - "documentation": null, - "entity": "household", - "valueType": "int", - "definitionPeriod": "year", - "name": "household_count_people", - "label": "Number of people", - "category": null, - "unit": "person", - "moduleName": "household.demographic.household_count_people", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_severely_disabled_for_benefits": { - "documentation": "Whether this person is severely disabled for benefits purposes", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_severely_disabled_for_benefits", - "label": "Has a severe disability", - "category": null, - "unit": null, - "moduleName": "household.demographic.is_severely_disabled_for_benefits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "in_HE": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "in_HE", - "label": "In higher education", - "category": null, - "unit": null, - "moduleName": "household.demographic.in_HE", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "youngest_adult_age": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "youngest_adult_age", - "label": "Eldest adult age", - "category": null, - "unit": null, - "moduleName": "household.demographic.youngest_adult_age", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "household_equivalisation_ahc": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "household_equivalisation_ahc", - "label": "Equivalisation factor to account for household composition, after housing costs", - "category": null, - "unit": null, - "moduleName": "household.demographic.household_equivalisation_ahc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "age_under_18": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "age_under_18", - "label": "Whether the person is under age 18", - "category": null, - "unit": null, - "moduleName": "household.demographic.age_under_18", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "highest_education": { - "documentation": null, - "entity": "person", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "highest_education", - "label": "Highest status education completed", - "category": null, - "unit": null, - "moduleName": "household.demographic.highest_education", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": "UPPER_SECONDARY", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "NOT_IN_EDUCATION", - "label": "Not in education" - }, - { - "value": "PRE_PRIMARY", - "label": "Pre-primary" - }, - { - "value": "NOT_COMPLETED_PRIMARY", - "label": "Not completed primary" - }, - { - "value": "PRIMARY", - "label": "Primary" - }, - { - "value": "LOWER_SECONDARY", - "label": "Lower Secondary" - }, - { - "value": "UPPER_SECONDARY", - "label": "Upper Secondary" - }, - { - "value": "POST_SECONDARY", - "label": "Post Secondary" - }, - { - "value": "TERTIARY", - "label": "Tertiary" - } - ] - }, - "person_household_id": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "person_household_id", - "label": "Person's household ID", - "category": null, - "unit": null, - "moduleName": "household.demographic.person_household_id", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_benunit_head": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_benunit_head", - "label": "Whether this person is the head-of-family", - "category": null, - "unit": null, - "moduleName": "household.demographic.is_benunit_head", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "marital_status": { - "documentation": null, - "entity": "person", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "marital_status", - "label": "Marital status", - "category": null, - "unit": null, - "moduleName": "household.demographic.marital_status", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "SINGLE", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "SINGLE", - "label": "Single" - }, - { - "value": "MARRIED", - "label": "Married" - }, - { - "value": "SEPARATED", - "label": "Separated" - }, - { - "value": "DIVORCED", - "label": "Divorced" - }, - { - "value": "WIDOWED", - "label": "Widowed" - } - ] - }, - "household_num_benunits": { - "documentation": null, - "entity": "household", - "valueType": "int", - "definitionPeriod": "year", - "name": "household_num_benunits", - "label": "Number of benefit units", - "category": null, - "unit": "benefit unit", - "moduleName": "household.demographic.household_num_benunits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ons_tenure_type": { - "documentation": "Tenure type matching ONS_produced statistical breakdowns.", - "entity": "household", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "ons_tenure_type", - "label": "ONS tenure type", - "category": null, - "unit": null, - "moduleName": "household.demographic.ons_tenure_type", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "OWNER_OCCUPIED", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "OWNER_OCCUPIED", - "label": "Owner occupied" - }, - { - "value": "RENT_PRIVATELY", - "label": "Rent privately" - }, - { - "value": "RENT_FROM_COUNCIL", - "label": "Rent from council" - }, - { - "value": "RENT_FROM_HA", - "label": "Rent from housing association" - } - ] - }, - "count_children_and_qyp": { - "documentation": "The number of children and qualifying young people (young adults in education) in the family", - "entity": "benunit", - "valueType": "int", - "definitionPeriod": "year", - "name": "count_children_and_qyp", - "label": "Children and qualifying young people", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.demographic.child_or_qyp", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "original_weight": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "original_weight", - "label": "Original FRS weight", - "category": null, - "unit": null, - "moduleName": "household.demographic.original_weight", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "birth_year": { - "documentation": null, - "entity": "person", - "valueType": "int", - "definitionPeriod": "year", - "name": "birth_year", - "label": "The birth year of the person", - "category": null, - "unit": null, - "moduleName": "household.demographic.birth_year", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "eldest_adult_age": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "eldest_adult_age", - "label": "Eldest adult age", - "category": null, - "unit": null, - "moduleName": "household.demographic.eldest_adult_age", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "youngest_child_age": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "youngest_child_age", - "label": "Eldest adult age", - "category": null, - "unit": null, - "moduleName": "household.demographic.youngest_child_age", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "num_severely_disabled_children": { - "documentation": null, - "entity": "benunit", - "valueType": "int", - "definitionPeriod": "year", - "name": "num_severely_disabled_children", - "label": "Number of severely disabled children", - "category": null, - "unit": null, - "moduleName": "household.demographic.num_severely_disabled_children", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_renting": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_renting", - "label": "Is renting", - "category": null, - "unit": null, - "moduleName": "household.demographic.is_renting", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "num_disabled_adults": { - "documentation": null, - "entity": "benunit", - "valueType": "int", - "definitionPeriod": "year", - "name": "num_disabled_adults", - "label": "Number of disabled adults", - "category": null, - "unit": null, - "moduleName": "household.demographic.num_disabled_adults", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_child": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_child", - "label": "Is a child", - "category": null, - "unit": null, - "moduleName": "household.demographic.is_child", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "adult_index": { - "documentation": null, - "entity": "person", - "valueType": "int", - "definitionPeriod": "year", - "name": "adult_index", - "label": "Index of adult in household", - "category": null, - "unit": null, - "moduleName": "household.demographic.adult_index", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "families": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "families", - "label": "Variable holding families", - "category": null, - "unit": null, - "moduleName": "household.demographic.families", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 1, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_parent": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_parent", - "label": "Whether this person is a parent in their benefit unit", - "category": null, - "unit": null, - "moduleName": "household.demographic.is_parent", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "household_equivalisation_bhc": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "household_equivalisation_bhc", - "label": "Equivalisation factor to account for household composition, before housing costs", - "category": null, - "unit": null, - "moduleName": "household.demographic.household_equivalisation_bhc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_WA_adult": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_WA_adult", - "label": "Whether is a working-age adult", - "category": null, - "unit": null, - "moduleName": "household.demographic.is_WA_adult", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_female": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_female", - "label": "Whether the person is female", - "category": null, - "unit": null, - "moduleName": "household.demographic.is_female", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "gender": { - "documentation": null, - "entity": "person", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "gender", - "label": "Gender of the person", - "category": null, - "unit": null, - "moduleName": "household.demographic.gender", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": "MALE", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "MALE", - "label": "Male" - }, - { - "value": "FEMALE", - "label": "Female" - } - ] - }, - "benunit_weight": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "benunit_weight", - "label": "Weight factor for the benefit unit", - "category": null, - "unit": null, - "moduleName": "household.demographic.benunit_weight", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "person_benunit_role": { - "documentation": null, - "entity": "person", - "valueType": "str", - "definitionPeriod": "year", - "name": "person_benunit_role", - "label": "Role (adult/child)", - "category": null, - "unit": null, - "moduleName": "household.demographic.person_benunit_role", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": null, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "benunit_count_children": { - "documentation": null, - "entity": "benunit", - "valueType": "int", - "definitionPeriod": "year", - "name": "benunit_count_children", - "label": "number of children in the benefit unit", - "category": null, - "unit": null, - "moduleName": "household.demographic.benunit.benunit_count_children", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "diesel_price": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "diesel_price", - "label": "Price of diesel per litre", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.consumption.diesel_price", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "additional_residential_property_purchased": { - "documentation": "The price paid for the purchase of a residential property in the year, for use as a second home or another non-main-residence purpose. Only include the value of a single purchase.", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "additional_residential_property_purchased", - "label": "Residential property bought (additional)", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.consumption.additional_residential_property_purchased", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "weekly_childcare_expenses": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "weekly_childcare_expenses", - "label": "Average cost of childcare", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.consumption.weekly_childcare_expenses", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "carbon_consumption": { - "documentation": "Estimated total carbon footprint of the household", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "carbon_consumption", - "label": "Carbon consumption", - "category": null, - "unit": "tonne CO2", - "moduleName": "household.consumption.carbon", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "non_residential_property_purchased": { - "documentation": "The price paid for the purchase of a non-residential property in the year. Only include the value of a single purchase.", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "non_residential_property_purchased", - "label": "Non-residential property bought", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.consumption.non_residential_property_purchased", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["non_residential_property_value"], - "subtracts": null, - "hidden_input": false - }, - "mortgage": { - "documentation": "Total amount spent on mortgage payments", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "mortgage", - "label": "total mortgage payments", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.consumption.mortgage", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["mortgage_interest_repayment", "mortgage_capital_repayment"], - "subtracts": null, - "hidden_input": false - }, - "benunit_rent": { - "documentation": "Gross rent that members of this family are liable for (social housing only)", - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "benunit_rent", - "label": "Rent", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.consumption.benunit_rent", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["personal_rent"], - "subtracts": null, - "hidden_input": false - }, - "petrol_litres": { - "documentation": "Total litres of petrol bought", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "petrol_litres", - "label": "Petrol volume", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.consumption.petrol_litres", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "main_residential_property_purchased_is_first_home": { - "documentation": "Whether the residential property bought this year as a main residence was as a first-time buyer.", - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "main_residential_property_purchased_is_first_home", - "label": "Residential property bought is first home", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.consumption.main_residential_property_purchased_is_first_home", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "external_child_payments": { - "documentation": "Payments to children living away from home.", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "external_child_payments", - "label": "external child payments", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.consumption.external_child_payments", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "reduced_rate_vat_consumption": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "reduced_rate_vat_consumption", - "label": "consumption of VAT reduced-rated goods and services", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.consumption.reduced_rate_vat_consumption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "full_rate_vat_consumption": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "full_rate_vat_consumption", - "label": "consumption of VAT full-rated goods and services", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.consumption.full_rate_vat_consumption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "main_residential_property_purchased": { - "documentation": "The price paid for the purchase of a residential property in the year, for use as a main residence. Only include the value of a single purchase.", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "main_residential_property_purchased", - "label": "Residential property bought (main)", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.consumption.main_residential_property_purchased", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "diesel_litres": { - "documentation": "Total litres of diesel bought", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "diesel_litres", - "label": "Diesel volume", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.consumption.diesel_litres", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "full_rate_vat_expenditure_rate": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "full_rate_vat_expenditure_rate", - "label": "VAT full-rated expenditure rate", - "category": null, - "unit": "/1", - "moduleName": "household.consumption.full_rate_vat_expenditure_rate", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0.5, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "structural_insurance_payments": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "structural_insurance_payments", - "label": "structural insurance payments", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.consumption.structural_insurance_payments", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "family_rent": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "family_rent", - "label": "Gross rent for the family", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.consumption.family_rent", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["personal_rent"], - "subtracts": null, - "hidden_input": false - }, - "petrol_price": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "petrol_price", - "label": "Price of petrol per litre", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.consumption.petrol_price", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "consumption_shareholding": { - "documentation": "Exposure to taxes on consumption", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "consumption_shareholding", - "label": "share of UK consumption", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.consumption.consumption_share", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "council_tax_less_benefit": { - "documentation": "Council Tax minus the Council Tax Benefit", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "council_tax_less_benefit", - "label": "Council Tax (less CTB)", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.consumption.council_tax_less_benefit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "housing_costs": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "housing_costs", - "label": "Total housing costs", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.consumption.housing_costs", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["rent", "mortgage", "water_and_sewerage_charges"], - "subtracts": null, - "hidden_input": false - }, - "personal_rent": { - "documentation": "The gross rent this person is liable for", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "personal_rent", - "label": "Rent liable", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.consumption.personal_rent", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["rent"], - "subtracts": null, - "hidden_input": false - }, - "benunit_is_rent_liable": { - "documentation": null, - "entity": "benunit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "benunit_is_rent_liable", - "label": "Whether the benefit unit is liable to pay rent", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.consumption.rent.benunit_pays_rent", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "employment_benefits": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "employment_benefits", - "label": "Employment benefits", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.benefits.employment_benefits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["statutory_sick_pay", "statutory_maternity_pay"], - "subtracts": null, - "hidden_input": false - }, - "claims_all_entitled_benefits": { - "documentation": "Whether this family would claim any benefit they are entitled to", - "entity": "benunit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "claims_all_entitled_benefits", - "label": "Claims all eligible benefits", - "category": null, - "unit": null, - "moduleName": "household.income.claims_all_entitled_benefits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "household_gross_income": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "household_gross_income", - "label": "Household gross income", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.income.household_gross_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "equiv_household_net_income": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "equiv_household_net_income", - "label": "Equivalised household net income", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.income.equiv_household_net_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "real_household_net_income_ahc": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "real_household_net_income_ahc", - "label": "real household net income (2025 prices)", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.income.real_household_net_income_ahc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_single": { - "documentation": null, - "entity": "benunit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_single", - "label": "Whether this benefit unit contains a single claimant for benefits", - "category": null, - "unit": null, - "moduleName": "household.income.is_single", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "deep_poverty_line": { - "documentation": "The line below which a household is in deep poverty.", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "deep_poverty_line", - "label": "deep poverty line", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.income.deep_poverty_line", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "poverty_line_ahc": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "poverty_line_ahc", - "label": "The poverty line for the household, after housing costs", - "category": null, - "unit": null, - "moduleName": "household.income.poverty_line_ahc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_apprentice": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_apprentice", - "label": "In an apprenticeship programme", - "category": null, - "unit": null, - "moduleName": "household.income.is_apprentice", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "household_income_decile": { - "documentation": "Decile of household income (person-weighted)", - "entity": "household", - "valueType": "int", - "definitionPeriod": "year", - "name": "household_income_decile", - "label": "household income decile", - "category": null, - "unit": null, - "moduleName": "household.income.household_income_decile", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "baseline_hbai_excluded_income": { - "documentation": "Total value of income not included in HBAI household net income in the baseline", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "baseline_hbai_excluded_income", - "label": "HBAI-excluded income (baseline)", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.income.baseline_hbai_excluded_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "in_poverty_bhc": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "in_poverty_bhc", - "label": "Whether the household is in absolute poverty, before housing costs", - "category": null, - "unit": null, - "moduleName": "household.income.in_poverty_bhc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "statutory_maternity_pay": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "statutory_maternity_pay", - "label": "Statutory maternity pay", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.income.statutory_maternity_pay", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "household_net_income": { - "documentation": "household net income", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "household_net_income", - "label": "household net income", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.income.household_net_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["household_market_income", "household_benefits"], - "subtracts": ["household_tax"], - "hidden_input": false - }, - "in_work": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "in_work", - "label": "Worked some hours", - "category": null, - "unit": null, - "moduleName": "household.income.in_work", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "inflation_adjustment": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "inflation_adjustment", - "label": "inflation multiplier to get 2025 prices", - "category": null, - "unit": "/1", - "moduleName": "household.income.inflation_adjustment", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "market_income": { - "documentation": "Income from market sources", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "market_income", - "label": "Market income", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.income.market_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "in_relative_poverty_ahc": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "in_relative_poverty_ahc", - "label": "in relative poverty (AHC)", - "category": null, - "unit": null, - "moduleName": "household.income.in_relative_poverty_ahc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "capital_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "capital_income", - "label": "Income from savings or dividends", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.income.capital_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["savings_interest_income", "dividend_income"], - "subtracts": null, - "hidden_input": false - }, - "is_couple": { - "documentation": null, - "entity": "benunit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_couple", - "label": "Whether this benefit unit contains a joint couple claimant for benefits", - "category": null, - "unit": null, - "moduleName": "household.income.is_couple", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "claims_legacy_benefits": { - "documentation": "Whether this family is currently receiving legacy benefits (overrides UC claimant status)", - "entity": "benunit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "claims_legacy_benefits", - "label": "Claims legacy benefits", - "category": null, - "unit": null, - "moduleName": "household.income.claims_legacy_benefits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hbai_excluded_income": { - "documentation": "Total value of income not included in HBAI household net income", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "hbai_excluded_income", - "label": "HBAI-excluded income", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.income.hbai_excluded_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "poverty_gap_ahc": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "poverty_gap_ahc", - "label": "Positive financial gap between net household income and the poverty line, after housing costs", - "category": null, - "unit": null, - "moduleName": "household.income.poverty_gap_ahc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "equiv_hbai_household_net_income": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "equiv_hbai_household_net_income", - "label": "Equivalised household net income (HBAI)", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.income.equiv_hbai_household_net_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "poverty_gap": { - "documentation": "The financial gap between net household income and the poverty line (before housing costs).", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "poverty_gap", - "label": "poverty gap", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.income.poverty_gap", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "real_household_net_income": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "real_household_net_income", - "label": "real household net income (2025 prices)", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.income.real_household_net_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "poverty_line_bhc": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "poverty_line_bhc", - "label": "The poverty line for the household, before housing costs", - "category": null, - "unit": null, - "moduleName": "household.income.poverty_line_bhc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "capital_gains": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "capital_gains", - "label": "capital gains", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.income.capital_gains", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["capital_gains_before_response", "capital_gains_behavioural_response"], - "subtracts": null, - "hidden_input": false - }, - "household_benefits": { - "documentation": "Total value of benefits received by household", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "household_benefits", - "label": "household benefits", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.income.household_benefits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "child_benefit", - "esa_income", - "esa_contrib", - "housing_benefit", - "income_support", - "jsa_income", - "jsa_contrib", - "pension_credit", - "universal_credit", - "working_tax_credit", - "child_tax_credit", - "attendance_allowance", - "afcs", - "bsp", - "carers_allowance", - "dla", - "iidb", - "incapacity_benefit", - "jsa_contrib", - "pip", - "sda", - "state_pension", - "maternity_allowance", - "statutory_sick_pay", - "statutory_maternity_pay", - "ssmg", - "basic_income", - "epg_subsidy", - "cost_of_living_support_payment", - "energy_bills_rebate", - "winter_fuel_allowance", - "tax_free_childcare", - "extended_childcare_entitlement", - "universal_childcare_entitlement", - "targeted_childcare_entitlement", - "care_to_learn", - "nhs_spending", - "dfe_education_spending", - "dft_subsidy_spending", - "healthy_start_vouchers" - ], - "subtracts": null, - "hidden_input": false - }, - "earned_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "earned_income", - "label": "Total earned income", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.income.earned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hbai_household_net_income_ahc": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "hbai_household_net_income_ahc", - "label": "Household net income, after housing costs", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.income.hbai_household_net_income_ahc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["hbai_household_net_income"], - "subtracts": [ - "rent", - "water_and_sewerage_charges", - "mortgage_interest_repayment", - "structural_insurance_payments" - ], - "hidden_input": false - }, - "is_child_or_QYP": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_child_or_QYP", - "label": "Whether this person is a child or qualifying young person for most benefits", - "category": null, - "unit": null, - "moduleName": "household.income.is_child_or_QYP", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "income_decile": { - "documentation": "Decile of household net income. Households are sorted by disposable income, and then divided into 10 equally-populated groups.", - "entity": "person", - "valueType": "int", - "definitionPeriod": "year", - "name": "income_decile", - "label": "income decile", - "category": null, - "unit": null, - "moduleName": "household.income.income_decile", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "benefits_premiums": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "benefits_premiums", - "label": "Value of premiums for disability and carer status", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.income.benefits_premiums", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "disability_premium", - "enhanced_disability_premium", - "severe_disability_premium", - "carer_premium" - ], - "subtracts": null, - "hidden_input": false - }, - "equiv_hbai_household_net_income_ahc": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "equiv_hbai_household_net_income_ahc", - "label": "Equivalised household net income, after housing costs (HBAI)", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.income.equiv_hbai_household_net_income_ahc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "in_poverty": { - "documentation": "Whether the household is in absolute poverty (before housing costs).", - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "in_poverty", - "label": "in poverty", - "category": null, - "unit": null, - "moduleName": "household.income.in_poverty", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "statutory_sick_pay": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "statutory_sick_pay", - "label": "Statutory sick pay", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.income.statutory_sick_pay", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "benunit_weekly_hours": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "benunit_weekly_hours", - "label": "Average weekly hours worked by adults in the benefit unit", - "category": null, - "unit": "hour", - "moduleName": "household.income.benunit_weekly_hours", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["weekly_hours"], - "subtracts": null, - "hidden_input": false - }, - "deep_poverty_gap": { - "documentation": "The financial gap between net household income and the deep poverty line (before housing costs).", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "deep_poverty_gap", - "label": "deep poverty gap", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.income.deep_poverty_gap", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "in_deep_poverty": { - "documentation": "Whether the household is in deep absolute poverty (below half the poverty line, before housing costs).", - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "in_deep_poverty", - "label": "in deep poverty", - "category": null, - "unit": null, - "moduleName": "household.income.in_deep_poverty", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "employment_status": { - "documentation": null, - "entity": "person", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "employment_status", - "label": "Employment status of the person", - "category": null, - "unit": null, - "moduleName": "household.income.employment_status", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": "UNEMPLOYED", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "FT_EMPLOYED", - "label": "Full-time employed" - }, - { - "value": "PT_EMPLOYED", - "label": "Part-time employed" - }, - { - "value": "FT_SELF_EMPLOYED", - "label": "Full-time self-employed" - }, - { - "value": "PT_SELF_EMPLOYED", - "label": "Part-time self-employed" - }, - { - "value": "UNEMPLOYED", - "label": "Unemployed" - }, - { - "value": "RETIRED", - "label": "Retired" - }, - { - "value": "STUDENT", - "label": "Student" - }, - { - "value": "CARER", - "label": "Carer" - }, - { - "value": "LONG_TERM_DISABLED", - "label": "Long-term sick/disabled" - }, - { - "value": "SHORT_TERM_DISABLED", - "label": "Short-term sick/disabled" - }, - { - "value": "OTHER_INACTIVE", - "label": "Other inactive" - }, - { - "value": "CHILD", - "label": "Child" - } - ] - }, - "household_market_income": { - "documentation": "Market income for the household", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "household_market_income", - "label": "household market income", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.income.household_market_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "employment_income", - "self_employment_income", - "savings_interest_income", - "dividend_income", - "miscellaneous_income", - "property_income", - "private_pension_income", - "private_transfer_income", - "maintenance_income", - "capital_gains" - ], - "subtracts": null, - "hidden_input": false - }, - "poverty_threshold_bhc": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "poverty_threshold_bhc", - "label": "Poverty threshold (BHC)", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.income.poverty_threshold_bhc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "minimum_wage_category": { - "documentation": null, - "entity": "person", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "minimum_wage_category", - "label": "Minimum wage category", - "category": null, - "unit": null, - "moduleName": "household.income.minimum_wage_category", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "OVER_24", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "APPRENTICE", - "label": "Apprentice" - }, - { - "value": "UNDER_18", - "label": "Under 18" - }, - { - "value": "BETWEEN_18_20", - "label": "18 to 20" - }, - { - "value": "BETWEEN_21_22", - "label": "21 to 22" - }, - { - "value": "BETWEEN_23_24", - "label": "23 to 24" - }, - { - "value": "OVER_24", - "label": "25 or over" - } - ] - }, - "in_relative_poverty_bhc": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "in_relative_poverty_bhc", - "label": "in relative poverty (AHC)", - "category": null, - "unit": null, - "moduleName": "household.income.in_relative_poverty_bhc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "poverty_line": { - "documentation": "The line below which a household is in poverty.", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "poverty_line", - "label": "poverty line", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.income.poverty_line", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_QYP": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_QYP", - "label": "Whether this person is a qualifying young person for benefits purposes", - "category": null, - "unit": null, - "moduleName": "household.income.is_QYP", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hours_worked": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "hours_worked", - "label": "Total amount of hours worked by this person", - "category": null, - "unit": "hour", - "moduleName": "household.income.hours_worked", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "in_deep_poverty_bhc": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "in_deep_poverty_bhc", - "label": "Whether the household is in deep absolute poverty (below half the poverty line), before housing costs", - "category": null, - "unit": null, - "moduleName": "household.income.in_deep_poverty_bhc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "base_net_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "base_net_income", - "label": "Existing net income for the person to use as a base in microsimulation", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.income.base_net_income", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_lone_parent": { - "documentation": null, - "entity": "benunit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_lone_parent", - "label": "Whether the family is a lone parent family", - "category": null, - "unit": null, - "moduleName": "household.income.is_lone_parent", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "poverty_gap_bhc": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "poverty_gap_bhc", - "label": "Positive financial gap between net household income and the poverty line", - "category": null, - "unit": null, - "moduleName": "household.income.poverty_gap_bhc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hbai_household_net_income": { - "documentation": "Disposable income for the household, following the definition used for official poverty statistics", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "hbai_household_net_income", - "label": "Household net income (HBAI definition)", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.income.hbai_household_net_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "employment_income", - "self_employment_income", - "savings_interest_income", - "dividend_income", - "miscellaneous_income", - "property_income", - "private_pension_income", - "private_transfer_income", - "maintenance_income", - "hbai_benefits", - "free_school_meals", - "free_school_fruit_veg", - "free_school_milk", - "free_tv_licence_value" - ], - "subtracts": [ - "council_tax", - "domestic_rates", - "income_tax", - "national_insurance", - "student_loan_repayments", - "employee_pension_contributions", - "personal_pension_contributions", - "maintenance_expenses", - "external_child_payments" - ], - "hidden_input": false - }, - "real_hbai_household_net_income": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "real_hbai_household_net_income", - "label": "real household net income (HBAI definition)", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.income.hbai_household_net_income", - "indexInModule": 1, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "statutory_paternity_pay": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "statutory_paternity_pay", - "label": "Statutory paternity pay", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.income.statutory_paternity_pay", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "in_deep_poverty_ahc": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "in_deep_poverty_ahc", - "label": "Whether the household is in deep absolute poverty (below half the poverty line), after housing costs", - "category": null, - "unit": null, - "moduleName": "household.income.in_deep_poverty_ahc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "household_net_income_ahc": { - "documentation": "household net income", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "household_net_income_ahc", - "label": "household net income", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.income.household_net_income_ahc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["household_market_income", "household_benefits"], - "subtracts": ["household_tax", "housing_costs"], - "hidden_input": false - }, - "hbai_excluded_income_change": { - "documentation": "Effect of policy reforms on HBAI-excluded income", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "hbai_excluded_income_change", - "label": "Change in HBAI-excluded income", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.income.hbai_excluded_income_change", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hbai_benefits": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "hbai_benefits", - "label": "HBAI-included benefits", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.income.hbai_benefits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "child_benefit", - "esa_income", - "esa_contrib", - "housing_benefit", - "income_support", - "jsa_income", - "jsa_contrib", - "pension_credit", - "universal_credit", - "working_tax_credit", - "child_tax_credit", - "attendance_allowance", - "afcs", - "bsp", - "carers_allowance", - "dla", - "iidb", - "incapacity_benefit", - "pip", - "sda", - "state_pension", - "maternity_allowance", - "statutory_sick_pay", - "statutory_maternity_pay", - "ssmg", - "cost_of_living_support_payment", - "winter_fuel_allowance", - "tax_free_childcare", - "healthy_start_vouchers" - ], - "subtracts": null, - "hidden_input": false - }, - "is_single_person": { - "documentation": null, - "entity": "benunit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_single_person", - "label": "Whether the family is a single person", - "category": null, - "unit": null, - "moduleName": "household.income.is_single_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "in_poverty_ahc": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "in_poverty_ahc", - "label": "Whether the household is in absolute poverty, after housing costs", - "category": null, - "unit": null, - "moduleName": "household.income.in_poverty_ahc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "weekly_hours": { - "documentation": "Average weekly hours worked", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "weekly_hours", - "label": "Weekly hours", - "category": null, - "unit": "hour", - "moduleName": "household.income.weekly_hours", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "minimum_wage": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "minimum_wage", - "label": "Minimum wage", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.income.minimum_wage", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "household_land_value": { - "documentation": "Estimated total land value directly owned by the household", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "household_land_value", - "label": "Land value", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.wealth.household_land_value", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "gross_financial_wealth": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "gross_financial_wealth", - "label": "Gross financial wealth", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.wealth.gross_financial_wealth", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "total_wealth": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "total_wealth", - "label": "Total wealth", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.wealth.total_wealth", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["property_wealth", "corporate_wealth"], - "subtracts": null, - "hidden_input": false - }, - "land_value": { - "documentation": "Estimated total land value (directly and indirectly owned)", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "land_value", - "label": "Land value", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.wealth.land_value", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["household_land_value", "corporate_land_value"], - "subtracts": null, - "hidden_input": false - }, - "property_wealth": { - "documentation": "Total property wealth across all owned properties", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "property_wealth", - "label": "Property wealth", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.wealth.property_wealth", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["residential_property_value", "non_residential_property_value"], - "subtracts": null, - "hidden_input": false - }, - "corporate_tax_incidence": { - "documentation": "Reduction in value of corporate wealth due to taxes on corporations", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "corporate_tax_incidence", - "label": "Corporate tax incidence", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.wealth.corporate_tax_incidence", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["corporate_sdlt", "business_rates"], - "subtracts": null, - "hidden_input": false - }, - "corporate_land_value": { - "documentation": "Estimated total land value indirectly owned by the household from corporate holdings", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "corporate_land_value", - "label": "Land value", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.wealth.corporate_land_value", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "shareholding": { - "documentation": "Exposure to taxes on corporations", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "shareholding", - "label": "Share in the corporate sector", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.wealth.shareholding", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "residential_property_value": { - "documentation": "Total value of all owned residential property", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "residential_property_value", - "label": "Residential property value", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.wealth.residential_property_value", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["main_residence_value", "other_residential_property_value"], - "subtracts": null, - "hidden_input": false - }, - "net_financial_wealth": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "net_financial_wealth", - "label": "Net financial wealth", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.wealth.net_financial_wealth", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "savings": { - "documentation": "Household liquid savings", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "savings", - "label": "Savings", - "category": null, - "unit": "currency-GBP", - "moduleName": "household.wealth.savings", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "household_wealth_decile": { - "documentation": "Decile of wealth income (person-weighted)", - "entity": "household", - "valueType": "int", - "definitionPeriod": "year", - "name": "household_wealth_decile", - "label": "household wealth decile", - "category": null, - "unit": null, - "moduleName": "household.wealth.household_wealth_decile", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "in_original_frs": { - "documentation": "Whether this household appeared in the original FRS, or whether it has been modified.", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "in_original_frs", - "label": "In original FRS", - "category": null, - "unit": "currency-GBP", - "moduleName": "misc.in_original_frs", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "spi_imputed": { - "documentation": "Whether this household was generated by replacing income variables with SPI imputations.", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "spi_imputed", - "label": "SPI imputed", - "category": null, - "unit": "currency-GBP", - "moduleName": "misc.spi_imputed", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "uc_migrated": { - "documentation": "Whether this household was generated by migrating an original FRS household to Universal Credit.", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "uc_migrated", - "label": "UC migrated", - "category": null, - "unit": "currency-GBP", - "moduleName": "misc.uc_migrated", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "property_income": { - "documentation": "Income from rental of property", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "property_income", - "label": "rental income", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.property_income", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "receives_carers_allowance": { - "documentation": "Whether this person receives Carer's Allowance.", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "receives_carers_allowance", - "label": "receives Carer's Allowance", - "category": null, - "unit": null, - "moduleName": "input.care", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "employment_income_before_lsr": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "employment_income_before_lsr", - "label": "employment income before labor supply responses", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.employment_income_before_lsr", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "lump_sum_income": { - "documentation": "Income from lump sums", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "lump_sum_income", - "label": "lump sum income", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.lump_sum_income", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "miscellaneous_income": { - "documentation": "Income from any other source", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "miscellaneous_income", - "label": "miscellaneous income", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.miscellaneous_income", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pip_m_category": { - "documentation": "If you receive the mobility component of the Personal Independence Payment, you will be in one of the following categories: Standard or Enhanced. If not, select None.", - "entity": "person", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "pip_m_category", - "label": "PIP (mobility) category", - "category": null, - "unit": null, - "moduleName": "input.pip_m_category", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "NONE", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "STANDARD", - "label": "Standard" - }, - { - "value": "ENHANCED", - "label": "Enhanced" - }, - { - "value": "NONE", - "label": "None" - } - ] - }, - "sublet_income": { - "documentation": "Income from subletting properties", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "sublet_income", - "label": "sublet income", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.sublet_income", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "other_residential_property_value": { - "documentation": "Total value of all residential property owned by the household", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "other_residential_property_value", - "label": "other residence value", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.other_residential_property_value", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "savings_interest_income": { - "documentation": "Income from interest on savings, gross of tax", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "savings_interest_income", - "label": "savings interest income", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.savings_interest_income", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dla_m_category": { - "documentation": "If you receive the mobility component of Disability Living Allowance, you will be in one of the following categories: Lower, Higher. If not, select None.", - "entity": "person", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "dla_m_category", - "label": "DLA (mobility) category", - "category": null, - "unit": null, - "moduleName": "input.dla_m_category", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "NONE", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "LOWER", - "label": "Lower" - }, - { - "value": "HIGHER", - "label": "Higher" - }, - { - "value": "NONE", - "label": "None" - } - ] - }, - "council_tax_band": { - "documentation": null, - "entity": "household", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "council_tax_band", - "label": "Council Tax band", - "category": null, - "unit": null, - "moduleName": "input.council_tax_band", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": "D", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "A", - "label": "A" - }, - { - "value": "B", - "label": "B" - }, - { - "value": "C", - "label": "C" - }, - { - "value": "D", - "label": "D" - }, - { - "value": "E", - "label": "E" - }, - { - "value": "F", - "label": "F" - }, - { - "value": "G", - "label": "G" - }, - { - "value": "H", - "label": "H" - }, - { - "value": "I", - "label": "I" - } - ] - }, - "private_transfer_income": { - "documentation": "Income from private transfers", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "private_transfer_income", - "label": "private transfer income", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.private_transfer_income", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "rent": { - "documentation": "The total amount of rent paid by the household in the year.", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "rent", - "label": "Rent", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.rent", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "other_investment_income": { - "documentation": "Investment income from sources other than dividends, property, and net interest on UK bank accounts; may include National Savings interest products, securities interest, interest from trusts or settlements, etc.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "other_investment_income", - "label": "other investment income", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.other_investment_income", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "self_employment_income": { - "documentation": "Income from self-employment profits. This should be net of self-employment expenses.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "self_employment_income", - "label": "self-employment income", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.self_employment_income", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "private_pension_income": { - "documentation": "Income from private or occupational pensions (not including the State Pension)", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "private_pension_income", - "label": "pension income", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.private_pension_income", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "maintenance_income": { - "documentation": "Income from maintenance payments to you", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "maintenance_income", - "label": "maintenance payment income", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.maintenance_income", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dla_sc_category": { - "documentation": "If you receive the self-care component of Disability Living Allowance, you will be in one of the following categories: Lower, Middle, Higher. If not, select None.", - "entity": "person", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "dla_sc_category", - "label": "DLA (Self-care) category", - "category": null, - "unit": null, - "moduleName": "input.dla_sc_category", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "NONE", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "LOWER", - "label": "Lower" - }, - { - "value": "MIDDLE", - "label": "Middle" - }, - { - "value": "HIGHER", - "label": "Higher" - }, - { - "value": "NONE", - "label": "None" - } - ] - }, - "main_residence_value": { - "documentation": "Total value of the main residence", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "main_residence_value", - "label": "main residence value", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.main_residence_value", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dividend_income": { - "documentation": "Total income from dividends, gross of tax", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "dividend_income", - "label": "dividend income", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.dividend_income", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "age": { - "documentation": "Age in years", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "age", - "label": "age", - "category": null, - "unit": "year", - "moduleName": "input.demographic", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 40, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "employment_income": { - "documentation": "Total income from employment. Include wages, bonuses, tips, etc. This should be gross of all private pension contributions.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "employment_income", - "label": "employment income", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.employment_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "employment_income_before_lsr", - "employment_income_behavioral_response", - "employer_ni_fixed_employer_cost_change" - ], - "subtracts": null, - "hidden_input": false - }, - "pension_income": { - "documentation": "Income from private or occupational pensions (not including the State Pension)", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "pension_income", - "label": "pension income", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.pension_income", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "non_residential_property_value": { - "documentation": "Total value of all non-residential property owned by the household", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "non_residential_property_value", - "label": "non-residential property value", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.non_residential_property_value", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "owned_land": { - "documentation": "Total value of all land-only plots owned by the household", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "owned_land", - "label": "owned land value", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.owned_land", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "corporate_wealth": { - "documentation": "Total owned wealth in corporations", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "corporate_wealth", - "label": "corporate wealth", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.corporate_wealth", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "state_pension": { - "documentation": "Gross State Pension payments", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "state_pension", - "label": "State Pension", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.state_pension", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pip_dl_category": { - "documentation": "If you receive the daily living component of the Personal Independence Payment, you will be in one of the following categories: Standard or Enhanced. If not, select None.", - "entity": "person", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "pip_dl_category", - "label": "PIP (daily living) category", - "category": null, - "unit": null, - "moduleName": "input.pip_dl_category", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "NONE", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "STANDARD", - "label": "Standard" - }, - { - "value": "ENHANCED", - "label": "Enhanced" - }, - { - "value": "NONE", - "label": "None" - } - ] - }, - "diesel_spending": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "diesel_spending", - "label": "diesel consumption", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.consumption.diesel_spending", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "health_consumption": { - "documentation": "Total yearly expenditure on health", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "health_consumption", - "label": "health consumption", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.consumption.health_consumption", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "food_and_non_alcoholic_beverages_consumption": { - "documentation": "Total yearly expenditure on food and alcoholic beverages", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "food_and_non_alcoholic_beverages_consumption", - "label": "food and alcoholic beverage consumption", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.consumption.food_and_non_alcoholic_beverages_consumption", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "consumption": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "consumption", - "label": "consumption", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.consumption.consumption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "food_and_non_alcoholic_beverages_consumption", - "alcohol_and_tobacco_consumption", - "clothing_and_footwear_consumption", - "housing_water_and_electricity_consumption", - "household_furnishings_consumption", - "health_consumption", - "transport_consumption", - "communication_consumption", - "recreation_consumption", - "education_consumption", - "restaurants_and_hotels_consumption", - "miscellaneous_consumption" - ], - "subtracts": null, - "hidden_input": false - }, - "restaurants_and_hotels_consumption": { - "documentation": "Total yearly expenditure on restaurants and hotels", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "restaurants_and_hotels_consumption", - "label": "restaurants and hotels consumption", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.consumption.restaurants_and_hotels_consumption", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "clothing_and_footwear_consumption": { - "documentation": "Total yearly expenditure on clothing and footwear", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "clothing_and_footwear_consumption", - "label": "clothing and footwear consumption", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.consumption.clothing_and_footwear_consumption", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "childcare_expenses": { - "documentation": "Total amount spent on childcare", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "childcare_expenses", - "label": "childcare consumption", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.consumption.childcare_expenses", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "petrol_spending": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "petrol_spending", - "label": "petrol consumption", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.consumption.petrol_spending", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "domestic_energy_consumption": { - "documentation": "Combined gas and electric bills.", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "domestic_energy_consumption", - "label": "Domestic energy consumption", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.consumption.energy", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "housing_water_and_electricity_consumption": { - "documentation": "Total yearly expenditure on housing, water and electricity", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "housing_water_and_electricity_consumption", - "label": "housing, water and electricity consumption", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.consumption.housing_water_and_electricity_consumption", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "education_consumption": { - "documentation": "Total yearly expenditure on education", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "education_consumption", - "label": "education consumption", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.consumption.education_consumption", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "alcohol_and_tobacco_consumption": { - "documentation": "Total yearly expenditure on alcohol and tobacco", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "alcohol_and_tobacco_consumption", - "label": "alcohol and tobacco consumption", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.consumption.alcohol_and_tobacco_consumption", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "household_furnishings_consumption": { - "documentation": "Total yearly expenditure on household furnishings", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "household_furnishings_consumption", - "label": "household furnishings consumption", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.consumption.household_furnishings_consumption", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "communication_consumption": { - "documentation": "Total yearly expenditure on communication", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "communication_consumption", - "label": "communication consumption", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.consumption.communication_consumption", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "miscellaneous_consumption": { - "documentation": "Total yearly expenditure on miscellaneous goods", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "miscellaneous_consumption", - "label": "miscellaneous consumption", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.consumption.miscellaneous_consumption", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "transport_consumption": { - "documentation": "Total yearly expenditure on transport", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "transport_consumption", - "label": "transport consumption", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.consumption.transport_consumption", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "recreation_consumption": { - "documentation": "Total yearly expenditure on recreation", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "recreation_consumption", - "label": "recreation consumption", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.consumption.recreation_consumption", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "personal_pension_contributions": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "personal_pension_contributions", - "label": "personal pension contributions", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.consumption.property.personal_pension_contributions", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "maintenance_expenses": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "maintenance_expenses", - "label": "maintenance expenses", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.consumption.property.maintenance_expenses", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "non_residential_rent": { - "documentation": "The total amount of rent paid by the household in the year for non-residential property.", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "non_residential_rent", - "label": "Non-residential rent", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.consumption.property.non_residential_rent", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "water_and_sewerage_charges": { - "documentation": "Total amount spent on water and sewerage charges", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "water_and_sewerage_charges", - "label": "water and sewerage charges", - "category": null, - "unit": null, - "moduleName": "input.consumption.property.water_and_sewerage_charges", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "cumulative_residential_rent": { - "documentation": "Total rent paid over the lifetime of the residential property a tenancy is held for.", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "cumulative_residential_rent", - "label": "Cumulative residential rent", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.consumption.property.cumulative_residential_rent", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mortgage_interest_repayment": { - "documentation": "Total amount spent on mortgage interest repayments", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "mortgage_interest_repayment", - "label": "mortgage interest repayments", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.consumption.property.mortgage_interest_repayment", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "property_purchased": { - "documentation": "Whether all property wealth was bought this year", - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "property_purchased", - "label": "All property bought this year", - "category": null, - "unit": null, - "moduleName": "input.consumption.property.property_purchased", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": true, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mortgage_capital_repayment": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "mortgage_capital_repayment", - "label": "mortgage capital repayments", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.consumption.property.mortgage_capital_repayment", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "housing_service_charges": { - "documentation": "Total amount spent on housing service charges", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "housing_service_charges", - "label": "housing service charges", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.consumption.property.housing_service_charges", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "employee_pension_contributions": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "employee_pension_contributions", - "label": "employee pension contributions", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.consumption.property.employee_pension_contributions", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "council_tax": { - "documentation": "Gross amount spent on Council Tax, before discounts", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "council_tax", - "label": "Council Tax", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.consumption.property.council_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "cumulative_non_residential_rent": { - "documentation": "Total rent paid over the lifetime of the non-residential property a tenancy is held for.", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "cumulative_non_residential_rent", - "label": "Cumulative non-residential rent", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.consumption.property.cumulative_non_residential_rent", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "employer_pension_contributions": { - "documentation": "Total amount spent on employer pension contributions", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "employer_pension_contributions", - "label": "Employer pension contributions", - "category": null, - "unit": "currency-GBP", - "moduleName": "input.consumption.property.employer_pension_contributions", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "gov_tax": { - "documentation": "Government tax revenue impact in respect of this household.", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "gov_tax", - "label": "government tax revenue", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.gov_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "expected_sdlt", - "expected_ltt", - "expected_lbtt", - "corporate_sdlt", - "business_rates", - "council_tax", - "domestic_rates", - "fuel_duty", - "tv_licence", - "wealth_tax", - "non_primary_residence_wealth_tax", - "income_tax", - "national_insurance", - "LVT", - "carbon_tax", - "vat_change", - "capital_gains_tax", - "private_school_vat", - "corporate_incident_tax_revenue_change", - "consumer_incident_tax_revenue_change", - "high_income_incident_tax_change", - "ni_employer", - "student_loan_repayments", - "vat" - ], - "subtracts": null, - "hidden_input": false - }, - "gov_balance": { - "documentation": "Government deficit impact in respect of this household.", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "gov_balance", - "label": "government balance", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.gov_balance", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["gov_tax"], - "subtracts": ["gov_spending"], - "hidden_input": false - }, - "gov_spending": { - "documentation": "Government spending impact in respect of this household.", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "gov_spending", - "label": "government spending", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.gov_spending", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "child_benefit", - "esa_income", - "esa_contrib", - "housing_benefit", - "income_support", - "jsa_income", - "jsa_contrib", - "pension_credit", - "universal_credit", - "working_tax_credit", - "child_tax_credit", - "attendance_allowance", - "afcs", - "bsp", - "carers_allowance", - "dla", - "iidb", - "incapacity_benefit", - "pip", - "sda", - "state_pension", - "maternity_allowance", - "statutory_sick_pay", - "statutory_maternity_pay", - "ssmg", - "basic_income", - "epg_subsidy", - "cost_of_living_support_payment", - "energy_bills_rebate", - "winter_fuel_allowance", - "pawhp", - "other_public_spending_budget_change", - "tax_free_childcare", - "extended_childcare_entitlement", - "universal_childcare_entitlement", - "targeted_childcare_entitlement", - "care_to_learn", - "dfe_education_spending", - "dft_subsidy_spending", - "nhs_spending" - ], - "subtracts": null, - "hidden_input": false - }, - "lbtt_on_transactions": { - "documentation": "Land and Buildings Transaction Tax on property transfers", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "lbtt_on_transactions", - "label": "LBTT on property transactions", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.revenue_scotland.lbtt_on_transactions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "lbtt_on_residential_property_transactions", - "lbtt_on_non_residential_property_transactions" - ], - "subtracts": null, - "hidden_input": false - }, - "lbtt_on_residential_property_transactions": { - "documentation": "LBTT charge on purchase of residential property", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "lbtt_on_residential_property_transactions", - "label": "LBTT on residential property", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.revenue_scotland.lbtt_on_residential_property_transactions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "lbtt_on_non_residential_property_rent": { - "documentation": "LBTT charge from purchase or rental of non-residential property", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "lbtt_on_non_residential_property_rent", - "label": "LBTT on non-residential property", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.revenue_scotland.lbtt_on_non_residential_property_rent", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "lbtt_on_residential_property_rent": { - "documentation": "LBTT charge on rental of residential property", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "lbtt_on_residential_property_rent", - "label": "LBTT on residential property rent", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.revenue_scotland.lbtt_on_residential_property_rent", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "lbtt_on_non_residential_property_transactions": { - "documentation": "LBTT charge from purchase of non-residential property", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "lbtt_on_non_residential_property_transactions", - "label": "LBTT on non-residential property transactions", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.revenue_scotland.lbtt_on_non_residential_property_transactions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "expected_lbtt": { - "documentation": "Expected value of LBTT", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "expected_lbtt", - "label": "Land and Buildings Transaction Tax (expected)", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.revenue_scotland.expected_lbtt", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "land_and_buildings_transaction_tax": { - "documentation": "Total tax liability for Scotland's LBTT", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "land_and_buildings_transaction_tax", - "label": "Land and Buildings Transaction Tax", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.revenue_scotland.land_and_buildings_transaction_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "lbtt_on_rent": { - "documentation": "Land and Buildings Transaction Tax on property rental agreements", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "lbtt_on_rent", - "label": "LBTT on property rental", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.revenue_scotland.lbtt_on_rent", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["lbtt_on_residential_property_rent", "lbtt_on_non_residential_property_rent"], - "subtracts": null, - "hidden_input": false - }, - "lbtt_liable": { - "documentation": "Whether the household is liable for Land and Buildings Transaction Tax", - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "lbtt_liable", - "label": "Liable for Land and Buildings Transaction Tax", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.revenue_scotland.lbtt_liable", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "domestic_rates": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "domestic_rates", - "label": "domestic rates", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.local_authorities.domestic_rates", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "free_school_meals": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "free_school_meals", - "label": "free school meals", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dfe.free_school_meals", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dfe_education_spending": { - "documentation": "Total state education spending for this person.", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "dfe_education_spending", - "label": "state education spending", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dfe.dfe_education_spending", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "max_free_entitlement_hours_used": { - "documentation": "The maximum weekly hours of free childcare entitlement used by the person", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "max_free_entitlement_hours_used", - "label": "maximum hours of free childcare entitlement used", - "category": null, - "unit": null, - "moduleName": "gov.dfe.max_free_entitlement_hours_used", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 30, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "free_school_milk": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "free_school_milk", - "label": "free school milk", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dfe.free_school_milk", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "free_school_fruit_veg": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "free_school_fruit_veg", - "label": "free school fruit and vegetables", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dfe.free_school_fruit_veg", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "care_to_learn_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "care_to_learn_eligible", - "label": "eligible for Care to Learn childcare support", - "category": null, - "unit": null, - "moduleName": "gov.dfe.care_to_learn.care_to_learn_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "would_claim_care_to_learn": { - "documentation": "Whether this BenUnit would claim Care to Learn if eligible", - "entity": "benunit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "would_claim_care_to_learn", - "label": "would claim Care to Learn", - "category": null, - "unit": null, - "moduleName": "gov.dfe.care_to_learn.would_claim_care_to_learn", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": true, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "care_to_learn": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "care_to_learn", - "label": "Care to Learn scheme amount", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dfe.care_to_learn.care_to_learn", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "extended_childcare_entitlement_eligible": { - "documentation": null, - "entity": "benunit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "extended_childcare_entitlement_eligible", - "label": "eligibility for extended childcare entitlement", - "category": null, - "unit": null, - "moduleName": "gov.dfe.extended_childcare_entitlement.extended_childcare_entitlement_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "extended_childcare_entitlement": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "extended_childcare_entitlement", - "label": "annual extended childcare entitlement expenses", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dfe.extended_childcare_entitlement.extended_childcare_entitlement", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "would_claim_extended_childcare": { - "documentation": "Whether this family would claim extended childcare entitlement if eligible", - "entity": "benunit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "would_claim_extended_childcare", - "label": "would claim extended childcare entitlement", - "category": null, - "unit": null, - "moduleName": "gov.dfe.extended_childcare_entitlement.would_claim_extended_childcare", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": true, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "maximum_extended_childcare_hours_usage": { - "documentation": "The maximum number of weekly extended childcare hours that this family uses", - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "maximum_extended_childcare_hours_usage", - "label": "maximum extended childcare hours used", - "category": null, - "unit": null, - "moduleName": "gov.dfe.extended_childcare_entitlement.maximum_extended_childcare_hours_usage", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 30, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_child_receiving_extended_childcare": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_child_receiving_extended_childcare", - "label": "child is eligible for extended childcare entitlement", - "category": null, - "unit": null, - "moduleName": "gov.dfe.extended_childcare_entitlement.is_child_receiving_extended_childcare", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "extended_childcare_entitlement_work_condition": { - "documentation": "Whether this person meets work requirements for extended childcare entitlement.", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "extended_childcare_entitlement_work_condition", - "label": "Work conditions for extended childcare entitlement", - "category": null, - "unit": null, - "moduleName": "gov.dfe.extended_childcare_entitlement.conditions.extended_childcare_entitlement_work_condition", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "extended_childcare_entitlement_meets_income_requirements": { - "documentation": "Whether this person meets the income requirements for extended childcare entitlement based on age and income thresholds", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "extended_childcare_entitlement_meets_income_requirements", - "label": "Income eligible for the extended childcare entitlement", - "category": null, - "unit": null, - "moduleName": "gov.dfe.extended_childcare_entitlement.conditions.extended_childcare_entitlement_meets_income_requirements", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_of_compulsory_school_age": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_of_compulsory_school_age", - "label": "Whether the person is of compulsory school age", - "category": null, - "unit": null, - "moduleName": "gov.dfe.compulsory_education.is_of_compulsory_school_age", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "universal_childcare_entitlement_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "universal_childcare_entitlement_eligible", - "label": "eligible for universal childcare entitlement", - "category": null, - "unit": null, - "moduleName": "gov.dfe.universal_childcare_entitlement.universal_childcare_entitlement_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_child_receiving_universal_childcare": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_child_receiving_universal_childcare", - "label": "child is eligible for universal childcare entitlement based on age and entitlement", - "category": null, - "unit": null, - "moduleName": "gov.dfe.universal_childcare_entitlement.is_child_receiving_universal_childcare", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "universal_childcare_entitlement": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "universal_childcare_entitlement", - "label": "universal childcare entitlement amount per year", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dfe.universal_childcare_entitlement.universal_childcare_entitlement", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "would_claim_universal_childcare": { - "documentation": "Whether this BenUnit would claim universal childcare entitlement if eligible", - "entity": "benunit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "would_claim_universal_childcare", - "label": "would claim universal childcare entitlement", - "category": null, - "unit": null, - "moduleName": "gov.dfe.universal_childcare_entitlement.would_claim_universal_childcare", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": true, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_child_receiving_targeted_childcare": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_child_receiving_targeted_childcare", - "label": "child is eligible for targeted childcare entitlement based on age and entitlement", - "category": null, - "unit": null, - "moduleName": "gov.dfe.targeted_childcare_entitlement.is_child_receiving_targeted_childcare", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "meets_tax_credit_criteria_for_targeted_childcare_entitlement": { - "documentation": null, - "entity": "benunit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "meets_tax_credit_criteria_for_targeted_childcare_entitlement", - "label": "meets Tax Credit criteria for targeted childcare entitlement", - "category": null, - "unit": null, - "moduleName": "gov.dfe.targeted_childcare_entitlement.meets_tax_credit_criteria_for_targeted_childcare_entitlement", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "would_claim_targeted_childcare": { - "documentation": "Whether this family would claim targeted childcare entitlement if eligible", - "entity": "benunit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "would_claim_targeted_childcare", - "label": "would claim targeted childcare entitlement", - "category": null, - "unit": null, - "moduleName": "gov.dfe.targeted_childcare_entitlement.would_claim_targeted_childcare", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": true, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "targeted_childcare_entitlement_eligible": { - "documentation": null, - "entity": "benunit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "targeted_childcare_entitlement_eligible", - "label": "eligibility for targeted childcare entitlement", - "category": null, - "unit": null, - "moduleName": "gov.dfe.targeted_childcare_entitlement.targeted_childcare_entitlement_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "targeted_childcare_entitlement": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "targeted_childcare_entitlement", - "label": "targeted childcare entitlement amount", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dfe.targeted_childcare_entitlement.targeted_childcare_entitlement", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "meets_universal_credit_criteria_for_targeted_childcare_entitlement": { - "documentation": null, - "entity": "benunit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "meets_universal_credit_criteria_for_targeted_childcare_entitlement", - "label": "meets Universal Credit criteria for targeted childcare entitlement", - "category": null, - "unit": null, - "moduleName": "gov.dfe.targeted_childcare_entitlement.meets_universal_credit_criteria_for_targeted_childcare_entitlement", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "rail_subsidy_spending": { - "documentation": "Total spending on rail subsidies for this household.", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "rail_subsidy_spending", - "label": "rail subsidy spending", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dft.rail_subsidy_spending", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dft_subsidy_spending": { - "documentation": "Total spending on transport subsidies for this household.", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "dft_subsidy_spending", - "label": "transport subsidy spending", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dft.dft_subsidy_spending", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["rail_subsidy_spending", "bus_subsidy_spending"], - "subtracts": null, - "hidden_input": false - }, - "bus_subsidy_spending": { - "documentation": "Total spending on bus subsidies for this household", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "bus_subsidy_spending", - "label": "bus subsidy spending", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dft.bus_subsidy_spending", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "stamp_duty_land_tax": { - "documentation": "Total tax liability for Stamp Duty Land Tax", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "stamp_duty_land_tax", - "label": "Stamp Duty Land Tax", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.stamp_duty_land_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["sdlt_on_transactions", "sdlt_on_rent"], - "subtracts": null, - "hidden_input": false - }, - "sdlt_on_transactions": { - "documentation": "Stamp Duty Land Tax on property transfers", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "sdlt_on_transactions", - "label": "SDLT on property transactions", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.sdlt_on_transactions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "sdlt_on_residential_property_transactions", - "sdlt_on_non_residential_property_transactions" - ], - "subtracts": null, - "hidden_input": false - }, - "baseline_vat": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "baseline_vat", - "label": "baseline VAT", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.baseline_vat", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_reported": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "tax_reported", - "label": "Reported tax paid", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.tax_reported", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "would_claim_child_benefit": { - "documentation": "Whether this benefit unit would claim Child Benefit if eligible", - "entity": "benunit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "would_claim_child_benefit", - "label": "Would claim Child Benefit", - "category": null, - "unit": null, - "moduleName": "gov.hmrc.would_claim_child_benefit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "sdlt_liable": { - "documentation": "Whether the household is liable for Stamp Duty Land Tax", - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "sdlt_liable", - "label": "Liable for Stamp Duty", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.sdlt_liable", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "corporate_sdlt": { - "documentation": "Stamp Duty paid by corporations, incident on this household", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "corporate_sdlt", - "label": "Stamp Duty (corporations)", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.corporate_sdlt", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "child_benefit_entitlement": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "child_benefit_entitlement", - "label": "CB entitlement", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.child_benefit_entitlement", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["child_benefit_respective_amount"], - "subtracts": null, - "hidden_input": false - }, - "tax_modelling": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "tax_modelling", - "label": "Difference between reported and imputed tax liabilities", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.tax_modelling", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["tax"], - "subtracts": ["tax_reported"], - "hidden_input": false - }, - "baseline_child_benefit_entitlement": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "baseline_child_benefit_entitlement", - "label": "Child Benefit (baseline)", - "category": null, - "unit": null, - "moduleName": "gov.hmrc.baseline_child_benefit_entitlement", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "child_benefit_respective_amount": { - "documentation": "The amount of this benefit unit's Child Benefit which is in respect of this person", - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "child_benefit_respective_amount", - "label": "Child Benefit (respective amount)", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.child_benefit_respective_amount", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "vat": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "vat", - "label": "VAT", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.vat", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "benunit_tax": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "benunit_tax", - "label": "Benefit unit tax paid", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.benunit_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["tax"], - "subtracts": null, - "hidden_input": false - }, - "sdlt_on_non_residential_property_rent": { - "documentation": "Tax charge from rental of non-residential property", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "sdlt_on_non_residential_property_rent", - "label": "Stamp Duty on non-residential property", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.sdlt_on_non_residential_property_rent", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "vat_change": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "vat_change", - "label": "change in VAT liability", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.vat_change", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["vat"], - "subtracts": ["baseline_vat"], - "hidden_input": false - }, - "expected_sdlt": { - "documentation": "Expected value of Stamp Duty Land Tax", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "expected_sdlt", - "label": "Stamp Duty (expected)", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.expected_sdlt", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "child_benefit_opts_out": { - "documentation": "Whether this family would opt out of receiving Child Benefit payments", - "entity": "benunit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "child_benefit_opts_out", - "label": "opts out of Child Benefit", - "category": null, - "unit": null, - "moduleName": "gov.hmrc.child_benefit_opts_out", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "sdlt_on_non_residential_property_transactions": { - "documentation": "Tax charge from purchase of non-residential property", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "sdlt_on_non_residential_property_transactions", - "label": "Stamp Duty on non-residential property", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.sdlt_on_non_residential_property_transactions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "baseline_business_rates": { - "documentation": "Total incidence from business rates exposure in the baseline", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "baseline_business_rates", - "label": "Baseline business rates incidence", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.baseline_business_rates", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "child_benefit_reported": { - "documentation": "Reported amount received for Child Benefit", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "child_benefit_reported", - "label": "Child Benefit (reported amount)", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.child_benefit_reported", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "household_tax": { - "documentation": "Total taxes owed by the household", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "household_tax", - "label": "household taxes", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.household_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "expected_sdlt", - "expected_ltt", - "expected_lbtt", - "corporate_sdlt", - "business_rates", - "council_tax", - "domestic_rates", - "fuel_duty", - "tv_licence", - "wealth_tax", - "non_primary_residence_wealth_tax", - "income_tax", - "national_insurance", - "LVT", - "carbon_tax", - "vat_change", - "capital_gains_tax", - "private_school_vat", - "corporate_incident_tax_revenue_change", - "consumer_incident_tax_revenue_change", - "high_income_incident_tax_change", - "employer_ni_response_capital_incidence", - "employer_ni_response_consumer_incidence", - "student_loan_repayments" - ], - "subtracts": null, - "hidden_input": false - }, - "child_benefit": { - "documentation": "Total Child Benefit for the benefit unit", - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "child_benefit", - "label": "Child Benefit", - "category": "benefit", - "unit": "currency-GBP", - "moduleName": "gov.hmrc.child_benefit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["child_benefit_entitlement"], - "subtracts": null, - "hidden_input": false - }, - "business_rates": { - "documentation": "Total incidence from exposure to business rates via corporate shareholdings", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "business_rates", - "label": "Business rates incidence", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.business_rates", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "sdlt_on_residential_property_transactions": { - "documentation": "Tax charge from purchase of residential property", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "sdlt_on_residential_property_transactions", - "label": "Stamp Duty on residential property", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.sdlt_on_residential_property_transactions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "sdlt_on_residential_property_rent": { - "documentation": "Tax charge from rental of residential property", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "sdlt_on_residential_property_rent", - "label": "Stamp Duty on residential property", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.sdlt_on_residential_property_rent", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "tax", - "label": "Taxes", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["income_tax", "national_insurance"], - "subtracts": null, - "hidden_input": false - }, - "child_benefit_less_tax_charge": { - "documentation": "Child Benefit, minus the Child Benefit High-Income Tax Charge", - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "child_benefit_less_tax_charge", - "label": "Child Benefit (less tax charge)", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.child_benefit_less_tax_charge", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["child_benefit"], - "subtracts": ["CB_HITC"], - "hidden_input": false - }, - "student_loan_repayments": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "student_loan_repayments", - "label": "student loan repayments", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.student_loan_repayments", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "sdlt_on_rent": { - "documentation": "Stamp Duty Land Tax on property rental agreements", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "sdlt_on_rent", - "label": "SDLT on property rental", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.sdlt_on_rent", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["sdlt_on_residential_property_rent", "sdlt_on_non_residential_property_rent"], - "subtracts": null, - "hidden_input": false - }, - "would_claim_tfc": { - "documentation": "Whether this family would claim Tax-Free Childcare if eligible", - "entity": "benunit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "would_claim_tfc", - "label": "would claim Tax-Free Childcare", - "category": null, - "unit": null, - "moduleName": "gov.hmrc.tax_free_childcare.would_claim_tfc", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": true, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_child_receiving_tax_free_childcare": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_child_receiving_tax_free_childcare", - "label": "child is eligible for tax-free childcare based on age and entitlement", - "category": null, - "unit": null, - "moduleName": "gov.hmrc.tax_free_childcare.is_child_receiving_tax_free_childcare", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_free_childcare_eligible": { - "documentation": null, - "entity": "benunit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "tax_free_childcare_eligible", - "label": "overall eligibility for tax-free childcare", - "category": null, - "unit": null, - "moduleName": "gov.hmrc.tax_free_childcare.tax_free_childcare_eligibility", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_free_childcare": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "tax_free_childcare", - "label": "government contribution through tax-free childcare", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.tax_free_childcare.tax_free_childcare", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_free_childcare_work_condition": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "tax_free_childcare_work_condition", - "label": "work conditions for tax-free childcare", - "category": null, - "unit": null, - "moduleName": "gov.hmrc.tax_free_childcare.conditions.tax_free_childcare_work_condition", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_free_childcare_meets_income_requirements": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "tax_free_childcare_meets_income_requirements", - "label": "income eligible for the tax-free childcare", - "category": null, - "unit": null, - "moduleName": "gov.hmrc.tax_free_childcare.conditions.tax_free_childcare_meets_income_requirements", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_free_childcare_program_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "tax_free_childcare_program_eligible", - "label": "tax-free childcare program eligibility", - "category": null, - "unit": null, - "moduleName": "gov.hmrc.tax_free_childcare.conditions.tax_free_childcare_program_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_free_childcare_child_age_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "tax_free_childcare_child_age_eligible", - "label": "eligible child for the tax-free childcare", - "category": null, - "unit": null, - "moduleName": "gov.hmrc.tax_free_childcare.conditions.tax_free_childcare_child_age_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "capital_gains_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "capital_gains_tax", - "label": "capital gains tax", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.capital_gains_tax.capital_gains_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "marginal_tax_rate_on_capital_gains": { - "documentation": "Percent of marginal capital gains that do not increase household net income.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "marginal_tax_rate_on_capital_gains", - "label": "capital gains marginal tax rate", - "category": null, - "unit": "/1", - "moduleName": "gov.hmrc.capital_gains_tax.marginal_tax_rate_on_capital_gains", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "capital_gains_behavioural_response": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "capital_gains_behavioural_response", - "label": "capital gains behavioral response", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.capital_gains_tax.capital_gains_behavioural_response", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "capital_gains_elasticity": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "capital_gains_elasticity", - "label": "elasticity of capital gains realizations", - "category": null, - "unit": "/1", - "moduleName": "gov.hmrc.capital_gains_tax.capital_gains_elasticity", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "capital_gains_before_response": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "capital_gains_before_response", - "label": "capital gains before responses", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.capital_gains_tax.capital_gains_before_response", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "adult_index_cg": { - "documentation": null, - "entity": "person", - "valueType": "int", - "definitionPeriod": "year", - "name": "adult_index_cg", - "label": "index of adult in household, ranked by capital gains", - "category": null, - "unit": null, - "moduleName": "gov.hmrc.capital_gains_tax.adult_index_cg", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "relative_capital_gains_mtr_change": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "relative_capital_gains_mtr_change", - "label": "relative change in capital gains tax rate", - "category": null, - "unit": "/1", - "moduleName": "gov.hmrc.capital_gains_tax.relative_capital_gains_mtr_change", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "fuel_duty": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "month", - "name": "fuel_duty", - "label": "Fuel duty (cars only)", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.fuel_duty.fuel_duty", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "total_national_insurance": { - "documentation": "Employee, employer and self-employed NI contributions.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "total_national_insurance", - "label": "total National Insurance", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.national_insurance.total_national_insurance", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["national_insurance", "ni_class_1_employer"], - "subtracts": null, - "hidden_input": false - }, - "ni_self_employed": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ni_self_employed", - "label": "self-employed National Insurance", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.national_insurance.ni_self_employed", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ni_class_2", "ni_class_4"], - "subtracts": null, - "hidden_input": false - }, - "ni_employer": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ni_employer", - "label": "employer-side National Insurance", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.national_insurance.ni_employer", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ni_class_1_employer"], - "subtracts": null, - "hidden_input": false - }, - "ni_employee": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ni_employee", - "label": "employee-side National Insurance", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.national_insurance.ni_employee", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ni_class_1_employee"], - "subtracts": null, - "hidden_input": false - }, - "national_insurance": { - "documentation": "Total National Insurance contributions", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "national_insurance", - "label": "National Insurance", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.national_insurance.national_insurance", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ni_class_1_employee", "ni_class_2", "ni_class_3", "ni_class_4"], - "subtracts": null, - "hidden_input": false - }, - "ni_class_3": { - "documentation": "Voluntary contributions to NI.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ni_class_3", - "label": "NI Class 3 contributions", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.national_insurance.class_3.ni_class_3", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ni_class_2": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ni_class_2", - "label": "NI Class 2 contributions", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.national_insurance.class_2.ni_class_2", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ni_class_4_main": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ni_class_4_main", - "label": "NI Class 4 main contributions", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.national_insurance.class_4.ni_class_4_main", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ni_class_4": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ni_class_4", - "label": "NI Class 4 main contributions", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.national_insurance.class_4.ni_class_4", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ni_class_4_maximum": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ni_class_4_maximum", - "label": "NI Class 4 maximum liability", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.national_insurance.class_4.ni_class_4_maximum", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ni_liable": { - "documentation": "Whether this person is liable for NI contributions by their age.", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ni_liable", - "label": "NI liable", - "category": null, - "unit": null, - "moduleName": "gov.hmrc.national_insurance.class_1.ni_liable", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ni_class_1_income": { - "documentation": "Income subject to NI Class 1 contributions.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ni_class_1_income", - "label": "ni_class_1_income", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.national_insurance.class_1.ni_class_1_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "employment_income", - "statutory_sick_pay", - "statutory_maternity_pay", - "statutory_paternity_pay" - ], - "subtracts": null, - "hidden_input": false - }, - "ni_class_1_employer": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ni_class_1_employer", - "label": "NI Class 1 employer-side contributions", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.national_insurance.class_1.ni_class_1_employer", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ni_class_1_employee": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "ni_class_1_employee", - "label": "NI Class 1 employee-side contributions", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.national_insurance.class_1.ni_class_1_employee", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ni_class_1_employee_primary", "ni_class_1_employee_additional"], - "subtracts": null, - "hidden_input": false - }, - "ni_class_1_employee_primary": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "ni_class_1_employee_primary", - "label": "NI Class 1 employee-side primary contributions", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.national_insurance.class_1.ni_class_1_employee_primary", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ni_class_1_employee_additional": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "ni_class_1_employee_additional", - "label": "NI Class 1 employee-side additional contributions", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.national_insurance.class_1.ni_class_1_employee_additional", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "personal_pension_contributions_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "personal_pension_contributions_tax", - "label": "Reduction in taxable income from pension contributions to pensions other than the State Pension", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.pensions.private_pension_contributions_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pension_contributions_relief": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "pension_contributions_relief", - "label": "Reduction in taxable income from pension contributions", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.pensions.pension_contributions_relief", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pension_contributions": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "pension_contributions", - "label": "Amount contributed to registered pension schemes paid by the individual (not the employer)", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.pensions.pension_contributions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.hmrc.pensions.pensions_programs", - "subtracts": null, - "hidden_input": false - }, - "pays_scottish_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "pays_scottish_income_tax", - "label": "Whether the individual pays Scottish Income Tax rates", - "category": null, - "unit": null, - "moduleName": "gov.hmrc.regional.pays_scottish_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "total_pension_income": { - "documentation": "Private, personal and State Pension income", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "total_pension_income", - "label": "Total pension income", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.total_pension_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["private_pension_income", "state_pension"], - "subtracts": null, - "hidden_input": false - }, - "total_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "total_income", - "label": "Taxable income after tax reliefs and before allowances", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.total_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "employment_income", - "private_pension_income", - "social_security_income", - "self_employment_income", - "property_income", - "savings_interest_income", - "dividend_income", - "miscellaneous_income" - ], - "subtracts": null, - "hidden_input": false - }, - "earned_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "earned_income_tax", - "label": "Income tax on earned income", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.earned_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "adjusted_net_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "adjusted_net_income", - "label": "Taxable income after tax reliefs and before allowances", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.adjusted_net_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxed_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxed_income", - "label": "Income which is taxed", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.taxed_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["earned_taxable_income", "taxed_savings_income", "taxed_dividend_income"], - "subtracts": null, - "hidden_input": false - }, - "other_tax_credits": { - "documentation": "Includes Venture Capital Trusts, Enterprise Investment Schemes, \nSeed Enterprise Investment Schemes, Community Investment Tax Relief, maintenance/alimony payments, \nSocial Investment Tax Relief, foreign tax relief on income and landlord tax relief.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "other_tax_credits", - "label": "other miscellaneous tax credits for Income Tax", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.other_tax_credits", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "income_tax_pre_charges": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "income_tax_pre_charges", - "label": "Income Tax before any tax charges", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.income_tax_pre_charges", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["earned_income_tax", "savings_income_tax", "dividend_income_tax"], - "subtracts": null, - "hidden_input": false - }, - "income_tax": { - "documentation": "Total Income Tax liability", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "income_tax", - "label": "Income Tax", - "category": "tax", - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "social_security_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "social_security_income", - "label": "Income from social security for tax purposes", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.social_security_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "state_pension", - "incapacity_benefit", - "jsa_contrib_reported", - "esa_contrib_reported", - "carers_allowance" - ], - "subtracts": null, - "hidden_input": false - }, - "basic_rate_earned_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "basic_rate_earned_income", - "label": "Earned income (non-savings, non-dividend) at the basic rate", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.bracketized_earned_income.basic_rate_earned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "add_rate_earned_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "add_rate_earned_income", - "label": "Earned income (non-savings, non-dividend) at the additional rate", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.bracketized_earned_income.add_rate_earned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "earned_taxable_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "earned_taxable_income", - "label": "Non-savings, non-dividend income for Income Tax", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.bracketized_earned_income.earned_taxable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "higher_rate_earned_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "higher_rate_earned_income", - "label": "Earned income (non-savings, non-dividend) at the higher rate", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.bracketized_earned_income.higher_rate_earned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "add_rate_earned_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "add_rate_earned_income_tax", - "label": "Income tax on earned income at the additional rate", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.bracketized_liability.add_rate_earned_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "higher_rate_earned_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "higher_rate_earned_income_tax", - "label": "Income tax on earned income at the higher rate", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.bracketized_liability.higher_rate_earned_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "basic_rate_earned_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "basic_rate_earned_income_tax", - "label": "Income tax on earned income at the basic rate", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.bracketized_liability.basic_rate_earned_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_band": { - "documentation": null, - "entity": "person", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "tax_band", - "label": "Tax band of the individual", - "category": null, - "unit": null, - "moduleName": "gov.hmrc.income_tax.bracketized_liability.tax_band", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "NONE", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "NONE", - "label": "None" - }, - { - "value": "STARTER", - "label": "Starter (Scottish rates)" - }, - { - "value": "BASIC", - "label": "Basic" - }, - { - "value": "INTERMEDIATE", - "label": "Intermediate (Scottish rates)" - }, - { - "value": "HIGHER", - "label": "Higher" - }, - { - "value": "ADDITIONAL", - "label": "Additional" - } - ] - }, - "savings_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "savings_income_tax", - "label": "Income tax on savings income", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.liability.savings_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dividend_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "dividend_income_tax", - "label": "Income tax on dividend income", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.liability.dividend_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxed_savings_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxed_savings_income", - "label": "Savings income which advances the person's income tax schedule", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.bracketized_savings_income.taxed_savings_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "basic_rate_savings_income", - "higher_rate_savings_income", - "add_rate_savings_income" - ], - "subtracts": null, - "hidden_input": false - }, - "basic_rate_savings_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "basic_rate_savings_income", - "label": "Savings income at the basic rate", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.bracketized_savings_income.basic_rate_savings_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "higher_rate_savings_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "higher_rate_savings_income", - "label": "Savings income at the higher rate", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.bracketized_savings_income.higher_rate_savings_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "savings_starter_rate_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "savings_starter_rate_income", - "label": "Savings income which is tax-free under the starter rate", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.bracketized_savings_income.savings_starter_rate_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "basic_rate_savings_income_pre_starter": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "basic_rate_savings_income_pre_starter", - "label": "Savings income which would otherwise be taxed at the basic rate, without the starter rate", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.bracketized_savings_income.basic_rate_savings_income_pre_starter", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "add_rate_savings_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "add_rate_savings_income", - "label": "Savings income at the higher rate", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.bracketized_savings_income.add_rate_savings_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "allowances": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "allowances", - "label": "Allowances applicable to adjusted net income", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.allowances.allowances", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "personal_allowance", - "blind_persons_allowance", - "gift_aid", - "covenanted_payments", - "charitable_investment_gifts", - "other_deductions", - "pension_contributions_relief" - ], - "subtracts": null, - "hidden_input": false - }, - "property_allowance": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "property_allowance", - "label": "Property Allowance for the year", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.allowances.property_allowance", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "blind_persons_allowance": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "blind_persons_allowance", - "label": "Blind Person's Allowance for the year (not simulated)", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.allowances.blind_persons_allowance", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "meets_marriage_allowance_income_conditions": { - "documentation": "Whether this person (and their partner) meets the conditions for this person to be eligible for the Marriage Allowance, as set out in the Income Tax Act 2007 sections 55B and 55C", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "meets_marriage_allowance_income_conditions", - "label": "Meets Marriage Allowance income conditions", - "category": null, - "unit": null, - "moduleName": "gov.hmrc.income_tax.allowances.meets_marriage_allowance_income_conditions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "marriage_allowance": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "marriage_allowance", - "label": "Marriage Allowance", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.allowances.marriage_allowance", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "capped_mcad": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "capped_mcad", - "label": "capped Married Couples' Allowance deduction", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.allowances.capped_mcad", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "unused_personal_allowance": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "unused_personal_allowance", - "label": "Unused personal allowance", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.allowances.unused_personal_allowance", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "personal_allowance": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "personal_allowance", - "label": "Personal Allowance for the year", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.allowances.personal_allowance", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "trading_allowance_deduction": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "trading_allowance_deduction", - "label": "Deduction applied by the trading allowance", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.allowances.trading_allowance_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "partners_unused_personal_allowance": { - "documentation": "The personal tax allowance not used by this person's partner, if they exist", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "partners_unused_personal_allowance", - "label": "Partner's unused personal allowance", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.allowances.partners_unused_personal_allowance", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "trading_allowance": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "trading_allowance", - "label": "Trading Allowance for the year", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.allowances.trading_allowance", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "married_couples_allowance": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "married_couples_allowance", - "label": "Married Couples' allowance for the year", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.allowances.married_couples_allowance", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dividend_allowance": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "dividend_allowance", - "label": "Dividend allowance for the person", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.allowances.dividend_allowance", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "married_couples_allowance_deduction": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "married_couples_allowance_deduction", - "label": "Deduction from Married Couples' allowance for the year", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.allowances.married_couples_allowance_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "property_allowance_deduction": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "property_allowance_deduction", - "label": "Deduction applied by the property allowance", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.allowances.property_allowance_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "other_deductions": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "other_deductions", - "label": "All other tax deductions", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.allowances.other_deductions", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "covenanted_payments": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "covenanted_payments", - "label": "Covenanted payments to charities", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.allowances.covenanted_payments", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "gift_aid": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "gift_aid", - "label": "Expenditure under Gift Aid", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.allowances.gift_aid", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "charitable_investment_gifts": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "charitable_investment_gifts", - "label": "Gifts of qualifying investment or property to charities", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.allowances.charitable_investment_gifts", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "savings_allowance": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "savings_allowance", - "label": "Savings Allowance for the year", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.allowances.savings_allowance", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pension_annual_allowance": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "pension_annual_allowance", - "label": "Annual Allowance for pension contributions", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.allowances.pension_annual_allowance", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "received_allowances": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "received_allowances", - "label": "Total of all allowances received by an individual; minimum value of 0, maximum value of 100% of the individual's income", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.allowances.received_allowances.received_allowances", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "received_allowances_earned_income", - "received_allowances_savings_income", - "received_allowances_dividend_income" - ], - "subtracts": null, - "hidden_input": false - }, - "received_allowances_earned_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "received_allowances_earned_income", - "label": "The portion of all allowances (minus those only applicable to certain types of income) that is applied to earned income", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.allowances.received_allowances.received_allowances_earned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "received_allowances_savings_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "received_allowances_savings_income", - "label": "The portion of all allowances (minus those only applicable to one income type) calculated after earned taxable income, but before dividends. This is applied to savings interest income.", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.allowances.received_allowances.received_allowances_savings_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "received_allowances_dividend_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "received_allowances_dividend_income", - "label": "The portion of all allowances (excluding those for a particular income type) calculated last, applied to dividends.", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.allowances.received_allowances.received_allowances_dividend_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxable_miscellaneous_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxable_miscellaneous_income", - "label": "Amount of miscellaneous income that is taxable", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.bases.taxable_miscellaneous_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["miscellaneous_income"], - "subtracts": null, - "hidden_input": false - }, - "taxable_self_employment_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxable_self_employment_income", - "label": "Amount of trading income that is taxable", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.bases.taxable_self_employment_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxable_employment_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxable_employment_income", - "label": "Net taxable earnings", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.bases.taxable_employment_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "trading_loss": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "trading_loss", - "label": "Loss from trading in the current year.", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.bases.trading_loss", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxable_property_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxable_property_income", - "label": "Amount of property income that is taxable", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.bases.taxable_property_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxable_social_security_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxable_social_security_income", - "label": "Amount of social security income that is taxable", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.bases.taxable_social_security_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["social_security_income"], - "subtracts": null, - "hidden_input": false - }, - "taxable_dividend_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxable_dividend_income", - "label": "Amount of dividend income that is taxable", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.bases.taxable_dividend_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxed_dividend_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxed_dividend_income", - "label": "Dividend income which is taxed", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.bases.taxed_dividend_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxable_pension_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxable_pension_income", - "label": "Amount of pension income that is taxable", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.bases.taxable_pension_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["private_pension_income"], - "subtracts": null, - "hidden_input": false - }, - "taxable_savings_interest_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxable_savings_interest_income", - "label": "Amount of savings interest which is taxable", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.bases.savings_income.taxable_savings_interest_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_free_savings_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "tax_free_savings_income", - "label": "Income from savings in tax-free accounts", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.bases.savings_income.tax_free_savings_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["individual_savings_account_interest_income"], - "subtracts": null, - "hidden_input": false - }, - "individual_savings_account_interest_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "individual_savings_account_interest_income", - "label": "Amount received in interest from Individual Savings Accounts", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.bases.savings_income.ISA_interest_income", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "CB_HITC": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "CB_HITC", - "label": "Child Benefit High-Income Tax Charge", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.charges.child_benefit_hitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "deficiency_relief": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "deficiency_relief", - "label": "Deficiency relief", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.reliefs.deficiency_relief", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "loss_relief": { - "documentation": "Can be set against general income.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "loss_relief", - "label": "Tax relief from trading losses", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.reliefs.loss_relief", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "capital_allowances": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "capital_allowances", - "label": "Full relief from capital expenditure allowances", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.reliefs.capital_allowances", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "employment_expenses": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "employment_expenses", - "label": "Cost of expenses necessarily incurred and reimbursed by employment", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.deductions.employment_expenses", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "employment_deductions": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "employment_deductions", - "label": "Deductions from employment income", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.hmrc.income_tax.deductions.employment_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["employment_expenses"], - "subtracts": null, - "hidden_input": false - }, - "nhs_spending": { - "documentation": "Total NHS spending for this person.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "nhs_spending", - "label": "NHS spending", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dhsc.nhs_spending", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "nhs_outpatient_spending", - "nhs_a_and_e_spending", - "nhs_admitted_patient_spending" - ], - "subtracts": null, - "hidden_input": false - }, - "outpatient_visits": { - "documentation": "Number of outpatient visits by this person.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "outpatient_visits", - "label": "outpatient visits", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dhsc.outpatient.outpatient_visits", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nhs_outpatient_spending": { - "documentation": "Total spending by the NHS on outpatient visits for this person.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "nhs_outpatient_spending", - "label": "NHS spending on outpatient visits", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dhsc.outpatient.nhs_outpatient_spending", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "a_and_e_visits": { - "documentation": "Number of A&E visits by this person.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "a_and_e_visits", - "label": "A&E visits", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dhsc.a_and_e.a_and_e_visits", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nhs_a_and_e_spending": { - "documentation": "Total spending by the NHS on A&E visits for this person.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "nhs_a_and_e_spending", - "label": "NHS spending on A&E visits", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dhsc.a_and_e.nhs_a_and_e_spending", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nhs_admitted_patient_spending": { - "documentation": "Total spending by the NHS on admitted patient visits for this person.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "nhs_admitted_patient_spending", - "label": "NHS spending on admitted patient visits", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dhsc.admitted_patient.nhs_admitted_patient_spending", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "admitted_patient_visits": { - "documentation": "Number of admitted patient visits by this person.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "admitted_patient_visits", - "label": "admitted patient visits", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dhsc.admitted_patient.admitted_patient_visits", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "free_tv_licence_value": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "free_tv_licence_value", - "label": "free TV licence value", - "category": null, - "unit": "/1", - "moduleName": "gov.dcms.bbc.tv_licence.free_tv_licence_value", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "would_evade_tv_licence_fee": { - "documentation": "Whether this household would unlawfully evade the TV licence fee.", - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "would_evade_tv_licence_fee", - "label": "Would evade TV licence fee", - "category": null, - "unit": null, - "moduleName": "gov.dcms.bbc.tv_licence.would_evade_tv_licence_fee", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tv_licence_discount": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "tv_licence_discount", - "label": "TV licence discount", - "category": null, - "unit": "/1", - "moduleName": "gov.dcms.bbc.tv_licence.tv_licence_discount", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tv_licence": { - "documentation": "Net cost of a TV licence", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "tv_licence", - "label": "TV licence", - "category": "tax", - "unit": "currency-GBP", - "moduleName": "gov.dcms.bbc.tv_licence.tv_licence", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_SP_age": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_SP_age", - "label": "Whether the person is State Pension Age", - "category": null, - "unit": null, - "moduleName": "gov.dwp.is_SP_age", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ssmg_reported": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ssmg_reported", - "label": "Sure Start Maternity Grant (reported)", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.ssmg_reported", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_credits": { - "documentation": "Value of the Tax Credits (benefits) for this family", - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "tax_credits", - "label": "Tax Credits", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.tax_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "bsp_reported": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "bsp_reported", - "label": "Bereavement Support Payment (reported)", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.bsp_reported", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "maternity_allowance": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "maternity_allowance", - "label": "Maternity Allowance", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.maternity_allowance", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["maternity_allowance_reported"], - "subtracts": null, - "hidden_input": false - }, - "LHA_category": { - "documentation": null, - "entity": "benunit", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "LHA_category", - "label": "LHA category for the benefit unit, taking into account LHA rules on the number of LHA-covered bedrooms", - "category": null, - "unit": null, - "moduleName": "gov.dwp.LHA_category", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "C", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "A", - "label": "Shared accommodation" - }, - { - "value": "B", - "label": "One bedroom" - }, - { - "value": "C", - "label": "Two bedrooms" - }, - { - "value": "D", - "label": "Three bedrooms" - }, - { - "value": "E", - "label": "Four or more bedrooms" - } - ] - }, - "baseline_ctc_entitlement": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "baseline_ctc_entitlement", - "label": "Receives Child Tax Credit (baseline)", - "category": null, - "unit": null, - "moduleName": "gov.dwp.baseline_ctc_entitlement", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "WTC_childcare_element": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "WTC_childcare_element", - "label": "Working Tax Credit childcare element", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.WTC_childcare_element", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "WTC_couple_element": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "WTC_couple_element", - "label": "Working Tax Credit couple element", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.WTC_couple_element", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "attendance_allowance_reported": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "attendance_allowance_reported", - "label": "Attendance Allowance (reported)", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.attendance_allowance_reported", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "additional_state_pension": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "additional_state_pension", - "label": "additional State Pension", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.additional_state_pension", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "working_tax_credit": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "working_tax_credit", - "label": "Working Tax Credit", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.working_tax_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["wtc_entitlement"], - "subtracts": null, - "hidden_input": false - }, - "is_CTC_eligible": { - "documentation": null, - "entity": "benunit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_CTC_eligible", - "label": "Child Tax Credit eligibility", - "category": null, - "unit": null, - "moduleName": "gov.dwp.is_CTC_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "basic_state_pension": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "basic_state_pension", - "label": "basic State Pension", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.basic_state_pension", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "income_support": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "income_support", - "label": "Income Support", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.income_support", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["income_support_entitlement"], - "subtracts": null, - "hidden_input": false - }, - "new_state_pension": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "new_state_pension", - "label": "new State Pension", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.new_state_pension", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "adult_ema": { - "documentation": "Educational Maintenance Allowance for adults", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "adult_ema", - "label": "Adult EMA", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.adult_ema", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "afcs_reported": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "afcs_reported", - "label": "Armed Forces Compensation Scheme (reported)", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.afcs_reported", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "sda": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "sda", - "label": "Severe Disablement Allowance", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.sda", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "income_support_applicable_income": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "income_support_applicable_income", - "label": "Relevant income for Income Support means test", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.income_support_applicable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "CTC_family_element": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "CTC_family_element", - "label": "CTC entitlement in the Family Element", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.CTC_family_element", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "esa_income": { - "documentation": "Employment and Support Allowance", - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "esa_income", - "label": "ESA (income-based)", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.esa_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["esa_income_reported"], - "subtracts": null, - "hidden_input": false - }, - "care_hours": { - "documentation": "Weekly hours providing care to others", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "care_hours", - "label": "hours providing care", - "category": null, - "unit": "hour", - "moduleName": "gov.dwp.care_hours", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "carers_allowance": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "carers_allowance", - "label": "Carer's Allowance", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.carers_allowance", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "CTC_maximum_rate": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "CTC_maximum_rate", - "label": "Maximum Child Tax Credit", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.CTC_maximum_rate", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "CTC_family_element", - "CTC_child_element", - "CTC_disabled_child_element", - "CTC_severely_disabled_child_element" - ], - "subtracts": null, - "hidden_input": false - }, - "would_claim_IS": { - "documentation": "Whether this family would claim Income Support if eligible", - "entity": "benunit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "would_claim_IS", - "label": "Would claim Income Support", - "category": null, - "unit": null, - "moduleName": "gov.dwp.would_claim_IS", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "income_support_reported": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "income_support_reported", - "label": "Income Support (reported amount)", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.income_support_reported", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ctc_entitlement": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ctc_entitlement", - "label": "CTC entitlement", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.ctc_entitlement", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "incapacity_benefit_reported": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "incapacity_benefit_reported", - "label": "Incapacity Benefit (reported)", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.incapacity_benefit_reported", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "bsp": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "bsp", - "label": "Bereavement Support Payment", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.bsp", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["bsp_reported"], - "subtracts": null, - "hidden_input": false - }, - "BRMA_LHA_rate": { - "documentation": "Local Housing Allowance rate", - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "BRMA_LHA_rate", - "label": "LHA rate", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.BRMA_LHA_rate", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_credits_reduction": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "tax_credits_reduction", - "label": "Reduction in Tax Credits from means-tested income", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.tax_credits_reduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "winter_fuel_allowance": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "winter_fuel_allowance", - "label": "Winter Fuel Allowance", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.winter_fuel_allowance", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_WTC_eligible": { - "documentation": null, - "entity": "benunit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_WTC_eligible", - "label": "Working Tax Credit eligibility", - "category": null, - "unit": null, - "moduleName": "gov.dwp.is_WTC_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_credits_applicable_income": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "tax_credits_applicable_income", - "label": "Applicable income for Tax Credits", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.tax_credits_applicable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "LHA_allowed_bedrooms": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "LHA_allowed_bedrooms", - "label": "The number of bedrooms covered by LHA for the benefit unit", - "category": null, - "unit": null, - "moduleName": "gov.dwp.LHA_allowed_bedrooms", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "income_support_eligible": { - "documentation": null, - "entity": "benunit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "income_support_eligible", - "label": "Whether eligible for Income Support", - "category": null, - "unit": null, - "moduleName": "gov.dwp.income_support_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "education_grants": { - "documentation": "Grants for education", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "education_grants", - "label": "Education grants", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.education_grants", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wtc_entitlement": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wtc_entitlement", - "label": "WTC entitlement", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.wtc_entitlement", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "council_tax_benefit": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "council_tax_benefit", - "label": "Council Tax Benefit", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.council_tax_benefit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["council_tax_benefit_reported"], - "subtracts": null, - "hidden_input": false - }, - "is_benefit_cap_exempt": { - "documentation": null, - "entity": "benunit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_benefit_cap_exempt", - "label": "Whether exempt from the benefits cap", - "category": null, - "unit": null, - "moduleName": "gov.dwp.is_benefit_cap_exempt", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_child_for_CTC": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_child_for_CTC", - "label": "Child eligible for Child Tax Credit", - "category": null, - "unit": null, - "moduleName": "gov.dwp.is_child_for_CTC", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "winter_fuel_allowance_reported": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "winter_fuel_allowance_reported", - "label": "Winter fuel allowance", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.winter_fuel_allowance_reported", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "LHA_cap": { - "documentation": "Applicable amount for Local Housing Allowance", - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "LHA_cap", - "label": "Applicable amount for LHA", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.LHA_cap", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "would_claim_CTC": { - "documentation": "Whether this family would claim Child Tax Credit if eligible", - "entity": "benunit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "would_claim_CTC", - "label": "Would claim Child Tax Credit", - "category": null, - "unit": null, - "moduleName": "gov.dwp.would_claim_CTC", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "state_pension_reported": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "state_pension_reported", - "label": "Reported income from the State Pension", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.state_pension_reported", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "WTC_maximum_rate": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "WTC_maximum_rate", - "label": "Working Tax Credit maximum rate", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.WTC_maximum_rate", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "WTC_basic_element", - "WTC_couple_element", - "WTC_lone_parent_element", - "WTC_disabled_element", - "WTC_severely_disabled_element", - "WTC_worker_element", - "WTC_childcare_element" - ], - "subtracts": null, - "hidden_input": false - }, - "sda_reported": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "sda_reported", - "label": "Severe Disablement Allowance (reported)", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.sda_reported", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "esa": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "esa", - "label": "ESA", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.esa", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["esa_contrib", "esa_income"], - "subtracts": null, - "hidden_input": false - }, - "council_tax_benefit_reported": { - "documentation": "Reported amount of Council Tax Benefit", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "council_tax_benefit_reported", - "label": "Council Tax Benefit (reported)", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.council_tax_benefit_reported", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "would_claim_WTC": { - "documentation": "Whether this family would claim Working Tax Credit if eligible", - "entity": "benunit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "would_claim_WTC", - "label": "Would claim Working Tax Credit", - "category": null, - "unit": null, - "moduleName": "gov.dwp.would_claim_WTC", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "income_support_applicable_amount": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "income_support_applicable_amount", - "label": "Applicable amount of Income Support", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.income_support_applicable_amount", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "WTC_disabled_element": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "WTC_disabled_element", - "label": "Working Tax Credit disabled element", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.WTC_disabled_element", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "jsa_income": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "jsa_income", - "label": "JSA (income-based)", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.jsa_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "esa_contrib": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "esa_contrib", - "label": "ESA (contribution-based)", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.esa_contrib", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["esa_contrib_reported"], - "subtracts": null, - "hidden_input": false - }, - "incapacity_benefit": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "incapacity_benefit", - "label": "Incapacity Benefit", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.incapacity_benefit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["incapacity_benefit_reported"], - "subtracts": null, - "hidden_input": false - }, - "ssmg": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ssmg", - "label": "Sure Start Maternity Grant", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.ssmg", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "attendance_allowance": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "attendance_allowance", - "label": "Attendance Allowance", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.attendance_allowance", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "working_tax_credit_reported": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "working_tax_credit_reported", - "label": "Working Tax Credit", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.working_tax_credit_reported", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "iidb": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "iidb", - "label": "Industrial Injuries Disablement Benefit", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.iidb", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["iidb_reported"], - "subtracts": null, - "hidden_input": false - }, - "LHA_eligible": { - "documentation": "Whether benefit unit is eligible for Local Housing Allowance", - "entity": "benunit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "LHA_eligible", - "label": "Eligibility for Local Housing Allowance", - "category": null, - "unit": null, - "moduleName": "gov.dwp.LHA_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "jsa_contrib_reported": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "jsa_contrib_reported", - "label": "Job Seeker's Allowance (contribution-based) (reported)", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.jsa_contrib_reported", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "WTC_basic_element": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "WTC_basic_element", - "label": "Working Tax Credit basic element", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.WTC_basic_element", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "maternity_allowance_reported": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "maternity_allowance_reported", - "label": "Maternity allowance", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.maternity_allowance_reported", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "CTC_severely_disabled_child_element": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "CTC_severely_disabled_child_element", - "label": "CTC entitlement from severely disabled child elements", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.CTC_severely_disabled_child_element", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "healthy_start_vouchers": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "healthy_start_vouchers", - "label": "healthy start vouchers", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.healthy_start_vouchers", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "carers_allowance_reported": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "carers_allowance_reported", - "label": "Carer's Allowance (reported)", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.carers_allowance_reported", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_CTC_child_limit_exempt": { - "documentation": "Exemption from Child Tax Credit limit on number of children based on birth year", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_CTC_child_limit_exempt", - "label": "Exemption from Child Tax Credit child limit", - "category": null, - "unit": null, - "moduleName": "gov.dwp.is_CTC_child_limit_exempt", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "child_ema": { - "documentation": "Educational Maintenance Allowance for children", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "child_ema", - "label": "Child EMA", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.child_ema", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "afcs": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "afcs", - "label": "Armed Forces Compensation Scheme", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.afcs", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["afcs_reported"], - "subtracts": null, - "hidden_input": false - }, - "child_tax_credit_reported": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "child_tax_credit_reported", - "label": "Working Tax Credit", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.child_tax_credit_reported", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "baseline_wtc_entitlement": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "baseline_wtc_entitlement", - "label": "Baseline Working Tax Credit", - "category": null, - "unit": null, - "moduleName": "gov.dwp.baseline_wtc_entitlement", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "WTC_worker_element": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "WTC_worker_element", - "label": "Working Tax Credit worker element", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.WTC_worker_element", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "CTC_disabled_child_element": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "CTC_disabled_child_element", - "label": "CTC entitlement from disabled child elements", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.CTC_disabled_child_element", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "WTC_severely_disabled_element": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "WTC_severely_disabled_element", - "label": "Working Tax Credit severely disabled element", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.WTC_severely_disabled_element", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "student_payments": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "student_payments", - "label": "Student payments", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.student_payments", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["adult_ema", "child_ema", "access_fund", "education_grants"], - "subtracts": null, - "hidden_input": false - }, - "jsa": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "jsa", - "label": "Amount of Jobseeker's Allowance for this family", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.jsa", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["jsa_income", "jsa_contrib"], - "subtracts": null, - "hidden_input": false - }, - "child_tax_credit_pre_minimum": { - "documentation": "Child Tax Credit amount before the minimum tax credit is applied", - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "child_tax_credit_pre_minimum", - "label": "Child Tax Credit pre-minimum", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.child_tax_credit_pre_minimum", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "income_support_entitlement": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "income_support_entitlement", - "label": "IS entitlement", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.income_support_entitlement", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ctc_child_limit_affected": { - "documentation": null, - "entity": "benunit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ctc_child_limit_affected", - "label": "affected by the CTC child limit", - "category": null, - "unit": null, - "moduleName": "gov.dwp.ctc_child_limit_affected", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "benefit_cap": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "benefit_cap", - "label": "Benefit cap for the family", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.benefit_cap", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "aa_category": { - "documentation": null, - "entity": "person", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "aa_category", - "label": "Attendance Allowance category", - "category": null, - "unit": null, - "moduleName": "gov.dwp.aa_category", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "NONE", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "LOWER", - "label": "Lower" - }, - { - "value": "HIGHER", - "label": "Higher" - }, - { - "value": "NONE", - "label": "None" - } - ] - }, - "child_tax_credit": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "child_tax_credit", - "label": "Child Tax Credit", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.child_tax_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ctc_entitlement"], - "subtracts": null, - "hidden_input": false - }, - "esa_contrib_reported": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "esa_contrib_reported", - "label": "Employment and Support Allowance (contribution-based) (reported)", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.esa_contrib_reported", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "benefit_cap_reduction": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "benefit_cap_reduction", - "label": "benefit cap reduction", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.benefit_cap_reduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "access_fund": { - "documentation": "Access Fund for educational assistance", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "access_fund", - "label": "Access Fund", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.access_fund", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "CTC_child_element": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "CTC_child_element", - "label": "Child Tax Credit child element", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.CTC_child_element", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "iidb_reported": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "iidb_reported", - "label": "Industrial Injuries Disablement Benefit (reported)", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.iidb_reported", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "armed_forces_independence_payment": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "armed_forces_independence_payment", - "label": "Armed Forces Independence Payment", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.afip", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "baseline_income_support_entitlement": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "baseline_income_support_entitlement", - "label": "Income Support eligible (baseline)", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.baseline_income_support_entitlement", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "state_pension_age": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "state_pension_age", - "label": "State Pension age for this person", - "category": null, - "unit": "year", - "moduleName": "gov.dwp.state_pension_age", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "WTC_lone_parent_element": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "WTC_lone_parent_element", - "label": "Working Tax Credit lone parent element", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.WTC_lone_parent_element", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "esa_income_reported": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "esa_income_reported", - "label": "ESA (income-based) (reported amount)", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.esa_income_reported", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "jsa_contrib": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "jsa_contrib", - "label": "JSA (contribution-based)", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.jsa_contrib", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["jsa_contrib_reported"], - "subtracts": null, - "hidden_input": false - }, - "student_loans": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "student_loans", - "label": "Student loans", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.student_loans", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "state_pension_type": { - "documentation": null, - "entity": "person", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "state_pension_type", - "label": "State Pension type", - "category": null, - "unit": null, - "moduleName": "gov.dwp.state_pension_type", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "BASIC", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "BASIC", - "label": "basic" - }, - { - "value": "NEW", - "label": "new" - }, - { - "value": "NONE", - "label": "none" - } - ] - }, - "working_tax_credit_pre_minimum": { - "documentation": "Working Tax Credit amount before the minimum tax credit is applied", - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "working_tax_credit_pre_minimum", - "label": "Working Tax Credit pre-minimum", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.working_tax_credit_pre_minimum", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "jsa_income_reported": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "jsa_income_reported", - "label": "JSA (income-based) (reported amount)", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.jsa_income_reported", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "universal_credit_reported": { - "documentation": "Reported amount of Universal Credit", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "universal_credit_reported", - "label": "Universal Credit (reported)", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.universal_credit.universal_credit_reported", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_uc_entitled_baseline": { - "documentation": null, - "entity": "benunit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_uc_entitled_baseline", - "label": "meets the means test for Universal Credit under baseline law", - "category": null, - "unit": null, - "moduleName": "gov.dwp.universal_credit.is_uc_entitled_baseline", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_uc_entitled": { - "documentation": null, - "entity": "benunit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_uc_entitled", - "label": "meets the means test for Universal Credit", - "category": null, - "unit": null, - "moduleName": "gov.dwp.universal_credit.is_uc_entitled", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "would_claim_uc": { - "documentation": "Whether this family would claim the Universal Credit if eligible", - "entity": "benunit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "would_claim_uc", - "label": "Would claim Universal Credit", - "category": null, - "unit": null, - "moduleName": "gov.dwp.universal_credit.would_claim_uc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "uc_maximum_amount": { - "documentation": "This is your total entitlement, before reduction due to income.", - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "uc_maximum_amount", - "label": "maximum Universal Credit amount", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.universal_credit.uc_maximum_amount", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "uc_standard_allowance", - "uc_child_element", - "uc_disability_elements", - "uc_carer_element", - "uc_housing_costs_element", - "uc_childcare_element" - ], - "subtracts": null, - "hidden_input": false - }, - "universal_credit": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "universal_credit", - "label": "Universal Credit", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.universal_credit.universal_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "universal_credit_pre_benefit_cap": { - "documentation": "Total entitlement to Universal Credit", - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "universal_credit_pre_benefit_cap", - "label": "Universal Credit before benefit cap", - "category": "benefit", - "unit": "currency-GBP", - "moduleName": "gov.dwp.universal_credit.universal_credit_pre_benefit_cap", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["uc_maximum_amount"], - "subtracts": ["uc_income_reduction"], - "hidden_input": false - }, - "is_uc_eligible": { - "documentation": "Whether this family is eligible for Universal Credit", - "entity": "benunit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_uc_eligible", - "label": "Eligible for the Universal Credit", - "category": null, - "unit": null, - "moduleName": "gov.dwp.universal_credit.is_uc_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "uc_standard_allowance_claimant_type": { - "documentation": "The category of the UC claimant, assuming their eligibilty to UC", - "entity": "benunit", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "uc_standard_allowance_claimant_type", - "label": "Universal Credit claimant type", - "category": null, - "unit": null, - "moduleName": "gov.dwp.universal_credit.standard_allowance.uc_standard_allowance_claimant_type", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "SINGLE_YOUNG", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "SINGLE_YOUNG", - "label": "Single, under 25" - }, - { - "value": "SINGLE_OLD", - "label": "Single, 25 or over" - }, - { - "value": "COUPLE_YOUNG", - "label": "Couple, both under 25" - }, - { - "value": "COUPLE_OLD", - "label": "Couple, one over 25" - } - ] - }, - "uc_standard_allowance": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "uc_standard_allowance", - "label": "Universal Credit standard allowance", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.universal_credit.standard_allowance.uc_standard_allowance", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "uc_individual_child_element": { - "documentation": "For this child, given Universal Credit eligibility", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "uc_individual_child_element", - "label": "Universal Credit child element", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.universal_credit.child_element.uc_individual_child_element", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "uc_is_child_born_before_child_limit": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "uc_is_child_born_before_child_limit", - "label": "Born before Universal Credit child limit", - "category": null, - "unit": null, - "moduleName": "gov.dwp.universal_credit.child_element.uc_is_child_born_before_child_limit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "uc_child_element": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "uc_child_element", - "label": "Universal Credit child element", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.universal_credit.child_element.uc_child_element", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["uc_individual_child_element"], - "subtracts": null, - "hidden_input": false - }, - "uc_is_child_limit_affected": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "uc_is_child_limit_affected", - "label": "affected by the UC child limit", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.universal_credit.child_element.uc_is_child_limit_affected", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "uc_individual_disabled_child_element": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "uc_individual_disabled_child_element", - "label": "Universal Credit disabled child element", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.universal_credit.child_element.disability.uc_individual_disabled_child_element", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "uc_individual_severely_disabled_child_element": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "uc_individual_severely_disabled_child_element", - "label": "Universal Credit severely disabled child element", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.universal_credit.child_element.disability.severe_disability.uc_individual_severely_disabled_child_element", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "uc_is_in_startup_period": { - "documentation": "Whether this person is in a 'start-up' period for Universal Credit", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "uc_is_in_startup_period", - "label": "In a start-up period for the Universal Credit", - "category": null, - "unit": null, - "moduleName": "gov.dwp.universal_credit.income.uc_is_in_startup_period", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "uc_income_reduction": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "uc_income_reduction", - "label": "reduction from income for Universal Credit", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.universal_credit.income.uc_income_reduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "uc_unearned_income": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "uc_unearned_income", - "label": "Universal Credit unearned income", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.universal_credit.income.uc_unearned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.dwp.universal_credit.means_test.income_definitions.unearned", - "subtracts": null, - "hidden_input": false - }, - "uc_earned_income": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "uc_earned_income", - "label": "Universal Credit earned income (after disregards and tax)", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.universal_credit.income.uc_earned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "uc_mif_applies": { - "documentation": "Whether the Minimum Income Floor should be used to determine UC entitlement", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "uc_mif_applies", - "label": "Universal Credit minimum income floor applies", - "category": null, - "unit": null, - "moduleName": "gov.dwp.universal_credit.income.income_floor.uc_mif_applies", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "uc_minimum_income_floor": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "uc_minimum_income_floor", - "label": "Universal Credit minimum income floor", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.universal_credit.income.income_floor.uc_minimum_income_floor", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "uc_mif_capped_earned_income": { - "documentation": "Gross earned income for UC, with MIF applied where applicable", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "uc_mif_capped_earned_income", - "label": "Universal Credit gross earned income (incl. MIF)", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.universal_credit.income.income_floor.uc_mif_capped_earned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "uc_childcare_element_eligible_children": { - "documentation": "Number of eligible children eligible for the childcare element of the Universal Credit", - "entity": "benunit", - "valueType": "int", - "definitionPeriod": "year", - "name": "uc_childcare_element_eligible_children", - "label": "Universal Credit childcare element eligible children", - "category": null, - "unit": null, - "moduleName": "gov.dwp.universal_credit.childcare_element.uc_eligible_children", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "uc_childcare_work_condition": { - "documentation": null, - "entity": "benunit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "uc_childcare_work_condition", - "label": "Meets Universal Credit childcare work condition", - "category": null, - "unit": null, - "moduleName": "gov.dwp.universal_credit.childcare_element.uc_childcare_work_condition", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "uc_childcare_element": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "uc_childcare_element", - "label": "Universal Credit childcare element", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.universal_credit.childcare_element.uc_childcare_element", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "uc_maximum_childcare_element_amount": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "uc_maximum_childcare_element_amount", - "label": "Maximum Universal Credit childcare element", - "category": null, - "unit": null, - "moduleName": "gov.dwp.universal_credit.childcare_element.uc_maximum_childcare_element_amount", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "uc_disability_elements": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "uc_disability_elements", - "label": "Universal Credit disability elements", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.universal_credit.disability_element.uc_disability_elements", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "uc_individual_disabled_child_element", - "uc_individual_severely_disabled_child_element", - "uc_LCWRA_element" - ], - "subtracts": null, - "hidden_input": false - }, - "uc_LCWRA_element": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "uc_LCWRA_element", - "label": "Universal Credit limited capability for work-related-activity element", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.universal_credit.disability_element.limited_work_ability.uc_LCWRA_element", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "uc_limited_capability_for_WRA": { - "documentation": "Whether this person has been assessed by the DWP as having limited capability for work or work-related activity", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "uc_limited_capability_for_WRA", - "label": "Assessed to have limited capability for work-related activity", - "category": null, - "unit": null, - "moduleName": "gov.dwp.universal_credit.disability_element.limited_work_ability.uc_limited_capability_for_WRA", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "uc_carer_element": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "uc_carer_element", - "label": "Universal Credit carer element", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.universal_credit.carer_element.uc_carer_element", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "uc_housing_costs_element": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "uc_housing_costs_element", - "label": "Universal Credit housing costs element", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.universal_credit.housing_costs_element.uc_housing_costs_element", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "uc_non_dep_deduction_exempt": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "uc_non_dep_deduction_exempt", - "label": "Exempt from the Universal Credit non-dependent housing costs contributions deduction", - "category": null, - "unit": null, - "moduleName": "gov.dwp.universal_credit.housing_costs_element.non_dep_deduction.uc_non_dep_deduction_exempt", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "uc_individual_non_dep_deduction": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "uc_individual_non_dep_deduction", - "label": "Universal Credit non-dependent deduction (individual)", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.universal_credit.housing_costs_element.non_dep_deduction.uc_individual_non_dep_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "uc_non_dep_deductions": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "uc_non_dep_deductions", - "label": "Universal Credit non-dependent deductions", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.universal_credit.housing_costs_element.non_dep_deduction.uc_non_dep_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "uc_individual_non_dep_deduction_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "uc_individual_non_dep_deduction_eligible", - "label": "Eligible person for the Universal Credit non-dependent deduction", - "category": null, - "unit": null, - "moduleName": "gov.dwp.universal_credit.housing_costs_element.non_dep_deduction.uc_individual_non_dep_deduction_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "uc_work_allowance": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "uc_work_allowance", - "label": "Universal Credit work allowance", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.universal_credit.work_allowance.uc_work_allowance", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_uc_work_allowance_eligible": { - "documentation": null, - "entity": "benunit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_uc_work_allowance_eligible", - "label": "Family receives a Universal Credit Work Allowance", - "category": null, - "unit": null, - "moduleName": "gov.dwp.universal_credit.work_allowance.is_uc_work_allowance_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dla_m_reported": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "dla_m_reported", - "label": "DLA (mobility) (reported)", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.dla.dla_m_reported", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dla_sc_middle_plus": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "dla_sc_middle_plus", - "label": "Receives at least middle-rate DLA (self-care)", - "category": null, - "unit": null, - "moduleName": "gov.dwp.dla.dla_sc_middle_plus", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dla": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "dla", - "label": "Disability Living Allowance", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.dla.dla", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["dla_sc", "dla_m"], - "subtracts": null, - "hidden_input": false - }, - "dla_sc": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "dla_sc", - "label": "DLA (self-care)", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.dla.dla_sc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "receives_highest_dla_sc": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "receives_highest_dla_sc", - "label": "Receives the highest DLA (self-care) category", - "category": null, - "unit": null, - "moduleName": "gov.dwp.dla.receives_highest_dla_sc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dla_m": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "dla_m", - "label": "DLA (mobility)", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.dla.dla_m", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dla_sc_reported": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "dla_sc_reported", - "label": "DLA (self-care) (reported)", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.dla.dla_sc_reported", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pension_credit": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "pension_credit", - "label": "Pension Credit", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.pension_credit.pension_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "baseline_pension_credit_entitlement": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "baseline_pension_credit_entitlement", - "label": "PC entitlement (baseline)", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.pension_credit.baseline_pension_credit_entitlement", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pension_credit_entitlement": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "pension_credit_entitlement", - "label": "PC entitlement", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.pension_credit.pension_credit_entitlement", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["guarantee_credit", "savings_credit"], - "subtracts": null, - "hidden_input": false - }, - "is_pension_credit_eligible": { - "documentation": null, - "entity": "benunit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_pension_credit_eligible", - "label": "Eligible for Pension Credit", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.pension_credit.is_pension_credit_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pension_credit_earnings": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "pension_credit_earnings", - "label": "earnings for Pension Credit", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.pension_credit.pension_credit_earnings", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.dwp.pension_credit.guarantee_credit.earnings_sources", - "subtracts": null, - "hidden_input": false - }, - "pension_credit_income": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "pension_credit_income", - "label": "Income for Pension Credit", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.pension_credit.pension_credit_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "would_claim_pc": { - "documentation": null, - "entity": "benunit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "would_claim_pc", - "label": "Would claim Pension Credit", - "category": null, - "unit": null, - "moduleName": "gov.dwp.pension_credit.would_claim", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pension_credit_reported": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "pension_credit_reported", - "label": "Pension Credit (reported)", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.pension_credit.pension_credit_reported", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "savings_credit": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "savings_credit", - "label": "Savings Credit", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.pension_credit.savings_credit.savings_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "savings_credit_income": { - "documentation": "Savings Credit (Pension Credit) excludes certain income sources from the calculation of the amount.", - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "savings_credit_income", - "label": "Income for Savings Credit", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.pension_credit.savings_credit.savings_credit_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "meets_savings_credit_age_requirement": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "meets_savings_credit_age_requirement", - "label": "whether the person reached State Pension Age before the Savings Credit cutoff year", - "category": null, - "unit": null, - "moduleName": "gov.dwp.pension_credit.savings_credit.meets_savings_credit_age_requirement", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_savings_credit_eligible": { - "documentation": null, - "entity": "benunit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_savings_credit_eligible", - "label": "Eligible for Savings Credit", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.pension_credit.savings_credit.is_savings_credit_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_guarantee_credit_eligible": { - "documentation": null, - "entity": "benunit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_guarantee_credit_eligible", - "label": "Guarantee Credit eligible", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.pension_credit.guarantee_credit.is_guarantee_credit_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "guarantee_credit": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "guarantee_credit", - "label": "Guarantee Credit", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.pension_credit.guarantee_credit.guarantee_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "minimum_guarantee": { - "documentation": "The Minimum Guarantee informs the Pension Credit Guarantee Credit amount. Pensioners usually have their annual income increased to this amount by Pension Credit.", - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "minimum_guarantee", - "label": "Minimum Guarantee", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.pension_credit.guarantee_credit.minimum_guarantee.minimum_guarantee", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["standard_minimum_guarantee", "additional_minimum_guarantee"], - "subtracts": null, - "hidden_input": false - }, - "standard_minimum_guarantee": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "standard_minimum_guarantee", - "label": "Standard Minimum Guarantee", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.pension_credit.guarantee_credit.minimum_guarantee.standard_minimum_guarantee", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "carer_minimum_guarantee_addition": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "carer_minimum_guarantee_addition", - "label": "Carer-related increase", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.pension_credit.guarantee_credit.minimum_guarantee.additional.carer_minimum_guarantee_addition", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "severe_disability_minimum_guarantee_addition": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "severe_disability_minimum_guarantee_addition", - "label": "Severe disability-related increase", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.pension_credit.guarantee_credit.minimum_guarantee.additional.severe_disability_minimum_guarantee_addition", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "child_minimum_guarantee_addition": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "child_minimum_guarantee_addition", - "label": "Child-related addition", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.pension_credit.guarantee_credit.minimum_guarantee.additional.child_minimum_guarantee_addition", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "additional_minimum_guarantee": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "additional_minimum_guarantee", - "label": "Additional Minimum Guarantee", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.pension_credit.guarantee_credit.minimum_guarantee.additional.additional_minimum_guarantee", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.dwp.pension_credit.guarantee_credit.additions", - "subtracts": null, - "hidden_input": false - }, - "receives_enhanced_pip_dl": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "receives_enhanced_pip_dl", - "label": "Receives enhanced PIP (daily living)", - "category": null, - "unit": null, - "moduleName": "gov.dwp.pip.receives_enhanced_pip_dl", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pip_m_reported": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "pip_m_reported", - "label": "PIP (mobility) (reported)", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.pip.pip_m_reported", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pip_dl": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "pip_dl", - "label": "PIP (daily living)", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.pip.pip_dl", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pip_dl_reported": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "pip_dl_reported", - "label": "PIP (daily living) (reported)", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.pip.pip_dl_reported", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pip_m": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "pip_m", - "label": "PIP (mobility)", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.pip.pip_m", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pip": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "pip", - "label": "Personal Independence Payment", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.pip.pip", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["pip_dl", "pip_m"], - "subtracts": null, - "hidden_input": false - }, - "housing_benefit": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "housing_benefit", - "label": "Housing Benefit", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.housing_benefit.housing_benefit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "housing_benefit_eligible": { - "documentation": null, - "entity": "benunit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "housing_benefit_eligible", - "label": "eligible for the Housing Benefit", - "category": null, - "unit": null, - "moduleName": "gov.dwp.housing_benefit.housing_benefit_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "housing_benefit_applicable_amount": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "housing_benefit_applicable_amount", - "label": "applicable Housing Benefit amount", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.housing_benefit.housing_benefit_applicable_amount", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "housing_benefit_reported": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "housing_benefit_reported", - "label": "reported Housing Benefit amount", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.housing_benefit.housing_benefit_reported", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "would_claim_housing_benefit": { - "documentation": "Whether this family would claim Housing Benefit if eligible", - "entity": "benunit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "would_claim_housing_benefit", - "label": "Would claim the Housing Benefit", - "category": null, - "unit": null, - "moduleName": "gov.dwp.housing_benefit.would_claim_housing_benefit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "housing_benefit_pre_benefit_cap": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "housing_benefit_pre_benefit_cap", - "label": "Housing Benefit pre-benefit cap", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.housing_benefit.housing_benefit_pre_benefit_cap", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "housing_benefit_applicable_income_childcare_element": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "housing_benefit_applicable_income_childcare_element", - "label": "Housing Benefit applicable income childcare element", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.housing_benefit.applicable_income.housing_benefit_applicable_income_childcare_element", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "housing_benefit_applicable_income_disregard": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "housing_benefit_applicable_income_disregard", - "label": "Housing Benefit applicable income disregards", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.housing_benefit.applicable_income.housing_benefit_applicable_income_disregard", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "housing_benefit_applicable_income": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "housing_benefit_applicable_income", - "label": "relevant income for Housing Benefit means test", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.housing_benefit.applicable_income.housing_benefit_applicable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "household_benefits_individual_non_dep_deduction": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "household_benefits_individual_non_dep_deduction", - "label": "Housing Benefit individual non-dependent deduction", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.housing_benefit.non_dep_deduction.household_benefits_individual_non_dep_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "housing_benefit_non_dep_deductions": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "housing_benefit_non_dep_deductions", - "label": "non-dependent deductions", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.housing_benefit.non_dep_deduction.housing_benefit_non_dep_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "housing_benefit_individual_non_dep_deduction_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "housing_benefit_individual_non_dep_deduction_eligible", - "label": "eligible person for the Housing Benefit non-dependent deduction", - "category": null, - "unit": null, - "moduleName": "gov.dwp.housing_benefit.non_dep_deduction.housing_benefit_individual_non_dep_deduction_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "housing_benefit_baseline_entitlement": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "housing_benefit_baseline_entitlement", - "label": "basleine Housing Benefit entitlement", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.housing_benefit.entitlement.housing_benefit_baseline_entitlement", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "housing_benefit_entitlement": { - "documentation": null, - "entity": "benunit", - "valueType": "float", - "definitionPeriod": "year", - "name": "housing_benefit_entitlement", - "label": "Housing Benefit entitlement", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.dwp.housing_benefit.entitlement.housing_benefit_entitlement", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "cost_of_living_support_payment": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "cost_of_living_support_payment", - "label": "Cost-of-living support payment", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.treasury.cost_of_living_support.cost_of_living_support_payment", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "monthly_epg_subsidy": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "month", - "name": "monthly_epg_subsidy", - "label": "Monthly EPG subsidy", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.treasury.price_cap_subsidy.monthly_epg_subsidy", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "epg_subsidy": { - "documentation": "Reduction in energy bills due to offsetting the price cap and compensating energy firms.", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "epg_subsidy", - "label": "Energy price guarantee subsidy", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.treasury.price_cap_subsidy.epg_subsidy", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "monthly_domestic_energy_consumption": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "month", - "name": "monthly_domestic_energy_consumption", - "label": "Monthly domestic energy consumption", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.treasury.price_cap_subsidy.monthly_domestic_energy_consumption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "monthly_epg_consumption_level": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "month", - "name": "monthly_epg_consumption_level", - "label": "Monthly EPG subsidy level", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.treasury.price_cap_subsidy.monthly_epg_consumption_level", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "energy_bills_rebate": { - "documentation": "Amount paid under the Energy Bills Rebate scheme.", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "energy_bills_rebate", - "label": "Energy Bills Rebate", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.treasury.energy_bills_rebate.energy_bills_rebate", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ebr_council_tax_rebate", "ebr_energy_bills_credit"], - "subtracts": null, - "hidden_input": false - }, - "ebr_energy_bills_credit": { - "documentation": "Credit on energy bills under the Energy Bills Rebate scheme. Modeled as a flat transfer.", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "ebr_energy_bills_credit", - "label": "Energy bills credit (EBR)", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.treasury.energy_bills_rebate.energy_bills_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ebr_council_tax_rebate": { - "documentation": "Council Tax discount under the Energy Bills Rebate.", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "ebr_council_tax_rebate", - "label": "Council Tax Rebate (EBR)", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.treasury.energy_bills_rebate.council_tax_rebate", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pawhp": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "pawhp", - "label": "Pension Age Winter Heating Payment", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.social_security_scotland.pawhp", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "relative_wage_change": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "relative_wage_change", - "label": "relative wage change", - "category": null, - "unit": "/1", - "moduleName": "gov.simulation.labor_supply_response.relative_wage_change", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "relative_income_change": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "relative_income_change", - "label": "relative income change", - "category": null, - "unit": "/1", - "moduleName": "gov.simulation.labor_supply_response.relative_income_change", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "substitution_elasticity_lsr": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "substitution_elasticity_lsr", - "label": "substitution elasticity of labor supply response", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.simulation.labor_supply_response.substitution_elasticity_lsr", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "employment_income_behavioral_response": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "employment_income_behavioral_response", - "label": "income-related labor supply change", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.simulation.labor_supply_response.employment_income_behavioral_response", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "income_elasticity_lsr": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "income_elasticity_lsr", - "label": "income elasticity of labor supply response", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.simulation.labor_supply_response.income_elasticity_lsr", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ltt_on_rent": { - "documentation": "Land Transaction Tax on property rental agreements", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "ltt_on_rent", - "label": "LTT on property rental", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.wra.ltt_on_rent", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ltt_liable": { - "documentation": "Whether the household is liable to pay the Wales Land Transaction Tax", - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ltt_liable", - "label": "Liable for Land Transaction Tax", - "category": null, - "unit": null, - "moduleName": "gov.wra.ltt_liable", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ltt_on_non_residential_property_rent": { - "documentation": "Land Transaction Tax charge on non-residential property rental agreements", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "ltt_on_non_residential_property_rent", - "label": "LTT on non-residential property rent", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.wra.ltt_on_non_residential_property_rent", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ltt_on_transactions": { - "documentation": "Land Transaction Tax on property transfers", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "ltt_on_transactions", - "label": "LTT on property transactions", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.wra.ltt_on_transactions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "expected_ltt": { - "documentation": "Expected value of Land Transaction Tax", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "expected_ltt", - "label": "Land Transaction Tax (expected)", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.wra.expected_ltt", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ltt_on_non_residential_property_transactions": { - "documentation": "Land Transaction Tax charge on non-residential property transactions", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "ltt_on_non_residential_property_transactions", - "label": "LTT on non-residential property transactions", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.wra.ltt_on_non_residential_property_transactions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ltt_on_residential_property_rent": { - "documentation": "Land Transaction Tax charge on residential property rental agreements", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "ltt_on_residential_property_rent", - "label": "LTT on residential property rent", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.wra.ltt_on_residential_property_rent", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "land_transaction_tax": { - "documentation": "Total tax liability for Land Transaction Tax", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "land_transaction_tax", - "label": "Land Transaction Tax", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.wra.land_transaction_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ltt_on_residential_property_transactions": { - "documentation": "Land Transaction Tax charge on residential property transactions", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "ltt_on_residential_property_transactions", - "label": "LTT on residential property", - "category": null, - "unit": "currency-GBP", - "moduleName": "gov.wra.ltt_on_residential_property_transactions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - } - }, - "parameters": { - "gov": { - "type": "parameterNode", - "parameter": "gov", - "description": null, - "label": "Government", - "economy": true, - "household": true - }, - "gov.contrib": { - "type": "parameterNode", - "parameter": "gov.contrib", - "description": null, - "label": "Contributed", - "economy": true, - "household": true - }, - "gov.contrib.policyengine": { - "type": "parameterNode", - "parameter": "gov.contrib.policyengine", - "description": null, - "label": "PolicyEngine", - "economy": true, - "household": true - }, - "gov.contrib.policyengine.disable_simulated_benefits": { - "type": "parameter", - "parameter": "gov.contrib.policyengine.disable_simulated_benefits", - "description": "Disable simulated benefits.", - "label": "disable simulated benefits", - "unit": null, - "period": null, - "values": { - "2000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.policyengine.economy": { - "type": "parameterNode", - "parameter": "gov.contrib.policyengine.economy", - "description": null, - "label": "economy", - "economy": true, - "household": true - }, - "gov.contrib.policyengine.economy.transport": { - "type": "parameter", - "parameter": "gov.contrib.policyengine.economy.transport", - "description": "Raise transport expenses by this percentage.", - "label": "Change to transport spending", - "unit": "/1", - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.policyengine.economy.gdp_per_capita": { - "type": "parameter", - "parameter": "gov.contrib.policyengine.economy.gdp_per_capita", - "description": "Raise all market incomes by this percentage.", - "label": "Change to GDP per capita", - "unit": "/1", - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.policyengine.economy.energy_bills": { - "type": "parameter", - "parameter": "gov.contrib.policyengine.economy.energy_bills", - "description": "Raise energy spending by this percentage.", - "label": "Change to energy spending", - "unit": "/1", - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.policyengine.economy.rent": { - "type": "parameter", - "parameter": "gov.contrib.policyengine.economy.rent", - "description": "Raise rental expenses by this percentage.", - "label": "Change to rents", - "unit": "/1", - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.policyengine.economy.interest_rates": { - "type": "parameter", - "parameter": "gov.contrib.policyengine.economy.interest_rates", - "description": "Raise the interest rate on mortgages by this percentage.", - "label": "Change to interest rates", - "unit": "/1", - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.policyengine.employer_ni": { - "type": "parameterNode", - "parameter": "gov.contrib.policyengine.employer_ni", - "description": null, - "label": "Employer NI", - "economy": true, - "household": true - }, - "gov.contrib.policyengine.employer_ni.capital_incidence": { - "type": "parameter", - "parameter": "gov.contrib.policyengine.employer_ni.capital_incidence", - "description": "Fraction of (remaining after employee incidence) employer NI that is borne by capital.", - "label": "Employer NI capital incidence", - "unit": "/1", - "period": null, - "values": { - "2010-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.contrib.policyengine.employer_ni.consumer_incidence": { - "type": "parameter", - "parameter": "gov.contrib.policyengine.employer_ni.consumer_incidence", - "description": "Fraction of (remaining after employee incidence) employer NI that is borne by consumers.", - "label": "Employer NI consumer incidence", - "unit": "/1", - "period": null, - "values": { - "2010-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.contrib.policyengine.employer_ni.exempt_employer_pension_contributions": { - "type": "parameter", - "parameter": "gov.contrib.policyengine.employer_ni.exempt_employer_pension_contributions", - "description": "Whether to exempt employer pension contributions from employer NI.", - "label": "exempt employer pension contributions from employers' NI", - "unit": "bool", - "period": null, - "values": { - "2010-01-01": true - }, - "economy": true, - "household": true - }, - "gov.contrib.policyengine.employer_ni.employee_incidence": { - "type": "parameter", - "parameter": "gov.contrib.policyengine.employer_ni.employee_incidence", - "description": "Fraction of employer NI that is borne by employees.", - "label": "Employer NI employee incidence", - "unit": "/1", - "period": null, - "values": { - "2010-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.contrib.policyengine.budget": { - "type": "parameterNode", - "parameter": "gov.contrib.policyengine.budget", - "description": null, - "label": "Budget changes", - "economy": true, - "household": true - }, - "gov.contrib.policyengine.budget.education": { - "type": "parameter", - "parameter": "gov.contrib.policyengine.budget.education", - "description": "Increase in education, distributed by income decile as estimated by the ONS Effects of Taxes and Benefits dataset.", - "label": "education spending change (£bn)", - "unit": null, - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.policyengine.budget.high_income_incident_tax_change": { - "type": "parameter", - "parameter": "gov.contrib.policyengine.budget.high_income_incident_tax_change", - "description": "Tax rise for high income earners (functioning proportional to income over £100,000).", - "label": "high income incident tax change (£bn)", - "unit": null, - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.policyengine.budget.nhs": { - "type": "parameter", - "parameter": "gov.contrib.policyengine.budget.nhs", - "description": "Increase in NHS spending, distributed by income decile as estimated by the ONS Effects of Taxes and Benefits dataset.", - "label": "NHS spending change (£bn)", - "unit": null, - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.policyengine.budget.corporate_incident_tax_change": { - "type": "parameter", - "parameter": "gov.contrib.policyengine.budget.corporate_incident_tax_change", - "description": "Tax increase incident on owners of capital.", - "label": "tax on capital (£bn)", - "unit": null, - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.policyengine.budget.other_public_spending": { - "type": "parameter", - "parameter": "gov.contrib.policyengine.budget.other_public_spending", - "description": "Increase in non-NHS, non-education public spending, distributed by income decile as estimated by the ONS Effects of Taxes and Benefits dataset.", - "label": "general public spending change (£bn)", - "unit": null, - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.policyengine.budget.consumer_incident_tax_change": { - "type": "parameter", - "parameter": "gov.contrib.policyengine.budget.consumer_incident_tax_change", - "description": "Tax increase incident on consumers.", - "label": "tax on consumers (£bn)", - "unit": null, - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.abolish_state_pension": { - "type": "parameter", - "parameter": "gov.contrib.abolish_state_pension", - "description": "Remove all State Pension payments.", - "label": "Abolish State Pension", - "unit": "bool", - "period": null, - "values": { - "2000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.cps": { - "type": "parameterNode", - "parameter": "gov.contrib.cps", - "description": null, - "label": "CPS", - "economy": true, - "household": true - }, - "gov.contrib.cps.marriage_tax_reforms": { - "type": "parameterNode", - "parameter": "gov.contrib.cps.marriage_tax_reforms", - "description": null, - "label": "Marriage tax reforms", - "economy": true, - "household": true - }, - "gov.contrib.cps.marriage_tax_reforms.marriage_neutral_it": { - "type": "parameterNode", - "parameter": "gov.contrib.cps.marriage_tax_reforms.marriage_neutral_it", - "description": null, - "label": "Marriage-neutral Income Tax", - "economy": true, - "household": true - }, - "gov.contrib.cps.marriage_tax_reforms.marriage_neutral_it.max_child_age": { - "type": "parameter", - "parameter": "gov.contrib.cps.marriage_tax_reforms.marriage_neutral_it.max_child_age", - "description": "Only marriage-neutralise Income Tax for couples with a child under this age (zero does not limit by child age).", - "label": "Expanded MA child age condition", - "unit": "year", - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.cps.marriage_tax_reforms.marriage_neutral_it.neutralise_income_tax": { - "type": "parameter", - "parameter": "gov.contrib.cps.marriage_tax_reforms.marriage_neutral_it.neutralise_income_tax", - "description": "Allow couples to split their taxable income equally for Income Tax.", - "label": "Marriage-neutral Income Tax", - "unit": "bool", - "period": null, - "values": { - "2000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.cps.marriage_tax_reforms.expanded_ma": { - "type": "parameterNode", - "parameter": "gov.contrib.cps.marriage_tax_reforms.expanded_ma", - "description": null, - "label": "Expanded Marriage Allowance", - "economy": true, - "household": true - }, - "gov.contrib.cps.marriage_tax_reforms.expanded_ma.max_child_age": { - "type": "parameter", - "parameter": "gov.contrib.cps.marriage_tax_reforms.expanded_ma.max_child_age", - "description": "Only expand the Marriage Allowance for couples with a child under this age (zero does not limit by child age).", - "label": "Expanded MA child age condition", - "unit": "year", - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.cps.marriage_tax_reforms.expanded_ma.remove_income_condition": { - "type": "parameter", - "parameter": "gov.contrib.cps.marriage_tax_reforms.expanded_ma.remove_income_condition", - "description": "Allow higher and additional rate taxpayers to claim the Marriage Allowance.", - "label": "Remove MA high-income restrictions", - "unit": "bool", - "period": null, - "values": { - "2000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.cps.marriage_tax_reforms.expanded_ma.ma_rate": { - "type": "parameter", - "parameter": "gov.contrib.cps.marriage_tax_reforms.expanded_ma.ma_rate", - "description": "Marriage Allowance maximum rate for eligible couples.", - "label": "Expanded Marriage Allowance rate", - "unit": "/1", - "period": null, - "values": { - "2000-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.contrib.labour": { - "type": "parameterNode", - "parameter": "gov.contrib.labour", - "description": null, - "label": "labour", - "economy": true, - "household": true - }, - "gov.contrib.labour.private_school_vat": { - "type": "parameter", - "parameter": "gov.contrib.labour.private_school_vat", - "description": "VAT rate applied to private schools.", - "label": "private school VAT rate", - "unit": "/1", - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.benefit_uprating": { - "type": "parameterNode", - "parameter": "gov.contrib.benefit_uprating", - "description": null, - "label": "Benefit uprating", - "economy": true, - "household": true - }, - "gov.contrib.benefit_uprating.all": { - "type": "parameter", - "parameter": "gov.contrib.benefit_uprating.all", - "description": "Increase all benefit values by this percentage.", - "label": "Benefit uprating", - "unit": "/1", - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.benefit_uprating.non_sp": { - "type": "parameter", - "parameter": "gov.contrib.benefit_uprating.non_sp", - "description": "Increase all non-State Pension benefits by this amount (this multiplies the end value, not the maximum amount).", - "label": "Non-State Pension benefit uprating", - "unit": "/1", - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.two_child_limit": { - "type": "parameterNode", - "parameter": "gov.contrib.two_child_limit", - "description": null, - "label": "two child limit", - "economy": true, - "household": true - }, - "gov.contrib.two_child_limit.age_exemption": { - "type": "parameterNode", - "parameter": "gov.contrib.two_child_limit.age_exemption", - "description": null, - "label": "age exemption", - "economy": true, - "household": true - }, - "gov.contrib.two_child_limit.age_exemption.universal_credit": { - "type": "parameter", - "parameter": "gov.contrib.two_child_limit.age_exemption.universal_credit", - "description": "Parents of children under this age are exempt from the two-child limit under the Universal Credit.", - "label": "Universal Credit two-child limit age-based exemption", - "unit": "year", - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.two_child_limit.age_exemption.child_tax_credit": { - "type": "parameter", - "parameter": "gov.contrib.two_child_limit.age_exemption.child_tax_credit", - "description": "Parents of children under this age are exempt from the two-child limit under the Child Tax Credit.", - "label": "Child Tax Credit two-child limit age-based exemption", - "unit": "year", - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.cec": { - "type": "parameterNode", - "parameter": "gov.contrib.cec", - "description": null, - "label": "Citizens' Economic Council", - "economy": true, - "household": true - }, - "gov.contrib.cec.state_pension_increase": { - "type": "parameter", - "parameter": "gov.contrib.cec.state_pension_increase", - "description": "Increase State Pension payments by this percentage.", - "label": "State Pension increase", - "unit": "/1", - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.cec.non_primary_residence_wealth_tax": { - "type": "parameterNode", - "parameter": "gov.contrib.cec.non_primary_residence_wealth_tax", - "description": "Annual tax on total wealth (includes all property and corporate wealth except primary residences).", - "label": "Wealth tax excluding primary residences" - }, - "gov.contrib.cec.non_primary_residence_wealth_tax[0]": { - "type": "parameterNode", - "parameter": "gov.contrib.cec.non_primary_residence_wealth_tax[0]", - "description": null, - "label": "bracket 1" - }, - "gov.contrib.cec.non_primary_residence_wealth_tax[0].rate": { - "type": "parameter", - "parameter": "gov.contrib.cec.non_primary_residence_wealth_tax[0].rate", - "description": "This is the marginal rate of tax on wealth above the threshold.", - "label": "Wealth tax rate on non-primary residence wealth", - "unit": "/1", - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.cec.non_primary_residence_wealth_tax[0].threshold": { - "type": "parameter", - "parameter": "gov.contrib.cec.non_primary_residence_wealth_tax[0].threshold", - "description": "This much wealth is exempt from the wealth tax.", - "label": "Wealth tax exemption on non-primary residence wealth", - "unit": "currency-GBP", - "period": "year", - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center": { - "type": "parameterNode", - "parameter": "gov.contrib.ubi_center", - "description": null, - "label": "UBI Center", - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income": { - "type": "parameterNode", - "parameter": "gov.contrib.ubi_center.basic_income", - "description": null, - "label": "basic income", - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.amount": { - "type": "parameterNode", - "parameter": "gov.contrib.ubi_center.basic_income.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.amount.by_age": { - "type": "parameterNode", - "parameter": "gov.contrib.ubi_center.basic_income.amount.by_age", - "description": null, - "label": "by age", - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.amount.by_age.child": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.amount.by_age.child", - "description": "Basic income payment to children.", - "label": "Child basic income", - "unit": "currency-GBP", - "period": "week", - "values": { - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.amount.by_age.working_age": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.amount.by_age.working_age", - "description": "Basic income payment to working-age adults.", - "label": "Working-age basic income", - "unit": "currency-GBP", - "period": "week", - "values": { - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.amount.by_age.senior": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.amount.by_age.senior", - "description": "Basic income payment to seniors (individuals over State Pension Age).", - "label": "Senior basic income", - "unit": "currency-GBP", - "period": "week", - "values": { - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.amount.flat": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.amount.flat", - "description": "Flat per-person basic income amount.", - "label": "Basic income", - "unit": "currency-GBP", - "period": "week", - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.amount.adult_age": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.amount.adult_age", - "description": "Age at which a person stops receiving the child basic income and begins receiving the adult basic income.", - "label": "Adult basic income threshold", - "unit": "year", - "period": null, - "values": { - "2010-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.amount.child_min_age": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.amount.child_min_age", - "description": "Minimum age for children to receive the child basic income.", - "label": "Child basic income minimum threshold", - "unit": "year", - "period": null, - "values": { - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.phase_out": { - "type": "parameterNode", - "parameter": "gov.contrib.ubi_center.basic_income.phase_out", - "description": null, - "label": "phase out", - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.phase_out.household": { - "type": "parameterNode", - "parameter": "gov.contrib.ubi_center.basic_income.phase_out.household", - "description": null, - "label": "household", - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.phase_out.household.rate": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.phase_out.household.rate", - "description": "Rate at which any remaining basic income (after individual phase-outs) is reduced over the household income threshold.", - "label": "Basic income household phase-out rate", - "unit": "/1", - "period": "year", - "values": { - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.phase_out.household.threshold": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.phase_out.household.threshold", - "description": "Threshold for household taxable income, after which any remaining basic income (after individual phase-outs) is reduced.", - "label": "Basic income household phase-out threshold", - "unit": "currency-GBP", - "period": "year", - "values": { - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.phase_out.individual": { - "type": "parameterNode", - "parameter": "gov.contrib.ubi_center.basic_income.phase_out.individual", - "description": null, - "label": "individual", - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.phase_out.individual.rate": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.phase_out.individual.rate", - "description": "Percentage of income over the phase-out threshold which is deducted from basic income payments.", - "label": "Basic income individual phase-out rate", - "unit": "/1", - "period": null, - "values": { - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.phase_out.individual.threshold": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.phase_out.individual.threshold", - "description": "Threshold for taxable income at which basic income is reduced.", - "label": "Basic income individual phase-out threshold", - "unit": "currency-GBP", - "period": "year", - "values": { - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.interactions": { - "type": "parameterNode", - "parameter": "gov.contrib.ubi_center.basic_income.interactions", - "description": null, - "label": "interactions", - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.interactions.withdraw_cb": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.interactions.withdraw_cb", - "description": "Withdraw Child Benefit payments from basic income recipients.", - "label": "Withdraw Child Benefit from basic income recipients", - "unit": "bool", - "period": null, - "values": { - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.interactions.include_in_means_tests": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.interactions.include_in_means_tests", - "description": "Include basic income as earned income in benefit means tests.", - "label": "Include basic income in means tests", - "unit": "bool", - "period": null, - "values": { - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.interactions.include_in_taxable_income": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.interactions.include_in_taxable_income", - "description": "Include basic income as earned income in benefit means tests.", - "label": "Include basic income in taxable income", - "unit": "bool", - "period": null, - "values": { - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.carbon_tax": { - "type": "parameterNode", - "parameter": "gov.contrib.ubi_center.carbon_tax", - "description": null, - "label": "carbon tax", - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.carbon_tax.consumer_incidence": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.carbon_tax.consumer_incidence", - "description": "Proportion of corporate carbon taxes which is passed on to consumers in the form of higher prices (as opposed to shareholders in the form of reduced profitability).", - "label": "Carbon tax consumer incidence", - "unit": "/1", - "period": null, - "values": { - "2010-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.carbon_tax.rate": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.carbon_tax.rate", - "description": "Price per tonne of carbon emissions", - "label": "Carbon tax", - "unit": "currency-GBP", - "period": null, - "values": { - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.wealth_tax": { - "type": "parameterNode", - "parameter": "gov.contrib.ubi_center.wealth_tax", - "description": "Annual tax on total wealth (includes all property and corporate wealth).", - "label": "Wealth tax" - }, - "gov.contrib.ubi_center.wealth_tax[0]": { - "type": "parameterNode", - "parameter": "gov.contrib.ubi_center.wealth_tax[0]", - "description": null, - "label": "bracket 1" - }, - "gov.contrib.ubi_center.wealth_tax[0].rate": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.wealth_tax[0].rate", - "description": null, - "label": "First wealth tax rate", - "unit": "/1", - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.wealth_tax[0].threshold": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.wealth_tax[0].threshold", - "description": null, - "label": "First wealth tax threshold", - "unit": "currency-GBP", - "period": "year", - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.wealth_tax[1]": { - "type": "parameterNode", - "parameter": "gov.contrib.ubi_center.wealth_tax[1]", - "description": null, - "label": "bracket 2" - }, - "gov.contrib.ubi_center.wealth_tax[1].rate": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.wealth_tax[1].rate", - "description": null, - "label": "Second wealth tax rate", - "unit": "/1", - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.wealth_tax[1].threshold": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.wealth_tax[1].threshold", - "description": null, - "label": "Second wealth tax threshold", - "unit": "currency-GBP", - "period": "year", - "values": { - "2000-01-01": 100000000 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.wealth_tax[2]": { - "type": "parameterNode", - "parameter": "gov.contrib.ubi_center.wealth_tax[2]", - "description": null, - "label": "bracket 3" - }, - "gov.contrib.ubi_center.wealth_tax[2].rate": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.wealth_tax[2].rate", - "description": null, - "label": "Third wealth tax rate", - "unit": "/1", - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.wealth_tax[2].threshold": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.wealth_tax[2].threshold", - "description": null, - "label": "Third wealth tax threshold", - "unit": "currency-GBP", - "period": "year", - "values": { - "2000-01-01": 1000000000 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.land_value_tax": { - "type": "parameterNode", - "parameter": "gov.contrib.ubi_center.land_value_tax", - "description": null, - "label": "land value tax", - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.land_value_tax.rate": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.land_value_tax.rate", - "description": "Tax rate on the unimproved value of land", - "label": "Land value tax", - "unit": "/1", - "period": null, - "values": { - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.land_value_tax.household_rate": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.land_value_tax.household_rate", - "description": "Tax rate on the unimproved value of land owned by households", - "label": "Land value tax (households)", - "unit": "/1", - "period": null, - "values": { - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.land_value_tax.corporate_rate": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.land_value_tax.corporate_rate", - "description": "Tax rate on the unimproved value of land owned by corporations", - "label": "Land value tax (corporations)", - "unit": "/1", - "period": null, - "values": { - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.conservatives": { - "type": "parameterNode", - "parameter": "gov.contrib.conservatives", - "description": null, - "label": "conservatives", - "economy": true, - "household": true - }, - "gov.contrib.conservatives.cb_hitc_household": { - "type": "parameter", - "parameter": "gov.contrib.conservatives.cb_hitc_household", - "description": "Child Benefit HITC assesses the joint income of a household to determine the amount of Child Benefit that is repayable.", - "label": "household-based High Income Tax Charge", - "unit": "bool", - "period": null, - "values": { - "2000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.conservatives.pensioner_personal_allowance": { - "type": "parameter", - "parameter": "gov.contrib.conservatives.pensioner_personal_allowance", - "description": "Personal Allowance for pensioners.", - "label": "personal allowance for pensioners", - "unit": "currency-GBP", - "period": null, - "values": { - "2025-04-06": 12570, - "2021-04-06": 12570, - "2019-04-06": 12500, - "2018-04-06": 11850, - "2017-04-06": 11500, - "2015-01-01": 11500 - }, - "economy": true, - "household": true - }, - "gov.contrib.freeze_pension_credit": { - "type": "parameter", - "parameter": "gov.contrib.freeze_pension_credit", - "description": "Freeze Pension Credit payments. Set all Pension Credit payments to what they are under baseline policy.", - "label": "Freeze Pension Credit", - "unit": "currency-GBP", - "period": null, - "values": { - "2000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.__pycache__": { - "type": "parameterNode", - "parameter": "gov.contrib.__pycache__", - "description": null, - "label": " pycache ", - "economy": true, - "household": true - }, - "gov.contrib.abolish_council_tax": { - "type": "parameter", - "parameter": "gov.contrib.abolish_council_tax", - "description": "Abolish council tax payments (and council tax benefit).", - "label": "Abolish Council Tax", - "unit": "bool", - "period": null, - "values": { - "2000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.indices": { - "type": "parameterNode", - "parameter": "gov.indices", - "description": null, - "label": "indices", - "economy": true, - "household": true - }, - "gov.indices.private_rent_index": { - "type": "parameter", - "parameter": "gov.indices.private_rent_index", - "description": "Index of private rental prices across the UK.", - "label": "Private rental prices index", - "unit": null, - "period": null, - "values": { - "2029-01-01": 139.049779210857, - "2028-01-01": 136.322949121376, - "2027-01-01": 133.650171581006, - "2026-01-01": 131.029833080818, - "2025-01-01": 128.586980562786, - "2024-01-01": 124.6, - "2023-12-01": 123.9, - "2023-11-01": 123.4, - "2023-10-01": 122.7, - "2023-09-01": 121.8, - "2023-08-01": 121.1, - "2023-07-01": 120.4, - "2023-06-01": 119.8, - "2023-05-01": 119.2, - "2023-04-01": 118.7, - "2023-03-01": 118.1, - "2023-02-01": 117.7, - "2023-01-01": 117.3, - "2022-12-01": 116.7, - "2022-11-01": 116.2, - "2022-10-01": 115.6, - "2022-09-01": 115.2, - "2022-08-01": 114.7, - "2022-07-01": 114.3, - "2022-06-01": 113.9, - "2022-05-01": 113.6, - "2022-04-01": 113.2, - "2022-03-01": 112.8, - "2022-02-01": 112.5, - "2022-01-01": 112.3, - "2021-12-01": 112, - "2021-11-01": 111.7, - "2021-10-01": 111.4, - "2021-09-01": 111.1, - "2021-08-01": 110.9, - "2021-07-01": 110.7, - "2021-06-01": 110.6, - "2021-05-01": 110.4, - "2021-04-01": 110.3, - "2021-03-01": 110.2, - "2021-02-01": 110.1, - "2021-01-01": 110, - "2020-12-01": 110, - "2020-11-01": 109.8, - "2020-10-01": 109.7, - "2020-09-01": 109.6, - "2020-08-01": 109.5, - "2020-07-01": 109.3, - "2020-06-01": 109.3, - "2020-05-01": 109.2, - "2020-04-01": 109, - "2020-03-01": 108.8, - "2020-02-01": 108.7, - "2020-01-01": 108.6, - "2019-12-01": 108.5, - "2019-11-01": 108.3, - "2019-10-01": 108.1, - "2019-09-01": 108, - "2019-08-01": 107.9, - "2019-07-01": 107.8, - "2019-06-01": 107.7, - "2019-05-01": 107.6, - "2019-04-01": 107.4, - "2019-03-01": 107.3, - "2019-02-01": 107.2, - "2019-01-01": 107.1, - "2018-12-01": 107, - "2018-11-01": 106.8, - "2018-10-01": 106.7, - "2018-09-01": 106.6, - "2018-08-01": 106.5, - "2018-07-01": 106.4, - "2018-06-01": 106.3, - "2018-05-01": 106.2, - "2018-04-01": 106.1, - "2018-03-01": 106.1, - "2018-02-01": 106, - "2018-01-01": 106, - "2017-12-01": 105.9, - "2017-11-01": 105.8, - "2017-10-01": 105.7, - "2017-09-01": 105.6, - "2017-08-01": 105.5, - "2017-07-01": 105.4, - "2017-06-01": 105.3, - "2017-05-01": 105.2, - "2017-04-01": 105.1, - "2017-03-01": 104.9, - "2017-02-01": 104.9, - "2017-01-01": 104.8, - "2016-12-01": 104.6, - "2016-11-01": 104.4, - "2016-10-01": 104.2, - "2016-09-01": 104, - "2016-08-01": 103.8, - "2016-07-01": 103.6, - "2016-06-01": 103.4, - "2016-05-01": 103.4, - "2016-04-01": 103.2, - "2016-03-01": 102.9, - "2016-02-01": 102.7, - "2016-01-01": 102.6, - "2015-12-01": 102.2, - "2015-11-01": 102.1, - "2015-10-01": 101.8, - "2015-09-01": 101.7, - "2015-08-01": 101.5, - "2015-07-01": 101.2, - "2015-06-01": 101, - "2015-05-01": 100.9, - "2015-04-01": 100.6, - "2015-03-01": 100.3, - "2015-02-01": 100.2, - "2015-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.revenue_scotland": { - "type": "parameterNode", - "parameter": "gov.revenue_scotland", - "description": null, - "label": "Revenue Scotland", - "economy": true, - "household": true - }, - "gov.revenue_scotland.lbtt": { - "type": "parameterNode", - "parameter": "gov.revenue_scotland.lbtt", - "description": null, - "label": "Land and Buildings Transation Tax", - "economy": true, - "household": true - }, - "gov.revenue_scotland.lbtt.residential": { - "type": "parameterNode", - "parameter": "gov.revenue_scotland.lbtt.residential", - "description": null, - "label": "Residential", - "economy": true, - "household": true - }, - "gov.revenue_scotland.lbtt.residential.first_time_buyer_rate": { - "type": "parameterNode", - "parameter": "gov.revenue_scotland.lbtt.residential.first_time_buyer_rate", - "description": "Rates applied to first-time buyers.", - "label": "LBTT for first-time buyers" - }, - "gov.revenue_scotland.lbtt.residential.first_time_buyer_rate[0]": { - "type": "parameterNode", - "parameter": "gov.revenue_scotland.lbtt.residential.first_time_buyer_rate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.revenue_scotland.lbtt.residential.first_time_buyer_rate[0].rate": { - "type": "parameter", - "parameter": "gov.revenue_scotland.lbtt.residential.first_time_buyer_rate[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2015-04-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.revenue_scotland.lbtt.residential.first_time_buyer_rate[0].threshold": { - "type": "parameter", - "parameter": "gov.revenue_scotland.lbtt.residential.first_time_buyer_rate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2015-04-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.revenue_scotland.lbtt.residential.first_time_buyer_rate[1]": { - "type": "parameterNode", - "parameter": "gov.revenue_scotland.lbtt.residential.first_time_buyer_rate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.revenue_scotland.lbtt.residential.first_time_buyer_rate[1].rate": { - "type": "parameter", - "parameter": "gov.revenue_scotland.lbtt.residential.first_time_buyer_rate[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-03-31": 0.02, - "2020-07-15": null, - "2015-04-01": 0.02, - "2015-01-01": 0.02 - }, - "economy": false, - "household": true - }, - "gov.revenue_scotland.lbtt.residential.first_time_buyer_rate[1].threshold": { - "type": "parameter", - "parameter": "gov.revenue_scotland.lbtt.residential.first_time_buyer_rate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2021-03-31": 175000, - "2020-07-15": null, - "2015-04-01": 175000, - "2015-01-01": 175000 - }, - "economy": false, - "household": true - }, - "gov.revenue_scotland.lbtt.residential.first_time_buyer_rate[2]": { - "type": "parameterNode", - "parameter": "gov.revenue_scotland.lbtt.residential.first_time_buyer_rate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.revenue_scotland.lbtt.residential.first_time_buyer_rate[2].rate": { - "type": "parameter", - "parameter": "gov.revenue_scotland.lbtt.residential.first_time_buyer_rate[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2015-04-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": false, - "household": true - }, - "gov.revenue_scotland.lbtt.residential.first_time_buyer_rate[2].threshold": { - "type": "parameter", - "parameter": "gov.revenue_scotland.lbtt.residential.first_time_buyer_rate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2015-04-01": 250000, - "2015-01-01": 250000 - }, - "economy": false, - "household": true - }, - "gov.revenue_scotland.lbtt.residential.first_time_buyer_rate[3]": { - "type": "parameterNode", - "parameter": "gov.revenue_scotland.lbtt.residential.first_time_buyer_rate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.revenue_scotland.lbtt.residential.first_time_buyer_rate[3].rate": { - "type": "parameter", - "parameter": "gov.revenue_scotland.lbtt.residential.first_time_buyer_rate[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2015-04-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": false, - "household": true - }, - "gov.revenue_scotland.lbtt.residential.first_time_buyer_rate[3].threshold": { - "type": "parameter", - "parameter": "gov.revenue_scotland.lbtt.residential.first_time_buyer_rate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2015-04-01": 325000, - "2015-01-01": 325000 - }, - "economy": false, - "household": true - }, - "gov.revenue_scotland.lbtt.residential.first_time_buyer_rate[4]": { - "type": "parameterNode", - "parameter": "gov.revenue_scotland.lbtt.residential.first_time_buyer_rate[4]", - "description": null, - "label": "bracket 5" - }, - "gov.revenue_scotland.lbtt.residential.first_time_buyer_rate[4].rate": { - "type": "parameter", - "parameter": "gov.revenue_scotland.lbtt.residential.first_time_buyer_rate[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2015-04-01": 0.12, - "2015-01-01": 0.12 - }, - "economy": false, - "household": true - }, - "gov.revenue_scotland.lbtt.residential.first_time_buyer_rate[4].threshold": { - "type": "parameter", - "parameter": "gov.revenue_scotland.lbtt.residential.first_time_buyer_rate[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2015-04-01": 750000, - "2015-01-01": 750000 - }, - "economy": false, - "household": true - }, - "gov.revenue_scotland.lbtt.residential.additional_residence_surcharge": { - "type": "parameter", - "parameter": "gov.revenue_scotland.lbtt.residential.additional_residence_surcharge", - "description": "Increase in percentage rates for non-primary residence purchases.", - "label": "LBTT fixed rate increase for secondary residences", - "unit": "/1", - "period": null, - "values": { - "2022-12-16": 0.06, - "2019-01-25": 0.04, - "2016-04-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.revenue_scotland.lbtt.residential.rate": { - "type": "parameterNode", - "parameter": "gov.revenue_scotland.lbtt.residential.rate", - "description": "Rates on Scotland's residential property purchases", - "label": "LBTT on residential property" - }, - "gov.revenue_scotland.lbtt.residential.rate[0]": { - "type": "parameterNode", - "parameter": "gov.revenue_scotland.lbtt.residential.rate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.revenue_scotland.lbtt.residential.rate[0].rate": { - "type": "parameter", - "parameter": "gov.revenue_scotland.lbtt.residential.rate[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2015-04-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.revenue_scotland.lbtt.residential.rate[0].threshold": { - "type": "parameter", - "parameter": "gov.revenue_scotland.lbtt.residential.rate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2015-04-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.revenue_scotland.lbtt.residential.rate[1]": { - "type": "parameterNode", - "parameter": "gov.revenue_scotland.lbtt.residential.rate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.revenue_scotland.lbtt.residential.rate[1].rate": { - "type": "parameter", - "parameter": "gov.revenue_scotland.lbtt.residential.rate[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-03-31": 0.02, - "2020-07-15": null, - "2015-04-01": 0.02, - "2015-01-01": 0.02 - }, - "economy": false, - "household": true - }, - "gov.revenue_scotland.lbtt.residential.rate[1].threshold": { - "type": "parameter", - "parameter": "gov.revenue_scotland.lbtt.residential.rate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2021-03-31": 145000, - "2020-07-15": null, - "2015-04-01": 145000, - "2015-01-01": 145000 - }, - "economy": false, - "household": true - }, - "gov.revenue_scotland.lbtt.residential.rate[2]": { - "type": "parameterNode", - "parameter": "gov.revenue_scotland.lbtt.residential.rate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.revenue_scotland.lbtt.residential.rate[2].rate": { - "type": "parameter", - "parameter": "gov.revenue_scotland.lbtt.residential.rate[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2015-04-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": false, - "household": true - }, - "gov.revenue_scotland.lbtt.residential.rate[2].threshold": { - "type": "parameter", - "parameter": "gov.revenue_scotland.lbtt.residential.rate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2015-04-01": 250000, - "2015-01-01": 250000 - }, - "economy": false, - "household": true - }, - "gov.revenue_scotland.lbtt.residential.rate[3]": { - "type": "parameterNode", - "parameter": "gov.revenue_scotland.lbtt.residential.rate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.revenue_scotland.lbtt.residential.rate[3].rate": { - "type": "parameter", - "parameter": "gov.revenue_scotland.lbtt.residential.rate[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2015-04-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": false, - "household": true - }, - "gov.revenue_scotland.lbtt.residential.rate[3].threshold": { - "type": "parameter", - "parameter": "gov.revenue_scotland.lbtt.residential.rate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2015-04-01": 325000, - "2015-01-01": 325000 - }, - "economy": false, - "household": true - }, - "gov.revenue_scotland.lbtt.residential.rate[4]": { - "type": "parameterNode", - "parameter": "gov.revenue_scotland.lbtt.residential.rate[4]", - "description": null, - "label": "bracket 5" - }, - "gov.revenue_scotland.lbtt.residential.rate[4].rate": { - "type": "parameter", - "parameter": "gov.revenue_scotland.lbtt.residential.rate[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2015-04-01": 0.12, - "2015-01-01": 0.12 - }, - "economy": false, - "household": true - }, - "gov.revenue_scotland.lbtt.residential.rate[4].threshold": { - "type": "parameter", - "parameter": "gov.revenue_scotland.lbtt.residential.rate[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2015-04-01": 750000, - "2015-01-01": 750000 - }, - "economy": false, - "household": true - }, - "gov.revenue_scotland.lbtt.non_residential": { - "type": "parameterNode", - "parameter": "gov.revenue_scotland.lbtt.non_residential", - "description": "Rates on Scotland's non-residential property purchases", - "label": "LBTT on non-residential property" - }, - "gov.revenue_scotland.lbtt.non_residential[0]": { - "type": "parameterNode", - "parameter": "gov.revenue_scotland.lbtt.non_residential[0]", - "description": null, - "label": "bracket 1" - }, - "gov.revenue_scotland.lbtt.non_residential[0].rate": { - "type": "parameter", - "parameter": "gov.revenue_scotland.lbtt.non_residential[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2015-04-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.revenue_scotland.lbtt.non_residential[0].threshold": { - "type": "parameter", - "parameter": "gov.revenue_scotland.lbtt.non_residential[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2015-04-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.revenue_scotland.lbtt.non_residential[1]": { - "type": "parameterNode", - "parameter": "gov.revenue_scotland.lbtt.non_residential[1]", - "description": null, - "label": "bracket 2" - }, - "gov.revenue_scotland.lbtt.non_residential[1].rate": { - "type": "parameter", - "parameter": "gov.revenue_scotland.lbtt.non_residential[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2019-01-25": 0.01, - "2015-04-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": false, - "household": true - }, - "gov.revenue_scotland.lbtt.non_residential[1].threshold": { - "type": "parameter", - "parameter": "gov.revenue_scotland.lbtt.non_residential[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2015-04-01": 150000, - "2015-01-01": 150000 - }, - "economy": false, - "household": true - }, - "gov.revenue_scotland.lbtt.non_residential[2]": { - "type": "parameterNode", - "parameter": "gov.revenue_scotland.lbtt.non_residential[2]", - "description": null, - "label": "bracket 3" - }, - "gov.revenue_scotland.lbtt.non_residential[2].rate": { - "type": "parameter", - "parameter": "gov.revenue_scotland.lbtt.non_residential[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2019-01-25": 0.05, - "2015-04-01": 0.045, - "2015-01-01": 0.045 - }, - "economy": false, - "household": true - }, - "gov.revenue_scotland.lbtt.non_residential[2].threshold": { - "type": "parameter", - "parameter": "gov.revenue_scotland.lbtt.non_residential[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2019-01-25": 250000, - "2015-04-01": 350000, - "2015-01-01": 350000 - }, - "economy": false, - "household": true - }, - "gov.revenue_scotland.lbtt.rent": { - "type": "parameterNode", - "parameter": "gov.revenue_scotland.lbtt.rent", - "description": "Rates on cumulative rent", - "label": "LBTT on cumulative rent" - }, - "gov.revenue_scotland.lbtt.rent[0]": { - "type": "parameterNode", - "parameter": "gov.revenue_scotland.lbtt.rent[0]", - "description": null, - "label": "bracket 1" - }, - "gov.revenue_scotland.lbtt.rent[0].rate": { - "type": "parameter", - "parameter": "gov.revenue_scotland.lbtt.rent[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2015-04-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.revenue_scotland.lbtt.rent[0].threshold": { - "type": "parameter", - "parameter": "gov.revenue_scotland.lbtt.rent[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2015-04-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.revenue_scotland.lbtt.rent[1]": { - "type": "parameterNode", - "parameter": "gov.revenue_scotland.lbtt.rent[1]", - "description": null, - "label": "bracket 2" - }, - "gov.revenue_scotland.lbtt.rent[1].rate": { - "type": "parameter", - "parameter": "gov.revenue_scotland.lbtt.rent[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2015-04-01": 0.01, - "2015-01-01": 0.01 - }, - "economy": false, - "household": true - }, - "gov.revenue_scotland.lbtt.rent[1].threshold": { - "type": "parameter", - "parameter": "gov.revenue_scotland.lbtt.rent[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2015-04-01": 150000, - "2015-01-01": 150000 - }, - "economy": false, - "household": true - }, - "gov.revenue_scotland.lbtt.rent[2]": { - "type": "parameterNode", - "parameter": "gov.revenue_scotland.lbtt.rent[2]", - "description": null, - "label": "bracket 3" - }, - "gov.revenue_scotland.lbtt.rent[2].rate": { - "type": "parameter", - "parameter": "gov.revenue_scotland.lbtt.rent[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2019-01-25": 0.05, - "2015-01-01": 0.05 - }, - "economy": false, - "household": true - }, - "gov.revenue_scotland.lbtt.rent[2].threshold": { - "type": "parameter", - "parameter": "gov.revenue_scotland.lbtt.rent[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2019-01-25": 2000000, - "2015-01-01": 2000000 - }, - "economy": false, - "household": true - }, - "gov.economic_assumptions": { - "type": "parameterNode", - "parameter": "gov.economic_assumptions", - "description": null, - "label": "economic assumptions", - "economy": true, - "household": true - }, - "gov.economic_assumptions.__pycache__": { - "type": "parameterNode", - "parameter": "gov.economic_assumptions.__pycache__", - "description": null, - "label": " pycache ", - "economy": true, - "household": true - }, - "gov.economic_assumptions.yoy_growth": { - "type": "parameterNode", - "parameter": "gov.economic_assumptions.yoy_growth", - "description": null, - "label": "yoy growth", - "economy": true, - "household": true - }, - "gov.economic_assumptions.yoy_growth.obr": { - "type": "parameterNode", - "parameter": "gov.economic_assumptions.yoy_growth.obr", - "description": null, - "label": "obr", - "economy": true, - "household": true - }, - "gov.economic_assumptions.yoy_growth.obr.rpi": { - "type": "parameter", - "parameter": "gov.economic_assumptions.yoy_growth.obr.rpi", - "description": "Retail price index year-on-year growth.", - "label": "retail price index growth", - "unit": "/1", - "period": null, - "values": { - "2029-01-01": 0.025, - "2028-01-01": 0.023, - "2027-01-01": 0.021, - "2026-01-01": 0.022, - "2025-01-01": 0.037, - "2024-01-01": 0.047, - "2023-01-01": 0.069, - "2022-01-01": 0.064, - "2021-01-01": 0.059, - "2020-01-01": 0.003, - "2019-01-01": 0.022, - "2018-01-01": 0.026, - "2017-01-01": 0.032, - "2016-01-01": 0.024, - "2015-01-01": 0.02, - "2014-01-01": 0.006, - "2013-01-01": 0.047, - "2012-01-01": 0.007, - "2011-01-01": 0.016, - "2010-01-01": 0.008, - "2009-01-01": 0.018 - }, - "economy": true, - "household": true - }, - "gov.economic_assumptions.yoy_growth.obr.average_earnings": { - "type": "parameter", - "parameter": "gov.economic_assumptions.yoy_growth.obr.average_earnings", - "description": "Average earnings year-on-year growth.", - "label": "average earnings growth", - "unit": "/1", - "period": null, - "values": { - "2029-01-01": 0.025, - "2028-01-01": 0.023, - "2027-01-01": 0.021, - "2026-01-01": 0.022, - "2025-01-01": 0.037, - "2024-01-01": 0.047, - "2023-01-01": 0.069, - "2022-01-01": 0.064, - "2021-01-01": 0.059, - "2020-01-01": 0.003, - "2019-01-01": 0.022, - "2018-01-01": 0.026, - "2017-01-01": 0.032, - "2016-01-01": 0.024, - "2015-01-01": 0.02, - "2014-01-01": 0.006, - "2013-01-01": 0.047, - "2012-01-01": 0.007, - "2011-01-01": 0.016, - "2010-01-01": 0.008, - "2009-01-01": 0.018 - }, - "economy": true, - "household": true - }, - "gov.economic_assumptions.yoy_growth.obr.consumer_price_index": { - "type": "parameter", - "parameter": "gov.economic_assumptions.yoy_growth.obr.consumer_price_index", - "description": "Consumer price index year-on-year growth.", - "label": "consumer price index growth", - "unit": "/1", - "period": null, - "values": { - "2029-01-01": 0.02, - "2028-01-01": 0.02, - "2027-01-01": 0.02, - "2026-01-01": 0.019, - "2025-01-01": 0.032, - "2024-01-01": 0.023, - "2023-01-01": 0.057, - "2022-01-01": 0.1, - "2021-01-01": 0.04, - "2020-01-01": 0.006, - "2019-01-01": 0.017, - "2018-01-01": 0.023, - "2017-01-01": 0.028, - "2016-01-01": 0.011, - "2015-01-01": 0.001, - "2014-01-01": 0.011, - "2013-01-01": 0.023, - "2012-01-01": 0.027, - "2011-01-01": 0.043, - "2010-01-01": 0.035, - "2009-01-01": 0.022 - }, - "economy": true, - "household": true - }, - "gov.economic_assumptions.yoy_growth.obr.non_labour_income": { - "type": "parameter", - "parameter": "gov.economic_assumptions.yoy_growth.obr.non_labour_income", - "description": "Non-labour income year-on-year growth.", - "label": "non-labour income growth", - "unit": "/1", - "period": null, - "values": { - "2029-01-01": 0.035, - "2028-01-01": 0.034, - "2027-01-01": 0.045, - "2026-01-01": 0.056, - "2025-01-01": 0.068, - "2024-01-01": 0.08, - "2023-01-01": 0.066, - "2022-01-01": 0.138, - "2021-01-01": 0.072, - "2015-01-01": 0.072 - }, - "economy": true, - "household": true - }, - "gov.economic_assumptions.yoy_growth.obr.council_tax": { - "type": "parameterNode", - "parameter": "gov.economic_assumptions.yoy_growth.obr.council_tax", - "description": null, - "label": "council tax", - "economy": true, - "household": true - }, - "gov.economic_assumptions.yoy_growth.obr.council_tax.england": { - "type": "parameter", - "parameter": "gov.economic_assumptions.yoy_growth.obr.council_tax.england", - "description": "Growth in the level (adjusted for household growth) of council tax receipts in England.", - "label": "england", - "unit": "/1", - "period": null, - "values": { - "2029-01-01": 0.043, - "2028-01-01": 0.043, - "2027-01-01": 0.043, - "2026-01-01": 0.043, - "2025-01-01": 0.043, - "2024-01-01": 0.051, - "2023-01-01": 0.051, - "2015-01-01": 0.051 - }, - "economy": true, - "household": true - }, - "gov.economic_assumptions.yoy_growth.obr.council_tax.scotland": { - "type": "parameter", - "parameter": "gov.economic_assumptions.yoy_growth.obr.council_tax.scotland", - "description": "Growth in the level (adjusted for household growth) of council tax receipts in Scotland.", - "label": "scotland", - "unit": "/1", - "period": null, - "values": { - "2029-01-01": 0.027, - "2028-01-01": 0.027, - "2027-01-01": 0.027, - "2026-01-01": 0.027, - "2025-01-01": 0.027, - "2024-01-01": 0.027, - "2023-01-01": 0.026, - "2015-01-01": 0.026 - }, - "economy": true, - "household": true - }, - "gov.economic_assumptions.yoy_growth.obr.council_tax.wales": { - "type": "parameter", - "parameter": "gov.economic_assumptions.yoy_growth.obr.council_tax.wales", - "description": "Growth in the level (adjusted for household growth) of council tax receipts in Wales.", - "label": "wales", - "unit": "/1", - "period": null, - "values": { - "2029-01-01": 0.041, - "2028-01-01": 0.041, - "2027-01-01": 0.041, - "2026-01-01": 0.041, - "2025-01-01": 0.041, - "2024-01-01": 0.041, - "2023-01-01": 0.038, - "2015-01-01": 0.038 - }, - "economy": true, - "household": true - }, - "gov.economic_assumptions.yoy_growth.obr.per_capita": { - "type": "parameterNode", - "parameter": "gov.economic_assumptions.yoy_growth.obr.per_capita", - "description": null, - "label": "per capita", - "economy": true, - "household": true - }, - "gov.economic_assumptions.yoy_growth.obr.per_capita.gdp": { - "type": "parameter", - "parameter": "gov.economic_assumptions.yoy_growth.obr.per_capita.gdp", - "description": "Per capita GDP year-on-year growth.", - "label": "per capita GDP growth", - "unit": "/1", - "period": null, - "values": { - "2029-01-01": 0.033, - "2028-01-01": 0.033, - "2027-01-01": 0.031, - "2026-01-01": 0.028, - "2025-01-01": 0.028, - "2024-01-01": 0.038, - "2023-01-01": 0.05, - "2022-01-01": 0.092, - "2021-01-01": 0.125, - "2015-01-01": 0.125 - }, - "economy": true, - "household": true - }, - "gov.economic_assumptions.yoy_growth.obr.per_capita.mixed_income": { - "type": "parameter", - "parameter": "gov.economic_assumptions.yoy_growth.obr.per_capita.mixed_income", - "description": "Per capita mixed income year-on-year growth.", - "label": "per capita mixed income growth", - "unit": "/1", - "period": null, - "values": { - "2029-01-01": 0.038, - "2028-01-01": 0.036, - "2027-01-01": 0.031, - "2026-01-01": 0.031, - "2025-01-01": 0.047, - "2024-01-01": 0.048, - "2023-01-01": 0.024, - "2022-01-01": 0.063, - "2021-01-01": 0.06, - "2015-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.economic_assumptions.yoy_growth.obr.per_capita.non_labour_income": { - "type": "parameter", - "parameter": "gov.economic_assumptions.yoy_growth.obr.per_capita.non_labour_income", - "description": "Per capita non-labour income year-on-year growth.", - "label": "per capita non-labour income growth", - "unit": "/1", - "period": null, - "values": { - "2029-01-01": 0.03, - "2028-01-01": 0.029, - "2027-01-01": 0.038, - "2026-01-01": 0.049, - "2025-01-01": 0.057, - "2024-01-01": 0.069, - "2023-01-01": 0.052, - "2022-01-01": 0.134, - "2021-01-01": 0.068, - "2015-01-01": 0.068 - }, - "economy": true, - "household": true - }, - "gov.economic_assumptions.yoy_growth.obr.house_prices": { - "type": "parameter", - "parameter": "gov.economic_assumptions.yoy_growth.obr.house_prices", - "description": "House prices year-on-year growth.", - "label": "house prices growth", - "unit": "/1", - "period": null, - "values": { - "2029-01-01": 0.024, - "2028-01-01": 0.023, - "2027-01-01": 0.026, - "2026-01-01": 0.025, - "2025-01-01": 0.024, - "2024-01-01": 0.027, - "2023-01-01": -0.01, - "2022-01-01": 0.083, - "2021-01-01": 0.082, - "2015-01-01": 0.082 - }, - "economy": true, - "household": true - }, - "gov.economic_assumptions.yoy_growth.obr.mortgage_interest": { - "type": "parameter", - "parameter": "gov.economic_assumptions.yoy_growth.obr.mortgage_interest", - "description": "Mortgage interest year-on-year growth.", - "label": "mortgage interest growth", - "unit": "/1", - "period": null, - "values": { - "2029-01-01": 0.047, - "2028-01-01": 0.042, - "2027-01-01": 0.082, - "2026-01-01": 0.126, - "2025-01-01": 0.136, - "2024-01-01": 0.221, - "2023-01-01": 0.485, - "2022-01-01": 0.262, - "2021-01-01": 0.003, - "2015-01-01": 0.003 - }, - "economy": true, - "household": true - }, - "gov.economic_assumptions.yoy_growth.obr.social_rent": { - "type": "parameter", - "parameter": "gov.economic_assumptions.yoy_growth.obr.social_rent", - "description": "Rent year-on-year growth (CPI+1%, one year lagged).", - "label": "social rent growth", - "unit": "/1", - "period": null, - "values": { - "2029-01-01": 0.03, - "2028-01-01": 0.03, - "2027-01-01": 0.029, - "2026-01-01": 0.042, - "2025-01-01": 0.033, - "2024-01-01": 0.067, - "2023-01-01": 0.11, - "2022-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.economic_assumptions.yoy_growth.obr.private_pension_index": { - "type": "parameter", - "parameter": "gov.economic_assumptions.yoy_growth.obr.private_pension_index", - "description": null, - "label": "private pension index", - "unit": null, - "period": null, - "values": { - "2034-01-01": 0.025, - "2033-01-01": 0.025, - "2032-01-01": 0.025, - "2031-01-01": 0.025, - "2030-01-01": 0.025, - "2029-01-01": 0.023, - "2028-01-01": 0.021, - "2027-01-01": 0.022, - "2026-01-01": 0.037, - "2025-01-01": 0.047, - "2024-01-01": 0.05, - "2023-01-01": 0.05, - "2022-01-01": 0.05, - "2021-01-01": 0.003, - "2020-01-01": 0.022, - "2015-01-01": 0.022 - }, - "economy": true, - "household": true - }, - "gov.economic_assumptions.yoy_growth.lagged_average_earnings": { - "type": "parameter", - "parameter": "gov.economic_assumptions.yoy_growth.lagged_average_earnings", - "description": null, - "label": "lagged average earnings", - "unit": null, - "period": null, - "values": { - "2029-01-01": 0.023, - "2028-01-01": 0.021, - "2027-01-01": 0.022, - "2026-01-01": 0.037, - "2025-01-01": 0.047, - "2024-01-01": 0.069, - "2023-01-01": 0.064, - "2022-01-01": 0.059, - "2015-01-01": 0.059 - }, - "economy": true, - "household": true - }, - "gov.economic_assumptions.yoy_growth.obr.lagged_cpi": { - "type": "parameter", - "parameter": "gov.economic_assumptions.yoy_growth.obr.lagged_cpi", - "description": null, - "label": "lagged cpi", - "unit": null, - "period": null, - "values": { - "2029-01-01": 0.02, - "2028-01-01": 0.02, - "2027-01-01": 0.019, - "2026-01-01": 0.032, - "2025-01-01": 0.023, - "2024-01-01": 0.057, - "2023-01-01": 0.1, - "2022-01-01": 0.04, - "2021-01-01": 0.006, - "2020-01-01": 0.017, - "2019-01-01": 0.023, - "2018-01-01": 0.028, - "2017-01-01": 0.011, - "2016-01-01": 0.001, - "2015-01-01": 0.011, - "2014-01-01": 0.023, - "2013-01-01": 0.027, - "2012-01-01": 0.043, - "2011-01-01": 0.035, - "2010-01-01": 0.022 - }, - "economy": true, - "household": true - }, - "gov.economic_assumptions.yoy_growth.ons": { - "type": "parameterNode", - "parameter": "gov.economic_assumptions.yoy_growth.ons", - "description": null, - "label": "ons", - "economy": true, - "household": true - }, - "gov.economic_assumptions.yoy_growth.ons.population": { - "type": "parameter", - "parameter": "gov.economic_assumptions.yoy_growth.ons.population", - "description": "Population year-on-year growth.", - "label": "population growth", - "unit": "/1", - "period": null, - "values": { - "2029-01-01": 0.005, - "2028-01-01": 0.004, - "2027-01-01": 0.008, - "2026-01-01": 0.007, - "2025-01-01": 0.011, - "2024-01-01": 0.01, - "2023-01-01": 0.014, - "2022-01-01": 0.003, - "2021-01-01": 0.004, - "2015-01-01": 0.004 - }, - "economy": true, - "household": true - }, - "gov.economic_assumptions.yoy_growth.ofwat": { - "type": "parameterNode", - "parameter": "gov.economic_assumptions.yoy_growth.ofwat", - "description": null, - "label": "ofwat", - "economy": true, - "household": true - }, - "gov.economic_assumptions.yoy_growth.ofwat.water_bills": { - "type": "parameter", - "parameter": "gov.economic_assumptions.yoy_growth.ofwat.water_bills", - "description": "Water and sewerage bills year-on-year growth.", - "label": "water bills growth", - "unit": "/1", - "period": null, - "values": { - "2029-01-01": 0.043, - "2028-01-01": 0.038, - "2027-01-01": 0.051, - "2026-01-01": 0.061, - "2025-01-01": 0.061, - "2024-01-01": 0.044, - "2023-01-01": 0.092, - "2022-01-01": 0.052, - "2015-01-01": 0.052 - }, - "economy": true, - "household": true - }, - "gov.economic_assumptions.yoy_growth.triple_lock": { - "type": "parameter", - "parameter": "gov.economic_assumptions.yoy_growth.triple_lock", - "description": null, - "label": "triple lock", - "unit": "/1", - "period": null, - "values": { - "2034-01-01": 0.025, - "2033-01-01": 0.025, - "2032-01-01": 0.025, - "2031-01-01": 0.025, - "2030-01-01": 0.025, - "2029-01-01": 0.025, - "2028-01-01": 0.025, - "2027-01-01": 0.025, - "2026-01-01": 0.037, - "2025-01-01": 0.047, - "2024-01-01": 0.069, - "2023-01-01": 0.1, - "2022-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.economic_assumptions.indices": { - "type": "parameterNode", - "parameter": "gov.economic_assumptions.indices", - "description": null, - "label": "indices", - "economy": true, - "household": true - }, - "gov.economic_assumptions.indices.obr": { - "type": "parameterNode", - "parameter": "gov.economic_assumptions.indices.obr", - "description": null, - "label": "obr", - "economy": true, - "household": true - }, - "gov.economic_assumptions.indices.obr.rpi": { - "type": "parameter", - "parameter": "gov.economic_assumptions.indices.obr.rpi", - "description": null, - "label": "rpi", - "unit": null, - "period": null, - "values": { - "2029-01-01": 1.76206, - "2028-01-01": 1.71908, - "2027-01-01": 1.68043, - "2026-01-01": 1.64587, - "2025-01-01": 1.61044, - "2024-01-01": 1.55298, - "2023-01-01": 1.48327, - "2022-01-01": 1.38753, - "2021-01-01": 1.30407, - "2020-01-01": 1.23142, - "2019-01-01": 1.22774, - "2018-01-01": 1.20131, - "2017-01-01": 1.17087, - "2016-01-01": 1.13456, - "2015-01-01": 1.10797, - "2014-01-01": 1.08625, - "2013-01-01": 1.07977, - "2012-01-01": 1.0313, - "2011-01-01": 1.02413, - "2010-01-01": 1.008, - "2009-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.economic_assumptions.indices.obr.average_earnings": { - "type": "parameter", - "parameter": "gov.economic_assumptions.indices.obr.average_earnings", - "description": null, - "label": "average earnings", - "unit": null, - "period": null, - "values": { - "2029-01-01": 1.76206, - "2028-01-01": 1.71908, - "2027-01-01": 1.68043, - "2026-01-01": 1.64587, - "2025-01-01": 1.61044, - "2024-01-01": 1.55298, - "2023-01-01": 1.48327, - "2022-01-01": 1.38753, - "2021-01-01": 1.30407, - "2020-01-01": 1.23142, - "2019-01-01": 1.22774, - "2018-01-01": 1.20131, - "2017-01-01": 1.17087, - "2016-01-01": 1.13456, - "2015-01-01": 1.10797, - "2014-01-01": 1.08625, - "2013-01-01": 1.07977, - "2012-01-01": 1.0313, - "2011-01-01": 1.02413, - "2010-01-01": 1.008, - "2009-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.economic_assumptions.indices.obr.consumer_price_index": { - "type": "parameter", - "parameter": "gov.economic_assumptions.indices.obr.consumer_price_index", - "description": null, - "label": "consumer price index", - "unit": null, - "period": null, - "values": { - "2029-01-01": 1.72357, - "2028-01-01": 1.68977, - "2027-01-01": 1.65664, - "2026-01-01": 1.62416, - "2025-01-01": 1.59388, - "2024-01-01": 1.54446, - "2023-01-01": 1.50974, - "2022-01-01": 1.42833, - "2021-01-01": 1.29848, - "2020-01-01": 1.24854, - "2019-01-01": 1.24109, - "2018-01-01": 1.22034, - "2017-01-01": 1.1929, - "2016-01-01": 1.16041, - "2015-01-01": 1.14778, - "2014-01-01": 1.14663, - "2013-01-01": 1.13415, - "2012-01-01": 1.10865, - "2011-01-01": 1.0795, - "2010-01-01": 1.035, - "2009-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.economic_assumptions.indices.obr.non_labour_income": { - "type": "parameter", - "parameter": "gov.economic_assumptions.indices.obr.non_labour_income", - "description": null, - "label": "non labour income", - "unit": null, - "period": null, - "values": { - "2029-01-01": 1.65248, - "2028-01-01": 1.5966, - "2027-01-01": 1.5441, - "2026-01-01": 1.47761, - "2025-01-01": 1.39925, - "2024-01-01": 1.31016, - "2023-01-01": 1.21311, - "2022-01-01": 1.138, - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.economic_assumptions.indices.obr.council_tax": { - "type": "parameterNode", - "parameter": "gov.economic_assumptions.indices.obr.council_tax", - "description": null, - "label": "council tax", - "economy": true, - "household": true - }, - "gov.economic_assumptions.indices.obr.council_tax.england": { - "type": "parameter", - "parameter": "gov.economic_assumptions.indices.obr.council_tax.england", - "description": null, - "label": "england", - "unit": null, - "period": null, - "values": { - "2029-01-01": 1.29725, - "2028-01-01": 1.24377, - "2027-01-01": 1.19249, - "2026-01-01": 1.14333, - "2025-01-01": 1.09619, - "2024-01-01": 1.051, - "2023-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.economic_assumptions.indices.obr.council_tax.scotland": { - "type": "parameter", - "parameter": "gov.economic_assumptions.indices.obr.council_tax.scotland", - "description": null, - "label": "scotland", - "unit": null, - "period": null, - "values": { - "2029-01-01": 1.17335, - "2028-01-01": 1.1425, - "2027-01-01": 1.11246, - "2026-01-01": 1.08321, - "2025-01-01": 1.05473, - "2024-01-01": 1.027, - "2023-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.economic_assumptions.indices.obr.council_tax.wales": { - "type": "parameter", - "parameter": "gov.economic_assumptions.indices.obr.council_tax.wales", - "description": null, - "label": "wales", - "unit": null, - "period": null, - "values": { - "2029-01-01": 1.27263, - "2028-01-01": 1.22251, - "2027-01-01": 1.17436, - "2026-01-01": 1.12811, - "2025-01-01": 1.08368, - "2024-01-01": 1.041, - "2023-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.economic_assumptions.indices.obr.per_capita": { - "type": "parameterNode", - "parameter": "gov.economic_assumptions.indices.obr.per_capita", - "description": null, - "label": "per capita", - "economy": true, - "household": true - }, - "gov.economic_assumptions.indices.obr.per_capita.gdp": { - "type": "parameter", - "parameter": "gov.economic_assumptions.indices.obr.per_capita.gdp", - "description": null, - "label": "gdp", - "unit": null, - "period": null, - "values": { - "2029-01-01": 1.38373, - "2028-01-01": 1.33953, - "2027-01-01": 1.29674, - "2026-01-01": 1.25775, - "2025-01-01": 1.22349, - "2024-01-01": 1.19017, - "2023-01-01": 1.1466, - "2022-01-01": 1.092, - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.economic_assumptions.indices.obr.per_capita.mixed_income": { - "type": "parameter", - "parameter": "gov.economic_assumptions.indices.obr.per_capita.mixed_income", - "description": null, - "label": "mixed income", - "unit": null, - "period": null, - "values": { - "2029-01-01": 1.36526, - "2028-01-01": 1.31528, - "2027-01-01": 1.26958, - "2026-01-01": 1.23141, - "2025-01-01": 1.19438, - "2024-01-01": 1.14076, - "2023-01-01": 1.08851, - "2022-01-01": 1.063, - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.economic_assumptions.indices.obr.per_capita.non_labour_income": { - "type": "parameter", - "parameter": "gov.economic_assumptions.indices.obr.per_capita.non_labour_income", - "description": null, - "label": "non labour income", - "unit": null, - "period": null, - "values": { - "2029-01-01": 1.55562, - "2028-01-01": 1.51031, - "2027-01-01": 1.46775, - "2026-01-01": 1.41402, - "2025-01-01": 1.34797, - "2024-01-01": 1.27528, - "2023-01-01": 1.19297, - "2022-01-01": 1.134, - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.economic_assumptions.indices.obr.house_prices": { - "type": "parameter", - "parameter": "gov.economic_assumptions.indices.obr.house_prices", - "description": null, - "label": "house prices", - "unit": null, - "period": null, - "values": { - "2029-01-01": 1.24217, - "2028-01-01": 1.21306, - "2027-01-01": 1.18579, - "2026-01-01": 1.15574, - "2025-01-01": 1.12755, - "2024-01-01": 1.10112, - "2023-01-01": 1.07217, - "2022-01-01": 1.083, - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.economic_assumptions.indices.obr.mortgage_interest": { - "type": "parameter", - "parameter": "gov.economic_assumptions.indices.obr.mortgage_interest", - "description": null, - "label": "mortgage interest", - "unit": null, - "period": null, - "values": { - "2029-01-01": 3.45509, - "2028-01-01": 3.29999, - "2027-01-01": 3.16698, - "2026-01-01": 2.92697, - "2025-01-01": 2.59944, - "2024-01-01": 2.28824, - "2023-01-01": 1.87407, - "2022-01-01": 1.262, - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.economic_assumptions.indices.obr.social_rent": { - "type": "parameter", - "parameter": "gov.economic_assumptions.indices.obr.social_rent", - "description": null, - "label": "social rent", - "unit": null, - "period": null, - "values": { - "2029-01-01": 1.39168, - "2028-01-01": 1.35115, - "2027-01-01": 1.3118, - "2026-01-01": 1.27483, - "2025-01-01": 1.22345, - "2024-01-01": 1.18437, - "2023-01-01": 1.11, - "2022-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.economic_assumptions.indices.obr.private_pension_index": { - "type": "parameter", - "parameter": "gov.economic_assumptions.indices.obr.private_pension_index", - "description": null, - "label": "private pension index", - "unit": null, - "period": null, - "values": { - "2029-01-01": 1.3457, - "2028-01-01": 1.31544, - "2027-01-01": 1.28838, - "2026-01-01": 1.26065, - "2025-01-01": 1.21567, - "2024-01-01": 1.1611, - "2023-01-01": 1.10581, - "2022-01-01": 1.05315, - "2021-01-01": 1.003, - "2020-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.economic_assumptions.indices.lagged_average_earnings": { - "type": "parameter", - "parameter": "gov.economic_assumptions.indices.lagged_average_earnings", - "description": null, - "label": "lagged average earnings", - "unit": null, - "period": null, - "values": { - "2029-01-01": 1.31825, - "2028-01-01": 1.28861, - "2027-01-01": 1.26211, - "2026-01-01": 1.23494, - "2025-01-01": 1.19088, - "2024-01-01": 1.13742, - "2023-01-01": 1.064, - "2022-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.economic_assumptions.indices.obr.lagged_cpi": { - "type": "parameter", - "parameter": "gov.economic_assumptions.indices.obr.lagged_cpi", - "description": null, - "label": "lagged cpi", - "unit": null, - "period": null, - "values": { - "2029-01-01": 1.68977, - "2028-01-01": 1.65664, - "2027-01-01": 1.62416, - "2026-01-01": 1.59388, - "2025-01-01": 1.54446, - "2024-01-01": 1.50974, - "2023-01-01": 1.42833, - "2022-01-01": 1.29848, - "2021-01-01": 1.24854, - "2020-01-01": 1.24109, - "2019-01-01": 1.22034, - "2018-01-01": 1.1929, - "2017-01-01": 1.16041, - "2016-01-01": 1.14778, - "2015-01-01": 1.14663, - "2014-01-01": 1.13415, - "2013-01-01": 1.10865, - "2012-01-01": 1.0795, - "2011-01-01": 1.035, - "2010-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.economic_assumptions.indices.ons": { - "type": "parameterNode", - "parameter": "gov.economic_assumptions.indices.ons", - "description": null, - "label": "ons", - "economy": true, - "household": true - }, - "gov.economic_assumptions.indices.ons.population": { - "type": "parameter", - "parameter": "gov.economic_assumptions.indices.ons.population", - "description": null, - "label": "population", - "unit": null, - "period": null, - "values": { - "2029-01-01": 1.06366, - "2028-01-01": 1.05837, - "2027-01-01": 1.05415, - "2026-01-01": 1.04578, - "2025-01-01": 1.03851, - "2024-01-01": 1.02721, - "2023-01-01": 1.01704, - "2022-01-01": 1.003, - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.economic_assumptions.indices.ofwat": { - "type": "parameterNode", - "parameter": "gov.economic_assumptions.indices.ofwat", - "description": null, - "label": "ofwat", - "economy": true, - "household": true - }, - "gov.economic_assumptions.indices.ofwat.water_bills": { - "type": "parameter", - "parameter": "gov.economic_assumptions.indices.ofwat.water_bills", - "description": null, - "label": "water bills", - "unit": null, - "period": null, - "values": { - "2029-01-01": 1.46028, - "2028-01-01": 1.40008, - "2027-01-01": 1.34882, - "2026-01-01": 1.28337, - "2025-01-01": 1.20959, - "2024-01-01": 1.14005, - "2023-01-01": 1.092, - "2022-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.economic_assumptions.indices.triple_lock": { - "type": "parameter", - "parameter": "gov.economic_assumptions.indices.triple_lock", - "description": null, - "label": "triple lock", - "unit": null, - "period": null, - "values": { - "2029-01-01": 1.37489, - "2028-01-01": 1.34136, - "2027-01-01": 1.30864, - "2026-01-01": 1.27672, - "2025-01-01": 1.23117, - "2024-01-01": 1.1759, - "2023-01-01": 1.1, - "2022-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.ofgem": { - "type": "parameterNode", - "parameter": "gov.ofgem", - "description": null, - "label": "Ofgem", - "economy": true, - "household": true - }, - "gov.ofgem.energy_price_cap": { - "type": "parameter", - "parameter": "gov.ofgem.energy_price_cap", - "description": "The default tariff energy price for Ofgem's central household (2,900kWh per annum in electricity consumption, 12,000kWh per annum for gas). The Energy Price Cap subsidy reduces household energy bills by the difference between this amount and the subsity target parameter level.", - "label": "Ofgem energy price level", - "unit": "currency-GBP", - "period": "year", - "values": { - "2025-07-01": 1720, - "2025-04-01": 1849, - "2023-10-01": 2389, - "2023-07-01": 2362, - "2023-04-01": 3280, - "2023-01-01": 4279, - "2022-10-01": 3764, - "2022-04-01": 2100, - "2021-10-01": 1370, - "2021-04-01": 1223, - "2020-10-01": 1121, - "2020-04-01": 1209, - "2019-10-01": 1227, - "2019-04-01": 1305, - "2018-10-01": 1186, - "2015-01-01": 1186 - }, - "economy": true, - "household": true - }, - "gov.ofgem.energy_price_guarantee": { - "type": "parameter", - "parameter": "gov.ofgem.energy_price_guarantee", - "description": "The capped default tariff energy price level for Ofgem's central household (2,900kWh per annum in electricity consumption, 12,000kWh per annum for gas). The Energy Price Cap subsidy reduces household bills to this level.", - "label": "Energy price guarantee", - "unit": "currency-GBP", - "period": "year", - "values": { - "2023-10-01": 3000, - "2023-07-01": 3000, - "2023-04-01": 2500, - "2023-01-01": 2500, - "2022-10-01": 2500, - "2022-04-01": 2100, - "2021-10-01": 1370, - "2021-04-01": 1223, - "2020-10-01": 1121, - "2020-04-01": 1209, - "2019-10-01": 1227, - "2019-04-01": 1305, - "2018-10-01": 1186, - "2015-01-01": 1186 - }, - "economy": true, - "household": true - }, - "gov.local_authorities": { - "type": "parameterNode", - "parameter": "gov.local_authorities", - "description": null, - "label": "Local Authorities", - "economy": true, - "household": true - }, - "gov.local_authorities.domestic_rates": { - "type": "parameterNode", - "parameter": "gov.local_authorities.domestic_rates", - "description": null, - "label": "Domestic Rates", - "economy": true, - "household": true - }, - "gov.local_authorities.domestic_rates.rates": { - "type": "parameterNode", - "parameter": "gov.local_authorities.domestic_rates.rates", - "description": "Annual domestic rates for each local authority.", - "label": "rates", - "economy": false, - "household": true - }, - "gov.local_authorities.domestic_rates.rates.ANTRIM_AND_NEWTOWNABBEY": { - "type": "parameter", - "parameter": "gov.local_authorities.domestic_rates.rates.ANTRIM_AND_NEWTOWNABBEY", - "description": null, - "label": "ANTRIM AND NEWTOWNABBEY", - "unit": null, - "period": null, - "values": { - "2022-01-01": 0.008292, - "2015-01-01": 0.008292 - }, - "economy": false, - "household": true - }, - "gov.local_authorities.domestic_rates.rates.ARDS_AND_NORTH_DOWN": { - "type": "parameter", - "parameter": "gov.local_authorities.domestic_rates.rates.ARDS_AND_NORTH_DOWN", - "description": null, - "label": "ARDS AND NORTH DOWN", - "unit": null, - "period": null, - "values": { - "2022-01-01": 0.008192, - "2015-01-01": 0.008192 - }, - "economy": false, - "household": true - }, - "gov.local_authorities.domestic_rates.rates.ARMAGH_CITY_BANBRIDGE_AND_CRAIGAVON": { - "type": "parameter", - "parameter": "gov.local_authorities.domestic_rates.rates.ARMAGH_CITY_BANBRIDGE_AND_CRAIGAVON", - "description": null, - "label": "ARMAGH CITY BANBRIDGE AND CRAIGAVON", - "unit": null, - "period": null, - "values": { - "2022-01-01": 0.00917, - "2015-01-01": 0.00917 - }, - "economy": false, - "household": true - }, - "gov.local_authorities.domestic_rates.rates.BELFAST": { - "type": "parameter", - "parameter": "gov.local_authorities.domestic_rates.rates.BELFAST", - "description": null, - "label": "BELFAST", - "unit": null, - "period": null, - "values": { - "2022-01-01": 0.008136, - "2015-01-01": 0.008136 - }, - "economy": false, - "household": true - }, - "gov.local_authorities.domestic_rates.rates.CAUSEWAY_COAST_AND_GLENS": { - "type": "parameter", - "parameter": "gov.local_authorities.domestic_rates.rates.CAUSEWAY_COAST_AND_GLENS", - "description": null, - "label": "CAUSEWAY COAST AND GLENS", - "unit": null, - "period": null, - "values": { - "2022-01-01": 0.008702, - "2015-01-01": 0.008702 - }, - "economy": false, - "household": true - }, - "gov.local_authorities.domestic_rates.rates.DERRY_CITY_AND_STRABANE": { - "type": "parameter", - "parameter": "gov.local_authorities.domestic_rates.rates.DERRY_CITY_AND_STRABANE", - "description": null, - "label": "DERRY CITY AND STRABANE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 0.009853, - "2015-01-01": 0.009853 - }, - "economy": false, - "household": true - }, - "gov.local_authorities.domestic_rates.rates.FERMANAGH_AND_OMAGH": { - "type": "parameter", - "parameter": "gov.local_authorities.domestic_rates.rates.FERMANAGH_AND_OMAGH", - "description": null, - "label": "FERMANAGH AND OMAGH", - "unit": null, - "period": null, - "values": { - "2022-01-01": 0.008393, - "2015-01-01": 0.008393 - }, - "economy": false, - "household": true - }, - "gov.local_authorities.domestic_rates.rates.LISBURN_AND_CASTLEREAGH": { - "type": "parameter", - "parameter": "gov.local_authorities.domestic_rates.rates.LISBURN_AND_CASTLEREAGH", - "description": null, - "label": "LISBURN AND CASTLEREAGH", - "unit": null, - "period": null, - "values": { - "2022-01-01": 0.007847, - "2015-01-01": 0.007847 - }, - "economy": false, - "household": true - }, - "gov.local_authorities.domestic_rates.rates.MID_AND_EAST_ANTRIM": { - "type": "parameter", - "parameter": "gov.local_authorities.domestic_rates.rates.MID_AND_EAST_ANTRIM", - "description": null, - "label": "MID AND EAST ANTRIM", - "unit": null, - "period": null, - "values": { - "2022-01-01": 0.009149, - "2015-01-01": 0.009149 - }, - "economy": false, - "household": true - }, - "gov.local_authorities.domestic_rates.rates.MID_ULSTER": { - "type": "parameter", - "parameter": "gov.local_authorities.domestic_rates.rates.MID_ULSTER", - "description": null, - "label": "MID ULSTER", - "unit": null, - "period": null, - "values": { - "2022-01-01": 0.008079, - "2015-01-01": 0.008079 - }, - "economy": false, - "household": true - }, - "gov.local_authorities.domestic_rates.rates.NEWRY_MOURNE_AND_DOWN": { - "type": "parameter", - "parameter": "gov.local_authorities.domestic_rates.rates.NEWRY_MOURNE_AND_DOWN", - "description": null, - "label": "NEWRY MOURNE AND DOWN", - "unit": null, - "period": null, - "values": { - "2022-01-01": 0.00872, - "2015-01-01": 0.00872 - }, - "economy": false, - "household": true - }, - "gov.benefit_uprating_cpi": { - "type": "parameter", - "parameter": "gov.benefit_uprating_cpi", - "description": "Most recent September CPIH index value, updated for each uprating occurrence (2005=100)", - "label": "Benefit uprating index", - "unit": null, - "period": null, - "values": { - "2029-01-01": 193.4448696, - "2028-01-01": 189.6521472, - "2027-01-01": 185.9338368, - "2026-01-01": 182.4673824, - "2025-01-01": 176.8097808, - "2024-01-01": 172.8350352, - "2023-01-01": 163.5152184, - "2022-01-01": 148.6499904, - "2021-01-01": 142.9328592, - "2020-01-01": 142.0799832, - "2019-01-01": 139.7045232, - "2018-01-01": 136.563192, - "2017-01-01": 132.8437368, - "2016-01-01": 131.3978544, - "2015-01-01": 131.2662024, - "2014-01-01": 129.837492, - "2013-01-01": 126.918252, - "2012-01-01": 123.58116, - "2011-01-01": 118.4868, - "2010-01-01": 114.48, - "2005-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.dfe": { - "type": "parameterNode", - "parameter": "gov.dfe", - "description": null, - "label": "Department for Education", - "economy": true, - "household": true - }, - "gov.dfe.education_spending": { - "type": "parameter", - "parameter": "gov.dfe.education_spending", - "description": "Total spending by the Department for Education (DfE) on state education services (£ billions). Includes both Resource Departmental Expenditure Limit and Capital Departmental Expenditure Limit, but excludes depreciation.", - "label": "DfE budget", - "unit": "currency-GBP", - "period": null, - "values": { - "2034-01-01": 175.19259700164, - "2033-01-01": 164.774801342474, - "2032-01-01": 154.976497992079, - "2031-01-01": 145.760848953898, - "2030-01-01": 137.093206796085, - "2029-01-01": 128.940984389974, - "2028-01-01": 121.273532394535, - "2027-01-01": 114.062024026178, - "2026-01-01": 107.279346680717, - "2025-01-01": 100.9, - "2024-01-01": 94.9, - "2023-01-01": 88, - "2015-01-01": 88 - }, - "economy": true, - "household": true - }, - "gov.dfe.childcare_funding_rate": { - "type": "parameterNode", - "parameter": "gov.dfe.childcare_funding_rate", - "description": "The Department for Education converts childcare hours into expenses for childcare entitlement at these rates.", - "label": "Childcare entitlement hourly rates by age" - }, - "gov.dfe.childcare_funding_rate[0]": { - "type": "parameterNode", - "parameter": "gov.dfe.childcare_funding_rate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.dfe.childcare_funding_rate[0].threshold": { - "type": "parameter", - "parameter": "gov.dfe.childcare_funding_rate[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.dfe.childcare_funding_rate[0].amount": { - "type": "parameter", - "parameter": "gov.dfe.childcare_funding_rate[0].amount", - "description": null, - "label": "amount", - "unit": "currency-GBP", - "period": null, - "values": { - "2029-01-01": 12.5579367308278, - "2028-01-01": 12.3117230781459, - "2027-01-01": 12.0703400585531, - "2026-01-01": 11.8453068740313, - "2025-01-01": 11.4780301243923, - "2024-04-01": 11.22, - "2015-01-01": 11.22 - }, - "economy": true, - "household": true - }, - "gov.dfe.childcare_funding_rate[1]": { - "type": "parameterNode", - "parameter": "gov.dfe.childcare_funding_rate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.dfe.childcare_funding_rate[1].threshold": { - "type": "parameter", - "parameter": "gov.dfe.childcare_funding_rate[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.dfe.childcare_funding_rate[1].amount": { - "type": "parameter", - "parameter": "gov.dfe.childcare_funding_rate[1].amount", - "description": null, - "label": "amount", - "unit": "currency-GBP", - "period": null, - "values": { - "2029-01-01": 9.26735437889968, - "2028-01-01": 9.08565660312372, - "2027-01-01": 8.90752367957397, - "2026-01-01": 8.74145640971293, - "2025-01-01": 8.47041795276008, - "2024-04-01": 8.28, - "2015-01-01": 8.28 - }, - "economy": true, - "household": true - }, - "gov.dfe.childcare_funding_rate[2]": { - "type": "parameterNode", - "parameter": "gov.dfe.childcare_funding_rate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.dfe.childcare_funding_rate[2].threshold": { - "type": "parameter", - "parameter": "gov.dfe.childcare_funding_rate[2].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.dfe.childcare_funding_rate[2].amount": { - "type": "parameter", - "parameter": "gov.dfe.childcare_funding_rate[2].amount", - "description": null, - "label": "amount", - "unit": "currency-GBP", - "period": null, - "values": { - "2029-01-01": 6.58116470385629, - "2028-01-01": 6.45213295004438, - "2027-01-01": 6.32563275795832, - "2026-01-01": 6.20770092863672, - "2025-01-01": 6.0152243432644, - "2024-04-01": 5.88, - "2015-01-01": 5.88 - }, - "economy": true, - "household": true - }, - "gov.dfe.compulsory_school_age": { - "type": "parameterNode", - "parameter": "gov.dfe.compulsory_school_age", - "description": "The Department for Education requires children to receive full-time education in this age range.", - "label": "compulsory school age status" - }, - "gov.dfe.compulsory_school_age[0]": { - "type": "parameterNode", - "parameter": "gov.dfe.compulsory_school_age[0]", - "description": null, - "label": "bracket 1" - }, - "gov.dfe.compulsory_school_age[0].threshold": { - "type": "parameter", - "parameter": "gov.dfe.compulsory_school_age[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.dfe.compulsory_school_age[0].amount": { - "type": "parameter", - "parameter": "gov.dfe.compulsory_school_age[0].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.dfe.compulsory_school_age[1]": { - "type": "parameterNode", - "parameter": "gov.dfe.compulsory_school_age[1]", - "description": null, - "label": "bracket 2" - }, - "gov.dfe.compulsory_school_age[1].threshold": { - "type": "parameter", - "parameter": "gov.dfe.compulsory_school_age[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2015-01-01": 5 - }, - "economy": true, - "household": true - }, - "gov.dfe.compulsory_school_age[1].amount": { - "type": "parameter", - "parameter": "gov.dfe.compulsory_school_age[1].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.dfe.compulsory_school_age[2]": { - "type": "parameterNode", - "parameter": "gov.dfe.compulsory_school_age[2]", - "description": null, - "label": "bracket 3" - }, - "gov.dfe.compulsory_school_age[2].threshold": { - "type": "parameter", - "parameter": "gov.dfe.compulsory_school_age[2].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2015-01-01": 16 - }, - "economy": true, - "household": true - }, - "gov.dfe.compulsory_school_age[2].amount": { - "type": "parameter", - "parameter": "gov.dfe.compulsory_school_age[2].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.dfe.weeks_per_year": { - "type": "parameter", - "parameter": "gov.dfe.weeks_per_year", - "description": "The Department for Education provides targeted, extended, and universal childcare entitlement for these weeks per year.", - "label": "childcare entitlement weeks per year", - "unit": "week", - "period": "year", - "values": { - "2016-01-01": 38, - "2015-01-01": 38 - }, - "economy": true, - "household": true - }, - "gov.dfe.care_to_learn": { - "type": "parameterNode", - "parameter": "gov.dfe.care_to_learn", - "description": null, - "label": "care to learn", - "economy": true, - "household": true - }, - "gov.dfe.care_to_learn.age_limit": { - "type": "parameter", - "parameter": "gov.dfe.care_to_learn.age_limit", - "description": "The Department for Education limits Care to Learn eligibility to carers younger than this age.", - "label": "maximum age to be eligible for the Care to Learn scheme", - "unit": "year", - "period": "year", - "values": { - "2015-01-01": 20 - }, - "economy": true, - "household": true - }, - "gov.dfe.care_to_learn.amount": { - "type": "parameterNode", - "parameter": "gov.dfe.care_to_learn.amount", - "description": "The Department for Education provides this amount of financial support through the Care to Learn scheme.", - "label": "amount", - "economy": true, - "household": true - }, - "gov.dfe.care_to_learn.amount.in_london": { - "type": "parameter", - "parameter": "gov.dfe.care_to_learn.amount.in_london", - "description": "The Department for Education provides this amount of financial support through the Care to Learn scheme for those living in London.", - "label": "maximum weekly amount per child in London", - "unit": "currency-GBP", - "period": "week", - "values": { - "2024-01-01": 195, - "2015-01-01": 195 - }, - "economy": true, - "household": true - }, - "gov.dfe.care_to_learn.amount.outside_london": { - "type": "parameter", - "parameter": "gov.dfe.care_to_learn.amount.outside_london", - "description": "The Department for Education provides this amount of financial support through the Care to Learn scheme for those living outside London.", - "label": "maximum weekly amount per child outside London", - "unit": "currency-GBP", - "period": "week", - "values": { - "2024-01-01": 180, - "2015-01-01": 180 - }, - "economy": true, - "household": true - }, - "gov.dfe.extended_childcare_entitlement": { - "type": "parameterNode", - "parameter": "gov.dfe.extended_childcare_entitlement", - "description": null, - "label": "extended childcare entitlement", - "economy": true, - "household": true - }, - "gov.dfe.extended_childcare_entitlement.minimum_weekly_hours": { - "type": "parameter", - "parameter": "gov.dfe.extended_childcare_entitlement.minimum_weekly_hours", - "description": "The Department for Education limits extended childcare entitlement to benefit units in which each spouse earns at least the product of their minimum wage and this number of hours per week.", - "label": "Extended childcare entitlement weekly work hours minimum", - "unit": "hour", - "period": "year", - "values": { - "2016-01-01": 16, - "2015-01-01": 16 - }, - "economy": true, - "household": true - }, - "gov.dfe.extended_childcare_entitlement.hours": { - "type": "parameterNode", - "parameter": "gov.dfe.extended_childcare_entitlement.hours", - "description": "The Department for Education provides this number of free childcare hours per week through the extended childcare entitlement scheme, depending on the child's age.", - "label": "Extended childcare entitlement hours by age" - }, - "gov.dfe.extended_childcare_entitlement.hours[0]": { - "type": "parameterNode", - "parameter": "gov.dfe.extended_childcare_entitlement.hours[0]", - "description": null, - "label": "bracket 1" - }, - "gov.dfe.extended_childcare_entitlement.hours[0].threshold": { - "type": "parameter", - "parameter": "gov.dfe.extended_childcare_entitlement.hours[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.dfe.extended_childcare_entitlement.hours[0].amount": { - "type": "parameter", - "parameter": "gov.dfe.extended_childcare_entitlement.hours[0].amount", - "description": null, - "label": "amount", - "unit": "hour", - "period": null, - "values": { - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.dfe.extended_childcare_entitlement.hours[1]": { - "type": "parameterNode", - "parameter": "gov.dfe.extended_childcare_entitlement.hours[1]", - "description": null, - "label": "bracket 2" - }, - "gov.dfe.extended_childcare_entitlement.hours[1].threshold": { - "type": "parameter", - "parameter": "gov.dfe.extended_childcare_entitlement.hours[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2025-01-01": 0.75, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.dfe.extended_childcare_entitlement.hours[1].amount": { - "type": "parameter", - "parameter": "gov.dfe.extended_childcare_entitlement.hours[1].amount", - "description": null, - "label": "amount", - "unit": "hour", - "period": null, - "values": { - "2026-01-01": 30, - "2025-01-01": 15, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.dfe.extended_childcare_entitlement.hours[2]": { - "type": "parameterNode", - "parameter": "gov.dfe.extended_childcare_entitlement.hours[2]", - "description": null, - "label": "bracket 3" - }, - "gov.dfe.extended_childcare_entitlement.hours[2].threshold": { - "type": "parameter", - "parameter": "gov.dfe.extended_childcare_entitlement.hours[2].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.dfe.extended_childcare_entitlement.hours[2].amount": { - "type": "parameter", - "parameter": "gov.dfe.extended_childcare_entitlement.hours[2].amount", - "description": null, - "label": "amount", - "unit": "hour", - "period": null, - "values": { - "2026-01-01": 30, - "2024-01-01": 15, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.dfe.extended_childcare_entitlement.hours[3]": { - "type": "parameterNode", - "parameter": "gov.dfe.extended_childcare_entitlement.hours[3]", - "description": null, - "label": "bracket 4" - }, - "gov.dfe.extended_childcare_entitlement.hours[3].threshold": { - "type": "parameter", - "parameter": "gov.dfe.extended_childcare_entitlement.hours[3].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.dfe.extended_childcare_entitlement.hours[3].amount": { - "type": "parameter", - "parameter": "gov.dfe.extended_childcare_entitlement.hours[3].amount", - "description": null, - "label": "amount", - "unit": "hour", - "period": null, - "values": { - "2015-01-01": 30 - }, - "economy": true, - "household": true - }, - "gov.dfe.extended_childcare_entitlement.hours[4]": { - "type": "parameterNode", - "parameter": "gov.dfe.extended_childcare_entitlement.hours[4]", - "description": null, - "label": "bracket 5" - }, - "gov.dfe.extended_childcare_entitlement.hours[4].threshold": { - "type": "parameter", - "parameter": "gov.dfe.extended_childcare_entitlement.hours[4].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2015-01-01": 4 - }, - "economy": true, - "household": true - }, - "gov.dfe.extended_childcare_entitlement.hours[4].amount": { - "type": "parameter", - "parameter": "gov.dfe.extended_childcare_entitlement.hours[4].amount", - "description": null, - "label": "amount", - "unit": "hour", - "period": null, - "values": { - "2015-01-01": 30 - }, - "economy": true, - "household": true - }, - "gov.dfe.extended_childcare_entitlement.hours[5]": { - "type": "parameterNode", - "parameter": "gov.dfe.extended_childcare_entitlement.hours[5]", - "description": null, - "label": "bracket 6" - }, - "gov.dfe.extended_childcare_entitlement.hours[5].threshold": { - "type": "parameter", - "parameter": "gov.dfe.extended_childcare_entitlement.hours[5].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2015-01-01": 5 - }, - "economy": true, - "household": true - }, - "gov.dfe.extended_childcare_entitlement.hours[5].amount": { - "type": "parameter", - "parameter": "gov.dfe.extended_childcare_entitlement.hours[5].amount", - "description": null, - "label": "amount", - "unit": "hour", - "period": null, - "values": { - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.dfe.extended_childcare_entitlement.income": { - "type": "parameterNode", - "parameter": "gov.dfe.extended_childcare_entitlement.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.dfe.extended_childcare_entitlement.income.limit": { - "type": "parameter", - "parameter": "gov.dfe.extended_childcare_entitlement.income.limit", - "description": "The Department for Education limits extended childcare entitlement eligibility to households where each parent's individual income is less than this amount.", - "label": "Extended childcare entitlement individual income limit", - "unit": "currency-GBP", - "period": "year", - "values": { - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.dfe.extended_childcare_entitlement.income.countable_sources": { - "type": "parameter", - "parameter": "gov.dfe.extended_childcare_entitlement.income.countable_sources", - "description": "The Department for Education includes these income sources when determining eligibility for extended childcare entitlement.", - "label": "Extended childcare entitlement countable income sources", - "unit": "program", - "period": "year", - "values": { - "2015-01-01": ["employment_income", "self_employment_income"] - }, - "economy": true, - "household": true - }, - "gov.dfe.extended_childcare_entitlement.disability_criteria": { - "type": "parameter", - "parameter": "gov.dfe.extended_childcare_entitlement.disability_criteria", - "description": "The Department for Education exempts participants in these programs from work requirements of extended childcare entitlement.", - "label": "Extended childcare entitlement disability criteria", - "unit": "program", - "period": "year", - "values": { - "2015-09-01": ["carers_allowance", "esa_contrib", "incapacity_benefit", "sda"], - "2015-01-01": ["carers_allowance", "esa_contrib", "incapacity_benefit", "sda"] - }, - "economy": true, - "household": true - }, - "gov.dfe.universal_childcare_entitlement": { - "type": "parameterNode", - "parameter": "gov.dfe.universal_childcare_entitlement", - "description": null, - "label": "universal childcare entitlement", - "economy": true, - "household": true - }, - "gov.dfe.universal_childcare_entitlement.hours": { - "type": "parameter", - "parameter": "gov.dfe.universal_childcare_entitlement.hours", - "description": "The Department for Education provides this number of hours per year of childcare for universal childcare entitlement in England.", - "label": "universal childcare entitlement hours", - "unit": "hour", - "period": null, - "values": { - "2015-01-01": 570 - }, - "economy": true, - "household": true - }, - "gov.dfe.universal_childcare_entitlement.min_age": { - "type": "parameter", - "parameter": "gov.dfe.universal_childcare_entitlement.min_age", - "description": "The Department for Education limits universal childcare entitlement in England to children this age or older.", - "label": "universal childcare entitlement child's minimum age", - "unit": "year", - "period": null, - "values": { - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.dfe.universal_childcare_entitlement.max_age": { - "type": "parameter", - "parameter": "gov.dfe.universal_childcare_entitlement.max_age", - "description": "The Department for Education limits universal childcare entitlement in England to children younger than this age.", - "label": "universal childcare entitlement child's maximum age", - "unit": "year", - "period": null, - "values": { - "2015-01-01": 5 - }, - "economy": true, - "household": true - }, - "gov.dfe.targeted_childcare_entitlement": { - "type": "parameterNode", - "parameter": "gov.dfe.targeted_childcare_entitlement", - "description": null, - "label": "targeted childcare entitlement", - "economy": true, - "household": true - }, - "gov.dfe.targeted_childcare_entitlement.qualifying_benefits": { - "type": "parameter", - "parameter": "gov.dfe.targeted_childcare_entitlement.qualifying_benefits", - "description": "The Department for Education designates these programs as qualifying benefits for the targeted childcare entitlement eligibility (the 2-year-old entitlement) in England.", - "label": "qualifying benefits for targeted childcare entitlement", - "unit": "program", - "period": "year", - "values": { - "2014-01-01": ["income_support", "jsa_income", "esa_income", "guarantee_credit"] - }, - "economy": true, - "household": true - }, - "gov.dfe.targeted_childcare_entitlement.hours_entitlement": { - "type": "parameter", - "parameter": "gov.dfe.targeted_childcare_entitlement.hours_entitlement", - "description": "The Department for Education provides this number of hours of free childcare under the targeted childcare entitlement.", - "label": "targeted childcare entitlement hours", - "unit": "hour", - "period": null, - "values": { - "2014-01-01": 570 - }, - "economy": true, - "household": true - }, - "gov.dfe.targeted_childcare_entitlement.age_eligibility": { - "type": "parameterNode", - "parameter": "gov.dfe.targeted_childcare_entitlement.age_eligibility", - "description": "The Department for Education considers these age conditions for eligibility for targeted childcare entitlement.", - "label": "age eligibility for targeted childcare entitlement" - }, - "gov.dfe.targeted_childcare_entitlement.age_eligibility[0]": { - "type": "parameterNode", - "parameter": "gov.dfe.targeted_childcare_entitlement.age_eligibility[0]", - "description": null, - "label": "bracket 1" - }, - "gov.dfe.targeted_childcare_entitlement.age_eligibility[0].threshold": { - "type": "parameter", - "parameter": "gov.dfe.targeted_childcare_entitlement.age_eligibility[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2014-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.dfe.targeted_childcare_entitlement.age_eligibility[0].amount": { - "type": "parameter", - "parameter": "gov.dfe.targeted_childcare_entitlement.age_eligibility[0].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2014-01-01": false - }, - "economy": true, - "household": true - }, - "gov.dfe.targeted_childcare_entitlement.age_eligibility[1]": { - "type": "parameterNode", - "parameter": "gov.dfe.targeted_childcare_entitlement.age_eligibility[1]", - "description": null, - "label": "bracket 2" - }, - "gov.dfe.targeted_childcare_entitlement.age_eligibility[1].threshold": { - "type": "parameter", - "parameter": "gov.dfe.targeted_childcare_entitlement.age_eligibility[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2014-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.dfe.targeted_childcare_entitlement.age_eligibility[1].amount": { - "type": "parameter", - "parameter": "gov.dfe.targeted_childcare_entitlement.age_eligibility[1].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2014-01-01": true - }, - "economy": true, - "household": true - }, - "gov.dfe.targeted_childcare_entitlement.age_eligibility[2]": { - "type": "parameterNode", - "parameter": "gov.dfe.targeted_childcare_entitlement.age_eligibility[2]", - "description": null, - "label": "bracket 3" - }, - "gov.dfe.targeted_childcare_entitlement.age_eligibility[2].threshold": { - "type": "parameter", - "parameter": "gov.dfe.targeted_childcare_entitlement.age_eligibility[2].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2014-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.dfe.targeted_childcare_entitlement.age_eligibility[2].amount": { - "type": "parameter", - "parameter": "gov.dfe.targeted_childcare_entitlement.age_eligibility[2].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2014-01-01": false - }, - "economy": true, - "household": true - }, - "gov.dfe.targeted_childcare_entitlement.income_limit": { - "type": "parameterNode", - "parameter": "gov.dfe.targeted_childcare_entitlement.income_limit", - "description": null, - "label": "income limit", - "economy": true, - "household": true - }, - "gov.dfe.targeted_childcare_entitlement.income_limit.universal_credit": { - "type": "parameter", - "parameter": "gov.dfe.targeted_childcare_entitlement.income_limit.universal_credit", - "description": "The Department for Education qualifies Universal Credit recipients for targeted childcare entitlement if their income does not exceed this threshold.", - "label": "income limit for universal credit recipients to access benefit-targeted free childcare", - "unit": "currency-GBP", - "period": "year", - "values": { - "2018-01-01": 15400, - "2015-01-01": 15400 - }, - "economy": true, - "household": true - }, - "gov.dfe.targeted_childcare_entitlement.income_limit.tax_credits": { - "type": "parameter", - "parameter": "gov.dfe.targeted_childcare_entitlement.income_limit.tax_credits", - "description": "The Department for Education qualifies recipients of the Working Tax Credit or Child Tax Credit for targeted childcare entitlement if their income does not exceed this threshold.", - "label": "income limit for tax credit recipients to access benefit-targeted free childcare", - "unit": "currency-GBP", - "period": "year", - "values": { - "2014-01-01": 16190 - }, - "economy": true, - "household": true - }, - "gov.dfe.targeted_childcare_entitlement.qualifying_criteria": { - "type": "parameter", - "parameter": "gov.dfe.targeted_childcare_entitlement.qualifying_criteria", - "description": "The Department for Education designates these variables that determine qualification for targeted childcare entitlement beyond qualifying benefits.", - "label": "qualifying criteria for targeted childcare entitlement", - "unit": "program", - "period": "year", - "values": { - "2014-01-01": [ - "meets_universal_credit_criteria_for_targeted_childcare_entitlement", - "meets_tax_credit_criteria_for_targeted_childcare_entitlement" - ] - }, - "economy": true, - "household": true - }, - "gov.dft": { - "type": "parameterNode", - "parameter": "gov.dft", - "description": null, - "label": "Department for Transport", - "economy": true, - "household": true - }, - "gov.dft.spending": { - "type": "parameter", - "parameter": "gov.dft.spending", - "description": "Total spending by the Department for Transport (DfT). Includes both Resource Departmental Expenditure Limit and Capital Departmental Expenditure Limit, but excludes depreciation.", - "label": "DfT budget", - "unit": "currency-GBP", - "period": null, - "values": { - "2034-01-01": 42.0807018682969, - "2033-01-01": 40.5428689096548, - "2032-01-01": 39.0612358265777, - "2031-01-01": 37.6337488030151, - "2030-01-01": 36.2584290793169, - "2029-01-01": 34.9333702093086, - "2028-01-01": 33.6567354176063, - "2027-01-01": 32.4267550535077, - "2026-01-01": 31.241724137931, - "2025-01-01": 30.1, - "2024-01-01": 29, - "2023-01-01": 30, - "2015-01-01": 30 - }, - "economy": true, - "household": true - }, - "gov.hmrc": { - "type": "parameterNode", - "parameter": "gov.hmrc", - "description": null, - "label": "HMRC", - "economy": true, - "household": true - }, - "gov.hmrc.tax_free_childcare": { - "type": "parameterNode", - "parameter": "gov.hmrc.tax_free_childcare", - "description": null, - "label": "tax free childcare", - "economy": true, - "household": true - }, - "gov.hmrc.tax_free_childcare.minimum_weekly_hours": { - "type": "parameter", - "parameter": "gov.hmrc.tax_free_childcare.minimum_weekly_hours", - "description": "HMRC limits tax-free childcare to benefit units in which each spouse earns at least the product of their minimum wage and this number of hours per week.", - "label": "tax-free childcare weekly work hours minimum", - "unit": "hour", - "period": "year", - "values": { - "2016-01-01": 16, - "2015-01-01": 16 - }, - "economy": true, - "household": true - }, - "gov.hmrc.tax_free_childcare.income": { - "type": "parameterNode", - "parameter": "gov.hmrc.tax_free_childcare.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.hmrc.tax_free_childcare.income.income_limit": { - "type": "parameter", - "parameter": "gov.hmrc.tax_free_childcare.income.income_limit", - "description": "HMRC limits tax-free childcare eligibility to households where individual adjusted income does not exceed this yearly threshold.", - "label": "tax-free childcare maximum adjusted income threshold", - "unit": "currency-GBP", - "period": "year", - "values": { - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.hmrc.tax_free_childcare.income.countable_sources": { - "type": "parameter", - "parameter": "gov.hmrc.tax_free_childcare.income.countable_sources", - "description": "HMRC includes these income sources when determining eligibility for Tax-Free Childcare.", - "label": "tax-free childcare countable income sources", - "unit": "program", - "period": "year", - "values": { - "2015-01-01": ["employment_income", "self_employment_income"] - }, - "economy": true, - "household": true - }, - "gov.hmrc.tax_free_childcare.disqualifying_benefits": { - "type": "parameter", - "parameter": "gov.hmrc.tax_free_childcare.disqualifying_benefits", - "description": "HMRC limits Tax-Free Childcare to benefit units that do not receive any of these programs.", - "label": "tax-free childcare disqualifying benefits", - "unit": "program", - "period": "year", - "values": { - "2015-01-01": ["working_tax_credit", "child_tax_credit", "universal_credit"] - }, - "economy": true, - "household": true - }, - "gov.hmrc.tax_free_childcare.age": { - "type": "parameterNode", - "parameter": "gov.hmrc.tax_free_childcare.age", - "description": null, - "label": "age", - "economy": true, - "household": true - }, - "gov.hmrc.tax_free_childcare.age.standard": { - "type": "parameter", - "parameter": "gov.hmrc.tax_free_childcare.age.standard", - "description": "HMRC extends the tax-free childcare program eligibility to children up to this age threshold.", - "label": "tax-free childcare standard age limit", - "unit": "year", - "period": "year", - "values": { - "2015-01-01": 12 - }, - "economy": true, - "household": true - }, - "gov.hmrc.tax_free_childcare.age.disability": { - "type": "parameter", - "parameter": "gov.hmrc.tax_free_childcare.age.disability", - "description": "HMRC extends the tax-free childcare program eligibility to children with disabilities up to this age threshold.", - "label": "tax-free childcare disability age limit", - "unit": "year", - "period": "year", - "values": { - "2015-01-01": 17 - }, - "economy": true, - "household": true - }, - "gov.hmrc.tax_free_childcare.contribution": { - "type": "parameterNode", - "parameter": "gov.hmrc.tax_free_childcare.contribution", - "description": null, - "label": "contribution", - "economy": true, - "household": true - }, - "gov.hmrc.tax_free_childcare.contribution.standard_child": { - "type": "parameter", - "parameter": "gov.hmrc.tax_free_childcare.contribution.standard_child", - "description": "HMRC provides tax-free childcare contribution up to this yearly amount for households with children under standard eligibility.", - "label": "tax-free childcare standard yearly limit", - "unit": "currency-GBP", - "period": "year", - "values": { - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.hmrc.tax_free_childcare.contribution.disabled_child": { - "type": "parameter", - "parameter": "gov.hmrc.tax_free_childcare.contribution.disabled_child", - "description": "HMRC provides tax-free childcare contribution up to this yearly amount for households with disabled children.", - "label": "tax-free childcare disabled child yearly limit", - "unit": "currency-GBP", - "period": "year", - "values": { - "2015-01-01": 4000 - }, - "economy": true, - "household": true - }, - "gov.hmrc.tax_free_childcare.contribution.rate": { - "type": "parameter", - "parameter": "gov.hmrc.tax_free_childcare.contribution.rate", - "description": "The government contribution to childcare expenses (as a percentage of total household and government contributions) is this percentage.", - "label": "tax-free childcare contribution rate", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.hmrc.fuel_duty": { - "type": "parameterNode", - "parameter": "gov.hmrc.fuel_duty", - "description": null, - "label": "Fuel duty", - "economy": true, - "household": true - }, - "gov.hmrc.fuel_duty.petrol_and_diesel": { - "type": "parameter", - "parameter": "gov.hmrc.fuel_duty.petrol_and_diesel", - "description": "Fuel duty rate per litre of petrol and diesel.", - "label": "Fuel duty rate (petrol and diesel)", - "unit": "currency-GBP", - "period": null, - "values": { - "2029-01-01": 0.56687999052173, - "2028-01-01": 0.553052707686512, - "2027-01-01": 0.54061844799407, - "2026-03-22": 0.5295, - "2025-04-01": 0.5795, - "2023-04-01": 0.5295, - "2022-03-23": 0.5295, - "2021-01-01": 0.5795, - "2013-04-01": 0.5795, - "2012-01-01": 0.6097, - "2011-03-23": 0.5795, - "2011-01-01": 0.5895, - "2010-10-01": 0.5819, - "2010-04-01": 0.5719 - }, - "economy": true, - "household": true - }, - "gov.hmrc.business_rates": { - "type": "parameterNode", - "parameter": "gov.hmrc.business_rates", - "description": null, - "label": "Business rates", - "economy": true, - "household": true - }, - "gov.hmrc.business_rates.statistics": { - "type": "parameterNode", - "parameter": "gov.hmrc.business_rates.statistics", - "description": null, - "label": "statistics", - "economy": false, - "household": true - }, - "gov.hmrc.business_rates.statistics.revenue": { - "type": "parameterNode", - "parameter": "gov.hmrc.business_rates.statistics.revenue", - "description": "Total revenue raised by Business Rates", - "label": "revenue", - "economy": false, - "household": true - }, - "gov.hmrc.business_rates.statistics.revenue.ENGLAND": { - "type": "parameter", - "parameter": "gov.hmrc.business_rates.statistics.revenue.ENGLAND", - "description": null, - "label": "ENGLAND", - "unit": null, - "period": null, - "values": { - "2021-01-01": 27222000000, - "2020-01-01": 16403000000, - "2019-01-01": 24967000000, - "2015-01-01": 24967000000 - }, - "economy": false, - "household": true - }, - "gov.hmrc.business_rates.statistics.revenue.NORTHERN_IRELAND": { - "type": "parameter", - "parameter": "gov.hmrc.business_rates.statistics.revenue.NORTHERN_IRELAND", - "description": null, - "label": "NORTHERN IRELAND", - "unit": null, - "period": null, - "values": { - "2018-01-01": 1334000000, - "2015-01-01": 1334000000 - }, - "economy": false, - "household": true - }, - "gov.hmrc.business_rates.statistics.revenue.SCOTLAND": { - "type": "parameter", - "parameter": "gov.hmrc.business_rates.statistics.revenue.SCOTLAND", - "description": null, - "label": "SCOTLAND", - "unit": null, - "period": null, - "values": { - "2021-01-01": 2123000000, - "2020-01-01": 1912000000, - "2015-01-01": 1912000000 - }, - "economy": false, - "household": true - }, - "gov.hmrc.business_rates.statistics.revenue.WALES": { - "type": "parameter", - "parameter": "gov.hmrc.business_rates.statistics.revenue.WALES", - "description": null, - "label": "WALES", - "unit": null, - "period": null, - "values": { - "2020-01-01": 1053499000, - "2015-01-01": 1053499000 - }, - "economy": false, - "household": true - }, - "gov.hmrc.cgt": { - "type": "parameterNode", - "parameter": "gov.hmrc.cgt", - "description": null, - "label": "Capital Gains Tax", - "economy": true, - "household": true - }, - "gov.hmrc.cgt.basic_rate": { - "type": "parameter", - "parameter": "gov.hmrc.cgt.basic_rate", - "description": "Capital gains tax rate on basic rate taxpayers. This parameter is under active development and reforms including it should not be cited.", - "label": "Capital Gains Tax basic rate", - "unit": "/1", - "period": null, - "values": { - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.hmrc.cgt.additional_rate": { - "type": "parameter", - "parameter": "gov.hmrc.cgt.additional_rate", - "description": "Capital gains tax rate on additional rate taxpayers. This parameter is under active development and reforms including it should not be cited.", - "label": "Capital Gains Tax additional rate", - "unit": "/1", - "period": null, - "values": { - "2015-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.hmrc.cgt.higher_rate": { - "type": "parameter", - "parameter": "gov.hmrc.cgt.higher_rate", - "description": "Capital gains tax rate on higher rate taxpayers. This parameter is under active development and reforms including it should not be cited.", - "label": "Capital Gains Tax higher rate", - "unit": "/1", - "period": null, - "values": { - "2015-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.hmrc.cgt.annual_exempt_amount": { - "type": "parameter", - "parameter": "gov.hmrc.cgt.annual_exempt_amount", - "description": "Annual Exempt Amount for individuals. This parameter is under active development and reforms including it should not be cited.", - "label": "Annual Exempt Amount", - "unit": "currency-GBP", - "period": null, - "values": { - "2029-01-01": 3357.73709380423, - "2028-01-01": 3291.90456634917, - "2027-01-01": 3227.36365201955, - "2026-01-01": 3167.19435134526, - "2025-01-01": 3068.99201186959, - "2024-01-01": 3000, - "2023-01-01": 6000, - "2020-01-01": 12300, - "2019-01-01": 12000, - "2018-01-01": 11700, - "2015-01-01": 11700 - }, - "economy": true, - "household": true - }, - "gov.hmrc.child_benefit": { - "type": "parameterNode", - "parameter": "gov.hmrc.child_benefit", - "description": null, - "label": "Child Benefit", - "economy": true, - "household": true - }, - "gov.hmrc.child_benefit.amount": { - "type": "parameterNode", - "parameter": "gov.hmrc.child_benefit.amount", - "description": null, - "label": "Maximum amount", - "economy": true, - "household": true - }, - "gov.hmrc.child_benefit.amount.additional": { - "type": "parameter", - "parameter": "gov.hmrc.child_benefit.amount.additional", - "description": "Child Benefit amount for each additional child", - "label": "Child Benefit (additional)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 18.8729604521969, - "2028-01-01": 18.5029330639835, - "2027-01-01": 18.140165494736, - "2026-01-01": 17.8019696204499, - "2025-04-01": 17.25, - "2024-04-01": 16.95, - "2023-04-01": 15.9, - "2022-04-01": 14.45, - "2021-04-12": 14, - "2020-04-06": 13.95, - "2015-04-06": 13.7, - "2014-04-07": 13.55, - "2010-04-12": 13.4, - "2009-01-05": 13.2, - "2007-04-09": 12.1 - }, - "economy": true, - "household": true - }, - "gov.hmrc.child_benefit.amount.eldest": { - "type": "parameter", - "parameter": "gov.hmrc.child_benefit.amount.eldest", - "description": "Child Benefit amount for the eldest or only child", - "label": "Child Benefit (eldest)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 28.500905494477, - "2028-01-01": 27.9421105111172, - "2027-01-01": 27.3942789065434, - "2026-01-01": 26.8835541224765, - "2025-04-01": 26.05, - "2024-04-01": 25.6, - "2023-04-01": 24, - "2022-04-01": 21.8, - "2021-04-12": 21.15, - "2020-04-06": 21.05, - "2015-04-06": 20.7, - "2014-04-07": 20.5, - "2010-04-12": 20.3, - "2009-01-05": 20, - "2007-04-09": 18.8 - }, - "economy": true, - "household": true - }, - "gov.hmrc.child_benefit.takeup": { - "type": "parameterNode", - "parameter": "gov.hmrc.child_benefit.takeup", - "description": null, - "label": "takeup", - "economy": true, - "household": true - }, - "gov.hmrc.child_benefit.takeup.by_age": { - "type": "parameterNode", - "parameter": "gov.hmrc.child_benefit.takeup.by_age", - "description": "Share of eligible Child Benefit recipients that participate, by age", - "label": "Child Benefit take-up rate" - }, - "gov.hmrc.child_benefit.takeup.by_age[0]": { - "type": "parameterNode", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[0]", - "description": null, - "label": "bracket 1" - }, - "gov.hmrc.child_benefit.takeup.by_age[0].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.hmrc.child_benefit.takeup.by_age[0].amount": { - "type": "parameter", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.75, - "2015-01-01": 0.75 - }, - "economy": true, - "household": true - }, - "gov.hmrc.child_benefit.takeup.by_age[1]": { - "type": "parameterNode", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[1]", - "description": null, - "label": "bracket 2" - }, - "gov.hmrc.child_benefit.takeup.by_age[1].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.hmrc.child_benefit.takeup.by_age[1].amount": { - "type": "parameter", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.8, - "2015-01-01": 0.8 - }, - "economy": true, - "household": true - }, - "gov.hmrc.child_benefit.takeup.by_age[2]": { - "type": "parameterNode", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[2]", - "description": null, - "label": "bracket 3" - }, - "gov.hmrc.child_benefit.takeup.by_age[2].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[2].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.hmrc.child_benefit.takeup.by_age[2].amount": { - "type": "parameter", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.83, - "2015-01-01": 0.83 - }, - "economy": true, - "household": true - }, - "gov.hmrc.child_benefit.takeup.by_age[3]": { - "type": "parameterNode", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[3]", - "description": null, - "label": "bracket 4" - }, - "gov.hmrc.child_benefit.takeup.by_age[3].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[3].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 3, - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.hmrc.child_benefit.takeup.by_age[3].amount": { - "type": "parameter", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.85, - "2015-01-01": 0.85 - }, - "economy": true, - "household": true - }, - "gov.hmrc.child_benefit.takeup.by_age[4]": { - "type": "parameterNode", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[4]", - "description": null, - "label": "bracket 5" - }, - "gov.hmrc.child_benefit.takeup.by_age[4].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[4].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 4, - "2015-01-01": 4 - }, - "economy": true, - "household": true - }, - "gov.hmrc.child_benefit.takeup.by_age[4].amount": { - "type": "parameter", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[4].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.86, - "2015-01-01": 0.86 - }, - "economy": true, - "household": true - }, - "gov.hmrc.child_benefit.takeup.by_age[5]": { - "type": "parameterNode", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[5]", - "description": null, - "label": "bracket 6" - }, - "gov.hmrc.child_benefit.takeup.by_age[5].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[5].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 5, - "2015-01-01": 5 - }, - "economy": true, - "household": true - }, - "gov.hmrc.child_benefit.takeup.by_age[5].amount": { - "type": "parameter", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[5].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.88, - "2015-01-01": 0.88 - }, - "economy": true, - "household": true - }, - "gov.hmrc.child_benefit.takeup.by_age[6]": { - "type": "parameterNode", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[6]", - "description": null, - "label": "bracket 7" - }, - "gov.hmrc.child_benefit.takeup.by_age[6].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[6].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 6, - "2015-01-01": 6 - }, - "economy": true, - "household": true - }, - "gov.hmrc.child_benefit.takeup.by_age[6].amount": { - "type": "parameter", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[6].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.88, - "2015-01-01": 0.88 - }, - "economy": true, - "household": true - }, - "gov.hmrc.child_benefit.takeup.by_age[7]": { - "type": "parameterNode", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[7]", - "description": null, - "label": "bracket 8" - }, - "gov.hmrc.child_benefit.takeup.by_age[7].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[7].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 7, - "2015-01-01": 7 - }, - "economy": true, - "household": true - }, - "gov.hmrc.child_benefit.takeup.by_age[7].amount": { - "type": "parameter", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[7].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.89, - "2015-01-01": 0.89 - }, - "economy": true, - "household": true - }, - "gov.hmrc.child_benefit.takeup.by_age[8]": { - "type": "parameterNode", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[8]", - "description": null, - "label": "bracket 9" - }, - "gov.hmrc.child_benefit.takeup.by_age[8].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[8].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 8, - "2015-01-01": 8 - }, - "economy": true, - "household": true - }, - "gov.hmrc.child_benefit.takeup.by_age[8].amount": { - "type": "parameter", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[8].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.89, - "2015-01-01": 0.89 - }, - "economy": true, - "household": true - }, - "gov.hmrc.child_benefit.takeup.by_age[9]": { - "type": "parameterNode", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[9]", - "description": null, - "label": "bracket 10" - }, - "gov.hmrc.child_benefit.takeup.by_age[9].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[9].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 9, - "2015-01-01": 9 - }, - "economy": true, - "household": true - }, - "gov.hmrc.child_benefit.takeup.by_age[9].amount": { - "type": "parameter", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[9].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.92, - "2015-01-01": 0.92 - }, - "economy": true, - "household": true - }, - "gov.hmrc.child_benefit.takeup.by_age[10]": { - "type": "parameterNode", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[10]", - "description": null, - "label": "bracket 11" - }, - "gov.hmrc.child_benefit.takeup.by_age[10].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[10].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 10, - "2015-01-01": 10 - }, - "economy": true, - "household": true - }, - "gov.hmrc.child_benefit.takeup.by_age[10].amount": { - "type": "parameter", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[10].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.94, - "2015-01-01": 0.94 - }, - "economy": true, - "household": true - }, - "gov.hmrc.child_benefit.takeup.by_age[11]": { - "type": "parameterNode", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[11]", - "description": null, - "label": "bracket 12" - }, - "gov.hmrc.child_benefit.takeup.by_age[11].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[11].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 11, - "2015-01-01": 11 - }, - "economy": true, - "household": true - }, - "gov.hmrc.child_benefit.takeup.by_age[11].amount": { - "type": "parameter", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[11].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.96, - "2015-01-01": 0.96 - }, - "economy": true, - "household": true - }, - "gov.hmrc.child_benefit.takeup.by_age[12]": { - "type": "parameterNode", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[12]", - "description": null, - "label": "bracket 13" - }, - "gov.hmrc.child_benefit.takeup.by_age[12].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[12].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 12, - "2015-01-01": 12 - }, - "economy": true, - "household": true - }, - "gov.hmrc.child_benefit.takeup.by_age[12].amount": { - "type": "parameter", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[12].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.97, - "2015-01-01": 0.97 - }, - "economy": true, - "household": true - }, - "gov.hmrc.child_benefit.takeup.by_age[13]": { - "type": "parameterNode", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[13]", - "description": null, - "label": "bracket 14" - }, - "gov.hmrc.child_benefit.takeup.by_age[13].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[13].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 13, - "2015-01-01": 13 - }, - "economy": true, - "household": true - }, - "gov.hmrc.child_benefit.takeup.by_age[13].amount": { - "type": "parameter", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[13].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.97, - "2015-01-01": 0.97 - }, - "economy": true, - "household": true - }, - "gov.hmrc.child_benefit.takeup.by_age[14]": { - "type": "parameterNode", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[14]", - "description": null, - "label": "bracket 15" - }, - "gov.hmrc.child_benefit.takeup.by_age[14].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[14].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.hmrc.child_benefit.takeup.by_age[14].amount": { - "type": "parameter", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[14].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.97, - "2015-01-01": 0.97 - }, - "economy": true, - "household": true - }, - "gov.hmrc.child_benefit.takeup.by_age[15]": { - "type": "parameterNode", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[15]", - "description": null, - "label": "bracket 16" - }, - "gov.hmrc.child_benefit.takeup.by_age[15].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[15].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 15, - "2015-01-01": 15 - }, - "economy": true, - "household": true - }, - "gov.hmrc.child_benefit.takeup.by_age[15].amount": { - "type": "parameter", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[15].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.96, - "2015-01-01": 0.96 - }, - "economy": true, - "household": true - }, - "gov.hmrc.child_benefit.takeup.by_age[16]": { - "type": "parameterNode", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[16]", - "description": null, - "label": "bracket 17" - }, - "gov.hmrc.child_benefit.takeup.by_age[16].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[16].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 16, - "2015-01-01": 16 - }, - "economy": true, - "household": true - }, - "gov.hmrc.child_benefit.takeup.by_age[16].amount": { - "type": "parameter", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[16].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.89, - "2015-01-01": 0.89 - }, - "economy": true, - "household": true - }, - "gov.hmrc.child_benefit.takeup.by_age[17]": { - "type": "parameterNode", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[17]", - "description": null, - "label": "bracket 18" - }, - "gov.hmrc.child_benefit.takeup.by_age[17].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[17].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 17, - "2015-01-01": 17 - }, - "economy": true, - "household": true - }, - "gov.hmrc.child_benefit.takeup.by_age[17].amount": { - "type": "parameter", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[17].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.79, - "2015-01-01": 0.79 - }, - "economy": true, - "household": true - }, - "gov.hmrc.child_benefit.takeup.by_age[18]": { - "type": "parameterNode", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[18]", - "description": null, - "label": "bracket 19" - }, - "gov.hmrc.child_benefit.takeup.by_age[18].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[18].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 18, - "2015-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.hmrc.child_benefit.takeup.by_age[18].amount": { - "type": "parameter", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[18].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.77, - "2015-01-01": 0.77 - }, - "economy": true, - "household": true - }, - "gov.hmrc.child_benefit.takeup.by_age[19]": { - "type": "parameterNode", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[19]", - "description": null, - "label": "bracket 20" - }, - "gov.hmrc.child_benefit.takeup.by_age[19].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[19].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 19, - "2015-01-01": 19 - }, - "economy": true, - "household": true - }, - "gov.hmrc.child_benefit.takeup.by_age[19].amount": { - "type": "parameter", - "parameter": "gov.hmrc.child_benefit.takeup.by_age[19].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.61, - "2015-01-01": 0.61 - }, - "economy": true, - "household": true - }, - "gov.hmrc.child_benefit.takeup.overall": { - "type": "parameter", - "parameter": "gov.hmrc.child_benefit.takeup.overall", - "description": "Share of eligible children that participate in Child Benefit", - "label": "overall", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.89, - "2012-01-01": 0.97 - }, - "economy": true, - "household": true - }, - "gov.hmrc.child_benefit.opt_out_rate": { - "type": "parameter", - "parameter": "gov.hmrc.child_benefit.opt_out_rate", - "description": "Percentage of fully HITC-liable families who opt out of Child Benefit.", - "label": "Child Benefit HITC-liable opt-out rate", - "unit": "/1", - "period": null, - "values": { - "2019-01-01": 0.23, - "2015-01-01": 0.23 - }, - "economy": true, - "household": true - }, - "gov.hmrc.national_insurance": { - "type": "parameterNode", - "parameter": "gov.hmrc.national_insurance", - "description": null, - "label": "National Insurance", - "economy": true, - "household": true - }, - "gov.hmrc.national_insurance.class_2": { - "type": "parameterNode", - "parameter": "gov.hmrc.national_insurance.class_2", - "description": null, - "label": "Class 2", - "economy": true, - "household": true - }, - "gov.hmrc.national_insurance.class_2.small_profits_threshold": { - "type": "parameter", - "parameter": "gov.hmrc.national_insurance.class_2.small_profits_threshold", - "description": "Small profits National Insurance threshold for self-employed earners", - "label": "NI Class 2 Small Profits Threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2029-01-01": 8115.0772230507, - "2028-01-01": 7955.93682832399, - "2027-01-01": 7799.9509917176, - "2026-01-01": 7647.0255473175, - "2025-01-01": 7504.45835346173, - "2024-01-01": 7271.7743798702, - "2023-01-01": 7108.30235309767, - "2022-04-06": 6725, - "2021-04-06": 6515, - "2020-04-06": 6475, - "2019-04-06": 6365, - "2018-04-06": 6205, - "2017-04-06": 6025, - "2015-04-06": 3965, - "2015-01-01": 3965 - }, - "economy": true, - "household": true - }, - "gov.hmrc.national_insurance.class_2.flat_rate": { - "type": "parameter", - "parameter": "gov.hmrc.national_insurance.class_2.flat_rate", - "description": "Flat rate National Insurance contribution for self-employed earners", - "label": "NI Class 2 Flat Rate", - "unit": "currency-GBP", - "period": null, - "values": { - "2024-01-01": 0, - "2022-04-06": 3.15, - "2020-04-01": 3.05, - "2019-04-01": 3, - "2018-04-01": 2.95, - "2017-04-01": 2.85, - "2015-04-01": 2.8, - "2015-01-01": 2.8 - }, - "economy": true, - "household": true - }, - "gov.hmrc.national_insurance.class_4": { - "type": "parameterNode", - "parameter": "gov.hmrc.national_insurance.class_4", - "description": null, - "label": "Class 4", - "economy": true, - "household": true - }, - "gov.hmrc.national_insurance.class_4.rates": { - "type": "parameterNode", - "parameter": "gov.hmrc.national_insurance.class_4.rates", - "description": null, - "label": "Rates", - "economy": true, - "household": true - }, - "gov.hmrc.national_insurance.class_4.rates.main": { - "type": "parameter", - "parameter": "gov.hmrc.national_insurance.class_4.rates.main", - "description": "The main National Insurance rate paid between the Lower and Upper Profits Limits for self-employed profits", - "label": "NI Class 4 main rate", - "unit": "/1", - "period": null, - "values": { - "2024-04-04": 0.06, - "2022-11-06": 0.09, - "2022-04-01": 0.1025, - "2015-04-01": 0.09, - "2015-01-01": 0.09 - }, - "economy": true, - "household": true - }, - "gov.hmrc.national_insurance.class_4.rates.additional": { - "type": "parameter", - "parameter": "gov.hmrc.national_insurance.class_4.rates.additional", - "description": "The additional National Insurance rate paid above the Upper Profits Limit for self-employed profits", - "label": "NI Class 4 additional rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.02, - "2022-04-01": 0.035, - "2015-04-01": 0.02, - "2015-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.hmrc.national_insurance.class_4.thresholds": { - "type": "parameterNode", - "parameter": "gov.hmrc.national_insurance.class_4.thresholds", - "description": null, - "label": "Thresholds", - "economy": true, - "household": true - }, - "gov.hmrc.national_insurance.class_4.thresholds.lower_profits_limit": { - "type": "parameter", - "parameter": "gov.hmrc.national_insurance.class_4.thresholds.lower_profits_limit", - "description": "The Lower Profits Limit is the threshold at which self-employed earners pay the main Class 4 National Insurance rate", - "label": "NI Lower Profits Limit", - "unit": "currency-GBP", - "period": "year", - "values": { - "2029-01-01": 14027.7345479974, - "2028-01-01": 13752.6442251661, - "2027-01-01": 13483.0068761897, - "2026-01-01": 13218.6597257294, - "2025-01-01": 12972.2178625539, - "2024-01-01": 12570, - "2022-04-06": 11908, - "2021-04-06": 9568, - "2020-04-06": 9500, - "2019-04-06": 8632, - "2018-04-06": 8424, - "2017-04-06": 8164, - "2015-04-06": 8060, - "2015-01-01": 8060 - }, - "economy": true, - "household": true - }, - "gov.hmrc.national_insurance.class_4.thresholds.upper_profits_limit": { - "type": "parameter", - "parameter": "gov.hmrc.national_insurance.class_4.thresholds.upper_profits_limit", - "description": "The Upper Profits Limit is the threshold at which self-employed earners pay the additional Class 4 National Insurance rate", - "label": "NI Upper Profits Limit", - "unit": "currency-GBP", - "period": "year", - "values": { - "2029-01-01": 53346.8770933898, - "2028-01-01": 52300.7203108068, - "2027-01-01": 51275.3009555709, - "2026-04-06": 50270, - "2021-04-06": 50270, - "2020-04-06": 50000, - "2019-04-06": 50000, - "2018-04-06": 46350, - "2017-04-06": 45000, - "2015-06-05": 43000, - "2015-04-06": 42386, - "2015-01-01": 42386 - }, - "economy": true, - "household": true - }, - "gov.hmrc.national_insurance.class_1": { - "type": "parameterNode", - "parameter": "gov.hmrc.national_insurance.class_1", - "description": null, - "label": "Class 1", - "economy": true, - "household": true - }, - "gov.hmrc.national_insurance.class_1.rates": { - "type": "parameterNode", - "parameter": "gov.hmrc.national_insurance.class_1.rates", - "description": null, - "label": "Rates", - "economy": true, - "household": true - }, - "gov.hmrc.national_insurance.class_1.rates.employer": { - "type": "parameter", - "parameter": "gov.hmrc.national_insurance.class_1.rates.employer", - "description": "National Insurance contribution rate by employers on earnings above the Secondary Threshold", - "label": "NI Employer rate", - "unit": "/1", - "period": null, - "values": { - "2025-04-06": 0.15, - "2015-04-01": 0.138, - "2015-01-01": 0.138 - }, - "economy": true, - "household": true - }, - "gov.hmrc.national_insurance.class_1.rates.employee": { - "type": "parameterNode", - "parameter": "gov.hmrc.national_insurance.class_1.rates.employee", - "description": null, - "label": "Employee", - "economy": true, - "household": true - }, - "gov.hmrc.national_insurance.class_1.rates.employee.main": { - "type": "parameter", - "parameter": "gov.hmrc.national_insurance.class_1.rates.employee.main", - "description": "The Class 1 National Insurance main rate is paid on employment earnings between the Primary Threshold and the Upper Earnings Limit", - "label": "NI Class 1 main rate", - "unit": "/1", - "period": null, - "values": { - "2024-04-01": 0.08, - "2024-01-01": 0.1, - "2022-11-06": 0.12, - "2022-04-01": 0.1325, - "2015-04-01": 0.12, - "2015-01-01": 0.12 - }, - "economy": true, - "household": true - }, - "gov.hmrc.national_insurance.class_1.rates.employee.additional": { - "type": "parameter", - "parameter": "gov.hmrc.national_insurance.class_1.rates.employee.additional", - "description": "The Class 1 National Insurance additional rate is paid on employment earnings above the Upper Earnings Limit", - "label": "NI Class 1 additional rate", - "unit": "/1", - "period": null, - "values": { - "2024-04-04": 0.0185, - "2022-04-01": 0.0325, - "2015-04-01": 0.02, - "2015-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.hmrc.national_insurance.class_1.thresholds": { - "type": "parameterNode", - "parameter": "gov.hmrc.national_insurance.class_1.thresholds", - "description": null, - "label": "Thresholds", - "economy": true, - "household": true - }, - "gov.hmrc.national_insurance.class_1.thresholds.upper_earnings_limit": { - "type": "parameter", - "parameter": "gov.hmrc.national_insurance.class_1.thresholds.upper_earnings_limit", - "description": "The Upper Earnings Limit is the upper bound for the main rate of Class 1 National Insurance", - "label": "NI Upper Earnings Limit", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 1005.78690970881, - "2028-01-01": 986.06296606384, - "2027-04-06": 966.73, - "2021-04-06": 966.73, - "2020-04-06": 962, - "2019-04-06": 962, - "2018-04-06": 892, - "2017-04-06": 866, - "2016-04-06": 827, - "2015-04-06": 815, - "2015-01-01": 815 - }, - "economy": true, - "household": true - }, - "gov.hmrc.national_insurance.class_1.thresholds.primary_threshold": { - "type": "parameter", - "parameter": "gov.hmrc.national_insurance.class_1.thresholds.primary_threshold", - "description": "The Primary Threshold is the lower bound for the main rate of Class 1 National Insurance", - "label": "NI Primary Threshold", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 251.496146477207, - "2028-01-01": 246.564191435677, - "2027-04-01": 241.73, - "2022-07-01": 241.73, - "2022-04-06": 190, - "2021-04-06": 184, - "2020-04-06": 183, - "2019-04-06": 166, - "2018-04-06": 162, - "2017-04-06": 157, - "2016-04-06": 155, - "2015-04-06": 155, - "2015-01-01": 155 - }, - "economy": true, - "household": true - }, - "gov.hmrc.national_insurance.class_1.thresholds.lower_earnings_limit": { - "type": "parameter", - "parameter": "gov.hmrc.national_insurance.class_1.thresholds.lower_earnings_limit", - "description": "Lower earnings limit for National Insurance", - "label": "NI Lower Earnings Limit", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 127.969329486189, - "2028-01-01": 125.45979210933, - "2027-04-01": 123, - "2022-04-06": 123, - "2021-04-06": 120, - "2020-04-06": 120, - "2019-04-06": 118, - "2018-04-06": 116, - "2017-04-06": 113, - "2016-04-06": 112, - "2015-04-06": 112, - "2015-01-01": 112 - }, - "economy": false, - "household": true - }, - "gov.hmrc.national_insurance.class_1.thresholds.secondary_threshold": { - "type": "parameter", - "parameter": "gov.hmrc.national_insurance.class_1.thresholds.secondary_threshold", - "description": "Secondary threshold for National Insurance", - "label": "NI Secondary Threshold", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 182.070184228318, - "2028-01-01": 178.499704220591, - "2027-04-01": 175, - "2024-01-01": 175, - "2022-04-06": 175, - "2021-04-06": 170, - "2020-04-06": 169, - "2019-04-06": 166, - "2018-04-06": 162, - "2017-04-06": 157, - "2016-04-06": 155, - "2015-04-06": 155, - "2015-01-01": 155 - }, - "economy": true, - "household": true - }, - "gov.hmrc.stamp_duty": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty", - "description": null, - "label": "Stamp Duty", - "economy": true, - "household": true - }, - "gov.hmrc.stamp_duty.statistics": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.statistics", - "description": "Stamp Duty Land Tax statistics", - "label": "statistics", - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.non_residential": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.statistics.non_residential", - "description": null, - "label": "non residential", - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.non_residential.corporate": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.statistics.non_residential.corporate", - "description": null, - "label": "corporate", - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.non_residential.corporate.revenue": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.non_residential.corporate.revenue", - "description": null, - "label": "revenue", - "unit": "currency-GBP", - "period": null, - "values": { - "2020-01-01": 2425000000, - "2019-01-01": 2965000000, - "2015-01-01": 2965000000 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.non_residential.corporate.transaction_values": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.non_residential.corporate.transaction_values", - "description": null, - "label": "transaction values", - "unit": "currency-GBP", - "period": null, - "values": { - "2020-01-01": 77080000000, - "2019-01-01": 103395000000, - "2015-01-01": 103395000000 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.non_residential.corporate.transactions": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.non_residential.corporate.transactions", - "description": null, - "label": "transactions", - "unit": "currency-GBP", - "period": null, - "values": { - "2020-01-01": 65300, - "2019-01-01": 78800, - "2015-01-01": 78800 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.non_residential.household": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.statistics.non_residential.household", - "description": null, - "label": "household", - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.non_residential.household.revenue": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.non_residential.household.revenue", - "description": null, - "label": "revenue", - "unit": "currency-GBP", - "period": null, - "values": { - "2020-01-01": 230000000, - "2019-01-01": 210000000, - "2015-01-01": 210000000 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.non_residential.household.transaction_values": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.non_residential.household.transaction_values", - "description": null, - "label": "transaction values", - "unit": "currency-GBP", - "period": null, - "values": { - "2020-01-01": 7150000000, - "2019-01-01": 7025000000, - "2015-01-01": 7025000000 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.non_residential.household.transactions": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.non_residential.household.transactions", - "description": null, - "label": "transactions", - "unit": "currency-GBP", - "period": null, - "values": { - "2020-01-01": 24500, - "2019-01-01": 27800, - "2015-01-01": 27800 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.statistics.residential", - "description": null, - "label": "residential", - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.corporate": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.corporate", - "description": null, - "label": "corporate", - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.corporate.revenue": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.corporate.revenue", - "description": null, - "label": "revenue", - "unit": "currency-GBP", - "period": null, - "values": { - "2020-01-01": 705000000, - "2019-01-01": 885000000, - "2015-01-01": 885000000 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.corporate.transaction_values": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.corporate.transaction_values", - "description": null, - "label": "transaction values", - "unit": "currency-GBP", - "period": null, - "values": { - "2020-01-01": 30460000000, - "2019-01-01": 31640000000, - "2015-01-01": 31640000000 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.corporate.transactions": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.corporate.transactions", - "description": null, - "label": "transactions", - "unit": "currency-GBP", - "period": null, - "values": { - "2020-01-01": 91600, - "2019-01-01": 104200, - "2015-01-01": 104200 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household", - "description": null, - "label": "household", - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief", - "description": "Number of claims for First Time Buyer's Relief", - "label": "first time buyers relief" - }, - "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[0]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[0]", - "description": null, - "label": "bracket 1" - }, - "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[0].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[0].amount": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[0].amount", - "description": null, - "label": "amount", - "unit": "currency-GBP", - "period": null, - "values": { - "2020-01-01": 400, - "2015-01-01": 400 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[1]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[1]", - "description": null, - "label": "bracket 2" - }, - "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[1].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2018-01-01": 20, - "2015-01-01": 20 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[1].amount": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[1].amount", - "description": null, - "label": "amount", - "unit": "currency-GBP", - "period": null, - "values": { - "2020-01-01": 12500, - "2015-01-01": 12500 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[2]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[2]", - "description": null, - "label": "bracket 3" - }, - "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[2].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2018-01-01": 25, - "2015-01-01": 25 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[2].amount": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[2].amount", - "description": null, - "label": "amount", - "unit": "currency-GBP", - "period": null, - "values": { - "2020-01-01": 38200, - "2015-01-01": 38200 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[3]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[3]", - "description": null, - "label": "bracket 4" - }, - "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[3].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2018-01-01": 30, - "2015-01-01": 30 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[3].amount": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[3].amount", - "description": null, - "label": "amount", - "unit": "currency-GBP", - "period": null, - "values": { - "2020-01-01": 26500, - "2015-01-01": 26500 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[4]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[4]", - "description": null, - "label": "bracket 5" - }, - "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[4].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2018-01-01": 35, - "2015-01-01": 35 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[4].amount": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[4].amount", - "description": null, - "label": "amount", - "unit": "currency-GBP", - "period": null, - "values": { - "2020-01-01": 13700, - "2015-01-01": 13700 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[5]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[5]", - "description": null, - "label": "bracket 6" - }, - "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[5].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2018-01-01": 40, - "2015-01-01": 40 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[5].amount": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[5].amount", - "description": null, - "label": "amount", - "unit": "currency-GBP", - "period": null, - "values": { - "2020-01-01": 6900, - "2015-01-01": 6900 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[6]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[6]", - "description": null, - "label": "bracket 7" - }, - "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[6].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2018-01-01": 45, - "2015-01-01": 45 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[6].amount": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[6].amount", - "description": null, - "label": "amount", - "unit": "currency-GBP", - "period": null, - "values": { - "2020-01-01": 3400, - "2015-01-01": 3400 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[7]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[7]", - "description": null, - "label": "bracket 8" - }, - "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[7].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2018-01-01": 50, - "2015-01-01": 50 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[7].amount": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[7].amount", - "description": null, - "label": "amount", - "unit": "currency-GBP", - "period": null, - "values": { - "2020-01-01": 1700, - "2015-01-01": 1700 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[8]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[8]", - "description": null, - "label": "bracket 9" - }, - "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[8].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2018-01-01": 55, - "2015-01-01": 55 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[8].amount": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[8].amount", - "description": null, - "label": "amount", - "unit": "currency-GBP", - "period": null, - "values": { - "2020-01-01": 900, - "2015-01-01": 900 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[9]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[9]", - "description": null, - "label": "bracket 10" - }, - "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[9].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2018-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[9].amount": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[9].amount", - "description": null, - "label": "amount", - "unit": "currency-GBP", - "period": null, - "values": { - "2020-01-01": 300, - "2015-01-01": 300 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[10]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[10]", - "description": null, - "label": "bracket 11" - }, - "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[10].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[10].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2018-01-01": 65, - "2015-01-01": 65 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[10].amount": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[10].amount", - "description": null, - "label": "amount", - "unit": "currency-GBP", - "period": null, - "values": { - "2020-01-01": 100, - "2015-01-01": 100 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[11]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[11]", - "description": null, - "label": "bracket 12" - }, - "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[11].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[11].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2018-01-01": 70, - "2015-01-01": 70 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[11].amount": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[11].amount", - "description": null, - "label": "amount", - "unit": "currency-GBP", - "period": null, - "values": { - "2020-01-01": 100, - "2015-01-01": 100 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[12]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[12]", - "description": null, - "label": "bracket 13" - }, - "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[12].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[12].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2018-01-01": 75, - "2015-01-01": 75 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[12].amount": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[12].amount", - "description": null, - "label": "amount", - "unit": "currency-GBP", - "period": null, - "values": { - "2020-01-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[13]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[13]", - "description": null, - "label": "bracket 14" - }, - "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[13].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[13].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2018-01-01": 80, - "2015-01-01": 80 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[13].amount": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.first_time_buyers_relief[13].amount", - "description": null, - "label": "amount", - "unit": "currency-GBP", - "period": null, - "values": { - "2020-01-01": 100, - "2015-01-01": 100 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.revenue": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.revenue", - "description": null, - "label": "revenue", - "unit": "currency-GBP", - "period": null, - "values": { - "2020-01-01": 5310000000, - "2019-01-01": 7540000000, - "2015-01-01": 7540000000 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.transaction_values": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.transaction_values", - "description": null, - "label": "transaction values", - "unit": "currency-GBP", - "period": null, - "values": { - "2020-01-01": 310380000000, - "2019-01-01": 269690000000, - "2015-01-01": 269690000000 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.transactions": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.transactions", - "description": null, - "label": "transactions", - "unit": "currency-GBP", - "period": null, - "values": { - "2020-01-01": 933700, - "2019-01-01": 918600, - "2015-01-01": 918600 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age", - "description": "Number of transactions by age", - "label": "transactions by age" - }, - "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[0]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[0]", - "description": null, - "label": "bracket 1" - }, - "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[0].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[0].amount": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[0].amount", - "description": null, - "label": "amount", - "unit": "currency-GBP", - "period": null, - "values": { - "2020-01-01": 2100, - "2015-01-01": 2100 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[1]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[1]", - "description": null, - "label": "bracket 2" - }, - "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[1].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2018-01-01": 20, - "2015-01-01": 20 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[1].amount": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[1].amount", - "description": null, - "label": "amount", - "unit": "currency-GBP", - "period": null, - "values": { - "2020-01-01": 34300, - "2015-01-01": 34300 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[2]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[2]", - "description": null, - "label": "bracket 3" - }, - "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[2].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2018-01-01": 25, - "2015-01-01": 25 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[2].amount": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[2].amount", - "description": null, - "label": "amount", - "unit": "currency-GBP", - "period": null, - "values": { - "2020-01-01": 121100, - "2015-01-01": 121100 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[3]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[3]", - "description": null, - "label": "bracket 4" - }, - "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[3].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2018-01-01": 30, - "2015-01-01": 30 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[3].amount": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[3].amount", - "description": null, - "label": "amount", - "unit": "currency-GBP", - "period": null, - "values": { - "2020-01-01": 139600, - "2015-01-01": 139600 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[4]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[4]", - "description": null, - "label": "bracket 5" - }, - "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[4].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2018-01-01": 35, - "2015-01-01": 35 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[4].amount": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[4].amount", - "description": null, - "label": "amount", - "unit": "currency-GBP", - "period": null, - "values": { - "2020-01-01": 114200, - "2015-01-01": 114200 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[5]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[5]", - "description": null, - "label": "bracket 6" - }, - "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[5].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2018-01-01": 40, - "2015-01-01": 40 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[5].amount": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[5].amount", - "description": null, - "label": "amount", - "unit": "currency-GBP", - "period": null, - "values": { - "2020-01-01": 88400, - "2015-01-01": 88400 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[6]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[6]", - "description": null, - "label": "bracket 7" - }, - "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[6].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2018-01-01": 45, - "2015-01-01": 45 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[6].amount": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[6].amount", - "description": null, - "label": "amount", - "unit": "currency-GBP", - "period": null, - "values": { - "2020-01-01": 70400, - "2015-01-01": 70400 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[7]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[7]", - "description": null, - "label": "bracket 8" - }, - "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[7].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2018-01-01": 50, - "2015-01-01": 50 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[7].amount": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[7].amount", - "description": null, - "label": "amount", - "unit": "currency-GBP", - "period": null, - "values": { - "2020-01-01": 66200, - "2015-01-01": 66200 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[8]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[8]", - "description": null, - "label": "bracket 9" - }, - "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[8].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2018-01-01": 55, - "2015-01-01": 55 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[8].amount": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[8].amount", - "description": null, - "label": "amount", - "unit": "currency-GBP", - "period": null, - "values": { - "2020-01-01": 62300, - "2015-01-01": 62300 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[9]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[9]", - "description": null, - "label": "bracket 10" - }, - "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[9].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2018-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[9].amount": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[9].amount", - "description": null, - "label": "amount", - "unit": "currency-GBP", - "period": null, - "values": { - "2020-01-01": 46500, - "2015-01-01": 46500 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[10]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[10]", - "description": null, - "label": "bracket 11" - }, - "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[10].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[10].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2018-01-01": 65, - "2015-01-01": 65 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[10].amount": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[10].amount", - "description": null, - "label": "amount", - "unit": "currency-GBP", - "period": null, - "values": { - "2020-01-01": 34300, - "2015-01-01": 34300 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[11]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[11]", - "description": null, - "label": "bracket 12" - }, - "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[11].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[11].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2018-01-01": 70, - "2015-01-01": 70 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[11].amount": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[11].amount", - "description": null, - "label": "amount", - "unit": "currency-GBP", - "period": null, - "values": { - "2020-01-01": 26800, - "2015-01-01": 26800 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[12]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[12]", - "description": null, - "label": "bracket 13" - }, - "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[12].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[12].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2018-01-01": 75, - "2015-01-01": 75 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[12].amount": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[12].amount", - "description": null, - "label": "amount", - "unit": "currency-GBP", - "period": null, - "values": { - "2020-01-01": 16100, - "2015-01-01": 16100 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[13]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[13]", - "description": null, - "label": "bracket 14" - }, - "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[13].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[13].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2018-01-01": 80, - "2015-01-01": 80 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[13].amount": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.statistics.residential.household.transactions_by_age[13].amount", - "description": null, - "label": "amount", - "unit": "currency-GBP", - "period": null, - "values": { - "2020-01-01": 15400, - "2015-01-01": 15400 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.abolish": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.abolish", - "description": "Abolish Stamp Duty Land Tax.", - "label": "Abolish SDLT", - "unit": "bool", - "period": null, - "values": { - "2000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.hmrc.stamp_duty.residential": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.residential", - "description": null, - "label": "Residential", - "economy": true, - "household": true - }, - "gov.hmrc.stamp_duty.residential.rent": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.residential.rent", - "description": "Stamp Duty Land Tax progressive rates for cumulative rents on residential property", - "label": "Stamp Duty on cumulative rent" - }, - "gov.hmrc.stamp_duty.residential.rent[0]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.residential.rent[0]", - "description": null, - "label": "bracket 1" - }, - "gov.hmrc.stamp_duty.residential.rent[0].rate": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.residential.rent[0].rate", - "description": null, - "label": "rate", - "unit": "currency-GBP", - "period": null, - "values": { - "2003-07-10": 0 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.residential.rent[0].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.residential.rent[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2003-07-10": 0 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.residential.rent[1]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.residential.rent[1]", - "description": null, - "label": "bracket 2" - }, - "gov.hmrc.stamp_duty.residential.rent[1].rate": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.residential.rent[1].rate", - "description": null, - "label": "rate", - "unit": "currency-GBP", - "period": null, - "values": { - "2003-07-10": 0.01 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.residential.rent[1].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.residential.rent[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2021-03-31": 125000, - "2020-07-08": 500000, - "2006-07-19": 125000, - "2005-04-07": 120000, - "2003-07-10": 60000 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.residential.purchase": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.residential.purchase", - "description": null, - "label": "purchase", - "economy": true, - "household": true - }, - "gov.hmrc.stamp_duty.residential.purchase.additional": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.residential.purchase.additional", - "description": null, - "label": "additional", - "economy": true, - "household": true - }, - "gov.hmrc.stamp_duty.residential.purchase.additional.rate": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.residential.purchase.additional.rate", - "description": "Stamp Duty Land Tax progressive rates for residential property transfers that are not replacements of an individual's primary residence", - "label": "Stamp Duty on secondary residences" - }, - "gov.hmrc.stamp_duty.residential.purchase.additional.rate[0]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.residential.purchase.additional.rate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.hmrc.stamp_duty.residential.purchase.additional.rate[0].rate": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.residential.purchase.additional.rate[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2016-09-15": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.hmrc.stamp_duty.residential.purchase.additional.rate[0].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.residential.purchase.additional.rate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2016-09-15": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.hmrc.stamp_duty.residential.purchase.additional.rate[1]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.residential.purchase.additional.rate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.hmrc.stamp_duty.residential.purchase.additional.rate[1].rate": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.residential.purchase.additional.rate[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-03-31": 0.05, - "2020-07-08": null, - "2016-09-15": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.hmrc.stamp_duty.residential.purchase.additional.rate[1].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.residential.purchase.additional.rate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2021-03-31": 125000, - "2020-07-08": null, - "2016-09-15": 125000, - "2015-01-01": 125000 - }, - "economy": true, - "household": true - }, - "gov.hmrc.stamp_duty.residential.purchase.additional.rate[2]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.residential.purchase.additional.rate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.hmrc.stamp_duty.residential.purchase.additional.rate[2].rate": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.residential.purchase.additional.rate[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2016-09-15": 0.08, - "2015-01-01": 0.08 - }, - "economy": true, - "household": true - }, - "gov.hmrc.stamp_duty.residential.purchase.additional.rate[2].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.residential.purchase.additional.rate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2021-03-31": 250000, - "2020-07-08": 500000, - "2016-09-15": 250000, - "2015-01-01": 250000 - }, - "economy": true, - "household": true - }, - "gov.hmrc.stamp_duty.residential.purchase.additional.rate[3]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.residential.purchase.additional.rate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.hmrc.stamp_duty.residential.purchase.additional.rate[3].rate": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.residential.purchase.additional.rate[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2016-09-15": 0.13, - "2015-01-01": 0.13 - }, - "economy": true, - "household": true - }, - "gov.hmrc.stamp_duty.residential.purchase.additional.rate[3].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.residential.purchase.additional.rate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2016-09-15": 925000, - "2015-01-01": 925000 - }, - "economy": true, - "household": true - }, - "gov.hmrc.stamp_duty.residential.purchase.additional.rate[4]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.residential.purchase.additional.rate[4]", - "description": null, - "label": "bracket 5" - }, - "gov.hmrc.stamp_duty.residential.purchase.additional.rate[4].rate": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.residential.purchase.additional.rate[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2016-09-15": 0.15, - "2015-01-01": 0.15 - }, - "economy": true, - "household": true - }, - "gov.hmrc.stamp_duty.residential.purchase.additional.rate[4].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.residential.purchase.additional.rate[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2016-09-15": 1500000, - "2015-01-01": 1500000 - }, - "economy": true, - "household": true - }, - "gov.hmrc.stamp_duty.residential.purchase.additional.min": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.residential.purchase.additional.min", - "description": "Minimum value for taxability of additional residential property", - "label": "Stamp Duty secondary residence minimum value", - "unit": "currency-GBP", - "period": null, - "values": { - "2016-09-15": 40000, - "2015-01-01": 40000 - }, - "economy": true, - "household": true - }, - "gov.hmrc.stamp_duty.residential.purchase.main": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.residential.purchase.main", - "description": null, - "label": "main", - "economy": true, - "household": true - }, - "gov.hmrc.stamp_duty.residential.purchase.main.first": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.residential.purchase.main.first", - "description": null, - "label": "first", - "economy": true, - "household": true - }, - "gov.hmrc.stamp_duty.residential.purchase.main.first.max": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.residential.purchase.main.first.max", - "description": "Maximum value for a first-property purchase to receive the Stamp Duty relief for first-time buyers. Increasing this value will underestimate the number of claims for FTBR, as the model will not add new claims.", - "label": "Stamp Duty first home value limit", - "unit": "currency-GBP", - "period": null, - "values": { - "2018-03-15": 500000, - "2015-01-01": 500000 - }, - "economy": true, - "household": true - }, - "gov.hmrc.stamp_duty.residential.purchase.main.first.rate": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.residential.purchase.main.first.rate", - "description": "Stamp Duty Land Tax progressive rates for residential property transfers", - "label": "Stamp Duty on first homes" - }, - "gov.hmrc.stamp_duty.residential.purchase.main.first.rate[0]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.residential.purchase.main.first.rate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.hmrc.stamp_duty.residential.purchase.main.first.rate[0].rate": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.residential.purchase.main.first.rate[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-03-15": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.residential.purchase.main.first.rate[0].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.residential.purchase.main.first.rate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2018-03-15": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.residential.purchase.main.first.rate[1]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.residential.purchase.main.first.rate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.hmrc.stamp_duty.residential.purchase.main.first.rate[1].rate": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.residential.purchase.main.first.rate[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-03-15": 0.05, - "2015-01-01": 0.05 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.residential.purchase.main.first.rate[1].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.residential.purchase.main.first.rate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2018-03-15": 300000, - "2015-01-01": 300000 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.residential.purchase.main.subsequent": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.residential.purchase.main.subsequent", - "description": "Stamp Duty Land Tax progressive rates for residential property transfers", - "label": "Stamp Duty on non-first primary homes" - }, - "gov.hmrc.stamp_duty.residential.purchase.main.subsequent[0]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.residential.purchase.main.subsequent[0]", - "description": null, - "label": "bracket 1" - }, - "gov.hmrc.stamp_duty.residential.purchase.main.subsequent[0].rate": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.residential.purchase.main.subsequent[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2003-07-10": 0 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.residential.purchase.main.subsequent[0].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.residential.purchase.main.subsequent[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2003-07-10": 0 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.residential.purchase.main.subsequent[1]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.residential.purchase.main.subsequent[1]", - "description": null, - "label": "bracket 2" - }, - "gov.hmrc.stamp_duty.residential.purchase.main.subsequent[1].rate": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.residential.purchase.main.subsequent[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-03-31": 0.02, - "2020-07-08": null, - "2015-02-12": 0.02, - "2003-07-10": 0.01 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.residential.purchase.main.subsequent[1].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.residential.purchase.main.subsequent[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2021-03-31": 125000, - "2020-07-08": null, - "2006-07-19": 125000, - "2005-04-07": 120000, - "2003-07-10": 60000 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.residential.purchase.main.subsequent[2]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.residential.purchase.main.subsequent[2]", - "description": null, - "label": "bracket 3" - }, - "gov.hmrc.stamp_duty.residential.purchase.main.subsequent[2].rate": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.residential.purchase.main.subsequent[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2015-02-12": 0.05, - "2003-07-10": 0.03 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.residential.purchase.main.subsequent[2].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.residential.purchase.main.subsequent[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2021-03-31": 250000, - "2020-07-08": 500000, - "2003-07-10": 250000 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.residential.purchase.main.subsequent[3]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.residential.purchase.main.subsequent[3]", - "description": null, - "label": "bracket 4" - }, - "gov.hmrc.stamp_duty.residential.purchase.main.subsequent[3].rate": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.residential.purchase.main.subsequent[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2015-02-12": 0.1, - "2003-07-10": 0.04 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.residential.purchase.main.subsequent[3].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.residential.purchase.main.subsequent[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2015-02-12": 925000, - "2003-07-10": 500000 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.residential.purchase.main.subsequent[4]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.residential.purchase.main.subsequent[4]", - "description": null, - "label": "bracket 5" - }, - "gov.hmrc.stamp_duty.residential.purchase.main.subsequent[4].rate": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.residential.purchase.main.subsequent[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2015-02-12": 0.12, - "2008-04-08": 0.05 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.residential.purchase.main.subsequent[4].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.residential.purchase.main.subsequent[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2015-02-12": 1500000, - "2003-07-10": 1000000 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.residential.purchase.main.subsequent[5]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.residential.purchase.main.subsequent[5]", - "description": null, - "label": "bracket 6" - }, - "gov.hmrc.stamp_duty.residential.purchase.main.subsequent[5].rate": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.residential.purchase.main.subsequent[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2015-02-12": null, - "2012-07-17": 0.07 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.residential.purchase.main.subsequent[5].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.residential.purchase.main.subsequent[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2015-02-12": null, - "2012-07-17": 2000000 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.non_residential": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.non_residential", - "description": null, - "label": "Non-residential", - "economy": true, - "household": true - }, - "gov.hmrc.stamp_duty.non_residential.rent": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.non_residential.rent", - "description": "Stamp Duty Land Tax progressive rates for cumulative rents on non-residential property", - "label": "Stamp Duty on non-residential cumulative rent" - }, - "gov.hmrc.stamp_duty.non_residential.rent[0]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.non_residential.rent[0]", - "description": null, - "label": "bracket 1" - }, - "gov.hmrc.stamp_duty.non_residential.rent[0].rate": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.non_residential.rent[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2003-07-10": 0 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.non_residential.rent[0].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.non_residential.rent[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2003-07-10": 0 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.non_residential.rent[1]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.non_residential.rent[1]", - "description": null, - "label": "bracket 2" - }, - "gov.hmrc.stamp_duty.non_residential.rent[1].rate": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.non_residential.rent[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2003-07-10": 0.01 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.non_residential.rent[1].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.non_residential.rent[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2003-07-10": 150000 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.non_residential.rent[2]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.non_residential.rent[2]", - "description": null, - "label": "bracket 3" - }, - "gov.hmrc.stamp_duty.non_residential.rent[2].rate": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.non_residential.rent[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2016-09-15": 0.02, - "2015-01-01": 0.02 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.non_residential.rent[2].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.non_residential.rent[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2016-09-15": 5000000, - "2015-01-01": 5000000 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.non_residential.purchase": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.non_residential.purchase", - "description": "Stamp Duty Land Tax progressive rates for residential property transfers", - "label": "Stamp Duty on non-residential property" - }, - "gov.hmrc.stamp_duty.non_residential.purchase[0]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.non_residential.purchase[0]", - "description": null, - "label": "bracket 1" - }, - "gov.hmrc.stamp_duty.non_residential.purchase[0].rate": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.non_residential.purchase[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2003-07-10": 0 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.non_residential.purchase[0].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.non_residential.purchase[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2003-07-10": 0 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.non_residential.purchase[1]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.non_residential.purchase[1]", - "description": null, - "label": "bracket 2" - }, - "gov.hmrc.stamp_duty.non_residential.purchase[1].rate": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.non_residential.purchase[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2016-09-15": 0.02, - "2003-07-10": 0.01 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.non_residential.purchase[1].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.non_residential.purchase[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2003-07-10": 150000 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.non_residential.purchase[2]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.non_residential.purchase[2]", - "description": null, - "label": "bracket 3" - }, - "gov.hmrc.stamp_duty.non_residential.purchase[2].rate": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.non_residential.purchase[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2016-09-15": 0.05, - "2003-07-10": 0.03 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.non_residential.purchase[2].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.non_residential.purchase[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2003-07-10": 250000 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.non_residential.purchase[3]": { - "type": "parameterNode", - "parameter": "gov.hmrc.stamp_duty.non_residential.purchase[3]", - "description": null, - "label": "bracket 4" - }, - "gov.hmrc.stamp_duty.non_residential.purchase[3].rate": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.non_residential.purchase[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2016-09-15": null, - "2003-07-10": 0.04 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.non_residential.purchase[3].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.non_residential.purchase[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2016-09-15": null, - "2003-07-10": 500000 - }, - "economy": false, - "household": true - }, - "gov.hmrc.stamp_duty.property_sale_rate": { - "type": "parameter", - "parameter": "gov.hmrc.stamp_duty.property_sale_rate", - "description": "This percentage of properties are sold every year.", - "label": "percentage of properties sold", - "unit": "/1", - "period": null, - "values": { - "2000-01-01": 0.045 - }, - "economy": true, - "household": true - }, - "gov.hmrc.vat": { - "type": "parameterNode", - "parameter": "gov.hmrc.vat", - "description": null, - "label": "vat", - "economy": true, - "household": true - }, - "gov.hmrc.vat.reduced_rate_share": { - "type": "parameter", - "parameter": "gov.hmrc.vat.reduced_rate_share", - "description": "Assumed share of expenditure which is reduced-rate VAT liable.", - "label": "reduced rate share", - "unit": "/1", - "period": null, - "values": { - "2000-01-01": 0.03 - }, - "economy": false, - "household": true - }, - "gov.hmrc.vat.standard_rate": { - "type": "parameter", - "parameter": "gov.hmrc.vat.standard_rate", - "description": "The highest VAT rate, applicable to most goods and services.", - "label": "VAT standard rate", - "unit": "/1", - "period": null, - "values": { - "2011-01-04": 0.2, - "2010-01-01": 0.175, - "2008-12-01": 0.15, - "1991-04-01": 0.175, - "1979-06-18": 0.15, - "1974-07-29": 0.08, - "1973-04-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.hmrc.vat.reduced_rate": { - "type": "parameter", - "parameter": "gov.hmrc.vat.reduced_rate", - "description": "A reduced rate of VAT applicable to select goods and services (domestic fuel and power).", - "label": "VAT reduced rate", - "unit": "/1", - "period": null, - "values": { - "1994-04-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.hmrc.minimum_wage": { - "type": "parameterNode", - "parameter": "gov.hmrc.minimum_wage", - "description": "Minimum wage by age group", - "label": "Minimum Wage", - "economy": false, - "household": false - }, - "gov.hmrc.minimum_wage.APPRENTICE": { - "type": "parameter", - "parameter": "gov.hmrc.minimum_wage.APPRENTICE", - "description": null, - "label": "APPRENTICE", - "unit": "currency-GBP", - "period": null, - "values": { - "2025-04-01": 7.55, - "2024-04-01": 6.4, - "2022-04-01": 4.81, - "2021-04-01": 4.3, - "2020-04-01": 4.15, - "2019-04-01": 3.9, - "2018-04-01": 3.7, - "2017-04-01": 3.5, - "2016-10-01": 3.4, - "2015-10-01": 3.3, - "2014-10-01": 2.73, - "2013-10-01": 2.68, - "2012-10-01": 2.65 - }, - "economy": false, - "household": false - }, - "gov.hmrc.minimum_wage.BETWEEN_18_20": { - "type": "parameter", - "parameter": "gov.hmrc.minimum_wage.BETWEEN_18_20", - "description": null, - "label": "BETWEEN 18 20", - "unit": "currency-GBP", - "period": null, - "values": { - "2025-04-01": 10, - "2024-04-01": 8.6, - "2022-04-01": 6.83, - "2021-04-01": 6.56, - "2020-04-01": 6.45, - "2019-04-01": 6.15, - "2018-04-01": 5.9, - "2017-04-01": 5.6, - "2016-10-01": 5.55, - "2015-10-01": 5.3, - "2014-10-01": 5.13, - "2013-10-01": 5.03, - "2012-10-01": 4.98 - }, - "economy": false, - "household": false - }, - "gov.hmrc.minimum_wage.BETWEEN_21_22": { - "type": "parameter", - "parameter": "gov.hmrc.minimum_wage.BETWEEN_21_22", - "description": null, - "label": "BETWEEN 21 22", - "unit": "currency-GBP", - "period": null, - "values": { - "2025-04-01": 12.21, - "2024-04-01": 11.44, - "2022-04-01": 9.18, - "2021-04-01": 8.36, - "2020-04-01": 8.2, - "2019-04-01": 7.7, - "2018-04-01": 7.38, - "2017-04-01": 7.05, - "2016-10-01": 6.95, - "2016-04-01": 6.7, - "2015-10-01": 6.7, - "2014-10-01": 6.5, - "2013-10-01": 6.31, - "2012-10-01": 6.19 - }, - "economy": false, - "household": false - }, - "gov.hmrc.minimum_wage.BETWEEN_23_24": { - "type": "parameter", - "parameter": "gov.hmrc.minimum_wage.BETWEEN_23_24", - "description": null, - "label": "BETWEEN 23 24", - "unit": "currency-GBP", - "period": null, - "values": { - "2025-04-01": 12.21, - "2024-04-01": 11.44, - "2022-04-01": 9.5, - "2021-04-01": 8.91, - "2020-04-01": 8.2, - "2019-04-01": 7.7, - "2018-04-01": 7.38, - "2017-04-01": 7.05, - "2016-10-01": 6.95, - "2015-10-01": 6.7, - "2014-10-01": 6.5, - "2013-10-01": 6.31, - "2012-10-01": 6.19 - }, - "economy": false, - "household": false - }, - "gov.hmrc.minimum_wage.OVER_24": { - "type": "parameter", - "parameter": "gov.hmrc.minimum_wage.OVER_24", - "description": null, - "label": "OVER 24", - "unit": "currency-GBP", - "period": null, - "values": { - "2025-04-01": 12.21, - "2024-04-01": 11.44, - "2022-04-01": 9.5, - "2021-04-01": 8.91, - "2020-04-01": 8.72, - "2019-04-01": 8.21, - "2018-04-01": 7.83, - "2017-04-01": 7.5, - "2016-04-01": 7.2, - "2015-10-01": 6.7, - "2014-10-01": 6.5, - "2013-10-01": 6.31, - "2012-10-01": 6.19 - }, - "economy": false, - "household": false - }, - "gov.hmrc.minimum_wage.UNDER_18": { - "type": "parameter", - "parameter": "gov.hmrc.minimum_wage.UNDER_18", - "description": null, - "label": "UNDER 18", - "unit": "currency-GBP", - "period": null, - "values": { - "2025-04-01": 7.55, - "2024-04-01": 6.4, - "2022-04-01": 4.81, - "2021-04-01": 4.62, - "2020-04-01": 4.55, - "2019-04-01": 4.35, - "2018-04-01": 4.2, - "2017-04-01": 4.05, - "2016-10-01": 4, - "2015-10-01": 3.87, - "2014-10-01": 3.79, - "2013-10-01": 3.72, - "2012-10-01": 3.68 - }, - "economy": false, - "household": false - }, - "gov.hmrc.pensions": { - "type": "parameterNode", - "parameter": "gov.hmrc.pensions", - "description": null, - "label": "pensions", - "economy": true, - "household": true - }, - "gov.hmrc.pensions.pension_contributions_relief_age_limit": { - "type": "parameter", - "parameter": "gov.hmrc.pensions.pension_contributions_relief_age_limit", - "description": "The pensions contributions relief is limited to filers below this age threshold.", - "label": "pension contributions relief age limit", - "unit": "year", - "period": "year", - "values": { - "2004-01-01": 75 - }, - "economy": true, - "household": true - }, - "gov.hmrc.pensions.pensions_programs": { - "type": "parameter", - "parameter": "gov.hmrc.pensions.pensions_programs", - "description": "Pensions programs", - "label": "Pensions programs", - "unit": "list", - "period": "year", - "values": { - "0000-01-01": ["personal_pension_contributions", "employee_pension_contributions"] - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax": { - "type": "parameterNode", - "parameter": "gov.hmrc.income_tax", - "description": null, - "label": "Income Tax", - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.income_tax_additions": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.income_tax_additions", - "description": "All variables that are added together to calculate total income tax", - "label": "Additive components of total income tax", - "unit": "list", - "period": null, - "values": { - "0000-01-01": [ - "earned_income_tax", - "savings_income_tax", - "dividend_income_tax", - "CB_HITC", - "personal_pension_contributions_tax" - ] - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.earned_taxable_income_exclusions": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.earned_taxable_income_exclusions", - "description": "Exclusions to earned taxable income", - "label": "Earned taxable income exclusions", - "unit": "list", - "period": "year", - "values": { - "0000-01-01": [ - "taxable_savings_interest_income", - "taxable_dividend_income", - "received_allowances_earned_income", - "marriage_allowance" - ] - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.adjusted_net_income_components": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.adjusted_net_income_components", - "description": "Components of adjusted net income", - "label": "Adjusted net income components", - "unit": "list", - "period": "year", - "values": { - "0000-01-01": [ - "taxable_employment_income", - "taxable_pension_income", - "taxable_social_security_income", - "taxable_self_employment_income", - "taxable_property_income", - "taxable_savings_interest_income", - "taxable_dividend_income", - "taxable_miscellaneous_income" - ] - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.income_tax_subtractions": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.income_tax_subtractions", - "description": "All variables that are subtracted from the base amount to calculate total income tax", - "label": "Subtractive components of total income tax", - "unit": "list", - "period": null, - "values": { - "0000-01-01": ["capped_mcad", "other_tax_credits"] - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.rates": { - "type": "parameterNode", - "parameter": "gov.hmrc.income_tax.rates", - "description": null, - "label": "Tax rates", - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.rates.scotland": { - "type": "parameterNode", - "parameter": "gov.hmrc.income_tax.rates.scotland", - "description": null, - "label": "Scottish rates", - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.rates.scotland.rates": { - "type": "parameterNode", - "parameter": "gov.hmrc.income_tax.rates.scotland.rates", - "description": "Rates for Scottish Income Tax", - "label": "Scottish Income Tax rates" - }, - "gov.hmrc.income_tax.rates.scotland.rates[0]": { - "type": "parameterNode", - "parameter": "gov.hmrc.income_tax.rates.scotland.rates[0]", - "description": null, - "label": "bracket 1" - }, - "gov.hmrc.income_tax.rates.scotland.rates[0].rate": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.rates.scotland.rates[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-04-06": 0.19, - "2017-04-01": null, - "2015-01-01": null - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.rates.scotland.rates[0].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.rates.scotland.rates[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2022-01-01": 0, - "2021-04-06": 0, - "2018-04-06": 0, - "2017-04-06": null, - "2015-01-01": null - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.rates.scotland.rates[1]": { - "type": "parameterNode", - "parameter": "gov.hmrc.income_tax.rates.scotland.rates[1]", - "description": null, - "label": "bracket 2" - }, - "gov.hmrc.income_tax.rates.scotland.rates[1].rate": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.rates.scotland.rates[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2017-04-06": 0.2, - "2015-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.rates.scotland.rates[1].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.rates.scotland.rates[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2029-01-01": 2573.42528780286, - "2028-01-01": 2522.95923494296, - "2027-01-01": 2473.49354466933, - "2026-01-01": 2424.99835541225, - "2025-01-01": 2379.78793882652, - "2024-04-06": 2306, - "2023-04-06": 2162, - "2022-04-06": 2162, - "2021-04-06": 2306, - "2018-04-06": 2000, - "2017-04-06": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.rates.scotland.rates[2]": { - "type": "parameterNode", - "parameter": "gov.hmrc.income_tax.rates.scotland.rates[2]", - "description": null, - "label": "bracket 3" - }, - "gov.hmrc.income_tax.rates.scotland.rates[2].rate": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.rates.scotland.rates[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-04-06": 0.21, - "2017-04-06": null, - "2015-01-01": null - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.rates.scotland.rates[2].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.rates.scotland.rates[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2029-01-01": 15613.526973829, - "2028-01-01": 15307.3385325615, - "2027-01-01": 15007.2195071417, - "2026-01-01": 14712.9887209769, - "2025-01-01": 14438.6873599834, - "2024-04-06": 13991, - "2023-04-06": 13118, - "2022-04-06": 13118, - "2021-04-06": 13991, - "2018-04-06": 12150, - "2017-04-06": null, - "2015-01-01": null - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.rates.scotland.rates[3]": { - "type": "parameterNode", - "parameter": "gov.hmrc.income_tax.rates.scotland.rates[3]", - "description": null, - "label": "bracket 4" - }, - "gov.hmrc.income_tax.rates.scotland.rates[3].rate": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.rates.scotland.rates[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-04-06": 0.42, - "2021-04-06": 0.41, - "2017-04-06": 0.4, - "2015-01-01": 0.4 - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.rates.scotland.rates[3].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.rates.scotland.rates[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2029-01-01": 34697.7185812517, - "2028-01-01": 34017.280369838, - "2027-01-01": 33350.3301348044, - "2026-01-01": 32696.4652499903, - "2025-01-01": 32086.8892428422, - "2024-04-06": 31092, - "2023-04-06": 31092, - "2022-04-06": 31092, - "2021-04-06": 31092, - "2017-04-06": 31500, - "2015-01-01": 31500 - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.rates.scotland.rates[4]": { - "type": "parameterNode", - "parameter": "gov.hmrc.income_tax.rates.scotland.rates[4]", - "description": null, - "label": "bracket 5" - }, - "gov.hmrc.income_tax.rates.scotland.rates[4].rate": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.rates.scotland.rates[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-04-06": 0.45, - "2023-04-06": 0.47, - "2018-04-06": 0.46, - "2017-04-06": 0.45, - "2015-01-01": 0.45 - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.rates.scotland.rates[4].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.rates.scotland.rates[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2029-01-01": 69669.9656190513, - "2028-01-01": 68303.7055669943, - "2027-01-01": 66964.5281846082, - "2026-01-01": 65651.6250339925, - "2025-01-01": 64427.6500524455, - "2024-04-06": 62430, - "2023-04-06": 125140, - "2017-04-06": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.rates.scotland.rates[5]": { - "type": "parameterNode", - "parameter": "gov.hmrc.income_tax.rates.scotland.rates[5]", - "description": null, - "label": "bracket 6" - }, - "gov.hmrc.income_tax.rates.scotland.rates[5].rate": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.rates.scotland.rates[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-04-06": 0.48, - "2017-04-06": null, - "2015-01-01": null - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.rates.scotland.rates[5].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.rates.scotland.rates[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2029-01-01": 139652.40265206, - "2028-01-01": 136913.754839879, - "2027-01-01": 134229.393833443, - "2026-01-01": 131597.699131088, - "2025-01-01": 129144.259611774, - "2024-04-06": 125140, - "2017-04-06": null, - "2015-01-01": null - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.rates.dividends": { - "type": "parameterNode", - "parameter": "gov.hmrc.income_tax.rates.dividends", - "description": "Dividend income tax scale. Dividends are taxed using this scale as if they were on top of non-dividend income.", - "label": "dividends" - }, - "gov.hmrc.income_tax.rates.dividends[0]": { - "type": "parameterNode", - "parameter": "gov.hmrc.income_tax.rates.dividends[0]", - "description": null, - "label": "bracket 1" - }, - "gov.hmrc.income_tax.rates.dividends[0].rate": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.rates.dividends[0].rate", - "description": null, - "label": "Dividends basic rate", - "unit": "/1", - "period": null, - "values": { - "2022-04-01": 0.0875, - "2015-04-01": 0.075, - "2015-01-01": 0.075 - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.rates.dividends[0].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.rates.dividends[0].threshold", - "description": null, - "label": "Dividends basic rate threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2015-04-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.rates.dividends[1]": { - "type": "parameterNode", - "parameter": "gov.hmrc.income_tax.rates.dividends[1]", - "description": null, - "label": "bracket 2" - }, - "gov.hmrc.income_tax.rates.dividends[1].rate": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.rates.dividends[1].rate", - "description": null, - "label": "Dividends higher rate", - "unit": "/1", - "period": null, - "values": { - "2022-04-01": 0.3375, - "2015-04-01": 0.325, - "2015-01-01": 0.325 - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.rates.dividends[1].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.rates.dividends[1].threshold", - "description": null, - "label": "Dividends higher rate threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2015-04-01": 37500, - "2015-01-01": 37500 - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.rates.dividends[2]": { - "type": "parameterNode", - "parameter": "gov.hmrc.income_tax.rates.dividends[2]", - "description": null, - "label": "bracket 3" - }, - "gov.hmrc.income_tax.rates.dividends[2].rate": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.rates.dividends[2].rate", - "description": null, - "label": "Dividends additional rate", - "unit": "/1", - "period": null, - "values": { - "2022-04-01": 0.3935, - "2015-04-01": 0.381, - "2015-01-01": 0.381 - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.rates.dividends[2].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.rates.dividends[2].threshold", - "description": null, - "label": "Dividends additional rate threshold", - "unit": "currency-GBP", - "period": "year", - "values": { - "2015-04-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.rates.dividends[3]": { - "type": "parameterNode", - "parameter": "gov.hmrc.income_tax.rates.dividends[3]", - "description": null, - "label": "bracket 4" - }, - "gov.hmrc.income_tax.rates.dividends[3].rate": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.rates.dividends[3].rate", - "description": "An extra dividend tax bracket.", - "label": "Extra dividend tax bracket rate", - "unit": "/1", - "period": null, - "values": { - "2022-06-05": 0.3935, - "2015-04-01": 0.381, - "2015-01-01": 0.381 - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.rates.dividends[3].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.rates.dividends[3].threshold", - "description": "The lower threshold for the extra dividend bracket rate.", - "label": "Extra dividend tax bracket threshold", - "unit": "currency-GBP", - "period": "year", - "values": { - "2015-06-05": 10000000, - "2015-01-01": 10000000 - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.rates.savings_starter_rate": { - "type": "parameterNode", - "parameter": "gov.hmrc.income_tax.rates.savings_starter_rate", - "description": null, - "label": "Savings starter rate", - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.rates.savings_starter_rate.phase_out": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.rates.savings_starter_rate.phase_out", - "description": "Starter Rate for Savings phase-out rate", - "label": "phase out", - "unit": "currency_GBP", - "period": null, - "values": { - "2014-04-06": 1 - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.rates.savings_starter_rate.allowance": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.rates.savings_starter_rate.allowance", - "description": "Starter allowance for savings", - "label": "allowance", - "unit": "currency-GBP", - "period": "week", - "values": { - "2010-04-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.rates.uk": { - "type": "parameterNode", - "parameter": "gov.hmrc.income_tax.rates.uk", - "description": "Income Tax scale", - "label": "Income tax main rates" - }, - "gov.hmrc.income_tax.rates.uk[0]": { - "type": "parameterNode", - "parameter": "gov.hmrc.income_tax.rates.uk[0]", - "description": null, - "label": "bracket 1" - }, - "gov.hmrc.income_tax.rates.uk[0].rate": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.rates.uk[0].rate", - "description": "The basic rate is the first of three tax brackets on all income, after allowances are deducted", - "label": "Basic rate", - "unit": "/1", - "period": null, - "values": { - "2015-04-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.rates.uk[0].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.rates.uk[0].threshold", - "description": "The starting threshold for the basic rate, after allowances.", - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2015-04-05": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.rates.uk[1]": { - "type": "parameterNode", - "parameter": "gov.hmrc.income_tax.rates.uk[1]", - "description": null, - "label": "bracket 2" - }, - "gov.hmrc.income_tax.rates.uk[1].rate": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.rates.uk[1].rate", - "description": "The higher rate is the middle tax bracket on earned income.", - "label": "Higher rate", - "unit": "/1", - "period": null, - "values": { - "2015-04-05": 0.4, - "2015-01-01": 0.4 - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.rates.uk[1].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.rates.uk[1].threshold", - "description": "The lower threshold for the higher rate of income tax (and therefore the upper threshold of the basic rate)", - "label": "Higher rate threshold", - "unit": "currency-GBP", - "period": "year", - "values": { - "2029-01-01": 39222.9392424392, - "2028-01-01": 38453.9257216038, - "2027-04-01": 37700, - "2021-04-01": 37700, - "2020-04-01": 37500, - "2019-04-01": 37500, - "2018-04-01": 34500, - "2017-04-01": 33500, - "2015-04-05": 32000, - "2015-01-01": 32000 - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.rates.uk[2]": { - "type": "parameterNode", - "parameter": "gov.hmrc.income_tax.rates.uk[2]", - "description": null, - "label": "bracket 3" - }, - "gov.hmrc.income_tax.rates.uk[2].rate": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.rates.uk[2].rate", - "description": "The additional rate is the highest tax bracket, with no upper bound", - "label": "Additional rate", - "unit": "/1", - "period": null, - "values": { - "2015-04-05": 0.45, - "2015-01-01": 0.45 - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.rates.uk[2].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.rates.uk[2].threshold", - "description": "The lower threshold for the additional rate", - "label": "Additional rate threshold", - "unit": "currency-GBP", - "period": "year", - "values": { - "2023-01-01": 125140, - "2015-04-05": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.rates.uk[3]": { - "type": "parameterNode", - "parameter": "gov.hmrc.income_tax.rates.uk[3]", - "description": null, - "label": "bracket 4" - }, - "gov.hmrc.income_tax.rates.uk[3].rate": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.rates.uk[3].rate", - "description": "An extra tax bracket.", - "label": "Extra tax bracket rate", - "unit": "/1", - "period": null, - "values": { - "2015-04-05": 0.45, - "2015-01-01": 0.45 - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.rates.uk[3].threshold": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.rates.uk[3].threshold", - "description": "The lower threshold for the extra bracket rate.", - "label": "Extra tax bracket threshold", - "unit": "currency-GBP", - "period": "year", - "values": { - "2015-04-05": 10000000, - "2015-01-01": 10000000 - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.allowances": { - "type": "parameterNode", - "parameter": "gov.hmrc.income_tax.allowances", - "description": null, - "label": "Tax allowances", - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.allowances.trading_allowance": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.allowances.trading_allowance", - "description": "Amount of trading income untaxed per year", - "label": "Trading Allowance", - "unit": "currency-GBP", - "period": "year", - "values": { - "2005-04-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.allowances.personal_savings_allowance": { - "type": "parameterNode", - "parameter": "gov.hmrc.income_tax.allowances.personal_savings_allowance", - "description": null, - "label": "Personal savings allowance", - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.allowances.personal_savings_allowance.basic": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.allowances.personal_savings_allowance.basic", - "description": "Savings allowance in the basic threshold", - "label": "basic", - "unit": "currency-GBP", - "period": "week", - "values": { - "2005-04-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.allowances.personal_savings_allowance.additional": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.allowances.personal_savings_allowance.additional", - "description": "Savings allowance in the additional threshold", - "label": "additional", - "unit": "currency-GBP", - "period": "week", - "values": { - "2005-04-01": 0 - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.allowances.personal_savings_allowance.higher": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.allowances.personal_savings_allowance.higher", - "description": "Savings allowance in the higher threshold", - "label": "higher", - "unit": "currency-GBP", - "period": "week", - "values": { - "2005-04-01": 500 - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.allowances.personal_allowance": { - "type": "parameterNode", - "parameter": "gov.hmrc.income_tax.allowances.personal_allowance", - "description": null, - "label": "Personal allowance", - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.allowances.personal_allowance.reduction_rate": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.allowances.personal_allowance.reduction_rate", - "description": "Reduction rate for the Personal Allowance", - "label": "Personal Allowance phase-out rate", - "unit": "/1", - "period": null, - "values": { - "2009-07-21": 0.5 - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.allowances.personal_allowance.maximum_ANI": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.allowances.personal_allowance.maximum_ANI", - "description": "Maximum adjusted net income before the Personal Allowance is reduced", - "label": "Personal Allowance phase-out threshold", - "unit": "currency-GBP", - "period": "year", - "values": { - "2009-07-21": 100000 - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.allowances.personal_allowance.amount": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.allowances.personal_allowance.amount", - "description": "The Personal Allowance is deducted from general income", - "label": "Personal allowance", - "unit": "currency-GBP", - "period": "year", - "values": { - "2029-01-01": 13077.8412328569, - "2028-01-01": 12821.3787545876, - "2027-04-06": 12570, - "2021-04-06": 12570, - "2019-04-06": 12500, - "2018-04-06": 11850, - "2017-04-06": 11500, - "2015-04-06": 10600, - "2015-01-01": 10600 - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.allowances.property_allowance": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.allowances.property_allowance", - "description": "Amount of income from property untaxed per year", - "label": "Property Allowance", - "unit": "currency-GBP", - "period": "year", - "values": { - "2005-04-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.allowances.marriage_allowance": { - "type": "parameterNode", - "parameter": "gov.hmrc.income_tax.allowances.marriage_allowance", - "description": null, - "label": "Marriage allowance", - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.allowances.marriage_allowance.rounding_increment": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.allowances.marriage_allowance.rounding_increment", - "description": "The Marriage Allowance is rounded up by this increment.", - "label": "Marriage Allowance rounding increment", - "unit": "currency-GBP", - "period": null, - "values": { - "2016-04-01": 10, - "2015-01-01": 10 - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.allowances.marriage_allowance.max": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.allowances.marriage_allowance.max", - "description": "Maximum Marriage Allowance taxable income reduction, as a percentage of the full Personal Allowance", - "label": "Marriage Allowance maximum percentage", - "unit": "/1", - "period": null, - "values": { - "2016-04-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.allowances.marriage_allowance.takeup_rate": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.allowances.marriage_allowance.takeup_rate", - "description": "Percentage of eligible couples who claim Marriage Allowance.", - "label": "Marriage Allowance take-up rate", - "unit": "/1", - "period": null, - "values": { - "2000-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.allowances.annual_allowance": { - "type": "parameterNode", - "parameter": "gov.hmrc.income_tax.allowances.annual_allowance", - "description": null, - "label": "Annual allowance", - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.allowances.annual_allowance.default": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.allowances.annual_allowance.default", - "description": "Annual allowance for relief on pension contributions", - "label": "default", - "unit": "currency-GBP", - "period": null, - "values": { - "2015-04-01": 40000, - "2015-01-01": 40000 - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.allowances.annual_allowance.reduction_rate": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.allowances.annual_allowance.reduction_rate", - "description": "Reduction rate for the annual allowance", - "label": "reduction rate", - "unit": "marginal-rate", - "period": null, - "values": { - "2015-04-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.allowances.annual_allowance.minimum": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.allowances.annual_allowance.minimum", - "description": "Minimum annual allowance for relief on pension contributions", - "label": "minimum", - "unit": "currency-GBP", - "period": null, - "values": { - "2015-04-01": 4000, - "2015-01-01": 4000 - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.allowances.annual_allowance.taper": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.allowances.annual_allowance.taper", - "description": "Adjusted net income limit for tapering of the annual allowance", - "label": "taper", - "unit": "currency-GBP", - "period": null, - "values": { - "2015-04-01": 240000, - "2015-01-01": 240000 - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.allowances.dividend_allowance": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.allowances.dividend_allowance", - "description": "Amount of dividend income untaxed per year", - "label": "Dividend Allowance", - "unit": "currency-GBP", - "period": "year", - "values": { - "2024-04-06": 500, - "2023-04-06": 1000, - "2018-04-06": 2000, - "2016-04-06": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.allowances.married_couples_allowance": { - "type": "parameterNode", - "parameter": "gov.hmrc.income_tax.allowances.married_couples_allowance", - "description": null, - "label": "Married couples' allowance", - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.allowances.married_couples_allowance.deduction_rate": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.allowances.married_couples_allowance.deduction_rate", - "description": "Percentage of the Married Couple's Allowance which is deductible from Income Tax Liability", - "label": "deduction rate", - "unit": "/1", - "period": null, - "values": { - "2010-01-01": 0.1 - }, - "economy": false, - "household": true - }, - "gov.hmrc.income_tax.bases": { - "type": "parameterNode", - "parameter": "gov.hmrc.income_tax.bases", - "description": null, - "label": "bases", - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.bases.taxable_self_employment_income_deductions": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.bases.taxable_self_employment_income_deductions", - "description": "Pre-tax deductions applied to self-employment income", - "label": "Deductions from self-employment income", - "unit": "list", - "period": "year", - "values": { - "0000-01-01": ["loss_relief", "capital_allowances", "trading_allowance"] - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.charges": { - "type": "parameterNode", - "parameter": "gov.hmrc.income_tax.charges", - "description": null, - "label": "Tax charges", - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.charges.CB_HITC": { - "type": "parameterNode", - "parameter": "gov.hmrc.income_tax.charges.CB_HITC", - "description": null, - "label": "Child Benefit High-Income Tax Charge", - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.charges.CB_HITC.phase_out_start": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.charges.CB_HITC.phase_out_start", - "description": "Income after which the Child Benefit phases out", - "label": "Child Benefit Tax Charge phase-out threshold", - "unit": "currency-GBP", - "period": "year", - "values": { - "2024-01-01": 60000, - "2015-06-05": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.charges.CB_HITC.phase_out_end": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.charges.CB_HITC.phase_out_end", - "description": "Income after which the Child Benefit is fully phased out", - "label": "Child Benefit Tax Charge phase-out end", - "unit": "currency-GBP", - "period": "year", - "values": { - "2024-01-01": 80000, - "2015-06-05": 60000, - "2015-01-01": 60000 - }, - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.reliefs": { - "type": "parameterNode", - "parameter": "gov.hmrc.income_tax.reliefs", - "description": null, - "label": "Tax reliefs", - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.reliefs.pension_contribution": { - "type": "parameterNode", - "parameter": "gov.hmrc.income_tax.reliefs.pension_contribution", - "description": null, - "label": "Pension contributions", - "economy": true, - "household": true - }, - "gov.hmrc.income_tax.reliefs.pension_contribution.basic_amount": { - "type": "parameter", - "parameter": "gov.hmrc.income_tax.reliefs.pension_contribution.basic_amount", - "description": "The 'basic amount' - the maximum amount of tax relief from pension contributions", - "label": "basic amount", - "unit": "currency-GBP", - "period": null, - "values": { - "2004-07-22": 3600 - }, - "economy": false, - "household": true - }, - "gov.dhsc": { - "type": "parameterNode", - "parameter": "gov.dhsc", - "description": null, - "label": "Department for Health and Social Care", - "economy": true, - "household": true - }, - "gov.dhsc.spending": { - "type": "parameter", - "parameter": "gov.dhsc.spending", - "description": "Total spending by the Department for Health and Social Care. Includes both Resource Departmental Expenditure Limit and Capital Departmental Expenditure Limit, but excludes depreciation.", - "label": "DHSC budget", - "unit": "currency-GBP", - "period": null, - "values": { - "2034-01-01": 340.886607665966, - "2033-01-01": 323.968765819835, - "2032-01-01": 307.890538573674, - "2031-01-01": 292.610256742792, - "2030-01-01": 278.088319140065, - "2029-01-01": 264.287089943411, - "2028-01-01": 251.170801156794, - "2027-01-01": 238.705459912, - "2026-01-01": 226.858760370913, - "2025-01-01": 215.6, - "2024-01-01": 204.9, - "2023-01-01": 188.4, - "2015-01-01": 188.4 - }, - "economy": true, - "household": true - }, - "gov.dcms": { - "type": "parameterNode", - "parameter": "gov.dcms", - "description": null, - "label": "DCMS", - "economy": true, - "household": true - }, - "gov.dcms.bbc": { - "type": "parameterNode", - "parameter": "gov.dcms.bbc", - "description": null, - "label": "BBC", - "economy": true, - "household": true - }, - "gov.dcms.bbc.tv_licence": { - "type": "parameterNode", - "parameter": "gov.dcms.bbc.tv_licence", - "description": null, - "label": "tv licence", - "economy": true, - "household": true - }, - "gov.dcms.bbc.tv_licence.colour": { - "type": "parameter", - "parameter": "gov.dcms.bbc.tv_licence.colour", - "description": "Full TV licence for a colour TV, before any discounts are applied.", - "label": "TV Licence fee", - "unit": "currency-GBP", - "period": "year", - "values": { - "2021-04-01": 159, - "2020-04-01": 157.5, - "2019-04-01": 154.5, - "2018-04-01": 150.5, - "2017-04-01": 147, - "2015-01-01": 147 - }, - "economy": true, - "household": true - }, - "gov.dcms.bbc.tv_licence.tv_ownership": { - "type": "parameter", - "parameter": "gov.dcms.bbc.tv_licence.tv_ownership", - "description": "Percentage of households which own a TV.", - "label": "TV ownership rate", - "unit": "/1", - "period": null, - "values": { - "2019-01-01": 0.9544, - "2018-01-01": 0.9541, - "2017-01-01": 0.9536, - "2015-01-01": 0.9536 - }, - "economy": true, - "household": true - }, - "gov.dcms.bbc.tv_licence.evasion_rate": { - "type": "parameter", - "parameter": "gov.dcms.bbc.tv_licence.evasion_rate", - "description": "Percent of households legally required to purchase a TV licence who evade the licence fee.", - "label": "TV licence fee evasion rate", - "unit": "/1", - "period": null, - "values": { - "2019-01-01": 0.0725, - "2018-01-01": 0.0657, - "2015-01-01": 0.0657 - }, - "economy": true, - "household": true - }, - "gov.dcms.bbc.tv_licence.discount": { - "type": "parameterNode", - "parameter": "gov.dcms.bbc.tv_licence.discount", - "description": null, - "label": "Discount", - "economy": true, - "household": true - }, - "gov.dcms.bbc.tv_licence.discount.aged": { - "type": "parameterNode", - "parameter": "gov.dcms.bbc.tv_licence.discount.aged", - "description": null, - "label": "Aged", - "economy": true, - "household": true - }, - "gov.dcms.bbc.tv_licence.discount.aged.must_claim_pc": { - "type": "parameter", - "parameter": "gov.dcms.bbc.tv_licence.discount.aged.must_claim_pc", - "description": "Whether aged individuals must claim Pension Credit in order to qualify for a free TV licence.", - "label": "Aged TV licence Pension Credit requirement", - "unit": "bool", - "period": null, - "values": { - "2020-04-01": true, - "2003-01-01": false - }, - "economy": true, - "household": true - }, - "gov.dcms.bbc.tv_licence.discount.aged.discount": { - "type": "parameter", - "parameter": "gov.dcms.bbc.tv_licence.discount.aged.discount", - "description": "Percentage discount for qualifying aged households.", - "label": "Aged TV Licence discount", - "unit": "/1", - "period": null, - "values": { - "2003-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.dcms.bbc.tv_licence.discount.aged.min_age": { - "type": "parameter", - "parameter": "gov.dcms.bbc.tv_licence.discount.aged.min_age", - "description": "Minimum age required to qualify for a TV licence discount.", - "label": "Aged TV Licence discounted minimum age", - "unit": "year", - "period": null, - "values": { - "2003-01-01": 75 - }, - "economy": true, - "household": true - }, - "gov.dcms.bbc.tv_licence.discount.blind": { - "type": "parameterNode", - "parameter": "gov.dcms.bbc.tv_licence.discount.blind", - "description": null, - "label": "Blind", - "economy": true, - "household": true - }, - "gov.dcms.bbc.tv_licence.discount.blind.discount": { - "type": "parameter", - "parameter": "gov.dcms.bbc.tv_licence.discount.blind.discount", - "description": "Percentage discount for qualifying blind licence holders.", - "label": "Blind TV Licence discount", - "unit": "/1", - "period": null, - "values": { - "2003-01-01": 0.5 - }, - "economy": false, - "household": true - }, - "gov.dwp": { - "type": "parameterNode", - "parameter": "gov.dwp", - "description": null, - "label": "DWP", - "economy": true, - "household": true - }, - "gov.dwp.LHA": { - "type": "parameterNode", - "parameter": "gov.dwp.LHA", - "description": null, - "label": "Local Housing Allowance", - "economy": true, - "household": true - }, - "gov.dwp.LHA.percentile": { - "type": "parameter", - "parameter": "gov.dwp.LHA.percentile", - "description": "Local Housing Allowance rates are set at this percentile of private rents in the family's Broad Rental Market Area. This parameter does not apply if LHA is frozen.", - "label": "LHA percentile", - "unit": "/1", - "period": null, - "values": { - "2015-01-01": 0.3 - }, - "economy": true, - "household": true - }, - "gov.dwp.LHA.means_test": { - "type": "parameterNode", - "parameter": "gov.dwp.LHA.means_test", - "description": null, - "label": "means test", - "economy": true, - "household": true - }, - "gov.dwp.LHA.means_test.earn_disregard": { - "type": "parameter", - "parameter": "gov.dwp.LHA.means_test.earn_disregard", - "description": "Threshold earnings, above which the Housing Benefit (LHA) is reduced", - "label": "Housing Benefit (LHA) earnings disregard", - "unit": "currency-GBP", - "period": "week", - "values": { - "2015-04-01": 5, - "2015-01-01": 5 - }, - "economy": false, - "household": true - }, - "gov.dwp.LHA.means_test.worker_hours": { - "type": "parameter", - "parameter": "gov.dwp.LHA.means_test.worker_hours", - "description": "Default hours requirement for the Working-Tax-Credit-related worker element of Housing Benefit (LHA)", - "label": "LHA worker hours requirement", - "unit": "hour", - "period": "week", - "values": { - "2015-04-01": 30, - "2015-01-01": 30 - }, - "economy": false, - "household": true - }, - "gov.dwp.LHA.means_test.income_disregard_lone_parent": { - "type": "parameter", - "parameter": "gov.dwp.LHA.means_test.income_disregard_lone_parent", - "description": "Threshold in income for a lone parent, above which the Housing Benefit (LHA) amount is reduced", - "label": "Housing Benefit (LHA) income disregard (lone parent)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2015-04-01": 20, - "2015-01-01": 20 - }, - "economy": false, - "household": true - }, - "gov.dwp.LHA.means_test.income_disregard_couple": { - "type": "parameter", - "parameter": "gov.dwp.LHA.means_test.income_disregard_couple", - "description": "Threshold in income for a couple, above which the Housing Benefit (LHA) amount is reduced", - "label": "Housing Benefit (LHA) income disregard (couple)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2015-04-01": 10, - "2015-01-01": 10 - }, - "economy": false, - "household": true - }, - "gov.dwp.LHA.means_test.income_disregard_single": { - "type": "parameter", - "parameter": "gov.dwp.LHA.means_test.income_disregard_single", - "description": "Threshold in income for a single person, above which the Housing Benefit (LHA) amount is reduced", - "label": "Housing Benefit (LHA) income disregard (single)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2015-04-01": 5, - "2015-01-01": 5 - }, - "economy": false, - "household": true - }, - "gov.dwp.LHA.means_test.worker_income_disregard": { - "type": "parameter", - "parameter": "gov.dwp.LHA.means_test.worker_income_disregard", - "description": "Additional disregard in income for meeting the 16/30 hours requirement", - "label": "Housing Benefit (LHA) worker income disregard", - "unit": "currency-GBP", - "period": "week", - "values": { - "2015-04-01": 30, - "2015-01-01": 30 - }, - "economy": false, - "household": true - }, - "gov.dwp.LHA.means_test.withdrawal_rate": { - "type": "parameter", - "parameter": "gov.dwp.LHA.means_test.withdrawal_rate", - "description": "Withdrawal rate of Housing Benefit (LHA)", - "label": "Housing Benefit (LHA) withdrawal rate", - "unit": "/1", - "period": "week", - "values": { - "2015-04-01": 0.65, - "2015-01-01": 0.65 - }, - "economy": false, - "household": true - }, - "gov.dwp.LHA.means_test.pension_disregard": { - "type": "parameter", - "parameter": "gov.dwp.LHA.means_test.pension_disregard", - "description": "Threshold in occupational and personal pensions, above which the Housing Benefit (LHA) amount is reduced", - "label": "Housing Benefit (LHA) pension disregard", - "unit": "currency-GBP", - "period": "week", - "values": { - "2015-04-01": 50, - "2015-01-01": 50 - }, - "economy": false, - "household": true - }, - "gov.dwp.LHA.means_test.income_disregard_lone": { - "type": "parameter", - "parameter": "gov.dwp.LHA.means_test.income_disregard_lone", - "description": "Threshold in income for a lone parent, above which the Housing Benefit (LHA) amount is reduced", - "label": "Housing Benefit (LHA) income disregard (lone parent)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2015-04-01": 20, - "2015-01-01": 20 - }, - "economy": false, - "household": true - }, - "gov.dwp.LHA.__pycache__": { - "type": "parameterNode", - "parameter": "gov.dwp.LHA.__pycache__", - "description": null, - "label": " pycache ", - "economy": true, - "household": true - }, - "gov.dwp.LHA.freeze": { - "type": "parameter", - "parameter": "gov.dwp.LHA.freeze", - "description": "While this parameter is true, LHA rates are frozen in cash terms.", - "label": "LHA freeze", - "unit": "bool", - "period": null, - "values": { - "2024-01-01": false, - "2020-01-01": true, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.dwp.JSA": { - "type": "parameterNode", - "parameter": "gov.dwp.JSA", - "description": null, - "label": "Jobseeker's Allowance", - "economy": true, - "household": true - }, - "gov.dwp.JSA.contrib": { - "type": "parameterNode", - "parameter": "gov.dwp.JSA.contrib", - "description": null, - "label": "contrib", - "economy": true, - "household": true - }, - "gov.dwp.JSA.contrib.earn_disregard": { - "type": "parameter", - "parameter": "gov.dwp.JSA.contrib.earn_disregard", - "description": "Threshold in earnings, above which the contributory Jobseeker's Allowance amount is reduced", - "label": "Jobseeker's Allowance earnings disregard", - "unit": "currency-GBP", - "period": "week", - "values": { - "2015-04-01": 5, - "2015-01-01": 5 - }, - "economy": false, - "household": true - }, - "gov.dwp.JSA.contrib.amount_over_25": { - "type": "parameter", - "parameter": "gov.dwp.JSA.contrib.amount_over_25", - "description": "Contributory Jobseeker's Allowance for persons aged over 25", - "label": "Contributory JSA (over 25)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2022-04-01": 77, - "2021-04-01": 74.7, - "2020-04-01": 74.35, - "2019-04-01": 73.1, - "2018-04-01": 73.1, - "2017-04-01": 73.1, - "2016-04-01": 73.1, - "2015-04-01": 73.1, - "2015-01-01": 73.1 - }, - "economy": false, - "household": true - }, - "gov.dwp.JSA.contrib.amount_18_24": { - "type": "parameter", - "parameter": "gov.dwp.JSA.contrib.amount_18_24", - "description": "Income-based Jobseeker's Allowance for persons aged 18-24", - "label": "Income-based JSA (18-24)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2022-04-01": 61.05, - "2021-04-01": 59.2, - "2020-04-01": 58.9, - "2019-04-01": 57.9, - "2018-04-01": 57.9, - "2017-04-01": 57.9, - "2016-04-01": 57.9, - "2015-04-01": 57.9, - "2015-01-01": 57.9 - }, - "economy": false, - "household": true - }, - "gov.dwp.JSA.contrib.pension_disregard": { - "type": "parameter", - "parameter": "gov.dwp.JSA.contrib.pension_disregard", - "description": "Threshold in occupational and personal pensions, above which the contributory Jobseeker's Allowance amount is reduced", - "label": "Jobseeker's Allowance pension disregard", - "unit": "currency-GBP", - "period": "week", - "values": { - "2015-04-01": 50, - "2015-01-01": 50 - }, - "economy": false, - "household": true - }, - "gov.dwp.JSA.hours": { - "type": "parameterNode", - "parameter": "gov.dwp.JSA.hours", - "description": null, - "label": "hours", - "economy": true, - "household": true - }, - "gov.dwp.JSA.hours.couple": { - "type": "parameter", - "parameter": "gov.dwp.JSA.hours.couple", - "description": "Hours requirement for joint claimants of Jobseeker's Allowance", - "label": "Jobseeker's Allowance hours requirement (couple)", - "unit": "hour", - "period": "week", - "values": { - "2015-04-01": 24, - "2015-01-01": 24 - }, - "economy": false, - "household": true - }, - "gov.dwp.JSA.hours.single": { - "type": "parameter", - "parameter": "gov.dwp.JSA.hours.single", - "description": "Hours requirement for single claimants of Jobseeker's Allowance", - "label": "Jobseeker's Allowance hours requirement (single)", - "unit": "hour", - "period": "week", - "values": { - "2015-04-01": 16, - "2015-01-01": 16 - }, - "economy": false, - "household": true - }, - "gov.dwp.JSA.income": { - "type": "parameterNode", - "parameter": "gov.dwp.JSA.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.dwp.JSA.income.couple": { - "type": "parameter", - "parameter": "gov.dwp.JSA.income.couple", - "description": "Weekly contributory Jobseeker's Allowance for couples", - "label": "Income-based JSA (couple)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 157.52776977697, - "2028-01-01": 154.439245887499, - "2027-01-01": 151.411317848561, - "2026-01-01": 148.588483457581, - "2025-01-01": 143.98133432937, - "2024-01-01": 140.744583667057, - "2023-01-01": 133.155186448771, - "2022-04-01": 121.05, - "2021-04-01": 117.4, - "2020-04-01": 116.8, - "2019-04-01": 114.85, - "2018-04-01": 114.85, - "2017-04-01": 114.85, - "2016-04-01": 114.85, - "2015-04-01": 114.85, - "2015-01-01": 114.85 - }, - "economy": true, - "household": true - }, - "gov.dwp.JSA.income.amount_over_25": { - "type": "parameter", - "parameter": "gov.dwp.JSA.income.amount_over_25", - "description": "Income-based Jobseeker's Allowance for persons aged over 25", - "label": "Income-based JSA (over 25)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 100.203537982872, - "2028-01-01": 98.2389255129074, - "2027-01-01": 96.3128581110221, - "2026-01-01": 94.5172509395601, - "2025-01-01": 91.5866397634157, - "2024-01-01": 89.5277401269176, - "2023-01-01": 84.7001186002095, - "2022-04-01": 77, - "2021-04-01": 74.7, - "2020-04-01": 74.35, - "2019-04-01": 73.1, - "2018-04-01": 73.1, - "2017-04-01": 73.1, - "2016-04-01": 73.1, - "2015-04-01": 73.1, - "2015-01-01": 73.1 - }, - "economy": true, - "household": true - }, - "gov.dwp.JSA.income.amount_18_24": { - "type": "parameter", - "parameter": "gov.dwp.JSA.income.amount_18_24", - "description": "Income-based Jobseeker's Allowance for persons aged 18-24", - "label": "Income-based JSA (18-24)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 79.4470908292773, - "2028-01-01": 77.8894337995194, - "2027-01-01": 76.3623375023104, - "2026-01-01": 74.9386775306512, - "2025-01-01": 72.6151215267082, - "2024-01-01": 70.9827082434847, - "2023-01-01": 67.1550940330232, - "2022-04-01": 61.05, - "2021-04-01": 59.2, - "2020-04-01": 58.9, - "2019-04-01": 57.9, - "2018-04-01": 57.9, - "2017-04-01": 57.9, - "2016-04-01": 57.9, - "2015-04-01": 57.9, - "2015-01-01": 57.9 - }, - "economy": true, - "household": true - }, - "gov.dwp.JSA.income.income_disregard_lone_parent": { - "type": "parameter", - "parameter": "gov.dwp.JSA.income.income_disregard_lone_parent", - "description": "Threshold in income for a lone parent, above which the contributory Jobseeker's Allowance amount is reduced", - "label": "Jobseeker's Allowance income disregard (lone parent)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2015-04-01": 20, - "2015-01-01": 20 - }, - "economy": false, - "household": true - }, - "gov.dwp.JSA.income.income_disregard_couple": { - "type": "parameter", - "parameter": "gov.dwp.JSA.income.income_disregard_couple", - "description": "Threshold in income for a couple, above which the contributory Jobseeker's Allowance amount is reduced", - "label": "Jobseeker's Allowance income disregard (couple)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2015-04-01": 10, - "2015-01-01": 10 - }, - "economy": true, - "household": true - }, - "gov.dwp.JSA.income.income_disregard_single": { - "type": "parameter", - "parameter": "gov.dwp.JSA.income.income_disregard_single", - "description": "Threshold in income for a single person, above which the Jobseeker's Allowance amount is reduced", - "label": "Jobseeker's Allowance income disregard (single)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2015-04-01": 5, - "2015-01-01": 5 - }, - "economy": true, - "household": true - }, - "gov.dwp.JSA.income.takeup": { - "type": "parameter", - "parameter": "gov.dwp.JSA.income.takeup", - "description": "Share of eligible Income-based Jobseeker's Allowance recipients that participate", - "label": "Income-based Jobseeker's Allowance take-up rate", - "unit": "/1", - "period": null, - "values": { - "2015-04-06": 0.56, - "2014-04-06": 0.59, - "2013-04-06": 0.67, - "2012-04-06": 0.67, - "2009-04-06": 0.69 - }, - "economy": false, - "household": true - }, - "gov.dwp.disability_premia": { - "type": "parameterNode", - "parameter": "gov.dwp.disability_premia", - "description": null, - "label": "Disability premiums", - "economy": true, - "household": true - }, - "gov.dwp.disability_premia.disability_couple": { - "type": "parameter", - "parameter": "gov.dwp.disability_premia.disability_couple", - "description": "Disability premium for a couple", - "label": "Legacy benefit disability premium (couple)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 73.3894508254624, - "2028-01-01": 71.9505612098061, - "2027-01-01": 70.5399021480338, - "2026-01-01": 69.2247926532534, - "2025-01-01": 67.078401925643, - "2024-01-01": 65.5704560320243, - "2023-01-01": 62.0346877371079, - "2022-01-01": 56.3950917035138, - "2021-01-01": 54.2261165327961, - "2020-01-01": 53.9025509536642, - "2019-01-01": 53.0013448104445, - "2018-01-01": 51.8095811203265, - "2017-01-01": 50.3984877423406, - "2016-01-01": 49.849946364564, - "2015-04-01": 49.8, - "2015-01-01": 49.8 - }, - "economy": true, - "household": true - }, - "gov.dwp.disability_premia.enhanced_couple": { - "type": "parameter", - "parameter": "gov.dwp.disability_premia.enhanced_couple", - "description": "Enhanced disability premium for a couple, invalid for Employment and Support Allowance", - "label": "Legacy benefit enhanced disability premium (couple)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 36.1052519121251, - "2028-01-01": 35.3973644506074, - "2027-01-01": 34.703365514595, - "2026-01-01": 34.0563738956769, - "2025-01-01": 33.0004186180372, - "2024-01-01": 32.2585576864377, - "2023-01-01": 30.5190732843201, - "2022-01-01": 27.7445732276323, - "2021-01-01": 26.6775071295884, - "2020-01-01": 26.5183232603368, - "2019-01-01": 26.074958792287, - "2018-01-01": 25.4886493463454, - "2017-01-01": 24.7944367407097, - "2016-01-01": 24.524572006663, - "2015-04-01": 24.5, - "2015-01-01": 24.5 - }, - "economy": true, - "household": true - }, - "gov.dwp.disability_premia.severe_single": { - "type": "parameter", - "parameter": "gov.dwp.disability_premia.severe_single", - "description": "Severe disability premium for a single person", - "label": "Legacy benefit severe disability premium (single)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 98.66312716395, - "2028-01-01": 96.7287163252313, - "2027-01-01": 94.8322580082503, - "2026-01-01": 93.0642543802273, - "2025-01-01": 90.178694958269, - "2024-01-01": 88.1514464125307, - "2023-01-01": 83.398039036132, - "2022-01-01": 75.8162929628564, - "2021-01-01": 72.900371523508, - "2020-01-01": 72.4653772359, - "2019-01-01": 71.2538159650454, - "2018-01-01": 69.6516356627683, - "2017-01-01": 67.7545934608374, - "2016-01-01": 67.0171467692281, - "2015-04-01": 66.95, - "2015-01-01": 66.95 - }, - "economy": true, - "household": true - }, - "gov.dwp.disability_premia.severe_couple": { - "type": "parameter", - "parameter": "gov.dwp.disability_premia.severe_couple", - "description": "Severe disability premium for a couple where both are eligible", - "label": "Legacy benefit severe disability premium (couple)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 197.3262543279, - "2028-01-01": 193.457432650463, - "2027-01-01": 189.664516016501, - "2026-01-01": 186.128508760455, - "2025-01-01": 180.357389916538, - "2024-01-01": 176.302892825061, - "2023-01-01": 166.796078072264, - "2022-01-01": 151.632585925713, - "2021-01-01": 145.800743047016, - "2020-01-01": 144.9307544718, - "2019-01-01": 142.507631930091, - "2018-01-01": 139.303271325537, - "2017-01-01": 135.509186921675, - "2016-01-01": 134.034293538456, - "2015-04-01": 133.9, - "2015-01-01": 133.9 - }, - "economy": true, - "household": true - }, - "gov.dwp.disability_premia.disability_single": { - "type": "parameter", - "parameter": "gov.dwp.disability_premia.disability_single", - "description": "Disability premium for a single person", - "label": "Legacy benefit disability premium (single)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 51.5052471154601, - "2028-01-01": 50.4954239815808, - "2027-01-01": 49.5054132544936, - "2026-01-01": 48.5824599042411, - "2025-01-01": 47.0761073755266, - "2024-01-01": 46.0178200465713, - "2023-01-01": 43.5363922974281, - "2022-01-01": 39.5784830328877, - "2021-01-01": 38.0562805787394, - "2020-01-01": 37.8291999162764, - "2019-01-01": 37.1967269302216, - "2018-01-01": 36.3603385573376, - "2017-01-01": 35.3700230239921, - "2016-01-01": 34.9850527197091, - "2015-04-01": 34.95, - "2015-01-01": 34.95 - }, - "economy": true, - "household": true - }, - "gov.dwp.disability_premia.enhanced_single": { - "type": "parameter", - "parameter": "gov.dwp.disability_premia.enhanced_single", - "description": "Enhanced disability premium for a single person, invalid for Employment and Support Allowance", - "label": "Legacy benefit enhanced disability premium (single)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 25.1999921509118, - "2028-01-01": 24.7059155961383, - "2027-01-01": 24.2215326652887, - "2026-01-01": 23.7699589231051, - "2025-01-01": 23.032945239528, - "2024-01-01": 22.5151565893095, - "2023-01-01": 21.3010674759949, - "2022-01-01": 19.364579681327, - "2021-01-01": 18.6198110986107, - "2020-01-01": 18.5087072551739, - "2019-01-01": 18.199256952984, - "2018-01-01": 17.7900368907145, - "2017-01-01": 17.3055048271892, - "2016-01-01": 17.1171502577117, - "2015-04-01": 17.1, - "2015-01-01": 17.1 - }, - "economy": true, - "household": true - }, - "gov.dwp.universal_credit": { - "type": "parameterNode", - "parameter": "gov.dwp.universal_credit", - "description": null, - "label": "Universal Credit", - "economy": true, - "household": true - }, - "gov.dwp.universal_credit.means_test": { - "type": "parameterNode", - "parameter": "gov.dwp.universal_credit.means_test", - "description": null, - "label": "Means test", - "economy": true, - "household": true - }, - "gov.dwp.universal_credit.means_test.reduction_rate": { - "type": "parameter", - "parameter": "gov.dwp.universal_credit.means_test.reduction_rate", - "description": "Rate at which Universal Credit is reduced with earnings above the work allowance.", - "label": "Universal Credit earned income reduction rate", - "unit": "/1", - "period": "year", - "values": { - "2021-11-24": 0.55, - "2017-04-10": 0.63, - "2013-04-29": 0.65 - }, - "economy": true, - "household": true - }, - "gov.dwp.universal_credit.means_test.income_definitions": { - "type": "parameterNode", - "parameter": "gov.dwp.universal_credit.means_test.income_definitions", - "description": null, - "label": "Income definitions", - "economy": true, - "household": true - }, - "gov.dwp.universal_credit.means_test.income_definitions.unearned": { - "type": "parameter", - "parameter": "gov.dwp.universal_credit.means_test.income_definitions.unearned", - "description": "Unearned income sources for Universal Credit.", - "label": "Universal Credit unearned income sources", - "unit": "list", - "period": "year", - "values": { - "2010-01-01": [ - "carers_allowance", - "jsa_contrib", - "private_pension_income", - "savings_interest_income", - "dividend_income", - "property_income" - ] - }, - "economy": false, - "household": true - }, - "gov.dwp.universal_credit.means_test.work_allowance": { - "type": "parameterNode", - "parameter": "gov.dwp.universal_credit.means_test.work_allowance", - "description": null, - "label": "work allowance", - "economy": true, - "household": true - }, - "gov.dwp.universal_credit.means_test.work_allowance.with_housing": { - "type": "parameter", - "parameter": "gov.dwp.universal_credit.means_test.work_allowance.with_housing", - "description": "Universal Credit Work Allowance if household receives housing support.", - "label": "Universal Credit Work Allowance with housing support", - "unit": "currency-GBP", - "period": "month", - "values": { - "2029-01-01": 449.668796861039, - "2028-01-01": 440.852492133173, - "2027-01-01": 432.209160483276, - "2026-01-01": 424.151276174197, - "2025-04-01": 411, - "2024-04-01": 404, - "2023-04-01": 379, - "2022-04-06": 344, - "2021-11-24": 335, - "2021-04-12": 293, - "2020-04-06": 292, - "2019-04-08": 287, - "2018-04-09": 198, - "2016-04-11": 192, - "2015-01-01": 192 - }, - "economy": true, - "household": true - }, - "gov.dwp.universal_credit.means_test.work_allowance.without_housing": { - "type": "parameter", - "parameter": "gov.dwp.universal_credit.means_test.work_allowance.without_housing", - "description": "Universal Credit Work Allowance if household does not receive housing support.", - "label": "Universal Credit Work Allowance without housing support", - "unit": "currency-GBP", - "period": "month", - "values": { - "2029-01-01": 748.353910104503, - "2028-01-01": 733.681519754477, - "2027-01-01": 719.296997008663, - "2026-01-01": 705.886795384795, - "2025-04-01": 684, - "2024-04-01": 673, - "2023-04-01": 631, - "2022-04-06": 573, - "2021-11-24": 557, - "2021-04-12": 515, - "2020-04-06": 512, - "2019-04-08": 503, - "2018-04-09": 409, - "2016-04-11": 397, - "2015-01-01": 397 - }, - "economy": true, - "household": true - }, - "gov.dwp.universal_credit.standard_allowance": { - "type": "parameterNode", - "parameter": "gov.dwp.universal_credit.standard_allowance", - "description": null, - "label": "Standard allowance", - "economy": true, - "household": true - }, - "gov.dwp.universal_credit.standard_allowance.claimant_type": { - "type": "parameterNode", - "parameter": "gov.dwp.universal_credit.standard_allowance.claimant_type", - "description": null, - "label": "claimant type", - "economy": true, - "household": true - }, - "gov.dwp.universal_credit.standard_allowance.claimant_type.age_threshold": { - "type": "parameter", - "parameter": "gov.dwp.universal_credit.standard_allowance.claimant_type.age_threshold", - "description": "A higher Universal Credit standard allowance is provided to claimants over this age threshold.", - "label": "Universal Credit standard allowance claimant type age threshold", - "unit": "year", - "period": "year", - "values": { - "2017-04-01": 25, - "2015-01-01": 25 - }, - "economy": true, - "household": true - }, - "gov.dwp.universal_credit.standard_allowance.amount": { - "type": "parameterNode", - "parameter": "gov.dwp.universal_credit.standard_allowance.amount", - "description": "Universal Credit standard allowance.", - "label": "amount", - "economy": true, - "household": true - }, - "gov.dwp.universal_credit.standard_allowance.amount.SINGLE_YOUNG": { - "type": "parameter", - "parameter": "gov.dwp.universal_credit.standard_allowance.amount.SINGLE_YOUNG", - "description": "Standard allowance for single claimants under 25", - "label": "Universal Credit single amount (under 25)", - "unit": "currency-GBP", - "period": "month", - "values": { - "2029-01-01": 346.802956761587, - "2028-01-01": 340.003462180957, - "2027-01-01": 333.337371508489, - "2026-01-01": 327.122801755954, - "2025-04-01": 316.98, - "2024-04-01": 311.68, - "2023-04-01": 292.11, - "2022-04-06": 265.31, - "2021-10-06": 257.33, - "2020-04-06": 344, - "2015-04-01": 251.77, - "2015-01-01": 251.77 - }, - "economy": true, - "household": true - }, - "gov.dwp.universal_credit.standard_allowance.amount.SINGLE_OLD": { - "type": "parameter", - "parameter": "gov.dwp.universal_credit.standard_allowance.amount.SINGLE_OLD", - "description": "Standard allowance for single claimants over 25.", - "label": "Universal Credit single amount (over 25)", - "unit": "currency-GBP", - "period": "month", - "values": { - "2029-01-01": 437.787037411134, - "2028-01-01": 429.203689056369, - "2027-01-01": 420.788743250068, - "2026-01-01": 412.943775300105, - "2025-04-01": 400.14, - "2024-04-01": 393.45, - "2023-04-01": 368.74, - "2022-04-06": 334.91, - "2021-10-06": 324.84, - "2020-04-06": 411.51, - "2015-04-01": 317.82, - "2015-01-01": 317.82 - }, - "economy": true, - "household": true - }, - "gov.dwp.universal_credit.standard_allowance.amount.COUPLE_YOUNG": { - "type": "parameter", - "parameter": "gov.dwp.universal_credit.standard_allowance.amount.COUPLE_YOUNG", - "description": "Standard allowance for couples where both are under 25.", - "label": "Universal Credit couple amount (both under 25)", - "unit": "currency-GBP", - "period": "month", - "values": { - "2029-01-01": 544.361824521192, - "2028-01-01": 533.688947593334, - "2027-01-01": 523.225469095995, - "2026-01-01": 513.470723748106, - "2025-04-01": 497.55, - "2024-04-01": 489.23, - "2023-04-01": 458.51, - "2022-04-06": 416.45, - "2021-10-06": 403.93, - "2020-04-06": 490.6, - "2015-04-01": 395.2, - "2015-01-01": 395.2 - }, - "economy": true, - "household": true - }, - "gov.dwp.universal_credit.standard_allowance.amount.COUPLE_OLD": { - "type": "parameter", - "parameter": "gov.dwp.universal_credit.standard_allowance.amount.COUPLE_OLD", - "description": "Standard allowance for couples where one is over 25.", - "label": "Universal Credit couple amount (one over 25)", - "unit": "currency-GBP", - "period": "month", - "values": { - "2029-01-01": 687.194577392746, - "2028-01-01": 673.721290289163, - "2027-01-01": 660.512344767751, - "2026-01-01": 648.198093832148, - "2025-04-01": 628.1, - "2024-04-01": 617.6, - "2023-04-01": 578.82, - "2022-04-06": 525.72, - "2021-10-06": 509.91, - "2020-04-06": 596.58, - "2015-04-01": 498.89, - "2013-04-29": 489.06 - }, - "economy": true, - "household": true - }, - "gov.dwp.universal_credit.work_requirements": { - "type": "parameterNode", - "parameter": "gov.dwp.universal_credit.work_requirements", - "description": null, - "label": "work requirements", - "economy": true, - "household": true - }, - "gov.dwp.universal_credit.work_requirements.default_expected_hours": { - "type": "parameter", - "parameter": "gov.dwp.universal_credit.work_requirements.default_expected_hours", - "description": "Default expected hours worked per week for Universal Credit.", - "label": "Universal Credit minimum income floor expected weekly hours worked", - "unit": "hour", - "period": "week", - "values": { - "2013-04-29": 35 - }, - "economy": true, - "household": true - }, - "gov.dwp.universal_credit.rollout_rate": { - "type": "parameter", - "parameter": "gov.dwp.universal_credit.rollout_rate", - "description": "Roll-out rate of Universal Credit", - "label": "Universal Credit roll-out rate", - "unit": "/1", - "period": "year", - "values": { - "2024-01-01": 1, - "2023-10-01": 1, - "2023-07-01": 1, - "2023-04-01": 0.99, - "2023-01-01": 0.99, - "2022-10-01": 0.94, - "2022-07-01": 0.9, - "2022-04-01": 0.85, - "2022-01-01": 0.8, - "2021-10-01": 0.77, - "2021-07-01": 0.73, - "2021-04-01": 0.7, - "2021-01-01": 0.66, - "2020-10-01": 0.64, - "2020-07-01": 0.62, - "2020-04-01": 0.6, - "2020-01-01": 0.58, - "2019-10-01": 0.54, - "2019-07-01": 0.5, - "2019-04-01": 0.45, - "2019-01-01": 0.41, - "2018-10-01": 0.36, - "2018-07-01": 0.31, - "2018-04-01": 0.25, - "2018-01-01": 0.2, - "2010-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.dwp.universal_credit.elements": { - "type": "parameterNode", - "parameter": "gov.dwp.universal_credit.elements", - "description": null, - "label": "Elements", - "economy": true, - "household": true - }, - "gov.dwp.universal_credit.elements.childcare": { - "type": "parameterNode", - "parameter": "gov.dwp.universal_credit.elements.childcare", - "description": null, - "label": "childcare", - "economy": true, - "household": true - }, - "gov.dwp.universal_credit.elements.childcare.coverage_rate": { - "type": "parameter", - "parameter": "gov.dwp.universal_credit.elements.childcare.coverage_rate", - "description": "Proportion of childcare costs covered by Universal Credit.", - "label": "Universal Credit childcare element coverage rate", - "unit": "/1", - "period": "year", - "values": { - "2015-04-01": 0.85, - "2015-01-01": 0.85 - }, - "economy": true, - "household": true - }, - "gov.dwp.universal_credit.elements.childcare.cap": { - "type": "parameterNode", - "parameter": "gov.dwp.universal_credit.elements.childcare.cap", - "description": "The childcare costs accounted under the childcare element of the Universal Credit are capped at this amount, based on the number of eligible children.", - "label": "cap", - "economy": true, - "household": true - }, - "gov.dwp.universal_credit.elements.childcare.cap.1": { - "type": "parameter", - "parameter": "gov.dwp.universal_credit.elements.childcare.cap.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2025-04-01": 1031.88, - "2024-04-01": 1014.63, - "2023-04-01": 951, - "2017-04-10": 646.35, - "2015-01-01": 646.35 - }, - "economy": true, - "household": true - }, - "gov.dwp.universal_credit.elements.childcare.cap.2": { - "type": "parameter", - "parameter": "gov.dwp.universal_credit.elements.childcare.cap.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2025-04-01": 1768.94, - "2024-04-01": 1739.37, - "2023-04-01": 1630, - "2017-04-10": 1108.04, - "2015-01-01": 1108.04 - }, - "economy": true, - "household": true - }, - "gov.dwp.universal_credit.elements.disabled": { - "type": "parameterNode", - "parameter": "gov.dwp.universal_credit.elements.disabled", - "description": null, - "label": "disabled", - "economy": true, - "household": true - }, - "gov.dwp.universal_credit.elements.disabled.amount": { - "type": "parameter", - "parameter": "gov.dwp.universal_credit.elements.disabled.amount", - "description": "Limited capability for work-related activity element amount under the Universal Credit.", - "label": "Universal Credit disability element amount", - "unit": "currency-GBP", - "period": "month", - "values": { - "2029-01-01": 463.093215687036, - "2028-01-01": 454.013708869119, - "2027-01-01": 445.112339069966, - "2026-01-01": 436.813894565091, - "2025-04-01": 423.27, - "2024-04-01": 416.19, - "2023-04-01": 390.06, - "2022-04-06": 354.28, - "2021-04-12": 343.63, - "2020-04-06": 341.92, - "2019-04-08": 336.2, - "2018-04-09": 328.32, - "2017-04-10": 318.76, - "2016-04-10": 315.6, - "2015-01-01": 315.6 - }, - "economy": true, - "household": true - }, - "gov.dwp.universal_credit.elements.child": { - "type": "parameterNode", - "parameter": "gov.dwp.universal_credit.elements.child", - "description": null, - "label": "child", - "economy": true, - "household": true - }, - "gov.dwp.universal_credit.elements.child.first": { - "type": "parameterNode", - "parameter": "gov.dwp.universal_credit.elements.child.first", - "description": null, - "label": "first", - "economy": true, - "household": true - }, - "gov.dwp.universal_credit.elements.child.first.higher_amount": { - "type": "parameter", - "parameter": "gov.dwp.universal_credit.elements.child.first.higher_amount", - "description": "Child element for the first child in Universal Credit.", - "label": "Universal Credit child element higher amount", - "unit": "currency-GBP", - "period": "month", - "values": { - "2029-01-01": 370.894701060565, - "2028-01-01": 363.622858474807, - "2027-01-01": 356.493687113943, - "2026-01-01": 349.847402975797, - "2025-04-01": 339, - "2024-04-01": 333.33, - "2023-04-01": 315, - "2022-04-06": 290, - "2021-04-12": 282.5, - "2020-04-06": 281.25, - "2017-04-10": 277.08, - "2015-01-01": 277.08 - }, - "economy": true, - "household": true - }, - "gov.dwp.universal_credit.elements.child.disabled": { - "type": "parameterNode", - "parameter": "gov.dwp.universal_credit.elements.child.disabled", - "description": null, - "label": "disabled", - "economy": true, - "household": true - }, - "gov.dwp.universal_credit.elements.child.disabled.amount": { - "type": "parameter", - "parameter": "gov.dwp.universal_credit.elements.child.disabled.amount", - "description": "The following disabled child element is provided under the Universal Credit.", - "label": "Universal Credit disabled child element amount", - "unit": "currency-GBP", - "period": "month", - "values": { - "2029-01-01": 173.696881240045, - "2028-01-01": 170.291342216697, - "2027-01-01": 166.952618779379, - "2026-01-01": 163.840040402471, - "2025-04-01": 158.76, - "2024-04-01": 156.11, - "2023-04-01": 146.31, - "2022-04-06": 132.89, - "2021-04-12": 128.89, - "2020-04-06": 128.25, - "2017-04-10": 126.11, - "2015-01-01": 126.11 - }, - "economy": true, - "household": true - }, - "gov.dwp.universal_credit.elements.child.limit": { - "type": "parameterNode", - "parameter": "gov.dwp.universal_credit.elements.child.limit", - "description": null, - "label": "limit", - "economy": true, - "household": true - }, - "gov.dwp.universal_credit.elements.child.limit.start_year": { - "type": "parameter", - "parameter": "gov.dwp.universal_credit.elements.child.limit.start_year", - "description": "A higher Universal Credit child element is payable for the first child if the child is born before this year.", - "label": "Universal Credit child element start year", - "unit": "year", - "period": "year", - "values": { - "0001-01-01": 2017 - }, - "economy": true, - "household": true - }, - "gov.dwp.universal_credit.elements.child.limit.child_count": { - "type": "parameter", - "parameter": "gov.dwp.universal_credit.elements.child.limit.child_count", - "description": "Limit on the number of children for which the Universal Credit child element is payable.", - "label": "Universal Credit child element child limit", - "unit": "child", - "period": "year", - "values": { - "2017-04-06": 2, - "0001-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.dwp.universal_credit.elements.child.severely_disabled": { - "type": "parameterNode", - "parameter": "gov.dwp.universal_credit.elements.child.severely_disabled", - "description": null, - "label": "severely disabled", - "economy": true, - "household": true - }, - "gov.dwp.universal_credit.elements.child.severely_disabled.amount": { - "type": "parameter", - "parameter": "gov.dwp.universal_credit.elements.child.severely_disabled.amount", - "description": "Severely disabled child element of Universal Credit.", - "label": "Unversal Credit severely disabled element amount", - "unit": "currency-GBP", - "period": "month", - "values": { - "2029-01-01": 542.523762285848, - "2028-01-01": 531.886922807972, - "2027-01-01": 521.458774717377, - "2026-01-01": 511.73696670681, - "2025-04-01": 495.87, - "2024-04-01": 487.58, - "2023-04-01": 456.89, - "2022-04-06": 414.88, - "2021-04-12": 402.41, - "2020-04-06": 400.29, - "2019-04-08": 392.08, - "2018-04-09": 383.86, - "2017-04-10": 372.11, - "2016-04-10": 367.92, - "2015-01-01": 367.92 - }, - "economy": true, - "household": true - }, - "gov.dwp.universal_credit.elements.child.amount": { - "type": "parameter", - "parameter": "gov.dwp.universal_credit.elements.child.amount", - "description": "The following child element is provided under the Universal Credit.", - "label": "Universal Credit child element amount", - "unit": "currency-GBP", - "period": "month", - "values": { - "2029-01-01": 320.358930435233, - "2028-01-01": 314.077903215363, - "2027-01-01": 307.920107739922, - "2026-01-01": 302.179404322546, - "2025-04-01": 292.81, - "2024-04-01": 287.92, - "2023-04-01": 269.58, - "2022-04-06": 244.58, - "2021-04-12": 237.08, - "2020-04-06": 235.85, - "2018-04-09": 231.67, - "2015-01-01": 231.67 - }, - "economy": true, - "household": true - }, - "gov.dwp.universal_credit.elements.carer": { - "type": "parameterNode", - "parameter": "gov.dwp.universal_credit.elements.carer", - "description": null, - "label": "carer", - "economy": true, - "household": true - }, - "gov.dwp.universal_credit.elements.carer.amount": { - "type": "parameter", - "parameter": "gov.dwp.universal_credit.elements.carer.amount", - "description": "Carer element amount under the Universal Credit.", - "label": "Universal Credit carer element amount", - "unit": "currency-GBP", - "period": "month", - "values": { - "2029-01-01": 220.654995014439, - "2028-01-01": 216.32878494749, - "2027-01-01": 212.087453737876, - "2026-01-01": 208.133404814628, - "2025-04-01": 201.68, - "2024-04-01": 198.31, - "2023-04-01": 185.86, - "2022-04-06": 168.81, - "2021-04-12": 163.73, - "2020-04-06": 162.92, - "2019-04-08": 160.2, - "2018-04-09": 156.45, - "2017-04-10": 151.89, - "2016-04-09": 150.39, - "2015-01-01": 150.39 - }, - "economy": true, - "household": true - }, - "gov.dwp.universal_credit.elements.housing": { - "type": "parameterNode", - "parameter": "gov.dwp.universal_credit.elements.housing", - "description": null, - "label": "housing", - "economy": true, - "household": true - }, - "gov.dwp.universal_credit.elements.housing.non_dep_deduction": { - "type": "parameterNode", - "parameter": "gov.dwp.universal_credit.elements.housing.non_dep_deduction", - "description": null, - "label": "non dep deduction", - "economy": true, - "household": true - }, - "gov.dwp.universal_credit.elements.housing.non_dep_deduction.age_threshold": { - "type": "parameter", - "parameter": "gov.dwp.universal_credit.elements.housing.non_dep_deduction.age_threshold", - "description": "The non-dependent deduction is limited to filers over this age threshold under the housing element of the Universal Credit.", - "label": "Universal Credit housing element non-dependent deduction age threshold", - "unit": "year", - "period": "year", - "values": { - "2017-04-01": 21, - "2015-01-01": 21 - }, - "economy": true, - "household": true - }, - "gov.dwp.universal_credit.elements.housing.non_dep_deduction.amount": { - "type": "parameter", - "parameter": "gov.dwp.universal_credit.elements.housing.non_dep_deduction.amount", - "description": "Non-dependent deduction amount for the housing element of the Universal Credit.", - "label": "Universal Credit housing element non-dependent deduction amount", - "unit": "currency-GBP", - "period": "month", - "values": { - "2029-01-01": 102.377403990091, - "2028-01-01": 100.370170227986, - "2027-01-01": 98.4023177500762, - "2026-01-01": 96.5677557725171, - "2025-01-01": 93.5735664419039, - "2024-04-01": 91.47, - "2023-04-01": 85.73, - "2022-04-01": 77.87, - "2017-04-01": 75.53, - "2015-01-01": 75.53 - }, - "economy": true, - "household": true - }, - "gov.dwp.universal_credit.takeup_rate": { - "type": "parameter", - "parameter": "gov.dwp.universal_credit.takeup_rate", - "description": "Take-up rate of Universal Credit.", - "label": "Universal Credit take-up rate", - "unit": "/1", - "period": null, - "values": { - "2015-01-01": 0.55 - }, - "economy": true, - "household": true - }, - "gov.dwp.dla": { - "type": "parameterNode", - "parameter": "gov.dwp.dla", - "description": null, - "label": "Disability Living Allowance", - "economy": true, - "household": true - }, - "gov.dwp.dla.mobility": { - "type": "parameterNode", - "parameter": "gov.dwp.dla.mobility", - "description": null, - "label": "Mobility", - "economy": true, - "household": true - }, - "gov.dwp.dla.mobility.lower": { - "type": "parameter", - "parameter": "gov.dwp.dla.mobility.lower", - "description": "Lower rate for Disability Living Allowance (mobility component).", - "label": "DLA (mobility) (lower rate)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 31.9363313391088, - "2028-01-01": 31.3101806456626, - "2027-01-01": 30.6963148284838, - "2026-01-01": 30.1240285925178, - "2025-04-01": 29.19, - "2024-04-01": 28.7, - "2023-04-01": 26.9, - "2022-04-01": 24.45, - "2021-04-01": 23.7, - "2020-04-01": 23.6, - "2019-04-01": 23.2, - "2018-04-01": 22.65, - "2017-04-01": 22, - "2016-04-01": 21.8, - "2015-04-01": 21.8, - "2015-01-01": 21.8 - }, - "economy": true, - "household": true - }, - "gov.dwp.dla.mobility.higher": { - "type": "parameter", - "parameter": "gov.dwp.dla.mobility.higher", - "description": "Higher rate for Disability Living Allowance (mobility component).", - "label": "DLA (mobility) (higher rate)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 84.2882825065071, - "2028-01-01": 82.6357080144517, - "2027-01-01": 81.0155565051863, - "2026-01-01": 79.5051443222874, - "2025-04-01": 77.04, - "2024-04-01": 75.75, - "2023-04-01": 71, - "2022-04-01": 64.5, - "2021-04-01": 62.55, - "2020-04-01": 62.25, - "2019-04-01": 61.2, - "2018-04-01": 59.75, - "2017-04-01": 58, - "2016-04-01": 57.45, - "2015-04-01": 57.45, - "2015-01-01": 57.45 - }, - "economy": true, - "household": true - }, - "gov.dwp.dla.self_care": { - "type": "parameterNode", - "parameter": "gov.dwp.dla.self_care", - "description": null, - "label": "Self-care", - "economy": true, - "household": true - }, - "gov.dwp.dla.self_care.lower": { - "type": "parameter", - "parameter": "gov.dwp.dla.self_care.lower", - "description": "Lower rate for Disability Living Allowance (self-care component).", - "label": "DLA (self-care) (lower rate)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 31.9363313391088, - "2028-01-01": 31.3101806456626, - "2027-01-01": 30.6963148284838, - "2026-01-01": 30.1240285925178, - "2025-04-01": 29.19, - "2024-04-01": 28.7, - "2023-04-01": 26.9, - "2022-04-01": 24.45, - "2021-04-01": 23.7, - "2020-04-01": 23.6, - "2019-04-01": 23.2, - "2018-04-01": 22.65, - "2017-04-01": 22, - "2016-04-01": 21.8, - "2015-04-01": 21.8, - "2015-01-01": 21.8 - }, - "economy": true, - "household": true - }, - "gov.dwp.dla.self_care.higher": { - "type": "parameter", - "parameter": "gov.dwp.dla.self_care.higher", - "description": "Higher rate for Disability Living Allowance (self-care component).", - "label": "DLA (self-care) (higher rate)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 120.78694689406, - "2028-01-01": 118.418771609495, - "2027-01-01": 116.097059166311, - "2026-01-01": 113.932605570879, - "2025-04-01": 110.4, - "2024-04-01": 108.55, - "2023-04-01": 101.75, - "2022-04-01": 92.4, - "2021-04-01": 89.6, - "2020-04-01": 89.15, - "2019-04-01": 87.65, - "2018-04-01": 85.6, - "2017-04-01": 83.1, - "2016-04-01": 82.3, - "2015-04-01": 82.3, - "2015-01-01": 82.3 - }, - "economy": true, - "household": true - }, - "gov.dwp.dla.self_care.middle": { - "type": "parameter", - "parameter": "gov.dwp.dla.self_care.middle", - "description": "Middle rate for Disability Living Allowance (self-care component).", - "label": "DLA (self-care) (middle rate)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 80.8419158152364, - "2028-01-01": 79.2569115418981, - "2027-01-01": 77.703004545278, - "2026-01-01": 76.2543498698574, - "2025-04-01": 73.89, - "2024-04-01": 72.65, - "2023-04-01": 68.1, - "2022-04-01": 61.85, - "2021-04-01": 60, - "2020-04-01": 59.7, - "2019-04-01": 58.7, - "2018-04-01": 57.3, - "2017-04-01": 55.65, - "2016-04-01": 55.1, - "2015-04-01": 55.1, - "2015-01-01": 55.1 - }, - "economy": true, - "household": true - }, - "gov.dwp.tax_credits": { - "type": "parameterNode", - "parameter": "gov.dwp.tax_credits", - "description": null, - "label": "Tax Credits", - "economy": true, - "household": true - }, - "gov.dwp.tax_credits.means_test": { - "type": "parameterNode", - "parameter": "gov.dwp.tax_credits.means_test", - "description": null, - "label": "means test", - "economy": true, - "household": true - }, - "gov.dwp.tax_credits.means_test.income_threshold_CTC_only": { - "type": "parameter", - "parameter": "gov.dwp.tax_credits.means_test.income_threshold_CTC_only", - "description": "Income threshold for benefit units only entitled to Child Tax Credit", - "label": "CTC income threshold", - "unit": "currency-GBP", - "period": "year", - "values": { - "2029-01-01": 22248.2116403144, - "2028-01-01": 21812.0083394844, - "2027-01-01": 21384.3632078526, - "2026-01-01": 20985.6841873535, - "2025-04-01": 20335, - "2024-04-01": 19995, - "2023-04-01": 18725, - "2022-04-01": 17005, - "2021-04-06": 16480, - "2020-04-06": 16385, - "2016-04-06": 16105, - "2015-01-01": 16105 - }, - "economy": true, - "household": true - }, - "gov.dwp.tax_credits.means_test.income_threshold": { - "type": "parameter", - "parameter": "gov.dwp.tax_credits.means_test.income_threshold", - "description": "Yearly income threshold after which the Child Tax Credit is reduced for benefit units claiming Working Tax Credit", - "label": "Tax Credits income threshold", - "unit": "currency-GBP", - "period": "year", - "values": { - "2029-01-01": 8840.20408427541, - "2028-01-01": 8666.88111054997, - "2027-01-01": 8496.95867811404, - "2026-01-01": 8338.5457700426, - "2025-04-01": 8080, - "2024-04-01": 7955, - "2023-04-01": 7455, - "2022-04-01": 6770, - "2021-04-06": 6565, - "2020-04-06": 6530, - "2016-04-06": 6420, - "2015-01-01": 6420 - }, - "economy": true, - "household": true - }, - "gov.dwp.tax_credits.means_test.non_earned_disregard": { - "type": "parameter", - "parameter": "gov.dwp.tax_credits.means_test.non_earned_disregard", - "description": "Amount of income from non-earned sources disregarded in the tax credit income test", - "label": "non earned disregard", - "unit": "currency-GBP", - "period": null, - "values": { - "2002-04-01": 300 - }, - "economy": true, - "household": true - }, - "gov.dwp.tax_credits.means_test.income_reduction_rate": { - "type": "parameter", - "parameter": "gov.dwp.tax_credits.means_test.income_reduction_rate", - "description": "Rate after income threshold reached by which Child Tax Credit is reduced per £1.", - "label": "income reduction rate", - "unit": "/1", - "period": null, - "values": { - "2012-04-06": 0.41, - "2008-04-06": 0.39, - "2002-08-01": 0.37 - }, - "economy": true, - "household": true - }, - "gov.dwp.tax_credits.working_tax_credit": { - "type": "parameterNode", - "parameter": "gov.dwp.tax_credits.working_tax_credit", - "description": null, - "label": "working tax credit", - "economy": true, - "household": true - }, - "gov.dwp.tax_credits.working_tax_credit.min_hours": { - "type": "parameterNode", - "parameter": "gov.dwp.tax_credits.working_tax_credit.min_hours", - "description": null, - "label": "min hours", - "economy": true, - "household": true - }, - "gov.dwp.tax_credits.working_tax_credit.min_hours.default": { - "type": "parameter", - "parameter": "gov.dwp.tax_credits.working_tax_credit.min_hours.default", - "description": "Default hours requirement for Working Tax Credit", - "label": "default", - "unit": "hour", - "period": "week", - "values": { - "2002-08-01": 30 - }, - "economy": true, - "household": true - }, - "gov.dwp.tax_credits.working_tax_credit.min_hours.couple_with_children": { - "type": "parameter", - "parameter": "gov.dwp.tax_credits.working_tax_credit.min_hours.couple_with_children", - "description": "Couple with children hours requirement for Working Tax Credit", - "label": "couple with children", - "unit": "hour", - "period": "week", - "values": { - "2012-04-06": 24 - }, - "economy": true, - "household": true - }, - "gov.dwp.tax_credits.working_tax_credit.min_hours.lower": { - "type": "parameter", - "parameter": "gov.dwp.tax_credits.working_tax_credit.min_hours.lower", - "description": "Lower hours requirement for Working Tax Credit", - "label": "lower", - "unit": "hour", - "period": "week", - "values": { - "2002-08-01": 16 - }, - "economy": true, - "household": true - }, - "gov.dwp.tax_credits.working_tax_credit.min_hours.old_age": { - "type": "parameter", - "parameter": "gov.dwp.tax_credits.working_tax_credit.min_hours.old_age", - "description": "Age for lower hours requirement for Working Tax Credit", - "label": "old age", - "unit": null, - "period": null, - "values": { - "2011-04-06": 60, - "2002-08-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.dwp.tax_credits.working_tax_credit.takeup": { - "type": "parameter", - "parameter": "gov.dwp.tax_credits.working_tax_credit.takeup", - "description": "Share of eligible Working Tax Credit recipients that participate. By definition, this is 100%, because only current claimants are eligible (no new claims).", - "label": "Working Tax Credit take-up rate", - "unit": "/1", - "period": null, - "values": { - "2025-01-01": 1, - "2024-01-01": 1, - "2023-01-01": 1, - "2022-01-01": 1, - "2021-01-01": 1, - "2020-01-01": 1, - "2019-01-01": 1, - "2015-01-01": 1 - }, - "economy": false, - "household": true - }, - "gov.dwp.tax_credits.working_tax_credit.elements": { - "type": "parameterNode", - "parameter": "gov.dwp.tax_credits.working_tax_credit.elements", - "description": null, - "label": "elements", - "economy": true, - "household": true - }, - "gov.dwp.tax_credits.working_tax_credit.elements.basic": { - "type": "parameter", - "parameter": "gov.dwp.tax_credits.working_tax_credit.elements.basic", - "description": "Working Tax Credit basic element", - "label": "WTC basic element", - "unit": "currency-GBP", - "period": "year", - "values": { - "2029-01-01": 2708.95362780519, - "2028-01-01": 2655.84129080714, - "2027-01-01": 2603.77100086762, - "2026-01-01": 2555.22763943385, - "2025-04-01": 2476, - "2024-04-01": 2435, - "2023-04-01": 2280, - "2022-04-01": 2070, - "2021-04-06": 2005, - "2020-04-06": 3040, - "2020-03-25": 1960, - "2019-04-06": 1960, - "2018-04-06": 1960, - "2017-04-06": 1960, - "2016-03-16": 1960, - "2015-04-06": 1960, - "2014-04-06": 1940, - "2013-04-06": 1920, - "2012-04-06": 1920, - "2011-04-06": 1920, - "2010-04-06": 1920, - "2009-04-06": 1890, - "2007-04-06": 1730, - "2006-04-06": 1665, - "2005-04-06": 1620, - "2004-04-06": 1570, - "2002-08-01": 1525 - }, - "economy": true, - "household": true - }, - "gov.dwp.tax_credits.working_tax_credit.elements.couple": { - "type": "parameter", - "parameter": "gov.dwp.tax_credits.working_tax_credit.elements.couple", - "description": "Working Tax Credit couple element", - "label": "WTC couple element", - "unit": "currency-GBP", - "period": "year", - "values": { - "2029-01-01": 2781.16321562229, - "2028-01-01": 2726.63512166065, - "2027-01-01": 2673.17685145617, - "2026-01-01": 2623.33952319905, - "2025-04-01": 2542, - "2024-04-01": 2500, - "2023-04-01": 2340, - "2022-04-01": 2125, - "2021-04-06": 2060, - "2020-04-06": 2045, - "2020-03-25": 2010, - "2019-04-06": 2010, - "2018-04-06": 2010, - "2017-04-06": 2010, - "2016-03-16": 2010, - "2015-04-06": 2010, - "2014-04-06": 1990, - "2013-04-06": 1970, - "2012-04-06": 1950, - "2011-04-06": 1950, - "2010-04-06": 1890, - "2009-04-06": 1860, - "2007-04-06": 1700, - "2006-04-06": 1640, - "2005-04-06": 1595, - "2004-04-06": 1545, - "2002-08-01": 1500 - }, - "economy": true, - "household": true - }, - "gov.dwp.tax_credits.working_tax_credit.elements.disabled": { - "type": "parameter", - "parameter": "gov.dwp.tax_credits.working_tax_credit.elements.disabled", - "description": "Working Tax Credit disability element", - "label": "WTC disability element", - "unit": "currency-GBP", - "period": "year", - "values": { - "2029-01-01": 4377.43274024578, - "2028-01-01": 4291.60783704337, - "2027-01-01": 4207.46679098196, - "2026-01-01": 4129.0249537055, - "2025-04-01": 4001, - "2024-04-01": 3935, - "2023-04-01": 3685, - "2022-04-01": 3345, - "2021-04-06": 3240, - "2020-04-06": 3220, - "2020-03-25": 3165, - "2019-04-06": 3165, - "2018-04-06": 3090, - "2017-04-06": 3000, - "2016-03-16": 2970, - "2015-04-06": 2970, - "2014-04-06": 2935, - "2013-04-06": 2855, - "2012-04-06": 2790, - "2011-04-06": 2650, - "2010-04-06": 2570, - "2009-04-06": 2530, - "2007-04-06": 2310, - "2006-04-06": 2225, - "2005-04-06": 2165, - "2004-04-06": 2100, - "2002-08-01": 2040 - }, - "economy": true, - "household": true - }, - "gov.dwp.tax_credits.working_tax_credit.elements.childcare_1": { - "type": "parameter", - "parameter": "gov.dwp.tax_credits.working_tax_credit.elements.childcare_1", - "description": "Working Tax Credit childcare element for one child", - "label": "Working Tax Credit childcare element one child amount", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 338.5285218, - "2028-01-01": 331.8912576, - "2027-01-01": 325.3842144, - "2026-01-01": 319.3179192, - "2025-01-01": 309.4171164, - "2024-01-01": 302.4613116, - "2023-01-01": 286.1516322, - "2022-01-01": 260.1374832, - "2021-01-01": 250.1325036, - "2020-01-01": 248.6399706, - "2019-01-01": 244.4829156, - "2018-01-01": 238.985586, - "2017-01-01": 232.4765394, - "2016-01-01": 229.9462452, - "2015-01-01": 229.7158542, - "2014-01-01": 227.215611, - "2013-01-01": 222.106941, - "2012-01-01": 216.26703, - "2011-01-01": 207.3519, - "2010-01-01": 200.34, - "2005-04-06": 175, - "2002-08-01": 135 - }, - "economy": true, - "household": true - }, - "gov.dwp.tax_credits.working_tax_credit.elements.worker": { - "type": "parameter", - "parameter": "gov.dwp.tax_credits.working_tax_credit.elements.worker", - "description": "Working Tax Credit 30 hours element", - "label": "worker", - "unit": "currency-GBP", - "period": "year", - "values": { - "2029-01-01": 1123.31931696221, - "2028-01-01": 1101.29527287872, - "2027-01-01": 1079.70333349352, - "2026-01-01": 1059.57390231791, - "2025-01-01": 1026.72064971887, - "2024-01-01": 1003.63961106573, - "2023-01-01": 949.52015954635, - "2022-01-01": 863.198936357666, - "2021-04-06": 830, - "2020-04-06": 825, - "2020-03-25": 810, - "2019-04-06": 810, - "2018-04-06": 810, - "2017-04-06": 810, - "2016-03-16": 810, - "2015-04-06": 810, - "2014-04-06": 800, - "2013-04-06": 790, - "2012-04-06": 790, - "2011-04-06": 790, - "2010-04-06": 790, - "2009-04-06": 775, - "2007-04-06": 705, - "2006-04-06": 680, - "2005-04-06": 660, - "2004-04-06": 640, - "2002-08-01": 620 - }, - "economy": true, - "household": true - }, - "gov.dwp.tax_credits.working_tax_credit.elements.severely_disabled": { - "type": "parameter", - "parameter": "gov.dwp.tax_credits.working_tax_credit.elements.severely_disabled", - "description": "Working Tax Credit severe disability element", - "label": "WTC severe disability element", - "unit": "currency-GBP", - "period": "year", - "values": { - "2029-01-01": 1897.14280719475, - "2028-01-01": 1859.94701060565, - "2027-01-01": 1823.48098364477, - "2026-01-01": 1789.48494619479, - "2025-04-06": 1734, - "2024-04-06": 1705, - "2023-04-06": 1595, - "2022-04-06": 1445, - "2021-04-06": 1400, - "2020-04-06": 1390, - "2020-03-25": 1365, - "2019-04-06": 1365, - "2018-04-06": 1330, - "2017-04-06": 1290, - "2016-03-16": 1275, - "2015-04-06": 1275, - "2014-04-06": 1255, - "2013-04-06": 1220, - "2012-04-06": 1190, - "2011-04-06": 1130, - "2010-04-06": 1095, - "2009-04-06": 1075, - "2007-04-06": 980, - "2006-04-06": 945, - "2005-04-06": 920, - "2004-04-06": 890, - "2002-08-01": 865 - }, - "economy": true, - "household": true - }, - "gov.dwp.tax_credits.working_tax_credit.elements.lone_parent": { - "type": "parameter", - "parameter": "gov.dwp.tax_credits.working_tax_credit.elements.lone_parent", - "description": "Working Tax Credit lone parent element", - "label": "WTC lone parent element", - "unit": "currency-GBP", - "period": "year", - "values": { - "2029-01-01": 2781.16321562229, - "2028-01-01": 2726.63512166065, - "2027-01-01": 2673.17685145617, - "2026-01-01": 2623.33952319905, - "2025-04-06": 2542, - "2024-04-06": 2500, - "2023-04-06": 2340, - "2022-04-06": 2125, - "2021-04-06": 2060, - "2020-04-06": 2045, - "2020-03-25": 2010, - "2019-04-06": 2010, - "2018-04-06": 2010, - "2017-04-06": 2010, - "2016-03-16": 2010, - "2015-04-06": 2010, - "2014-04-06": 1990, - "2013-04-06": 1970, - "2012-04-06": 1950, - "2011-04-06": 1950, - "2010-04-06": 1890, - "2009-04-06": 1860, - "2007-04-06": 1700, - "2006-04-06": 1640, - "2005-04-06": 1595, - "2004-04-06": 1545, - "2002-08-01": 1500 - }, - "economy": true, - "household": true - }, - "gov.dwp.tax_credits.working_tax_credit.elements.childcare_coverage": { - "type": "parameter", - "parameter": "gov.dwp.tax_credits.working_tax_credit.elements.childcare_coverage", - "description": "Proportion of eligible childcare costs covered by Working Tax Credit", - "label": "childcare coverage", - "unit": "/1", - "period": null, - "values": { - "2011-04-06": 0.7, - "2006-04-06": 0.8, - "2002-08-01": 0.7 - }, - "economy": true, - "household": true - }, - "gov.dwp.tax_credits.working_tax_credit.elements.childcare_2": { - "type": "parameter", - "parameter": "gov.dwp.tax_credits.working_tax_credit.elements.childcare_2", - "description": "Working Tax Credit childcare element for two or more children", - "label": "Working Tax Credit childcare element two or more children amount", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 580.3346088, - "2028-01-01": 568.9564416, - "2027-01-01": 557.8015104, - "2026-01-01": 547.4021472, - "2025-01-01": 530.4293424, - "2024-01-01": 518.5051056, - "2023-01-01": 490.5456552, - "2022-01-01": 445.9499712, - "2021-01-01": 428.7985776, - "2020-01-01": 426.2399496, - "2019-01-01": 419.1135696, - "2018-01-01": 409.689576, - "2017-01-01": 398.5312104, - "2016-01-01": 394.1935632, - "2015-01-01": 393.7986072, - "2014-01-01": 389.512476, - "2013-01-01": 380.754756, - "2012-01-01": 370.74348, - "2011-01-01": 355.4604, - "2010-01-01": 343.44, - "2005-04-06": 300, - "2002-08-01": 200 - }, - "economy": true, - "household": true - }, - "gov.dwp.tax_credits.child_tax_credit": { - "type": "parameterNode", - "parameter": "gov.dwp.tax_credits.child_tax_credit", - "description": null, - "label": "child tax credit", - "economy": true, - "household": true - }, - "gov.dwp.tax_credits.child_tax_credit.limit": { - "type": "parameterNode", - "parameter": "gov.dwp.tax_credits.child_tax_credit.limit", - "description": null, - "label": "limit", - "economy": true, - "household": true - }, - "gov.dwp.tax_credits.child_tax_credit.limit.start_year": { - "type": "parameter", - "parameter": "gov.dwp.tax_credits.child_tax_credit.limit.start_year", - "description": "Year in which the Child Tax Credit child limit applies", - "label": "start year", - "unit": "year", - "period": null, - "values": { - "0001-01-01": 2017 - }, - "economy": true, - "household": true - }, - "gov.dwp.tax_credits.child_tax_credit.limit.child_count": { - "type": "parameter", - "parameter": "gov.dwp.tax_credits.child_tax_credit.limit.child_count", - "description": "Limit on the number of children for which the Child Tax Credit child element is payable", - "label": "child count", - "unit": "int", - "period": null, - "values": { - "2017-04-06": 2, - "0001-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.dwp.tax_credits.child_tax_credit.takeup": { - "type": "parameter", - "parameter": "gov.dwp.tax_credits.child_tax_credit.takeup", - "description": "Share of eligible Child Tax Credit recipients that participate. By definition, this is 100%, because only current claimants are eligible (no new claims).", - "label": "Child Tax Credit take-up rate", - "unit": "/1", - "period": null, - "values": { - "2025-01-01": 1, - "2024-01-01": 1, - "2023-01-01": 1, - "2022-01-01": 1, - "2021-01-01": 1, - "2020-01-01": 1, - "2019-01-01": 1, - "2015-01-01": 1 - }, - "economy": false, - "household": true - }, - "gov.dwp.tax_credits.child_tax_credit.elements": { - "type": "parameterNode", - "parameter": "gov.dwp.tax_credits.child_tax_credit.elements", - "description": null, - "label": "elements", - "economy": true, - "household": true - }, - "gov.dwp.tax_credits.child_tax_credit.elements.severe_dis_child_element": { - "type": "parameter", - "parameter": "gov.dwp.tax_credits.child_tax_credit.elements.severe_dis_child_element", - "description": "Child Tax Credit severely disabled child element", - "label": "CTC severely disabled child element", - "unit": "currency-GBP", - "period": "year", - "values": { - "2029-01-01": 1860.92284825334, - "2028-01-01": 1824.43718809685, - "2027-01-01": 1788.66736491898, - "2026-01-01": 1755.32037459183, - "2025-01-01": 1700.89473846343, - "2024-01-01": 1662.65803092847, - "2023-01-01": 1573.00220257532, - "2022-04-01": 1430, - "2021-04-06": 1390, - "2020-04-06": 1385, - "2019-04-06": 1360, - "2018-04-06": 1325, - "2017-04-06": 1290, - "2016-04-06": 1275, - "2015-01-01": 1275 - }, - "economy": true, - "household": true - }, - "gov.dwp.tax_credits.child_tax_credit.elements.child_element": { - "type": "parameter", - "parameter": "gov.dwp.tax_credits.child_tax_credit.elements.child_element", - "description": "Child Tax Credit child element", - "label": "CTC child element", - "unit": "currency-GBP", - "period": "year", - "values": { - "2029-01-01": 3843.51942426479, - "2028-01-01": 3768.16254224778, - "2027-01-01": 3694.28413814537, - "2026-01-01": 3625.40981313857, - "2025-04-01": 3513, - "2024-04-01": 3455, - "2023-04-01": 3235, - "2022-04-01": 2935, - "2021-04-06": 2845, - "2020-04-06": 2830, - "2016-04-06": 2780, - "2015-01-01": 2780 - }, - "economy": true, - "household": true - }, - "gov.dwp.tax_credits.child_tax_credit.elements.dis_child_element": { - "type": "parameter", - "parameter": "gov.dwp.tax_credits.child_tax_credit.elements.dis_child_element", - "description": "Child Tax Credit disabled child element", - "label": "CTC disabled child element", - "unit": "currency-GBP", - "period": "year", - "values": { - "2029-01-01": 4638.9189749168, - "2028-01-01": 4547.96731543711, - "2027-01-01": 4458.80009841628, - "2026-01-01": 4375.67253279463, - "2025-04-01": 4240, - "2024-04-01": 4170, - "2023-04-01": 3905, - "2022-04-01": 3545, - "2021-04-06": 3435, - "2020-04-06": 3415, - "2019-04-06": 3355, - "2018-04-06": 3275, - "2017-04-06": 3175, - "2015-04-06": 3140, - "2015-01-01": 3140 - }, - "economy": true, - "household": true - }, - "gov.dwp.tax_credits.child_tax_credit.elements.family_element": { - "type": "parameter", - "parameter": "gov.dwp.tax_credits.child_tax_credit.elements.family_element", - "description": "Child Tax Credit family element", - "label": "family element", - "unit": "currency-GBP", - "period": "year", - "values": { - "2029-01-01": 802.352933488996, - "2028-01-01": 786.621826482427, - "2027-01-01": 771.199358762132, - "2026-01-01": 756.821516318458, - "2025-01-01": 733.355433968182, - "2024-01-01": 716.869347784419, - "2023-01-01": 678.213464252731, - "2022-01-01": 616.556831448535, - "2021-01-01": 592.84383766924, - "2020-01-01": 589.306356618864, - "2019-01-01": 579.453640941644, - "2018-01-01": 566.424314764154, - "2017-01-01": 550.997098747147, - "2016-04-06": 545, - "2015-01-01": 545 - }, - "economy": true, - "household": true - }, - "gov.dwp.tax_credits.min_benefit": { - "type": "parameter", - "parameter": "gov.dwp.tax_credits.min_benefit", - "description": "Tax credit amount below which tax credits are not paid", - "label": "Tax credits minimum benefit", - "unit": "currency-USD", - "period": "year", - "values": { - "2002-08-01": 26 - }, - "economy": false, - "household": true - }, - "gov.dwp.benefit_cap": { - "type": "parameterNode", - "parameter": "gov.dwp.benefit_cap", - "description": "Benefit cap", - "label": "benefit cap", - "economy": true, - "household": true - }, - "gov.dwp.benefit_cap.single": { - "type": "parameterNode", - "parameter": "gov.dwp.benefit_cap.single", - "description": null, - "label": "Single claimants", - "economy": true, - "household": true - }, - "gov.dwp.benefit_cap.single.in_london": { - "type": "parameter", - "parameter": "gov.dwp.benefit_cap.single.in_london", - "description": null, - "label": "Benefit cap (single claimants, in London)", - "unit": null, - "period": null, - "values": { - "2025-04-01": 17255, - "2024-04-01": 16967, - "2023-04-01": 16967, - "2016-11-07": 15410, - "2015-01-01": 15410 - }, - "economy": true, - "household": true - }, - "gov.dwp.benefit_cap.single.outside_london": { - "type": "parameter", - "parameter": "gov.dwp.benefit_cap.single.outside_london", - "description": null, - "label": "Benefit cap (single claimants, outside London)", - "unit": null, - "period": null, - "values": { - "2025-04-01": 15004, - "2024-04-01": 14753, - "2023-04-01": 14753, - "2016-11-07": 13400, - "2015-01-01": 13400 - }, - "economy": true, - "household": true - }, - "gov.dwp.benefit_cap.non_single": { - "type": "parameterNode", - "parameter": "gov.dwp.benefit_cap.non_single", - "description": null, - "label": "Joint or claimants with children", - "economy": true, - "household": true - }, - "gov.dwp.benefit_cap.non_single.in_london": { - "type": "parameter", - "parameter": "gov.dwp.benefit_cap.non_single.in_london", - "description": null, - "label": "Benefit cap (family claimants, in London)", - "unit": null, - "period": null, - "values": { - "2025-04-01": 25753, - "2024-04-01": 25323, - "2023-04-01": 25323, - "2016-11-07": 23000, - "2015-01-01": 23000 - }, - "economy": true, - "household": true - }, - "gov.dwp.benefit_cap.non_single.outside_london": { - "type": "parameter", - "parameter": "gov.dwp.benefit_cap.non_single.outside_london", - "description": null, - "label": "Benefit cap (family claimants, outside London)", - "unit": null, - "period": null, - "values": { - "2025-04-01": 22020, - "2024-04-01": 22020, - "2023-04-01": 22020, - "2016-11-07": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.dwp.IIDB": { - "type": "parameterNode", - "parameter": "gov.dwp.IIDB", - "description": null, - "label": "Industrial Injuries Disablement Benefit", - "economy": true, - "household": true - }, - "gov.dwp.IIDB.maximum": { - "type": "parameter", - "parameter": "gov.dwp.IIDB.maximum", - "description": "Maximum weekly Industrial Injuries Disablement Benefit; amount varies in 10% increments", - "label": "Industrial Injuries Disablement Benefit maximum", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 243.632093382187, - "2028-01-01": 238.854356036841, - "2027-01-01": 234.171325319347, - "2026-01-01": 229.580174166186, - "2025-04-01": 225.3, - "2015-04-01": 182, - "2015-01-01": 182 - }, - "economy": false, - "household": true - }, - "gov.dwp.pension_credit": { - "type": "parameterNode", - "parameter": "gov.dwp.pension_credit", - "description": null, - "label": "Pension Credit", - "economy": true, - "household": true - }, - "gov.dwp.pension_credit.income": { - "type": "parameterNode", - "parameter": "gov.dwp.pension_credit.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.dwp.pension_credit.income.savings_credit_excluded_sources": { - "type": "parameter", - "parameter": "gov.dwp.pension_credit.income.savings_credit_excluded_sources", - "description": "Income sources which are deducted from income before Savings Credit calculations.", - "label": "savings credit excluded sources", - "unit": "currency-GBP", - "period": null, - "values": { - "2002-01-01": ["jsa_contrib", "esa_contrib"] - }, - "economy": false, - "household": true - }, - "gov.dwp.pension_credit.income.pension_contributions_deduction": { - "type": "parameter", - "parameter": "gov.dwp.pension_credit.income.pension_contributions_deduction", - "description": "Percentage of pension contributions which are deductible from Pension Credit income.", - "label": "Pension Credit pension contribution deduction", - "unit": "/1", - "period": null, - "values": { - "2002-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.dwp.pension_credit.savings_credit": { - "type": "parameterNode", - "parameter": "gov.dwp.pension_credit.savings_credit", - "description": null, - "label": "savings credit", - "economy": true, - "household": true - }, - "gov.dwp.pension_credit.savings_credit.excluded_income": { - "type": "parameter", - "parameter": "gov.dwp.pension_credit.savings_credit.excluded_income", - "description": "Income sources which are deducted from Guarantee Credit income before Savings Credit calculations.", - "label": "excluded income", - "unit": "currency-GBP", - "period": null, - "values": { - "2002-01-01": ["jsa_contrib", "esa_contrib"] - }, - "economy": true, - "household": true - }, - "gov.dwp.pension_credit.savings_credit.rate": { - "type": "parameterNode", - "parameter": "gov.dwp.pension_credit.savings_credit.rate", - "description": null, - "label": "rate", - "economy": true, - "household": true - }, - "gov.dwp.pension_credit.savings_credit.rate.phase_out": { - "type": "parameter", - "parameter": "gov.dwp.pension_credit.savings_credit.rate.phase_out", - "description": "The rate at which Savings Credit decreases for income over the Minimum Guarantee.", - "label": "Savings Credit phase-out rate", - "unit": "/1", - "period": null, - "values": { - "2002-01-01": 0.4 - }, - "economy": true, - "household": true - }, - "gov.dwp.pension_credit.savings_credit.rate.phase_in": { - "type": "parameter", - "parameter": "gov.dwp.pension_credit.savings_credit.rate.phase_in", - "description": "The rate at which Savings Credit increases for income over the Savings Credit threshold.", - "label": "Savings Credit phase-in rate", - "unit": "/1", - "period": null, - "values": { - "2002-01-01": 0.6 - }, - "economy": true, - "household": true - }, - "gov.dwp.pension_credit.savings_credit.cutoff_year": { - "type": "parameter", - "parameter": "gov.dwp.pension_credit.savings_credit.cutoff_year", - "description": "People reaching State Pension age after this year are not eligible for Savings Credit.", - "label": "Savings Credit eligibility cutoff year", - "unit": null, - "period": null, - "values": { - "2002-01-01": 2016 - }, - "economy": true, - "household": true - }, - "gov.dwp.pension_credit.savings_credit.threshold": { - "type": "parameterNode", - "parameter": "gov.dwp.pension_credit.savings_credit.threshold", - "description": "Income threshold at which Savings Credit is eligible", - "label": "threshold", - "economy": true, - "household": true - }, - "gov.dwp.pension_credit.savings_credit.threshold.SINGLE": { - "type": "parameter", - "parameter": "gov.dwp.pension_credit.savings_credit.threshold.SINGLE", - "description": null, - "label": "Pension Credit savings credit income threshold (single)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 211.180221825104, - "2028-01-01": 207.03977623247, - "2027-01-01": 202.98056485762, - "2026-01-01": 199.196300066043, - "2025-04-01": 193.02, - "2024-04-01": 189.8, - "2023-04-01": 174.49, - "2022-04-01": 158.47, - "2021-04-06": 153.7, - "2020-04-06": 150.47, - "2019-04-06": 144.38, - "2018-04-06": 140.67, - "2017-04-06": 137.35, - "2016-04-06": 133.82, - "2015-04-06": 126.5, - "2015-01-01": 126.5 - }, - "economy": true, - "household": true - }, - "gov.dwp.pension_credit.savings_credit.threshold.COUPLE": { - "type": "parameter", - "parameter": "gov.dwp.pension_credit.savings_credit.threshold.COUPLE", - "description": null, - "label": "Pension Credit savings credit income threshold (couple)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 335.161895937739, - "2028-01-01": 328.590638540331, - "2027-01-01": 322.148307110576, - "2026-01-01": 316.142340494412, - "2025-04-01": 306.34, - "2024-04-01": 301.22, - "2023-04-01": 277.12, - "2022-04-01": 251.7, - "2021-04-06": 244.12, - "2020-04-06": 239.17, - "2019-04-06": 229.67, - "2018-04-06": 223.82, - "2017-04-06": 218.42, - "2016-04-06": 212.97, - "2015-04-06": 201.8, - "2015-01-01": 201.8 - }, - "economy": true, - "household": true - }, - "gov.dwp.pension_credit.takeup": { - "type": "parameter", - "parameter": "gov.dwp.pension_credit.takeup", - "description": "Share of eligible Pension Credit recipients that participate.", - "label": "Pension Credit take-up rate", - "unit": "/1", - "period": null, - "values": { - "2015-01-01": 0.7 - }, - "economy": true, - "household": true - }, - "gov.dwp.pension_credit.guarantee_credit": { - "type": "parameterNode", - "parameter": "gov.dwp.pension_credit.guarantee_credit", - "description": null, - "label": "guarantee credit", - "economy": true, - "household": true - }, - "gov.dwp.pension_credit.guarantee_credit.minimum_guarantee": { - "type": "parameterNode", - "parameter": "gov.dwp.pension_credit.guarantee_credit.minimum_guarantee", - "description": "Minimum income guarantee (basic amount) for Pension Credit", - "label": "Pension Credit minimum guarantee", - "economy": true, - "household": true - }, - "gov.dwp.pension_credit.guarantee_credit.minimum_guarantee.SINGLE": { - "type": "parameter", - "parameter": "gov.dwp.pension_credit.guarantee_credit.minimum_guarantee.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2025-04-01": 221.85, - "2024-04-01": 218.15, - "2023-04-01": 201.05, - "2022-04-01": 182.6, - "2021-04-06": 177.1, - "2020-04-06": 173.75, - "2019-04-06": 167.25, - "2018-04-06": 163, - "2017-04-06": 159.35, - "2016-04-06": 155.6, - "2015-04-06": 151.2, - "2015-01-01": 151.2 - }, - "economy": true, - "household": true - }, - "gov.dwp.pension_credit.guarantee_credit.minimum_guarantee.COUPLE": { - "type": "parameter", - "parameter": "gov.dwp.pension_credit.guarantee_credit.minimum_guarantee.COUPLE", - "description": null, - "label": "COUPLE", - "unit": null, - "period": null, - "values": { - "2025-04-01": 338.61, - "2024-04-01": 332.95, - "2023-04-01": 306.85, - "2022-04-01": 278.7, - "2021-04-06": 270.3, - "2020-04-06": 265.2, - "2019-04-06": 255.25, - "2018-04-06": 248.8, - "2017-04-06": 243.25, - "2016-04-06": 237.55, - "2015-04-06": 230.85, - "2015-01-01": 230.85 - }, - "economy": true, - "household": true - }, - "gov.dwp.pension_credit.guarantee_credit.earnings_sources": { - "type": "parameter", - "parameter": "gov.dwp.pension_credit.guarantee_credit.earnings_sources", - "description": "The DWP considers these sources of income as income for Pension Credit.", - "label": "Pension Credit earnings sources", - "unit": "list", - "period": null, - "values": { - "2002-01-01": ["employment_income", "self_employment_income"] - }, - "economy": true, - "household": true - }, - "gov.dwp.pension_credit.guarantee_credit.severe_disability": { - "type": "parameterNode", - "parameter": "gov.dwp.pension_credit.guarantee_credit.severe_disability", - "description": null, - "label": "severe disability", - "economy": true, - "household": true - }, - "gov.dwp.pension_credit.guarantee_credit.severe_disability.relevant_benefits": { - "type": "parameter", - "parameter": "gov.dwp.pension_credit.guarantee_credit.severe_disability.relevant_benefits", - "description": "Benefits which confer entitlement to an increase to the Pension Credit Minimum Guarantee.", - "label": "Pension Credit severe disability criteria", - "unit": "list", - "period": null, - "values": { - "2002-01-01": [ - "attendance_allowance", - "dla_sc_middle_plus", - "pip_dl", - "armed_forces_independence_payment" - ] - }, - "economy": false, - "household": true - }, - "gov.dwp.pension_credit.guarantee_credit.severe_disability.addition": { - "type": "parameter", - "parameter": "gov.dwp.pension_credit.guarantee_credit.severe_disability.addition", - "description": "Addition to the Minimum Guarantee for each severely disabled adult.", - "label": "Pension Credit severe disability addition", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 90.3133186494979, - "2028-01-01": 88.5426159817633, - "2027-01-01": 86.8066539338304, - "2026-01-01": 85.188275522149, - "2025-01-01": 82.5469194750786, - "2024-01-01": 80.6912359065985, - "2023-01-01": 76.3401068942148, - "2022-04-01": 69.4, - "2021-04-01": 67.3, - "2020-04-01": 66.95, - "2019-04-01": 65.85, - "2018-04-01": 64.3, - "2015-01-01": 64.3 - }, - "economy": true, - "household": true - }, - "gov.dwp.pension_credit.guarantee_credit.child": { - "type": "parameterNode", - "parameter": "gov.dwp.pension_credit.guarantee_credit.child", - "description": null, - "label": "child", - "economy": true, - "household": true - }, - "gov.dwp.pension_credit.guarantee_credit.child.disability": { - "type": "parameterNode", - "parameter": "gov.dwp.pension_credit.guarantee_credit.child.disability", - "description": null, - "label": "disability", - "economy": true, - "household": true - }, - "gov.dwp.pension_credit.guarantee_credit.child.disability.eligibility": { - "type": "parameter", - "parameter": "gov.dwp.pension_credit.guarantee_credit.child.disability.eligibility", - "description": "Benefits which confer standard disability in children for Pension Credit.", - "label": "eligibility", - "unit": "currency-GBP", - "period": null, - "values": { - "2002-01-01": ["pip", "dla"] - }, - "economy": false, - "household": true - }, - "gov.dwp.pension_credit.guarantee_credit.child.disability.addition": { - "type": "parameter", - "parameter": "gov.dwp.pension_credit.guarantee_credit.child.disability.addition", - "description": "Addition to the Minimum Guarantee for each disabled child (above the child addition).", - "label": "Pension Credit disabled child addition", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 39.7951193703407, - "2028-01-01": 39.0148875608404, - "2027-01-01": 38.2499636498059, - "2026-01-01": 37.5368510874253, - "2025-01-01": 36.3729797917565, - "2024-01-01": 35.5553025075473, - "2023-01-01": 33.6380471012261, - "2022-04-01": 30.58, - "2021-04-01": 29.66, - "2020-04-01": 29.52, - "2019-01-01": 29.02, - "2015-01-01": 29.02 - }, - "economy": false, - "household": true - }, - "gov.dwp.pension_credit.guarantee_credit.child.disability.severe": { - "type": "parameterNode", - "parameter": "gov.dwp.pension_credit.guarantee_credit.child.disability.severe", - "description": null, - "label": "severe", - "economy": true, - "household": true - }, - "gov.dwp.pension_credit.guarantee_credit.child.disability.severe.eligibility": { - "type": "parameter", - "parameter": "gov.dwp.pension_credit.guarantee_credit.child.disability.severe.eligibility", - "description": "Benefits which confer severe disability in children for Pension Credit.", - "label": "eligibility", - "unit": "currency-GBP", - "period": null, - "values": { - "2002-01-01": ["receives_highest_dla_sc", "receives_enhanced_pip_dl"] - }, - "economy": false, - "household": true - }, - "gov.dwp.pension_credit.guarantee_credit.child.disability.severe.addition": { - "type": "parameter", - "parameter": "gov.dwp.pension_credit.guarantee_credit.child.disability.severe.addition", - "description": "Addition to the Minimum Guarantee for each severely disabled child (above the child addition).", - "label": "Pension Credit severely disabled child addition", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 124.252387098762, - "2028-01-01": 121.816267636005, - "2027-01-01": 119.427944057667, - "2026-01-01": 117.201391165055, - "2025-01-01": 113.567433306635, - "2024-01-01": 111.014397757378, - "2023-01-01": 105.02814706426, - "2022-04-01": 95.48, - "2021-04-01": 92.54, - "2020-04-01": 92.12, - "2019-02-01": 88.34, - "2015-01-01": 88.34 - }, - "economy": false, - "household": true - }, - "gov.dwp.pension_credit.guarantee_credit.child.addition": { - "type": "parameter", - "parameter": "gov.dwp.pension_credit.guarantee_credit.child.addition", - "description": "Addition to the Minimum Guarantee for each child.", - "label": "Pension Credit child addition", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 73.3307709783747, - "2028-01-01": 71.8930318526277, - "2027-01-01": 70.4835007085208, - "2026-01-01": 69.1694427330417, - "2025-01-01": 67.0247681904997, - "2024-01-01": 65.5180280019715, - "2023-01-01": 61.9850867937897, - "2022-04-01": 56.35, - "2021-04-01": 54.6, - "2020-04-01": 54.32, - "2019-02-01": 53.34, - "2015-01-01": 53.34 - }, - "economy": false, - "household": true - }, - "gov.dwp.pension_credit.guarantee_credit.carer": { - "type": "parameterNode", - "parameter": "gov.dwp.pension_credit.guarantee_credit.carer", - "description": null, - "label": "carer", - "economy": true, - "household": true - }, - "gov.dwp.pension_credit.guarantee_credit.carer.addition": { - "type": "parameter", - "parameter": "gov.dwp.pension_credit.guarantee_credit.carer.addition", - "description": "Addition to the Minimum Guarantee for each claimant who is a carer.", - "label": "Pension Credit carer addition", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 50.732705864833, - "2028-01-01": 49.7380293435893, - "2027-01-01": 48.762868057444, - "2026-01-01": 47.853758336247, - "2025-04-01": 46.37, - "2024-04-01": 45.6, - "2023-04-01": 42.75, - "2022-04-01": 38.85, - "2021-04-01": 37.7, - "2020-04-01": 37.5, - "2019-04-01": 36, - "2015-01-01": 36 - }, - "economy": true, - "household": true - }, - "gov.dwp.pension_credit.guarantee_credit.income": { - "type": "parameter", - "parameter": "gov.dwp.pension_credit.guarantee_credit.income", - "description": "Income sources included in income used to determine Pension Credit entitlement.", - "label": "Pension Credit income sources", - "unit": "list", - "period": null, - "values": { - "2002-01-01": [ - "pension_credit_earnings", - "working_tax_credit", - "state_pension", - "private_pension_income", - "capital_income", - "esa_contrib", - "jsa_contrib" - ] - }, - "economy": true, - "household": true - }, - "gov.dwp.pension_credit.guarantee_credit.additions": { - "type": "parameter", - "parameter": "gov.dwp.pension_credit.guarantee_credit.additions", - "description": "Additional elements available in Pension Credit.", - "label": "additions", - "unit": "currency-GBP", - "period": null, - "values": { - "2002-01-01": [ - "severe_disability_minimum_guarantee_addition", - "carer_minimum_guarantee_addition", - "child_minimum_guarantee_addition" - ] - }, - "economy": false, - "household": true - }, - "gov.dwp.ESA": { - "type": "parameterNode", - "parameter": "gov.dwp.ESA", - "description": null, - "label": "Employment Support Allowance", - "economy": true, - "household": true - }, - "gov.dwp.ESA.income": { - "type": "parameterNode", - "parameter": "gov.dwp.ESA.income", - "description": null, - "label": "Income-based", - "economy": true, - "household": true - }, - "gov.dwp.ESA.income.earn_disregard": { - "type": "parameter", - "parameter": "gov.dwp.ESA.income.earn_disregard", - "description": "Earnings threshold above which the income-based Employment and Support Allowance amount is reduced", - "label": "Income-based ESA earnings disregard", - "unit": "currency-GBP", - "period": "week", - "values": { - "2015-04-01": 5, - "2015-01-01": 5 - }, - "economy": false, - "household": true - }, - "gov.dwp.ESA.income.couple": { - "type": "parameter", - "parameter": "gov.dwp.ESA.income.couple", - "description": "Income-based Employment and Support Allowance personal allowance for couples", - "label": "Income-based ESA personal allowance (couples)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2020-04-01": 116.8, - "2015-04-01": 57.9, - "2015-01-01": 57.9 - }, - "economy": false, - "household": true - }, - "gov.dwp.ESA.income.amount_over_25": { - "type": "parameter", - "parameter": "gov.dwp.ESA.income.amount_over_25", - "description": "Income-based Employment and Support Allowance personal allowance for persons aged over 25", - "label": "Income-based ESA personal allowance (over 25)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2020-04-01": 74.35, - "2015-04-01": 73.1, - "2015-01-01": 73.1 - }, - "economy": false, - "household": true - }, - "gov.dwp.ESA.income.amount_18_24": { - "type": "parameter", - "parameter": "gov.dwp.ESA.income.amount_18_24", - "description": "Income-based Employment and Support Allowance personal allowance for persons aged 18-24", - "label": "Income-based ESA personal allowance (18-24)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2020-04-01": 58.9, - "2015-04-01": 57.9, - "2015-01-01": 57.9 - }, - "economy": false, - "household": true - }, - "gov.dwp.ESA.income.income_disregard_lone_parent": { - "type": "parameter", - "parameter": "gov.dwp.ESA.income.income_disregard_lone_parent", - "description": "Threshold for income for a lone parent, above which the income-based Employment and Support Allowance amount is reduced", - "label": "Income-based ESA lone parent earnings disregard", - "unit": "currency-GBP", - "period": "week", - "values": { - "2015-04-01": 20, - "2015-01-01": 20 - }, - "economy": false, - "household": true - }, - "gov.dwp.ESA.income.income_disregard_couple": { - "type": "parameter", - "parameter": "gov.dwp.ESA.income.income_disregard_couple", - "description": "Threshold for income for a couple, above which the income-based Employment and Support Allowance amount is reduced", - "label": "Income-based ESA couple earnings disregard", - "unit": "currency-GBP", - "period": "week", - "values": { - "2015-04-01": 10, - "2015-01-01": 10 - }, - "economy": false, - "household": true - }, - "gov.dwp.ESA.income.income_disregard_single": { - "type": "parameter", - "parameter": "gov.dwp.ESA.income.income_disregard_single", - "description": "Threshold for income for a single person, above which the income-based Employment and Support Allowance amount is reduced", - "label": "Income-based ESA single person earnings disregard", - "unit": "currency-GBP", - "period": "week", - "values": { - "2015-04-01": 5, - "2015-01-01": 5 - }, - "economy": false, - "household": true - }, - "gov.dwp.ESA.income.pension_disregard": { - "type": "parameter", - "parameter": "gov.dwp.ESA.income.pension_disregard", - "description": "Threshold for occupational and personal pensions, above which the income-based Employment and Support Allowance amount is reduced", - "label": "Income-based ESA pension disregard", - "unit": "currency-GBP", - "period": "week", - "values": { - "2015-04-01": 50, - "2015-01-01": 50 - }, - "economy": false, - "household": true - }, - "gov.dwp.pip": { - "type": "parameterNode", - "parameter": "gov.dwp.pip", - "description": null, - "label": "Personal Independence Payment", - "economy": true, - "household": true - }, - "gov.dwp.pip.mobility": { - "type": "parameterNode", - "parameter": "gov.dwp.pip.mobility", - "description": null, - "label": "mobility", - "economy": true, - "household": true - }, - "gov.dwp.pip.mobility.standard": { - "type": "parameter", - "parameter": "gov.dwp.pip.mobility.standard", - "description": "Standard rate for Personal Independence Payment (mobility component).", - "label": "PIP (mobility) (standard rate)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 31.9363313391088, - "2028-01-01": 31.3101806456626, - "2027-01-01": 30.6963148284838, - "2026-01-01": 30.1240285925178, - "2025-04-01": 29.19, - "2024-04-01": 28.7, - "2023-04-01": 26.9, - "2022-04-01": 24.45, - "2021-04-01": 23.7, - "2020-04-01": 23.6, - "2019-04-01": 23.2, - "2018-04-01": 22.65, - "2017-04-01": 22, - "2016-04-01": 21.8, - "2015-04-01": 21.8, - "2015-01-01": 21.8 - }, - "economy": true, - "household": true - }, - "gov.dwp.pip.mobility.enhanced": { - "type": "parameter", - "parameter": "gov.dwp.pip.mobility.enhanced", - "description": "Enhanced rate for Personal Independence Payment (mobility component).", - "label": "PIP (mobility) (enhanced rate)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 84.2882825065071, - "2028-01-01": 82.6357080144517, - "2027-01-01": 81.0155565051863, - "2026-01-01": 79.5051443222874, - "2025-04-01": 77.04, - "2024-04-01": 75.75, - "2023-04-01": 71, - "2022-04-01": 64.5, - "2021-04-01": 62.55, - "2020-04-01": 62.25, - "2019-04-01": 61.2, - "2018-04-01": 59.75, - "2017-04-01": 58, - "2016-04-01": 57.45, - "2015-04-01": 57.45, - "2015-01-01": 57.45 - }, - "economy": true, - "household": true - }, - "gov.dwp.pip.daily_living": { - "type": "parameterNode", - "parameter": "gov.dwp.pip.daily_living", - "description": null, - "label": "daily living", - "economy": true, - "household": true - }, - "gov.dwp.pip.daily_living.standard": { - "type": "parameter", - "parameter": "gov.dwp.pip.daily_living.standard", - "description": "Standard rate for Personal Independence Payment (daily living component).", - "label": "PIP (daily living) (standard rate)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 80.8419158152364, - "2028-01-01": 79.2569115418981, - "2027-01-01": 77.703004545278, - "2026-01-01": 76.2543498698574, - "2025-04-01": 73.89, - "2024-04-01": 72.65, - "2023-04-01": 68.1, - "2022-04-01": 61.85, - "2021-04-01": 60, - "2020-04-01": 59.7, - "2019-04-01": 58.7, - "2018-04-01": 57.3, - "2017-04-01": 55.65, - "2016-04-01": 55.1, - "2015-04-01": 55.1, - "2015-01-01": 55.1 - }, - "economy": true, - "household": true - }, - "gov.dwp.pip.daily_living.enhanced": { - "type": "parameter", - "parameter": "gov.dwp.pip.daily_living.enhanced", - "description": "Enhanced rate for Personal Independence Payment (daily living component).", - "label": "PIP (daily living) (enhanced rate)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 120.78694689406, - "2028-01-01": 118.418771609495, - "2027-01-01": 116.097059166311, - "2026-01-01": 113.932605570879, - "2025-04-01": 110.4, - "2024-04-01": 108.55, - "2023-04-01": 101.75, - "2022-04-01": 92.4, - "2021-04-01": 89.6, - "2020-04-01": 89.15, - "2019-04-01": 87.65, - "2018-04-01": 85.6, - "2017-04-01": 83.1, - "2016-04-01": 82.3, - "2015-04-01": 82.3, - "2015-01-01": 82.3 - }, - "economy": true, - "household": true - }, - "gov.dwp.carers_allowance": { - "type": "parameterNode", - "parameter": "gov.dwp.carers_allowance", - "description": null, - "label": "Carer's Allowance", - "economy": true, - "household": true - }, - "gov.dwp.carers_allowance.min_hours": { - "type": "parameter", - "parameter": "gov.dwp.carers_allowance.min_hours", - "description": "Minimum number of hours spent providing care to qualify for Carer's Allowance.", - "label": "Carer's Allowance minimum hours", - "unit": "hour", - "period": "week", - "values": { - "2010-04-01": 35 - }, - "economy": false, - "household": true - }, - "gov.dwp.carers_allowance.rate": { - "type": "parameter", - "parameter": "gov.dwp.carers_allowance.rate", - "description": "Weekly rate of Carer's Allowance.", - "label": "Carer's Allowance rate", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 91.1263116558538, - "2028-01-01": 89.3396692695182, - "2027-01-01": 87.5880802351631, - "2026-01-01": 85.955133315204, - "2025-04-01": 83.29, - "2024-04-01": 81.9, - "2023-04-01": 76.75, - "2022-04-01": 69.7, - "2021-04-01": 67.6, - "2020-04-01": 67.25, - "2019-04-01": 66.15, - "2018-04-01": 64.6, - "2017-04-01": 62.7, - "2016-04-01": 62.1, - "2015-04-01": 62.1, - "2015-01-01": 62.1 - }, - "economy": true, - "household": true - }, - "gov.dwp.income_support": { - "type": "parameterNode", - "parameter": "gov.dwp.income_support", - "description": null, - "label": "Income Support", - "economy": true, - "household": true - }, - "gov.dwp.income_support.means_test": { - "type": "parameterNode", - "parameter": "gov.dwp.income_support.means_test", - "description": null, - "label": "means test", - "economy": true, - "household": true - }, - "gov.dwp.income_support.means_test.earn_disregard": { - "type": "parameter", - "parameter": "gov.dwp.income_support.means_test.earn_disregard", - "description": "Threshold in earnings, above which the Income Support amount is reduced", - "label": "Income Support earnings disregard", - "unit": "currency-GBP", - "period": "week", - "values": { - "2015-04-01": 5, - "2015-01-01": 5 - }, - "economy": false, - "household": true - }, - "gov.dwp.income_support.means_test.income_disregard_lone_parent": { - "type": "parameter", - "parameter": "gov.dwp.income_support.means_test.income_disregard_lone_parent", - "description": "Threshold in income for a lone parent, above which the Income Support amount is reduced", - "label": "Income Support income disregard (lone parent)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2015-04-01": 20, - "2015-01-01": 20 - }, - "economy": true, - "household": true - }, - "gov.dwp.income_support.means_test.income_disregard_couple": { - "type": "parameter", - "parameter": "gov.dwp.income_support.means_test.income_disregard_couple", - "description": "Threshold in income for a couple, above which the Income Support amount is reduced", - "label": "Income Support income disregard (couples)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2015-04-01": 10, - "2015-01-01": 10 - }, - "economy": true, - "household": true - }, - "gov.dwp.income_support.means_test.income_disregard_single": { - "type": "parameter", - "parameter": "gov.dwp.income_support.means_test.income_disregard_single", - "description": "Threshold in income for a single person, above which the Income Support amount is reduced", - "label": "Income Support income disregard (single)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2015-04-01": 5, - "2015-01-01": 5 - }, - "economy": true, - "household": true - }, - "gov.dwp.income_support.means_test.pension_disregard": { - "type": "parameter", - "parameter": "gov.dwp.income_support.means_test.pension_disregard", - "description": "Threshold in occupational and personal pensions, above which the Income Support amount is reduced", - "label": "Income Support pension disregard", - "unit": "currency-GBP", - "period": "week", - "values": { - "2015-04-01": 50, - "2015-01-01": 50 - }, - "economy": false, - "household": true - }, - "gov.dwp.income_support.amounts": { - "type": "parameterNode", - "parameter": "gov.dwp.income_support.amounts", - "description": null, - "label": "amounts", - "economy": true, - "household": true - }, - "gov.dwp.income_support.amounts.amount_over_25": { - "type": "parameter", - "parameter": "gov.dwp.income_support.amounts.amount_over_25", - "description": "Income Support applicable amount for single persons aged over 25", - "label": "Income Support applicable amount (single, over 25)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 109.568386925163, - "2028-01-01": 107.420165179701, - "2027-01-01": 105.314090857557, - "2026-01-01": 103.350669352799, - "2025-01-01": 100.146168336778, - "2024-01-01": 97.8948475096588, - "2023-01-01": 92.6160448444572, - "2022-01-01": 84.1962865091616, - "2021-01-01": 80.9580675544857, - "2020-01-01": 80.474993241063, - "2019-01-01": 79.1295178043484, - "2018-01-01": 77.3502481183991, - "2017-01-01": 75.2435253743579, - "2016-01-01": 74.4245685181794, - "2015-04-01": 74.35, - "2015-01-01": 74.35 - }, - "economy": true, - "household": true - }, - "gov.dwp.income_support.amounts.amount_couples_16_17": { - "type": "parameter", - "parameter": "gov.dwp.income_support.amounts.amount_couples_16_17", - "description": "Income Support applicable amount for couples both aged under 18", - "label": "Income Support applicable amount (couples, both under 18)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 86.7999729642518, - "2028-01-01": 85.0981537200318, - "2027-01-01": 83.4297236248834, - "2026-01-01": 81.874302957362, - "2025-01-01": 79.3357002694854, - "2024-01-01": 77.552206029844, - "2023-01-01": 73.3703435284268, - "2022-01-01": 66.7002189023486, - "2021-01-01": 64.1349048952147, - "2020-01-01": 63.7522138789322, - "2019-01-01": 62.6863295047225, - "2018-01-01": 61.2767937346834, - "2017-01-01": 59.6078499603185, - "2016-01-01": 58.959073109896, - "2015-04-01": 58.9, - "2015-01-01": 58.9 - }, - "economy": false, - "household": true - }, - "gov.dwp.income_support.amounts.amount_16_24": { - "type": "parameter", - "parameter": "gov.dwp.income_support.amounts.amount_16_24", - "description": "Income Support applicable amount for single persons aged 18-24", - "label": "Income Support applicable amount (single, 18-24)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 86.7999729642518, - "2028-01-01": 85.0981537200318, - "2027-01-01": 83.4297236248834, - "2026-01-01": 81.874302957362, - "2025-01-01": 79.3357002694854, - "2024-01-01": 77.552206029844, - "2023-01-01": 73.3703435284268, - "2022-01-01": 66.7002189023486, - "2021-01-01": 64.1349048952147, - "2020-01-01": 63.7522138789322, - "2019-01-01": 62.6863295047225, - "2018-01-01": 61.2767937346834, - "2017-01-01": 59.6078499603185, - "2016-01-01": 58.959073109896, - "2015-04-01": 58.9, - "2015-01-01": 58.9 - }, - "economy": true, - "household": true - }, - "gov.dwp.income_support.amounts.amount_lone_16_17": { - "type": "parameter", - "parameter": "gov.dwp.income_support.amounts.amount_lone_16_17", - "description": "Income Support applicable amount for lone parents aged under 18", - "label": "Income Support applicable amount (lone parent, under 18)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 86.7999729642518, - "2028-01-01": 85.0981537200318, - "2027-01-01": 83.4297236248834, - "2026-01-01": 81.874302957362, - "2025-01-01": 79.3357002694854, - "2024-01-01": 77.552206029844, - "2023-01-01": 73.3703435284268, - "2022-01-01": 66.7002189023486, - "2021-01-01": 64.1349048952147, - "2020-01-01": 63.7522138789322, - "2019-01-01": 62.6863295047225, - "2018-01-01": 61.2767937346834, - "2017-01-01": 59.6078499603185, - "2016-01-01": 58.959073109896, - "2015-04-01": 58.9, - "2015-01-01": 58.9 - }, - "economy": false, - "household": true - }, - "gov.dwp.income_support.amounts.amount_couples_age_gap": { - "type": "parameter", - "parameter": "gov.dwp.income_support.amounts.amount_couples_age_gap", - "description": "Income Support applicable amount for couples in which one is under 18 and one over 25", - "label": "Income Support applicable amount (couples, one under 18, one over 25)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 109.568386925163, - "2028-01-01": 107.420165179701, - "2027-01-01": 105.314090857557, - "2026-01-01": 103.350669352799, - "2025-01-01": 100.146168336778, - "2024-01-01": 97.8948475096588, - "2023-01-01": 92.6160448444572, - "2022-01-01": 84.1962865091616, - "2021-01-01": 80.9580675544857, - "2020-01-01": 80.474993241063, - "2019-01-01": 79.1295178043484, - "2018-01-01": 77.3502481183991, - "2017-01-01": 75.2435253743579, - "2016-01-01": 74.4245685181794, - "2015-04-01": 74.35, - "2015-01-01": 74.35 - }, - "economy": false, - "household": true - }, - "gov.dwp.income_support.amounts.amount_lone_over_18": { - "type": "parameter", - "parameter": "gov.dwp.income_support.amounts.amount_lone_over_18", - "description": "Income Support applicable amount for lone parents aged over 18", - "label": "Income Support applicable amount (lone parent, over 18)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 109.568386925163, - "2028-01-01": 107.420165179701, - "2027-01-01": 105.314090857557, - "2026-01-01": 103.350669352799, - "2025-01-01": 100.146168336778, - "2024-01-01": 97.8948475096588, - "2023-01-01": 92.6160448444572, - "2022-01-01": 84.1962865091616, - "2021-01-01": 80.9580675544857, - "2020-01-01": 80.474993241063, - "2019-01-01": 79.1295178043484, - "2018-01-01": 77.3502481183991, - "2017-01-01": 75.2435253743579, - "2016-01-01": 74.4245685181794, - "2015-04-01": 74.35, - "2015-01-01": 74.35 - }, - "economy": true, - "household": true - }, - "gov.dwp.income_support.amounts.amount_couples_over_18": { - "type": "parameter", - "parameter": "gov.dwp.income_support.amounts.amount_couples_over_18", - "description": "Income Support applicable amount for couples aged over 18", - "label": "Income Support applicable amount (couples, both over 18)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 172.126262176988, - "2028-01-01": 168.751517054324, - "2027-01-01": 165.442983351212, - "2026-01-01": 162.358549837349, - "2025-01-01": 157.32444467701, - "2024-01-01": 153.787736235752, - "2023-01-01": 145.495010596269, - "2022-01-01": 132.268006244386, - "2021-01-01": 127.180931948405, - "2020-01-01": 126.422047216626, - "2019-01-01": 124.308374977107, - "2018-01-01": 121.513234434822, - "2017-01-01": 118.203682094486, - "2016-01-01": 116.917143280744, - "2015-04-01": 116.8, - "2015-01-01": 116.8 - }, - "economy": true, - "household": true - }, - "gov.dwp.income_support.takeup": { - "type": "parameter", - "parameter": "gov.dwp.income_support.takeup", - "description": "Share of eligible Income Support recipients that participate. By definition, this is 100%, because only current claimants are eligible (no new claims).", - "label": "Income Support take-up rate", - "unit": "/1", - "period": null, - "values": { - "2025-01-01": 1, - "2024-01-01": 1, - "2023-01-01": 1, - "2022-01-01": 1, - "2021-01-01": 1, - "2020-01-01": 1, - "2019-01-01": 1, - "2015-01-01": 1 - }, - "economy": false, - "household": true - }, - "gov.dwp.ssmg": { - "type": "parameterNode", - "parameter": "gov.dwp.ssmg", - "description": null, - "label": "ssmg", - "economy": true, - "household": true - }, - "gov.dwp.ssmg.rate": { - "type": "parameter", - "parameter": "gov.dwp.ssmg.rate", - "description": "Amount paid to recipients of the Sure Start Maternity Grant.", - "label": "rate", - "unit": "currency-GBP", - "period": null, - "values": { - "2022-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.dwp.attendance_allowance": { - "type": "parameterNode", - "parameter": "gov.dwp.attendance_allowance", - "description": null, - "label": "Attendance Allowance", - "economy": true, - "household": true - }, - "gov.dwp.attendance_allowance.lower": { - "type": "parameter", - "parameter": "gov.dwp.attendance_allowance.lower", - "description": "Lower Attendance Allowance amount.", - "label": "Attendance Allowance (lower rate)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 80.8419158152364, - "2028-01-01": 79.2569115418981, - "2027-01-01": 77.703004545278, - "2026-01-01": 76.2543498698574, - "2025-04-01": 73.89, - "2024-04-01": 72.65, - "2023-04-01": 68.1, - "2022-04-01": 61.85, - "2021-04-01": 60, - "2020-04-01": 59.7, - "2019-04-01": 58.7, - "2018-04-01": 57.3, - "2017-04-01": 55.65, - "2016-04-01": 55.1, - "2015-04-01": 55.1, - "2015-01-01": 55.1 - }, - "economy": true, - "household": true - }, - "gov.dwp.attendance_allowance.higher": { - "type": "parameter", - "parameter": "gov.dwp.attendance_allowance.higher", - "description": "Upper Attendance Allowance amount.", - "label": "Attendance Allowance (higher rate)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 120.78694689406, - "2028-01-01": 118.418771609495, - "2027-01-01": 116.097059166311, - "2026-01-01": 113.932605570879, - "2025-04-01": 110.4, - "2024-04-01": 108.55, - "2023-04-01": 101.75, - "2022-04-01": 92.4, - "2021-04-01": 89.6, - "2020-04-01": 89.15, - "2019-04-01": 87.65, - "2018-04-01": 85.6, - "2017-04-01": 83.1, - "2016-04-01": 82.3, - "2015-04-01": 82.3, - "2015-01-01": 82.3 - }, - "economy": true, - "household": true - }, - "gov.dwp.carer_premium": { - "type": "parameterNode", - "parameter": "gov.dwp.carer_premium", - "description": null, - "label": "Carer premia", - "economy": true, - "household": true - }, - "gov.dwp.carer_premium.couple": { - "type": "parameter", - "parameter": "gov.dwp.carer_premium.couple", - "description": "Carer premium for two qualifying carers for legacy benefits.", - "label": "Legacy benefit carer premium (two carers)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 50.743646711472, - "2028-01-01": 49.7487556815975, - "2027-01-01": 48.773384095412, - "2026-01-01": 47.8640783186356, - "2025-04-01": 46.38, - "2024-04-01": 45.6, - "2023-04-01": 42.75, - "2010-01-01": 37.5 - }, - "economy": true, - "household": true - }, - "gov.dwp.carer_premium.single": { - "type": "parameter", - "parameter": "gov.dwp.carer_premium.single", - "description": "Carer premium for one qualifying carer, for legacy benefits.", - "label": "Legacy benefit carer premium (one carer)", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 50.743646711472, - "2028-01-01": 49.7487556815975, - "2027-01-01": 48.773384095412, - "2026-01-01": 47.8640783186356, - "2025-04-01": 46.38, - "2024-04-01": 45.6, - "2023-04-01": 42.75, - "2022-04-01": 38.85, - "2021-04-01": 37.7, - "2020-04-01": 37.5, - "2019-04-01": 36.85, - "2018-04-01": 36, - "2017-04-01": 34.95, - "2016-04-01": 34.6, - "2015-04-01": 34.6, - "2015-01-01": 34.6 - }, - "economy": true, - "household": true - }, - "gov.dwp.constant_attendance_allowance": { - "type": "parameterNode", - "parameter": "gov.dwp.constant_attendance_allowance", - "description": null, - "label": "Constant Attendance Allowance", - "economy": true, - "household": true - }, - "gov.dwp.constant_attendance_allowance.part_day_rate": { - "type": "parameter", - "parameter": "gov.dwp.constant_attendance_allowance.part_day_rate", - "description": "Part day rate for Constant Attendance Allowance", - "label": "Constant Attendance Allowance part day rate", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 53.6420885551573, - "2028-01-01": 52.5903700409025, - "2027-01-01": 51.5592859073982, - "2026-01-01": 50.5980412164342, - "2025-01-01": 49.0291933753696, - "2024-01-01": 47.9269999912788, - "2023-01-01": 45.3426231652756, - "2022-01-01": 41.2205087953394, - "2021-01-01": 39.6351534496743, - "2020-01-01": 39.3986517010718, - "2019-01-01": 38.7399387771121, - "2018-01-01": 37.8688504574274, - "2017-01-01": 36.8374488719116, - "2016-01-01": 36.4365069813279, - "2015-04-01": 36.4, - "2015-01-01": 36.4 - }, - "economy": false, - "household": true - }, - "gov.dwp.constant_attendance_allowance.exceptional_rate": { - "type": "parameter", - "parameter": "gov.dwp.constant_attendance_allowance.exceptional_rate", - "description": "Exceptional rate for Constant Attendance Allowance", - "label": "Constant Attendance Allowance exceptional rate", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 214.568354220629, - "2028-01-01": 210.36148016361, - "2027-01-01": 206.237143629593, - "2026-01-01": 202.392164865737, - "2025-01-01": 196.116773501478, - "2024-01-01": 191.707999965115, - "2023-01-01": 181.370492661103, - "2022-01-01": 164.882035181358, - "2021-01-01": 158.540613798697, - "2020-01-01": 157.594606804287, - "2019-01-01": 154.959755108448, - "2018-01-01": 151.47540182971, - "2017-01-01": 147.349795487646, - "2016-01-01": 145.746027925312, - "2015-04-01": 145.6, - "2015-01-01": 145.6 - }, - "economy": false, - "household": true - }, - "gov.dwp.constant_attendance_allowance.full_day_rate": { - "type": "parameter", - "parameter": "gov.dwp.constant_attendance_allowance.full_day_rate", - "description": "Full day rate for Constant Attendance Allowance", - "label": "Constant Attendance Allowance full day rate", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 107.284177110315, - "2028-01-01": 105.180740081805, - "2027-01-01": 103.118571814796, - "2026-01-01": 101.196082432868, - "2025-01-01": 98.0583867507391, - "2024-01-01": 95.8539999825576, - "2023-01-01": 90.6852463305513, - "2022-01-01": 82.4410175906788, - "2021-01-01": 79.2703068993485, - "2020-01-01": 78.7973034021437, - "2019-01-01": 77.4798775542241, - "2018-01-01": 75.7377009148548, - "2017-01-01": 73.6748977438232, - "2016-01-01": 72.8730139626558, - "2015-04-01": 72.8, - "2015-01-01": 72.8 - }, - "economy": false, - "household": true - }, - "gov.dwp.constant_attendance_allowance.intermediate_rate": { - "type": "parameter", - "parameter": "gov.dwp.constant_attendance_allowance.intermediate_rate", - "description": "Intermediate rate for Constant Attendance Allowance", - "label": "Constant Attendance Allowance intermediate rate", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 160.926265665472, - "2028-01-01": 157.771110122707, - "2027-01-01": 154.677857722195, - "2026-01-01": 151.794123649303, - "2025-01-01": 147.087580126109, - "2024-01-01": 143.780999973836, - "2023-01-01": 136.027869495827, - "2022-01-01": 123.661526386018, - "2021-01-01": 118.905460349023, - "2020-01-01": 118.195955103216, - "2019-01-01": 116.219816331336, - "2018-01-01": 113.606551372282, - "2017-01-01": 110.512346615735, - "2016-01-01": 109.309520943984, - "2015-04-01": 109.2, - "2015-01-01": 109.2 - }, - "economy": false, - "household": true - }, - "gov.dwp.sda": { - "type": "parameterNode", - "parameter": "gov.dwp.sda", - "description": null, - "label": "Severe Disability Allowance", - "economy": true, - "household": true - }, - "gov.dwp.sda.maximum": { - "type": "parameter", - "parameter": "gov.dwp.sda.maximum", - "description": "Maximum Severe Disablement Allowance rate.", - "label": "Severe Disablement Allowance", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 125.841618041257, - "2028-01-01": 123.37433976924, - "2027-01-01": 120.955468707509, - "2026-01-01": 118.700437434443, - "2025-04-01": 115.02, - "2024-04-01": 113.1, - "2023-04-01": 106, - "2022-04-01": 96.3, - "2021-04-01": 93.4, - "2020-04-01": 92.95, - "2019-04-01": 91.4, - "2018-04-01": 89.25, - "2017-04-01": 86.65, - "2016-04-01": 85.8, - "2015-04-01": 85.8, - "2015-01-01": 85.8 - }, - "economy": true, - "household": true - }, - "gov.dwp.state_pension": { - "type": "parameterNode", - "parameter": "gov.dwp.state_pension", - "description": null, - "label": "State Pension", - "economy": true, - "household": true - }, - "gov.dwp.state_pension.basic_state_pension": { - "type": "parameterNode", - "parameter": "gov.dwp.state_pension.basic_state_pension", - "description": null, - "label": "basic state pension", - "economy": true, - "household": true - }, - "gov.dwp.state_pension.basic_state_pension.amount": { - "type": "parameter", - "parameter": "gov.dwp.state_pension.basic_state_pension.amount", - "description": "Weekly amount paid to recipients of the basic State Pension.", - "label": "basic State Pension amount", - "unit": "currency-GBP", - "period": null, - "values": { - "2029-01-01": 192.502691098711, - "2028-01-01": 187.80804990375, - "2027-01-01": 183.226819366944, - "2026-01-01": 178.757599356709, - "2025-04-01": 172.38, - "2024-01-01": 169.5, - "2023-01-01": 156.2, - "2022-01-01": 141.85, - "2021-01-01": 137.6, - "2020-01-01": 134.25, - "2019-01-01": 129.2, - "2018-01-01": 125.95, - "2017-01-01": 122.3, - "2016-01-01": 119.3, - "2015-01-01": 115.95, - "2014-01-01": 113.1, - "2013-01-01": 110.15, - "2012-01-01": 107.45, - "2011-01-01": 102.15, - "2010-01-01": 97.65, - "2009-01-01": 95.25, - "2008-01-01": 90.7, - "2007-01-01": 87.3, - "2006-01-01": 84.25, - "2005-01-01": 82.05, - "2004-01-01": 79.6, - "2003-01-01": 77.45, - "2002-01-01": 75.5 - }, - "economy": true, - "household": true - }, - "gov.dwp.state_pension.new_state_pension": { - "type": "parameterNode", - "parameter": "gov.dwp.state_pension.new_state_pension", - "description": null, - "label": "new state pension", - "economy": true, - "household": true - }, - "gov.dwp.state_pension.new_state_pension.active": { - "type": "parameter", - "parameter": "gov.dwp.state_pension.new_state_pension.active", - "description": "Individuals who reach State Pension age while this parameter is true receive the New State Pension.", - "label": "New State Pension active", - "unit": "currency-GBP", - "period": null, - "values": { - "2016-01-01": true, - "2000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.dwp.state_pension.new_state_pension.amount": { - "type": "parameter", - "parameter": "gov.dwp.state_pension.new_state_pension.amount", - "description": "Weekly amount paid to recipients of the New State Pension.", - "label": "New State Pension amount", - "unit": "currency-GBP", - "period": null, - "values": { - "2029-01-01": 251.22059049522, - "2028-01-01": 245.093972075343, - "2027-01-01": 239.115357261792, - "2026-01-01": 233.28291884955, - "2025-04-01": 224.96, - "2024-01-01": 221.2, - "2023-01-01": 203.85, - "2022-01-01": 185.15, - "2021-01-01": 179.6, - "2020-01-01": 175.2, - "2019-01-01": 168.6, - "2018-01-01": 164.35, - "2017-01-01": 159.55, - "2016-01-01": 155.65, - "2015-01-01": 155.65 - }, - "economy": true, - "household": true - }, - "gov.dwp.state_pension.age": { - "type": "parameterNode", - "parameter": "gov.dwp.state_pension.age", - "description": null, - "label": "age", - "economy": true, - "household": true - }, - "gov.dwp.state_pension.age.male": { - "type": "parameter", - "parameter": "gov.dwp.state_pension.age.male", - "description": "Male State Pension age", - "label": "male", - "unit": "year", - "period": null, - "values": { - "2020-01-01": 66, - "1950-01-05": 65 - }, - "economy": true, - "household": true - }, - "gov.dwp.state_pension.age.female": { - "type": "parameter", - "parameter": "gov.dwp.state_pension.age.female", - "description": "Female State Pension age", - "label": "female", - "unit": "year", - "period": null, - "values": { - "2020-01-01": 66, - "2019-01-01": 65, - "2016-01-01": 64, - "2014-01-01": 63, - "2012-01-01": 62, - "2010-01-01": 61, - "1950-01-05": 60 - }, - "economy": true, - "household": true - }, - "gov.dwp.state_pension.triple_lock": { - "type": "parameterNode", - "parameter": "gov.dwp.state_pension.triple_lock", - "description": null, - "label": "triple lock", - "economy": true, - "household": true - }, - "gov.dwp.state_pension.triple_lock.include_earnings": { - "type": "parameter", - "parameter": "gov.dwp.state_pension.triple_lock.include_earnings", - "description": "Whether the triple lock should include average earnings.", - "label": "include average earnings in triple lock", - "unit": "bool", - "period": null, - "values": { - "2023-01-01": true, - "2022-01-01": false, - "2012-01-01": true - }, - "economy": true, - "household": true - }, - "gov.dwp.state_pension.triple_lock.active": { - "type": "parameter", - "parameter": "gov.dwp.state_pension.triple_lock.active", - "description": "The triple lock is active if this value is true.", - "label": "triple lock", - "unit": "bool", - "period": null, - "values": { - "2010-01-01": true - }, - "economy": true, - "household": true - }, - "gov.dwp.state_pension.triple_lock.include_inflation": { - "type": "parameter", - "parameter": "gov.dwp.state_pension.triple_lock.include_inflation", - "description": "Whether the triple lock should include inflation.", - "label": "include inflation in triple lock", - "unit": "bool", - "period": null, - "values": { - "2012-01-01": true - }, - "economy": true, - "household": true - }, - "gov.dwp.state_pension.triple_lock.__pycache__": { - "type": "parameterNode", - "parameter": "gov.dwp.state_pension.triple_lock.__pycache__", - "description": null, - "label": " pycache ", - "economy": true, - "household": true - }, - "gov.dwp.state_pension.triple_lock.minimum_rate": { - "type": "parameter", - "parameter": "gov.dwp.state_pension.triple_lock.minimum_rate", - "description": "The triple lock is set to the highest of earnings growth, CPI inflation, or this rate.", - "label": "triple lock minimum rate", - "unit": "/1", - "period": null, - "values": { - "2010-01-01": 0.025 - }, - "economy": true, - "household": true - }, - "gov.dwp.housing_benefit": { - "type": "parameterNode", - "parameter": "gov.dwp.housing_benefit", - "description": null, - "label": "Housing Benefit", - "economy": true, - "household": true - }, - "gov.dwp.housing_benefit.means_test": { - "type": "parameterNode", - "parameter": "gov.dwp.housing_benefit.means_test", - "description": null, - "label": "means test", - "economy": true, - "household": true - }, - "gov.dwp.housing_benefit.means_test.income_disregard": { - "type": "parameterNode", - "parameter": "gov.dwp.housing_benefit.means_test.income_disregard", - "description": null, - "label": "income disregard", - "economy": true, - "household": true - }, - "gov.dwp.housing_benefit.means_test.income_disregard.couple": { - "type": "parameter", - "parameter": "gov.dwp.housing_benefit.means_test.income_disregard.couple", - "description": "This amount of earnings is disreagrded for couples under the Housing Benefit.", - "label": "Housing Benefit couple earnings disregard", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 14.7368375151531, - "2028-01-01": 14.4479038573908, - "2027-01-01": 14.164638985549, - "2026-01-01": 13.9005607737457, - "2025-01-01": 13.469558619607, - "2024-01-01": 13.1667582393623, - "2023-01-01": 12.456764605845, - "2022-01-01": 11.3243156031152, - "2021-01-01": 10.8887784202402, - "2020-01-01": 10.8238054123824, - "2019-01-01": 10.6428403233824, - "2018-01-01": 10.4035303454471, - "2017-01-01": 10.1201782615142, - "2016-01-01": 10.0100293904747, - "2015-04-01": 10, - "2015-01-01": 10 - }, - "economy": true, - "household": true - }, - "gov.dwp.housing_benefit.means_test.income_disregard.worker_hours": { - "type": "parameter", - "parameter": "gov.dwp.housing_benefit.means_test.income_disregard.worker_hours", - "description": "Filers can receive an additional income disregard amount if the meet the following averge weekly work hour quota under the Housing Benefit.", - "label": "Housing Benefit worker element hours requirement", - "unit": "hour", - "period": "week", - "values": { - "2015-04-01": 30, - "2015-01-01": 30 - }, - "economy": false, - "household": true - }, - "gov.dwp.housing_benefit.means_test.income_disregard.worker": { - "type": "parameter", - "parameter": "gov.dwp.housing_benefit.means_test.income_disregard.worker", - "description": "This amount of earnings is disreagrded for workers under the Housing Benefit.", - "label": "Housing Benefit worker earnings disregard", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 54.673667181218, - "2028-01-01": 53.6017233109198, - "2027-01-01": 52.5508106363866, - "2026-01-01": 51.5710804705964, - "2025-01-01": 49.9720624787421, - "2024-01-01": 48.8486730680342, - "2023-01-01": 46.2145966876848, - "2022-01-01": 42.0132108875575, - "2021-01-01": 40.3973679390911, - "2020-01-01": 40.1563180799386, - "2019-01-01": 39.4849375997488, - "2018-01-01": 38.5970975816087, - "2017-01-01": 37.5458613502176, - "2016-01-01": 37.1372090386611, - "2015-04-01": 37.1, - "2015-01-01": 37.1 - }, - "economy": true, - "household": true - }, - "gov.dwp.housing_benefit.means_test.income_disregard.lone_parent": { - "type": "parameter", - "parameter": "gov.dwp.housing_benefit.means_test.income_disregard.lone_parent", - "description": "This amount of earnings is disreagrded for lone parents under the Housing Benefit.", - "label": "Housing Benefit lone parent earnings disregard", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 36.8420937878828, - "2028-01-01": 36.119759643477, - "2027-01-01": 35.4115974638724, - "2026-01-01": 34.7514019343642, - "2025-01-01": 33.6738965490176, - "2024-01-01": 32.9168955984058, - "2023-01-01": 31.1419115146124, - "2022-01-01": 28.310789007788, - "2021-01-01": 27.2219460506005, - "2020-01-01": 27.0595135309559, - "2019-01-01": 26.6071008084561, - "2018-01-01": 26.0088258636177, - "2017-01-01": 25.3004456537854, - "2016-01-01": 25.0250734761867, - "2015-04-01": 25, - "2015-01-01": 25 - }, - "economy": true, - "household": true - }, - "gov.dwp.housing_benefit.means_test.income_disregard.single": { - "type": "parameter", - "parameter": "gov.dwp.housing_benefit.means_test.income_disregard.single", - "description": "This amount of earnings is disreagrded for single filers under the Housing Benefit.", - "label": "Housing Benefit single person earnings disregard", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 7.36841875757655, - "2028-01-01": 7.2239519286954, - "2027-01-01": 7.08231949277448, - "2026-01-01": 6.95028038687284, - "2025-01-01": 6.73477930980351, - "2024-01-01": 6.58337911968115, - "2023-01-01": 6.22838230292248, - "2022-01-01": 5.66215780155761, - "2021-01-01": 5.44438921012009, - "2020-01-01": 5.41190270619119, - "2019-01-01": 5.32142016169122, - "2018-01-01": 5.20176517272355, - "2017-01-01": 5.06008913075709, - "2016-01-01": 5.00501469523735, - "2015-04-01": 5, - "2015-01-01": 5 - }, - "economy": true, - "household": true - }, - "gov.dwp.housing_benefit.means_test.withdrawal_rate": { - "type": "parameter", - "parameter": "gov.dwp.housing_benefit.means_test.withdrawal_rate", - "description": "Withdrawal rate under the Housing Benefit.", - "label": "Housing Benefit withdrawal rate", - "unit": "/1", - "period": "year", - "values": { - "2015-04-01": 0.65, - "2015-01-01": 0.65 - }, - "economy": true, - "household": true - }, - "gov.dwp.housing_benefit.allowances": { - "type": "parameterNode", - "parameter": "gov.dwp.housing_benefit.allowances", - "description": null, - "label": "allowances", - "economy": true, - "household": true - }, - "gov.dwp.housing_benefit.allowances.couple": { - "type": "parameterNode", - "parameter": "gov.dwp.housing_benefit.allowances.couple", - "description": null, - "label": "couple", - "economy": true, - "household": true - }, - "gov.dwp.housing_benefit.allowances.couple.younger": { - "type": "parameter", - "parameter": "gov.dwp.housing_benefit.allowances.couple.younger", - "description": "The following couple personal allowance is provided under the Housing Benefit, if both members are under the younger age threshold.", - "label": "Housing Benefit younger couple personal allowance", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 120.502484881447, - "2028-01-01": 118.139886821284, - "2027-01-01": 115.823642179144, - "2026-01-01": 113.664286028774, - "2025-04-01": 110.14, - "2024-04-01": 108.3, - "2023-04-01": 101.5, - "2022-04-06": 92.2, - "2021-04-01": 89.45, - "2015-04-01": 87.5, - "2015-01-01": 87.5 - }, - "economy": true, - "household": true - }, - "gov.dwp.housing_benefit.allowances.couple.older": { - "type": "parameter", - "parameter": "gov.dwp.housing_benefit.allowances.couple.older", - "description": "The following couple personal allowance is provided under the Housing Benefit, if at least one member is over the younger age threshold.", - "label": "Housing Benefit older couple personal allowance", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 158.281228325758, - "2028-01-01": 155.177931963275, - "2027-01-01": 152.135521282519, - "2026-01-01": 149.29918521684, - "2025-04-01": 144.67, - "2024-04-01": 142.25, - "2023-04-01": 133.3, - "2022-04-01": 121.05, - "2021-04-01": 117.4, - "2015-04-01": 114.85, - "2015-01-01": 114.85 - }, - "economy": true, - "household": true - }, - "gov.dwp.housing_benefit.allowances.couple.aged": { - "type": "parameter", - "parameter": "gov.dwp.housing_benefit.allowances.couple.aged", - "description": "The following couple personal allowance is provided under the Housing Benefit if at least one member is over the state pension age threshold.", - "label": "Housing Benefit aged couple personal allowance", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 391.660427981301, - "2028-01-01": 383.981448014193, - "2027-01-01": 376.453127177136, - "2026-01-01": 369.434729549487, - "2025-04-01": 357.98, - "2024-04-01": 352, - "2023-04-01": 324.7, - "2022-04-06": 294.9, - "2021-04-01": 286.05, - "2015-04-01": 270.6, - "2015-01-01": 270.6 - }, - "economy": true, - "household": true - }, - "gov.dwp.housing_benefit.allowances.age_threshold": { - "type": "parameterNode", - "parameter": "gov.dwp.housing_benefit.allowances.age_threshold", - "description": null, - "label": "age threshold", - "economy": true, - "household": true - }, - "gov.dwp.housing_benefit.allowances.age_threshold.younger": { - "type": "parameter", - "parameter": "gov.dwp.housing_benefit.allowances.age_threshold.younger", - "description": "A lower Housing Benefit allowance amount is provided if both members of a couple are below this age threshold.", - "label": "Housing Benefit allowance younger age threshold", - "unit": "year", - "period": "year", - "values": { - "2019-04-01": 18, - "2015-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.dwp.housing_benefit.allowances.age_threshold.older": { - "type": "parameter", - "parameter": "gov.dwp.housing_benefit.allowances.age_threshold.older", - "description": "A higher Houseing Benefit allowance amount is provided for filers over this age threshold.", - "label": "Housing Benefit allowance older age threshold", - "unit": "year", - "period": "year", - "values": { - "2019-04-01": 25, - "2015-01-01": 25 - }, - "economy": true, - "household": true - }, - "gov.dwp.housing_benefit.allowances.lone_parent": { - "type": "parameterNode", - "parameter": "gov.dwp.housing_benefit.allowances.lone_parent", - "description": null, - "label": "lone parent", - "economy": true, - "household": true - }, - "gov.dwp.housing_benefit.allowances.lone_parent.younger": { - "type": "parameter", - "parameter": "gov.dwp.housing_benefit.allowances.lone_parent.younger", - "description": "The following younger lone parent personal allowance is provided under the Housing Benefit.", - "label": "Housing Benefit lone parent younger personal allowance", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 79.7806536912578, - "2028-01-01": 78.2164567551118, - "2027-01-01": 76.6829488623856, - "2026-01-01": 75.2533115781568, - "2025-04-01": 72.92, - "2024-04-01": 71.7, - "2023-04-01": 67.2, - "2022-04-06": 61.05, - "2021-04-01": 59.2, - "2015-04-01": 57.9, - "2015-01-01": 57.9 - }, - "economy": true, - "household": true - }, - "gov.dwp.housing_benefit.allowances.lone_parent.older": { - "type": "parameter", - "parameter": "gov.dwp.housing_benefit.allowances.lone_parent.older", - "description": "The following older lone parent personal allowance is provided under the Housing Benefit.", - "label": "Housing Benefit lone parent older personal allowance", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 100.699552464939, - "2028-01-01": 98.7252150266113, - "2027-01-01": 96.7896134571307, - "2026-01-01": 94.9851179052873, - "2025-04-01": 92.04, - "2024-04-01": 90.5, - "2023-04-01": 84.8, - "2022-04-06": 77, - "2021-04-01": 74.7, - "2015-04-01": 73.1, - "2015-01-01": 73.1 - }, - "economy": true, - "household": true - }, - "gov.dwp.housing_benefit.allowances.lone_parent.aged": { - "type": "parameter", - "parameter": "gov.dwp.housing_benefit.allowances.lone_parent.aged", - "description": "Personal allowance for Housing Benefit for a lone parent over State Pension age.", - "label": "Housing Benefit lone parent aged personal allowance", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 261.705051603797, - "2028-01-01": 256.574005153905, - "2027-01-01": 251.543628193673, - "2026-01-01": 246.853978736905, - "2025-04-01": 239.2, - "2024-04-01": 235.2, - "2023-04-01": 217, - "2022-04-06": 197.1, - "2021-04-01": 191.15, - "2015-04-01": 181, - "2015-01-01": 181 - }, - "economy": true, - "household": true - }, - "gov.dwp.housing_benefit.allowances.single": { - "type": "parameterNode", - "parameter": "gov.dwp.housing_benefit.allowances.single", - "description": null, - "label": "single", - "economy": true, - "household": true - }, - "gov.dwp.housing_benefit.allowances.single.younger": { - "type": "parameter", - "parameter": "gov.dwp.housing_benefit.allowances.single.younger", - "description": "The following younger single person personal allowance is provided under the Housing Benefit.", - "label": "Housing Benefit single younger personal allowance", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 79.7806536912578, - "2028-01-01": 78.2164567551118, - "2027-01-01": 76.6829488623856, - "2026-01-01": 75.2533115781568, - "2025-04-01": 72.92, - "2024-04-01": 71.7, - "2023-04-01": 67.2, - "2022-04-06": 61.05, - "2021-04-01": 59.2, - "2015-04-01": 57.9, - "2015-01-01": 57.9 - }, - "economy": true, - "household": true - }, - "gov.dwp.housing_benefit.allowances.single.older": { - "type": "parameter", - "parameter": "gov.dwp.housing_benefit.allowances.single.older", - "description": "The following older single person personal allowance is provided under the Housing Benefit.", - "label": "Housing Benefit single older personal allowance", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 100.699552464939, - "2028-01-01": 98.7252150266113, - "2027-01-01": 96.7896134571307, - "2026-01-01": 94.9851179052873, - "2025-04-01": 92.04, - "2024-04-01": 90.5, - "2023-04-01": 84.8, - "2022-04-06": 77, - "2021-04-01": 74.7, - "2015-04-01": 73.1, - "2015-01-01": 73.1 - }, - "economy": true, - "household": true - }, - "gov.dwp.housing_benefit.allowances.single.aged": { - "type": "parameter", - "parameter": "gov.dwp.housing_benefit.allowances.single.aged", - "description": "The following personal allowance amount is provided to single filers over the pension age under the Housing Benefit.", - "label": "Housing Benefit single aged personal allowance", - "unit": "currency-GBP", - "period": "week", - "values": { - "2029-01-01": 261.705051603797, - "2028-01-01": 256.574005153905, - "2027-01-01": 251.543628193673, - "2026-01-01": 246.853978736905, - "2025-04-01": 239.2, - "2024-04-01": 235.2, - "2023-04-01": 217, - "2022-04-06": 197.1, - "2021-04-01": 191.15, - "2015-04-01": 181, - "2015-01-01": 181 - }, - "economy": true, - "household": true - }, - "gov.dwp.housing_benefit.takeup": { - "type": "parameter", - "parameter": "gov.dwp.housing_benefit.takeup", - "description": "Share of eligible Housing Benefit recipients that participate. By definition, this is 100%, because only current claimants are eligible (no new claims).", - "label": "Housing Benefit take-up rate", - "unit": "/1", - "period": "year", - "values": { - "2025-01-01": 1, - "2024-01-01": 1, - "2023-01-01": 1, - "2022-01-01": 1, - "2021-01-01": 1, - "2020-01-01": 1, - "2019-01-01": 1, - "2015-01-01": 1 - }, - "economy": false, - "household": true - }, - "gov.dwp.housing_benefit.non_dep_deduction": { - "type": "parameterNode", - "parameter": "gov.dwp.housing_benefit.non_dep_deduction", - "description": null, - "label": "non dep deduction", - "economy": true, - "household": true - }, - "gov.dwp.housing_benefit.non_dep_deduction.age_threshold": { - "type": "parameter", - "parameter": "gov.dwp.housing_benefit.non_dep_deduction.age_threshold", - "description": "A non dependent deduction is provided under Housing Benefit for filers at or above this age threshold.", - "label": "Housing Benefit non dependent deduction age threshold", - "unit": "year", - "period": "year", - "values": { - "2019-04-01": 18, - "2015-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.dwp.housing_benefit.non_dep_deduction.amount": { - "type": "parameterNode", - "parameter": "gov.dwp.housing_benefit.non_dep_deduction.amount", - "description": "The following amount is provided for individuals under the Housing Benefit non-dependent deduction, based on total income.", - "label": "amount" - }, - "gov.dwp.housing_benefit.non_dep_deduction.amount[0]": { - "type": "parameterNode", - "parameter": "gov.dwp.housing_benefit.non_dep_deduction.amount[0]", - "description": null, - "label": "bracket 1" - }, - "gov.dwp.housing_benefit.non_dep_deduction.amount[0].threshold": { - "type": "parameter", - "parameter": "gov.dwp.housing_benefit.non_dep_deduction.amount[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": "week", - "values": { - "2018-06-18": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.dwp.housing_benefit.non_dep_deduction.amount[0].amount": { - "type": "parameter", - "parameter": "gov.dwp.housing_benefit.non_dep_deduction.amount[0].amount", - "description": null, - "label": "amount", - "unit": "currency-GBP", - "period": "week", - "values": { - "2024-04-01": 19.3, - "2023-04-01": 18.1, - "2022-04-01": 16.45, - "2021-04-01": 15.95, - "2018-06-18": 15.25, - "2015-01-01": 15.25 - }, - "economy": false, - "household": true - }, - "gov.dwp.housing_benefit.non_dep_deduction.amount[1]": { - "type": "parameterNode", - "parameter": "gov.dwp.housing_benefit.non_dep_deduction.amount[1]", - "description": null, - "label": "bracket 2" - }, - "gov.dwp.housing_benefit.non_dep_deduction.amount[1].threshold": { - "type": "parameter", - "parameter": "gov.dwp.housing_benefit.non_dep_deduction.amount[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": "week", - "values": { - "2024-04-01": 176, - "2023-04-01": 162, - "2021-04-01": 154, - "2018-06-18": 139, - "2015-01-01": 139 - }, - "economy": false, - "household": true - }, - "gov.dwp.housing_benefit.non_dep_deduction.amount[1].amount": { - "type": "parameter", - "parameter": "gov.dwp.housing_benefit.non_dep_deduction.amount[1].amount", - "description": null, - "label": "amount", - "unit": "currency-GBP", - "period": "week", - "values": { - "2024-04-01": 44.4, - "2023-04-01": 41.6, - "2022-04-01": 37.8, - "2021-04-01": 36.65, - "2018-06-18": 35, - "2015-01-01": 35 - }, - "economy": false, - "household": true - }, - "gov.dwp.housing_benefit.non_dep_deduction.amount[2]": { - "type": "parameterNode", - "parameter": "gov.dwp.housing_benefit.non_dep_deduction.amount[2]", - "description": null, - "label": "bracket 3" - }, - "gov.dwp.housing_benefit.non_dep_deduction.amount[2].threshold": { - "type": "parameter", - "parameter": "gov.dwp.housing_benefit.non_dep_deduction.amount[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": "week", - "values": { - "2024-04-01": 256, - "2023-04-01": 236, - "2021-04-01": 224, - "2018-06-18": 204, - "2015-01-01": 204 - }, - "economy": false, - "household": true - }, - "gov.dwp.housing_benefit.non_dep_deduction.amount[2].amount": { - "type": "parameter", - "parameter": "gov.dwp.housing_benefit.non_dep_deduction.amount[2].amount", - "description": null, - "label": "amount", - "unit": "currency-GBP", - "period": "week", - "values": { - "2024-04-01": 60.95, - "2023-04-01": 57.1, - "2022-04-01": 51.85, - "2021-04-01": 50.3, - "2018-06-18": 48.05, - "2015-01-01": 48.05 - }, - "economy": false, - "household": true - }, - "gov.dwp.housing_benefit.non_dep_deduction.amount[3]": { - "type": "parameterNode", - "parameter": "gov.dwp.housing_benefit.non_dep_deduction.amount[3]", - "description": null, - "label": "bracket 4" - }, - "gov.dwp.housing_benefit.non_dep_deduction.amount[3].threshold": { - "type": "parameter", - "parameter": "gov.dwp.housing_benefit.non_dep_deduction.amount[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": "week", - "values": { - "2024-04-01": 334, - "2023-04-01": 308, - "2021-04-01": 292, - "2018-06-18": 265, - "2015-01-01": 265 - }, - "economy": false, - "household": true - }, - "gov.dwp.housing_benefit.non_dep_deduction.amount[3].amount": { - "type": "parameter", - "parameter": "gov.dwp.housing_benefit.non_dep_deduction.amount[3].amount", - "description": null, - "label": "amount", - "unit": "currency-GBP", - "period": "week", - "values": { - "2024-04-01": 99.65, - "2023-04-01": 93.4, - "2022-04-01": 84.85, - "2021-04-01": 82.3, - "2018-06-18": 78.65, - "2015-01-01": 78.65 - }, - "economy": false, - "household": true - }, - "gov.dwp.housing_benefit.non_dep_deduction.amount[4]": { - "type": "parameterNode", - "parameter": "gov.dwp.housing_benefit.non_dep_deduction.amount[4]", - "description": null, - "label": "bracket 5" - }, - "gov.dwp.housing_benefit.non_dep_deduction.amount[4].threshold": { - "type": "parameter", - "parameter": "gov.dwp.housing_benefit.non_dep_deduction.amount[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": "week", - "values": { - "2024-04-01": 445, - "2023-04-01": 410, - "2021-04-01": 389, - "2018-06-18": 354, - "2015-01-01": 354 - }, - "economy": false, - "household": true - }, - "gov.dwp.housing_benefit.non_dep_deduction.amount[4].amount": { - "type": "parameter", - "parameter": "gov.dwp.housing_benefit.non_dep_deduction.amount[4].amount", - "description": null, - "label": "amount", - "unit": "currency-GBP", - "period": "week", - "values": { - "2024-04-01": 113.5, - "2023-04-01": 106.35, - "2022-04-01": 96.6, - "2021-04-01": 93.7, - "2018-06-18": 89.55, - "2015-01-01": 89.55 - }, - "economy": false, - "household": true - }, - "gov.dwp.housing_benefit.non_dep_deduction.amount[5]": { - "type": "parameterNode", - "parameter": "gov.dwp.housing_benefit.non_dep_deduction.amount[5]", - "description": null, - "label": "bracket 6" - }, - "gov.dwp.housing_benefit.non_dep_deduction.amount[5].threshold": { - "type": "parameter", - "parameter": "gov.dwp.housing_benefit.non_dep_deduction.amount[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": "week", - "values": { - "2024-04-01": 554, - "2023-04-01": 511, - "2021-04-01": 484, - "2018-06-18": 439, - "2015-01-01": 439 - }, - "economy": false, - "household": true - }, - "gov.dwp.housing_benefit.non_dep_deduction.amount[5].amount": { - "type": "parameter", - "parameter": "gov.dwp.housing_benefit.non_dep_deduction.amount[5].amount", - "description": null, - "label": "amount", - "unit": "currency-GBP", - "period": "week", - "values": { - "2024-04-01": 124.55, - "2023-04-01": 116.75, - "2022-04-01": 106.05, - "2021-04-01": 102.85, - "2018-06-18": 98.3, - "2015-01-01": 98.3 - }, - "economy": false, - "household": true - }, - "gov.dwp.winter_fuel_payment": { - "type": "parameterNode", - "parameter": "gov.dwp.winter_fuel_payment", - "description": null, - "label": "winter fuel payment", - "economy": true, - "household": true - }, - "gov.dwp.winter_fuel_payment.amount": { - "type": "parameterNode", - "parameter": "gov.dwp.winter_fuel_payment.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.dwp.winter_fuel_payment.amount.lower": { - "type": "parameter", - "parameter": "gov.dwp.winter_fuel_payment.amount.lower", - "description": null, - "label": "Winter Fuel Payment lower amount", - "unit": "currency-GBP", - "period": null, - "values": { - "2000-01-01": 200 - }, - "economy": true, - "household": true - }, - "gov.dwp.winter_fuel_payment.amount.higher": { - "type": "parameter", - "parameter": "gov.dwp.winter_fuel_payment.amount.higher", - "description": null, - "label": "Winter Fuel Payment higher amount", - "unit": "currency-GBP", - "period": null, - "values": { - "2000-01-01": 300 - }, - "economy": true, - "household": true - }, - "gov.dwp.winter_fuel_payment.eligibility": { - "type": "parameterNode", - "parameter": "gov.dwp.winter_fuel_payment.eligibility", - "description": null, - "label": "eligibility", - "economy": true, - "household": true - }, - "gov.dwp.winter_fuel_payment.eligibility.taxable_income_test": { - "type": "parameterNode", - "parameter": "gov.dwp.winter_fuel_payment.eligibility.taxable_income_test", - "description": null, - "label": "taxable income test", - "economy": true, - "household": true - }, - "gov.dwp.winter_fuel_payment.eligibility.taxable_income_test.maximum_taxable_income": { - "type": "parameter", - "parameter": "gov.dwp.winter_fuel_payment.eligibility.taxable_income_test.maximum_taxable_income", - "description": "Households in England or Wales with pensioners earning under this amount of yearly taxable income are eligible for the Winter Fuel Payment.", - "label": "Winter Fuel Payment maximum taxable income", - "unit": "currency-GBP", - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.dwp.winter_fuel_payment.eligibility.taxable_income_test.use_maximum_taxable_income": { - "type": "parameter", - "parameter": "gov.dwp.winter_fuel_payment.eligibility.taxable_income_test.use_maximum_taxable_income", - "description": "When this is true, households in England or Wales with pensioners earning under the maximum taxable income are eligible for the Winter Fuel Payment.", - "label": "WFA maximum taxable income eligibility", - "unit": "bool", - "period": null, - "values": { - "2000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.dwp.winter_fuel_payment.eligibility.higher_age_requirement": { - "type": "parameter", - "parameter": "gov.dwp.winter_fuel_payment.eligibility.higher_age_requirement", - "description": "Age requirement to qualify for the higher Winter Fuel Payment.", - "label": "Winter Fuel Payment higher amount age requitement", - "unit": "year", - "period": null, - "values": { - "2000-01-01": 80 - }, - "economy": true, - "household": true - }, - "gov.dwp.winter_fuel_payment.eligibility.state_pension_age_requirement": { - "type": "parameter", - "parameter": "gov.dwp.winter_fuel_payment.eligibility.state_pension_age_requirement", - "description": "Whether individuals must be State Pension Age to qualify for the Winter Fuel Payment.", - "label": "Winter Fuel Payment State Pension Age requirement", - "unit": "bool", - "period": null, - "values": { - "2000-01-01": true - }, - "economy": true, - "household": true - }, - "gov.dwp.winter_fuel_payment.eligibility.require_benefits": { - "type": "parameter", - "parameter": "gov.dwp.winter_fuel_payment.eligibility.require_benefits", - "description": "Whether receipt of means-tested benefits is required to qualify for the Winter Fuel Payment.", - "label": "Winter Fuel Payment means-tested benefits requirement", - "unit": "bool", - "period": null, - "values": { - "2024-01-01": true, - "2000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.treasury": { - "type": "parameterNode", - "parameter": "gov.treasury", - "description": null, - "label": "HM Treasury", - "economy": true, - "household": true - }, - "gov.treasury.cost_of_living_support": { - "type": "parameterNode", - "parameter": "gov.treasury.cost_of_living_support", - "description": null, - "label": "Cost-of-living support", - "economy": true, - "household": true - }, - "gov.treasury.cost_of_living_support.means_tested_households": { - "type": "parameterNode", - "parameter": "gov.treasury.cost_of_living_support.means_tested_households", - "description": null, - "label": "Means-tested payment", - "economy": true, - "household": true - }, - "gov.treasury.cost_of_living_support.means_tested_households.qualifying_benefits": { - "type": "parameter", - "parameter": "gov.treasury.cost_of_living_support.means_tested_households.qualifying_benefits", - "description": "Benefits which confer eligibility to the household payment to means-tested benefits.", - "label": "Qualifying benefits for support for means-tested households", - "unit": "variable", - "period": null, - "values": { - "2022-01-01": [ - "universal_credit", - "pension_credit", - "housing_benefit", - "jsa_income", - "income_support", - "esa_income", - "pension_credit" - ], - "2015-01-01": [ - "universal_credit", - "pension_credit", - "housing_benefit", - "jsa_income", - "income_support", - "esa_income", - "pension_credit" - ] - }, - "economy": false, - "household": true - }, - "gov.treasury.cost_of_living_support.means_tested_households.amount": { - "type": "parameter", - "parameter": "gov.treasury.cost_of_living_support.means_tested_households.amount", - "description": "Payment to households on means-tested benefits.", - "label": "Payment to households on means-tested benefits", - "unit": "currency-GBP", - "period": "year", - "values": { - "2023-01-01": 0, - "2022-01-01": 650, - "2015-01-01": 650 - }, - "economy": true, - "household": true - }, - "gov.treasury.cost_of_living_support.disabled": { - "type": "parameterNode", - "parameter": "gov.treasury.cost_of_living_support.disabled", - "description": null, - "label": "Disability payment", - "economy": true, - "household": true - }, - "gov.treasury.cost_of_living_support.disabled.qualifying_benefits": { - "type": "parameter", - "parameter": "gov.treasury.cost_of_living_support.disabled.qualifying_benefits", - "description": "Benefits which confer eligibility to the household payment to disability benefits.", - "label": "Qualifying benefits for support for disabled households", - "unit": "variable", - "period": null, - "values": { - "2022-01-01": ["pip", "dla", "attendance_allowance", "armed_forces_independence_payment"], - "2015-01-01": ["pip", "dla", "attendance_allowance", "armed_forces_independence_payment"] - }, - "economy": false, - "household": true - }, - "gov.treasury.cost_of_living_support.disabled.amount": { - "type": "parameter", - "parameter": "gov.treasury.cost_of_living_support.disabled.amount", - "description": "Payment to households receiving disability benefits.", - "label": "Payment to households on disability benefits", - "unit": "currency-GBP", - "period": "year", - "values": { - "2023-01-01": 0, - "2022-01-01": 150, - "2015-01-01": 150 - }, - "economy": true, - "household": true - }, - "gov.treasury.cost_of_living_support.pensioners": { - "type": "parameterNode", - "parameter": "gov.treasury.cost_of_living_support.pensioners", - "description": null, - "label": "Pensioner payment", - "economy": true, - "household": true - }, - "gov.treasury.cost_of_living_support.pensioners.qualifying_benefits": { - "type": "parameter", - "parameter": "gov.treasury.cost_of_living_support.pensioners.qualifying_benefits", - "description": "Benefits which confer eligibility to the household payment to pensioners.", - "label": "Qualifying benefits for extra pensioner support", - "unit": "variable", - "period": null, - "values": { - "2022-01-01": ["winter_fuel_allowance"], - "2015-01-01": ["winter_fuel_allowance"] - }, - "economy": false, - "household": true - }, - "gov.treasury.cost_of_living_support.pensioners.amount": { - "type": "parameter", - "parameter": "gov.treasury.cost_of_living_support.pensioners.amount", - "description": "Payment to pensioner households receiving benefits.", - "label": "Payment to pensioner households", - "unit": "currency-GBP", - "period": "year", - "values": { - "2023-01-01": 0, - "2022-01-01": 300, - "2015-01-01": 300 - }, - "economy": true, - "household": true - }, - "gov.treasury.energy_bills_rebate": { - "type": "parameterNode", - "parameter": "gov.treasury.energy_bills_rebate", - "description": null, - "label": "Energy Bills Rebate", - "economy": true, - "household": true - }, - "gov.treasury.energy_bills_rebate.energy_bills_credit": { - "type": "parameter", - "parameter": "gov.treasury.energy_bills_rebate.energy_bills_credit", - "description": "Credit on energy bills paid to households. This is modeled as a flat transfer to households.", - "label": "Energy bills credit", - "unit": "currency-GBP", - "period": "year", - "values": { - "2023-01-01": 0, - "2022-01-01": 200, - "2015-01-01": 200 - }, - "economy": true, - "household": true - }, - "gov.treasury.energy_bills_rebate.council_tax_rebate": { - "type": "parameterNode", - "parameter": "gov.treasury.energy_bills_rebate.council_tax_rebate", - "description": null, - "label": "Council Tax Rebate", - "economy": true, - "household": true - }, - "gov.treasury.energy_bills_rebate.council_tax_rebate.bands": { - "type": "parameter", - "parameter": "gov.treasury.energy_bills_rebate.council_tax_rebate.bands", - "description": "Qualifying Council Tax bands under the Energy Bills Rebate.", - "label": "Council Tax rebate qualifying bands", - "unit": "list", - "period": "year", - "values": { - "0001-01-01": ["A", "B", "C", "D"] - }, - "economy": false, - "household": true - }, - "gov.treasury.energy_bills_rebate.council_tax_rebate.amount": { - "type": "parameter", - "parameter": "gov.treasury.energy_bills_rebate.council_tax_rebate.amount", - "description": "Council Tax rebate paid to households in qualifying Council Tax bands under the Energy Bills Rebate.", - "label": "Council Tax rebate amount", - "unit": "currency-GBP", - "period": "year", - "values": { - "2023-10-01": 0, - "2022-01-01": 150, - "0001-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.social_security_scotland": { - "type": "parameterNode", - "parameter": "gov.social_security_scotland", - "description": null, - "label": "social security scotland", - "economy": true, - "household": true - }, - "gov.social_security_scotland.pawhp": { - "type": "parameterNode", - "parameter": "gov.social_security_scotland.pawhp", - "description": null, - "label": "pawhp", - "economy": true, - "household": true - }, - "gov.social_security_scotland.pawhp.amount": { - "type": "parameterNode", - "parameter": "gov.social_security_scotland.pawhp.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.social_security_scotland.pawhp.amount.base": { - "type": "parameter", - "parameter": "gov.social_security_scotland.pawhp.amount.base", - "description": "Amount paid to non-benefit-claiming pensioners for the PAWHP.", - "label": "PAWHP base payment", - "unit": "currency-GBP", - "period": null, - "values": { - "2029-01-01": 108.136748061335, - "2028-01-01": 106.016136722965, - "2027-01-01": 103.937561171481, - "2026-01-01": 101.899766607273, - "2025-01-01": 100, - "2024-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.social_security_scotland.pawhp.amount.lower": { - "type": "parameter", - "parameter": "gov.social_security_scotland.pawhp.amount.lower", - "description": null, - "label": "PAWHP lower amount", - "unit": "currency-GBP", - "period": null, - "values": { - "2029-01-01": 223.19386711213, - "2028-01-01": 218.816932779094, - "2027-01-01": 214.526760162128, - "2026-01-01": 210.320759359258, - "2025-01-01": 206.399647773332, - "2024-01-01": 200, - "2015-01-01": 200 - }, - "economy": true, - "household": true - }, - "gov.social_security_scotland.pawhp.amount.higher": { - "type": "parameter", - "parameter": "gov.social_security_scotland.pawhp.amount.higher", - "description": null, - "label": "PAWHP lower amount", - "unit": "currency-GBP", - "period": null, - "values": { - "2029-01-01": 334.790800668195, - "2028-01-01": 328.225399168641, - "2027-01-01": 321.790140243192, - "2026-01-01": 315.481139038887, - "2025-01-01": 309.599471659998, - "2024-01-01": 300, - "2015-01-01": 300 - }, - "economy": true, - "household": true - }, - "gov.social_security_scotland.pawhp.eligibility": { - "type": "parameterNode", - "parameter": "gov.social_security_scotland.pawhp.eligibility", - "description": null, - "label": "eligibility", - "economy": true, - "household": true - }, - "gov.social_security_scotland.pawhp.eligibility.higher_age_requirement": { - "type": "parameter", - "parameter": "gov.social_security_scotland.pawhp.eligibility.higher_age_requirement", - "description": "Age requirement to qualify for the higher PAWHP.", - "label": "Winter Fuel Payment higher amount age requirement", - "unit": "year", - "period": null, - "values": { - "2000-01-01": 80 - }, - "economy": true, - "household": true - }, - "gov.social_security_scotland.pawhp.eligibility.state_pension_age_requirement": { - "type": "parameter", - "parameter": "gov.social_security_scotland.pawhp.eligibility.state_pension_age_requirement", - "description": "Whether individuals must be State Pension Age to qualify for the PAWHP.", - "label": "PAWHP State Pension Age requirement", - "unit": "bool", - "period": null, - "values": { - "2000-01-01": true - }, - "economy": true, - "household": true - }, - "gov.social_security_scotland.pawhp.eligibility.require_benefits": { - "type": "parameter", - "parameter": "gov.social_security_scotland.pawhp.eligibility.require_benefits", - "description": "Whether receipt of means-tested benefits is required to qualify for the Winter Fuel Payment.", - "label": "PAWHP means-tested benefits requirement", - "unit": "bool", - "period": null, - "values": { - "2024-01-01": true, - "2000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.simulation": { - "type": "parameterNode", - "parameter": "gov.simulation", - "description": null, - "label": "Simulation", - "economy": true, - "household": true - }, - "gov.simulation.microdata_vat_coverage": { - "type": "parameter", - "parameter": "gov.simulation.microdata_vat_coverage", - "description": "LCFS (from which ETB data is derived) microdata is known to under-report household consumption. We scale up the VAT liability to hit HMRC-reported VAT receipts (following the approach of IFS' TAXBEN, though they might have better coverage anyway from access to the non-EUL dataset). For HMRC statistics see https://www.gov.uk/government/statistics/value-added-tax-vat-annual-statistics", - "label": "microdata vat coverage", - "unit": "/1", - "period": "year", - "values": { - "2010-01-01": 0.38 - }, - "economy": true, - "household": true - }, - "gov.simulation.marginal_tax_rate_delta": { - "type": "parameter", - "parameter": "gov.simulation.marginal_tax_rate_delta", - "description": "Amount by which employment_income is increased to calculate marginal tax rate.", - "label": "marginal tax rate delta", - "unit": "currency-GBP", - "period": null, - "values": { - "0000-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.simulation.marginal_tax_rate_adults": { - "type": "parameter", - "parameter": "gov.simulation.marginal_tax_rate_adults", - "description": "Number of adults to simulate a marginal tax rate for, in each household.", - "label": "Number of adults to simulate a marginal tax rate for", - "unit": "int", - "period": null, - "values": { - "0000-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.simulation.capital_gains_responses": { - "type": "parameterNode", - "parameter": "gov.simulation.capital_gains_responses", - "description": null, - "label": "capital gains responses", - "economy": true, - "household": true - }, - "gov.simulation.capital_gains_responses.elasticity": { - "type": "parameter", - "parameter": "gov.simulation.capital_gains_responses.elasticity", - "description": "Elasticity of capital gains with respect to the capital gains marginal tax rate.", - "label": "capital gains elasticity", - "unit": "/1", - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.simulation.private_school_vat": { - "type": "parameterNode", - "parameter": "gov.simulation.private_school_vat", - "description": null, - "label": "private school vat", - "economy": true, - "household": true - }, - "gov.simulation.private_school_vat.private_school_vat_basis": { - "type": "parameter", - "parameter": "gov.simulation.private_school_vat.private_school_vat_basis", - "description": "Effective percentage of private school tuition subject to VAT", - "label": "private school tuition VAT basis", - "unit": "/1", - "period": null, - "values": { - "0000-01-01": 0.75 - }, - "economy": true, - "household": true - }, - "gov.simulation.private_school_vat.private_school_factor": { - "type": "parameter", - "parameter": "gov.simulation.private_school_vat.private_school_factor", - "description": "student polulation adjustment factor, tested by Vahid", - "label": "student polulation adjustment factor", - "unit": "/1", - "period": null, - "values": { - "2010-01-01": 0.85 - }, - "economy": true, - "household": true - }, - "gov.simulation.private_school_vat.private_school_fees": { - "type": "parameter", - "parameter": "gov.simulation.private_school_vat.private_school_fees", - "description": "Mean annual private school fee", - "label": "mean annual private school fee", - "unit": "currency-GBP", - "period": null, - "values": { - "2029-01-01": 18341.8845784938, - "2028-01-01": 17982.1917904126, - "2027-01-01": 17629.6290073022, - "2026-01-01": 17283.9833931934, - "2025-01-01": 16961.7497357053, - "2024-01-01": 16435.8320556174, - "2023-01-01": 16066.3488129494, - "2022-01-01": 15200, - "2015-01-01": 15200 - }, - "economy": true, - "household": true - }, - "gov.simulation.private_school_vat.private_school_attendance_rate": { - "type": "parameterNode", - "parameter": "gov.simulation.private_school_vat.private_school_attendance_rate", - "description": "Rate at which households enroll children in private schools, by percentile.", - "label": "percentage of students in private school, by household net income percentile", - "economy": true, - "household": true - }, - "gov.simulation.private_school_vat.private_school_attendance_rate.0": { - "type": "parameter", - "parameter": "gov.simulation.private_school_vat.private_school_attendance_rate.0", - "description": null, - "label": "0", - "unit": null, - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.simulation.private_school_vat.private_school_attendance_rate.5": { - "type": "parameter", - "parameter": "gov.simulation.private_school_vat.private_school_attendance_rate.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2000-01-01": 0.025 - }, - "economy": true, - "household": true - }, - "gov.simulation.private_school_vat.private_school_attendance_rate.10": { - "type": "parameter", - "parameter": "gov.simulation.private_school_vat.private_school_attendance_rate.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2000-01-01": 0.0125 - }, - "economy": true, - "household": true - }, - "gov.simulation.private_school_vat.private_school_attendance_rate.15": { - "type": "parameter", - "parameter": "gov.simulation.private_school_vat.private_school_attendance_rate.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2000-01-01": 0.01 - }, - "economy": true, - "household": true - }, - "gov.simulation.private_school_vat.private_school_attendance_rate.20": { - "type": "parameter", - "parameter": "gov.simulation.private_school_vat.private_school_attendance_rate.20", - "description": null, - "label": "20", - "unit": null, - "period": null, - "values": { - "2000-01-01": 0.005 - }, - "economy": true, - "household": true - }, - "gov.simulation.private_school_vat.private_school_attendance_rate.25": { - "type": "parameter", - "parameter": "gov.simulation.private_school_vat.private_school_attendance_rate.25", - "description": null, - "label": "25", - "unit": null, - "period": null, - "values": { - "2000-01-01": 0.008 - }, - "economy": true, - "household": true - }, - "gov.simulation.private_school_vat.private_school_attendance_rate.30": { - "type": "parameter", - "parameter": "gov.simulation.private_school_vat.private_school_attendance_rate.30", - "description": null, - "label": "30", - "unit": null, - "period": null, - "values": { - "2000-01-01": 0.01 - }, - "economy": true, - "household": true - }, - "gov.simulation.private_school_vat.private_school_attendance_rate.35": { - "type": "parameter", - "parameter": "gov.simulation.private_school_vat.private_school_attendance_rate.35", - "description": null, - "label": "35", - "unit": null, - "period": null, - "values": { - "2000-01-01": 0.015 - }, - "economy": true, - "household": true - }, - "gov.simulation.private_school_vat.private_school_attendance_rate.40": { - "type": "parameter", - "parameter": "gov.simulation.private_school_vat.private_school_attendance_rate.40", - "description": null, - "label": "40", - "unit": null, - "period": null, - "values": { - "2000-01-01": 0.01 - }, - "economy": true, - "household": true - }, - "gov.simulation.private_school_vat.private_school_attendance_rate.45": { - "type": "parameter", - "parameter": "gov.simulation.private_school_vat.private_school_attendance_rate.45", - "description": null, - "label": "45", - "unit": null, - "period": null, - "values": { - "2000-01-01": 0.0175 - }, - "economy": true, - "household": true - }, - "gov.simulation.private_school_vat.private_school_attendance_rate.50": { - "type": "parameter", - "parameter": "gov.simulation.private_school_vat.private_school_attendance_rate.50", - "description": null, - "label": "50", - "unit": null, - "period": null, - "values": { - "2000-01-01": 0.025 - }, - "economy": true, - "household": true - }, - "gov.simulation.private_school_vat.private_school_attendance_rate.55": { - "type": "parameter", - "parameter": "gov.simulation.private_school_vat.private_school_attendance_rate.55", - "description": null, - "label": "55", - "unit": null, - "period": null, - "values": { - "2000-01-01": 0.0175 - }, - "economy": true, - "household": true - }, - "gov.simulation.private_school_vat.private_school_attendance_rate.60": { - "type": "parameter", - "parameter": "gov.simulation.private_school_vat.private_school_attendance_rate.60", - "description": null, - "label": "60", - "unit": null, - "period": null, - "values": { - "2000-01-01": 0.0175 - }, - "economy": true, - "household": true - }, - "gov.simulation.private_school_vat.private_school_attendance_rate.65": { - "type": "parameter", - "parameter": "gov.simulation.private_school_vat.private_school_attendance_rate.65", - "description": null, - "label": "65", - "unit": null, - "period": null, - "values": { - "2000-01-01": 0.025 - }, - "economy": true, - "household": true - }, - "gov.simulation.private_school_vat.private_school_attendance_rate.70": { - "type": "parameter", - "parameter": "gov.simulation.private_school_vat.private_school_attendance_rate.70", - "description": null, - "label": "70", - "unit": null, - "period": null, - "values": { - "2000-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.simulation.private_school_vat.private_school_attendance_rate.75": { - "type": "parameter", - "parameter": "gov.simulation.private_school_vat.private_school_attendance_rate.75", - "description": null, - "label": "75", - "unit": null, - "period": null, - "values": { - "2000-01-01": 0.025 - }, - "economy": true, - "household": true - }, - "gov.simulation.private_school_vat.private_school_attendance_rate.80": { - "type": "parameter", - "parameter": "gov.simulation.private_school_vat.private_school_attendance_rate.80", - "description": null, - "label": "80", - "unit": null, - "period": null, - "values": { - "2000-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.simulation.private_school_vat.private_school_attendance_rate.85": { - "type": "parameter", - "parameter": "gov.simulation.private_school_vat.private_school_attendance_rate.85", - "description": null, - "label": "85", - "unit": null, - "period": null, - "values": { - "2000-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.simulation.private_school_vat.private_school_attendance_rate.90": { - "type": "parameter", - "parameter": "gov.simulation.private_school_vat.private_school_attendance_rate.90", - "description": null, - "label": "90", - "unit": null, - "period": null, - "values": { - "2000-01-01": 0.0875 - }, - "economy": true, - "household": true - }, - "gov.simulation.private_school_vat.private_school_attendance_rate.95": { - "type": "parameter", - "parameter": "gov.simulation.private_school_vat.private_school_attendance_rate.95", - "description": null, - "label": "95", - "unit": null, - "period": null, - "values": { - "2000-01-01": 0.13 - }, - "economy": true, - "household": true - }, - "gov.simulation.private_school_vat.private_school_attendance_rate.100": { - "type": "parameter", - "parameter": "gov.simulation.private_school_vat.private_school_attendance_rate.100", - "description": null, - "label": "100", - "unit": null, - "period": null, - "values": { - "2000-01-01": 0.47 - }, - "economy": true, - "household": true - }, - "gov.simulation.labor_supply_responses": { - "type": "parameterNode", - "parameter": "gov.simulation.labor_supply_responses", - "description": null, - "label": "labor supply responses", - "economy": true, - "household": true - }, - "gov.simulation.labor_supply_responses.obr_elasticities": { - "type": "parameter", - "parameter": "gov.simulation.labor_supply_responses.obr_elasticities", - "description": "Use the OBR's progression elasticities for the labor supply responses.", - "label": "obr elasticities", - "unit": "currency-GBP", - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.simulation.labor_supply_responses.income_elasticity": { - "type": "parameter", - "parameter": "gov.simulation.labor_supply_responses.income_elasticity", - "description": "Percent change in labor supply given a 1% change in disposable income. This applies only to employment income.", - "label": "Income elasticity of labor supply", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.simulation.labor_supply_responses.substitution_elasticity": { - "type": "parameter", - "parameter": "gov.simulation.labor_supply_responses.substitution_elasticity", - "description": "Percent change in labor supply given a 1% change in the effective marginal wage. This applies only to employment income.", - "label": "Substitution elasticity of labor supply", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.simulation.labor_supply_responses.bounds": { - "type": "parameterNode", - "parameter": "gov.simulation.labor_supply_responses.bounds", - "description": null, - "label": "Bounds", - "economy": true, - "household": true - }, - "gov.simulation.labor_supply_responses.bounds.income_change": { - "type": "parameter", - "parameter": "gov.simulation.labor_supply_responses.bounds.income_change", - "description": "Net income changes larger than this will be capped at this value.", - "label": "Income change LSR bound", - "unit": "/1", - "period": null, - "values": { - "0000-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.simulation.labor_supply_responses.bounds.effective_wage_rate_change": { - "type": "parameter", - "parameter": "gov.simulation.labor_supply_responses.bounds.effective_wage_rate_change", - "description": "Effective wage rate changes larger than this will be capped at this value.", - "label": "Effective wage rate change LSR bound", - "unit": "/1", - "period": null, - "values": { - "0000-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.wra": { - "type": "parameterNode", - "parameter": "gov.wra", - "description": null, - "label": "WRA", - "economy": true, - "household": true - }, - "gov.wra.land_transaction_tax": { - "type": "parameterNode", - "parameter": "gov.wra.land_transaction_tax", - "description": null, - "label": "Land Transaction Tax", - "economy": true, - "household": true - }, - "gov.wra.land_transaction_tax.residential": { - "type": "parameterNode", - "parameter": "gov.wra.land_transaction_tax.residential", - "description": null, - "label": "Residential", - "economy": true, - "household": true - }, - "gov.wra.land_transaction_tax.residential.primary": { - "type": "parameterNode", - "parameter": "gov.wra.land_transaction_tax.residential.primary", - "description": "Residential property progressive tax scale for primary residences", - "label": "LTT on primary residences" - }, - "gov.wra.land_transaction_tax.residential.primary[0]": { - "type": "parameterNode", - "parameter": "gov.wra.land_transaction_tax.residential.primary[0]", - "description": null, - "label": "bracket 1" - }, - "gov.wra.land_transaction_tax.residential.primary[0].rate": { - "type": "parameter", - "parameter": "gov.wra.land_transaction_tax.residential.primary[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-04-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.wra.land_transaction_tax.residential.primary[0].threshold": { - "type": "parameter", - "parameter": "gov.wra.land_transaction_tax.residential.primary[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2018-04-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.wra.land_transaction_tax.residential.primary[1]": { - "type": "parameterNode", - "parameter": "gov.wra.land_transaction_tax.residential.primary[1]", - "description": null, - "label": "bracket 2" - }, - "gov.wra.land_transaction_tax.residential.primary[1].rate": { - "type": "parameter", - "parameter": "gov.wra.land_transaction_tax.residential.primary[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-07-01": 0.035, - "2020-07-27": null, - "2018-04-01": 0.035, - "2015-01-01": 0.035 - }, - "economy": false, - "household": true - }, - "gov.wra.land_transaction_tax.residential.primary[1].threshold": { - "type": "parameter", - "parameter": "gov.wra.land_transaction_tax.residential.primary[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2021-07-01": 180000, - "2020-07-27": null, - "2018-04-01": 180000, - "2015-01-01": 180000 - }, - "economy": false, - "household": true - }, - "gov.wra.land_transaction_tax.residential.primary[2]": { - "type": "parameterNode", - "parameter": "gov.wra.land_transaction_tax.residential.primary[2]", - "description": null, - "label": "bracket 3" - }, - "gov.wra.land_transaction_tax.residential.primary[2].rate": { - "type": "parameter", - "parameter": "gov.wra.land_transaction_tax.residential.primary[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-04-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": false, - "household": true - }, - "gov.wra.land_transaction_tax.residential.primary[2].threshold": { - "type": "parameter", - "parameter": "gov.wra.land_transaction_tax.residential.primary[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2018-04-01": 250000, - "2015-01-01": 250000 - }, - "economy": false, - "household": true - }, - "gov.wra.land_transaction_tax.residential.primary[3]": { - "type": "parameterNode", - "parameter": "gov.wra.land_transaction_tax.residential.primary[3]", - "description": null, - "label": "bracket 4" - }, - "gov.wra.land_transaction_tax.residential.primary[3].rate": { - "type": "parameter", - "parameter": "gov.wra.land_transaction_tax.residential.primary[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-04-01": 0.075, - "2015-01-01": 0.075 - }, - "economy": false, - "household": true - }, - "gov.wra.land_transaction_tax.residential.primary[3].threshold": { - "type": "parameter", - "parameter": "gov.wra.land_transaction_tax.residential.primary[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2018-04-01": 400000, - "2015-01-01": 400000 - }, - "economy": false, - "household": true - }, - "gov.wra.land_transaction_tax.residential.primary[4]": { - "type": "parameterNode", - "parameter": "gov.wra.land_transaction_tax.residential.primary[4]", - "description": null, - "label": "bracket 5" - }, - "gov.wra.land_transaction_tax.residential.primary[4].rate": { - "type": "parameter", - "parameter": "gov.wra.land_transaction_tax.residential.primary[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-04-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": false, - "household": true - }, - "gov.wra.land_transaction_tax.residential.primary[4].threshold": { - "type": "parameter", - "parameter": "gov.wra.land_transaction_tax.residential.primary[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2018-04-01": 750000, - "2015-01-01": 750000 - }, - "economy": false, - "household": true - }, - "gov.wra.land_transaction_tax.residential.primary[5]": { - "type": "parameterNode", - "parameter": "gov.wra.land_transaction_tax.residential.primary[5]", - "description": null, - "label": "bracket 6" - }, - "gov.wra.land_transaction_tax.residential.primary[5].rate": { - "type": "parameter", - "parameter": "gov.wra.land_transaction_tax.residential.primary[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-04-01": 0.12, - "2015-01-01": 0.12 - }, - "economy": false, - "household": true - }, - "gov.wra.land_transaction_tax.residential.primary[5].threshold": { - "type": "parameter", - "parameter": "gov.wra.land_transaction_tax.residential.primary[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2018-04-01": 1500000, - "2015-01-01": 1500000 - }, - "economy": false, - "household": true - }, - "gov.wra.land_transaction_tax.residential.higher_rate": { - "type": "parameterNode", - "parameter": "gov.wra.land_transaction_tax.residential.higher_rate", - "description": "Higher residential property progressive tax scale for non-primary residences", - "label": "LTT on secondary residences" - }, - "gov.wra.land_transaction_tax.residential.higher_rate[0]": { - "type": "parameterNode", - "parameter": "gov.wra.land_transaction_tax.residential.higher_rate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.wra.land_transaction_tax.residential.higher_rate[0].rate": { - "type": "parameter", - "parameter": "gov.wra.land_transaction_tax.residential.higher_rate[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-12-22": 0.04, - "2018-04-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": false, - "household": true - }, - "gov.wra.land_transaction_tax.residential.higher_rate[0].threshold": { - "type": "parameter", - "parameter": "gov.wra.land_transaction_tax.residential.higher_rate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2018-04-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.wra.land_transaction_tax.residential.higher_rate[1]": { - "type": "parameterNode", - "parameter": "gov.wra.land_transaction_tax.residential.higher_rate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.wra.land_transaction_tax.residential.higher_rate[1].rate": { - "type": "parameter", - "parameter": "gov.wra.land_transaction_tax.residential.higher_rate[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-12-22": 0.075, - "2018-04-01": 0.065, - "2015-01-01": 0.065 - }, - "economy": false, - "household": true - }, - "gov.wra.land_transaction_tax.residential.higher_rate[1].threshold": { - "type": "parameter", - "parameter": "gov.wra.land_transaction_tax.residential.higher_rate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2018-04-01": 180000, - "2015-01-01": 180000 - }, - "economy": false, - "household": true - }, - "gov.wra.land_transaction_tax.residential.higher_rate[2]": { - "type": "parameterNode", - "parameter": "gov.wra.land_transaction_tax.residential.higher_rate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.wra.land_transaction_tax.residential.higher_rate[2].rate": { - "type": "parameter", - "parameter": "gov.wra.land_transaction_tax.residential.higher_rate[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-12-22": 0.09, - "2018-04-01": 0.08, - "2015-01-01": 0.08 - }, - "economy": false, - "household": true - }, - "gov.wra.land_transaction_tax.residential.higher_rate[2].threshold": { - "type": "parameter", - "parameter": "gov.wra.land_transaction_tax.residential.higher_rate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2018-04-01": 250000, - "2015-01-01": 250000 - }, - "economy": false, - "household": true - }, - "gov.wra.land_transaction_tax.residential.higher_rate[3]": { - "type": "parameterNode", - "parameter": "gov.wra.land_transaction_tax.residential.higher_rate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.wra.land_transaction_tax.residential.higher_rate[3].rate": { - "type": "parameter", - "parameter": "gov.wra.land_transaction_tax.residential.higher_rate[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-12-22": 0.115, - "2018-04-01": 0.105, - "2015-01-01": 0.105 - }, - "economy": false, - "household": true - }, - "gov.wra.land_transaction_tax.residential.higher_rate[3].threshold": { - "type": "parameter", - "parameter": "gov.wra.land_transaction_tax.residential.higher_rate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2018-04-01": 400000, - "2015-01-01": 400000 - }, - "economy": false, - "household": true - }, - "gov.wra.land_transaction_tax.residential.higher_rate[4]": { - "type": "parameterNode", - "parameter": "gov.wra.land_transaction_tax.residential.higher_rate[4]", - "description": null, - "label": "bracket 5" - }, - "gov.wra.land_transaction_tax.residential.higher_rate[4].rate": { - "type": "parameter", - "parameter": "gov.wra.land_transaction_tax.residential.higher_rate[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-12-22": 0.14, - "2018-04-01": 0.13, - "2015-01-01": 0.13 - }, - "economy": false, - "household": true - }, - "gov.wra.land_transaction_tax.residential.higher_rate[4].threshold": { - "type": "parameter", - "parameter": "gov.wra.land_transaction_tax.residential.higher_rate[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2018-04-01": 750000, - "2015-01-01": 750000 - }, - "economy": false, - "household": true - }, - "gov.wra.land_transaction_tax.residential.higher_rate[5]": { - "type": "parameterNode", - "parameter": "gov.wra.land_transaction_tax.residential.higher_rate[5]", - "description": null, - "label": "bracket 6" - }, - "gov.wra.land_transaction_tax.residential.higher_rate[5].rate": { - "type": "parameter", - "parameter": "gov.wra.land_transaction_tax.residential.higher_rate[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-12-22": 0.16, - "2018-04-01": 0.15, - "2015-01-01": 0.15 - }, - "economy": false, - "household": true - }, - "gov.wra.land_transaction_tax.residential.higher_rate[5].threshold": { - "type": "parameter", - "parameter": "gov.wra.land_transaction_tax.residential.higher_rate[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2018-04-01": 1500000, - "2015-01-01": 1500000 - }, - "economy": false, - "household": true - }, - "gov.wra.land_transaction_tax.non_residential": { - "type": "parameterNode", - "parameter": "gov.wra.land_transaction_tax.non_residential", - "description": "Non-residential property progressive tax scale", - "label": "LTT on non-residential property" - }, - "gov.wra.land_transaction_tax.non_residential[0]": { - "type": "parameterNode", - "parameter": "gov.wra.land_transaction_tax.non_residential[0]", - "description": null, - "label": "bracket 1" - }, - "gov.wra.land_transaction_tax.non_residential[0].rate": { - "type": "parameter", - "parameter": "gov.wra.land_transaction_tax.non_residential[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-04-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.wra.land_transaction_tax.non_residential[0].threshold": { - "type": "parameter", - "parameter": "gov.wra.land_transaction_tax.non_residential[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2018-04-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.wra.land_transaction_tax.non_residential[1]": { - "type": "parameterNode", - "parameter": "gov.wra.land_transaction_tax.non_residential[1]", - "description": null, - "label": "bracket 2" - }, - "gov.wra.land_transaction_tax.non_residential[1].rate": { - "type": "parameter", - "parameter": "gov.wra.land_transaction_tax.non_residential[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-04-01": 0.01, - "2015-01-01": 0.01 - }, - "economy": false, - "household": true - }, - "gov.wra.land_transaction_tax.non_residential[1].threshold": { - "type": "parameter", - "parameter": "gov.wra.land_transaction_tax.non_residential[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2020-12-22": 225000, - "2018-04-01": 150000, - "2015-01-01": 150000 - }, - "economy": false, - "household": true - }, - "gov.wra.land_transaction_tax.non_residential[2]": { - "type": "parameterNode", - "parameter": "gov.wra.land_transaction_tax.non_residential[2]", - "description": null, - "label": "bracket 3" - }, - "gov.wra.land_transaction_tax.non_residential[2].rate": { - "type": "parameter", - "parameter": "gov.wra.land_transaction_tax.non_residential[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-04-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": false, - "household": true - }, - "gov.wra.land_transaction_tax.non_residential[2].threshold": { - "type": "parameter", - "parameter": "gov.wra.land_transaction_tax.non_residential[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2018-04-01": 250000, - "2015-01-01": 250000 - }, - "economy": false, - "household": true - }, - "gov.wra.land_transaction_tax.non_residential[3]": { - "type": "parameterNode", - "parameter": "gov.wra.land_transaction_tax.non_residential[3]", - "description": null, - "label": "bracket 4" - }, - "gov.wra.land_transaction_tax.non_residential[3].rate": { - "type": "parameter", - "parameter": "gov.wra.land_transaction_tax.non_residential[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-04-01": 0.06, - "2015-01-01": 0.06 - }, - "economy": false, - "household": true - }, - "gov.wra.land_transaction_tax.non_residential[3].threshold": { - "type": "parameter", - "parameter": "gov.wra.land_transaction_tax.non_residential[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2018-04-01": 1000000, - "2015-01-01": 1000000 - }, - "economy": false, - "household": true - }, - "gov.wra.land_transaction_tax.rent": { - "type": "parameterNode", - "parameter": "gov.wra.land_transaction_tax.rent", - "description": "Progressive tax scale for cumulative rent", - "label": "LTT on cumulative rent" - }, - "gov.wra.land_transaction_tax.rent[0]": { - "type": "parameterNode", - "parameter": "gov.wra.land_transaction_tax.rent[0]", - "description": null, - "label": "bracket 1" - }, - "gov.wra.land_transaction_tax.rent[0].rate": { - "type": "parameter", - "parameter": "gov.wra.land_transaction_tax.rent[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-04-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.wra.land_transaction_tax.rent[0].threshold": { - "type": "parameter", - "parameter": "gov.wra.land_transaction_tax.rent[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2018-04-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.wra.land_transaction_tax.rent[1]": { - "type": "parameterNode", - "parameter": "gov.wra.land_transaction_tax.rent[1]", - "description": null, - "label": "bracket 2" - }, - "gov.wra.land_transaction_tax.rent[1].rate": { - "type": "parameter", - "parameter": "gov.wra.land_transaction_tax.rent[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-04-01": 0.01, - "2015-01-01": 0.01 - }, - "economy": false, - "household": true - }, - "gov.wra.land_transaction_tax.rent[1].threshold": { - "type": "parameter", - "parameter": "gov.wra.land_transaction_tax.rent[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2020-12-22": 225000, - "2018-04-01": 150000, - "2015-01-01": 150000 - }, - "economy": false, - "household": true - }, - "gov.wra.land_transaction_tax.rent[2]": { - "type": "parameterNode", - "parameter": "gov.wra.land_transaction_tax.rent[2]", - "description": null, - "label": "bracket 3" - }, - "gov.wra.land_transaction_tax.rent[2].rate": { - "type": "parameter", - "parameter": "gov.wra.land_transaction_tax.rent[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-04-01": 0.02, - "2015-01-01": 0.02 - }, - "economy": false, - "household": true - }, - "gov.wra.land_transaction_tax.rent[2].threshold": { - "type": "parameter", - "parameter": "gov.wra.land_transaction_tax.rent[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-GBP", - "period": null, - "values": { - "2018-04-01": 2000000, - "2015-01-01": 2000000 - }, - "economy": false, - "household": true - }, - "gov.abolitions": { - "type": "parameterNode", - "parameter": "gov.abolitions", - "description": null, - "label": "Abolitions", - "economy": true, - "household": true - }, - "gov.abolitions.consumer_incident_tax_revenue_change": { - "type": "parameter", - "parameter": "gov.abolitions.consumer_incident_tax_revenue_change", - "description": "Set all values of consumer-incident tax revenue change to zero.", - "label": "Abolish consumer-incident tax revenue change", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.corporate_incident_tax_revenue_change": { - "type": "parameter", - "parameter": "gov.abolitions.corporate_incident_tax_revenue_change", - "description": "Set all values of corporate-incident tax revenue change to zero.", - "label": "Abolish corporate-incident tax revenue change", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.education_budget_change": { - "type": "parameter", - "parameter": "gov.abolitions.education_budget_change", - "description": "Set all values of education budget change to zero.", - "label": "Abolish education budget change", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.high_income_incident_tax_change": { - "type": "parameter", - "parameter": "gov.abolitions.high_income_incident_tax_change", - "description": "Set all values of high income-incident tax revenue change to zero.", - "label": "Abolish high income-incident tax revenue change", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nhs_budget_change": { - "type": "parameter", - "parameter": "gov.abolitions.nhs_budget_change", - "description": "Set all values of NHS budget change to zero.", - "label": "Abolish NHS budget change", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pre_budget_change_household_net_income": { - "type": "parameter", - "parameter": "gov.abolitions.pre_budget_change_household_net_income", - "description": "Set all values of household net income to zero.", - "label": "Abolish household net income", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pre_budget_change_ons_household_income_decile": { - "type": "parameter", - "parameter": "gov.abolitions.pre_budget_change_ons_household_income_decile", - "description": "Set all values of pre-budget change household income decile (ONS matched) to zero.", - "label": "Abolish pre-budget change household income decile (ONS matched)", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.other_public_spending_budget_change": { - "type": "parameter", - "parameter": "gov.abolitions.other_public_spending_budget_change", - "description": "Set all values of non- budget change to zero.", - "label": "Abolish non- budget change", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pre_budget_change_household_tax": { - "type": "parameter", - "parameter": "gov.abolitions.pre_budget_change_household_tax", - "description": "Set all values of household taxes to zero.", - "label": "Abolish household taxes", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pre_budget_change_household_benefits": { - "type": "parameter", - "parameter": "gov.abolitions.pre_budget_change_household_benefits", - "description": "Set all values of household benefits to zero.", - "label": "Abolish household benefits", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.employer_ni_response_consumer_incidence": { - "type": "parameter", - "parameter": "gov.abolitions.employer_ni_response_consumer_incidence", - "description": "Set all values of price response to employer NI reform to zero.", - "label": "Abolish price response to employer NI reform", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.employer_ni_fixed_employer_cost_change": { - "type": "parameter", - "parameter": "gov.abolitions.employer_ni_fixed_employer_cost_change", - "description": "Set all values of employer NI reform incidence to zero.", - "label": "Abolish employer NI reform incidence", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.employer_cost": { - "type": "parameter", - "parameter": "gov.abolitions.employer_cost", - "description": "Set all values of employer cost to zero.", - "label": "Abolish employer cost", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.adjusted_employer_cost": { - "type": "parameter", - "parameter": "gov.abolitions.adjusted_employer_cost", - "description": "Set all values of employer cost to zero.", - "label": "Abolish employer cost", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.baseline_employer_cost": { - "type": "parameter", - "parameter": "gov.abolitions.baseline_employer_cost", - "description": "Set all values of baseline employer cost to zero.", - "label": "Abolish baseline employer cost", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.employer_ni_response_capital_incidence": { - "type": "parameter", - "parameter": "gov.abolitions.employer_ni_response_capital_incidence", - "description": "Set all values of capital response to employer NI reform to zero.", - "label": "Abolish capital response to employer NI reform", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.attends_private_school": { - "type": "parameter", - "parameter": "gov.abolitions.attends_private_school", - "description": "Set all values of attends private school to zero.", - "label": "Abolish attends private school", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.private_school_vat": { - "type": "parameter", - "parameter": "gov.abolitions.private_school_vat", - "description": "Set all values of private school VAT to zero.", - "label": "Abolish private school VAT", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.non_primary_residence_wealth_tax": { - "type": "parameter", - "parameter": "gov.abolitions.non_primary_residence_wealth_tax", - "description": "Set all values of Wealth tax (non-primary residence) to zero.", - "label": "Abolish Wealth tax (non-primary residence)", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wealth_tax": { - "type": "parameter", - "parameter": "gov.abolitions.wealth_tax", - "description": "Set all values of Wealth tax to zero.", - "label": "Abolish Wealth tax", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.carbon_tax": { - "type": "parameter", - "parameter": "gov.abolitions.carbon_tax", - "description": "Set all values of Carbon tax to zero.", - "label": "Abolish Carbon tax", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.LVT": { - "type": "parameter", - "parameter": "gov.abolitions.LVT", - "description": "Set all values of Land value tax to zero.", - "label": "Abolish Land value tax", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.bi_individual_phaseout": { - "type": "parameter", - "parameter": "gov.abolitions.bi_individual_phaseout", - "description": "Set all values of Basic income phase-out (individual) to zero.", - "label": "Abolish Basic income phase-out (individual)", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.bi_phaseout": { - "type": "parameter", - "parameter": "gov.abolitions.bi_phaseout", - "description": "Set all values of Basic income phase-out to zero.", - "label": "Abolish Basic income phase-out", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.bi_household_phaseout": { - "type": "parameter", - "parameter": "gov.abolitions.bi_household_phaseout", - "description": "Set all values of Basic income phase-out (household) to zero.", - "label": "Abolish Basic income phase-out (household)", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.bi_maximum": { - "type": "parameter", - "parameter": "gov.abolitions.bi_maximum", - "description": "Set all values of Basic income before phase-outs to zero.", - "label": "Abolish Basic income before phase-outs", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.basic_income": { - "type": "parameter", - "parameter": "gov.abolitions.basic_income", - "description": "Set all values of Basic income to zero.", - "label": "Abolish Basic income", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.cliff_evaluated": { - "type": "parameter", - "parameter": "gov.abolitions.cliff_evaluated", - "description": "Set all values of cliff evaluated to zero.", - "label": "Abolish cliff evaluated", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.marginal_tax_rate": { - "type": "parameter", - "parameter": "gov.abolitions.marginal_tax_rate", - "description": "Set all values of Marginal tax rate to zero.", - "label": "Abolish Marginal tax rate", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_on_cliff": { - "type": "parameter", - "parameter": "gov.abolitions.is_on_cliff", - "description": "Set all values of is on a tax-benefit cliff to zero.", - "label": "Abolish is on a tax-benefit cliff", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.cliff_gap": { - "type": "parameter", - "parameter": "gov.abolitions.cliff_gap", - "description": "Set all values of cliff gap to zero.", - "label": "Abolish cliff gap", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_carer_for_benefits": { - "type": "parameter", - "parameter": "gov.abolitions.is_carer_for_benefits", - "description": "Set all values of Whether this person is a carer for benefits purposes to zero.", - "label": "Abolish Whether this person is a carer for benefits purposes", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.in_social_housing": { - "type": "parameter", - "parameter": "gov.abolitions.in_social_housing", - "description": "Set all values of Whether this person lives in social housing to zero.", - "label": "Abolish Whether this person lives in social housing", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.age_18_64": { - "type": "parameter", - "parameter": "gov.abolitions.age_18_64", - "description": "Set all values of Whether the person is age 18 to 64 to zero.", - "label": "Abolish Whether the person is age 18 to 64", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_higher_earner": { - "type": "parameter", - "parameter": "gov.abolitions.is_higher_earner", - "description": "Set all values of Whether this person is the highest earner in a family to zero.", - "label": "Abolish Whether this person is the highest earner in a family", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_adult": { - "type": "parameter", - "parameter": "gov.abolitions.is_adult", - "description": "Set all values of Whether this person is an adult to zero.", - "label": "Abolish Whether this person is an adult", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.household_owns_tv": { - "type": "parameter", - "parameter": "gov.abolitions.household_owns_tv", - "description": "Set all values of Owns a TV to zero.", - "label": "Abolish Owns a TV", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.num_enhanced_disabled_adults": { - "type": "parameter", - "parameter": "gov.abolitions.num_enhanced_disabled_adults", - "description": "Set all values of Number of enhanced disabled adults to zero.", - "label": "Abolish Number of enhanced disabled adults", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.num_children": { - "type": "parameter", - "parameter": "gov.abolitions.num_children", - "description": "Set all values of The number of children in the family to zero.", - "label": "Abolish The number of children in the family", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_household_head": { - "type": "parameter", - "parameter": "gov.abolitions.is_household_head", - "description": "Set all values of Whether this person is the head-of-household to zero.", - "label": "Abolish Whether this person is the head-of-household", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.eldest_child_age": { - "type": "parameter", - "parameter": "gov.abolitions.eldest_child_age", - "description": "Set all values of Eldest adult age to zero.", - "label": "Abolish Eldest adult age", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_young_child": { - "type": "parameter", - "parameter": "gov.abolitions.is_young_child", - "description": "Set all values of Whether the person is under 14 to zero.", - "label": "Abolish Whether the person is under 14", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_disabled_for_benefits": { - "type": "parameter", - "parameter": "gov.abolitions.is_disabled_for_benefits", - "description": "Set all values of Has a disability to zero.", - "label": "Abolish Has a disability", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_older_child": { - "type": "parameter", - "parameter": "gov.abolitions.is_older_child", - "description": "Set all values of Whether the person is over 14 but under 18 to zero.", - "label": "Abolish Whether the person is over 14 but under 18", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.age_over_64": { - "type": "parameter", - "parameter": "gov.abolitions.age_over_64", - "description": "Set all values of Whether the person is over age 64 to zero.", - "label": "Abolish Whether the person is over age 64", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_enhanced_disabled_for_benefits": { - "type": "parameter", - "parameter": "gov.abolitions.is_enhanced_disabled_for_benefits", - "description": "Set all values of Whether meets the middle disability benefit entitlement to zero.", - "label": "Abolish Whether meets the middle disability benefit entitlement", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.benunit_is_renting": { - "type": "parameter", - "parameter": "gov.abolitions.benunit_is_renting", - "description": "Set all values of Whether this family is renting to zero.", - "label": "Abolish Whether this family is renting", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.num_enhanced_disabled_children": { - "type": "parameter", - "parameter": "gov.abolitions.num_enhanced_disabled_children", - "description": "Set all values of Number of enhanced disabled children to zero.", - "label": "Abolish Number of enhanced disabled children", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.disability_premium": { - "type": "parameter", - "parameter": "gov.abolitions.disability_premium", - "description": "Set all values of Disability premium to zero.", - "label": "Abolish Disability premium", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.child_index": { - "type": "parameter", - "parameter": "gov.abolitions.child_index", - "description": "Set all values of Child reference number to zero.", - "label": "Abolish Child reference number", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_eldest_child": { - "type": "parameter", - "parameter": "gov.abolitions.is_eldest_child", - "description": "Set all values of Is the eldest child to zero.", - "label": "Abolish Is the eldest child", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.carer_premium": { - "type": "parameter", - "parameter": "gov.abolitions.carer_premium", - "description": "Set all values of Carer premium to zero.", - "label": "Abolish Carer premium", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.num_severely_disabled_adults": { - "type": "parameter", - "parameter": "gov.abolitions.num_severely_disabled_adults", - "description": "Set all values of Number of severely disabled adults to zero.", - "label": "Abolish Number of severely disabled adults", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_male": { - "type": "parameter", - "parameter": "gov.abolitions.is_male", - "description": "Set all values of Whether the person is male to zero.", - "label": "Abolish Whether the person is male", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.enhanced_disability_premium": { - "type": "parameter", - "parameter": "gov.abolitions.enhanced_disability_premium", - "description": "Set all values of Enhanced disability premium to zero.", - "label": "Abolish Enhanced disability premium", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.benunit_has_carer": { - "type": "parameter", - "parameter": "gov.abolitions.benunit_has_carer", - "description": "Set all values of Benefit unit has a carer to zero.", - "label": "Abolish Benefit unit has a carer", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.severe_disability_premium": { - "type": "parameter", - "parameter": "gov.abolitions.severe_disability_premium", - "description": "Set all values of Severe disability premium to zero.", - "label": "Abolish Severe disability premium", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_married": { - "type": "parameter", - "parameter": "gov.abolitions.is_married", - "description": "Set all values of Married to zero.", - "label": "Abolish Married", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.num_carers": { - "type": "parameter", - "parameter": "gov.abolitions.num_carers", - "description": "Set all values of Number of carers in the family to zero.", - "label": "Abolish Number of carers in the family", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.num_disabled_children": { - "type": "parameter", - "parameter": "gov.abolitions.num_disabled_children", - "description": "Set all values of Number of disabled children to zero.", - "label": "Abolish Number of disabled children", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.person_weight": { - "type": "parameter", - "parameter": "gov.abolitions.person_weight", - "description": "Set all values of Weight to zero.", - "label": "Abolish Weight", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.num_adults": { - "type": "parameter", - "parameter": "gov.abolitions.num_adults", - "description": "Set all values of The number of adults in the family to zero.", - "label": "Abolish The number of adults in the family", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.over_16": { - "type": "parameter", - "parameter": "gov.abolitions.over_16", - "description": "Set all values of Whether the person is over 16 to zero.", - "label": "Abolish Whether the person is over 16", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_benunit_eldest_child": { - "type": "parameter", - "parameter": "gov.abolitions.is_benunit_eldest_child", - "description": "Set all values of Eldest child in the benefit unit to zero.", - "label": "Abolish Eldest child in the benefit unit", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.household_count_people": { - "type": "parameter", - "parameter": "gov.abolitions.household_count_people", - "description": "Set all values of Number of people to zero.", - "label": "Abolish Number of people", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_severely_disabled_for_benefits": { - "type": "parameter", - "parameter": "gov.abolitions.is_severely_disabled_for_benefits", - "description": "Set all values of Has a severe disability to zero.", - "label": "Abolish Has a severe disability", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.youngest_adult_age": { - "type": "parameter", - "parameter": "gov.abolitions.youngest_adult_age", - "description": "Set all values of Eldest adult age to zero.", - "label": "Abolish Eldest adult age", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.household_equivalisation_ahc": { - "type": "parameter", - "parameter": "gov.abolitions.household_equivalisation_ahc", - "description": "Set all values of Equivalisation factor to account for household composition, after housing costs to zero.", - "label": "Abolish Equivalisation factor to account for household composition, after housing costs", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.age_under_18": { - "type": "parameter", - "parameter": "gov.abolitions.age_under_18", - "description": "Set all values of Whether the person is under age 18 to zero.", - "label": "Abolish Whether the person is under age 18", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_benunit_head": { - "type": "parameter", - "parameter": "gov.abolitions.is_benunit_head", - "description": "Set all values of Whether this person is the head-of-family to zero.", - "label": "Abolish Whether this person is the head-of-family", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.household_num_benunits": { - "type": "parameter", - "parameter": "gov.abolitions.household_num_benunits", - "description": "Set all values of Number of benefit units to zero.", - "label": "Abolish Number of benefit units", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.count_children_and_qyp": { - "type": "parameter", - "parameter": "gov.abolitions.count_children_and_qyp", - "description": "Set all values of Children and qualifying young people to zero.", - "label": "Abolish Children and qualifying young people", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.birth_year": { - "type": "parameter", - "parameter": "gov.abolitions.birth_year", - "description": "Set all values of The birth year of the person to zero.", - "label": "Abolish The birth year of the person", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.eldest_adult_age": { - "type": "parameter", - "parameter": "gov.abolitions.eldest_adult_age", - "description": "Set all values of Eldest adult age to zero.", - "label": "Abolish Eldest adult age", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.youngest_child_age": { - "type": "parameter", - "parameter": "gov.abolitions.youngest_child_age", - "description": "Set all values of Eldest adult age to zero.", - "label": "Abolish Eldest adult age", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.num_severely_disabled_children": { - "type": "parameter", - "parameter": "gov.abolitions.num_severely_disabled_children", - "description": "Set all values of Number of severely disabled children to zero.", - "label": "Abolish Number of severely disabled children", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_renting": { - "type": "parameter", - "parameter": "gov.abolitions.is_renting", - "description": "Set all values of Is renting to zero.", - "label": "Abolish Is renting", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.num_disabled_adults": { - "type": "parameter", - "parameter": "gov.abolitions.num_disabled_adults", - "description": "Set all values of Number of disabled adults to zero.", - "label": "Abolish Number of disabled adults", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_child": { - "type": "parameter", - "parameter": "gov.abolitions.is_child", - "description": "Set all values of Is a child to zero.", - "label": "Abolish Is a child", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.adult_index": { - "type": "parameter", - "parameter": "gov.abolitions.adult_index", - "description": "Set all values of Index of adult in household to zero.", - "label": "Abolish Index of adult in household", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_parent": { - "type": "parameter", - "parameter": "gov.abolitions.is_parent", - "description": "Set all values of Whether this person is a parent in their benefit unit to zero.", - "label": "Abolish Whether this person is a parent in their benefit unit", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.household_equivalisation_bhc": { - "type": "parameter", - "parameter": "gov.abolitions.household_equivalisation_bhc", - "description": "Set all values of Equivalisation factor to account for household composition, before housing costs to zero.", - "label": "Abolish Equivalisation factor to account for household composition, before housing costs", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_WA_adult": { - "type": "parameter", - "parameter": "gov.abolitions.is_WA_adult", - "description": "Set all values of Whether is a working-age adult to zero.", - "label": "Abolish Whether is a working-age adult", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_female": { - "type": "parameter", - "parameter": "gov.abolitions.is_female", - "description": "Set all values of Whether the person is female to zero.", - "label": "Abolish Whether the person is female", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.benunit_weight": { - "type": "parameter", - "parameter": "gov.abolitions.benunit_weight", - "description": "Set all values of Weight factor for the benefit unit to zero.", - "label": "Abolish Weight factor for the benefit unit", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.benunit_count_children": { - "type": "parameter", - "parameter": "gov.abolitions.benunit_count_children", - "description": "Set all values of number of children in the benefit unit to zero.", - "label": "Abolish number of children in the benefit unit", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.diesel_price": { - "type": "parameter", - "parameter": "gov.abolitions.diesel_price", - "description": "Set all values of Price of diesel per litre to zero.", - "label": "Abolish Price of diesel per litre", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.additional_residential_property_purchased": { - "type": "parameter", - "parameter": "gov.abolitions.additional_residential_property_purchased", - "description": "Set all values of Residential property bought (additional) to zero.", - "label": "Abolish Residential property bought (additional)", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.weekly_childcare_expenses": { - "type": "parameter", - "parameter": "gov.abolitions.weekly_childcare_expenses", - "description": "Set all values of Average cost of childcare to zero.", - "label": "Abolish Average cost of childcare", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.carbon_consumption": { - "type": "parameter", - "parameter": "gov.abolitions.carbon_consumption", - "description": "Set all values of Carbon consumption to zero.", - "label": "Abolish Carbon consumption", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.non_residential_property_purchased": { - "type": "parameter", - "parameter": "gov.abolitions.non_residential_property_purchased", - "description": "Set all values of Non-residential property bought to zero.", - "label": "Abolish Non-residential property bought", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mortgage": { - "type": "parameter", - "parameter": "gov.abolitions.mortgage", - "description": "Set all values of total mortgage payments to zero.", - "label": "Abolish total mortgage payments", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.benunit_rent": { - "type": "parameter", - "parameter": "gov.abolitions.benunit_rent", - "description": "Set all values of Rent to zero.", - "label": "Abolish Rent", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.petrol_litres": { - "type": "parameter", - "parameter": "gov.abolitions.petrol_litres", - "description": "Set all values of Petrol volume to zero.", - "label": "Abolish Petrol volume", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.main_residential_property_purchased_is_first_home": { - "type": "parameter", - "parameter": "gov.abolitions.main_residential_property_purchased_is_first_home", - "description": "Set all values of Residential property bought is first home to zero.", - "label": "Abolish Residential property bought is first home", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.reduced_rate_vat_consumption": { - "type": "parameter", - "parameter": "gov.abolitions.reduced_rate_vat_consumption", - "description": "Set all values of consumption of VAT reduced-rated goods and services to zero.", - "label": "Abolish consumption of VAT reduced-rated goods and services", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.full_rate_vat_consumption": { - "type": "parameter", - "parameter": "gov.abolitions.full_rate_vat_consumption", - "description": "Set all values of consumption of VAT full-rated goods and services to zero.", - "label": "Abolish consumption of VAT full-rated goods and services", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.main_residential_property_purchased": { - "type": "parameter", - "parameter": "gov.abolitions.main_residential_property_purchased", - "description": "Set all values of Residential property bought (main) to zero.", - "label": "Abolish Residential property bought (main)", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.diesel_litres": { - "type": "parameter", - "parameter": "gov.abolitions.diesel_litres", - "description": "Set all values of Diesel volume to zero.", - "label": "Abolish Diesel volume", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.family_rent": { - "type": "parameter", - "parameter": "gov.abolitions.family_rent", - "description": "Set all values of Gross rent for the family to zero.", - "label": "Abolish Gross rent for the family", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.petrol_price": { - "type": "parameter", - "parameter": "gov.abolitions.petrol_price", - "description": "Set all values of Price of petrol per litre to zero.", - "label": "Abolish Price of petrol per litre", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.consumption_shareholding": { - "type": "parameter", - "parameter": "gov.abolitions.consumption_shareholding", - "description": "Set all values of share of UK consumption to zero.", - "label": "Abolish share of UK consumption", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.council_tax_less_benefit": { - "type": "parameter", - "parameter": "gov.abolitions.council_tax_less_benefit", - "description": "Set all values of Council Tax (less CTB) to zero.", - "label": "Abolish Council Tax (less CTB)", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.housing_costs": { - "type": "parameter", - "parameter": "gov.abolitions.housing_costs", - "description": "Set all values of Total housing costs to zero.", - "label": "Abolish Total housing costs", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.personal_rent": { - "type": "parameter", - "parameter": "gov.abolitions.personal_rent", - "description": "Set all values of Rent liable to zero.", - "label": "Abolish Rent liable", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.benunit_is_rent_liable": { - "type": "parameter", - "parameter": "gov.abolitions.benunit_is_rent_liable", - "description": "Set all values of Whether the benefit unit is liable to pay rent to zero.", - "label": "Abolish Whether the benefit unit is liable to pay rent", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.employment_benefits": { - "type": "parameter", - "parameter": "gov.abolitions.employment_benefits", - "description": "Set all values of Employment benefits to zero.", - "label": "Abolish Employment benefits", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.claims_all_entitled_benefits": { - "type": "parameter", - "parameter": "gov.abolitions.claims_all_entitled_benefits", - "description": "Set all values of Claims all eligible benefits to zero.", - "label": "Abolish Claims all eligible benefits", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.household_gross_income": { - "type": "parameter", - "parameter": "gov.abolitions.household_gross_income", - "description": "Set all values of Household gross income to zero.", - "label": "Abolish Household gross income", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.equiv_household_net_income": { - "type": "parameter", - "parameter": "gov.abolitions.equiv_household_net_income", - "description": "Set all values of Equivalised household net income to zero.", - "label": "Abolish Equivalised household net income", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.real_household_net_income_ahc": { - "type": "parameter", - "parameter": "gov.abolitions.real_household_net_income_ahc", - "description": "Set all values of real household net income (2025 prices) to zero.", - "label": "Abolish real household net income (2025 prices)", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_single": { - "type": "parameter", - "parameter": "gov.abolitions.is_single", - "description": "Set all values of Whether this benefit unit contains a single claimant for benefits to zero.", - "label": "Abolish Whether this benefit unit contains a single claimant for benefits", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.deep_poverty_line": { - "type": "parameter", - "parameter": "gov.abolitions.deep_poverty_line", - "description": "Set all values of deep poverty line to zero.", - "label": "Abolish deep poverty line", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.poverty_line_ahc": { - "type": "parameter", - "parameter": "gov.abolitions.poverty_line_ahc", - "description": "Set all values of The poverty line for the household, after housing costs to zero.", - "label": "Abolish The poverty line for the household, after housing costs", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.household_income_decile": { - "type": "parameter", - "parameter": "gov.abolitions.household_income_decile", - "description": "Set all values of household income decile to zero.", - "label": "Abolish household income decile", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.baseline_hbai_excluded_income": { - "type": "parameter", - "parameter": "gov.abolitions.baseline_hbai_excluded_income", - "description": "Set all values of HBAI-excluded income (baseline) to zero.", - "label": "Abolish HBAI-excluded income (baseline)", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.in_poverty_bhc": { - "type": "parameter", - "parameter": "gov.abolitions.in_poverty_bhc", - "description": "Set all values of Whether the household is in absolute poverty, before housing costs to zero.", - "label": "Abolish Whether the household is in absolute poverty, before housing costs", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.household_net_income": { - "type": "parameter", - "parameter": "gov.abolitions.household_net_income", - "description": "Set all values of household net income to zero.", - "label": "Abolish household net income", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.in_work": { - "type": "parameter", - "parameter": "gov.abolitions.in_work", - "description": "Set all values of Worked some hours to zero.", - "label": "Abolish Worked some hours", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.inflation_adjustment": { - "type": "parameter", - "parameter": "gov.abolitions.inflation_adjustment", - "description": "Set all values of inflation multiplier to get 2025 prices to zero.", - "label": "Abolish inflation multiplier to get 2025 prices", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.market_income": { - "type": "parameter", - "parameter": "gov.abolitions.market_income", - "description": "Set all values of Market income to zero.", - "label": "Abolish Market income", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.in_relative_poverty_ahc": { - "type": "parameter", - "parameter": "gov.abolitions.in_relative_poverty_ahc", - "description": "Set all values of in relative poverty (AHC) to zero.", - "label": "Abolish in relative poverty (AHC)", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.capital_income": { - "type": "parameter", - "parameter": "gov.abolitions.capital_income", - "description": "Set all values of Income from savings or dividends to zero.", - "label": "Abolish Income from savings or dividends", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_couple": { - "type": "parameter", - "parameter": "gov.abolitions.is_couple", - "description": "Set all values of Whether this benefit unit contains a joint couple claimant for benefits to zero.", - "label": "Abolish Whether this benefit unit contains a joint couple claimant for benefits", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.claims_legacy_benefits": { - "type": "parameter", - "parameter": "gov.abolitions.claims_legacy_benefits", - "description": "Set all values of Claims legacy benefits to zero.", - "label": "Abolish Claims legacy benefits", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hbai_excluded_income": { - "type": "parameter", - "parameter": "gov.abolitions.hbai_excluded_income", - "description": "Set all values of HBAI-excluded income to zero.", - "label": "Abolish HBAI-excluded income", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.poverty_gap_ahc": { - "type": "parameter", - "parameter": "gov.abolitions.poverty_gap_ahc", - "description": "Set all values of Positive financial gap between net household income and the poverty line, after housing costs to zero.", - "label": "Abolish Positive financial gap between net household income and the poverty line, after housing costs", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.equiv_hbai_household_net_income": { - "type": "parameter", - "parameter": "gov.abolitions.equiv_hbai_household_net_income", - "description": "Set all values of Equivalised household net income (HBAI) to zero.", - "label": "Abolish Equivalised household net income (HBAI)", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.poverty_gap": { - "type": "parameter", - "parameter": "gov.abolitions.poverty_gap", - "description": "Set all values of poverty gap to zero.", - "label": "Abolish poverty gap", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.real_household_net_income": { - "type": "parameter", - "parameter": "gov.abolitions.real_household_net_income", - "description": "Set all values of real household net income (2025 prices) to zero.", - "label": "Abolish real household net income (2025 prices)", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.poverty_line_bhc": { - "type": "parameter", - "parameter": "gov.abolitions.poverty_line_bhc", - "description": "Set all values of The poverty line for the household, before housing costs to zero.", - "label": "Abolish The poverty line for the household, before housing costs", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.capital_gains": { - "type": "parameter", - "parameter": "gov.abolitions.capital_gains", - "description": "Set all values of capital gains to zero.", - "label": "Abolish capital gains", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.household_benefits": { - "type": "parameter", - "parameter": "gov.abolitions.household_benefits", - "description": "Set all values of household benefits to zero.", - "label": "Abolish household benefits", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.earned_income": { - "type": "parameter", - "parameter": "gov.abolitions.earned_income", - "description": "Set all values of Total earned income to zero.", - "label": "Abolish Total earned income", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hbai_household_net_income_ahc": { - "type": "parameter", - "parameter": "gov.abolitions.hbai_household_net_income_ahc", - "description": "Set all values of Household net income, after housing costs to zero.", - "label": "Abolish Household net income, after housing costs", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_child_or_QYP": { - "type": "parameter", - "parameter": "gov.abolitions.is_child_or_QYP", - "description": "Set all values of Whether this person is a child or qualifying young person for most benefits to zero.", - "label": "Abolish Whether this person is a child or qualifying young person for most benefits", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.income_decile": { - "type": "parameter", - "parameter": "gov.abolitions.income_decile", - "description": "Set all values of income decile to zero.", - "label": "Abolish income decile", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.benefits_premiums": { - "type": "parameter", - "parameter": "gov.abolitions.benefits_premiums", - "description": "Set all values of Value of premiums for disability and carer status to zero.", - "label": "Abolish Value of premiums for disability and carer status", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.equiv_hbai_household_net_income_ahc": { - "type": "parameter", - "parameter": "gov.abolitions.equiv_hbai_household_net_income_ahc", - "description": "Set all values of Equivalised household net income, after housing costs (HBAI) to zero.", - "label": "Abolish Equivalised household net income, after housing costs (HBAI)", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.in_poverty": { - "type": "parameter", - "parameter": "gov.abolitions.in_poverty", - "description": "Set all values of in poverty to zero.", - "label": "Abolish in poverty", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.benunit_weekly_hours": { - "type": "parameter", - "parameter": "gov.abolitions.benunit_weekly_hours", - "description": "Set all values of Average weekly hours worked by adults in the benefit unit to zero.", - "label": "Abolish Average weekly hours worked by adults in the benefit unit", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.deep_poverty_gap": { - "type": "parameter", - "parameter": "gov.abolitions.deep_poverty_gap", - "description": "Set all values of deep poverty gap to zero.", - "label": "Abolish deep poverty gap", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.in_deep_poverty": { - "type": "parameter", - "parameter": "gov.abolitions.in_deep_poverty", - "description": "Set all values of in deep poverty to zero.", - "label": "Abolish in deep poverty", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.household_market_income": { - "type": "parameter", - "parameter": "gov.abolitions.household_market_income", - "description": "Set all values of household market income to zero.", - "label": "Abolish household market income", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.poverty_threshold_bhc": { - "type": "parameter", - "parameter": "gov.abolitions.poverty_threshold_bhc", - "description": "Set all values of Poverty threshold (BHC) to zero.", - "label": "Abolish Poverty threshold (BHC)", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.in_relative_poverty_bhc": { - "type": "parameter", - "parameter": "gov.abolitions.in_relative_poverty_bhc", - "description": "Set all values of in relative poverty (AHC) to zero.", - "label": "Abolish in relative poverty (AHC)", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.poverty_line": { - "type": "parameter", - "parameter": "gov.abolitions.poverty_line", - "description": "Set all values of poverty line to zero.", - "label": "Abolish poverty line", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_QYP": { - "type": "parameter", - "parameter": "gov.abolitions.is_QYP", - "description": "Set all values of Whether this person is a qualifying young person for benefits purposes to zero.", - "label": "Abolish Whether this person is a qualifying young person for benefits purposes", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.in_deep_poverty_bhc": { - "type": "parameter", - "parameter": "gov.abolitions.in_deep_poverty_bhc", - "description": "Set all values of Whether the household is in deep absolute poverty (below half the poverty line), before housing costs to zero.", - "label": "Abolish Whether the household is in deep absolute poverty (below half the poverty line), before housing costs", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_lone_parent": { - "type": "parameter", - "parameter": "gov.abolitions.is_lone_parent", - "description": "Set all values of Whether the family is a lone parent family to zero.", - "label": "Abolish Whether the family is a lone parent family", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.poverty_gap_bhc": { - "type": "parameter", - "parameter": "gov.abolitions.poverty_gap_bhc", - "description": "Set all values of Positive financial gap between net household income and the poverty line to zero.", - "label": "Abolish Positive financial gap between net household income and the poverty line", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hbai_household_net_income": { - "type": "parameter", - "parameter": "gov.abolitions.hbai_household_net_income", - "description": "Set all values of Household net income (HBAI definition) to zero.", - "label": "Abolish Household net income (HBAI definition)", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.real_hbai_household_net_income": { - "type": "parameter", - "parameter": "gov.abolitions.real_hbai_household_net_income", - "description": "Set all values of real household net income (HBAI definition) to zero.", - "label": "Abolish real household net income (HBAI definition)", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.in_deep_poverty_ahc": { - "type": "parameter", - "parameter": "gov.abolitions.in_deep_poverty_ahc", - "description": "Set all values of Whether the household is in deep absolute poverty (below half the poverty line), after housing costs to zero.", - "label": "Abolish Whether the household is in deep absolute poverty (below half the poverty line), after housing costs", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.household_net_income_ahc": { - "type": "parameter", - "parameter": "gov.abolitions.household_net_income_ahc", - "description": "Set all values of household net income to zero.", - "label": "Abolish household net income", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hbai_excluded_income_change": { - "type": "parameter", - "parameter": "gov.abolitions.hbai_excluded_income_change", - "description": "Set all values of Change in HBAI-excluded income to zero.", - "label": "Abolish Change in HBAI-excluded income", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hbai_benefits": { - "type": "parameter", - "parameter": "gov.abolitions.hbai_benefits", - "description": "Set all values of HBAI-included benefits to zero.", - "label": "Abolish HBAI-included benefits", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_single_person": { - "type": "parameter", - "parameter": "gov.abolitions.is_single_person", - "description": "Set all values of Whether the family is a single person to zero.", - "label": "Abolish Whether the family is a single person", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.in_poverty_ahc": { - "type": "parameter", - "parameter": "gov.abolitions.in_poverty_ahc", - "description": "Set all values of Whether the household is in absolute poverty, after housing costs to zero.", - "label": "Abolish Whether the household is in absolute poverty, after housing costs", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.weekly_hours": { - "type": "parameter", - "parameter": "gov.abolitions.weekly_hours", - "description": "Set all values of Weekly hours to zero.", - "label": "Abolish Weekly hours", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.minimum_wage": { - "type": "parameter", - "parameter": "gov.abolitions.minimum_wage", - "description": "Set all values of Minimum wage to zero.", - "label": "Abolish Minimum wage", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.household_land_value": { - "type": "parameter", - "parameter": "gov.abolitions.household_land_value", - "description": "Set all values of Land value to zero.", - "label": "Abolish Land value", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.total_wealth": { - "type": "parameter", - "parameter": "gov.abolitions.total_wealth", - "description": "Set all values of Total wealth to zero.", - "label": "Abolish Total wealth", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.land_value": { - "type": "parameter", - "parameter": "gov.abolitions.land_value", - "description": "Set all values of Land value to zero.", - "label": "Abolish Land value", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.property_wealth": { - "type": "parameter", - "parameter": "gov.abolitions.property_wealth", - "description": "Set all values of Property wealth to zero.", - "label": "Abolish Property wealth", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.corporate_tax_incidence": { - "type": "parameter", - "parameter": "gov.abolitions.corporate_tax_incidence", - "description": "Set all values of Corporate tax incidence to zero.", - "label": "Abolish Corporate tax incidence", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.corporate_land_value": { - "type": "parameter", - "parameter": "gov.abolitions.corporate_land_value", - "description": "Set all values of Land value to zero.", - "label": "Abolish Land value", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.shareholding": { - "type": "parameter", - "parameter": "gov.abolitions.shareholding", - "description": "Set all values of Share in the corporate sector to zero.", - "label": "Abolish Share in the corporate sector", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.residential_property_value": { - "type": "parameter", - "parameter": "gov.abolitions.residential_property_value", - "description": "Set all values of Residential property value to zero.", - "label": "Abolish Residential property value", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.household_wealth_decile": { - "type": "parameter", - "parameter": "gov.abolitions.household_wealth_decile", - "description": "Set all values of household wealth decile to zero.", - "label": "Abolish household wealth decile", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.receives_carers_allowance": { - "type": "parameter", - "parameter": "gov.abolitions.receives_carers_allowance", - "description": "Set all values of receives Carer's Allowance to zero.", - "label": "Abolish receives Carer's Allowance", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.rent": { - "type": "parameter", - "parameter": "gov.abolitions.rent", - "description": "Set all values of Rent to zero.", - "label": "Abolish Rent", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.employment_income": { - "type": "parameter", - "parameter": "gov.abolitions.employment_income", - "description": "Set all values of employment income to zero.", - "label": "Abolish employment income", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.state_pension": { - "type": "parameter", - "parameter": "gov.abolitions.state_pension", - "description": "Set all values of State Pension to zero.", - "label": "Abolish State Pension", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.consumption": { - "type": "parameter", - "parameter": "gov.abolitions.consumption", - "description": "Set all values of consumption to zero.", - "label": "Abolish consumption", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.council_tax": { - "type": "parameter", - "parameter": "gov.abolitions.council_tax", - "description": "Set all values of Council Tax to zero.", - "label": "Abolish Council Tax", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.gov_tax": { - "type": "parameter", - "parameter": "gov.abolitions.gov_tax", - "description": "Set all values of government tax revenue to zero.", - "label": "Abolish government tax revenue", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.gov_balance": { - "type": "parameter", - "parameter": "gov.abolitions.gov_balance", - "description": "Set all values of government balance to zero.", - "label": "Abolish government balance", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.gov_spending": { - "type": "parameter", - "parameter": "gov.abolitions.gov_spending", - "description": "Set all values of government spending to zero.", - "label": "Abolish government spending", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.lbtt_on_transactions": { - "type": "parameter", - "parameter": "gov.abolitions.lbtt_on_transactions", - "description": "Set all values of LBTT on property transactions to zero.", - "label": "Abolish LBTT on property transactions", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.lbtt_on_residential_property_transactions": { - "type": "parameter", - "parameter": "gov.abolitions.lbtt_on_residential_property_transactions", - "description": "Set all values of LBTT on residential property to zero.", - "label": "Abolish LBTT on residential property", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.lbtt_on_non_residential_property_rent": { - "type": "parameter", - "parameter": "gov.abolitions.lbtt_on_non_residential_property_rent", - "description": "Set all values of LBTT on non-residential property to zero.", - "label": "Abolish LBTT on non-residential property", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.lbtt_on_residential_property_rent": { - "type": "parameter", - "parameter": "gov.abolitions.lbtt_on_residential_property_rent", - "description": "Set all values of LBTT on residential property rent to zero.", - "label": "Abolish LBTT on residential property rent", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.lbtt_on_non_residential_property_transactions": { - "type": "parameter", - "parameter": "gov.abolitions.lbtt_on_non_residential_property_transactions", - "description": "Set all values of LBTT on non-residential property transactions to zero.", - "label": "Abolish LBTT on non-residential property transactions", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.expected_lbtt": { - "type": "parameter", - "parameter": "gov.abolitions.expected_lbtt", - "description": "Set all values of Land and Buildings Transaction Tax (expected) to zero.", - "label": "Abolish Land and Buildings Transaction Tax (expected)", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.land_and_buildings_transaction_tax": { - "type": "parameter", - "parameter": "gov.abolitions.land_and_buildings_transaction_tax", - "description": "Set all values of Land and Buildings Transaction Tax to zero.", - "label": "Abolish Land and Buildings Transaction Tax", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.lbtt_on_rent": { - "type": "parameter", - "parameter": "gov.abolitions.lbtt_on_rent", - "description": "Set all values of LBTT on property rental to zero.", - "label": "Abolish LBTT on property rental", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.lbtt_liable": { - "type": "parameter", - "parameter": "gov.abolitions.lbtt_liable", - "description": "Set all values of Liable for Land and Buildings Transaction Tax to zero.", - "label": "Abolish Liable for Land and Buildings Transaction Tax", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.domestic_rates": { - "type": "parameter", - "parameter": "gov.abolitions.domestic_rates", - "description": "Set all values of domestic rates to zero.", - "label": "Abolish domestic rates", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.care_to_learn_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.care_to_learn_eligible", - "description": "Set all values of eligible for Care to Learn childcare support to zero.", - "label": "Abolish eligible for Care to Learn childcare support", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.care_to_learn": { - "type": "parameter", - "parameter": "gov.abolitions.care_to_learn", - "description": "Set all values of Care to Learn scheme amount to zero.", - "label": "Abolish Care to Learn scheme amount", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.extended_childcare_entitlement_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.extended_childcare_entitlement_eligible", - "description": "Set all values of eligibility for extended childcare entitlement to zero.", - "label": "Abolish eligibility for extended childcare entitlement", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.extended_childcare_entitlement": { - "type": "parameter", - "parameter": "gov.abolitions.extended_childcare_entitlement", - "description": "Set all values of annual extended childcare entitlement expenses to zero.", - "label": "Abolish annual extended childcare entitlement expenses", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_child_receiving_extended_childcare": { - "type": "parameter", - "parameter": "gov.abolitions.is_child_receiving_extended_childcare", - "description": "Set all values of child is eligible for extended childcare entitlement to zero.", - "label": "Abolish child is eligible for extended childcare entitlement", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.extended_childcare_entitlement_work_condition": { - "type": "parameter", - "parameter": "gov.abolitions.extended_childcare_entitlement_work_condition", - "description": "Set all values of Work conditions for extended childcare entitlement to zero.", - "label": "Abolish Work conditions for extended childcare entitlement", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.extended_childcare_entitlement_meets_income_requirements": { - "type": "parameter", - "parameter": "gov.abolitions.extended_childcare_entitlement_meets_income_requirements", - "description": "Set all values of Income eligible for the extended childcare entitlement to zero.", - "label": "Abolish Income eligible for the extended childcare entitlement", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_of_compulsory_school_age": { - "type": "parameter", - "parameter": "gov.abolitions.is_of_compulsory_school_age", - "description": "Set all values of Whether the person is of compulsory school age to zero.", - "label": "Abolish Whether the person is of compulsory school age", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.universal_childcare_entitlement_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.universal_childcare_entitlement_eligible", - "description": "Set all values of eligible for universal childcare entitlement to zero.", - "label": "Abolish eligible for universal childcare entitlement", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_child_receiving_universal_childcare": { - "type": "parameter", - "parameter": "gov.abolitions.is_child_receiving_universal_childcare", - "description": "Set all values of child is eligible for universal childcare entitlement based on age and entitlement to zero.", - "label": "Abolish child is eligible for universal childcare entitlement based on age and entitlement", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.universal_childcare_entitlement": { - "type": "parameter", - "parameter": "gov.abolitions.universal_childcare_entitlement", - "description": "Set all values of universal childcare entitlement amount per year to zero.", - "label": "Abolish universal childcare entitlement amount per year", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_child_receiving_targeted_childcare": { - "type": "parameter", - "parameter": "gov.abolitions.is_child_receiving_targeted_childcare", - "description": "Set all values of child is eligible for targeted childcare entitlement based on age and entitlement to zero.", - "label": "Abolish child is eligible for targeted childcare entitlement based on age and entitlement", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.meets_tax_credit_criteria_for_targeted_childcare_entitlement": { - "type": "parameter", - "parameter": "gov.abolitions.meets_tax_credit_criteria_for_targeted_childcare_entitlement", - "description": "Set all values of meets Tax Credit criteria for targeted childcare entitlement to zero.", - "label": "Abolish meets Tax Credit criteria for targeted childcare entitlement", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.targeted_childcare_entitlement_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.targeted_childcare_entitlement_eligible", - "description": "Set all values of eligibility for targeted childcare entitlement to zero.", - "label": "Abolish eligibility for targeted childcare entitlement", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.targeted_childcare_entitlement": { - "type": "parameter", - "parameter": "gov.abolitions.targeted_childcare_entitlement", - "description": "Set all values of targeted childcare entitlement amount to zero.", - "label": "Abolish targeted childcare entitlement amount", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.meets_universal_credit_criteria_for_targeted_childcare_entitlement": { - "type": "parameter", - "parameter": "gov.abolitions.meets_universal_credit_criteria_for_targeted_childcare_entitlement", - "description": "Set all values of meets Universal Credit criteria for targeted childcare entitlement to zero.", - "label": "Abolish meets Universal Credit criteria for targeted childcare entitlement", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dft_subsidy_spending": { - "type": "parameter", - "parameter": "gov.abolitions.dft_subsidy_spending", - "description": "Set all values of transport subsidy spending to zero.", - "label": "Abolish transport subsidy spending", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.stamp_duty_land_tax": { - "type": "parameter", - "parameter": "gov.abolitions.stamp_duty_land_tax", - "description": "Set all values of Stamp Duty Land Tax to zero.", - "label": "Abolish Stamp Duty Land Tax", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.sdlt_on_transactions": { - "type": "parameter", - "parameter": "gov.abolitions.sdlt_on_transactions", - "description": "Set all values of SDLT on property transactions to zero.", - "label": "Abolish SDLT on property transactions", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.baseline_vat": { - "type": "parameter", - "parameter": "gov.abolitions.baseline_vat", - "description": "Set all values of baseline VAT to zero.", - "label": "Abolish baseline VAT", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.would_claim_child_benefit": { - "type": "parameter", - "parameter": "gov.abolitions.would_claim_child_benefit", - "description": "Set all values of Would claim Child Benefit to zero.", - "label": "Abolish Would claim Child Benefit", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.sdlt_liable": { - "type": "parameter", - "parameter": "gov.abolitions.sdlt_liable", - "description": "Set all values of Liable for Stamp Duty to zero.", - "label": "Abolish Liable for Stamp Duty", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.corporate_sdlt": { - "type": "parameter", - "parameter": "gov.abolitions.corporate_sdlt", - "description": "Set all values of Stamp Duty (corporations) to zero.", - "label": "Abolish Stamp Duty (corporations)", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.child_benefit_entitlement": { - "type": "parameter", - "parameter": "gov.abolitions.child_benefit_entitlement", - "description": "Set all values of CB entitlement to zero.", - "label": "Abolish CB entitlement", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tax_modelling": { - "type": "parameter", - "parameter": "gov.abolitions.tax_modelling", - "description": "Set all values of Difference between reported and imputed tax liabilities to zero.", - "label": "Abolish Difference between reported and imputed tax liabilities", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.child_benefit_respective_amount": { - "type": "parameter", - "parameter": "gov.abolitions.child_benefit_respective_amount", - "description": "Set all values of Child Benefit (respective amount) to zero.", - "label": "Abolish Child Benefit (respective amount)", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.vat": { - "type": "parameter", - "parameter": "gov.abolitions.vat", - "description": "Set all values of VAT to zero.", - "label": "Abolish VAT", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.benunit_tax": { - "type": "parameter", - "parameter": "gov.abolitions.benunit_tax", - "description": "Set all values of Benefit unit tax paid to zero.", - "label": "Abolish Benefit unit tax paid", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.sdlt_on_non_residential_property_rent": { - "type": "parameter", - "parameter": "gov.abolitions.sdlt_on_non_residential_property_rent", - "description": "Set all values of Stamp Duty on non-residential property to zero.", - "label": "Abolish Stamp Duty on non-residential property", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.vat_change": { - "type": "parameter", - "parameter": "gov.abolitions.vat_change", - "description": "Set all values of change in VAT liability to zero.", - "label": "Abolish change in VAT liability", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.expected_sdlt": { - "type": "parameter", - "parameter": "gov.abolitions.expected_sdlt", - "description": "Set all values of Stamp Duty (expected) to zero.", - "label": "Abolish Stamp Duty (expected)", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.child_benefit_opts_out": { - "type": "parameter", - "parameter": "gov.abolitions.child_benefit_opts_out", - "description": "Set all values of opts out of Child Benefit to zero.", - "label": "Abolish opts out of Child Benefit", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.sdlt_on_non_residential_property_transactions": { - "type": "parameter", - "parameter": "gov.abolitions.sdlt_on_non_residential_property_transactions", - "description": "Set all values of Stamp Duty on non-residential property to zero.", - "label": "Abolish Stamp Duty on non-residential property", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.baseline_business_rates": { - "type": "parameter", - "parameter": "gov.abolitions.baseline_business_rates", - "description": "Set all values of Baseline business rates incidence to zero.", - "label": "Abolish Baseline business rates incidence", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.household_tax": { - "type": "parameter", - "parameter": "gov.abolitions.household_tax", - "description": "Set all values of household taxes to zero.", - "label": "Abolish household taxes", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.child_benefit": { - "type": "parameter", - "parameter": "gov.abolitions.child_benefit", - "description": "Set all values of Child Benefit to zero.", - "label": "Abolish Child Benefit", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.business_rates": { - "type": "parameter", - "parameter": "gov.abolitions.business_rates", - "description": "Set all values of Business rates incidence to zero.", - "label": "Abolish Business rates incidence", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.sdlt_on_residential_property_transactions": { - "type": "parameter", - "parameter": "gov.abolitions.sdlt_on_residential_property_transactions", - "description": "Set all values of Stamp Duty on residential property to zero.", - "label": "Abolish Stamp Duty on residential property", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.sdlt_on_residential_property_rent": { - "type": "parameter", - "parameter": "gov.abolitions.sdlt_on_residential_property_rent", - "description": "Set all values of Stamp Duty on residential property to zero.", - "label": "Abolish Stamp Duty on residential property", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tax": { - "type": "parameter", - "parameter": "gov.abolitions.tax", - "description": "Set all values of Taxes to zero.", - "label": "Abolish Taxes", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.child_benefit_less_tax_charge": { - "type": "parameter", - "parameter": "gov.abolitions.child_benefit_less_tax_charge", - "description": "Set all values of Child Benefit (less tax charge) to zero.", - "label": "Abolish Child Benefit (less tax charge)", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.sdlt_on_rent": { - "type": "parameter", - "parameter": "gov.abolitions.sdlt_on_rent", - "description": "Set all values of SDLT on property rental to zero.", - "label": "Abolish SDLT on property rental", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_child_receiving_tax_free_childcare": { - "type": "parameter", - "parameter": "gov.abolitions.is_child_receiving_tax_free_childcare", - "description": "Set all values of child is eligible for tax-free childcare based on age and entitlement to zero.", - "label": "Abolish child is eligible for tax-free childcare based on age and entitlement", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tax_free_childcare_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.tax_free_childcare_eligible", - "description": "Set all values of overall eligibility for tax-free childcare to zero.", - "label": "Abolish overall eligibility for tax-free childcare", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tax_free_childcare": { - "type": "parameter", - "parameter": "gov.abolitions.tax_free_childcare", - "description": "Set all values of government contribution through tax-free childcare to zero.", - "label": "Abolish government contribution through tax-free childcare", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tax_free_childcare_work_condition": { - "type": "parameter", - "parameter": "gov.abolitions.tax_free_childcare_work_condition", - "description": "Set all values of work conditions for tax-free childcare to zero.", - "label": "Abolish work conditions for tax-free childcare", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tax_free_childcare_meets_income_requirements": { - "type": "parameter", - "parameter": "gov.abolitions.tax_free_childcare_meets_income_requirements", - "description": "Set all values of income eligible for the tax-free childcare to zero.", - "label": "Abolish income eligible for the tax-free childcare", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tax_free_childcare_program_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.tax_free_childcare_program_eligible", - "description": "Set all values of tax-free childcare program eligibility to zero.", - "label": "Abolish tax-free childcare program eligibility", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tax_free_childcare_child_age_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.tax_free_childcare_child_age_eligible", - "description": "Set all values of eligible child for the tax-free childcare to zero.", - "label": "Abolish eligible child for the tax-free childcare", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.capital_gains_tax": { - "type": "parameter", - "parameter": "gov.abolitions.capital_gains_tax", - "description": "Set all values of capital gains tax to zero.", - "label": "Abolish capital gains tax", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.marginal_tax_rate_on_capital_gains": { - "type": "parameter", - "parameter": "gov.abolitions.marginal_tax_rate_on_capital_gains", - "description": "Set all values of capital gains marginal tax rate to zero.", - "label": "Abolish capital gains marginal tax rate", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.capital_gains_behavioural_response": { - "type": "parameter", - "parameter": "gov.abolitions.capital_gains_behavioural_response", - "description": "Set all values of capital gains behavioral response to zero.", - "label": "Abolish capital gains behavioral response", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.capital_gains_elasticity": { - "type": "parameter", - "parameter": "gov.abolitions.capital_gains_elasticity", - "description": "Set all values of elasticity of capital gains realizations to zero.", - "label": "Abolish elasticity of capital gains realizations", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.adult_index_cg": { - "type": "parameter", - "parameter": "gov.abolitions.adult_index_cg", - "description": "Set all values of index of adult in household, ranked by capital gains to zero.", - "label": "Abolish index of adult in household, ranked by capital gains", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.relative_capital_gains_mtr_change": { - "type": "parameter", - "parameter": "gov.abolitions.relative_capital_gains_mtr_change", - "description": "Set all values of relative change in capital gains tax rate to zero.", - "label": "Abolish relative change in capital gains tax rate", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.fuel_duty": { - "type": "parameter", - "parameter": "gov.abolitions.fuel_duty", - "description": "Set all values of Fuel duty (cars only) to zero.", - "label": "Abolish Fuel duty (cars only)", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.total_national_insurance": { - "type": "parameter", - "parameter": "gov.abolitions.total_national_insurance", - "description": "Set all values of total National Insurance to zero.", - "label": "Abolish total National Insurance", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ni_self_employed": { - "type": "parameter", - "parameter": "gov.abolitions.ni_self_employed", - "description": "Set all values of self-employed National Insurance to zero.", - "label": "Abolish self-employed National Insurance", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ni_employer": { - "type": "parameter", - "parameter": "gov.abolitions.ni_employer", - "description": "Set all values of employer-side National Insurance to zero.", - "label": "Abolish employer-side National Insurance", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ni_employee": { - "type": "parameter", - "parameter": "gov.abolitions.ni_employee", - "description": "Set all values of employee-side National Insurance to zero.", - "label": "Abolish employee-side National Insurance", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.national_insurance": { - "type": "parameter", - "parameter": "gov.abolitions.national_insurance", - "description": "Set all values of National Insurance to zero.", - "label": "Abolish National Insurance", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ni_class_2": { - "type": "parameter", - "parameter": "gov.abolitions.ni_class_2", - "description": "Set all values of NI Class 2 contributions to zero.", - "label": "Abolish NI Class 2 contributions", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ni_class_4_main": { - "type": "parameter", - "parameter": "gov.abolitions.ni_class_4_main", - "description": "Set all values of NI Class 4 main contributions to zero.", - "label": "Abolish NI Class 4 main contributions", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ni_class_4": { - "type": "parameter", - "parameter": "gov.abolitions.ni_class_4", - "description": "Set all values of NI Class 4 main contributions to zero.", - "label": "Abolish NI Class 4 main contributions", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ni_class_4_maximum": { - "type": "parameter", - "parameter": "gov.abolitions.ni_class_4_maximum", - "description": "Set all values of NI Class 4 maximum liability to zero.", - "label": "Abolish NI Class 4 maximum liability", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ni_liable": { - "type": "parameter", - "parameter": "gov.abolitions.ni_liable", - "description": "Set all values of NI liable to zero.", - "label": "Abolish NI liable", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ni_class_1_income": { - "type": "parameter", - "parameter": "gov.abolitions.ni_class_1_income", - "description": "Set all values of ni_class_1_income to zero.", - "label": "Abolish ni_class_1_income", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ni_class_1_employer": { - "type": "parameter", - "parameter": "gov.abolitions.ni_class_1_employer", - "description": "Set all values of NI Class 1 employer-side contributions to zero.", - "label": "Abolish NI Class 1 employer-side contributions", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ni_class_1_employee": { - "type": "parameter", - "parameter": "gov.abolitions.ni_class_1_employee", - "description": "Set all values of NI Class 1 employee-side contributions to zero.", - "label": "Abolish NI Class 1 employee-side contributions", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ni_class_1_employee_primary": { - "type": "parameter", - "parameter": "gov.abolitions.ni_class_1_employee_primary", - "description": "Set all values of NI Class 1 employee-side primary contributions to zero.", - "label": "Abolish NI Class 1 employee-side primary contributions", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ni_class_1_employee_additional": { - "type": "parameter", - "parameter": "gov.abolitions.ni_class_1_employee_additional", - "description": "Set all values of NI Class 1 employee-side additional contributions to zero.", - "label": "Abolish NI Class 1 employee-side additional contributions", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.personal_pension_contributions_tax": { - "type": "parameter", - "parameter": "gov.abolitions.personal_pension_contributions_tax", - "description": "Set all values of Reduction in taxable income from pension contributions to pensions other than the State Pension to zero.", - "label": "Abolish Reduction in taxable income from pension contributions to pensions other than the State Pension", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pension_contributions_relief": { - "type": "parameter", - "parameter": "gov.abolitions.pension_contributions_relief", - "description": "Set all values of Reduction in taxable income from pension contributions to zero.", - "label": "Abolish Reduction in taxable income from pension contributions", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pension_contributions": { - "type": "parameter", - "parameter": "gov.abolitions.pension_contributions", - "description": "Set all values of Amount contributed to registered pension schemes paid by the individual (not the employer) to zero.", - "label": "Abolish Amount contributed to registered pension schemes paid by the individual (not the employer)", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pays_scottish_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.pays_scottish_income_tax", - "description": "Set all values of Whether the individual pays Scottish Income Tax rates to zero.", - "label": "Abolish Whether the individual pays Scottish Income Tax rates", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.total_pension_income": { - "type": "parameter", - "parameter": "gov.abolitions.total_pension_income", - "description": "Set all values of Total pension income to zero.", - "label": "Abolish Total pension income", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.total_income": { - "type": "parameter", - "parameter": "gov.abolitions.total_income", - "description": "Set all values of Taxable income after tax reliefs and before allowances to zero.", - "label": "Abolish Taxable income after tax reliefs and before allowances", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.earned_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.earned_income_tax", - "description": "Set all values of Income tax on earned income to zero.", - "label": "Abolish Income tax on earned income", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.adjusted_net_income": { - "type": "parameter", - "parameter": "gov.abolitions.adjusted_net_income", - "description": "Set all values of Taxable income after tax reliefs and before allowances to zero.", - "label": "Abolish Taxable income after tax reliefs and before allowances", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxed_income": { - "type": "parameter", - "parameter": "gov.abolitions.taxed_income", - "description": "Set all values of Income which is taxed to zero.", - "label": "Abolish Income which is taxed", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.income_tax_pre_charges": { - "type": "parameter", - "parameter": "gov.abolitions.income_tax_pre_charges", - "description": "Set all values of Income Tax before any tax charges to zero.", - "label": "Abolish Income Tax before any tax charges", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.income_tax", - "description": "Set all values of Income Tax to zero.", - "label": "Abolish Income Tax", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.social_security_income": { - "type": "parameter", - "parameter": "gov.abolitions.social_security_income", - "description": "Set all values of Income from social security for tax purposes to zero.", - "label": "Abolish Income from social security for tax purposes", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.basic_rate_earned_income": { - "type": "parameter", - "parameter": "gov.abolitions.basic_rate_earned_income", - "description": "Set all values of Earned income (non-savings, non-dividend) at the basic rate to zero.", - "label": "Abolish Earned income (non-savings, non-dividend) at the basic rate", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.add_rate_earned_income": { - "type": "parameter", - "parameter": "gov.abolitions.add_rate_earned_income", - "description": "Set all values of Earned income (non-savings, non-dividend) at the additional rate to zero.", - "label": "Abolish Earned income (non-savings, non-dividend) at the additional rate", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.earned_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.earned_taxable_income", - "description": "Set all values of Non-savings, non-dividend income for Income Tax to zero.", - "label": "Abolish Non-savings, non-dividend income for Income Tax", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.higher_rate_earned_income": { - "type": "parameter", - "parameter": "gov.abolitions.higher_rate_earned_income", - "description": "Set all values of Earned income (non-savings, non-dividend) at the higher rate to zero.", - "label": "Abolish Earned income (non-savings, non-dividend) at the higher rate", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.add_rate_earned_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.add_rate_earned_income_tax", - "description": "Set all values of Income tax on earned income at the additional rate to zero.", - "label": "Abolish Income tax on earned income at the additional rate", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.higher_rate_earned_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.higher_rate_earned_income_tax", - "description": "Set all values of Income tax on earned income at the higher rate to zero.", - "label": "Abolish Income tax on earned income at the higher rate", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.basic_rate_earned_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.basic_rate_earned_income_tax", - "description": "Set all values of Income tax on earned income at the basic rate to zero.", - "label": "Abolish Income tax on earned income at the basic rate", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.savings_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.savings_income_tax", - "description": "Set all values of Income tax on savings income to zero.", - "label": "Abolish Income tax on savings income", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dividend_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.dividend_income_tax", - "description": "Set all values of Income tax on dividend income to zero.", - "label": "Abolish Income tax on dividend income", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxed_savings_income": { - "type": "parameter", - "parameter": "gov.abolitions.taxed_savings_income", - "description": "Set all values of Savings income which advances the person's income tax schedule to zero.", - "label": "Abolish Savings income which advances the person's income tax schedule", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.basic_rate_savings_income": { - "type": "parameter", - "parameter": "gov.abolitions.basic_rate_savings_income", - "description": "Set all values of Savings income at the basic rate to zero.", - "label": "Abolish Savings income at the basic rate", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.higher_rate_savings_income": { - "type": "parameter", - "parameter": "gov.abolitions.higher_rate_savings_income", - "description": "Set all values of Savings income at the higher rate to zero.", - "label": "Abolish Savings income at the higher rate", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.savings_starter_rate_income": { - "type": "parameter", - "parameter": "gov.abolitions.savings_starter_rate_income", - "description": "Set all values of Savings income which is tax-free under the starter rate to zero.", - "label": "Abolish Savings income which is tax-free under the starter rate", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.basic_rate_savings_income_pre_starter": { - "type": "parameter", - "parameter": "gov.abolitions.basic_rate_savings_income_pre_starter", - "description": "Set all values of Savings income which would otherwise be taxed at the basic rate, without the starter rate to zero.", - "label": "Abolish Savings income which would otherwise be taxed at the basic rate, without the starter rate", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.add_rate_savings_income": { - "type": "parameter", - "parameter": "gov.abolitions.add_rate_savings_income", - "description": "Set all values of Savings income at the higher rate to zero.", - "label": "Abolish Savings income at the higher rate", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.allowances": { - "type": "parameter", - "parameter": "gov.abolitions.allowances", - "description": "Set all values of Allowances applicable to adjusted net income to zero.", - "label": "Abolish Allowances applicable to adjusted net income", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.property_allowance": { - "type": "parameter", - "parameter": "gov.abolitions.property_allowance", - "description": "Set all values of Property Allowance for the year to zero.", - "label": "Abolish Property Allowance for the year", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.meets_marriage_allowance_income_conditions": { - "type": "parameter", - "parameter": "gov.abolitions.meets_marriage_allowance_income_conditions", - "description": "Set all values of Meets Marriage Allowance income conditions to zero.", - "label": "Abolish Meets Marriage Allowance income conditions", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.marriage_allowance": { - "type": "parameter", - "parameter": "gov.abolitions.marriage_allowance", - "description": "Set all values of Marriage Allowance to zero.", - "label": "Abolish Marriage Allowance", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.capped_mcad": { - "type": "parameter", - "parameter": "gov.abolitions.capped_mcad", - "description": "Set all values of capped Married Couples' Allowance deduction to zero.", - "label": "Abolish capped Married Couples' Allowance deduction", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.unused_personal_allowance": { - "type": "parameter", - "parameter": "gov.abolitions.unused_personal_allowance", - "description": "Set all values of Unused personal allowance to zero.", - "label": "Abolish Unused personal allowance", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.personal_allowance": { - "type": "parameter", - "parameter": "gov.abolitions.personal_allowance", - "description": "Set all values of Personal Allowance for the year to zero.", - "label": "Abolish Personal Allowance for the year", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.trading_allowance_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.trading_allowance_deduction", - "description": "Set all values of Deduction applied by the trading allowance to zero.", - "label": "Abolish Deduction applied by the trading allowance", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.partners_unused_personal_allowance": { - "type": "parameter", - "parameter": "gov.abolitions.partners_unused_personal_allowance", - "description": "Set all values of Partner's unused personal allowance to zero.", - "label": "Abolish Partner's unused personal allowance", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.trading_allowance": { - "type": "parameter", - "parameter": "gov.abolitions.trading_allowance", - "description": "Set all values of Trading Allowance for the year to zero.", - "label": "Abolish Trading Allowance for the year", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dividend_allowance": { - "type": "parameter", - "parameter": "gov.abolitions.dividend_allowance", - "description": "Set all values of Dividend allowance for the person to zero.", - "label": "Abolish Dividend allowance for the person", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.married_couples_allowance_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.married_couples_allowance_deduction", - "description": "Set all values of Deduction from Married Couples' allowance for the year to zero.", - "label": "Abolish Deduction from Married Couples' allowance for the year", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.property_allowance_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.property_allowance_deduction", - "description": "Set all values of Deduction applied by the property allowance to zero.", - "label": "Abolish Deduction applied by the property allowance", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.savings_allowance": { - "type": "parameter", - "parameter": "gov.abolitions.savings_allowance", - "description": "Set all values of Savings Allowance for the year to zero.", - "label": "Abolish Savings Allowance for the year", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pension_annual_allowance": { - "type": "parameter", - "parameter": "gov.abolitions.pension_annual_allowance", - "description": "Set all values of Annual Allowance for pension contributions to zero.", - "label": "Abolish Annual Allowance for pension contributions", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.received_allowances": { - "type": "parameter", - "parameter": "gov.abolitions.received_allowances", - "description": "Set all values of Total of all allowances received by an individual; minimum value of 0, maximum value of 100% of the individual's income to zero.", - "label": "Abolish Total of all allowances received by an individual; minimum value of 0, maximum value of 100% of the individual's income", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.received_allowances_earned_income": { - "type": "parameter", - "parameter": "gov.abolitions.received_allowances_earned_income", - "description": "Set all values of The portion of all allowances (minus those only applicable to certain types of income) that is applied to earned income to zero.", - "label": "Abolish The portion of all allowances (minus those only applicable to certain types of income) that is applied to earned income", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.received_allowances_savings_income": { - "type": "parameter", - "parameter": "gov.abolitions.received_allowances_savings_income", - "description": "Set all values of The portion of all allowances (minus those only applicable to one income type) calculated after earned taxable income, but before dividends. This is applied to savings interest income. to zero.", - "label": "Abolish The portion of all allowances (minus those only applicable to one income type) calculated after earned taxable income, but before dividends. This is applied to savings interest income.", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.received_allowances_dividend_income": { - "type": "parameter", - "parameter": "gov.abolitions.received_allowances_dividend_income", - "description": "Set all values of The portion of all allowances (excluding those for a particular income type) calculated last, applied to dividends. to zero.", - "label": "Abolish The portion of all allowances (excluding those for a particular income type) calculated last, applied to dividends.", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxable_miscellaneous_income": { - "type": "parameter", - "parameter": "gov.abolitions.taxable_miscellaneous_income", - "description": "Set all values of Amount of miscellaneous income that is taxable to zero.", - "label": "Abolish Amount of miscellaneous income that is taxable", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxable_self_employment_income": { - "type": "parameter", - "parameter": "gov.abolitions.taxable_self_employment_income", - "description": "Set all values of Amount of trading income that is taxable to zero.", - "label": "Abolish Amount of trading income that is taxable", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxable_employment_income": { - "type": "parameter", - "parameter": "gov.abolitions.taxable_employment_income", - "description": "Set all values of Net taxable earnings to zero.", - "label": "Abolish Net taxable earnings", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxable_property_income": { - "type": "parameter", - "parameter": "gov.abolitions.taxable_property_income", - "description": "Set all values of Amount of property income that is taxable to zero.", - "label": "Abolish Amount of property income that is taxable", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxable_social_security_income": { - "type": "parameter", - "parameter": "gov.abolitions.taxable_social_security_income", - "description": "Set all values of Amount of social security income that is taxable to zero.", - "label": "Abolish Amount of social security income that is taxable", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxable_dividend_income": { - "type": "parameter", - "parameter": "gov.abolitions.taxable_dividend_income", - "description": "Set all values of Amount of dividend income that is taxable to zero.", - "label": "Abolish Amount of dividend income that is taxable", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxed_dividend_income": { - "type": "parameter", - "parameter": "gov.abolitions.taxed_dividend_income", - "description": "Set all values of Dividend income which is taxed to zero.", - "label": "Abolish Dividend income which is taxed", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxable_pension_income": { - "type": "parameter", - "parameter": "gov.abolitions.taxable_pension_income", - "description": "Set all values of Amount of pension income that is taxable to zero.", - "label": "Abolish Amount of pension income that is taxable", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxable_savings_interest_income": { - "type": "parameter", - "parameter": "gov.abolitions.taxable_savings_interest_income", - "description": "Set all values of Amount of savings interest which is taxable to zero.", - "label": "Abolish Amount of savings interest which is taxable", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tax_free_savings_income": { - "type": "parameter", - "parameter": "gov.abolitions.tax_free_savings_income", - "description": "Set all values of Income from savings in tax-free accounts to zero.", - "label": "Abolish Income from savings in tax-free accounts", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.CB_HITC": { - "type": "parameter", - "parameter": "gov.abolitions.CB_HITC", - "description": "Set all values of Child Benefit High-Income Tax Charge to zero.", - "label": "Abolish Child Benefit High-Income Tax Charge", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.loss_relief": { - "type": "parameter", - "parameter": "gov.abolitions.loss_relief", - "description": "Set all values of Tax relief from trading losses to zero.", - "label": "Abolish Tax relief from trading losses", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.employment_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.employment_deductions", - "description": "Set all values of Deductions from employment income to zero.", - "label": "Abolish Deductions from employment income", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nhs_spending": { - "type": "parameter", - "parameter": "gov.abolitions.nhs_spending", - "description": "Set all values of NHS spending to zero.", - "label": "Abolish NHS spending", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.free_tv_licence_value": { - "type": "parameter", - "parameter": "gov.abolitions.free_tv_licence_value", - "description": "Set all values of free TV licence value to zero.", - "label": "Abolish free TV licence value", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.would_evade_tv_licence_fee": { - "type": "parameter", - "parameter": "gov.abolitions.would_evade_tv_licence_fee", - "description": "Set all values of Would evade TV licence fee to zero.", - "label": "Abolish Would evade TV licence fee", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tv_licence_discount": { - "type": "parameter", - "parameter": "gov.abolitions.tv_licence_discount", - "description": "Set all values of TV licence discount to zero.", - "label": "Abolish TV licence discount", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tv_licence": { - "type": "parameter", - "parameter": "gov.abolitions.tv_licence", - "description": "Set all values of TV licence to zero.", - "label": "Abolish TV licence", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_SP_age": { - "type": "parameter", - "parameter": "gov.abolitions.is_SP_age", - "description": "Set all values of Whether the person is State Pension Age to zero.", - "label": "Abolish Whether the person is State Pension Age", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tax_credits": { - "type": "parameter", - "parameter": "gov.abolitions.tax_credits", - "description": "Set all values of Tax Credits to zero.", - "label": "Abolish Tax Credits", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.maternity_allowance": { - "type": "parameter", - "parameter": "gov.abolitions.maternity_allowance", - "description": "Set all values of Maternity Allowance to zero.", - "label": "Abolish Maternity Allowance", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.baseline_ctc_entitlement": { - "type": "parameter", - "parameter": "gov.abolitions.baseline_ctc_entitlement", - "description": "Set all values of Receives Child Tax Credit (baseline) to zero.", - "label": "Abolish Receives Child Tax Credit (baseline)", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.WTC_childcare_element": { - "type": "parameter", - "parameter": "gov.abolitions.WTC_childcare_element", - "description": "Set all values of Working Tax Credit childcare element to zero.", - "label": "Abolish Working Tax Credit childcare element", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.WTC_couple_element": { - "type": "parameter", - "parameter": "gov.abolitions.WTC_couple_element", - "description": "Set all values of Working Tax Credit couple element to zero.", - "label": "Abolish Working Tax Credit couple element", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.additional_state_pension": { - "type": "parameter", - "parameter": "gov.abolitions.additional_state_pension", - "description": "Set all values of additional State Pension to zero.", - "label": "Abolish additional State Pension", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.working_tax_credit": { - "type": "parameter", - "parameter": "gov.abolitions.working_tax_credit", - "description": "Set all values of Working Tax Credit to zero.", - "label": "Abolish Working Tax Credit", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_CTC_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.is_CTC_eligible", - "description": "Set all values of Child Tax Credit eligibility to zero.", - "label": "Abolish Child Tax Credit eligibility", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.basic_state_pension": { - "type": "parameter", - "parameter": "gov.abolitions.basic_state_pension", - "description": "Set all values of basic State Pension to zero.", - "label": "Abolish basic State Pension", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.income_support": { - "type": "parameter", - "parameter": "gov.abolitions.income_support", - "description": "Set all values of Income Support to zero.", - "label": "Abolish Income Support", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.new_state_pension": { - "type": "parameter", - "parameter": "gov.abolitions.new_state_pension", - "description": "Set all values of new State Pension to zero.", - "label": "Abolish new State Pension", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.sda": { - "type": "parameter", - "parameter": "gov.abolitions.sda", - "description": "Set all values of Severe Disablement Allowance to zero.", - "label": "Abolish Severe Disablement Allowance", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.income_support_applicable_income": { - "type": "parameter", - "parameter": "gov.abolitions.income_support_applicable_income", - "description": "Set all values of Relevant income for Income Support means test to zero.", - "label": "Abolish Relevant income for Income Support means test", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.CTC_family_element": { - "type": "parameter", - "parameter": "gov.abolitions.CTC_family_element", - "description": "Set all values of CTC entitlement in the Family Element to zero.", - "label": "Abolish CTC entitlement in the Family Element", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.esa_income": { - "type": "parameter", - "parameter": "gov.abolitions.esa_income", - "description": "Set all values of ESA (income-based) to zero.", - "label": "Abolish ESA (income-based)", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.carers_allowance": { - "type": "parameter", - "parameter": "gov.abolitions.carers_allowance", - "description": "Set all values of Carer's Allowance to zero.", - "label": "Abolish Carer's Allowance", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.CTC_maximum_rate": { - "type": "parameter", - "parameter": "gov.abolitions.CTC_maximum_rate", - "description": "Set all values of Maximum Child Tax Credit to zero.", - "label": "Abolish Maximum Child Tax Credit", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.would_claim_IS": { - "type": "parameter", - "parameter": "gov.abolitions.would_claim_IS", - "description": "Set all values of Would claim Income Support to zero.", - "label": "Abolish Would claim Income Support", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ctc_entitlement": { - "type": "parameter", - "parameter": "gov.abolitions.ctc_entitlement", - "description": "Set all values of CTC entitlement to zero.", - "label": "Abolish CTC entitlement", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.bsp": { - "type": "parameter", - "parameter": "gov.abolitions.bsp", - "description": "Set all values of Bereavement Support Payment to zero.", - "label": "Abolish Bereavement Support Payment", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.BRMA_LHA_rate": { - "type": "parameter", - "parameter": "gov.abolitions.BRMA_LHA_rate", - "description": "Set all values of LHA rate to zero.", - "label": "Abolish LHA rate", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tax_credits_reduction": { - "type": "parameter", - "parameter": "gov.abolitions.tax_credits_reduction", - "description": "Set all values of Reduction in Tax Credits from means-tested income to zero.", - "label": "Abolish Reduction in Tax Credits from means-tested income", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.winter_fuel_allowance": { - "type": "parameter", - "parameter": "gov.abolitions.winter_fuel_allowance", - "description": "Set all values of Winter Fuel Allowance to zero.", - "label": "Abolish Winter Fuel Allowance", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_WTC_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.is_WTC_eligible", - "description": "Set all values of Working Tax Credit eligibility to zero.", - "label": "Abolish Working Tax Credit eligibility", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tax_credits_applicable_income": { - "type": "parameter", - "parameter": "gov.abolitions.tax_credits_applicable_income", - "description": "Set all values of Applicable income for Tax Credits to zero.", - "label": "Abolish Applicable income for Tax Credits", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.LHA_allowed_bedrooms": { - "type": "parameter", - "parameter": "gov.abolitions.LHA_allowed_bedrooms", - "description": "Set all values of The number of bedrooms covered by LHA for the benefit unit to zero.", - "label": "Abolish The number of bedrooms covered by LHA for the benefit unit", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.income_support_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.income_support_eligible", - "description": "Set all values of Whether eligible for Income Support to zero.", - "label": "Abolish Whether eligible for Income Support", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wtc_entitlement": { - "type": "parameter", - "parameter": "gov.abolitions.wtc_entitlement", - "description": "Set all values of WTC entitlement to zero.", - "label": "Abolish WTC entitlement", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.council_tax_benefit": { - "type": "parameter", - "parameter": "gov.abolitions.council_tax_benefit", - "description": "Set all values of Council Tax Benefit to zero.", - "label": "Abolish Council Tax Benefit", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_benefit_cap_exempt": { - "type": "parameter", - "parameter": "gov.abolitions.is_benefit_cap_exempt", - "description": "Set all values of Whether exempt from the benefits cap to zero.", - "label": "Abolish Whether exempt from the benefits cap", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_child_for_CTC": { - "type": "parameter", - "parameter": "gov.abolitions.is_child_for_CTC", - "description": "Set all values of Child eligible for Child Tax Credit to zero.", - "label": "Abolish Child eligible for Child Tax Credit", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.LHA_cap": { - "type": "parameter", - "parameter": "gov.abolitions.LHA_cap", - "description": "Set all values of Applicable amount for LHA to zero.", - "label": "Abolish Applicable amount for LHA", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.would_claim_CTC": { - "type": "parameter", - "parameter": "gov.abolitions.would_claim_CTC", - "description": "Set all values of Would claim Child Tax Credit to zero.", - "label": "Abolish Would claim Child Tax Credit", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.state_pension_reported": { - "type": "parameter", - "parameter": "gov.abolitions.state_pension_reported", - "description": "Set all values of Reported income from the State Pension to zero.", - "label": "Abolish Reported income from the State Pension", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.WTC_maximum_rate": { - "type": "parameter", - "parameter": "gov.abolitions.WTC_maximum_rate", - "description": "Set all values of Working Tax Credit maximum rate to zero.", - "label": "Abolish Working Tax Credit maximum rate", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.esa": { - "type": "parameter", - "parameter": "gov.abolitions.esa", - "description": "Set all values of ESA to zero.", - "label": "Abolish ESA", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.would_claim_WTC": { - "type": "parameter", - "parameter": "gov.abolitions.would_claim_WTC", - "description": "Set all values of Would claim Working Tax Credit to zero.", - "label": "Abolish Would claim Working Tax Credit", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.income_support_applicable_amount": { - "type": "parameter", - "parameter": "gov.abolitions.income_support_applicable_amount", - "description": "Set all values of Applicable amount of Income Support to zero.", - "label": "Abolish Applicable amount of Income Support", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.WTC_disabled_element": { - "type": "parameter", - "parameter": "gov.abolitions.WTC_disabled_element", - "description": "Set all values of Working Tax Credit disabled element to zero.", - "label": "Abolish Working Tax Credit disabled element", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.jsa_income": { - "type": "parameter", - "parameter": "gov.abolitions.jsa_income", - "description": "Set all values of JSA (income-based) to zero.", - "label": "Abolish JSA (income-based)", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.esa_contrib": { - "type": "parameter", - "parameter": "gov.abolitions.esa_contrib", - "description": "Set all values of ESA (contribution-based) to zero.", - "label": "Abolish ESA (contribution-based)", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.incapacity_benefit": { - "type": "parameter", - "parameter": "gov.abolitions.incapacity_benefit", - "description": "Set all values of Incapacity Benefit to zero.", - "label": "Abolish Incapacity Benefit", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ssmg": { - "type": "parameter", - "parameter": "gov.abolitions.ssmg", - "description": "Set all values of Sure Start Maternity Grant to zero.", - "label": "Abolish Sure Start Maternity Grant", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.attendance_allowance": { - "type": "parameter", - "parameter": "gov.abolitions.attendance_allowance", - "description": "Set all values of Attendance Allowance to zero.", - "label": "Abolish Attendance Allowance", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.iidb": { - "type": "parameter", - "parameter": "gov.abolitions.iidb", - "description": "Set all values of Industrial Injuries Disablement Benefit to zero.", - "label": "Abolish Industrial Injuries Disablement Benefit", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.LHA_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.LHA_eligible", - "description": "Set all values of Eligibility for Local Housing Allowance to zero.", - "label": "Abolish Eligibility for Local Housing Allowance", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.WTC_basic_element": { - "type": "parameter", - "parameter": "gov.abolitions.WTC_basic_element", - "description": "Set all values of Working Tax Credit basic element to zero.", - "label": "Abolish Working Tax Credit basic element", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.CTC_severely_disabled_child_element": { - "type": "parameter", - "parameter": "gov.abolitions.CTC_severely_disabled_child_element", - "description": "Set all values of CTC entitlement from severely disabled child elements to zero.", - "label": "Abolish CTC entitlement from severely disabled child elements", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_CTC_child_limit_exempt": { - "type": "parameter", - "parameter": "gov.abolitions.is_CTC_child_limit_exempt", - "description": "Set all values of Exemption from Child Tax Credit child limit to zero.", - "label": "Abolish Exemption from Child Tax Credit child limit", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.afcs": { - "type": "parameter", - "parameter": "gov.abolitions.afcs", - "description": "Set all values of Armed Forces Compensation Scheme to zero.", - "label": "Abolish Armed Forces Compensation Scheme", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.baseline_wtc_entitlement": { - "type": "parameter", - "parameter": "gov.abolitions.baseline_wtc_entitlement", - "description": "Set all values of Baseline Working Tax Credit to zero.", - "label": "Abolish Baseline Working Tax Credit", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.WTC_worker_element": { - "type": "parameter", - "parameter": "gov.abolitions.WTC_worker_element", - "description": "Set all values of Working Tax Credit worker element to zero.", - "label": "Abolish Working Tax Credit worker element", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.CTC_disabled_child_element": { - "type": "parameter", - "parameter": "gov.abolitions.CTC_disabled_child_element", - "description": "Set all values of CTC entitlement from disabled child elements to zero.", - "label": "Abolish CTC entitlement from disabled child elements", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.WTC_severely_disabled_element": { - "type": "parameter", - "parameter": "gov.abolitions.WTC_severely_disabled_element", - "description": "Set all values of Working Tax Credit severely disabled element to zero.", - "label": "Abolish Working Tax Credit severely disabled element", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.student_payments": { - "type": "parameter", - "parameter": "gov.abolitions.student_payments", - "description": "Set all values of Student payments to zero.", - "label": "Abolish Student payments", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.jsa": { - "type": "parameter", - "parameter": "gov.abolitions.jsa", - "description": "Set all values of Amount of Jobseeker's Allowance for this family to zero.", - "label": "Abolish Amount of Jobseeker's Allowance for this family", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.child_tax_credit_pre_minimum": { - "type": "parameter", - "parameter": "gov.abolitions.child_tax_credit_pre_minimum", - "description": "Set all values of Child Tax Credit pre-minimum to zero.", - "label": "Abolish Child Tax Credit pre-minimum", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.income_support_entitlement": { - "type": "parameter", - "parameter": "gov.abolitions.income_support_entitlement", - "description": "Set all values of IS entitlement to zero.", - "label": "Abolish IS entitlement", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ctc_child_limit_affected": { - "type": "parameter", - "parameter": "gov.abolitions.ctc_child_limit_affected", - "description": "Set all values of affected by the CTC child limit to zero.", - "label": "Abolish affected by the CTC child limit", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.benefit_cap": { - "type": "parameter", - "parameter": "gov.abolitions.benefit_cap", - "description": "Set all values of Benefit cap for the family to zero.", - "label": "Abolish Benefit cap for the family", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.child_tax_credit": { - "type": "parameter", - "parameter": "gov.abolitions.child_tax_credit", - "description": "Set all values of Child Tax Credit to zero.", - "label": "Abolish Child Tax Credit", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.benefit_cap_reduction": { - "type": "parameter", - "parameter": "gov.abolitions.benefit_cap_reduction", - "description": "Set all values of benefit cap reduction to zero.", - "label": "Abolish benefit cap reduction", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.CTC_child_element": { - "type": "parameter", - "parameter": "gov.abolitions.CTC_child_element", - "description": "Set all values of Child Tax Credit child element to zero.", - "label": "Abolish Child Tax Credit child element", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.state_pension_age": { - "type": "parameter", - "parameter": "gov.abolitions.state_pension_age", - "description": "Set all values of State Pension age for this person to zero.", - "label": "Abolish State Pension age for this person", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.WTC_lone_parent_element": { - "type": "parameter", - "parameter": "gov.abolitions.WTC_lone_parent_element", - "description": "Set all values of Working Tax Credit lone parent element to zero.", - "label": "Abolish Working Tax Credit lone parent element", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.jsa_contrib": { - "type": "parameter", - "parameter": "gov.abolitions.jsa_contrib", - "description": "Set all values of JSA (contribution-based) to zero.", - "label": "Abolish JSA (contribution-based)", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.working_tax_credit_pre_minimum": { - "type": "parameter", - "parameter": "gov.abolitions.working_tax_credit_pre_minimum", - "description": "Set all values of Working Tax Credit pre-minimum to zero.", - "label": "Abolish Working Tax Credit pre-minimum", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_uc_entitled_baseline": { - "type": "parameter", - "parameter": "gov.abolitions.is_uc_entitled_baseline", - "description": "Set all values of meets the means test for Universal Credit under baseline law to zero.", - "label": "Abolish meets the means test for Universal Credit under baseline law", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_uc_entitled": { - "type": "parameter", - "parameter": "gov.abolitions.is_uc_entitled", - "description": "Set all values of meets the means test for Universal Credit to zero.", - "label": "Abolish meets the means test for Universal Credit", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.would_claim_uc": { - "type": "parameter", - "parameter": "gov.abolitions.would_claim_uc", - "description": "Set all values of Would claim Universal Credit to zero.", - "label": "Abolish Would claim Universal Credit", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.uc_maximum_amount": { - "type": "parameter", - "parameter": "gov.abolitions.uc_maximum_amount", - "description": "Set all values of maximum Universal Credit amount to zero.", - "label": "Abolish maximum Universal Credit amount", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.universal_credit": { - "type": "parameter", - "parameter": "gov.abolitions.universal_credit", - "description": "Set all values of Universal Credit to zero.", - "label": "Abolish Universal Credit", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.universal_credit_pre_benefit_cap": { - "type": "parameter", - "parameter": "gov.abolitions.universal_credit_pre_benefit_cap", - "description": "Set all values of Universal Credit before benefit cap to zero.", - "label": "Abolish Universal Credit before benefit cap", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_uc_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.is_uc_eligible", - "description": "Set all values of Eligible for the Universal Credit to zero.", - "label": "Abolish Eligible for the Universal Credit", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.uc_standard_allowance": { - "type": "parameter", - "parameter": "gov.abolitions.uc_standard_allowance", - "description": "Set all values of Universal Credit standard allowance to zero.", - "label": "Abolish Universal Credit standard allowance", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.uc_individual_child_element": { - "type": "parameter", - "parameter": "gov.abolitions.uc_individual_child_element", - "description": "Set all values of Universal Credit child element to zero.", - "label": "Abolish Universal Credit child element", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.uc_is_child_born_before_child_limit": { - "type": "parameter", - "parameter": "gov.abolitions.uc_is_child_born_before_child_limit", - "description": "Set all values of Born before Universal Credit child limit to zero.", - "label": "Abolish Born before Universal Credit child limit", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.uc_child_element": { - "type": "parameter", - "parameter": "gov.abolitions.uc_child_element", - "description": "Set all values of Universal Credit child element to zero.", - "label": "Abolish Universal Credit child element", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.uc_is_child_limit_affected": { - "type": "parameter", - "parameter": "gov.abolitions.uc_is_child_limit_affected", - "description": "Set all values of affected by the UC child limit to zero.", - "label": "Abolish affected by the UC child limit", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.uc_individual_disabled_child_element": { - "type": "parameter", - "parameter": "gov.abolitions.uc_individual_disabled_child_element", - "description": "Set all values of Universal Credit disabled child element to zero.", - "label": "Abolish Universal Credit disabled child element", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.uc_individual_severely_disabled_child_element": { - "type": "parameter", - "parameter": "gov.abolitions.uc_individual_severely_disabled_child_element", - "description": "Set all values of Universal Credit severely disabled child element to zero.", - "label": "Abolish Universal Credit severely disabled child element", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.uc_income_reduction": { - "type": "parameter", - "parameter": "gov.abolitions.uc_income_reduction", - "description": "Set all values of reduction from income for Universal Credit to zero.", - "label": "Abolish reduction from income for Universal Credit", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.uc_unearned_income": { - "type": "parameter", - "parameter": "gov.abolitions.uc_unearned_income", - "description": "Set all values of Universal Credit unearned income to zero.", - "label": "Abolish Universal Credit unearned income", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.uc_earned_income": { - "type": "parameter", - "parameter": "gov.abolitions.uc_earned_income", - "description": "Set all values of Universal Credit earned income (after disregards and tax) to zero.", - "label": "Abolish Universal Credit earned income (after disregards and tax)", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.uc_mif_applies": { - "type": "parameter", - "parameter": "gov.abolitions.uc_mif_applies", - "description": "Set all values of Universal Credit minimum income floor applies to zero.", - "label": "Abolish Universal Credit minimum income floor applies", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.uc_minimum_income_floor": { - "type": "parameter", - "parameter": "gov.abolitions.uc_minimum_income_floor", - "description": "Set all values of Universal Credit minimum income floor to zero.", - "label": "Abolish Universal Credit minimum income floor", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.uc_mif_capped_earned_income": { - "type": "parameter", - "parameter": "gov.abolitions.uc_mif_capped_earned_income", - "description": "Set all values of Universal Credit gross earned income (incl. MIF) to zero.", - "label": "Abolish Universal Credit gross earned income (incl. MIF)", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.uc_childcare_element_eligible_children": { - "type": "parameter", - "parameter": "gov.abolitions.uc_childcare_element_eligible_children", - "description": "Set all values of Universal Credit childcare element eligible children to zero.", - "label": "Abolish Universal Credit childcare element eligible children", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.uc_childcare_work_condition": { - "type": "parameter", - "parameter": "gov.abolitions.uc_childcare_work_condition", - "description": "Set all values of Meets Universal Credit childcare work condition to zero.", - "label": "Abolish Meets Universal Credit childcare work condition", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.uc_childcare_element": { - "type": "parameter", - "parameter": "gov.abolitions.uc_childcare_element", - "description": "Set all values of Universal Credit childcare element to zero.", - "label": "Abolish Universal Credit childcare element", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.uc_maximum_childcare_element_amount": { - "type": "parameter", - "parameter": "gov.abolitions.uc_maximum_childcare_element_amount", - "description": "Set all values of Maximum Universal Credit childcare element to zero.", - "label": "Abolish Maximum Universal Credit childcare element", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.uc_disability_elements": { - "type": "parameter", - "parameter": "gov.abolitions.uc_disability_elements", - "description": "Set all values of Universal Credit disability elements to zero.", - "label": "Abolish Universal Credit disability elements", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.uc_LCWRA_element": { - "type": "parameter", - "parameter": "gov.abolitions.uc_LCWRA_element", - "description": "Set all values of Universal Credit limited capability for work-related-activity element to zero.", - "label": "Abolish Universal Credit limited capability for work-related-activity element", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.uc_limited_capability_for_WRA": { - "type": "parameter", - "parameter": "gov.abolitions.uc_limited_capability_for_WRA", - "description": "Set all values of Assessed to have limited capability for work-related activity to zero.", - "label": "Abolish Assessed to have limited capability for work-related activity", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.uc_carer_element": { - "type": "parameter", - "parameter": "gov.abolitions.uc_carer_element", - "description": "Set all values of Universal Credit carer element to zero.", - "label": "Abolish Universal Credit carer element", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.uc_housing_costs_element": { - "type": "parameter", - "parameter": "gov.abolitions.uc_housing_costs_element", - "description": "Set all values of Universal Credit housing costs element to zero.", - "label": "Abolish Universal Credit housing costs element", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.uc_non_dep_deduction_exempt": { - "type": "parameter", - "parameter": "gov.abolitions.uc_non_dep_deduction_exempt", - "description": "Set all values of Exempt from the Universal Credit non-dependent housing costs contributions deduction to zero.", - "label": "Abolish Exempt from the Universal Credit non-dependent housing costs contributions deduction", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.uc_individual_non_dep_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.uc_individual_non_dep_deduction", - "description": "Set all values of Universal Credit non-dependent deduction (individual) to zero.", - "label": "Abolish Universal Credit non-dependent deduction (individual)", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.uc_non_dep_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.uc_non_dep_deductions", - "description": "Set all values of Universal Credit non-dependent deductions to zero.", - "label": "Abolish Universal Credit non-dependent deductions", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.uc_individual_non_dep_deduction_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.uc_individual_non_dep_deduction_eligible", - "description": "Set all values of Eligible person for the Universal Credit non-dependent deduction to zero.", - "label": "Abolish Eligible person for the Universal Credit non-dependent deduction", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.uc_work_allowance": { - "type": "parameter", - "parameter": "gov.abolitions.uc_work_allowance", - "description": "Set all values of Universal Credit work allowance to zero.", - "label": "Abolish Universal Credit work allowance", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_uc_work_allowance_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.is_uc_work_allowance_eligible", - "description": "Set all values of Family receives a Universal Credit Work Allowance to zero.", - "label": "Abolish Family receives a Universal Credit Work Allowance", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dla_sc_middle_plus": { - "type": "parameter", - "parameter": "gov.abolitions.dla_sc_middle_plus", - "description": "Set all values of Receives at least middle-rate DLA (self-care) to zero.", - "label": "Abolish Receives at least middle-rate DLA (self-care)", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dla": { - "type": "parameter", - "parameter": "gov.abolitions.dla", - "description": "Set all values of Disability Living Allowance to zero.", - "label": "Abolish Disability Living Allowance", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dla_sc": { - "type": "parameter", - "parameter": "gov.abolitions.dla_sc", - "description": "Set all values of DLA (self-care) to zero.", - "label": "Abolish DLA (self-care)", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.receives_highest_dla_sc": { - "type": "parameter", - "parameter": "gov.abolitions.receives_highest_dla_sc", - "description": "Set all values of Receives the highest DLA (self-care) category to zero.", - "label": "Abolish Receives the highest DLA (self-care) category", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dla_m": { - "type": "parameter", - "parameter": "gov.abolitions.dla_m", - "description": "Set all values of DLA (mobility) to zero.", - "label": "Abolish DLA (mobility)", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pension_credit": { - "type": "parameter", - "parameter": "gov.abolitions.pension_credit", - "description": "Set all values of Pension Credit to zero.", - "label": "Abolish Pension Credit", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pension_credit_entitlement": { - "type": "parameter", - "parameter": "gov.abolitions.pension_credit_entitlement", - "description": "Set all values of PC entitlement to zero.", - "label": "Abolish PC entitlement", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_pension_credit_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.is_pension_credit_eligible", - "description": "Set all values of Eligible for Pension Credit to zero.", - "label": "Abolish Eligible for Pension Credit", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pension_credit_earnings": { - "type": "parameter", - "parameter": "gov.abolitions.pension_credit_earnings", - "description": "Set all values of earnings for Pension Credit to zero.", - "label": "Abolish earnings for Pension Credit", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pension_credit_income": { - "type": "parameter", - "parameter": "gov.abolitions.pension_credit_income", - "description": "Set all values of Income for Pension Credit to zero.", - "label": "Abolish Income for Pension Credit", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.would_claim_pc": { - "type": "parameter", - "parameter": "gov.abolitions.would_claim_pc", - "description": "Set all values of Would claim Pension Credit to zero.", - "label": "Abolish Would claim Pension Credit", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.savings_credit": { - "type": "parameter", - "parameter": "gov.abolitions.savings_credit", - "description": "Set all values of Savings Credit to zero.", - "label": "Abolish Savings Credit", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.savings_credit_income": { - "type": "parameter", - "parameter": "gov.abolitions.savings_credit_income", - "description": "Set all values of Income for Savings Credit to zero.", - "label": "Abolish Income for Savings Credit", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.meets_savings_credit_age_requirement": { - "type": "parameter", - "parameter": "gov.abolitions.meets_savings_credit_age_requirement", - "description": "Set all values of whether the person reached State Pension Age before the Savings Credit cutoff year to zero.", - "label": "Abolish whether the person reached State Pension Age before the Savings Credit cutoff year", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_savings_credit_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.is_savings_credit_eligible", - "description": "Set all values of Eligible for Savings Credit to zero.", - "label": "Abolish Eligible for Savings Credit", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_guarantee_credit_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.is_guarantee_credit_eligible", - "description": "Set all values of Guarantee Credit eligible to zero.", - "label": "Abolish Guarantee Credit eligible", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.guarantee_credit": { - "type": "parameter", - "parameter": "gov.abolitions.guarantee_credit", - "description": "Set all values of Guarantee Credit to zero.", - "label": "Abolish Guarantee Credit", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.minimum_guarantee": { - "type": "parameter", - "parameter": "gov.abolitions.minimum_guarantee", - "description": "Set all values of Minimum Guarantee to zero.", - "label": "Abolish Minimum Guarantee", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.standard_minimum_guarantee": { - "type": "parameter", - "parameter": "gov.abolitions.standard_minimum_guarantee", - "description": "Set all values of Standard Minimum Guarantee to zero.", - "label": "Abolish Standard Minimum Guarantee", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.carer_minimum_guarantee_addition": { - "type": "parameter", - "parameter": "gov.abolitions.carer_minimum_guarantee_addition", - "description": "Set all values of Carer-related increase to zero.", - "label": "Abolish Carer-related increase", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.severe_disability_minimum_guarantee_addition": { - "type": "parameter", - "parameter": "gov.abolitions.severe_disability_minimum_guarantee_addition", - "description": "Set all values of Severe disability-related increase to zero.", - "label": "Abolish Severe disability-related increase", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.child_minimum_guarantee_addition": { - "type": "parameter", - "parameter": "gov.abolitions.child_minimum_guarantee_addition", - "description": "Set all values of Child-related addition to zero.", - "label": "Abolish Child-related addition", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.additional_minimum_guarantee": { - "type": "parameter", - "parameter": "gov.abolitions.additional_minimum_guarantee", - "description": "Set all values of Additional Minimum Guarantee to zero.", - "label": "Abolish Additional Minimum Guarantee", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.receives_enhanced_pip_dl": { - "type": "parameter", - "parameter": "gov.abolitions.receives_enhanced_pip_dl", - "description": "Set all values of Receives enhanced PIP (daily living) to zero.", - "label": "Abolish Receives enhanced PIP (daily living)", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pip_dl": { - "type": "parameter", - "parameter": "gov.abolitions.pip_dl", - "description": "Set all values of PIP (daily living) to zero.", - "label": "Abolish PIP (daily living)", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pip_m": { - "type": "parameter", - "parameter": "gov.abolitions.pip_m", - "description": "Set all values of PIP (mobility) to zero.", - "label": "Abolish PIP (mobility)", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pip": { - "type": "parameter", - "parameter": "gov.abolitions.pip", - "description": "Set all values of Personal Independence Payment to zero.", - "label": "Abolish Personal Independence Payment", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.housing_benefit": { - "type": "parameter", - "parameter": "gov.abolitions.housing_benefit", - "description": "Set all values of Housing Benefit to zero.", - "label": "Abolish Housing Benefit", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.housing_benefit_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.housing_benefit_eligible", - "description": "Set all values of eligible for the Housing Benefit to zero.", - "label": "Abolish eligible for the Housing Benefit", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.housing_benefit_applicable_amount": { - "type": "parameter", - "parameter": "gov.abolitions.housing_benefit_applicable_amount", - "description": "Set all values of applicable Housing Benefit amount to zero.", - "label": "Abolish applicable Housing Benefit amount", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.would_claim_housing_benefit": { - "type": "parameter", - "parameter": "gov.abolitions.would_claim_housing_benefit", - "description": "Set all values of Would claim the Housing Benefit to zero.", - "label": "Abolish Would claim the Housing Benefit", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.housing_benefit_pre_benefit_cap": { - "type": "parameter", - "parameter": "gov.abolitions.housing_benefit_pre_benefit_cap", - "description": "Set all values of Housing Benefit pre-benefit cap to zero.", - "label": "Abolish Housing Benefit pre-benefit cap", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.housing_benefit_applicable_income_childcare_element": { - "type": "parameter", - "parameter": "gov.abolitions.housing_benefit_applicable_income_childcare_element", - "description": "Set all values of Housing Benefit applicable income childcare element to zero.", - "label": "Abolish Housing Benefit applicable income childcare element", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.housing_benefit_applicable_income_disregard": { - "type": "parameter", - "parameter": "gov.abolitions.housing_benefit_applicable_income_disregard", - "description": "Set all values of Housing Benefit applicable income disregards to zero.", - "label": "Abolish Housing Benefit applicable income disregards", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.housing_benefit_applicable_income": { - "type": "parameter", - "parameter": "gov.abolitions.housing_benefit_applicable_income", - "description": "Set all values of relevant income for Housing Benefit means test to zero.", - "label": "Abolish relevant income for Housing Benefit means test", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.household_benefits_individual_non_dep_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.household_benefits_individual_non_dep_deduction", - "description": "Set all values of Housing Benefit individual non-dependent deduction to zero.", - "label": "Abolish Housing Benefit individual non-dependent deduction", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.housing_benefit_non_dep_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.housing_benefit_non_dep_deductions", - "description": "Set all values of non-dependent deductions to zero.", - "label": "Abolish non-dependent deductions", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.housing_benefit_individual_non_dep_deduction_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.housing_benefit_individual_non_dep_deduction_eligible", - "description": "Set all values of eligible person for the Housing Benefit non-dependent deduction to zero.", - "label": "Abolish eligible person for the Housing Benefit non-dependent deduction", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.housing_benefit_baseline_entitlement": { - "type": "parameter", - "parameter": "gov.abolitions.housing_benefit_baseline_entitlement", - "description": "Set all values of basleine Housing Benefit entitlement to zero.", - "label": "Abolish basleine Housing Benefit entitlement", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.housing_benefit_entitlement": { - "type": "parameter", - "parameter": "gov.abolitions.housing_benefit_entitlement", - "description": "Set all values of Housing Benefit entitlement to zero.", - "label": "Abolish Housing Benefit entitlement", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.cost_of_living_support_payment": { - "type": "parameter", - "parameter": "gov.abolitions.cost_of_living_support_payment", - "description": "Set all values of Cost-of-living support payment to zero.", - "label": "Abolish Cost-of-living support payment", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.monthly_epg_subsidy": { - "type": "parameter", - "parameter": "gov.abolitions.monthly_epg_subsidy", - "description": "Set all values of Monthly EPG subsidy to zero.", - "label": "Abolish Monthly EPG subsidy", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.epg_subsidy": { - "type": "parameter", - "parameter": "gov.abolitions.epg_subsidy", - "description": "Set all values of Energy price guarantee subsidy to zero.", - "label": "Abolish Energy price guarantee subsidy", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.monthly_domestic_energy_consumption": { - "type": "parameter", - "parameter": "gov.abolitions.monthly_domestic_energy_consumption", - "description": "Set all values of Monthly domestic energy consumption to zero.", - "label": "Abolish Monthly domestic energy consumption", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.monthly_epg_consumption_level": { - "type": "parameter", - "parameter": "gov.abolitions.monthly_epg_consumption_level", - "description": "Set all values of Monthly EPG subsidy level to zero.", - "label": "Abolish Monthly EPG subsidy level", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.energy_bills_rebate": { - "type": "parameter", - "parameter": "gov.abolitions.energy_bills_rebate", - "description": "Set all values of Energy Bills Rebate to zero.", - "label": "Abolish Energy Bills Rebate", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ebr_energy_bills_credit": { - "type": "parameter", - "parameter": "gov.abolitions.ebr_energy_bills_credit", - "description": "Set all values of Energy bills credit (EBR) to zero.", - "label": "Abolish Energy bills credit (EBR)", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ebr_council_tax_rebate": { - "type": "parameter", - "parameter": "gov.abolitions.ebr_council_tax_rebate", - "description": "Set all values of Council Tax Rebate (EBR) to zero.", - "label": "Abolish Council Tax Rebate (EBR)", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pawhp": { - "type": "parameter", - "parameter": "gov.abolitions.pawhp", - "description": "Set all values of Pension Age Winter Heating Payment to zero.", - "label": "Abolish Pension Age Winter Heating Payment", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.relative_wage_change": { - "type": "parameter", - "parameter": "gov.abolitions.relative_wage_change", - "description": "Set all values of relative wage change to zero.", - "label": "Abolish relative wage change", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.relative_income_change": { - "type": "parameter", - "parameter": "gov.abolitions.relative_income_change", - "description": "Set all values of relative income change to zero.", - "label": "Abolish relative income change", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.substitution_elasticity_lsr": { - "type": "parameter", - "parameter": "gov.abolitions.substitution_elasticity_lsr", - "description": "Set all values of substitution elasticity of labor supply response to zero.", - "label": "Abolish substitution elasticity of labor supply response", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.employment_income_behavioral_response": { - "type": "parameter", - "parameter": "gov.abolitions.employment_income_behavioral_response", - "description": "Set all values of income-related labor supply change to zero.", - "label": "Abolish income-related labor supply change", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.income_elasticity_lsr": { - "type": "parameter", - "parameter": "gov.abolitions.income_elasticity_lsr", - "description": "Set all values of income elasticity of labor supply response to zero.", - "label": "Abolish income elasticity of labor supply response", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ltt_on_rent": { - "type": "parameter", - "parameter": "gov.abolitions.ltt_on_rent", - "description": "Set all values of LTT on property rental to zero.", - "label": "Abolish LTT on property rental", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ltt_liable": { - "type": "parameter", - "parameter": "gov.abolitions.ltt_liable", - "description": "Set all values of Liable for Land Transaction Tax to zero.", - "label": "Abolish Liable for Land Transaction Tax", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ltt_on_non_residential_property_rent": { - "type": "parameter", - "parameter": "gov.abolitions.ltt_on_non_residential_property_rent", - "description": "Set all values of LTT on non-residential property rent to zero.", - "label": "Abolish LTT on non-residential property rent", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ltt_on_transactions": { - "type": "parameter", - "parameter": "gov.abolitions.ltt_on_transactions", - "description": "Set all values of LTT on property transactions to zero.", - "label": "Abolish LTT on property transactions", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.expected_ltt": { - "type": "parameter", - "parameter": "gov.abolitions.expected_ltt", - "description": "Set all values of Land Transaction Tax (expected) to zero.", - "label": "Abolish Land Transaction Tax (expected)", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ltt_on_non_residential_property_transactions": { - "type": "parameter", - "parameter": "gov.abolitions.ltt_on_non_residential_property_transactions", - "description": "Set all values of LTT on non-residential property transactions to zero.", - "label": "Abolish LTT on non-residential property transactions", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ltt_on_residential_property_rent": { - "type": "parameter", - "parameter": "gov.abolitions.ltt_on_residential_property_rent", - "description": "Set all values of LTT on residential property rent to zero.", - "label": "Abolish LTT on residential property rent", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.land_transaction_tax": { - "type": "parameter", - "parameter": "gov.abolitions.land_transaction_tax", - "description": "Set all values of Land Transaction Tax to zero.", - "label": "Abolish Land Transaction Tax", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ltt_on_residential_property_transactions": { - "type": "parameter", - "parameter": "gov.abolitions.ltt_on_residential_property_transactions", - "description": "Set all values of LTT on residential property to zero.", - "label": "Abolish LTT on residential property", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2025-01-01": false, - "2024-01-01": false, - "2023-01-01": false, - "2022-01-01": false, - "2021-01-01": false, - "2020-01-01": false, - "2019-01-01": false, - "2018-01-01": false, - "2017-01-01": false, - "2016-01-01": false, - "2015-01-01": false, - "0000-01-01": false - }, - "economy": true, - "household": true - } - }, - "entities": { - "household": { - "plural": "households", - "label": "Household", - "doc": "Each household may contain multiple families, or benefit units.", - "is_person": false, - "key": "household", - "roles": { - "member": { - "plural": "members", - "label": "Member", - "doc": "A person who is a citizen of a country." - } - } - }, - "benunit": { - "plural": "benunits", - "label": "Benefit unit", - "doc": "A family is also known as a benefit unit, and contains parents and dependent children.", - "is_person": false, - "key": "benunit", - "roles": { - "member": { - "plural": "members", - "label": "Member", - "doc": "A person who is a citizen of a country." - } - } - }, - "person": { - "plural": "people", - "label": "Person", - "doc": "An individual. The minimal legal entity on which a legislation might be applied.", - "is_person": true, - "key": "person", - "roles": {} - } - }, - "variableModules": { - "contrib.policyengine.consumer_incident_tax_revenue_change": { - "label": "contrib.policyengine.consumer_incident_tax_revenue_change", - "description": null, - "index": 0 - }, - "contrib.policyengine.corporate_incident_tax_revenue_change": { - "label": "contrib.policyengine.corporate_incident_tax_revenue_change", - "description": null, - "index": 0 - }, - "contrib.policyengine.education_budget_change": { - "label": "contrib.policyengine.education_budget_change", - "description": null, - "index": 0 - }, - "contrib.policyengine.high_income_incident_tax_change": { - "label": "contrib.policyengine.high_income_incident_tax_change", - "description": null, - "index": 0 - }, - "contrib.policyengine.nhs_budget_change": { - "label": "contrib.policyengine.nhs_budget_change", - "description": null, - "index": 0 - }, - "contrib.policyengine.pre_budget_change_household_net_income": { - "label": "contrib.policyengine.pre_budget_change_household_net_income", - "description": null, - "index": 0 - }, - "contrib.policyengine.pre_budget_change_ons_household_income_decile": { - "label": "contrib.policyengine.pre_budget_change_ons_household_income_decile", - "description": null, - "index": 0 - }, - "contrib.policyengine.other_public_spending_budget_change": { - "label": "contrib.policyengine.other_public_spending_budget_change", - "description": null, - "index": 0 - }, - "contrib.policyengine.pre_budget_change_household_tax": { - "label": "contrib.policyengine.pre_budget_change_household_tax", - "description": null, - "index": 0 - }, - "contrib.policyengine.pre_budget_change_household_benefits": { - "label": "contrib.policyengine.pre_budget_change_household_benefits", - "description": null, - "index": 0 - }, - "contrib.policyengine.employer_ni.employer_ni_response_consumer_incidence": { - "label": "contrib.policyengine.employer_ni.employer_ni_response_consumer_incidence", - "description": null, - "index": 0 - }, - "contrib.policyengine.employer_ni.employer_ni_fixed_employer_cost_change": { - "label": "contrib.policyengine.employer_ni.employer_ni_fixed_employer_cost_change", - "description": null, - "index": 0 - }, - "contrib.policyengine.employer_ni.employer_cost": { - "label": "contrib.policyengine.employer_ni.employer_cost", - "description": null, - "index": 0 - }, - "contrib.policyengine.employer_ni.adjusted_employer_cost": { - "label": "contrib.policyengine.employer_ni.adjusted_employer_cost", - "description": null, - "index": 0 - }, - "contrib.policyengine.employer_ni.baseline_employer_cost": { - "label": "contrib.policyengine.employer_ni.baseline_employer_cost", - "description": null, - "index": 0 - }, - "contrib.policyengine.employer_ni.employer_ni_response_capital_incidence": { - "label": "contrib.policyengine.employer_ni.employer_ni_response_capital_incidence", - "description": null, - "index": 0 - }, - "contrib.labour.attends_private_school": { - "label": "contrib.labour.attends_private_school", - "description": null, - "index": 0 - }, - "contrib.labour.private_school_vat": { - "label": "contrib.labour.private_school_vat", - "description": null, - "index": 0 - }, - "contrib.cec.non_primary_residence_wealth_tax": { - "label": "contrib.cec.non_primary_residence_wealth_tax", - "description": null, - "index": 0 - }, - "contrib.ubi_center.wealth_tax": { - "label": "contrib.ubi_center.wealth_tax", - "description": null, - "index": 0 - }, - "contrib.ubi_center.carbon_tax": { - "label": "contrib.ubi_center.carbon_tax", - "description": null, - "index": 0 - }, - "contrib.ubi_center.land_value_tax": { - "label": "contrib.ubi_center.land_value_tax", - "description": null, - "index": 0 - }, - "contrib.ubi_center.basic_income.bi_individual_phaseout": { - "label": "contrib.ubi_center.basic_income.bi_individual_phaseout", - "description": null, - "index": 0 - }, - "contrib.ubi_center.basic_income.bi_phaseout": { - "label": "contrib.ubi_center.basic_income.bi_phaseout", - "description": null, - "index": 0 - }, - "contrib.ubi_center.basic_income.bi_household_phaseout": { - "label": "contrib.ubi_center.basic_income.bi_household_phaseout", - "description": null, - "index": 0 - }, - "contrib.ubi_center.basic_income.bi_maximum": { - "label": "contrib.ubi_center.basic_income.bi_maximum", - "description": null, - "index": 0 - }, - "contrib.ubi_center.basic_income.basic_income": { - "label": "contrib.ubi_center.basic_income.basic_income", - "description": null, - "index": 0 - }, - "household.cliff_evaluated": { - "label": "household.cliff_evaluated", - "description": null, - "index": 0 - }, - "household.BRMA": { - "label": "household.BRMA", - "description": null, - "index": 0 - }, - "household.region": { - "label": "household.region", - "description": null, - "index": 0 - }, - "household.marginal_tax_rate": { - "label": "household.marginal_tax_rate", - "description": null, - "index": 0 - }, - "household.is_on_cliff": { - "label": "household.is_on_cliff", - "description": null, - "index": 0 - }, - "household.cliff_gap": { - "label": "household.cliff_gap", - "description": null, - "index": 0 - }, - "household.demographic.is_carer_for_benefits": { - "label": "household.demographic.is_carer_for_benefits", - "description": null, - "index": 0 - }, - "household.demographic.country": { - "label": "household.demographic.country", - "description": null, - "index": 0 - }, - "household.demographic.in_social_housing": { - "label": "household.demographic.in_social_housing", - "description": null, - "index": 0 - }, - "household.demographic.relation_type": { - "label": "household.demographic.relation_type", - "description": null, - "index": 0 - }, - "household.demographic.is_blind": { - "label": "household.demographic.is_blind", - "description": null, - "index": 0 - }, - "household.demographic.people": { - "label": "household.demographic.people", - "description": null, - "index": 0 - }, - "household.demographic.household_weight": { - "label": "household.demographic.household_weight", - "description": null, - "index": 0 - }, - "household.demographic.age_18_64": { - "label": "household.demographic.age_18_64", - "description": null, - "index": 0 - }, - "household.demographic.is_higher_earner": { - "label": "household.demographic.is_higher_earner", - "description": null, - "index": 0 - }, - "household.demographic.is_adult": { - "label": "household.demographic.is_adult", - "description": null, - "index": 0 - }, - "household.demographic.household_owns_tv": { - "label": "household.demographic.household_owns_tv", - "description": null, - "index": 0 - }, - "household.demographic.benunit_tenure_type": { - "label": "household.demographic.benunit_tenure_type", - "description": null, - "index": 0 - }, - "household.demographic.households": { - "label": "household.demographic.households", - "description": null, - "index": 0 - }, - "household.demographic.person_benunit_id": { - "label": "household.demographic.person_benunit_id", - "description": null, - "index": 0 - }, - "household.demographic.num_enhanced_disabled_adults": { - "label": "household.demographic.num_enhanced_disabled_adults", - "description": null, - "index": 0 - }, - "household.demographic.num_children": { - "label": "household.demographic.num_children", - "description": null, - "index": 0 - }, - "household.demographic.is_household_head": { - "label": "household.demographic.is_household_head", - "description": null, - "index": 0 - }, - "household.demographic.eldest_child_age": { - "label": "household.demographic.eldest_child_age", - "description": null, - "index": 0 - }, - "household.demographic.is_shared_accommodation": { - "label": "household.demographic.is_shared_accommodation", - "description": null, - "index": 0 - }, - "household.demographic.is_young_child": { - "label": "household.demographic.is_young_child", - "description": null, - "index": 0 - }, - "household.demographic.in_FE": { - "label": "household.demographic.in_FE", - "description": null, - "index": 0 - }, - "household.demographic.geography": { - "label": "Region", - "description": null, - "index": 0 - }, - "household.demographic.family_type": { - "label": "household.demographic.family_type", - "description": null, - "index": 0 - }, - "household.demographic.is_disabled_for_benefits": { - "label": "household.demographic.is_disabled_for_benefits", - "description": null, - "index": 0 - }, - "household.demographic.is_older_child": { - "label": "household.demographic.is_older_child", - "description": null, - "index": 0 - }, - "household.demographic.age_over_64": { - "label": "household.demographic.age_over_64", - "description": null, - "index": 0 - }, - "household.demographic.is_enhanced_disabled_for_benefits": { - "label": "household.demographic.is_enhanced_disabled_for_benefits", - "description": null, - "index": 0 - }, - "household.demographic.benunit_is_renting": { - "label": "household.demographic.benunit_is_renting", - "description": null, - "index": 0 - }, - "household.demographic.locations": { - "label": "household.demographic.locations", - "description": null, - "index": 0 - }, - "household.demographic.household_id": { - "label": "household.demographic.household_id", - "description": null, - "index": 0 - }, - "household.demographic.num_enhanced_disabled_children": { - "label": "household.demographic.num_enhanced_disabled_children", - "description": null, - "index": 0 - }, - "household.demographic.disability_premium": { - "label": "household.demographic.disability_premium", - "description": null, - "index": 0 - }, - "household.demographic.num_bedrooms": { - "label": "household.demographic.num_bedrooms", - "description": null, - "index": 0 - }, - "household.demographic.child_index": { - "label": "household.demographic.child_index", - "description": null, - "index": 0 - }, - "household.demographic.is_eldest_child": { - "label": "household.demographic.is_eldest_child", - "description": null, - "index": 0 - }, - "household.demographic.carer_premium": { - "label": "household.demographic.carer_premium", - "description": null, - "index": 0 - }, - "household.demographic.num_severely_disabled_adults": { - "label": "household.demographic.num_severely_disabled_adults", - "description": null, - "index": 0 - }, - "household.demographic.role": { - "label": "household.demographic.role", - "description": null, - "index": 0 - }, - "household.demographic.accommodation_type": { - "label": "household.demographic.accommodation_type", - "description": null, - "index": 0 - }, - "household.demographic.is_male": { - "label": "household.demographic.is_male", - "description": null, - "index": 0 - }, - "household.demographic.enhanced_disability_premium": { - "label": "household.demographic.enhanced_disability_premium", - "description": null, - "index": 0 - }, - "household.demographic.person_id": { - "label": "household.demographic.person_id", - "description": null, - "index": 0 - }, - "household.demographic.benunit_has_carer": { - "label": "household.demographic.benunit_has_carer", - "description": null, - "index": 0 - }, - "household.demographic.severe_disability_premium": { - "label": "household.demographic.severe_disability_premium", - "description": null, - "index": 0 - }, - "household.demographic.is_married": { - "label": "household.demographic.is_married", - "description": null, - "index": 0 - }, - "household.demographic.benunit_region": { - "label": "household.demographic.benunit_region", - "description": null, - "index": 0 - }, - "household.demographic.tenure_type": { - "label": "household.demographic.tenure_type", - "description": null, - "index": 0 - }, - "household.demographic.current_education": { - "label": "household.demographic.current_education", - "description": null, - "index": 0 - }, - "household.demographic.num_carers": { - "label": "household.demographic.num_carers", - "description": null, - "index": 0 - }, - "household.demographic.num_disabled_children": { - "label": "household.demographic.num_disabled_children", - "description": null, - "index": 0 - }, - "household.demographic.benunit_id": { - "label": "household.demographic.benunit_id", - "description": null, - "index": 0 - }, - "household.demographic.person_weight": { - "label": "household.demographic.person_weight", - "description": null, - "index": 0 - }, - "household.demographic.num_adults": { - "label": "household.demographic.num_adults", - "description": null, - "index": 0 - }, - "household.demographic.person_household_role": { - "label": "household.demographic.person_household_role", - "description": null, - "index": 0 - }, - "household.demographic.over_16": { - "label": "household.demographic.over_16", - "description": null, - "index": 0 - }, - "household.demographic.is_benunit_eldest_child": { - "label": "household.demographic.is_benunit_eldest_child", - "description": null, - "index": 0 - }, - "household.demographic.raw_person_weight": { - "label": "household.demographic.raw_person_weight", - "description": null, - "index": 0 - }, - "household.demographic.household_count_people": { - "label": "household.demographic.household_count_people", - "description": null, - "index": 0 - }, - "household.demographic.is_severely_disabled_for_benefits": { - "label": "household.demographic.is_severely_disabled_for_benefits", - "description": null, - "index": 0 - }, - "household.demographic.in_HE": { - "label": "household.demographic.in_HE", - "description": null, - "index": 0 - }, - "household.demographic.youngest_adult_age": { - "label": "household.demographic.youngest_adult_age", - "description": null, - "index": 0 - }, - "household.demographic.household_equivalisation_ahc": { - "label": "household.demographic.household_equivalisation_ahc", - "description": null, - "index": 0 - }, - "household.demographic.age_under_18": { - "label": "household.demographic.age_under_18", - "description": null, - "index": 0 - }, - "household.demographic.highest_education": { - "label": "household.demographic.highest_education", - "description": null, - "index": 0 - }, - "household.demographic.person_household_id": { - "label": "household.demographic.person_household_id", - "description": null, - "index": 0 - }, - "household.demographic.is_benunit_head": { - "label": "household.demographic.is_benunit_head", - "description": null, - "index": 0 - }, - "household.demographic.marital_status": { - "label": "household.demographic.marital_status", - "description": null, - "index": 0 - }, - "household.demographic.household_num_benunits": { - "label": "household.demographic.household_num_benunits", - "description": null, - "index": 0 - }, - "household.demographic.ons_tenure_type": { - "label": "household.demographic.ons_tenure_type", - "description": null, - "index": 0 - }, - "household.demographic.child_or_qyp": { - "label": "household.demographic.child_or_qyp", - "description": null, - "index": 0 - }, - "household.demographic.original_weight": { - "label": "household.demographic.original_weight", - "description": null, - "index": 0 - }, - "household.demographic.birth_year": { - "label": "household.demographic.birth_year", - "description": null, - "index": 0 - }, - "household.demographic.eldest_adult_age": { - "label": "household.demographic.eldest_adult_age", - "description": null, - "index": 0 - }, - "household.demographic.youngest_child_age": { - "label": "household.demographic.youngest_child_age", - "description": null, - "index": 0 - }, - "household.demographic.num_severely_disabled_children": { - "label": "household.demographic.num_severely_disabled_children", - "description": null, - "index": 0 - }, - "household.demographic.is_renting": { - "label": "household.demographic.is_renting", - "description": null, - "index": 0 - }, - "household.demographic.num_disabled_adults": { - "label": "household.demographic.num_disabled_adults", - "description": null, - "index": 0 - }, - "household.demographic.is_child": { - "label": "household.demographic.is_child", - "description": null, - "index": 0 - }, - "household.demographic.adult_index": { - "label": "household.demographic.adult_index", - "description": null, - "index": 0 - }, - "household.demographic.families": { - "label": "household.demographic.families", - "description": null, - "index": 0 - }, - "household.demographic.is_parent": { - "label": "household.demographic.is_parent", - "description": null, - "index": 0 - }, - "household.demographic.household_equivalisation_bhc": { - "label": "household.demographic.household_equivalisation_bhc", - "description": null, - "index": 0 - }, - "household.demographic.is_WA_adult": { - "label": "household.demographic.is_WA_adult", - "description": null, - "index": 0 - }, - "household.demographic.is_female": { - "label": "household.demographic.is_female", - "description": null, - "index": 0 - }, - "household.demographic.gender": { - "label": "household.demographic.gender", - "description": null, - "index": 0 - }, - "household.demographic.benunit_weight": { - "label": "household.demographic.benunit_weight", - "description": null, - "index": 0 - }, - "household.demographic.person_benunit_role": { - "label": "household.demographic.person_benunit_role", - "description": null, - "index": 0 - }, - "household.demographic.benunit.benunit_count_children": { - "label": "household.demographic.benunit.benunit_count_children", - "description": null, - "index": 0 - }, - "household.consumption.diesel_price": { - "label": "household.consumption.diesel_price", - "description": null, - "index": 0 - }, - "household.consumption.additional_residential_property_purchased": { - "label": "household.consumption.additional_residential_property_purchased", - "description": null, - "index": 0 - }, - "household.consumption.weekly_childcare_expenses": { - "label": "household.consumption.weekly_childcare_expenses", - "description": null, - "index": 0 - }, - "household.consumption.carbon": { - "label": "household.consumption.carbon", - "description": null, - "index": 0 - }, - "household.consumption.non_residential_property_purchased": { - "label": "household.consumption.non_residential_property_purchased", - "description": null, - "index": 0 - }, - "household.consumption.mortgage": { - "label": "household.consumption.mortgage", - "description": null, - "index": 0 - }, - "household.consumption.benunit_rent": { - "label": "household.consumption.benunit_rent", - "description": null, - "index": 0 - }, - "household.consumption.petrol_litres": { - "label": "household.consumption.petrol_litres", - "description": null, - "index": 0 - }, - "household.consumption.main_residential_property_purchased_is_first_home": { - "label": "household.consumption.main_residential_property_purchased_is_first_home", - "description": null, - "index": 0 - }, - "household.consumption.external_child_payments": { - "label": "household.consumption.external_child_payments", - "description": null, - "index": 0 - }, - "household.consumption.reduced_rate_vat_consumption": { - "label": "household.consumption.reduced_rate_vat_consumption", - "description": null, - "index": 0 - }, - "household.consumption.full_rate_vat_consumption": { - "label": "household.consumption.full_rate_vat_consumption", - "description": null, - "index": 0 - }, - "household.consumption.main_residential_property_purchased": { - "label": "household.consumption.main_residential_property_purchased", - "description": null, - "index": 0 - }, - "household.consumption.diesel_litres": { - "label": "household.consumption.diesel_litres", - "description": null, - "index": 0 - }, - "household.consumption.full_rate_vat_expenditure_rate": { - "label": "household.consumption.full_rate_vat_expenditure_rate", - "description": null, - "index": 0 - }, - "household.consumption.structural_insurance_payments": { - "label": "household.consumption.structural_insurance_payments", - "description": null, - "index": 0 - }, - "household.consumption.family_rent": { - "label": "household.consumption.family_rent", - "description": null, - "index": 0 - }, - "household.consumption.petrol_price": { - "label": "household.consumption.petrol_price", - "description": null, - "index": 0 - }, - "household.consumption.consumption_share": { - "label": "household.consumption.consumption_share", - "description": null, - "index": 0 - }, - "household.consumption.council_tax_less_benefit": { - "label": "household.consumption.council_tax_less_benefit", - "description": null, - "index": 0 - }, - "household.consumption.housing_costs": { - "label": "household.consumption.housing_costs", - "description": null, - "index": 0 - }, - "household.consumption.personal_rent": { - "label": "household.consumption.personal_rent", - "description": null, - "index": 0 - }, - "household.consumption.rent.benunit_pays_rent": { - "label": "household.consumption.rent.benunit_pays_rent", - "description": null, - "index": 0 - }, - "household.benefits.employment_benefits": { - "label": "household.benefits.employment_benefits", - "description": null, - "index": 0 - }, - "household.income.claims_all_entitled_benefits": { - "label": "household.income.claims_all_entitled_benefits", - "description": null, - "index": 0 - }, - "household.income.household_gross_income": { - "label": "household.income.household_gross_income", - "description": null, - "index": 0 - }, - "household.income.equiv_household_net_income": { - "label": "household.income.equiv_household_net_income", - "description": null, - "index": 0 - }, - "household.income.real_household_net_income_ahc": { - "label": "household.income.real_household_net_income_ahc", - "description": null, - "index": 0 - }, - "household.income.is_single": { - "label": "household.income.is_single", - "description": null, - "index": 0 - }, - "household.income.deep_poverty_line": { - "label": "household.income.deep_poverty_line", - "description": null, - "index": 0 - }, - "household.income.poverty_line_ahc": { - "label": "household.income.poverty_line_ahc", - "description": null, - "index": 0 - }, - "household.income.is_apprentice": { - "label": "household.income.is_apprentice", - "description": null, - "index": 0 - }, - "household.income.household_income_decile": { - "label": "household.income.household_income_decile", - "description": null, - "index": 0 - }, - "household.income.baseline_hbai_excluded_income": { - "label": "household.income.baseline_hbai_excluded_income", - "description": null, - "index": 0 - }, - "household.income.in_poverty_bhc": { - "label": "household.income.in_poverty_bhc", - "description": null, - "index": 0 - }, - "household.income.statutory_maternity_pay": { - "label": "household.income.statutory_maternity_pay", - "description": null, - "index": 0 - }, - "household.income.household_net_income": { - "label": "household.income.household_net_income", - "description": null, - "index": 0 - }, - "household.income.in_work": { - "label": "household.income.in_work", - "description": null, - "index": 0 - }, - "household.income.inflation_adjustment": { - "label": "household.income.inflation_adjustment", - "description": null, - "index": 0 - }, - "household.income.market_income": { - "label": "household.income.market_income", - "description": null, - "index": 0 - }, - "household.income.in_relative_poverty_ahc": { - "label": "household.income.in_relative_poverty_ahc", - "description": null, - "index": 0 - }, - "household.income.capital_income": { - "label": "household.income.capital_income", - "description": null, - "index": 0 - }, - "household.income.is_couple": { - "label": "household.income.is_couple", - "description": null, - "index": 0 - }, - "household.income.claims_legacy_benefits": { - "label": "household.income.claims_legacy_benefits", - "description": null, - "index": 0 - }, - "household.income.hbai_excluded_income": { - "label": "household.income.hbai_excluded_income", - "description": null, - "index": 0 - }, - "household.income.poverty_gap_ahc": { - "label": "household.income.poverty_gap_ahc", - "description": null, - "index": 0 - }, - "household.income.equiv_hbai_household_net_income": { - "label": "household.income.equiv_hbai_household_net_income", - "description": null, - "index": 0 - }, - "household.income.poverty_gap": { - "label": "household.income.poverty_gap", - "description": null, - "index": 0 - }, - "household.income.real_household_net_income": { - "label": "household.income.real_household_net_income", - "description": null, - "index": 0 - }, - "household.income.poverty_line_bhc": { - "label": "household.income.poverty_line_bhc", - "description": null, - "index": 0 - }, - "household.income.capital_gains": { - "label": "household.income.capital_gains", - "description": null, - "index": 0 - }, - "household.income.household_benefits": { - "label": "household.income.household_benefits", - "description": null, - "index": 0 - }, - "household.income.earned_income": { - "label": "household.income.earned_income", - "description": null, - "index": 0 - }, - "household.income.hbai_household_net_income_ahc": { - "label": "household.income.hbai_household_net_income_ahc", - "description": null, - "index": 0 - }, - "household.income.is_child_or_QYP": { - "label": "household.income.is_child_or_QYP", - "description": null, - "index": 0 - }, - "household.income.income_decile": { - "label": "household.income.income_decile", - "description": null, - "index": 0 - }, - "household.income.benefits_premiums": { - "label": "household.income.benefits_premiums", - "description": null, - "index": 0 - }, - "household.income.equiv_hbai_household_net_income_ahc": { - "label": "household.income.equiv_hbai_household_net_income_ahc", - "description": null, - "index": 0 - }, - "household.income.in_poverty": { - "label": "household.income.in_poverty", - "description": null, - "index": 0 - }, - "household.income.statutory_sick_pay": { - "label": "household.income.statutory_sick_pay", - "description": null, - "index": 0 - }, - "household.income.benunit_weekly_hours": { - "label": "household.income.benunit_weekly_hours", - "description": null, - "index": 0 - }, - "household.income.deep_poverty_gap": { - "label": "household.income.deep_poverty_gap", - "description": null, - "index": 0 - }, - "household.income.in_deep_poverty": { - "label": "household.income.in_deep_poverty", - "description": null, - "index": 0 - }, - "household.income.employment_status": { - "label": "household.income.employment_status", - "description": null, - "index": 0 - }, - "household.income.household_market_income": { - "label": "household.income.household_market_income", - "description": null, - "index": 0 - }, - "household.income.poverty_threshold_bhc": { - "label": "household.income.poverty_threshold_bhc", - "description": null, - "index": 0 - }, - "household.income.minimum_wage_category": { - "label": "household.income.minimum_wage_category", - "description": null, - "index": 0 - }, - "household.income.in_relative_poverty_bhc": { - "label": "household.income.in_relative_poverty_bhc", - "description": null, - "index": 0 - }, - "household.income.poverty_line": { - "label": "household.income.poverty_line", - "description": null, - "index": 0 - }, - "household.income.is_QYP": { - "label": "household.income.is_QYP", - "description": null, - "index": 0 - }, - "household.income.hours_worked": { - "label": "household.income.hours_worked", - "description": null, - "index": 0 - }, - "household.income.in_deep_poverty_bhc": { - "label": "household.income.in_deep_poverty_bhc", - "description": null, - "index": 0 - }, - "household.income.base_net_income": { - "label": "household.income.base_net_income", - "description": null, - "index": 0 - }, - "household.income.is_lone_parent": { - "label": "household.income.is_lone_parent", - "description": null, - "index": 0 - }, - "household.income.poverty_gap_bhc": { - "label": "household.income.poverty_gap_bhc", - "description": null, - "index": 0 - }, - "household.income.hbai_household_net_income": { - "label": "household.income.hbai_household_net_income", - "description": null, - "index": 0 - }, - "household.income.statutory_paternity_pay": { - "label": "household.income.statutory_paternity_pay", - "description": null, - "index": 0 - }, - "household.income.in_deep_poverty_ahc": { - "label": "household.income.in_deep_poverty_ahc", - "description": null, - "index": 0 - }, - "household.income.household_net_income_ahc": { - "label": "household.income.household_net_income_ahc", - "description": null, - "index": 0 - }, - "household.income.hbai_excluded_income_change": { - "label": "household.income.hbai_excluded_income_change", - "description": null, - "index": 0 - }, - "household.income.hbai_benefits": { - "label": "household.income.hbai_benefits", - "description": null, - "index": 0 - }, - "household.income.is_single_person": { - "label": "household.income.is_single_person", - "description": null, - "index": 0 - }, - "household.income.in_poverty_ahc": { - "label": "household.income.in_poverty_ahc", - "description": null, - "index": 0 - }, - "household.income.weekly_hours": { - "label": "household.income.weekly_hours", - "description": null, - "index": 0 - }, - "household.income.minimum_wage": { - "label": "household.income.minimum_wage", - "description": null, - "index": 0 - }, - "household.wealth.household_land_value": { - "label": "household.wealth.household_land_value", - "description": null, - "index": 0 - }, - "household.wealth.gross_financial_wealth": { - "label": "household.wealth.gross_financial_wealth", - "description": null, - "index": 0 - }, - "household.wealth.total_wealth": { - "label": "household.wealth.total_wealth", - "description": null, - "index": 0 - }, - "household.wealth.land_value": { - "label": "household.wealth.land_value", - "description": null, - "index": 0 - }, - "household.wealth.property_wealth": { - "label": "household.wealth.property_wealth", - "description": null, - "index": 0 - }, - "household.wealth.corporate_tax_incidence": { - "label": "household.wealth.corporate_tax_incidence", - "description": null, - "index": 0 - }, - "household.wealth.corporate_land_value": { - "label": "household.wealth.corporate_land_value", - "description": null, - "index": 0 - }, - "household.wealth.shareholding": { - "label": "household.wealth.shareholding", - "description": null, - "index": 0 - }, - "household.wealth.residential_property_value": { - "label": "household.wealth.residential_property_value", - "description": null, - "index": 0 - }, - "household.wealth.net_financial_wealth": { - "label": "household.wealth.net_financial_wealth", - "description": null, - "index": 0 - }, - "household.wealth.savings": { - "label": "household.wealth.savings", - "description": null, - "index": 0 - }, - "household.wealth.household_wealth_decile": { - "label": "household.wealth.household_wealth_decile", - "description": null, - "index": 0 - }, - "misc.in_original_frs": { - "label": "misc.in_original_frs", - "description": null, - "index": 0 - }, - "misc.spi_imputed": { - "label": "misc.spi_imputed", - "description": null, - "index": 0 - }, - "misc.uc_migrated": { - "label": "misc.uc_migrated", - "description": null, - "index": 0 - }, - "misc.categories.lower_or_higher": { - "label": "misc.categories.lower_or_higher", - "description": null, - "index": 0 - }, - "misc.categories.lower_middle_or_higher": { - "label": "misc.categories.lower_middle_or_higher", - "description": null, - "index": 0 - }, - "input": { - "label": "Inputs", - "description": "" - }, - "input.property_income": { - "label": "input.property_income", - "description": null, - "index": 0 - }, - "input.care": { - "label": "Care", - "description": null, - "index": 0 - }, - "input.employment_income_before_lsr": { - "label": "input.employment_income_before_lsr", - "description": null, - "index": 0 - }, - "input.lump_sum_income": { - "label": "input.lump_sum_income", - "description": null, - "index": 0 - }, - "input.miscellaneous_income": { - "label": "input.miscellaneous_income", - "description": null, - "index": 0 - }, - "input.pip_m_category": { - "label": "input.pip_m_category", - "description": null, - "index": 0 - }, - "input.sublet_income": { - "label": "input.sublet_income", - "description": null, - "index": 0 - }, - "input.other_residential_property_value": { - "label": "input.other_residential_property_value", - "description": null, - "index": 0 - }, - "input.savings_interest_income": { - "label": "input.savings_interest_income", - "description": null, - "index": 0 - }, - "input.dla_m_category": { - "label": "input.dla_m_category", - "description": null, - "index": 0 - }, - "input.council_tax_band": { - "label": "input.council_tax_band", - "description": null, - "index": 0 - }, - "input.private_transfer_income": { - "label": "input.private_transfer_income", - "description": null, - "index": 0 - }, - "input.rent": { - "label": "input.rent", - "description": null, - "index": 0 - }, - "input.other_investment_income": { - "label": "input.other_investment_income", - "description": null, - "index": 0 - }, - "input.self_employment_income": { - "label": "input.self_employment_income", - "description": null, - "index": 0 - }, - "input.private_pension_income": { - "label": "input.private_pension_income", - "description": null, - "index": 0 - }, - "input.maintenance_income": { - "label": "input.maintenance_income", - "description": null, - "index": 0 - }, - "input.dla_sc_category": { - "label": "input.dla_sc_category", - "description": null, - "index": 0 - }, - "input.main_residence_value": { - "label": "input.main_residence_value", - "description": null, - "index": 0 - }, - "input.dividend_income": { - "label": "input.dividend_income", - "description": null, - "index": 0 - }, - "input.demographic": { - "label": "Demographic", - "description": "Demographic variables.", - "index": 0 - }, - "input.employment_income": { - "label": "input.employment_income", - "description": null, - "index": 0 - }, - "input.pension_income": { - "label": "input.pension_income", - "description": null, - "index": 0 - }, - "input.non_residential_property_value": { - "label": "input.non_residential_property_value", - "description": null, - "index": 0 - }, - "input.owned_land": { - "label": "input.owned_land", - "description": null, - "index": 0 - }, - "input.corporate_wealth": { - "label": "input.corporate_wealth", - "description": null, - "index": 0 - }, - "input.state_pension": { - "label": "input.state_pension", - "description": null, - "index": 0 - }, - "input.pip_dl_category": { - "label": "input.pip_dl_category", - "description": null, - "index": 0 - }, - "input.consumption": { - "label": "Consumption", - "description": "" - }, - "input.consumption.diesel_spending": { - "label": "input.consumption.diesel_spending", - "description": null, - "index": 0 - }, - "input.consumption.health_consumption": { - "label": "input.consumption.health_consumption", - "description": null, - "index": 0 - }, - "input.consumption.food_and_non_alcoholic_beverages_consumption": { - "label": "input.consumption.food_and_non_alcoholic_beverages_consumption", - "description": null, - "index": 0 - }, - "input.consumption.consumption": { - "label": "input.consumption.consumption", - "description": null, - "index": 0 - }, - "input.consumption.restaurants_and_hotels_consumption": { - "label": "input.consumption.restaurants_and_hotels_consumption", - "description": null, - "index": 0 - }, - "input.consumption.clothing_and_footwear_consumption": { - "label": "input.consumption.clothing_and_footwear_consumption", - "description": null, - "index": 0 - }, - "input.consumption.childcare_expenses": { - "label": "input.consumption.childcare_expenses", - "description": null, - "index": 0 - }, - "input.consumption.petrol_spending": { - "label": "input.consumption.petrol_spending", - "description": null, - "index": 0 - }, - "input.consumption.energy": { - "label": "Energy", - "description": "Energy consumption.", - "index": 0 - }, - "input.consumption.housing_water_and_electricity_consumption": { - "label": "input.consumption.housing_water_and_electricity_consumption", - "description": null, - "index": 0 - }, - "input.consumption.education_consumption": { - "label": "input.consumption.education_consumption", - "description": null, - "index": 0 - }, - "input.consumption.alcohol_and_tobacco_consumption": { - "label": "input.consumption.alcohol_and_tobacco_consumption", - "description": null, - "index": 0 - }, - "input.consumption.household_furnishings_consumption": { - "label": "input.consumption.household_furnishings_consumption", - "description": null, - "index": 0 - }, - "input.consumption.communication_consumption": { - "label": "input.consumption.communication_consumption", - "description": null, - "index": 0 - }, - "input.consumption.miscellaneous_consumption": { - "label": "input.consumption.miscellaneous_consumption", - "description": null, - "index": 0 - }, - "input.consumption.transport_consumption": { - "label": "input.consumption.transport_consumption", - "description": null, - "index": 0 - }, - "input.consumption.recreation_consumption": { - "label": "input.consumption.recreation_consumption", - "description": null, - "index": 0 - }, - "input.consumption.property": { - "label": "Property", - "description": "" - }, - "input.consumption.property.personal_pension_contributions": { - "label": "input.consumption.property.personal_pension_contributions", - "description": null, - "index": 0 - }, - "input.consumption.property.maintenance_expenses": { - "label": "input.consumption.property.maintenance_expenses", - "description": null, - "index": 0 - }, - "input.consumption.property.non_residential_rent": { - "label": "input.consumption.property.non_residential_rent", - "description": null, - "index": 0 - }, - "input.consumption.property.water_and_sewerage_charges": { - "label": "input.consumption.property.water_and_sewerage_charges", - "description": null, - "index": 0 - }, - "input.consumption.property.cumulative_residential_rent": { - "label": "input.consumption.property.cumulative_residential_rent", - "description": null, - "index": 0 - }, - "input.consumption.property.mortgage_interest_repayment": { - "label": "input.consumption.property.mortgage_interest_repayment", - "description": null, - "index": 0 - }, - "input.consumption.property.property_purchased": { - "label": "input.consumption.property.property_purchased", - "description": null, - "index": 0 - }, - "input.consumption.property.mortgage_capital_repayment": { - "label": "input.consumption.property.mortgage_capital_repayment", - "description": null, - "index": 0 - }, - "input.consumption.property.housing_service_charges": { - "label": "input.consumption.property.housing_service_charges", - "description": null, - "index": 0 - }, - "input.consumption.property.employee_pension_contributions": { - "label": "input.consumption.property.employee_pension_contributions", - "description": null, - "index": 0 - }, - "input.consumption.property.council_tax": { - "label": "input.consumption.property.council_tax", - "description": null, - "index": 0 - }, - "input.consumption.property.cumulative_non_residential_rent": { - "label": "input.consumption.property.cumulative_non_residential_rent", - "description": null, - "index": 0 - }, - "input.consumption.property.employer_pension_contributions": { - "label": "input.consumption.property.employer_pension_contributions", - "description": null, - "index": 0 - }, - "gov.gov_tax": { - "label": "gov.gov_tax", - "description": null, - "index": 0 - }, - "gov.gov_balance": { - "label": "gov.gov_balance", - "description": null, - "index": 0 - }, - "gov.gov_spending": { - "label": "gov.gov_spending", - "description": null, - "index": 0 - }, - "gov.revenue_scotland.lbtt_on_transactions": { - "label": "gov.revenue_scotland.lbtt_on_transactions", - "description": null, - "index": 0 - }, - "gov.revenue_scotland.lbtt_on_residential_property_transactions": { - "label": "gov.revenue_scotland.lbtt_on_residential_property_transactions", - "description": null, - "index": 0 - }, - "gov.revenue_scotland.lbtt_on_non_residential_property_rent": { - "label": "gov.revenue_scotland.lbtt_on_non_residential_property_rent", - "description": null, - "index": 0 - }, - "gov.revenue_scotland.lbtt_on_residential_property_rent": { - "label": "gov.revenue_scotland.lbtt_on_residential_property_rent", - "description": null, - "index": 0 - }, - "gov.revenue_scotland.lbtt_on_non_residential_property_transactions": { - "label": "gov.revenue_scotland.lbtt_on_non_residential_property_transactions", - "description": null, - "index": 0 - }, - "gov.revenue_scotland.expected_lbtt": { - "label": "gov.revenue_scotland.expected_lbtt", - "description": null, - "index": 0 - }, - "gov.revenue_scotland.land_and_buildings_transaction_tax": { - "label": "gov.revenue_scotland.land_and_buildings_transaction_tax", - "description": null, - "index": 0 - }, - "gov.revenue_scotland.lbtt_on_rent": { - "label": "gov.revenue_scotland.lbtt_on_rent", - "description": null, - "index": 0 - }, - "gov.revenue_scotland.lbtt_liable": { - "label": "gov.revenue_scotland.lbtt_liable", - "description": null, - "index": 0 - }, - "gov.local_authorities": { - "label": "Local Authorities", - "description": "" - }, - "gov.local_authorities.domestic_rates": { - "label": "gov.local_authorities.domestic_rates", - "description": null, - "index": 0 - }, - "gov.dfe.free_school_meals": { - "label": "gov.dfe.free_school_meals", - "description": null, - "index": 0 - }, - "gov.dfe.dfe_education_spending": { - "label": "gov.dfe.dfe_education_spending", - "description": null, - "index": 0 - }, - "gov.dfe.max_free_entitlement_hours_used": { - "label": "gov.dfe.max_free_entitlement_hours_used", - "description": null, - "index": 0 - }, - "gov.dfe.free_school_milk": { - "label": "gov.dfe.free_school_milk", - "description": null, - "index": 0 - }, - "gov.dfe.free_school_fruit_veg": { - "label": "gov.dfe.free_school_fruit_veg", - "description": null, - "index": 0 - }, - "gov.dfe.care_to_learn.care_to_learn_eligible": { - "label": "gov.dfe.care_to_learn.care_to_learn_eligible", - "description": null, - "index": 0 - }, - "gov.dfe.care_to_learn.would_claim_care_to_learn": { - "label": "gov.dfe.care_to_learn.would_claim_care_to_learn", - "description": null, - "index": 0 - }, - "gov.dfe.care_to_learn.care_to_learn": { - "label": "gov.dfe.care_to_learn.care_to_learn", - "description": null, - "index": 0 - }, - "gov.dfe.extended_childcare_entitlement.extended_childcare_entitlement_eligible": { - "label": "gov.dfe.extended_childcare_entitlement.extended_childcare_entitlement_eligible", - "description": null, - "index": 0 - }, - "gov.dfe.extended_childcare_entitlement.extended_childcare_entitlement": { - "label": "gov.dfe.extended_childcare_entitlement.extended_childcare_entitlement", - "description": null, - "index": 0 - }, - "gov.dfe.extended_childcare_entitlement.would_claim_extended_childcare": { - "label": "gov.dfe.extended_childcare_entitlement.would_claim_extended_childcare", - "description": null, - "index": 0 - }, - "gov.dfe.extended_childcare_entitlement.maximum_extended_childcare_hours_usage": { - "label": "gov.dfe.extended_childcare_entitlement.maximum_extended_childcare_hours_usage", - "description": null, - "index": 0 - }, - "gov.dfe.extended_childcare_entitlement.is_child_receiving_extended_childcare": { - "label": "gov.dfe.extended_childcare_entitlement.is_child_receiving_extended_childcare", - "description": null, - "index": 0 - }, - "gov.dfe.extended_childcare_entitlement.conditions.extended_childcare_entitlement_work_condition": { - "label": "gov.dfe.extended_childcare_entitlement.conditions.extended_childcare_entitlement_work_condition", - "description": null, - "index": 0 - }, - "gov.dfe.extended_childcare_entitlement.conditions.extended_childcare_entitlement_meets_income_requirements": { - "label": "gov.dfe.extended_childcare_entitlement.conditions.extended_childcare_entitlement_meets_income_requirements", - "description": null, - "index": 0 - }, - "gov.dfe.compulsory_education.is_of_compulsory_school_age": { - "label": "gov.dfe.compulsory_education.is_of_compulsory_school_age", - "description": null, - "index": 0 - }, - "gov.dfe.universal_childcare_entitlement.universal_childcare_entitlement_eligible": { - "label": "gov.dfe.universal_childcare_entitlement.universal_childcare_entitlement_eligible", - "description": null, - "index": 0 - }, - "gov.dfe.universal_childcare_entitlement.is_child_receiving_universal_childcare": { - "label": "gov.dfe.universal_childcare_entitlement.is_child_receiving_universal_childcare", - "description": null, - "index": 0 - }, - "gov.dfe.universal_childcare_entitlement.universal_childcare_entitlement": { - "label": "gov.dfe.universal_childcare_entitlement.universal_childcare_entitlement", - "description": null, - "index": 0 - }, - "gov.dfe.universal_childcare_entitlement.would_claim_universal_childcare": { - "label": "gov.dfe.universal_childcare_entitlement.would_claim_universal_childcare", - "description": null, - "index": 0 - }, - "gov.dfe.targeted_childcare_entitlement.is_child_receiving_targeted_childcare": { - "label": "gov.dfe.targeted_childcare_entitlement.is_child_receiving_targeted_childcare", - "description": null, - "index": 0 - }, - "gov.dfe.targeted_childcare_entitlement.meets_tax_credit_criteria_for_targeted_childcare_entitlement": { - "label": "gov.dfe.targeted_childcare_entitlement.meets_tax_credit_criteria_for_targeted_childcare_entitlement", - "description": null, - "index": 0 - }, - "gov.dfe.targeted_childcare_entitlement.would_claim_targeted_childcare": { - "label": "gov.dfe.targeted_childcare_entitlement.would_claim_targeted_childcare", - "description": null, - "index": 0 - }, - "gov.dfe.targeted_childcare_entitlement.targeted_childcare_entitlement_eligible": { - "label": "gov.dfe.targeted_childcare_entitlement.targeted_childcare_entitlement_eligible", - "description": null, - "index": 0 - }, - "gov.dfe.targeted_childcare_entitlement.targeted_childcare_entitlement": { - "label": "gov.dfe.targeted_childcare_entitlement.targeted_childcare_entitlement", - "description": null, - "index": 0 - }, - "gov.dfe.targeted_childcare_entitlement.meets_universal_credit_criteria_for_targeted_childcare_entitlement": { - "label": "gov.dfe.targeted_childcare_entitlement.meets_universal_credit_criteria_for_targeted_childcare_entitlement", - "description": null, - "index": 0 - }, - "gov.dft": { - "label": "Department for Transport", - "description": "" - }, - "gov.dft.rail_subsidy_spending": { - "label": "gov.dft.rail_subsidy_spending", - "description": null, - "index": 0 - }, - "gov.dft.dft_subsidy_spending": { - "label": "gov.dft.dft_subsidy_spending", - "description": null, - "index": 0 - }, - "gov.dft.bus_subsidy_spending": { - "label": "gov.dft.bus_subsidy_spending", - "description": null, - "index": 0 - }, - "gov.hmrc.stamp_duty_land_tax": { - "label": "gov.hmrc.stamp_duty_land_tax", - "description": null, - "index": 0 - }, - "gov.hmrc.sdlt_on_transactions": { - "label": "gov.hmrc.sdlt_on_transactions", - "description": null, - "index": 0 - }, - "gov.hmrc.baseline_vat": { - "label": "gov.hmrc.baseline_vat", - "description": null, - "index": 0 - }, - "gov.hmrc.tax_reported": { - "label": "gov.hmrc.tax_reported", - "description": null, - "index": 0 - }, - "gov.hmrc.would_claim_child_benefit": { - "label": "gov.hmrc.would_claim_child_benefit", - "description": null, - "index": 0 - }, - "gov.hmrc.sdlt_liable": { - "label": "gov.hmrc.sdlt_liable", - "description": null, - "index": 0 - }, - "gov.hmrc.corporate_sdlt": { - "label": "gov.hmrc.corporate_sdlt", - "description": null, - "index": 0 - }, - "gov.hmrc.child_benefit_entitlement": { - "label": "gov.hmrc.child_benefit_entitlement", - "description": null, - "index": 0 - }, - "gov.hmrc.tax_modelling": { - "label": "gov.hmrc.tax_modelling", - "description": null, - "index": 0 - }, - "gov.hmrc.baseline_child_benefit_entitlement": { - "label": "gov.hmrc.baseline_child_benefit_entitlement", - "description": null, - "index": 0 - }, - "gov.hmrc.child_benefit_respective_amount": { - "label": "gov.hmrc.child_benefit_respective_amount", - "description": null, - "index": 0 - }, - "gov.hmrc.vat": { - "label": "gov.hmrc.vat", - "description": null, - "index": 0 - }, - "gov.hmrc.benunit_tax": { - "label": "gov.hmrc.benunit_tax", - "description": null, - "index": 0 - }, - "gov.hmrc.sdlt_on_non_residential_property_rent": { - "label": "gov.hmrc.sdlt_on_non_residential_property_rent", - "description": null, - "index": 0 - }, - "gov.hmrc.vat_change": { - "label": "gov.hmrc.vat_change", - "description": null, - "index": 0 - }, - "gov.hmrc.expected_sdlt": { - "label": "gov.hmrc.expected_sdlt", - "description": null, - "index": 0 - }, - "gov.hmrc.child_benefit_opts_out": { - "label": "gov.hmrc.child_benefit_opts_out", - "description": null, - "index": 0 - }, - "gov.hmrc.sdlt_on_non_residential_property_transactions": { - "label": "gov.hmrc.sdlt_on_non_residential_property_transactions", - "description": null, - "index": 0 - }, - "gov.hmrc.baseline_business_rates": { - "label": "gov.hmrc.baseline_business_rates", - "description": null, - "index": 0 - }, - "gov.hmrc.child_benefit_reported": { - "label": "gov.hmrc.child_benefit_reported", - "description": null, - "index": 0 - }, - "gov.hmrc.household_tax": { - "label": "gov.hmrc.household_tax", - "description": null, - "index": 0 - }, - "gov.hmrc.child_benefit": { - "label": "gov.hmrc.child_benefit", - "description": null, - "index": 0 - }, - "gov.hmrc.business_rates": { - "label": "gov.hmrc.business_rates", - "description": null, - "index": 0 - }, - "gov.hmrc.sdlt_on_residential_property_transactions": { - "label": "gov.hmrc.sdlt_on_residential_property_transactions", - "description": null, - "index": 0 - }, - "gov.hmrc.sdlt_on_residential_property_rent": { - "label": "gov.hmrc.sdlt_on_residential_property_rent", - "description": null, - "index": 0 - }, - "gov.hmrc.tax": { - "label": "gov.hmrc.tax", - "description": null, - "index": 0 - }, - "gov.hmrc.child_benefit_less_tax_charge": { - "label": "gov.hmrc.child_benefit_less_tax_charge", - "description": null, - "index": 0 - }, - "gov.hmrc.student_loan_repayments": { - "label": "gov.hmrc.student_loan_repayments", - "description": null, - "index": 0 - }, - "gov.hmrc.sdlt_on_rent": { - "label": "gov.hmrc.sdlt_on_rent", - "description": null, - "index": 0 - }, - "gov.hmrc.tax_free_childcare.would_claim_tfc": { - "label": "gov.hmrc.tax_free_childcare.would_claim_tfc", - "description": null, - "index": 0 - }, - "gov.hmrc.tax_free_childcare.is_child_receiving_tax_free_childcare": { - "label": "gov.hmrc.tax_free_childcare.is_child_receiving_tax_free_childcare", - "description": null, - "index": 0 - }, - "gov.hmrc.tax_free_childcare.tax_free_childcare_eligibility": { - "label": "gov.hmrc.tax_free_childcare.tax_free_childcare_eligibility", - "description": null, - "index": 0 - }, - "gov.hmrc.tax_free_childcare.tax_free_childcare": { - "label": "gov.hmrc.tax_free_childcare.tax_free_childcare", - "description": null, - "index": 0 - }, - "gov.hmrc.tax_free_childcare.conditions.tax_free_childcare_work_condition": { - "label": "gov.hmrc.tax_free_childcare.conditions.tax_free_childcare_work_condition", - "description": null, - "index": 0 - }, - "gov.hmrc.tax_free_childcare.conditions.tax_free_childcare_meets_income_requirements": { - "label": "gov.hmrc.tax_free_childcare.conditions.tax_free_childcare_meets_income_requirements", - "description": null, - "index": 0 - }, - "gov.hmrc.tax_free_childcare.conditions.tax_free_childcare_program_eligible": { - "label": "gov.hmrc.tax_free_childcare.conditions.tax_free_childcare_program_eligible", - "description": null, - "index": 0 - }, - "gov.hmrc.tax_free_childcare.conditions.tax_free_childcare_child_age_eligible": { - "label": "gov.hmrc.tax_free_childcare.conditions.tax_free_childcare_child_age_eligible", - "description": null, - "index": 0 - }, - "gov.hmrc.capital_gains_tax.capital_gains_tax": { - "label": "gov.hmrc.capital_gains_tax.capital_gains_tax", - "description": null, - "index": 0 - }, - "gov.hmrc.capital_gains_tax.marginal_tax_rate_on_capital_gains": { - "label": "gov.hmrc.capital_gains_tax.marginal_tax_rate_on_capital_gains", - "description": null, - "index": 0 - }, - "gov.hmrc.capital_gains_tax.capital_gains_behavioural_response": { - "label": "gov.hmrc.capital_gains_tax.capital_gains_behavioural_response", - "description": null, - "index": 0 - }, - "gov.hmrc.capital_gains_tax.capital_gains_elasticity": { - "label": "gov.hmrc.capital_gains_tax.capital_gains_elasticity", - "description": null, - "index": 0 - }, - "gov.hmrc.capital_gains_tax.capital_gains_before_response": { - "label": "gov.hmrc.capital_gains_tax.capital_gains_before_response", - "description": null, - "index": 0 - }, - "gov.hmrc.capital_gains_tax.adult_index_cg": { - "label": "gov.hmrc.capital_gains_tax.adult_index_cg", - "description": null, - "index": 0 - }, - "gov.hmrc.capital_gains_tax.relative_capital_gains_mtr_change": { - "label": "gov.hmrc.capital_gains_tax.relative_capital_gains_mtr_change", - "description": null, - "index": 0 - }, - "gov.hmrc.fuel_duty.fuel_duty": { - "label": "gov.hmrc.fuel_duty.fuel_duty", - "description": null, - "index": 0 - }, - "gov.hmrc.national_insurance.total_national_insurance": { - "label": "gov.hmrc.national_insurance.total_national_insurance", - "description": null, - "index": 0 - }, - "gov.hmrc.national_insurance.ni_self_employed": { - "label": "gov.hmrc.national_insurance.ni_self_employed", - "description": null, - "index": 0 - }, - "gov.hmrc.national_insurance.ni_employer": { - "label": "gov.hmrc.national_insurance.ni_employer", - "description": null, - "index": 0 - }, - "gov.hmrc.national_insurance.ni_employee": { - "label": "gov.hmrc.national_insurance.ni_employee", - "description": null, - "index": 0 - }, - "gov.hmrc.national_insurance.national_insurance": { - "label": "gov.hmrc.national_insurance.national_insurance", - "description": null, - "index": 0 - }, - "gov.hmrc.national_insurance.class_3.ni_class_3": { - "label": "gov.hmrc.national_insurance.class_3.ni_class_3", - "description": null, - "index": 0 - }, - "gov.hmrc.national_insurance.class_2.ni_class_2": { - "label": "gov.hmrc.national_insurance.class_2.ni_class_2", - "description": null, - "index": 0 - }, - "gov.hmrc.national_insurance.class_4.ni_class_4_main": { - "label": "gov.hmrc.national_insurance.class_4.ni_class_4_main", - "description": null, - "index": 0 - }, - "gov.hmrc.national_insurance.class_4.ni_class_4": { - "label": "gov.hmrc.national_insurance.class_4.ni_class_4", - "description": null, - "index": 0 - }, - "gov.hmrc.national_insurance.class_4.ni_class_4_maximum": { - "label": "gov.hmrc.national_insurance.class_4.ni_class_4_maximum", - "description": null, - "index": 0 - }, - "gov.hmrc.national_insurance.class_1.ni_liable": { - "label": "gov.hmrc.national_insurance.class_1.ni_liable", - "description": null, - "index": 0 - }, - "gov.hmrc.national_insurance.class_1.ni_class_1_income": { - "label": "gov.hmrc.national_insurance.class_1.ni_class_1_income", - "description": null, - "index": 0 - }, - "gov.hmrc.national_insurance.class_1.ni_class_1_employer": { - "label": "gov.hmrc.national_insurance.class_1.ni_class_1_employer", - "description": null, - "index": 0 - }, - "gov.hmrc.national_insurance.class_1.ni_class_1_employee": { - "label": "gov.hmrc.national_insurance.class_1.ni_class_1_employee", - "description": null, - "index": 0 - }, - "gov.hmrc.national_insurance.class_1.ni_class_1_employee_primary": { - "label": "gov.hmrc.national_insurance.class_1.ni_class_1_employee_primary", - "description": null, - "index": 0 - }, - "gov.hmrc.national_insurance.class_1.ni_class_1_employee_additional": { - "label": "gov.hmrc.national_insurance.class_1.ni_class_1_employee_additional", - "description": null, - "index": 0 - }, - "gov.hmrc.pensions.private_pension_contributions_tax": { - "label": "gov.hmrc.pensions.private_pension_contributions_tax", - "description": null, - "index": 0 - }, - "gov.hmrc.pensions.pension_contributions_relief": { - "label": "gov.hmrc.pensions.pension_contributions_relief", - "description": null, - "index": 0 - }, - "gov.hmrc.pensions.pension_contributions": { - "label": "gov.hmrc.pensions.pension_contributions", - "description": null, - "index": 0 - }, - "gov.hmrc.regional.pays_scottish_income_tax": { - "label": "gov.hmrc.regional.pays_scottish_income_tax", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.total_pension_income": { - "label": "gov.hmrc.income_tax.total_pension_income", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.total_income": { - "label": "gov.hmrc.income_tax.total_income", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.earned_income_tax": { - "label": "gov.hmrc.income_tax.earned_income_tax", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.adjusted_net_income": { - "label": "gov.hmrc.income_tax.adjusted_net_income", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.taxed_income": { - "label": "gov.hmrc.income_tax.taxed_income", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.other_tax_credits": { - "label": "gov.hmrc.income_tax.other_tax_credits", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.income_tax_pre_charges": { - "label": "gov.hmrc.income_tax.income_tax_pre_charges", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.income_tax": { - "label": "gov.hmrc.income_tax.income_tax", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.social_security_income": { - "label": "gov.hmrc.income_tax.social_security_income", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.bracketized_earned_income.basic_rate_earned_income": { - "label": "gov.hmrc.income_tax.bracketized_earned_income.basic_rate_earned_income", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.bracketized_earned_income.add_rate_earned_income": { - "label": "gov.hmrc.income_tax.bracketized_earned_income.add_rate_earned_income", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.bracketized_earned_income.earned_taxable_income": { - "label": "gov.hmrc.income_tax.bracketized_earned_income.earned_taxable_income", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.bracketized_earned_income.higher_rate_earned_income": { - "label": "gov.hmrc.income_tax.bracketized_earned_income.higher_rate_earned_income", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.bracketized_liability.add_rate_earned_income_tax": { - "label": "gov.hmrc.income_tax.bracketized_liability.add_rate_earned_income_tax", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.bracketized_liability.higher_rate_earned_income_tax": { - "label": "gov.hmrc.income_tax.bracketized_liability.higher_rate_earned_income_tax", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.bracketized_liability.basic_rate_earned_income_tax": { - "label": "gov.hmrc.income_tax.bracketized_liability.basic_rate_earned_income_tax", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.bracketized_liability.tax_band": { - "label": "gov.hmrc.income_tax.bracketized_liability.tax_band", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.liability.savings_income_tax": { - "label": "gov.hmrc.income_tax.liability.savings_income_tax", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.liability.dividend_income_tax": { - "label": "gov.hmrc.income_tax.liability.dividend_income_tax", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.bracketized_savings_income.taxed_savings_income": { - "label": "gov.hmrc.income_tax.bracketized_savings_income.taxed_savings_income", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.bracketized_savings_income.basic_rate_savings_income": { - "label": "gov.hmrc.income_tax.bracketized_savings_income.basic_rate_savings_income", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.bracketized_savings_income.higher_rate_savings_income": { - "label": "gov.hmrc.income_tax.bracketized_savings_income.higher_rate_savings_income", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.bracketized_savings_income.savings_starter_rate_income": { - "label": "gov.hmrc.income_tax.bracketized_savings_income.savings_starter_rate_income", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.bracketized_savings_income.basic_rate_savings_income_pre_starter": { - "label": "gov.hmrc.income_tax.bracketized_savings_income.basic_rate_savings_income_pre_starter", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.bracketized_savings_income.add_rate_savings_income": { - "label": "gov.hmrc.income_tax.bracketized_savings_income.add_rate_savings_income", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.allowances.allowances": { - "label": "gov.hmrc.income_tax.allowances.allowances", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.allowances.property_allowance": { - "label": "gov.hmrc.income_tax.allowances.property_allowance", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.allowances.blind_persons_allowance": { - "label": "gov.hmrc.income_tax.allowances.blind_persons_allowance", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.allowances.meets_marriage_allowance_income_conditions": { - "label": "gov.hmrc.income_tax.allowances.meets_marriage_allowance_income_conditions", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.allowances.marriage_allowance": { - "label": "gov.hmrc.income_tax.allowances.marriage_allowance", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.allowances.capped_mcad": { - "label": "gov.hmrc.income_tax.allowances.capped_mcad", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.allowances.unused_personal_allowance": { - "label": "gov.hmrc.income_tax.allowances.unused_personal_allowance", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.allowances.personal_allowance": { - "label": "gov.hmrc.income_tax.allowances.personal_allowance", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.allowances.trading_allowance_deduction": { - "label": "gov.hmrc.income_tax.allowances.trading_allowance_deduction", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.allowances.partners_unused_personal_allowance": { - "label": "gov.hmrc.income_tax.allowances.partners_unused_personal_allowance", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.allowances.trading_allowance": { - "label": "gov.hmrc.income_tax.allowances.trading_allowance", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.allowances.married_couples_allowance": { - "label": "gov.hmrc.income_tax.allowances.married_couples_allowance", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.allowances.dividend_allowance": { - "label": "gov.hmrc.income_tax.allowances.dividend_allowance", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.allowances.married_couples_allowance_deduction": { - "label": "gov.hmrc.income_tax.allowances.married_couples_allowance_deduction", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.allowances.property_allowance_deduction": { - "label": "gov.hmrc.income_tax.allowances.property_allowance_deduction", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.allowances.other_deductions": { - "label": "gov.hmrc.income_tax.allowances.other_deductions", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.allowances.covenanted_payments": { - "label": "gov.hmrc.income_tax.allowances.covenanted_payments", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.allowances.gift_aid": { - "label": "gov.hmrc.income_tax.allowances.gift_aid", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.allowances.charitable_investment_gifts": { - "label": "gov.hmrc.income_tax.allowances.charitable_investment_gifts", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.allowances.savings_allowance": { - "label": "gov.hmrc.income_tax.allowances.savings_allowance", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.allowances.pension_annual_allowance": { - "label": "gov.hmrc.income_tax.allowances.pension_annual_allowance", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.allowances.received_allowances.received_allowances": { - "label": "gov.hmrc.income_tax.allowances.received_allowances.received_allowances", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.allowances.received_allowances.received_allowances_earned_income": { - "label": "gov.hmrc.income_tax.allowances.received_allowances.received_allowances_earned_income", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.allowances.received_allowances.received_allowances_savings_income": { - "label": "gov.hmrc.income_tax.allowances.received_allowances.received_allowances_savings_income", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.allowances.received_allowances.received_allowances_dividend_income": { - "label": "gov.hmrc.income_tax.allowances.received_allowances.received_allowances_dividend_income", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.bases.taxable_miscellaneous_income": { - "label": "gov.hmrc.income_tax.bases.taxable_miscellaneous_income", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.bases.taxable_self_employment_income": { - "label": "gov.hmrc.income_tax.bases.taxable_self_employment_income", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.bases.taxable_employment_income": { - "label": "gov.hmrc.income_tax.bases.taxable_employment_income", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.bases.trading_loss": { - "label": "gov.hmrc.income_tax.bases.trading_loss", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.bases.taxable_property_income": { - "label": "gov.hmrc.income_tax.bases.taxable_property_income", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.bases.taxable_social_security_income": { - "label": "gov.hmrc.income_tax.bases.taxable_social_security_income", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.bases.taxable_dividend_income": { - "label": "gov.hmrc.income_tax.bases.taxable_dividend_income", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.bases.taxed_dividend_income": { - "label": "gov.hmrc.income_tax.bases.taxed_dividend_income", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.bases.taxable_pension_income": { - "label": "gov.hmrc.income_tax.bases.taxable_pension_income", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.bases.savings_income.taxable_savings_interest_income": { - "label": "gov.hmrc.income_tax.bases.savings_income.taxable_savings_interest_income", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.bases.savings_income.tax_free_savings_income": { - "label": "gov.hmrc.income_tax.bases.savings_income.tax_free_savings_income", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.bases.savings_income.ISA_interest_income": { - "label": "gov.hmrc.income_tax.bases.savings_income.ISA_interest_income", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.charges.child_benefit_hitc": { - "label": "gov.hmrc.income_tax.charges.child_benefit_hitc", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.reliefs.deficiency_relief": { - "label": "gov.hmrc.income_tax.reliefs.deficiency_relief", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.reliefs.loss_relief": { - "label": "gov.hmrc.income_tax.reliefs.loss_relief", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.reliefs.capital_allowances": { - "label": "gov.hmrc.income_tax.reliefs.capital_allowances", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.deductions.employment_expenses": { - "label": "gov.hmrc.income_tax.deductions.employment_expenses", - "description": null, - "index": 0 - }, - "gov.hmrc.income_tax.deductions.employment_deductions": { - "label": "gov.hmrc.income_tax.deductions.employment_deductions", - "description": null, - "index": 0 - }, - "gov.dhsc.nhs_spending": { - "label": "gov.dhsc.nhs_spending", - "description": null, - "index": 0 - }, - "gov.dhsc.outpatient.outpatient_visits": { - "label": "gov.dhsc.outpatient.outpatient_visits", - "description": null, - "index": 0 - }, - "gov.dhsc.outpatient.nhs_outpatient_spending": { - "label": "gov.dhsc.outpatient.nhs_outpatient_spending", - "description": null, - "index": 0 - }, - "gov.dhsc.a_and_e.a_and_e_visits": { - "label": "gov.dhsc.a_and_e.a_and_e_visits", - "description": null, - "index": 0 - }, - "gov.dhsc.a_and_e.nhs_a_and_e_spending": { - "label": "gov.dhsc.a_and_e.nhs_a_and_e_spending", - "description": null, - "index": 0 - }, - "gov.dhsc.admitted_patient.nhs_admitted_patient_spending": { - "label": "gov.dhsc.admitted_patient.nhs_admitted_patient_spending", - "description": null, - "index": 0 - }, - "gov.dhsc.admitted_patient.admitted_patient_visits": { - "label": "gov.dhsc.admitted_patient.admitted_patient_visits", - "description": null, - "index": 0 - }, - "gov.dcms.bbc.tv_licence.free_tv_licence_value": { - "label": "gov.dcms.bbc.tv_licence.free_tv_licence_value", - "description": null, - "index": 0 - }, - "gov.dcms.bbc.tv_licence.would_evade_tv_licence_fee": { - "label": "gov.dcms.bbc.tv_licence.would_evade_tv_licence_fee", - "description": null, - "index": 0 - }, - "gov.dcms.bbc.tv_licence.tv_licence_discount": { - "label": "gov.dcms.bbc.tv_licence.tv_licence_discount", - "description": null, - "index": 0 - }, - "gov.dcms.bbc.tv_licence.tv_licence": { - "label": "gov.dcms.bbc.tv_licence.tv_licence", - "description": null, - "index": 0 - }, - "gov.dwp.is_SP_age": { - "label": "gov.dwp.is_SP_age", - "description": null, - "index": 0 - }, - "gov.dwp.ssmg_reported": { - "label": "gov.dwp.ssmg_reported", - "description": null, - "index": 0 - }, - "gov.dwp.tax_credits": { - "label": "gov.dwp.tax_credits", - "description": null, - "index": 0 - }, - "gov.dwp.bsp_reported": { - "label": "gov.dwp.bsp_reported", - "description": null, - "index": 0 - }, - "gov.dwp.maternity_allowance": { - "label": "gov.dwp.maternity_allowance", - "description": null, - "index": 0 - }, - "gov.dwp.LHA_category": { - "label": "gov.dwp.LHA_category", - "description": null, - "index": 0 - }, - "gov.dwp.baseline_ctc_entitlement": { - "label": "gov.dwp.baseline_ctc_entitlement", - "description": null, - "index": 0 - }, - "gov.dwp.WTC_childcare_element": { - "label": "gov.dwp.WTC_childcare_element", - "description": null, - "index": 0 - }, - "gov.dwp.WTC_couple_element": { - "label": "gov.dwp.WTC_couple_element", - "description": null, - "index": 0 - }, - "gov.dwp.attendance_allowance_reported": { - "label": "gov.dwp.attendance_allowance_reported", - "description": null, - "index": 0 - }, - "gov.dwp.additional_state_pension": { - "label": "gov.dwp.additional_state_pension", - "description": null, - "index": 0 - }, - "gov.dwp.working_tax_credit": { - "label": "gov.dwp.working_tax_credit", - "description": null, - "index": 0 - }, - "gov.dwp.is_CTC_eligible": { - "label": "gov.dwp.is_CTC_eligible", - "description": null, - "index": 0 - }, - "gov.dwp.basic_state_pension": { - "label": "gov.dwp.basic_state_pension", - "description": null, - "index": 0 - }, - "gov.dwp.income_support": { - "label": "gov.dwp.income_support", - "description": null, - "index": 0 - }, - "gov.dwp.new_state_pension": { - "label": "gov.dwp.new_state_pension", - "description": null, - "index": 0 - }, - "gov.dwp.adult_ema": { - "label": "gov.dwp.adult_ema", - "description": null, - "index": 0 - }, - "gov.dwp.afcs_reported": { - "label": "gov.dwp.afcs_reported", - "description": null, - "index": 0 - }, - "gov.dwp.sda": { - "label": "gov.dwp.sda", - "description": null, - "index": 0 - }, - "gov.dwp.income_support_applicable_income": { - "label": "gov.dwp.income_support_applicable_income", - "description": null, - "index": 0 - }, - "gov.dwp.CTC_family_element": { - "label": "gov.dwp.CTC_family_element", - "description": null, - "index": 0 - }, - "gov.dwp.esa_income": { - "label": "gov.dwp.esa_income", - "description": null, - "index": 0 - }, - "gov.dwp.care_hours": { - "label": "gov.dwp.care_hours", - "description": null, - "index": 0 - }, - "gov.dwp.carers_allowance": { - "label": "gov.dwp.carers_allowance", - "description": null, - "index": 0 - }, - "gov.dwp.CTC_maximum_rate": { - "label": "gov.dwp.CTC_maximum_rate", - "description": null, - "index": 0 - }, - "gov.dwp.would_claim_IS": { - "label": "gov.dwp.would_claim_IS", - "description": null, - "index": 0 - }, - "gov.dwp.income_support_reported": { - "label": "gov.dwp.income_support_reported", - "description": null, - "index": 0 - }, - "gov.dwp.ctc_entitlement": { - "label": "gov.dwp.ctc_entitlement", - "description": null, - "index": 0 - }, - "gov.dwp.incapacity_benefit_reported": { - "label": "gov.dwp.incapacity_benefit_reported", - "description": null, - "index": 0 - }, - "gov.dwp.bsp": { - "label": "gov.dwp.bsp", - "description": null, - "index": 0 - }, - "gov.dwp.BRMA_LHA_rate": { - "label": "gov.dwp.BRMA_LHA_rate", - "description": null, - "index": 0 - }, - "gov.dwp.tax_credits_reduction": { - "label": "gov.dwp.tax_credits_reduction", - "description": null, - "index": 0 - }, - "gov.dwp.winter_fuel_allowance": { - "label": "gov.dwp.winter_fuel_allowance", - "description": null, - "index": 0 - }, - "gov.dwp.is_WTC_eligible": { - "label": "gov.dwp.is_WTC_eligible", - "description": null, - "index": 0 - }, - "gov.dwp.tax_credits_applicable_income": { - "label": "gov.dwp.tax_credits_applicable_income", - "description": null, - "index": 0 - }, - "gov.dwp.LHA_allowed_bedrooms": { - "label": "gov.dwp.LHA_allowed_bedrooms", - "description": null, - "index": 0 - }, - "gov.dwp.income_support_eligible": { - "label": "gov.dwp.income_support_eligible", - "description": null, - "index": 0 - }, - "gov.dwp.education_grants": { - "label": "gov.dwp.education_grants", - "description": null, - "index": 0 - }, - "gov.dwp.wtc_entitlement": { - "label": "gov.dwp.wtc_entitlement", - "description": null, - "index": 0 - }, - "gov.dwp.council_tax_benefit": { - "label": "gov.dwp.council_tax_benefit", - "description": null, - "index": 0 - }, - "gov.dwp.is_benefit_cap_exempt": { - "label": "gov.dwp.is_benefit_cap_exempt", - "description": null, - "index": 0 - }, - "gov.dwp.is_child_for_CTC": { - "label": "gov.dwp.is_child_for_CTC", - "description": null, - "index": 0 - }, - "gov.dwp.winter_fuel_allowance_reported": { - "label": "gov.dwp.winter_fuel_allowance_reported", - "description": null, - "index": 0 - }, - "gov.dwp.LHA_cap": { - "label": "gov.dwp.LHA_cap", - "description": null, - "index": 0 - }, - "gov.dwp.would_claim_CTC": { - "label": "gov.dwp.would_claim_CTC", - "description": null, - "index": 0 - }, - "gov.dwp.state_pension_reported": { - "label": "gov.dwp.state_pension_reported", - "description": null, - "index": 0 - }, - "gov.dwp.WTC_maximum_rate": { - "label": "gov.dwp.WTC_maximum_rate", - "description": null, - "index": 0 - }, - "gov.dwp.sda_reported": { - "label": "gov.dwp.sda_reported", - "description": null, - "index": 0 - }, - "gov.dwp.esa": { - "label": "gov.dwp.esa", - "description": null, - "index": 0 - }, - "gov.dwp.council_tax_benefit_reported": { - "label": "gov.dwp.council_tax_benefit_reported", - "description": null, - "index": 0 - }, - "gov.dwp.would_claim_WTC": { - "label": "gov.dwp.would_claim_WTC", - "description": null, - "index": 0 - }, - "gov.dwp.income_support_applicable_amount": { - "label": "gov.dwp.income_support_applicable_amount", - "description": null, - "index": 0 - }, - "gov.dwp.WTC_disabled_element": { - "label": "gov.dwp.WTC_disabled_element", - "description": null, - "index": 0 - }, - "gov.dwp.jsa_income": { - "label": "gov.dwp.jsa_income", - "description": null, - "index": 0 - }, - "gov.dwp.esa_contrib": { - "label": "gov.dwp.esa_contrib", - "description": null, - "index": 0 - }, - "gov.dwp.incapacity_benefit": { - "label": "gov.dwp.incapacity_benefit", - "description": null, - "index": 0 - }, - "gov.dwp.ssmg": { - "label": "gov.dwp.ssmg", - "description": null, - "index": 0 - }, - "gov.dwp.attendance_allowance": { - "label": "gov.dwp.attendance_allowance", - "description": null, - "index": 0 - }, - "gov.dwp.working_tax_credit_reported": { - "label": "gov.dwp.working_tax_credit_reported", - "description": null, - "index": 0 - }, - "gov.dwp.iidb": { - "label": "gov.dwp.iidb", - "description": null, - "index": 0 - }, - "gov.dwp.LHA_eligible": { - "label": "gov.dwp.LHA_eligible", - "description": null, - "index": 0 - }, - "gov.dwp.jsa_contrib_reported": { - "label": "gov.dwp.jsa_contrib_reported", - "description": null, - "index": 0 - }, - "gov.dwp.WTC_basic_element": { - "label": "gov.dwp.WTC_basic_element", - "description": null, - "index": 0 - }, - "gov.dwp.maternity_allowance_reported": { - "label": "gov.dwp.maternity_allowance_reported", - "description": null, - "index": 0 - }, - "gov.dwp.CTC_severely_disabled_child_element": { - "label": "gov.dwp.CTC_severely_disabled_child_element", - "description": null, - "index": 0 - }, - "gov.dwp.healthy_start_vouchers": { - "label": "gov.dwp.healthy_start_vouchers", - "description": null, - "index": 0 - }, - "gov.dwp.carers_allowance_reported": { - "label": "gov.dwp.carers_allowance_reported", - "description": null, - "index": 0 - }, - "gov.dwp.is_CTC_child_limit_exempt": { - "label": "gov.dwp.is_CTC_child_limit_exempt", - "description": null, - "index": 0 - }, - "gov.dwp.child_ema": { - "label": "gov.dwp.child_ema", - "description": null, - "index": 0 - }, - "gov.dwp.afcs": { - "label": "gov.dwp.afcs", - "description": null, - "index": 0 - }, - "gov.dwp.child_tax_credit_reported": { - "label": "gov.dwp.child_tax_credit_reported", - "description": null, - "index": 0 - }, - "gov.dwp.baseline_wtc_entitlement": { - "label": "gov.dwp.baseline_wtc_entitlement", - "description": null, - "index": 0 - }, - "gov.dwp.WTC_worker_element": { - "label": "gov.dwp.WTC_worker_element", - "description": null, - "index": 0 - }, - "gov.dwp.CTC_disabled_child_element": { - "label": "gov.dwp.CTC_disabled_child_element", - "description": null, - "index": 0 - }, - "gov.dwp.WTC_severely_disabled_element": { - "label": "gov.dwp.WTC_severely_disabled_element", - "description": null, - "index": 0 - }, - "gov.dwp.student_payments": { - "label": "gov.dwp.student_payments", - "description": null, - "index": 0 - }, - "gov.dwp.jsa": { - "label": "gov.dwp.jsa", - "description": null, - "index": 0 - }, - "gov.dwp.child_tax_credit_pre_minimum": { - "label": "gov.dwp.child_tax_credit_pre_minimum", - "description": null, - "index": 0 - }, - "gov.dwp.income_support_entitlement": { - "label": "gov.dwp.income_support_entitlement", - "description": null, - "index": 0 - }, - "gov.dwp.ctc_child_limit_affected": { - "label": "gov.dwp.ctc_child_limit_affected", - "description": null, - "index": 0 - }, - "gov.dwp.benefit_cap": { - "label": "gov.dwp.benefit_cap", - "description": null, - "index": 0 - }, - "gov.dwp.aa_category": { - "label": "gov.dwp.aa_category", - "description": null, - "index": 0 - }, - "gov.dwp.child_tax_credit": { - "label": "gov.dwp.child_tax_credit", - "description": null, - "index": 0 - }, - "gov.dwp.esa_contrib_reported": { - "label": "gov.dwp.esa_contrib_reported", - "description": null, - "index": 0 - }, - "gov.dwp.benefit_cap_reduction": { - "label": "gov.dwp.benefit_cap_reduction", - "description": null, - "index": 0 - }, - "gov.dwp.access_fund": { - "label": "gov.dwp.access_fund", - "description": null, - "index": 0 - }, - "gov.dwp.CTC_child_element": { - "label": "gov.dwp.CTC_child_element", - "description": null, - "index": 0 - }, - "gov.dwp.iidb_reported": { - "label": "gov.dwp.iidb_reported", - "description": null, - "index": 0 - }, - "gov.dwp.afip": { - "label": "gov.dwp.afip", - "description": null, - "index": 0 - }, - "gov.dwp.baseline_income_support_entitlement": { - "label": "gov.dwp.baseline_income_support_entitlement", - "description": null, - "index": 0 - }, - "gov.dwp.state_pension_age": { - "label": "gov.dwp.state_pension_age", - "description": null, - "index": 0 - }, - "gov.dwp.WTC_lone_parent_element": { - "label": "gov.dwp.WTC_lone_parent_element", - "description": null, - "index": 0 - }, - "gov.dwp.esa_income_reported": { - "label": "gov.dwp.esa_income_reported", - "description": null, - "index": 0 - }, - "gov.dwp.jsa_contrib": { - "label": "gov.dwp.jsa_contrib", - "description": null, - "index": 0 - }, - "gov.dwp.student_loans": { - "label": "gov.dwp.student_loans", - "description": null, - "index": 0 - }, - "gov.dwp.state_pension_type": { - "label": "gov.dwp.state_pension_type", - "description": null, - "index": 0 - }, - "gov.dwp.working_tax_credit_pre_minimum": { - "label": "gov.dwp.working_tax_credit_pre_minimum", - "description": null, - "index": 0 - }, - "gov.dwp.jsa_income_reported": { - "label": "gov.dwp.jsa_income_reported", - "description": null, - "index": 0 - }, - "gov.dwp.universal_credit.universal_credit_reported": { - "label": "gov.dwp.universal_credit.universal_credit_reported", - "description": null, - "index": 0 - }, - "gov.dwp.universal_credit.is_uc_entitled_baseline": { - "label": "gov.dwp.universal_credit.is_uc_entitled_baseline", - "description": null, - "index": 0 - }, - "gov.dwp.universal_credit.is_uc_entitled": { - "label": "gov.dwp.universal_credit.is_uc_entitled", - "description": null, - "index": 0 - }, - "gov.dwp.universal_credit.would_claim_uc": { - "label": "gov.dwp.universal_credit.would_claim_uc", - "description": null, - "index": 0 - }, - "gov.dwp.universal_credit.uc_maximum_amount": { - "label": "gov.dwp.universal_credit.uc_maximum_amount", - "description": null, - "index": 0 - }, - "gov.dwp.universal_credit.universal_credit": { - "label": "gov.dwp.universal_credit.universal_credit", - "description": null, - "index": 0 - }, - "gov.dwp.universal_credit.universal_credit_pre_benefit_cap": { - "label": "gov.dwp.universal_credit.universal_credit_pre_benefit_cap", - "description": null, - "index": 0 - }, - "gov.dwp.universal_credit.is_uc_eligible": { - "label": "gov.dwp.universal_credit.is_uc_eligible", - "description": null, - "index": 0 - }, - "gov.dwp.universal_credit.standard_allowance.uc_standard_allowance_claimant_type": { - "label": "gov.dwp.universal_credit.standard_allowance.uc_standard_allowance_claimant_type", - "description": null, - "index": 0 - }, - "gov.dwp.universal_credit.standard_allowance.uc_standard_allowance": { - "label": "gov.dwp.universal_credit.standard_allowance.uc_standard_allowance", - "description": null, - "index": 0 - }, - "gov.dwp.universal_credit.child_element.uc_individual_child_element": { - "label": "gov.dwp.universal_credit.child_element.uc_individual_child_element", - "description": null, - "index": 0 - }, - "gov.dwp.universal_credit.child_element.uc_is_child_born_before_child_limit": { - "label": "gov.dwp.universal_credit.child_element.uc_is_child_born_before_child_limit", - "description": null, - "index": 0 - }, - "gov.dwp.universal_credit.child_element.uc_child_element": { - "label": "gov.dwp.universal_credit.child_element.uc_child_element", - "description": null, - "index": 0 - }, - "gov.dwp.universal_credit.child_element.uc_is_child_limit_affected": { - "label": "gov.dwp.universal_credit.child_element.uc_is_child_limit_affected", - "description": null, - "index": 0 - }, - "gov.dwp.universal_credit.child_element.disability.uc_individual_disabled_child_element": { - "label": "gov.dwp.universal_credit.child_element.disability.uc_individual_disabled_child_element", - "description": null, - "index": 0 - }, - "gov.dwp.universal_credit.child_element.disability.severe_disability.uc_individual_severely_disabled_child_element": { - "label": "gov.dwp.universal_credit.child_element.disability.severe_disability.uc_individual_severely_disabled_child_element", - "description": null, - "index": 0 - }, - "gov.dwp.universal_credit.income.uc_is_in_startup_period": { - "label": "gov.dwp.universal_credit.income.uc_is_in_startup_period", - "description": null, - "index": 0 - }, - "gov.dwp.universal_credit.income.uc_income_reduction": { - "label": "gov.dwp.universal_credit.income.uc_income_reduction", - "description": null, - "index": 0 - }, - "gov.dwp.universal_credit.income.uc_unearned_income": { - "label": "gov.dwp.universal_credit.income.uc_unearned_income", - "description": null, - "index": 0 - }, - "gov.dwp.universal_credit.income.uc_earned_income": { - "label": "gov.dwp.universal_credit.income.uc_earned_income", - "description": null, - "index": 0 - }, - "gov.dwp.universal_credit.income.income_floor.uc_mif_applies": { - "label": "gov.dwp.universal_credit.income.income_floor.uc_mif_applies", - "description": null, - "index": 0 - }, - "gov.dwp.universal_credit.income.income_floor.uc_minimum_income_floor": { - "label": "gov.dwp.universal_credit.income.income_floor.uc_minimum_income_floor", - "description": null, - "index": 0 - }, - "gov.dwp.universal_credit.income.income_floor.uc_mif_capped_earned_income": { - "label": "gov.dwp.universal_credit.income.income_floor.uc_mif_capped_earned_income", - "description": null, - "index": 0 - }, - "gov.dwp.universal_credit.childcare_element.uc_eligible_children": { - "label": "gov.dwp.universal_credit.childcare_element.uc_eligible_children", - "description": null, - "index": 0 - }, - "gov.dwp.universal_credit.childcare_element.uc_childcare_work_condition": { - "label": "gov.dwp.universal_credit.childcare_element.uc_childcare_work_condition", - "description": null, - "index": 0 - }, - "gov.dwp.universal_credit.childcare_element.uc_childcare_element": { - "label": "gov.dwp.universal_credit.childcare_element.uc_childcare_element", - "description": null, - "index": 0 - }, - "gov.dwp.universal_credit.childcare_element.uc_maximum_childcare_element_amount": { - "label": "gov.dwp.universal_credit.childcare_element.uc_maximum_childcare_element_amount", - "description": null, - "index": 0 - }, - "gov.dwp.universal_credit.disability_element.uc_disability_elements": { - "label": "gov.dwp.universal_credit.disability_element.uc_disability_elements", - "description": null, - "index": 0 - }, - "gov.dwp.universal_credit.disability_element.limited_work_ability.uc_LCWRA_element": { - "label": "gov.dwp.universal_credit.disability_element.limited_work_ability.uc_LCWRA_element", - "description": null, - "index": 0 - }, - "gov.dwp.universal_credit.disability_element.limited_work_ability.uc_limited_capability_for_WRA": { - "label": "gov.dwp.universal_credit.disability_element.limited_work_ability.uc_limited_capability_for_WRA", - "description": null, - "index": 0 - }, - "gov.dwp.universal_credit.carer_element.uc_carer_element": { - "label": "gov.dwp.universal_credit.carer_element.uc_carer_element", - "description": null, - "index": 0 - }, - "gov.dwp.universal_credit.housing_costs_element.uc_housing_costs_element": { - "label": "gov.dwp.universal_credit.housing_costs_element.uc_housing_costs_element", - "description": null, - "index": 0 - }, - "gov.dwp.universal_credit.housing_costs_element.non_dep_deduction.uc_non_dep_deduction_exempt": { - "label": "gov.dwp.universal_credit.housing_costs_element.non_dep_deduction.uc_non_dep_deduction_exempt", - "description": null, - "index": 0 - }, - "gov.dwp.universal_credit.housing_costs_element.non_dep_deduction.uc_individual_non_dep_deduction": { - "label": "gov.dwp.universal_credit.housing_costs_element.non_dep_deduction.uc_individual_non_dep_deduction", - "description": null, - "index": 0 - }, - "gov.dwp.universal_credit.housing_costs_element.non_dep_deduction.uc_non_dep_deductions": { - "label": "gov.dwp.universal_credit.housing_costs_element.non_dep_deduction.uc_non_dep_deductions", - "description": null, - "index": 0 - }, - "gov.dwp.universal_credit.housing_costs_element.non_dep_deduction.uc_individual_non_dep_deduction_eligible": { - "label": "gov.dwp.universal_credit.housing_costs_element.non_dep_deduction.uc_individual_non_dep_deduction_eligible", - "description": null, - "index": 0 - }, - "gov.dwp.universal_credit.work_allowance.uc_work_allowance": { - "label": "gov.dwp.universal_credit.work_allowance.uc_work_allowance", - "description": null, - "index": 0 - }, - "gov.dwp.universal_credit.work_allowance.is_uc_work_allowance_eligible": { - "label": "gov.dwp.universal_credit.work_allowance.is_uc_work_allowance_eligible", - "description": null, - "index": 0 - }, - "gov.dwp.dla.dla_m_reported": { - "label": "gov.dwp.dla.dla_m_reported", - "description": null, - "index": 0 - }, - "gov.dwp.dla.dla_sc_middle_plus": { - "label": "gov.dwp.dla.dla_sc_middle_plus", - "description": null, - "index": 0 - }, - "gov.dwp.dla.dla": { - "label": "gov.dwp.dla.dla", - "description": null, - "index": 0 - }, - "gov.dwp.dla.dla_sc": { - "label": "gov.dwp.dla.dla_sc", - "description": null, - "index": 0 - }, - "gov.dwp.dla.receives_highest_dla_sc": { - "label": "gov.dwp.dla.receives_highest_dla_sc", - "description": null, - "index": 0 - }, - "gov.dwp.dla.dla_m": { - "label": "gov.dwp.dla.dla_m", - "description": null, - "index": 0 - }, - "gov.dwp.dla.dla_sc_reported": { - "label": "gov.dwp.dla.dla_sc_reported", - "description": null, - "index": 0 - }, - "gov.dwp.pension_credit.pension_credit": { - "label": "gov.dwp.pension_credit.pension_credit", - "description": null, - "index": 0 - }, - "gov.dwp.pension_credit.baseline_pension_credit_entitlement": { - "label": "gov.dwp.pension_credit.baseline_pension_credit_entitlement", - "description": null, - "index": 0 - }, - "gov.dwp.pension_credit.pension_credit_entitlement": { - "label": "gov.dwp.pension_credit.pension_credit_entitlement", - "description": null, - "index": 0 - }, - "gov.dwp.pension_credit.is_pension_credit_eligible": { - "label": "gov.dwp.pension_credit.is_pension_credit_eligible", - "description": null, - "index": 0 - }, - "gov.dwp.pension_credit.pension_credit_earnings": { - "label": "gov.dwp.pension_credit.pension_credit_earnings", - "description": null, - "index": 0 - }, - "gov.dwp.pension_credit.pension_credit_income": { - "label": "gov.dwp.pension_credit.pension_credit_income", - "description": null, - "index": 0 - }, - "gov.dwp.pension_credit.would_claim": { - "label": "gov.dwp.pension_credit.would_claim", - "description": null, - "index": 0 - }, - "gov.dwp.pension_credit.pension_credit_reported": { - "label": "gov.dwp.pension_credit.pension_credit_reported", - "description": null, - "index": 0 - }, - "gov.dwp.pension_credit.savings_credit.savings_credit": { - "label": "gov.dwp.pension_credit.savings_credit.savings_credit", - "description": null, - "index": 0 - }, - "gov.dwp.pension_credit.savings_credit.savings_credit_income": { - "label": "gov.dwp.pension_credit.savings_credit.savings_credit_income", - "description": null, - "index": 0 - }, - "gov.dwp.pension_credit.savings_credit.meets_savings_credit_age_requirement": { - "label": "gov.dwp.pension_credit.savings_credit.meets_savings_credit_age_requirement", - "description": null, - "index": 0 - }, - "gov.dwp.pension_credit.savings_credit.is_savings_credit_eligible": { - "label": "gov.dwp.pension_credit.savings_credit.is_savings_credit_eligible", - "description": null, - "index": 0 - }, - "gov.dwp.pension_credit.guarantee_credit.is_guarantee_credit_eligible": { - "label": "gov.dwp.pension_credit.guarantee_credit.is_guarantee_credit_eligible", - "description": null, - "index": 0 - }, - "gov.dwp.pension_credit.guarantee_credit.guarantee_credit": { - "label": "gov.dwp.pension_credit.guarantee_credit.guarantee_credit", - "description": null, - "index": 0 - }, - "gov.dwp.pension_credit.guarantee_credit.minimum_guarantee.minimum_guarantee": { - "label": "gov.dwp.pension_credit.guarantee_credit.minimum_guarantee.minimum_guarantee", - "description": null, - "index": 0 - }, - "gov.dwp.pension_credit.guarantee_credit.minimum_guarantee.standard_minimum_guarantee": { - "label": "gov.dwp.pension_credit.guarantee_credit.minimum_guarantee.standard_minimum_guarantee", - "description": null, - "index": 0 - }, - "gov.dwp.pension_credit.guarantee_credit.minimum_guarantee.additional.carer_minimum_guarantee_addition": { - "label": "gov.dwp.pension_credit.guarantee_credit.minimum_guarantee.additional.carer_minimum_guarantee_addition", - "description": null, - "index": 0 - }, - "gov.dwp.pension_credit.guarantee_credit.minimum_guarantee.additional.severe_disability_minimum_guarantee_addition": { - "label": "gov.dwp.pension_credit.guarantee_credit.minimum_guarantee.additional.severe_disability_minimum_guarantee_addition", - "description": null, - "index": 0 - }, - "gov.dwp.pension_credit.guarantee_credit.minimum_guarantee.additional.child_minimum_guarantee_addition": { - "label": "gov.dwp.pension_credit.guarantee_credit.minimum_guarantee.additional.child_minimum_guarantee_addition", - "description": null, - "index": 0 - }, - "gov.dwp.pension_credit.guarantee_credit.minimum_guarantee.additional.additional_minimum_guarantee": { - "label": "gov.dwp.pension_credit.guarantee_credit.minimum_guarantee.additional.additional_minimum_guarantee", - "description": null, - "index": 0 - }, - "gov.dwp.pip.receives_enhanced_pip_dl": { - "label": "gov.dwp.pip.receives_enhanced_pip_dl", - "description": null, - "index": 0 - }, - "gov.dwp.pip.pip_m_reported": { - "label": "gov.dwp.pip.pip_m_reported", - "description": null, - "index": 0 - }, - "gov.dwp.pip.pip_dl": { - "label": "gov.dwp.pip.pip_dl", - "description": null, - "index": 0 - }, - "gov.dwp.pip.pip_dl_reported": { - "label": "gov.dwp.pip.pip_dl_reported", - "description": null, - "index": 0 - }, - "gov.dwp.pip.pip_m": { - "label": "gov.dwp.pip.pip_m", - "description": null, - "index": 0 - }, - "gov.dwp.pip.pip": { - "label": "gov.dwp.pip.pip", - "description": null, - "index": 0 - }, - "gov.dwp.housing_benefit.housing_benefit": { - "label": "gov.dwp.housing_benefit.housing_benefit", - "description": null, - "index": 0 - }, - "gov.dwp.housing_benefit.housing_benefit_eligible": { - "label": "gov.dwp.housing_benefit.housing_benefit_eligible", - "description": null, - "index": 0 - }, - "gov.dwp.housing_benefit.housing_benefit_applicable_amount": { - "label": "gov.dwp.housing_benefit.housing_benefit_applicable_amount", - "description": null, - "index": 0 - }, - "gov.dwp.housing_benefit.housing_benefit_reported": { - "label": "gov.dwp.housing_benefit.housing_benefit_reported", - "description": null, - "index": 0 - }, - "gov.dwp.housing_benefit.would_claim_housing_benefit": { - "label": "gov.dwp.housing_benefit.would_claim_housing_benefit", - "description": null, - "index": 0 - }, - "gov.dwp.housing_benefit.housing_benefit_pre_benefit_cap": { - "label": "gov.dwp.housing_benefit.housing_benefit_pre_benefit_cap", - "description": null, - "index": 0 - }, - "gov.dwp.housing_benefit.applicable_income.housing_benefit_applicable_income_childcare_element": { - "label": "gov.dwp.housing_benefit.applicable_income.housing_benefit_applicable_income_childcare_element", - "description": null, - "index": 0 - }, - "gov.dwp.housing_benefit.applicable_income.housing_benefit_applicable_income_disregard": { - "label": "gov.dwp.housing_benefit.applicable_income.housing_benefit_applicable_income_disregard", - "description": null, - "index": 0 - }, - "gov.dwp.housing_benefit.applicable_income.housing_benefit_applicable_income": { - "label": "gov.dwp.housing_benefit.applicable_income.housing_benefit_applicable_income", - "description": null, - "index": 0 - }, - "gov.dwp.housing_benefit.non_dep_deduction.household_benefits_individual_non_dep_deduction": { - "label": "gov.dwp.housing_benefit.non_dep_deduction.household_benefits_individual_non_dep_deduction", - "description": null, - "index": 0 - }, - "gov.dwp.housing_benefit.non_dep_deduction.housing_benefit_non_dep_deductions": { - "label": "gov.dwp.housing_benefit.non_dep_deduction.housing_benefit_non_dep_deductions", - "description": null, - "index": 0 - }, - "gov.dwp.housing_benefit.non_dep_deduction.housing_benefit_individual_non_dep_deduction_eligible": { - "label": "gov.dwp.housing_benefit.non_dep_deduction.housing_benefit_individual_non_dep_deduction_eligible", - "description": null, - "index": 0 - }, - "gov.dwp.housing_benefit.entitlement.housing_benefit_baseline_entitlement": { - "label": "gov.dwp.housing_benefit.entitlement.housing_benefit_baseline_entitlement", - "description": null, - "index": 0 - }, - "gov.dwp.housing_benefit.entitlement.housing_benefit_entitlement": { - "label": "gov.dwp.housing_benefit.entitlement.housing_benefit_entitlement", - "description": null, - "index": 0 - }, - "gov.treasury.cost_of_living_support.cost_of_living_support_payment": { - "label": "gov.treasury.cost_of_living_support.cost_of_living_support_payment", - "description": null, - "index": 0 - }, - "gov.treasury.price_cap_subsidy.monthly_epg_subsidy": { - "label": "gov.treasury.price_cap_subsidy.monthly_epg_subsidy", - "description": null, - "index": 0 - }, - "gov.treasury.price_cap_subsidy.epg_subsidy": { - "label": "gov.treasury.price_cap_subsidy.epg_subsidy", - "description": null, - "index": 0 - }, - "gov.treasury.price_cap_subsidy.monthly_domestic_energy_consumption": { - "label": "gov.treasury.price_cap_subsidy.monthly_domestic_energy_consumption", - "description": null, - "index": 0 - }, - "gov.treasury.price_cap_subsidy.monthly_epg_consumption_level": { - "label": "gov.treasury.price_cap_subsidy.monthly_epg_consumption_level", - "description": null, - "index": 0 - }, - "gov.treasury.energy_bills_rebate.energy_bills_rebate": { - "label": "gov.treasury.energy_bills_rebate.energy_bills_rebate", - "description": null, - "index": 0 - }, - "gov.treasury.energy_bills_rebate.energy_bills_credit": { - "label": "gov.treasury.energy_bills_rebate.energy_bills_credit", - "description": null, - "index": 0 - }, - "gov.treasury.energy_bills_rebate.council_tax_rebate": { - "label": "gov.treasury.energy_bills_rebate.council_tax_rebate", - "description": null, - "index": 0 - }, - "gov.social_security_scotland.pawhp": { - "label": "gov.social_security_scotland.pawhp", - "description": null, - "index": 0 - }, - "gov.simulation.labor_supply_response.relative_wage_change": { - "label": "gov.simulation.labor_supply_response.relative_wage_change", - "description": null, - "index": 0 - }, - "gov.simulation.labor_supply_response.relative_income_change": { - "label": "gov.simulation.labor_supply_response.relative_income_change", - "description": null, - "index": 0 - }, - "gov.simulation.labor_supply_response.substitution_elasticity_lsr": { - "label": "gov.simulation.labor_supply_response.substitution_elasticity_lsr", - "description": null, - "index": 0 - }, - "gov.simulation.labor_supply_response.employment_income_behavioral_response": { - "label": "gov.simulation.labor_supply_response.employment_income_behavioral_response", - "description": null, - "index": 0 - }, - "gov.simulation.labor_supply_response.income_elasticity_lsr": { - "label": "gov.simulation.labor_supply_response.income_elasticity_lsr", - "description": null, - "index": 0 - }, - "gov.wra.ltt_on_rent": { - "label": "gov.wra.ltt_on_rent", - "description": null, - "index": 0 - }, - "gov.wra.ltt_liable": { - "label": "gov.wra.ltt_liable", - "description": null, - "index": 0 - }, - "gov.wra.ltt_on_non_residential_property_rent": { - "label": "gov.wra.ltt_on_non_residential_property_rent", - "description": null, - "index": 0 - }, - "gov.wra.ltt_on_transactions": { - "label": "gov.wra.ltt_on_transactions", - "description": null, - "index": 0 - }, - "gov.wra.expected_ltt": { - "label": "gov.wra.expected_ltt", - "description": null, - "index": 0 - }, - "gov.wra.ltt_on_non_residential_property_transactions": { - "label": "gov.wra.ltt_on_non_residential_property_transactions", - "description": null, - "index": 0 - }, - "gov.wra.ltt_on_residential_property_rent": { - "label": "gov.wra.ltt_on_residential_property_rent", - "description": null, - "index": 0 - }, - "gov.wra.land_transaction_tax": { - "label": "gov.wra.land_transaction_tax", - "description": null, - "index": 0 - }, - "gov.wra.ltt_on_residential_property_transactions": { - "label": "gov.wra.ltt_on_residential_property_transactions", - "description": null, - "index": 0 - } - }, - "economy_options": { - "region": [ - { - "name": "uk", - "label": "the UK" - }, - { - "name": "country/england", - "label": "England" - }, - { - "name": "country/scotland", - "label": "Scotland" - }, - { - "name": "country/wales", - "label": "Wales" - }, - { - "name": "country/ni", - "label": "Northern Ireland" - }, - { - "name": "constituency/Aldershot", - "label": "Aldershot" - }, - { - "name": "constituency/Aldridge-Brownhills", - "label": "Aldridge-Brownhills" - }, - { - "name": "constituency/Altrincham and Sale West", - "label": "Altrincham and Sale West" - }, - { - "name": "constituency/Amber Valley", - "label": "Amber Valley" - }, - { - "name": "constituency/Arundel and South Downs", - "label": "Arundel and South Downs" - }, - { - "name": "constituency/Ashfield", - "label": "Ashfield" - }, - { - "name": "constituency/Ashford", - "label": "Ashford" - }, - { - "name": "constituency/Ashton-under-Lyne", - "label": "Ashton-under-Lyne" - }, - { - "name": "constituency/Aylesbury", - "label": "Aylesbury" - }, - { - "name": "constituency/Banbury", - "label": "Banbury" - }, - { - "name": "constituency/Barking", - "label": "Barking" - }, - { - "name": "constituency/Barnsley North", - "label": "Barnsley North" - }, - { - "name": "constituency/Barnsley South", - "label": "Barnsley South" - }, - { - "name": "constituency/Barrow and Furness", - "label": "Barrow and Furness" - }, - { - "name": "constituency/Basildon and Billericay", - "label": "Basildon and Billericay" - }, - { - "name": "constituency/Basingstoke", - "label": "Basingstoke" - }, - { - "name": "constituency/Bassetlaw", - "label": "Bassetlaw" - }, - { - "name": "constituency/Bath", - "label": "Bath" - }, - { - "name": "constituency/Battersea", - "label": "Battersea" - }, - { - "name": "constituency/Beaconsfield", - "label": "Beaconsfield" - }, - { - "name": "constituency/Beckenham and Penge", - "label": "Beckenham and Penge" - }, - { - "name": "constituency/Bedford", - "label": "Bedford" - }, - { - "name": "constituency/Bermondsey and Old Southwark", - "label": "Bermondsey and Old Southwark" - }, - { - "name": "constituency/Bethnal Green and Stepney", - "label": "Bethnal Green and Stepney" - }, - { - "name": "constituency/Beverley and Holderness", - "label": "Beverley and Holderness" - }, - { - "name": "constituency/Bexhill and Battle", - "label": "Bexhill and Battle" - }, - { - "name": "constituency/Bexleyheath and Crayford", - "label": "Bexleyheath and Crayford" - }, - { - "name": "constituency/Bicester and Woodstock", - "label": "Bicester and Woodstock" - }, - { - "name": "constituency/Birkenhead", - "label": "Birkenhead" - }, - { - "name": "constituency/Birmingham Edgbaston", - "label": "Birmingham Edgbaston" - }, - { - "name": "constituency/Birmingham Erdington", - "label": "Birmingham Erdington" - }, - { - "name": "constituency/Birmingham Hall Green and Moseley", - "label": "Birmingham Hall Green and Moseley" - }, - { - "name": "constituency/Birmingham Hodge Hill and Solihull North", - "label": "Birmingham Hodge Hill and Solihull North" - }, - { - "name": "constituency/Birmingham Ladywood", - "label": "Birmingham Ladywood" - }, - { - "name": "constituency/Birmingham Northfield", - "label": "Birmingham Northfield" - }, - { - "name": "constituency/Birmingham Perry Barr", - "label": "Birmingham Perry Barr" - }, - { - "name": "constituency/Birmingham Selly Oak", - "label": "Birmingham Selly Oak" - }, - { - "name": "constituency/Birmingham Yardley", - "label": "Birmingham Yardley" - }, - { - "name": "constituency/Bishop Auckland", - "label": "Bishop Auckland" - }, - { - "name": "constituency/Blackburn", - "label": "Blackburn" - }, - { - "name": "constituency/Blackley and Middleton South", - "label": "Blackley and Middleton South" - }, - { - "name": "constituency/Blackpool North and Fleetwood", - "label": "Blackpool North and Fleetwood" - }, - { - "name": "constituency/Blackpool South", - "label": "Blackpool South" - }, - { - "name": "constituency/Blaydon and Consett", - "label": "Blaydon and Consett" - }, - { - "name": "constituency/Blyth and Ashington", - "label": "Blyth and Ashington" - }, - { - "name": "constituency/Bognor Regis and Littlehampton", - "label": "Bognor Regis and Littlehampton" - }, - { - "name": "constituency/Bolsover", - "label": "Bolsover" - }, - { - "name": "constituency/Bolton North East", - "label": "Bolton North East" - }, - { - "name": "constituency/Bolton South and Walkden", - "label": "Bolton South and Walkden" - }, - { - "name": "constituency/Bolton West", - "label": "Bolton West" - }, - { - "name": "constituency/Bootle", - "label": "Bootle" - }, - { - "name": "constituency/Boston and Skegness", - "label": "Boston and Skegness" - }, - { - "name": "constituency/Bournemouth East", - "label": "Bournemouth East" - }, - { - "name": "constituency/Bournemouth West", - "label": "Bournemouth West" - }, - { - "name": "constituency/Bracknell", - "label": "Bracknell" - }, - { - "name": "constituency/Bradford East", - "label": "Bradford East" - }, - { - "name": "constituency/Bradford South", - "label": "Bradford South" - }, - { - "name": "constituency/Bradford West", - "label": "Bradford West" - }, - { - "name": "constituency/Braintree", - "label": "Braintree" - }, - { - "name": "constituency/Brent East", - "label": "Brent East" - }, - { - "name": "constituency/Brent West", - "label": "Brent West" - }, - { - "name": "constituency/Brentford and Isleworth", - "label": "Brentford and Isleworth" - }, - { - "name": "constituency/Brentwood and Ongar", - "label": "Brentwood and Ongar" - }, - { - "name": "constituency/Bridgwater", - "label": "Bridgwater" - }, - { - "name": "constituency/Bridlington and The Wolds", - "label": "Bridlington and The Wolds" - }, - { - "name": "constituency/Brigg and Immingham", - "label": "Brigg and Immingham" - }, - { - "name": "constituency/Brighton Kemptown and Peacehaven", - "label": "Brighton Kemptown and Peacehaven" - }, - { - "name": "constituency/Brighton Pavilion", - "label": "Brighton Pavilion" - }, - { - "name": "constituency/Bristol Central", - "label": "Bristol Central" - }, - { - "name": "constituency/Bristol East", - "label": "Bristol East" - }, - { - "name": "constituency/Bristol North East", - "label": "Bristol North East" - }, - { - "name": "constituency/Bristol North West", - "label": "Bristol North West" - }, - { - "name": "constituency/Bristol South", - "label": "Bristol South" - }, - { - "name": "constituency/Broadland and Fakenham", - "label": "Broadland and Fakenham" - }, - { - "name": "constituency/Bromley and Biggin Hill", - "label": "Bromley and Biggin Hill" - }, - { - "name": "constituency/Bromsgrove", - "label": "Bromsgrove" - }, - { - "name": "constituency/Broxbourne", - "label": "Broxbourne" - }, - { - "name": "constituency/Broxtowe", - "label": "Broxtowe" - }, - { - "name": "constituency/Buckingham and Bletchley", - "label": "Buckingham and Bletchley" - }, - { - "name": "constituency/Burnley", - "label": "Burnley" - }, - { - "name": "constituency/Burton and Uttoxeter", - "label": "Burton and Uttoxeter" - }, - { - "name": "constituency/Bury North", - "label": "Bury North" - }, - { - "name": "constituency/Bury South", - "label": "Bury South" - }, - { - "name": "constituency/Bury St Edmunds and Stowmarket", - "label": "Bury St Edmunds and Stowmarket" - }, - { - "name": "constituency/Calder Valley", - "label": "Calder Valley" - }, - { - "name": "constituency/Camborne and Redruth", - "label": "Camborne and Redruth" - }, - { - "name": "constituency/Cambridge", - "label": "Cambridge" - }, - { - "name": "constituency/Cannock Chase", - "label": "Cannock Chase" - }, - { - "name": "constituency/Canterbury", - "label": "Canterbury" - }, - { - "name": "constituency/Carlisle", - "label": "Carlisle" - }, - { - "name": "constituency/Carshalton and Wallington", - "label": "Carshalton and Wallington" - }, - { - "name": "constituency/Castle Point", - "label": "Castle Point" - }, - { - "name": "constituency/Central Devon", - "label": "Central Devon" - }, - { - "name": "constituency/Central Suffolk and North Ipswich", - "label": "Central Suffolk and North Ipswich" - }, - { - "name": "constituency/Chatham and Aylesford", - "label": "Chatham and Aylesford" - }, - { - "name": "constituency/Cheadle", - "label": "Cheadle" - }, - { - "name": "constituency/Chelmsford", - "label": "Chelmsford" - }, - { - "name": "constituency/Chelsea and Fulham", - "label": "Chelsea and Fulham" - }, - { - "name": "constituency/Cheltenham", - "label": "Cheltenham" - }, - { - "name": "constituency/Chesham and Amersham", - "label": "Chesham and Amersham" - }, - { - "name": "constituency/Chester North and Neston", - "label": "Chester North and Neston" - }, - { - "name": "constituency/Chester South and Eddisbury", - "label": "Chester South and Eddisbury" - }, - { - "name": "constituency/Chesterfield", - "label": "Chesterfield" - }, - { - "name": "constituency/Chichester", - "label": "Chichester" - }, - { - "name": "constituency/Chingford and Woodford Green", - "label": "Chingford and Woodford Green" - }, - { - "name": "constituency/Chippenham", - "label": "Chippenham" - }, - { - "name": "constituency/Chipping Barnet", - "label": "Chipping Barnet" - }, - { - "name": "constituency/Chorley", - "label": "Chorley" - }, - { - "name": "constituency/Christchurch", - "label": "Christchurch" - }, - { - "name": "constituency/Cities of London and Westminster", - "label": "Cities of London and Westminster" - }, - { - "name": "constituency/City of Durham", - "label": "City of Durham" - }, - { - "name": "constituency/Clacton", - "label": "Clacton" - }, - { - "name": "constituency/Clapham and Brixton Hill", - "label": "Clapham and Brixton Hill" - }, - { - "name": "constituency/Colchester", - "label": "Colchester" - }, - { - "name": "constituency/Colne Valley", - "label": "Colne Valley" - }, - { - "name": "constituency/Congleton", - "label": "Congleton" - }, - { - "name": "constituency/Corby and East Northamptonshire", - "label": "Corby and East Northamptonshire" - }, - { - "name": "constituency/Coventry East", - "label": "Coventry East" - }, - { - "name": "constituency/Coventry North West", - "label": "Coventry North West" - }, - { - "name": "constituency/Coventry South", - "label": "Coventry South" - }, - { - "name": "constituency/Cramlington and Killingworth", - "label": "Cramlington and Killingworth" - }, - { - "name": "constituency/Crawley", - "label": "Crawley" - }, - { - "name": "constituency/Crewe and Nantwich", - "label": "Crewe and Nantwich" - }, - { - "name": "constituency/Croydon East", - "label": "Croydon East" - }, - { - "name": "constituency/Croydon South", - "label": "Croydon South" - }, - { - "name": "constituency/Croydon West", - "label": "Croydon West" - }, - { - "name": "constituency/Dagenham and Rainham", - "label": "Dagenham and Rainham" - }, - { - "name": "constituency/Darlington", - "label": "Darlington" - }, - { - "name": "constituency/Dartford", - "label": "Dartford" - }, - { - "name": "constituency/Daventry", - "label": "Daventry" - }, - { - "name": "constituency/Derby North", - "label": "Derby North" - }, - { - "name": "constituency/Derby South", - "label": "Derby South" - }, - { - "name": "constituency/Derbyshire Dales", - "label": "Derbyshire Dales" - }, - { - "name": "constituency/Dewsbury and Batley", - "label": "Dewsbury and Batley" - }, - { - "name": "constituency/Didcot and Wantage", - "label": "Didcot and Wantage" - }, - { - "name": "constituency/Doncaster Central", - "label": "Doncaster Central" - }, - { - "name": "constituency/Doncaster East and the Isle of Axholme", - "label": "Doncaster East and the Isle of Axholme" - }, - { - "name": "constituency/Doncaster North", - "label": "Doncaster North" - }, - { - "name": "constituency/Dorking and Horley", - "label": "Dorking and Horley" - }, - { - "name": "constituency/Dover and Deal", - "label": "Dover and Deal" - }, - { - "name": "constituency/Droitwich and Evesham", - "label": "Droitwich and Evesham" - }, - { - "name": "constituency/Dudley", - "label": "Dudley" - }, - { - "name": "constituency/Dulwich and West Norwood", - "label": "Dulwich and West Norwood" - }, - { - "name": "constituency/Dunstable and Leighton Buzzard", - "label": "Dunstable and Leighton Buzzard" - }, - { - "name": "constituency/Ealing Central and Acton", - "label": "Ealing Central and Acton" - }, - { - "name": "constituency/Ealing North", - "label": "Ealing North" - }, - { - "name": "constituency/Ealing Southall", - "label": "Ealing Southall" - }, - { - "name": "constituency/Earley and Woodley", - "label": "Earley and Woodley" - }, - { - "name": "constituency/Easington", - "label": "Easington" - }, - { - "name": "constituency/East Grinstead and Uckfield", - "label": "East Grinstead and Uckfield" - }, - { - "name": "constituency/East Ham", - "label": "East Ham" - }, - { - "name": "constituency/East Hampshire", - "label": "East Hampshire" - }, - { - "name": "constituency/East Surrey", - "label": "East Surrey" - }, - { - "name": "constituency/East Thanet", - "label": "East Thanet" - }, - { - "name": "constituency/East Wiltshire", - "label": "East Wiltshire" - }, - { - "name": "constituency/East Worthing and Shoreham", - "label": "East Worthing and Shoreham" - }, - { - "name": "constituency/Eastbourne", - "label": "Eastbourne" - }, - { - "name": "constituency/Eastleigh", - "label": "Eastleigh" - }, - { - "name": "constituency/Edmonton and Winchmore Hill", - "label": "Edmonton and Winchmore Hill" - }, - { - "name": "constituency/Ellesmere Port and Bromborough", - "label": "Ellesmere Port and Bromborough" - }, - { - "name": "constituency/Eltham and Chislehurst", - "label": "Eltham and Chislehurst" - }, - { - "name": "constituency/Ely and East Cambridgeshire", - "label": "Ely and East Cambridgeshire" - }, - { - "name": "constituency/Enfield North", - "label": "Enfield North" - }, - { - "name": "constituency/Epping Forest", - "label": "Epping Forest" - }, - { - "name": "constituency/Epsom and Ewell", - "label": "Epsom and Ewell" - }, - { - "name": "constituency/Erewash", - "label": "Erewash" - }, - { - "name": "constituency/Erith and Thamesmead", - "label": "Erith and Thamesmead" - }, - { - "name": "constituency/Esher and Walton", - "label": "Esher and Walton" - }, - { - "name": "constituency/Exeter", - "label": "Exeter" - }, - { - "name": "constituency/Exmouth and Exeter East", - "label": "Exmouth and Exeter East" - }, - { - "name": "constituency/Fareham and Waterlooville", - "label": "Fareham and Waterlooville" - }, - { - "name": "constituency/Farnham and Bordon", - "label": "Farnham and Bordon" - }, - { - "name": "constituency/Faversham and Mid Kent", - "label": "Faversham and Mid Kent" - }, - { - "name": "constituency/Feltham and Heston", - "label": "Feltham and Heston" - }, - { - "name": "constituency/Filton and Bradley Stoke", - "label": "Filton and Bradley Stoke" - }, - { - "name": "constituency/Finchley and Golders Green", - "label": "Finchley and Golders Green" - }, - { - "name": "constituency/Folkestone and Hythe", - "label": "Folkestone and Hythe" - }, - { - "name": "constituency/Forest of Dean", - "label": "Forest of Dean" - }, - { - "name": "constituency/Frome and East Somerset", - "label": "Frome and East Somerset" - }, - { - "name": "constituency/Fylde", - "label": "Fylde" - }, - { - "name": "constituency/Gainsborough", - "label": "Gainsborough" - }, - { - "name": "constituency/Gateshead Central and Whickham", - "label": "Gateshead Central and Whickham" - }, - { - "name": "constituency/Gedling", - "label": "Gedling" - }, - { - "name": "constituency/Gillingham and Rainham", - "label": "Gillingham and Rainham" - }, - { - "name": "constituency/Glastonbury and Somerton", - "label": "Glastonbury and Somerton" - }, - { - "name": "constituency/Gloucester", - "label": "Gloucester" - }, - { - "name": "constituency/Godalming and Ash", - "label": "Godalming and Ash" - }, - { - "name": "constituency/Goole and Pocklington", - "label": "Goole and Pocklington" - }, - { - "name": "constituency/Gorton and Denton", - "label": "Gorton and Denton" - }, - { - "name": "constituency/Gosport", - "label": "Gosport" - }, - { - "name": "constituency/Grantham and Bourne", - "label": "Grantham and Bourne" - }, - { - "name": "constituency/Gravesham", - "label": "Gravesham" - }, - { - "name": "constituency/Great Grimsby and Cleethorpes", - "label": "Great Grimsby and Cleethorpes" - }, - { - "name": "constituency/Great Yarmouth", - "label": "Great Yarmouth" - }, - { - "name": "constituency/Greenwich and Woolwich", - "label": "Greenwich and Woolwich" - }, - { - "name": "constituency/Guildford", - "label": "Guildford" - }, - { - "name": "constituency/Hackney North and Stoke Newington", - "label": "Hackney North and Stoke Newington" - }, - { - "name": "constituency/Hackney South and Shoreditch", - "label": "Hackney South and Shoreditch" - }, - { - "name": "constituency/Halesowen", - "label": "Halesowen" - }, - { - "name": "constituency/Halifax", - "label": "Halifax" - }, - { - "name": "constituency/Hamble Valley", - "label": "Hamble Valley" - }, - { - "name": "constituency/Hammersmith and Chiswick", - "label": "Hammersmith and Chiswick" - }, - { - "name": "constituency/Hampstead and Highgate", - "label": "Hampstead and Highgate" - }, - { - "name": "constituency/Harborough, Oadby and Wigston", - "label": "Harborough, Oadby and Wigston" - }, - { - "name": "constituency/Harlow", - "label": "Harlow" - }, - { - "name": "constituency/Harpenden and Berkhamsted", - "label": "Harpenden and Berkhamsted" - }, - { - "name": "constituency/Harrogate and Knaresborough", - "label": "Harrogate and Knaresborough" - }, - { - "name": "constituency/Harrow East", - "label": "Harrow East" - }, - { - "name": "constituency/Harrow West", - "label": "Harrow West" - }, - { - "name": "constituency/Hartlepool", - "label": "Hartlepool" - }, - { - "name": "constituency/Harwich and North Essex", - "label": "Harwich and North Essex" - }, - { - "name": "constituency/Hastings and Rye", - "label": "Hastings and Rye" - }, - { - "name": "constituency/Havant", - "label": "Havant" - }, - { - "name": "constituency/Hayes and Harlington", - "label": "Hayes and Harlington" - }, - { - "name": "constituency/Hazel Grove", - "label": "Hazel Grove" - }, - { - "name": "constituency/Hemel Hempstead", - "label": "Hemel Hempstead" - }, - { - "name": "constituency/Hendon", - "label": "Hendon" - }, - { - "name": "constituency/Henley and Thame", - "label": "Henley and Thame" - }, - { - "name": "constituency/Hereford and South Herefordshire", - "label": "Hereford and South Herefordshire" - }, - { - "name": "constituency/Herne Bay and Sandwich", - "label": "Herne Bay and Sandwich" - }, - { - "name": "constituency/Hertford and Stortford", - "label": "Hertford and Stortford" - }, - { - "name": "constituency/Hertsmere", - "label": "Hertsmere" - }, - { - "name": "constituency/Hexham", - "label": "Hexham" - }, - { - "name": "constituency/Heywood and Middleton North", - "label": "Heywood and Middleton North" - }, - { - "name": "constituency/High Peak", - "label": "High Peak" - }, - { - "name": "constituency/Hinckley and Bosworth", - "label": "Hinckley and Bosworth" - }, - { - "name": "constituency/Hitchin", - "label": "Hitchin" - }, - { - "name": "constituency/Holborn and St Pancras", - "label": "Holborn and St Pancras" - }, - { - "name": "constituency/Honiton and Sidmouth", - "label": "Honiton and Sidmouth" - }, - { - "name": "constituency/Hornchurch and Upminster", - "label": "Hornchurch and Upminster" - }, - { - "name": "constituency/Hornsey and Friern Barnet", - "label": "Hornsey and Friern Barnet" - }, - { - "name": "constituency/Horsham", - "label": "Horsham" - }, - { - "name": "constituency/Houghton and Sunderland South", - "label": "Houghton and Sunderland South" - }, - { - "name": "constituency/Hove and Portslade", - "label": "Hove and Portslade" - }, - { - "name": "constituency/Huddersfield", - "label": "Huddersfield" - }, - { - "name": "constituency/Huntingdon", - "label": "Huntingdon" - }, - { - "name": "constituency/Hyndburn", - "label": "Hyndburn" - }, - { - "name": "constituency/Ilford North", - "label": "Ilford North" - }, - { - "name": "constituency/Ilford South", - "label": "Ilford South" - }, - { - "name": "constituency/Ipswich", - "label": "Ipswich" - }, - { - "name": "constituency/Isle of Wight East", - "label": "Isle of Wight East" - }, - { - "name": "constituency/Isle of Wight West", - "label": "Isle of Wight West" - }, - { - "name": "constituency/Islington North", - "label": "Islington North" - }, - { - "name": "constituency/Islington South and Finsbury", - "label": "Islington South and Finsbury" - }, - { - "name": "constituency/Jarrow and Gateshead East", - "label": "Jarrow and Gateshead East" - }, - { - "name": "constituency/Keighley and Ilkley", - "label": "Keighley and Ilkley" - }, - { - "name": "constituency/Kenilworth and Southam", - "label": "Kenilworth and Southam" - }, - { - "name": "constituency/Kensington and Bayswater", - "label": "Kensington and Bayswater" - }, - { - "name": "constituency/Kettering", - "label": "Kettering" - }, - { - "name": "constituency/Kingston and Surbiton", - "label": "Kingston and Surbiton" - }, - { - "name": "constituency/Kingston upon Hull East", - "label": "Kingston upon Hull East" - }, - { - "name": "constituency/Kingston upon Hull North and Cottingham", - "label": "Kingston upon Hull North and Cottingham" - }, - { - "name": "constituency/Kingston upon Hull West and Haltemprice", - "label": "Kingston upon Hull West and Haltemprice" - }, - { - "name": "constituency/Kingswinford and South Staffordshire", - "label": "Kingswinford and South Staffordshire" - }, - { - "name": "constituency/Knowsley", - "label": "Knowsley" - }, - { - "name": "constituency/Lancaster and Wyre", - "label": "Lancaster and Wyre" - }, - { - "name": "constituency/Leeds Central and Headingley", - "label": "Leeds Central and Headingley" - }, - { - "name": "constituency/Leeds East", - "label": "Leeds East" - }, - { - "name": "constituency/Leeds North East", - "label": "Leeds North East" - }, - { - "name": "constituency/Leeds North West", - "label": "Leeds North West" - }, - { - "name": "constituency/Leeds South", - "label": "Leeds South" - }, - { - "name": "constituency/Leeds South West and Morley", - "label": "Leeds South West and Morley" - }, - { - "name": "constituency/Leeds West and Pudsey", - "label": "Leeds West and Pudsey" - }, - { - "name": "constituency/Leicester East", - "label": "Leicester East" - }, - { - "name": "constituency/Leicester South", - "label": "Leicester South" - }, - { - "name": "constituency/Leicester West", - "label": "Leicester West" - }, - { - "name": "constituency/Leigh and Atherton", - "label": "Leigh and Atherton" - }, - { - "name": "constituency/Lewes", - "label": "Lewes" - }, - { - "name": "constituency/Lewisham East", - "label": "Lewisham East" - }, - { - "name": "constituency/Lewisham North", - "label": "Lewisham North" - }, - { - "name": "constituency/Lewisham West and East Dulwich", - "label": "Lewisham West and East Dulwich" - }, - { - "name": "constituency/Leyton and Wanstead", - "label": "Leyton and Wanstead" - }, - { - "name": "constituency/Lichfield", - "label": "Lichfield" - }, - { - "name": "constituency/Lincoln", - "label": "Lincoln" - }, - { - "name": "constituency/Liverpool Garston", - "label": "Liverpool Garston" - }, - { - "name": "constituency/Liverpool Riverside", - "label": "Liverpool Riverside" - }, - { - "name": "constituency/Liverpool Walton", - "label": "Liverpool Walton" - }, - { - "name": "constituency/Liverpool Wavertree", - "label": "Liverpool Wavertree" - }, - { - "name": "constituency/Liverpool West Derby", - "label": "Liverpool West Derby" - }, - { - "name": "constituency/Loughborough", - "label": "Loughborough" - }, - { - "name": "constituency/Louth and Horncastle", - "label": "Louth and Horncastle" - }, - { - "name": "constituency/Lowestoft", - "label": "Lowestoft" - }, - { - "name": "constituency/Luton North", - "label": "Luton North" - }, - { - "name": "constituency/Luton South and South Bedfordshire", - "label": "Luton South and South Bedfordshire" - }, - { - "name": "constituency/Macclesfield", - "label": "Macclesfield" - }, - { - "name": "constituency/Maidenhead", - "label": "Maidenhead" - }, - { - "name": "constituency/Maidstone and Malling", - "label": "Maidstone and Malling" - }, - { - "name": "constituency/Makerfield", - "label": "Makerfield" - }, - { - "name": "constituency/Maldon", - "label": "Maldon" - }, - { - "name": "constituency/Manchester Central", - "label": "Manchester Central" - }, - { - "name": "constituency/Manchester Rusholme", - "label": "Manchester Rusholme" - }, - { - "name": "constituency/Manchester Withington", - "label": "Manchester Withington" - }, - { - "name": "constituency/Mansfield", - "label": "Mansfield" - }, - { - "name": "constituency/Melksham and Devizes", - "label": "Melksham and Devizes" - }, - { - "name": "constituency/Melton and Syston", - "label": "Melton and Syston" - }, - { - "name": "constituency/Meriden and Solihull East", - "label": "Meriden and Solihull East" - }, - { - "name": "constituency/Mid Bedfordshire", - "label": "Mid Bedfordshire" - }, - { - "name": "constituency/Mid Buckinghamshire", - "label": "Mid Buckinghamshire" - }, - { - "name": "constituency/Mid Cheshire", - "label": "Mid Cheshire" - }, - { - "name": "constituency/Mid Derbyshire", - "label": "Mid Derbyshire" - }, - { - "name": "constituency/Mid Dorset and North Poole", - "label": "Mid Dorset and North Poole" - }, - { - "name": "constituency/Mid Leicestershire", - "label": "Mid Leicestershire" - }, - { - "name": "constituency/Mid Norfolk", - "label": "Mid Norfolk" - }, - { - "name": "constituency/Mid Sussex", - "label": "Mid Sussex" - }, - { - "name": "constituency/Middlesbrough and Thornaby East", - "label": "Middlesbrough and Thornaby East" - }, - { - "name": "constituency/Middlesbrough South and East Cleveland", - "label": "Middlesbrough South and East Cleveland" - }, - { - "name": "constituency/Milton Keynes Central", - "label": "Milton Keynes Central" - }, - { - "name": "constituency/Milton Keynes North", - "label": "Milton Keynes North" - }, - { - "name": "constituency/Mitcham and Morden", - "label": "Mitcham and Morden" - }, - { - "name": "constituency/Morecambe and Lunesdale", - "label": "Morecambe and Lunesdale" - }, - { - "name": "constituency/New Forest East", - "label": "New Forest East" - }, - { - "name": "constituency/New Forest West", - "label": "New Forest West" - }, - { - "name": "constituency/Newark", - "label": "Newark" - }, - { - "name": "constituency/Newbury", - "label": "Newbury" - }, - { - "name": "constituency/Newcastle upon Tyne Central and West", - "label": "Newcastle upon Tyne Central and West" - }, - { - "name": "constituency/Newcastle upon Tyne East and Wallsend", - "label": "Newcastle upon Tyne East and Wallsend" - }, - { - "name": "constituency/Newcastle upon Tyne North", - "label": "Newcastle upon Tyne North" - }, - { - "name": "constituency/Newcastle-under-Lyme", - "label": "Newcastle-under-Lyme" - }, - { - "name": "constituency/Newton Abbot", - "label": "Newton Abbot" - }, - { - "name": "constituency/Newton Aycliffe and Spennymoor", - "label": "Newton Aycliffe and Spennymoor" - }, - { - "name": "constituency/Normanton and Hemsworth", - "label": "Normanton and Hemsworth" - }, - { - "name": "constituency/North Bedfordshire", - "label": "North Bedfordshire" - }, - { - "name": "constituency/North Cornwall", - "label": "North Cornwall" - }, - { - "name": "constituency/North Cotswolds", - "label": "North Cotswolds" - }, - { - "name": "constituency/North Devon", - "label": "North Devon" - }, - { - "name": "constituency/North Dorset", - "label": "North Dorset" - }, - { - "name": "constituency/North Durham", - "label": "North Durham" - }, - { - "name": "constituency/North East Cambridgeshire", - "label": "North East Cambridgeshire" - }, - { - "name": "constituency/North East Derbyshire", - "label": "North East Derbyshire" - }, - { - "name": "constituency/North East Hampshire", - "label": "North East Hampshire" - }, - { - "name": "constituency/North East Hertfordshire", - "label": "North East Hertfordshire" - }, - { - "name": "constituency/North East Somerset and Hanham", - "label": "North East Somerset and Hanham" - }, - { - "name": "constituency/North Herefordshire", - "label": "North Herefordshire" - }, - { - "name": "constituency/North Norfolk", - "label": "North Norfolk" - }, - { - "name": "constituency/North Northumberland", - "label": "North Northumberland" - }, - { - "name": "constituency/North Shropshire", - "label": "North Shropshire" - }, - { - "name": "constituency/North Somerset", - "label": "North Somerset" - }, - { - "name": "constituency/North Warwickshire and Bedworth", - "label": "North Warwickshire and Bedworth" - }, - { - "name": "constituency/North West Cambridgeshire", - "label": "North West Cambridgeshire" - }, - { - "name": "constituency/North West Essex", - "label": "North West Essex" - }, - { - "name": "constituency/North West Hampshire", - "label": "North West Hampshire" - }, - { - "name": "constituency/North West Leicestershire", - "label": "North West Leicestershire" - }, - { - "name": "constituency/North West Norfolk", - "label": "North West Norfolk" - }, - { - "name": "constituency/Northampton North", - "label": "Northampton North" - }, - { - "name": "constituency/Northampton South", - "label": "Northampton South" - }, - { - "name": "constituency/Norwich North", - "label": "Norwich North" - }, - { - "name": "constituency/Norwich South", - "label": "Norwich South" - }, - { - "name": "constituency/Nottingham East", - "label": "Nottingham East" - }, - { - "name": "constituency/Nottingham North and Kimberley", - "label": "Nottingham North and Kimberley" - }, - { - "name": "constituency/Nottingham South", - "label": "Nottingham South" - }, - { - "name": "constituency/Nuneaton", - "label": "Nuneaton" - }, - { - "name": "constituency/Old Bexley and Sidcup", - "label": "Old Bexley and Sidcup" - }, - { - "name": "constituency/Oldham East and Saddleworth", - "label": "Oldham East and Saddleworth" - }, - { - "name": "constituency/Oldham West, Chadderton and Royton", - "label": "Oldham West, Chadderton and Royton" - }, - { - "name": "constituency/Orpington", - "label": "Orpington" - }, - { - "name": "constituency/Ossett and Denby Dale", - "label": "Ossett and Denby Dale" - }, - { - "name": "constituency/Oxford East", - "label": "Oxford East" - }, - { - "name": "constituency/Oxford West and Abingdon", - "label": "Oxford West and Abingdon" - }, - { - "name": "constituency/Peckham", - "label": "Peckham" - }, - { - "name": "constituency/Pendle and Clitheroe", - "label": "Pendle and Clitheroe" - }, - { - "name": "constituency/Penistone and Stocksbridge", - "label": "Penistone and Stocksbridge" - }, - { - "name": "constituency/Penrith and Solway", - "label": "Penrith and Solway" - }, - { - "name": "constituency/Peterborough", - "label": "Peterborough" - }, - { - "name": "constituency/Plymouth Moor View", - "label": "Plymouth Moor View" - }, - { - "name": "constituency/Plymouth Sutton and Devonport", - "label": "Plymouth Sutton and Devonport" - }, - { - "name": "constituency/Pontefract, Castleford and Knottingley", - "label": "Pontefract, Castleford and Knottingley" - }, - { - "name": "constituency/Poole", - "label": "Poole" - }, - { - "name": "constituency/Poplar and Limehouse", - "label": "Poplar and Limehouse" - }, - { - "name": "constituency/Portsmouth North", - "label": "Portsmouth North" - }, - { - "name": "constituency/Portsmouth South", - "label": "Portsmouth South" - }, - { - "name": "constituency/Preston", - "label": "Preston" - }, - { - "name": "constituency/Putney", - "label": "Putney" - }, - { - "name": "constituency/Queen's Park and Maida Vale", - "label": "Queen's Park and Maida Vale" - }, - { - "name": "constituency/Rawmarsh and Conisbrough", - "label": "Rawmarsh and Conisbrough" - }, - { - "name": "constituency/Rayleigh and Wickford", - "label": "Rayleigh and Wickford" - }, - { - "name": "constituency/Reading Central", - "label": "Reading Central" - }, - { - "name": "constituency/Reading West and Mid Berkshire", - "label": "Reading West and Mid Berkshire" - }, - { - "name": "constituency/Redcar", - "label": "Redcar" - }, - { - "name": "constituency/Redditch", - "label": "Redditch" - }, - { - "name": "constituency/Reigate", - "label": "Reigate" - }, - { - "name": "constituency/Ribble Valley", - "label": "Ribble Valley" - }, - { - "name": "constituency/Richmond and Northallerton", - "label": "Richmond and Northallerton" - }, - { - "name": "constituency/Richmond Park", - "label": "Richmond Park" - }, - { - "name": "constituency/Rochdale", - "label": "Rochdale" - }, - { - "name": "constituency/Rochester and Strood", - "label": "Rochester and Strood" - }, - { - "name": "constituency/Romford", - "label": "Romford" - }, - { - "name": "constituency/Romsey and Southampton North", - "label": "Romsey and Southampton North" - }, - { - "name": "constituency/Rossendale and Darwen", - "label": "Rossendale and Darwen" - }, - { - "name": "constituency/Rother Valley", - "label": "Rother Valley" - }, - { - "name": "constituency/Rotherham", - "label": "Rotherham" - }, - { - "name": "constituency/Rugby", - "label": "Rugby" - }, - { - "name": "constituency/Ruislip, Northwood and Pinner", - "label": "Ruislip, Northwood and Pinner" - }, - { - "name": "constituency/Runcorn and Helsby", - "label": "Runcorn and Helsby" - }, - { - "name": "constituency/Runnymede and Weybridge", - "label": "Runnymede and Weybridge" - }, - { - "name": "constituency/Rushcliffe", - "label": "Rushcliffe" - }, - { - "name": "constituency/Rutland and Stamford", - "label": "Rutland and Stamford" - }, - { - "name": "constituency/Salford", - "label": "Salford" - }, - { - "name": "constituency/Salisbury", - "label": "Salisbury" - }, - { - "name": "constituency/Scarborough and Whitby", - "label": "Scarborough and Whitby" - }, - { - "name": "constituency/Scunthorpe", - "label": "Scunthorpe" - }, - { - "name": "constituency/Sefton Central", - "label": "Sefton Central" - }, - { - "name": "constituency/Selby", - "label": "Selby" - }, - { - "name": "constituency/Sevenoaks", - "label": "Sevenoaks" - }, - { - "name": "constituency/Sheffield Brightside and Hillsborough", - "label": "Sheffield Brightside and Hillsborough" - }, - { - "name": "constituency/Sheffield Central", - "label": "Sheffield Central" - }, - { - "name": "constituency/Sheffield Hallam", - "label": "Sheffield Hallam" - }, - { - "name": "constituency/Sheffield Heeley", - "label": "Sheffield Heeley" - }, - { - "name": "constituency/Sheffield South East", - "label": "Sheffield South East" - }, - { - "name": "constituency/Sherwood Forest", - "label": "Sherwood Forest" - }, - { - "name": "constituency/Shipley", - "label": "Shipley" - }, - { - "name": "constituency/Shrewsbury", - "label": "Shrewsbury" - }, - { - "name": "constituency/Sittingbourne and Sheppey", - "label": "Sittingbourne and Sheppey" - }, - { - "name": "constituency/Skipton and Ripon", - "label": "Skipton and Ripon" - }, - { - "name": "constituency/Sleaford and North Hykeham", - "label": "Sleaford and North Hykeham" - }, - { - "name": "constituency/Slough", - "label": "Slough" - }, - { - "name": "constituency/Smethwick", - "label": "Smethwick" - }, - { - "name": "constituency/Solihull West and Shirley", - "label": "Solihull West and Shirley" - }, - { - "name": "constituency/South Basildon and East Thurrock", - "label": "South Basildon and East Thurrock" - }, - { - "name": "constituency/South Cambridgeshire", - "label": "South Cambridgeshire" - }, - { - "name": "constituency/South Cotswolds", - "label": "South Cotswolds" - }, - { - "name": "constituency/South Derbyshire", - "label": "South Derbyshire" - }, - { - "name": "constituency/South Devon", - "label": "South Devon" - }, - { - "name": "constituency/South Dorset", - "label": "South Dorset" - }, - { - "name": "constituency/South East Cornwall", - "label": "South East Cornwall" - }, - { - "name": "constituency/South Holland and The Deepings", - "label": "South Holland and The Deepings" - }, - { - "name": "constituency/South Leicestershire", - "label": "South Leicestershire" - }, - { - "name": "constituency/South Norfolk", - "label": "South Norfolk" - }, - { - "name": "constituency/South Northamptonshire", - "label": "South Northamptonshire" - }, - { - "name": "constituency/South Ribble", - "label": "South Ribble" - }, - { - "name": "constituency/South Shields", - "label": "South Shields" - }, - { - "name": "constituency/South Shropshire", - "label": "South Shropshire" - }, - { - "name": "constituency/South Suffolk", - "label": "South Suffolk" - }, - { - "name": "constituency/South West Devon", - "label": "South West Devon" - }, - { - "name": "constituency/South West Hertfordshire", - "label": "South West Hertfordshire" - }, - { - "name": "constituency/South West Norfolk", - "label": "South West Norfolk" - }, - { - "name": "constituency/South West Wiltshire", - "label": "South West Wiltshire" - }, - { - "name": "constituency/Southampton Itchen", - "label": "Southampton Itchen" - }, - { - "name": "constituency/Southampton Test", - "label": "Southampton Test" - }, - { - "name": "constituency/Southend East and Rochford", - "label": "Southend East and Rochford" - }, - { - "name": "constituency/Southend West and Leigh", - "label": "Southend West and Leigh" - }, - { - "name": "constituency/Southgate and Wood Green", - "label": "Southgate and Wood Green" - }, - { - "name": "constituency/Southport", - "label": "Southport" - }, - { - "name": "constituency/Spelthorne", - "label": "Spelthorne" - }, - { - "name": "constituency/Spen Valley", - "label": "Spen Valley" - }, - { - "name": "constituency/St Albans", - "label": "St Albans" - }, - { - "name": "constituency/St Austell and Newquay", - "label": "St Austell and Newquay" - }, - { - "name": "constituency/St Helens North", - "label": "St Helens North" - }, - { - "name": "constituency/St Helens South and Whiston", - "label": "St Helens South and Whiston" - }, - { - "name": "constituency/St Ives", - "label": "St Ives" - }, - { - "name": "constituency/St Neots and Mid Cambridgeshire", - "label": "St Neots and Mid Cambridgeshire" - }, - { - "name": "constituency/Stafford", - "label": "Stafford" - }, - { - "name": "constituency/Staffordshire Moorlands", - "label": "Staffordshire Moorlands" - }, - { - "name": "constituency/Stalybridge and Hyde", - "label": "Stalybridge and Hyde" - }, - { - "name": "constituency/Stevenage", - "label": "Stevenage" - }, - { - "name": "constituency/Stockport", - "label": "Stockport" - }, - { - "name": "constituency/Stockton North", - "label": "Stockton North" - }, - { - "name": "constituency/Stockton West", - "label": "Stockton West" - }, - { - "name": "constituency/Stoke-on-Trent Central", - "label": "Stoke-on-Trent Central" - }, - { - "name": "constituency/Stoke-on-Trent North", - "label": "Stoke-on-Trent North" - }, - { - "name": "constituency/Stoke-on-Trent South", - "label": "Stoke-on-Trent South" - }, - { - "name": "constituency/Stone, Great Wyrley and Penkridge", - "label": "Stone, Great Wyrley and Penkridge" - }, - { - "name": "constituency/Stourbridge", - "label": "Stourbridge" - }, - { - "name": "constituency/Stratford and Bow", - "label": "Stratford and Bow" - }, - { - "name": "constituency/Stratford-on-Avon", - "label": "Stratford-on-Avon" - }, - { - "name": "constituency/Streatham and Croydon North", - "label": "Streatham and Croydon North" - }, - { - "name": "constituency/Stretford and Urmston", - "label": "Stretford and Urmston" - }, - { - "name": "constituency/Stroud", - "label": "Stroud" - }, - { - "name": "constituency/Suffolk Coastal", - "label": "Suffolk Coastal" - }, - { - "name": "constituency/Sunderland Central", - "label": "Sunderland Central" - }, - { - "name": "constituency/Surrey Heath", - "label": "Surrey Heath" - }, - { - "name": "constituency/Sussex Weald", - "label": "Sussex Weald" - }, - { - "name": "constituency/Sutton and Cheam", - "label": "Sutton and Cheam" - }, - { - "name": "constituency/Sutton Coldfield", - "label": "Sutton Coldfield" - }, - { - "name": "constituency/Swindon North", - "label": "Swindon North" - }, - { - "name": "constituency/Swindon South", - "label": "Swindon South" - }, - { - "name": "constituency/Tamworth", - "label": "Tamworth" - }, - { - "name": "constituency/Tatton", - "label": "Tatton" - }, - { - "name": "constituency/Taunton and Wellington", - "label": "Taunton and Wellington" - }, - { - "name": "constituency/Telford", - "label": "Telford" - }, - { - "name": "constituency/Tewkesbury", - "label": "Tewkesbury" - }, - { - "name": "constituency/The Wrekin", - "label": "The Wrekin" - }, - { - "name": "constituency/Thirsk and Malton", - "label": "Thirsk and Malton" - }, - { - "name": "constituency/Thornbury and Yate", - "label": "Thornbury and Yate" - }, - { - "name": "constituency/Thurrock", - "label": "Thurrock" - }, - { - "name": "constituency/Tipton and Wednesbury", - "label": "Tipton and Wednesbury" - }, - { - "name": "constituency/Tiverton and Minehead", - "label": "Tiverton and Minehead" - }, - { - "name": "constituency/Tonbridge", - "label": "Tonbridge" - }, - { - "name": "constituency/Tooting", - "label": "Tooting" - }, - { - "name": "constituency/Torbay", - "label": "Torbay" - }, - { - "name": "constituency/Torridge and Tavistock", - "label": "Torridge and Tavistock" - }, - { - "name": "constituency/Tottenham", - "label": "Tottenham" - }, - { - "name": "constituency/Truro and Falmouth", - "label": "Truro and Falmouth" - }, - { - "name": "constituency/Tunbridge Wells", - "label": "Tunbridge Wells" - }, - { - "name": "constituency/Twickenham", - "label": "Twickenham" - }, - { - "name": "constituency/Tynemouth", - "label": "Tynemouth" - }, - { - "name": "constituency/Uxbridge and South Ruislip", - "label": "Uxbridge and South Ruislip" - }, - { - "name": "constituency/Vauxhall and Camberwell Green", - "label": "Vauxhall and Camberwell Green" - }, - { - "name": "constituency/Wakefield and Rothwell", - "label": "Wakefield and Rothwell" - }, - { - "name": "constituency/Wallasey", - "label": "Wallasey" - }, - { - "name": "constituency/Walsall and Bloxwich", - "label": "Walsall and Bloxwich" - }, - { - "name": "constituency/Walthamstow", - "label": "Walthamstow" - }, - { - "name": "constituency/Warrington North", - "label": "Warrington North" - }, - { - "name": "constituency/Warrington South", - "label": "Warrington South" - }, - { - "name": "constituency/Warwick and Leamington", - "label": "Warwick and Leamington" - }, - { - "name": "constituency/Washington and Gateshead South", - "label": "Washington and Gateshead South" - }, - { - "name": "constituency/Watford", - "label": "Watford" - }, - { - "name": "constituency/Waveney Valley", - "label": "Waveney Valley" - }, - { - "name": "constituency/Weald of Kent", - "label": "Weald of Kent" - }, - { - "name": "constituency/Wellingborough and Rushden", - "label": "Wellingborough and Rushden" - }, - { - "name": "constituency/Wells and Mendip Hills", - "label": "Wells and Mendip Hills" - }, - { - "name": "constituency/Welwyn Hatfield", - "label": "Welwyn Hatfield" - }, - { - "name": "constituency/West Bromwich", - "label": "West Bromwich" - }, - { - "name": "constituency/West Dorset", - "label": "West Dorset" - }, - { - "name": "constituency/West Ham and Beckton", - "label": "West Ham and Beckton" - }, - { - "name": "constituency/West Lancashire", - "label": "West Lancashire" - }, - { - "name": "constituency/West Suffolk", - "label": "West Suffolk" - }, - { - "name": "constituency/West Worcestershire", - "label": "West Worcestershire" - }, - { - "name": "constituency/Westmorland and Lonsdale", - "label": "Westmorland and Lonsdale" - }, - { - "name": "constituency/Weston-super-Mare", - "label": "Weston-super-Mare" - }, - { - "name": "constituency/Wetherby and Easingwold", - "label": "Wetherby and Easingwold" - }, - { - "name": "constituency/Whitehaven and Workington", - "label": "Whitehaven and Workington" - }, - { - "name": "constituency/Widnes and Halewood", - "label": "Widnes and Halewood" - }, - { - "name": "constituency/Wigan", - "label": "Wigan" - }, - { - "name": "constituency/Wimbledon", - "label": "Wimbledon" - }, - { - "name": "constituency/Winchester", - "label": "Winchester" - }, - { - "name": "constituency/Windsor", - "label": "Windsor" - }, - { - "name": "constituency/Wirral West", - "label": "Wirral West" - }, - { - "name": "constituency/Witham", - "label": "Witham" - }, - { - "name": "constituency/Witney", - "label": "Witney" - }, - { - "name": "constituency/Woking", - "label": "Woking" - }, - { - "name": "constituency/Wokingham", - "label": "Wokingham" - }, - { - "name": "constituency/Wolverhampton North East", - "label": "Wolverhampton North East" - }, - { - "name": "constituency/Wolverhampton South East", - "label": "Wolverhampton South East" - }, - { - "name": "constituency/Wolverhampton West", - "label": "Wolverhampton West" - }, - { - "name": "constituency/Worcester", - "label": "Worcester" - }, - { - "name": "constituency/Worsley and Eccles", - "label": "Worsley and Eccles" - }, - { - "name": "constituency/Worthing West", - "label": "Worthing West" - }, - { - "name": "constituency/Wycombe", - "label": "Wycombe" - }, - { - "name": "constituency/Wyre Forest", - "label": "Wyre Forest" - }, - { - "name": "constituency/Wythenshawe and Sale East", - "label": "Wythenshawe and Sale East" - }, - { - "name": "constituency/Yeovil", - "label": "Yeovil" - }, - { - "name": "constituency/York Central", - "label": "York Central" - }, - { - "name": "constituency/York Outer", - "label": "York Outer" - }, - { - "name": "constituency/Belfast East", - "label": "Belfast East" - }, - { - "name": "constituency/Belfast North", - "label": "Belfast North" - }, - { - "name": "constituency/Belfast South and Mid Down", - "label": "Belfast South and Mid Down" - }, - { - "name": "constituency/Belfast West", - "label": "Belfast West" - }, - { - "name": "constituency/East Antrim", - "label": "East Antrim" - }, - { - "name": "constituency/East Londonderry", - "label": "East Londonderry" - }, - { - "name": "constituency/Fermanagh and South Tyrone", - "label": "Fermanagh and South Tyrone" - }, - { - "name": "constituency/Foyle", - "label": "Foyle" - }, - { - "name": "constituency/Lagan Valley", - "label": "Lagan Valley" - }, - { - "name": "constituency/Mid Ulster", - "label": "Mid Ulster" - }, - { - "name": "constituency/Newry and Armagh", - "label": "Newry and Armagh" - }, - { - "name": "constituency/North Antrim", - "label": "North Antrim" - }, - { - "name": "constituency/North Down", - "label": "North Down" - }, - { - "name": "constituency/South Antrim", - "label": "South Antrim" - }, - { - "name": "constituency/South Down", - "label": "South Down" - }, - { - "name": "constituency/Strangford", - "label": "Strangford" - }, - { - "name": "constituency/Upper Bann", - "label": "Upper Bann" - }, - { - "name": "constituency/West Tyrone", - "label": "West Tyrone" - }, - { - "name": "constituency/East Renfrewshire", - "label": "East Renfrewshire" - }, - { - "name": "constituency/Na h-Eileanan an Iar", - "label": "Na h-Eileanan an Iar" - }, - { - "name": "constituency/Midlothian", - "label": "Midlothian" - }, - { - "name": "constituency/North Ayrshire and Arran", - "label": "North Ayrshire and Arran" - }, - { - "name": "constituency/Orkney and Shetland", - "label": "Orkney and Shetland" - }, - { - "name": "constituency/Aberdeen North", - "label": "Aberdeen North" - }, - { - "name": "constituency/Aberdeen South", - "label": "Aberdeen South" - }, - { - "name": "constituency/Aberdeenshire North and Moray East", - "label": "Aberdeenshire North and Moray East" - }, - { - "name": "constituency/Airdrie and Shotts", - "label": "Airdrie and Shotts" - }, - { - "name": "constituency/Alloa and Grangemouth", - "label": "Alloa and Grangemouth" - }, - { - "name": "constituency/Angus and Perthshire Glens", - "label": "Angus and Perthshire Glens" - }, - { - "name": "constituency/Arbroath and Broughty Ferry", - "label": "Arbroath and Broughty Ferry" - }, - { - "name": "constituency/Argyll, Bute and South Lochaber", - "label": "Argyll, Bute and South Lochaber" - }, - { - "name": "constituency/Bathgate and Linlithgow", - "label": "Bathgate and Linlithgow" - }, - { - "name": "constituency/Caithness, Sutherland and Easter Ross", - "label": "Caithness, Sutherland and Easter Ross" - }, - { - "name": "constituency/Coatbridge and Bellshill", - "label": "Coatbridge and Bellshill" - }, - { - "name": "constituency/Cowdenbeath and Kirkcaldy", - "label": "Cowdenbeath and Kirkcaldy" - }, - { - "name": "constituency/Cumbernauld and Kirkintilloch", - "label": "Cumbernauld and Kirkintilloch" - }, - { - "name": "constituency/Dumfries and Galloway", - "label": "Dumfries and Galloway" - }, - { - "name": "constituency/Dumfriesshire, Clydesdale and Tweeddale", - "label": "Dumfriesshire, Clydesdale and Tweeddale" - }, - { - "name": "constituency/Dundee Central", - "label": "Dundee Central" - }, - { - "name": "constituency/Dunfermline and Dollar", - "label": "Dunfermline and Dollar" - }, - { - "name": "constituency/East Kilbride and Strathaven", - "label": "East Kilbride and Strathaven" - }, - { - "name": "constituency/Edinburgh East and Musselburgh", - "label": "Edinburgh East and Musselburgh" - }, - { - "name": "constituency/Edinburgh North and Leith", - "label": "Edinburgh North and Leith" - }, - { - "name": "constituency/Edinburgh South", - "label": "Edinburgh South" - }, - { - "name": "constituency/Edinburgh South West", - "label": "Edinburgh South West" - }, - { - "name": "constituency/Edinburgh West", - "label": "Edinburgh West" - }, - { - "name": "constituency/Falkirk", - "label": "Falkirk" - }, - { - "name": "constituency/Glasgow East", - "label": "Glasgow East" - }, - { - "name": "constituency/Glasgow North", - "label": "Glasgow North" - }, - { - "name": "constituency/Glasgow North East", - "label": "Glasgow North East" - }, - { - "name": "constituency/Glasgow South", - "label": "Glasgow South" - }, - { - "name": "constituency/Glasgow South West", - "label": "Glasgow South West" - }, - { - "name": "constituency/Glasgow West", - "label": "Glasgow West" - }, - { - "name": "constituency/Glenrothes and Mid Fife", - "label": "Glenrothes and Mid Fife" - }, - { - "name": "constituency/Gordon and Buchan", - "label": "Gordon and Buchan" - }, - { - "name": "constituency/Hamilton and Clyde Valley", - "label": "Hamilton and Clyde Valley" - }, - { - "name": "constituency/Inverclyde and Renfrewshire West", - "label": "Inverclyde and Renfrewshire West" - }, - { - "name": "constituency/Inverness, Skye and West Ross-shire", - "label": "Inverness, Skye and West Ross-shire" - }, - { - "name": "constituency/Livingston", - "label": "Livingston" - }, - { - "name": "constituency/Lothian East", - "label": "Lothian East" - }, - { - "name": "constituency/Mid Dunbartonshire", - "label": "Mid Dunbartonshire" - }, - { - "name": "constituency/Moray West, Nairn and Strathspey", - "label": "Moray West, Nairn and Strathspey" - }, - { - "name": "constituency/Motherwell, Wishaw and Carluke", - "label": "Motherwell, Wishaw and Carluke" - }, - { - "name": "constituency/North East Fife", - "label": "North East Fife" - }, - { - "name": "constituency/Paisley and Renfrewshire North", - "label": "Paisley and Renfrewshire North" - }, - { - "name": "constituency/Paisley and Renfrewshire South", - "label": "Paisley and Renfrewshire South" - }, - { - "name": "constituency/Perth and Kinross-shire", - "label": "Perth and Kinross-shire" - }, - { - "name": "constituency/Rutherglen", - "label": "Rutherglen" - }, - { - "name": "constituency/Stirling and Strathallan", - "label": "Stirling and Strathallan" - }, - { - "name": "constituency/West Dunbartonshire", - "label": "West Dunbartonshire" - }, - { - "name": "constituency/Ayr, Carrick and Cumnock", - "label": "Ayr, Carrick and Cumnock" - }, - { - "name": "constituency/Berwickshire, Roxburgh and Selkirk", - "label": "Berwickshire, Roxburgh and Selkirk" - }, - { - "name": "constituency/Central Ayrshire", - "label": "Central Ayrshire" - }, - { - "name": "constituency/Kilmarnock and Loudoun", - "label": "Kilmarnock and Loudoun" - }, - { - "name": "constituency/West Aberdeenshire and Kincardine", - "label": "West Aberdeenshire and Kincardine" - }, - { - "name": "constituency/Aberafan Maesteg", - "label": "Aberafan Maesteg" - }, - { - "name": "constituency/Alyn and Deeside", - "label": "Alyn and Deeside" - }, - { - "name": "constituency/Bangor Aberconwy", - "label": "Bangor Aberconwy" - }, - { - "name": "constituency/Blaenau Gwent and Rhymney", - "label": "Blaenau Gwent and Rhymney" - }, - { - "name": "constituency/Brecon, Radnor and Cwm Tawe", - "label": "Brecon, Radnor and Cwm Tawe" - }, - { - "name": "constituency/Bridgend", - "label": "Bridgend" - }, - { - "name": "constituency/Caerfyrddin", - "label": "Caerfyrddin" - }, - { - "name": "constituency/Caerphilly", - "label": "Caerphilly" - }, - { - "name": "constituency/Cardiff East", - "label": "Cardiff East" - }, - { - "name": "constituency/Cardiff North", - "label": "Cardiff North" - }, - { - "name": "constituency/Cardiff South and Penarth", - "label": "Cardiff South and Penarth" - }, - { - "name": "constituency/Cardiff West", - "label": "Cardiff West" - }, - { - "name": "constituency/Ceredigion Preseli", - "label": "Ceredigion Preseli" - }, - { - "name": "constituency/Clwyd East", - "label": "Clwyd East" - }, - { - "name": "constituency/Clwyd North", - "label": "Clwyd North" - }, - { - "name": "constituency/Dwyfor Meirionnydd", - "label": "Dwyfor Meirionnydd" - }, - { - "name": "constituency/Gower", - "label": "Gower" - }, - { - "name": "constituency/Llanelli", - "label": "Llanelli" - }, - { - "name": "constituency/Merthyr Tydfil and Aberdare", - "label": "Merthyr Tydfil and Aberdare" - }, - { - "name": "constituency/Mid and South Pembrokeshire", - "label": "Mid and South Pembrokeshire" - }, - { - "name": "constituency/Monmouthshire", - "label": "Monmouthshire" - }, - { - "name": "constituency/Montgomeryshire and Glyndwr", - "label": "Montgomeryshire and Glyndwr" - }, - { - "name": "constituency/Neath and Swansea East", - "label": "Neath and Swansea East" - }, - { - "name": "constituency/Newport East", - "label": "Newport East" - }, - { - "name": "constituency/Newport West and Islwyn", - "label": "Newport West and Islwyn" - }, - { - "name": "constituency/Pontypridd", - "label": "Pontypridd" - }, - { - "name": "constituency/Rhondda and Ogmore", - "label": "Rhondda and Ogmore" - }, - { - "name": "constituency/Swansea West", - "label": "Swansea West" - }, - { - "name": "constituency/Torfaen", - "label": "Torfaen" - }, - { - "name": "constituency/Vale of Glamorgan", - "label": "Vale of Glamorgan" - }, - { - "name": "constituency/Wrexham", - "label": "Wrexham" - }, - { - "name": "constituency/Ynys Môn", - "label": "Ynys Môn" - } - ], - "time_period": [ - { - "name": 2024, - "label": "2024" - }, - { - "name": 2025, - "label": "2025" - }, - { - "name": 2026, - "label": "2026" - }, - { - "name": 2027, - "label": "2027" - }, - { - "name": 2028, - "label": "2028" - }, - { - "name": 2029, - "label": "2029" - }, - { - "name": 2030, - "label": "2030" - } - ], - "datasets": [{}] - }, - "current_law_id": 1, - "basicInputs": ["brma", "local_authority", "region", "employment_income", "age"], - "modelled_policies": { - "core": { - "modelled": [ - "Income Tax", - "National Insurance", - "Child Benefit", - "Universal Credit", - "Legacy benefits", - "Pension Credit", - "Stamp duties", - "TV licence", - "Fuel duty", - "Council Tax" - ], - "not_modelled": ["Tax-free childcare", "VAT"] - }, - "filtered": { - "country": { - "SCOTLAND": { - "modelled": ["Scottish tax rates"], - "not_modelled": ["Scottish Child Payment"] - }, - "NORTHERN_IRELAND": { - "modelled": ["Domestic rates"] - } - } - } - }, - "version": "2.39.0" - } -} diff --git a/app/src/mocks/US_Metadata.json b/app/src/mocks/US_Metadata.json deleted file mode 100644 index 71688850f..000000000 --- a/app/src/mocks/US_Metadata.json +++ /dev/null @@ -1,880213 +0,0 @@ -{ - "status": "ok", - "message": null, - "result": { - "variables": { - "flat_tax": { - "documentation": "Flat income tax on federal AGI or gross income.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "flat_tax", - "label": "Flat tax", - "category": null, - "unit": "currency-USD", - "moduleName": "contrib.ubi_center.flat_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "basic_income_phase_out": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "basic_income_phase_out", - "label": "Basic income phase-out", - "category": null, - "unit": "currency-USD", - "moduleName": "contrib.ubi_center.basic_income.basic_income_phase_out", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "basic_income_eligible": { - "documentation": "Eligible for basic income payments based on adjusted gross income.", - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "basic_income_eligible", - "label": "Basic income eligible", - "category": null, - "unit": "currency-USD", - "moduleName": "contrib.ubi_center.basic_income.basic_income_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "basic_income": { - "documentation": "Total basic income payments for this filer.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "basic_income", - "label": "basic income", - "category": null, - "unit": "currency-USD", - "moduleName": "contrib.ubi_center.basic_income.basic_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "basic_income_phase_in": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "basic_income_phase_in", - "label": "Basic income phase-in", - "category": null, - "unit": "currency-USD", - "moduleName": "contrib.ubi_center.basic_income.basic_income_phase_in", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "basic_income_before_phase_out": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "basic_income_before_phase_out", - "label": "Basic income before phase-outs", - "category": null, - "unit": "currency-USD", - "moduleName": "contrib.ubi_center.basic_income.basic_income_before_phase_out", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxsim_pensions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxsim_pensions", - "label": "Pensions", - "category": null, - "unit": "currency-USD", - "moduleName": "contrib.taxsim.taxsim_pensions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxsim_v18": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxsim_v18", - "label": "Taxable income in TAXSIM", - "category": null, - "unit": "currency-USD", - "moduleName": "contrib.taxsim.taxsim_v18", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxsim_pprofinc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxsim_pprofinc", - "label": "SSTB income for the primary taxpayer (TAXSIM). Assumed zero.", - "category": null, - "unit": "currency-USD", - "moduleName": "contrib.taxsim.taxsim_pprofinc", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxsim_sbusinc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxsim_sbusinc", - "label": "QBI for the spouse taxpayer (TAXSIM)", - "category": null, - "unit": "currency-USD", - "moduleName": "contrib.taxsim.taxsim_sbusinc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxsim_depx": { - "documentation": "Number of dependents (for personal exemption calculation). In the case of a file submission, if no age1 or dep19 variable is present, depx is used for the number of eligible children. You can negate this assumption by putting a large number (such as 99) in the age1 field.", - "entity": "tax_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "taxsim_depx", - "label": "Number of dependents", - "category": null, - "unit": "person", - "moduleName": "contrib.taxsim.taxsim_depx", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxsim_fiitax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxsim_fiitax", - "label": "Federal income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "contrib.taxsim.taxsim_fiitax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["income_tax"], - "subtracts": null, - "hidden_input": false - }, - "taxsim_age2": { - "documentation": null, - "entity": "tax_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "taxsim_age2", - "label": "Age of second dependent", - "category": null, - "unit": "year", - "moduleName": "contrib.taxsim.taxsim_age2", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxsim_siitax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxsim_siitax", - "label": "State income tax liability", - "category": null, - "unit": "currency-USD", - "moduleName": "contrib.taxsim.taxsim_siitax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["state_income_tax"], - "subtracts": null, - "hidden_input": false - }, - "taxsim_stcg": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxsim_stcg", - "label": "Short-term capital gains", - "category": null, - "unit": "currency-USD", - "moduleName": "contrib.taxsim.taxsim_stcg", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxsim_page": { - "documentation": "Age of primary taxpayer December 31st of the tax year (or zero). Taxpayer and spouse age variables determine eligibility for additional standard deductions, personal exemption, EITC and AMT exclusions.", - "entity": "tax_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "taxsim_page", - "label": "Age of primary taxpayer", - "category": null, - "unit": "year", - "moduleName": "contrib.taxsim.taxsim_page", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxsim_pui": { - "documentation": "Unemployment Compensation received - primary taxpayer.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxsim_pui", - "label": "Unemployment compensation (primary taxpayer)", - "category": null, - "unit": "currency-USD", - "moduleName": "contrib.taxsim.taxsim_pui", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxsim_v10": { - "documentation": "TAXSIM federal AGI", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxsim_v10", - "label": "Federal AGI", - "category": null, - "unit": "currency-USD", - "moduleName": "contrib.taxsim.taxsim_v10", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxsim_v11": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxsim_v11", - "label": "UI in AGI", - "category": null, - "unit": "currency-USD", - "moduleName": "contrib.taxsim.taxsim_v11", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxsim_v12": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxsim_v12", - "label": "Social Security in AGI", - "category": null, - "unit": "currency-USD", - "moduleName": "contrib.taxsim.taxsim_v12", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxsim_scorp": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxsim_scorp", - "label": "S-corp income", - "category": null, - "unit": "currency-USD", - "moduleName": "contrib.taxsim.taxsim_scorp", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxsim_ltcg": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxsim_ltcg", - "label": "Long-term capital gains", - "category": null, - "unit": "currency-USD", - "moduleName": "contrib.taxsim.taxsim_ltcg", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxsim_state": { - "documentation": "SOI codes. These run from 1 for Alabama to 51 for Wyoming and are not the Census or PSID codes. See state list,and also item two above.). Use zero for \"no state tax calculation\"", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxsim_state", - "label": "State code", - "category": null, - "unit": null, - "moduleName": "contrib.taxsim.taxsim_state", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxsim_v25": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxsim_v25", - "label": "EITC", - "category": null, - "unit": "currency-USD", - "moduleName": "contrib.taxsim.taxsim_v25", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxsim_mstat": { - "documentation": null, - "entity": "tax_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "taxsim_mstat", - "label": "Marital Status", - "category": null, - "unit": null, - "moduleName": "contrib.taxsim.taxsim_mstat", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxsim_pbusinc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxsim_pbusinc", - "label": "QBI for the primary taxpayer (TAXSIM)", - "category": null, - "unit": "currency-USD", - "moduleName": "contrib.taxsim.taxsim_pbusinc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxsim_year": { - "documentation": "Tax year ending Dec 31(4 digits between 1960 and 2023, but state must be zero if year is before 1977. (We don't have code for state laws before 1977.) State tax laws are effectively inflated by 2.5%/year after 2021.", - "entity": "tax_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "taxsim_year", - "label": "Policy year", - "category": null, - "unit": null, - "moduleName": "contrib.taxsim.taxsim_year", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxsim_age1": { - "documentation": "Age of first dependent. Used for EITC, CTC and CCC. For 1991+ code students between 20 and 23 as 19 to get the EITC calculation correct. Code infants as \"1\". [For compatibiity with taxsim32, dep13-dep18 are accepted and have priority over age1-age3]. If niether dep19 or age1 are present in an uploaded file than depx is used for the number of child eligible for the EIC, CTC and CDCC.", - "entity": "tax_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "taxsim_age1", - "label": "Age of first dependent", - "category": null, - "unit": "year", - "moduleName": "contrib.taxsim.taxsim_age1", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxsim_dividends": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxsim_dividends", - "label": "Dividends", - "category": null, - "unit": "currency-USD", - "moduleName": "contrib.taxsim.taxsim_dividends", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["dividend_income"], - "subtracts": null, - "hidden_input": false - }, - "taxsim_psemp": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxsim_psemp", - "label": "Self-employment income of taxpayer (excluding QBI)", - "category": null, - "unit": "currency-USD", - "moduleName": "contrib.taxsim.taxsim_psemp", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxsim_taxsimid": { - "documentation": null, - "entity": "tax_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "taxsim_taxsimid", - "label": "Tax unit ID", - "category": null, - "unit": null, - "moduleName": "contrib.taxsim.taxsim_taxsimid", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxsim_dep17": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxsim_dep17", - "label": "Children under 17", - "category": null, - "unit": "currency-USD", - "moduleName": "contrib.taxsim.taxsim_dep17", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxsim_dep18": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxsim_dep18", - "label": "Children under 13", - "category": null, - "unit": "currency-USD", - "moduleName": "contrib.taxsim.taxsim_dep18", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["is_child_dependent"], - "subtracts": null, - "hidden_input": false - }, - "taxsim_sage": { - "documentation": "Age of spouse (zero if unknown or not a joint return). It is an error to specify a non-zero spouse age for an unmarried taxpayer.", - "entity": "tax_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "taxsim_sage", - "label": "Age of spouse", - "category": null, - "unit": "year", - "moduleName": "contrib.taxsim.taxsim_sage", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxsim_swages": { - "documentation": "Wage and salary income of spouse", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxsim_swages", - "label": "Wages for spouse", - "category": null, - "unit": "currency-USD", - "moduleName": "contrib.taxsim.taxsim_swages", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxsim_age3": { - "documentation": null, - "entity": "tax_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "taxsim_age3", - "label": "Age of third dependent", - "category": null, - "unit": "year", - "moduleName": "contrib.taxsim.taxsim_age3", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxsim_ssemp": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxsim_ssemp", - "label": "Self-employment income of spouse (excluding QBI)", - "category": null, - "unit": "currency-USD", - "moduleName": "contrib.taxsim.taxsim_ssemp", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxsim_sprofinc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxsim_sprofinc", - "label": "SSTB income for the spouse of the taxpayer (TAXSIM). Assumed zero.", - "category": null, - "unit": "currency-USD", - "moduleName": "contrib.taxsim.taxsim_sprofinc", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxsim_intrec": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxsim_intrec", - "label": "Taxable interest", - "category": null, - "unit": "currency-USD", - "moduleName": "contrib.taxsim.taxsim_intrec", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxsim_ui": { - "documentation": "Unemployment compensation received - secondary taxpayer. The split is relevant only 2020-2021.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxsim_ui", - "label": "Unemployment compensation (spouse)", - "category": null, - "unit": "currency-USD", - "moduleName": "contrib.taxsim.taxsim_ui", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxsim_tfica": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxsim_tfica", - "label": "Employee share of FICA + SECA + Additional Medicare Tax", - "category": null, - "unit": "currency-USD", - "moduleName": "contrib.taxsim.taxsim_tfica", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["self_employment_tax", "employee_payroll_tax"], - "subtracts": null, - "hidden_input": false - }, - "taxsim_pwages": { - "documentation": "Wage and salary income of Primary Taxpayer", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxsim_pwages", - "label": "Wages for primary taxpayer", - "category": null, - "unit": "currency-USD", - "moduleName": "contrib.taxsim.taxsim_pwages", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxsim_dep13": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxsim_dep13", - "label": "Children under 13", - "category": null, - "unit": "currency-USD", - "moduleName": "contrib.taxsim.taxsim_dep13", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxsim_childcare": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxsim_childcare", - "label": "Childcare", - "category": null, - "unit": "currency-USD", - "moduleName": "contrib.taxsim.taxsim_childcare", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["tax_unit_childcare_expenses"], - "subtracts": null, - "hidden_input": false - }, - "taxsim_gssi": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxsim_gssi", - "label": "Gross Social Security Income", - "category": null, - "unit": "currency-USD", - "moduleName": "contrib.taxsim.taxsim_gssi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["social_security"], - "subtracts": null, - "hidden_input": false - }, - "bonus_guaranteed_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "bonus_guaranteed_deduction", - "label": "Bonus guaranteed deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "contrib.congress.wftca.bonus_guaranteed_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "healthcare_benefit_value": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "healthcare_benefit_value", - "label": "Cash equivalent of health coverage", - "category": null, - "unit": "currency-USD", - "moduleName": "household.healthcare_benefit_value", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["medicaid_cost", "per_capita_chip", "aca_ptc"], - "subtracts": null, - "hidden_input": false - }, - "marginal_tax_rate_including_health_benefits": { - "documentation": "Fraction of marginal income gains that do not increase household net income.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "marginal_tax_rate_including_health_benefits", - "label": "Marginal tax rate including health benefits", - "category": null, - "unit": "/1", - "moduleName": "household.marginal_tax_rate_including_health_benefits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "cliff_evaluated": { - "documentation": "Whether this person's cliff has been simulated. If not, the cliff gap is assumed to be zero.", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "cliff_evaluated", - "label": "cliff evaluated", - "category": null, - "unit": null, - "moduleName": "household.cliff", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "cliff_gap": { - "documentation": "Amount of income lost if this person's employment income increased by delta amount.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "cliff_gap", - "label": "cliff gap", - "category": null, - "unit": "currency-USD", - "moduleName": "household.cliff", - "indexInModule": 1, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_on_cliff": { - "documentation": "Whether this person would be worse off if their employment income were higher.", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_on_cliff", - "label": "is on a tax-benefit cliff", - "category": null, - "unit": null, - "moduleName": "household.cliff", - "indexInModule": 2, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "child_index": { - "documentation": null, - "entity": "person", - "valueType": "int", - "definitionPeriod": "year", - "name": "child_index", - "label": "Index of child in household", - "category": null, - "unit": null, - "moduleName": "household.child_index", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "emp_self_emp_ratio": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "emp_self_emp_ratio", - "label": "Share of earnings from wages and salaries", - "category": null, - "unit": "/1", - "moduleName": "household.emp_self_emp_ratio", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "household_net_income_including_health_benefits": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "household_net_income_including_health_benefits", - "label": "Net income including health benefits", - "category": null, - "unit": "currency-USD", - "moduleName": "household.household_net_income_including_health_benefits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["household_net_income", "healthcare_benefit_value"], - "subtracts": null, - "hidden_input": false - }, - "marginal_tax_rate": { - "documentation": "Fraction of marginal income gains that do not increase household net income.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "marginal_tax_rate", - "label": "marginal tax rate", - "category": null, - "unit": "/1", - "moduleName": "household.marginal_tax_rate", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "adult_index": { - "documentation": null, - "entity": "person", - "valueType": "int", - "definitionPeriod": "year", - "name": "adult_index", - "label": "Index of adult in household", - "category": null, - "unit": null, - "moduleName": "household.marginal_tax_rate", - "indexInModule": 1, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "adult_earnings_index": { - "documentation": null, - "entity": "person", - "valueType": "int", - "definitionPeriod": "year", - "name": "adult_earnings_index", - "label": "index of adult in household by earnings", - "category": null, - "unit": null, - "moduleName": "household.marginal_tax_rate", - "indexInModule": 2, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "military_disabled_head": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "military_disabled_head", - "label": "Tax unit head is legally disabled as a result of military service", - "category": null, - "unit": null, - "moduleName": "household.demographic.tax_unit.military_disabled_head", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "cohabitating_spouses": { - "documentation": "Whether spouses in joint or separate tax units are cohabitating.", - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "cohabitating_spouses", - "label": "Cohabitating spouses", - "category": null, - "unit": null, - "moduleName": "household.demographic.tax_unit.cohabitating_spouses", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_unit_household_id": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "tax_unit_household_id", - "label": "Tax unit household ID", - "category": null, - "unit": null, - "moduleName": "household.demographic.tax_unit.tax_unit_household_id", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_tax_unit_head": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_tax_unit_head", - "label": "Head of tax unit", - "category": null, - "unit": null, - "moduleName": "household.demographic.tax_unit.is_tax_unit_head", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "spouse_separate_tax_unit_size": { - "documentation": null, - "entity": "tax_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "spouse_separate_tax_unit_size", - "label": "Size of spouse's tax unit if they file separately", - "category": null, - "unit": null, - "moduleName": "household.demographic.tax_unit.spouse_separate_tax_unit_size", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "older_spouse_birth_year": { - "documentation": "Birth year of taxpayer (i.e. primary adult) or spouse (i.e. secondary adult if present), depending on which is greater. ", - "entity": "tax_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "older_spouse_birth_year", - "label": "Birth year of head or spouse of tax unit depending on which is greater", - "category": null, - "unit": "year", - "moduleName": "household.demographic.tax_unit.older_spouse_birth_year", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_unit_children": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "tax_unit_children", - "label": "Number of children in tax unit", - "category": null, - "unit": "currency-USD", - "moduleName": "household.demographic.tax_unit.tax_unit_children", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxpayer_has_itin": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "taxpayer_has_itin", - "label": "Tax unit head or spouse has ITIN", - "category": null, - "unit": null, - "moduleName": "household.demographic.tax_unit.taxpayer_has_itin", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "blind_head": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "blind_head", - "label": "Tax unit head is blind", - "category": null, - "unit": null, - "moduleName": "household.demographic.tax_unit.blind_head", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "disabled_tax_unit_head_or_spouse": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "disabled_tax_unit_head_or_spouse", - "label": "Head or Spouse of tax unit is disabled", - "category": null, - "unit": null, - "moduleName": "household.demographic.tax_unit.disabled_tax_unit_head_or_spouse", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "disabled_spouse": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "disabled_spouse", - "label": "Tax unit spouse is legally disabled", - "category": null, - "unit": null, - "moduleName": "household.demographic.tax_unit.disabled_spouse", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_unit_dependents": { - "documentation": null, - "entity": "tax_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "tax_unit_dependents", - "label": "Number of dependents in the tax unit", - "category": null, - "unit": null, - "moduleName": "household.demographic.tax_unit.tax_unit_dependents", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["is_tax_unit_dependent"], - "subtracts": null, - "hidden_input": false - }, - "is_tax_unit_head_or_spouse": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_tax_unit_head_or_spouse", - "label": "Head or Spouse of tax unit", - "category": null, - "unit": null, - "moduleName": "household.demographic.tax_unit.is_tax_unit_head_or_spouse", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_unit_parents": { - "documentation": null, - "entity": "tax_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "tax_unit_parents", - "label": "Number of parents in the tax unit", - "category": null, - "unit": null, - "moduleName": "household.demographic.tax_unit.tax_unit_parents", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["is_parent_of_filer_or_spouse"], - "subtracts": null, - "hidden_input": false - }, - "is_tax_unit_spouse": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_tax_unit_spouse", - "label": "Spouse of tax unit", - "category": null, - "unit": null, - "moduleName": "household.demographic.tax_unit.is_tax_unit_spouse", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "separate_filer_itemizes": { - "documentation": "Whether the taxpayer in this tax unit has a spouse who files separately and itemizes deductions.", - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "separate_filer_itemizes", - "label": "Separate filer itemizes", - "category": null, - "unit": null, - "moduleName": "household.demographic.tax_unit.separate_filer_itemizes", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_unit_grandparents": { - "documentation": null, - "entity": "tax_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "tax_unit_grandparents", - "label": "Number of grandparents in the tax unit", - "category": null, - "unit": null, - "moduleName": "household.demographic.tax_unit.tax_unit_grandparents", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["is_grandparent_of_filer_or_spouse"], - "subtracts": null, - "hidden_input": false - }, - "tax_unit_count": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "tax_unit_count", - "label": "Tax units represented", - "category": null, - "unit": null, - "moduleName": "household.demographic.tax_unit.tax_unit_count", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 1, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "military_disabled_spouse": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "military_disabled_spouse", - "label": "Tax unit spouse is legally disabled as a result of military service", - "category": null, - "unit": null, - "moduleName": "household.demographic.tax_unit.military_disabled_spouse", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "age_spouse": { - "documentation": "Age in years of spouse (i.e. secondary adult if present)", - "entity": "tax_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "age_spouse", - "label": "Age of spouse of tax unit", - "category": null, - "unit": "year", - "moduleName": "household.demographic.tax_unit.age_spouse", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "head_is_dependent_elsewhere": { - "documentation": "Whether the filer for this tax unit is claimed as a dependent in another tax unit.", - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "head_is_dependent_elsewhere", - "label": "Is tax-unit head a dependent elsewhere", - "category": null, - "unit": null, - "moduleName": "household.demographic.tax_unit.head_is_dependent_elsewhere", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "blind_spouse": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "blind_spouse", - "label": "Tax unit spouse is blind", - "category": null, - "unit": null, - "moduleName": "household.demographic.tax_unit.blind_spouse", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_unit_stillborn_children": { - "documentation": null, - "entity": "tax_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "tax_unit_stillborn_children", - "label": "Number of stillborn children in the filing year", - "category": null, - "unit": null, - "moduleName": "household.demographic.tax_unit.tax_unit_stillborn_children", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "head_of_household_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "head_of_household_eligible", - "label": "Qualifies for head of household filing status", - "category": null, - "unit": null, - "moduleName": "household.demographic.tax_unit.head_of_household_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "spouse_is_dependent_elsewhere": { - "documentation": "Whether the spouse of the filer for this tax unit is claimed as a dependent in another tax unit.", - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "spouse_is_dependent_elsewhere", - "label": "Tax-unit spouse is dependent elsewhere", - "category": null, - "unit": null, - "moduleName": "household.demographic.tax_unit.spouse_is_dependent_elsewhere", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "head_is_disabled": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "head_is_disabled", - "label": "Tax unit head is disabled", - "category": null, - "unit": null, - "moduleName": "household.demographic.tax_unit.head_is_disabled", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_unit_married": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "tax_unit_married", - "label": "Tax unit is married", - "category": null, - "unit": null, - "moduleName": "household.demographic.tax_unit.tax_unit_married", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "disabled_head": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "disabled_head", - "label": "Tax unit head is legally disabled", - "category": null, - "unit": null, - "moduleName": "household.demographic.tax_unit.disabled_head", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "filing_status": { - "documentation": null, - "entity": "tax_unit", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "filing_status", - "label": "Filing status for the tax unit", - "category": null, - "unit": null, - "moduleName": "household.demographic.tax_unit.filing_status", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "SINGLE", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "SINGLE", - "label": "Single" - }, - { - "value": "JOINT", - "label": "Joint" - }, - { - "value": "SEPARATE", - "label": "Separate" - }, - { - "value": "HEAD_OF_HOUSEHOLD", - "label": "Head of household" - }, - { - "value": "SURVIVING_SPOUSE", - "label": "Surviving spouse" - } - ] - }, - "is_tax_unit_dependent": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_tax_unit_dependent", - "label": "Is a dependent in the tax unit", - "category": null, - "unit": null, - "moduleName": "household.demographic.tax_unit.is_tax_unit_dependent", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_unit_child_dependents": { - "documentation": null, - "entity": "tax_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "tax_unit_child_dependents", - "label": "Number of child dependents in the tax unit", - "category": null, - "unit": null, - "moduleName": "household.demographic.tax_unit.tax_unit_child_dependents", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["is_child_dependent"], - "subtracts": null, - "hidden_input": false - }, - "is_child_of_tax_head": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_child_of_tax_head", - "label": "Is a child", - "category": null, - "unit": null, - "moduleName": "household.demographic.tax_unit.is_child_of_tax_head", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "age_head": { - "documentation": "Age in years of taxpayer (i.e. primary adult)", - "entity": "tax_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "age_head", - "label": "Age of head of tax unit", - "category": null, - "unit": "year", - "moduleName": "household.demographic.tax_unit.age_head", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "spouse_is_disabled": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "spouse_is_disabled", - "label": "Tax unit spouse is disabled", - "category": null, - "unit": null, - "moduleName": "household.demographic.tax_unit.spouse_is_disabled", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "surviving_spouse_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "surviving_spouse_eligible", - "label": "Qualifies for surviving spouse filing status", - "category": null, - "unit": null, - "moduleName": "household.demographic.tax_unit.surviving_spouse_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "greater_age_head_spouse": { - "documentation": "Age in years of taxpayer (i.e. primary adult) or spouse (i.e. secondary adult if present), depending on which is greater. ", - "entity": "tax_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "greater_age_head_spouse", - "label": "Age of head or spouse of tax unit depending on which is greater", - "category": null, - "unit": "year", - "moduleName": "household.demographic.tax_unit.greater_age_head_spouse", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_sro": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_sro", - "label": "Is single room occupancy", - "category": null, - "unit": null, - "moduleName": "household.demographic.household.is_sro", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "household_count": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "household_count", - "label": "Households represented", - "category": null, - "unit": null, - "moduleName": "household.demographic.household.household_count", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 1, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "household_size": { - "documentation": null, - "entity": "household", - "valueType": "int", - "definitionPeriod": "year", - "name": "household_size", - "label": "Household size", - "category": null, - "unit": null, - "moduleName": "household.demographic.household.household_size", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "household_vehicles_owned": { - "documentation": null, - "entity": "household", - "valueType": "int", - "definitionPeriod": "year", - "name": "household_vehicles_owned", - "label": "Vehicles owned", - "category": null, - "unit": null, - "moduleName": "household.demographic.household.household_vehicles_owned", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "household_vehicles_value": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "household_vehicles_value", - "label": "Value of vehicles owned", - "category": null, - "unit": null, - "moduleName": "household.demographic.household.household_vehicle_value", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "living_arrangements_allow_for_food_preparation": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "living_arrangements_allow_for_food_preparation", - "label": "Living arrangements allow for food preparation", - "category": null, - "unit": null, - "moduleName": "household.demographic.household.living_arrangements_allow_for_food_preparation", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "rent_is_shared_with_another_tax_unit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "rent_is_shared_with_another_tax_unit", - "label": "Whether the household shares rent with others", - "category": null, - "unit": null, - "moduleName": "household.demographic.household.rent_is_shared_with_another_tax_unit", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "bedrooms": { - "documentation": null, - "entity": "household", - "valueType": "int", - "definitionPeriod": "year", - "name": "bedrooms", - "label": "Bedrooms", - "category": null, - "unit": null, - "moduleName": "household.demographic.household.bedrooms", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_in_foster_care": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "month", - "name": "is_in_foster_care", - "label": "Person is currently in a qualifying foster care institution", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.is_in_foster_care", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_deceased": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_deceased", - "label": "Person is deceased", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.is_deceased", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_blind": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_blind", - "label": "Is blind", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.is_blind", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_adult": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_adult", - "label": "Is an adult", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.is_adult", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_breastfeeding": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_breastfeeding", - "label": "Is breastfeeding", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.is_breastfeeding", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "four_year_college_student": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "four_year_college_student", - "label": "Person is a full time four-year college student", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.four_year_college_student", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_related_to_head_or_spouse": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_related_to_head_or_spouse", - "label": "Person is related to head or spouse", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.is_related_to_head_or_spouse", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": true, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "person_count": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "person_count", - "label": "People represented", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.person_count", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 1, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_surviving_spouse_of_disabled_veteran": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_surviving_spouse_of_disabled_veteran", - "label": "Surviving spouse of disabled veteran", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.is_surviving_spouse_of_disabled_veteran", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_father": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_father", - "label": "Is a father", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.is_father", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_incarcerated": { - "documentation": "Whether this person is incarcerated.", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "month", - "name": "is_incarcerated", - "label": "Is incarcerated", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.is_incarcerated", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_in_k12_nonpublic_school": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_in_k12_nonpublic_school", - "label": "Is in a K-12 nonpublic school fulltime", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.is_in_k12_nonpublic_school", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_runaway_child": { - "documentation": "Whether an individual under 18 years old leaves home or their legal residence without parental or guardian permission", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_runaway_child", - "label": "Is runaway child", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.is_runaway_child", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "in_out_of_home_care_facility": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "in_out_of_home_care_facility", - "label": "Is in a nonmedical out of home care facility", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.in_out_of_home_care_facility", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_in_foster_care_group_home": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "month", - "name": "is_in_foster_care_group_home", - "label": "Person is currently in a qualifying foster care group home", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.is_in_foster_care_group_home", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_incapable_of_self_care": { - "documentation": "Whether this person is physically or mentally incapable of caring for themselves.", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_incapable_of_self_care", - "label": "Incapable of self-care", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.is_incapable_of_self_care", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_permanently_disabled_veteran": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_permanently_disabled_veteran", - "label": "Permanently disabled veteran", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.is_permanently_disabled_veteran", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_english_proficient": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_english_proficient", - "label": "Is English Proficient", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.is_english_proficient", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_deaf": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_deaf", - "label": "Is deaf", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.is_deaf", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_grandparent_of_filer_or_spouse": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_grandparent_of_filer_or_spouse", - "label": "Is a grandparent of the filer or spouse", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.is_grandparent_of_filer_or_spouse", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "year_deceased": { - "documentation": null, - "entity": "person", - "valueType": "int", - "definitionPeriod": "year", - "name": "year_deceased", - "label": "Year in which the person deceased", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.year_deceased", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_child_dependent": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_child_dependent", - "label": "Is a child dependent based on the IRS definition", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.is_child_dependent", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_in_k12_school": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_in_k12_school", - "label": "Is in a K-12 school", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.is_in_k12_school", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "has_never_worked": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "has_never_worked", - "label": "has never worked", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.has_never_worked", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_farmer_fisher": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_farmer_fisher", - "label": "is employed in a farming, fishing, cultivating, or agriculture related occupation", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.is_farmer_fisher", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "current_pregnancy_month": { - "documentation": null, - "entity": "person", - "valueType": "int", - "definitionPeriod": "month", - "name": "current_pregnancy_month", - "label": "Current pregnancy month", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.current_pregnancy_month", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "adopted_this_year": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "adopted_this_year", - "label": "Person was adopted this year", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.adopted_this_year", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "own_children_in_household": { - "documentation": null, - "entity": "person", - "valueType": "int", - "definitionPeriod": "year", - "name": "own_children_in_household", - "label": "Count of one's own children in the household", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.own_children_in_household", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_male": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_male", - "label": "is male", - "category": null, - "unit": "currency-USD", - "moduleName": "household.demographic.person.is_male", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_full_time_student": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_full_time_student", - "label": "Is a full time student", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.is_full_time_student", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_married": { - "documentation": "Whether the adults in this family are married.", - "entity": "family", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_married", - "label": "Married", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.is_married", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_household_head": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "eternity", - "name": "is_household_head", - "label": "is head of this household", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.is_reference_person", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "has_itin": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "has_itin", - "label": "Has ITIN or SSN", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.has_itin", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": true, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "current_pregnancies": { - "documentation": null, - "entity": "person", - "valueType": "int", - "definitionPeriod": "year", - "name": "current_pregnancies", - "label": "The number of children a pregnant person is expecting", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.current_pregnancies", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "claimed_as_dependent_on_another_return": { - "documentation": "Whether the person is claimed as a dependent in another tax unit.", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "claimed_as_dependent_on_another_return", - "label": "Is claimed as a dependent elsewhere", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.claimed_as_dependent_on_another_return", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "was_in_foster_care": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "was_in_foster_care", - "label": "Person was in the a qualifying foster care institution", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.was_in_foster_care", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_migratory_child": { - "documentation": "Whether a child made a qualifying move in the last 36 months as, with, or to join a migratory agricultural worker or fisher", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_migratory_child", - "label": "Is migratory child", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.is_migratory_child", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_permanently_and_totally_disabled": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_permanently_and_totally_disabled", - "label": "Is permanently and totally disabled", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.is_permanently_and_totally_disabled", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_surviving_child_of_disabled_veteran": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_surviving_child_of_disabled_veteran", - "label": "Surviving child of disabled veteran", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.is_surviving_child_of_disabled_veteran", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_executive_administrative_professional": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_executive_administrative_professional", - "label": "is employed in a bona fide executive, administrative, or professional capacity", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.is_executive_administrative_professional", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_retired": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_retired", - "label": "Is retired", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.is_retired", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_mother": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_mother", - "label": "Is a mother", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.is_mother", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_hispanic": { - "documentation": "Whether the person is Hispanic", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_hispanic", - "label": "hispanic", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.is_hispanic", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "has_disabled_spouse": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "has_disabled_spouse", - "label": "person's marriage partner in JOINT filing unit is disabled", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.has_disabled_spouse", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "immigration_status": { - "documentation": null, - "entity": "person", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "immigration_status", - "label": "U.S. immigration status as an enumeration type", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.immigration_status", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "CITIZEN", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "CITIZEN", - "label": "Citizen" - }, - { - "value": "LEGAL_PERMANENT_RESIDENT", - "label": "Legal Permanent Resident" - }, - { - "value": "REFUGEE", - "label": "Refugee" - }, - { - "value": "ASYLEE", - "label": "Asylee" - }, - { - "value": "DEPORTATION_WITHHELD", - "label": "Deportation Withheld" - }, - { - "value": "CUBAN_HAITIAN_ENTRANT", - "label": "Cuban/Haitian Entrant" - }, - { - "value": "CONDITIONAL_ENTRANT", - "label": "Conditional Entrant" - }, - { - "value": "PAROLED_ONE_YEAR", - "label": "Paroled for at Least One Year" - }, - { - "value": "DACA_TPS", - "label": "Deferred Action for Childhood Arrivals or Temporary Protected Status" - }, - { - "value": "UNDOCUMENTED", - "label": "Undocumented" - }, - { - "value": "DACA", - "label": "Deferred Action for Childhood Arrivals" - }, - { - "value": "TPS", - "label": "Temporary Protected Status" - } - ] - }, - "divorce_year": { - "documentation": null, - "entity": "person", - "valueType": "int", - "definitionPeriod": "year", - "name": "divorce_year", - "label": "The year that the person was divorced.", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.divorce_year", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 2010, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "detailed_occupation_recode": { - "documentation": "This variable is the POCCU2 variable in the Current Population Survey.", - "entity": "person", - "valueType": "int", - "definitionPeriod": "year", - "name": "detailed_occupation_recode", - "label": "CPS detailed occupation recode of previous year", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.detailed_occupation_recode", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "receives_or_needs_protective_services": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "receives_or_needs_protective_services", - "label": "Child receiving or needs protective services", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.receives_or_needs_protective_services", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "cps_race": { - "documentation": "This variable is the PRDTRACE variable in the Current Population Survey.", - "entity": "person", - "valueType": "int", - "definitionPeriod": "year", - "name": "cps_race", - "label": "CPS racial category", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.cps_race", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "years_in_military": { - "documentation": null, - "entity": "person", - "valueType": "int", - "definitionPeriod": "year", - "name": "years_in_military", - "label": "Years served in military", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.years_in_military", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_disabled": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_disabled", - "label": "Is disabled", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.is_disabled", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_pregnant": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_pregnant", - "label": "Is pregnant", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.is_pregnant", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": ["current_pregnancies"], - "subtracts": null, - "hidden_input": false - }, - "is_military": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_military", - "label": "is employed in the US armed forces", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.is_military", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "care_and_support_costs": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "care_and_support_costs", - "label": "Total costs for this person's care and support", - "category": null, - "unit": "currency-USD", - "moduleName": "household.demographic.person.care_and_support_costs", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "retired_from_federal_government": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "retired_from_federal_government", - "label": "Retired from Federal Government", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.retired_from_federal_government", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ssn_card_type": { - "documentation": null, - "entity": "person", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "ssn_card_type", - "label": "Social Security Number (SSN) card type as an enumeration type", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.ssn_card_type", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": "CITIZEN", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "CITIZEN", - "label": "Citizen" - }, - { - "value": "NON_CITIZEN_VALID_EAD", - "label": "Non-citizen with valid EAD card" - }, - { - "value": "OTHER_NON_CITIZEN", - "label": "Other non-citizen" - }, - { - "value": "NONE", - "label": "None" - } - ] - }, - "share_of_care_and_support_costs_paid_by_tax_filer": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "share_of_care_and_support_costs_paid_by_tax_filer", - "label": "The percentage of care and support costs of a senior paid by the tax filer", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.share_of_care_and_support_costs_paid_by_tax_filer", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "race": { - "documentation": "The broadest racial category (White only, Black only, Hispanic, Other)", - "entity": "person", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "race", - "label": "race", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.race", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "WHITE", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "WHITE", - "label": "White, non-Hispanic" - }, - { - "value": "BLACK", - "label": "Black, non-Hispanic" - }, - { - "value": "HISPANIC", - "label": "Hispanic" - }, - { - "value": "OTHER", - "label": "Other" - } - ] - }, - "is_computer_scientist": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_computer_scientist", - "label": "is employed in a computer science related occupation", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.is_computer_scientist", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_full_time_college_student": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_full_time_college_student", - "label": "Is a full time college student", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.is_full_time_college_student", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "immigration_status_str": { - "documentation": null, - "entity": "person", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "immigration_status_str", - "label": "ImmigrationStatus enumeration type as an all-upper-case string", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.immigration_status_str", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": "CITIZEN", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "CITIZEN", - "label": "Citizen" - }, - { - "value": "LEGAL_PERMANENT_RESIDENT", - "label": "Legal Permanent Resident" - }, - { - "value": "REFUGEE", - "label": "Refugee" - }, - { - "value": "ASYLEE", - "label": "Asylee" - }, - { - "value": "DEPORTATION_WITHHELD", - "label": "Deportation Withheld" - }, - { - "value": "CUBAN_HAITIAN_ENTRANT", - "label": "Cuban/Haitian Entrant" - }, - { - "value": "CONDITIONAL_ENTRANT", - "label": "Conditional Entrant" - }, - { - "value": "PAROLED_ONE_YEAR", - "label": "Paroled for at Least One Year" - }, - { - "value": "DACA_TPS", - "label": "Deferred Action for Childhood Arrivals or Temporary Protected Status" - }, - { - "value": "UNDOCUMENTED", - "label": "Undocumented" - }, - { - "value": "DACA", - "label": "Deferred Action for Childhood Arrivals" - }, - { - "value": "TPS", - "label": "Temporary Protected Status" - } - ] - }, - "is_veteran": { - "documentation": "A person who served in the active military, naval, air, or space service, and who was discharged or released therefrom under conditions other than dishonorable.", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_veteran", - "label": "Is veteran", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.is_veteran", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "technical_institution_student": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "technical_institution_student", - "label": "Is a technical institution student", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.technical_institution_student", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_parent": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_parent", - "label": "Is a parent", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.is_parent", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_in_secondary_school": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_in_secondary_school", - "label": "Is in secondary school (or in an equivalent level of training)", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.is_in_secondary_school", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_fully_disabled_service_connected_veteran": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_fully_disabled_service_connected_veteran", - "label": "Is a fully disabled veteran who became so as a result of an injury during service", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.is_fully_disabled_service_connected_veteran", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_severely_disabled": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_severely_disabled", - "label": "Is severely disabled", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.is_severely_disabled", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_female": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_female", - "label": "Is female", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.is_female", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_parent_of_filer_or_spouse": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_parent_of_filer_or_spouse", - "label": "Is a parent of the filer or spouse", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.is_parent_of_filer_or_spouse", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "care_and_support_payments_from_tax_filer": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "care_and_support_payments_from_tax_filer", - "label": "Amount of payments made by the tax filer for this person's care and support", - "category": null, - "unit": "currency-USD", - "moduleName": "household.demographic.person.care_and_support_payments_from_tax_filer", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "year_of_retirement": { - "documentation": null, - "entity": "person", - "valueType": "int", - "definitionPeriod": "year", - "name": "year_of_retirement", - "label": "Year of retirement", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.year_of_retirement", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "under_60_days_postpartum": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "under_60_days_postpartum", - "label": "Under 60 days postpartum", - "category": null, - "unit": "currency-USD", - "moduleName": "household.demographic.person.postpartum.under_60_days_postpartum", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "under_12_months_postpartum": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "under_12_months_postpartum", - "label": "Under 12 months postpartum", - "category": null, - "unit": null, - "moduleName": "household.demographic.person.postpartum.under_12_months_postpartum", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "count_days_postpartum": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "count_days_postpartum", - "label": "Number of days postpartum", - "category": null, - "unit": "day", - "moduleName": "household.demographic.person.postpartum.count_days_postpartum", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "person_tax_unit_id": { - "documentation": null, - "entity": "person", - "valueType": "int", - "definitionPeriod": "year", - "name": "person_tax_unit_id", - "label": "Unique reference for the tax unit of this person", - "category": null, - "unit": null, - "moduleName": "household.demographic.identifiers.person_tax_unit_id", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "household_id": { - "documentation": null, - "entity": "household", - "valueType": "int", - "definitionPeriod": "year", - "name": "household_id", - "label": "Unique reference for this household", - "category": null, - "unit": null, - "moduleName": "household.demographic.identifiers.household_id", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "person_family_id": { - "documentation": null, - "entity": "person", - "valueType": "int", - "definitionPeriod": "year", - "name": "person_family_id", - "label": "Unique reference for the family of this person", - "category": null, - "unit": null, - "moduleName": "household.demographic.identifiers.person_family_id", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "person_id": { - "documentation": null, - "entity": "person", - "valueType": "int", - "definitionPeriod": "year", - "name": "person_id", - "label": "Unique reference for this person", - "category": null, - "unit": null, - "moduleName": "household.demographic.identifiers.person_id", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_unit_id": { - "documentation": null, - "entity": "tax_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "tax_unit_id", - "label": "Unique reference for this tax unit", - "category": null, - "unit": null, - "moduleName": "household.demographic.identifiers.tax_unit_id", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "person_household_id": { - "documentation": null, - "entity": "person", - "valueType": "int", - "definitionPeriod": "year", - "name": "person_household_id", - "label": "Unique reference for the household of this person", - "category": null, - "unit": null, - "moduleName": "household.demographic.identifiers.person_household_id", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "family_id": { - "documentation": null, - "entity": "family", - "valueType": "float", - "definitionPeriod": "year", - "name": "family_id", - "label": "Unique reference for this family", - "category": null, - "unit": null, - "moduleName": "household.demographic.identifiers.family_id", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "household_weight": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "household_weight", - "label": "Household weight", - "category": null, - "unit": null, - "moduleName": "household.demographic.weights.household_weight", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "spm_unit_weight": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "spm_unit_weight", - "label": "SPM unit weight", - "category": null, - "unit": null, - "moduleName": "household.demographic.weights.spm_unit_weight", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "person_weight": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "person_weight", - "label": "Person weight", - "category": null, - "unit": null, - "moduleName": "household.demographic.weights.person_weight", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "family_weight": { - "documentation": null, - "entity": "family", - "valueType": "float", - "definitionPeriod": "year", - "name": "family_weight", - "label": "Family weight", - "category": null, - "unit": null, - "moduleName": "household.demographic.weights.family_weight", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_unit_weight": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "tax_unit_weight", - "label": "Tax unit weight", - "category": null, - "unit": null, - "moduleName": "household.demographic.weights.tax_unit_weight", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "person_marital_unit_id": { - "documentation": null, - "entity": "person", - "valueType": "int", - "definitionPeriod": "year", - "name": "person_marital_unit_id", - "label": "Marital unit ID", - "category": null, - "unit": null, - "moduleName": "household.demographic.marital_unit.person_marital_unit_id", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_surviving_spouse": { - "documentation": "Whether the person is surviving spouse.", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_surviving_spouse", - "label": "surviving spouse", - "category": null, - "unit": null, - "moduleName": "household.demographic.marital_unit.is_surviving_spouse", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "marital_unit_weight": { - "documentation": null, - "entity": "marital_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "marital_unit_weight", - "label": "Marital unit weight", - "category": null, - "unit": null, - "moduleName": "household.demographic.marital_unit.marital_unit_weight", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "marital_unit_id": { - "documentation": null, - "entity": "marital_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "marital_unit_id", - "label": "Marital unit ID", - "category": null, - "unit": null, - "moduleName": "household.demographic.marital_unit.marital_unit_id", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_separated": { - "documentation": "Whether the person is separated from a partner.", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_separated", - "label": "Separated", - "category": null, - "unit": null, - "moduleName": "household.demographic.marital_unit.is_separated", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_on_tribal_land": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_on_tribal_land", - "label": "Is on tribal land", - "category": null, - "unit": null, - "moduleName": "household.demographic.geographic.is_on_tribal_land", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "state_code_str": { - "documentation": "State code variable, stored as a string", - "entity": "household", - "valueType": "str", - "definitionPeriod": "year", - "name": "state_code_str", - "label": "State code (string)", - "category": null, - "unit": null, - "moduleName": "household.demographic.geographic.state_code_str", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": null, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_homeless": { - "documentation": "Whether all members are homeless individuals and are not receiving free shelter throughout the month", - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_homeless", - "label": "Is homeless", - "category": null, - "unit": null, - "moduleName": "household.demographic.geographic.is_homeless", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "in_nyc": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "in_nyc", - "label": "Is in NYC", - "category": null, - "unit": null, - "moduleName": "household.demographic.geographic.in_nyc", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "state_group_str": { - "documentation": "State group variable, stored as a string", - "entity": "household", - "valueType": "str", - "definitionPeriod": "year", - "name": "state_group_str", - "label": "State group (string)", - "category": null, - "unit": null, - "moduleName": "household.demographic.geographic.state_group_str", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": null, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "state_group": { - "documentation": null, - "entity": "household", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "state_group", - "label": "State group", - "category": null, - "unit": null, - "moduleName": "household.demographic.geographic.state_group", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "CONTIGUOUS_US", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "CONTIGUOUS_US", - "label": "Contiguous US" - }, - { - "value": "AK", - "label": "Alaska" - }, - { - "value": "HI", - "label": "Hawaii" - }, - { - "value": "GU", - "label": "Guam" - }, - { - "value": "PR", - "label": "Puerto Rico" - }, - { - "value": "VI", - "label": "Virgin Islands" - } - ] - }, - "tax_unit_state": { - "documentation": null, - "entity": "tax_unit", - "valueType": "str", - "definitionPeriod": "year", - "name": "tax_unit_state", - "label": "Tax unit State", - "category": null, - "unit": null, - "moduleName": "household.demographic.geographic.tax_unit_state", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": null, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_rural": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_rural", - "label": "Is in a rural area", - "category": null, - "unit": null, - "moduleName": "household.demographic.geographic.is_rural", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "state_code": { - "documentation": null, - "entity": "household", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "state_code", - "label": "State code", - "category": null, - "unit": null, - "moduleName": "household.demographic.geographic.state_code", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "CA", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "AL", - "label": "AL" - }, - { - "value": "AK", - "label": "AK" - }, - { - "value": "AZ", - "label": "AZ" - }, - { - "value": "AR", - "label": "AR" - }, - { - "value": "CA", - "label": "CA" - }, - { - "value": "CO", - "label": "CO" - }, - { - "value": "CT", - "label": "CT" - }, - { - "value": "DE", - "label": "DE" - }, - { - "value": "FL", - "label": "FL" - }, - { - "value": "GA", - "label": "GA" - }, - { - "value": "HI", - "label": "HI" - }, - { - "value": "ID", - "label": "ID" - }, - { - "value": "IL", - "label": "IL" - }, - { - "value": "IN", - "label": "IN" - }, - { - "value": "IA", - "label": "IA" - }, - { - "value": "KS", - "label": "KS" - }, - { - "value": "KY", - "label": "KY" - }, - { - "value": "LA", - "label": "LA" - }, - { - "value": "ME", - "label": "ME" - }, - { - "value": "MD", - "label": "MD" - }, - { - "value": "MA", - "label": "MA" - }, - { - "value": "MI", - "label": "MI" - }, - { - "value": "MN", - "label": "MN" - }, - { - "value": "MS", - "label": "MS" - }, - { - "value": "MO", - "label": "MO" - }, - { - "value": "MT", - "label": "MT" - }, - { - "value": "NE", - "label": "NE" - }, - { - "value": "NV", - "label": "NV" - }, - { - "value": "NH", - "label": "NH" - }, - { - "value": "NJ", - "label": "NJ" - }, - { - "value": "NM", - "label": "NM" - }, - { - "value": "NY", - "label": "NY" - }, - { - "value": "NC", - "label": "NC" - }, - { - "value": "ND", - "label": "ND" - }, - { - "value": "OH", - "label": "OH" - }, - { - "value": "OK", - "label": "OK" - }, - { - "value": "OR", - "label": "OR" - }, - { - "value": "PA", - "label": "PA" - }, - { - "value": "RI", - "label": "RI" - }, - { - "value": "SC", - "label": "SC" - }, - { - "value": "SD", - "label": "SD" - }, - { - "value": "TN", - "label": "TN" - }, - { - "value": "TX", - "label": "TX" - }, - { - "value": "UT", - "label": "UT" - }, - { - "value": "VT", - "label": "VT" - }, - { - "value": "VA", - "label": "VA" - }, - { - "value": "WA", - "label": "WA" - }, - { - "value": "WV", - "label": "WV" - }, - { - "value": "WI", - "label": "WI" - }, - { - "value": "WY", - "label": "WY" - }, - { - "value": "DC", - "label": "DC" - }, - { - "value": "GU", - "label": "GU" - }, - { - "value": "MP", - "label": "MP" - }, - { - "value": "PW", - "label": "PW" - }, - { - "value": "PR", - "label": "PR" - }, - { - "value": "VI", - "label": "VI" - }, - { - "value": "AA", - "label": "AA" - }, - { - "value": "AE", - "label": "AE" - }, - { - "value": "AP", - "label": "AP" - } - ] - }, - "lives_in_vehicle": { - "documentation": "Whether a household is using their vehicle as their primary residence ", - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "lives_in_vehicle", - "label": "Lives in vehicle", - "category": null, - "unit": null, - "moduleName": "household.demographic.geographic.lives_in_vehicle", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "safmr_used_for_hcv": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "safmr_used_for_hcv", - "label": "Small area fair market rent used for purposes of the Housing Choice Voucher Program", - "category": null, - "unit": null, - "moduleName": "household.demographic.geographic.safmr_used_for_hcv", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ucgid_str": { - "documentation": "UCGID variable, stored as a string", - "entity": "household", - "valueType": "str", - "definitionPeriod": "year", - "name": "ucgid_str", - "label": "UCGID (string)", - "category": null, - "unit": null, - "moduleName": "household.demographic.geographic.ucgid.ucgid_str", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": null, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ucgid": { - "documentation": "\nUnified Congressional Geographic Identifier (UCGID) for the household as defined by the U.S. Census Bureau.\n", - "entity": "household", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "ucgid", - "label": "Unified Congressional Geographic Identifier (UCGID)", - "category": null, - "unit": null, - "moduleName": "household.demographic.geographic.ucgid.ucgid", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "US", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "US", - "label": "0100000US" - }, - { - "value": "AL", - "label": "0400000US01" - }, - { - "value": "AK", - "label": "0400000US02" - }, - { - "value": "AZ", - "label": "0400000US04" - }, - { - "value": "AR", - "label": "0400000US05" - }, - { - "value": "CA", - "label": "0400000US06" - }, - { - "value": "CO", - "label": "0400000US08" - }, - { - "value": "CT", - "label": "0400000US09" - }, - { - "value": "DE", - "label": "0400000US10" - }, - { - "value": "DC", - "label": "0400000US11" - }, - { - "value": "FL", - "label": "0400000US12" - }, - { - "value": "GA", - "label": "0400000US13" - }, - { - "value": "HI", - "label": "0400000US15" - }, - { - "value": "ID", - "label": "0400000US16" - }, - { - "value": "IL", - "label": "0400000US17" - }, - { - "value": "IN", - "label": "0400000US18" - }, - { - "value": "IA", - "label": "0400000US19" - }, - { - "value": "KS", - "label": "0400000US20" - }, - { - "value": "KY", - "label": "0400000US21" - }, - { - "value": "LA", - "label": "0400000US22" - }, - { - "value": "ME", - "label": "0400000US23" - }, - { - "value": "MD", - "label": "0400000US24" - }, - { - "value": "MA", - "label": "0400000US25" - }, - { - "value": "MI", - "label": "0400000US26" - }, - { - "value": "MN", - "label": "0400000US27" - }, - { - "value": "MS", - "label": "0400000US28" - }, - { - "value": "MO", - "label": "0400000US29" - }, - { - "value": "MT", - "label": "0400000US30" - }, - { - "value": "NE", - "label": "0400000US31" - }, - { - "value": "NV", - "label": "0400000US32" - }, - { - "value": "NH", - "label": "0400000US33" - }, - { - "value": "NJ", - "label": "0400000US34" - }, - { - "value": "NM", - "label": "0400000US35" - }, - { - "value": "NY", - "label": "0400000US36" - }, - { - "value": "NC", - "label": "0400000US37" - }, - { - "value": "ND", - "label": "0400000US38" - }, - { - "value": "OH", - "label": "0400000US39" - }, - { - "value": "OK", - "label": "0400000US40" - }, - { - "value": "OR", - "label": "0400000US41" - }, - { - "value": "PA", - "label": "0400000US42" - }, - { - "value": "RI", - "label": "0400000US44" - }, - { - "value": "SC", - "label": "0400000US45" - }, - { - "value": "SD", - "label": "0400000US46" - }, - { - "value": "TN", - "label": "0400000US47" - }, - { - "value": "TX", - "label": "0400000US48" - }, - { - "value": "UT", - "label": "0400000US49" - }, - { - "value": "VT", - "label": "0400000US50" - }, - { - "value": "VA", - "label": "0400000US51" - }, - { - "value": "WA", - "label": "0400000US53" - }, - { - "value": "WV", - "label": "0400000US54" - }, - { - "value": "WI", - "label": "0400000US55" - }, - { - "value": "WY", - "label": "0400000US56" - }, - { - "value": "AL_01", - "label": "5001800US0101" - }, - { - "value": "AL_02", - "label": "5001800US0102" - }, - { - "value": "AL_03", - "label": "5001800US0103" - }, - { - "value": "AL_04", - "label": "5001800US0104" - }, - { - "value": "AL_05", - "label": "5001800US0105" - }, - { - "value": "AL_06", - "label": "5001800US0106" - }, - { - "value": "AL_07", - "label": "5001800US0107" - }, - { - "value": "AK_01", - "label": "5001800US0200" - }, - { - "value": "AZ_01", - "label": "5001800US0401" - }, - { - "value": "AZ_02", - "label": "5001800US0402" - }, - { - "value": "AZ_03", - "label": "5001800US0403" - }, - { - "value": "AZ_04", - "label": "5001800US0404" - }, - { - "value": "AZ_05", - "label": "5001800US0405" - }, - { - "value": "AZ_06", - "label": "5001800US0406" - }, - { - "value": "AZ_07", - "label": "5001800US0407" - }, - { - "value": "AZ_08", - "label": "5001800US0408" - }, - { - "value": "AZ_09", - "label": "5001800US0409" - }, - { - "value": "AR_01", - "label": "5001800US0501" - }, - { - "value": "AR_02", - "label": "5001800US0502" - }, - { - "value": "AR_03", - "label": "5001800US0503" - }, - { - "value": "AR_04", - "label": "5001800US0504" - }, - { - "value": "CA_01", - "label": "5001800US0601" - }, - { - "value": "CA_02", - "label": "5001800US0602" - }, - { - "value": "CA_03", - "label": "5001800US0603" - }, - { - "value": "CA_04", - "label": "5001800US0604" - }, - { - "value": "CA_05", - "label": "5001800US0605" - }, - { - "value": "CA_06", - "label": "5001800US0606" - }, - { - "value": "CA_07", - "label": "5001800US0607" - }, - { - "value": "CA_08", - "label": "5001800US0608" - }, - { - "value": "CA_09", - "label": "5001800US0609" - }, - { - "value": "CA_10", - "label": "5001800US0610" - }, - { - "value": "CA_11", - "label": "5001800US0611" - }, - { - "value": "CA_12", - "label": "5001800US0612" - }, - { - "value": "CA_13", - "label": "5001800US0613" - }, - { - "value": "CA_14", - "label": "5001800US0614" - }, - { - "value": "CA_15", - "label": "5001800US0615" - }, - { - "value": "CA_16", - "label": "5001800US0616" - }, - { - "value": "CA_17", - "label": "5001800US0617" - }, - { - "value": "CA_18", - "label": "5001800US0618" - }, - { - "value": "CA_19", - "label": "5001800US0619" - }, - { - "value": "CA_20", - "label": "5001800US0620" - }, - { - "value": "CA_21", - "label": "5001800US0621" - }, - { - "value": "CA_22", - "label": "5001800US0622" - }, - { - "value": "CA_23", - "label": "5001800US0623" - }, - { - "value": "CA_24", - "label": "5001800US0624" - }, - { - "value": "CA_25", - "label": "5001800US0625" - }, - { - "value": "CA_26", - "label": "5001800US0626" - }, - { - "value": "CA_27", - "label": "5001800US0627" - }, - { - "value": "CA_28", - "label": "5001800US0628" - }, - { - "value": "CA_29", - "label": "5001800US0629" - }, - { - "value": "CA_30", - "label": "5001800US0630" - }, - { - "value": "CA_31", - "label": "5001800US0631" - }, - { - "value": "CA_32", - "label": "5001800US0632" - }, - { - "value": "CA_33", - "label": "5001800US0633" - }, - { - "value": "CA_34", - "label": "5001800US0634" - }, - { - "value": "CA_35", - "label": "5001800US0635" - }, - { - "value": "CA_36", - "label": "5001800US0636" - }, - { - "value": "CA_37", - "label": "5001800US0637" - }, - { - "value": "CA_38", - "label": "5001800US0638" - }, - { - "value": "CA_39", - "label": "5001800US0639" - }, - { - "value": "CA_40", - "label": "5001800US0640" - }, - { - "value": "CA_41", - "label": "5001800US0641" - }, - { - "value": "CA_42", - "label": "5001800US0642" - }, - { - "value": "CA_43", - "label": "5001800US0643" - }, - { - "value": "CA_44", - "label": "5001800US0644" - }, - { - "value": "CA_45", - "label": "5001800US0645" - }, - { - "value": "CA_46", - "label": "5001800US0646" - }, - { - "value": "CA_47", - "label": "5001800US0647" - }, - { - "value": "CA_48", - "label": "5001800US0648" - }, - { - "value": "CA_49", - "label": "5001800US0649" - }, - { - "value": "CA_50", - "label": "5001800US0650" - }, - { - "value": "CA_51", - "label": "5001800US0651" - }, - { - "value": "CA_52", - "label": "5001800US0652" - }, - { - "value": "CO_01", - "label": "5001800US0801" - }, - { - "value": "CO_02", - "label": "5001800US0802" - }, - { - "value": "CO_03", - "label": "5001800US0803" - }, - { - "value": "CO_04", - "label": "5001800US0804" - }, - { - "value": "CO_05", - "label": "5001800US0805" - }, - { - "value": "CO_06", - "label": "5001800US0806" - }, - { - "value": "CO_07", - "label": "5001800US0807" - }, - { - "value": "CO_08", - "label": "5001800US0808" - }, - { - "value": "CT_01", - "label": "5001800US0901" - }, - { - "value": "CT_02", - "label": "5001800US0902" - }, - { - "value": "CT_03", - "label": "5001800US0903" - }, - { - "value": "CT_04", - "label": "5001800US0904" - }, - { - "value": "CT_05", - "label": "5001800US0905" - }, - { - "value": "DE_01", - "label": "5001800US1000" - }, - { - "value": "DC_01", - "label": "5001800US1198" - }, - { - "value": "FL_01", - "label": "5001800US1201" - }, - { - "value": "FL_02", - "label": "5001800US1202" - }, - { - "value": "FL_03", - "label": "5001800US1203" - }, - { - "value": "FL_04", - "label": "5001800US1204" - }, - { - "value": "FL_05", - "label": "5001800US1205" - }, - { - "value": "FL_06", - "label": "5001800US1206" - }, - { - "value": "FL_07", - "label": "5001800US1207" - }, - { - "value": "FL_08", - "label": "5001800US1208" - }, - { - "value": "FL_09", - "label": "5001800US1209" - }, - { - "value": "FL_10", - "label": "5001800US1210" - }, - { - "value": "FL_11", - "label": "5001800US1211" - }, - { - "value": "FL_12", - "label": "5001800US1212" - }, - { - "value": "FL_13", - "label": "5001800US1213" - }, - { - "value": "FL_14", - "label": "5001800US1214" - }, - { - "value": "FL_15", - "label": "5001800US1215" - }, - { - "value": "FL_16", - "label": "5001800US1216" - }, - { - "value": "FL_17", - "label": "5001800US1217" - }, - { - "value": "FL_18", - "label": "5001800US1218" - }, - { - "value": "FL_19", - "label": "5001800US1219" - }, - { - "value": "FL_20", - "label": "5001800US1220" - }, - { - "value": "FL_21", - "label": "5001800US1221" - }, - { - "value": "FL_22", - "label": "5001800US1222" - }, - { - "value": "FL_23", - "label": "5001800US1223" - }, - { - "value": "FL_24", - "label": "5001800US1224" - }, - { - "value": "FL_25", - "label": "5001800US1225" - }, - { - "value": "FL_26", - "label": "5001800US1226" - }, - { - "value": "FL_27", - "label": "5001800US1227" - }, - { - "value": "FL_28", - "label": "5001800US1228" - }, - { - "value": "GA_01", - "label": "5001800US1301" - }, - { - "value": "GA_02", - "label": "5001800US1302" - }, - { - "value": "GA_03", - "label": "5001800US1303" - }, - { - "value": "GA_04", - "label": "5001800US1304" - }, - { - "value": "GA_05", - "label": "5001800US1305" - }, - { - "value": "GA_06", - "label": "5001800US1306" - }, - { - "value": "GA_07", - "label": "5001800US1307" - }, - { - "value": "GA_08", - "label": "5001800US1308" - }, - { - "value": "GA_09", - "label": "5001800US1309" - }, - { - "value": "GA_10", - "label": "5001800US1310" - }, - { - "value": "GA_11", - "label": "5001800US1311" - }, - { - "value": "GA_12", - "label": "5001800US1312" - }, - { - "value": "GA_13", - "label": "5001800US1313" - }, - { - "value": "GA_14", - "label": "5001800US1314" - }, - { - "value": "HI_01", - "label": "5001800US1501" - }, - { - "value": "HI_02", - "label": "5001800US1502" - }, - { - "value": "ID_01", - "label": "5001800US1601" - }, - { - "value": "ID_02", - "label": "5001800US1602" - }, - { - "value": "IL_01", - "label": "5001800US1701" - }, - { - "value": "IL_02", - "label": "5001800US1702" - }, - { - "value": "IL_03", - "label": "5001800US1703" - }, - { - "value": "IL_04", - "label": "5001800US1704" - }, - { - "value": "IL_05", - "label": "5001800US1705" - }, - { - "value": "IL_06", - "label": "5001800US1706" - }, - { - "value": "IL_07", - "label": "5001800US1707" - }, - { - "value": "IL_08", - "label": "5001800US1708" - }, - { - "value": "IL_09", - "label": "5001800US1709" - }, - { - "value": "IL_10", - "label": "5001800US1710" - }, - { - "value": "IL_11", - "label": "5001800US1711" - }, - { - "value": "IL_12", - "label": "5001800US1712" - }, - { - "value": "IL_13", - "label": "5001800US1713" - }, - { - "value": "IL_14", - "label": "5001800US1714" - }, - { - "value": "IL_15", - "label": "5001800US1715" - }, - { - "value": "IL_16", - "label": "5001800US1716" - }, - { - "value": "IL_17", - "label": "5001800US1717" - }, - { - "value": "IN_01", - "label": "5001800US1801" - }, - { - "value": "IN_02", - "label": "5001800US1802" - }, - { - "value": "IN_03", - "label": "5001800US1803" - }, - { - "value": "IN_04", - "label": "5001800US1804" - }, - { - "value": "IN_05", - "label": "5001800US1805" - }, - { - "value": "IN_06", - "label": "5001800US1806" - }, - { - "value": "IN_07", - "label": "5001800US1807" - }, - { - "value": "IN_08", - "label": "5001800US1808" - }, - { - "value": "IN_09", - "label": "5001800US1809" - }, - { - "value": "IA_01", - "label": "5001800US1901" - }, - { - "value": "IA_02", - "label": "5001800US1902" - }, - { - "value": "IA_03", - "label": "5001800US1903" - }, - { - "value": "IA_04", - "label": "5001800US1904" - }, - { - "value": "KS_01", - "label": "5001800US2001" - }, - { - "value": "KS_02", - "label": "5001800US2002" - }, - { - "value": "KS_03", - "label": "5001800US2003" - }, - { - "value": "KS_04", - "label": "5001800US2004" - }, - { - "value": "KY_01", - "label": "5001800US2101" - }, - { - "value": "KY_02", - "label": "5001800US2102" - }, - { - "value": "KY_03", - "label": "5001800US2103" - }, - { - "value": "KY_04", - "label": "5001800US2104" - }, - { - "value": "KY_05", - "label": "5001800US2105" - }, - { - "value": "KY_06", - "label": "5001800US2106" - }, - { - "value": "LA_01", - "label": "5001800US2201" - }, - { - "value": "LA_02", - "label": "5001800US2202" - }, - { - "value": "LA_03", - "label": "5001800US2203" - }, - { - "value": "LA_04", - "label": "5001800US2204" - }, - { - "value": "LA_05", - "label": "5001800US2205" - }, - { - "value": "LA_06", - "label": "5001800US2206" - }, - { - "value": "ME_01", - "label": "5001800US2301" - }, - { - "value": "ME_02", - "label": "5001800US2302" - }, - { - "value": "MD_01", - "label": "5001800US2401" - }, - { - "value": "MD_02", - "label": "5001800US2402" - }, - { - "value": "MD_03", - "label": "5001800US2403" - }, - { - "value": "MD_04", - "label": "5001800US2404" - }, - { - "value": "MD_05", - "label": "5001800US2405" - }, - { - "value": "MD_06", - "label": "5001800US2406" - }, - { - "value": "MD_07", - "label": "5001800US2407" - }, - { - "value": "MD_08", - "label": "5001800US2408" - }, - { - "value": "MA_01", - "label": "5001800US2501" - }, - { - "value": "MA_02", - "label": "5001800US2502" - }, - { - "value": "MA_03", - "label": "5001800US2503" - }, - { - "value": "MA_04", - "label": "5001800US2504" - }, - { - "value": "MA_05", - "label": "5001800US2505" - }, - { - "value": "MA_06", - "label": "5001800US2506" - }, - { - "value": "MA_07", - "label": "5001800US2507" - }, - { - "value": "MA_08", - "label": "5001800US2508" - }, - { - "value": "MA_09", - "label": "5001800US2509" - }, - { - "value": "MI_01", - "label": "5001800US2601" - }, - { - "value": "MI_02", - "label": "5001800US2602" - }, - { - "value": "MI_03", - "label": "5001800US2603" - }, - { - "value": "MI_04", - "label": "5001800US2604" - }, - { - "value": "MI_05", - "label": "5001800US2605" - }, - { - "value": "MI_06", - "label": "5001800US2606" - }, - { - "value": "MI_07", - "label": "5001800US2607" - }, - { - "value": "MI_08", - "label": "5001800US2608" - }, - { - "value": "MI_09", - "label": "5001800US2609" - }, - { - "value": "MI_10", - "label": "5001800US2610" - }, - { - "value": "MI_11", - "label": "5001800US2611" - }, - { - "value": "MI_12", - "label": "5001800US2612" - }, - { - "value": "MI_13", - "label": "5001800US2613" - }, - { - "value": "MN_01", - "label": "5001800US2701" - }, - { - "value": "MN_02", - "label": "5001800US2702" - }, - { - "value": "MN_03", - "label": "5001800US2703" - }, - { - "value": "MN_04", - "label": "5001800US2704" - }, - { - "value": "MN_05", - "label": "5001800US2705" - }, - { - "value": "MN_06", - "label": "5001800US2706" - }, - { - "value": "MN_07", - "label": "5001800US2707" - }, - { - "value": "MN_08", - "label": "5001800US2708" - }, - { - "value": "MS_01", - "label": "5001800US2801" - }, - { - "value": "MS_02", - "label": "5001800US2802" - }, - { - "value": "MS_03", - "label": "5001800US2803" - }, - { - "value": "MS_04", - "label": "5001800US2804" - }, - { - "value": "MO_01", - "label": "5001800US2901" - }, - { - "value": "MO_02", - "label": "5001800US2902" - }, - { - "value": "MO_03", - "label": "5001800US2903" - }, - { - "value": "MO_04", - "label": "5001800US2904" - }, - { - "value": "MO_05", - "label": "5001800US2905" - }, - { - "value": "MO_06", - "label": "5001800US2906" - }, - { - "value": "MO_07", - "label": "5001800US2907" - }, - { - "value": "MO_08", - "label": "5001800US2908" - }, - { - "value": "MT_01", - "label": "5001800US3001" - }, - { - "value": "MT_02", - "label": "5001800US3002" - }, - { - "value": "NE_01", - "label": "5001800US3101" - }, - { - "value": "NE_02", - "label": "5001800US3102" - }, - { - "value": "NE_03", - "label": "5001800US3103" - }, - { - "value": "NV_01", - "label": "5001800US3201" - }, - { - "value": "NV_02", - "label": "5001800US3202" - }, - { - "value": "NV_03", - "label": "5001800US3203" - }, - { - "value": "NV_04", - "label": "5001800US3204" - }, - { - "value": "NH_01", - "label": "5001800US3301" - }, - { - "value": "NH_02", - "label": "5001800US3302" - }, - { - "value": "NJ_01", - "label": "5001800US3401" - }, - { - "value": "NJ_02", - "label": "5001800US3402" - }, - { - "value": "NJ_03", - "label": "5001800US3403" - }, - { - "value": "NJ_04", - "label": "5001800US3404" - }, - { - "value": "NJ_05", - "label": "5001800US3405" - }, - { - "value": "NJ_06", - "label": "5001800US3406" - }, - { - "value": "NJ_07", - "label": "5001800US3407" - }, - { - "value": "NJ_08", - "label": "5001800US3408" - }, - { - "value": "NJ_09", - "label": "5001800US3409" - }, - { - "value": "NJ_10", - "label": "5001800US3410" - }, - { - "value": "NJ_11", - "label": "5001800US3411" - }, - { - "value": "NJ_12", - "label": "5001800US3412" - }, - { - "value": "NM_01", - "label": "5001800US3501" - }, - { - "value": "NM_02", - "label": "5001800US3502" - }, - { - "value": "NM_03", - "label": "5001800US3503" - }, - { - "value": "NY_01", - "label": "5001800US3601" - }, - { - "value": "NY_02", - "label": "5001800US3602" - }, - { - "value": "NY_03", - "label": "5001800US3603" - }, - { - "value": "NY_04", - "label": "5001800US3604" - }, - { - "value": "NY_05", - "label": "5001800US3605" - }, - { - "value": "NY_06", - "label": "5001800US3606" - }, - { - "value": "NY_07", - "label": "5001800US3607" - }, - { - "value": "NY_08", - "label": "5001800US3608" - }, - { - "value": "NY_09", - "label": "5001800US3609" - }, - { - "value": "NY_10", - "label": "5001800US3610" - }, - { - "value": "NY_11", - "label": "5001800US3611" - }, - { - "value": "NY_12", - "label": "5001800US3612" - }, - { - "value": "NY_13", - "label": "5001800US3613" - }, - { - "value": "NY_14", - "label": "5001800US3614" - }, - { - "value": "NY_15", - "label": "5001800US3615" - }, - { - "value": "NY_16", - "label": "5001800US3616" - }, - { - "value": "NY_17", - "label": "5001800US3617" - }, - { - "value": "NY_18", - "label": "5001800US3618" - }, - { - "value": "NY_19", - "label": "5001800US3619" - }, - { - "value": "NY_20", - "label": "5001800US3620" - }, - { - "value": "NY_21", - "label": "5001800US3621" - }, - { - "value": "NY_22", - "label": "5001800US3622" - }, - { - "value": "NY_23", - "label": "5001800US3623" - }, - { - "value": "NY_24", - "label": "5001800US3624" - }, - { - "value": "NY_25", - "label": "5001800US3625" - }, - { - "value": "NY_26", - "label": "5001800US3626" - }, - { - "value": "NC_01", - "label": "5001800US3701" - }, - { - "value": "NC_02", - "label": "5001800US3702" - }, - { - "value": "NC_03", - "label": "5001800US3703" - }, - { - "value": "NC_04", - "label": "5001800US3704" - }, - { - "value": "NC_05", - "label": "5001800US3705" - }, - { - "value": "NC_06", - "label": "5001800US3706" - }, - { - "value": "NC_07", - "label": "5001800US3707" - }, - { - "value": "NC_08", - "label": "5001800US3708" - }, - { - "value": "NC_09", - "label": "5001800US3709" - }, - { - "value": "NC_10", - "label": "5001800US3710" - }, - { - "value": "NC_11", - "label": "5001800US3711" - }, - { - "value": "NC_12", - "label": "5001800US3712" - }, - { - "value": "NC_13", - "label": "5001800US3713" - }, - { - "value": "NC_14", - "label": "5001800US3714" - }, - { - "value": "ND_01", - "label": "5001800US3800" - }, - { - "value": "OH_01", - "label": "5001800US3901" - }, - { - "value": "OH_02", - "label": "5001800US3902" - }, - { - "value": "OH_03", - "label": "5001800US3903" - }, - { - "value": "OH_04", - "label": "5001800US3904" - }, - { - "value": "OH_05", - "label": "5001800US3905" - }, - { - "value": "OH_06", - "label": "5001800US3906" - }, - { - "value": "OH_07", - "label": "5001800US3907" - }, - { - "value": "OH_08", - "label": "5001800US3908" - }, - { - "value": "OH_09", - "label": "5001800US3909" - }, - { - "value": "OH_10", - "label": "5001800US3910" - }, - { - "value": "OH_11", - "label": "5001800US3911" - }, - { - "value": "OH_12", - "label": "5001800US3912" - }, - { - "value": "OH_13", - "label": "5001800US3913" - }, - { - "value": "OH_14", - "label": "5001800US3914" - }, - { - "value": "OH_15", - "label": "5001800US3915" - }, - { - "value": "OK_01", - "label": "5001800US4001" - }, - { - "value": "OK_02", - "label": "5001800US4002" - }, - { - "value": "OK_03", - "label": "5001800US4003" - }, - { - "value": "OK_04", - "label": "5001800US4004" - }, - { - "value": "OK_05", - "label": "5001800US4005" - }, - { - "value": "OR_01", - "label": "5001800US4101" - }, - { - "value": "OR_02", - "label": "5001800US4102" - }, - { - "value": "OR_03", - "label": "5001800US4103" - }, - { - "value": "OR_04", - "label": "5001800US4104" - }, - { - "value": "OR_05", - "label": "5001800US4105" - }, - { - "value": "OR_06", - "label": "5001800US4106" - }, - { - "value": "PA_01", - "label": "5001800US4201" - }, - { - "value": "PA_02", - "label": "5001800US4202" - }, - { - "value": "PA_03", - "label": "5001800US4203" - }, - { - "value": "PA_04", - "label": "5001800US4204" - }, - { - "value": "PA_05", - "label": "5001800US4205" - }, - { - "value": "PA_06", - "label": "5001800US4206" - }, - { - "value": "PA_07", - "label": "5001800US4207" - }, - { - "value": "PA_08", - "label": "5001800US4208" - }, - { - "value": "PA_09", - "label": "5001800US4209" - }, - { - "value": "PA_10", - "label": "5001800US4210" - }, - { - "value": "PA_11", - "label": "5001800US4211" - }, - { - "value": "PA_12", - "label": "5001800US4212" - }, - { - "value": "PA_13", - "label": "5001800US4213" - }, - { - "value": "PA_14", - "label": "5001800US4214" - }, - { - "value": "PA_15", - "label": "5001800US4215" - }, - { - "value": "PA_16", - "label": "5001800US4216" - }, - { - "value": "PA_17", - "label": "5001800US4217" - }, - { - "value": "RI_01", - "label": "5001800US4401" - }, - { - "value": "RI_02", - "label": "5001800US4402" - }, - { - "value": "SC_01", - "label": "5001800US4501" - }, - { - "value": "SC_02", - "label": "5001800US4502" - }, - { - "value": "SC_03", - "label": "5001800US4503" - }, - { - "value": "SC_04", - "label": "5001800US4504" - }, - { - "value": "SC_05", - "label": "5001800US4505" - }, - { - "value": "SC_06", - "label": "5001800US4506" - }, - { - "value": "SC_07", - "label": "5001800US4507" - }, - { - "value": "SD_01", - "label": "5001800US4600" - }, - { - "value": "TN_01", - "label": "5001800US4701" - }, - { - "value": "TN_02", - "label": "5001800US4702" - }, - { - "value": "TN_03", - "label": "5001800US4703" - }, - { - "value": "TN_04", - "label": "5001800US4704" - }, - { - "value": "TN_05", - "label": "5001800US4705" - }, - { - "value": "TN_06", - "label": "5001800US4706" - }, - { - "value": "TN_07", - "label": "5001800US4707" - }, - { - "value": "TN_08", - "label": "5001800US4708" - }, - { - "value": "TN_09", - "label": "5001800US4709" - }, - { - "value": "TX_01", - "label": "5001800US4801" - }, - { - "value": "TX_02", - "label": "5001800US4802" - }, - { - "value": "TX_03", - "label": "5001800US4803" - }, - { - "value": "TX_04", - "label": "5001800US4804" - }, - { - "value": "TX_05", - "label": "5001800US4805" - }, - { - "value": "TX_06", - "label": "5001800US4806" - }, - { - "value": "TX_07", - "label": "5001800US4807" - }, - { - "value": "TX_08", - "label": "5001800US4808" - }, - { - "value": "TX_09", - "label": "5001800US4809" - }, - { - "value": "TX_10", - "label": "5001800US4810" - }, - { - "value": "TX_11", - "label": "5001800US4811" - }, - { - "value": "TX_12", - "label": "5001800US4812" - }, - { - "value": "TX_13", - "label": "5001800US4813" - }, - { - "value": "TX_14", - "label": "5001800US4814" - }, - { - "value": "TX_15", - "label": "5001800US4815" - }, - { - "value": "TX_16", - "label": "5001800US4816" - }, - { - "value": "TX_17", - "label": "5001800US4817" - }, - { - "value": "TX_18", - "label": "5001800US4818" - }, - { - "value": "TX_19", - "label": "5001800US4819" - }, - { - "value": "TX_20", - "label": "5001800US4820" - }, - { - "value": "TX_21", - "label": "5001800US4821" - }, - { - "value": "TX_22", - "label": "5001800US4822" - }, - { - "value": "TX_23", - "label": "5001800US4823" - }, - { - "value": "TX_24", - "label": "5001800US4824" - }, - { - "value": "TX_25", - "label": "5001800US4825" - }, - { - "value": "TX_26", - "label": "5001800US4826" - }, - { - "value": "TX_27", - "label": "5001800US4827" - }, - { - "value": "TX_28", - "label": "5001800US4828" - }, - { - "value": "TX_29", - "label": "5001800US4829" - }, - { - "value": "TX_30", - "label": "5001800US4830" - }, - { - "value": "TX_31", - "label": "5001800US4831" - }, - { - "value": "TX_32", - "label": "5001800US4832" - }, - { - "value": "TX_33", - "label": "5001800US4833" - }, - { - "value": "TX_34", - "label": "5001800US4834" - }, - { - "value": "TX_35", - "label": "5001800US4835" - }, - { - "value": "TX_36", - "label": "5001800US4836" - }, - { - "value": "TX_37", - "label": "5001800US4837" - }, - { - "value": "TX_38", - "label": "5001800US4838" - }, - { - "value": "UT_01", - "label": "5001800US4901" - }, - { - "value": "UT_02", - "label": "5001800US4902" - }, - { - "value": "UT_03", - "label": "5001800US4903" - }, - { - "value": "UT_04", - "label": "5001800US4904" - }, - { - "value": "VT_01", - "label": "5001800US5000" - }, - { - "value": "VA_01", - "label": "5001800US5101" - }, - { - "value": "VA_02", - "label": "5001800US5102" - }, - { - "value": "VA_03", - "label": "5001800US5103" - }, - { - "value": "VA_04", - "label": "5001800US5104" - }, - { - "value": "VA_05", - "label": "5001800US5105" - }, - { - "value": "VA_06", - "label": "5001800US5106" - }, - { - "value": "VA_07", - "label": "5001800US5107" - }, - { - "value": "VA_08", - "label": "5001800US5108" - }, - { - "value": "VA_09", - "label": "5001800US5109" - }, - { - "value": "VA_10", - "label": "5001800US5110" - }, - { - "value": "VA_11", - "label": "5001800US5111" - }, - { - "value": "WA_01", - "label": "5001800US5301" - }, - { - "value": "WA_02", - "label": "5001800US5302" - }, - { - "value": "WA_03", - "label": "5001800US5303" - }, - { - "value": "WA_04", - "label": "5001800US5304" - }, - { - "value": "WA_05", - "label": "5001800US5305" - }, - { - "value": "WA_06", - "label": "5001800US5306" - }, - { - "value": "WA_07", - "label": "5001800US5307" - }, - { - "value": "WA_08", - "label": "5001800US5308" - }, - { - "value": "WA_09", - "label": "5001800US5309" - }, - { - "value": "WA_10", - "label": "5001800US5310" - }, - { - "value": "WV_01", - "label": "5001800US5401" - }, - { - "value": "WV_02", - "label": "5001800US5402" - }, - { - "value": "WI_01", - "label": "5001800US5501" - }, - { - "value": "WI_02", - "label": "5001800US5502" - }, - { - "value": "WI_03", - "label": "5001800US5503" - }, - { - "value": "WI_04", - "label": "5001800US5504" - }, - { - "value": "WI_05", - "label": "5001800US5505" - }, - { - "value": "WI_06", - "label": "5001800US5506" - }, - { - "value": "WI_07", - "label": "5001800US5507" - }, - { - "value": "WI_08", - "label": "5001800US5508" - }, - { - "value": "WY_01", - "label": "5001800US5600" - } - ] - }, - "first_county_in_state": { - "documentation": null, - "entity": "household", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "first_county_in_state", - "label": "First county alphabetically in household's state", - "category": null, - "unit": null, - "moduleName": "household.demographic.geographic.county.first_county_in_state", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "UNKNOWN", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "UNKNOWN", - "label": "Unknown" - }, - { - "value": "ALEUTIANS_EAST_BOROUGH_AK", - "label": "Aleutians East Borough, AK" - }, - { - "value": "ALEUTIANS_WEST_CENSUS_AREA_AK", - "label": "Aleutians West Census Area, AK" - }, - { - "value": "ANCHORAGE_MUNICIPALITY_AK", - "label": "Anchorage Municipality, AK" - }, - { - "value": "BETHEL_CENSUS_AREA_AK", - "label": "Bethel Census Area, AK" - }, - { - "value": "BRISTOL_BAY_BOROUGH_AK", - "label": "Bristol Bay Borough, AK" - }, - { - "value": "CHUGACH_CENSUS_AREA_AK", - "label": "Chugach Census Area, AK" - }, - { - "value": "COPPER_RIVER_CENSUS_AREA_AK", - "label": "Copper River Census Area, AK" - }, - { - "value": "DENALI_BOROUGH_AK", - "label": "Denali Borough, AK" - }, - { - "value": "DILLINGHAM_CENSUS_AREA_AK", - "label": "Dillingham Census Area, AK" - }, - { - "value": "FAIRBANKS_NORTH_STAR_BOROUGH_AK", - "label": "Fairbanks North Star Borough, AK" - }, - { - "value": "HOONAH_ANGOON_CENSUS_AREA_AK", - "label": "Hoonah-Angoon Census Area, AK" - }, - { - "value": "JUNEAU_CITY_AND_BOROUGH_AK", - "label": "Juneau City and Borough, AK" - }, - { - "value": "KENAI_PENINSULA_BOROUGH_AK", - "label": "Kenai Peninsula Borough, AK" - }, - { - "value": "KETCHIKAN_GATEWAY_BOROUGH_AK", - "label": "Ketchikan Gateway Borough, AK" - }, - { - "value": "KODIAK_ISLAND_BOROUGH_AK", - "label": "Kodiak Island Borough, AK" - }, - { - "value": "KUSILVAK_CENSUS_AREA_AK", - "label": "Kusilvak Census Area, AK" - }, - { - "value": "LAKE_AND_PENINSULA_BOROUGH_AK", - "label": "Lake and Peninsula Borough, AK" - }, - { - "value": "MATANUSKA_SUSITNA_BOROUGH_AK", - "label": "Matanuska-Susitna Borough, AK" - }, - { - "value": "NOME_CENSUS_AREA_AK", - "label": "Nome Census Area, AK" - }, - { - "value": "NORTH_SLOPE_BOROUGH_AK", - "label": "North Slope Borough, AK" - }, - { - "value": "NORTHWEST_ARCTIC_BOROUGH_AK", - "label": "Northwest Arctic Borough, AK" - }, - { - "value": "PRINCE_OF_WALES_HYDER_CENSUS_AREA_AK", - "label": "Prince of Wales-Hyder Census Area, AK" - }, - { - "value": "SITKA_CITY_AND_BOROUGH_AK", - "label": "Sitka City and Borough, AK" - }, - { - "value": "SKAGWAY_MUNICIPALITY_AK", - "label": "Skagway Municipality, AK" - }, - { - "value": "SOUTHEAST_FAIRBANKS_CENSUS_AREA_AK", - "label": "Southeast Fairbanks Census Area, AK" - }, - { - "value": "WRANGELL_CITY_AND_BOROUGH_AK", - "label": "Wrangell City and Borough, AK" - }, - { - "value": "YAKUTAT_CITY_AND_BOROUGH_AK", - "label": "Yakutat City and Borough, AK" - }, - { - "value": "YUKON_KOYUKUK_CENSUS_AREA_AK", - "label": "Yukon-Koyukuk Census Area, AK" - }, - { - "value": "AUTAUGA_COUNTY_AL", - "label": "Autauga County, AL" - }, - { - "value": "BALDWIN_COUNTY_AL", - "label": "Baldwin County, AL" - }, - { - "value": "BARBOUR_COUNTY_AL", - "label": "Barbour County, AL" - }, - { - "value": "BIBB_COUNTY_AL", - "label": "Bibb County, AL" - }, - { - "value": "BLOUNT_COUNTY_AL", - "label": "Blount County, AL" - }, - { - "value": "BULLOCK_COUNTY_AL", - "label": "Bullock County, AL" - }, - { - "value": "BUTLER_COUNTY_AL", - "label": "Butler County, AL" - }, - { - "value": "CALHOUN_COUNTY_AL", - "label": "Calhoun County, AL" - }, - { - "value": "CHAMBERS_COUNTY_AL", - "label": "Chambers County, AL" - }, - { - "value": "CHEROKEE_COUNTY_AL", - "label": "Cherokee County, AL" - }, - { - "value": "CHILTON_COUNTY_AL", - "label": "Chilton County, AL" - }, - { - "value": "CHOCTAW_COUNTY_AL", - "label": "Choctaw County, AL" - }, - { - "value": "CLARKE_COUNTY_AL", - "label": "Clarke County, AL" - }, - { - "value": "CLAY_COUNTY_AL", - "label": "Clay County, AL" - }, - { - "value": "CLEBURNE_COUNTY_AL", - "label": "Cleburne County, AL" - }, - { - "value": "COFFEE_COUNTY_AL", - "label": "Coffee County, AL" - }, - { - "value": "COLBERT_COUNTY_AL", - "label": "Colbert County, AL" - }, - { - "value": "CONECUH_COUNTY_AL", - "label": "Conecuh County, AL" - }, - { - "value": "COOSA_COUNTY_AL", - "label": "Coosa County, AL" - }, - { - "value": "COVINGTON_COUNTY_AL", - "label": "Covington County, AL" - }, - { - "value": "CRENSHAW_COUNTY_AL", - "label": "Crenshaw County, AL" - }, - { - "value": "CULLMAN_COUNTY_AL", - "label": "Cullman County, AL" - }, - { - "value": "DALE_COUNTY_AL", - "label": "Dale County, AL" - }, - { - "value": "DALLAS_COUNTY_AL", - "label": "Dallas County, AL" - }, - { - "value": "DEKALB_COUNTY_AL", - "label": "DeKalb County, AL" - }, - { - "value": "ELMORE_COUNTY_AL", - "label": "Elmore County, AL" - }, - { - "value": "ESCAMBIA_COUNTY_AL", - "label": "Escambia County, AL" - }, - { - "value": "ETOWAH_COUNTY_AL", - "label": "Etowah County, AL" - }, - { - "value": "FAYETTE_COUNTY_AL", - "label": "Fayette County, AL" - }, - { - "value": "FRANKLIN_COUNTY_AL", - "label": "Franklin County, AL" - }, - { - "value": "GENEVA_COUNTY_AL", - "label": "Geneva County, AL" - }, - { - "value": "GREENE_COUNTY_AL", - "label": "Greene County, AL" - }, - { - "value": "HALE_COUNTY_AL", - "label": "Hale County, AL" - }, - { - "value": "HENRY_COUNTY_AL", - "label": "Henry County, AL" - }, - { - "value": "HOUSTON_COUNTY_AL", - "label": "Houston County, AL" - }, - { - "value": "JACKSON_COUNTY_AL", - "label": "Jackson County, AL" - }, - { - "value": "JEFFERSON_COUNTY_AL", - "label": "Jefferson County, AL" - }, - { - "value": "LAMAR_COUNTY_AL", - "label": "Lamar County, AL" - }, - { - "value": "LAUDERDALE_COUNTY_AL", - "label": "Lauderdale County, AL" - }, - { - "value": "LAWRENCE_COUNTY_AL", - "label": "Lawrence County, AL" - }, - { - "value": "LEE_COUNTY_AL", - "label": "Lee County, AL" - }, - { - "value": "LIMESTONE_COUNTY_AL", - "label": "Limestone County, AL" - }, - { - "value": "LOWNDES_COUNTY_AL", - "label": "Lowndes County, AL" - }, - { - "value": "MACON_COUNTY_AL", - "label": "Macon County, AL" - }, - { - "value": "MADISON_COUNTY_AL", - "label": "Madison County, AL" - }, - { - "value": "MARENGO_COUNTY_AL", - "label": "Marengo County, AL" - }, - { - "value": "MARION_COUNTY_AL", - "label": "Marion County, AL" - }, - { - "value": "MARSHALL_COUNTY_AL", - "label": "Marshall County, AL" - }, - { - "value": "MOBILE_COUNTY_AL", - "label": "Mobile County, AL" - }, - { - "value": "MONROE_COUNTY_AL", - "label": "Monroe County, AL" - }, - { - "value": "MONTGOMERY_COUNTY_AL", - "label": "Montgomery County, AL" - }, - { - "value": "MORGAN_COUNTY_AL", - "label": "Morgan County, AL" - }, - { - "value": "PERRY_COUNTY_AL", - "label": "Perry County, AL" - }, - { - "value": "PICKENS_COUNTY_AL", - "label": "Pickens County, AL" - }, - { - "value": "PIKE_COUNTY_AL", - "label": "Pike County, AL" - }, - { - "value": "RANDOLPH_COUNTY_AL", - "label": "Randolph County, AL" - }, - { - "value": "RUSSELL_COUNTY_AL", - "label": "Russell County, AL" - }, - { - "value": "SHELBY_COUNTY_AL", - "label": "Shelby County, AL" - }, - { - "value": "ST_CLAIR_COUNTY_AL", - "label": "St. Clair County, AL" - }, - { - "value": "SUMTER_COUNTY_AL", - "label": "Sumter County, AL" - }, - { - "value": "TALLADEGA_COUNTY_AL", - "label": "Talladega County, AL" - }, - { - "value": "TALLAPOOSA_COUNTY_AL", - "label": "Tallapoosa County, AL" - }, - { - "value": "TROUP_COUNTY_AL", - "label": "Troup County, AL" - }, - { - "value": "TUSCALOOSA_COUNTY_AL", - "label": "Tuscaloosa County, AL" - }, - { - "value": "WALKER_COUNTY_AL", - "label": "Walker County, AL" - }, - { - "value": "WASHINGTON_COUNTY_AL", - "label": "Washington County, AL" - }, - { - "value": "WILCOX_COUNTY_AL", - "label": "Wilcox County, AL" - }, - { - "value": "WINSTON_COUNTY_AL", - "label": "Winston County, AL" - }, - { - "value": "ARKANSAS_COUNTY_AR", - "label": "Arkansas County, AR" - }, - { - "value": "ASHLEY_COUNTY_AR", - "label": "Ashley County, AR" - }, - { - "value": "BAXTER_COUNTY_AR", - "label": "Baxter County, AR" - }, - { - "value": "BENTON_COUNTY_AR", - "label": "Benton County, AR" - }, - { - "value": "BOONE_COUNTY_AR", - "label": "Boone County, AR" - }, - { - "value": "BRADLEY_COUNTY_AR", - "label": "Bradley County, AR" - }, - { - "value": "CALHOUN_COUNTY_AR", - "label": "Calhoun County, AR" - }, - { - "value": "CARROLL_COUNTY_AR", - "label": "Carroll County, AR" - }, - { - "value": "CHICOT_COUNTY_AR", - "label": "Chicot County, AR" - }, - { - "value": "CLARK_COUNTY_AR", - "label": "Clark County, AR" - }, - { - "value": "CLAY_COUNTY_AR", - "label": "Clay County, AR" - }, - { - "value": "CLEBURNE_COUNTY_AR", - "label": "Cleburne County, AR" - }, - { - "value": "CLEVELAND_COUNTY_AR", - "label": "Cleveland County, AR" - }, - { - "value": "COLUMBIA_COUNTY_AR", - "label": "Columbia County, AR" - }, - { - "value": "CONWAY_COUNTY_AR", - "label": "Conway County, AR" - }, - { - "value": "CRAIGHEAD_COUNTY_AR", - "label": "Craighead County, AR" - }, - { - "value": "CRAWFORD_COUNTY_AR", - "label": "Crawford County, AR" - }, - { - "value": "CRITTENDEN_COUNTY_AR", - "label": "Crittenden County, AR" - }, - { - "value": "CROSS_COUNTY_AR", - "label": "Cross County, AR" - }, - { - "value": "DALLAS_COUNTY_AR", - "label": "Dallas County, AR" - }, - { - "value": "DESHA_COUNTY_AR", - "label": "Desha County, AR" - }, - { - "value": "DREW_COUNTY_AR", - "label": "Drew County, AR" - }, - { - "value": "FAULKNER_COUNTY_AR", - "label": "Faulkner County, AR" - }, - { - "value": "FRANKLIN_COUNTY_AR", - "label": "Franklin County, AR" - }, - { - "value": "FULTON_COUNTY_AR", - "label": "Fulton County, AR" - }, - { - "value": "GARLAND_COUNTY_AR", - "label": "Garland County, AR" - }, - { - "value": "GRANT_COUNTY_AR", - "label": "Grant County, AR" - }, - { - "value": "GREENE_COUNTY_AR", - "label": "Greene County, AR" - }, - { - "value": "HEMPSTEAD_COUNTY_AR", - "label": "Hempstead County, AR" - }, - { - "value": "HOT_SPRING_COUNTY_AR", - "label": "Hot Spring County, AR" - }, - { - "value": "HOWARD_COUNTY_AR", - "label": "Howard County, AR" - }, - { - "value": "INDEPENDENCE_COUNTY_AR", - "label": "Independence County, AR" - }, - { - "value": "IZARD_COUNTY_AR", - "label": "Izard County, AR" - }, - { - "value": "JACKSON_COUNTY_AR", - "label": "Jackson County, AR" - }, - { - "value": "JEFFERSON_COUNTY_AR", - "label": "Jefferson County, AR" - }, - { - "value": "JOHNSON_COUNTY_AR", - "label": "Johnson County, AR" - }, - { - "value": "LAFAYETTE_COUNTY_AR", - "label": "Lafayette County, AR" - }, - { - "value": "LAWRENCE_COUNTY_AR", - "label": "Lawrence County, AR" - }, - { - "value": "LE_FLORE_COUNTY_AR", - "label": "Le Flore County, AR" - }, - { - "value": "LEE_COUNTY_AR", - "label": "Lee County, AR" - }, - { - "value": "LINCOLN_COUNTY_AR", - "label": "Lincoln County, AR" - }, - { - "value": "LITTLE_RIVER_COUNTY_AR", - "label": "Little River County, AR" - }, - { - "value": "LOGAN_COUNTY_AR", - "label": "Logan County, AR" - }, - { - "value": "LONOKE_COUNTY_AR", - "label": "Lonoke County, AR" - }, - { - "value": "MADISON_COUNTY_AR", - "label": "Madison County, AR" - }, - { - "value": "MARION_COUNTY_AR", - "label": "Marion County, AR" - }, - { - "value": "MILLER_COUNTY_AR", - "label": "Miller County, AR" - }, - { - "value": "MISSISSIPPI_COUNTY_AR", - "label": "Mississippi County, AR" - }, - { - "value": "MONROE_COUNTY_AR", - "label": "Monroe County, AR" - }, - { - "value": "MONTGOMERY_COUNTY_AR", - "label": "Montgomery County, AR" - }, - { - "value": "NEVADA_COUNTY_AR", - "label": "Nevada County, AR" - }, - { - "value": "NEWTON_COUNTY_AR", - "label": "Newton County, AR" - }, - { - "value": "OUACHITA_COUNTY_AR", - "label": "Ouachita County, AR" - }, - { - "value": "PERRY_COUNTY_AR", - "label": "Perry County, AR" - }, - { - "value": "PHILLIPS_COUNTY_AR", - "label": "Phillips County, AR" - }, - { - "value": "PIKE_COUNTY_AR", - "label": "Pike County, AR" - }, - { - "value": "POINSETT_COUNTY_AR", - "label": "Poinsett County, AR" - }, - { - "value": "POLK_COUNTY_AR", - "label": "Polk County, AR" - }, - { - "value": "POPE_COUNTY_AR", - "label": "Pope County, AR" - }, - { - "value": "PRAIRIE_COUNTY_AR", - "label": "Prairie County, AR" - }, - { - "value": "PULASKI_COUNTY_AR", - "label": "Pulaski County, AR" - }, - { - "value": "RANDOLPH_COUNTY_AR", - "label": "Randolph County, AR" - }, - { - "value": "SALINE_COUNTY_AR", - "label": "Saline County, AR" - }, - { - "value": "SCOTT_COUNTY_AR", - "label": "Scott County, AR" - }, - { - "value": "SEARCY_COUNTY_AR", - "label": "Searcy County, AR" - }, - { - "value": "SEBASTIAN_COUNTY_AR", - "label": "Sebastian County, AR" - }, - { - "value": "SEVIER_COUNTY_AR", - "label": "Sevier County, AR" - }, - { - "value": "SHARP_COUNTY_AR", - "label": "Sharp County, AR" - }, - { - "value": "ST_FRANCIS_COUNTY_AR", - "label": "St. Francis County, AR" - }, - { - "value": "STONE_COUNTY_AR", - "label": "Stone County, AR" - }, - { - "value": "TIPTON_COUNTY_AR", - "label": "Tipton County, AR" - }, - { - "value": "UNION_COUNTY_AR", - "label": "Union County, AR" - }, - { - "value": "VAN_BUREN_COUNTY_AR", - "label": "Van Buren County, AR" - }, - { - "value": "WASHINGTON_COUNTY_AR", - "label": "Washington County, AR" - }, - { - "value": "WHITE_COUNTY_AR", - "label": "White County, AR" - }, - { - "value": "WOODRUFF_COUNTY_AR", - "label": "Woodruff County, AR" - }, - { - "value": "YELL_COUNTY_AR", - "label": "Yell County, AR" - }, - { - "value": "APACHE_COUNTY_AZ", - "label": "Apache County, AZ" - }, - { - "value": "COCHISE_COUNTY_AZ", - "label": "Cochise County, AZ" - }, - { - "value": "COCONINO_COUNTY_AZ", - "label": "Coconino County, AZ" - }, - { - "value": "GILA_COUNTY_AZ", - "label": "Gila County, AZ" - }, - { - "value": "GRAHAM_COUNTY_AZ", - "label": "Graham County, AZ" - }, - { - "value": "GREENLEE_COUNTY_AZ", - "label": "Greenlee County, AZ" - }, - { - "value": "LA_PAZ_COUNTY_AZ", - "label": "La Paz County, AZ" - }, - { - "value": "MARICOPA_COUNTY_AZ", - "label": "Maricopa County, AZ" - }, - { - "value": "MCKINLEY_COUNTY_AZ", - "label": "McKinley County, AZ" - }, - { - "value": "MOHAVE_COUNTY_AZ", - "label": "Mohave County, AZ" - }, - { - "value": "NAVAJO_COUNTY_AZ", - "label": "Navajo County, AZ" - }, - { - "value": "PIMA_COUNTY_AZ", - "label": "Pima County, AZ" - }, - { - "value": "PINAL_COUNTY_AZ", - "label": "Pinal County, AZ" - }, - { - "value": "SAN_JUAN_COUNTY_AZ", - "label": "San Juan County, AZ" - }, - { - "value": "SANTA_CRUZ_COUNTY_AZ", - "label": "Santa Cruz County, AZ" - }, - { - "value": "YAVAPAI_COUNTY_AZ", - "label": "Yavapai County, AZ" - }, - { - "value": "YUMA_COUNTY_AZ", - "label": "Yuma County, AZ" - }, - { - "value": "ALAMEDA_COUNTY_CA", - "label": "Alameda County, CA" - }, - { - "value": "ALPINE_COUNTY_CA", - "label": "Alpine County, CA" - }, - { - "value": "AMADOR_COUNTY_CA", - "label": "Amador County, CA" - }, - { - "value": "BUTTE_COUNTY_CA", - "label": "Butte County, CA" - }, - { - "value": "CALAVERAS_COUNTY_CA", - "label": "Calaveras County, CA" - }, - { - "value": "COLUSA_COUNTY_CA", - "label": "Colusa County, CA" - }, - { - "value": "CONTRA_COSTA_COUNTY_CA", - "label": "Contra Costa County, CA" - }, - { - "value": "DEL_NORTE_COUNTY_CA", - "label": "Del Norte County, CA" - }, - { - "value": "EL_DORADO_COUNTY_CA", - "label": "El Dorado County, CA" - }, - { - "value": "FRESNO_COUNTY_CA", - "label": "Fresno County, CA" - }, - { - "value": "GLENN_COUNTY_CA", - "label": "Glenn County, CA" - }, - { - "value": "HUMBOLDT_COUNTY_CA", - "label": "Humboldt County, CA" - }, - { - "value": "IMPERIAL_COUNTY_CA", - "label": "Imperial County, CA" - }, - { - "value": "INYO_COUNTY_CA", - "label": "Inyo County, CA" - }, - { - "value": "KERN_COUNTY_CA", - "label": "Kern County, CA" - }, - { - "value": "KINGS_COUNTY_CA", - "label": "Kings County, CA" - }, - { - "value": "LAKE_COUNTY_CA", - "label": "Lake County, CA" - }, - { - "value": "LASSEN_COUNTY_CA", - "label": "Lassen County, CA" - }, - { - "value": "LOS_ANGELES_COUNTY_CA", - "label": "Los Angeles County, CA" - }, - { - "value": "MADERA_COUNTY_CA", - "label": "Madera County, CA" - }, - { - "value": "MARIN_COUNTY_CA", - "label": "Marin County, CA" - }, - { - "value": "MARIPOSA_COUNTY_CA", - "label": "Mariposa County, CA" - }, - { - "value": "MENDOCINO_COUNTY_CA", - "label": "Mendocino County, CA" - }, - { - "value": "MERCED_COUNTY_CA", - "label": "Merced County, CA" - }, - { - "value": "MODOC_COUNTY_CA", - "label": "Modoc County, CA" - }, - { - "value": "MONO_COUNTY_CA", - "label": "Mono County, CA" - }, - { - "value": "MONTEREY_COUNTY_CA", - "label": "Monterey County, CA" - }, - { - "value": "NAPA_COUNTY_CA", - "label": "Napa County, CA" - }, - { - "value": "NEVADA_COUNTY_CA", - "label": "Nevada County, CA" - }, - { - "value": "ORANGE_COUNTY_CA", - "label": "Orange County, CA" - }, - { - "value": "PLACER_COUNTY_CA", - "label": "Placer County, CA" - }, - { - "value": "PLUMAS_COUNTY_CA", - "label": "Plumas County, CA" - }, - { - "value": "RIVERSIDE_COUNTY_CA", - "label": "Riverside County, CA" - }, - { - "value": "SACRAMENTO_COUNTY_CA", - "label": "Sacramento County, CA" - }, - { - "value": "SAN_BENITO_COUNTY_CA", - "label": "San Benito County, CA" - }, - { - "value": "SAN_BERNARDINO_COUNTY_CA", - "label": "San Bernardino County, CA" - }, - { - "value": "SAN_DIEGO_COUNTY_CA", - "label": "San Diego County, CA" - }, - { - "value": "SAN_FRANCISCO_COUNTY_CA", - "label": "San Francisco County, CA" - }, - { - "value": "SAN_JOAQUIN_COUNTY_CA", - "label": "San Joaquin County, CA" - }, - { - "value": "SAN_LUIS_OBISPO_COUNTY_CA", - "label": "San Luis Obispo County, CA" - }, - { - "value": "SAN_MATEO_COUNTY_CA", - "label": "San Mateo County, CA" - }, - { - "value": "SANTA_BARBARA_COUNTY_CA", - "label": "Santa Barbara County, CA" - }, - { - "value": "SANTA_CLARA_COUNTY_CA", - "label": "Santa Clara County, CA" - }, - { - "value": "SANTA_CRUZ_COUNTY_CA", - "label": "Santa Cruz County, CA" - }, - { - "value": "SHASTA_COUNTY_CA", - "label": "Shasta County, CA" - }, - { - "value": "SIERRA_COUNTY_CA", - "label": "Sierra County, CA" - }, - { - "value": "SISKIYOU_COUNTY_CA", - "label": "Siskiyou County, CA" - }, - { - "value": "SOLANO_COUNTY_CA", - "label": "Solano County, CA" - }, - { - "value": "SONOMA_COUNTY_CA", - "label": "Sonoma County, CA" - }, - { - "value": "STANISLAUS_COUNTY_CA", - "label": "Stanislaus County, CA" - }, - { - "value": "SUTTER_COUNTY_CA", - "label": "Sutter County, CA" - }, - { - "value": "TEHAMA_COUNTY_CA", - "label": "Tehama County, CA" - }, - { - "value": "TRINITY_COUNTY_CA", - "label": "Trinity County, CA" - }, - { - "value": "TULARE_COUNTY_CA", - "label": "Tulare County, CA" - }, - { - "value": "TUOLUMNE_COUNTY_CA", - "label": "Tuolumne County, CA" - }, - { - "value": "VENTURA_COUNTY_CA", - "label": "Ventura County, CA" - }, - { - "value": "YOLO_COUNTY_CA", - "label": "Yolo County, CA" - }, - { - "value": "YUBA_COUNTY_CA", - "label": "Yuba County, CA" - }, - { - "value": "ADAMS_COUNTY_CO", - "label": "Adams County, CO" - }, - { - "value": "ALAMOSA_COUNTY_CO", - "label": "Alamosa County, CO" - }, - { - "value": "ARAPAHOE_COUNTY_CO", - "label": "Arapahoe County, CO" - }, - { - "value": "ARCHULETA_COUNTY_CO", - "label": "Archuleta County, CO" - }, - { - "value": "BACA_COUNTY_CO", - "label": "Baca County, CO" - }, - { - "value": "BENT_COUNTY_CO", - "label": "Bent County, CO" - }, - { - "value": "BOULDER_COUNTY_CO", - "label": "Boulder County, CO" - }, - { - "value": "BROOMFIELD_COUNTY_CO", - "label": "Broomfield County, CO" - }, - { - "value": "CHAFFEE_COUNTY_CO", - "label": "Chaffee County, CO" - }, - { - "value": "CHEYENNE_COUNTY_CO", - "label": "Cheyenne County, CO" - }, - { - "value": "CLEAR_CREEK_COUNTY_CO", - "label": "Clear Creek County, CO" - }, - { - "value": "CONEJOS_COUNTY_CO", - "label": "Conejos County, CO" - }, - { - "value": "COSTILLA_COUNTY_CO", - "label": "Costilla County, CO" - }, - { - "value": "CROWLEY_COUNTY_CO", - "label": "Crowley County, CO" - }, - { - "value": "CUSTER_COUNTY_CO", - "label": "Custer County, CO" - }, - { - "value": "DELTA_COUNTY_CO", - "label": "Delta County, CO" - }, - { - "value": "DENVER_COUNTY_CO", - "label": "Denver County, CO" - }, - { - "value": "DOLORES_COUNTY_CO", - "label": "Dolores County, CO" - }, - { - "value": "DOUGLAS_COUNTY_CO", - "label": "Douglas County, CO" - }, - { - "value": "EAGLE_COUNTY_CO", - "label": "Eagle County, CO" - }, - { - "value": "EL_PASO_COUNTY_CO", - "label": "El Paso County, CO" - }, - { - "value": "ELBERT_COUNTY_CO", - "label": "Elbert County, CO" - }, - { - "value": "FREMONT_COUNTY_CO", - "label": "Fremont County, CO" - }, - { - "value": "GARFIELD_COUNTY_CO", - "label": "Garfield County, CO" - }, - { - "value": "GILPIN_COUNTY_CO", - "label": "Gilpin County, CO" - }, - { - "value": "GRAND_COUNTY_CO", - "label": "Grand County, CO" - }, - { - "value": "GUNNISON_COUNTY_CO", - "label": "Gunnison County, CO" - }, - { - "value": "HINSDALE_COUNTY_CO", - "label": "Hinsdale County, CO" - }, - { - "value": "HUERFANO_COUNTY_CO", - "label": "Huerfano County, CO" - }, - { - "value": "JACKSON_COUNTY_CO", - "label": "Jackson County, CO" - }, - { - "value": "JEFFERSON_COUNTY_CO", - "label": "Jefferson County, CO" - }, - { - "value": "KIOWA_COUNTY_CO", - "label": "Kiowa County, CO" - }, - { - "value": "KIT_CARSON_COUNTY_CO", - "label": "Kit Carson County, CO" - }, - { - "value": "LA_PLATA_COUNTY_CO", - "label": "La Plata County, CO" - }, - { - "value": "LAKE_COUNTY_CO", - "label": "Lake County, CO" - }, - { - "value": "LARIMER_COUNTY_CO", - "label": "Larimer County, CO" - }, - { - "value": "LAS_ANIMAS_COUNTY_CO", - "label": "Las Animas County, CO" - }, - { - "value": "LINCOLN_COUNTY_CO", - "label": "Lincoln County, CO" - }, - { - "value": "LOGAN_COUNTY_CO", - "label": "Logan County, CO" - }, - { - "value": "MESA_COUNTY_CO", - "label": "Mesa County, CO" - }, - { - "value": "MINERAL_COUNTY_CO", - "label": "Mineral County, CO" - }, - { - "value": "MOFFAT_COUNTY_CO", - "label": "Moffat County, CO" - }, - { - "value": "MONTEZUMA_COUNTY_CO", - "label": "Montezuma County, CO" - }, - { - "value": "MONTROSE_COUNTY_CO", - "label": "Montrose County, CO" - }, - { - "value": "MORGAN_COUNTY_CO", - "label": "Morgan County, CO" - }, - { - "value": "OTERO_COUNTY_CO", - "label": "Otero County, CO" - }, - { - "value": "OURAY_COUNTY_CO", - "label": "Ouray County, CO" - }, - { - "value": "PARK_COUNTY_CO", - "label": "Park County, CO" - }, - { - "value": "PHILLIPS_COUNTY_CO", - "label": "Phillips County, CO" - }, - { - "value": "PITKIN_COUNTY_CO", - "label": "Pitkin County, CO" - }, - { - "value": "PROWERS_COUNTY_CO", - "label": "Prowers County, CO" - }, - { - "value": "PUEBLO_COUNTY_CO", - "label": "Pueblo County, CO" - }, - { - "value": "RIO_ARRIBA_COUNTY_CO", - "label": "Rio Arriba County, CO" - }, - { - "value": "RIO_BLANCO_COUNTY_CO", - "label": "Rio Blanco County, CO" - }, - { - "value": "RIO_GRANDE_COUNTY_CO", - "label": "Rio Grande County, CO" - }, - { - "value": "ROUTT_COUNTY_CO", - "label": "Routt County, CO" - }, - { - "value": "SAGUACHE_COUNTY_CO", - "label": "Saguache County, CO" - }, - { - "value": "SAN_JUAN_COUNTY_CO", - "label": "San Juan County, CO" - }, - { - "value": "SAN_MIGUEL_COUNTY_CO", - "label": "San Miguel County, CO" - }, - { - "value": "SEDGWICK_COUNTY_CO", - "label": "Sedgwick County, CO" - }, - { - "value": "SUMMIT_COUNTY_CO", - "label": "Summit County, CO" - }, - { - "value": "TELLER_COUNTY_CO", - "label": "Teller County, CO" - }, - { - "value": "WASHINGTON_COUNTY_CO", - "label": "Washington County, CO" - }, - { - "value": "WELD_COUNTY_CO", - "label": "Weld County, CO" - }, - { - "value": "YUMA_COUNTY_CO", - "label": "Yuma County, CO" - }, - { - "value": "FAIRFIELD_COUNTY_CT", - "label": "Fairfield County, CT" - }, - { - "value": "HARTFORD_COUNTY_CT", - "label": "Hartford County, CT" - }, - { - "value": "LITCHFIELD_COUNTY_CT", - "label": "Litchfield County, CT" - }, - { - "value": "MIDDLESEX_COUNTY_CT", - "label": "Middlesex County, CT" - }, - { - "value": "NEW_HAVEN_COUNTY_CT", - "label": "New Haven County, CT" - }, - { - "value": "NEW_LONDON_COUNTY_CT", - "label": "New London County, CT" - }, - { - "value": "SUFFOLK_COUNTY_CT", - "label": "Suffolk County, CT" - }, - { - "value": "TOLLAND_COUNTY_CT", - "label": "Tolland County, CT" - }, - { - "value": "WINDHAM_COUNTY_CT", - "label": "Windham County, CT" - }, - { - "value": "DISTRICT_OF_COLUMBIA_DC", - "label": "District of Columbia, DC" - }, - { - "value": "DORCHESTER_COUNTY_DE", - "label": "Dorchester County, DE" - }, - { - "value": "KENT_COUNTY_DE", - "label": "Kent County, DE" - }, - { - "value": "NEW_CASTLE_COUNTY_DE", - "label": "New Castle County, DE" - }, - { - "value": "SUSSEX_COUNTY_DE", - "label": "Sussex County, DE" - }, - { - "value": "ALACHUA_COUNTY_FL", - "label": "Alachua County, FL" - }, - { - "value": "BAKER_COUNTY_FL", - "label": "Baker County, FL" - }, - { - "value": "BAY_COUNTY_FL", - "label": "Bay County, FL" - }, - { - "value": "BRADFORD_COUNTY_FL", - "label": "Bradford County, FL" - }, - { - "value": "BREVARD_COUNTY_FL", - "label": "Brevard County, FL" - }, - { - "value": "BROWARD_COUNTY_FL", - "label": "Broward County, FL" - }, - { - "value": "CALHOUN_COUNTY_FL", - "label": "Calhoun County, FL" - }, - { - "value": "CHARLOTTE_COUNTY_FL", - "label": "Charlotte County, FL" - }, - { - "value": "CITRUS_COUNTY_FL", - "label": "Citrus County, FL" - }, - { - "value": "CLAY_COUNTY_FL", - "label": "Clay County, FL" - }, - { - "value": "COLLIER_COUNTY_FL", - "label": "Collier County, FL" - }, - { - "value": "COLUMBIA_COUNTY_FL", - "label": "Columbia County, FL" - }, - { - "value": "DESOTO_COUNTY_FL", - "label": "DeSoto County, FL" - }, - { - "value": "DIXIE_COUNTY_FL", - "label": "Dixie County, FL" - }, - { - "value": "DUVAL_COUNTY_FL", - "label": "Duval County, FL" - }, - { - "value": "ESCAMBIA_COUNTY_FL", - "label": "Escambia County, FL" - }, - { - "value": "FLAGLER_COUNTY_FL", - "label": "Flagler County, FL" - }, - { - "value": "FRANKLIN_COUNTY_FL", - "label": "Franklin County, FL" - }, - { - "value": "GADSDEN_COUNTY_FL", - "label": "Gadsden County, FL" - }, - { - "value": "GILCHRIST_COUNTY_FL", - "label": "Gilchrist County, FL" - }, - { - "value": "GLADES_COUNTY_FL", - "label": "Glades County, FL" - }, - { - "value": "GULF_COUNTY_FL", - "label": "Gulf County, FL" - }, - { - "value": "HAMILTON_COUNTY_FL", - "label": "Hamilton County, FL" - }, - { - "value": "HARDEE_COUNTY_FL", - "label": "Hardee County, FL" - }, - { - "value": "HENDRY_COUNTY_FL", - "label": "Hendry County, FL" - }, - { - "value": "HERNANDO_COUNTY_FL", - "label": "Hernando County, FL" - }, - { - "value": "HIGHLANDS_COUNTY_FL", - "label": "Highlands County, FL" - }, - { - "value": "HILLSBOROUGH_COUNTY_FL", - "label": "Hillsborough County, FL" - }, - { - "value": "HOLMES_COUNTY_FL", - "label": "Holmes County, FL" - }, - { - "value": "INDIAN_RIVER_COUNTY_FL", - "label": "Indian River County, FL" - }, - { - "value": "JACKSON_COUNTY_FL", - "label": "Jackson County, FL" - }, - { - "value": "JEFFERSON_COUNTY_FL", - "label": "Jefferson County, FL" - }, - { - "value": "LAFAYETTE_COUNTY_FL", - "label": "Lafayette County, FL" - }, - { - "value": "LAKE_COUNTY_FL", - "label": "Lake County, FL" - }, - { - "value": "LEE_COUNTY_FL", - "label": "Lee County, FL" - }, - { - "value": "LEON_COUNTY_FL", - "label": "Leon County, FL" - }, - { - "value": "LEVY_COUNTY_FL", - "label": "Levy County, FL" - }, - { - "value": "LIBERTY_COUNTY_FL", - "label": "Liberty County, FL" - }, - { - "value": "MADISON_COUNTY_FL", - "label": "Madison County, FL" - }, - { - "value": "MANATEE_COUNTY_FL", - "label": "Manatee County, FL" - }, - { - "value": "MARION_COUNTY_FL", - "label": "Marion County, FL" - }, - { - "value": "MARTIN_COUNTY_FL", - "label": "Martin County, FL" - }, - { - "value": "MIAMI_DADE_COUNTY_FL", - "label": "Miami-Dade County, FL" - }, - { - "value": "MONROE_COUNTY_FL", - "label": "Monroe County, FL" - }, - { - "value": "NASSAU_COUNTY_FL", - "label": "Nassau County, FL" - }, - { - "value": "OKALOOSA_COUNTY_FL", - "label": "Okaloosa County, FL" - }, - { - "value": "OKEECHOBEE_COUNTY_FL", - "label": "Okeechobee County, FL" - }, - { - "value": "ORANGE_COUNTY_FL", - "label": "Orange County, FL" - }, - { - "value": "OSCEOLA_COUNTY_FL", - "label": "Osceola County, FL" - }, - { - "value": "PALM_BEACH_COUNTY_FL", - "label": "Palm Beach County, FL" - }, - { - "value": "PASCO_COUNTY_FL", - "label": "Pasco County, FL" - }, - { - "value": "PINELLAS_COUNTY_FL", - "label": "Pinellas County, FL" - }, - { - "value": "POLK_COUNTY_FL", - "label": "Polk County, FL" - }, - { - "value": "PUTNAM_COUNTY_FL", - "label": "Putnam County, FL" - }, - { - "value": "SANTA_ROSA_COUNTY_FL", - "label": "Santa Rosa County, FL" - }, - { - "value": "SARASOTA_COUNTY_FL", - "label": "Sarasota County, FL" - }, - { - "value": "SEMINOLE_COUNTY_FL", - "label": "Seminole County, FL" - }, - { - "value": "ST_JOHNS_COUNTY_FL", - "label": "St. Johns County, FL" - }, - { - "value": "ST_LUCIE_COUNTY_FL", - "label": "St. Lucie County, FL" - }, - { - "value": "SUMTER_COUNTY_FL", - "label": "Sumter County, FL" - }, - { - "value": "SUWANNEE_COUNTY_FL", - "label": "Suwannee County, FL" - }, - { - "value": "TAYLOR_COUNTY_FL", - "label": "Taylor County, FL" - }, - { - "value": "UNION_COUNTY_FL", - "label": "Union County, FL" - }, - { - "value": "VOLUSIA_COUNTY_FL", - "label": "Volusia County, FL" - }, - { - "value": "WAKULLA_COUNTY_FL", - "label": "Wakulla County, FL" - }, - { - "value": "WALTON_COUNTY_FL", - "label": "Walton County, FL" - }, - { - "value": "WASHINGTON_COUNTY_FL", - "label": "Washington County, FL" - }, - { - "value": "APPLING_COUNTY_GA", - "label": "Appling County, GA" - }, - { - "value": "ATKINSON_COUNTY_GA", - "label": "Atkinson County, GA" - }, - { - "value": "BACON_COUNTY_GA", - "label": "Bacon County, GA" - }, - { - "value": "BAKER_COUNTY_GA", - "label": "Baker County, GA" - }, - { - "value": "BALDWIN_COUNTY_GA", - "label": "Baldwin County, GA" - }, - { - "value": "BANKS_COUNTY_GA", - "label": "Banks County, GA" - }, - { - "value": "BARROW_COUNTY_GA", - "label": "Barrow County, GA" - }, - { - "value": "BARTOW_COUNTY_GA", - "label": "Bartow County, GA" - }, - { - "value": "BERRIEN_COUNTY_GA", - "label": "Berrien County, GA" - }, - { - "value": "BIBB_COUNTY_GA", - "label": "Bibb County, GA" - }, - { - "value": "BLECKLEY_COUNTY_GA", - "label": "Bleckley County, GA" - }, - { - "value": "BRANTLEY_COUNTY_GA", - "label": "Brantley County, GA" - }, - { - "value": "BROOKS_COUNTY_GA", - "label": "Brooks County, GA" - }, - { - "value": "BULLOCH_COUNTY_GA", - "label": "Bulloch County, GA" - }, - { - "value": "BURKE_COUNTY_GA", - "label": "Burke County, GA" - }, - { - "value": "BUTTS_COUNTY_GA", - "label": "Butts County, GA" - }, - { - "value": "CALHOUN_COUNTY_GA", - "label": "Calhoun County, GA" - }, - { - "value": "CAMDEN_COUNTY_GA", - "label": "Camden County, GA" - }, - { - "value": "CANDLER_COUNTY_GA", - "label": "Candler County, GA" - }, - { - "value": "CARROLL_COUNTY_GA", - "label": "Carroll County, GA" - }, - { - "value": "CATOOSA_COUNTY_GA", - "label": "Catoosa County, GA" - }, - { - "value": "CHARLTON_COUNTY_GA", - "label": "Charlton County, GA" - }, - { - "value": "CHATHAM_COUNTY_GA", - "label": "Chatham County, GA" - }, - { - "value": "CHATTAHOOCHEE_COUNTY_GA", - "label": "Chattahoochee County, GA" - }, - { - "value": "CHATTOOGA_COUNTY_GA", - "label": "Chattooga County, GA" - }, - { - "value": "CHEROKEE_COUNTY_GA", - "label": "Cherokee County, GA" - }, - { - "value": "CLARKE_COUNTY_GA", - "label": "Clarke County, GA" - }, - { - "value": "CLAY_COUNTY_GA", - "label": "Clay County, GA" - }, - { - "value": "CLAYTON_COUNTY_GA", - "label": "Clayton County, GA" - }, - { - "value": "CLINCH_COUNTY_GA", - "label": "Clinch County, GA" - }, - { - "value": "COBB_COUNTY_GA", - "label": "Cobb County, GA" - }, - { - "value": "COFFEE_COUNTY_GA", - "label": "Coffee County, GA" - }, - { - "value": "COLQUITT_COUNTY_GA", - "label": "Colquitt County, GA" - }, - { - "value": "COLUMBIA_COUNTY_GA", - "label": "Columbia County, GA" - }, - { - "value": "COOK_COUNTY_GA", - "label": "Cook County, GA" - }, - { - "value": "COWETA_COUNTY_GA", - "label": "Coweta County, GA" - }, - { - "value": "CRAWFORD_COUNTY_GA", - "label": "Crawford County, GA" - }, - { - "value": "CRISP_COUNTY_GA", - "label": "Crisp County, GA" - }, - { - "value": "DADE_COUNTY_GA", - "label": "Dade County, GA" - }, - { - "value": "DEKALB_COUNTY_GA", - "label": "DeKalb County, GA" - }, - { - "value": "DECATUR_COUNTY_GA", - "label": "Decatur County, GA" - }, - { - "value": "DODGE_COUNTY_GA", - "label": "Dodge County, GA" - }, - { - "value": "DOOLY_COUNTY_GA", - "label": "Dooly County, GA" - }, - { - "value": "DOUGHERTY_COUNTY_GA", - "label": "Dougherty County, GA" - }, - { - "value": "DOUGLAS_COUNTY_GA", - "label": "Douglas County, GA" - }, - { - "value": "EARLY_COUNTY_GA", - "label": "Early County, GA" - }, - { - "value": "ECHOLS_COUNTY_GA", - "label": "Echols County, GA" - }, - { - "value": "EFFINGHAM_COUNTY_GA", - "label": "Effingham County, GA" - }, - { - "value": "ELBERT_COUNTY_GA", - "label": "Elbert County, GA" - }, - { - "value": "EMANUEL_COUNTY_GA", - "label": "Emanuel County, GA" - }, - { - "value": "EVANS_COUNTY_GA", - "label": "Evans County, GA" - }, - { - "value": "FANNIN_COUNTY_GA", - "label": "Fannin County, GA" - }, - { - "value": "FAYETTE_COUNTY_GA", - "label": "Fayette County, GA" - }, - { - "value": "FLOYD_COUNTY_GA", - "label": "Floyd County, GA" - }, - { - "value": "FORSYTH_COUNTY_GA", - "label": "Forsyth County, GA" - }, - { - "value": "FRANKLIN_COUNTY_GA", - "label": "Franklin County, GA" - }, - { - "value": "FULTON_COUNTY_GA", - "label": "Fulton County, GA" - }, - { - "value": "GILMER_COUNTY_GA", - "label": "Gilmer County, GA" - }, - { - "value": "GLASCOCK_COUNTY_GA", - "label": "Glascock County, GA" - }, - { - "value": "GLYNN_COUNTY_GA", - "label": "Glynn County, GA" - }, - { - "value": "GORDON_COUNTY_GA", - "label": "Gordon County, GA" - }, - { - "value": "GRADY_COUNTY_GA", - "label": "Grady County, GA" - }, - { - "value": "GREENE_COUNTY_GA", - "label": "Greene County, GA" - }, - { - "value": "GWINNETT_COUNTY_GA", - "label": "Gwinnett County, GA" - }, - { - "value": "HABERSHAM_COUNTY_GA", - "label": "Habersham County, GA" - }, - { - "value": "HALL_COUNTY_GA", - "label": "Hall County, GA" - }, - { - "value": "HANCOCK_COUNTY_GA", - "label": "Hancock County, GA" - }, - { - "value": "HARALSON_COUNTY_GA", - "label": "Haralson County, GA" - }, - { - "value": "HARRIS_COUNTY_GA", - "label": "Harris County, GA" - }, - { - "value": "HART_COUNTY_GA", - "label": "Hart County, GA" - }, - { - "value": "HEARD_COUNTY_GA", - "label": "Heard County, GA" - }, - { - "value": "HENRY_COUNTY_GA", - "label": "Henry County, GA" - }, - { - "value": "HOUSTON_COUNTY_GA", - "label": "Houston County, GA" - }, - { - "value": "IRWIN_COUNTY_GA", - "label": "Irwin County, GA" - }, - { - "value": "JACKSON_COUNTY_GA", - "label": "Jackson County, GA" - }, - { - "value": "JASPER_COUNTY_GA", - "label": "Jasper County, GA" - }, - { - "value": "JEFF_DAVIS_COUNTY_GA", - "label": "Jeff Davis County, GA" - }, - { - "value": "JEFFERSON_COUNTY_GA", - "label": "Jefferson County, GA" - }, - { - "value": "JENKINS_COUNTY_GA", - "label": "Jenkins County, GA" - }, - { - "value": "JONES_COUNTY_GA", - "label": "Jones County, GA" - }, - { - "value": "LAMAR_COUNTY_GA", - "label": "Lamar County, GA" - }, - { - "value": "LANIER_COUNTY_GA", - "label": "Lanier County, GA" - }, - { - "value": "LAURENS_COUNTY_GA", - "label": "Laurens County, GA" - }, - { - "value": "LEE_COUNTY_GA", - "label": "Lee County, GA" - }, - { - "value": "LIBERTY_COUNTY_GA", - "label": "Liberty County, GA" - }, - { - "value": "LINCOLN_COUNTY_GA", - "label": "Lincoln County, GA" - }, - { - "value": "LONG_COUNTY_GA", - "label": "Long County, GA" - }, - { - "value": "LOWNDES_COUNTY_GA", - "label": "Lowndes County, GA" - }, - { - "value": "LUMPKIN_COUNTY_GA", - "label": "Lumpkin County, GA" - }, - { - "value": "MACON_COUNTY_GA", - "label": "Macon County, GA" - }, - { - "value": "MADISON_COUNTY_GA", - "label": "Madison County, GA" - }, - { - "value": "MARION_COUNTY_GA", - "label": "Marion County, GA" - }, - { - "value": "MCDUFFIE_COUNTY_GA", - "label": "McDuffie County, GA" - }, - { - "value": "MCINTOSH_COUNTY_GA", - "label": "McIntosh County, GA" - }, - { - "value": "MERIWETHER_COUNTY_GA", - "label": "Meriwether County, GA" - }, - { - "value": "MILLER_COUNTY_GA", - "label": "Miller County, GA" - }, - { - "value": "MITCHELL_COUNTY_GA", - "label": "Mitchell County, GA" - }, - { - "value": "MONROE_COUNTY_GA", - "label": "Monroe County, GA" - }, - { - "value": "MONTGOMERY_COUNTY_GA", - "label": "Montgomery County, GA" - }, - { - "value": "MORGAN_COUNTY_GA", - "label": "Morgan County, GA" - }, - { - "value": "MURRAY_COUNTY_GA", - "label": "Murray County, GA" - }, - { - "value": "MUSCOGEE_COUNTY_GA", - "label": "Muscogee County, GA" - }, - { - "value": "NEWTON_COUNTY_GA", - "label": "Newton County, GA" - }, - { - "value": "OCONEE_COUNTY_GA", - "label": "Oconee County, GA" - }, - { - "value": "OGLETHORPE_COUNTY_GA", - "label": "Oglethorpe County, GA" - }, - { - "value": "PAULDING_COUNTY_GA", - "label": "Paulding County, GA" - }, - { - "value": "PEACH_COUNTY_GA", - "label": "Peach County, GA" - }, - { - "value": "PICKENS_COUNTY_GA", - "label": "Pickens County, GA" - }, - { - "value": "PIERCE_COUNTY_GA", - "label": "Pierce County, GA" - }, - { - "value": "PIKE_COUNTY_GA", - "label": "Pike County, GA" - }, - { - "value": "POLK_COUNTY_GA", - "label": "Polk County, GA" - }, - { - "value": "PULASKI_COUNTY_GA", - "label": "Pulaski County, GA" - }, - { - "value": "PUTNAM_COUNTY_GA", - "label": "Putnam County, GA" - }, - { - "value": "QUITMAN_COUNTY_GA", - "label": "Quitman County, GA" - }, - { - "value": "RABUN_COUNTY_GA", - "label": "Rabun County, GA" - }, - { - "value": "RANDOLPH_COUNTY_GA", - "label": "Randolph County, GA" - }, - { - "value": "RICHMOND_COUNTY_GA", - "label": "Richmond County, GA" - }, - { - "value": "ROCKDALE_COUNTY_GA", - "label": "Rockdale County, GA" - }, - { - "value": "SCHLEY_COUNTY_GA", - "label": "Schley County, GA" - }, - { - "value": "SCREVEN_COUNTY_GA", - "label": "Screven County, GA" - }, - { - "value": "SEMINOLE_COUNTY_GA", - "label": "Seminole County, GA" - }, - { - "value": "SPALDING_COUNTY_GA", - "label": "Spalding County, GA" - }, - { - "value": "STEPHENS_COUNTY_GA", - "label": "Stephens County, GA" - }, - { - "value": "STEWART_COUNTY_GA", - "label": "Stewart County, GA" - }, - { - "value": "SUMTER_COUNTY_GA", - "label": "Sumter County, GA" - }, - { - "value": "TALBOT_COUNTY_GA", - "label": "Talbot County, GA" - }, - { - "value": "TALIAFERRO_COUNTY_GA", - "label": "Taliaferro County, GA" - }, - { - "value": "TATTNALL_COUNTY_GA", - "label": "Tattnall County, GA" - }, - { - "value": "TAYLOR_COUNTY_GA", - "label": "Taylor County, GA" - }, - { - "value": "TELFAIR_COUNTY_GA", - "label": "Telfair County, GA" - }, - { - "value": "TERRELL_COUNTY_GA", - "label": "Terrell County, GA" - }, - { - "value": "THOMAS_COUNTY_GA", - "label": "Thomas County, GA" - }, - { - "value": "TIFT_COUNTY_GA", - "label": "Tift County, GA" - }, - { - "value": "TOWNS_COUNTY_GA", - "label": "Towns County, GA" - }, - { - "value": "TREUTLEN_COUNTY_GA", - "label": "Treutlen County, GA" - }, - { - "value": "TROUP_COUNTY_GA", - "label": "Troup County, GA" - }, - { - "value": "TURNER_COUNTY_GA", - "label": "Turner County, GA" - }, - { - "value": "TWIGGS_COUNTY_GA", - "label": "Twiggs County, GA" - }, - { - "value": "UNION_COUNTY_GA", - "label": "Union County, GA" - }, - { - "value": "UPSON_COUNTY_GA", - "label": "Upson County, GA" - }, - { - "value": "WALKER_COUNTY_GA", - "label": "Walker County, GA" - }, - { - "value": "WALTON_COUNTY_GA", - "label": "Walton County, GA" - }, - { - "value": "WARE_COUNTY_GA", - "label": "Ware County, GA" - }, - { - "value": "WARREN_COUNTY_GA", - "label": "Warren County, GA" - }, - { - "value": "WASHINGTON_COUNTY_GA", - "label": "Washington County, GA" - }, - { - "value": "WAYNE_COUNTY_GA", - "label": "Wayne County, GA" - }, - { - "value": "WEBSTER_COUNTY_GA", - "label": "Webster County, GA" - }, - { - "value": "WHEELER_COUNTY_GA", - "label": "Wheeler County, GA" - }, - { - "value": "WHITE_COUNTY_GA", - "label": "White County, GA" - }, - { - "value": "WHITFIELD_COUNTY_GA", - "label": "Whitfield County, GA" - }, - { - "value": "WILCOX_COUNTY_GA", - "label": "Wilcox County, GA" - }, - { - "value": "WILKES_COUNTY_GA", - "label": "Wilkes County, GA" - }, - { - "value": "WILKINSON_COUNTY_GA", - "label": "Wilkinson County, GA" - }, - { - "value": "WORTH_COUNTY_GA", - "label": "Worth County, GA" - }, - { - "value": "HAWAII_COUNTY_HI", - "label": "Hawaii County, HI" - }, - { - "value": "HONOLULU_COUNTY_HI", - "label": "Honolulu County, HI" - }, - { - "value": "KALAWAO_COUNTY_HI", - "label": "Kalawao County, HI" - }, - { - "value": "KAUAI_COUNTY_HI", - "label": "Kauai County, HI" - }, - { - "value": "MAUI_COUNTY_HI", - "label": "Maui County, HI" - }, - { - "value": "ADAIR_COUNTY_IA", - "label": "Adair County, IA" - }, - { - "value": "ADAMS_COUNTY_IA", - "label": "Adams County, IA" - }, - { - "value": "ALLAMAKEE_COUNTY_IA", - "label": "Allamakee County, IA" - }, - { - "value": "APPANOOSE_COUNTY_IA", - "label": "Appanoose County, IA" - }, - { - "value": "ATCHISON_COUNTY_IA", - "label": "Atchison County, IA" - }, - { - "value": "AUDUBON_COUNTY_IA", - "label": "Audubon County, IA" - }, - { - "value": "BENTON_COUNTY_IA", - "label": "Benton County, IA" - }, - { - "value": "BLACK_HAWK_COUNTY_IA", - "label": "Black Hawk County, IA" - }, - { - "value": "BOONE_COUNTY_IA", - "label": "Boone County, IA" - }, - { - "value": "BREMER_COUNTY_IA", - "label": "Bremer County, IA" - }, - { - "value": "BUCHANAN_COUNTY_IA", - "label": "Buchanan County, IA" - }, - { - "value": "BUENA_VISTA_COUNTY_IA", - "label": "Buena Vista County, IA" - }, - { - "value": "BUTLER_COUNTY_IA", - "label": "Butler County, IA" - }, - { - "value": "CALHOUN_COUNTY_IA", - "label": "Calhoun County, IA" - }, - { - "value": "CARROLL_COUNTY_IA", - "label": "Carroll County, IA" - }, - { - "value": "CASS_COUNTY_IA", - "label": "Cass County, IA" - }, - { - "value": "CEDAR_COUNTY_IA", - "label": "Cedar County, IA" - }, - { - "value": "CERRO_GORDO_COUNTY_IA", - "label": "Cerro Gordo County, IA" - }, - { - "value": "CHEROKEE_COUNTY_IA", - "label": "Cherokee County, IA" - }, - { - "value": "CHICKASAW_COUNTY_IA", - "label": "Chickasaw County, IA" - }, - { - "value": "CLARK_COUNTY_IA", - "label": "Clark County, IA" - }, - { - "value": "CLARKE_COUNTY_IA", - "label": "Clarke County, IA" - }, - { - "value": "CLAY_COUNTY_IA", - "label": "Clay County, IA" - }, - { - "value": "CLAYTON_COUNTY_IA", - "label": "Clayton County, IA" - }, - { - "value": "CLINTON_COUNTY_IA", - "label": "Clinton County, IA" - }, - { - "value": "CRAWFORD_COUNTY_IA", - "label": "Crawford County, IA" - }, - { - "value": "DALLAS_COUNTY_IA", - "label": "Dallas County, IA" - }, - { - "value": "DAVIS_COUNTY_IA", - "label": "Davis County, IA" - }, - { - "value": "DECATUR_COUNTY_IA", - "label": "Decatur County, IA" - }, - { - "value": "DELAWARE_COUNTY_IA", - "label": "Delaware County, IA" - }, - { - "value": "DES_MOINES_COUNTY_IA", - "label": "Des Moines County, IA" - }, - { - "value": "DICKINSON_COUNTY_IA", - "label": "Dickinson County, IA" - }, - { - "value": "DUBUQUE_COUNTY_IA", - "label": "Dubuque County, IA" - }, - { - "value": "EMMET_COUNTY_IA", - "label": "Emmet County, IA" - }, - { - "value": "FAYETTE_COUNTY_IA", - "label": "Fayette County, IA" - }, - { - "value": "FLOYD_COUNTY_IA", - "label": "Floyd County, IA" - }, - { - "value": "FRANKLIN_COUNTY_IA", - "label": "Franklin County, IA" - }, - { - "value": "FREMONT_COUNTY_IA", - "label": "Fremont County, IA" - }, - { - "value": "GREENE_COUNTY_IA", - "label": "Greene County, IA" - }, - { - "value": "GRUNDY_COUNTY_IA", - "label": "Grundy County, IA" - }, - { - "value": "GUTHRIE_COUNTY_IA", - "label": "Guthrie County, IA" - }, - { - "value": "HAMILTON_COUNTY_IA", - "label": "Hamilton County, IA" - }, - { - "value": "HANCOCK_COUNTY_IA", - "label": "Hancock County, IA" - }, - { - "value": "HARDIN_COUNTY_IA", - "label": "Hardin County, IA" - }, - { - "value": "HARRISON_COUNTY_IA", - "label": "Harrison County, IA" - }, - { - "value": "HENRY_COUNTY_IA", - "label": "Henry County, IA" - }, - { - "value": "HOWARD_COUNTY_IA", - "label": "Howard County, IA" - }, - { - "value": "HUMBOLDT_COUNTY_IA", - "label": "Humboldt County, IA" - }, - { - "value": "IDA_COUNTY_IA", - "label": "Ida County, IA" - }, - { - "value": "IOWA_COUNTY_IA", - "label": "Iowa County, IA" - }, - { - "value": "JACKSON_COUNTY_IA", - "label": "Jackson County, IA" - }, - { - "value": "JASPER_COUNTY_IA", - "label": "Jasper County, IA" - }, - { - "value": "JEFFERSON_COUNTY_IA", - "label": "Jefferson County, IA" - }, - { - "value": "JOHNSON_COUNTY_IA", - "label": "Johnson County, IA" - }, - { - "value": "JONES_COUNTY_IA", - "label": "Jones County, IA" - }, - { - "value": "KEOKUK_COUNTY_IA", - "label": "Keokuk County, IA" - }, - { - "value": "KOSSUTH_COUNTY_IA", - "label": "Kossuth County, IA" - }, - { - "value": "LEE_COUNTY_IA", - "label": "Lee County, IA" - }, - { - "value": "LINN_COUNTY_IA", - "label": "Linn County, IA" - }, - { - "value": "LOUISA_COUNTY_IA", - "label": "Louisa County, IA" - }, - { - "value": "LUCAS_COUNTY_IA", - "label": "Lucas County, IA" - }, - { - "value": "LYON_COUNTY_IA", - "label": "Lyon County, IA" - }, - { - "value": "MADISON_COUNTY_IA", - "label": "Madison County, IA" - }, - { - "value": "MAHASKA_COUNTY_IA", - "label": "Mahaska County, IA" - }, - { - "value": "MARION_COUNTY_IA", - "label": "Marion County, IA" - }, - { - "value": "MARSHALL_COUNTY_IA", - "label": "Marshall County, IA" - }, - { - "value": "MILLS_COUNTY_IA", - "label": "Mills County, IA" - }, - { - "value": "MITCHELL_COUNTY_IA", - "label": "Mitchell County, IA" - }, - { - "value": "MONONA_COUNTY_IA", - "label": "Monona County, IA" - }, - { - "value": "MONROE_COUNTY_IA", - "label": "Monroe County, IA" - }, - { - "value": "MONTGOMERY_COUNTY_IA", - "label": "Montgomery County, IA" - }, - { - "value": "MUSCATINE_COUNTY_IA", - "label": "Muscatine County, IA" - }, - { - "value": "O_BRIEN_COUNTY_IA", - "label": "O'Brien County, IA" - }, - { - "value": "OSCEOLA_COUNTY_IA", - "label": "Osceola County, IA" - }, - { - "value": "PAGE_COUNTY_IA", - "label": "Page County, IA" - }, - { - "value": "PALO_ALTO_COUNTY_IA", - "label": "Palo Alto County, IA" - }, - { - "value": "PLYMOUTH_COUNTY_IA", - "label": "Plymouth County, IA" - }, - { - "value": "POCAHONTAS_COUNTY_IA", - "label": "Pocahontas County, IA" - }, - { - "value": "POLK_COUNTY_IA", - "label": "Polk County, IA" - }, - { - "value": "POTTAWATTAMIE_COUNTY_IA", - "label": "Pottawattamie County, IA" - }, - { - "value": "POWESHIEK_COUNTY_IA", - "label": "Poweshiek County, IA" - }, - { - "value": "RINGGOLD_COUNTY_IA", - "label": "Ringgold County, IA" - }, - { - "value": "SAC_COUNTY_IA", - "label": "Sac County, IA" - }, - { - "value": "SCOTLAND_COUNTY_IA", - "label": "Scotland County, IA" - }, - { - "value": "SCOTT_COUNTY_IA", - "label": "Scott County, IA" - }, - { - "value": "SHELBY_COUNTY_IA", - "label": "Shelby County, IA" - }, - { - "value": "SIOUX_COUNTY_IA", - "label": "Sioux County, IA" - }, - { - "value": "STORY_COUNTY_IA", - "label": "Story County, IA" - }, - { - "value": "TAMA_COUNTY_IA", - "label": "Tama County, IA" - }, - { - "value": "TAYLOR_COUNTY_IA", - "label": "Taylor County, IA" - }, - { - "value": "UNION_COUNTY_IA", - "label": "Union County, IA" - }, - { - "value": "VAN_BUREN_COUNTY_IA", - "label": "Van Buren County, IA" - }, - { - "value": "WAPELLO_COUNTY_IA", - "label": "Wapello County, IA" - }, - { - "value": "WARREN_COUNTY_IA", - "label": "Warren County, IA" - }, - { - "value": "WASHINGTON_COUNTY_IA", - "label": "Washington County, IA" - }, - { - "value": "WAYNE_COUNTY_IA", - "label": "Wayne County, IA" - }, - { - "value": "WEBSTER_COUNTY_IA", - "label": "Webster County, IA" - }, - { - "value": "WINNEBAGO_COUNTY_IA", - "label": "Winnebago County, IA" - }, - { - "value": "WINNESHIEK_COUNTY_IA", - "label": "Winneshiek County, IA" - }, - { - "value": "WOODBURY_COUNTY_IA", - "label": "Woodbury County, IA" - }, - { - "value": "WORTH_COUNTY_IA", - "label": "Worth County, IA" - }, - { - "value": "WRIGHT_COUNTY_IA", - "label": "Wright County, IA" - }, - { - "value": "ADA_COUNTY_ID", - "label": "Ada County, ID" - }, - { - "value": "ADAMS_COUNTY_ID", - "label": "Adams County, ID" - }, - { - "value": "BANNOCK_COUNTY_ID", - "label": "Bannock County, ID" - }, - { - "value": "BEAR_LAKE_COUNTY_ID", - "label": "Bear Lake County, ID" - }, - { - "value": "BENEWAH_COUNTY_ID", - "label": "Benewah County, ID" - }, - { - "value": "BINGHAM_COUNTY_ID", - "label": "Bingham County, ID" - }, - { - "value": "BLAINE_COUNTY_ID", - "label": "Blaine County, ID" - }, - { - "value": "BOISE_COUNTY_ID", - "label": "Boise County, ID" - }, - { - "value": "BONNER_COUNTY_ID", - "label": "Bonner County, ID" - }, - { - "value": "BONNEVILLE_COUNTY_ID", - "label": "Bonneville County, ID" - }, - { - "value": "BOUNDARY_COUNTY_ID", - "label": "Boundary County, ID" - }, - { - "value": "BUTTE_COUNTY_ID", - "label": "Butte County, ID" - }, - { - "value": "CAMAS_COUNTY_ID", - "label": "Camas County, ID" - }, - { - "value": "CANYON_COUNTY_ID", - "label": "Canyon County, ID" - }, - { - "value": "CARIBOU_COUNTY_ID", - "label": "Caribou County, ID" - }, - { - "value": "CASSIA_COUNTY_ID", - "label": "Cassia County, ID" - }, - { - "value": "CLARK_COUNTY_ID", - "label": "Clark County, ID" - }, - { - "value": "CLEARWATER_COUNTY_ID", - "label": "Clearwater County, ID" - }, - { - "value": "CUSTER_COUNTY_ID", - "label": "Custer County, ID" - }, - { - "value": "ELMORE_COUNTY_ID", - "label": "Elmore County, ID" - }, - { - "value": "FRANKLIN_COUNTY_ID", - "label": "Franklin County, ID" - }, - { - "value": "FREMONT_COUNTY_ID", - "label": "Fremont County, ID" - }, - { - "value": "GEM_COUNTY_ID", - "label": "Gem County, ID" - }, - { - "value": "GOODING_COUNTY_ID", - "label": "Gooding County, ID" - }, - { - "value": "IDAHO_COUNTY_ID", - "label": "Idaho County, ID" - }, - { - "value": "JEFFERSON_COUNTY_ID", - "label": "Jefferson County, ID" - }, - { - "value": "JEROME_COUNTY_ID", - "label": "Jerome County, ID" - }, - { - "value": "KOOTENAI_COUNTY_ID", - "label": "Kootenai County, ID" - }, - { - "value": "LATAH_COUNTY_ID", - "label": "Latah County, ID" - }, - { - "value": "LEMHI_COUNTY_ID", - "label": "Lemhi County, ID" - }, - { - "value": "LEWIS_COUNTY_ID", - "label": "Lewis County, ID" - }, - { - "value": "LINCOLN_COUNTY_ID", - "label": "Lincoln County, ID" - }, - { - "value": "MADISON_COUNTY_ID", - "label": "Madison County, ID" - }, - { - "value": "MINIDOKA_COUNTY_ID", - "label": "Minidoka County, ID" - }, - { - "value": "NEZ_PERCE_COUNTY_ID", - "label": "Nez Perce County, ID" - }, - { - "value": "ONEIDA_COUNTY_ID", - "label": "Oneida County, ID" - }, - { - "value": "OWYHEE_COUNTY_ID", - "label": "Owyhee County, ID" - }, - { - "value": "PAYETTE_COUNTY_ID", - "label": "Payette County, ID" - }, - { - "value": "PEND_OREILLE_COUNTY_ID", - "label": "Pend Oreille County, ID" - }, - { - "value": "POWER_COUNTY_ID", - "label": "Power County, ID" - }, - { - "value": "SHOSHONE_COUNTY_ID", - "label": "Shoshone County, ID" - }, - { - "value": "TETON_COUNTY_ID", - "label": "Teton County, ID" - }, - { - "value": "TWIN_FALLS_COUNTY_ID", - "label": "Twin Falls County, ID" - }, - { - "value": "VALLEY_COUNTY_ID", - "label": "Valley County, ID" - }, - { - "value": "WASHINGTON_COUNTY_ID", - "label": "Washington County, ID" - }, - { - "value": "ADAMS_COUNTY_IL", - "label": "Adams County, IL" - }, - { - "value": "ALEXANDER_COUNTY_IL", - "label": "Alexander County, IL" - }, - { - "value": "BOND_COUNTY_IL", - "label": "Bond County, IL" - }, - { - "value": "BOONE_COUNTY_IL", - "label": "Boone County, IL" - }, - { - "value": "BROWN_COUNTY_IL", - "label": "Brown County, IL" - }, - { - "value": "BUREAU_COUNTY_IL", - "label": "Bureau County, IL" - }, - { - "value": "CALHOUN_COUNTY_IL", - "label": "Calhoun County, IL" - }, - { - "value": "CARROLL_COUNTY_IL", - "label": "Carroll County, IL" - }, - { - "value": "CASS_COUNTY_IL", - "label": "Cass County, IL" - }, - { - "value": "CHAMPAIGN_COUNTY_IL", - "label": "Champaign County, IL" - }, - { - "value": "CHRISTIAN_COUNTY_IL", - "label": "Christian County, IL" - }, - { - "value": "CLARK_COUNTY_IL", - "label": "Clark County, IL" - }, - { - "value": "CLAY_COUNTY_IL", - "label": "Clay County, IL" - }, - { - "value": "CLINTON_COUNTY_IL", - "label": "Clinton County, IL" - }, - { - "value": "COLES_COUNTY_IL", - "label": "Coles County, IL" - }, - { - "value": "COOK_COUNTY_IL", - "label": "Cook County, IL" - }, - { - "value": "CRAWFORD_COUNTY_IL", - "label": "Crawford County, IL" - }, - { - "value": "CUMBERLAND_COUNTY_IL", - "label": "Cumberland County, IL" - }, - { - "value": "DE_WITT_COUNTY_IL", - "label": "De Witt County, IL" - }, - { - "value": "DEKALB_COUNTY_IL", - "label": "DeKalb County, IL" - }, - { - "value": "DOUGLAS_COUNTY_IL", - "label": "Douglas County, IL" - }, - { - "value": "DUPAGE_COUNTY_IL", - "label": "DuPage County, IL" - }, - { - "value": "EDGAR_COUNTY_IL", - "label": "Edgar County, IL" - }, - { - "value": "EDWARDS_COUNTY_IL", - "label": "Edwards County, IL" - }, - { - "value": "EFFINGHAM_COUNTY_IL", - "label": "Effingham County, IL" - }, - { - "value": "FAYETTE_COUNTY_IL", - "label": "Fayette County, IL" - }, - { - "value": "FORD_COUNTY_IL", - "label": "Ford County, IL" - }, - { - "value": "FRANKLIN_COUNTY_IL", - "label": "Franklin County, IL" - }, - { - "value": "FULTON_COUNTY_IL", - "label": "Fulton County, IL" - }, - { - "value": "GALLATIN_COUNTY_IL", - "label": "Gallatin County, IL" - }, - { - "value": "GREENE_COUNTY_IL", - "label": "Greene County, IL" - }, - { - "value": "GRUNDY_COUNTY_IL", - "label": "Grundy County, IL" - }, - { - "value": "HAMILTON_COUNTY_IL", - "label": "Hamilton County, IL" - }, - { - "value": "HANCOCK_COUNTY_IL", - "label": "Hancock County, IL" - }, - { - "value": "HARDIN_COUNTY_IL", - "label": "Hardin County, IL" - }, - { - "value": "HENDERSON_COUNTY_IL", - "label": "Henderson County, IL" - }, - { - "value": "HENRY_COUNTY_IL", - "label": "Henry County, IL" - }, - { - "value": "IROQUOIS_COUNTY_IL", - "label": "Iroquois County, IL" - }, - { - "value": "JACKSON_COUNTY_IL", - "label": "Jackson County, IL" - }, - { - "value": "JASPER_COUNTY_IL", - "label": "Jasper County, IL" - }, - { - "value": "JEFFERSON_COUNTY_IL", - "label": "Jefferson County, IL" - }, - { - "value": "JERSEY_COUNTY_IL", - "label": "Jersey County, IL" - }, - { - "value": "JO_DAVIESS_COUNTY_IL", - "label": "Jo Daviess County, IL" - }, - { - "value": "JOHNSON_COUNTY_IL", - "label": "Johnson County, IL" - }, - { - "value": "KANE_COUNTY_IL", - "label": "Kane County, IL" - }, - { - "value": "KANKAKEE_COUNTY_IL", - "label": "Kankakee County, IL" - }, - { - "value": "KENDALL_COUNTY_IL", - "label": "Kendall County, IL" - }, - { - "value": "KNOX_COUNTY_IL", - "label": "Knox County, IL" - }, - { - "value": "LASALLE_COUNTY_IL", - "label": "LaSalle County, IL" - }, - { - "value": "LAKE_COUNTY_IL", - "label": "Lake County, IL" - }, - { - "value": "LAWRENCE_COUNTY_IL", - "label": "Lawrence County, IL" - }, - { - "value": "LEE_COUNTY_IL", - "label": "Lee County, IL" - }, - { - "value": "LIVINGSTON_COUNTY_IL", - "label": "Livingston County, IL" - }, - { - "value": "LOGAN_COUNTY_IL", - "label": "Logan County, IL" - }, - { - "value": "MACON_COUNTY_IL", - "label": "Macon County, IL" - }, - { - "value": "MACOUPIN_COUNTY_IL", - "label": "Macoupin County, IL" - }, - { - "value": "MADISON_COUNTY_IL", - "label": "Madison County, IL" - }, - { - "value": "MARION_COUNTY_IL", - "label": "Marion County, IL" - }, - { - "value": "MARSHALL_COUNTY_IL", - "label": "Marshall County, IL" - }, - { - "value": "MASON_COUNTY_IL", - "label": "Mason County, IL" - }, - { - "value": "MASSAC_COUNTY_IL", - "label": "Massac County, IL" - }, - { - "value": "MCDONOUGH_COUNTY_IL", - "label": "McDonough County, IL" - }, - { - "value": "MCHENRY_COUNTY_IL", - "label": "McHenry County, IL" - }, - { - "value": "MCLEAN_COUNTY_IL", - "label": "McLean County, IL" - }, - { - "value": "MENARD_COUNTY_IL", - "label": "Menard County, IL" - }, - { - "value": "MERCER_COUNTY_IL", - "label": "Mercer County, IL" - }, - { - "value": "MONROE_COUNTY_IL", - "label": "Monroe County, IL" - }, - { - "value": "MONTGOMERY_COUNTY_IL", - "label": "Montgomery County, IL" - }, - { - "value": "MORGAN_COUNTY_IL", - "label": "Morgan County, IL" - }, - { - "value": "MOULTRIE_COUNTY_IL", - "label": "Moultrie County, IL" - }, - { - "value": "OGLE_COUNTY_IL", - "label": "Ogle County, IL" - }, - { - "value": "PEORIA_COUNTY_IL", - "label": "Peoria County, IL" - }, - { - "value": "PERRY_COUNTY_IL", - "label": "Perry County, IL" - }, - { - "value": "PIATT_COUNTY_IL", - "label": "Piatt County, IL" - }, - { - "value": "PIKE_COUNTY_IL", - "label": "Pike County, IL" - }, - { - "value": "POPE_COUNTY_IL", - "label": "Pope County, IL" - }, - { - "value": "PULASKI_COUNTY_IL", - "label": "Pulaski County, IL" - }, - { - "value": "PUTNAM_COUNTY_IL", - "label": "Putnam County, IL" - }, - { - "value": "RANDOLPH_COUNTY_IL", - "label": "Randolph County, IL" - }, - { - "value": "RICHLAND_COUNTY_IL", - "label": "Richland County, IL" - }, - { - "value": "ROCK_ISLAND_COUNTY_IL", - "label": "Rock Island County, IL" - }, - { - "value": "SALINE_COUNTY_IL", - "label": "Saline County, IL" - }, - { - "value": "SANGAMON_COUNTY_IL", - "label": "Sangamon County, IL" - }, - { - "value": "SCHUYLER_COUNTY_IL", - "label": "Schuyler County, IL" - }, - { - "value": "SCOTT_COUNTY_IL", - "label": "Scott County, IL" - }, - { - "value": "SHELBY_COUNTY_IL", - "label": "Shelby County, IL" - }, - { - "value": "ST_CLAIR_COUNTY_IL", - "label": "St. Clair County, IL" - }, - { - "value": "STARK_COUNTY_IL", - "label": "Stark County, IL" - }, - { - "value": "STEPHENSON_COUNTY_IL", - "label": "Stephenson County, IL" - }, - { - "value": "TAZEWELL_COUNTY_IL", - "label": "Tazewell County, IL" - }, - { - "value": "UNION_COUNTY_IL", - "label": "Union County, IL" - }, - { - "value": "VERMILION_COUNTY_IL", - "label": "Vermilion County, IL" - }, - { - "value": "WABASH_COUNTY_IL", - "label": "Wabash County, IL" - }, - { - "value": "WARREN_COUNTY_IL", - "label": "Warren County, IL" - }, - { - "value": "WASHINGTON_COUNTY_IL", - "label": "Washington County, IL" - }, - { - "value": "WAYNE_COUNTY_IL", - "label": "Wayne County, IL" - }, - { - "value": "WHITE_COUNTY_IL", - "label": "White County, IL" - }, - { - "value": "WHITESIDE_COUNTY_IL", - "label": "Whiteside County, IL" - }, - { - "value": "WILL_COUNTY_IL", - "label": "Will County, IL" - }, - { - "value": "WILLIAMSON_COUNTY_IL", - "label": "Williamson County, IL" - }, - { - "value": "WINNEBAGO_COUNTY_IL", - "label": "Winnebago County, IL" - }, - { - "value": "WOODFORD_COUNTY_IL", - "label": "Woodford County, IL" - }, - { - "value": "ADAMS_COUNTY_IN", - "label": "Adams County, IN" - }, - { - "value": "ALLEN_COUNTY_IN", - "label": "Allen County, IN" - }, - { - "value": "BARTHOLOMEW_COUNTY_IN", - "label": "Bartholomew County, IN" - }, - { - "value": "BENTON_COUNTY_IN", - "label": "Benton County, IN" - }, - { - "value": "BLACKFORD_COUNTY_IN", - "label": "Blackford County, IN" - }, - { - "value": "BOONE_COUNTY_IN", - "label": "Boone County, IN" - }, - { - "value": "BROWN_COUNTY_IN", - "label": "Brown County, IN" - }, - { - "value": "CARROLL_COUNTY_IN", - "label": "Carroll County, IN" - }, - { - "value": "CASS_COUNTY_IN", - "label": "Cass County, IN" - }, - { - "value": "CLARK_COUNTY_IN", - "label": "Clark County, IN" - }, - { - "value": "CLAY_COUNTY_IN", - "label": "Clay County, IN" - }, - { - "value": "CLINTON_COUNTY_IN", - "label": "Clinton County, IN" - }, - { - "value": "CRAWFORD_COUNTY_IN", - "label": "Crawford County, IN" - }, - { - "value": "DAVIESS_COUNTY_IN", - "label": "Daviess County, IN" - }, - { - "value": "DEKALB_COUNTY_IN", - "label": "DeKalb County, IN" - }, - { - "value": "DEARBORN_COUNTY_IN", - "label": "Dearborn County, IN" - }, - { - "value": "DECATUR_COUNTY_IN", - "label": "Decatur County, IN" - }, - { - "value": "DELAWARE_COUNTY_IN", - "label": "Delaware County, IN" - }, - { - "value": "DUBOIS_COUNTY_IN", - "label": "Dubois County, IN" - }, - { - "value": "ELKHART_COUNTY_IN", - "label": "Elkhart County, IN" - }, - { - "value": "FAYETTE_COUNTY_IN", - "label": "Fayette County, IN" - }, - { - "value": "FLOYD_COUNTY_IN", - "label": "Floyd County, IN" - }, - { - "value": "FOUNTAIN_COUNTY_IN", - "label": "Fountain County, IN" - }, - { - "value": "FRANKLIN_COUNTY_IN", - "label": "Franklin County, IN" - }, - { - "value": "FULTON_COUNTY_IN", - "label": "Fulton County, IN" - }, - { - "value": "GIBSON_COUNTY_IN", - "label": "Gibson County, IN" - }, - { - "value": "GRANT_COUNTY_IN", - "label": "Grant County, IN" - }, - { - "value": "GREENE_COUNTY_IN", - "label": "Greene County, IN" - }, - { - "value": "HAMILTON_COUNTY_IN", - "label": "Hamilton County, IN" - }, - { - "value": "HANCOCK_COUNTY_IN", - "label": "Hancock County, IN" - }, - { - "value": "HARRISON_COUNTY_IN", - "label": "Harrison County, IN" - }, - { - "value": "HENDRICKS_COUNTY_IN", - "label": "Hendricks County, IN" - }, - { - "value": "HENRY_COUNTY_IN", - "label": "Henry County, IN" - }, - { - "value": "HOWARD_COUNTY_IN", - "label": "Howard County, IN" - }, - { - "value": "HUNTINGTON_COUNTY_IN", - "label": "Huntington County, IN" - }, - { - "value": "JACKSON_COUNTY_IN", - "label": "Jackson County, IN" - }, - { - "value": "JASPER_COUNTY_IN", - "label": "Jasper County, IN" - }, - { - "value": "JAY_COUNTY_IN", - "label": "Jay County, IN" - }, - { - "value": "JEFFERSON_COUNTY_IN", - "label": "Jefferson County, IN" - }, - { - "value": "JENNINGS_COUNTY_IN", - "label": "Jennings County, IN" - }, - { - "value": "JOHNSON_COUNTY_IN", - "label": "Johnson County, IN" - }, - { - "value": "KNOX_COUNTY_IN", - "label": "Knox County, IN" - }, - { - "value": "KOSCIUSKO_COUNTY_IN", - "label": "Kosciusko County, IN" - }, - { - "value": "LAGRANGE_COUNTY_IN", - "label": "LaGrange County, IN" - }, - { - "value": "LAPORTE_COUNTY_IN", - "label": "LaPorte County, IN" - }, - { - "value": "LAKE_COUNTY_IN", - "label": "Lake County, IN" - }, - { - "value": "LAWRENCE_COUNTY_IN", - "label": "Lawrence County, IN" - }, - { - "value": "MADISON_COUNTY_IN", - "label": "Madison County, IN" - }, - { - "value": "MARION_COUNTY_IN", - "label": "Marion County, IN" - }, - { - "value": "MARSHALL_COUNTY_IN", - "label": "Marshall County, IN" - }, - { - "value": "MARTIN_COUNTY_IN", - "label": "Martin County, IN" - }, - { - "value": "MIAMI_COUNTY_IN", - "label": "Miami County, IN" - }, - { - "value": "MONROE_COUNTY_IN", - "label": "Monroe County, IN" - }, - { - "value": "MONTGOMERY_COUNTY_IN", - "label": "Montgomery County, IN" - }, - { - "value": "MORGAN_COUNTY_IN", - "label": "Morgan County, IN" - }, - { - "value": "NEWTON_COUNTY_IN", - "label": "Newton County, IN" - }, - { - "value": "NOBLE_COUNTY_IN", - "label": "Noble County, IN" - }, - { - "value": "OHIO_COUNTY_IN", - "label": "Ohio County, IN" - }, - { - "value": "ORANGE_COUNTY_IN", - "label": "Orange County, IN" - }, - { - "value": "OWEN_COUNTY_IN", - "label": "Owen County, IN" - }, - { - "value": "PARKE_COUNTY_IN", - "label": "Parke County, IN" - }, - { - "value": "PERRY_COUNTY_IN", - "label": "Perry County, IN" - }, - { - "value": "PIKE_COUNTY_IN", - "label": "Pike County, IN" - }, - { - "value": "PORTER_COUNTY_IN", - "label": "Porter County, IN" - }, - { - "value": "POSEY_COUNTY_IN", - "label": "Posey County, IN" - }, - { - "value": "PULASKI_COUNTY_IN", - "label": "Pulaski County, IN" - }, - { - "value": "PUTNAM_COUNTY_IN", - "label": "Putnam County, IN" - }, - { - "value": "RANDOLPH_COUNTY_IN", - "label": "Randolph County, IN" - }, - { - "value": "RIPLEY_COUNTY_IN", - "label": "Ripley County, IN" - }, - { - "value": "RUSH_COUNTY_IN", - "label": "Rush County, IN" - }, - { - "value": "SCOTT_COUNTY_IN", - "label": "Scott County, IN" - }, - { - "value": "SHELBY_COUNTY_IN", - "label": "Shelby County, IN" - }, - { - "value": "SPENCER_COUNTY_IN", - "label": "Spencer County, IN" - }, - { - "value": "ST_JOSEPH_COUNTY_IN", - "label": "St. Joseph County, IN" - }, - { - "value": "STARKE_COUNTY_IN", - "label": "Starke County, IN" - }, - { - "value": "STEUBEN_COUNTY_IN", - "label": "Steuben County, IN" - }, - { - "value": "SULLIVAN_COUNTY_IN", - "label": "Sullivan County, IN" - }, - { - "value": "SWITZERLAND_COUNTY_IN", - "label": "Switzerland County, IN" - }, - { - "value": "TIPPECANOE_COUNTY_IN", - "label": "Tippecanoe County, IN" - }, - { - "value": "TIPTON_COUNTY_IN", - "label": "Tipton County, IN" - }, - { - "value": "UNION_COUNTY_IN", - "label": "Union County, IN" - }, - { - "value": "VANDERBURGH_COUNTY_IN", - "label": "Vanderburgh County, IN" - }, - { - "value": "VERMILLION_COUNTY_IN", - "label": "Vermillion County, IN" - }, - { - "value": "VIGO_COUNTY_IN", - "label": "Vigo County, IN" - }, - { - "value": "WABASH_COUNTY_IN", - "label": "Wabash County, IN" - }, - { - "value": "WARREN_COUNTY_IN", - "label": "Warren County, IN" - }, - { - "value": "WARRICK_COUNTY_IN", - "label": "Warrick County, IN" - }, - { - "value": "WASHINGTON_COUNTY_IN", - "label": "Washington County, IN" - }, - { - "value": "WAYNE_COUNTY_IN", - "label": "Wayne County, IN" - }, - { - "value": "WELLS_COUNTY_IN", - "label": "Wells County, IN" - }, - { - "value": "WHITE_COUNTY_IN", - "label": "White County, IN" - }, - { - "value": "WHITLEY_COUNTY_IN", - "label": "Whitley County, IN" - }, - { - "value": "ALLEN_COUNTY_KS", - "label": "Allen County, KS" - }, - { - "value": "ANDERSON_COUNTY_KS", - "label": "Anderson County, KS" - }, - { - "value": "ATCHISON_COUNTY_KS", - "label": "Atchison County, KS" - }, - { - "value": "BARBER_COUNTY_KS", - "label": "Barber County, KS" - }, - { - "value": "BARTON_COUNTY_KS", - "label": "Barton County, KS" - }, - { - "value": "BOURBON_COUNTY_KS", - "label": "Bourbon County, KS" - }, - { - "value": "BROWN_COUNTY_KS", - "label": "Brown County, KS" - }, - { - "value": "BUTLER_COUNTY_KS", - "label": "Butler County, KS" - }, - { - "value": "CHASE_COUNTY_KS", - "label": "Chase County, KS" - }, - { - "value": "CHAUTAUQUA_COUNTY_KS", - "label": "Chautauqua County, KS" - }, - { - "value": "CHEROKEE_COUNTY_KS", - "label": "Cherokee County, KS" - }, - { - "value": "CHEYENNE_COUNTY_KS", - "label": "Cheyenne County, KS" - }, - { - "value": "CLARK_COUNTY_KS", - "label": "Clark County, KS" - }, - { - "value": "CLAY_COUNTY_KS", - "label": "Clay County, KS" - }, - { - "value": "CLOUD_COUNTY_KS", - "label": "Cloud County, KS" - }, - { - "value": "COFFEY_COUNTY_KS", - "label": "Coffey County, KS" - }, - { - "value": "COMANCHE_COUNTY_KS", - "label": "Comanche County, KS" - }, - { - "value": "COWLEY_COUNTY_KS", - "label": "Cowley County, KS" - }, - { - "value": "CRAWFORD_COUNTY_KS", - "label": "Crawford County, KS" - }, - { - "value": "DECATUR_COUNTY_KS", - "label": "Decatur County, KS" - }, - { - "value": "DICKINSON_COUNTY_KS", - "label": "Dickinson County, KS" - }, - { - "value": "DONIPHAN_COUNTY_KS", - "label": "Doniphan County, KS" - }, - { - "value": "DOUGLAS_COUNTY_KS", - "label": "Douglas County, KS" - }, - { - "value": "EDWARDS_COUNTY_KS", - "label": "Edwards County, KS" - }, - { - "value": "ELK_COUNTY_KS", - "label": "Elk County, KS" - }, - { - "value": "ELLIS_COUNTY_KS", - "label": "Ellis County, KS" - }, - { - "value": "ELLSWORTH_COUNTY_KS", - "label": "Ellsworth County, KS" - }, - { - "value": "FINNEY_COUNTY_KS", - "label": "Finney County, KS" - }, - { - "value": "FORD_COUNTY_KS", - "label": "Ford County, KS" - }, - { - "value": "FRANKLIN_COUNTY_KS", - "label": "Franklin County, KS" - }, - { - "value": "GEARY_COUNTY_KS", - "label": "Geary County, KS" - }, - { - "value": "GOVE_COUNTY_KS", - "label": "Gove County, KS" - }, - { - "value": "GRAHAM_COUNTY_KS", - "label": "Graham County, KS" - }, - { - "value": "GRANT_COUNTY_KS", - "label": "Grant County, KS" - }, - { - "value": "GRAY_COUNTY_KS", - "label": "Gray County, KS" - }, - { - "value": "GREELEY_COUNTY_KS", - "label": "Greeley County, KS" - }, - { - "value": "GREENWOOD_COUNTY_KS", - "label": "Greenwood County, KS" - }, - { - "value": "HAMILTON_COUNTY_KS", - "label": "Hamilton County, KS" - }, - { - "value": "HARPER_COUNTY_KS", - "label": "Harper County, KS" - }, - { - "value": "HARVEY_COUNTY_KS", - "label": "Harvey County, KS" - }, - { - "value": "HASKELL_COUNTY_KS", - "label": "Haskell County, KS" - }, - { - "value": "HODGEMAN_COUNTY_KS", - "label": "Hodgeman County, KS" - }, - { - "value": "JACKSON_COUNTY_KS", - "label": "Jackson County, KS" - }, - { - "value": "JEFFERSON_COUNTY_KS", - "label": "Jefferson County, KS" - }, - { - "value": "JEWELL_COUNTY_KS", - "label": "Jewell County, KS" - }, - { - "value": "JOHNSON_COUNTY_KS", - "label": "Johnson County, KS" - }, - { - "value": "KEARNY_COUNTY_KS", - "label": "Kearny County, KS" - }, - { - "value": "KINGMAN_COUNTY_KS", - "label": "Kingman County, KS" - }, - { - "value": "KIOWA_COUNTY_KS", - "label": "Kiowa County, KS" - }, - { - "value": "LABETTE_COUNTY_KS", - "label": "Labette County, KS" - }, - { - "value": "LANE_COUNTY_KS", - "label": "Lane County, KS" - }, - { - "value": "LEAVENWORTH_COUNTY_KS", - "label": "Leavenworth County, KS" - }, - { - "value": "LINCOLN_COUNTY_KS", - "label": "Lincoln County, KS" - }, - { - "value": "LINN_COUNTY_KS", - "label": "Linn County, KS" - }, - { - "value": "LOGAN_COUNTY_KS", - "label": "Logan County, KS" - }, - { - "value": "LYON_COUNTY_KS", - "label": "Lyon County, KS" - }, - { - "value": "MARION_COUNTY_KS", - "label": "Marion County, KS" - }, - { - "value": "MARSHALL_COUNTY_KS", - "label": "Marshall County, KS" - }, - { - "value": "MCPHERSON_COUNTY_KS", - "label": "McPherson County, KS" - }, - { - "value": "MEADE_COUNTY_KS", - "label": "Meade County, KS" - }, - { - "value": "MIAMI_COUNTY_KS", - "label": "Miami County, KS" - }, - { - "value": "MITCHELL_COUNTY_KS", - "label": "Mitchell County, KS" - }, - { - "value": "MONTGOMERY_COUNTY_KS", - "label": "Montgomery County, KS" - }, - { - "value": "MORRIS_COUNTY_KS", - "label": "Morris County, KS" - }, - { - "value": "MORTON_COUNTY_KS", - "label": "Morton County, KS" - }, - { - "value": "NEMAHA_COUNTY_KS", - "label": "Nemaha County, KS" - }, - { - "value": "NEOSHO_COUNTY_KS", - "label": "Neosho County, KS" - }, - { - "value": "NESS_COUNTY_KS", - "label": "Ness County, KS" - }, - { - "value": "NORTON_COUNTY_KS", - "label": "Norton County, KS" - }, - { - "value": "OSAGE_COUNTY_KS", - "label": "Osage County, KS" - }, - { - "value": "OSBORNE_COUNTY_KS", - "label": "Osborne County, KS" - }, - { - "value": "OTTAWA_COUNTY_KS", - "label": "Ottawa County, KS" - }, - { - "value": "PAWNEE_COUNTY_KS", - "label": "Pawnee County, KS" - }, - { - "value": "PHILLIPS_COUNTY_KS", - "label": "Phillips County, KS" - }, - { - "value": "POTTAWATOMIE_COUNTY_KS", - "label": "Pottawatomie County, KS" - }, - { - "value": "PRATT_COUNTY_KS", - "label": "Pratt County, KS" - }, - { - "value": "RAWLINS_COUNTY_KS", - "label": "Rawlins County, KS" - }, - { - "value": "RENO_COUNTY_KS", - "label": "Reno County, KS" - }, - { - "value": "REPUBLIC_COUNTY_KS", - "label": "Republic County, KS" - }, - { - "value": "RICE_COUNTY_KS", - "label": "Rice County, KS" - }, - { - "value": "RILEY_COUNTY_KS", - "label": "Riley County, KS" - }, - { - "value": "ROOKS_COUNTY_KS", - "label": "Rooks County, KS" - }, - { - "value": "RUSH_COUNTY_KS", - "label": "Rush County, KS" - }, - { - "value": "RUSSELL_COUNTY_KS", - "label": "Russell County, KS" - }, - { - "value": "SALINE_COUNTY_KS", - "label": "Saline County, KS" - }, - { - "value": "SCOTT_COUNTY_KS", - "label": "Scott County, KS" - }, - { - "value": "SEDGWICK_COUNTY_KS", - "label": "Sedgwick County, KS" - }, - { - "value": "SEWARD_COUNTY_KS", - "label": "Seward County, KS" - }, - { - "value": "SHAWNEE_COUNTY_KS", - "label": "Shawnee County, KS" - }, - { - "value": "SHERIDAN_COUNTY_KS", - "label": "Sheridan County, KS" - }, - { - "value": "SHERMAN_COUNTY_KS", - "label": "Sherman County, KS" - }, - { - "value": "SMITH_COUNTY_KS", - "label": "Smith County, KS" - }, - { - "value": "STAFFORD_COUNTY_KS", - "label": "Stafford County, KS" - }, - { - "value": "STANTON_COUNTY_KS", - "label": "Stanton County, KS" - }, - { - "value": "STEVENS_COUNTY_KS", - "label": "Stevens County, KS" - }, - { - "value": "SUMNER_COUNTY_KS", - "label": "Sumner County, KS" - }, - { - "value": "THOMAS_COUNTY_KS", - "label": "Thomas County, KS" - }, - { - "value": "TREGO_COUNTY_KS", - "label": "Trego County, KS" - }, - { - "value": "WABAUNSEE_COUNTY_KS", - "label": "Wabaunsee County, KS" - }, - { - "value": "WALLACE_COUNTY_KS", - "label": "Wallace County, KS" - }, - { - "value": "WASHINGTON_COUNTY_KS", - "label": "Washington County, KS" - }, - { - "value": "WICHITA_COUNTY_KS", - "label": "Wichita County, KS" - }, - { - "value": "WILSON_COUNTY_KS", - "label": "Wilson County, KS" - }, - { - "value": "WOODSON_COUNTY_KS", - "label": "Woodson County, KS" - }, - { - "value": "WYANDOTTE_COUNTY_KS", - "label": "Wyandotte County, KS" - }, - { - "value": "ADAIR_COUNTY_KY", - "label": "Adair County, KY" - }, - { - "value": "ALLEN_COUNTY_KY", - "label": "Allen County, KY" - }, - { - "value": "ANDERSON_COUNTY_KY", - "label": "Anderson County, KY" - }, - { - "value": "BALLARD_COUNTY_KY", - "label": "Ballard County, KY" - }, - { - "value": "BARREN_COUNTY_KY", - "label": "Barren County, KY" - }, - { - "value": "BATH_COUNTY_KY", - "label": "Bath County, KY" - }, - { - "value": "BELL_COUNTY_KY", - "label": "Bell County, KY" - }, - { - "value": "BOONE_COUNTY_KY", - "label": "Boone County, KY" - }, - { - "value": "BOURBON_COUNTY_KY", - "label": "Bourbon County, KY" - }, - { - "value": "BOYD_COUNTY_KY", - "label": "Boyd County, KY" - }, - { - "value": "BOYLE_COUNTY_KY", - "label": "Boyle County, KY" - }, - { - "value": "BRACKEN_COUNTY_KY", - "label": "Bracken County, KY" - }, - { - "value": "BREATHITT_COUNTY_KY", - "label": "Breathitt County, KY" - }, - { - "value": "BRECKINRIDGE_COUNTY_KY", - "label": "Breckinridge County, KY" - }, - { - "value": "BULLITT_COUNTY_KY", - "label": "Bullitt County, KY" - }, - { - "value": "BUTLER_COUNTY_KY", - "label": "Butler County, KY" - }, - { - "value": "CALDWELL_COUNTY_KY", - "label": "Caldwell County, KY" - }, - { - "value": "CALLOWAY_COUNTY_KY", - "label": "Calloway County, KY" - }, - { - "value": "CAMPBELL_COUNTY_KY", - "label": "Campbell County, KY" - }, - { - "value": "CARLISLE_COUNTY_KY", - "label": "Carlisle County, KY" - }, - { - "value": "CARROLL_COUNTY_KY", - "label": "Carroll County, KY" - }, - { - "value": "CARTER_COUNTY_KY", - "label": "Carter County, KY" - }, - { - "value": "CASEY_COUNTY_KY", - "label": "Casey County, KY" - }, - { - "value": "CHRISTIAN_COUNTY_KY", - "label": "Christian County, KY" - }, - { - "value": "CLAY_COUNTY_KY", - "label": "Clay County, KY" - }, - { - "value": "CLINTON_COUNTY_KY", - "label": "Clinton County, KY" - }, - { - "value": "CRITTENDEN_COUNTY_KY", - "label": "Crittenden County, KY" - }, - { - "value": "DAVIESS_COUNTY_KY", - "label": "Daviess County, KY" - }, - { - "value": "EDMONSON_COUNTY_KY", - "label": "Edmonson County, KY" - }, - { - "value": "ELLIOTT_COUNTY_KY", - "label": "Elliott County, KY" - }, - { - "value": "ESTILL_COUNTY_KY", - "label": "Estill County, KY" - }, - { - "value": "FAYETTE_COUNTY_KY", - "label": "Fayette County, KY" - }, - { - "value": "FLEMING_COUNTY_KY", - "label": "Fleming County, KY" - }, - { - "value": "FLOYD_COUNTY_KY", - "label": "Floyd County, KY" - }, - { - "value": "FRANKLIN_COUNTY_KY", - "label": "Franklin County, KY" - }, - { - "value": "FULTON_COUNTY_KY", - "label": "Fulton County, KY" - }, - { - "value": "GALLATIN_COUNTY_KY", - "label": "Gallatin County, KY" - }, - { - "value": "GARRARD_COUNTY_KY", - "label": "Garrard County, KY" - }, - { - "value": "GRANT_COUNTY_KY", - "label": "Grant County, KY" - }, - { - "value": "GRAVES_COUNTY_KY", - "label": "Graves County, KY" - }, - { - "value": "GRAYSON_COUNTY_KY", - "label": "Grayson County, KY" - }, - { - "value": "GREEN_COUNTY_KY", - "label": "Green County, KY" - }, - { - "value": "GREENUP_COUNTY_KY", - "label": "Greenup County, KY" - }, - { - "value": "HANCOCK_COUNTY_KY", - "label": "Hancock County, KY" - }, - { - "value": "HARDIN_COUNTY_KY", - "label": "Hardin County, KY" - }, - { - "value": "HARLAN_COUNTY_KY", - "label": "Harlan County, KY" - }, - { - "value": "HARRISON_COUNTY_KY", - "label": "Harrison County, KY" - }, - { - "value": "HART_COUNTY_KY", - "label": "Hart County, KY" - }, - { - "value": "HENDERSON_COUNTY_KY", - "label": "Henderson County, KY" - }, - { - "value": "HENRY_COUNTY_KY", - "label": "Henry County, KY" - }, - { - "value": "HICKMAN_COUNTY_KY", - "label": "Hickman County, KY" - }, - { - "value": "HOPKINS_COUNTY_KY", - "label": "Hopkins County, KY" - }, - { - "value": "JACKSON_COUNTY_KY", - "label": "Jackson County, KY" - }, - { - "value": "JEFFERSON_COUNTY_KY", - "label": "Jefferson County, KY" - }, - { - "value": "JESSAMINE_COUNTY_KY", - "label": "Jessamine County, KY" - }, - { - "value": "JOHNSON_COUNTY_KY", - "label": "Johnson County, KY" - }, - { - "value": "KENTON_COUNTY_KY", - "label": "Kenton County, KY" - }, - { - "value": "KNOTT_COUNTY_KY", - "label": "Knott County, KY" - }, - { - "value": "KNOX_COUNTY_KY", - "label": "Knox County, KY" - }, - { - "value": "LARUE_COUNTY_KY", - "label": "Larue County, KY" - }, - { - "value": "LAUREL_COUNTY_KY", - "label": "Laurel County, KY" - }, - { - "value": "LAWRENCE_COUNTY_KY", - "label": "Lawrence County, KY" - }, - { - "value": "LEE_COUNTY_KY", - "label": "Lee County, KY" - }, - { - "value": "LESLIE_COUNTY_KY", - "label": "Leslie County, KY" - }, - { - "value": "LETCHER_COUNTY_KY", - "label": "Letcher County, KY" - }, - { - "value": "LEWIS_COUNTY_KY", - "label": "Lewis County, KY" - }, - { - "value": "LINCOLN_COUNTY_KY", - "label": "Lincoln County, KY" - }, - { - "value": "LIVINGSTON_COUNTY_KY", - "label": "Livingston County, KY" - }, - { - "value": "LOGAN_COUNTY_KY", - "label": "Logan County, KY" - }, - { - "value": "LYON_COUNTY_KY", - "label": "Lyon County, KY" - }, - { - "value": "MADISON_COUNTY_KY", - "label": "Madison County, KY" - }, - { - "value": "MAGOFFIN_COUNTY_KY", - "label": "Magoffin County, KY" - }, - { - "value": "MARION_COUNTY_KY", - "label": "Marion County, KY" - }, - { - "value": "MARSHALL_COUNTY_KY", - "label": "Marshall County, KY" - }, - { - "value": "MARTIN_COUNTY_KY", - "label": "Martin County, KY" - }, - { - "value": "MASON_COUNTY_KY", - "label": "Mason County, KY" - }, - { - "value": "MCCRACKEN_COUNTY_KY", - "label": "McCracken County, KY" - }, - { - "value": "MCCREARY_COUNTY_KY", - "label": "McCreary County, KY" - }, - { - "value": "MCLEAN_COUNTY_KY", - "label": "McLean County, KY" - }, - { - "value": "MEADE_COUNTY_KY", - "label": "Meade County, KY" - }, - { - "value": "MENIFEE_COUNTY_KY", - "label": "Menifee County, KY" - }, - { - "value": "MERCER_COUNTY_KY", - "label": "Mercer County, KY" - }, - { - "value": "METCALFE_COUNTY_KY", - "label": "Metcalfe County, KY" - }, - { - "value": "MONROE_COUNTY_KY", - "label": "Monroe County, KY" - }, - { - "value": "MONTGOMERY_COUNTY_KY", - "label": "Montgomery County, KY" - }, - { - "value": "MORGAN_COUNTY_KY", - "label": "Morgan County, KY" - }, - { - "value": "MUHLENBERG_COUNTY_KY", - "label": "Muhlenberg County, KY" - }, - { - "value": "NELSON_COUNTY_KY", - "label": "Nelson County, KY" - }, - { - "value": "NICHOLAS_COUNTY_KY", - "label": "Nicholas County, KY" - }, - { - "value": "OHIO_COUNTY_KY", - "label": "Ohio County, KY" - }, - { - "value": "OLDHAM_COUNTY_KY", - "label": "Oldham County, KY" - }, - { - "value": "OWEN_COUNTY_KY", - "label": "Owen County, KY" - }, - { - "value": "OWSLEY_COUNTY_KY", - "label": "Owsley County, KY" - }, - { - "value": "PENDLETON_COUNTY_KY", - "label": "Pendleton County, KY" - }, - { - "value": "PERRY_COUNTY_KY", - "label": "Perry County, KY" - }, - { - "value": "PIKE_COUNTY_KY", - "label": "Pike County, KY" - }, - { - "value": "POWELL_COUNTY_KY", - "label": "Powell County, KY" - }, - { - "value": "PULASKI_COUNTY_KY", - "label": "Pulaski County, KY" - }, - { - "value": "ROBERTSON_COUNTY_KY", - "label": "Robertson County, KY" - }, - { - "value": "ROCKCASTLE_COUNTY_KY", - "label": "Rockcastle County, KY" - }, - { - "value": "ROWAN_COUNTY_KY", - "label": "Rowan County, KY" - }, - { - "value": "RUSSELL_COUNTY_KY", - "label": "Russell County, KY" - }, - { - "value": "SCOTT_COUNTY_KY", - "label": "Scott County, KY" - }, - { - "value": "SHELBY_COUNTY_KY", - "label": "Shelby County, KY" - }, - { - "value": "SIMPSON_COUNTY_KY", - "label": "Simpson County, KY" - }, - { - "value": "SPENCER_COUNTY_KY", - "label": "Spencer County, KY" - }, - { - "value": "TAYLOR_COUNTY_KY", - "label": "Taylor County, KY" - }, - { - "value": "TODD_COUNTY_KY", - "label": "Todd County, KY" - }, - { - "value": "TRIGG_COUNTY_KY", - "label": "Trigg County, KY" - }, - { - "value": "TRIMBLE_COUNTY_KY", - "label": "Trimble County, KY" - }, - { - "value": "UNION_COUNTY_KY", - "label": "Union County, KY" - }, - { - "value": "WARREN_COUNTY_KY", - "label": "Warren County, KY" - }, - { - "value": "WASHINGTON_COUNTY_KY", - "label": "Washington County, KY" - }, - { - "value": "WAYNE_COUNTY_KY", - "label": "Wayne County, KY" - }, - { - "value": "WEBSTER_COUNTY_KY", - "label": "Webster County, KY" - }, - { - "value": "WHITLEY_COUNTY_KY", - "label": "Whitley County, KY" - }, - { - "value": "WOLFE_COUNTY_KY", - "label": "Wolfe County, KY" - }, - { - "value": "WOODFORD_COUNTY_KY", - "label": "Woodford County, KY" - }, - { - "value": "ACADIA_PARISH_LA", - "label": "Acadia Parish, LA" - }, - { - "value": "ALLEN_PARISH_LA", - "label": "Allen Parish, LA" - }, - { - "value": "ASCENSION_PARISH_LA", - "label": "Ascension Parish, LA" - }, - { - "value": "ASSUMPTION_PARISH_LA", - "label": "Assumption Parish, LA" - }, - { - "value": "AVOYELLES_PARISH_LA", - "label": "Avoyelles Parish, LA" - }, - { - "value": "BEAUREGARD_PARISH_LA", - "label": "Beauregard Parish, LA" - }, - { - "value": "BIENVILLE_PARISH_LA", - "label": "Bienville Parish, LA" - }, - { - "value": "BOSSIER_PARISH_LA", - "label": "Bossier Parish, LA" - }, - { - "value": "CADDO_PARISH_LA", - "label": "Caddo Parish, LA" - }, - { - "value": "CALCASIEU_PARISH_LA", - "label": "Calcasieu Parish, LA" - }, - { - "value": "CALDWELL_PARISH_LA", - "label": "Caldwell Parish, LA" - }, - { - "value": "CAMERON_PARISH_LA", - "label": "Cameron Parish, LA" - }, - { - "value": "CATAHOULA_PARISH_LA", - "label": "Catahoula Parish, LA" - }, - { - "value": "CLAIBORNE_PARISH_LA", - "label": "Claiborne Parish, LA" - }, - { - "value": "CONCORDIA_PARISH_LA", - "label": "Concordia Parish, LA" - }, - { - "value": "DE_SOTO_PARISH_LA", - "label": "De Soto Parish, LA" - }, - { - "value": "EAST_BATON_ROUGE_PARISH_LA", - "label": "East Baton Rouge Parish, LA" - }, - { - "value": "EAST_CARROLL_PARISH_LA", - "label": "East Carroll Parish, LA" - }, - { - "value": "EAST_FELICIANA_PARISH_LA", - "label": "East Feliciana Parish, LA" - }, - { - "value": "EVANGELINE_PARISH_LA", - "label": "Evangeline Parish, LA" - }, - { - "value": "FRANKLIN_PARISH_LA", - "label": "Franklin Parish, LA" - }, - { - "value": "GRANT_PARISH_LA", - "label": "Grant Parish, LA" - }, - { - "value": "IBERIA_PARISH_LA", - "label": "Iberia Parish, LA" - }, - { - "value": "IBERVILLE_PARISH_LA", - "label": "Iberville Parish, LA" - }, - { - "value": "JACKSON_PARISH_LA", - "label": "Jackson Parish, LA" - }, - { - "value": "JEFFERSON_DAVIS_PARISH_LA", - "label": "Jefferson Davis Parish, LA" - }, - { - "value": "JEFFERSON_PARISH_LA", - "label": "Jefferson Parish, LA" - }, - { - "value": "LASALLE_PARISH_LA", - "label": "LaSalle Parish, LA" - }, - { - "value": "LAFAYETTE_PARISH_LA", - "label": "Lafayette Parish, LA" - }, - { - "value": "LAFOURCHE_PARISH_LA", - "label": "Lafourche Parish, LA" - }, - { - "value": "LINCOLN_PARISH_LA", - "label": "Lincoln Parish, LA" - }, - { - "value": "LIVINGSTON_PARISH_LA", - "label": "Livingston Parish, LA" - }, - { - "value": "MADISON_PARISH_LA", - "label": "Madison Parish, LA" - }, - { - "value": "MOREHOUSE_PARISH_LA", - "label": "Morehouse Parish, LA" - }, - { - "value": "NATCHITOCHES_PARISH_LA", - "label": "Natchitoches Parish, LA" - }, - { - "value": "ORLEANS_PARISH_LA", - "label": "Orleans Parish, LA" - }, - { - "value": "OUACHITA_PARISH_LA", - "label": "Ouachita Parish, LA" - }, - { - "value": "PLAQUEMINES_PARISH_LA", - "label": "Plaquemines Parish, LA" - }, - { - "value": "POINTE_COUPEE_PARISH_LA", - "label": "Pointe Coupee Parish, LA" - }, - { - "value": "RAPIDES_PARISH_LA", - "label": "Rapides Parish, LA" - }, - { - "value": "RED_RIVER_PARISH_LA", - "label": "Red River Parish, LA" - }, - { - "value": "RICHLAND_PARISH_LA", - "label": "Richland Parish, LA" - }, - { - "value": "SABINE_PARISH_LA", - "label": "Sabine Parish, LA" - }, - { - "value": "ST_BERNARD_PARISH_LA", - "label": "St. Bernard Parish, LA" - }, - { - "value": "ST_CHARLES_PARISH_LA", - "label": "St. Charles Parish, LA" - }, - { - "value": "ST_HELENA_PARISH_LA", - "label": "St. Helena Parish, LA" - }, - { - "value": "ST_JAMES_PARISH_LA", - "label": "St. James Parish, LA" - }, - { - "value": "ST_JOHN_THE_BAPTIST_PARISH_LA", - "label": "St. John the Baptist Parish, LA" - }, - { - "value": "ST_LANDRY_PARISH_LA", - "label": "St. Landry Parish, LA" - }, - { - "value": "ST_MARTIN_PARISH_LA", - "label": "St. Martin Parish, LA" - }, - { - "value": "ST_MARY_PARISH_LA", - "label": "St. Mary Parish, LA" - }, - { - "value": "ST_TAMMANY_PARISH_LA", - "label": "St. Tammany Parish, LA" - }, - { - "value": "TANGIPAHOA_PARISH_LA", - "label": "Tangipahoa Parish, LA" - }, - { - "value": "TENSAS_PARISH_LA", - "label": "Tensas Parish, LA" - }, - { - "value": "TERREBONNE_PARISH_LA", - "label": "Terrebonne Parish, LA" - }, - { - "value": "UNION_PARISH_LA", - "label": "Union Parish, LA" - }, - { - "value": "VERMILION_PARISH_LA", - "label": "Vermilion Parish, LA" - }, - { - "value": "VERNON_PARISH_LA", - "label": "Vernon Parish, LA" - }, - { - "value": "WASHINGTON_PARISH_LA", - "label": "Washington Parish, LA" - }, - { - "value": "WEBSTER_PARISH_LA", - "label": "Webster Parish, LA" - }, - { - "value": "WEST_BATON_ROUGE_PARISH_LA", - "label": "West Baton Rouge Parish, LA" - }, - { - "value": "WEST_CARROLL_PARISH_LA", - "label": "West Carroll Parish, LA" - }, - { - "value": "WEST_FELICIANA_PARISH_LA", - "label": "West Feliciana Parish, LA" - }, - { - "value": "WINN_PARISH_LA", - "label": "Winn Parish, LA" - }, - { - "value": "BARNSTABLE_COUNTY_MA", - "label": "Barnstable County, MA" - }, - { - "value": "BERKSHIRE_COUNTY_MA", - "label": "Berkshire County, MA" - }, - { - "value": "BRISTOL_COUNTY_MA", - "label": "Bristol County, MA" - }, - { - "value": "DUKES_COUNTY_MA", - "label": "Dukes County, MA" - }, - { - "value": "ESSEX_COUNTY_MA", - "label": "Essex County, MA" - }, - { - "value": "FRANKLIN_COUNTY_MA", - "label": "Franklin County, MA" - }, - { - "value": "HAMPDEN_COUNTY_MA", - "label": "Hampden County, MA" - }, - { - "value": "HAMPSHIRE_COUNTY_MA", - "label": "Hampshire County, MA" - }, - { - "value": "MIDDLESEX_COUNTY_MA", - "label": "Middlesex County, MA" - }, - { - "value": "NANTUCKET_COUNTY_MA", - "label": "Nantucket County, MA" - }, - { - "value": "NORFOLK_COUNTY_MA", - "label": "Norfolk County, MA" - }, - { - "value": "PLYMOUTH_COUNTY_MA", - "label": "Plymouth County, MA" - }, - { - "value": "SUFFOLK_COUNTY_MA", - "label": "Suffolk County, MA" - }, - { - "value": "WORCESTER_COUNTY_MA", - "label": "Worcester County, MA" - }, - { - "value": "ALLEGANY_COUNTY_MD", - "label": "Allegany County, MD" - }, - { - "value": "ANNE_ARUNDEL_COUNTY_MD", - "label": "Anne Arundel County, MD" - }, - { - "value": "BALTIMORE_COUNTY_MD", - "label": "Baltimore County, MD" - }, - { - "value": "BALTIMORE_CITY_MD", - "label": "Baltimore city, MD" - }, - { - "value": "CALVERT_COUNTY_MD", - "label": "Calvert County, MD" - }, - { - "value": "CAROLINE_COUNTY_MD", - "label": "Caroline County, MD" - }, - { - "value": "CARROLL_COUNTY_MD", - "label": "Carroll County, MD" - }, - { - "value": "CECIL_COUNTY_MD", - "label": "Cecil County, MD" - }, - { - "value": "CHARLES_COUNTY_MD", - "label": "Charles County, MD" - }, - { - "value": "DORCHESTER_COUNTY_MD", - "label": "Dorchester County, MD" - }, - { - "value": "FREDERICK_COUNTY_MD", - "label": "Frederick County, MD" - }, - { - "value": "GARRETT_COUNTY_MD", - "label": "Garrett County, MD" - }, - { - "value": "HARFORD_COUNTY_MD", - "label": "Harford County, MD" - }, - { - "value": "HOWARD_COUNTY_MD", - "label": "Howard County, MD" - }, - { - "value": "KENT_COUNTY_MD", - "label": "Kent County, MD" - }, - { - "value": "MONTGOMERY_COUNTY_MD", - "label": "Montgomery County, MD" - }, - { - "value": "NEW_CASTLE_COUNTY_MD", - "label": "New Castle County, MD" - }, - { - "value": "PRINCE_GEORGE_S_COUNTY_MD", - "label": "Prince George's County, MD" - }, - { - "value": "QUEEN_ANNE_S_COUNTY_MD", - "label": "Queen Anne's County, MD" - }, - { - "value": "SOMERSET_COUNTY_MD", - "label": "Somerset County, MD" - }, - { - "value": "ST_MARY_S_COUNTY_MD", - "label": "St. Mary's County, MD" - }, - { - "value": "TALBOT_COUNTY_MD", - "label": "Talbot County, MD" - }, - { - "value": "WASHINGTON_COUNTY_MD", - "label": "Washington County, MD" - }, - { - "value": "WICOMICO_COUNTY_MD", - "label": "Wicomico County, MD" - }, - { - "value": "WORCESTER_COUNTY_MD", - "label": "Worcester County, MD" - }, - { - "value": "ANDROSCOGGIN_COUNTY_ME", - "label": "Androscoggin County, ME" - }, - { - "value": "AROOSTOOK_COUNTY_ME", - "label": "Aroostook County, ME" - }, - { - "value": "CUMBERLAND_COUNTY_ME", - "label": "Cumberland County, ME" - }, - { - "value": "FRANKLIN_COUNTY_ME", - "label": "Franklin County, ME" - }, - { - "value": "HANCOCK_COUNTY_ME", - "label": "Hancock County, ME" - }, - { - "value": "KENNEBEC_COUNTY_ME", - "label": "Kennebec County, ME" - }, - { - "value": "KNOX_COUNTY_ME", - "label": "Knox County, ME" - }, - { - "value": "LINCOLN_COUNTY_ME", - "label": "Lincoln County, ME" - }, - { - "value": "OXFORD_COUNTY_ME", - "label": "Oxford County, ME" - }, - { - "value": "PENOBSCOT_COUNTY_ME", - "label": "Penobscot County, ME" - }, - { - "value": "PISCATAQUIS_COUNTY_ME", - "label": "Piscataquis County, ME" - }, - { - "value": "SAGADAHOC_COUNTY_ME", - "label": "Sagadahoc County, ME" - }, - { - "value": "SOMERSET_COUNTY_ME", - "label": "Somerset County, ME" - }, - { - "value": "WALDO_COUNTY_ME", - "label": "Waldo County, ME" - }, - { - "value": "WASHINGTON_COUNTY_ME", - "label": "Washington County, ME" - }, - { - "value": "YORK_COUNTY_ME", - "label": "York County, ME" - }, - { - "value": "ALCONA_COUNTY_MI", - "label": "Alcona County, MI" - }, - { - "value": "ALGER_COUNTY_MI", - "label": "Alger County, MI" - }, - { - "value": "ALLEGAN_COUNTY_MI", - "label": "Allegan County, MI" - }, - { - "value": "ALPENA_COUNTY_MI", - "label": "Alpena County, MI" - }, - { - "value": "ANTRIM_COUNTY_MI", - "label": "Antrim County, MI" - }, - { - "value": "ARENAC_COUNTY_MI", - "label": "Arenac County, MI" - }, - { - "value": "BARAGA_COUNTY_MI", - "label": "Baraga County, MI" - }, - { - "value": "BARRY_COUNTY_MI", - "label": "Barry County, MI" - }, - { - "value": "BAY_COUNTY_MI", - "label": "Bay County, MI" - }, - { - "value": "BENZIE_COUNTY_MI", - "label": "Benzie County, MI" - }, - { - "value": "BERRIEN_COUNTY_MI", - "label": "Berrien County, MI" - }, - { - "value": "BRANCH_COUNTY_MI", - "label": "Branch County, MI" - }, - { - "value": "CALHOUN_COUNTY_MI", - "label": "Calhoun County, MI" - }, - { - "value": "CASS_COUNTY_MI", - "label": "Cass County, MI" - }, - { - "value": "CHARLEVOIX_COUNTY_MI", - "label": "Charlevoix County, MI" - }, - { - "value": "CHEBOYGAN_COUNTY_MI", - "label": "Cheboygan County, MI" - }, - { - "value": "CHIPPEWA_COUNTY_MI", - "label": "Chippewa County, MI" - }, - { - "value": "CLARE_COUNTY_MI", - "label": "Clare County, MI" - }, - { - "value": "CLINTON_COUNTY_MI", - "label": "Clinton County, MI" - }, - { - "value": "CRAWFORD_COUNTY_MI", - "label": "Crawford County, MI" - }, - { - "value": "DELTA_COUNTY_MI", - "label": "Delta County, MI" - }, - { - "value": "DICKINSON_COUNTY_MI", - "label": "Dickinson County, MI" - }, - { - "value": "EATON_COUNTY_MI", - "label": "Eaton County, MI" - }, - { - "value": "EMMET_COUNTY_MI", - "label": "Emmet County, MI" - }, - { - "value": "GENESEE_COUNTY_MI", - "label": "Genesee County, MI" - }, - { - "value": "GLADWIN_COUNTY_MI", - "label": "Gladwin County, MI" - }, - { - "value": "GOGEBIC_COUNTY_MI", - "label": "Gogebic County, MI" - }, - { - "value": "GRAND_TRAVERSE_COUNTY_MI", - "label": "Grand Traverse County, MI" - }, - { - "value": "GRATIOT_COUNTY_MI", - "label": "Gratiot County, MI" - }, - { - "value": "HILLSDALE_COUNTY_MI", - "label": "Hillsdale County, MI" - }, - { - "value": "HOUGHTON_COUNTY_MI", - "label": "Houghton County, MI" - }, - { - "value": "HURON_COUNTY_MI", - "label": "Huron County, MI" - }, - { - "value": "INGHAM_COUNTY_MI", - "label": "Ingham County, MI" - }, - { - "value": "IONIA_COUNTY_MI", - "label": "Ionia County, MI" - }, - { - "value": "IOSCO_COUNTY_MI", - "label": "Iosco County, MI" - }, - { - "value": "IRON_COUNTY_MI", - "label": "Iron County, MI" - }, - { - "value": "ISABELLA_COUNTY_MI", - "label": "Isabella County, MI" - }, - { - "value": "JACKSON_COUNTY_MI", - "label": "Jackson County, MI" - }, - { - "value": "KALAMAZOO_COUNTY_MI", - "label": "Kalamazoo County, MI" - }, - { - "value": "KALKASKA_COUNTY_MI", - "label": "Kalkaska County, MI" - }, - { - "value": "KENT_COUNTY_MI", - "label": "Kent County, MI" - }, - { - "value": "KEWEENAW_COUNTY_MI", - "label": "Keweenaw County, MI" - }, - { - "value": "LAKE_COUNTY_MI", - "label": "Lake County, MI" - }, - { - "value": "LAPEER_COUNTY_MI", - "label": "Lapeer County, MI" - }, - { - "value": "LEELANAU_COUNTY_MI", - "label": "Leelanau County, MI" - }, - { - "value": "LENAWEE_COUNTY_MI", - "label": "Lenawee County, MI" - }, - { - "value": "LIVINGSTON_COUNTY_MI", - "label": "Livingston County, MI" - }, - { - "value": "LUCE_COUNTY_MI", - "label": "Luce County, MI" - }, - { - "value": "MACKINAC_COUNTY_MI", - "label": "Mackinac County, MI" - }, - { - "value": "MACOMB_COUNTY_MI", - "label": "Macomb County, MI" - }, - { - "value": "MANISTEE_COUNTY_MI", - "label": "Manistee County, MI" - }, - { - "value": "MARQUETTE_COUNTY_MI", - "label": "Marquette County, MI" - }, - { - "value": "MASON_COUNTY_MI", - "label": "Mason County, MI" - }, - { - "value": "MECOSTA_COUNTY_MI", - "label": "Mecosta County, MI" - }, - { - "value": "MENOMINEE_COUNTY_MI", - "label": "Menominee County, MI" - }, - { - "value": "MIDLAND_COUNTY_MI", - "label": "Midland County, MI" - }, - { - "value": "MISSAUKEE_COUNTY_MI", - "label": "Missaukee County, MI" - }, - { - "value": "MONROE_COUNTY_MI", - "label": "Monroe County, MI" - }, - { - "value": "MONTCALM_COUNTY_MI", - "label": "Montcalm County, MI" - }, - { - "value": "MONTMORENCY_COUNTY_MI", - "label": "Montmorency County, MI" - }, - { - "value": "MUSKEGON_COUNTY_MI", - "label": "Muskegon County, MI" - }, - { - "value": "NEWAYGO_COUNTY_MI", - "label": "Newaygo County, MI" - }, - { - "value": "OAKLAND_COUNTY_MI", - "label": "Oakland County, MI" - }, - { - "value": "OCEANA_COUNTY_MI", - "label": "Oceana County, MI" - }, - { - "value": "OGEMAW_COUNTY_MI", - "label": "Ogemaw County, MI" - }, - { - "value": "ONTONAGON_COUNTY_MI", - "label": "Ontonagon County, MI" - }, - { - "value": "OSCEOLA_COUNTY_MI", - "label": "Osceola County, MI" - }, - { - "value": "OSCODA_COUNTY_MI", - "label": "Oscoda County, MI" - }, - { - "value": "OTSEGO_COUNTY_MI", - "label": "Otsego County, MI" - }, - { - "value": "OTTAWA_COUNTY_MI", - "label": "Ottawa County, MI" - }, - { - "value": "PRESQUE_ISLE_COUNTY_MI", - "label": "Presque Isle County, MI" - }, - { - "value": "ROSCOMMON_COUNTY_MI", - "label": "Roscommon County, MI" - }, - { - "value": "SAGINAW_COUNTY_MI", - "label": "Saginaw County, MI" - }, - { - "value": "SANILAC_COUNTY_MI", - "label": "Sanilac County, MI" - }, - { - "value": "SCHOOLCRAFT_COUNTY_MI", - "label": "Schoolcraft County, MI" - }, - { - "value": "SHIAWASSEE_COUNTY_MI", - "label": "Shiawassee County, MI" - }, - { - "value": "ST_CLAIR_COUNTY_MI", - "label": "St. Clair County, MI" - }, - { - "value": "ST_JOSEPH_COUNTY_MI", - "label": "St. Joseph County, MI" - }, - { - "value": "TUSCOLA_COUNTY_MI", - "label": "Tuscola County, MI" - }, - { - "value": "VAN_BUREN_COUNTY_MI", - "label": "Van Buren County, MI" - }, - { - "value": "WASHTENAW_COUNTY_MI", - "label": "Washtenaw County, MI" - }, - { - "value": "WAYNE_COUNTY_MI", - "label": "Wayne County, MI" - }, - { - "value": "WEXFORD_COUNTY_MI", - "label": "Wexford County, MI" - }, - { - "value": "AITKIN_COUNTY_MN", - "label": "Aitkin County, MN" - }, - { - "value": "ANOKA_COUNTY_MN", - "label": "Anoka County, MN" - }, - { - "value": "BECKER_COUNTY_MN", - "label": "Becker County, MN" - }, - { - "value": "BELTRAMI_COUNTY_MN", - "label": "Beltrami County, MN" - }, - { - "value": "BENTON_COUNTY_MN", - "label": "Benton County, MN" - }, - { - "value": "BIG_STONE_COUNTY_MN", - "label": "Big Stone County, MN" - }, - { - "value": "BLUE_EARTH_COUNTY_MN", - "label": "Blue Earth County, MN" - }, - { - "value": "BROWN_COUNTY_MN", - "label": "Brown County, MN" - }, - { - "value": "CARLTON_COUNTY_MN", - "label": "Carlton County, MN" - }, - { - "value": "CARVER_COUNTY_MN", - "label": "Carver County, MN" - }, - { - "value": "CASS_COUNTY_MN", - "label": "Cass County, MN" - }, - { - "value": "CHIPPEWA_COUNTY_MN", - "label": "Chippewa County, MN" - }, - { - "value": "CHISAGO_COUNTY_MN", - "label": "Chisago County, MN" - }, - { - "value": "CLAY_COUNTY_MN", - "label": "Clay County, MN" - }, - { - "value": "CLEARWATER_COUNTY_MN", - "label": "Clearwater County, MN" - }, - { - "value": "COOK_COUNTY_MN", - "label": "Cook County, MN" - }, - { - "value": "COTTONWOOD_COUNTY_MN", - "label": "Cottonwood County, MN" - }, - { - "value": "CROW_WING_COUNTY_MN", - "label": "Crow Wing County, MN" - }, - { - "value": "DAKOTA_COUNTY_MN", - "label": "Dakota County, MN" - }, - { - "value": "DODGE_COUNTY_MN", - "label": "Dodge County, MN" - }, - { - "value": "DOUGLAS_COUNTY_MN", - "label": "Douglas County, MN" - }, - { - "value": "FARIBAULT_COUNTY_MN", - "label": "Faribault County, MN" - }, - { - "value": "FILLMORE_COUNTY_MN", - "label": "Fillmore County, MN" - }, - { - "value": "FREEBORN_COUNTY_MN", - "label": "Freeborn County, MN" - }, - { - "value": "GOODHUE_COUNTY_MN", - "label": "Goodhue County, MN" - }, - { - "value": "GRANT_COUNTY_MN", - "label": "Grant County, MN" - }, - { - "value": "HENNEPIN_COUNTY_MN", - "label": "Hennepin County, MN" - }, - { - "value": "HOUSTON_COUNTY_MN", - "label": "Houston County, MN" - }, - { - "value": "HUBBARD_COUNTY_MN", - "label": "Hubbard County, MN" - }, - { - "value": "ISANTI_COUNTY_MN", - "label": "Isanti County, MN" - }, - { - "value": "ITASCA_COUNTY_MN", - "label": "Itasca County, MN" - }, - { - "value": "JACKSON_COUNTY_MN", - "label": "Jackson County, MN" - }, - { - "value": "KANABEC_COUNTY_MN", - "label": "Kanabec County, MN" - }, - { - "value": "KANDIYOHI_COUNTY_MN", - "label": "Kandiyohi County, MN" - }, - { - "value": "KITTSON_COUNTY_MN", - "label": "Kittson County, MN" - }, - { - "value": "KOOCHICHING_COUNTY_MN", - "label": "Koochiching County, MN" - }, - { - "value": "KOSSUTH_COUNTY_MN", - "label": "Kossuth County, MN" - }, - { - "value": "LAC_QUI_PARLE_COUNTY_MN", - "label": "Lac qui Parle County, MN" - }, - { - "value": "LAKE_COUNTY_MN", - "label": "Lake County, MN" - }, - { - "value": "LAKE_OF_THE_WOODS_COUNTY_MN", - "label": "Lake of the Woods County, MN" - }, - { - "value": "LE_SUEUR_COUNTY_MN", - "label": "Le Sueur County, MN" - }, - { - "value": "LINCOLN_COUNTY_MN", - "label": "Lincoln County, MN" - }, - { - "value": "LYON_COUNTY_MN", - "label": "Lyon County, MN" - }, - { - "value": "MAHNOMEN_COUNTY_MN", - "label": "Mahnomen County, MN" - }, - { - "value": "MARSHALL_COUNTY_MN", - "label": "Marshall County, MN" - }, - { - "value": "MARTIN_COUNTY_MN", - "label": "Martin County, MN" - }, - { - "value": "MCLEOD_COUNTY_MN", - "label": "McLeod County, MN" - }, - { - "value": "MEEKER_COUNTY_MN", - "label": "Meeker County, MN" - }, - { - "value": "MILLE_LACS_COUNTY_MN", - "label": "Mille Lacs County, MN" - }, - { - "value": "MORRISON_COUNTY_MN", - "label": "Morrison County, MN" - }, - { - "value": "MOWER_COUNTY_MN", - "label": "Mower County, MN" - }, - { - "value": "MURRAY_COUNTY_MN", - "label": "Murray County, MN" - }, - { - "value": "NICOLLET_COUNTY_MN", - "label": "Nicollet County, MN" - }, - { - "value": "NOBLES_COUNTY_MN", - "label": "Nobles County, MN" - }, - { - "value": "NORMAN_COUNTY_MN", - "label": "Norman County, MN" - }, - { - "value": "OLMSTED_COUNTY_MN", - "label": "Olmsted County, MN" - }, - { - "value": "OTTER_TAIL_COUNTY_MN", - "label": "Otter Tail County, MN" - }, - { - "value": "PENNINGTON_COUNTY_MN", - "label": "Pennington County, MN" - }, - { - "value": "PINE_COUNTY_MN", - "label": "Pine County, MN" - }, - { - "value": "PIPESTONE_COUNTY_MN", - "label": "Pipestone County, MN" - }, - { - "value": "POLK_COUNTY_MN", - "label": "Polk County, MN" - }, - { - "value": "POPE_COUNTY_MN", - "label": "Pope County, MN" - }, - { - "value": "RAMSEY_COUNTY_MN", - "label": "Ramsey County, MN" - }, - { - "value": "RED_LAKE_COUNTY_MN", - "label": "Red Lake County, MN" - }, - { - "value": "REDWOOD_COUNTY_MN", - "label": "Redwood County, MN" - }, - { - "value": "RENVILLE_COUNTY_MN", - "label": "Renville County, MN" - }, - { - "value": "RICE_COUNTY_MN", - "label": "Rice County, MN" - }, - { - "value": "ROBERTS_COUNTY_MN", - "label": "Roberts County, MN" - }, - { - "value": "ROCK_COUNTY_MN", - "label": "Rock County, MN" - }, - { - "value": "ROSEAU_COUNTY_MN", - "label": "Roseau County, MN" - }, - { - "value": "SCOTT_COUNTY_MN", - "label": "Scott County, MN" - }, - { - "value": "SHERBURNE_COUNTY_MN", - "label": "Sherburne County, MN" - }, - { - "value": "SIBLEY_COUNTY_MN", - "label": "Sibley County, MN" - }, - { - "value": "ST_LOUIS_COUNTY_MN", - "label": "St. Louis County, MN" - }, - { - "value": "STEARNS_COUNTY_MN", - "label": "Stearns County, MN" - }, - { - "value": "STEELE_COUNTY_MN", - "label": "Steele County, MN" - }, - { - "value": "STEVENS_COUNTY_MN", - "label": "Stevens County, MN" - }, - { - "value": "SWIFT_COUNTY_MN", - "label": "Swift County, MN" - }, - { - "value": "TODD_COUNTY_MN", - "label": "Todd County, MN" - }, - { - "value": "TRAVERSE_COUNTY_MN", - "label": "Traverse County, MN" - }, - { - "value": "WABASHA_COUNTY_MN", - "label": "Wabasha County, MN" - }, - { - "value": "WADENA_COUNTY_MN", - "label": "Wadena County, MN" - }, - { - "value": "WASECA_COUNTY_MN", - "label": "Waseca County, MN" - }, - { - "value": "WASHINGTON_COUNTY_MN", - "label": "Washington County, MN" - }, - { - "value": "WATONWAN_COUNTY_MN", - "label": "Watonwan County, MN" - }, - { - "value": "WILKIN_COUNTY_MN", - "label": "Wilkin County, MN" - }, - { - "value": "WINONA_COUNTY_MN", - "label": "Winona County, MN" - }, - { - "value": "WRIGHT_COUNTY_MN", - "label": "Wright County, MN" - }, - { - "value": "YELLOW_MEDICINE_COUNTY_MN", - "label": "Yellow Medicine County, MN" - }, - { - "value": "ADAIR_COUNTY_MO", - "label": "Adair County, MO" - }, - { - "value": "ANDREW_COUNTY_MO", - "label": "Andrew County, MO" - }, - { - "value": "ATCHISON_COUNTY_MO", - "label": "Atchison County, MO" - }, - { - "value": "AUDRAIN_COUNTY_MO", - "label": "Audrain County, MO" - }, - { - "value": "BARRY_COUNTY_MO", - "label": "Barry County, MO" - }, - { - "value": "BARTON_COUNTY_MO", - "label": "Barton County, MO" - }, - { - "value": "BATES_COUNTY_MO", - "label": "Bates County, MO" - }, - { - "value": "BENTON_COUNTY_MO", - "label": "Benton County, MO" - }, - { - "value": "BOLLINGER_COUNTY_MO", - "label": "Bollinger County, MO" - }, - { - "value": "BOONE_COUNTY_MO", - "label": "Boone County, MO" - }, - { - "value": "BUCHANAN_COUNTY_MO", - "label": "Buchanan County, MO" - }, - { - "value": "BUTLER_COUNTY_MO", - "label": "Butler County, MO" - }, - { - "value": "CALDWELL_COUNTY_MO", - "label": "Caldwell County, MO" - }, - { - "value": "CALLAWAY_COUNTY_MO", - "label": "Callaway County, MO" - }, - { - "value": "CAMDEN_COUNTY_MO", - "label": "Camden County, MO" - }, - { - "value": "CAPE_GIRARDEAU_COUNTY_MO", - "label": "Cape Girardeau County, MO" - }, - { - "value": "CARROLL_COUNTY_MO", - "label": "Carroll County, MO" - }, - { - "value": "CARTER_COUNTY_MO", - "label": "Carter County, MO" - }, - { - "value": "CASS_COUNTY_MO", - "label": "Cass County, MO" - }, - { - "value": "CEDAR_COUNTY_MO", - "label": "Cedar County, MO" - }, - { - "value": "CHARITON_COUNTY_MO", - "label": "Chariton County, MO" - }, - { - "value": "CHRISTIAN_COUNTY_MO", - "label": "Christian County, MO" - }, - { - "value": "CLARK_COUNTY_MO", - "label": "Clark County, MO" - }, - { - "value": "CLAY_COUNTY_MO", - "label": "Clay County, MO" - }, - { - "value": "CLINTON_COUNTY_MO", - "label": "Clinton County, MO" - }, - { - "value": "COLE_COUNTY_MO", - "label": "Cole County, MO" - }, - { - "value": "COOPER_COUNTY_MO", - "label": "Cooper County, MO" - }, - { - "value": "CRAWFORD_COUNTY_MO", - "label": "Crawford County, MO" - }, - { - "value": "DADE_COUNTY_MO", - "label": "Dade County, MO" - }, - { - "value": "DALLAS_COUNTY_MO", - "label": "Dallas County, MO" - }, - { - "value": "DAVIESS_COUNTY_MO", - "label": "Daviess County, MO" - }, - { - "value": "DEKALB_COUNTY_MO", - "label": "DeKalb County, MO" - }, - { - "value": "DENT_COUNTY_MO", - "label": "Dent County, MO" - }, - { - "value": "DOUGLAS_COUNTY_MO", - "label": "Douglas County, MO" - }, - { - "value": "DUNKLIN_COUNTY_MO", - "label": "Dunklin County, MO" - }, - { - "value": "FRANKLIN_COUNTY_MO", - "label": "Franklin County, MO" - }, - { - "value": "GASCONADE_COUNTY_MO", - "label": "Gasconade County, MO" - }, - { - "value": "GENTRY_COUNTY_MO", - "label": "Gentry County, MO" - }, - { - "value": "GREENE_COUNTY_MO", - "label": "Greene County, MO" - }, - { - "value": "GRUNDY_COUNTY_MO", - "label": "Grundy County, MO" - }, - { - "value": "HARRISON_COUNTY_MO", - "label": "Harrison County, MO" - }, - { - "value": "HENRY_COUNTY_MO", - "label": "Henry County, MO" - }, - { - "value": "HICKORY_COUNTY_MO", - "label": "Hickory County, MO" - }, - { - "value": "HOLT_COUNTY_MO", - "label": "Holt County, MO" - }, - { - "value": "HOWARD_COUNTY_MO", - "label": "Howard County, MO" - }, - { - "value": "HOWELL_COUNTY_MO", - "label": "Howell County, MO" - }, - { - "value": "IRON_COUNTY_MO", - "label": "Iron County, MO" - }, - { - "value": "JACKSON_COUNTY_MO", - "label": "Jackson County, MO" - }, - { - "value": "JASPER_COUNTY_MO", - "label": "Jasper County, MO" - }, - { - "value": "JEFFERSON_COUNTY_MO", - "label": "Jefferson County, MO" - }, - { - "value": "JOHNSON_COUNTY_MO", - "label": "Johnson County, MO" - }, - { - "value": "KNOX_COUNTY_MO", - "label": "Knox County, MO" - }, - { - "value": "LACLEDE_COUNTY_MO", - "label": "Laclede County, MO" - }, - { - "value": "LAFAYETTE_COUNTY_MO", - "label": "Lafayette County, MO" - }, - { - "value": "LAWRENCE_COUNTY_MO", - "label": "Lawrence County, MO" - }, - { - "value": "LEWIS_COUNTY_MO", - "label": "Lewis County, MO" - }, - { - "value": "LINCOLN_COUNTY_MO", - "label": "Lincoln County, MO" - }, - { - "value": "LINN_COUNTY_MO", - "label": "Linn County, MO" - }, - { - "value": "LIVINGSTON_COUNTY_MO", - "label": "Livingston County, MO" - }, - { - "value": "MACON_COUNTY_MO", - "label": "Macon County, MO" - }, - { - "value": "MADISON_COUNTY_MO", - "label": "Madison County, MO" - }, - { - "value": "MARIES_COUNTY_MO", - "label": "Maries County, MO" - }, - { - "value": "MARION_COUNTY_MO", - "label": "Marion County, MO" - }, - { - "value": "MCDONALD_COUNTY_MO", - "label": "McDonald County, MO" - }, - { - "value": "MERCER_COUNTY_MO", - "label": "Mercer County, MO" - }, - { - "value": "MILLER_COUNTY_MO", - "label": "Miller County, MO" - }, - { - "value": "MISSISSIPPI_COUNTY_MO", - "label": "Mississippi County, MO" - }, - { - "value": "MONITEAU_COUNTY_MO", - "label": "Moniteau County, MO" - }, - { - "value": "MONROE_COUNTY_MO", - "label": "Monroe County, MO" - }, - { - "value": "MONTGOMERY_COUNTY_MO", - "label": "Montgomery County, MO" - }, - { - "value": "MORGAN_COUNTY_MO", - "label": "Morgan County, MO" - }, - { - "value": "NEW_MADRID_COUNTY_MO", - "label": "New Madrid County, MO" - }, - { - "value": "NEWTON_COUNTY_MO", - "label": "Newton County, MO" - }, - { - "value": "NODAWAY_COUNTY_MO", - "label": "Nodaway County, MO" - }, - { - "value": "OREGON_COUNTY_MO", - "label": "Oregon County, MO" - }, - { - "value": "OSAGE_COUNTY_MO", - "label": "Osage County, MO" - }, - { - "value": "OZARK_COUNTY_MO", - "label": "Ozark County, MO" - }, - { - "value": "PEMISCOT_COUNTY_MO", - "label": "Pemiscot County, MO" - }, - { - "value": "PERRY_COUNTY_MO", - "label": "Perry County, MO" - }, - { - "value": "PETTIS_COUNTY_MO", - "label": "Pettis County, MO" - }, - { - "value": "PHELPS_COUNTY_MO", - "label": "Phelps County, MO" - }, - { - "value": "PIKE_COUNTY_MO", - "label": "Pike County, MO" - }, - { - "value": "PLATTE_COUNTY_MO", - "label": "Platte County, MO" - }, - { - "value": "POLK_COUNTY_MO", - "label": "Polk County, MO" - }, - { - "value": "PULASKI_COUNTY_MO", - "label": "Pulaski County, MO" - }, - { - "value": "PUTNAM_COUNTY_MO", - "label": "Putnam County, MO" - }, - { - "value": "RALLS_COUNTY_MO", - "label": "Ralls County, MO" - }, - { - "value": "RANDOLPH_COUNTY_MO", - "label": "Randolph County, MO" - }, - { - "value": "RAY_COUNTY_MO", - "label": "Ray County, MO" - }, - { - "value": "REYNOLDS_COUNTY_MO", - "label": "Reynolds County, MO" - }, - { - "value": "RIPLEY_COUNTY_MO", - "label": "Ripley County, MO" - }, - { - "value": "SALINE_COUNTY_MO", - "label": "Saline County, MO" - }, - { - "value": "SCHUYLER_COUNTY_MO", - "label": "Schuyler County, MO" - }, - { - "value": "SCOTLAND_COUNTY_MO", - "label": "Scotland County, MO" - }, - { - "value": "SCOTT_COUNTY_MO", - "label": "Scott County, MO" - }, - { - "value": "SHANNON_COUNTY_MO", - "label": "Shannon County, MO" - }, - { - "value": "SHELBY_COUNTY_MO", - "label": "Shelby County, MO" - }, - { - "value": "ST_CHARLES_COUNTY_MO", - "label": "St. Charles County, MO" - }, - { - "value": "ST_CLAIR_COUNTY_MO", - "label": "St. Clair County, MO" - }, - { - "value": "ST_FRANCOIS_COUNTY_MO", - "label": "St. Francois County, MO" - }, - { - "value": "ST_LOUIS_COUNTY_MO", - "label": "St. Louis County, MO" - }, - { - "value": "ST_LOUIS_CITY_MO", - "label": "St. Louis city, MO" - }, - { - "value": "STE_GENEVIEVE_COUNTY_MO", - "label": "Ste. Genevieve County, MO" - }, - { - "value": "STODDARD_COUNTY_MO", - "label": "Stoddard County, MO" - }, - { - "value": "STONE_COUNTY_MO", - "label": "Stone County, MO" - }, - { - "value": "SULLIVAN_COUNTY_MO", - "label": "Sullivan County, MO" - }, - { - "value": "TANEY_COUNTY_MO", - "label": "Taney County, MO" - }, - { - "value": "TEXAS_COUNTY_MO", - "label": "Texas County, MO" - }, - { - "value": "VERNON_COUNTY_MO", - "label": "Vernon County, MO" - }, - { - "value": "WARREN_COUNTY_MO", - "label": "Warren County, MO" - }, - { - "value": "WASHINGTON_COUNTY_MO", - "label": "Washington County, MO" - }, - { - "value": "WAYNE_COUNTY_MO", - "label": "Wayne County, MO" - }, - { - "value": "WEBSTER_COUNTY_MO", - "label": "Webster County, MO" - }, - { - "value": "WORTH_COUNTY_MO", - "label": "Worth County, MO" - }, - { - "value": "WRIGHT_COUNTY_MO", - "label": "Wright County, MO" - }, - { - "value": "ALCORN_COUNTY_MS", - "label": "Alcorn County, MS" - }, - { - "value": "AMITE_COUNTY_MS", - "label": "Amite County, MS" - }, - { - "value": "ATTALA_COUNTY_MS", - "label": "Attala County, MS" - }, - { - "value": "BENTON_COUNTY_MS", - "label": "Benton County, MS" - }, - { - "value": "BOLIVAR_COUNTY_MS", - "label": "Bolivar County, MS" - }, - { - "value": "CALHOUN_COUNTY_MS", - "label": "Calhoun County, MS" - }, - { - "value": "CARROLL_COUNTY_MS", - "label": "Carroll County, MS" - }, - { - "value": "CHICKASAW_COUNTY_MS", - "label": "Chickasaw County, MS" - }, - { - "value": "CLAIBORNE_COUNTY_MS", - "label": "Claiborne County, MS" - }, - { - "value": "CLARKE_COUNTY_MS", - "label": "Clarke County, MS" - }, - { - "value": "CLAY_COUNTY_MS", - "label": "Clay County, MS" - }, - { - "value": "COAHOMA_COUNTY_MS", - "label": "Coahoma County, MS" - }, - { - "value": "COLBERT_COUNTY_MS", - "label": "Colbert County, MS" - }, - { - "value": "COPIAH_COUNTY_MS", - "label": "Copiah County, MS" - }, - { - "value": "COVINGTON_COUNTY_MS", - "label": "Covington County, MS" - }, - { - "value": "DESOTO_COUNTY_MS", - "label": "DeSoto County, MS" - }, - { - "value": "DESHA_COUNTY_MS", - "label": "Desha County, MS" - }, - { - "value": "FORREST_COUNTY_MS", - "label": "Forrest County, MS" - }, - { - "value": "FRANKLIN_COUNTY_MS", - "label": "Franklin County, MS" - }, - { - "value": "GEORGE_COUNTY_MS", - "label": "George County, MS" - }, - { - "value": "GREENE_COUNTY_MS", - "label": "Greene County, MS" - }, - { - "value": "GRENADA_COUNTY_MS", - "label": "Grenada County, MS" - }, - { - "value": "HANCOCK_COUNTY_MS", - "label": "Hancock County, MS" - }, - { - "value": "HARRISON_COUNTY_MS", - "label": "Harrison County, MS" - }, - { - "value": "HINDS_COUNTY_MS", - "label": "Hinds County, MS" - }, - { - "value": "HOLMES_COUNTY_MS", - "label": "Holmes County, MS" - }, - { - "value": "HUMPHREYS_COUNTY_MS", - "label": "Humphreys County, MS" - }, - { - "value": "ISSAQUENA_COUNTY_MS", - "label": "Issaquena County, MS" - }, - { - "value": "ITAWAMBA_COUNTY_MS", - "label": "Itawamba County, MS" - }, - { - "value": "JACKSON_COUNTY_MS", - "label": "Jackson County, MS" - }, - { - "value": "JASPER_COUNTY_MS", - "label": "Jasper County, MS" - }, - { - "value": "JEFFERSON_COUNTY_MS", - "label": "Jefferson County, MS" - }, - { - "value": "JEFFERSON_DAVIS_COUNTY_MS", - "label": "Jefferson Davis County, MS" - }, - { - "value": "JONES_COUNTY_MS", - "label": "Jones County, MS" - }, - { - "value": "KEMPER_COUNTY_MS", - "label": "Kemper County, MS" - }, - { - "value": "LAFAYETTE_COUNTY_MS", - "label": "Lafayette County, MS" - }, - { - "value": "LAMAR_COUNTY_MS", - "label": "Lamar County, MS" - }, - { - "value": "LAUDERDALE_COUNTY_MS", - "label": "Lauderdale County, MS" - }, - { - "value": "LAWRENCE_COUNTY_MS", - "label": "Lawrence County, MS" - }, - { - "value": "LEAKE_COUNTY_MS", - "label": "Leake County, MS" - }, - { - "value": "LEE_COUNTY_MS", - "label": "Lee County, MS" - }, - { - "value": "LEFLORE_COUNTY_MS", - "label": "Leflore County, MS" - }, - { - "value": "LINCOLN_COUNTY_MS", - "label": "Lincoln County, MS" - }, - { - "value": "LOWNDES_COUNTY_MS", - "label": "Lowndes County, MS" - }, - { - "value": "MADISON_COUNTY_MS", - "label": "Madison County, MS" - }, - { - "value": "MARION_COUNTY_MS", - "label": "Marion County, MS" - }, - { - "value": "MARSHALL_COUNTY_MS", - "label": "Marshall County, MS" - }, - { - "value": "MONROE_COUNTY_MS", - "label": "Monroe County, MS" - }, - { - "value": "MONTGOMERY_COUNTY_MS", - "label": "Montgomery County, MS" - }, - { - "value": "NEWTON_COUNTY_MS", - "label": "Newton County, MS" - }, - { - "value": "NOXUBEE_COUNTY_MS", - "label": "Noxubee County, MS" - }, - { - "value": "OKTIBBEHA_COUNTY_MS", - "label": "Oktibbeha County, MS" - }, - { - "value": "PANOLA_COUNTY_MS", - "label": "Panola County, MS" - }, - { - "value": "PEARL_RIVER_COUNTY_MS", - "label": "Pearl River County, MS" - }, - { - "value": "PERRY_COUNTY_MS", - "label": "Perry County, MS" - }, - { - "value": "PIKE_COUNTY_MS", - "label": "Pike County, MS" - }, - { - "value": "PONTOTOC_COUNTY_MS", - "label": "Pontotoc County, MS" - }, - { - "value": "PRENTISS_COUNTY_MS", - "label": "Prentiss County, MS" - }, - { - "value": "QUITMAN_COUNTY_MS", - "label": "Quitman County, MS" - }, - { - "value": "RANKIN_COUNTY_MS", - "label": "Rankin County, MS" - }, - { - "value": "SCOTT_COUNTY_MS", - "label": "Scott County, MS" - }, - { - "value": "SHARKEY_COUNTY_MS", - "label": "Sharkey County, MS" - }, - { - "value": "SIMPSON_COUNTY_MS", - "label": "Simpson County, MS" - }, - { - "value": "SMITH_COUNTY_MS", - "label": "Smith County, MS" - }, - { - "value": "STONE_COUNTY_MS", - "label": "Stone County, MS" - }, - { - "value": "SUNFLOWER_COUNTY_MS", - "label": "Sunflower County, MS" - }, - { - "value": "TALLAHATCHIE_COUNTY_MS", - "label": "Tallahatchie County, MS" - }, - { - "value": "TATE_COUNTY_MS", - "label": "Tate County, MS" - }, - { - "value": "TIPPAH_COUNTY_MS", - "label": "Tippah County, MS" - }, - { - "value": "TISHOMINGO_COUNTY_MS", - "label": "Tishomingo County, MS" - }, - { - "value": "TUNICA_COUNTY_MS", - "label": "Tunica County, MS" - }, - { - "value": "UNION_COUNTY_MS", - "label": "Union County, MS" - }, - { - "value": "WARREN_COUNTY_MS", - "label": "Warren County, MS" - }, - { - "value": "WASHINGTON_COUNTY_MS", - "label": "Washington County, MS" - }, - { - "value": "WAYNE_COUNTY_MS", - "label": "Wayne County, MS" - }, - { - "value": "WEBSTER_COUNTY_MS", - "label": "Webster County, MS" - }, - { - "value": "WILKINSON_COUNTY_MS", - "label": "Wilkinson County, MS" - }, - { - "value": "WINSTON_COUNTY_MS", - "label": "Winston County, MS" - }, - { - "value": "YALOBUSHA_COUNTY_MS", - "label": "Yalobusha County, MS" - }, - { - "value": "YAZOO_COUNTY_MS", - "label": "Yazoo County, MS" - }, - { - "value": "BEAVERHEAD_COUNTY_MT", - "label": "Beaverhead County, MT" - }, - { - "value": "BIG_HORN_COUNTY_MT", - "label": "Big Horn County, MT" - }, - { - "value": "BLAINE_COUNTY_MT", - "label": "Blaine County, MT" - }, - { - "value": "BROADWATER_COUNTY_MT", - "label": "Broadwater County, MT" - }, - { - "value": "CARBON_COUNTY_MT", - "label": "Carbon County, MT" - }, - { - "value": "CARTER_COUNTY_MT", - "label": "Carter County, MT" - }, - { - "value": "CASCADE_COUNTY_MT", - "label": "Cascade County, MT" - }, - { - "value": "CHOUTEAU_COUNTY_MT", - "label": "Chouteau County, MT" - }, - { - "value": "CUSTER_COUNTY_MT", - "label": "Custer County, MT" - }, - { - "value": "DANIELS_COUNTY_MT", - "label": "Daniels County, MT" - }, - { - "value": "DAWSON_COUNTY_MT", - "label": "Dawson County, MT" - }, - { - "value": "DEER_LODGE_COUNTY_MT", - "label": "Deer Lodge County, MT" - }, - { - "value": "FALLON_COUNTY_MT", - "label": "Fallon County, MT" - }, - { - "value": "FERGUS_COUNTY_MT", - "label": "Fergus County, MT" - }, - { - "value": "FLATHEAD_COUNTY_MT", - "label": "Flathead County, MT" - }, - { - "value": "GALLATIN_COUNTY_MT", - "label": "Gallatin County, MT" - }, - { - "value": "GARFIELD_COUNTY_MT", - "label": "Garfield County, MT" - }, - { - "value": "GLACIER_COUNTY_MT", - "label": "Glacier County, MT" - }, - { - "value": "GOLDEN_VALLEY_COUNTY_MT", - "label": "Golden Valley County, MT" - }, - { - "value": "GRANITE_COUNTY_MT", - "label": "Granite County, MT" - }, - { - "value": "HILL_COUNTY_MT", - "label": "Hill County, MT" - }, - { - "value": "JEFFERSON_COUNTY_MT", - "label": "Jefferson County, MT" - }, - { - "value": "JUDITH_BASIN_COUNTY_MT", - "label": "Judith Basin County, MT" - }, - { - "value": "LAKE_COUNTY_MT", - "label": "Lake County, MT" - }, - { - "value": "LEWIS_AND_CLARK_COUNTY_MT", - "label": "Lewis and Clark County, MT" - }, - { - "value": "LIBERTY_COUNTY_MT", - "label": "Liberty County, MT" - }, - { - "value": "LINCOLN_COUNTY_MT", - "label": "Lincoln County, MT" - }, - { - "value": "MADISON_COUNTY_MT", - "label": "Madison County, MT" - }, - { - "value": "MCCONE_COUNTY_MT", - "label": "McCone County, MT" - }, - { - "value": "MCKENZIE_COUNTY_MT", - "label": "McKenzie County, MT" - }, - { - "value": "MEAGHER_COUNTY_MT", - "label": "Meagher County, MT" - }, - { - "value": "MINERAL_COUNTY_MT", - "label": "Mineral County, MT" - }, - { - "value": "MISSOULA_COUNTY_MT", - "label": "Missoula County, MT" - }, - { - "value": "MUSSELSHELL_COUNTY_MT", - "label": "Musselshell County, MT" - }, - { - "value": "PARK_COUNTY_MT", - "label": "Park County, MT" - }, - { - "value": "PETROLEUM_COUNTY_MT", - "label": "Petroleum County, MT" - }, - { - "value": "PHILLIPS_COUNTY_MT", - "label": "Phillips County, MT" - }, - { - "value": "PONDERA_COUNTY_MT", - "label": "Pondera County, MT" - }, - { - "value": "POWDER_RIVER_COUNTY_MT", - "label": "Powder River County, MT" - }, - { - "value": "POWELL_COUNTY_MT", - "label": "Powell County, MT" - }, - { - "value": "PRAIRIE_COUNTY_MT", - "label": "Prairie County, MT" - }, - { - "value": "RAVALLI_COUNTY_MT", - "label": "Ravalli County, MT" - }, - { - "value": "RICHLAND_COUNTY_MT", - "label": "Richland County, MT" - }, - { - "value": "ROOSEVELT_COUNTY_MT", - "label": "Roosevelt County, MT" - }, - { - "value": "ROSEBUD_COUNTY_MT", - "label": "Rosebud County, MT" - }, - { - "value": "SANDERS_COUNTY_MT", - "label": "Sanders County, MT" - }, - { - "value": "SHERIDAN_COUNTY_MT", - "label": "Sheridan County, MT" - }, - { - "value": "SILVER_BOW_COUNTY_MT", - "label": "Silver Bow County, MT" - }, - { - "value": "STILLWATER_COUNTY_MT", - "label": "Stillwater County, MT" - }, - { - "value": "SWEET_GRASS_COUNTY_MT", - "label": "Sweet Grass County, MT" - }, - { - "value": "TETON_COUNTY_MT", - "label": "Teton County, MT" - }, - { - "value": "TOOLE_COUNTY_MT", - "label": "Toole County, MT" - }, - { - "value": "TREASURE_COUNTY_MT", - "label": "Treasure County, MT" - }, - { - "value": "VALLEY_COUNTY_MT", - "label": "Valley County, MT" - }, - { - "value": "WHEATLAND_COUNTY_MT", - "label": "Wheatland County, MT" - }, - { - "value": "WIBAUX_COUNTY_MT", - "label": "Wibaux County, MT" - }, - { - "value": "YELLOWSTONE_COUNTY_MT", - "label": "Yellowstone County, MT" - }, - { - "value": "ALAMANCE_COUNTY_NC", - "label": "Alamance County, NC" - }, - { - "value": "ALEXANDER_COUNTY_NC", - "label": "Alexander County, NC" - }, - { - "value": "ALLEGHANY_COUNTY_NC", - "label": "Alleghany County, NC" - }, - { - "value": "ANSON_COUNTY_NC", - "label": "Anson County, NC" - }, - { - "value": "ASHE_COUNTY_NC", - "label": "Ashe County, NC" - }, - { - "value": "AVERY_COUNTY_NC", - "label": "Avery County, NC" - }, - { - "value": "BEAUFORT_COUNTY_NC", - "label": "Beaufort County, NC" - }, - { - "value": "BERTIE_COUNTY_NC", - "label": "Bertie County, NC" - }, - { - "value": "BLADEN_COUNTY_NC", - "label": "Bladen County, NC" - }, - { - "value": "BRUNSWICK_COUNTY_NC", - "label": "Brunswick County, NC" - }, - { - "value": "BUNCOMBE_COUNTY_NC", - "label": "Buncombe County, NC" - }, - { - "value": "BURKE_COUNTY_NC", - "label": "Burke County, NC" - }, - { - "value": "CABARRUS_COUNTY_NC", - "label": "Cabarrus County, NC" - }, - { - "value": "CALDWELL_COUNTY_NC", - "label": "Caldwell County, NC" - }, - { - "value": "CAMDEN_COUNTY_NC", - "label": "Camden County, NC" - }, - { - "value": "CARTERET_COUNTY_NC", - "label": "Carteret County, NC" - }, - { - "value": "CASWELL_COUNTY_NC", - "label": "Caswell County, NC" - }, - { - "value": "CATAWBA_COUNTY_NC", - "label": "Catawba County, NC" - }, - { - "value": "CHATHAM_COUNTY_NC", - "label": "Chatham County, NC" - }, - { - "value": "CHEROKEE_COUNTY_NC", - "label": "Cherokee County, NC" - }, - { - "value": "CHOWAN_COUNTY_NC", - "label": "Chowan County, NC" - }, - { - "value": "CLAY_COUNTY_NC", - "label": "Clay County, NC" - }, - { - "value": "CLEVELAND_COUNTY_NC", - "label": "Cleveland County, NC" - }, - { - "value": "COLUMBUS_COUNTY_NC", - "label": "Columbus County, NC" - }, - { - "value": "CRAVEN_COUNTY_NC", - "label": "Craven County, NC" - }, - { - "value": "CUMBERLAND_COUNTY_NC", - "label": "Cumberland County, NC" - }, - { - "value": "CURRITUCK_COUNTY_NC", - "label": "Currituck County, NC" - }, - { - "value": "DARE_COUNTY_NC", - "label": "Dare County, NC" - }, - { - "value": "DAVIDSON_COUNTY_NC", - "label": "Davidson County, NC" - }, - { - "value": "DAVIE_COUNTY_NC", - "label": "Davie County, NC" - }, - { - "value": "DUPLIN_COUNTY_NC", - "label": "Duplin County, NC" - }, - { - "value": "DURHAM_COUNTY_NC", - "label": "Durham County, NC" - }, - { - "value": "EDGECOMBE_COUNTY_NC", - "label": "Edgecombe County, NC" - }, - { - "value": "FORSYTH_COUNTY_NC", - "label": "Forsyth County, NC" - }, - { - "value": "FRANKLIN_COUNTY_NC", - "label": "Franklin County, NC" - }, - { - "value": "GASTON_COUNTY_NC", - "label": "Gaston County, NC" - }, - { - "value": "GATES_COUNTY_NC", - "label": "Gates County, NC" - }, - { - "value": "GRAHAM_COUNTY_NC", - "label": "Graham County, NC" - }, - { - "value": "GRANVILLE_COUNTY_NC", - "label": "Granville County, NC" - }, - { - "value": "GREENE_COUNTY_NC", - "label": "Greene County, NC" - }, - { - "value": "GUILFORD_COUNTY_NC", - "label": "Guilford County, NC" - }, - { - "value": "HALIFAX_COUNTY_NC", - "label": "Halifax County, NC" - }, - { - "value": "HARNETT_COUNTY_NC", - "label": "Harnett County, NC" - }, - { - "value": "HAYWOOD_COUNTY_NC", - "label": "Haywood County, NC" - }, - { - "value": "HENDERSON_COUNTY_NC", - "label": "Henderson County, NC" - }, - { - "value": "HERTFORD_COUNTY_NC", - "label": "Hertford County, NC" - }, - { - "value": "HOKE_COUNTY_NC", - "label": "Hoke County, NC" - }, - { - "value": "HYDE_COUNTY_NC", - "label": "Hyde County, NC" - }, - { - "value": "IREDELL_COUNTY_NC", - "label": "Iredell County, NC" - }, - { - "value": "JACKSON_COUNTY_NC", - "label": "Jackson County, NC" - }, - { - "value": "JOHNSTON_COUNTY_NC", - "label": "Johnston County, NC" - }, - { - "value": "JONES_COUNTY_NC", - "label": "Jones County, NC" - }, - { - "value": "LEE_COUNTY_NC", - "label": "Lee County, NC" - }, - { - "value": "LENOIR_COUNTY_NC", - "label": "Lenoir County, NC" - }, - { - "value": "LINCOLN_COUNTY_NC", - "label": "Lincoln County, NC" - }, - { - "value": "MACON_COUNTY_NC", - "label": "Macon County, NC" - }, - { - "value": "MADISON_COUNTY_NC", - "label": "Madison County, NC" - }, - { - "value": "MARTIN_COUNTY_NC", - "label": "Martin County, NC" - }, - { - "value": "MCDOWELL_COUNTY_NC", - "label": "McDowell County, NC" - }, - { - "value": "MECKLENBURG_COUNTY_NC", - "label": "Mecklenburg County, NC" - }, - { - "value": "MITCHELL_COUNTY_NC", - "label": "Michell County, NC" - }, - { - "value": "MONTGOMERY_COUNTY_NC", - "label": "Montgomery County, NC" - }, - { - "value": "MOORE_COUNTY_NC", - "label": "Moore County, NC" - }, - { - "value": "NASH_COUNTY_NC", - "label": "Nash County, NC" - }, - { - "value": "NEW_HANOVER_COUNTY_NC", - "label": "New Hanover County, NC" - }, - { - "value": "NORTHAMPTON_COUNTY_NC", - "label": "Northampton County, NC" - }, - { - "value": "ONSLOW_COUNTY_NC", - "label": "Onslow County, NC" - }, - { - "value": "ORANGE_COUNTY_NC", - "label": "Orange County, NC" - }, - { - "value": "PAMLICO_COUNTY_NC", - "label": "Pamlico County, NC" - }, - { - "value": "PASQUOTANK_COUNTY_NC", - "label": "Pasquotank County, NC" - }, - { - "value": "PENDER_COUNTY_NC", - "label": "Pender County, NC" - }, - { - "value": "PERQUIMANS_COUNTY_NC", - "label": "Perquimans County, NC" - }, - { - "value": "PERSON_COUNTY_NC", - "label": "Person County, NC" - }, - { - "value": "PITT_COUNTY_NC", - "label": "Pitt County, NC" - }, - { - "value": "POLK_COUNTY_NC", - "label": "Polk County, NC" - }, - { - "value": "RANDOLPH_COUNTY_NC", - "label": "Randolph County, NC" - }, - { - "value": "RICHMOND_COUNTY_NC", - "label": "Richmond County, NC" - }, - { - "value": "ROBESON_COUNTY_NC", - "label": "Robeson County, NC" - }, - { - "value": "ROCKINGHAM_COUNTY_NC", - "label": "Rockingham County, NC" - }, - { - "value": "ROWAN_COUNTY_NC", - "label": "Rowan County, NC" - }, - { - "value": "RUTHERFORD_COUNTY_NC", - "label": "Rutherford County, NC" - }, - { - "value": "SAMPSON_COUNTY_NC", - "label": "Sampson County, NC" - }, - { - "value": "SCOTLAND_COUNTY_NC", - "label": "Scotland County, NC" - }, - { - "value": "STANLY_COUNTY_NC", - "label": "Stanly County, NC" - }, - { - "value": "STOKES_COUNTY_NC", - "label": "Stokes County, NC" - }, - { - "value": "SURRY_COUNTY_NC", - "label": "Surry County, NC" - }, - { - "value": "SWAIN_COUNTY_NC", - "label": "Swain County, NC" - }, - { - "value": "TRANSYLVANIA_COUNTY_NC", - "label": "Transylvania County, NC" - }, - { - "value": "TYRRELL_COUNTY_NC", - "label": "Tyrrell County, NC" - }, - { - "value": "UNION_COUNTY_NC", - "label": "Union County, NC" - }, - { - "value": "VANCE_COUNTY_NC", - "label": "Vance County, NC" - }, - { - "value": "WAKE_COUNTY_NC", - "label": "Wake County, NC" - }, - { - "value": "WARREN_COUNTY_NC", - "label": "Warren County, NC" - }, - { - "value": "WASHINGTON_COUNTY_NC", - "label": "Washington County, NC" - }, - { - "value": "WATAUGA_COUNTY_NC", - "label": "Watauga County, NC" - }, - { - "value": "WAYNE_COUNTY_NC", - "label": "Wayne County, NC" - }, - { - "value": "WILKES_COUNTY_NC", - "label": "Wilkes County, NC" - }, - { - "value": "WILSON_COUNTY_NC", - "label": "Wilson County, NC" - }, - { - "value": "YADKIN_COUNTY_NC", - "label": "Yadkin County, NC" - }, - { - "value": "YANCEY_COUNTY_NC", - "label": "Yancey County, NC" - }, - { - "value": "ADAMS_COUNTY_ND", - "label": "Adams County, ND" - }, - { - "value": "BARNES_COUNTY_ND", - "label": "Barnes County, ND" - }, - { - "value": "BENSON_COUNTY_ND", - "label": "Benson County, ND" - }, - { - "value": "BILLINGS_COUNTY_ND", - "label": "Billings County, ND" - }, - { - "value": "BOTTINEAU_COUNTY_ND", - "label": "Bottineau County, ND" - }, - { - "value": "BOWMAN_COUNTY_ND", - "label": "Bowman County, ND" - }, - { - "value": "BURKE_COUNTY_ND", - "label": "Burke County, ND" - }, - { - "value": "BURLEIGH_COUNTY_ND", - "label": "Burleigh County, ND" - }, - { - "value": "CASS_COUNTY_ND", - "label": "Cass County, ND" - }, - { - "value": "CAVALIER_COUNTY_ND", - "label": "Cavalier County, ND" - }, - { - "value": "DICKEY_COUNTY_ND", - "label": "Dickey County, ND" - }, - { - "value": "DIVIDE_COUNTY_ND", - "label": "Divide County, ND" - }, - { - "value": "DUNN_COUNTY_ND", - "label": "Dunn County, ND" - }, - { - "value": "EDDY_COUNTY_ND", - "label": "Eddy County, ND" - }, - { - "value": "EMMONS_COUNTY_ND", - "label": "Emmons County, ND" - }, - { - "value": "FOSTER_COUNTY_ND", - "label": "Foster County, ND" - }, - { - "value": "GOLDEN_VALLEY_COUNTY_ND", - "label": "Golden Valley County, ND" - }, - { - "value": "GRAND_FORKS_COUNTY_ND", - "label": "Grand Forks County, ND" - }, - { - "value": "GRANT_COUNTY_ND", - "label": "Grant County, ND" - }, - { - "value": "GRIGGS_COUNTY_ND", - "label": "Griggs County, ND" - }, - { - "value": "HARDING_COUNTY_ND", - "label": "Harding County, ND" - }, - { - "value": "HETTINGER_COUNTY_ND", - "label": "Hettinger County, ND" - }, - { - "value": "KIDDER_COUNTY_ND", - "label": "Kidder County, ND" - }, - { - "value": "LAMOURE_COUNTY_ND", - "label": "LaMoure County, ND" - }, - { - "value": "LOGAN_COUNTY_ND", - "label": "Logan County, ND" - }, - { - "value": "MARSHALL_COUNTY_ND", - "label": "Marshall County, ND" - }, - { - "value": "MCHENRY_COUNTY_ND", - "label": "McHenry County, ND" - }, - { - "value": "MCINTOSH_COUNTY_ND", - "label": "McIntosh County, ND" - }, - { - "value": "MCKENZIE_COUNTY_ND", - "label": "McKenzie County, ND" - }, - { - "value": "MCLEAN_COUNTY_ND", - "label": "McLean County, ND" - }, - { - "value": "MERCER_COUNTY_ND", - "label": "Mercer County, ND" - }, - { - "value": "MORTON_COUNTY_ND", - "label": "Morton County, ND" - }, - { - "value": "MOUNTRAIL_COUNTY_ND", - "label": "Mountrail County, ND" - }, - { - "value": "NELSON_COUNTY_ND", - "label": "Nelson County, ND" - }, - { - "value": "OLIVER_COUNTY_ND", - "label": "Oliver County, ND" - }, - { - "value": "PEMBINA_COUNTY_ND", - "label": "Pembina County, ND" - }, - { - "value": "PERKINS_COUNTY_ND", - "label": "Perkins County, ND" - }, - { - "value": "PIERCE_COUNTY_ND", - "label": "Pierce County, ND" - }, - { - "value": "RAMSEY_COUNTY_ND", - "label": "Ramsey County, ND" - }, - { - "value": "RANSOM_COUNTY_ND", - "label": "Ransom County, ND" - }, - { - "value": "RENVILLE_COUNTY_ND", - "label": "Renville County, ND" - }, - { - "value": "RICHLAND_COUNTY_ND", - "label": "Richland County, ND" - }, - { - "value": "ROLETTE_COUNTY_ND", - "label": "Rolette County, ND" - }, - { - "value": "SARGENT_COUNTY_ND", - "label": "Sargent County, ND" - }, - { - "value": "SHERIDAN_COUNTY_ND", - "label": "Sheridan County, ND" - }, - { - "value": "SIOUX_COUNTY_ND", - "label": "Sioux County, ND" - }, - { - "value": "SLOPE_COUNTY_ND", - "label": "Slope County, ND" - }, - { - "value": "STARK_COUNTY_ND", - "label": "Stark County, ND" - }, - { - "value": "STEELE_COUNTY_ND", - "label": "Steele County, ND" - }, - { - "value": "STUTSMAN_COUNTY_ND", - "label": "Stutsman County, ND" - }, - { - "value": "TOWNER_COUNTY_ND", - "label": "Towner County, ND" - }, - { - "value": "TRAILL_COUNTY_ND", - "label": "Traill County, ND" - }, - { - "value": "WALSH_COUNTY_ND", - "label": "Walsh County, ND" - }, - { - "value": "WARD_COUNTY_ND", - "label": "Ward County, ND" - }, - { - "value": "WELLS_COUNTY_ND", - "label": "Wells County, ND" - }, - { - "value": "WILLIAMS_COUNTY_ND", - "label": "Williams County, ND" - }, - { - "value": "ADAMS_COUNTY_NE", - "label": "Adams County, NE" - }, - { - "value": "ANTELOPE_COUNTY_NE", - "label": "Antelope County, NE" - }, - { - "value": "ARTHUR_COUNTY_NE", - "label": "Arthur County, NE" - }, - { - "value": "BANNER_COUNTY_NE", - "label": "Banner County, NE" - }, - { - "value": "BLAINE_COUNTY_NE", - "label": "Blaine County, NE" - }, - { - "value": "BOONE_COUNTY_NE", - "label": "Boone County, NE" - }, - { - "value": "BOX_BUTTE_COUNTY_NE", - "label": "Box Butte County, NE" - }, - { - "value": "BOYD_COUNTY_NE", - "label": "Boyd County, NE" - }, - { - "value": "BROWN_COUNTY_NE", - "label": "Brown County, NE" - }, - { - "value": "BUFFALO_COUNTY_NE", - "label": "Buffalo County, NE" - }, - { - "value": "BURT_COUNTY_NE", - "label": "Burt County, NE" - }, - { - "value": "BUTLER_COUNTY_NE", - "label": "Butler County, NE" - }, - { - "value": "CASS_COUNTY_NE", - "label": "Cass County, NE" - }, - { - "value": "CEDAR_COUNTY_NE", - "label": "Cedar County, NE" - }, - { - "value": "CHASE_COUNTY_NE", - "label": "Chase County, NE" - }, - { - "value": "CHERRY_COUNTY_NE", - "label": "Cherry County, NE" - }, - { - "value": "CHEYENNE_COUNTY_NE", - "label": "Cheyenne County, NE" - }, - { - "value": "CLAY_COUNTY_NE", - "label": "Clay County, NE" - }, - { - "value": "COLFAX_COUNTY_NE", - "label": "Colfax County, NE" - }, - { - "value": "CUMING_COUNTY_NE", - "label": "Cuming County, NE" - }, - { - "value": "CUSTER_COUNTY_NE", - "label": "Custer County, NE" - }, - { - "value": "DAKOTA_COUNTY_NE", - "label": "Dakota County, NE" - }, - { - "value": "DAWES_COUNTY_NE", - "label": "Dawes County, NE" - }, - { - "value": "DAWSON_COUNTY_NE", - "label": "Dawson County, NE" - }, - { - "value": "DECATUR_COUNTY_NE", - "label": "Decatur County, NE" - }, - { - "value": "DIXON_COUNTY_NE", - "label": "Dixon County, NE" - }, - { - "value": "DODGE_COUNTY_NE", - "label": "Dodge County, NE" - }, - { - "value": "DOUGLAS_COUNTY_NE", - "label": "Douglas County, NE" - }, - { - "value": "DUNDY_COUNTY_NE", - "label": "Dundy County, NE" - }, - { - "value": "FILLMORE_COUNTY_NE", - "label": "Fillmore County, NE" - }, - { - "value": "FRANKLIN_COUNTY_NE", - "label": "Franklin County, NE" - }, - { - "value": "FRONTIER_COUNTY_NE", - "label": "Frontier County, NE" - }, - { - "value": "FURNAS_COUNTY_NE", - "label": "Furnas County, NE" - }, - { - "value": "GAGE_COUNTY_NE", - "label": "Gage County, NE" - }, - { - "value": "GARDEN_COUNTY_NE", - "label": "Garden County, NE" - }, - { - "value": "GARFIELD_COUNTY_NE", - "label": "Garfield County, NE" - }, - { - "value": "GOSPER_COUNTY_NE", - "label": "Gosper County, NE" - }, - { - "value": "GRANT_COUNTY_NE", - "label": "Grant County, NE" - }, - { - "value": "GREELEY_COUNTY_NE", - "label": "Greeley County, NE" - }, - { - "value": "GREGORY_COUNTY_NE", - "label": "Gregory County, NE" - }, - { - "value": "HALL_COUNTY_NE", - "label": "Hall County, NE" - }, - { - "value": "HAMILTON_COUNTY_NE", - "label": "Hamilton County, NE" - }, - { - "value": "HARLAN_COUNTY_NE", - "label": "Harlan County, NE" - }, - { - "value": "HAYES_COUNTY_NE", - "label": "Hayes County, NE" - }, - { - "value": "HITCHCOCK_COUNTY_NE", - "label": "Hitchcock County, NE" - }, - { - "value": "HOLT_COUNTY_NE", - "label": "Holt County, NE" - }, - { - "value": "HOOKER_COUNTY_NE", - "label": "Hooker County, NE" - }, - { - "value": "HOWARD_COUNTY_NE", - "label": "Howard County, NE" - }, - { - "value": "JEFFERSON_COUNTY_NE", - "label": "Jefferson County, NE" - }, - { - "value": "JEWELL_COUNTY_NE", - "label": "Jewell County, NE" - }, - { - "value": "JOHNSON_COUNTY_NE", - "label": "Johnson County, NE" - }, - { - "value": "KEARNEY_COUNTY_NE", - "label": "Kearney County, NE" - }, - { - "value": "KEITH_COUNTY_NE", - "label": "Keith County, NE" - }, - { - "value": "KEYA_PAHA_COUNTY_NE", - "label": "Keya Paha County, NE" - }, - { - "value": "KIMBALL_COUNTY_NE", - "label": "Kimball County, NE" - }, - { - "value": "KNOX_COUNTY_NE", - "label": "Knox County, NE" - }, - { - "value": "LANCASTER_COUNTY_NE", - "label": "Lancaster County, NE" - }, - { - "value": "LINCOLN_COUNTY_NE", - "label": "Lincoln County, NE" - }, - { - "value": "LOUP_COUNTY_NE", - "label": "Loup County, NE" - }, - { - "value": "MADISON_COUNTY_NE", - "label": "Madison County, NE" - }, - { - "value": "MCPHERSON_COUNTY_NE", - "label": "McPherson County, NE" - }, - { - "value": "MERRICK_COUNTY_NE", - "label": "Merrick County, NE" - }, - { - "value": "MORRILL_COUNTY_NE", - "label": "Morrill County, NE" - }, - { - "value": "NANCE_COUNTY_NE", - "label": "Nance County, NE" - }, - { - "value": "NEMAHA_COUNTY_NE", - "label": "Nemaha County, NE" - }, - { - "value": "NUCKOLLS_COUNTY_NE", - "label": "Nuckolls County, NE" - }, - { - "value": "OGLALA_LAKOTA_COUNTY_NE", - "label": "Oglala Lakota County, NE" - }, - { - "value": "OTOE_COUNTY_NE", - "label": "Otoe County, NE" - }, - { - "value": "PAWNEE_COUNTY_NE", - "label": "Pawnee County, NE" - }, - { - "value": "PERKINS_COUNTY_NE", - "label": "Perkins County, NE" - }, - { - "value": "PHELPS_COUNTY_NE", - "label": "Phelps County, NE" - }, - { - "value": "PIERCE_COUNTY_NE", - "label": "Pierce County, NE" - }, - { - "value": "PLATTE_COUNTY_NE", - "label": "Platte County, NE" - }, - { - "value": "POLK_COUNTY_NE", - "label": "Polk County, NE" - }, - { - "value": "RED_WILLOW_COUNTY_NE", - "label": "Red Willow County, NE" - }, - { - "value": "RICHARDSON_COUNTY_NE", - "label": "Richardson County, NE" - }, - { - "value": "ROCK_COUNTY_NE", - "label": "Rock County, NE" - }, - { - "value": "SALINE_COUNTY_NE", - "label": "Saline County, NE" - }, - { - "value": "SARPY_COUNTY_NE", - "label": "Sarpy County, NE" - }, - { - "value": "SAUNDERS_COUNTY_NE", - "label": "Saunders County, NE" - }, - { - "value": "SCOTTS_BLUFF_COUNTY_NE", - "label": "Scotts Bluff County, NE" - }, - { - "value": "SEWARD_COUNTY_NE", - "label": "Seward County, NE" - }, - { - "value": "SHERIDAN_COUNTY_NE", - "label": "Sheridan County, NE" - }, - { - "value": "SHERMAN_COUNTY_NE", - "label": "Sherman County, NE" - }, - { - "value": "SIOUX_COUNTY_NE", - "label": "Sioux County, NE" - }, - { - "value": "STANTON_COUNTY_NE", - "label": "Stanton County, NE" - }, - { - "value": "THAYER_COUNTY_NE", - "label": "Thayer County, NE" - }, - { - "value": "THOMAS_COUNTY_NE", - "label": "Thomas County, NE" - }, - { - "value": "THURSTON_COUNTY_NE", - "label": "Thurston County, NE" - }, - { - "value": "TODD_COUNTY_NE", - "label": "Todd County, NE" - }, - { - "value": "VALLEY_COUNTY_NE", - "label": "Valley County, NE" - }, - { - "value": "WASHINGTON_COUNTY_NE", - "label": "Washington County, NE" - }, - { - "value": "WAYNE_COUNTY_NE", - "label": "Wayne County, NE" - }, - { - "value": "WEBSTER_COUNTY_NE", - "label": "Webster County, NE" - }, - { - "value": "WHEELER_COUNTY_NE", - "label": "Wheeler County, NE" - }, - { - "value": "YORK_COUNTY_NE", - "label": "York County, NE" - }, - { - "value": "BELKNAP_COUNTY_NH", - "label": "Belknap County, NH" - }, - { - "value": "CARROLL_COUNTY_NH", - "label": "Carroll County, NH" - }, - { - "value": "CHESHIRE_COUNTY_NH", - "label": "Cheshire County, NH" - }, - { - "value": "COOS_COUNTY_NH", - "label": "Coos County, NH" - }, - { - "value": "GRAFTON_COUNTY_NH", - "label": "Grafton County, NH" - }, - { - "value": "HILLSBOROUGH_COUNTY_NH", - "label": "Hillsborough County, NH" - }, - { - "value": "MERRIMACK_COUNTY_NH", - "label": "Merrimack County, NH" - }, - { - "value": "ROCKINGHAM_COUNTY_NH", - "label": "Rockingham County, NH" - }, - { - "value": "STRAFFORD_COUNTY_NH", - "label": "Strafford County, NH" - }, - { - "value": "SULLIVAN_COUNTY_NH", - "label": "Sullivan County, NH" - }, - { - "value": "ATLANTIC_COUNTY_NJ", - "label": "Atlantic County, NJ" - }, - { - "value": "BERGEN_COUNTY_NJ", - "label": "Bergen County, NJ" - }, - { - "value": "BURLINGTON_COUNTY_NJ", - "label": "Burlington County, NJ" - }, - { - "value": "CAMDEN_COUNTY_NJ", - "label": "Camden County, NJ" - }, - { - "value": "CAPE_MAY_COUNTY_NJ", - "label": "Cape May County, NJ" - }, - { - "value": "CUMBERLAND_COUNTY_NJ", - "label": "Cumberland County, NJ" - }, - { - "value": "ESSEX_COUNTY_NJ", - "label": "Essex County, NJ" - }, - { - "value": "GLOUCESTER_COUNTY_NJ", - "label": "Gloucester County, NJ" - }, - { - "value": "HUDSON_COUNTY_NJ", - "label": "Hudson County, NJ" - }, - { - "value": "HUNTERDON_COUNTY_NJ", - "label": "Hunterdon County, NJ" - }, - { - "value": "MERCER_COUNTY_NJ", - "label": "Mercer County, NJ" - }, - { - "value": "MIDDLESEX_COUNTY_NJ", - "label": "Middlesex County, NJ" - }, - { - "value": "MONMOUTH_COUNTY_NJ", - "label": "Monmouth County, NJ" - }, - { - "value": "MORRIS_COUNTY_NJ", - "label": "Morris County, NJ" - }, - { - "value": "OCEAN_COUNTY_NJ", - "label": "Ocean County, NJ" - }, - { - "value": "PASSAIC_COUNTY_NJ", - "label": "Passaic County, NJ" - }, - { - "value": "SALEM_COUNTY_NJ", - "label": "Salem County, NJ" - }, - { - "value": "SOMERSET_COUNTY_NJ", - "label": "Somerset County, NJ" - }, - { - "value": "SUSSEX_COUNTY_NJ", - "label": "Sussex County, NJ" - }, - { - "value": "UNION_COUNTY_NJ", - "label": "Union County, NJ" - }, - { - "value": "WARREN_COUNTY_NJ", - "label": "Warren County, NJ" - }, - { - "value": "APACHE_COUNTY_NM", - "label": "Apache County, NM" - }, - { - "value": "BERNALILLO_COUNTY_NM", - "label": "Bernalillo County, NM" - }, - { - "value": "CATRON_COUNTY_NM", - "label": "Catron County, NM" - }, - { - "value": "CHAVES_COUNTY_NM", - "label": "Chaves County, NM" - }, - { - "value": "CIBOLA_COUNTY_NM", - "label": "Cibola County, NM" - }, - { - "value": "COLFAX_COUNTY_NM", - "label": "Colfax County, NM" - }, - { - "value": "CURRY_COUNTY_NM", - "label": "Curry County, NM" - }, - { - "value": "DE_BACA_COUNTY_NM", - "label": "De Baca County, NM" - }, - { - "value": "DOÑA_ANA_COUNTY_NM", - "label": "Doña Ana County, NM" - }, - { - "value": "EDDY_COUNTY_NM", - "label": "Eddy County, NM" - }, - { - "value": "GRANT_COUNTY_NM", - "label": "Grant County, NM" - }, - { - "value": "GUADALUPE_COUNTY_NM", - "label": "Guadalupe County, NM" - }, - { - "value": "HARDING_COUNTY_NM", - "label": "Harding County, NM" - }, - { - "value": "HIDALGO_COUNTY_NM", - "label": "Hidalgo County, NM" - }, - { - "value": "LEA_COUNTY_NM", - "label": "Lea County, NM" - }, - { - "value": "LINCOLN_COUNTY_NM", - "label": "Lincoln County, NM" - }, - { - "value": "LUNA_COUNTY_NM", - "label": "Luna County, NM" - }, - { - "value": "MCKINLEY_COUNTY_NM", - "label": "McKinley County, NM" - }, - { - "value": "MORA_COUNTY_NM", - "label": "Mora County, NM" - }, - { - "value": "OLDHAM_COUNTY_NM", - "label": "Oldham County, NM" - }, - { - "value": "OTERO_COUNTY_NM", - "label": "Otero County, NM" - }, - { - "value": "QUAY_COUNTY_NM", - "label": "Quay County, NM" - }, - { - "value": "RIO_ARRIBA_COUNTY_NM", - "label": "Rio Arriba County, NM" - }, - { - "value": "ROOSEVELT_COUNTY_NM", - "label": "Roosevelt County, NM" - }, - { - "value": "SAN_JUAN_COUNTY_NM", - "label": "San Juan County, NM" - }, - { - "value": "SAN_MIGUEL_COUNTY_NM", - "label": "San Miguel County, NM" - }, - { - "value": "SANDOVAL_COUNTY_NM", - "label": "Sandoval County, NM" - }, - { - "value": "SANTA_FE_COUNTY_NM", - "label": "Santa Fe County, NM" - }, - { - "value": "SIERRA_COUNTY_NM", - "label": "Sierra County, NM" - }, - { - "value": "SOCORRO_COUNTY_NM", - "label": "Socorro County, NM" - }, - { - "value": "TAOS_COUNTY_NM", - "label": "Taos County, NM" - }, - { - "value": "TORRANCE_COUNTY_NM", - "label": "Torrance County, NM" - }, - { - "value": "UNION_COUNTY_NM", - "label": "Union County, NM" - }, - { - "value": "VALENCIA_COUNTY_NM", - "label": "Valencia County, NM" - }, - { - "value": "CARSON_CITY_NV", - "label": "Carson City, NV" - }, - { - "value": "CLARK_COUNTY_NV", - "label": "Clark County, NV" - }, - { - "value": "DOUGLAS_COUNTY_NV", - "label": "Douglas County, NV" - }, - { - "value": "ELKO_COUNTY_NV", - "label": "Elko County, NV" - }, - { - "value": "ESMERALDA_COUNTY_NV", - "label": "Esmeralda County, NV" - }, - { - "value": "EUREKA_COUNTY_NV", - "label": "Eureka County, NV" - }, - { - "value": "HUMBOLDT_COUNTY_NV", - "label": "Humboldt County, NV" - }, - { - "value": "INYO_COUNTY_NV", - "label": "Inyo County, NV" - }, - { - "value": "LANDER_COUNTY_NV", - "label": "Lander County, NV" - }, - { - "value": "LINCOLN_COUNTY_NV", - "label": "Lincoln County, NV" - }, - { - "value": "LYON_COUNTY_NV", - "label": "Lyon County, NV" - }, - { - "value": "MINERAL_COUNTY_NV", - "label": "Mineral County, NV" - }, - { - "value": "NYE_COUNTY_NV", - "label": "Nye County, NV" - }, - { - "value": "PERSHING_COUNTY_NV", - "label": "Pershing County, NV" - }, - { - "value": "STOREY_COUNTY_NV", - "label": "Storey County, NV" - }, - { - "value": "WASHOE_COUNTY_NV", - "label": "Washoe County, NV" - }, - { - "value": "WHITE_PINE_COUNTY_NV", - "label": "White Pine County, NV" - }, - { - "value": "ALBANY_COUNTY_NY", - "label": "Albany County, NY" - }, - { - "value": "ALLEGANY_COUNTY_NY", - "label": "Allegany County, NY" - }, - { - "value": "BRONX_COUNTY_NY", - "label": "Bronx County, NY" - }, - { - "value": "BROOME_COUNTY_NY", - "label": "Broome County, NY" - }, - { - "value": "CATTARAUGUS_COUNTY_NY", - "label": "Cattaraugus County, NY" - }, - { - "value": "CAYUGA_COUNTY_NY", - "label": "Cayuga County, NY" - }, - { - "value": "CHAUTAUQUA_COUNTY_NY", - "label": "Chautauqua County, NY" - }, - { - "value": "CHEMUNG_COUNTY_NY", - "label": "Chemung County, NY" - }, - { - "value": "CHENANGO_COUNTY_NY", - "label": "Chenango County, NY" - }, - { - "value": "CLINTON_COUNTY_NY", - "label": "Clinton County, NY" - }, - { - "value": "COLUMBIA_COUNTY_NY", - "label": "Columbia County, NY" - }, - { - "value": "CORTLAND_COUNTY_NY", - "label": "Cortland County, NY" - }, - { - "value": "DELAWARE_COUNTY_NY", - "label": "Delaware County, NY" - }, - { - "value": "DUTCHESS_COUNTY_NY", - "label": "Dutchess County, NY" - }, - { - "value": "ERIE_COUNTY_NY", - "label": "Erie County, NY" - }, - { - "value": "ESSEX_COUNTY_NY", - "label": "Essex County, NY" - }, - { - "value": "FRANKLIN_COUNTY_NY", - "label": "Franklin County, NY" - }, - { - "value": "FULTON_COUNTY_NY", - "label": "Fulton County, NY" - }, - { - "value": "GENESEE_COUNTY_NY", - "label": "Genesee County, NY" - }, - { - "value": "GREENE_COUNTY_NY", - "label": "Greene County, NY" - }, - { - "value": "HAMILTON_COUNTY_NY", - "label": "Hamilton County, NY" - }, - { - "value": "HERKIMER_COUNTY_NY", - "label": "Herkimer County, NY" - }, - { - "value": "JEFFERSON_COUNTY_NY", - "label": "Jefferson County, NY" - }, - { - "value": "KINGS_COUNTY_NY", - "label": "Kings County, NY" - }, - { - "value": "LEWIS_COUNTY_NY", - "label": "Lewis County, NY" - }, - { - "value": "LIVINGSTON_COUNTY_NY", - "label": "Livingston County, NY" - }, - { - "value": "MADISON_COUNTY_NY", - "label": "Madison County, NY" - }, - { - "value": "MONROE_COUNTY_NY", - "label": "Monroe County, NY" - }, - { - "value": "MONTGOMERY_COUNTY_NY", - "label": "Montgomery County, NY" - }, - { - "value": "NASSAU_COUNTY_NY", - "label": "Nassau County, NY" - }, - { - "value": "NEW_YORK_COUNTY_NY", - "label": "New York County, NY" - }, - { - "value": "NIAGARA_COUNTY_NY", - "label": "Niagara County, NY" - }, - { - "value": "ONEIDA_COUNTY_NY", - "label": "Oneida County, NY" - }, - { - "value": "ONONDAGA_COUNTY_NY", - "label": "Onondaga County, NY" - }, - { - "value": "ONTARIO_COUNTY_NY", - "label": "Ontario County, NY" - }, - { - "value": "ORANGE_COUNTY_NY", - "label": "Orange County, NY" - }, - { - "value": "ORLEANS_COUNTY_NY", - "label": "Orleans County, NY" - }, - { - "value": "OSWEGO_COUNTY_NY", - "label": "Oswego County, NY" - }, - { - "value": "OTSEGO_COUNTY_NY", - "label": "Otsego County, NY" - }, - { - "value": "PUTNAM_COUNTY_NY", - "label": "Putnam County, NY" - }, - { - "value": "QUEENS_COUNTY_NY", - "label": "Queens County, NY" - }, - { - "value": "RENSSELAER_COUNTY_NY", - "label": "Rensselaer County, NY" - }, - { - "value": "RICHMOND_COUNTY_NY", - "label": "Richmond County, NY" - }, - { - "value": "ROCKLAND_COUNTY_NY", - "label": "Rockland County, NY" - }, - { - "value": "SARATOGA_COUNTY_NY", - "label": "Saratoga County, NY" - }, - { - "value": "SCHENECTADY_COUNTY_NY", - "label": "Schenectady County, NY" - }, - { - "value": "SCHOHARIE_COUNTY_NY", - "label": "Schoharie County, NY" - }, - { - "value": "SCHUYLER_COUNTY_NY", - "label": "Schuyler County, NY" - }, - { - "value": "SENECA_COUNTY_NY", - "label": "Seneca County, NY" - }, - { - "value": "ST_LAWRENCE_COUNTY_NY", - "label": "St. Lawrence County, NY" - }, - { - "value": "STEUBEN_COUNTY_NY", - "label": "Steuben County, NY" - }, - { - "value": "SUFFOLK_COUNTY_NY", - "label": "Suffolk County, NY" - }, - { - "value": "SULLIVAN_COUNTY_NY", - "label": "Sullivan County, NY" - }, - { - "value": "TIOGA_COUNTY_NY", - "label": "Tioga County, NY" - }, - { - "value": "TOMPKINS_COUNTY_NY", - "label": "Tompkins County, NY" - }, - { - "value": "ULSTER_COUNTY_NY", - "label": "Ulster County, NY" - }, - { - "value": "WARREN_COUNTY_NY", - "label": "Warren County, NY" - }, - { - "value": "WASHINGTON_COUNTY_NY", - "label": "Washington County, NY" - }, - { - "value": "WAYNE_COUNTY_NY", - "label": "Wayne County, NY" - }, - { - "value": "WESTCHESTER_COUNTY_NY", - "label": "Westchester County, NY" - }, - { - "value": "WYOMING_COUNTY_NY", - "label": "Wyoming County, NY" - }, - { - "value": "YATES_COUNTY_NY", - "label": "Yates County, NY" - }, - { - "value": "ADAMS_COUNTY_OH", - "label": "Adams County, OH" - }, - { - "value": "ALLEN_COUNTY_OH", - "label": "Allen County, OH" - }, - { - "value": "ASHLAND_COUNTY_OH", - "label": "Ashland County, OH" - }, - { - "value": "ASHTABULA_COUNTY_OH", - "label": "Ashtabula County, OH" - }, - { - "value": "ATHENS_COUNTY_OH", - "label": "Athens County, OH" - }, - { - "value": "AUGLAIZE_COUNTY_OH", - "label": "Auglaize County, OH" - }, - { - "value": "BELMONT_COUNTY_OH", - "label": "Belmont County, OH" - }, - { - "value": "BROWN_COUNTY_OH", - "label": "Brown County, OH" - }, - { - "value": "BUTLER_COUNTY_OH", - "label": "Butler County, OH" - }, - { - "value": "CARROLL_COUNTY_OH", - "label": "Carroll County, OH" - }, - { - "value": "CHAMPAIGN_COUNTY_OH", - "label": "Champaign County, OH" - }, - { - "value": "CLARK_COUNTY_OH", - "label": "Clark County, OH" - }, - { - "value": "CLERMONT_COUNTY_OH", - "label": "Clermont County, OH" - }, - { - "value": "CLINTON_COUNTY_OH", - "label": "Clinton County, OH" - }, - { - "value": "COLUMBIANA_COUNTY_OH", - "label": "Columbiana County, OH" - }, - { - "value": "COSHOCTON_COUNTY_OH", - "label": "Coshocton County, OH" - }, - { - "value": "CRAWFORD_COUNTY_OH", - "label": "Crawford County, OH" - }, - { - "value": "CUYAHOGA_COUNTY_OH", - "label": "Cuyahoga County, OH" - }, - { - "value": "DARKE_COUNTY_OH", - "label": "Darke County, OH" - }, - { - "value": "DEFIANCE_COUNTY_OH", - "label": "Defiance County, OH" - }, - { - "value": "DELAWARE_COUNTY_OH", - "label": "Delaware County, OH" - }, - { - "value": "ERIE_COUNTY_OH", - "label": "Erie County, OH" - }, - { - "value": "FAIRFIELD_COUNTY_OH", - "label": "Fairfield County, OH" - }, - { - "value": "FAYETTE_COUNTY_OH", - "label": "Fayette County, OH" - }, - { - "value": "FRANKLIN_COUNTY_OH", - "label": "Franklin County, OH" - }, - { - "value": "FULTON_COUNTY_OH", - "label": "Fulton County, OH" - }, - { - "value": "GALLIA_COUNTY_OH", - "label": "Gallia County, OH" - }, - { - "value": "GEAUGA_COUNTY_OH", - "label": "Geauga County, OH" - }, - { - "value": "GREENE_COUNTY_OH", - "label": "Greene County, OH" - }, - { - "value": "GUERNSEY_COUNTY_OH", - "label": "Guernsey County, OH" - }, - { - "value": "HAMILTON_COUNTY_OH", - "label": "Hamilton County, OH" - }, - { - "value": "HANCOCK_COUNTY_OH", - "label": "Hancock County, OH" - }, - { - "value": "HARDIN_COUNTY_OH", - "label": "Hardin County, OH" - }, - { - "value": "HARRISON_COUNTY_OH", - "label": "Harrison County, OH" - }, - { - "value": "HENRY_COUNTY_OH", - "label": "Henry County, OH" - }, - { - "value": "HIGHLAND_COUNTY_OH", - "label": "Highland County, OH" - }, - { - "value": "HOCKING_COUNTY_OH", - "label": "Hocking County, OH" - }, - { - "value": "HOLMES_COUNTY_OH", - "label": "Holmes County, OH" - }, - { - "value": "HURON_COUNTY_OH", - "label": "Huron County, OH" - }, - { - "value": "JACKSON_COUNTY_OH", - "label": "Jackson County, OH" - }, - { - "value": "JEFFERSON_COUNTY_OH", - "label": "Jefferson County, OH" - }, - { - "value": "KNOX_COUNTY_OH", - "label": "Knox County, OH" - }, - { - "value": "LAKE_COUNTY_OH", - "label": "Lake County, OH" - }, - { - "value": "LAWRENCE_COUNTY_OH", - "label": "Lawrence County, OH" - }, - { - "value": "LICKING_COUNTY_OH", - "label": "Licking County, OH" - }, - { - "value": "LOGAN_COUNTY_OH", - "label": "Logan County, OH" - }, - { - "value": "LORAIN_COUNTY_OH", - "label": "Lorain County, OH" - }, - { - "value": "LUCAS_COUNTY_OH", - "label": "Lucas County, OH" - }, - { - "value": "MADISON_COUNTY_OH", - "label": "Madison County, OH" - }, - { - "value": "MAHONING_COUNTY_OH", - "label": "Mahoning County, OH" - }, - { - "value": "MARION_COUNTY_OH", - "label": "Marion County, OH" - }, - { - "value": "MEDINA_COUNTY_OH", - "label": "Medina County, OH" - }, - { - "value": "MEIGS_COUNTY_OH", - "label": "Meigs County, OH" - }, - { - "value": "MERCER_COUNTY_OH", - "label": "Mercer County, OH" - }, - { - "value": "MIAMI_COUNTY_OH", - "label": "Miami County, OH" - }, - { - "value": "MONROE_COUNTY_OH", - "label": "Monroe County, OH" - }, - { - "value": "MONTGOMERY_COUNTY_OH", - "label": "Montgomery County, OH" - }, - { - "value": "MORGAN_COUNTY_OH", - "label": "Morgan County, OH" - }, - { - "value": "MORROW_COUNTY_OH", - "label": "Morrow County, OH" - }, - { - "value": "MUSKINGUM_COUNTY_OH", - "label": "Muskingum County, OH" - }, - { - "value": "NOBLE_COUNTY_OH", - "label": "Noble County, OH" - }, - { - "value": "OTTAWA_COUNTY_OH", - "label": "Ottawa County, OH" - }, - { - "value": "PAULDING_COUNTY_OH", - "label": "Paulding County, OH" - }, - { - "value": "PERRY_COUNTY_OH", - "label": "Perry County, OH" - }, - { - "value": "PICKAWAY_COUNTY_OH", - "label": "Pickaway County, OH" - }, - { - "value": "PIKE_COUNTY_OH", - "label": "Pike County, OH" - }, - { - "value": "PORTAGE_COUNTY_OH", - "label": "Portage County, OH" - }, - { - "value": "PREBLE_COUNTY_OH", - "label": "Preble County, OH" - }, - { - "value": "PUTNAM_COUNTY_OH", - "label": "Putnam County, OH" - }, - { - "value": "RICHLAND_COUNTY_OH", - "label": "Richland County, OH" - }, - { - "value": "ROSS_COUNTY_OH", - "label": "Ross County, OH" - }, - { - "value": "SANDUSKY_COUNTY_OH", - "label": "Sandusky County, OH" - }, - { - "value": "SCIOTO_COUNTY_OH", - "label": "Scioto County, OH" - }, - { - "value": "SENECA_COUNTY_OH", - "label": "Seneca County, OH" - }, - { - "value": "SHELBY_COUNTY_OH", - "label": "Shelby County, OH" - }, - { - "value": "STARK_COUNTY_OH", - "label": "Stark County, OH" - }, - { - "value": "SUMMIT_COUNTY_OH", - "label": "Summit County, OH" - }, - { - "value": "TRUMBULL_COUNTY_OH", - "label": "Trumbull County, OH" - }, - { - "value": "TUSCARAWAS_COUNTY_OH", - "label": "Tuscarawas County, OH" - }, - { - "value": "UNION_COUNTY_OH", - "label": "Union County, OH" - }, - { - "value": "VAN_WERT_COUNTY_OH", - "label": "Van Wert County, OH" - }, - { - "value": "VINTON_COUNTY_OH", - "label": "Vinton County, OH" - }, - { - "value": "WARREN_COUNTY_OH", - "label": "Warren County, OH" - }, - { - "value": "WASHINGTON_COUNTY_OH", - "label": "Washington County, OH" - }, - { - "value": "WAYNE_COUNTY_OH", - "label": "Wayne County, OH" - }, - { - "value": "WILLIAMS_COUNTY_OH", - "label": "Williams County, OH" - }, - { - "value": "WOOD_COUNTY_OH", - "label": "Wood County, OH" - }, - { - "value": "WYANDOT_COUNTY_OH", - "label": "Wyandot County, OH" - }, - { - "value": "ADAIR_COUNTY_OK", - "label": "Adair County, OK" - }, - { - "value": "ALFALFA_COUNTY_OK", - "label": "Alfalfa County, OK" - }, - { - "value": "ATOKA_COUNTY_OK", - "label": "Atoka County, OK" - }, - { - "value": "BEAVER_COUNTY_OK", - "label": "Beaver County, OK" - }, - { - "value": "BECKHAM_COUNTY_OK", - "label": "Beckham County, OK" - }, - { - "value": "BLAINE_COUNTY_OK", - "label": "Blaine County, OK" - }, - { - "value": "BRYAN_COUNTY_OK", - "label": "Bryan County, OK" - }, - { - "value": "CADDO_COUNTY_OK", - "label": "Caddo County, OK" - }, - { - "value": "CANADIAN_COUNTY_OK", - "label": "Canadian County, OK" - }, - { - "value": "CARTER_COUNTY_OK", - "label": "Carter County, OK" - }, - { - "value": "CHEROKEE_COUNTY_OK", - "label": "Cherokee County, OK" - }, - { - "value": "CHOCTAW_COUNTY_OK", - "label": "Choctaw County, OK" - }, - { - "value": "CIMARRON_COUNTY_OK", - "label": "Cimarron County, OK" - }, - { - "value": "CLEVELAND_COUNTY_OK", - "label": "Cleveland County, OK" - }, - { - "value": "COAL_COUNTY_OK", - "label": "Coal County, OK" - }, - { - "value": "COMANCHE_COUNTY_OK", - "label": "Comanche County, OK" - }, - { - "value": "COTTON_COUNTY_OK", - "label": "Cotton County, OK" - }, - { - "value": "CRAIG_COUNTY_OK", - "label": "Craig County, OK" - }, - { - "value": "CREEK_COUNTY_OK", - "label": "Creek County, OK" - }, - { - "value": "CUSTER_COUNTY_OK", - "label": "Custer County, OK" - }, - { - "value": "DELAWARE_COUNTY_OK", - "label": "Delaware County, OK" - }, - { - "value": "DEWEY_COUNTY_OK", - "label": "Dewey County, OK" - }, - { - "value": "ELLIS_COUNTY_OK", - "label": "Ellis County, OK" - }, - { - "value": "GARFIELD_COUNTY_OK", - "label": "Garfield County, OK" - }, - { - "value": "GARVIN_COUNTY_OK", - "label": "Garvin County, OK" - }, - { - "value": "GRADY_COUNTY_OK", - "label": "Grady County, OK" - }, - { - "value": "GRANT_COUNTY_OK", - "label": "Grant County, OK" - }, - { - "value": "GREER_COUNTY_OK", - "label": "Greer County, OK" - }, - { - "value": "HARMON_COUNTY_OK", - "label": "Harmon County, OK" - }, - { - "value": "HARPER_COUNTY_OK", - "label": "Harper County, OK" - }, - { - "value": "HASKELL_COUNTY_OK", - "label": "Haskell County, OK" - }, - { - "value": "HUGHES_COUNTY_OK", - "label": "Hughes County, OK" - }, - { - "value": "JACKSON_COUNTY_OK", - "label": "Jackson County, OK" - }, - { - "value": "JEFFERSON_COUNTY_OK", - "label": "Jefferson County, OK" - }, - { - "value": "JOHNSTON_COUNTY_OK", - "label": "Johnston County, OK" - }, - { - "value": "KAY_COUNTY_OK", - "label": "Kay County, OK" - }, - { - "value": "KINGFISHER_COUNTY_OK", - "label": "Kingfisher County, OK" - }, - { - "value": "KIOWA_COUNTY_OK", - "label": "Kiowa County, OK" - }, - { - "value": "LATIMER_COUNTY_OK", - "label": "Latimer County, OK" - }, - { - "value": "LE_FLORE_COUNTY_OK", - "label": "Le Flore County, OK" - }, - { - "value": "LINCOLN_COUNTY_OK", - "label": "Lincoln County, OK" - }, - { - "value": "LOGAN_COUNTY_OK", - "label": "Logan County, OK" - }, - { - "value": "LOVE_COUNTY_OK", - "label": "Love County, OK" - }, - { - "value": "MAJOR_COUNTY_OK", - "label": "Major County, OK" - }, - { - "value": "MARSHALL_COUNTY_OK", - "label": "Marshall County, OK" - }, - { - "value": "MAYES_COUNTY_OK", - "label": "Mayes County, OK" - }, - { - "value": "MCCLAIN_COUNTY_OK", - "label": "McClain County, OK" - }, - { - "value": "MCCURTAIN_COUNTY_OK", - "label": "McCurtain County, OK" - }, - { - "value": "MCINTOSH_COUNTY_OK", - "label": "McIntosh County, OK" - }, - { - "value": "MURRAY_COUNTY_OK", - "label": "Murray County, OK" - }, - { - "value": "MUSKOGEE_COUNTY_OK", - "label": "Muskogee County, OK" - }, - { - "value": "NOBLE_COUNTY_OK", - "label": "Noble County, OK" - }, - { - "value": "NOWATA_COUNTY_OK", - "label": "Nowata County, OK" - }, - { - "value": "OKFUSKEE_COUNTY_OK", - "label": "Okfuskee County, OK" - }, - { - "value": "OKLAHOMA_COUNTY_OK", - "label": "Oklahoma County, OK" - }, - { - "value": "OKMULGEE_COUNTY_OK", - "label": "Okmulgee County, OK" - }, - { - "value": "OSAGE_COUNTY_OK", - "label": "Osage County, OK" - }, - { - "value": "OTTAWA_COUNTY_OK", - "label": "Ottawa County, OK" - }, - { - "value": "PAWNEE_COUNTY_OK", - "label": "Pawnee County, OK" - }, - { - "value": "PAYNE_COUNTY_OK", - "label": "Payne County, OK" - }, - { - "value": "PITTSBURG_COUNTY_OK", - "label": "Pittsburg County, OK" - }, - { - "value": "PONTOTOC_COUNTY_OK", - "label": "Pontotoc County, OK" - }, - { - "value": "POTTAWATOMIE_COUNTY_OK", - "label": "Pottawatomie County, OK" - }, - { - "value": "PUSHMATAHA_COUNTY_OK", - "label": "Pushmataha County, OK" - }, - { - "value": "ROGER_MILLS_COUNTY_OK", - "label": "Roger Mills County, OK" - }, - { - "value": "ROGERS_COUNTY_OK", - "label": "Rogers County, OK" - }, - { - "value": "SEMINOLE_COUNTY_OK", - "label": "Seminole County, OK" - }, - { - "value": "SEQUOYAH_COUNTY_OK", - "label": "Sequoyah County, OK" - }, - { - "value": "SHERMAN_COUNTY_OK", - "label": "Sherman County, OK" - }, - { - "value": "STEPHENS_COUNTY_OK", - "label": "Stephens County, OK" - }, - { - "value": "TEXAS_COUNTY_OK", - "label": "Texas County, OK" - }, - { - "value": "TILLMAN_COUNTY_OK", - "label": "Tillman County, OK" - }, - { - "value": "TULSA_COUNTY_OK", - "label": "Tulsa County, OK" - }, - { - "value": "WAGONER_COUNTY_OK", - "label": "Wagoner County, OK" - }, - { - "value": "WASHINGTON_COUNTY_OK", - "label": "Washington County, OK" - }, - { - "value": "WASHITA_COUNTY_OK", - "label": "Washita County, OK" - }, - { - "value": "WOODS_COUNTY_OK", - "label": "Woods County, OK" - }, - { - "value": "WOODWARD_COUNTY_OK", - "label": "Woodward County, OK" - }, - { - "value": "BAKER_COUNTY_OR", - "label": "Baker County, OR" - }, - { - "value": "BENTON_COUNTY_OR", - "label": "Benton County, OR" - }, - { - "value": "CLACKAMAS_COUNTY_OR", - "label": "Clackamas County, OR" - }, - { - "value": "CLATSOP_COUNTY_OR", - "label": "Clatsop County, OR" - }, - { - "value": "COLUMBIA_COUNTY_OR", - "label": "Columbia County, OR" - }, - { - "value": "COOS_COUNTY_OR", - "label": "Coos County, OR" - }, - { - "value": "CROOK_COUNTY_OR", - "label": "Crook County, OR" - }, - { - "value": "CURRY_COUNTY_OR", - "label": "Curry County, OR" - }, - { - "value": "DESCHUTES_COUNTY_OR", - "label": "Deschutes County, OR" - }, - { - "value": "DOUGLAS_COUNTY_OR", - "label": "Douglas County, OR" - }, - { - "value": "GILLIAM_COUNTY_OR", - "label": "Gilliam County, OR" - }, - { - "value": "GRANT_COUNTY_OR", - "label": "Grant County, OR" - }, - { - "value": "HARNEY_COUNTY_OR", - "label": "Harney County, OR" - }, - { - "value": "HOOD_RIVER_COUNTY_OR", - "label": "Hood River County, OR" - }, - { - "value": "JACKSON_COUNTY_OR", - "label": "Jackson County, OR" - }, - { - "value": "JEFFERSON_COUNTY_OR", - "label": "Jefferson County, OR" - }, - { - "value": "JOSEPHINE_COUNTY_OR", - "label": "Josephine County, OR" - }, - { - "value": "KLAMATH_COUNTY_OR", - "label": "Klamath County, OR" - }, - { - "value": "LAKE_COUNTY_OR", - "label": "Lake County, OR" - }, - { - "value": "LANE_COUNTY_OR", - "label": "Lane County, OR" - }, - { - "value": "LINCOLN_COUNTY_OR", - "label": "Lincoln County, OR" - }, - { - "value": "LINN_COUNTY_OR", - "label": "Linn County, OR" - }, - { - "value": "MALHEUR_COUNTY_OR", - "label": "Malheur County, OR" - }, - { - "value": "MARION_COUNTY_OR", - "label": "Marion County, OR" - }, - { - "value": "MORROW_COUNTY_OR", - "label": "Morrow County, OR" - }, - { - "value": "MULTNOMAH_COUNTY_OR", - "label": "Multnomah County, OR" - }, - { - "value": "POLK_COUNTY_OR", - "label": "Polk County, OR" - }, - { - "value": "SHERMAN_COUNTY_OR", - "label": "Sherman County, OR" - }, - { - "value": "TILLAMOOK_COUNTY_OR", - "label": "Tillamook County, OR" - }, - { - "value": "UMATILLA_COUNTY_OR", - "label": "Umatilla County, OR" - }, - { - "value": "UNION_COUNTY_OR", - "label": "Union County, OR" - }, - { - "value": "WALLOWA_COUNTY_OR", - "label": "Wallowa County, OR" - }, - { - "value": "WASCO_COUNTY_OR", - "label": "Wasco County, OR" - }, - { - "value": "WASHINGTON_COUNTY_OR", - "label": "Washington County, OR" - }, - { - "value": "WHEELER_COUNTY_OR", - "label": "Wheeler County, OR" - }, - { - "value": "YAMHILL_COUNTY_OR", - "label": "Yamhill County, OR" - }, - { - "value": "ADAMS_COUNTY_PA", - "label": "Adams County, PA" - }, - { - "value": "ALLEGHENY_COUNTY_PA", - "label": "Allegheny County, PA" - }, - { - "value": "ARMSTRONG_COUNTY_PA", - "label": "Armstrong County, PA" - }, - { - "value": "BEAVER_COUNTY_PA", - "label": "Beaver County, PA" - }, - { - "value": "BEDFORD_COUNTY_PA", - "label": "Bedford County, PA" - }, - { - "value": "BERKS_COUNTY_PA", - "label": "Berks County, PA" - }, - { - "value": "BLAIR_COUNTY_PA", - "label": "Blair County, PA" - }, - { - "value": "BRADFORD_COUNTY_PA", - "label": "Bradford County, PA" - }, - { - "value": "BUCKS_COUNTY_PA", - "label": "Bucks County, PA" - }, - { - "value": "BUTLER_COUNTY_PA", - "label": "Butler County, PA" - }, - { - "value": "CAMBRIA_COUNTY_PA", - "label": "Cambria County, PA" - }, - { - "value": "CAMERON_COUNTY_PA", - "label": "Cameron County, PA" - }, - { - "value": "CARBON_COUNTY_PA", - "label": "Carbon County, PA" - }, - { - "value": "CENTRE_COUNTY_PA", - "label": "Centre County, PA" - }, - { - "value": "CHESTER_COUNTY_PA", - "label": "Chester County, PA" - }, - { - "value": "CLARION_COUNTY_PA", - "label": "Clarion County, PA" - }, - { - "value": "CLEARFIELD_COUNTY_PA", - "label": "Clearfield County, PA" - }, - { - "value": "CLINTON_COUNTY_PA", - "label": "Clinton County, PA" - }, - { - "value": "COLUMBIA_COUNTY_PA", - "label": "Columbia County, PA" - }, - { - "value": "CRAWFORD_COUNTY_PA", - "label": "Crawford County, PA" - }, - { - "value": "CUMBERLAND_COUNTY_PA", - "label": "Cumberland County, PA" - }, - { - "value": "DAUPHIN_COUNTY_PA", - "label": "Dauphin County, PA" - }, - { - "value": "DELAWARE_COUNTY_PA", - "label": "Delaware County, PA" - }, - { - "value": "ELK_COUNTY_PA", - "label": "Elk County, PA" - }, - { - "value": "ERIE_COUNTY_PA", - "label": "Erie County, PA" - }, - { - "value": "FAYETTE_COUNTY_PA", - "label": "Fayette County, PA" - }, - { - "value": "FOREST_COUNTY_PA", - "label": "Forest County, PA" - }, - { - "value": "FRANKLIN_COUNTY_PA", - "label": "Franklin County, PA" - }, - { - "value": "FULTON_COUNTY_PA", - "label": "Fulton County, PA" - }, - { - "value": "GREENE_COUNTY_PA", - "label": "Greene County, PA" - }, - { - "value": "HUNTINGDON_COUNTY_PA", - "label": "Huntingdon County, PA" - }, - { - "value": "INDIANA_COUNTY_PA", - "label": "Indiana County, PA" - }, - { - "value": "JEFFERSON_COUNTY_PA", - "label": "Jefferson County, PA" - }, - { - "value": "JUNIATA_COUNTY_PA", - "label": "Juniata County, PA" - }, - { - "value": "LACKAWANNA_COUNTY_PA", - "label": "Lackawanna County, PA" - }, - { - "value": "LANCASTER_COUNTY_PA", - "label": "Lancaster County, PA" - }, - { - "value": "LAWRENCE_COUNTY_PA", - "label": "Lawrence County, PA" - }, - { - "value": "LEBANON_COUNTY_PA", - "label": "Lebanon County, PA" - }, - { - "value": "LEHIGH_COUNTY_PA", - "label": "Lehigh County, PA" - }, - { - "value": "LUZERNE_COUNTY_PA", - "label": "Luzerne County, PA" - }, - { - "value": "LYCOMING_COUNTY_PA", - "label": "Lycoming County, PA" - }, - { - "value": "MCKEAN_COUNTY_PA", - "label": "McKean County, PA" - }, - { - "value": "MERCER_COUNTY_PA", - "label": "Mercer County, PA" - }, - { - "value": "MIFFLIN_COUNTY_PA", - "label": "Mifflin County, PA" - }, - { - "value": "MONROE_COUNTY_PA", - "label": "Monroe County, PA" - }, - { - "value": "MONTGOMERY_COUNTY_PA", - "label": "Montgomery County, PA" - }, - { - "value": "MONTOUR_COUNTY_PA", - "label": "Montour County, PA" - }, - { - "value": "NORTHAMPTON_COUNTY_PA", - "label": "Northampton County, PA" - }, - { - "value": "NORTHUMBERLAND_COUNTY_PA", - "label": "Northumberland County, PA" - }, - { - "value": "PERRY_COUNTY_PA", - "label": "Perry County, PA" - }, - { - "value": "PHILADELPHIA_COUNTY_PA", - "label": "Philadelphia County, PA" - }, - { - "value": "PIKE_COUNTY_PA", - "label": "Pike County, PA" - }, - { - "value": "POTTER_COUNTY_PA", - "label": "Potter County, PA" - }, - { - "value": "SCHUYLKILL_COUNTY_PA", - "label": "Schuylkill County, PA" - }, - { - "value": "SNYDER_COUNTY_PA", - "label": "Snyder County, PA" - }, - { - "value": "SOMERSET_COUNTY_PA", - "label": "Somerset County, PA" - }, - { - "value": "SULLIVAN_COUNTY_PA", - "label": "Sullivan County, PA" - }, - { - "value": "SUSQUEHANNA_COUNTY_PA", - "label": "Susquehanna County, PA" - }, - { - "value": "TIOGA_COUNTY_PA", - "label": "Tioga County, PA" - }, - { - "value": "UNION_COUNTY_PA", - "label": "Union County, PA" - }, - { - "value": "VENANGO_COUNTY_PA", - "label": "Venango County, PA" - }, - { - "value": "WARREN_COUNTY_PA", - "label": "Warren County, PA" - }, - { - "value": "WASHINGTON_COUNTY_PA", - "label": "Washington County, PA" - }, - { - "value": "WAYNE_COUNTY_PA", - "label": "Wayne County, PA" - }, - { - "value": "WESTMORELAND_COUNTY_PA", - "label": "Westmoreland County, PA" - }, - { - "value": "WYOMING_COUNTY_PA", - "label": "Wyoming County, PA" - }, - { - "value": "YORK_COUNTY_PA", - "label": "York County, PA" - }, - { - "value": "ADJUNTAS_MUNICIPIO_PR", - "label": "Adjuntas Municipio, PR" - }, - { - "value": "AGUADA_MUNICIPIO_PR", - "label": "Aguada Municipio, PR" - }, - { - "value": "AGUADILLA_MUNICIPIO_PR", - "label": "Aguadilla Municipio, PR" - }, - { - "value": "AGUAS_BUENAS_MUNICIPIO_PR", - "label": "Aguas Buenas Municipio, PR" - }, - { - "value": "AIBONITO_MUNICIPIO_PR", - "label": "Aibonito Municipio, PR" - }, - { - "value": "ARECIBO_MUNICIPIO_PR", - "label": "Arecibo Municipio, PR" - }, - { - "value": "ARROYO_MUNICIPIO_PR", - "label": "Arroyo Municipio, PR" - }, - { - "value": "BARCELONETA_MUNICIPIO_PR", - "label": "Barceloneta Municipio, PR" - }, - { - "value": "BARRANQUITAS_MUNICIPIO_PR", - "label": "Barranquitas Municipio, PR" - }, - { - "value": "BAYAMÓN_MUNICIPIO_PR", - "label": "Bayamón Municipio, PR" - }, - { - "value": "CABO_ROJO_MUNICIPIO_PR", - "label": "Cabo Rojo Municipio, PR" - }, - { - "value": "CAGUAS_MUNICIPIO_PR", - "label": "Caguas Municipio, PR" - }, - { - "value": "CAROLINA_MUNICIPIO_PR", - "label": "Carolina Municipio, PR" - }, - { - "value": "CAYEY_MUNICIPIO_PR", - "label": "Cayey Municipio, PR" - }, - { - "value": "CEIBA_MUNICIPIO_PR", - "label": "Ceiba Municipio, PR" - }, - { - "value": "CIDRA_MUNICIPIO_PR", - "label": "Cidra Municipio, PR" - }, - { - "value": "COAMO_MUNICIPIO_PR", - "label": "Coamo Municipio, PR" - }, - { - "value": "COROZAL_MUNICIPIO_PR", - "label": "Corozal Municipio, PR" - }, - { - "value": "CULEBRA_MUNICIPIO_PR", - "label": "Culebra Municipio, PR" - }, - { - "value": "DORADO_MUNICIPIO_PR", - "label": "Dorado Municipio, PR" - }, - { - "value": "FAJARDO_MUNICIPIO_PR", - "label": "Fajardo Municipio, PR" - }, - { - "value": "FLORIDA_MUNICIPIO_PR", - "label": "Florida Municipio, PR" - }, - { - "value": "GUAYAMA_MUNICIPIO_PR", - "label": "Guayama Municipio, PR" - }, - { - "value": "GUAYANILLA_MUNICIPIO_PR", - "label": "Guayanilla Municipio, PR" - }, - { - "value": "GUAYNABO_MUNICIPIO_PR", - "label": "Guaynabo Municipio, PR" - }, - { - "value": "GURABO_MUNICIPIO_PR", - "label": "Gurabo Municipio, PR" - }, - { - "value": "GUÁNICA_MUNICIPIO_PR", - "label": "Guánica Municipio, PR" - }, - { - "value": "HATILLO_MUNICIPIO_PR", - "label": "Hatillo Municipio, PR" - }, - { - "value": "HORMIGUEROS_MUNICIPIO_PR", - "label": "Hormigueros Municipio, PR" - }, - { - "value": "HUMACAO_MUNICIPIO_PR", - "label": "Humacao Municipio, PR" - }, - { - "value": "ISABELA_MUNICIPIO_PR", - "label": "Isabela Municipio, PR" - }, - { - "value": "JAYUYA_MUNICIPIO_PR", - "label": "Jayuya Municipio, PR" - }, - { - "value": "JUANA_DÍAZ_MUNICIPIO_PR", - "label": "Juana Díaz Municipio, PR" - }, - { - "value": "LAJAS_MUNICIPIO_PR", - "label": "Lajas Municipio, PR" - }, - { - "value": "LAS_MARÍAS_MUNICIPIO_PR", - "label": "Las Marías Municipio, PR" - }, - { - "value": "LAS_PIEDRAS_MUNICIPIO_PR", - "label": "Las Piedras Municipio, PR" - }, - { - "value": "LOÍZA_MUNICIPIO_PR", - "label": "Loíza Municipio, PR" - }, - { - "value": "LUQUILLO_MUNICIPIO_PR", - "label": "Luquillo Municipio, PR" - }, - { - "value": "MANATÍ_MUNICIPIO_PR", - "label": "Manatí Municipio, PR" - }, - { - "value": "MARICAO_MUNICIPIO_PR", - "label": "Maricao Municipio, PR" - }, - { - "value": "MAUNABO_MUNICIPIO_PR", - "label": "Maunabo Municipio, PR" - }, - { - "value": "MAYAGÜEZ_MUNICIPIO_PR", - "label": "Mayagüez Municipio, PR" - }, - { - "value": "MOCA_MUNICIPIO_PR", - "label": "Moca Municipio, PR" - }, - { - "value": "MOROVIS_MUNICIPIO_PR", - "label": "Morovis Municipio, PR" - }, - { - "value": "NAGUABO_MUNICIPIO_PR", - "label": "Naguabo Municipio, PR" - }, - { - "value": "OROCOVIS_MUNICIPIO_PR", - "label": "Orocovis Municipio, PR" - }, - { - "value": "PEÑUELAS_MUNICIPIO_PR", - "label": "Peñuelas Municipio, PR" - }, - { - "value": "PONCE_MUNICIPIO_PR", - "label": "Ponce Municipio, PR" - }, - { - "value": "QUEBRADILLAS_MUNICIPIO_PR", - "label": "Quebradillas Municipio, PR" - }, - { - "value": "RÍO_GRANDE_MUNICIPIO_PR", - "label": "Río Grande Municipio, PR" - }, - { - "value": "SABANA_GRANDE_MUNICIPIO_PR", - "label": "Sabana Grande Municipio, PR" - }, - { - "value": "SAN_GERMÁN_MUNICIPIO_PR", - "label": "San Germán Municipio, PR" - }, - { - "value": "SAN_JUAN_MUNICIPIO_PR", - "label": "San Juan Municipio, PR" - }, - { - "value": "SAN_LORENZO_MUNICIPIO_PR", - "label": "San Lorenzo Municipio, PR" - }, - { - "value": "SANTA_ISABEL_MUNICIPIO_PR", - "label": "Santa Isabel Municipio, PR" - }, - { - "value": "TOA_ALTA_MUNICIPIO_PR", - "label": "Toa Alta Municipio, PR" - }, - { - "value": "TOA_BAJA_MUNICIPIO_PR", - "label": "Toa Baja Municipio, PR" - }, - { - "value": "TRUJILLO_ALTO_MUNICIPIO_PR", - "label": "Trujillo Alto Municipio, PR" - }, - { - "value": "UTUADO_MUNICIPIO_PR", - "label": "Utuado Municipio, PR" - }, - { - "value": "VEGA_BAJA_MUNICIPIO_PR", - "label": "Vega Baja Municipio, PR" - }, - { - "value": "VIEQUES_MUNICIPIO_PR", - "label": "Vieques Municipio, PR" - }, - { - "value": "YABUCOA_MUNICIPIO_PR", - "label": "Yabucoa Municipio, PR" - }, - { - "value": "BRISTOL_COUNTY_RI", - "label": "Bristol County, RI" - }, - { - "value": "KENT_COUNTY_RI", - "label": "Kent County, RI" - }, - { - "value": "NEWPORT_COUNTY_RI", - "label": "Newport County, RI" - }, - { - "value": "PROVIDENCE_COUNTY_RI", - "label": "Providence County, RI" - }, - { - "value": "WASHINGTON_COUNTY_RI", - "label": "Washington County, RI" - }, - { - "value": "ABBEVILLE_COUNTY_SC", - "label": "Abbeville County, SC" - }, - { - "value": "AIKEN_COUNTY_SC", - "label": "Aiken County, SC" - }, - { - "value": "ALLENDALE_COUNTY_SC", - "label": "Allendale County, SC" - }, - { - "value": "ANDERSON_COUNTY_SC", - "label": "Anderson County, SC" - }, - { - "value": "BAMBERG_COUNTY_SC", - "label": "Bamberg County, SC" - }, - { - "value": "BARNWELL_COUNTY_SC", - "label": "Barnwell County, SC" - }, - { - "value": "BEAUFORT_COUNTY_SC", - "label": "Beaufort County, SC" - }, - { - "value": "BERKELEY_COUNTY_SC", - "label": "Berkeley County, SC" - }, - { - "value": "CALHOUN_COUNTY_SC", - "label": "Calhoun County, SC" - }, - { - "value": "CHARLESTON_COUNTY_SC", - "label": "Charleston County, SC" - }, - { - "value": "CHEROKEE_COUNTY_SC", - "label": "Cherokee County, SC" - }, - { - "value": "CHESTER_COUNTY_SC", - "label": "Chester County, SC" - }, - { - "value": "CHESTERFIELD_COUNTY_SC", - "label": "Chesterfield County, SC" - }, - { - "value": "CLARENDON_COUNTY_SC", - "label": "Clarendon County, SC" - }, - { - "value": "COLLETON_COUNTY_SC", - "label": "Colleton County, SC" - }, - { - "value": "DARLINGTON_COUNTY_SC", - "label": "Darlington County, SC" - }, - { - "value": "DILLON_COUNTY_SC", - "label": "Dillon County, SC" - }, - { - "value": "DORCHESTER_COUNTY_SC", - "label": "Dorchester County, SC" - }, - { - "value": "EDGEFIELD_COUNTY_SC", - "label": "Edgefield County, SC" - }, - { - "value": "FAIRFIELD_COUNTY_SC", - "label": "Fairfield County, SC" - }, - { - "value": "FLORENCE_COUNTY_SC", - "label": "Florence County, SC" - }, - { - "value": "GEORGETOWN_COUNTY_SC", - "label": "Georgetown County, SC" - }, - { - "value": "GREENVILLE_COUNTY_SC", - "label": "Greenville County, SC" - }, - { - "value": "GREENWOOD_COUNTY_SC", - "label": "Greenwood County, SC" - }, - { - "value": "HAMPTON_COUNTY_SC", - "label": "Hampton County, SC" - }, - { - "value": "HORRY_COUNTY_SC", - "label": "Horry County, SC" - }, - { - "value": "JASPER_COUNTY_SC", - "label": "Jasper County, SC" - }, - { - "value": "KERSHAW_COUNTY_SC", - "label": "Kershaw County, SC" - }, - { - "value": "LANCASTER_COUNTY_SC", - "label": "Lancaster County, SC" - }, - { - "value": "LAURENS_COUNTY_SC", - "label": "Laurens County, SC" - }, - { - "value": "LEE_COUNTY_SC", - "label": "Lee County, SC" - }, - { - "value": "LEXINGTON_COUNTY_SC", - "label": "Lexington County, SC" - }, - { - "value": "MARION_COUNTY_SC", - "label": "Marion County, SC" - }, - { - "value": "MARLBORO_COUNTY_SC", - "label": "Marlboro County, SC" - }, - { - "value": "MCCORMICK_COUNTY_SC", - "label": "McCormick County, SC" - }, - { - "value": "NEWBERRY_COUNTY_SC", - "label": "Newberry County, SC" - }, - { - "value": "OCONEE_COUNTY_SC", - "label": "Oconee County, SC" - }, - { - "value": "ORANGEBURG_COUNTY_SC", - "label": "Orangeburg County, SC" - }, - { - "value": "PICKENS_COUNTY_SC", - "label": "Pickens County, SC" - }, - { - "value": "RICHLAND_COUNTY_SC", - "label": "Richland County, SC" - }, - { - "value": "SALUDA_COUNTY_SC", - "label": "Saluda County, SC" - }, - { - "value": "SPARTANBURG_COUNTY_SC", - "label": "Spartanburg County, SC" - }, - { - "value": "SUMTER_COUNTY_SC", - "label": "Sumter County, SC" - }, - { - "value": "UNION_COUNTY_SC", - "label": "Union County, SC" - }, - { - "value": "WILLIAMSBURG_COUNTY_SC", - "label": "Williamsburg County, SC" - }, - { - "value": "YORK_COUNTY_SC", - "label": "York County, SC" - }, - { - "value": "AURORA_COUNTY_SD", - "label": "Aurora County, SD" - }, - { - "value": "BEADLE_COUNTY_SD", - "label": "Beadle County, SD" - }, - { - "value": "BENNETT_COUNTY_SD", - "label": "Bennett County, SD" - }, - { - "value": "BON_HOMME_COUNTY_SD", - "label": "Bon Homme County, SD" - }, - { - "value": "BROOKINGS_COUNTY_SD", - "label": "Brookings County, SD" - }, - { - "value": "BROWN_COUNTY_SD", - "label": "Brown County, SD" - }, - { - "value": "BRULE_COUNTY_SD", - "label": "Brule County, SD" - }, - { - "value": "BUFFALO_COUNTY_SD", - "label": "Buffalo County, SD" - }, - { - "value": "BUTTE_COUNTY_SD", - "label": "Butte County, SD" - }, - { - "value": "CAMPBELL_COUNTY_SD", - "label": "Campbell County, SD" - }, - { - "value": "CARTER_COUNTY_SD", - "label": "Carter County, SD" - }, - { - "value": "CHARLES_MIX_COUNTY_SD", - "label": "Charles Mix County, SD" - }, - { - "value": "CLARK_COUNTY_SD", - "label": "Clark County, SD" - }, - { - "value": "CLAY_COUNTY_SD", - "label": "Clay County, SD" - }, - { - "value": "CODINGTON_COUNTY_SD", - "label": "Codington County, SD" - }, - { - "value": "CORSON_COUNTY_SD", - "label": "Corson County, SD" - }, - { - "value": "CUSTER_COUNTY_SD", - "label": "Custer County, SD" - }, - { - "value": "DAVISON_COUNTY_SD", - "label": "Davison County, SD" - }, - { - "value": "DAY_COUNTY_SD", - "label": "Day County, SD" - }, - { - "value": "DEUEL_COUNTY_SD", - "label": "Deuel County, SD" - }, - { - "value": "DEWEY_COUNTY_SD", - "label": "Dewey County, SD" - }, - { - "value": "DOUGLAS_COUNTY_SD", - "label": "Douglas County, SD" - }, - { - "value": "EDMUNDS_COUNTY_SD", - "label": "Edmunds County, SD" - }, - { - "value": "EMMONS_COUNTY_SD", - "label": "Emmons County, SD" - }, - { - "value": "FALL_RIVER_COUNTY_SD", - "label": "Fall River County, SD" - }, - { - "value": "FAULK_COUNTY_SD", - "label": "Faulk County, SD" - }, - { - "value": "GRANT_COUNTY_SD", - "label": "Grant County, SD" - }, - { - "value": "GREGORY_COUNTY_SD", - "label": "Gregory County, SD" - }, - { - "value": "HAAKON_COUNTY_SD", - "label": "Haakon County, SD" - }, - { - "value": "HAMLIN_COUNTY_SD", - "label": "Hamlin County, SD" - }, - { - "value": "HAND_COUNTY_SD", - "label": "Hand County, SD" - }, - { - "value": "HANSON_COUNTY_SD", - "label": "Hanson County, SD" - }, - { - "value": "HARDING_COUNTY_SD", - "label": "Harding County, SD" - }, - { - "value": "HUGHES_COUNTY_SD", - "label": "Hughes County, SD" - }, - { - "value": "HUTCHINSON_COUNTY_SD", - "label": "Hutchinson County, SD" - }, - { - "value": "HYDE_COUNTY_SD", - "label": "Hyde County, SD" - }, - { - "value": "JACKSON_COUNTY_SD", - "label": "Jackson County, SD" - }, - { - "value": "JERAULD_COUNTY_SD", - "label": "Jerauld County, SD" - }, - { - "value": "JONES_COUNTY_SD", - "label": "Jones County, SD" - }, - { - "value": "KINGSBURY_COUNTY_SD", - "label": "Kingsbury County, SD" - }, - { - "value": "LAKE_COUNTY_SD", - "label": "Lake County, SD" - }, - { - "value": "LAWRENCE_COUNTY_SD", - "label": "Lawrence County, SD" - }, - { - "value": "LINCOLN_COUNTY_SD", - "label": "Lincoln County, SD" - }, - { - "value": "LYMAN_COUNTY_SD", - "label": "Lyman County, SD" - }, - { - "value": "MARSHALL_COUNTY_SD", - "label": "Marshall County, SD" - }, - { - "value": "MCCOOK_COUNTY_SD", - "label": "McCook County, SD" - }, - { - "value": "MCPHERSON_COUNTY_SD", - "label": "McPherson County, SD" - }, - { - "value": "MEADE_COUNTY_SD", - "label": "Meade County, SD" - }, - { - "value": "MELLETTE_COUNTY_SD", - "label": "Mellette County, SD" - }, - { - "value": "MINER_COUNTY_SD", - "label": "Miner County, SD" - }, - { - "value": "MINNEHAHA_COUNTY_SD", - "label": "Minnehaha County, SD" - }, - { - "value": "MOODY_COUNTY_SD", - "label": "Moody County, SD" - }, - { - "value": "OGLALA_LAKOTA_COUNTY_SD", - "label": "Oglala Lakota County, SD" - }, - { - "value": "PENNINGTON_COUNTY_SD", - "label": "Pennington County, SD" - }, - { - "value": "PERKINS_COUNTY_SD", - "label": "Perkins County, SD" - }, - { - "value": "POTTER_COUNTY_SD", - "label": "Potter County, SD" - }, - { - "value": "RICHLAND_COUNTY_SD", - "label": "Richland County, SD" - }, - { - "value": "ROBERTS_COUNTY_SD", - "label": "Roberts County, SD" - }, - { - "value": "ROCK_COUNTY_SD", - "label": "Rock County, SD" - }, - { - "value": "SANBORN_COUNTY_SD", - "label": "Sanborn County, SD" - }, - { - "value": "SIOUX_COUNTY_SD", - "label": "Sioux County, SD" - }, - { - "value": "SPINK_COUNTY_SD", - "label": "Spink County, SD" - }, - { - "value": "STANLEY_COUNTY_SD", - "label": "Stanley County, SD" - }, - { - "value": "SULLY_COUNTY_SD", - "label": "Sully County, SD" - }, - { - "value": "TODD_COUNTY_SD", - "label": "Todd County, SD" - }, - { - "value": "TRIPP_COUNTY_SD", - "label": "Tripp County, SD" - }, - { - "value": "TURNER_COUNTY_SD", - "label": "Turner County, SD" - }, - { - "value": "UNION_COUNTY_SD", - "label": "Union County, SD" - }, - { - "value": "WALWORTH_COUNTY_SD", - "label": "Walworth County, SD" - }, - { - "value": "YANKTON_COUNTY_SD", - "label": "Yankton County, SD" - }, - { - "value": "ZIEBACH_COUNTY_SD", - "label": "Ziebach County, SD" - }, - { - "value": "ANDERSON_COUNTY_TN", - "label": "Anderson County, TN" - }, - { - "value": "BEDFORD_COUNTY_TN", - "label": "Bedford County, TN" - }, - { - "value": "BENTON_COUNTY_TN", - "label": "Benton County, TN" - }, - { - "value": "BLEDSOE_COUNTY_TN", - "label": "Bledsoe County, TN" - }, - { - "value": "BLOUNT_COUNTY_TN", - "label": "Blount County, TN" - }, - { - "value": "BRADLEY_COUNTY_TN", - "label": "Bradley County, TN" - }, - { - "value": "CAMPBELL_COUNTY_TN", - "label": "Campbell County, TN" - }, - { - "value": "CANNON_COUNTY_TN", - "label": "Cannon County, TN" - }, - { - "value": "CARROLL_COUNTY_TN", - "label": "Carroll County, TN" - }, - { - "value": "CARTER_COUNTY_TN", - "label": "Carter County, TN" - }, - { - "value": "CHEATHAM_COUNTY_TN", - "label": "Cheatham County, TN" - }, - { - "value": "CHESTER_COUNTY_TN", - "label": "Chester County, TN" - }, - { - "value": "CLAIBORNE_COUNTY_TN", - "label": "Claiborne County, TN" - }, - { - "value": "CLAY_COUNTY_TN", - "label": "Clay County, TN" - }, - { - "value": "CLINTON_COUNTY_TN", - "label": "Clinton County, TN" - }, - { - "value": "COCKE_COUNTY_TN", - "label": "Cocke County, TN" - }, - { - "value": "COFFEE_COUNTY_TN", - "label": "Coffee County, TN" - }, - { - "value": "CROCKETT_COUNTY_TN", - "label": "Crockett County, TN" - }, - { - "value": "CUMBERLAND_COUNTY_TN", - "label": "Cumberland County, TN" - }, - { - "value": "DAVIDSON_COUNTY_TN", - "label": "Davidson County, TN" - }, - { - "value": "DEKALB_COUNTY_TN", - "label": "DeKalb County, TN" - }, - { - "value": "DECATUR_COUNTY_TN", - "label": "Decatur County, TN" - }, - { - "value": "DICKSON_COUNTY_TN", - "label": "Dickson County, TN" - }, - { - "value": "DYER_COUNTY_TN", - "label": "Dyer County, TN" - }, - { - "value": "FAYETTE_COUNTY_TN", - "label": "Fayette County, TN" - }, - { - "value": "FENTRESS_COUNTY_TN", - "label": "Fentress County, TN" - }, - { - "value": "FRANKLIN_COUNTY_TN", - "label": "Franklin County, TN" - }, - { - "value": "FULTON_COUNTY_TN", - "label": "Fulton County, TN" - }, - { - "value": "GIBSON_COUNTY_TN", - "label": "Gibson County, TN" - }, - { - "value": "GILES_COUNTY_TN", - "label": "Giles County, TN" - }, - { - "value": "GRAINGER_COUNTY_TN", - "label": "Grainger County, TN" - }, - { - "value": "GREENE_COUNTY_TN", - "label": "Greene County, TN" - }, - { - "value": "GRUNDY_COUNTY_TN", - "label": "Grundy County, TN" - }, - { - "value": "HAMBLEN_COUNTY_TN", - "label": "Hamblen County, TN" - }, - { - "value": "HAMILTON_COUNTY_TN", - "label": "Hamilton County, TN" - }, - { - "value": "HANCOCK_COUNTY_TN", - "label": "Hancock County, TN" - }, - { - "value": "HARDEMAN_COUNTY_TN", - "label": "Hardeman County, TN" - }, - { - "value": "HARDIN_COUNTY_TN", - "label": "Hardin County, TN" - }, - { - "value": "HAWKINS_COUNTY_TN", - "label": "Hawkins County, TN" - }, - { - "value": "HAYWOOD_COUNTY_TN", - "label": "Haywood County, TN" - }, - { - "value": "HENDERSON_COUNTY_TN", - "label": "Henderson County, TN" - }, - { - "value": "HENRY_COUNTY_TN", - "label": "Henry County, TN" - }, - { - "value": "HICKMAN_COUNTY_TN", - "label": "Hickman County, TN" - }, - { - "value": "HOUSTON_COUNTY_TN", - "label": "Houston County, TN" - }, - { - "value": "HUMPHREYS_COUNTY_TN", - "label": "Humphreys County, TN" - }, - { - "value": "JACKSON_COUNTY_TN", - "label": "Jackson County, TN" - }, - { - "value": "JEFFERSON_COUNTY_TN", - "label": "Jefferson County, TN" - }, - { - "value": "JOHNSON_COUNTY_TN", - "label": "Johnson County, TN" - }, - { - "value": "KNOX_COUNTY_TN", - "label": "Knox County, TN" - }, - { - "value": "LAKE_COUNTY_TN", - "label": "Lake County, TN" - }, - { - "value": "LAUDERDALE_COUNTY_TN", - "label": "Lauderdale County, TN" - }, - { - "value": "LAWRENCE_COUNTY_TN", - "label": "Lawrence County, TN" - }, - { - "value": "LEE_COUNTY_TN", - "label": "Lee County, TN" - }, - { - "value": "LEWIS_COUNTY_TN", - "label": "Lewis County, TN" - }, - { - "value": "LINCOLN_COUNTY_TN", - "label": "Lincoln County, TN" - }, - { - "value": "LOUDON_COUNTY_TN", - "label": "Loudon County, TN" - }, - { - "value": "MACON_COUNTY_TN", - "label": "Macon County, TN" - }, - { - "value": "MADISON_COUNTY_TN", - "label": "Madison County, TN" - }, - { - "value": "MARION_COUNTY_TN", - "label": "Marion County, TN" - }, - { - "value": "MARSHALL_COUNTY_TN", - "label": "Marshall County, TN" - }, - { - "value": "MAURY_COUNTY_TN", - "label": "Maury County, TN" - }, - { - "value": "MCMINN_COUNTY_TN", - "label": "McMinn County, TN" - }, - { - "value": "MCNAIRY_COUNTY_TN", - "label": "McNairy County, TN" - }, - { - "value": "MEIGS_COUNTY_TN", - "label": "Meigs County, TN" - }, - { - "value": "MONROE_COUNTY_TN", - "label": "Monroe County, TN" - }, - { - "value": "MONTGOMERY_COUNTY_TN", - "label": "Montgomery County, TN" - }, - { - "value": "MOORE_COUNTY_TN", - "label": "Moore County, TN" - }, - { - "value": "MORGAN_COUNTY_TN", - "label": "Morgan County, TN" - }, - { - "value": "OBION_COUNTY_TN", - "label": "Obion County, TN" - }, - { - "value": "OVERTON_COUNTY_TN", - "label": "Overton County, TN" - }, - { - "value": "PERRY_COUNTY_TN", - "label": "Perry County, TN" - }, - { - "value": "PICKETT_COUNTY_TN", - "label": "Pickett County, TN" - }, - { - "value": "POLK_COUNTY_TN", - "label": "Polk County, TN" - }, - { - "value": "PUTNAM_COUNTY_TN", - "label": "Putnam County, TN" - }, - { - "value": "RHEA_COUNTY_TN", - "label": "Rhea County, TN" - }, - { - "value": "ROANE_COUNTY_TN", - "label": "Roane County, TN" - }, - { - "value": "ROBERTSON_COUNTY_TN", - "label": "Robertson County, TN" - }, - { - "value": "RUTHERFORD_COUNTY_TN", - "label": "Rutherford County, TN" - }, - { - "value": "SCOTT_COUNTY_TN", - "label": "Scott County, TN" - }, - { - "value": "SEQUATCHIE_COUNTY_TN", - "label": "Sequatchie County, TN" - }, - { - "value": "SEVIER_COUNTY_TN", - "label": "Sevier County, TN" - }, - { - "value": "SHELBY_COUNTY_TN", - "label": "Shelby County, TN" - }, - { - "value": "SMITH_COUNTY_TN", - "label": "Smith County, TN" - }, - { - "value": "STEWART_COUNTY_TN", - "label": "Stewart County, TN" - }, - { - "value": "SULLIVAN_COUNTY_TN", - "label": "Sullivan County, TN" - }, - { - "value": "SUMNER_COUNTY_TN", - "label": "Sumner County, TN" - }, - { - "value": "TIPTON_COUNTY_TN", - "label": "Tipton County, TN" - }, - { - "value": "TROUSDALE_COUNTY_TN", - "label": "Trousdale County, TN" - }, - { - "value": "UNICOI_COUNTY_TN", - "label": "Unicoi County, TN" - }, - { - "value": "UNION_COUNTY_TN", - "label": "Union County, TN" - }, - { - "value": "VAN_BUREN_COUNTY_TN", - "label": "Van Buren County, TN" - }, - { - "value": "WARREN_COUNTY_TN", - "label": "Warren County, TN" - }, - { - "value": "WASHINGTON_COUNTY_TN", - "label": "Washington County, TN" - }, - { - "value": "WAYNE_COUNTY_TN", - "label": "Wayne County, TN" - }, - { - "value": "WEAKLEY_COUNTY_TN", - "label": "Weakley County, TN" - }, - { - "value": "WHITE_COUNTY_TN", - "label": "White County, TN" - }, - { - "value": "WILLIAMSON_COUNTY_TN", - "label": "Williamson County, TN" - }, - { - "value": "WILSON_COUNTY_TN", - "label": "Wilson County, TN" - }, - { - "value": "ANDERSON_COUNTY_TX", - "label": "Anderson County, TX" - }, - { - "value": "ANDREWS_COUNTY_TX", - "label": "Andrews County, TX" - }, - { - "value": "ANGELINA_COUNTY_TX", - "label": "Angelina County, TX" - }, - { - "value": "ARANSAS_COUNTY_TX", - "label": "Aransas County, TX" - }, - { - "value": "ARCHER_COUNTY_TX", - "label": "Archer County, TX" - }, - { - "value": "ARMSTRONG_COUNTY_TX", - "label": "Armstrong County, TX" - }, - { - "value": "ATASCOSA_COUNTY_TX", - "label": "Atascosa County, TX" - }, - { - "value": "AUSTIN_COUNTY_TX", - "label": "Austin County, TX" - }, - { - "value": "BAILEY_COUNTY_TX", - "label": "Bailey County, TX" - }, - { - "value": "BANDERA_COUNTY_TX", - "label": "Bandera County, TX" - }, - { - "value": "BASTROP_COUNTY_TX", - "label": "Bastrop County, TX" - }, - { - "value": "BEE_COUNTY_TX", - "label": "Bee County, TX" - }, - { - "value": "BELL_COUNTY_TX", - "label": "Bell County, TX" - }, - { - "value": "BEXAR_COUNTY_TX", - "label": "Bexar County, TX" - }, - { - "value": "BLANCO_COUNTY_TX", - "label": "Blanco County, TX" - }, - { - "value": "BORDEN_COUNTY_TX", - "label": "Borden County, TX" - }, - { - "value": "BOSQUE_COUNTY_TX", - "label": "Bosque County, TX" - }, - { - "value": "BOWIE_COUNTY_TX", - "label": "Bowie County, TX" - }, - { - "value": "BRAZORIA_COUNTY_TX", - "label": "Brazoria County, TX" - }, - { - "value": "BRAZOS_COUNTY_TX", - "label": "Brazos County, TX" - }, - { - "value": "BREWSTER_COUNTY_TX", - "label": "Brewster County, TX" - }, - { - "value": "BRISCOE_COUNTY_TX", - "label": "Briscoe County, TX" - }, - { - "value": "BROOKS_COUNTY_TX", - "label": "Brooks County, TX" - }, - { - "value": "BROWN_COUNTY_TX", - "label": "Brown County, TX" - }, - { - "value": "BURLESON_COUNTY_TX", - "label": "Burleson County, TX" - }, - { - "value": "BURNET_COUNTY_TX", - "label": "Burnet County, TX" - }, - { - "value": "CALDWELL_COUNTY_TX", - "label": "Caldwell County, TX" - }, - { - "value": "CALHOUN_COUNTY_TX", - "label": "Calhoun County, TX" - }, - { - "value": "CALLAHAN_COUNTY_TX", - "label": "Callahan County, TX" - }, - { - "value": "CAMERON_COUNTY_TX", - "label": "Cameron County, TX" - }, - { - "value": "CAMP_COUNTY_TX", - "label": "Camp County, TX" - }, - { - "value": "CARSON_COUNTY_TX", - "label": "Carson County, TX" - }, - { - "value": "CASS_COUNTY_TX", - "label": "Cass County, TX" - }, - { - "value": "CASTRO_COUNTY_TX", - "label": "Castro County, TX" - }, - { - "value": "CHAMBERS_COUNTY_TX", - "label": "Chambers County, TX" - }, - { - "value": "CHEROKEE_COUNTY_TX", - "label": "Cherokee County, TX" - }, - { - "value": "CHILDRESS_COUNTY_TX", - "label": "Childress County, TX" - }, - { - "value": "CLAY_COUNTY_TX", - "label": "Clay County, TX" - }, - { - "value": "COCHRAN_COUNTY_TX", - "label": "Cochran County, TX" - }, - { - "value": "COKE_COUNTY_TX", - "label": "Coke County, TX" - }, - { - "value": "COLEMAN_COUNTY_TX", - "label": "Coleman County, TX" - }, - { - "value": "COLLIN_COUNTY_TX", - "label": "Collin County, TX" - }, - { - "value": "COLLINGSWORTH_COUNTY_TX", - "label": "Collingsworth County, TX" - }, - { - "value": "COLORADO_COUNTY_TX", - "label": "Colorado County, TX" - }, - { - "value": "COMAL_COUNTY_TX", - "label": "Comal County, TX" - }, - { - "value": "COMANCHE_COUNTY_TX", - "label": "Comanche County, TX" - }, - { - "value": "CONCHO_COUNTY_TX", - "label": "Concho County, TX" - }, - { - "value": "COOKE_COUNTY_TX", - "label": "Cooke County, TX" - }, - { - "value": "CORYELL_COUNTY_TX", - "label": "Coryell County, TX" - }, - { - "value": "COTTLE_COUNTY_TX", - "label": "Cottle County, TX" - }, - { - "value": "CRANE_COUNTY_TX", - "label": "Crane County, TX" - }, - { - "value": "CROCKETT_COUNTY_TX", - "label": "Crockett County, TX" - }, - { - "value": "CROSBY_COUNTY_TX", - "label": "Crosby County, TX" - }, - { - "value": "CULBERSON_COUNTY_TX", - "label": "Culberson County, TX" - }, - { - "value": "DALLAM_COUNTY_TX", - "label": "Dallam County, TX" - }, - { - "value": "DALLAS_COUNTY_TX", - "label": "Dallas County, TX" - }, - { - "value": "DAWSON_COUNTY_TX", - "label": "Dawson County, TX" - }, - { - "value": "DEWITT_COUNTY_TX", - "label": "DeWitt County, TX" - }, - { - "value": "DEAF_SMITH_COUNTY_TX", - "label": "Deaf Smith County, TX" - }, - { - "value": "DELTA_COUNTY_TX", - "label": "Delta County, TX" - }, - { - "value": "DENTON_COUNTY_TX", - "label": "Denton County, TX" - }, - { - "value": "DICKENS_COUNTY_TX", - "label": "Dickens County, TX" - }, - { - "value": "DIMMIT_COUNTY_TX", - "label": "Dimmit County, TX" - }, - { - "value": "DONLEY_COUNTY_TX", - "label": "Donley County, TX" - }, - { - "value": "DOÑA_ANA_COUNTY_TX", - "label": "Doña Ana County, TX" - }, - { - "value": "DUVAL_COUNTY_TX", - "label": "Duval County, TX" - }, - { - "value": "EASTLAND_COUNTY_TX", - "label": "Eastland County, TX" - }, - { - "value": "ECTOR_COUNTY_TX", - "label": "Ector County, TX" - }, - { - "value": "EDWARDS_COUNTY_TX", - "label": "Edwards County, TX" - }, - { - "value": "EL_PASO_COUNTY_TX", - "label": "El Paso County, TX" - }, - { - "value": "ELLIS_COUNTY_TX", - "label": "Ellis County, TX" - }, - { - "value": "ERATH_COUNTY_TX", - "label": "Erath County, TX" - }, - { - "value": "FALLS_COUNTY_TX", - "label": "Falls County, TX" - }, - { - "value": "FANNIN_COUNTY_TX", - "label": "Fannin County, TX" - }, - { - "value": "FAYETTE_COUNTY_TX", - "label": "Fayette County, TX" - }, - { - "value": "FISHER_COUNTY_TX", - "label": "Fisher County, TX" - }, - { - "value": "FLOYD_COUNTY_TX", - "label": "Floyd County, TX" - }, - { - "value": "FOARD_COUNTY_TX", - "label": "Foard County, TX" - }, - { - "value": "FORT_BEND_COUNTY_TX", - "label": "Fort Bend County, TX" - }, - { - "value": "FRANKLIN_COUNTY_TX", - "label": "Franklin County, TX" - }, - { - "value": "FREESTONE_COUNTY_TX", - "label": "Freestone County, TX" - }, - { - "value": "FRIO_COUNTY_TX", - "label": "Frio County, TX" - }, - { - "value": "GAINES_COUNTY_TX", - "label": "Gaines County, TX" - }, - { - "value": "GALVESTON_COUNTY_TX", - "label": "Galveston County, TX" - }, - { - "value": "GARZA_COUNTY_TX", - "label": "Garza County, TX" - }, - { - "value": "GILLESPIE_COUNTY_TX", - "label": "Gillespie County, TX" - }, - { - "value": "GLASSCOCK_COUNTY_TX", - "label": "Glasscock County, TX" - }, - { - "value": "GOLIAD_COUNTY_TX", - "label": "Goliad County, TX" - }, - { - "value": "GONZALES_COUNTY_TX", - "label": "Gonzales County, TX" - }, - { - "value": "GRAY_COUNTY_TX", - "label": "Gray County, TX" - }, - { - "value": "GRAYSON_COUNTY_TX", - "label": "Grayson County, TX" - }, - { - "value": "GREGG_COUNTY_TX", - "label": "Gregg County, TX" - }, - { - "value": "GRIMES_COUNTY_TX", - "label": "Grimes County, TX" - }, - { - "value": "GUADALUPE_COUNTY_TX", - "label": "Guadalupe County, TX" - }, - { - "value": "HALE_COUNTY_TX", - "label": "Hale County, TX" - }, - { - "value": "HALL_COUNTY_TX", - "label": "Hall County, TX" - }, - { - "value": "HAMILTON_COUNTY_TX", - "label": "Hamilton County, TX" - }, - { - "value": "HANSFORD_COUNTY_TX", - "label": "Hansford County, TX" - }, - { - "value": "HARDIN_COUNTY_TX", - "label": "Hardin County, TX" - }, - { - "value": "HARRIS_COUNTY_TX", - "label": "Harris County, TX" - }, - { - "value": "HARRISON_COUNTY_TX", - "label": "Harrison County, TX" - }, - { - "value": "HARTLEY_COUNTY_TX", - "label": "Hartley County, TX" - }, - { - "value": "HASKELL_COUNTY_TX", - "label": "Haskell County, TX" - }, - { - "value": "HAYS_COUNTY_TX", - "label": "Hays County, TX" - }, - { - "value": "HENDERSON_COUNTY_TX", - "label": "Henderson County, TX" - }, - { - "value": "HIDALGO_COUNTY_TX", - "label": "Hidalgo County, TX" - }, - { - "value": "HILL_COUNTY_TX", - "label": "Hill County, TX" - }, - { - "value": "HOCKLEY_COUNTY_TX", - "label": "Hockley County, TX" - }, - { - "value": "HOOD_COUNTY_TX", - "label": "Hood County, TX" - }, - { - "value": "HOPKINS_COUNTY_TX", - "label": "Hopkins County, TX" - }, - { - "value": "HOUSTON_COUNTY_TX", - "label": "Houston County, TX" - }, - { - "value": "HOWARD_COUNTY_TX", - "label": "Howard County, TX" - }, - { - "value": "HUDSPETH_COUNTY_TX", - "label": "Hudspeth County, TX" - }, - { - "value": "HUNT_COUNTY_TX", - "label": "Hunt County, TX" - }, - { - "value": "HUTCHINSON_COUNTY_TX", - "label": "Hutchinson County, TX" - }, - { - "value": "IRION_COUNTY_TX", - "label": "Irion County, TX" - }, - { - "value": "JACK_COUNTY_TX", - "label": "Jack County, TX" - }, - { - "value": "JACKSON_COUNTY_TX", - "label": "Jackson County, TX" - }, - { - "value": "JASPER_COUNTY_TX", - "label": "Jasper County, TX" - }, - { - "value": "JEFF_DAVIS_COUNTY_TX", - "label": "Jeff Davis County, TX" - }, - { - "value": "JEFFERSON_COUNTY_TX", - "label": "Jefferson County, TX" - }, - { - "value": "JIM_WELLS_COUNTY_TX", - "label": "Jim Wells County, TX" - }, - { - "value": "JOHNSON_COUNTY_TX", - "label": "Johnson County, TX" - }, - { - "value": "JONES_COUNTY_TX", - "label": "Jones County, TX" - }, - { - "value": "KARNES_COUNTY_TX", - "label": "Karnes County, TX" - }, - { - "value": "KAUFMAN_COUNTY_TX", - "label": "Kaufman County, TX" - }, - { - "value": "KENDALL_COUNTY_TX", - "label": "Kendall County, TX" - }, - { - "value": "KENEDY_COUNTY_TX", - "label": "Kenedy County, TX" - }, - { - "value": "KENT_COUNTY_TX", - "label": "Kent County, TX" - }, - { - "value": "KERR_COUNTY_TX", - "label": "Kerr County, TX" - }, - { - "value": "KING_COUNTY_TX", - "label": "King County, TX" - }, - { - "value": "KINNEY_COUNTY_TX", - "label": "Kinney County, TX" - }, - { - "value": "KLEBERG_COUNTY_TX", - "label": "Kleberg County, TX" - }, - { - "value": "KNOX_COUNTY_TX", - "label": "Knox County, TX" - }, - { - "value": "LA_SALLE_COUNTY_TX", - "label": "La Salle County, TX" - }, - { - "value": "LAMAR_COUNTY_TX", - "label": "Lamar County, TX" - }, - { - "value": "LAMB_COUNTY_TX", - "label": "Lamb County, TX" - }, - { - "value": "LAMPASAS_COUNTY_TX", - "label": "Lampasas County, TX" - }, - { - "value": "LAVACA_COUNTY_TX", - "label": "Lavaca County, TX" - }, - { - "value": "LEE_COUNTY_TX", - "label": "Lee County, TX" - }, - { - "value": "LEON_COUNTY_TX", - "label": "Leon County, TX" - }, - { - "value": "LIBERTY_COUNTY_TX", - "label": "Liberty County, TX" - }, - { - "value": "LIMESTONE_COUNTY_TX", - "label": "Limestone County, TX" - }, - { - "value": "LIPSCOMB_COUNTY_TX", - "label": "Lipscomb County, TX" - }, - { - "value": "LIVE_OAK_COUNTY_TX", - "label": "Live Oak County, TX" - }, - { - "value": "LLANO_COUNTY_TX", - "label": "Llano County, TX" - }, - { - "value": "LOVING_COUNTY_TX", - "label": "Loving County, TX" - }, - { - "value": "LUBBOCK_COUNTY_TX", - "label": "Lubbock County, TX" - }, - { - "value": "LYNN_COUNTY_TX", - "label": "Lynn County, TX" - }, - { - "value": "MADISON_COUNTY_TX", - "label": "Madison County, TX" - }, - { - "value": "MARION_COUNTY_TX", - "label": "Marion County, TX" - }, - { - "value": "MARTIN_COUNTY_TX", - "label": "Martin County, TX" - }, - { - "value": "MASON_COUNTY_TX", - "label": "Mason County, TX" - }, - { - "value": "MATAGORDA_COUNTY_TX", - "label": "Matagorda County, TX" - }, - { - "value": "MAVERICK_COUNTY_TX", - "label": "Maverick County, TX" - }, - { - "value": "MCCULLOCH_COUNTY_TX", - "label": "McCulloch County, TX" - }, - { - "value": "MCLENNAN_COUNTY_TX", - "label": "McLennan County, TX" - }, - { - "value": "MCMULLEN_COUNTY_TX", - "label": "McMullen County, TX" - }, - { - "value": "MEDINA_COUNTY_TX", - "label": "Medina County, TX" - }, - { - "value": "MENARD_COUNTY_TX", - "label": "Menard County, TX" - }, - { - "value": "MIDLAND_COUNTY_TX", - "label": "Midland County, TX" - }, - { - "value": "MILAM_COUNTY_TX", - "label": "Milam County, TX" - }, - { - "value": "MILLER_COUNTY_TX", - "label": "Miller County, TX" - }, - { - "value": "MILLS_COUNTY_TX", - "label": "Mills County, TX" - }, - { - "value": "MITCHELL_COUNTY_TX", - "label": "Mitchell County, TX" - }, - { - "value": "MONTAGUE_COUNTY_TX", - "label": "Montague County, TX" - }, - { - "value": "MONTGOMERY_COUNTY_TX", - "label": "Montgomery County, TX" - }, - { - "value": "MOORE_COUNTY_TX", - "label": "Moore County, TX" - }, - { - "value": "MORRIS_COUNTY_TX", - "label": "Morris County, TX" - }, - { - "value": "MOTLEY_COUNTY_TX", - "label": "Motley County, TX" - }, - { - "value": "NACOGDOCHES_COUNTY_TX", - "label": "Nacogdoches County, TX" - }, - { - "value": "NAVARRO_COUNTY_TX", - "label": "Navarro County, TX" - }, - { - "value": "NEWTON_COUNTY_TX", - "label": "Newton County, TX" - }, - { - "value": "NOLAN_COUNTY_TX", - "label": "Nolan County, TX" - }, - { - "value": "NUECES_COUNTY_TX", - "label": "Nueces County, TX" - }, - { - "value": "OCHILTREE_COUNTY_TX", - "label": "Ochiltree County, TX" - }, - { - "value": "OLDHAM_COUNTY_TX", - "label": "Oldham County, TX" - }, - { - "value": "ORANGE_COUNTY_TX", - "label": "Orange County, TX" - }, - { - "value": "PALO_PINTO_COUNTY_TX", - "label": "Palo Pinto County, TX" - }, - { - "value": "PANOLA_COUNTY_TX", - "label": "Panola County, TX" - }, - { - "value": "PARKER_COUNTY_TX", - "label": "Parker County, TX" - }, - { - "value": "PARMER_COUNTY_TX", - "label": "Parmer County, TX" - }, - { - "value": "PECOS_COUNTY_TX", - "label": "Pecos County, TX" - }, - { - "value": "POLK_COUNTY_TX", - "label": "Polk County, TX" - }, - { - "value": "POTTER_COUNTY_TX", - "label": "Potter County, TX" - }, - { - "value": "PRESIDIO_COUNTY_TX", - "label": "Presidio County, TX" - }, - { - "value": "RAINS_COUNTY_TX", - "label": "Rains County, TX" - }, - { - "value": "RANDALL_COUNTY_TX", - "label": "Randall County, TX" - }, - { - "value": "REAL_COUNTY_TX", - "label": "Real County, TX" - }, - { - "value": "RED_RIVER_COUNTY_TX", - "label": "Red River County, TX" - }, - { - "value": "REEVES_COUNTY_TX", - "label": "Reeves County, TX" - }, - { - "value": "REFUGIO_COUNTY_TX", - "label": "Refugio County, TX" - }, - { - "value": "ROBERTS_COUNTY_TX", - "label": "Roberts County, TX" - }, - { - "value": "ROBERTSON_COUNTY_TX", - "label": "Robertson County, TX" - }, - { - "value": "ROCKWALL_COUNTY_TX", - "label": "Rockwall County, TX" - }, - { - "value": "RUNNELS_COUNTY_TX", - "label": "Runnels County, TX" - }, - { - "value": "RUSK_COUNTY_TX", - "label": "Rusk County, TX" - }, - { - "value": "SABINE_COUNTY_TX", - "label": "Sabine County, TX" - }, - { - "value": "SAN_AUGUSTINE_COUNTY_TX", - "label": "San Augustine County, TX" - }, - { - "value": "SAN_JACINTO_COUNTY_TX", - "label": "San Jacinto County, TX" - }, - { - "value": "SAN_PATRICIO_COUNTY_TX", - "label": "San Patricio County, TX" - }, - { - "value": "SAN_SABA_COUNTY_TX", - "label": "San Saba County, TX" - }, - { - "value": "SCHLEICHER_COUNTY_TX", - "label": "Schleicher County, TX" - }, - { - "value": "SCURRY_COUNTY_TX", - "label": "Scurry County, TX" - }, - { - "value": "SHACKELFORD_COUNTY_TX", - "label": "Shackelford County, TX" - }, - { - "value": "SHELBY_COUNTY_TX", - "label": "Shelby County, TX" - }, - { - "value": "SHERMAN_COUNTY_TX", - "label": "Sherman County, TX" - }, - { - "value": "SMITH_COUNTY_TX", - "label": "Smith County, TX" - }, - { - "value": "SOMERVELL_COUNTY_TX", - "label": "Somervell County, TX" - }, - { - "value": "STARR_COUNTY_TX", - "label": "Starr County, TX" - }, - { - "value": "STEPHENS_COUNTY_TX", - "label": "Stephens County, TX" - }, - { - "value": "STERLING_COUNTY_TX", - "label": "Sterling County, TX" - }, - { - "value": "STONEWALL_COUNTY_TX", - "label": "Stonewall County, TX" - }, - { - "value": "SUTTON_COUNTY_TX", - "label": "Sutton County, TX" - }, - { - "value": "SWISHER_COUNTY_TX", - "label": "Swisher County, TX" - }, - { - "value": "TARRANT_COUNTY_TX", - "label": "Tarrant County, TX" - }, - { - "value": "TAYLOR_COUNTY_TX", - "label": "Taylor County, TX" - }, - { - "value": "TERRELL_COUNTY_TX", - "label": "Terrell County, TX" - }, - { - "value": "TERRY_COUNTY_TX", - "label": "Terry County, TX" - }, - { - "value": "THROCKMORTON_COUNTY_TX", - "label": "Throckmorton County, TX" - }, - { - "value": "TITUS_COUNTY_TX", - "label": "Titus County, TX" - }, - { - "value": "TOM_GREEN_COUNTY_TX", - "label": "Tom Green County, TX" - }, - { - "value": "TRAVIS_COUNTY_TX", - "label": "Travis County, TX" - }, - { - "value": "TRINITY_COUNTY_TX", - "label": "Trinity County, TX" - }, - { - "value": "TYLER_COUNTY_TX", - "label": "Tyler County, TX" - }, - { - "value": "UPSHUR_COUNTY_TX", - "label": "Upshur County, TX" - }, - { - "value": "UPTON_COUNTY_TX", - "label": "Upton County, TX" - }, - { - "value": "UVALDE_COUNTY_TX", - "label": "Uvalde County, TX" - }, - { - "value": "VAL_VERDE_COUNTY_TX", - "label": "Val Verde County, TX" - }, - { - "value": "VAN_ZANDT_COUNTY_TX", - "label": "Van Zandt County, TX" - }, - { - "value": "VICTORIA_COUNTY_TX", - "label": "Victoria County, TX" - }, - { - "value": "WALKER_COUNTY_TX", - "label": "Walker County, TX" - }, - { - "value": "WALLER_COUNTY_TX", - "label": "Waller County, TX" - }, - { - "value": "WARD_COUNTY_TX", - "label": "Ward County, TX" - }, - { - "value": "WASHINGTON_COUNTY_TX", - "label": "Washington County, TX" - }, - { - "value": "WEBB_COUNTY_TX", - "label": "Webb County, TX" - }, - { - "value": "WHARTON_COUNTY_TX", - "label": "Wharton County, TX" - }, - { - "value": "WHEELER_COUNTY_TX", - "label": "Wheeler County, TX" - }, - { - "value": "WICHITA_COUNTY_TX", - "label": "Wichita County, TX" - }, - { - "value": "WILBARGER_COUNTY_TX", - "label": "Wilbarger County, TX" - }, - { - "value": "WILLACY_COUNTY_TX", - "label": "Willacy County, TX" - }, - { - "value": "WILLIAMSON_COUNTY_TX", - "label": "Williamson County, TX" - }, - { - "value": "WILSON_COUNTY_TX", - "label": "Wilson County, TX" - }, - { - "value": "WINKLER_COUNTY_TX", - "label": "Winkler County, TX" - }, - { - "value": "WISE_COUNTY_TX", - "label": "Wise County, TX" - }, - { - "value": "WOOD_COUNTY_TX", - "label": "Wood County, TX" - }, - { - "value": "YOAKUM_COUNTY_TX", - "label": "Yoakum County, TX" - }, - { - "value": "YOUNG_COUNTY_TX", - "label": "Young County, TX" - }, - { - "value": "ZAPATA_COUNTY_TX", - "label": "Zapata County, TX" - }, - { - "value": "ZAVALA_COUNTY_TX", - "label": "Zavala County, TX" - }, - { - "value": "APACHE_COUNTY_UT", - "label": "Apache County, UT" - }, - { - "value": "BEAVER_COUNTY_UT", - "label": "Beaver County, UT" - }, - { - "value": "BOX_ELDER_COUNTY_UT", - "label": "Box Elder County, UT" - }, - { - "value": "CACHE_COUNTY_UT", - "label": "Cache County, UT" - }, - { - "value": "CARBON_COUNTY_UT", - "label": "Carbon County, UT" - }, - { - "value": "DAGGETT_COUNTY_UT", - "label": "Daggett County, UT" - }, - { - "value": "DAVIS_COUNTY_UT", - "label": "Davis County, UT" - }, - { - "value": "DUCHESNE_COUNTY_UT", - "label": "Duchesne County, UT" - }, - { - "value": "EMERY_COUNTY_UT", - "label": "Emery County, UT" - }, - { - "value": "GARFIELD_COUNTY_UT", - "label": "Garfield County, UT" - }, - { - "value": "GRAND_COUNTY_UT", - "label": "Grand County, UT" - }, - { - "value": "IRON_COUNTY_UT", - "label": "Iron County, UT" - }, - { - "value": "JUAB_COUNTY_UT", - "label": "Juab County, UT" - }, - { - "value": "KANE_COUNTY_UT", - "label": "Kane County, UT" - }, - { - "value": "MILLARD_COUNTY_UT", - "label": "Millard County, UT" - }, - { - "value": "MORGAN_COUNTY_UT", - "label": "Morgan County, UT" - }, - { - "value": "PIUTE_COUNTY_UT", - "label": "Piute County, UT" - }, - { - "value": "RICH_COUNTY_UT", - "label": "Rich County, UT" - }, - { - "value": "SALT_LAKE_COUNTY_UT", - "label": "Salt Lake County, UT" - }, - { - "value": "SAN_JUAN_COUNTY_UT", - "label": "San Juan County, UT" - }, - { - "value": "SANPETE_COUNTY_UT", - "label": "Sanpete County, UT" - }, - { - "value": "SEVIER_COUNTY_UT", - "label": "Sevier County, UT" - }, - { - "value": "SUMMIT_COUNTY_UT", - "label": "Summit County, UT" - }, - { - "value": "TOOELE_COUNTY_UT", - "label": "Tooele County, UT" - }, - { - "value": "UINTAH_COUNTY_UT", - "label": "Uintah County, UT" - }, - { - "value": "UTAH_COUNTY_UT", - "label": "Utah County, UT" - }, - { - "value": "WASATCH_COUNTY_UT", - "label": "Wasatch County, UT" - }, - { - "value": "WASHINGTON_COUNTY_UT", - "label": "Washington County, UT" - }, - { - "value": "WAYNE_COUNTY_UT", - "label": "Wayne County, UT" - }, - { - "value": "WEBER_COUNTY_UT", - "label": "Weber County, UT" - }, - { - "value": "WHITE_PINE_COUNTY_UT", - "label": "White Pine County, UT" - }, - { - "value": "ACCOMACK_COUNTY_VA", - "label": "Accomack County, VA" - }, - { - "value": "ALBEMARLE_COUNTY_VA", - "label": "Albemarle County, VA" - }, - { - "value": "ALEXANDRIA_CITY_VA", - "label": "Alexandria city, VA" - }, - { - "value": "ALLEGHANY_COUNTY_VA", - "label": "Alleghany County, VA" - }, - { - "value": "AMELIA_COUNTY_VA", - "label": "Amelia County, VA" - }, - { - "value": "AMHERST_COUNTY_VA", - "label": "Amherst County, VA" - }, - { - "value": "APPOMATTOX_COUNTY_VA", - "label": "Appomattox County, VA" - }, - { - "value": "ARLINGTON_COUNTY_VA", - "label": "Arlington County, VA" - }, - { - "value": "AUGUSTA_COUNTY_VA", - "label": "Augusta County, VA" - }, - { - "value": "BATH_COUNTY_VA", - "label": "Bath County, VA" - }, - { - "value": "BEDFORD_COUNTY_VA", - "label": "Bedford County, VA" - }, - { - "value": "BLAND_COUNTY_VA", - "label": "Bland County, VA" - }, - { - "value": "BOTETOURT_COUNTY_VA", - "label": "Botetourt County, VA" - }, - { - "value": "BRISTOL_CITY_VA", - "label": "Bristol city, VA" - }, - { - "value": "BRUNSWICK_COUNTY_VA", - "label": "Brunswick County, VA" - }, - { - "value": "BUCHANAN_COUNTY_VA", - "label": "Buchanan County, VA" - }, - { - "value": "BUCKINGHAM_COUNTY_VA", - "label": "Buckingham County, VA" - }, - { - "value": "CAMPBELL_COUNTY_VA", - "label": "Campbell County, VA" - }, - { - "value": "CAROLINE_COUNTY_VA", - "label": "Caroline County, VA" - }, - { - "value": "CARROLL_COUNTY_VA", - "label": "Carroll County, VA" - }, - { - "value": "CHARLES_CITY_COUNTY_VA", - "label": "Charles City County, VA" - }, - { - "value": "CHARLOTTE_COUNTY_VA", - "label": "Charlotte County, VA" - }, - { - "value": "CHARLOTTESVILLE_CITY_VA", - "label": "Charlottesville city, VA" - }, - { - "value": "CHESAPEAKE_CITY_VA", - "label": "Chesapeake city, VA" - }, - { - "value": "CHESTERFIELD_COUNTY_VA", - "label": "Chesterfield County, VA" - }, - { - "value": "CLARKE_COUNTY_VA", - "label": "Clarke County, VA" - }, - { - "value": "CRAIG_COUNTY_VA", - "label": "Craig County, VA" - }, - { - "value": "CULPEPER_COUNTY_VA", - "label": "Culpeper County, VA" - }, - { - "value": "CUMBERLAND_COUNTY_VA", - "label": "Cumberland County, VA" - }, - { - "value": "DANVILLE_CITY_VA", - "label": "Danville city, VA" - }, - { - "value": "DICKENSON_COUNTY_VA", - "label": "Dickenson County, VA" - }, - { - "value": "DINWIDDIE_COUNTY_VA", - "label": "Dinwiddie County, VA" - }, - { - "value": "EMPORIA_CITY_VA", - "label": "Emporia city, VA" - }, - { - "value": "ESSEX_COUNTY_VA", - "label": "Essex County, VA" - }, - { - "value": "FAIRFAX_COUNTY_VA", - "label": "Fairfax County, VA" - }, - { - "value": "FAIRFAX_CITY_VA", - "label": "Fairfax city, VA" - }, - { - "value": "FALLS_CHURCH_CITY_VA", - "label": "Falls Church city, VA" - }, - { - "value": "FAUQUIER_COUNTY_VA", - "label": "Fauquier County, VA" - }, - { - "value": "FLOYD_COUNTY_VA", - "label": "Floyd County, VA" - }, - { - "value": "FLUVANNA_COUNTY_VA", - "label": "Fluvanna County, VA" - }, - { - "value": "FRANKLIN_COUNTY_VA", - "label": "Franklin County, VA" - }, - { - "value": "FRANKLIN_CITY_VA", - "label": "Franklin city, VA" - }, - { - "value": "FREDERICK_COUNTY_VA", - "label": "Frederick County, VA" - }, - { - "value": "FREDERICKSBURG_CITY_VA", - "label": "Fredericksburg city, VA" - }, - { - "value": "GILES_COUNTY_VA", - "label": "Giles County, VA" - }, - { - "value": "GLOUCESTER_COUNTY_VA", - "label": "Gloucester County, VA" - }, - { - "value": "GOOCHLAND_COUNTY_VA", - "label": "Goochland County, VA" - }, - { - "value": "GRAYSON_COUNTY_VA", - "label": "Grayson County, VA" - }, - { - "value": "GREENE_COUNTY_VA", - "label": "Greene County, VA" - }, - { - "value": "GREENSVILLE_COUNTY_VA", - "label": "Greensville County, VA" - }, - { - "value": "HALIFAX_COUNTY_VA", - "label": "Halifax County, VA" - }, - { - "value": "HAMPTON_CITY_VA", - "label": "Hampton city, VA" - }, - { - "value": "HANOVER_COUNTY_VA", - "label": "Hanover County, VA" - }, - { - "value": "HARRISONBURG_CITY_VA", - "label": "Harrisonburg city, VA" - }, - { - "value": "HENRICO_COUNTY_VA", - "label": "Henrico County, VA" - }, - { - "value": "HENRY_COUNTY_VA", - "label": "Henry County, VA" - }, - { - "value": "HIGHLAND_COUNTY_VA", - "label": "Highland County, VA" - }, - { - "value": "HOPEWELL_CITY_VA", - "label": "Hopewell city, VA" - }, - { - "value": "ISLE_OF_WIGHT_COUNTY_VA", - "label": "Isle of Wight County, VA" - }, - { - "value": "JAMES_CITY_COUNTY_VA", - "label": "James City County, VA" - }, - { - "value": "JEFFERSON_COUNTY_VA", - "label": "Jefferson County, VA" - }, - { - "value": "KING_GEORGE_COUNTY_VA", - "label": "King George County, VA" - }, - { - "value": "KING_WILLIAM_COUNTY_VA", - "label": "King William County, VA" - }, - { - "value": "KING_AND_QUEEN_COUNTY_VA", - "label": "King and Queen County, VA" - }, - { - "value": "LANCASTER_COUNTY_VA", - "label": "Lancaster County, VA" - }, - { - "value": "LEE_COUNTY_VA", - "label": "Lee County, VA" - }, - { - "value": "LEXINGTON_CITY_VA", - "label": "Lexington city, VA" - }, - { - "value": "LOUDOUN_COUNTY_VA", - "label": "Loudoun County, VA" - }, - { - "value": "LOUISA_COUNTY_VA", - "label": "Louisa County, VA" - }, - { - "value": "LUNENBURG_COUNTY_VA", - "label": "Lunenburg County, VA" - }, - { - "value": "LYNCHBURG_CITY_VA", - "label": "Lynchburg city, VA" - }, - { - "value": "MADISON_COUNTY_VA", - "label": "Madison County, VA" - }, - { - "value": "MANASSAS_PARK_CITY_VA", - "label": "Manassas Park city, VA" - }, - { - "value": "MATHEWS_COUNTY_VA", - "label": "Mathews County, VA" - }, - { - "value": "MCDOWELL_COUNTY_VA", - "label": "McDowell County, VA" - }, - { - "value": "MECKLENBURG_COUNTY_VA", - "label": "Mecklenburg County, VA" - }, - { - "value": "MIDDLESEX_COUNTY_VA", - "label": "Middlesex County, VA" - }, - { - "value": "MONTGOMERY_COUNTY_VA", - "label": "Montgomery County, VA" - }, - { - "value": "NELSON_COUNTY_VA", - "label": "Nelson County, VA" - }, - { - "value": "NEW_KENT_COUNTY_VA", - "label": "New Kent County, VA" - }, - { - "value": "NEWPORT_NEWS_CITY_VA", - "label": "Newport News city, VA" - }, - { - "value": "NORFOLK_CITY_VA", - "label": "Norfolk city, VA" - }, - { - "value": "NORTHAMPTON_COUNTY_VA", - "label": "Northampton County, VA" - }, - { - "value": "NORTHUMBERLAND_COUNTY_VA", - "label": "Northumberland County, VA" - }, - { - "value": "NORTON_CITY_VA", - "label": "Norton city, VA" - }, - { - "value": "NOTTOWAY_COUNTY_VA", - "label": "Nottoway County, VA" - }, - { - "value": "ORANGE_COUNTY_VA", - "label": "Orange County, VA" - }, - { - "value": "PAGE_COUNTY_VA", - "label": "Page County, VA" - }, - { - "value": "PATRICK_COUNTY_VA", - "label": "Patrick County, VA" - }, - { - "value": "PETERSBURG_CITY_VA", - "label": "Petersburg city, VA" - }, - { - "value": "PITTSYLVANIA_COUNTY_VA", - "label": "Pittsylvania County, VA" - }, - { - "value": "POQUOSON_CITY_VA", - "label": "Poquoson city, VA" - }, - { - "value": "PORTSMOUTH_CITY_VA", - "label": "Portsmouth city, VA" - }, - { - "value": "POWHATAN_COUNTY_VA", - "label": "Powhatan County, VA" - }, - { - "value": "PRINCE_EDWARD_COUNTY_VA", - "label": "Prince Edward County, VA" - }, - { - "value": "PRINCE_GEORGE_COUNTY_VA", - "label": "Prince George County, VA" - }, - { - "value": "PRINCE_WILLIAM_COUNTY_VA", - "label": "Prince William County, VA" - }, - { - "value": "PULASKI_COUNTY_VA", - "label": "Pulaski County, VA" - }, - { - "value": "RADFORD_CITY_VA", - "label": "Radford city, VA" - }, - { - "value": "RAPPAHANNOCK_COUNTY_VA", - "label": "Rappahannock County, VA" - }, - { - "value": "RICHMOND_COUNTY_VA", - "label": "Richmond County, VA" - }, - { - "value": "RICHMOND_CITY_VA", - "label": "Richmond city, VA" - }, - { - "value": "ROANOKE_COUNTY_VA", - "label": "Roanoke County, VA" - }, - { - "value": "ROANOKE_CITY_VA", - "label": "Roanoke city, VA" - }, - { - "value": "ROCKBRIDGE_COUNTY_VA", - "label": "Rockbridge County, VA" - }, - { - "value": "ROCKINGHAM_COUNTY_VA", - "label": "Rockingham County, VA" - }, - { - "value": "RUSSELL_COUNTY_VA", - "label": "Russell County, VA" - }, - { - "value": "SCOTT_COUNTY_VA", - "label": "Scott County, VA" - }, - { - "value": "SHENANDOAH_COUNTY_VA", - "label": "Shenandoah County, VA" - }, - { - "value": "SMYTH_COUNTY_VA", - "label": "Smyth County, VA" - }, - { - "value": "SOUTHAMPTON_COUNTY_VA", - "label": "Southampton County, VA" - }, - { - "value": "SPOTSYLVANIA_COUNTY_VA", - "label": "Spotsylvania County, VA" - }, - { - "value": "STAFFORD_COUNTY_VA", - "label": "Stafford County, VA" - }, - { - "value": "STAUNTON_CITY_VA", - "label": "Staunton city, VA" - }, - { - "value": "SUFFOLK_CITY_VA", - "label": "Suffolk city, VA" - }, - { - "value": "SURRY_COUNTY_VA", - "label": "Surry County, VA" - }, - { - "value": "SUSSEX_COUNTY_VA", - "label": "Sussex County, VA" - }, - { - "value": "TAZEWELL_COUNTY_VA", - "label": "Tazewell County, VA" - }, - { - "value": "VIRGINIA_BEACH_CITY_VA", - "label": "Virginia Beach city, VA" - }, - { - "value": "WARREN_COUNTY_VA", - "label": "Warren County, VA" - }, - { - "value": "WASHINGTON_COUNTY_VA", - "label": "Washington County, VA" - }, - { - "value": "WAYNESBORO_CITY_VA", - "label": "Waynesboro city, VA" - }, - { - "value": "WESTMORELAND_COUNTY_VA", - "label": "Westmoreland County, VA" - }, - { - "value": "WISE_COUNTY_VA", - "label": "Wise County, VA" - }, - { - "value": "WYTHE_COUNTY_VA", - "label": "Wythe County, VA" - }, - { - "value": "YORK_COUNTY_VA", - "label": "York County, VA" - }, - { - "value": "ADDISON_COUNTY_VT", - "label": "Addison County, VT" - }, - { - "value": "BENNINGTON_COUNTY_VT", - "label": "Bennington County, VT" - }, - { - "value": "CALEDONIA_COUNTY_VT", - "label": "Caledonia County, VT" - }, - { - "value": "CHITTENDEN_COUNTY_VT", - "label": "Chittenden County, VT" - }, - { - "value": "ESSEX_COUNTY_VT", - "label": "Essex County, VT" - }, - { - "value": "FRANKLIN_COUNTY_VT", - "label": "Franklin County, VT" - }, - { - "value": "GRAND_ISLE_COUNTY_VT", - "label": "Grand Isle County, VT" - }, - { - "value": "LAMOILLE_COUNTY_VT", - "label": "Lamoille County, VT" - }, - { - "value": "ORANGE_COUNTY_VT", - "label": "Orange County, VT" - }, - { - "value": "ORLEANS_COUNTY_VT", - "label": "Orleans County, VT" - }, - { - "value": "RUTLAND_COUNTY_VT", - "label": "Rutland County, VT" - }, - { - "value": "WASHINGTON_COUNTY_VT", - "label": "Washington County, VT" - }, - { - "value": "WINDHAM_COUNTY_VT", - "label": "Windham County, VT" - }, - { - "value": "WINDSOR_COUNTY_VT", - "label": "Windsor County, VT" - }, - { - "value": "ADAMS_COUNTY_WA", - "label": "Adams County, WA" - }, - { - "value": "ASOTIN_COUNTY_WA", - "label": "Asotin County, WA" - }, - { - "value": "BENEWAH_COUNTY_WA", - "label": "Benewah County, WA" - }, - { - "value": "BENTON_COUNTY_WA", - "label": "Benton County, WA" - }, - { - "value": "CHELAN_COUNTY_WA", - "label": "Chelan County, WA" - }, - { - "value": "CLALLAM_COUNTY_WA", - "label": "Clallam County, WA" - }, - { - "value": "CLARK_COUNTY_WA", - "label": "Clark County, WA" - }, - { - "value": "COLUMBIA_COUNTY_WA", - "label": "Columbia County, WA" - }, - { - "value": "COWLITZ_COUNTY_WA", - "label": "Cowlitz County, WA" - }, - { - "value": "DOUGLAS_COUNTY_WA", - "label": "Douglas County, WA" - }, - { - "value": "FERRY_COUNTY_WA", - "label": "Ferry County, WA" - }, - { - "value": "FRANKLIN_COUNTY_WA", - "label": "Franklin County, WA" - }, - { - "value": "GARFIELD_COUNTY_WA", - "label": "Garfield County, WA" - }, - { - "value": "GRANT_COUNTY_WA", - "label": "Grant County, WA" - }, - { - "value": "GRAYS_HARBOR_COUNTY_WA", - "label": "Grays Harbor County, WA" - }, - { - "value": "ISLAND_COUNTY_WA", - "label": "Island County, WA" - }, - { - "value": "JEFFERSON_COUNTY_WA", - "label": "Jefferson County, WA" - }, - { - "value": "KING_COUNTY_WA", - "label": "King County, WA" - }, - { - "value": "KITSAP_COUNTY_WA", - "label": "Kitsap County, WA" - }, - { - "value": "KITTITAS_COUNTY_WA", - "label": "Kittitas County, WA" - }, - { - "value": "KLICKITAT_COUNTY_WA", - "label": "Klickitat County, WA" - }, - { - "value": "LEWIS_COUNTY_WA", - "label": "Lewis County, WA" - }, - { - "value": "LINCOLN_COUNTY_WA", - "label": "Lincoln County, WA" - }, - { - "value": "MASON_COUNTY_WA", - "label": "Mason County, WA" - }, - { - "value": "OKANOGAN_COUNTY_WA", - "label": "Okanogan County, WA" - }, - { - "value": "PACIFIC_COUNTY_WA", - "label": "Pacific County, WA" - }, - { - "value": "PEND_OREILLE_COUNTY_WA", - "label": "Pend Oreille County, WA" - }, - { - "value": "PIERCE_COUNTY_WA", - "label": "Pierce County, WA" - }, - { - "value": "SAN_JUAN_COUNTY_WA", - "label": "San Juan County, WA" - }, - { - "value": "SKAGIT_COUNTY_WA", - "label": "Skagit County, WA" - }, - { - "value": "SKAMANIA_COUNTY_WA", - "label": "Skamania County, WA" - }, - { - "value": "SNOHOMISH_COUNTY_WA", - "label": "Snohomish County, WA" - }, - { - "value": "SPOKANE_COUNTY_WA", - "label": "Spokane County, WA" - }, - { - "value": "STEVENS_COUNTY_WA", - "label": "Stevens County, WA" - }, - { - "value": "THURSTON_COUNTY_WA", - "label": "Thurston County, WA" - }, - { - "value": "WAHKIAKUM_COUNTY_WA", - "label": "Wahkiakum County, WA" - }, - { - "value": "WALLA_WALLA_COUNTY_WA", - "label": "Walla Walla County, WA" - }, - { - "value": "WHATCOM_COUNTY_WA", - "label": "Whatcom County, WA" - }, - { - "value": "WHITMAN_COUNTY_WA", - "label": "Whitman County, WA" - }, - { - "value": "YAKIMA_COUNTY_WA", - "label": "Yakima County, WA" - }, - { - "value": "ADAMS_COUNTY_WI", - "label": "Adams County, WI" - }, - { - "value": "ASHLAND_COUNTY_WI", - "label": "Ashland County, WI" - }, - { - "value": "BARRON_COUNTY_WI", - "label": "Barron County, WI" - }, - { - "value": "BAYFIELD_COUNTY_WI", - "label": "Bayfield County, WI" - }, - { - "value": "BROWN_COUNTY_WI", - "label": "Brown County, WI" - }, - { - "value": "BUFFALO_COUNTY_WI", - "label": "Buffalo County, WI" - }, - { - "value": "BURNETT_COUNTY_WI", - "label": "Burnett County, WI" - }, - { - "value": "CALUMET_COUNTY_WI", - "label": "Calumet County, WI" - }, - { - "value": "CHIPPEWA_COUNTY_WI", - "label": "Chippewa County, WI" - }, - { - "value": "CLARK_COUNTY_WI", - "label": "Clark County, WI" - }, - { - "value": "COLUMBIA_COUNTY_WI", - "label": "Columbia County, WI" - }, - { - "value": "CRAWFORD_COUNTY_WI", - "label": "Crawford County, WI" - }, - { - "value": "DANE_COUNTY_WI", - "label": "Dane County, WI" - }, - { - "value": "DODGE_COUNTY_WI", - "label": "Dodge County, WI" - }, - { - "value": "DOOR_COUNTY_WI", - "label": "Door County, WI" - }, - { - "value": "DOUGLAS_COUNTY_WI", - "label": "Douglas County, WI" - }, - { - "value": "DUNN_COUNTY_WI", - "label": "Dunn County, WI" - }, - { - "value": "EAU_CLAIRE_COUNTY_WI", - "label": "Eau Claire County, WI" - }, - { - "value": "FLORENCE_COUNTY_WI", - "label": "Florence County, WI" - }, - { - "value": "FOND_DU_LAC_COUNTY_WI", - "label": "Fond du Lac County, WI" - }, - { - "value": "FOREST_COUNTY_WI", - "label": "Forest County, WI" - }, - { - "value": "GRANT_COUNTY_WI", - "label": "Grant County, WI" - }, - { - "value": "GREEN_COUNTY_WI", - "label": "Green County, WI" - }, - { - "value": "GREEN_LAKE_COUNTY_WI", - "label": "Green Lake County, WI" - }, - { - "value": "IOWA_COUNTY_WI", - "label": "Iowa County, WI" - }, - { - "value": "IRON_COUNTY_WI", - "label": "Iron County, WI" - }, - { - "value": "JACKSON_COUNTY_WI", - "label": "Jackson County, WI" - }, - { - "value": "JEFFERSON_COUNTY_WI", - "label": "Jefferson County, WI" - }, - { - "value": "JUNEAU_COUNTY_WI", - "label": "Juneau County, WI" - }, - { - "value": "KENOSHA_COUNTY_WI", - "label": "Kenosha County, WI" - }, - { - "value": "KEWAUNEE_COUNTY_WI", - "label": "Kewaunee County, WI" - }, - { - "value": "LA_CROSSE_COUNTY_WI", - "label": "La Crosse County, WI" - }, - { - "value": "LAFAYETTE_COUNTY_WI", - "label": "Lafayette County, WI" - }, - { - "value": "LANGLADE_COUNTY_WI", - "label": "Langlade County, WI" - }, - { - "value": "LINCOLN_COUNTY_WI", - "label": "Lincoln County, WI" - }, - { - "value": "MANITOWOC_COUNTY_WI", - "label": "Manitowoc County, WI" - }, - { - "value": "MARATHON_COUNTY_WI", - "label": "Marathon County, WI" - }, - { - "value": "MARINETTE_COUNTY_WI", - "label": "Marinette County, WI" - }, - { - "value": "MARQUETTE_COUNTY_WI", - "label": "Marquette County, WI" - }, - { - "value": "MENOMINEE_COUNTY_WI", - "label": "Menominee County, WI" - }, - { - "value": "MILWAUKEE_COUNTY_WI", - "label": "Milwaukee County, WI" - }, - { - "value": "MONROE_COUNTY_WI", - "label": "Monroe County, WI" - }, - { - "value": "OCONTO_COUNTY_WI", - "label": "Oconto County, WI" - }, - { - "value": "ONEIDA_COUNTY_WI", - "label": "Oneida County, WI" - }, - { - "value": "OUTAGAMIE_COUNTY_WI", - "label": "Outagamie County, WI" - }, - { - "value": "OZAUKEE_COUNTY_WI", - "label": "Ozaukee County, WI" - }, - { - "value": "PEPIN_COUNTY_WI", - "label": "Pepin County, WI" - }, - { - "value": "PIERCE_COUNTY_WI", - "label": "Pierce County, WI" - }, - { - "value": "POLK_COUNTY_WI", - "label": "Polk County, WI" - }, - { - "value": "PORTAGE_COUNTY_WI", - "label": "Portage County, WI" - }, - { - "value": "PRICE_COUNTY_WI", - "label": "Price County, WI" - }, - { - "value": "RACINE_COUNTY_WI", - "label": "Racine County, WI" - }, - { - "value": "RICHLAND_COUNTY_WI", - "label": "Richland County, WI" - }, - { - "value": "ROCK_COUNTY_WI", - "label": "Rock County, WI" - }, - { - "value": "RUSK_COUNTY_WI", - "label": "Rusk County, WI" - }, - { - "value": "SAUK_COUNTY_WI", - "label": "Sauk County, WI" - }, - { - "value": "SAWYER_COUNTY_WI", - "label": "Sawyer County, WI" - }, - { - "value": "SHAWANO_COUNTY_WI", - "label": "Shawano County, WI" - }, - { - "value": "SHEBOYGAN_COUNTY_WI", - "label": "Sheboygan County, WI" - }, - { - "value": "ST_CROIX_COUNTY_WI", - "label": "St. Croix County, WI" - }, - { - "value": "TAYLOR_COUNTY_WI", - "label": "Taylor County, WI" - }, - { - "value": "TREMPEALEAU_COUNTY_WI", - "label": "Trempealeau County, WI" - }, - { - "value": "VERNON_COUNTY_WI", - "label": "Vernon County, WI" - }, - { - "value": "VILAS_COUNTY_WI", - "label": "Vilas County, WI" - }, - { - "value": "WALWORTH_COUNTY_WI", - "label": "Walworth County, WI" - }, - { - "value": "WASHBURN_COUNTY_WI", - "label": "Washburn County, WI" - }, - { - "value": "WASHINGTON_COUNTY_WI", - "label": "Washington County, WI" - }, - { - "value": "WAUKESHA_COUNTY_WI", - "label": "Waukesha County, WI" - }, - { - "value": "WAUPACA_COUNTY_WI", - "label": "Waupaca County, WI" - }, - { - "value": "WAUSHARA_COUNTY_WI", - "label": "Waushara County, WI" - }, - { - "value": "WINNEBAGO_COUNTY_WI", - "label": "Winnebago County, WI" - }, - { - "value": "WOOD_COUNTY_WI", - "label": "Wood County, WI" - }, - { - "value": "BARBOUR_COUNTY_WV", - "label": "Barbour County, WV" - }, - { - "value": "BERKELEY_COUNTY_WV", - "label": "Berkeley County, WV" - }, - { - "value": "BOONE_COUNTY_WV", - "label": "Boone County, WV" - }, - { - "value": "BRAXTON_COUNTY_WV", - "label": "Braxton County, WV" - }, - { - "value": "BROOKE_COUNTY_WV", - "label": "Brooke County, WV" - }, - { - "value": "CABELL_COUNTY_WV", - "label": "Cabell County, WV" - }, - { - "value": "CALHOUN_COUNTY_WV", - "label": "Calhoun County, WV" - }, - { - "value": "CLAY_COUNTY_WV", - "label": "Clay County, WV" - }, - { - "value": "DODDRIDGE_COUNTY_WV", - "label": "Doddridge County, WV" - }, - { - "value": "FAYETTE_COUNTY_WV", - "label": "Fayette County, WV" - }, - { - "value": "GILMER_COUNTY_WV", - "label": "Gilmer County, WV" - }, - { - "value": "GRANT_COUNTY_WV", - "label": "Grant County, WV" - }, - { - "value": "GREENBRIER_COUNTY_WV", - "label": "Greenbrier County, WV" - }, - { - "value": "HAMPSHIRE_COUNTY_WV", - "label": "Hampshire County, WV" - }, - { - "value": "HANCOCK_COUNTY_WV", - "label": "Hancock County, WV" - }, - { - "value": "HARDY_COUNTY_WV", - "label": "Hardy County, WV" - }, - { - "value": "HARRISON_COUNTY_WV", - "label": "Harrison County, WV" - }, - { - "value": "JACKSON_COUNTY_WV", - "label": "Jackson County, WV" - }, - { - "value": "JEFFERSON_COUNTY_WV", - "label": "Jefferson County, WV" - }, - { - "value": "KANAWHA_COUNTY_WV", - "label": "Kanawha County, WV" - }, - { - "value": "LEWIS_COUNTY_WV", - "label": "Lewis County, WV" - }, - { - "value": "LINCOLN_COUNTY_WV", - "label": "Lincoln County, WV" - }, - { - "value": "LOGAN_COUNTY_WV", - "label": "Logan County, WV" - }, - { - "value": "MARION_COUNTY_WV", - "label": "Marion County, WV" - }, - { - "value": "MARSHALL_COUNTY_WV", - "label": "Marshall County, WV" - }, - { - "value": "MASON_COUNTY_WV", - "label": "Mason County, WV" - }, - { - "value": "MCDOWELL_COUNTY_WV", - "label": "McDowell County, WV" - }, - { - "value": "MERCER_COUNTY_WV", - "label": "Mercer County, WV" - }, - { - "value": "MINERAL_COUNTY_WV", - "label": "Mineral County, WV" - }, - { - "value": "MINGO_COUNTY_WV", - "label": "Mingo County, WV" - }, - { - "value": "MONONGALIA_COUNTY_WV", - "label": "Monongalia County, WV" - }, - { - "value": "MONROE_COUNTY_WV", - "label": "Monroe County, WV" - }, - { - "value": "MORGAN_COUNTY_WV", - "label": "Morgan County, WV" - }, - { - "value": "NICHOLAS_COUNTY_WV", - "label": "Nicholas County, WV" - }, - { - "value": "OHIO_COUNTY_WV", - "label": "Ohio County, WV" - }, - { - "value": "PENDLETON_COUNTY_WV", - "label": "Pendleton County, WV" - }, - { - "value": "PLEASANTS_COUNTY_WV", - "label": "Pleasants County, WV" - }, - { - "value": "POCAHONTAS_COUNTY_WV", - "label": "Pocahontas County, WV" - }, - { - "value": "PRESTON_COUNTY_WV", - "label": "Preston County, WV" - }, - { - "value": "PUTNAM_COUNTY_WV", - "label": "Putnam County, WV" - }, - { - "value": "RALEIGH_COUNTY_WV", - "label": "Raleigh County, WV" - }, - { - "value": "RANDOLPH_COUNTY_WV", - "label": "Randolph County, WV" - }, - { - "value": "RITCHIE_COUNTY_WV", - "label": "Ritchie County, WV" - }, - { - "value": "ROANE_COUNTY_WV", - "label": "Roane County, WV" - }, - { - "value": "SUMMERS_COUNTY_WV", - "label": "Summers County, WV" - }, - { - "value": "TAYLOR_COUNTY_WV", - "label": "Taylor County, WV" - }, - { - "value": "TUCKER_COUNTY_WV", - "label": "Tucker County, WV" - }, - { - "value": "TYLER_COUNTY_WV", - "label": "Tyler County, WV" - }, - { - "value": "UPSHUR_COUNTY_WV", - "label": "Upshur County, WV" - }, - { - "value": "WAYNE_COUNTY_WV", - "label": "Wayne County, WV" - }, - { - "value": "WEBSTER_COUNTY_WV", - "label": "Webster County, WV" - }, - { - "value": "WETZEL_COUNTY_WV", - "label": "Wetzel County, WV" - }, - { - "value": "WIRT_COUNTY_WV", - "label": "Wirt County, WV" - }, - { - "value": "WOOD_COUNTY_WV", - "label": "Wood County, WV" - }, - { - "value": "WYOMING_COUNTY_WV", - "label": "Wyoming County, WV" - }, - { - "value": "ALBANY_COUNTY_WY", - "label": "Albany County, WY" - }, - { - "value": "BIG_HORN_COUNTY_WY", - "label": "Big Horn County, WY" - }, - { - "value": "BONNEVILLE_COUNTY_WY", - "label": "Bonneville County, WY" - }, - { - "value": "CAMPBELL_COUNTY_WY", - "label": "Campbell County, WY" - }, - { - "value": "CARBON_COUNTY_WY", - "label": "Carbon County, WY" - }, - { - "value": "CONVERSE_COUNTY_WY", - "label": "Converse County, WY" - }, - { - "value": "CROOK_COUNTY_WY", - "label": "Crook County, WY" - }, - { - "value": "CUSTER_COUNTY_WY", - "label": "Custer County, WY" - }, - { - "value": "FREMONT_COUNTY_WY", - "label": "Fremont County, WY" - }, - { - "value": "GOSHEN_COUNTY_WY", - "label": "Goshen County, WY" - }, - { - "value": "HOT_SPRINGS_COUNTY_WY", - "label": "Hot Springs County, WY" - }, - { - "value": "JOHNSON_COUNTY_WY", - "label": "Johnson County, WY" - }, - { - "value": "KIMBALL_COUNTY_WY", - "label": "Kimball County, WY" - }, - { - "value": "LARAMIE_COUNTY_WY", - "label": "Laramie County, WY" - }, - { - "value": "LARIMER_COUNTY_WY", - "label": "Larimer County, WY" - }, - { - "value": "LINCOLN_COUNTY_WY", - "label": "Lincoln County, WY" - }, - { - "value": "NATRONA_COUNTY_WY", - "label": "Natrona County, WY" - }, - { - "value": "NIOBRARA_COUNTY_WY", - "label": "Niobrara County, WY" - }, - { - "value": "PARK_COUNTY_WY", - "label": "Park County, WY" - }, - { - "value": "PLATTE_COUNTY_WY", - "label": "Platte County, WY" - }, - { - "value": "SHERIDAN_COUNTY_WY", - "label": "Sheridan County, WY" - }, - { - "value": "SUBLETTE_COUNTY_WY", - "label": "Sublette County, WY" - }, - { - "value": "SUMMIT_COUNTY_WY", - "label": "Summit County, WY" - }, - { - "value": "SWEETWATER_COUNTY_WY", - "label": "Sweetwater County, WY" - }, - { - "value": "TETON_COUNTY_WY", - "label": "Teton County, WY" - }, - { - "value": "UINTA_COUNTY_WY", - "label": "Uinta County, WY" - }, - { - "value": "WASHAKIE_COUNTY_WY", - "label": "Washakie County, WY" - }, - { - "value": "WESTON_COUNTY_WY", - "label": "Weston County, WY" - } - ] - }, - "county_str": { - "documentation": "County variable, stored as a string", - "entity": "household", - "valueType": "str", - "definitionPeriod": "year", - "name": "county_str", - "label": "County (string)", - "category": null, - "unit": null, - "moduleName": "household.demographic.geographic.county.county_str", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": null, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "county": { - "documentation": null, - "entity": "household", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "county", - "label": "County", - "category": null, - "unit": null, - "moduleName": "household.demographic.geographic.county.county", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "UNKNOWN", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "UNKNOWN", - "label": "Unknown" - }, - { - "value": "ALEUTIANS_EAST_BOROUGH_AK", - "label": "Aleutians East Borough, AK" - }, - { - "value": "ALEUTIANS_WEST_CENSUS_AREA_AK", - "label": "Aleutians West Census Area, AK" - }, - { - "value": "ANCHORAGE_MUNICIPALITY_AK", - "label": "Anchorage Municipality, AK" - }, - { - "value": "BETHEL_CENSUS_AREA_AK", - "label": "Bethel Census Area, AK" - }, - { - "value": "BRISTOL_BAY_BOROUGH_AK", - "label": "Bristol Bay Borough, AK" - }, - { - "value": "CHUGACH_CENSUS_AREA_AK", - "label": "Chugach Census Area, AK" - }, - { - "value": "COPPER_RIVER_CENSUS_AREA_AK", - "label": "Copper River Census Area, AK" - }, - { - "value": "DENALI_BOROUGH_AK", - "label": "Denali Borough, AK" - }, - { - "value": "DILLINGHAM_CENSUS_AREA_AK", - "label": "Dillingham Census Area, AK" - }, - { - "value": "FAIRBANKS_NORTH_STAR_BOROUGH_AK", - "label": "Fairbanks North Star Borough, AK" - }, - { - "value": "HOONAH_ANGOON_CENSUS_AREA_AK", - "label": "Hoonah-Angoon Census Area, AK" - }, - { - "value": "JUNEAU_CITY_AND_BOROUGH_AK", - "label": "Juneau City and Borough, AK" - }, - { - "value": "KENAI_PENINSULA_BOROUGH_AK", - "label": "Kenai Peninsula Borough, AK" - }, - { - "value": "KETCHIKAN_GATEWAY_BOROUGH_AK", - "label": "Ketchikan Gateway Borough, AK" - }, - { - "value": "KODIAK_ISLAND_BOROUGH_AK", - "label": "Kodiak Island Borough, AK" - }, - { - "value": "KUSILVAK_CENSUS_AREA_AK", - "label": "Kusilvak Census Area, AK" - }, - { - "value": "LAKE_AND_PENINSULA_BOROUGH_AK", - "label": "Lake and Peninsula Borough, AK" - }, - { - "value": "MATANUSKA_SUSITNA_BOROUGH_AK", - "label": "Matanuska-Susitna Borough, AK" - }, - { - "value": "NOME_CENSUS_AREA_AK", - "label": "Nome Census Area, AK" - }, - { - "value": "NORTH_SLOPE_BOROUGH_AK", - "label": "North Slope Borough, AK" - }, - { - "value": "NORTHWEST_ARCTIC_BOROUGH_AK", - "label": "Northwest Arctic Borough, AK" - }, - { - "value": "PRINCE_OF_WALES_HYDER_CENSUS_AREA_AK", - "label": "Prince of Wales-Hyder Census Area, AK" - }, - { - "value": "SITKA_CITY_AND_BOROUGH_AK", - "label": "Sitka City and Borough, AK" - }, - { - "value": "SKAGWAY_MUNICIPALITY_AK", - "label": "Skagway Municipality, AK" - }, - { - "value": "SOUTHEAST_FAIRBANKS_CENSUS_AREA_AK", - "label": "Southeast Fairbanks Census Area, AK" - }, - { - "value": "WRANGELL_CITY_AND_BOROUGH_AK", - "label": "Wrangell City and Borough, AK" - }, - { - "value": "YAKUTAT_CITY_AND_BOROUGH_AK", - "label": "Yakutat City and Borough, AK" - }, - { - "value": "YUKON_KOYUKUK_CENSUS_AREA_AK", - "label": "Yukon-Koyukuk Census Area, AK" - }, - { - "value": "AUTAUGA_COUNTY_AL", - "label": "Autauga County, AL" - }, - { - "value": "BALDWIN_COUNTY_AL", - "label": "Baldwin County, AL" - }, - { - "value": "BARBOUR_COUNTY_AL", - "label": "Barbour County, AL" - }, - { - "value": "BIBB_COUNTY_AL", - "label": "Bibb County, AL" - }, - { - "value": "BLOUNT_COUNTY_AL", - "label": "Blount County, AL" - }, - { - "value": "BULLOCK_COUNTY_AL", - "label": "Bullock County, AL" - }, - { - "value": "BUTLER_COUNTY_AL", - "label": "Butler County, AL" - }, - { - "value": "CALHOUN_COUNTY_AL", - "label": "Calhoun County, AL" - }, - { - "value": "CHAMBERS_COUNTY_AL", - "label": "Chambers County, AL" - }, - { - "value": "CHEROKEE_COUNTY_AL", - "label": "Cherokee County, AL" - }, - { - "value": "CHILTON_COUNTY_AL", - "label": "Chilton County, AL" - }, - { - "value": "CHOCTAW_COUNTY_AL", - "label": "Choctaw County, AL" - }, - { - "value": "CLARKE_COUNTY_AL", - "label": "Clarke County, AL" - }, - { - "value": "CLAY_COUNTY_AL", - "label": "Clay County, AL" - }, - { - "value": "CLEBURNE_COUNTY_AL", - "label": "Cleburne County, AL" - }, - { - "value": "COFFEE_COUNTY_AL", - "label": "Coffee County, AL" - }, - { - "value": "COLBERT_COUNTY_AL", - "label": "Colbert County, AL" - }, - { - "value": "CONECUH_COUNTY_AL", - "label": "Conecuh County, AL" - }, - { - "value": "COOSA_COUNTY_AL", - "label": "Coosa County, AL" - }, - { - "value": "COVINGTON_COUNTY_AL", - "label": "Covington County, AL" - }, - { - "value": "CRENSHAW_COUNTY_AL", - "label": "Crenshaw County, AL" - }, - { - "value": "CULLMAN_COUNTY_AL", - "label": "Cullman County, AL" - }, - { - "value": "DALE_COUNTY_AL", - "label": "Dale County, AL" - }, - { - "value": "DALLAS_COUNTY_AL", - "label": "Dallas County, AL" - }, - { - "value": "DEKALB_COUNTY_AL", - "label": "DeKalb County, AL" - }, - { - "value": "ELMORE_COUNTY_AL", - "label": "Elmore County, AL" - }, - { - "value": "ESCAMBIA_COUNTY_AL", - "label": "Escambia County, AL" - }, - { - "value": "ETOWAH_COUNTY_AL", - "label": "Etowah County, AL" - }, - { - "value": "FAYETTE_COUNTY_AL", - "label": "Fayette County, AL" - }, - { - "value": "FRANKLIN_COUNTY_AL", - "label": "Franklin County, AL" - }, - { - "value": "GENEVA_COUNTY_AL", - "label": "Geneva County, AL" - }, - { - "value": "GREENE_COUNTY_AL", - "label": "Greene County, AL" - }, - { - "value": "HALE_COUNTY_AL", - "label": "Hale County, AL" - }, - { - "value": "HENRY_COUNTY_AL", - "label": "Henry County, AL" - }, - { - "value": "HOUSTON_COUNTY_AL", - "label": "Houston County, AL" - }, - { - "value": "JACKSON_COUNTY_AL", - "label": "Jackson County, AL" - }, - { - "value": "JEFFERSON_COUNTY_AL", - "label": "Jefferson County, AL" - }, - { - "value": "LAMAR_COUNTY_AL", - "label": "Lamar County, AL" - }, - { - "value": "LAUDERDALE_COUNTY_AL", - "label": "Lauderdale County, AL" - }, - { - "value": "LAWRENCE_COUNTY_AL", - "label": "Lawrence County, AL" - }, - { - "value": "LEE_COUNTY_AL", - "label": "Lee County, AL" - }, - { - "value": "LIMESTONE_COUNTY_AL", - "label": "Limestone County, AL" - }, - { - "value": "LOWNDES_COUNTY_AL", - "label": "Lowndes County, AL" - }, - { - "value": "MACON_COUNTY_AL", - "label": "Macon County, AL" - }, - { - "value": "MADISON_COUNTY_AL", - "label": "Madison County, AL" - }, - { - "value": "MARENGO_COUNTY_AL", - "label": "Marengo County, AL" - }, - { - "value": "MARION_COUNTY_AL", - "label": "Marion County, AL" - }, - { - "value": "MARSHALL_COUNTY_AL", - "label": "Marshall County, AL" - }, - { - "value": "MOBILE_COUNTY_AL", - "label": "Mobile County, AL" - }, - { - "value": "MONROE_COUNTY_AL", - "label": "Monroe County, AL" - }, - { - "value": "MONTGOMERY_COUNTY_AL", - "label": "Montgomery County, AL" - }, - { - "value": "MORGAN_COUNTY_AL", - "label": "Morgan County, AL" - }, - { - "value": "PERRY_COUNTY_AL", - "label": "Perry County, AL" - }, - { - "value": "PICKENS_COUNTY_AL", - "label": "Pickens County, AL" - }, - { - "value": "PIKE_COUNTY_AL", - "label": "Pike County, AL" - }, - { - "value": "RANDOLPH_COUNTY_AL", - "label": "Randolph County, AL" - }, - { - "value": "RUSSELL_COUNTY_AL", - "label": "Russell County, AL" - }, - { - "value": "SHELBY_COUNTY_AL", - "label": "Shelby County, AL" - }, - { - "value": "ST_CLAIR_COUNTY_AL", - "label": "St. Clair County, AL" - }, - { - "value": "SUMTER_COUNTY_AL", - "label": "Sumter County, AL" - }, - { - "value": "TALLADEGA_COUNTY_AL", - "label": "Talladega County, AL" - }, - { - "value": "TALLAPOOSA_COUNTY_AL", - "label": "Tallapoosa County, AL" - }, - { - "value": "TROUP_COUNTY_AL", - "label": "Troup County, AL" - }, - { - "value": "TUSCALOOSA_COUNTY_AL", - "label": "Tuscaloosa County, AL" - }, - { - "value": "WALKER_COUNTY_AL", - "label": "Walker County, AL" - }, - { - "value": "WASHINGTON_COUNTY_AL", - "label": "Washington County, AL" - }, - { - "value": "WILCOX_COUNTY_AL", - "label": "Wilcox County, AL" - }, - { - "value": "WINSTON_COUNTY_AL", - "label": "Winston County, AL" - }, - { - "value": "ARKANSAS_COUNTY_AR", - "label": "Arkansas County, AR" - }, - { - "value": "ASHLEY_COUNTY_AR", - "label": "Ashley County, AR" - }, - { - "value": "BAXTER_COUNTY_AR", - "label": "Baxter County, AR" - }, - { - "value": "BENTON_COUNTY_AR", - "label": "Benton County, AR" - }, - { - "value": "BOONE_COUNTY_AR", - "label": "Boone County, AR" - }, - { - "value": "BRADLEY_COUNTY_AR", - "label": "Bradley County, AR" - }, - { - "value": "CALHOUN_COUNTY_AR", - "label": "Calhoun County, AR" - }, - { - "value": "CARROLL_COUNTY_AR", - "label": "Carroll County, AR" - }, - { - "value": "CHICOT_COUNTY_AR", - "label": "Chicot County, AR" - }, - { - "value": "CLARK_COUNTY_AR", - "label": "Clark County, AR" - }, - { - "value": "CLAY_COUNTY_AR", - "label": "Clay County, AR" - }, - { - "value": "CLEBURNE_COUNTY_AR", - "label": "Cleburne County, AR" - }, - { - "value": "CLEVELAND_COUNTY_AR", - "label": "Cleveland County, AR" - }, - { - "value": "COLUMBIA_COUNTY_AR", - "label": "Columbia County, AR" - }, - { - "value": "CONWAY_COUNTY_AR", - "label": "Conway County, AR" - }, - { - "value": "CRAIGHEAD_COUNTY_AR", - "label": "Craighead County, AR" - }, - { - "value": "CRAWFORD_COUNTY_AR", - "label": "Crawford County, AR" - }, - { - "value": "CRITTENDEN_COUNTY_AR", - "label": "Crittenden County, AR" - }, - { - "value": "CROSS_COUNTY_AR", - "label": "Cross County, AR" - }, - { - "value": "DALLAS_COUNTY_AR", - "label": "Dallas County, AR" - }, - { - "value": "DESHA_COUNTY_AR", - "label": "Desha County, AR" - }, - { - "value": "DREW_COUNTY_AR", - "label": "Drew County, AR" - }, - { - "value": "FAULKNER_COUNTY_AR", - "label": "Faulkner County, AR" - }, - { - "value": "FRANKLIN_COUNTY_AR", - "label": "Franklin County, AR" - }, - { - "value": "FULTON_COUNTY_AR", - "label": "Fulton County, AR" - }, - { - "value": "GARLAND_COUNTY_AR", - "label": "Garland County, AR" - }, - { - "value": "GRANT_COUNTY_AR", - "label": "Grant County, AR" - }, - { - "value": "GREENE_COUNTY_AR", - "label": "Greene County, AR" - }, - { - "value": "HEMPSTEAD_COUNTY_AR", - "label": "Hempstead County, AR" - }, - { - "value": "HOT_SPRING_COUNTY_AR", - "label": "Hot Spring County, AR" - }, - { - "value": "HOWARD_COUNTY_AR", - "label": "Howard County, AR" - }, - { - "value": "INDEPENDENCE_COUNTY_AR", - "label": "Independence County, AR" - }, - { - "value": "IZARD_COUNTY_AR", - "label": "Izard County, AR" - }, - { - "value": "JACKSON_COUNTY_AR", - "label": "Jackson County, AR" - }, - { - "value": "JEFFERSON_COUNTY_AR", - "label": "Jefferson County, AR" - }, - { - "value": "JOHNSON_COUNTY_AR", - "label": "Johnson County, AR" - }, - { - "value": "LAFAYETTE_COUNTY_AR", - "label": "Lafayette County, AR" - }, - { - "value": "LAWRENCE_COUNTY_AR", - "label": "Lawrence County, AR" - }, - { - "value": "LE_FLORE_COUNTY_AR", - "label": "Le Flore County, AR" - }, - { - "value": "LEE_COUNTY_AR", - "label": "Lee County, AR" - }, - { - "value": "LINCOLN_COUNTY_AR", - "label": "Lincoln County, AR" - }, - { - "value": "LITTLE_RIVER_COUNTY_AR", - "label": "Little River County, AR" - }, - { - "value": "LOGAN_COUNTY_AR", - "label": "Logan County, AR" - }, - { - "value": "LONOKE_COUNTY_AR", - "label": "Lonoke County, AR" - }, - { - "value": "MADISON_COUNTY_AR", - "label": "Madison County, AR" - }, - { - "value": "MARION_COUNTY_AR", - "label": "Marion County, AR" - }, - { - "value": "MILLER_COUNTY_AR", - "label": "Miller County, AR" - }, - { - "value": "MISSISSIPPI_COUNTY_AR", - "label": "Mississippi County, AR" - }, - { - "value": "MONROE_COUNTY_AR", - "label": "Monroe County, AR" - }, - { - "value": "MONTGOMERY_COUNTY_AR", - "label": "Montgomery County, AR" - }, - { - "value": "NEVADA_COUNTY_AR", - "label": "Nevada County, AR" - }, - { - "value": "NEWTON_COUNTY_AR", - "label": "Newton County, AR" - }, - { - "value": "OUACHITA_COUNTY_AR", - "label": "Ouachita County, AR" - }, - { - "value": "PERRY_COUNTY_AR", - "label": "Perry County, AR" - }, - { - "value": "PHILLIPS_COUNTY_AR", - "label": "Phillips County, AR" - }, - { - "value": "PIKE_COUNTY_AR", - "label": "Pike County, AR" - }, - { - "value": "POINSETT_COUNTY_AR", - "label": "Poinsett County, AR" - }, - { - "value": "POLK_COUNTY_AR", - "label": "Polk County, AR" - }, - { - "value": "POPE_COUNTY_AR", - "label": "Pope County, AR" - }, - { - "value": "PRAIRIE_COUNTY_AR", - "label": "Prairie County, AR" - }, - { - "value": "PULASKI_COUNTY_AR", - "label": "Pulaski County, AR" - }, - { - "value": "RANDOLPH_COUNTY_AR", - "label": "Randolph County, AR" - }, - { - "value": "SALINE_COUNTY_AR", - "label": "Saline County, AR" - }, - { - "value": "SCOTT_COUNTY_AR", - "label": "Scott County, AR" - }, - { - "value": "SEARCY_COUNTY_AR", - "label": "Searcy County, AR" - }, - { - "value": "SEBASTIAN_COUNTY_AR", - "label": "Sebastian County, AR" - }, - { - "value": "SEVIER_COUNTY_AR", - "label": "Sevier County, AR" - }, - { - "value": "SHARP_COUNTY_AR", - "label": "Sharp County, AR" - }, - { - "value": "ST_FRANCIS_COUNTY_AR", - "label": "St. Francis County, AR" - }, - { - "value": "STONE_COUNTY_AR", - "label": "Stone County, AR" - }, - { - "value": "TIPTON_COUNTY_AR", - "label": "Tipton County, AR" - }, - { - "value": "UNION_COUNTY_AR", - "label": "Union County, AR" - }, - { - "value": "VAN_BUREN_COUNTY_AR", - "label": "Van Buren County, AR" - }, - { - "value": "WASHINGTON_COUNTY_AR", - "label": "Washington County, AR" - }, - { - "value": "WHITE_COUNTY_AR", - "label": "White County, AR" - }, - { - "value": "WOODRUFF_COUNTY_AR", - "label": "Woodruff County, AR" - }, - { - "value": "YELL_COUNTY_AR", - "label": "Yell County, AR" - }, - { - "value": "APACHE_COUNTY_AZ", - "label": "Apache County, AZ" - }, - { - "value": "COCHISE_COUNTY_AZ", - "label": "Cochise County, AZ" - }, - { - "value": "COCONINO_COUNTY_AZ", - "label": "Coconino County, AZ" - }, - { - "value": "GILA_COUNTY_AZ", - "label": "Gila County, AZ" - }, - { - "value": "GRAHAM_COUNTY_AZ", - "label": "Graham County, AZ" - }, - { - "value": "GREENLEE_COUNTY_AZ", - "label": "Greenlee County, AZ" - }, - { - "value": "LA_PAZ_COUNTY_AZ", - "label": "La Paz County, AZ" - }, - { - "value": "MARICOPA_COUNTY_AZ", - "label": "Maricopa County, AZ" - }, - { - "value": "MCKINLEY_COUNTY_AZ", - "label": "McKinley County, AZ" - }, - { - "value": "MOHAVE_COUNTY_AZ", - "label": "Mohave County, AZ" - }, - { - "value": "NAVAJO_COUNTY_AZ", - "label": "Navajo County, AZ" - }, - { - "value": "PIMA_COUNTY_AZ", - "label": "Pima County, AZ" - }, - { - "value": "PINAL_COUNTY_AZ", - "label": "Pinal County, AZ" - }, - { - "value": "SAN_JUAN_COUNTY_AZ", - "label": "San Juan County, AZ" - }, - { - "value": "SANTA_CRUZ_COUNTY_AZ", - "label": "Santa Cruz County, AZ" - }, - { - "value": "YAVAPAI_COUNTY_AZ", - "label": "Yavapai County, AZ" - }, - { - "value": "YUMA_COUNTY_AZ", - "label": "Yuma County, AZ" - }, - { - "value": "ALAMEDA_COUNTY_CA", - "label": "Alameda County, CA" - }, - { - "value": "ALPINE_COUNTY_CA", - "label": "Alpine County, CA" - }, - { - "value": "AMADOR_COUNTY_CA", - "label": "Amador County, CA" - }, - { - "value": "BUTTE_COUNTY_CA", - "label": "Butte County, CA" - }, - { - "value": "CALAVERAS_COUNTY_CA", - "label": "Calaveras County, CA" - }, - { - "value": "COLUSA_COUNTY_CA", - "label": "Colusa County, CA" - }, - { - "value": "CONTRA_COSTA_COUNTY_CA", - "label": "Contra Costa County, CA" - }, - { - "value": "DEL_NORTE_COUNTY_CA", - "label": "Del Norte County, CA" - }, - { - "value": "EL_DORADO_COUNTY_CA", - "label": "El Dorado County, CA" - }, - { - "value": "FRESNO_COUNTY_CA", - "label": "Fresno County, CA" - }, - { - "value": "GLENN_COUNTY_CA", - "label": "Glenn County, CA" - }, - { - "value": "HUMBOLDT_COUNTY_CA", - "label": "Humboldt County, CA" - }, - { - "value": "IMPERIAL_COUNTY_CA", - "label": "Imperial County, CA" - }, - { - "value": "INYO_COUNTY_CA", - "label": "Inyo County, CA" - }, - { - "value": "KERN_COUNTY_CA", - "label": "Kern County, CA" - }, - { - "value": "KINGS_COUNTY_CA", - "label": "Kings County, CA" - }, - { - "value": "LAKE_COUNTY_CA", - "label": "Lake County, CA" - }, - { - "value": "LASSEN_COUNTY_CA", - "label": "Lassen County, CA" - }, - { - "value": "LOS_ANGELES_COUNTY_CA", - "label": "Los Angeles County, CA" - }, - { - "value": "MADERA_COUNTY_CA", - "label": "Madera County, CA" - }, - { - "value": "MARIN_COUNTY_CA", - "label": "Marin County, CA" - }, - { - "value": "MARIPOSA_COUNTY_CA", - "label": "Mariposa County, CA" - }, - { - "value": "MENDOCINO_COUNTY_CA", - "label": "Mendocino County, CA" - }, - { - "value": "MERCED_COUNTY_CA", - "label": "Merced County, CA" - }, - { - "value": "MODOC_COUNTY_CA", - "label": "Modoc County, CA" - }, - { - "value": "MONO_COUNTY_CA", - "label": "Mono County, CA" - }, - { - "value": "MONTEREY_COUNTY_CA", - "label": "Monterey County, CA" - }, - { - "value": "NAPA_COUNTY_CA", - "label": "Napa County, CA" - }, - { - "value": "NEVADA_COUNTY_CA", - "label": "Nevada County, CA" - }, - { - "value": "ORANGE_COUNTY_CA", - "label": "Orange County, CA" - }, - { - "value": "PLACER_COUNTY_CA", - "label": "Placer County, CA" - }, - { - "value": "PLUMAS_COUNTY_CA", - "label": "Plumas County, CA" - }, - { - "value": "RIVERSIDE_COUNTY_CA", - "label": "Riverside County, CA" - }, - { - "value": "SACRAMENTO_COUNTY_CA", - "label": "Sacramento County, CA" - }, - { - "value": "SAN_BENITO_COUNTY_CA", - "label": "San Benito County, CA" - }, - { - "value": "SAN_BERNARDINO_COUNTY_CA", - "label": "San Bernardino County, CA" - }, - { - "value": "SAN_DIEGO_COUNTY_CA", - "label": "San Diego County, CA" - }, - { - "value": "SAN_FRANCISCO_COUNTY_CA", - "label": "San Francisco County, CA" - }, - { - "value": "SAN_JOAQUIN_COUNTY_CA", - "label": "San Joaquin County, CA" - }, - { - "value": "SAN_LUIS_OBISPO_COUNTY_CA", - "label": "San Luis Obispo County, CA" - }, - { - "value": "SAN_MATEO_COUNTY_CA", - "label": "San Mateo County, CA" - }, - { - "value": "SANTA_BARBARA_COUNTY_CA", - "label": "Santa Barbara County, CA" - }, - { - "value": "SANTA_CLARA_COUNTY_CA", - "label": "Santa Clara County, CA" - }, - { - "value": "SANTA_CRUZ_COUNTY_CA", - "label": "Santa Cruz County, CA" - }, - { - "value": "SHASTA_COUNTY_CA", - "label": "Shasta County, CA" - }, - { - "value": "SIERRA_COUNTY_CA", - "label": "Sierra County, CA" - }, - { - "value": "SISKIYOU_COUNTY_CA", - "label": "Siskiyou County, CA" - }, - { - "value": "SOLANO_COUNTY_CA", - "label": "Solano County, CA" - }, - { - "value": "SONOMA_COUNTY_CA", - "label": "Sonoma County, CA" - }, - { - "value": "STANISLAUS_COUNTY_CA", - "label": "Stanislaus County, CA" - }, - { - "value": "SUTTER_COUNTY_CA", - "label": "Sutter County, CA" - }, - { - "value": "TEHAMA_COUNTY_CA", - "label": "Tehama County, CA" - }, - { - "value": "TRINITY_COUNTY_CA", - "label": "Trinity County, CA" - }, - { - "value": "TULARE_COUNTY_CA", - "label": "Tulare County, CA" - }, - { - "value": "TUOLUMNE_COUNTY_CA", - "label": "Tuolumne County, CA" - }, - { - "value": "VENTURA_COUNTY_CA", - "label": "Ventura County, CA" - }, - { - "value": "YOLO_COUNTY_CA", - "label": "Yolo County, CA" - }, - { - "value": "YUBA_COUNTY_CA", - "label": "Yuba County, CA" - }, - { - "value": "ADAMS_COUNTY_CO", - "label": "Adams County, CO" - }, - { - "value": "ALAMOSA_COUNTY_CO", - "label": "Alamosa County, CO" - }, - { - "value": "ARAPAHOE_COUNTY_CO", - "label": "Arapahoe County, CO" - }, - { - "value": "ARCHULETA_COUNTY_CO", - "label": "Archuleta County, CO" - }, - { - "value": "BACA_COUNTY_CO", - "label": "Baca County, CO" - }, - { - "value": "BENT_COUNTY_CO", - "label": "Bent County, CO" - }, - { - "value": "BOULDER_COUNTY_CO", - "label": "Boulder County, CO" - }, - { - "value": "BROOMFIELD_COUNTY_CO", - "label": "Broomfield County, CO" - }, - { - "value": "CHAFFEE_COUNTY_CO", - "label": "Chaffee County, CO" - }, - { - "value": "CHEYENNE_COUNTY_CO", - "label": "Cheyenne County, CO" - }, - { - "value": "CLEAR_CREEK_COUNTY_CO", - "label": "Clear Creek County, CO" - }, - { - "value": "CONEJOS_COUNTY_CO", - "label": "Conejos County, CO" - }, - { - "value": "COSTILLA_COUNTY_CO", - "label": "Costilla County, CO" - }, - { - "value": "CROWLEY_COUNTY_CO", - "label": "Crowley County, CO" - }, - { - "value": "CUSTER_COUNTY_CO", - "label": "Custer County, CO" - }, - { - "value": "DELTA_COUNTY_CO", - "label": "Delta County, CO" - }, - { - "value": "DENVER_COUNTY_CO", - "label": "Denver County, CO" - }, - { - "value": "DOLORES_COUNTY_CO", - "label": "Dolores County, CO" - }, - { - "value": "DOUGLAS_COUNTY_CO", - "label": "Douglas County, CO" - }, - { - "value": "EAGLE_COUNTY_CO", - "label": "Eagle County, CO" - }, - { - "value": "EL_PASO_COUNTY_CO", - "label": "El Paso County, CO" - }, - { - "value": "ELBERT_COUNTY_CO", - "label": "Elbert County, CO" - }, - { - "value": "FREMONT_COUNTY_CO", - "label": "Fremont County, CO" - }, - { - "value": "GARFIELD_COUNTY_CO", - "label": "Garfield County, CO" - }, - { - "value": "GILPIN_COUNTY_CO", - "label": "Gilpin County, CO" - }, - { - "value": "GRAND_COUNTY_CO", - "label": "Grand County, CO" - }, - { - "value": "GUNNISON_COUNTY_CO", - "label": "Gunnison County, CO" - }, - { - "value": "HINSDALE_COUNTY_CO", - "label": "Hinsdale County, CO" - }, - { - "value": "HUERFANO_COUNTY_CO", - "label": "Huerfano County, CO" - }, - { - "value": "JACKSON_COUNTY_CO", - "label": "Jackson County, CO" - }, - { - "value": "JEFFERSON_COUNTY_CO", - "label": "Jefferson County, CO" - }, - { - "value": "KIOWA_COUNTY_CO", - "label": "Kiowa County, CO" - }, - { - "value": "KIT_CARSON_COUNTY_CO", - "label": "Kit Carson County, CO" - }, - { - "value": "LA_PLATA_COUNTY_CO", - "label": "La Plata County, CO" - }, - { - "value": "LAKE_COUNTY_CO", - "label": "Lake County, CO" - }, - { - "value": "LARIMER_COUNTY_CO", - "label": "Larimer County, CO" - }, - { - "value": "LAS_ANIMAS_COUNTY_CO", - "label": "Las Animas County, CO" - }, - { - "value": "LINCOLN_COUNTY_CO", - "label": "Lincoln County, CO" - }, - { - "value": "LOGAN_COUNTY_CO", - "label": "Logan County, CO" - }, - { - "value": "MESA_COUNTY_CO", - "label": "Mesa County, CO" - }, - { - "value": "MINERAL_COUNTY_CO", - "label": "Mineral County, CO" - }, - { - "value": "MOFFAT_COUNTY_CO", - "label": "Moffat County, CO" - }, - { - "value": "MONTEZUMA_COUNTY_CO", - "label": "Montezuma County, CO" - }, - { - "value": "MONTROSE_COUNTY_CO", - "label": "Montrose County, CO" - }, - { - "value": "MORGAN_COUNTY_CO", - "label": "Morgan County, CO" - }, - { - "value": "OTERO_COUNTY_CO", - "label": "Otero County, CO" - }, - { - "value": "OURAY_COUNTY_CO", - "label": "Ouray County, CO" - }, - { - "value": "PARK_COUNTY_CO", - "label": "Park County, CO" - }, - { - "value": "PHILLIPS_COUNTY_CO", - "label": "Phillips County, CO" - }, - { - "value": "PITKIN_COUNTY_CO", - "label": "Pitkin County, CO" - }, - { - "value": "PROWERS_COUNTY_CO", - "label": "Prowers County, CO" - }, - { - "value": "PUEBLO_COUNTY_CO", - "label": "Pueblo County, CO" - }, - { - "value": "RIO_ARRIBA_COUNTY_CO", - "label": "Rio Arriba County, CO" - }, - { - "value": "RIO_BLANCO_COUNTY_CO", - "label": "Rio Blanco County, CO" - }, - { - "value": "RIO_GRANDE_COUNTY_CO", - "label": "Rio Grande County, CO" - }, - { - "value": "ROUTT_COUNTY_CO", - "label": "Routt County, CO" - }, - { - "value": "SAGUACHE_COUNTY_CO", - "label": "Saguache County, CO" - }, - { - "value": "SAN_JUAN_COUNTY_CO", - "label": "San Juan County, CO" - }, - { - "value": "SAN_MIGUEL_COUNTY_CO", - "label": "San Miguel County, CO" - }, - { - "value": "SEDGWICK_COUNTY_CO", - "label": "Sedgwick County, CO" - }, - { - "value": "SUMMIT_COUNTY_CO", - "label": "Summit County, CO" - }, - { - "value": "TELLER_COUNTY_CO", - "label": "Teller County, CO" - }, - { - "value": "WASHINGTON_COUNTY_CO", - "label": "Washington County, CO" - }, - { - "value": "WELD_COUNTY_CO", - "label": "Weld County, CO" - }, - { - "value": "YUMA_COUNTY_CO", - "label": "Yuma County, CO" - }, - { - "value": "FAIRFIELD_COUNTY_CT", - "label": "Fairfield County, CT" - }, - { - "value": "HARTFORD_COUNTY_CT", - "label": "Hartford County, CT" - }, - { - "value": "LITCHFIELD_COUNTY_CT", - "label": "Litchfield County, CT" - }, - { - "value": "MIDDLESEX_COUNTY_CT", - "label": "Middlesex County, CT" - }, - { - "value": "NEW_HAVEN_COUNTY_CT", - "label": "New Haven County, CT" - }, - { - "value": "NEW_LONDON_COUNTY_CT", - "label": "New London County, CT" - }, - { - "value": "SUFFOLK_COUNTY_CT", - "label": "Suffolk County, CT" - }, - { - "value": "TOLLAND_COUNTY_CT", - "label": "Tolland County, CT" - }, - { - "value": "WINDHAM_COUNTY_CT", - "label": "Windham County, CT" - }, - { - "value": "DISTRICT_OF_COLUMBIA_DC", - "label": "District of Columbia, DC" - }, - { - "value": "DORCHESTER_COUNTY_DE", - "label": "Dorchester County, DE" - }, - { - "value": "KENT_COUNTY_DE", - "label": "Kent County, DE" - }, - { - "value": "NEW_CASTLE_COUNTY_DE", - "label": "New Castle County, DE" - }, - { - "value": "SUSSEX_COUNTY_DE", - "label": "Sussex County, DE" - }, - { - "value": "ALACHUA_COUNTY_FL", - "label": "Alachua County, FL" - }, - { - "value": "BAKER_COUNTY_FL", - "label": "Baker County, FL" - }, - { - "value": "BAY_COUNTY_FL", - "label": "Bay County, FL" - }, - { - "value": "BRADFORD_COUNTY_FL", - "label": "Bradford County, FL" - }, - { - "value": "BREVARD_COUNTY_FL", - "label": "Brevard County, FL" - }, - { - "value": "BROWARD_COUNTY_FL", - "label": "Broward County, FL" - }, - { - "value": "CALHOUN_COUNTY_FL", - "label": "Calhoun County, FL" - }, - { - "value": "CHARLOTTE_COUNTY_FL", - "label": "Charlotte County, FL" - }, - { - "value": "CITRUS_COUNTY_FL", - "label": "Citrus County, FL" - }, - { - "value": "CLAY_COUNTY_FL", - "label": "Clay County, FL" - }, - { - "value": "COLLIER_COUNTY_FL", - "label": "Collier County, FL" - }, - { - "value": "COLUMBIA_COUNTY_FL", - "label": "Columbia County, FL" - }, - { - "value": "DESOTO_COUNTY_FL", - "label": "DeSoto County, FL" - }, - { - "value": "DIXIE_COUNTY_FL", - "label": "Dixie County, FL" - }, - { - "value": "DUVAL_COUNTY_FL", - "label": "Duval County, FL" - }, - { - "value": "ESCAMBIA_COUNTY_FL", - "label": "Escambia County, FL" - }, - { - "value": "FLAGLER_COUNTY_FL", - "label": "Flagler County, FL" - }, - { - "value": "FRANKLIN_COUNTY_FL", - "label": "Franklin County, FL" - }, - { - "value": "GADSDEN_COUNTY_FL", - "label": "Gadsden County, FL" - }, - { - "value": "GILCHRIST_COUNTY_FL", - "label": "Gilchrist County, FL" - }, - { - "value": "GLADES_COUNTY_FL", - "label": "Glades County, FL" - }, - { - "value": "GULF_COUNTY_FL", - "label": "Gulf County, FL" - }, - { - "value": "HAMILTON_COUNTY_FL", - "label": "Hamilton County, FL" - }, - { - "value": "HARDEE_COUNTY_FL", - "label": "Hardee County, FL" - }, - { - "value": "HENDRY_COUNTY_FL", - "label": "Hendry County, FL" - }, - { - "value": "HERNANDO_COUNTY_FL", - "label": "Hernando County, FL" - }, - { - "value": "HIGHLANDS_COUNTY_FL", - "label": "Highlands County, FL" - }, - { - "value": "HILLSBOROUGH_COUNTY_FL", - "label": "Hillsborough County, FL" - }, - { - "value": "HOLMES_COUNTY_FL", - "label": "Holmes County, FL" - }, - { - "value": "INDIAN_RIVER_COUNTY_FL", - "label": "Indian River County, FL" - }, - { - "value": "JACKSON_COUNTY_FL", - "label": "Jackson County, FL" - }, - { - "value": "JEFFERSON_COUNTY_FL", - "label": "Jefferson County, FL" - }, - { - "value": "LAFAYETTE_COUNTY_FL", - "label": "Lafayette County, FL" - }, - { - "value": "LAKE_COUNTY_FL", - "label": "Lake County, FL" - }, - { - "value": "LEE_COUNTY_FL", - "label": "Lee County, FL" - }, - { - "value": "LEON_COUNTY_FL", - "label": "Leon County, FL" - }, - { - "value": "LEVY_COUNTY_FL", - "label": "Levy County, FL" - }, - { - "value": "LIBERTY_COUNTY_FL", - "label": "Liberty County, FL" - }, - { - "value": "MADISON_COUNTY_FL", - "label": "Madison County, FL" - }, - { - "value": "MANATEE_COUNTY_FL", - "label": "Manatee County, FL" - }, - { - "value": "MARION_COUNTY_FL", - "label": "Marion County, FL" - }, - { - "value": "MARTIN_COUNTY_FL", - "label": "Martin County, FL" - }, - { - "value": "MIAMI_DADE_COUNTY_FL", - "label": "Miami-Dade County, FL" - }, - { - "value": "MONROE_COUNTY_FL", - "label": "Monroe County, FL" - }, - { - "value": "NASSAU_COUNTY_FL", - "label": "Nassau County, FL" - }, - { - "value": "OKALOOSA_COUNTY_FL", - "label": "Okaloosa County, FL" - }, - { - "value": "OKEECHOBEE_COUNTY_FL", - "label": "Okeechobee County, FL" - }, - { - "value": "ORANGE_COUNTY_FL", - "label": "Orange County, FL" - }, - { - "value": "OSCEOLA_COUNTY_FL", - "label": "Osceola County, FL" - }, - { - "value": "PALM_BEACH_COUNTY_FL", - "label": "Palm Beach County, FL" - }, - { - "value": "PASCO_COUNTY_FL", - "label": "Pasco County, FL" - }, - { - "value": "PINELLAS_COUNTY_FL", - "label": "Pinellas County, FL" - }, - { - "value": "POLK_COUNTY_FL", - "label": "Polk County, FL" - }, - { - "value": "PUTNAM_COUNTY_FL", - "label": "Putnam County, FL" - }, - { - "value": "SANTA_ROSA_COUNTY_FL", - "label": "Santa Rosa County, FL" - }, - { - "value": "SARASOTA_COUNTY_FL", - "label": "Sarasota County, FL" - }, - { - "value": "SEMINOLE_COUNTY_FL", - "label": "Seminole County, FL" - }, - { - "value": "ST_JOHNS_COUNTY_FL", - "label": "St. Johns County, FL" - }, - { - "value": "ST_LUCIE_COUNTY_FL", - "label": "St. Lucie County, FL" - }, - { - "value": "SUMTER_COUNTY_FL", - "label": "Sumter County, FL" - }, - { - "value": "SUWANNEE_COUNTY_FL", - "label": "Suwannee County, FL" - }, - { - "value": "TAYLOR_COUNTY_FL", - "label": "Taylor County, FL" - }, - { - "value": "UNION_COUNTY_FL", - "label": "Union County, FL" - }, - { - "value": "VOLUSIA_COUNTY_FL", - "label": "Volusia County, FL" - }, - { - "value": "WAKULLA_COUNTY_FL", - "label": "Wakulla County, FL" - }, - { - "value": "WALTON_COUNTY_FL", - "label": "Walton County, FL" - }, - { - "value": "WASHINGTON_COUNTY_FL", - "label": "Washington County, FL" - }, - { - "value": "APPLING_COUNTY_GA", - "label": "Appling County, GA" - }, - { - "value": "ATKINSON_COUNTY_GA", - "label": "Atkinson County, GA" - }, - { - "value": "BACON_COUNTY_GA", - "label": "Bacon County, GA" - }, - { - "value": "BAKER_COUNTY_GA", - "label": "Baker County, GA" - }, - { - "value": "BALDWIN_COUNTY_GA", - "label": "Baldwin County, GA" - }, - { - "value": "BANKS_COUNTY_GA", - "label": "Banks County, GA" - }, - { - "value": "BARROW_COUNTY_GA", - "label": "Barrow County, GA" - }, - { - "value": "BARTOW_COUNTY_GA", - "label": "Bartow County, GA" - }, - { - "value": "BERRIEN_COUNTY_GA", - "label": "Berrien County, GA" - }, - { - "value": "BIBB_COUNTY_GA", - "label": "Bibb County, GA" - }, - { - "value": "BLECKLEY_COUNTY_GA", - "label": "Bleckley County, GA" - }, - { - "value": "BRANTLEY_COUNTY_GA", - "label": "Brantley County, GA" - }, - { - "value": "BROOKS_COUNTY_GA", - "label": "Brooks County, GA" - }, - { - "value": "BULLOCH_COUNTY_GA", - "label": "Bulloch County, GA" - }, - { - "value": "BURKE_COUNTY_GA", - "label": "Burke County, GA" - }, - { - "value": "BUTTS_COUNTY_GA", - "label": "Butts County, GA" - }, - { - "value": "CALHOUN_COUNTY_GA", - "label": "Calhoun County, GA" - }, - { - "value": "CAMDEN_COUNTY_GA", - "label": "Camden County, GA" - }, - { - "value": "CANDLER_COUNTY_GA", - "label": "Candler County, GA" - }, - { - "value": "CARROLL_COUNTY_GA", - "label": "Carroll County, GA" - }, - { - "value": "CATOOSA_COUNTY_GA", - "label": "Catoosa County, GA" - }, - { - "value": "CHARLTON_COUNTY_GA", - "label": "Charlton County, GA" - }, - { - "value": "CHATHAM_COUNTY_GA", - "label": "Chatham County, GA" - }, - { - "value": "CHATTAHOOCHEE_COUNTY_GA", - "label": "Chattahoochee County, GA" - }, - { - "value": "CHATTOOGA_COUNTY_GA", - "label": "Chattooga County, GA" - }, - { - "value": "CHEROKEE_COUNTY_GA", - "label": "Cherokee County, GA" - }, - { - "value": "CLARKE_COUNTY_GA", - "label": "Clarke County, GA" - }, - { - "value": "CLAY_COUNTY_GA", - "label": "Clay County, GA" - }, - { - "value": "CLAYTON_COUNTY_GA", - "label": "Clayton County, GA" - }, - { - "value": "CLINCH_COUNTY_GA", - "label": "Clinch County, GA" - }, - { - "value": "COBB_COUNTY_GA", - "label": "Cobb County, GA" - }, - { - "value": "COFFEE_COUNTY_GA", - "label": "Coffee County, GA" - }, - { - "value": "COLQUITT_COUNTY_GA", - "label": "Colquitt County, GA" - }, - { - "value": "COLUMBIA_COUNTY_GA", - "label": "Columbia County, GA" - }, - { - "value": "COOK_COUNTY_GA", - "label": "Cook County, GA" - }, - { - "value": "COWETA_COUNTY_GA", - "label": "Coweta County, GA" - }, - { - "value": "CRAWFORD_COUNTY_GA", - "label": "Crawford County, GA" - }, - { - "value": "CRISP_COUNTY_GA", - "label": "Crisp County, GA" - }, - { - "value": "DADE_COUNTY_GA", - "label": "Dade County, GA" - }, - { - "value": "DEKALB_COUNTY_GA", - "label": "DeKalb County, GA" - }, - { - "value": "DECATUR_COUNTY_GA", - "label": "Decatur County, GA" - }, - { - "value": "DODGE_COUNTY_GA", - "label": "Dodge County, GA" - }, - { - "value": "DOOLY_COUNTY_GA", - "label": "Dooly County, GA" - }, - { - "value": "DOUGHERTY_COUNTY_GA", - "label": "Dougherty County, GA" - }, - { - "value": "DOUGLAS_COUNTY_GA", - "label": "Douglas County, GA" - }, - { - "value": "EARLY_COUNTY_GA", - "label": "Early County, GA" - }, - { - "value": "ECHOLS_COUNTY_GA", - "label": "Echols County, GA" - }, - { - "value": "EFFINGHAM_COUNTY_GA", - "label": "Effingham County, GA" - }, - { - "value": "ELBERT_COUNTY_GA", - "label": "Elbert County, GA" - }, - { - "value": "EMANUEL_COUNTY_GA", - "label": "Emanuel County, GA" - }, - { - "value": "EVANS_COUNTY_GA", - "label": "Evans County, GA" - }, - { - "value": "FANNIN_COUNTY_GA", - "label": "Fannin County, GA" - }, - { - "value": "FAYETTE_COUNTY_GA", - "label": "Fayette County, GA" - }, - { - "value": "FLOYD_COUNTY_GA", - "label": "Floyd County, GA" - }, - { - "value": "FORSYTH_COUNTY_GA", - "label": "Forsyth County, GA" - }, - { - "value": "FRANKLIN_COUNTY_GA", - "label": "Franklin County, GA" - }, - { - "value": "FULTON_COUNTY_GA", - "label": "Fulton County, GA" - }, - { - "value": "GILMER_COUNTY_GA", - "label": "Gilmer County, GA" - }, - { - "value": "GLASCOCK_COUNTY_GA", - "label": "Glascock County, GA" - }, - { - "value": "GLYNN_COUNTY_GA", - "label": "Glynn County, GA" - }, - { - "value": "GORDON_COUNTY_GA", - "label": "Gordon County, GA" - }, - { - "value": "GRADY_COUNTY_GA", - "label": "Grady County, GA" - }, - { - "value": "GREENE_COUNTY_GA", - "label": "Greene County, GA" - }, - { - "value": "GWINNETT_COUNTY_GA", - "label": "Gwinnett County, GA" - }, - { - "value": "HABERSHAM_COUNTY_GA", - "label": "Habersham County, GA" - }, - { - "value": "HALL_COUNTY_GA", - "label": "Hall County, GA" - }, - { - "value": "HANCOCK_COUNTY_GA", - "label": "Hancock County, GA" - }, - { - "value": "HARALSON_COUNTY_GA", - "label": "Haralson County, GA" - }, - { - "value": "HARRIS_COUNTY_GA", - "label": "Harris County, GA" - }, - { - "value": "HART_COUNTY_GA", - "label": "Hart County, GA" - }, - { - "value": "HEARD_COUNTY_GA", - "label": "Heard County, GA" - }, - { - "value": "HENRY_COUNTY_GA", - "label": "Henry County, GA" - }, - { - "value": "HOUSTON_COUNTY_GA", - "label": "Houston County, GA" - }, - { - "value": "IRWIN_COUNTY_GA", - "label": "Irwin County, GA" - }, - { - "value": "JACKSON_COUNTY_GA", - "label": "Jackson County, GA" - }, - { - "value": "JASPER_COUNTY_GA", - "label": "Jasper County, GA" - }, - { - "value": "JEFF_DAVIS_COUNTY_GA", - "label": "Jeff Davis County, GA" - }, - { - "value": "JEFFERSON_COUNTY_GA", - "label": "Jefferson County, GA" - }, - { - "value": "JENKINS_COUNTY_GA", - "label": "Jenkins County, GA" - }, - { - "value": "JONES_COUNTY_GA", - "label": "Jones County, GA" - }, - { - "value": "LAMAR_COUNTY_GA", - "label": "Lamar County, GA" - }, - { - "value": "LANIER_COUNTY_GA", - "label": "Lanier County, GA" - }, - { - "value": "LAURENS_COUNTY_GA", - "label": "Laurens County, GA" - }, - { - "value": "LEE_COUNTY_GA", - "label": "Lee County, GA" - }, - { - "value": "LIBERTY_COUNTY_GA", - "label": "Liberty County, GA" - }, - { - "value": "LINCOLN_COUNTY_GA", - "label": "Lincoln County, GA" - }, - { - "value": "LONG_COUNTY_GA", - "label": "Long County, GA" - }, - { - "value": "LOWNDES_COUNTY_GA", - "label": "Lowndes County, GA" - }, - { - "value": "LUMPKIN_COUNTY_GA", - "label": "Lumpkin County, GA" - }, - { - "value": "MACON_COUNTY_GA", - "label": "Macon County, GA" - }, - { - "value": "MADISON_COUNTY_GA", - "label": "Madison County, GA" - }, - { - "value": "MARION_COUNTY_GA", - "label": "Marion County, GA" - }, - { - "value": "MCDUFFIE_COUNTY_GA", - "label": "McDuffie County, GA" - }, - { - "value": "MCINTOSH_COUNTY_GA", - "label": "McIntosh County, GA" - }, - { - "value": "MERIWETHER_COUNTY_GA", - "label": "Meriwether County, GA" - }, - { - "value": "MILLER_COUNTY_GA", - "label": "Miller County, GA" - }, - { - "value": "MITCHELL_COUNTY_GA", - "label": "Mitchell County, GA" - }, - { - "value": "MONROE_COUNTY_GA", - "label": "Monroe County, GA" - }, - { - "value": "MONTGOMERY_COUNTY_GA", - "label": "Montgomery County, GA" - }, - { - "value": "MORGAN_COUNTY_GA", - "label": "Morgan County, GA" - }, - { - "value": "MURRAY_COUNTY_GA", - "label": "Murray County, GA" - }, - { - "value": "MUSCOGEE_COUNTY_GA", - "label": "Muscogee County, GA" - }, - { - "value": "NEWTON_COUNTY_GA", - "label": "Newton County, GA" - }, - { - "value": "OCONEE_COUNTY_GA", - "label": "Oconee County, GA" - }, - { - "value": "OGLETHORPE_COUNTY_GA", - "label": "Oglethorpe County, GA" - }, - { - "value": "PAULDING_COUNTY_GA", - "label": "Paulding County, GA" - }, - { - "value": "PEACH_COUNTY_GA", - "label": "Peach County, GA" - }, - { - "value": "PICKENS_COUNTY_GA", - "label": "Pickens County, GA" - }, - { - "value": "PIERCE_COUNTY_GA", - "label": "Pierce County, GA" - }, - { - "value": "PIKE_COUNTY_GA", - "label": "Pike County, GA" - }, - { - "value": "POLK_COUNTY_GA", - "label": "Polk County, GA" - }, - { - "value": "PULASKI_COUNTY_GA", - "label": "Pulaski County, GA" - }, - { - "value": "PUTNAM_COUNTY_GA", - "label": "Putnam County, GA" - }, - { - "value": "QUITMAN_COUNTY_GA", - "label": "Quitman County, GA" - }, - { - "value": "RABUN_COUNTY_GA", - "label": "Rabun County, GA" - }, - { - "value": "RANDOLPH_COUNTY_GA", - "label": "Randolph County, GA" - }, - { - "value": "RICHMOND_COUNTY_GA", - "label": "Richmond County, GA" - }, - { - "value": "ROCKDALE_COUNTY_GA", - "label": "Rockdale County, GA" - }, - { - "value": "SCHLEY_COUNTY_GA", - "label": "Schley County, GA" - }, - { - "value": "SCREVEN_COUNTY_GA", - "label": "Screven County, GA" - }, - { - "value": "SEMINOLE_COUNTY_GA", - "label": "Seminole County, GA" - }, - { - "value": "SPALDING_COUNTY_GA", - "label": "Spalding County, GA" - }, - { - "value": "STEPHENS_COUNTY_GA", - "label": "Stephens County, GA" - }, - { - "value": "STEWART_COUNTY_GA", - "label": "Stewart County, GA" - }, - { - "value": "SUMTER_COUNTY_GA", - "label": "Sumter County, GA" - }, - { - "value": "TALBOT_COUNTY_GA", - "label": "Talbot County, GA" - }, - { - "value": "TALIAFERRO_COUNTY_GA", - "label": "Taliaferro County, GA" - }, - { - "value": "TATTNALL_COUNTY_GA", - "label": "Tattnall County, GA" - }, - { - "value": "TAYLOR_COUNTY_GA", - "label": "Taylor County, GA" - }, - { - "value": "TELFAIR_COUNTY_GA", - "label": "Telfair County, GA" - }, - { - "value": "TERRELL_COUNTY_GA", - "label": "Terrell County, GA" - }, - { - "value": "THOMAS_COUNTY_GA", - "label": "Thomas County, GA" - }, - { - "value": "TIFT_COUNTY_GA", - "label": "Tift County, GA" - }, - { - "value": "TOWNS_COUNTY_GA", - "label": "Towns County, GA" - }, - { - "value": "TREUTLEN_COUNTY_GA", - "label": "Treutlen County, GA" - }, - { - "value": "TROUP_COUNTY_GA", - "label": "Troup County, GA" - }, - { - "value": "TURNER_COUNTY_GA", - "label": "Turner County, GA" - }, - { - "value": "TWIGGS_COUNTY_GA", - "label": "Twiggs County, GA" - }, - { - "value": "UNION_COUNTY_GA", - "label": "Union County, GA" - }, - { - "value": "UPSON_COUNTY_GA", - "label": "Upson County, GA" - }, - { - "value": "WALKER_COUNTY_GA", - "label": "Walker County, GA" - }, - { - "value": "WALTON_COUNTY_GA", - "label": "Walton County, GA" - }, - { - "value": "WARE_COUNTY_GA", - "label": "Ware County, GA" - }, - { - "value": "WARREN_COUNTY_GA", - "label": "Warren County, GA" - }, - { - "value": "WASHINGTON_COUNTY_GA", - "label": "Washington County, GA" - }, - { - "value": "WAYNE_COUNTY_GA", - "label": "Wayne County, GA" - }, - { - "value": "WEBSTER_COUNTY_GA", - "label": "Webster County, GA" - }, - { - "value": "WHEELER_COUNTY_GA", - "label": "Wheeler County, GA" - }, - { - "value": "WHITE_COUNTY_GA", - "label": "White County, GA" - }, - { - "value": "WHITFIELD_COUNTY_GA", - "label": "Whitfield County, GA" - }, - { - "value": "WILCOX_COUNTY_GA", - "label": "Wilcox County, GA" - }, - { - "value": "WILKES_COUNTY_GA", - "label": "Wilkes County, GA" - }, - { - "value": "WILKINSON_COUNTY_GA", - "label": "Wilkinson County, GA" - }, - { - "value": "WORTH_COUNTY_GA", - "label": "Worth County, GA" - }, - { - "value": "HAWAII_COUNTY_HI", - "label": "Hawaii County, HI" - }, - { - "value": "HONOLULU_COUNTY_HI", - "label": "Honolulu County, HI" - }, - { - "value": "KALAWAO_COUNTY_HI", - "label": "Kalawao County, HI" - }, - { - "value": "KAUAI_COUNTY_HI", - "label": "Kauai County, HI" - }, - { - "value": "MAUI_COUNTY_HI", - "label": "Maui County, HI" - }, - { - "value": "ADAIR_COUNTY_IA", - "label": "Adair County, IA" - }, - { - "value": "ADAMS_COUNTY_IA", - "label": "Adams County, IA" - }, - { - "value": "ALLAMAKEE_COUNTY_IA", - "label": "Allamakee County, IA" - }, - { - "value": "APPANOOSE_COUNTY_IA", - "label": "Appanoose County, IA" - }, - { - "value": "ATCHISON_COUNTY_IA", - "label": "Atchison County, IA" - }, - { - "value": "AUDUBON_COUNTY_IA", - "label": "Audubon County, IA" - }, - { - "value": "BENTON_COUNTY_IA", - "label": "Benton County, IA" - }, - { - "value": "BLACK_HAWK_COUNTY_IA", - "label": "Black Hawk County, IA" - }, - { - "value": "BOONE_COUNTY_IA", - "label": "Boone County, IA" - }, - { - "value": "BREMER_COUNTY_IA", - "label": "Bremer County, IA" - }, - { - "value": "BUCHANAN_COUNTY_IA", - "label": "Buchanan County, IA" - }, - { - "value": "BUENA_VISTA_COUNTY_IA", - "label": "Buena Vista County, IA" - }, - { - "value": "BUTLER_COUNTY_IA", - "label": "Butler County, IA" - }, - { - "value": "CALHOUN_COUNTY_IA", - "label": "Calhoun County, IA" - }, - { - "value": "CARROLL_COUNTY_IA", - "label": "Carroll County, IA" - }, - { - "value": "CASS_COUNTY_IA", - "label": "Cass County, IA" - }, - { - "value": "CEDAR_COUNTY_IA", - "label": "Cedar County, IA" - }, - { - "value": "CERRO_GORDO_COUNTY_IA", - "label": "Cerro Gordo County, IA" - }, - { - "value": "CHEROKEE_COUNTY_IA", - "label": "Cherokee County, IA" - }, - { - "value": "CHICKASAW_COUNTY_IA", - "label": "Chickasaw County, IA" - }, - { - "value": "CLARK_COUNTY_IA", - "label": "Clark County, IA" - }, - { - "value": "CLARKE_COUNTY_IA", - "label": "Clarke County, IA" - }, - { - "value": "CLAY_COUNTY_IA", - "label": "Clay County, IA" - }, - { - "value": "CLAYTON_COUNTY_IA", - "label": "Clayton County, IA" - }, - { - "value": "CLINTON_COUNTY_IA", - "label": "Clinton County, IA" - }, - { - "value": "CRAWFORD_COUNTY_IA", - "label": "Crawford County, IA" - }, - { - "value": "DALLAS_COUNTY_IA", - "label": "Dallas County, IA" - }, - { - "value": "DAVIS_COUNTY_IA", - "label": "Davis County, IA" - }, - { - "value": "DECATUR_COUNTY_IA", - "label": "Decatur County, IA" - }, - { - "value": "DELAWARE_COUNTY_IA", - "label": "Delaware County, IA" - }, - { - "value": "DES_MOINES_COUNTY_IA", - "label": "Des Moines County, IA" - }, - { - "value": "DICKINSON_COUNTY_IA", - "label": "Dickinson County, IA" - }, - { - "value": "DUBUQUE_COUNTY_IA", - "label": "Dubuque County, IA" - }, - { - "value": "EMMET_COUNTY_IA", - "label": "Emmet County, IA" - }, - { - "value": "FAYETTE_COUNTY_IA", - "label": "Fayette County, IA" - }, - { - "value": "FLOYD_COUNTY_IA", - "label": "Floyd County, IA" - }, - { - "value": "FRANKLIN_COUNTY_IA", - "label": "Franklin County, IA" - }, - { - "value": "FREMONT_COUNTY_IA", - "label": "Fremont County, IA" - }, - { - "value": "GREENE_COUNTY_IA", - "label": "Greene County, IA" - }, - { - "value": "GRUNDY_COUNTY_IA", - "label": "Grundy County, IA" - }, - { - "value": "GUTHRIE_COUNTY_IA", - "label": "Guthrie County, IA" - }, - { - "value": "HAMILTON_COUNTY_IA", - "label": "Hamilton County, IA" - }, - { - "value": "HANCOCK_COUNTY_IA", - "label": "Hancock County, IA" - }, - { - "value": "HARDIN_COUNTY_IA", - "label": "Hardin County, IA" - }, - { - "value": "HARRISON_COUNTY_IA", - "label": "Harrison County, IA" - }, - { - "value": "HENRY_COUNTY_IA", - "label": "Henry County, IA" - }, - { - "value": "HOWARD_COUNTY_IA", - "label": "Howard County, IA" - }, - { - "value": "HUMBOLDT_COUNTY_IA", - "label": "Humboldt County, IA" - }, - { - "value": "IDA_COUNTY_IA", - "label": "Ida County, IA" - }, - { - "value": "IOWA_COUNTY_IA", - "label": "Iowa County, IA" - }, - { - "value": "JACKSON_COUNTY_IA", - "label": "Jackson County, IA" - }, - { - "value": "JASPER_COUNTY_IA", - "label": "Jasper County, IA" - }, - { - "value": "JEFFERSON_COUNTY_IA", - "label": "Jefferson County, IA" - }, - { - "value": "JOHNSON_COUNTY_IA", - "label": "Johnson County, IA" - }, - { - "value": "JONES_COUNTY_IA", - "label": "Jones County, IA" - }, - { - "value": "KEOKUK_COUNTY_IA", - "label": "Keokuk County, IA" - }, - { - "value": "KOSSUTH_COUNTY_IA", - "label": "Kossuth County, IA" - }, - { - "value": "LEE_COUNTY_IA", - "label": "Lee County, IA" - }, - { - "value": "LINN_COUNTY_IA", - "label": "Linn County, IA" - }, - { - "value": "LOUISA_COUNTY_IA", - "label": "Louisa County, IA" - }, - { - "value": "LUCAS_COUNTY_IA", - "label": "Lucas County, IA" - }, - { - "value": "LYON_COUNTY_IA", - "label": "Lyon County, IA" - }, - { - "value": "MADISON_COUNTY_IA", - "label": "Madison County, IA" - }, - { - "value": "MAHASKA_COUNTY_IA", - "label": "Mahaska County, IA" - }, - { - "value": "MARION_COUNTY_IA", - "label": "Marion County, IA" - }, - { - "value": "MARSHALL_COUNTY_IA", - "label": "Marshall County, IA" - }, - { - "value": "MILLS_COUNTY_IA", - "label": "Mills County, IA" - }, - { - "value": "MITCHELL_COUNTY_IA", - "label": "Mitchell County, IA" - }, - { - "value": "MONONA_COUNTY_IA", - "label": "Monona County, IA" - }, - { - "value": "MONROE_COUNTY_IA", - "label": "Monroe County, IA" - }, - { - "value": "MONTGOMERY_COUNTY_IA", - "label": "Montgomery County, IA" - }, - { - "value": "MUSCATINE_COUNTY_IA", - "label": "Muscatine County, IA" - }, - { - "value": "O_BRIEN_COUNTY_IA", - "label": "O'Brien County, IA" - }, - { - "value": "OSCEOLA_COUNTY_IA", - "label": "Osceola County, IA" - }, - { - "value": "PAGE_COUNTY_IA", - "label": "Page County, IA" - }, - { - "value": "PALO_ALTO_COUNTY_IA", - "label": "Palo Alto County, IA" - }, - { - "value": "PLYMOUTH_COUNTY_IA", - "label": "Plymouth County, IA" - }, - { - "value": "POCAHONTAS_COUNTY_IA", - "label": "Pocahontas County, IA" - }, - { - "value": "POLK_COUNTY_IA", - "label": "Polk County, IA" - }, - { - "value": "POTTAWATTAMIE_COUNTY_IA", - "label": "Pottawattamie County, IA" - }, - { - "value": "POWESHIEK_COUNTY_IA", - "label": "Poweshiek County, IA" - }, - { - "value": "RINGGOLD_COUNTY_IA", - "label": "Ringgold County, IA" - }, - { - "value": "SAC_COUNTY_IA", - "label": "Sac County, IA" - }, - { - "value": "SCOTLAND_COUNTY_IA", - "label": "Scotland County, IA" - }, - { - "value": "SCOTT_COUNTY_IA", - "label": "Scott County, IA" - }, - { - "value": "SHELBY_COUNTY_IA", - "label": "Shelby County, IA" - }, - { - "value": "SIOUX_COUNTY_IA", - "label": "Sioux County, IA" - }, - { - "value": "STORY_COUNTY_IA", - "label": "Story County, IA" - }, - { - "value": "TAMA_COUNTY_IA", - "label": "Tama County, IA" - }, - { - "value": "TAYLOR_COUNTY_IA", - "label": "Taylor County, IA" - }, - { - "value": "UNION_COUNTY_IA", - "label": "Union County, IA" - }, - { - "value": "VAN_BUREN_COUNTY_IA", - "label": "Van Buren County, IA" - }, - { - "value": "WAPELLO_COUNTY_IA", - "label": "Wapello County, IA" - }, - { - "value": "WARREN_COUNTY_IA", - "label": "Warren County, IA" - }, - { - "value": "WASHINGTON_COUNTY_IA", - "label": "Washington County, IA" - }, - { - "value": "WAYNE_COUNTY_IA", - "label": "Wayne County, IA" - }, - { - "value": "WEBSTER_COUNTY_IA", - "label": "Webster County, IA" - }, - { - "value": "WINNEBAGO_COUNTY_IA", - "label": "Winnebago County, IA" - }, - { - "value": "WINNESHIEK_COUNTY_IA", - "label": "Winneshiek County, IA" - }, - { - "value": "WOODBURY_COUNTY_IA", - "label": "Woodbury County, IA" - }, - { - "value": "WORTH_COUNTY_IA", - "label": "Worth County, IA" - }, - { - "value": "WRIGHT_COUNTY_IA", - "label": "Wright County, IA" - }, - { - "value": "ADA_COUNTY_ID", - "label": "Ada County, ID" - }, - { - "value": "ADAMS_COUNTY_ID", - "label": "Adams County, ID" - }, - { - "value": "BANNOCK_COUNTY_ID", - "label": "Bannock County, ID" - }, - { - "value": "BEAR_LAKE_COUNTY_ID", - "label": "Bear Lake County, ID" - }, - { - "value": "BENEWAH_COUNTY_ID", - "label": "Benewah County, ID" - }, - { - "value": "BINGHAM_COUNTY_ID", - "label": "Bingham County, ID" - }, - { - "value": "BLAINE_COUNTY_ID", - "label": "Blaine County, ID" - }, - { - "value": "BOISE_COUNTY_ID", - "label": "Boise County, ID" - }, - { - "value": "BONNER_COUNTY_ID", - "label": "Bonner County, ID" - }, - { - "value": "BONNEVILLE_COUNTY_ID", - "label": "Bonneville County, ID" - }, - { - "value": "BOUNDARY_COUNTY_ID", - "label": "Boundary County, ID" - }, - { - "value": "BUTTE_COUNTY_ID", - "label": "Butte County, ID" - }, - { - "value": "CAMAS_COUNTY_ID", - "label": "Camas County, ID" - }, - { - "value": "CANYON_COUNTY_ID", - "label": "Canyon County, ID" - }, - { - "value": "CARIBOU_COUNTY_ID", - "label": "Caribou County, ID" - }, - { - "value": "CASSIA_COUNTY_ID", - "label": "Cassia County, ID" - }, - { - "value": "CLARK_COUNTY_ID", - "label": "Clark County, ID" - }, - { - "value": "CLEARWATER_COUNTY_ID", - "label": "Clearwater County, ID" - }, - { - "value": "CUSTER_COUNTY_ID", - "label": "Custer County, ID" - }, - { - "value": "ELMORE_COUNTY_ID", - "label": "Elmore County, ID" - }, - { - "value": "FRANKLIN_COUNTY_ID", - "label": "Franklin County, ID" - }, - { - "value": "FREMONT_COUNTY_ID", - "label": "Fremont County, ID" - }, - { - "value": "GEM_COUNTY_ID", - "label": "Gem County, ID" - }, - { - "value": "GOODING_COUNTY_ID", - "label": "Gooding County, ID" - }, - { - "value": "IDAHO_COUNTY_ID", - "label": "Idaho County, ID" - }, - { - "value": "JEFFERSON_COUNTY_ID", - "label": "Jefferson County, ID" - }, - { - "value": "JEROME_COUNTY_ID", - "label": "Jerome County, ID" - }, - { - "value": "KOOTENAI_COUNTY_ID", - "label": "Kootenai County, ID" - }, - { - "value": "LATAH_COUNTY_ID", - "label": "Latah County, ID" - }, - { - "value": "LEMHI_COUNTY_ID", - "label": "Lemhi County, ID" - }, - { - "value": "LEWIS_COUNTY_ID", - "label": "Lewis County, ID" - }, - { - "value": "LINCOLN_COUNTY_ID", - "label": "Lincoln County, ID" - }, - { - "value": "MADISON_COUNTY_ID", - "label": "Madison County, ID" - }, - { - "value": "MINIDOKA_COUNTY_ID", - "label": "Minidoka County, ID" - }, - { - "value": "NEZ_PERCE_COUNTY_ID", - "label": "Nez Perce County, ID" - }, - { - "value": "ONEIDA_COUNTY_ID", - "label": "Oneida County, ID" - }, - { - "value": "OWYHEE_COUNTY_ID", - "label": "Owyhee County, ID" - }, - { - "value": "PAYETTE_COUNTY_ID", - "label": "Payette County, ID" - }, - { - "value": "PEND_OREILLE_COUNTY_ID", - "label": "Pend Oreille County, ID" - }, - { - "value": "POWER_COUNTY_ID", - "label": "Power County, ID" - }, - { - "value": "SHOSHONE_COUNTY_ID", - "label": "Shoshone County, ID" - }, - { - "value": "TETON_COUNTY_ID", - "label": "Teton County, ID" - }, - { - "value": "TWIN_FALLS_COUNTY_ID", - "label": "Twin Falls County, ID" - }, - { - "value": "VALLEY_COUNTY_ID", - "label": "Valley County, ID" - }, - { - "value": "WASHINGTON_COUNTY_ID", - "label": "Washington County, ID" - }, - { - "value": "ADAMS_COUNTY_IL", - "label": "Adams County, IL" - }, - { - "value": "ALEXANDER_COUNTY_IL", - "label": "Alexander County, IL" - }, - { - "value": "BOND_COUNTY_IL", - "label": "Bond County, IL" - }, - { - "value": "BOONE_COUNTY_IL", - "label": "Boone County, IL" - }, - { - "value": "BROWN_COUNTY_IL", - "label": "Brown County, IL" - }, - { - "value": "BUREAU_COUNTY_IL", - "label": "Bureau County, IL" - }, - { - "value": "CALHOUN_COUNTY_IL", - "label": "Calhoun County, IL" - }, - { - "value": "CARROLL_COUNTY_IL", - "label": "Carroll County, IL" - }, - { - "value": "CASS_COUNTY_IL", - "label": "Cass County, IL" - }, - { - "value": "CHAMPAIGN_COUNTY_IL", - "label": "Champaign County, IL" - }, - { - "value": "CHRISTIAN_COUNTY_IL", - "label": "Christian County, IL" - }, - { - "value": "CLARK_COUNTY_IL", - "label": "Clark County, IL" - }, - { - "value": "CLAY_COUNTY_IL", - "label": "Clay County, IL" - }, - { - "value": "CLINTON_COUNTY_IL", - "label": "Clinton County, IL" - }, - { - "value": "COLES_COUNTY_IL", - "label": "Coles County, IL" - }, - { - "value": "COOK_COUNTY_IL", - "label": "Cook County, IL" - }, - { - "value": "CRAWFORD_COUNTY_IL", - "label": "Crawford County, IL" - }, - { - "value": "CUMBERLAND_COUNTY_IL", - "label": "Cumberland County, IL" - }, - { - "value": "DE_WITT_COUNTY_IL", - "label": "De Witt County, IL" - }, - { - "value": "DEKALB_COUNTY_IL", - "label": "DeKalb County, IL" - }, - { - "value": "DOUGLAS_COUNTY_IL", - "label": "Douglas County, IL" - }, - { - "value": "DUPAGE_COUNTY_IL", - "label": "DuPage County, IL" - }, - { - "value": "EDGAR_COUNTY_IL", - "label": "Edgar County, IL" - }, - { - "value": "EDWARDS_COUNTY_IL", - "label": "Edwards County, IL" - }, - { - "value": "EFFINGHAM_COUNTY_IL", - "label": "Effingham County, IL" - }, - { - "value": "FAYETTE_COUNTY_IL", - "label": "Fayette County, IL" - }, - { - "value": "FORD_COUNTY_IL", - "label": "Ford County, IL" - }, - { - "value": "FRANKLIN_COUNTY_IL", - "label": "Franklin County, IL" - }, - { - "value": "FULTON_COUNTY_IL", - "label": "Fulton County, IL" - }, - { - "value": "GALLATIN_COUNTY_IL", - "label": "Gallatin County, IL" - }, - { - "value": "GREENE_COUNTY_IL", - "label": "Greene County, IL" - }, - { - "value": "GRUNDY_COUNTY_IL", - "label": "Grundy County, IL" - }, - { - "value": "HAMILTON_COUNTY_IL", - "label": "Hamilton County, IL" - }, - { - "value": "HANCOCK_COUNTY_IL", - "label": "Hancock County, IL" - }, - { - "value": "HARDIN_COUNTY_IL", - "label": "Hardin County, IL" - }, - { - "value": "HENDERSON_COUNTY_IL", - "label": "Henderson County, IL" - }, - { - "value": "HENRY_COUNTY_IL", - "label": "Henry County, IL" - }, - { - "value": "IROQUOIS_COUNTY_IL", - "label": "Iroquois County, IL" - }, - { - "value": "JACKSON_COUNTY_IL", - "label": "Jackson County, IL" - }, - { - "value": "JASPER_COUNTY_IL", - "label": "Jasper County, IL" - }, - { - "value": "JEFFERSON_COUNTY_IL", - "label": "Jefferson County, IL" - }, - { - "value": "JERSEY_COUNTY_IL", - "label": "Jersey County, IL" - }, - { - "value": "JO_DAVIESS_COUNTY_IL", - "label": "Jo Daviess County, IL" - }, - { - "value": "JOHNSON_COUNTY_IL", - "label": "Johnson County, IL" - }, - { - "value": "KANE_COUNTY_IL", - "label": "Kane County, IL" - }, - { - "value": "KANKAKEE_COUNTY_IL", - "label": "Kankakee County, IL" - }, - { - "value": "KENDALL_COUNTY_IL", - "label": "Kendall County, IL" - }, - { - "value": "KNOX_COUNTY_IL", - "label": "Knox County, IL" - }, - { - "value": "LASALLE_COUNTY_IL", - "label": "LaSalle County, IL" - }, - { - "value": "LAKE_COUNTY_IL", - "label": "Lake County, IL" - }, - { - "value": "LAWRENCE_COUNTY_IL", - "label": "Lawrence County, IL" - }, - { - "value": "LEE_COUNTY_IL", - "label": "Lee County, IL" - }, - { - "value": "LIVINGSTON_COUNTY_IL", - "label": "Livingston County, IL" - }, - { - "value": "LOGAN_COUNTY_IL", - "label": "Logan County, IL" - }, - { - "value": "MACON_COUNTY_IL", - "label": "Macon County, IL" - }, - { - "value": "MACOUPIN_COUNTY_IL", - "label": "Macoupin County, IL" - }, - { - "value": "MADISON_COUNTY_IL", - "label": "Madison County, IL" - }, - { - "value": "MARION_COUNTY_IL", - "label": "Marion County, IL" - }, - { - "value": "MARSHALL_COUNTY_IL", - "label": "Marshall County, IL" - }, - { - "value": "MASON_COUNTY_IL", - "label": "Mason County, IL" - }, - { - "value": "MASSAC_COUNTY_IL", - "label": "Massac County, IL" - }, - { - "value": "MCDONOUGH_COUNTY_IL", - "label": "McDonough County, IL" - }, - { - "value": "MCHENRY_COUNTY_IL", - "label": "McHenry County, IL" - }, - { - "value": "MCLEAN_COUNTY_IL", - "label": "McLean County, IL" - }, - { - "value": "MENARD_COUNTY_IL", - "label": "Menard County, IL" - }, - { - "value": "MERCER_COUNTY_IL", - "label": "Mercer County, IL" - }, - { - "value": "MONROE_COUNTY_IL", - "label": "Monroe County, IL" - }, - { - "value": "MONTGOMERY_COUNTY_IL", - "label": "Montgomery County, IL" - }, - { - "value": "MORGAN_COUNTY_IL", - "label": "Morgan County, IL" - }, - { - "value": "MOULTRIE_COUNTY_IL", - "label": "Moultrie County, IL" - }, - { - "value": "OGLE_COUNTY_IL", - "label": "Ogle County, IL" - }, - { - "value": "PEORIA_COUNTY_IL", - "label": "Peoria County, IL" - }, - { - "value": "PERRY_COUNTY_IL", - "label": "Perry County, IL" - }, - { - "value": "PIATT_COUNTY_IL", - "label": "Piatt County, IL" - }, - { - "value": "PIKE_COUNTY_IL", - "label": "Pike County, IL" - }, - { - "value": "POPE_COUNTY_IL", - "label": "Pope County, IL" - }, - { - "value": "PULASKI_COUNTY_IL", - "label": "Pulaski County, IL" - }, - { - "value": "PUTNAM_COUNTY_IL", - "label": "Putnam County, IL" - }, - { - "value": "RANDOLPH_COUNTY_IL", - "label": "Randolph County, IL" - }, - { - "value": "RICHLAND_COUNTY_IL", - "label": "Richland County, IL" - }, - { - "value": "ROCK_ISLAND_COUNTY_IL", - "label": "Rock Island County, IL" - }, - { - "value": "SALINE_COUNTY_IL", - "label": "Saline County, IL" - }, - { - "value": "SANGAMON_COUNTY_IL", - "label": "Sangamon County, IL" - }, - { - "value": "SCHUYLER_COUNTY_IL", - "label": "Schuyler County, IL" - }, - { - "value": "SCOTT_COUNTY_IL", - "label": "Scott County, IL" - }, - { - "value": "SHELBY_COUNTY_IL", - "label": "Shelby County, IL" - }, - { - "value": "ST_CLAIR_COUNTY_IL", - "label": "St. Clair County, IL" - }, - { - "value": "STARK_COUNTY_IL", - "label": "Stark County, IL" - }, - { - "value": "STEPHENSON_COUNTY_IL", - "label": "Stephenson County, IL" - }, - { - "value": "TAZEWELL_COUNTY_IL", - "label": "Tazewell County, IL" - }, - { - "value": "UNION_COUNTY_IL", - "label": "Union County, IL" - }, - { - "value": "VERMILION_COUNTY_IL", - "label": "Vermilion County, IL" - }, - { - "value": "WABASH_COUNTY_IL", - "label": "Wabash County, IL" - }, - { - "value": "WARREN_COUNTY_IL", - "label": "Warren County, IL" - }, - { - "value": "WASHINGTON_COUNTY_IL", - "label": "Washington County, IL" - }, - { - "value": "WAYNE_COUNTY_IL", - "label": "Wayne County, IL" - }, - { - "value": "WHITE_COUNTY_IL", - "label": "White County, IL" - }, - { - "value": "WHITESIDE_COUNTY_IL", - "label": "Whiteside County, IL" - }, - { - "value": "WILL_COUNTY_IL", - "label": "Will County, IL" - }, - { - "value": "WILLIAMSON_COUNTY_IL", - "label": "Williamson County, IL" - }, - { - "value": "WINNEBAGO_COUNTY_IL", - "label": "Winnebago County, IL" - }, - { - "value": "WOODFORD_COUNTY_IL", - "label": "Woodford County, IL" - }, - { - "value": "ADAMS_COUNTY_IN", - "label": "Adams County, IN" - }, - { - "value": "ALLEN_COUNTY_IN", - "label": "Allen County, IN" - }, - { - "value": "BARTHOLOMEW_COUNTY_IN", - "label": "Bartholomew County, IN" - }, - { - "value": "BENTON_COUNTY_IN", - "label": "Benton County, IN" - }, - { - "value": "BLACKFORD_COUNTY_IN", - "label": "Blackford County, IN" - }, - { - "value": "BOONE_COUNTY_IN", - "label": "Boone County, IN" - }, - { - "value": "BROWN_COUNTY_IN", - "label": "Brown County, IN" - }, - { - "value": "CARROLL_COUNTY_IN", - "label": "Carroll County, IN" - }, - { - "value": "CASS_COUNTY_IN", - "label": "Cass County, IN" - }, - { - "value": "CLARK_COUNTY_IN", - "label": "Clark County, IN" - }, - { - "value": "CLAY_COUNTY_IN", - "label": "Clay County, IN" - }, - { - "value": "CLINTON_COUNTY_IN", - "label": "Clinton County, IN" - }, - { - "value": "CRAWFORD_COUNTY_IN", - "label": "Crawford County, IN" - }, - { - "value": "DAVIESS_COUNTY_IN", - "label": "Daviess County, IN" - }, - { - "value": "DEKALB_COUNTY_IN", - "label": "DeKalb County, IN" - }, - { - "value": "DEARBORN_COUNTY_IN", - "label": "Dearborn County, IN" - }, - { - "value": "DECATUR_COUNTY_IN", - "label": "Decatur County, IN" - }, - { - "value": "DELAWARE_COUNTY_IN", - "label": "Delaware County, IN" - }, - { - "value": "DUBOIS_COUNTY_IN", - "label": "Dubois County, IN" - }, - { - "value": "ELKHART_COUNTY_IN", - "label": "Elkhart County, IN" - }, - { - "value": "FAYETTE_COUNTY_IN", - "label": "Fayette County, IN" - }, - { - "value": "FLOYD_COUNTY_IN", - "label": "Floyd County, IN" - }, - { - "value": "FOUNTAIN_COUNTY_IN", - "label": "Fountain County, IN" - }, - { - "value": "FRANKLIN_COUNTY_IN", - "label": "Franklin County, IN" - }, - { - "value": "FULTON_COUNTY_IN", - "label": "Fulton County, IN" - }, - { - "value": "GIBSON_COUNTY_IN", - "label": "Gibson County, IN" - }, - { - "value": "GRANT_COUNTY_IN", - "label": "Grant County, IN" - }, - { - "value": "GREENE_COUNTY_IN", - "label": "Greene County, IN" - }, - { - "value": "HAMILTON_COUNTY_IN", - "label": "Hamilton County, IN" - }, - { - "value": "HANCOCK_COUNTY_IN", - "label": "Hancock County, IN" - }, - { - "value": "HARRISON_COUNTY_IN", - "label": "Harrison County, IN" - }, - { - "value": "HENDRICKS_COUNTY_IN", - "label": "Hendricks County, IN" - }, - { - "value": "HENRY_COUNTY_IN", - "label": "Henry County, IN" - }, - { - "value": "HOWARD_COUNTY_IN", - "label": "Howard County, IN" - }, - { - "value": "HUNTINGTON_COUNTY_IN", - "label": "Huntington County, IN" - }, - { - "value": "JACKSON_COUNTY_IN", - "label": "Jackson County, IN" - }, - { - "value": "JASPER_COUNTY_IN", - "label": "Jasper County, IN" - }, - { - "value": "JAY_COUNTY_IN", - "label": "Jay County, IN" - }, - { - "value": "JEFFERSON_COUNTY_IN", - "label": "Jefferson County, IN" - }, - { - "value": "JENNINGS_COUNTY_IN", - "label": "Jennings County, IN" - }, - { - "value": "JOHNSON_COUNTY_IN", - "label": "Johnson County, IN" - }, - { - "value": "KNOX_COUNTY_IN", - "label": "Knox County, IN" - }, - { - "value": "KOSCIUSKO_COUNTY_IN", - "label": "Kosciusko County, IN" - }, - { - "value": "LAGRANGE_COUNTY_IN", - "label": "LaGrange County, IN" - }, - { - "value": "LAPORTE_COUNTY_IN", - "label": "LaPorte County, IN" - }, - { - "value": "LAKE_COUNTY_IN", - "label": "Lake County, IN" - }, - { - "value": "LAWRENCE_COUNTY_IN", - "label": "Lawrence County, IN" - }, - { - "value": "MADISON_COUNTY_IN", - "label": "Madison County, IN" - }, - { - "value": "MARION_COUNTY_IN", - "label": "Marion County, IN" - }, - { - "value": "MARSHALL_COUNTY_IN", - "label": "Marshall County, IN" - }, - { - "value": "MARTIN_COUNTY_IN", - "label": "Martin County, IN" - }, - { - "value": "MIAMI_COUNTY_IN", - "label": "Miami County, IN" - }, - { - "value": "MONROE_COUNTY_IN", - "label": "Monroe County, IN" - }, - { - "value": "MONTGOMERY_COUNTY_IN", - "label": "Montgomery County, IN" - }, - { - "value": "MORGAN_COUNTY_IN", - "label": "Morgan County, IN" - }, - { - "value": "NEWTON_COUNTY_IN", - "label": "Newton County, IN" - }, - { - "value": "NOBLE_COUNTY_IN", - "label": "Noble County, IN" - }, - { - "value": "OHIO_COUNTY_IN", - "label": "Ohio County, IN" - }, - { - "value": "ORANGE_COUNTY_IN", - "label": "Orange County, IN" - }, - { - "value": "OWEN_COUNTY_IN", - "label": "Owen County, IN" - }, - { - "value": "PARKE_COUNTY_IN", - "label": "Parke County, IN" - }, - { - "value": "PERRY_COUNTY_IN", - "label": "Perry County, IN" - }, - { - "value": "PIKE_COUNTY_IN", - "label": "Pike County, IN" - }, - { - "value": "PORTER_COUNTY_IN", - "label": "Porter County, IN" - }, - { - "value": "POSEY_COUNTY_IN", - "label": "Posey County, IN" - }, - { - "value": "PULASKI_COUNTY_IN", - "label": "Pulaski County, IN" - }, - { - "value": "PUTNAM_COUNTY_IN", - "label": "Putnam County, IN" - }, - { - "value": "RANDOLPH_COUNTY_IN", - "label": "Randolph County, IN" - }, - { - "value": "RIPLEY_COUNTY_IN", - "label": "Ripley County, IN" - }, - { - "value": "RUSH_COUNTY_IN", - "label": "Rush County, IN" - }, - { - "value": "SCOTT_COUNTY_IN", - "label": "Scott County, IN" - }, - { - "value": "SHELBY_COUNTY_IN", - "label": "Shelby County, IN" - }, - { - "value": "SPENCER_COUNTY_IN", - "label": "Spencer County, IN" - }, - { - "value": "ST_JOSEPH_COUNTY_IN", - "label": "St. Joseph County, IN" - }, - { - "value": "STARKE_COUNTY_IN", - "label": "Starke County, IN" - }, - { - "value": "STEUBEN_COUNTY_IN", - "label": "Steuben County, IN" - }, - { - "value": "SULLIVAN_COUNTY_IN", - "label": "Sullivan County, IN" - }, - { - "value": "SWITZERLAND_COUNTY_IN", - "label": "Switzerland County, IN" - }, - { - "value": "TIPPECANOE_COUNTY_IN", - "label": "Tippecanoe County, IN" - }, - { - "value": "TIPTON_COUNTY_IN", - "label": "Tipton County, IN" - }, - { - "value": "UNION_COUNTY_IN", - "label": "Union County, IN" - }, - { - "value": "VANDERBURGH_COUNTY_IN", - "label": "Vanderburgh County, IN" - }, - { - "value": "VERMILLION_COUNTY_IN", - "label": "Vermillion County, IN" - }, - { - "value": "VIGO_COUNTY_IN", - "label": "Vigo County, IN" - }, - { - "value": "WABASH_COUNTY_IN", - "label": "Wabash County, IN" - }, - { - "value": "WARREN_COUNTY_IN", - "label": "Warren County, IN" - }, - { - "value": "WARRICK_COUNTY_IN", - "label": "Warrick County, IN" - }, - { - "value": "WASHINGTON_COUNTY_IN", - "label": "Washington County, IN" - }, - { - "value": "WAYNE_COUNTY_IN", - "label": "Wayne County, IN" - }, - { - "value": "WELLS_COUNTY_IN", - "label": "Wells County, IN" - }, - { - "value": "WHITE_COUNTY_IN", - "label": "White County, IN" - }, - { - "value": "WHITLEY_COUNTY_IN", - "label": "Whitley County, IN" - }, - { - "value": "ALLEN_COUNTY_KS", - "label": "Allen County, KS" - }, - { - "value": "ANDERSON_COUNTY_KS", - "label": "Anderson County, KS" - }, - { - "value": "ATCHISON_COUNTY_KS", - "label": "Atchison County, KS" - }, - { - "value": "BARBER_COUNTY_KS", - "label": "Barber County, KS" - }, - { - "value": "BARTON_COUNTY_KS", - "label": "Barton County, KS" - }, - { - "value": "BOURBON_COUNTY_KS", - "label": "Bourbon County, KS" - }, - { - "value": "BROWN_COUNTY_KS", - "label": "Brown County, KS" - }, - { - "value": "BUTLER_COUNTY_KS", - "label": "Butler County, KS" - }, - { - "value": "CHASE_COUNTY_KS", - "label": "Chase County, KS" - }, - { - "value": "CHAUTAUQUA_COUNTY_KS", - "label": "Chautauqua County, KS" - }, - { - "value": "CHEROKEE_COUNTY_KS", - "label": "Cherokee County, KS" - }, - { - "value": "CHEYENNE_COUNTY_KS", - "label": "Cheyenne County, KS" - }, - { - "value": "CLARK_COUNTY_KS", - "label": "Clark County, KS" - }, - { - "value": "CLAY_COUNTY_KS", - "label": "Clay County, KS" - }, - { - "value": "CLOUD_COUNTY_KS", - "label": "Cloud County, KS" - }, - { - "value": "COFFEY_COUNTY_KS", - "label": "Coffey County, KS" - }, - { - "value": "COMANCHE_COUNTY_KS", - "label": "Comanche County, KS" - }, - { - "value": "COWLEY_COUNTY_KS", - "label": "Cowley County, KS" - }, - { - "value": "CRAWFORD_COUNTY_KS", - "label": "Crawford County, KS" - }, - { - "value": "DECATUR_COUNTY_KS", - "label": "Decatur County, KS" - }, - { - "value": "DICKINSON_COUNTY_KS", - "label": "Dickinson County, KS" - }, - { - "value": "DONIPHAN_COUNTY_KS", - "label": "Doniphan County, KS" - }, - { - "value": "DOUGLAS_COUNTY_KS", - "label": "Douglas County, KS" - }, - { - "value": "EDWARDS_COUNTY_KS", - "label": "Edwards County, KS" - }, - { - "value": "ELK_COUNTY_KS", - "label": "Elk County, KS" - }, - { - "value": "ELLIS_COUNTY_KS", - "label": "Ellis County, KS" - }, - { - "value": "ELLSWORTH_COUNTY_KS", - "label": "Ellsworth County, KS" - }, - { - "value": "FINNEY_COUNTY_KS", - "label": "Finney County, KS" - }, - { - "value": "FORD_COUNTY_KS", - "label": "Ford County, KS" - }, - { - "value": "FRANKLIN_COUNTY_KS", - "label": "Franklin County, KS" - }, - { - "value": "GEARY_COUNTY_KS", - "label": "Geary County, KS" - }, - { - "value": "GOVE_COUNTY_KS", - "label": "Gove County, KS" - }, - { - "value": "GRAHAM_COUNTY_KS", - "label": "Graham County, KS" - }, - { - "value": "GRANT_COUNTY_KS", - "label": "Grant County, KS" - }, - { - "value": "GRAY_COUNTY_KS", - "label": "Gray County, KS" - }, - { - "value": "GREELEY_COUNTY_KS", - "label": "Greeley County, KS" - }, - { - "value": "GREENWOOD_COUNTY_KS", - "label": "Greenwood County, KS" - }, - { - "value": "HAMILTON_COUNTY_KS", - "label": "Hamilton County, KS" - }, - { - "value": "HARPER_COUNTY_KS", - "label": "Harper County, KS" - }, - { - "value": "HARVEY_COUNTY_KS", - "label": "Harvey County, KS" - }, - { - "value": "HASKELL_COUNTY_KS", - "label": "Haskell County, KS" - }, - { - "value": "HODGEMAN_COUNTY_KS", - "label": "Hodgeman County, KS" - }, - { - "value": "JACKSON_COUNTY_KS", - "label": "Jackson County, KS" - }, - { - "value": "JEFFERSON_COUNTY_KS", - "label": "Jefferson County, KS" - }, - { - "value": "JEWELL_COUNTY_KS", - "label": "Jewell County, KS" - }, - { - "value": "JOHNSON_COUNTY_KS", - "label": "Johnson County, KS" - }, - { - "value": "KEARNY_COUNTY_KS", - "label": "Kearny County, KS" - }, - { - "value": "KINGMAN_COUNTY_KS", - "label": "Kingman County, KS" - }, - { - "value": "KIOWA_COUNTY_KS", - "label": "Kiowa County, KS" - }, - { - "value": "LABETTE_COUNTY_KS", - "label": "Labette County, KS" - }, - { - "value": "LANE_COUNTY_KS", - "label": "Lane County, KS" - }, - { - "value": "LEAVENWORTH_COUNTY_KS", - "label": "Leavenworth County, KS" - }, - { - "value": "LINCOLN_COUNTY_KS", - "label": "Lincoln County, KS" - }, - { - "value": "LINN_COUNTY_KS", - "label": "Linn County, KS" - }, - { - "value": "LOGAN_COUNTY_KS", - "label": "Logan County, KS" - }, - { - "value": "LYON_COUNTY_KS", - "label": "Lyon County, KS" - }, - { - "value": "MARION_COUNTY_KS", - "label": "Marion County, KS" - }, - { - "value": "MARSHALL_COUNTY_KS", - "label": "Marshall County, KS" - }, - { - "value": "MCPHERSON_COUNTY_KS", - "label": "McPherson County, KS" - }, - { - "value": "MEADE_COUNTY_KS", - "label": "Meade County, KS" - }, - { - "value": "MIAMI_COUNTY_KS", - "label": "Miami County, KS" - }, - { - "value": "MITCHELL_COUNTY_KS", - "label": "Mitchell County, KS" - }, - { - "value": "MONTGOMERY_COUNTY_KS", - "label": "Montgomery County, KS" - }, - { - "value": "MORRIS_COUNTY_KS", - "label": "Morris County, KS" - }, - { - "value": "MORTON_COUNTY_KS", - "label": "Morton County, KS" - }, - { - "value": "NEMAHA_COUNTY_KS", - "label": "Nemaha County, KS" - }, - { - "value": "NEOSHO_COUNTY_KS", - "label": "Neosho County, KS" - }, - { - "value": "NESS_COUNTY_KS", - "label": "Ness County, KS" - }, - { - "value": "NORTON_COUNTY_KS", - "label": "Norton County, KS" - }, - { - "value": "OSAGE_COUNTY_KS", - "label": "Osage County, KS" - }, - { - "value": "OSBORNE_COUNTY_KS", - "label": "Osborne County, KS" - }, - { - "value": "OTTAWA_COUNTY_KS", - "label": "Ottawa County, KS" - }, - { - "value": "PAWNEE_COUNTY_KS", - "label": "Pawnee County, KS" - }, - { - "value": "PHILLIPS_COUNTY_KS", - "label": "Phillips County, KS" - }, - { - "value": "POTTAWATOMIE_COUNTY_KS", - "label": "Pottawatomie County, KS" - }, - { - "value": "PRATT_COUNTY_KS", - "label": "Pratt County, KS" - }, - { - "value": "RAWLINS_COUNTY_KS", - "label": "Rawlins County, KS" - }, - { - "value": "RENO_COUNTY_KS", - "label": "Reno County, KS" - }, - { - "value": "REPUBLIC_COUNTY_KS", - "label": "Republic County, KS" - }, - { - "value": "RICE_COUNTY_KS", - "label": "Rice County, KS" - }, - { - "value": "RILEY_COUNTY_KS", - "label": "Riley County, KS" - }, - { - "value": "ROOKS_COUNTY_KS", - "label": "Rooks County, KS" - }, - { - "value": "RUSH_COUNTY_KS", - "label": "Rush County, KS" - }, - { - "value": "RUSSELL_COUNTY_KS", - "label": "Russell County, KS" - }, - { - "value": "SALINE_COUNTY_KS", - "label": "Saline County, KS" - }, - { - "value": "SCOTT_COUNTY_KS", - "label": "Scott County, KS" - }, - { - "value": "SEDGWICK_COUNTY_KS", - "label": "Sedgwick County, KS" - }, - { - "value": "SEWARD_COUNTY_KS", - "label": "Seward County, KS" - }, - { - "value": "SHAWNEE_COUNTY_KS", - "label": "Shawnee County, KS" - }, - { - "value": "SHERIDAN_COUNTY_KS", - "label": "Sheridan County, KS" - }, - { - "value": "SHERMAN_COUNTY_KS", - "label": "Sherman County, KS" - }, - { - "value": "SMITH_COUNTY_KS", - "label": "Smith County, KS" - }, - { - "value": "STAFFORD_COUNTY_KS", - "label": "Stafford County, KS" - }, - { - "value": "STANTON_COUNTY_KS", - "label": "Stanton County, KS" - }, - { - "value": "STEVENS_COUNTY_KS", - "label": "Stevens County, KS" - }, - { - "value": "SUMNER_COUNTY_KS", - "label": "Sumner County, KS" - }, - { - "value": "THOMAS_COUNTY_KS", - "label": "Thomas County, KS" - }, - { - "value": "TREGO_COUNTY_KS", - "label": "Trego County, KS" - }, - { - "value": "WABAUNSEE_COUNTY_KS", - "label": "Wabaunsee County, KS" - }, - { - "value": "WALLACE_COUNTY_KS", - "label": "Wallace County, KS" - }, - { - "value": "WASHINGTON_COUNTY_KS", - "label": "Washington County, KS" - }, - { - "value": "WICHITA_COUNTY_KS", - "label": "Wichita County, KS" - }, - { - "value": "WILSON_COUNTY_KS", - "label": "Wilson County, KS" - }, - { - "value": "WOODSON_COUNTY_KS", - "label": "Woodson County, KS" - }, - { - "value": "WYANDOTTE_COUNTY_KS", - "label": "Wyandotte County, KS" - }, - { - "value": "ADAIR_COUNTY_KY", - "label": "Adair County, KY" - }, - { - "value": "ALLEN_COUNTY_KY", - "label": "Allen County, KY" - }, - { - "value": "ANDERSON_COUNTY_KY", - "label": "Anderson County, KY" - }, - { - "value": "BALLARD_COUNTY_KY", - "label": "Ballard County, KY" - }, - { - "value": "BARREN_COUNTY_KY", - "label": "Barren County, KY" - }, - { - "value": "BATH_COUNTY_KY", - "label": "Bath County, KY" - }, - { - "value": "BELL_COUNTY_KY", - "label": "Bell County, KY" - }, - { - "value": "BOONE_COUNTY_KY", - "label": "Boone County, KY" - }, - { - "value": "BOURBON_COUNTY_KY", - "label": "Bourbon County, KY" - }, - { - "value": "BOYD_COUNTY_KY", - "label": "Boyd County, KY" - }, - { - "value": "BOYLE_COUNTY_KY", - "label": "Boyle County, KY" - }, - { - "value": "BRACKEN_COUNTY_KY", - "label": "Bracken County, KY" - }, - { - "value": "BREATHITT_COUNTY_KY", - "label": "Breathitt County, KY" - }, - { - "value": "BRECKINRIDGE_COUNTY_KY", - "label": "Breckinridge County, KY" - }, - { - "value": "BULLITT_COUNTY_KY", - "label": "Bullitt County, KY" - }, - { - "value": "BUTLER_COUNTY_KY", - "label": "Butler County, KY" - }, - { - "value": "CALDWELL_COUNTY_KY", - "label": "Caldwell County, KY" - }, - { - "value": "CALLOWAY_COUNTY_KY", - "label": "Calloway County, KY" - }, - { - "value": "CAMPBELL_COUNTY_KY", - "label": "Campbell County, KY" - }, - { - "value": "CARLISLE_COUNTY_KY", - "label": "Carlisle County, KY" - }, - { - "value": "CARROLL_COUNTY_KY", - "label": "Carroll County, KY" - }, - { - "value": "CARTER_COUNTY_KY", - "label": "Carter County, KY" - }, - { - "value": "CASEY_COUNTY_KY", - "label": "Casey County, KY" - }, - { - "value": "CHRISTIAN_COUNTY_KY", - "label": "Christian County, KY" - }, - { - "value": "CLAY_COUNTY_KY", - "label": "Clay County, KY" - }, - { - "value": "CLINTON_COUNTY_KY", - "label": "Clinton County, KY" - }, - { - "value": "CRITTENDEN_COUNTY_KY", - "label": "Crittenden County, KY" - }, - { - "value": "DAVIESS_COUNTY_KY", - "label": "Daviess County, KY" - }, - { - "value": "EDMONSON_COUNTY_KY", - "label": "Edmonson County, KY" - }, - { - "value": "ELLIOTT_COUNTY_KY", - "label": "Elliott County, KY" - }, - { - "value": "ESTILL_COUNTY_KY", - "label": "Estill County, KY" - }, - { - "value": "FAYETTE_COUNTY_KY", - "label": "Fayette County, KY" - }, - { - "value": "FLEMING_COUNTY_KY", - "label": "Fleming County, KY" - }, - { - "value": "FLOYD_COUNTY_KY", - "label": "Floyd County, KY" - }, - { - "value": "FRANKLIN_COUNTY_KY", - "label": "Franklin County, KY" - }, - { - "value": "FULTON_COUNTY_KY", - "label": "Fulton County, KY" - }, - { - "value": "GALLATIN_COUNTY_KY", - "label": "Gallatin County, KY" - }, - { - "value": "GARRARD_COUNTY_KY", - "label": "Garrard County, KY" - }, - { - "value": "GRANT_COUNTY_KY", - "label": "Grant County, KY" - }, - { - "value": "GRAVES_COUNTY_KY", - "label": "Graves County, KY" - }, - { - "value": "GRAYSON_COUNTY_KY", - "label": "Grayson County, KY" - }, - { - "value": "GREEN_COUNTY_KY", - "label": "Green County, KY" - }, - { - "value": "GREENUP_COUNTY_KY", - "label": "Greenup County, KY" - }, - { - "value": "HANCOCK_COUNTY_KY", - "label": "Hancock County, KY" - }, - { - "value": "HARDIN_COUNTY_KY", - "label": "Hardin County, KY" - }, - { - "value": "HARLAN_COUNTY_KY", - "label": "Harlan County, KY" - }, - { - "value": "HARRISON_COUNTY_KY", - "label": "Harrison County, KY" - }, - { - "value": "HART_COUNTY_KY", - "label": "Hart County, KY" - }, - { - "value": "HENDERSON_COUNTY_KY", - "label": "Henderson County, KY" - }, - { - "value": "HENRY_COUNTY_KY", - "label": "Henry County, KY" - }, - { - "value": "HICKMAN_COUNTY_KY", - "label": "Hickman County, KY" - }, - { - "value": "HOPKINS_COUNTY_KY", - "label": "Hopkins County, KY" - }, - { - "value": "JACKSON_COUNTY_KY", - "label": "Jackson County, KY" - }, - { - "value": "JEFFERSON_COUNTY_KY", - "label": "Jefferson County, KY" - }, - { - "value": "JESSAMINE_COUNTY_KY", - "label": "Jessamine County, KY" - }, - { - "value": "JOHNSON_COUNTY_KY", - "label": "Johnson County, KY" - }, - { - "value": "KENTON_COUNTY_KY", - "label": "Kenton County, KY" - }, - { - "value": "KNOTT_COUNTY_KY", - "label": "Knott County, KY" - }, - { - "value": "KNOX_COUNTY_KY", - "label": "Knox County, KY" - }, - { - "value": "LARUE_COUNTY_KY", - "label": "Larue County, KY" - }, - { - "value": "LAUREL_COUNTY_KY", - "label": "Laurel County, KY" - }, - { - "value": "LAWRENCE_COUNTY_KY", - "label": "Lawrence County, KY" - }, - { - "value": "LEE_COUNTY_KY", - "label": "Lee County, KY" - }, - { - "value": "LESLIE_COUNTY_KY", - "label": "Leslie County, KY" - }, - { - "value": "LETCHER_COUNTY_KY", - "label": "Letcher County, KY" - }, - { - "value": "LEWIS_COUNTY_KY", - "label": "Lewis County, KY" - }, - { - "value": "LINCOLN_COUNTY_KY", - "label": "Lincoln County, KY" - }, - { - "value": "LIVINGSTON_COUNTY_KY", - "label": "Livingston County, KY" - }, - { - "value": "LOGAN_COUNTY_KY", - "label": "Logan County, KY" - }, - { - "value": "LYON_COUNTY_KY", - "label": "Lyon County, KY" - }, - { - "value": "MADISON_COUNTY_KY", - "label": "Madison County, KY" - }, - { - "value": "MAGOFFIN_COUNTY_KY", - "label": "Magoffin County, KY" - }, - { - "value": "MARION_COUNTY_KY", - "label": "Marion County, KY" - }, - { - "value": "MARSHALL_COUNTY_KY", - "label": "Marshall County, KY" - }, - { - "value": "MARTIN_COUNTY_KY", - "label": "Martin County, KY" - }, - { - "value": "MASON_COUNTY_KY", - "label": "Mason County, KY" - }, - { - "value": "MCCRACKEN_COUNTY_KY", - "label": "McCracken County, KY" - }, - { - "value": "MCCREARY_COUNTY_KY", - "label": "McCreary County, KY" - }, - { - "value": "MCLEAN_COUNTY_KY", - "label": "McLean County, KY" - }, - { - "value": "MEADE_COUNTY_KY", - "label": "Meade County, KY" - }, - { - "value": "MENIFEE_COUNTY_KY", - "label": "Menifee County, KY" - }, - { - "value": "MERCER_COUNTY_KY", - "label": "Mercer County, KY" - }, - { - "value": "METCALFE_COUNTY_KY", - "label": "Metcalfe County, KY" - }, - { - "value": "MONROE_COUNTY_KY", - "label": "Monroe County, KY" - }, - { - "value": "MONTGOMERY_COUNTY_KY", - "label": "Montgomery County, KY" - }, - { - "value": "MORGAN_COUNTY_KY", - "label": "Morgan County, KY" - }, - { - "value": "MUHLENBERG_COUNTY_KY", - "label": "Muhlenberg County, KY" - }, - { - "value": "NELSON_COUNTY_KY", - "label": "Nelson County, KY" - }, - { - "value": "NICHOLAS_COUNTY_KY", - "label": "Nicholas County, KY" - }, - { - "value": "OHIO_COUNTY_KY", - "label": "Ohio County, KY" - }, - { - "value": "OLDHAM_COUNTY_KY", - "label": "Oldham County, KY" - }, - { - "value": "OWEN_COUNTY_KY", - "label": "Owen County, KY" - }, - { - "value": "OWSLEY_COUNTY_KY", - "label": "Owsley County, KY" - }, - { - "value": "PENDLETON_COUNTY_KY", - "label": "Pendleton County, KY" - }, - { - "value": "PERRY_COUNTY_KY", - "label": "Perry County, KY" - }, - { - "value": "PIKE_COUNTY_KY", - "label": "Pike County, KY" - }, - { - "value": "POWELL_COUNTY_KY", - "label": "Powell County, KY" - }, - { - "value": "PULASKI_COUNTY_KY", - "label": "Pulaski County, KY" - }, - { - "value": "ROBERTSON_COUNTY_KY", - "label": "Robertson County, KY" - }, - { - "value": "ROCKCASTLE_COUNTY_KY", - "label": "Rockcastle County, KY" - }, - { - "value": "ROWAN_COUNTY_KY", - "label": "Rowan County, KY" - }, - { - "value": "RUSSELL_COUNTY_KY", - "label": "Russell County, KY" - }, - { - "value": "SCOTT_COUNTY_KY", - "label": "Scott County, KY" - }, - { - "value": "SHELBY_COUNTY_KY", - "label": "Shelby County, KY" - }, - { - "value": "SIMPSON_COUNTY_KY", - "label": "Simpson County, KY" - }, - { - "value": "SPENCER_COUNTY_KY", - "label": "Spencer County, KY" - }, - { - "value": "TAYLOR_COUNTY_KY", - "label": "Taylor County, KY" - }, - { - "value": "TODD_COUNTY_KY", - "label": "Todd County, KY" - }, - { - "value": "TRIGG_COUNTY_KY", - "label": "Trigg County, KY" - }, - { - "value": "TRIMBLE_COUNTY_KY", - "label": "Trimble County, KY" - }, - { - "value": "UNION_COUNTY_KY", - "label": "Union County, KY" - }, - { - "value": "WARREN_COUNTY_KY", - "label": "Warren County, KY" - }, - { - "value": "WASHINGTON_COUNTY_KY", - "label": "Washington County, KY" - }, - { - "value": "WAYNE_COUNTY_KY", - "label": "Wayne County, KY" - }, - { - "value": "WEBSTER_COUNTY_KY", - "label": "Webster County, KY" - }, - { - "value": "WHITLEY_COUNTY_KY", - "label": "Whitley County, KY" - }, - { - "value": "WOLFE_COUNTY_KY", - "label": "Wolfe County, KY" - }, - { - "value": "WOODFORD_COUNTY_KY", - "label": "Woodford County, KY" - }, - { - "value": "ACADIA_PARISH_LA", - "label": "Acadia Parish, LA" - }, - { - "value": "ALLEN_PARISH_LA", - "label": "Allen Parish, LA" - }, - { - "value": "ASCENSION_PARISH_LA", - "label": "Ascension Parish, LA" - }, - { - "value": "ASSUMPTION_PARISH_LA", - "label": "Assumption Parish, LA" - }, - { - "value": "AVOYELLES_PARISH_LA", - "label": "Avoyelles Parish, LA" - }, - { - "value": "BEAUREGARD_PARISH_LA", - "label": "Beauregard Parish, LA" - }, - { - "value": "BIENVILLE_PARISH_LA", - "label": "Bienville Parish, LA" - }, - { - "value": "BOSSIER_PARISH_LA", - "label": "Bossier Parish, LA" - }, - { - "value": "CADDO_PARISH_LA", - "label": "Caddo Parish, LA" - }, - { - "value": "CALCASIEU_PARISH_LA", - "label": "Calcasieu Parish, LA" - }, - { - "value": "CALDWELL_PARISH_LA", - "label": "Caldwell Parish, LA" - }, - { - "value": "CAMERON_PARISH_LA", - "label": "Cameron Parish, LA" - }, - { - "value": "CATAHOULA_PARISH_LA", - "label": "Catahoula Parish, LA" - }, - { - "value": "CLAIBORNE_PARISH_LA", - "label": "Claiborne Parish, LA" - }, - { - "value": "CONCORDIA_PARISH_LA", - "label": "Concordia Parish, LA" - }, - { - "value": "DE_SOTO_PARISH_LA", - "label": "De Soto Parish, LA" - }, - { - "value": "EAST_BATON_ROUGE_PARISH_LA", - "label": "East Baton Rouge Parish, LA" - }, - { - "value": "EAST_CARROLL_PARISH_LA", - "label": "East Carroll Parish, LA" - }, - { - "value": "EAST_FELICIANA_PARISH_LA", - "label": "East Feliciana Parish, LA" - }, - { - "value": "EVANGELINE_PARISH_LA", - "label": "Evangeline Parish, LA" - }, - { - "value": "FRANKLIN_PARISH_LA", - "label": "Franklin Parish, LA" - }, - { - "value": "GRANT_PARISH_LA", - "label": "Grant Parish, LA" - }, - { - "value": "IBERIA_PARISH_LA", - "label": "Iberia Parish, LA" - }, - { - "value": "IBERVILLE_PARISH_LA", - "label": "Iberville Parish, LA" - }, - { - "value": "JACKSON_PARISH_LA", - "label": "Jackson Parish, LA" - }, - { - "value": "JEFFERSON_DAVIS_PARISH_LA", - "label": "Jefferson Davis Parish, LA" - }, - { - "value": "JEFFERSON_PARISH_LA", - "label": "Jefferson Parish, LA" - }, - { - "value": "LASALLE_PARISH_LA", - "label": "LaSalle Parish, LA" - }, - { - "value": "LAFAYETTE_PARISH_LA", - "label": "Lafayette Parish, LA" - }, - { - "value": "LAFOURCHE_PARISH_LA", - "label": "Lafourche Parish, LA" - }, - { - "value": "LINCOLN_PARISH_LA", - "label": "Lincoln Parish, LA" - }, - { - "value": "LIVINGSTON_PARISH_LA", - "label": "Livingston Parish, LA" - }, - { - "value": "MADISON_PARISH_LA", - "label": "Madison Parish, LA" - }, - { - "value": "MOREHOUSE_PARISH_LA", - "label": "Morehouse Parish, LA" - }, - { - "value": "NATCHITOCHES_PARISH_LA", - "label": "Natchitoches Parish, LA" - }, - { - "value": "ORLEANS_PARISH_LA", - "label": "Orleans Parish, LA" - }, - { - "value": "OUACHITA_PARISH_LA", - "label": "Ouachita Parish, LA" - }, - { - "value": "PLAQUEMINES_PARISH_LA", - "label": "Plaquemines Parish, LA" - }, - { - "value": "POINTE_COUPEE_PARISH_LA", - "label": "Pointe Coupee Parish, LA" - }, - { - "value": "RAPIDES_PARISH_LA", - "label": "Rapides Parish, LA" - }, - { - "value": "RED_RIVER_PARISH_LA", - "label": "Red River Parish, LA" - }, - { - "value": "RICHLAND_PARISH_LA", - "label": "Richland Parish, LA" - }, - { - "value": "SABINE_PARISH_LA", - "label": "Sabine Parish, LA" - }, - { - "value": "ST_BERNARD_PARISH_LA", - "label": "St. Bernard Parish, LA" - }, - { - "value": "ST_CHARLES_PARISH_LA", - "label": "St. Charles Parish, LA" - }, - { - "value": "ST_HELENA_PARISH_LA", - "label": "St. Helena Parish, LA" - }, - { - "value": "ST_JAMES_PARISH_LA", - "label": "St. James Parish, LA" - }, - { - "value": "ST_JOHN_THE_BAPTIST_PARISH_LA", - "label": "St. John the Baptist Parish, LA" - }, - { - "value": "ST_LANDRY_PARISH_LA", - "label": "St. Landry Parish, LA" - }, - { - "value": "ST_MARTIN_PARISH_LA", - "label": "St. Martin Parish, LA" - }, - { - "value": "ST_MARY_PARISH_LA", - "label": "St. Mary Parish, LA" - }, - { - "value": "ST_TAMMANY_PARISH_LA", - "label": "St. Tammany Parish, LA" - }, - { - "value": "TANGIPAHOA_PARISH_LA", - "label": "Tangipahoa Parish, LA" - }, - { - "value": "TENSAS_PARISH_LA", - "label": "Tensas Parish, LA" - }, - { - "value": "TERREBONNE_PARISH_LA", - "label": "Terrebonne Parish, LA" - }, - { - "value": "UNION_PARISH_LA", - "label": "Union Parish, LA" - }, - { - "value": "VERMILION_PARISH_LA", - "label": "Vermilion Parish, LA" - }, - { - "value": "VERNON_PARISH_LA", - "label": "Vernon Parish, LA" - }, - { - "value": "WASHINGTON_PARISH_LA", - "label": "Washington Parish, LA" - }, - { - "value": "WEBSTER_PARISH_LA", - "label": "Webster Parish, LA" - }, - { - "value": "WEST_BATON_ROUGE_PARISH_LA", - "label": "West Baton Rouge Parish, LA" - }, - { - "value": "WEST_CARROLL_PARISH_LA", - "label": "West Carroll Parish, LA" - }, - { - "value": "WEST_FELICIANA_PARISH_LA", - "label": "West Feliciana Parish, LA" - }, - { - "value": "WINN_PARISH_LA", - "label": "Winn Parish, LA" - }, - { - "value": "BARNSTABLE_COUNTY_MA", - "label": "Barnstable County, MA" - }, - { - "value": "BERKSHIRE_COUNTY_MA", - "label": "Berkshire County, MA" - }, - { - "value": "BRISTOL_COUNTY_MA", - "label": "Bristol County, MA" - }, - { - "value": "DUKES_COUNTY_MA", - "label": "Dukes County, MA" - }, - { - "value": "ESSEX_COUNTY_MA", - "label": "Essex County, MA" - }, - { - "value": "FRANKLIN_COUNTY_MA", - "label": "Franklin County, MA" - }, - { - "value": "HAMPDEN_COUNTY_MA", - "label": "Hampden County, MA" - }, - { - "value": "HAMPSHIRE_COUNTY_MA", - "label": "Hampshire County, MA" - }, - { - "value": "MIDDLESEX_COUNTY_MA", - "label": "Middlesex County, MA" - }, - { - "value": "NANTUCKET_COUNTY_MA", - "label": "Nantucket County, MA" - }, - { - "value": "NORFOLK_COUNTY_MA", - "label": "Norfolk County, MA" - }, - { - "value": "PLYMOUTH_COUNTY_MA", - "label": "Plymouth County, MA" - }, - { - "value": "SUFFOLK_COUNTY_MA", - "label": "Suffolk County, MA" - }, - { - "value": "WORCESTER_COUNTY_MA", - "label": "Worcester County, MA" - }, - { - "value": "ALLEGANY_COUNTY_MD", - "label": "Allegany County, MD" - }, - { - "value": "ANNE_ARUNDEL_COUNTY_MD", - "label": "Anne Arundel County, MD" - }, - { - "value": "BALTIMORE_COUNTY_MD", - "label": "Baltimore County, MD" - }, - { - "value": "BALTIMORE_CITY_MD", - "label": "Baltimore city, MD" - }, - { - "value": "CALVERT_COUNTY_MD", - "label": "Calvert County, MD" - }, - { - "value": "CAROLINE_COUNTY_MD", - "label": "Caroline County, MD" - }, - { - "value": "CARROLL_COUNTY_MD", - "label": "Carroll County, MD" - }, - { - "value": "CECIL_COUNTY_MD", - "label": "Cecil County, MD" - }, - { - "value": "CHARLES_COUNTY_MD", - "label": "Charles County, MD" - }, - { - "value": "DORCHESTER_COUNTY_MD", - "label": "Dorchester County, MD" - }, - { - "value": "FREDERICK_COUNTY_MD", - "label": "Frederick County, MD" - }, - { - "value": "GARRETT_COUNTY_MD", - "label": "Garrett County, MD" - }, - { - "value": "HARFORD_COUNTY_MD", - "label": "Harford County, MD" - }, - { - "value": "HOWARD_COUNTY_MD", - "label": "Howard County, MD" - }, - { - "value": "KENT_COUNTY_MD", - "label": "Kent County, MD" - }, - { - "value": "MONTGOMERY_COUNTY_MD", - "label": "Montgomery County, MD" - }, - { - "value": "NEW_CASTLE_COUNTY_MD", - "label": "New Castle County, MD" - }, - { - "value": "PRINCE_GEORGE_S_COUNTY_MD", - "label": "Prince George's County, MD" - }, - { - "value": "QUEEN_ANNE_S_COUNTY_MD", - "label": "Queen Anne's County, MD" - }, - { - "value": "SOMERSET_COUNTY_MD", - "label": "Somerset County, MD" - }, - { - "value": "ST_MARY_S_COUNTY_MD", - "label": "St. Mary's County, MD" - }, - { - "value": "TALBOT_COUNTY_MD", - "label": "Talbot County, MD" - }, - { - "value": "WASHINGTON_COUNTY_MD", - "label": "Washington County, MD" - }, - { - "value": "WICOMICO_COUNTY_MD", - "label": "Wicomico County, MD" - }, - { - "value": "WORCESTER_COUNTY_MD", - "label": "Worcester County, MD" - }, - { - "value": "ANDROSCOGGIN_COUNTY_ME", - "label": "Androscoggin County, ME" - }, - { - "value": "AROOSTOOK_COUNTY_ME", - "label": "Aroostook County, ME" - }, - { - "value": "CUMBERLAND_COUNTY_ME", - "label": "Cumberland County, ME" - }, - { - "value": "FRANKLIN_COUNTY_ME", - "label": "Franklin County, ME" - }, - { - "value": "HANCOCK_COUNTY_ME", - "label": "Hancock County, ME" - }, - { - "value": "KENNEBEC_COUNTY_ME", - "label": "Kennebec County, ME" - }, - { - "value": "KNOX_COUNTY_ME", - "label": "Knox County, ME" - }, - { - "value": "LINCOLN_COUNTY_ME", - "label": "Lincoln County, ME" - }, - { - "value": "OXFORD_COUNTY_ME", - "label": "Oxford County, ME" - }, - { - "value": "PENOBSCOT_COUNTY_ME", - "label": "Penobscot County, ME" - }, - { - "value": "PISCATAQUIS_COUNTY_ME", - "label": "Piscataquis County, ME" - }, - { - "value": "SAGADAHOC_COUNTY_ME", - "label": "Sagadahoc County, ME" - }, - { - "value": "SOMERSET_COUNTY_ME", - "label": "Somerset County, ME" - }, - { - "value": "WALDO_COUNTY_ME", - "label": "Waldo County, ME" - }, - { - "value": "WASHINGTON_COUNTY_ME", - "label": "Washington County, ME" - }, - { - "value": "YORK_COUNTY_ME", - "label": "York County, ME" - }, - { - "value": "ALCONA_COUNTY_MI", - "label": "Alcona County, MI" - }, - { - "value": "ALGER_COUNTY_MI", - "label": "Alger County, MI" - }, - { - "value": "ALLEGAN_COUNTY_MI", - "label": "Allegan County, MI" - }, - { - "value": "ALPENA_COUNTY_MI", - "label": "Alpena County, MI" - }, - { - "value": "ANTRIM_COUNTY_MI", - "label": "Antrim County, MI" - }, - { - "value": "ARENAC_COUNTY_MI", - "label": "Arenac County, MI" - }, - { - "value": "BARAGA_COUNTY_MI", - "label": "Baraga County, MI" - }, - { - "value": "BARRY_COUNTY_MI", - "label": "Barry County, MI" - }, - { - "value": "BAY_COUNTY_MI", - "label": "Bay County, MI" - }, - { - "value": "BENZIE_COUNTY_MI", - "label": "Benzie County, MI" - }, - { - "value": "BERRIEN_COUNTY_MI", - "label": "Berrien County, MI" - }, - { - "value": "BRANCH_COUNTY_MI", - "label": "Branch County, MI" - }, - { - "value": "CALHOUN_COUNTY_MI", - "label": "Calhoun County, MI" - }, - { - "value": "CASS_COUNTY_MI", - "label": "Cass County, MI" - }, - { - "value": "CHARLEVOIX_COUNTY_MI", - "label": "Charlevoix County, MI" - }, - { - "value": "CHEBOYGAN_COUNTY_MI", - "label": "Cheboygan County, MI" - }, - { - "value": "CHIPPEWA_COUNTY_MI", - "label": "Chippewa County, MI" - }, - { - "value": "CLARE_COUNTY_MI", - "label": "Clare County, MI" - }, - { - "value": "CLINTON_COUNTY_MI", - "label": "Clinton County, MI" - }, - { - "value": "CRAWFORD_COUNTY_MI", - "label": "Crawford County, MI" - }, - { - "value": "DELTA_COUNTY_MI", - "label": "Delta County, MI" - }, - { - "value": "DICKINSON_COUNTY_MI", - "label": "Dickinson County, MI" - }, - { - "value": "EATON_COUNTY_MI", - "label": "Eaton County, MI" - }, - { - "value": "EMMET_COUNTY_MI", - "label": "Emmet County, MI" - }, - { - "value": "GENESEE_COUNTY_MI", - "label": "Genesee County, MI" - }, - { - "value": "GLADWIN_COUNTY_MI", - "label": "Gladwin County, MI" - }, - { - "value": "GOGEBIC_COUNTY_MI", - "label": "Gogebic County, MI" - }, - { - "value": "GRAND_TRAVERSE_COUNTY_MI", - "label": "Grand Traverse County, MI" - }, - { - "value": "GRATIOT_COUNTY_MI", - "label": "Gratiot County, MI" - }, - { - "value": "HILLSDALE_COUNTY_MI", - "label": "Hillsdale County, MI" - }, - { - "value": "HOUGHTON_COUNTY_MI", - "label": "Houghton County, MI" - }, - { - "value": "HURON_COUNTY_MI", - "label": "Huron County, MI" - }, - { - "value": "INGHAM_COUNTY_MI", - "label": "Ingham County, MI" - }, - { - "value": "IONIA_COUNTY_MI", - "label": "Ionia County, MI" - }, - { - "value": "IOSCO_COUNTY_MI", - "label": "Iosco County, MI" - }, - { - "value": "IRON_COUNTY_MI", - "label": "Iron County, MI" - }, - { - "value": "ISABELLA_COUNTY_MI", - "label": "Isabella County, MI" - }, - { - "value": "JACKSON_COUNTY_MI", - "label": "Jackson County, MI" - }, - { - "value": "KALAMAZOO_COUNTY_MI", - "label": "Kalamazoo County, MI" - }, - { - "value": "KALKASKA_COUNTY_MI", - "label": "Kalkaska County, MI" - }, - { - "value": "KENT_COUNTY_MI", - "label": "Kent County, MI" - }, - { - "value": "KEWEENAW_COUNTY_MI", - "label": "Keweenaw County, MI" - }, - { - "value": "LAKE_COUNTY_MI", - "label": "Lake County, MI" - }, - { - "value": "LAPEER_COUNTY_MI", - "label": "Lapeer County, MI" - }, - { - "value": "LEELANAU_COUNTY_MI", - "label": "Leelanau County, MI" - }, - { - "value": "LENAWEE_COUNTY_MI", - "label": "Lenawee County, MI" - }, - { - "value": "LIVINGSTON_COUNTY_MI", - "label": "Livingston County, MI" - }, - { - "value": "LUCE_COUNTY_MI", - "label": "Luce County, MI" - }, - { - "value": "MACKINAC_COUNTY_MI", - "label": "Mackinac County, MI" - }, - { - "value": "MACOMB_COUNTY_MI", - "label": "Macomb County, MI" - }, - { - "value": "MANISTEE_COUNTY_MI", - "label": "Manistee County, MI" - }, - { - "value": "MARQUETTE_COUNTY_MI", - "label": "Marquette County, MI" - }, - { - "value": "MASON_COUNTY_MI", - "label": "Mason County, MI" - }, - { - "value": "MECOSTA_COUNTY_MI", - "label": "Mecosta County, MI" - }, - { - "value": "MENOMINEE_COUNTY_MI", - "label": "Menominee County, MI" - }, - { - "value": "MIDLAND_COUNTY_MI", - "label": "Midland County, MI" - }, - { - "value": "MISSAUKEE_COUNTY_MI", - "label": "Missaukee County, MI" - }, - { - "value": "MONROE_COUNTY_MI", - "label": "Monroe County, MI" - }, - { - "value": "MONTCALM_COUNTY_MI", - "label": "Montcalm County, MI" - }, - { - "value": "MONTMORENCY_COUNTY_MI", - "label": "Montmorency County, MI" - }, - { - "value": "MUSKEGON_COUNTY_MI", - "label": "Muskegon County, MI" - }, - { - "value": "NEWAYGO_COUNTY_MI", - "label": "Newaygo County, MI" - }, - { - "value": "OAKLAND_COUNTY_MI", - "label": "Oakland County, MI" - }, - { - "value": "OCEANA_COUNTY_MI", - "label": "Oceana County, MI" - }, - { - "value": "OGEMAW_COUNTY_MI", - "label": "Ogemaw County, MI" - }, - { - "value": "ONTONAGON_COUNTY_MI", - "label": "Ontonagon County, MI" - }, - { - "value": "OSCEOLA_COUNTY_MI", - "label": "Osceola County, MI" - }, - { - "value": "OSCODA_COUNTY_MI", - "label": "Oscoda County, MI" - }, - { - "value": "OTSEGO_COUNTY_MI", - "label": "Otsego County, MI" - }, - { - "value": "OTTAWA_COUNTY_MI", - "label": "Ottawa County, MI" - }, - { - "value": "PRESQUE_ISLE_COUNTY_MI", - "label": "Presque Isle County, MI" - }, - { - "value": "ROSCOMMON_COUNTY_MI", - "label": "Roscommon County, MI" - }, - { - "value": "SAGINAW_COUNTY_MI", - "label": "Saginaw County, MI" - }, - { - "value": "SANILAC_COUNTY_MI", - "label": "Sanilac County, MI" - }, - { - "value": "SCHOOLCRAFT_COUNTY_MI", - "label": "Schoolcraft County, MI" - }, - { - "value": "SHIAWASSEE_COUNTY_MI", - "label": "Shiawassee County, MI" - }, - { - "value": "ST_CLAIR_COUNTY_MI", - "label": "St. Clair County, MI" - }, - { - "value": "ST_JOSEPH_COUNTY_MI", - "label": "St. Joseph County, MI" - }, - { - "value": "TUSCOLA_COUNTY_MI", - "label": "Tuscola County, MI" - }, - { - "value": "VAN_BUREN_COUNTY_MI", - "label": "Van Buren County, MI" - }, - { - "value": "WASHTENAW_COUNTY_MI", - "label": "Washtenaw County, MI" - }, - { - "value": "WAYNE_COUNTY_MI", - "label": "Wayne County, MI" - }, - { - "value": "WEXFORD_COUNTY_MI", - "label": "Wexford County, MI" - }, - { - "value": "AITKIN_COUNTY_MN", - "label": "Aitkin County, MN" - }, - { - "value": "ANOKA_COUNTY_MN", - "label": "Anoka County, MN" - }, - { - "value": "BECKER_COUNTY_MN", - "label": "Becker County, MN" - }, - { - "value": "BELTRAMI_COUNTY_MN", - "label": "Beltrami County, MN" - }, - { - "value": "BENTON_COUNTY_MN", - "label": "Benton County, MN" - }, - { - "value": "BIG_STONE_COUNTY_MN", - "label": "Big Stone County, MN" - }, - { - "value": "BLUE_EARTH_COUNTY_MN", - "label": "Blue Earth County, MN" - }, - { - "value": "BROWN_COUNTY_MN", - "label": "Brown County, MN" - }, - { - "value": "CARLTON_COUNTY_MN", - "label": "Carlton County, MN" - }, - { - "value": "CARVER_COUNTY_MN", - "label": "Carver County, MN" - }, - { - "value": "CASS_COUNTY_MN", - "label": "Cass County, MN" - }, - { - "value": "CHIPPEWA_COUNTY_MN", - "label": "Chippewa County, MN" - }, - { - "value": "CHISAGO_COUNTY_MN", - "label": "Chisago County, MN" - }, - { - "value": "CLAY_COUNTY_MN", - "label": "Clay County, MN" - }, - { - "value": "CLEARWATER_COUNTY_MN", - "label": "Clearwater County, MN" - }, - { - "value": "COOK_COUNTY_MN", - "label": "Cook County, MN" - }, - { - "value": "COTTONWOOD_COUNTY_MN", - "label": "Cottonwood County, MN" - }, - { - "value": "CROW_WING_COUNTY_MN", - "label": "Crow Wing County, MN" - }, - { - "value": "DAKOTA_COUNTY_MN", - "label": "Dakota County, MN" - }, - { - "value": "DODGE_COUNTY_MN", - "label": "Dodge County, MN" - }, - { - "value": "DOUGLAS_COUNTY_MN", - "label": "Douglas County, MN" - }, - { - "value": "FARIBAULT_COUNTY_MN", - "label": "Faribault County, MN" - }, - { - "value": "FILLMORE_COUNTY_MN", - "label": "Fillmore County, MN" - }, - { - "value": "FREEBORN_COUNTY_MN", - "label": "Freeborn County, MN" - }, - { - "value": "GOODHUE_COUNTY_MN", - "label": "Goodhue County, MN" - }, - { - "value": "GRANT_COUNTY_MN", - "label": "Grant County, MN" - }, - { - "value": "HENNEPIN_COUNTY_MN", - "label": "Hennepin County, MN" - }, - { - "value": "HOUSTON_COUNTY_MN", - "label": "Houston County, MN" - }, - { - "value": "HUBBARD_COUNTY_MN", - "label": "Hubbard County, MN" - }, - { - "value": "ISANTI_COUNTY_MN", - "label": "Isanti County, MN" - }, - { - "value": "ITASCA_COUNTY_MN", - "label": "Itasca County, MN" - }, - { - "value": "JACKSON_COUNTY_MN", - "label": "Jackson County, MN" - }, - { - "value": "KANABEC_COUNTY_MN", - "label": "Kanabec County, MN" - }, - { - "value": "KANDIYOHI_COUNTY_MN", - "label": "Kandiyohi County, MN" - }, - { - "value": "KITTSON_COUNTY_MN", - "label": "Kittson County, MN" - }, - { - "value": "KOOCHICHING_COUNTY_MN", - "label": "Koochiching County, MN" - }, - { - "value": "KOSSUTH_COUNTY_MN", - "label": "Kossuth County, MN" - }, - { - "value": "LAC_QUI_PARLE_COUNTY_MN", - "label": "Lac qui Parle County, MN" - }, - { - "value": "LAKE_COUNTY_MN", - "label": "Lake County, MN" - }, - { - "value": "LAKE_OF_THE_WOODS_COUNTY_MN", - "label": "Lake of the Woods County, MN" - }, - { - "value": "LE_SUEUR_COUNTY_MN", - "label": "Le Sueur County, MN" - }, - { - "value": "LINCOLN_COUNTY_MN", - "label": "Lincoln County, MN" - }, - { - "value": "LYON_COUNTY_MN", - "label": "Lyon County, MN" - }, - { - "value": "MAHNOMEN_COUNTY_MN", - "label": "Mahnomen County, MN" - }, - { - "value": "MARSHALL_COUNTY_MN", - "label": "Marshall County, MN" - }, - { - "value": "MARTIN_COUNTY_MN", - "label": "Martin County, MN" - }, - { - "value": "MCLEOD_COUNTY_MN", - "label": "McLeod County, MN" - }, - { - "value": "MEEKER_COUNTY_MN", - "label": "Meeker County, MN" - }, - { - "value": "MILLE_LACS_COUNTY_MN", - "label": "Mille Lacs County, MN" - }, - { - "value": "MORRISON_COUNTY_MN", - "label": "Morrison County, MN" - }, - { - "value": "MOWER_COUNTY_MN", - "label": "Mower County, MN" - }, - { - "value": "MURRAY_COUNTY_MN", - "label": "Murray County, MN" - }, - { - "value": "NICOLLET_COUNTY_MN", - "label": "Nicollet County, MN" - }, - { - "value": "NOBLES_COUNTY_MN", - "label": "Nobles County, MN" - }, - { - "value": "NORMAN_COUNTY_MN", - "label": "Norman County, MN" - }, - { - "value": "OLMSTED_COUNTY_MN", - "label": "Olmsted County, MN" - }, - { - "value": "OTTER_TAIL_COUNTY_MN", - "label": "Otter Tail County, MN" - }, - { - "value": "PENNINGTON_COUNTY_MN", - "label": "Pennington County, MN" - }, - { - "value": "PINE_COUNTY_MN", - "label": "Pine County, MN" - }, - { - "value": "PIPESTONE_COUNTY_MN", - "label": "Pipestone County, MN" - }, - { - "value": "POLK_COUNTY_MN", - "label": "Polk County, MN" - }, - { - "value": "POPE_COUNTY_MN", - "label": "Pope County, MN" - }, - { - "value": "RAMSEY_COUNTY_MN", - "label": "Ramsey County, MN" - }, - { - "value": "RED_LAKE_COUNTY_MN", - "label": "Red Lake County, MN" - }, - { - "value": "REDWOOD_COUNTY_MN", - "label": "Redwood County, MN" - }, - { - "value": "RENVILLE_COUNTY_MN", - "label": "Renville County, MN" - }, - { - "value": "RICE_COUNTY_MN", - "label": "Rice County, MN" - }, - { - "value": "ROBERTS_COUNTY_MN", - "label": "Roberts County, MN" - }, - { - "value": "ROCK_COUNTY_MN", - "label": "Rock County, MN" - }, - { - "value": "ROSEAU_COUNTY_MN", - "label": "Roseau County, MN" - }, - { - "value": "SCOTT_COUNTY_MN", - "label": "Scott County, MN" - }, - { - "value": "SHERBURNE_COUNTY_MN", - "label": "Sherburne County, MN" - }, - { - "value": "SIBLEY_COUNTY_MN", - "label": "Sibley County, MN" - }, - { - "value": "ST_LOUIS_COUNTY_MN", - "label": "St. Louis County, MN" - }, - { - "value": "STEARNS_COUNTY_MN", - "label": "Stearns County, MN" - }, - { - "value": "STEELE_COUNTY_MN", - "label": "Steele County, MN" - }, - { - "value": "STEVENS_COUNTY_MN", - "label": "Stevens County, MN" - }, - { - "value": "SWIFT_COUNTY_MN", - "label": "Swift County, MN" - }, - { - "value": "TODD_COUNTY_MN", - "label": "Todd County, MN" - }, - { - "value": "TRAVERSE_COUNTY_MN", - "label": "Traverse County, MN" - }, - { - "value": "WABASHA_COUNTY_MN", - "label": "Wabasha County, MN" - }, - { - "value": "WADENA_COUNTY_MN", - "label": "Wadena County, MN" - }, - { - "value": "WASECA_COUNTY_MN", - "label": "Waseca County, MN" - }, - { - "value": "WASHINGTON_COUNTY_MN", - "label": "Washington County, MN" - }, - { - "value": "WATONWAN_COUNTY_MN", - "label": "Watonwan County, MN" - }, - { - "value": "WILKIN_COUNTY_MN", - "label": "Wilkin County, MN" - }, - { - "value": "WINONA_COUNTY_MN", - "label": "Winona County, MN" - }, - { - "value": "WRIGHT_COUNTY_MN", - "label": "Wright County, MN" - }, - { - "value": "YELLOW_MEDICINE_COUNTY_MN", - "label": "Yellow Medicine County, MN" - }, - { - "value": "ADAIR_COUNTY_MO", - "label": "Adair County, MO" - }, - { - "value": "ANDREW_COUNTY_MO", - "label": "Andrew County, MO" - }, - { - "value": "ATCHISON_COUNTY_MO", - "label": "Atchison County, MO" - }, - { - "value": "AUDRAIN_COUNTY_MO", - "label": "Audrain County, MO" - }, - { - "value": "BARRY_COUNTY_MO", - "label": "Barry County, MO" - }, - { - "value": "BARTON_COUNTY_MO", - "label": "Barton County, MO" - }, - { - "value": "BATES_COUNTY_MO", - "label": "Bates County, MO" - }, - { - "value": "BENTON_COUNTY_MO", - "label": "Benton County, MO" - }, - { - "value": "BOLLINGER_COUNTY_MO", - "label": "Bollinger County, MO" - }, - { - "value": "BOONE_COUNTY_MO", - "label": "Boone County, MO" - }, - { - "value": "BUCHANAN_COUNTY_MO", - "label": "Buchanan County, MO" - }, - { - "value": "BUTLER_COUNTY_MO", - "label": "Butler County, MO" - }, - { - "value": "CALDWELL_COUNTY_MO", - "label": "Caldwell County, MO" - }, - { - "value": "CALLAWAY_COUNTY_MO", - "label": "Callaway County, MO" - }, - { - "value": "CAMDEN_COUNTY_MO", - "label": "Camden County, MO" - }, - { - "value": "CAPE_GIRARDEAU_COUNTY_MO", - "label": "Cape Girardeau County, MO" - }, - { - "value": "CARROLL_COUNTY_MO", - "label": "Carroll County, MO" - }, - { - "value": "CARTER_COUNTY_MO", - "label": "Carter County, MO" - }, - { - "value": "CASS_COUNTY_MO", - "label": "Cass County, MO" - }, - { - "value": "CEDAR_COUNTY_MO", - "label": "Cedar County, MO" - }, - { - "value": "CHARITON_COUNTY_MO", - "label": "Chariton County, MO" - }, - { - "value": "CHRISTIAN_COUNTY_MO", - "label": "Christian County, MO" - }, - { - "value": "CLARK_COUNTY_MO", - "label": "Clark County, MO" - }, - { - "value": "CLAY_COUNTY_MO", - "label": "Clay County, MO" - }, - { - "value": "CLINTON_COUNTY_MO", - "label": "Clinton County, MO" - }, - { - "value": "COLE_COUNTY_MO", - "label": "Cole County, MO" - }, - { - "value": "COOPER_COUNTY_MO", - "label": "Cooper County, MO" - }, - { - "value": "CRAWFORD_COUNTY_MO", - "label": "Crawford County, MO" - }, - { - "value": "DADE_COUNTY_MO", - "label": "Dade County, MO" - }, - { - "value": "DALLAS_COUNTY_MO", - "label": "Dallas County, MO" - }, - { - "value": "DAVIESS_COUNTY_MO", - "label": "Daviess County, MO" - }, - { - "value": "DEKALB_COUNTY_MO", - "label": "DeKalb County, MO" - }, - { - "value": "DENT_COUNTY_MO", - "label": "Dent County, MO" - }, - { - "value": "DOUGLAS_COUNTY_MO", - "label": "Douglas County, MO" - }, - { - "value": "DUNKLIN_COUNTY_MO", - "label": "Dunklin County, MO" - }, - { - "value": "FRANKLIN_COUNTY_MO", - "label": "Franklin County, MO" - }, - { - "value": "GASCONADE_COUNTY_MO", - "label": "Gasconade County, MO" - }, - { - "value": "GENTRY_COUNTY_MO", - "label": "Gentry County, MO" - }, - { - "value": "GREENE_COUNTY_MO", - "label": "Greene County, MO" - }, - { - "value": "GRUNDY_COUNTY_MO", - "label": "Grundy County, MO" - }, - { - "value": "HARRISON_COUNTY_MO", - "label": "Harrison County, MO" - }, - { - "value": "HENRY_COUNTY_MO", - "label": "Henry County, MO" - }, - { - "value": "HICKORY_COUNTY_MO", - "label": "Hickory County, MO" - }, - { - "value": "HOLT_COUNTY_MO", - "label": "Holt County, MO" - }, - { - "value": "HOWARD_COUNTY_MO", - "label": "Howard County, MO" - }, - { - "value": "HOWELL_COUNTY_MO", - "label": "Howell County, MO" - }, - { - "value": "IRON_COUNTY_MO", - "label": "Iron County, MO" - }, - { - "value": "JACKSON_COUNTY_MO", - "label": "Jackson County, MO" - }, - { - "value": "JASPER_COUNTY_MO", - "label": "Jasper County, MO" - }, - { - "value": "JEFFERSON_COUNTY_MO", - "label": "Jefferson County, MO" - }, - { - "value": "JOHNSON_COUNTY_MO", - "label": "Johnson County, MO" - }, - { - "value": "KNOX_COUNTY_MO", - "label": "Knox County, MO" - }, - { - "value": "LACLEDE_COUNTY_MO", - "label": "Laclede County, MO" - }, - { - "value": "LAFAYETTE_COUNTY_MO", - "label": "Lafayette County, MO" - }, - { - "value": "LAWRENCE_COUNTY_MO", - "label": "Lawrence County, MO" - }, - { - "value": "LEWIS_COUNTY_MO", - "label": "Lewis County, MO" - }, - { - "value": "LINCOLN_COUNTY_MO", - "label": "Lincoln County, MO" - }, - { - "value": "LINN_COUNTY_MO", - "label": "Linn County, MO" - }, - { - "value": "LIVINGSTON_COUNTY_MO", - "label": "Livingston County, MO" - }, - { - "value": "MACON_COUNTY_MO", - "label": "Macon County, MO" - }, - { - "value": "MADISON_COUNTY_MO", - "label": "Madison County, MO" - }, - { - "value": "MARIES_COUNTY_MO", - "label": "Maries County, MO" - }, - { - "value": "MARION_COUNTY_MO", - "label": "Marion County, MO" - }, - { - "value": "MCDONALD_COUNTY_MO", - "label": "McDonald County, MO" - }, - { - "value": "MERCER_COUNTY_MO", - "label": "Mercer County, MO" - }, - { - "value": "MILLER_COUNTY_MO", - "label": "Miller County, MO" - }, - { - "value": "MISSISSIPPI_COUNTY_MO", - "label": "Mississippi County, MO" - }, - { - "value": "MONITEAU_COUNTY_MO", - "label": "Moniteau County, MO" - }, - { - "value": "MONROE_COUNTY_MO", - "label": "Monroe County, MO" - }, - { - "value": "MONTGOMERY_COUNTY_MO", - "label": "Montgomery County, MO" - }, - { - "value": "MORGAN_COUNTY_MO", - "label": "Morgan County, MO" - }, - { - "value": "NEW_MADRID_COUNTY_MO", - "label": "New Madrid County, MO" - }, - { - "value": "NEWTON_COUNTY_MO", - "label": "Newton County, MO" - }, - { - "value": "NODAWAY_COUNTY_MO", - "label": "Nodaway County, MO" - }, - { - "value": "OREGON_COUNTY_MO", - "label": "Oregon County, MO" - }, - { - "value": "OSAGE_COUNTY_MO", - "label": "Osage County, MO" - }, - { - "value": "OZARK_COUNTY_MO", - "label": "Ozark County, MO" - }, - { - "value": "PEMISCOT_COUNTY_MO", - "label": "Pemiscot County, MO" - }, - { - "value": "PERRY_COUNTY_MO", - "label": "Perry County, MO" - }, - { - "value": "PETTIS_COUNTY_MO", - "label": "Pettis County, MO" - }, - { - "value": "PHELPS_COUNTY_MO", - "label": "Phelps County, MO" - }, - { - "value": "PIKE_COUNTY_MO", - "label": "Pike County, MO" - }, - { - "value": "PLATTE_COUNTY_MO", - "label": "Platte County, MO" - }, - { - "value": "POLK_COUNTY_MO", - "label": "Polk County, MO" - }, - { - "value": "PULASKI_COUNTY_MO", - "label": "Pulaski County, MO" - }, - { - "value": "PUTNAM_COUNTY_MO", - "label": "Putnam County, MO" - }, - { - "value": "RALLS_COUNTY_MO", - "label": "Ralls County, MO" - }, - { - "value": "RANDOLPH_COUNTY_MO", - "label": "Randolph County, MO" - }, - { - "value": "RAY_COUNTY_MO", - "label": "Ray County, MO" - }, - { - "value": "REYNOLDS_COUNTY_MO", - "label": "Reynolds County, MO" - }, - { - "value": "RIPLEY_COUNTY_MO", - "label": "Ripley County, MO" - }, - { - "value": "SALINE_COUNTY_MO", - "label": "Saline County, MO" - }, - { - "value": "SCHUYLER_COUNTY_MO", - "label": "Schuyler County, MO" - }, - { - "value": "SCOTLAND_COUNTY_MO", - "label": "Scotland County, MO" - }, - { - "value": "SCOTT_COUNTY_MO", - "label": "Scott County, MO" - }, - { - "value": "SHANNON_COUNTY_MO", - "label": "Shannon County, MO" - }, - { - "value": "SHELBY_COUNTY_MO", - "label": "Shelby County, MO" - }, - { - "value": "ST_CHARLES_COUNTY_MO", - "label": "St. Charles County, MO" - }, - { - "value": "ST_CLAIR_COUNTY_MO", - "label": "St. Clair County, MO" - }, - { - "value": "ST_FRANCOIS_COUNTY_MO", - "label": "St. Francois County, MO" - }, - { - "value": "ST_LOUIS_COUNTY_MO", - "label": "St. Louis County, MO" - }, - { - "value": "ST_LOUIS_CITY_MO", - "label": "St. Louis city, MO" - }, - { - "value": "STE_GENEVIEVE_COUNTY_MO", - "label": "Ste. Genevieve County, MO" - }, - { - "value": "STODDARD_COUNTY_MO", - "label": "Stoddard County, MO" - }, - { - "value": "STONE_COUNTY_MO", - "label": "Stone County, MO" - }, - { - "value": "SULLIVAN_COUNTY_MO", - "label": "Sullivan County, MO" - }, - { - "value": "TANEY_COUNTY_MO", - "label": "Taney County, MO" - }, - { - "value": "TEXAS_COUNTY_MO", - "label": "Texas County, MO" - }, - { - "value": "VERNON_COUNTY_MO", - "label": "Vernon County, MO" - }, - { - "value": "WARREN_COUNTY_MO", - "label": "Warren County, MO" - }, - { - "value": "WASHINGTON_COUNTY_MO", - "label": "Washington County, MO" - }, - { - "value": "WAYNE_COUNTY_MO", - "label": "Wayne County, MO" - }, - { - "value": "WEBSTER_COUNTY_MO", - "label": "Webster County, MO" - }, - { - "value": "WORTH_COUNTY_MO", - "label": "Worth County, MO" - }, - { - "value": "WRIGHT_COUNTY_MO", - "label": "Wright County, MO" - }, - { - "value": "ALCORN_COUNTY_MS", - "label": "Alcorn County, MS" - }, - { - "value": "AMITE_COUNTY_MS", - "label": "Amite County, MS" - }, - { - "value": "ATTALA_COUNTY_MS", - "label": "Attala County, MS" - }, - { - "value": "BENTON_COUNTY_MS", - "label": "Benton County, MS" - }, - { - "value": "BOLIVAR_COUNTY_MS", - "label": "Bolivar County, MS" - }, - { - "value": "CALHOUN_COUNTY_MS", - "label": "Calhoun County, MS" - }, - { - "value": "CARROLL_COUNTY_MS", - "label": "Carroll County, MS" - }, - { - "value": "CHICKASAW_COUNTY_MS", - "label": "Chickasaw County, MS" - }, - { - "value": "CLAIBORNE_COUNTY_MS", - "label": "Claiborne County, MS" - }, - { - "value": "CLARKE_COUNTY_MS", - "label": "Clarke County, MS" - }, - { - "value": "CLAY_COUNTY_MS", - "label": "Clay County, MS" - }, - { - "value": "COAHOMA_COUNTY_MS", - "label": "Coahoma County, MS" - }, - { - "value": "COLBERT_COUNTY_MS", - "label": "Colbert County, MS" - }, - { - "value": "COPIAH_COUNTY_MS", - "label": "Copiah County, MS" - }, - { - "value": "COVINGTON_COUNTY_MS", - "label": "Covington County, MS" - }, - { - "value": "DESOTO_COUNTY_MS", - "label": "DeSoto County, MS" - }, - { - "value": "DESHA_COUNTY_MS", - "label": "Desha County, MS" - }, - { - "value": "FORREST_COUNTY_MS", - "label": "Forrest County, MS" - }, - { - "value": "FRANKLIN_COUNTY_MS", - "label": "Franklin County, MS" - }, - { - "value": "GEORGE_COUNTY_MS", - "label": "George County, MS" - }, - { - "value": "GREENE_COUNTY_MS", - "label": "Greene County, MS" - }, - { - "value": "GRENADA_COUNTY_MS", - "label": "Grenada County, MS" - }, - { - "value": "HANCOCK_COUNTY_MS", - "label": "Hancock County, MS" - }, - { - "value": "HARRISON_COUNTY_MS", - "label": "Harrison County, MS" - }, - { - "value": "HINDS_COUNTY_MS", - "label": "Hinds County, MS" - }, - { - "value": "HOLMES_COUNTY_MS", - "label": "Holmes County, MS" - }, - { - "value": "HUMPHREYS_COUNTY_MS", - "label": "Humphreys County, MS" - }, - { - "value": "ISSAQUENA_COUNTY_MS", - "label": "Issaquena County, MS" - }, - { - "value": "ITAWAMBA_COUNTY_MS", - "label": "Itawamba County, MS" - }, - { - "value": "JACKSON_COUNTY_MS", - "label": "Jackson County, MS" - }, - { - "value": "JASPER_COUNTY_MS", - "label": "Jasper County, MS" - }, - { - "value": "JEFFERSON_COUNTY_MS", - "label": "Jefferson County, MS" - }, - { - "value": "JEFFERSON_DAVIS_COUNTY_MS", - "label": "Jefferson Davis County, MS" - }, - { - "value": "JONES_COUNTY_MS", - "label": "Jones County, MS" - }, - { - "value": "KEMPER_COUNTY_MS", - "label": "Kemper County, MS" - }, - { - "value": "LAFAYETTE_COUNTY_MS", - "label": "Lafayette County, MS" - }, - { - "value": "LAMAR_COUNTY_MS", - "label": "Lamar County, MS" - }, - { - "value": "LAUDERDALE_COUNTY_MS", - "label": "Lauderdale County, MS" - }, - { - "value": "LAWRENCE_COUNTY_MS", - "label": "Lawrence County, MS" - }, - { - "value": "LEAKE_COUNTY_MS", - "label": "Leake County, MS" - }, - { - "value": "LEE_COUNTY_MS", - "label": "Lee County, MS" - }, - { - "value": "LEFLORE_COUNTY_MS", - "label": "Leflore County, MS" - }, - { - "value": "LINCOLN_COUNTY_MS", - "label": "Lincoln County, MS" - }, - { - "value": "LOWNDES_COUNTY_MS", - "label": "Lowndes County, MS" - }, - { - "value": "MADISON_COUNTY_MS", - "label": "Madison County, MS" - }, - { - "value": "MARION_COUNTY_MS", - "label": "Marion County, MS" - }, - { - "value": "MARSHALL_COUNTY_MS", - "label": "Marshall County, MS" - }, - { - "value": "MONROE_COUNTY_MS", - "label": "Monroe County, MS" - }, - { - "value": "MONTGOMERY_COUNTY_MS", - "label": "Montgomery County, MS" - }, - { - "value": "NEWTON_COUNTY_MS", - "label": "Newton County, MS" - }, - { - "value": "NOXUBEE_COUNTY_MS", - "label": "Noxubee County, MS" - }, - { - "value": "OKTIBBEHA_COUNTY_MS", - "label": "Oktibbeha County, MS" - }, - { - "value": "PANOLA_COUNTY_MS", - "label": "Panola County, MS" - }, - { - "value": "PEARL_RIVER_COUNTY_MS", - "label": "Pearl River County, MS" - }, - { - "value": "PERRY_COUNTY_MS", - "label": "Perry County, MS" - }, - { - "value": "PIKE_COUNTY_MS", - "label": "Pike County, MS" - }, - { - "value": "PONTOTOC_COUNTY_MS", - "label": "Pontotoc County, MS" - }, - { - "value": "PRENTISS_COUNTY_MS", - "label": "Prentiss County, MS" - }, - { - "value": "QUITMAN_COUNTY_MS", - "label": "Quitman County, MS" - }, - { - "value": "RANKIN_COUNTY_MS", - "label": "Rankin County, MS" - }, - { - "value": "SCOTT_COUNTY_MS", - "label": "Scott County, MS" - }, - { - "value": "SHARKEY_COUNTY_MS", - "label": "Sharkey County, MS" - }, - { - "value": "SIMPSON_COUNTY_MS", - "label": "Simpson County, MS" - }, - { - "value": "SMITH_COUNTY_MS", - "label": "Smith County, MS" - }, - { - "value": "STONE_COUNTY_MS", - "label": "Stone County, MS" - }, - { - "value": "SUNFLOWER_COUNTY_MS", - "label": "Sunflower County, MS" - }, - { - "value": "TALLAHATCHIE_COUNTY_MS", - "label": "Tallahatchie County, MS" - }, - { - "value": "TATE_COUNTY_MS", - "label": "Tate County, MS" - }, - { - "value": "TIPPAH_COUNTY_MS", - "label": "Tippah County, MS" - }, - { - "value": "TISHOMINGO_COUNTY_MS", - "label": "Tishomingo County, MS" - }, - { - "value": "TUNICA_COUNTY_MS", - "label": "Tunica County, MS" - }, - { - "value": "UNION_COUNTY_MS", - "label": "Union County, MS" - }, - { - "value": "WARREN_COUNTY_MS", - "label": "Warren County, MS" - }, - { - "value": "WASHINGTON_COUNTY_MS", - "label": "Washington County, MS" - }, - { - "value": "WAYNE_COUNTY_MS", - "label": "Wayne County, MS" - }, - { - "value": "WEBSTER_COUNTY_MS", - "label": "Webster County, MS" - }, - { - "value": "WILKINSON_COUNTY_MS", - "label": "Wilkinson County, MS" - }, - { - "value": "WINSTON_COUNTY_MS", - "label": "Winston County, MS" - }, - { - "value": "YALOBUSHA_COUNTY_MS", - "label": "Yalobusha County, MS" - }, - { - "value": "YAZOO_COUNTY_MS", - "label": "Yazoo County, MS" - }, - { - "value": "BEAVERHEAD_COUNTY_MT", - "label": "Beaverhead County, MT" - }, - { - "value": "BIG_HORN_COUNTY_MT", - "label": "Big Horn County, MT" - }, - { - "value": "BLAINE_COUNTY_MT", - "label": "Blaine County, MT" - }, - { - "value": "BROADWATER_COUNTY_MT", - "label": "Broadwater County, MT" - }, - { - "value": "CARBON_COUNTY_MT", - "label": "Carbon County, MT" - }, - { - "value": "CARTER_COUNTY_MT", - "label": "Carter County, MT" - }, - { - "value": "CASCADE_COUNTY_MT", - "label": "Cascade County, MT" - }, - { - "value": "CHOUTEAU_COUNTY_MT", - "label": "Chouteau County, MT" - }, - { - "value": "CUSTER_COUNTY_MT", - "label": "Custer County, MT" - }, - { - "value": "DANIELS_COUNTY_MT", - "label": "Daniels County, MT" - }, - { - "value": "DAWSON_COUNTY_MT", - "label": "Dawson County, MT" - }, - { - "value": "DEER_LODGE_COUNTY_MT", - "label": "Deer Lodge County, MT" - }, - { - "value": "FALLON_COUNTY_MT", - "label": "Fallon County, MT" - }, - { - "value": "FERGUS_COUNTY_MT", - "label": "Fergus County, MT" - }, - { - "value": "FLATHEAD_COUNTY_MT", - "label": "Flathead County, MT" - }, - { - "value": "GALLATIN_COUNTY_MT", - "label": "Gallatin County, MT" - }, - { - "value": "GARFIELD_COUNTY_MT", - "label": "Garfield County, MT" - }, - { - "value": "GLACIER_COUNTY_MT", - "label": "Glacier County, MT" - }, - { - "value": "GOLDEN_VALLEY_COUNTY_MT", - "label": "Golden Valley County, MT" - }, - { - "value": "GRANITE_COUNTY_MT", - "label": "Granite County, MT" - }, - { - "value": "HILL_COUNTY_MT", - "label": "Hill County, MT" - }, - { - "value": "JEFFERSON_COUNTY_MT", - "label": "Jefferson County, MT" - }, - { - "value": "JUDITH_BASIN_COUNTY_MT", - "label": "Judith Basin County, MT" - }, - { - "value": "LAKE_COUNTY_MT", - "label": "Lake County, MT" - }, - { - "value": "LEWIS_AND_CLARK_COUNTY_MT", - "label": "Lewis and Clark County, MT" - }, - { - "value": "LIBERTY_COUNTY_MT", - "label": "Liberty County, MT" - }, - { - "value": "LINCOLN_COUNTY_MT", - "label": "Lincoln County, MT" - }, - { - "value": "MADISON_COUNTY_MT", - "label": "Madison County, MT" - }, - { - "value": "MCCONE_COUNTY_MT", - "label": "McCone County, MT" - }, - { - "value": "MCKENZIE_COUNTY_MT", - "label": "McKenzie County, MT" - }, - { - "value": "MEAGHER_COUNTY_MT", - "label": "Meagher County, MT" - }, - { - "value": "MINERAL_COUNTY_MT", - "label": "Mineral County, MT" - }, - { - "value": "MISSOULA_COUNTY_MT", - "label": "Missoula County, MT" - }, - { - "value": "MUSSELSHELL_COUNTY_MT", - "label": "Musselshell County, MT" - }, - { - "value": "PARK_COUNTY_MT", - "label": "Park County, MT" - }, - { - "value": "PETROLEUM_COUNTY_MT", - "label": "Petroleum County, MT" - }, - { - "value": "PHILLIPS_COUNTY_MT", - "label": "Phillips County, MT" - }, - { - "value": "PONDERA_COUNTY_MT", - "label": "Pondera County, MT" - }, - { - "value": "POWDER_RIVER_COUNTY_MT", - "label": "Powder River County, MT" - }, - { - "value": "POWELL_COUNTY_MT", - "label": "Powell County, MT" - }, - { - "value": "PRAIRIE_COUNTY_MT", - "label": "Prairie County, MT" - }, - { - "value": "RAVALLI_COUNTY_MT", - "label": "Ravalli County, MT" - }, - { - "value": "RICHLAND_COUNTY_MT", - "label": "Richland County, MT" - }, - { - "value": "ROOSEVELT_COUNTY_MT", - "label": "Roosevelt County, MT" - }, - { - "value": "ROSEBUD_COUNTY_MT", - "label": "Rosebud County, MT" - }, - { - "value": "SANDERS_COUNTY_MT", - "label": "Sanders County, MT" - }, - { - "value": "SHERIDAN_COUNTY_MT", - "label": "Sheridan County, MT" - }, - { - "value": "SILVER_BOW_COUNTY_MT", - "label": "Silver Bow County, MT" - }, - { - "value": "STILLWATER_COUNTY_MT", - "label": "Stillwater County, MT" - }, - { - "value": "SWEET_GRASS_COUNTY_MT", - "label": "Sweet Grass County, MT" - }, - { - "value": "TETON_COUNTY_MT", - "label": "Teton County, MT" - }, - { - "value": "TOOLE_COUNTY_MT", - "label": "Toole County, MT" - }, - { - "value": "TREASURE_COUNTY_MT", - "label": "Treasure County, MT" - }, - { - "value": "VALLEY_COUNTY_MT", - "label": "Valley County, MT" - }, - { - "value": "WHEATLAND_COUNTY_MT", - "label": "Wheatland County, MT" - }, - { - "value": "WIBAUX_COUNTY_MT", - "label": "Wibaux County, MT" - }, - { - "value": "YELLOWSTONE_COUNTY_MT", - "label": "Yellowstone County, MT" - }, - { - "value": "ALAMANCE_COUNTY_NC", - "label": "Alamance County, NC" - }, - { - "value": "ALEXANDER_COUNTY_NC", - "label": "Alexander County, NC" - }, - { - "value": "ALLEGHANY_COUNTY_NC", - "label": "Alleghany County, NC" - }, - { - "value": "ANSON_COUNTY_NC", - "label": "Anson County, NC" - }, - { - "value": "ASHE_COUNTY_NC", - "label": "Ashe County, NC" - }, - { - "value": "AVERY_COUNTY_NC", - "label": "Avery County, NC" - }, - { - "value": "BEAUFORT_COUNTY_NC", - "label": "Beaufort County, NC" - }, - { - "value": "BERTIE_COUNTY_NC", - "label": "Bertie County, NC" - }, - { - "value": "BLADEN_COUNTY_NC", - "label": "Bladen County, NC" - }, - { - "value": "BRUNSWICK_COUNTY_NC", - "label": "Brunswick County, NC" - }, - { - "value": "BUNCOMBE_COUNTY_NC", - "label": "Buncombe County, NC" - }, - { - "value": "BURKE_COUNTY_NC", - "label": "Burke County, NC" - }, - { - "value": "CABARRUS_COUNTY_NC", - "label": "Cabarrus County, NC" - }, - { - "value": "CALDWELL_COUNTY_NC", - "label": "Caldwell County, NC" - }, - { - "value": "CAMDEN_COUNTY_NC", - "label": "Camden County, NC" - }, - { - "value": "CARTERET_COUNTY_NC", - "label": "Carteret County, NC" - }, - { - "value": "CASWELL_COUNTY_NC", - "label": "Caswell County, NC" - }, - { - "value": "CATAWBA_COUNTY_NC", - "label": "Catawba County, NC" - }, - { - "value": "CHATHAM_COUNTY_NC", - "label": "Chatham County, NC" - }, - { - "value": "CHEROKEE_COUNTY_NC", - "label": "Cherokee County, NC" - }, - { - "value": "CHOWAN_COUNTY_NC", - "label": "Chowan County, NC" - }, - { - "value": "CLAY_COUNTY_NC", - "label": "Clay County, NC" - }, - { - "value": "CLEVELAND_COUNTY_NC", - "label": "Cleveland County, NC" - }, - { - "value": "COLUMBUS_COUNTY_NC", - "label": "Columbus County, NC" - }, - { - "value": "CRAVEN_COUNTY_NC", - "label": "Craven County, NC" - }, - { - "value": "CUMBERLAND_COUNTY_NC", - "label": "Cumberland County, NC" - }, - { - "value": "CURRITUCK_COUNTY_NC", - "label": "Currituck County, NC" - }, - { - "value": "DARE_COUNTY_NC", - "label": "Dare County, NC" - }, - { - "value": "DAVIDSON_COUNTY_NC", - "label": "Davidson County, NC" - }, - { - "value": "DAVIE_COUNTY_NC", - "label": "Davie County, NC" - }, - { - "value": "DUPLIN_COUNTY_NC", - "label": "Duplin County, NC" - }, - { - "value": "DURHAM_COUNTY_NC", - "label": "Durham County, NC" - }, - { - "value": "EDGECOMBE_COUNTY_NC", - "label": "Edgecombe County, NC" - }, - { - "value": "FORSYTH_COUNTY_NC", - "label": "Forsyth County, NC" - }, - { - "value": "FRANKLIN_COUNTY_NC", - "label": "Franklin County, NC" - }, - { - "value": "GASTON_COUNTY_NC", - "label": "Gaston County, NC" - }, - { - "value": "GATES_COUNTY_NC", - "label": "Gates County, NC" - }, - { - "value": "GRAHAM_COUNTY_NC", - "label": "Graham County, NC" - }, - { - "value": "GRANVILLE_COUNTY_NC", - "label": "Granville County, NC" - }, - { - "value": "GREENE_COUNTY_NC", - "label": "Greene County, NC" - }, - { - "value": "GUILFORD_COUNTY_NC", - "label": "Guilford County, NC" - }, - { - "value": "HALIFAX_COUNTY_NC", - "label": "Halifax County, NC" - }, - { - "value": "HARNETT_COUNTY_NC", - "label": "Harnett County, NC" - }, - { - "value": "HAYWOOD_COUNTY_NC", - "label": "Haywood County, NC" - }, - { - "value": "HENDERSON_COUNTY_NC", - "label": "Henderson County, NC" - }, - { - "value": "HERTFORD_COUNTY_NC", - "label": "Hertford County, NC" - }, - { - "value": "HOKE_COUNTY_NC", - "label": "Hoke County, NC" - }, - { - "value": "HYDE_COUNTY_NC", - "label": "Hyde County, NC" - }, - { - "value": "IREDELL_COUNTY_NC", - "label": "Iredell County, NC" - }, - { - "value": "JACKSON_COUNTY_NC", - "label": "Jackson County, NC" - }, - { - "value": "JOHNSTON_COUNTY_NC", - "label": "Johnston County, NC" - }, - { - "value": "JONES_COUNTY_NC", - "label": "Jones County, NC" - }, - { - "value": "LEE_COUNTY_NC", - "label": "Lee County, NC" - }, - { - "value": "LENOIR_COUNTY_NC", - "label": "Lenoir County, NC" - }, - { - "value": "LINCOLN_COUNTY_NC", - "label": "Lincoln County, NC" - }, - { - "value": "MACON_COUNTY_NC", - "label": "Macon County, NC" - }, - { - "value": "MADISON_COUNTY_NC", - "label": "Madison County, NC" - }, - { - "value": "MARTIN_COUNTY_NC", - "label": "Martin County, NC" - }, - { - "value": "MCDOWELL_COUNTY_NC", - "label": "McDowell County, NC" - }, - { - "value": "MECKLENBURG_COUNTY_NC", - "label": "Mecklenburg County, NC" - }, - { - "value": "MITCHELL_COUNTY_NC", - "label": "Michell County, NC" - }, - { - "value": "MONTGOMERY_COUNTY_NC", - "label": "Montgomery County, NC" - }, - { - "value": "MOORE_COUNTY_NC", - "label": "Moore County, NC" - }, - { - "value": "NASH_COUNTY_NC", - "label": "Nash County, NC" - }, - { - "value": "NEW_HANOVER_COUNTY_NC", - "label": "New Hanover County, NC" - }, - { - "value": "NORTHAMPTON_COUNTY_NC", - "label": "Northampton County, NC" - }, - { - "value": "ONSLOW_COUNTY_NC", - "label": "Onslow County, NC" - }, - { - "value": "ORANGE_COUNTY_NC", - "label": "Orange County, NC" - }, - { - "value": "PAMLICO_COUNTY_NC", - "label": "Pamlico County, NC" - }, - { - "value": "PASQUOTANK_COUNTY_NC", - "label": "Pasquotank County, NC" - }, - { - "value": "PENDER_COUNTY_NC", - "label": "Pender County, NC" - }, - { - "value": "PERQUIMANS_COUNTY_NC", - "label": "Perquimans County, NC" - }, - { - "value": "PERSON_COUNTY_NC", - "label": "Person County, NC" - }, - { - "value": "PITT_COUNTY_NC", - "label": "Pitt County, NC" - }, - { - "value": "POLK_COUNTY_NC", - "label": "Polk County, NC" - }, - { - "value": "RANDOLPH_COUNTY_NC", - "label": "Randolph County, NC" - }, - { - "value": "RICHMOND_COUNTY_NC", - "label": "Richmond County, NC" - }, - { - "value": "ROBESON_COUNTY_NC", - "label": "Robeson County, NC" - }, - { - "value": "ROCKINGHAM_COUNTY_NC", - "label": "Rockingham County, NC" - }, - { - "value": "ROWAN_COUNTY_NC", - "label": "Rowan County, NC" - }, - { - "value": "RUTHERFORD_COUNTY_NC", - "label": "Rutherford County, NC" - }, - { - "value": "SAMPSON_COUNTY_NC", - "label": "Sampson County, NC" - }, - { - "value": "SCOTLAND_COUNTY_NC", - "label": "Scotland County, NC" - }, - { - "value": "STANLY_COUNTY_NC", - "label": "Stanly County, NC" - }, - { - "value": "STOKES_COUNTY_NC", - "label": "Stokes County, NC" - }, - { - "value": "SURRY_COUNTY_NC", - "label": "Surry County, NC" - }, - { - "value": "SWAIN_COUNTY_NC", - "label": "Swain County, NC" - }, - { - "value": "TRANSYLVANIA_COUNTY_NC", - "label": "Transylvania County, NC" - }, - { - "value": "TYRRELL_COUNTY_NC", - "label": "Tyrrell County, NC" - }, - { - "value": "UNION_COUNTY_NC", - "label": "Union County, NC" - }, - { - "value": "VANCE_COUNTY_NC", - "label": "Vance County, NC" - }, - { - "value": "WAKE_COUNTY_NC", - "label": "Wake County, NC" - }, - { - "value": "WARREN_COUNTY_NC", - "label": "Warren County, NC" - }, - { - "value": "WASHINGTON_COUNTY_NC", - "label": "Washington County, NC" - }, - { - "value": "WATAUGA_COUNTY_NC", - "label": "Watauga County, NC" - }, - { - "value": "WAYNE_COUNTY_NC", - "label": "Wayne County, NC" - }, - { - "value": "WILKES_COUNTY_NC", - "label": "Wilkes County, NC" - }, - { - "value": "WILSON_COUNTY_NC", - "label": "Wilson County, NC" - }, - { - "value": "YADKIN_COUNTY_NC", - "label": "Yadkin County, NC" - }, - { - "value": "YANCEY_COUNTY_NC", - "label": "Yancey County, NC" - }, - { - "value": "ADAMS_COUNTY_ND", - "label": "Adams County, ND" - }, - { - "value": "BARNES_COUNTY_ND", - "label": "Barnes County, ND" - }, - { - "value": "BENSON_COUNTY_ND", - "label": "Benson County, ND" - }, - { - "value": "BILLINGS_COUNTY_ND", - "label": "Billings County, ND" - }, - { - "value": "BOTTINEAU_COUNTY_ND", - "label": "Bottineau County, ND" - }, - { - "value": "BOWMAN_COUNTY_ND", - "label": "Bowman County, ND" - }, - { - "value": "BURKE_COUNTY_ND", - "label": "Burke County, ND" - }, - { - "value": "BURLEIGH_COUNTY_ND", - "label": "Burleigh County, ND" - }, - { - "value": "CASS_COUNTY_ND", - "label": "Cass County, ND" - }, - { - "value": "CAVALIER_COUNTY_ND", - "label": "Cavalier County, ND" - }, - { - "value": "DICKEY_COUNTY_ND", - "label": "Dickey County, ND" - }, - { - "value": "DIVIDE_COUNTY_ND", - "label": "Divide County, ND" - }, - { - "value": "DUNN_COUNTY_ND", - "label": "Dunn County, ND" - }, - { - "value": "EDDY_COUNTY_ND", - "label": "Eddy County, ND" - }, - { - "value": "EMMONS_COUNTY_ND", - "label": "Emmons County, ND" - }, - { - "value": "FOSTER_COUNTY_ND", - "label": "Foster County, ND" - }, - { - "value": "GOLDEN_VALLEY_COUNTY_ND", - "label": "Golden Valley County, ND" - }, - { - "value": "GRAND_FORKS_COUNTY_ND", - "label": "Grand Forks County, ND" - }, - { - "value": "GRANT_COUNTY_ND", - "label": "Grant County, ND" - }, - { - "value": "GRIGGS_COUNTY_ND", - "label": "Griggs County, ND" - }, - { - "value": "HARDING_COUNTY_ND", - "label": "Harding County, ND" - }, - { - "value": "HETTINGER_COUNTY_ND", - "label": "Hettinger County, ND" - }, - { - "value": "KIDDER_COUNTY_ND", - "label": "Kidder County, ND" - }, - { - "value": "LAMOURE_COUNTY_ND", - "label": "LaMoure County, ND" - }, - { - "value": "LOGAN_COUNTY_ND", - "label": "Logan County, ND" - }, - { - "value": "MARSHALL_COUNTY_ND", - "label": "Marshall County, ND" - }, - { - "value": "MCHENRY_COUNTY_ND", - "label": "McHenry County, ND" - }, - { - "value": "MCINTOSH_COUNTY_ND", - "label": "McIntosh County, ND" - }, - { - "value": "MCKENZIE_COUNTY_ND", - "label": "McKenzie County, ND" - }, - { - "value": "MCLEAN_COUNTY_ND", - "label": "McLean County, ND" - }, - { - "value": "MERCER_COUNTY_ND", - "label": "Mercer County, ND" - }, - { - "value": "MORTON_COUNTY_ND", - "label": "Morton County, ND" - }, - { - "value": "MOUNTRAIL_COUNTY_ND", - "label": "Mountrail County, ND" - }, - { - "value": "NELSON_COUNTY_ND", - "label": "Nelson County, ND" - }, - { - "value": "OLIVER_COUNTY_ND", - "label": "Oliver County, ND" - }, - { - "value": "PEMBINA_COUNTY_ND", - "label": "Pembina County, ND" - }, - { - "value": "PERKINS_COUNTY_ND", - "label": "Perkins County, ND" - }, - { - "value": "PIERCE_COUNTY_ND", - "label": "Pierce County, ND" - }, - { - "value": "RAMSEY_COUNTY_ND", - "label": "Ramsey County, ND" - }, - { - "value": "RANSOM_COUNTY_ND", - "label": "Ransom County, ND" - }, - { - "value": "RENVILLE_COUNTY_ND", - "label": "Renville County, ND" - }, - { - "value": "RICHLAND_COUNTY_ND", - "label": "Richland County, ND" - }, - { - "value": "ROLETTE_COUNTY_ND", - "label": "Rolette County, ND" - }, - { - "value": "SARGENT_COUNTY_ND", - "label": "Sargent County, ND" - }, - { - "value": "SHERIDAN_COUNTY_ND", - "label": "Sheridan County, ND" - }, - { - "value": "SIOUX_COUNTY_ND", - "label": "Sioux County, ND" - }, - { - "value": "SLOPE_COUNTY_ND", - "label": "Slope County, ND" - }, - { - "value": "STARK_COUNTY_ND", - "label": "Stark County, ND" - }, - { - "value": "STEELE_COUNTY_ND", - "label": "Steele County, ND" - }, - { - "value": "STUTSMAN_COUNTY_ND", - "label": "Stutsman County, ND" - }, - { - "value": "TOWNER_COUNTY_ND", - "label": "Towner County, ND" - }, - { - "value": "TRAILL_COUNTY_ND", - "label": "Traill County, ND" - }, - { - "value": "WALSH_COUNTY_ND", - "label": "Walsh County, ND" - }, - { - "value": "WARD_COUNTY_ND", - "label": "Ward County, ND" - }, - { - "value": "WELLS_COUNTY_ND", - "label": "Wells County, ND" - }, - { - "value": "WILLIAMS_COUNTY_ND", - "label": "Williams County, ND" - }, - { - "value": "ADAMS_COUNTY_NE", - "label": "Adams County, NE" - }, - { - "value": "ANTELOPE_COUNTY_NE", - "label": "Antelope County, NE" - }, - { - "value": "ARTHUR_COUNTY_NE", - "label": "Arthur County, NE" - }, - { - "value": "BANNER_COUNTY_NE", - "label": "Banner County, NE" - }, - { - "value": "BLAINE_COUNTY_NE", - "label": "Blaine County, NE" - }, - { - "value": "BOONE_COUNTY_NE", - "label": "Boone County, NE" - }, - { - "value": "BOX_BUTTE_COUNTY_NE", - "label": "Box Butte County, NE" - }, - { - "value": "BOYD_COUNTY_NE", - "label": "Boyd County, NE" - }, - { - "value": "BROWN_COUNTY_NE", - "label": "Brown County, NE" - }, - { - "value": "BUFFALO_COUNTY_NE", - "label": "Buffalo County, NE" - }, - { - "value": "BURT_COUNTY_NE", - "label": "Burt County, NE" - }, - { - "value": "BUTLER_COUNTY_NE", - "label": "Butler County, NE" - }, - { - "value": "CASS_COUNTY_NE", - "label": "Cass County, NE" - }, - { - "value": "CEDAR_COUNTY_NE", - "label": "Cedar County, NE" - }, - { - "value": "CHASE_COUNTY_NE", - "label": "Chase County, NE" - }, - { - "value": "CHERRY_COUNTY_NE", - "label": "Cherry County, NE" - }, - { - "value": "CHEYENNE_COUNTY_NE", - "label": "Cheyenne County, NE" - }, - { - "value": "CLAY_COUNTY_NE", - "label": "Clay County, NE" - }, - { - "value": "COLFAX_COUNTY_NE", - "label": "Colfax County, NE" - }, - { - "value": "CUMING_COUNTY_NE", - "label": "Cuming County, NE" - }, - { - "value": "CUSTER_COUNTY_NE", - "label": "Custer County, NE" - }, - { - "value": "DAKOTA_COUNTY_NE", - "label": "Dakota County, NE" - }, - { - "value": "DAWES_COUNTY_NE", - "label": "Dawes County, NE" - }, - { - "value": "DAWSON_COUNTY_NE", - "label": "Dawson County, NE" - }, - { - "value": "DECATUR_COUNTY_NE", - "label": "Decatur County, NE" - }, - { - "value": "DIXON_COUNTY_NE", - "label": "Dixon County, NE" - }, - { - "value": "DODGE_COUNTY_NE", - "label": "Dodge County, NE" - }, - { - "value": "DOUGLAS_COUNTY_NE", - "label": "Douglas County, NE" - }, - { - "value": "DUNDY_COUNTY_NE", - "label": "Dundy County, NE" - }, - { - "value": "FILLMORE_COUNTY_NE", - "label": "Fillmore County, NE" - }, - { - "value": "FRANKLIN_COUNTY_NE", - "label": "Franklin County, NE" - }, - { - "value": "FRONTIER_COUNTY_NE", - "label": "Frontier County, NE" - }, - { - "value": "FURNAS_COUNTY_NE", - "label": "Furnas County, NE" - }, - { - "value": "GAGE_COUNTY_NE", - "label": "Gage County, NE" - }, - { - "value": "GARDEN_COUNTY_NE", - "label": "Garden County, NE" - }, - { - "value": "GARFIELD_COUNTY_NE", - "label": "Garfield County, NE" - }, - { - "value": "GOSPER_COUNTY_NE", - "label": "Gosper County, NE" - }, - { - "value": "GRANT_COUNTY_NE", - "label": "Grant County, NE" - }, - { - "value": "GREELEY_COUNTY_NE", - "label": "Greeley County, NE" - }, - { - "value": "GREGORY_COUNTY_NE", - "label": "Gregory County, NE" - }, - { - "value": "HALL_COUNTY_NE", - "label": "Hall County, NE" - }, - { - "value": "HAMILTON_COUNTY_NE", - "label": "Hamilton County, NE" - }, - { - "value": "HARLAN_COUNTY_NE", - "label": "Harlan County, NE" - }, - { - "value": "HAYES_COUNTY_NE", - "label": "Hayes County, NE" - }, - { - "value": "HITCHCOCK_COUNTY_NE", - "label": "Hitchcock County, NE" - }, - { - "value": "HOLT_COUNTY_NE", - "label": "Holt County, NE" - }, - { - "value": "HOOKER_COUNTY_NE", - "label": "Hooker County, NE" - }, - { - "value": "HOWARD_COUNTY_NE", - "label": "Howard County, NE" - }, - { - "value": "JEFFERSON_COUNTY_NE", - "label": "Jefferson County, NE" - }, - { - "value": "JEWELL_COUNTY_NE", - "label": "Jewell County, NE" - }, - { - "value": "JOHNSON_COUNTY_NE", - "label": "Johnson County, NE" - }, - { - "value": "KEARNEY_COUNTY_NE", - "label": "Kearney County, NE" - }, - { - "value": "KEITH_COUNTY_NE", - "label": "Keith County, NE" - }, - { - "value": "KEYA_PAHA_COUNTY_NE", - "label": "Keya Paha County, NE" - }, - { - "value": "KIMBALL_COUNTY_NE", - "label": "Kimball County, NE" - }, - { - "value": "KNOX_COUNTY_NE", - "label": "Knox County, NE" - }, - { - "value": "LANCASTER_COUNTY_NE", - "label": "Lancaster County, NE" - }, - { - "value": "LINCOLN_COUNTY_NE", - "label": "Lincoln County, NE" - }, - { - "value": "LOUP_COUNTY_NE", - "label": "Loup County, NE" - }, - { - "value": "MADISON_COUNTY_NE", - "label": "Madison County, NE" - }, - { - "value": "MCPHERSON_COUNTY_NE", - "label": "McPherson County, NE" - }, - { - "value": "MERRICK_COUNTY_NE", - "label": "Merrick County, NE" - }, - { - "value": "MORRILL_COUNTY_NE", - "label": "Morrill County, NE" - }, - { - "value": "NANCE_COUNTY_NE", - "label": "Nance County, NE" - }, - { - "value": "NEMAHA_COUNTY_NE", - "label": "Nemaha County, NE" - }, - { - "value": "NUCKOLLS_COUNTY_NE", - "label": "Nuckolls County, NE" - }, - { - "value": "OGLALA_LAKOTA_COUNTY_NE", - "label": "Oglala Lakota County, NE" - }, - { - "value": "OTOE_COUNTY_NE", - "label": "Otoe County, NE" - }, - { - "value": "PAWNEE_COUNTY_NE", - "label": "Pawnee County, NE" - }, - { - "value": "PERKINS_COUNTY_NE", - "label": "Perkins County, NE" - }, - { - "value": "PHELPS_COUNTY_NE", - "label": "Phelps County, NE" - }, - { - "value": "PIERCE_COUNTY_NE", - "label": "Pierce County, NE" - }, - { - "value": "PLATTE_COUNTY_NE", - "label": "Platte County, NE" - }, - { - "value": "POLK_COUNTY_NE", - "label": "Polk County, NE" - }, - { - "value": "RED_WILLOW_COUNTY_NE", - "label": "Red Willow County, NE" - }, - { - "value": "RICHARDSON_COUNTY_NE", - "label": "Richardson County, NE" - }, - { - "value": "ROCK_COUNTY_NE", - "label": "Rock County, NE" - }, - { - "value": "SALINE_COUNTY_NE", - "label": "Saline County, NE" - }, - { - "value": "SARPY_COUNTY_NE", - "label": "Sarpy County, NE" - }, - { - "value": "SAUNDERS_COUNTY_NE", - "label": "Saunders County, NE" - }, - { - "value": "SCOTTS_BLUFF_COUNTY_NE", - "label": "Scotts Bluff County, NE" - }, - { - "value": "SEWARD_COUNTY_NE", - "label": "Seward County, NE" - }, - { - "value": "SHERIDAN_COUNTY_NE", - "label": "Sheridan County, NE" - }, - { - "value": "SHERMAN_COUNTY_NE", - "label": "Sherman County, NE" - }, - { - "value": "SIOUX_COUNTY_NE", - "label": "Sioux County, NE" - }, - { - "value": "STANTON_COUNTY_NE", - "label": "Stanton County, NE" - }, - { - "value": "THAYER_COUNTY_NE", - "label": "Thayer County, NE" - }, - { - "value": "THOMAS_COUNTY_NE", - "label": "Thomas County, NE" - }, - { - "value": "THURSTON_COUNTY_NE", - "label": "Thurston County, NE" - }, - { - "value": "TODD_COUNTY_NE", - "label": "Todd County, NE" - }, - { - "value": "VALLEY_COUNTY_NE", - "label": "Valley County, NE" - }, - { - "value": "WASHINGTON_COUNTY_NE", - "label": "Washington County, NE" - }, - { - "value": "WAYNE_COUNTY_NE", - "label": "Wayne County, NE" - }, - { - "value": "WEBSTER_COUNTY_NE", - "label": "Webster County, NE" - }, - { - "value": "WHEELER_COUNTY_NE", - "label": "Wheeler County, NE" - }, - { - "value": "YORK_COUNTY_NE", - "label": "York County, NE" - }, - { - "value": "BELKNAP_COUNTY_NH", - "label": "Belknap County, NH" - }, - { - "value": "CARROLL_COUNTY_NH", - "label": "Carroll County, NH" - }, - { - "value": "CHESHIRE_COUNTY_NH", - "label": "Cheshire County, NH" - }, - { - "value": "COOS_COUNTY_NH", - "label": "Coos County, NH" - }, - { - "value": "GRAFTON_COUNTY_NH", - "label": "Grafton County, NH" - }, - { - "value": "HILLSBOROUGH_COUNTY_NH", - "label": "Hillsborough County, NH" - }, - { - "value": "MERRIMACK_COUNTY_NH", - "label": "Merrimack County, NH" - }, - { - "value": "ROCKINGHAM_COUNTY_NH", - "label": "Rockingham County, NH" - }, - { - "value": "STRAFFORD_COUNTY_NH", - "label": "Strafford County, NH" - }, - { - "value": "SULLIVAN_COUNTY_NH", - "label": "Sullivan County, NH" - }, - { - "value": "ATLANTIC_COUNTY_NJ", - "label": "Atlantic County, NJ" - }, - { - "value": "BERGEN_COUNTY_NJ", - "label": "Bergen County, NJ" - }, - { - "value": "BURLINGTON_COUNTY_NJ", - "label": "Burlington County, NJ" - }, - { - "value": "CAMDEN_COUNTY_NJ", - "label": "Camden County, NJ" - }, - { - "value": "CAPE_MAY_COUNTY_NJ", - "label": "Cape May County, NJ" - }, - { - "value": "CUMBERLAND_COUNTY_NJ", - "label": "Cumberland County, NJ" - }, - { - "value": "ESSEX_COUNTY_NJ", - "label": "Essex County, NJ" - }, - { - "value": "GLOUCESTER_COUNTY_NJ", - "label": "Gloucester County, NJ" - }, - { - "value": "HUDSON_COUNTY_NJ", - "label": "Hudson County, NJ" - }, - { - "value": "HUNTERDON_COUNTY_NJ", - "label": "Hunterdon County, NJ" - }, - { - "value": "MERCER_COUNTY_NJ", - "label": "Mercer County, NJ" - }, - { - "value": "MIDDLESEX_COUNTY_NJ", - "label": "Middlesex County, NJ" - }, - { - "value": "MONMOUTH_COUNTY_NJ", - "label": "Monmouth County, NJ" - }, - { - "value": "MORRIS_COUNTY_NJ", - "label": "Morris County, NJ" - }, - { - "value": "OCEAN_COUNTY_NJ", - "label": "Ocean County, NJ" - }, - { - "value": "PASSAIC_COUNTY_NJ", - "label": "Passaic County, NJ" - }, - { - "value": "SALEM_COUNTY_NJ", - "label": "Salem County, NJ" - }, - { - "value": "SOMERSET_COUNTY_NJ", - "label": "Somerset County, NJ" - }, - { - "value": "SUSSEX_COUNTY_NJ", - "label": "Sussex County, NJ" - }, - { - "value": "UNION_COUNTY_NJ", - "label": "Union County, NJ" - }, - { - "value": "WARREN_COUNTY_NJ", - "label": "Warren County, NJ" - }, - { - "value": "APACHE_COUNTY_NM", - "label": "Apache County, NM" - }, - { - "value": "BERNALILLO_COUNTY_NM", - "label": "Bernalillo County, NM" - }, - { - "value": "CATRON_COUNTY_NM", - "label": "Catron County, NM" - }, - { - "value": "CHAVES_COUNTY_NM", - "label": "Chaves County, NM" - }, - { - "value": "CIBOLA_COUNTY_NM", - "label": "Cibola County, NM" - }, - { - "value": "COLFAX_COUNTY_NM", - "label": "Colfax County, NM" - }, - { - "value": "CURRY_COUNTY_NM", - "label": "Curry County, NM" - }, - { - "value": "DE_BACA_COUNTY_NM", - "label": "De Baca County, NM" - }, - { - "value": "DOÑA_ANA_COUNTY_NM", - "label": "Doña Ana County, NM" - }, - { - "value": "EDDY_COUNTY_NM", - "label": "Eddy County, NM" - }, - { - "value": "GRANT_COUNTY_NM", - "label": "Grant County, NM" - }, - { - "value": "GUADALUPE_COUNTY_NM", - "label": "Guadalupe County, NM" - }, - { - "value": "HARDING_COUNTY_NM", - "label": "Harding County, NM" - }, - { - "value": "HIDALGO_COUNTY_NM", - "label": "Hidalgo County, NM" - }, - { - "value": "LEA_COUNTY_NM", - "label": "Lea County, NM" - }, - { - "value": "LINCOLN_COUNTY_NM", - "label": "Lincoln County, NM" - }, - { - "value": "LUNA_COUNTY_NM", - "label": "Luna County, NM" - }, - { - "value": "MCKINLEY_COUNTY_NM", - "label": "McKinley County, NM" - }, - { - "value": "MORA_COUNTY_NM", - "label": "Mora County, NM" - }, - { - "value": "OLDHAM_COUNTY_NM", - "label": "Oldham County, NM" - }, - { - "value": "OTERO_COUNTY_NM", - "label": "Otero County, NM" - }, - { - "value": "QUAY_COUNTY_NM", - "label": "Quay County, NM" - }, - { - "value": "RIO_ARRIBA_COUNTY_NM", - "label": "Rio Arriba County, NM" - }, - { - "value": "ROOSEVELT_COUNTY_NM", - "label": "Roosevelt County, NM" - }, - { - "value": "SAN_JUAN_COUNTY_NM", - "label": "San Juan County, NM" - }, - { - "value": "SAN_MIGUEL_COUNTY_NM", - "label": "San Miguel County, NM" - }, - { - "value": "SANDOVAL_COUNTY_NM", - "label": "Sandoval County, NM" - }, - { - "value": "SANTA_FE_COUNTY_NM", - "label": "Santa Fe County, NM" - }, - { - "value": "SIERRA_COUNTY_NM", - "label": "Sierra County, NM" - }, - { - "value": "SOCORRO_COUNTY_NM", - "label": "Socorro County, NM" - }, - { - "value": "TAOS_COUNTY_NM", - "label": "Taos County, NM" - }, - { - "value": "TORRANCE_COUNTY_NM", - "label": "Torrance County, NM" - }, - { - "value": "UNION_COUNTY_NM", - "label": "Union County, NM" - }, - { - "value": "VALENCIA_COUNTY_NM", - "label": "Valencia County, NM" - }, - { - "value": "CARSON_CITY_NV", - "label": "Carson City, NV" - }, - { - "value": "CLARK_COUNTY_NV", - "label": "Clark County, NV" - }, - { - "value": "DOUGLAS_COUNTY_NV", - "label": "Douglas County, NV" - }, - { - "value": "ELKO_COUNTY_NV", - "label": "Elko County, NV" - }, - { - "value": "ESMERALDA_COUNTY_NV", - "label": "Esmeralda County, NV" - }, - { - "value": "EUREKA_COUNTY_NV", - "label": "Eureka County, NV" - }, - { - "value": "HUMBOLDT_COUNTY_NV", - "label": "Humboldt County, NV" - }, - { - "value": "INYO_COUNTY_NV", - "label": "Inyo County, NV" - }, - { - "value": "LANDER_COUNTY_NV", - "label": "Lander County, NV" - }, - { - "value": "LINCOLN_COUNTY_NV", - "label": "Lincoln County, NV" - }, - { - "value": "LYON_COUNTY_NV", - "label": "Lyon County, NV" - }, - { - "value": "MINERAL_COUNTY_NV", - "label": "Mineral County, NV" - }, - { - "value": "NYE_COUNTY_NV", - "label": "Nye County, NV" - }, - { - "value": "PERSHING_COUNTY_NV", - "label": "Pershing County, NV" - }, - { - "value": "STOREY_COUNTY_NV", - "label": "Storey County, NV" - }, - { - "value": "WASHOE_COUNTY_NV", - "label": "Washoe County, NV" - }, - { - "value": "WHITE_PINE_COUNTY_NV", - "label": "White Pine County, NV" - }, - { - "value": "ALBANY_COUNTY_NY", - "label": "Albany County, NY" - }, - { - "value": "ALLEGANY_COUNTY_NY", - "label": "Allegany County, NY" - }, - { - "value": "BRONX_COUNTY_NY", - "label": "Bronx County, NY" - }, - { - "value": "BROOME_COUNTY_NY", - "label": "Broome County, NY" - }, - { - "value": "CATTARAUGUS_COUNTY_NY", - "label": "Cattaraugus County, NY" - }, - { - "value": "CAYUGA_COUNTY_NY", - "label": "Cayuga County, NY" - }, - { - "value": "CHAUTAUQUA_COUNTY_NY", - "label": "Chautauqua County, NY" - }, - { - "value": "CHEMUNG_COUNTY_NY", - "label": "Chemung County, NY" - }, - { - "value": "CHENANGO_COUNTY_NY", - "label": "Chenango County, NY" - }, - { - "value": "CLINTON_COUNTY_NY", - "label": "Clinton County, NY" - }, - { - "value": "COLUMBIA_COUNTY_NY", - "label": "Columbia County, NY" - }, - { - "value": "CORTLAND_COUNTY_NY", - "label": "Cortland County, NY" - }, - { - "value": "DELAWARE_COUNTY_NY", - "label": "Delaware County, NY" - }, - { - "value": "DUTCHESS_COUNTY_NY", - "label": "Dutchess County, NY" - }, - { - "value": "ERIE_COUNTY_NY", - "label": "Erie County, NY" - }, - { - "value": "ESSEX_COUNTY_NY", - "label": "Essex County, NY" - }, - { - "value": "FRANKLIN_COUNTY_NY", - "label": "Franklin County, NY" - }, - { - "value": "FULTON_COUNTY_NY", - "label": "Fulton County, NY" - }, - { - "value": "GENESEE_COUNTY_NY", - "label": "Genesee County, NY" - }, - { - "value": "GREENE_COUNTY_NY", - "label": "Greene County, NY" - }, - { - "value": "HAMILTON_COUNTY_NY", - "label": "Hamilton County, NY" - }, - { - "value": "HERKIMER_COUNTY_NY", - "label": "Herkimer County, NY" - }, - { - "value": "JEFFERSON_COUNTY_NY", - "label": "Jefferson County, NY" - }, - { - "value": "KINGS_COUNTY_NY", - "label": "Kings County, NY" - }, - { - "value": "LEWIS_COUNTY_NY", - "label": "Lewis County, NY" - }, - { - "value": "LIVINGSTON_COUNTY_NY", - "label": "Livingston County, NY" - }, - { - "value": "MADISON_COUNTY_NY", - "label": "Madison County, NY" - }, - { - "value": "MONROE_COUNTY_NY", - "label": "Monroe County, NY" - }, - { - "value": "MONTGOMERY_COUNTY_NY", - "label": "Montgomery County, NY" - }, - { - "value": "NASSAU_COUNTY_NY", - "label": "Nassau County, NY" - }, - { - "value": "NEW_YORK_COUNTY_NY", - "label": "New York County, NY" - }, - { - "value": "NIAGARA_COUNTY_NY", - "label": "Niagara County, NY" - }, - { - "value": "ONEIDA_COUNTY_NY", - "label": "Oneida County, NY" - }, - { - "value": "ONONDAGA_COUNTY_NY", - "label": "Onondaga County, NY" - }, - { - "value": "ONTARIO_COUNTY_NY", - "label": "Ontario County, NY" - }, - { - "value": "ORANGE_COUNTY_NY", - "label": "Orange County, NY" - }, - { - "value": "ORLEANS_COUNTY_NY", - "label": "Orleans County, NY" - }, - { - "value": "OSWEGO_COUNTY_NY", - "label": "Oswego County, NY" - }, - { - "value": "OTSEGO_COUNTY_NY", - "label": "Otsego County, NY" - }, - { - "value": "PUTNAM_COUNTY_NY", - "label": "Putnam County, NY" - }, - { - "value": "QUEENS_COUNTY_NY", - "label": "Queens County, NY" - }, - { - "value": "RENSSELAER_COUNTY_NY", - "label": "Rensselaer County, NY" - }, - { - "value": "RICHMOND_COUNTY_NY", - "label": "Richmond County, NY" - }, - { - "value": "ROCKLAND_COUNTY_NY", - "label": "Rockland County, NY" - }, - { - "value": "SARATOGA_COUNTY_NY", - "label": "Saratoga County, NY" - }, - { - "value": "SCHENECTADY_COUNTY_NY", - "label": "Schenectady County, NY" - }, - { - "value": "SCHOHARIE_COUNTY_NY", - "label": "Schoharie County, NY" - }, - { - "value": "SCHUYLER_COUNTY_NY", - "label": "Schuyler County, NY" - }, - { - "value": "SENECA_COUNTY_NY", - "label": "Seneca County, NY" - }, - { - "value": "ST_LAWRENCE_COUNTY_NY", - "label": "St. Lawrence County, NY" - }, - { - "value": "STEUBEN_COUNTY_NY", - "label": "Steuben County, NY" - }, - { - "value": "SUFFOLK_COUNTY_NY", - "label": "Suffolk County, NY" - }, - { - "value": "SULLIVAN_COUNTY_NY", - "label": "Sullivan County, NY" - }, - { - "value": "TIOGA_COUNTY_NY", - "label": "Tioga County, NY" - }, - { - "value": "TOMPKINS_COUNTY_NY", - "label": "Tompkins County, NY" - }, - { - "value": "ULSTER_COUNTY_NY", - "label": "Ulster County, NY" - }, - { - "value": "WARREN_COUNTY_NY", - "label": "Warren County, NY" - }, - { - "value": "WASHINGTON_COUNTY_NY", - "label": "Washington County, NY" - }, - { - "value": "WAYNE_COUNTY_NY", - "label": "Wayne County, NY" - }, - { - "value": "WESTCHESTER_COUNTY_NY", - "label": "Westchester County, NY" - }, - { - "value": "WYOMING_COUNTY_NY", - "label": "Wyoming County, NY" - }, - { - "value": "YATES_COUNTY_NY", - "label": "Yates County, NY" - }, - { - "value": "ADAMS_COUNTY_OH", - "label": "Adams County, OH" - }, - { - "value": "ALLEN_COUNTY_OH", - "label": "Allen County, OH" - }, - { - "value": "ASHLAND_COUNTY_OH", - "label": "Ashland County, OH" - }, - { - "value": "ASHTABULA_COUNTY_OH", - "label": "Ashtabula County, OH" - }, - { - "value": "ATHENS_COUNTY_OH", - "label": "Athens County, OH" - }, - { - "value": "AUGLAIZE_COUNTY_OH", - "label": "Auglaize County, OH" - }, - { - "value": "BELMONT_COUNTY_OH", - "label": "Belmont County, OH" - }, - { - "value": "BROWN_COUNTY_OH", - "label": "Brown County, OH" - }, - { - "value": "BUTLER_COUNTY_OH", - "label": "Butler County, OH" - }, - { - "value": "CARROLL_COUNTY_OH", - "label": "Carroll County, OH" - }, - { - "value": "CHAMPAIGN_COUNTY_OH", - "label": "Champaign County, OH" - }, - { - "value": "CLARK_COUNTY_OH", - "label": "Clark County, OH" - }, - { - "value": "CLERMONT_COUNTY_OH", - "label": "Clermont County, OH" - }, - { - "value": "CLINTON_COUNTY_OH", - "label": "Clinton County, OH" - }, - { - "value": "COLUMBIANA_COUNTY_OH", - "label": "Columbiana County, OH" - }, - { - "value": "COSHOCTON_COUNTY_OH", - "label": "Coshocton County, OH" - }, - { - "value": "CRAWFORD_COUNTY_OH", - "label": "Crawford County, OH" - }, - { - "value": "CUYAHOGA_COUNTY_OH", - "label": "Cuyahoga County, OH" - }, - { - "value": "DARKE_COUNTY_OH", - "label": "Darke County, OH" - }, - { - "value": "DEFIANCE_COUNTY_OH", - "label": "Defiance County, OH" - }, - { - "value": "DELAWARE_COUNTY_OH", - "label": "Delaware County, OH" - }, - { - "value": "ERIE_COUNTY_OH", - "label": "Erie County, OH" - }, - { - "value": "FAIRFIELD_COUNTY_OH", - "label": "Fairfield County, OH" - }, - { - "value": "FAYETTE_COUNTY_OH", - "label": "Fayette County, OH" - }, - { - "value": "FRANKLIN_COUNTY_OH", - "label": "Franklin County, OH" - }, - { - "value": "FULTON_COUNTY_OH", - "label": "Fulton County, OH" - }, - { - "value": "GALLIA_COUNTY_OH", - "label": "Gallia County, OH" - }, - { - "value": "GEAUGA_COUNTY_OH", - "label": "Geauga County, OH" - }, - { - "value": "GREENE_COUNTY_OH", - "label": "Greene County, OH" - }, - { - "value": "GUERNSEY_COUNTY_OH", - "label": "Guernsey County, OH" - }, - { - "value": "HAMILTON_COUNTY_OH", - "label": "Hamilton County, OH" - }, - { - "value": "HANCOCK_COUNTY_OH", - "label": "Hancock County, OH" - }, - { - "value": "HARDIN_COUNTY_OH", - "label": "Hardin County, OH" - }, - { - "value": "HARRISON_COUNTY_OH", - "label": "Harrison County, OH" - }, - { - "value": "HENRY_COUNTY_OH", - "label": "Henry County, OH" - }, - { - "value": "HIGHLAND_COUNTY_OH", - "label": "Highland County, OH" - }, - { - "value": "HOCKING_COUNTY_OH", - "label": "Hocking County, OH" - }, - { - "value": "HOLMES_COUNTY_OH", - "label": "Holmes County, OH" - }, - { - "value": "HURON_COUNTY_OH", - "label": "Huron County, OH" - }, - { - "value": "JACKSON_COUNTY_OH", - "label": "Jackson County, OH" - }, - { - "value": "JEFFERSON_COUNTY_OH", - "label": "Jefferson County, OH" - }, - { - "value": "KNOX_COUNTY_OH", - "label": "Knox County, OH" - }, - { - "value": "LAKE_COUNTY_OH", - "label": "Lake County, OH" - }, - { - "value": "LAWRENCE_COUNTY_OH", - "label": "Lawrence County, OH" - }, - { - "value": "LICKING_COUNTY_OH", - "label": "Licking County, OH" - }, - { - "value": "LOGAN_COUNTY_OH", - "label": "Logan County, OH" - }, - { - "value": "LORAIN_COUNTY_OH", - "label": "Lorain County, OH" - }, - { - "value": "LUCAS_COUNTY_OH", - "label": "Lucas County, OH" - }, - { - "value": "MADISON_COUNTY_OH", - "label": "Madison County, OH" - }, - { - "value": "MAHONING_COUNTY_OH", - "label": "Mahoning County, OH" - }, - { - "value": "MARION_COUNTY_OH", - "label": "Marion County, OH" - }, - { - "value": "MEDINA_COUNTY_OH", - "label": "Medina County, OH" - }, - { - "value": "MEIGS_COUNTY_OH", - "label": "Meigs County, OH" - }, - { - "value": "MERCER_COUNTY_OH", - "label": "Mercer County, OH" - }, - { - "value": "MIAMI_COUNTY_OH", - "label": "Miami County, OH" - }, - { - "value": "MONROE_COUNTY_OH", - "label": "Monroe County, OH" - }, - { - "value": "MONTGOMERY_COUNTY_OH", - "label": "Montgomery County, OH" - }, - { - "value": "MORGAN_COUNTY_OH", - "label": "Morgan County, OH" - }, - { - "value": "MORROW_COUNTY_OH", - "label": "Morrow County, OH" - }, - { - "value": "MUSKINGUM_COUNTY_OH", - "label": "Muskingum County, OH" - }, - { - "value": "NOBLE_COUNTY_OH", - "label": "Noble County, OH" - }, - { - "value": "OTTAWA_COUNTY_OH", - "label": "Ottawa County, OH" - }, - { - "value": "PAULDING_COUNTY_OH", - "label": "Paulding County, OH" - }, - { - "value": "PERRY_COUNTY_OH", - "label": "Perry County, OH" - }, - { - "value": "PICKAWAY_COUNTY_OH", - "label": "Pickaway County, OH" - }, - { - "value": "PIKE_COUNTY_OH", - "label": "Pike County, OH" - }, - { - "value": "PORTAGE_COUNTY_OH", - "label": "Portage County, OH" - }, - { - "value": "PREBLE_COUNTY_OH", - "label": "Preble County, OH" - }, - { - "value": "PUTNAM_COUNTY_OH", - "label": "Putnam County, OH" - }, - { - "value": "RICHLAND_COUNTY_OH", - "label": "Richland County, OH" - }, - { - "value": "ROSS_COUNTY_OH", - "label": "Ross County, OH" - }, - { - "value": "SANDUSKY_COUNTY_OH", - "label": "Sandusky County, OH" - }, - { - "value": "SCIOTO_COUNTY_OH", - "label": "Scioto County, OH" - }, - { - "value": "SENECA_COUNTY_OH", - "label": "Seneca County, OH" - }, - { - "value": "SHELBY_COUNTY_OH", - "label": "Shelby County, OH" - }, - { - "value": "STARK_COUNTY_OH", - "label": "Stark County, OH" - }, - { - "value": "SUMMIT_COUNTY_OH", - "label": "Summit County, OH" - }, - { - "value": "TRUMBULL_COUNTY_OH", - "label": "Trumbull County, OH" - }, - { - "value": "TUSCARAWAS_COUNTY_OH", - "label": "Tuscarawas County, OH" - }, - { - "value": "UNION_COUNTY_OH", - "label": "Union County, OH" - }, - { - "value": "VAN_WERT_COUNTY_OH", - "label": "Van Wert County, OH" - }, - { - "value": "VINTON_COUNTY_OH", - "label": "Vinton County, OH" - }, - { - "value": "WARREN_COUNTY_OH", - "label": "Warren County, OH" - }, - { - "value": "WASHINGTON_COUNTY_OH", - "label": "Washington County, OH" - }, - { - "value": "WAYNE_COUNTY_OH", - "label": "Wayne County, OH" - }, - { - "value": "WILLIAMS_COUNTY_OH", - "label": "Williams County, OH" - }, - { - "value": "WOOD_COUNTY_OH", - "label": "Wood County, OH" - }, - { - "value": "WYANDOT_COUNTY_OH", - "label": "Wyandot County, OH" - }, - { - "value": "ADAIR_COUNTY_OK", - "label": "Adair County, OK" - }, - { - "value": "ALFALFA_COUNTY_OK", - "label": "Alfalfa County, OK" - }, - { - "value": "ATOKA_COUNTY_OK", - "label": "Atoka County, OK" - }, - { - "value": "BEAVER_COUNTY_OK", - "label": "Beaver County, OK" - }, - { - "value": "BECKHAM_COUNTY_OK", - "label": "Beckham County, OK" - }, - { - "value": "BLAINE_COUNTY_OK", - "label": "Blaine County, OK" - }, - { - "value": "BRYAN_COUNTY_OK", - "label": "Bryan County, OK" - }, - { - "value": "CADDO_COUNTY_OK", - "label": "Caddo County, OK" - }, - { - "value": "CANADIAN_COUNTY_OK", - "label": "Canadian County, OK" - }, - { - "value": "CARTER_COUNTY_OK", - "label": "Carter County, OK" - }, - { - "value": "CHEROKEE_COUNTY_OK", - "label": "Cherokee County, OK" - }, - { - "value": "CHOCTAW_COUNTY_OK", - "label": "Choctaw County, OK" - }, - { - "value": "CIMARRON_COUNTY_OK", - "label": "Cimarron County, OK" - }, - { - "value": "CLEVELAND_COUNTY_OK", - "label": "Cleveland County, OK" - }, - { - "value": "COAL_COUNTY_OK", - "label": "Coal County, OK" - }, - { - "value": "COMANCHE_COUNTY_OK", - "label": "Comanche County, OK" - }, - { - "value": "COTTON_COUNTY_OK", - "label": "Cotton County, OK" - }, - { - "value": "CRAIG_COUNTY_OK", - "label": "Craig County, OK" - }, - { - "value": "CREEK_COUNTY_OK", - "label": "Creek County, OK" - }, - { - "value": "CUSTER_COUNTY_OK", - "label": "Custer County, OK" - }, - { - "value": "DELAWARE_COUNTY_OK", - "label": "Delaware County, OK" - }, - { - "value": "DEWEY_COUNTY_OK", - "label": "Dewey County, OK" - }, - { - "value": "ELLIS_COUNTY_OK", - "label": "Ellis County, OK" - }, - { - "value": "GARFIELD_COUNTY_OK", - "label": "Garfield County, OK" - }, - { - "value": "GARVIN_COUNTY_OK", - "label": "Garvin County, OK" - }, - { - "value": "GRADY_COUNTY_OK", - "label": "Grady County, OK" - }, - { - "value": "GRANT_COUNTY_OK", - "label": "Grant County, OK" - }, - { - "value": "GREER_COUNTY_OK", - "label": "Greer County, OK" - }, - { - "value": "HARMON_COUNTY_OK", - "label": "Harmon County, OK" - }, - { - "value": "HARPER_COUNTY_OK", - "label": "Harper County, OK" - }, - { - "value": "HASKELL_COUNTY_OK", - "label": "Haskell County, OK" - }, - { - "value": "HUGHES_COUNTY_OK", - "label": "Hughes County, OK" - }, - { - "value": "JACKSON_COUNTY_OK", - "label": "Jackson County, OK" - }, - { - "value": "JEFFERSON_COUNTY_OK", - "label": "Jefferson County, OK" - }, - { - "value": "JOHNSTON_COUNTY_OK", - "label": "Johnston County, OK" - }, - { - "value": "KAY_COUNTY_OK", - "label": "Kay County, OK" - }, - { - "value": "KINGFISHER_COUNTY_OK", - "label": "Kingfisher County, OK" - }, - { - "value": "KIOWA_COUNTY_OK", - "label": "Kiowa County, OK" - }, - { - "value": "LATIMER_COUNTY_OK", - "label": "Latimer County, OK" - }, - { - "value": "LE_FLORE_COUNTY_OK", - "label": "Le Flore County, OK" - }, - { - "value": "LINCOLN_COUNTY_OK", - "label": "Lincoln County, OK" - }, - { - "value": "LOGAN_COUNTY_OK", - "label": "Logan County, OK" - }, - { - "value": "LOVE_COUNTY_OK", - "label": "Love County, OK" - }, - { - "value": "MAJOR_COUNTY_OK", - "label": "Major County, OK" - }, - { - "value": "MARSHALL_COUNTY_OK", - "label": "Marshall County, OK" - }, - { - "value": "MAYES_COUNTY_OK", - "label": "Mayes County, OK" - }, - { - "value": "MCCLAIN_COUNTY_OK", - "label": "McClain County, OK" - }, - { - "value": "MCCURTAIN_COUNTY_OK", - "label": "McCurtain County, OK" - }, - { - "value": "MCINTOSH_COUNTY_OK", - "label": "McIntosh County, OK" - }, - { - "value": "MURRAY_COUNTY_OK", - "label": "Murray County, OK" - }, - { - "value": "MUSKOGEE_COUNTY_OK", - "label": "Muskogee County, OK" - }, - { - "value": "NOBLE_COUNTY_OK", - "label": "Noble County, OK" - }, - { - "value": "NOWATA_COUNTY_OK", - "label": "Nowata County, OK" - }, - { - "value": "OKFUSKEE_COUNTY_OK", - "label": "Okfuskee County, OK" - }, - { - "value": "OKLAHOMA_COUNTY_OK", - "label": "Oklahoma County, OK" - }, - { - "value": "OKMULGEE_COUNTY_OK", - "label": "Okmulgee County, OK" - }, - { - "value": "OSAGE_COUNTY_OK", - "label": "Osage County, OK" - }, - { - "value": "OTTAWA_COUNTY_OK", - "label": "Ottawa County, OK" - }, - { - "value": "PAWNEE_COUNTY_OK", - "label": "Pawnee County, OK" - }, - { - "value": "PAYNE_COUNTY_OK", - "label": "Payne County, OK" - }, - { - "value": "PITTSBURG_COUNTY_OK", - "label": "Pittsburg County, OK" - }, - { - "value": "PONTOTOC_COUNTY_OK", - "label": "Pontotoc County, OK" - }, - { - "value": "POTTAWATOMIE_COUNTY_OK", - "label": "Pottawatomie County, OK" - }, - { - "value": "PUSHMATAHA_COUNTY_OK", - "label": "Pushmataha County, OK" - }, - { - "value": "ROGER_MILLS_COUNTY_OK", - "label": "Roger Mills County, OK" - }, - { - "value": "ROGERS_COUNTY_OK", - "label": "Rogers County, OK" - }, - { - "value": "SEMINOLE_COUNTY_OK", - "label": "Seminole County, OK" - }, - { - "value": "SEQUOYAH_COUNTY_OK", - "label": "Sequoyah County, OK" - }, - { - "value": "SHERMAN_COUNTY_OK", - "label": "Sherman County, OK" - }, - { - "value": "STEPHENS_COUNTY_OK", - "label": "Stephens County, OK" - }, - { - "value": "TEXAS_COUNTY_OK", - "label": "Texas County, OK" - }, - { - "value": "TILLMAN_COUNTY_OK", - "label": "Tillman County, OK" - }, - { - "value": "TULSA_COUNTY_OK", - "label": "Tulsa County, OK" - }, - { - "value": "WAGONER_COUNTY_OK", - "label": "Wagoner County, OK" - }, - { - "value": "WASHINGTON_COUNTY_OK", - "label": "Washington County, OK" - }, - { - "value": "WASHITA_COUNTY_OK", - "label": "Washita County, OK" - }, - { - "value": "WOODS_COUNTY_OK", - "label": "Woods County, OK" - }, - { - "value": "WOODWARD_COUNTY_OK", - "label": "Woodward County, OK" - }, - { - "value": "BAKER_COUNTY_OR", - "label": "Baker County, OR" - }, - { - "value": "BENTON_COUNTY_OR", - "label": "Benton County, OR" - }, - { - "value": "CLACKAMAS_COUNTY_OR", - "label": "Clackamas County, OR" - }, - { - "value": "CLATSOP_COUNTY_OR", - "label": "Clatsop County, OR" - }, - { - "value": "COLUMBIA_COUNTY_OR", - "label": "Columbia County, OR" - }, - { - "value": "COOS_COUNTY_OR", - "label": "Coos County, OR" - }, - { - "value": "CROOK_COUNTY_OR", - "label": "Crook County, OR" - }, - { - "value": "CURRY_COUNTY_OR", - "label": "Curry County, OR" - }, - { - "value": "DESCHUTES_COUNTY_OR", - "label": "Deschutes County, OR" - }, - { - "value": "DOUGLAS_COUNTY_OR", - "label": "Douglas County, OR" - }, - { - "value": "GILLIAM_COUNTY_OR", - "label": "Gilliam County, OR" - }, - { - "value": "GRANT_COUNTY_OR", - "label": "Grant County, OR" - }, - { - "value": "HARNEY_COUNTY_OR", - "label": "Harney County, OR" - }, - { - "value": "HOOD_RIVER_COUNTY_OR", - "label": "Hood River County, OR" - }, - { - "value": "JACKSON_COUNTY_OR", - "label": "Jackson County, OR" - }, - { - "value": "JEFFERSON_COUNTY_OR", - "label": "Jefferson County, OR" - }, - { - "value": "JOSEPHINE_COUNTY_OR", - "label": "Josephine County, OR" - }, - { - "value": "KLAMATH_COUNTY_OR", - "label": "Klamath County, OR" - }, - { - "value": "LAKE_COUNTY_OR", - "label": "Lake County, OR" - }, - { - "value": "LANE_COUNTY_OR", - "label": "Lane County, OR" - }, - { - "value": "LINCOLN_COUNTY_OR", - "label": "Lincoln County, OR" - }, - { - "value": "LINN_COUNTY_OR", - "label": "Linn County, OR" - }, - { - "value": "MALHEUR_COUNTY_OR", - "label": "Malheur County, OR" - }, - { - "value": "MARION_COUNTY_OR", - "label": "Marion County, OR" - }, - { - "value": "MORROW_COUNTY_OR", - "label": "Morrow County, OR" - }, - { - "value": "MULTNOMAH_COUNTY_OR", - "label": "Multnomah County, OR" - }, - { - "value": "POLK_COUNTY_OR", - "label": "Polk County, OR" - }, - { - "value": "SHERMAN_COUNTY_OR", - "label": "Sherman County, OR" - }, - { - "value": "TILLAMOOK_COUNTY_OR", - "label": "Tillamook County, OR" - }, - { - "value": "UMATILLA_COUNTY_OR", - "label": "Umatilla County, OR" - }, - { - "value": "UNION_COUNTY_OR", - "label": "Union County, OR" - }, - { - "value": "WALLOWA_COUNTY_OR", - "label": "Wallowa County, OR" - }, - { - "value": "WASCO_COUNTY_OR", - "label": "Wasco County, OR" - }, - { - "value": "WASHINGTON_COUNTY_OR", - "label": "Washington County, OR" - }, - { - "value": "WHEELER_COUNTY_OR", - "label": "Wheeler County, OR" - }, - { - "value": "YAMHILL_COUNTY_OR", - "label": "Yamhill County, OR" - }, - { - "value": "ADAMS_COUNTY_PA", - "label": "Adams County, PA" - }, - { - "value": "ALLEGHENY_COUNTY_PA", - "label": "Allegheny County, PA" - }, - { - "value": "ARMSTRONG_COUNTY_PA", - "label": "Armstrong County, PA" - }, - { - "value": "BEAVER_COUNTY_PA", - "label": "Beaver County, PA" - }, - { - "value": "BEDFORD_COUNTY_PA", - "label": "Bedford County, PA" - }, - { - "value": "BERKS_COUNTY_PA", - "label": "Berks County, PA" - }, - { - "value": "BLAIR_COUNTY_PA", - "label": "Blair County, PA" - }, - { - "value": "BRADFORD_COUNTY_PA", - "label": "Bradford County, PA" - }, - { - "value": "BUCKS_COUNTY_PA", - "label": "Bucks County, PA" - }, - { - "value": "BUTLER_COUNTY_PA", - "label": "Butler County, PA" - }, - { - "value": "CAMBRIA_COUNTY_PA", - "label": "Cambria County, PA" - }, - { - "value": "CAMERON_COUNTY_PA", - "label": "Cameron County, PA" - }, - { - "value": "CARBON_COUNTY_PA", - "label": "Carbon County, PA" - }, - { - "value": "CENTRE_COUNTY_PA", - "label": "Centre County, PA" - }, - { - "value": "CHESTER_COUNTY_PA", - "label": "Chester County, PA" - }, - { - "value": "CLARION_COUNTY_PA", - "label": "Clarion County, PA" - }, - { - "value": "CLEARFIELD_COUNTY_PA", - "label": "Clearfield County, PA" - }, - { - "value": "CLINTON_COUNTY_PA", - "label": "Clinton County, PA" - }, - { - "value": "COLUMBIA_COUNTY_PA", - "label": "Columbia County, PA" - }, - { - "value": "CRAWFORD_COUNTY_PA", - "label": "Crawford County, PA" - }, - { - "value": "CUMBERLAND_COUNTY_PA", - "label": "Cumberland County, PA" - }, - { - "value": "DAUPHIN_COUNTY_PA", - "label": "Dauphin County, PA" - }, - { - "value": "DELAWARE_COUNTY_PA", - "label": "Delaware County, PA" - }, - { - "value": "ELK_COUNTY_PA", - "label": "Elk County, PA" - }, - { - "value": "ERIE_COUNTY_PA", - "label": "Erie County, PA" - }, - { - "value": "FAYETTE_COUNTY_PA", - "label": "Fayette County, PA" - }, - { - "value": "FOREST_COUNTY_PA", - "label": "Forest County, PA" - }, - { - "value": "FRANKLIN_COUNTY_PA", - "label": "Franklin County, PA" - }, - { - "value": "FULTON_COUNTY_PA", - "label": "Fulton County, PA" - }, - { - "value": "GREENE_COUNTY_PA", - "label": "Greene County, PA" - }, - { - "value": "HUNTINGDON_COUNTY_PA", - "label": "Huntingdon County, PA" - }, - { - "value": "INDIANA_COUNTY_PA", - "label": "Indiana County, PA" - }, - { - "value": "JEFFERSON_COUNTY_PA", - "label": "Jefferson County, PA" - }, - { - "value": "JUNIATA_COUNTY_PA", - "label": "Juniata County, PA" - }, - { - "value": "LACKAWANNA_COUNTY_PA", - "label": "Lackawanna County, PA" - }, - { - "value": "LANCASTER_COUNTY_PA", - "label": "Lancaster County, PA" - }, - { - "value": "LAWRENCE_COUNTY_PA", - "label": "Lawrence County, PA" - }, - { - "value": "LEBANON_COUNTY_PA", - "label": "Lebanon County, PA" - }, - { - "value": "LEHIGH_COUNTY_PA", - "label": "Lehigh County, PA" - }, - { - "value": "LUZERNE_COUNTY_PA", - "label": "Luzerne County, PA" - }, - { - "value": "LYCOMING_COUNTY_PA", - "label": "Lycoming County, PA" - }, - { - "value": "MCKEAN_COUNTY_PA", - "label": "McKean County, PA" - }, - { - "value": "MERCER_COUNTY_PA", - "label": "Mercer County, PA" - }, - { - "value": "MIFFLIN_COUNTY_PA", - "label": "Mifflin County, PA" - }, - { - "value": "MONROE_COUNTY_PA", - "label": "Monroe County, PA" - }, - { - "value": "MONTGOMERY_COUNTY_PA", - "label": "Montgomery County, PA" - }, - { - "value": "MONTOUR_COUNTY_PA", - "label": "Montour County, PA" - }, - { - "value": "NORTHAMPTON_COUNTY_PA", - "label": "Northampton County, PA" - }, - { - "value": "NORTHUMBERLAND_COUNTY_PA", - "label": "Northumberland County, PA" - }, - { - "value": "PERRY_COUNTY_PA", - "label": "Perry County, PA" - }, - { - "value": "PHILADELPHIA_COUNTY_PA", - "label": "Philadelphia County, PA" - }, - { - "value": "PIKE_COUNTY_PA", - "label": "Pike County, PA" - }, - { - "value": "POTTER_COUNTY_PA", - "label": "Potter County, PA" - }, - { - "value": "SCHUYLKILL_COUNTY_PA", - "label": "Schuylkill County, PA" - }, - { - "value": "SNYDER_COUNTY_PA", - "label": "Snyder County, PA" - }, - { - "value": "SOMERSET_COUNTY_PA", - "label": "Somerset County, PA" - }, - { - "value": "SULLIVAN_COUNTY_PA", - "label": "Sullivan County, PA" - }, - { - "value": "SUSQUEHANNA_COUNTY_PA", - "label": "Susquehanna County, PA" - }, - { - "value": "TIOGA_COUNTY_PA", - "label": "Tioga County, PA" - }, - { - "value": "UNION_COUNTY_PA", - "label": "Union County, PA" - }, - { - "value": "VENANGO_COUNTY_PA", - "label": "Venango County, PA" - }, - { - "value": "WARREN_COUNTY_PA", - "label": "Warren County, PA" - }, - { - "value": "WASHINGTON_COUNTY_PA", - "label": "Washington County, PA" - }, - { - "value": "WAYNE_COUNTY_PA", - "label": "Wayne County, PA" - }, - { - "value": "WESTMORELAND_COUNTY_PA", - "label": "Westmoreland County, PA" - }, - { - "value": "WYOMING_COUNTY_PA", - "label": "Wyoming County, PA" - }, - { - "value": "YORK_COUNTY_PA", - "label": "York County, PA" - }, - { - "value": "ADJUNTAS_MUNICIPIO_PR", - "label": "Adjuntas Municipio, PR" - }, - { - "value": "AGUADA_MUNICIPIO_PR", - "label": "Aguada Municipio, PR" - }, - { - "value": "AGUADILLA_MUNICIPIO_PR", - "label": "Aguadilla Municipio, PR" - }, - { - "value": "AGUAS_BUENAS_MUNICIPIO_PR", - "label": "Aguas Buenas Municipio, PR" - }, - { - "value": "AIBONITO_MUNICIPIO_PR", - "label": "Aibonito Municipio, PR" - }, - { - "value": "ARECIBO_MUNICIPIO_PR", - "label": "Arecibo Municipio, PR" - }, - { - "value": "ARROYO_MUNICIPIO_PR", - "label": "Arroyo Municipio, PR" - }, - { - "value": "BARCELONETA_MUNICIPIO_PR", - "label": "Barceloneta Municipio, PR" - }, - { - "value": "BARRANQUITAS_MUNICIPIO_PR", - "label": "Barranquitas Municipio, PR" - }, - { - "value": "BAYAMÓN_MUNICIPIO_PR", - "label": "Bayamón Municipio, PR" - }, - { - "value": "CABO_ROJO_MUNICIPIO_PR", - "label": "Cabo Rojo Municipio, PR" - }, - { - "value": "CAGUAS_MUNICIPIO_PR", - "label": "Caguas Municipio, PR" - }, - { - "value": "CAROLINA_MUNICIPIO_PR", - "label": "Carolina Municipio, PR" - }, - { - "value": "CAYEY_MUNICIPIO_PR", - "label": "Cayey Municipio, PR" - }, - { - "value": "CEIBA_MUNICIPIO_PR", - "label": "Ceiba Municipio, PR" - }, - { - "value": "CIDRA_MUNICIPIO_PR", - "label": "Cidra Municipio, PR" - }, - { - "value": "COAMO_MUNICIPIO_PR", - "label": "Coamo Municipio, PR" - }, - { - "value": "COROZAL_MUNICIPIO_PR", - "label": "Corozal Municipio, PR" - }, - { - "value": "CULEBRA_MUNICIPIO_PR", - "label": "Culebra Municipio, PR" - }, - { - "value": "DORADO_MUNICIPIO_PR", - "label": "Dorado Municipio, PR" - }, - { - "value": "FAJARDO_MUNICIPIO_PR", - "label": "Fajardo Municipio, PR" - }, - { - "value": "FLORIDA_MUNICIPIO_PR", - "label": "Florida Municipio, PR" - }, - { - "value": "GUAYAMA_MUNICIPIO_PR", - "label": "Guayama Municipio, PR" - }, - { - "value": "GUAYANILLA_MUNICIPIO_PR", - "label": "Guayanilla Municipio, PR" - }, - { - "value": "GUAYNABO_MUNICIPIO_PR", - "label": "Guaynabo Municipio, PR" - }, - { - "value": "GURABO_MUNICIPIO_PR", - "label": "Gurabo Municipio, PR" - }, - { - "value": "GUÁNICA_MUNICIPIO_PR", - "label": "Guánica Municipio, PR" - }, - { - "value": "HATILLO_MUNICIPIO_PR", - "label": "Hatillo Municipio, PR" - }, - { - "value": "HORMIGUEROS_MUNICIPIO_PR", - "label": "Hormigueros Municipio, PR" - }, - { - "value": "HUMACAO_MUNICIPIO_PR", - "label": "Humacao Municipio, PR" - }, - { - "value": "ISABELA_MUNICIPIO_PR", - "label": "Isabela Municipio, PR" - }, - { - "value": "JAYUYA_MUNICIPIO_PR", - "label": "Jayuya Municipio, PR" - }, - { - "value": "JUANA_DÍAZ_MUNICIPIO_PR", - "label": "Juana Díaz Municipio, PR" - }, - { - "value": "LAJAS_MUNICIPIO_PR", - "label": "Lajas Municipio, PR" - }, - { - "value": "LAS_MARÍAS_MUNICIPIO_PR", - "label": "Las Marías Municipio, PR" - }, - { - "value": "LAS_PIEDRAS_MUNICIPIO_PR", - "label": "Las Piedras Municipio, PR" - }, - { - "value": "LOÍZA_MUNICIPIO_PR", - "label": "Loíza Municipio, PR" - }, - { - "value": "LUQUILLO_MUNICIPIO_PR", - "label": "Luquillo Municipio, PR" - }, - { - "value": "MANATÍ_MUNICIPIO_PR", - "label": "Manatí Municipio, PR" - }, - { - "value": "MARICAO_MUNICIPIO_PR", - "label": "Maricao Municipio, PR" - }, - { - "value": "MAUNABO_MUNICIPIO_PR", - "label": "Maunabo Municipio, PR" - }, - { - "value": "MAYAGÜEZ_MUNICIPIO_PR", - "label": "Mayagüez Municipio, PR" - }, - { - "value": "MOCA_MUNICIPIO_PR", - "label": "Moca Municipio, PR" - }, - { - "value": "MOROVIS_MUNICIPIO_PR", - "label": "Morovis Municipio, PR" - }, - { - "value": "NAGUABO_MUNICIPIO_PR", - "label": "Naguabo Municipio, PR" - }, - { - "value": "OROCOVIS_MUNICIPIO_PR", - "label": "Orocovis Municipio, PR" - }, - { - "value": "PEÑUELAS_MUNICIPIO_PR", - "label": "Peñuelas Municipio, PR" - }, - { - "value": "PONCE_MUNICIPIO_PR", - "label": "Ponce Municipio, PR" - }, - { - "value": "QUEBRADILLAS_MUNICIPIO_PR", - "label": "Quebradillas Municipio, PR" - }, - { - "value": "RÍO_GRANDE_MUNICIPIO_PR", - "label": "Río Grande Municipio, PR" - }, - { - "value": "SABANA_GRANDE_MUNICIPIO_PR", - "label": "Sabana Grande Municipio, PR" - }, - { - "value": "SAN_GERMÁN_MUNICIPIO_PR", - "label": "San Germán Municipio, PR" - }, - { - "value": "SAN_JUAN_MUNICIPIO_PR", - "label": "San Juan Municipio, PR" - }, - { - "value": "SAN_LORENZO_MUNICIPIO_PR", - "label": "San Lorenzo Municipio, PR" - }, - { - "value": "SANTA_ISABEL_MUNICIPIO_PR", - "label": "Santa Isabel Municipio, PR" - }, - { - "value": "TOA_ALTA_MUNICIPIO_PR", - "label": "Toa Alta Municipio, PR" - }, - { - "value": "TOA_BAJA_MUNICIPIO_PR", - "label": "Toa Baja Municipio, PR" - }, - { - "value": "TRUJILLO_ALTO_MUNICIPIO_PR", - "label": "Trujillo Alto Municipio, PR" - }, - { - "value": "UTUADO_MUNICIPIO_PR", - "label": "Utuado Municipio, PR" - }, - { - "value": "VEGA_BAJA_MUNICIPIO_PR", - "label": "Vega Baja Municipio, PR" - }, - { - "value": "VIEQUES_MUNICIPIO_PR", - "label": "Vieques Municipio, PR" - }, - { - "value": "YABUCOA_MUNICIPIO_PR", - "label": "Yabucoa Municipio, PR" - }, - { - "value": "BRISTOL_COUNTY_RI", - "label": "Bristol County, RI" - }, - { - "value": "KENT_COUNTY_RI", - "label": "Kent County, RI" - }, - { - "value": "NEWPORT_COUNTY_RI", - "label": "Newport County, RI" - }, - { - "value": "PROVIDENCE_COUNTY_RI", - "label": "Providence County, RI" - }, - { - "value": "WASHINGTON_COUNTY_RI", - "label": "Washington County, RI" - }, - { - "value": "ABBEVILLE_COUNTY_SC", - "label": "Abbeville County, SC" - }, - { - "value": "AIKEN_COUNTY_SC", - "label": "Aiken County, SC" - }, - { - "value": "ALLENDALE_COUNTY_SC", - "label": "Allendale County, SC" - }, - { - "value": "ANDERSON_COUNTY_SC", - "label": "Anderson County, SC" - }, - { - "value": "BAMBERG_COUNTY_SC", - "label": "Bamberg County, SC" - }, - { - "value": "BARNWELL_COUNTY_SC", - "label": "Barnwell County, SC" - }, - { - "value": "BEAUFORT_COUNTY_SC", - "label": "Beaufort County, SC" - }, - { - "value": "BERKELEY_COUNTY_SC", - "label": "Berkeley County, SC" - }, - { - "value": "CALHOUN_COUNTY_SC", - "label": "Calhoun County, SC" - }, - { - "value": "CHARLESTON_COUNTY_SC", - "label": "Charleston County, SC" - }, - { - "value": "CHEROKEE_COUNTY_SC", - "label": "Cherokee County, SC" - }, - { - "value": "CHESTER_COUNTY_SC", - "label": "Chester County, SC" - }, - { - "value": "CHESTERFIELD_COUNTY_SC", - "label": "Chesterfield County, SC" - }, - { - "value": "CLARENDON_COUNTY_SC", - "label": "Clarendon County, SC" - }, - { - "value": "COLLETON_COUNTY_SC", - "label": "Colleton County, SC" - }, - { - "value": "DARLINGTON_COUNTY_SC", - "label": "Darlington County, SC" - }, - { - "value": "DILLON_COUNTY_SC", - "label": "Dillon County, SC" - }, - { - "value": "DORCHESTER_COUNTY_SC", - "label": "Dorchester County, SC" - }, - { - "value": "EDGEFIELD_COUNTY_SC", - "label": "Edgefield County, SC" - }, - { - "value": "FAIRFIELD_COUNTY_SC", - "label": "Fairfield County, SC" - }, - { - "value": "FLORENCE_COUNTY_SC", - "label": "Florence County, SC" - }, - { - "value": "GEORGETOWN_COUNTY_SC", - "label": "Georgetown County, SC" - }, - { - "value": "GREENVILLE_COUNTY_SC", - "label": "Greenville County, SC" - }, - { - "value": "GREENWOOD_COUNTY_SC", - "label": "Greenwood County, SC" - }, - { - "value": "HAMPTON_COUNTY_SC", - "label": "Hampton County, SC" - }, - { - "value": "HORRY_COUNTY_SC", - "label": "Horry County, SC" - }, - { - "value": "JASPER_COUNTY_SC", - "label": "Jasper County, SC" - }, - { - "value": "KERSHAW_COUNTY_SC", - "label": "Kershaw County, SC" - }, - { - "value": "LANCASTER_COUNTY_SC", - "label": "Lancaster County, SC" - }, - { - "value": "LAURENS_COUNTY_SC", - "label": "Laurens County, SC" - }, - { - "value": "LEE_COUNTY_SC", - "label": "Lee County, SC" - }, - { - "value": "LEXINGTON_COUNTY_SC", - "label": "Lexington County, SC" - }, - { - "value": "MARION_COUNTY_SC", - "label": "Marion County, SC" - }, - { - "value": "MARLBORO_COUNTY_SC", - "label": "Marlboro County, SC" - }, - { - "value": "MCCORMICK_COUNTY_SC", - "label": "McCormick County, SC" - }, - { - "value": "NEWBERRY_COUNTY_SC", - "label": "Newberry County, SC" - }, - { - "value": "OCONEE_COUNTY_SC", - "label": "Oconee County, SC" - }, - { - "value": "ORANGEBURG_COUNTY_SC", - "label": "Orangeburg County, SC" - }, - { - "value": "PICKENS_COUNTY_SC", - "label": "Pickens County, SC" - }, - { - "value": "RICHLAND_COUNTY_SC", - "label": "Richland County, SC" - }, - { - "value": "SALUDA_COUNTY_SC", - "label": "Saluda County, SC" - }, - { - "value": "SPARTANBURG_COUNTY_SC", - "label": "Spartanburg County, SC" - }, - { - "value": "SUMTER_COUNTY_SC", - "label": "Sumter County, SC" - }, - { - "value": "UNION_COUNTY_SC", - "label": "Union County, SC" - }, - { - "value": "WILLIAMSBURG_COUNTY_SC", - "label": "Williamsburg County, SC" - }, - { - "value": "YORK_COUNTY_SC", - "label": "York County, SC" - }, - { - "value": "AURORA_COUNTY_SD", - "label": "Aurora County, SD" - }, - { - "value": "BEADLE_COUNTY_SD", - "label": "Beadle County, SD" - }, - { - "value": "BENNETT_COUNTY_SD", - "label": "Bennett County, SD" - }, - { - "value": "BON_HOMME_COUNTY_SD", - "label": "Bon Homme County, SD" - }, - { - "value": "BROOKINGS_COUNTY_SD", - "label": "Brookings County, SD" - }, - { - "value": "BROWN_COUNTY_SD", - "label": "Brown County, SD" - }, - { - "value": "BRULE_COUNTY_SD", - "label": "Brule County, SD" - }, - { - "value": "BUFFALO_COUNTY_SD", - "label": "Buffalo County, SD" - }, - { - "value": "BUTTE_COUNTY_SD", - "label": "Butte County, SD" - }, - { - "value": "CAMPBELL_COUNTY_SD", - "label": "Campbell County, SD" - }, - { - "value": "CARTER_COUNTY_SD", - "label": "Carter County, SD" - }, - { - "value": "CHARLES_MIX_COUNTY_SD", - "label": "Charles Mix County, SD" - }, - { - "value": "CLARK_COUNTY_SD", - "label": "Clark County, SD" - }, - { - "value": "CLAY_COUNTY_SD", - "label": "Clay County, SD" - }, - { - "value": "CODINGTON_COUNTY_SD", - "label": "Codington County, SD" - }, - { - "value": "CORSON_COUNTY_SD", - "label": "Corson County, SD" - }, - { - "value": "CUSTER_COUNTY_SD", - "label": "Custer County, SD" - }, - { - "value": "DAVISON_COUNTY_SD", - "label": "Davison County, SD" - }, - { - "value": "DAY_COUNTY_SD", - "label": "Day County, SD" - }, - { - "value": "DEUEL_COUNTY_SD", - "label": "Deuel County, SD" - }, - { - "value": "DEWEY_COUNTY_SD", - "label": "Dewey County, SD" - }, - { - "value": "DOUGLAS_COUNTY_SD", - "label": "Douglas County, SD" - }, - { - "value": "EDMUNDS_COUNTY_SD", - "label": "Edmunds County, SD" - }, - { - "value": "EMMONS_COUNTY_SD", - "label": "Emmons County, SD" - }, - { - "value": "FALL_RIVER_COUNTY_SD", - "label": "Fall River County, SD" - }, - { - "value": "FAULK_COUNTY_SD", - "label": "Faulk County, SD" - }, - { - "value": "GRANT_COUNTY_SD", - "label": "Grant County, SD" - }, - { - "value": "GREGORY_COUNTY_SD", - "label": "Gregory County, SD" - }, - { - "value": "HAAKON_COUNTY_SD", - "label": "Haakon County, SD" - }, - { - "value": "HAMLIN_COUNTY_SD", - "label": "Hamlin County, SD" - }, - { - "value": "HAND_COUNTY_SD", - "label": "Hand County, SD" - }, - { - "value": "HANSON_COUNTY_SD", - "label": "Hanson County, SD" - }, - { - "value": "HARDING_COUNTY_SD", - "label": "Harding County, SD" - }, - { - "value": "HUGHES_COUNTY_SD", - "label": "Hughes County, SD" - }, - { - "value": "HUTCHINSON_COUNTY_SD", - "label": "Hutchinson County, SD" - }, - { - "value": "HYDE_COUNTY_SD", - "label": "Hyde County, SD" - }, - { - "value": "JACKSON_COUNTY_SD", - "label": "Jackson County, SD" - }, - { - "value": "JERAULD_COUNTY_SD", - "label": "Jerauld County, SD" - }, - { - "value": "JONES_COUNTY_SD", - "label": "Jones County, SD" - }, - { - "value": "KINGSBURY_COUNTY_SD", - "label": "Kingsbury County, SD" - }, - { - "value": "LAKE_COUNTY_SD", - "label": "Lake County, SD" - }, - { - "value": "LAWRENCE_COUNTY_SD", - "label": "Lawrence County, SD" - }, - { - "value": "LINCOLN_COUNTY_SD", - "label": "Lincoln County, SD" - }, - { - "value": "LYMAN_COUNTY_SD", - "label": "Lyman County, SD" - }, - { - "value": "MARSHALL_COUNTY_SD", - "label": "Marshall County, SD" - }, - { - "value": "MCCOOK_COUNTY_SD", - "label": "McCook County, SD" - }, - { - "value": "MCPHERSON_COUNTY_SD", - "label": "McPherson County, SD" - }, - { - "value": "MEADE_COUNTY_SD", - "label": "Meade County, SD" - }, - { - "value": "MELLETTE_COUNTY_SD", - "label": "Mellette County, SD" - }, - { - "value": "MINER_COUNTY_SD", - "label": "Miner County, SD" - }, - { - "value": "MINNEHAHA_COUNTY_SD", - "label": "Minnehaha County, SD" - }, - { - "value": "MOODY_COUNTY_SD", - "label": "Moody County, SD" - }, - { - "value": "OGLALA_LAKOTA_COUNTY_SD", - "label": "Oglala Lakota County, SD" - }, - { - "value": "PENNINGTON_COUNTY_SD", - "label": "Pennington County, SD" - }, - { - "value": "PERKINS_COUNTY_SD", - "label": "Perkins County, SD" - }, - { - "value": "POTTER_COUNTY_SD", - "label": "Potter County, SD" - }, - { - "value": "RICHLAND_COUNTY_SD", - "label": "Richland County, SD" - }, - { - "value": "ROBERTS_COUNTY_SD", - "label": "Roberts County, SD" - }, - { - "value": "ROCK_COUNTY_SD", - "label": "Rock County, SD" - }, - { - "value": "SANBORN_COUNTY_SD", - "label": "Sanborn County, SD" - }, - { - "value": "SIOUX_COUNTY_SD", - "label": "Sioux County, SD" - }, - { - "value": "SPINK_COUNTY_SD", - "label": "Spink County, SD" - }, - { - "value": "STANLEY_COUNTY_SD", - "label": "Stanley County, SD" - }, - { - "value": "SULLY_COUNTY_SD", - "label": "Sully County, SD" - }, - { - "value": "TODD_COUNTY_SD", - "label": "Todd County, SD" - }, - { - "value": "TRIPP_COUNTY_SD", - "label": "Tripp County, SD" - }, - { - "value": "TURNER_COUNTY_SD", - "label": "Turner County, SD" - }, - { - "value": "UNION_COUNTY_SD", - "label": "Union County, SD" - }, - { - "value": "WALWORTH_COUNTY_SD", - "label": "Walworth County, SD" - }, - { - "value": "YANKTON_COUNTY_SD", - "label": "Yankton County, SD" - }, - { - "value": "ZIEBACH_COUNTY_SD", - "label": "Ziebach County, SD" - }, - { - "value": "ANDERSON_COUNTY_TN", - "label": "Anderson County, TN" - }, - { - "value": "BEDFORD_COUNTY_TN", - "label": "Bedford County, TN" - }, - { - "value": "BENTON_COUNTY_TN", - "label": "Benton County, TN" - }, - { - "value": "BLEDSOE_COUNTY_TN", - "label": "Bledsoe County, TN" - }, - { - "value": "BLOUNT_COUNTY_TN", - "label": "Blount County, TN" - }, - { - "value": "BRADLEY_COUNTY_TN", - "label": "Bradley County, TN" - }, - { - "value": "CAMPBELL_COUNTY_TN", - "label": "Campbell County, TN" - }, - { - "value": "CANNON_COUNTY_TN", - "label": "Cannon County, TN" - }, - { - "value": "CARROLL_COUNTY_TN", - "label": "Carroll County, TN" - }, - { - "value": "CARTER_COUNTY_TN", - "label": "Carter County, TN" - }, - { - "value": "CHEATHAM_COUNTY_TN", - "label": "Cheatham County, TN" - }, - { - "value": "CHESTER_COUNTY_TN", - "label": "Chester County, TN" - }, - { - "value": "CLAIBORNE_COUNTY_TN", - "label": "Claiborne County, TN" - }, - { - "value": "CLAY_COUNTY_TN", - "label": "Clay County, TN" - }, - { - "value": "CLINTON_COUNTY_TN", - "label": "Clinton County, TN" - }, - { - "value": "COCKE_COUNTY_TN", - "label": "Cocke County, TN" - }, - { - "value": "COFFEE_COUNTY_TN", - "label": "Coffee County, TN" - }, - { - "value": "CROCKETT_COUNTY_TN", - "label": "Crockett County, TN" - }, - { - "value": "CUMBERLAND_COUNTY_TN", - "label": "Cumberland County, TN" - }, - { - "value": "DAVIDSON_COUNTY_TN", - "label": "Davidson County, TN" - }, - { - "value": "DEKALB_COUNTY_TN", - "label": "DeKalb County, TN" - }, - { - "value": "DECATUR_COUNTY_TN", - "label": "Decatur County, TN" - }, - { - "value": "DICKSON_COUNTY_TN", - "label": "Dickson County, TN" - }, - { - "value": "DYER_COUNTY_TN", - "label": "Dyer County, TN" - }, - { - "value": "FAYETTE_COUNTY_TN", - "label": "Fayette County, TN" - }, - { - "value": "FENTRESS_COUNTY_TN", - "label": "Fentress County, TN" - }, - { - "value": "FRANKLIN_COUNTY_TN", - "label": "Franklin County, TN" - }, - { - "value": "FULTON_COUNTY_TN", - "label": "Fulton County, TN" - }, - { - "value": "GIBSON_COUNTY_TN", - "label": "Gibson County, TN" - }, - { - "value": "GILES_COUNTY_TN", - "label": "Giles County, TN" - }, - { - "value": "GRAINGER_COUNTY_TN", - "label": "Grainger County, TN" - }, - { - "value": "GREENE_COUNTY_TN", - "label": "Greene County, TN" - }, - { - "value": "GRUNDY_COUNTY_TN", - "label": "Grundy County, TN" - }, - { - "value": "HAMBLEN_COUNTY_TN", - "label": "Hamblen County, TN" - }, - { - "value": "HAMILTON_COUNTY_TN", - "label": "Hamilton County, TN" - }, - { - "value": "HANCOCK_COUNTY_TN", - "label": "Hancock County, TN" - }, - { - "value": "HARDEMAN_COUNTY_TN", - "label": "Hardeman County, TN" - }, - { - "value": "HARDIN_COUNTY_TN", - "label": "Hardin County, TN" - }, - { - "value": "HAWKINS_COUNTY_TN", - "label": "Hawkins County, TN" - }, - { - "value": "HAYWOOD_COUNTY_TN", - "label": "Haywood County, TN" - }, - { - "value": "HENDERSON_COUNTY_TN", - "label": "Henderson County, TN" - }, - { - "value": "HENRY_COUNTY_TN", - "label": "Henry County, TN" - }, - { - "value": "HICKMAN_COUNTY_TN", - "label": "Hickman County, TN" - }, - { - "value": "HOUSTON_COUNTY_TN", - "label": "Houston County, TN" - }, - { - "value": "HUMPHREYS_COUNTY_TN", - "label": "Humphreys County, TN" - }, - { - "value": "JACKSON_COUNTY_TN", - "label": "Jackson County, TN" - }, - { - "value": "JEFFERSON_COUNTY_TN", - "label": "Jefferson County, TN" - }, - { - "value": "JOHNSON_COUNTY_TN", - "label": "Johnson County, TN" - }, - { - "value": "KNOX_COUNTY_TN", - "label": "Knox County, TN" - }, - { - "value": "LAKE_COUNTY_TN", - "label": "Lake County, TN" - }, - { - "value": "LAUDERDALE_COUNTY_TN", - "label": "Lauderdale County, TN" - }, - { - "value": "LAWRENCE_COUNTY_TN", - "label": "Lawrence County, TN" - }, - { - "value": "LEE_COUNTY_TN", - "label": "Lee County, TN" - }, - { - "value": "LEWIS_COUNTY_TN", - "label": "Lewis County, TN" - }, - { - "value": "LINCOLN_COUNTY_TN", - "label": "Lincoln County, TN" - }, - { - "value": "LOUDON_COUNTY_TN", - "label": "Loudon County, TN" - }, - { - "value": "MACON_COUNTY_TN", - "label": "Macon County, TN" - }, - { - "value": "MADISON_COUNTY_TN", - "label": "Madison County, TN" - }, - { - "value": "MARION_COUNTY_TN", - "label": "Marion County, TN" - }, - { - "value": "MARSHALL_COUNTY_TN", - "label": "Marshall County, TN" - }, - { - "value": "MAURY_COUNTY_TN", - "label": "Maury County, TN" - }, - { - "value": "MCMINN_COUNTY_TN", - "label": "McMinn County, TN" - }, - { - "value": "MCNAIRY_COUNTY_TN", - "label": "McNairy County, TN" - }, - { - "value": "MEIGS_COUNTY_TN", - "label": "Meigs County, TN" - }, - { - "value": "MONROE_COUNTY_TN", - "label": "Monroe County, TN" - }, - { - "value": "MONTGOMERY_COUNTY_TN", - "label": "Montgomery County, TN" - }, - { - "value": "MOORE_COUNTY_TN", - "label": "Moore County, TN" - }, - { - "value": "MORGAN_COUNTY_TN", - "label": "Morgan County, TN" - }, - { - "value": "OBION_COUNTY_TN", - "label": "Obion County, TN" - }, - { - "value": "OVERTON_COUNTY_TN", - "label": "Overton County, TN" - }, - { - "value": "PERRY_COUNTY_TN", - "label": "Perry County, TN" - }, - { - "value": "PICKETT_COUNTY_TN", - "label": "Pickett County, TN" - }, - { - "value": "POLK_COUNTY_TN", - "label": "Polk County, TN" - }, - { - "value": "PUTNAM_COUNTY_TN", - "label": "Putnam County, TN" - }, - { - "value": "RHEA_COUNTY_TN", - "label": "Rhea County, TN" - }, - { - "value": "ROANE_COUNTY_TN", - "label": "Roane County, TN" - }, - { - "value": "ROBERTSON_COUNTY_TN", - "label": "Robertson County, TN" - }, - { - "value": "RUTHERFORD_COUNTY_TN", - "label": "Rutherford County, TN" - }, - { - "value": "SCOTT_COUNTY_TN", - "label": "Scott County, TN" - }, - { - "value": "SEQUATCHIE_COUNTY_TN", - "label": "Sequatchie County, TN" - }, - { - "value": "SEVIER_COUNTY_TN", - "label": "Sevier County, TN" - }, - { - "value": "SHELBY_COUNTY_TN", - "label": "Shelby County, TN" - }, - { - "value": "SMITH_COUNTY_TN", - "label": "Smith County, TN" - }, - { - "value": "STEWART_COUNTY_TN", - "label": "Stewart County, TN" - }, - { - "value": "SULLIVAN_COUNTY_TN", - "label": "Sullivan County, TN" - }, - { - "value": "SUMNER_COUNTY_TN", - "label": "Sumner County, TN" - }, - { - "value": "TIPTON_COUNTY_TN", - "label": "Tipton County, TN" - }, - { - "value": "TROUSDALE_COUNTY_TN", - "label": "Trousdale County, TN" - }, - { - "value": "UNICOI_COUNTY_TN", - "label": "Unicoi County, TN" - }, - { - "value": "UNION_COUNTY_TN", - "label": "Union County, TN" - }, - { - "value": "VAN_BUREN_COUNTY_TN", - "label": "Van Buren County, TN" - }, - { - "value": "WARREN_COUNTY_TN", - "label": "Warren County, TN" - }, - { - "value": "WASHINGTON_COUNTY_TN", - "label": "Washington County, TN" - }, - { - "value": "WAYNE_COUNTY_TN", - "label": "Wayne County, TN" - }, - { - "value": "WEAKLEY_COUNTY_TN", - "label": "Weakley County, TN" - }, - { - "value": "WHITE_COUNTY_TN", - "label": "White County, TN" - }, - { - "value": "WILLIAMSON_COUNTY_TN", - "label": "Williamson County, TN" - }, - { - "value": "WILSON_COUNTY_TN", - "label": "Wilson County, TN" - }, - { - "value": "ANDERSON_COUNTY_TX", - "label": "Anderson County, TX" - }, - { - "value": "ANDREWS_COUNTY_TX", - "label": "Andrews County, TX" - }, - { - "value": "ANGELINA_COUNTY_TX", - "label": "Angelina County, TX" - }, - { - "value": "ARANSAS_COUNTY_TX", - "label": "Aransas County, TX" - }, - { - "value": "ARCHER_COUNTY_TX", - "label": "Archer County, TX" - }, - { - "value": "ARMSTRONG_COUNTY_TX", - "label": "Armstrong County, TX" - }, - { - "value": "ATASCOSA_COUNTY_TX", - "label": "Atascosa County, TX" - }, - { - "value": "AUSTIN_COUNTY_TX", - "label": "Austin County, TX" - }, - { - "value": "BAILEY_COUNTY_TX", - "label": "Bailey County, TX" - }, - { - "value": "BANDERA_COUNTY_TX", - "label": "Bandera County, TX" - }, - { - "value": "BASTROP_COUNTY_TX", - "label": "Bastrop County, TX" - }, - { - "value": "BEE_COUNTY_TX", - "label": "Bee County, TX" - }, - { - "value": "BELL_COUNTY_TX", - "label": "Bell County, TX" - }, - { - "value": "BEXAR_COUNTY_TX", - "label": "Bexar County, TX" - }, - { - "value": "BLANCO_COUNTY_TX", - "label": "Blanco County, TX" - }, - { - "value": "BORDEN_COUNTY_TX", - "label": "Borden County, TX" - }, - { - "value": "BOSQUE_COUNTY_TX", - "label": "Bosque County, TX" - }, - { - "value": "BOWIE_COUNTY_TX", - "label": "Bowie County, TX" - }, - { - "value": "BRAZORIA_COUNTY_TX", - "label": "Brazoria County, TX" - }, - { - "value": "BRAZOS_COUNTY_TX", - "label": "Brazos County, TX" - }, - { - "value": "BREWSTER_COUNTY_TX", - "label": "Brewster County, TX" - }, - { - "value": "BRISCOE_COUNTY_TX", - "label": "Briscoe County, TX" - }, - { - "value": "BROOKS_COUNTY_TX", - "label": "Brooks County, TX" - }, - { - "value": "BROWN_COUNTY_TX", - "label": "Brown County, TX" - }, - { - "value": "BURLESON_COUNTY_TX", - "label": "Burleson County, TX" - }, - { - "value": "BURNET_COUNTY_TX", - "label": "Burnet County, TX" - }, - { - "value": "CALDWELL_COUNTY_TX", - "label": "Caldwell County, TX" - }, - { - "value": "CALHOUN_COUNTY_TX", - "label": "Calhoun County, TX" - }, - { - "value": "CALLAHAN_COUNTY_TX", - "label": "Callahan County, TX" - }, - { - "value": "CAMERON_COUNTY_TX", - "label": "Cameron County, TX" - }, - { - "value": "CAMP_COUNTY_TX", - "label": "Camp County, TX" - }, - { - "value": "CARSON_COUNTY_TX", - "label": "Carson County, TX" - }, - { - "value": "CASS_COUNTY_TX", - "label": "Cass County, TX" - }, - { - "value": "CASTRO_COUNTY_TX", - "label": "Castro County, TX" - }, - { - "value": "CHAMBERS_COUNTY_TX", - "label": "Chambers County, TX" - }, - { - "value": "CHEROKEE_COUNTY_TX", - "label": "Cherokee County, TX" - }, - { - "value": "CHILDRESS_COUNTY_TX", - "label": "Childress County, TX" - }, - { - "value": "CLAY_COUNTY_TX", - "label": "Clay County, TX" - }, - { - "value": "COCHRAN_COUNTY_TX", - "label": "Cochran County, TX" - }, - { - "value": "COKE_COUNTY_TX", - "label": "Coke County, TX" - }, - { - "value": "COLEMAN_COUNTY_TX", - "label": "Coleman County, TX" - }, - { - "value": "COLLIN_COUNTY_TX", - "label": "Collin County, TX" - }, - { - "value": "COLLINGSWORTH_COUNTY_TX", - "label": "Collingsworth County, TX" - }, - { - "value": "COLORADO_COUNTY_TX", - "label": "Colorado County, TX" - }, - { - "value": "COMAL_COUNTY_TX", - "label": "Comal County, TX" - }, - { - "value": "COMANCHE_COUNTY_TX", - "label": "Comanche County, TX" - }, - { - "value": "CONCHO_COUNTY_TX", - "label": "Concho County, TX" - }, - { - "value": "COOKE_COUNTY_TX", - "label": "Cooke County, TX" - }, - { - "value": "CORYELL_COUNTY_TX", - "label": "Coryell County, TX" - }, - { - "value": "COTTLE_COUNTY_TX", - "label": "Cottle County, TX" - }, - { - "value": "CRANE_COUNTY_TX", - "label": "Crane County, TX" - }, - { - "value": "CROCKETT_COUNTY_TX", - "label": "Crockett County, TX" - }, - { - "value": "CROSBY_COUNTY_TX", - "label": "Crosby County, TX" - }, - { - "value": "CULBERSON_COUNTY_TX", - "label": "Culberson County, TX" - }, - { - "value": "DALLAM_COUNTY_TX", - "label": "Dallam County, TX" - }, - { - "value": "DALLAS_COUNTY_TX", - "label": "Dallas County, TX" - }, - { - "value": "DAWSON_COUNTY_TX", - "label": "Dawson County, TX" - }, - { - "value": "DEWITT_COUNTY_TX", - "label": "DeWitt County, TX" - }, - { - "value": "DEAF_SMITH_COUNTY_TX", - "label": "Deaf Smith County, TX" - }, - { - "value": "DELTA_COUNTY_TX", - "label": "Delta County, TX" - }, - { - "value": "DENTON_COUNTY_TX", - "label": "Denton County, TX" - }, - { - "value": "DICKENS_COUNTY_TX", - "label": "Dickens County, TX" - }, - { - "value": "DIMMIT_COUNTY_TX", - "label": "Dimmit County, TX" - }, - { - "value": "DONLEY_COUNTY_TX", - "label": "Donley County, TX" - }, - { - "value": "DOÑA_ANA_COUNTY_TX", - "label": "Doña Ana County, TX" - }, - { - "value": "DUVAL_COUNTY_TX", - "label": "Duval County, TX" - }, - { - "value": "EASTLAND_COUNTY_TX", - "label": "Eastland County, TX" - }, - { - "value": "ECTOR_COUNTY_TX", - "label": "Ector County, TX" - }, - { - "value": "EDWARDS_COUNTY_TX", - "label": "Edwards County, TX" - }, - { - "value": "EL_PASO_COUNTY_TX", - "label": "El Paso County, TX" - }, - { - "value": "ELLIS_COUNTY_TX", - "label": "Ellis County, TX" - }, - { - "value": "ERATH_COUNTY_TX", - "label": "Erath County, TX" - }, - { - "value": "FALLS_COUNTY_TX", - "label": "Falls County, TX" - }, - { - "value": "FANNIN_COUNTY_TX", - "label": "Fannin County, TX" - }, - { - "value": "FAYETTE_COUNTY_TX", - "label": "Fayette County, TX" - }, - { - "value": "FISHER_COUNTY_TX", - "label": "Fisher County, TX" - }, - { - "value": "FLOYD_COUNTY_TX", - "label": "Floyd County, TX" - }, - { - "value": "FOARD_COUNTY_TX", - "label": "Foard County, TX" - }, - { - "value": "FORT_BEND_COUNTY_TX", - "label": "Fort Bend County, TX" - }, - { - "value": "FRANKLIN_COUNTY_TX", - "label": "Franklin County, TX" - }, - { - "value": "FREESTONE_COUNTY_TX", - "label": "Freestone County, TX" - }, - { - "value": "FRIO_COUNTY_TX", - "label": "Frio County, TX" - }, - { - "value": "GAINES_COUNTY_TX", - "label": "Gaines County, TX" - }, - { - "value": "GALVESTON_COUNTY_TX", - "label": "Galveston County, TX" - }, - { - "value": "GARZA_COUNTY_TX", - "label": "Garza County, TX" - }, - { - "value": "GILLESPIE_COUNTY_TX", - "label": "Gillespie County, TX" - }, - { - "value": "GLASSCOCK_COUNTY_TX", - "label": "Glasscock County, TX" - }, - { - "value": "GOLIAD_COUNTY_TX", - "label": "Goliad County, TX" - }, - { - "value": "GONZALES_COUNTY_TX", - "label": "Gonzales County, TX" - }, - { - "value": "GRAY_COUNTY_TX", - "label": "Gray County, TX" - }, - { - "value": "GRAYSON_COUNTY_TX", - "label": "Grayson County, TX" - }, - { - "value": "GREGG_COUNTY_TX", - "label": "Gregg County, TX" - }, - { - "value": "GRIMES_COUNTY_TX", - "label": "Grimes County, TX" - }, - { - "value": "GUADALUPE_COUNTY_TX", - "label": "Guadalupe County, TX" - }, - { - "value": "HALE_COUNTY_TX", - "label": "Hale County, TX" - }, - { - "value": "HALL_COUNTY_TX", - "label": "Hall County, TX" - }, - { - "value": "HAMILTON_COUNTY_TX", - "label": "Hamilton County, TX" - }, - { - "value": "HANSFORD_COUNTY_TX", - "label": "Hansford County, TX" - }, - { - "value": "HARDIN_COUNTY_TX", - "label": "Hardin County, TX" - }, - { - "value": "HARRIS_COUNTY_TX", - "label": "Harris County, TX" - }, - { - "value": "HARRISON_COUNTY_TX", - "label": "Harrison County, TX" - }, - { - "value": "HARTLEY_COUNTY_TX", - "label": "Hartley County, TX" - }, - { - "value": "HASKELL_COUNTY_TX", - "label": "Haskell County, TX" - }, - { - "value": "HAYS_COUNTY_TX", - "label": "Hays County, TX" - }, - { - "value": "HENDERSON_COUNTY_TX", - "label": "Henderson County, TX" - }, - { - "value": "HIDALGO_COUNTY_TX", - "label": "Hidalgo County, TX" - }, - { - "value": "HILL_COUNTY_TX", - "label": "Hill County, TX" - }, - { - "value": "HOCKLEY_COUNTY_TX", - "label": "Hockley County, TX" - }, - { - "value": "HOOD_COUNTY_TX", - "label": "Hood County, TX" - }, - { - "value": "HOPKINS_COUNTY_TX", - "label": "Hopkins County, TX" - }, - { - "value": "HOUSTON_COUNTY_TX", - "label": "Houston County, TX" - }, - { - "value": "HOWARD_COUNTY_TX", - "label": "Howard County, TX" - }, - { - "value": "HUDSPETH_COUNTY_TX", - "label": "Hudspeth County, TX" - }, - { - "value": "HUNT_COUNTY_TX", - "label": "Hunt County, TX" - }, - { - "value": "HUTCHINSON_COUNTY_TX", - "label": "Hutchinson County, TX" - }, - { - "value": "IRION_COUNTY_TX", - "label": "Irion County, TX" - }, - { - "value": "JACK_COUNTY_TX", - "label": "Jack County, TX" - }, - { - "value": "JACKSON_COUNTY_TX", - "label": "Jackson County, TX" - }, - { - "value": "JASPER_COUNTY_TX", - "label": "Jasper County, TX" - }, - { - "value": "JEFF_DAVIS_COUNTY_TX", - "label": "Jeff Davis County, TX" - }, - { - "value": "JEFFERSON_COUNTY_TX", - "label": "Jefferson County, TX" - }, - { - "value": "JIM_WELLS_COUNTY_TX", - "label": "Jim Wells County, TX" - }, - { - "value": "JOHNSON_COUNTY_TX", - "label": "Johnson County, TX" - }, - { - "value": "JONES_COUNTY_TX", - "label": "Jones County, TX" - }, - { - "value": "KARNES_COUNTY_TX", - "label": "Karnes County, TX" - }, - { - "value": "KAUFMAN_COUNTY_TX", - "label": "Kaufman County, TX" - }, - { - "value": "KENDALL_COUNTY_TX", - "label": "Kendall County, TX" - }, - { - "value": "KENEDY_COUNTY_TX", - "label": "Kenedy County, TX" - }, - { - "value": "KENT_COUNTY_TX", - "label": "Kent County, TX" - }, - { - "value": "KERR_COUNTY_TX", - "label": "Kerr County, TX" - }, - { - "value": "KING_COUNTY_TX", - "label": "King County, TX" - }, - { - "value": "KINNEY_COUNTY_TX", - "label": "Kinney County, TX" - }, - { - "value": "KLEBERG_COUNTY_TX", - "label": "Kleberg County, TX" - }, - { - "value": "KNOX_COUNTY_TX", - "label": "Knox County, TX" - }, - { - "value": "LA_SALLE_COUNTY_TX", - "label": "La Salle County, TX" - }, - { - "value": "LAMAR_COUNTY_TX", - "label": "Lamar County, TX" - }, - { - "value": "LAMB_COUNTY_TX", - "label": "Lamb County, TX" - }, - { - "value": "LAMPASAS_COUNTY_TX", - "label": "Lampasas County, TX" - }, - { - "value": "LAVACA_COUNTY_TX", - "label": "Lavaca County, TX" - }, - { - "value": "LEE_COUNTY_TX", - "label": "Lee County, TX" - }, - { - "value": "LEON_COUNTY_TX", - "label": "Leon County, TX" - }, - { - "value": "LIBERTY_COUNTY_TX", - "label": "Liberty County, TX" - }, - { - "value": "LIMESTONE_COUNTY_TX", - "label": "Limestone County, TX" - }, - { - "value": "LIPSCOMB_COUNTY_TX", - "label": "Lipscomb County, TX" - }, - { - "value": "LIVE_OAK_COUNTY_TX", - "label": "Live Oak County, TX" - }, - { - "value": "LLANO_COUNTY_TX", - "label": "Llano County, TX" - }, - { - "value": "LOVING_COUNTY_TX", - "label": "Loving County, TX" - }, - { - "value": "LUBBOCK_COUNTY_TX", - "label": "Lubbock County, TX" - }, - { - "value": "LYNN_COUNTY_TX", - "label": "Lynn County, TX" - }, - { - "value": "MADISON_COUNTY_TX", - "label": "Madison County, TX" - }, - { - "value": "MARION_COUNTY_TX", - "label": "Marion County, TX" - }, - { - "value": "MARTIN_COUNTY_TX", - "label": "Martin County, TX" - }, - { - "value": "MASON_COUNTY_TX", - "label": "Mason County, TX" - }, - { - "value": "MATAGORDA_COUNTY_TX", - "label": "Matagorda County, TX" - }, - { - "value": "MAVERICK_COUNTY_TX", - "label": "Maverick County, TX" - }, - { - "value": "MCCULLOCH_COUNTY_TX", - "label": "McCulloch County, TX" - }, - { - "value": "MCLENNAN_COUNTY_TX", - "label": "McLennan County, TX" - }, - { - "value": "MCMULLEN_COUNTY_TX", - "label": "McMullen County, TX" - }, - { - "value": "MEDINA_COUNTY_TX", - "label": "Medina County, TX" - }, - { - "value": "MENARD_COUNTY_TX", - "label": "Menard County, TX" - }, - { - "value": "MIDLAND_COUNTY_TX", - "label": "Midland County, TX" - }, - { - "value": "MILAM_COUNTY_TX", - "label": "Milam County, TX" - }, - { - "value": "MILLER_COUNTY_TX", - "label": "Miller County, TX" - }, - { - "value": "MILLS_COUNTY_TX", - "label": "Mills County, TX" - }, - { - "value": "MITCHELL_COUNTY_TX", - "label": "Mitchell County, TX" - }, - { - "value": "MONTAGUE_COUNTY_TX", - "label": "Montague County, TX" - }, - { - "value": "MONTGOMERY_COUNTY_TX", - "label": "Montgomery County, TX" - }, - { - "value": "MOORE_COUNTY_TX", - "label": "Moore County, TX" - }, - { - "value": "MORRIS_COUNTY_TX", - "label": "Morris County, TX" - }, - { - "value": "MOTLEY_COUNTY_TX", - "label": "Motley County, TX" - }, - { - "value": "NACOGDOCHES_COUNTY_TX", - "label": "Nacogdoches County, TX" - }, - { - "value": "NAVARRO_COUNTY_TX", - "label": "Navarro County, TX" - }, - { - "value": "NEWTON_COUNTY_TX", - "label": "Newton County, TX" - }, - { - "value": "NOLAN_COUNTY_TX", - "label": "Nolan County, TX" - }, - { - "value": "NUECES_COUNTY_TX", - "label": "Nueces County, TX" - }, - { - "value": "OCHILTREE_COUNTY_TX", - "label": "Ochiltree County, TX" - }, - { - "value": "OLDHAM_COUNTY_TX", - "label": "Oldham County, TX" - }, - { - "value": "ORANGE_COUNTY_TX", - "label": "Orange County, TX" - }, - { - "value": "PALO_PINTO_COUNTY_TX", - "label": "Palo Pinto County, TX" - }, - { - "value": "PANOLA_COUNTY_TX", - "label": "Panola County, TX" - }, - { - "value": "PARKER_COUNTY_TX", - "label": "Parker County, TX" - }, - { - "value": "PARMER_COUNTY_TX", - "label": "Parmer County, TX" - }, - { - "value": "PECOS_COUNTY_TX", - "label": "Pecos County, TX" - }, - { - "value": "POLK_COUNTY_TX", - "label": "Polk County, TX" - }, - { - "value": "POTTER_COUNTY_TX", - "label": "Potter County, TX" - }, - { - "value": "PRESIDIO_COUNTY_TX", - "label": "Presidio County, TX" - }, - { - "value": "RAINS_COUNTY_TX", - "label": "Rains County, TX" - }, - { - "value": "RANDALL_COUNTY_TX", - "label": "Randall County, TX" - }, - { - "value": "REAL_COUNTY_TX", - "label": "Real County, TX" - }, - { - "value": "RED_RIVER_COUNTY_TX", - "label": "Red River County, TX" - }, - { - "value": "REEVES_COUNTY_TX", - "label": "Reeves County, TX" - }, - { - "value": "REFUGIO_COUNTY_TX", - "label": "Refugio County, TX" - }, - { - "value": "ROBERTS_COUNTY_TX", - "label": "Roberts County, TX" - }, - { - "value": "ROBERTSON_COUNTY_TX", - "label": "Robertson County, TX" - }, - { - "value": "ROCKWALL_COUNTY_TX", - "label": "Rockwall County, TX" - }, - { - "value": "RUNNELS_COUNTY_TX", - "label": "Runnels County, TX" - }, - { - "value": "RUSK_COUNTY_TX", - "label": "Rusk County, TX" - }, - { - "value": "SABINE_COUNTY_TX", - "label": "Sabine County, TX" - }, - { - "value": "SAN_AUGUSTINE_COUNTY_TX", - "label": "San Augustine County, TX" - }, - { - "value": "SAN_JACINTO_COUNTY_TX", - "label": "San Jacinto County, TX" - }, - { - "value": "SAN_PATRICIO_COUNTY_TX", - "label": "San Patricio County, TX" - }, - { - "value": "SAN_SABA_COUNTY_TX", - "label": "San Saba County, TX" - }, - { - "value": "SCHLEICHER_COUNTY_TX", - "label": "Schleicher County, TX" - }, - { - "value": "SCURRY_COUNTY_TX", - "label": "Scurry County, TX" - }, - { - "value": "SHACKELFORD_COUNTY_TX", - "label": "Shackelford County, TX" - }, - { - "value": "SHELBY_COUNTY_TX", - "label": "Shelby County, TX" - }, - { - "value": "SHERMAN_COUNTY_TX", - "label": "Sherman County, TX" - }, - { - "value": "SMITH_COUNTY_TX", - "label": "Smith County, TX" - }, - { - "value": "SOMERVELL_COUNTY_TX", - "label": "Somervell County, TX" - }, - { - "value": "STARR_COUNTY_TX", - "label": "Starr County, TX" - }, - { - "value": "STEPHENS_COUNTY_TX", - "label": "Stephens County, TX" - }, - { - "value": "STERLING_COUNTY_TX", - "label": "Sterling County, TX" - }, - { - "value": "STONEWALL_COUNTY_TX", - "label": "Stonewall County, TX" - }, - { - "value": "SUTTON_COUNTY_TX", - "label": "Sutton County, TX" - }, - { - "value": "SWISHER_COUNTY_TX", - "label": "Swisher County, TX" - }, - { - "value": "TARRANT_COUNTY_TX", - "label": "Tarrant County, TX" - }, - { - "value": "TAYLOR_COUNTY_TX", - "label": "Taylor County, TX" - }, - { - "value": "TERRELL_COUNTY_TX", - "label": "Terrell County, TX" - }, - { - "value": "TERRY_COUNTY_TX", - "label": "Terry County, TX" - }, - { - "value": "THROCKMORTON_COUNTY_TX", - "label": "Throckmorton County, TX" - }, - { - "value": "TITUS_COUNTY_TX", - "label": "Titus County, TX" - }, - { - "value": "TOM_GREEN_COUNTY_TX", - "label": "Tom Green County, TX" - }, - { - "value": "TRAVIS_COUNTY_TX", - "label": "Travis County, TX" - }, - { - "value": "TRINITY_COUNTY_TX", - "label": "Trinity County, TX" - }, - { - "value": "TYLER_COUNTY_TX", - "label": "Tyler County, TX" - }, - { - "value": "UPSHUR_COUNTY_TX", - "label": "Upshur County, TX" - }, - { - "value": "UPTON_COUNTY_TX", - "label": "Upton County, TX" - }, - { - "value": "UVALDE_COUNTY_TX", - "label": "Uvalde County, TX" - }, - { - "value": "VAL_VERDE_COUNTY_TX", - "label": "Val Verde County, TX" - }, - { - "value": "VAN_ZANDT_COUNTY_TX", - "label": "Van Zandt County, TX" - }, - { - "value": "VICTORIA_COUNTY_TX", - "label": "Victoria County, TX" - }, - { - "value": "WALKER_COUNTY_TX", - "label": "Walker County, TX" - }, - { - "value": "WALLER_COUNTY_TX", - "label": "Waller County, TX" - }, - { - "value": "WARD_COUNTY_TX", - "label": "Ward County, TX" - }, - { - "value": "WASHINGTON_COUNTY_TX", - "label": "Washington County, TX" - }, - { - "value": "WEBB_COUNTY_TX", - "label": "Webb County, TX" - }, - { - "value": "WHARTON_COUNTY_TX", - "label": "Wharton County, TX" - }, - { - "value": "WHEELER_COUNTY_TX", - "label": "Wheeler County, TX" - }, - { - "value": "WICHITA_COUNTY_TX", - "label": "Wichita County, TX" - }, - { - "value": "WILBARGER_COUNTY_TX", - "label": "Wilbarger County, TX" - }, - { - "value": "WILLACY_COUNTY_TX", - "label": "Willacy County, TX" - }, - { - "value": "WILLIAMSON_COUNTY_TX", - "label": "Williamson County, TX" - }, - { - "value": "WILSON_COUNTY_TX", - "label": "Wilson County, TX" - }, - { - "value": "WINKLER_COUNTY_TX", - "label": "Winkler County, TX" - }, - { - "value": "WISE_COUNTY_TX", - "label": "Wise County, TX" - }, - { - "value": "WOOD_COUNTY_TX", - "label": "Wood County, TX" - }, - { - "value": "YOAKUM_COUNTY_TX", - "label": "Yoakum County, TX" - }, - { - "value": "YOUNG_COUNTY_TX", - "label": "Young County, TX" - }, - { - "value": "ZAPATA_COUNTY_TX", - "label": "Zapata County, TX" - }, - { - "value": "ZAVALA_COUNTY_TX", - "label": "Zavala County, TX" - }, - { - "value": "APACHE_COUNTY_UT", - "label": "Apache County, UT" - }, - { - "value": "BEAVER_COUNTY_UT", - "label": "Beaver County, UT" - }, - { - "value": "BOX_ELDER_COUNTY_UT", - "label": "Box Elder County, UT" - }, - { - "value": "CACHE_COUNTY_UT", - "label": "Cache County, UT" - }, - { - "value": "CARBON_COUNTY_UT", - "label": "Carbon County, UT" - }, - { - "value": "DAGGETT_COUNTY_UT", - "label": "Daggett County, UT" - }, - { - "value": "DAVIS_COUNTY_UT", - "label": "Davis County, UT" - }, - { - "value": "DUCHESNE_COUNTY_UT", - "label": "Duchesne County, UT" - }, - { - "value": "EMERY_COUNTY_UT", - "label": "Emery County, UT" - }, - { - "value": "GARFIELD_COUNTY_UT", - "label": "Garfield County, UT" - }, - { - "value": "GRAND_COUNTY_UT", - "label": "Grand County, UT" - }, - { - "value": "IRON_COUNTY_UT", - "label": "Iron County, UT" - }, - { - "value": "JUAB_COUNTY_UT", - "label": "Juab County, UT" - }, - { - "value": "KANE_COUNTY_UT", - "label": "Kane County, UT" - }, - { - "value": "MILLARD_COUNTY_UT", - "label": "Millard County, UT" - }, - { - "value": "MORGAN_COUNTY_UT", - "label": "Morgan County, UT" - }, - { - "value": "PIUTE_COUNTY_UT", - "label": "Piute County, UT" - }, - { - "value": "RICH_COUNTY_UT", - "label": "Rich County, UT" - }, - { - "value": "SALT_LAKE_COUNTY_UT", - "label": "Salt Lake County, UT" - }, - { - "value": "SAN_JUAN_COUNTY_UT", - "label": "San Juan County, UT" - }, - { - "value": "SANPETE_COUNTY_UT", - "label": "Sanpete County, UT" - }, - { - "value": "SEVIER_COUNTY_UT", - "label": "Sevier County, UT" - }, - { - "value": "SUMMIT_COUNTY_UT", - "label": "Summit County, UT" - }, - { - "value": "TOOELE_COUNTY_UT", - "label": "Tooele County, UT" - }, - { - "value": "UINTAH_COUNTY_UT", - "label": "Uintah County, UT" - }, - { - "value": "UTAH_COUNTY_UT", - "label": "Utah County, UT" - }, - { - "value": "WASATCH_COUNTY_UT", - "label": "Wasatch County, UT" - }, - { - "value": "WASHINGTON_COUNTY_UT", - "label": "Washington County, UT" - }, - { - "value": "WAYNE_COUNTY_UT", - "label": "Wayne County, UT" - }, - { - "value": "WEBER_COUNTY_UT", - "label": "Weber County, UT" - }, - { - "value": "WHITE_PINE_COUNTY_UT", - "label": "White Pine County, UT" - }, - { - "value": "ACCOMACK_COUNTY_VA", - "label": "Accomack County, VA" - }, - { - "value": "ALBEMARLE_COUNTY_VA", - "label": "Albemarle County, VA" - }, - { - "value": "ALEXANDRIA_CITY_VA", - "label": "Alexandria city, VA" - }, - { - "value": "ALLEGHANY_COUNTY_VA", - "label": "Alleghany County, VA" - }, - { - "value": "AMELIA_COUNTY_VA", - "label": "Amelia County, VA" - }, - { - "value": "AMHERST_COUNTY_VA", - "label": "Amherst County, VA" - }, - { - "value": "APPOMATTOX_COUNTY_VA", - "label": "Appomattox County, VA" - }, - { - "value": "ARLINGTON_COUNTY_VA", - "label": "Arlington County, VA" - }, - { - "value": "AUGUSTA_COUNTY_VA", - "label": "Augusta County, VA" - }, - { - "value": "BATH_COUNTY_VA", - "label": "Bath County, VA" - }, - { - "value": "BEDFORD_COUNTY_VA", - "label": "Bedford County, VA" - }, - { - "value": "BLAND_COUNTY_VA", - "label": "Bland County, VA" - }, - { - "value": "BOTETOURT_COUNTY_VA", - "label": "Botetourt County, VA" - }, - { - "value": "BRISTOL_CITY_VA", - "label": "Bristol city, VA" - }, - { - "value": "BRUNSWICK_COUNTY_VA", - "label": "Brunswick County, VA" - }, - { - "value": "BUCHANAN_COUNTY_VA", - "label": "Buchanan County, VA" - }, - { - "value": "BUCKINGHAM_COUNTY_VA", - "label": "Buckingham County, VA" - }, - { - "value": "CAMPBELL_COUNTY_VA", - "label": "Campbell County, VA" - }, - { - "value": "CAROLINE_COUNTY_VA", - "label": "Caroline County, VA" - }, - { - "value": "CARROLL_COUNTY_VA", - "label": "Carroll County, VA" - }, - { - "value": "CHARLES_CITY_COUNTY_VA", - "label": "Charles City County, VA" - }, - { - "value": "CHARLOTTE_COUNTY_VA", - "label": "Charlotte County, VA" - }, - { - "value": "CHARLOTTESVILLE_CITY_VA", - "label": "Charlottesville city, VA" - }, - { - "value": "CHESAPEAKE_CITY_VA", - "label": "Chesapeake city, VA" - }, - { - "value": "CHESTERFIELD_COUNTY_VA", - "label": "Chesterfield County, VA" - }, - { - "value": "CLARKE_COUNTY_VA", - "label": "Clarke County, VA" - }, - { - "value": "CRAIG_COUNTY_VA", - "label": "Craig County, VA" - }, - { - "value": "CULPEPER_COUNTY_VA", - "label": "Culpeper County, VA" - }, - { - "value": "CUMBERLAND_COUNTY_VA", - "label": "Cumberland County, VA" - }, - { - "value": "DANVILLE_CITY_VA", - "label": "Danville city, VA" - }, - { - "value": "DICKENSON_COUNTY_VA", - "label": "Dickenson County, VA" - }, - { - "value": "DINWIDDIE_COUNTY_VA", - "label": "Dinwiddie County, VA" - }, - { - "value": "EMPORIA_CITY_VA", - "label": "Emporia city, VA" - }, - { - "value": "ESSEX_COUNTY_VA", - "label": "Essex County, VA" - }, - { - "value": "FAIRFAX_COUNTY_VA", - "label": "Fairfax County, VA" - }, - { - "value": "FAIRFAX_CITY_VA", - "label": "Fairfax city, VA" - }, - { - "value": "FALLS_CHURCH_CITY_VA", - "label": "Falls Church city, VA" - }, - { - "value": "FAUQUIER_COUNTY_VA", - "label": "Fauquier County, VA" - }, - { - "value": "FLOYD_COUNTY_VA", - "label": "Floyd County, VA" - }, - { - "value": "FLUVANNA_COUNTY_VA", - "label": "Fluvanna County, VA" - }, - { - "value": "FRANKLIN_COUNTY_VA", - "label": "Franklin County, VA" - }, - { - "value": "FRANKLIN_CITY_VA", - "label": "Franklin city, VA" - }, - { - "value": "FREDERICK_COUNTY_VA", - "label": "Frederick County, VA" - }, - { - "value": "FREDERICKSBURG_CITY_VA", - "label": "Fredericksburg city, VA" - }, - { - "value": "GILES_COUNTY_VA", - "label": "Giles County, VA" - }, - { - "value": "GLOUCESTER_COUNTY_VA", - "label": "Gloucester County, VA" - }, - { - "value": "GOOCHLAND_COUNTY_VA", - "label": "Goochland County, VA" - }, - { - "value": "GRAYSON_COUNTY_VA", - "label": "Grayson County, VA" - }, - { - "value": "GREENE_COUNTY_VA", - "label": "Greene County, VA" - }, - { - "value": "GREENSVILLE_COUNTY_VA", - "label": "Greensville County, VA" - }, - { - "value": "HALIFAX_COUNTY_VA", - "label": "Halifax County, VA" - }, - { - "value": "HAMPTON_CITY_VA", - "label": "Hampton city, VA" - }, - { - "value": "HANOVER_COUNTY_VA", - "label": "Hanover County, VA" - }, - { - "value": "HARRISONBURG_CITY_VA", - "label": "Harrisonburg city, VA" - }, - { - "value": "HENRICO_COUNTY_VA", - "label": "Henrico County, VA" - }, - { - "value": "HENRY_COUNTY_VA", - "label": "Henry County, VA" - }, - { - "value": "HIGHLAND_COUNTY_VA", - "label": "Highland County, VA" - }, - { - "value": "HOPEWELL_CITY_VA", - "label": "Hopewell city, VA" - }, - { - "value": "ISLE_OF_WIGHT_COUNTY_VA", - "label": "Isle of Wight County, VA" - }, - { - "value": "JAMES_CITY_COUNTY_VA", - "label": "James City County, VA" - }, - { - "value": "JEFFERSON_COUNTY_VA", - "label": "Jefferson County, VA" - }, - { - "value": "KING_GEORGE_COUNTY_VA", - "label": "King George County, VA" - }, - { - "value": "KING_WILLIAM_COUNTY_VA", - "label": "King William County, VA" - }, - { - "value": "KING_AND_QUEEN_COUNTY_VA", - "label": "King and Queen County, VA" - }, - { - "value": "LANCASTER_COUNTY_VA", - "label": "Lancaster County, VA" - }, - { - "value": "LEE_COUNTY_VA", - "label": "Lee County, VA" - }, - { - "value": "LEXINGTON_CITY_VA", - "label": "Lexington city, VA" - }, - { - "value": "LOUDOUN_COUNTY_VA", - "label": "Loudoun County, VA" - }, - { - "value": "LOUISA_COUNTY_VA", - "label": "Louisa County, VA" - }, - { - "value": "LUNENBURG_COUNTY_VA", - "label": "Lunenburg County, VA" - }, - { - "value": "LYNCHBURG_CITY_VA", - "label": "Lynchburg city, VA" - }, - { - "value": "MADISON_COUNTY_VA", - "label": "Madison County, VA" - }, - { - "value": "MANASSAS_PARK_CITY_VA", - "label": "Manassas Park city, VA" - }, - { - "value": "MATHEWS_COUNTY_VA", - "label": "Mathews County, VA" - }, - { - "value": "MCDOWELL_COUNTY_VA", - "label": "McDowell County, VA" - }, - { - "value": "MECKLENBURG_COUNTY_VA", - "label": "Mecklenburg County, VA" - }, - { - "value": "MIDDLESEX_COUNTY_VA", - "label": "Middlesex County, VA" - }, - { - "value": "MONTGOMERY_COUNTY_VA", - "label": "Montgomery County, VA" - }, - { - "value": "NELSON_COUNTY_VA", - "label": "Nelson County, VA" - }, - { - "value": "NEW_KENT_COUNTY_VA", - "label": "New Kent County, VA" - }, - { - "value": "NEWPORT_NEWS_CITY_VA", - "label": "Newport News city, VA" - }, - { - "value": "NORFOLK_CITY_VA", - "label": "Norfolk city, VA" - }, - { - "value": "NORTHAMPTON_COUNTY_VA", - "label": "Northampton County, VA" - }, - { - "value": "NORTHUMBERLAND_COUNTY_VA", - "label": "Northumberland County, VA" - }, - { - "value": "NORTON_CITY_VA", - "label": "Norton city, VA" - }, - { - "value": "NOTTOWAY_COUNTY_VA", - "label": "Nottoway County, VA" - }, - { - "value": "ORANGE_COUNTY_VA", - "label": "Orange County, VA" - }, - { - "value": "PAGE_COUNTY_VA", - "label": "Page County, VA" - }, - { - "value": "PATRICK_COUNTY_VA", - "label": "Patrick County, VA" - }, - { - "value": "PETERSBURG_CITY_VA", - "label": "Petersburg city, VA" - }, - { - "value": "PITTSYLVANIA_COUNTY_VA", - "label": "Pittsylvania County, VA" - }, - { - "value": "POQUOSON_CITY_VA", - "label": "Poquoson city, VA" - }, - { - "value": "PORTSMOUTH_CITY_VA", - "label": "Portsmouth city, VA" - }, - { - "value": "POWHATAN_COUNTY_VA", - "label": "Powhatan County, VA" - }, - { - "value": "PRINCE_EDWARD_COUNTY_VA", - "label": "Prince Edward County, VA" - }, - { - "value": "PRINCE_GEORGE_COUNTY_VA", - "label": "Prince George County, VA" - }, - { - "value": "PRINCE_WILLIAM_COUNTY_VA", - "label": "Prince William County, VA" - }, - { - "value": "PULASKI_COUNTY_VA", - "label": "Pulaski County, VA" - }, - { - "value": "RADFORD_CITY_VA", - "label": "Radford city, VA" - }, - { - "value": "RAPPAHANNOCK_COUNTY_VA", - "label": "Rappahannock County, VA" - }, - { - "value": "RICHMOND_COUNTY_VA", - "label": "Richmond County, VA" - }, - { - "value": "RICHMOND_CITY_VA", - "label": "Richmond city, VA" - }, - { - "value": "ROANOKE_COUNTY_VA", - "label": "Roanoke County, VA" - }, - { - "value": "ROANOKE_CITY_VA", - "label": "Roanoke city, VA" - }, - { - "value": "ROCKBRIDGE_COUNTY_VA", - "label": "Rockbridge County, VA" - }, - { - "value": "ROCKINGHAM_COUNTY_VA", - "label": "Rockingham County, VA" - }, - { - "value": "RUSSELL_COUNTY_VA", - "label": "Russell County, VA" - }, - { - "value": "SCOTT_COUNTY_VA", - "label": "Scott County, VA" - }, - { - "value": "SHENANDOAH_COUNTY_VA", - "label": "Shenandoah County, VA" - }, - { - "value": "SMYTH_COUNTY_VA", - "label": "Smyth County, VA" - }, - { - "value": "SOUTHAMPTON_COUNTY_VA", - "label": "Southampton County, VA" - }, - { - "value": "SPOTSYLVANIA_COUNTY_VA", - "label": "Spotsylvania County, VA" - }, - { - "value": "STAFFORD_COUNTY_VA", - "label": "Stafford County, VA" - }, - { - "value": "STAUNTON_CITY_VA", - "label": "Staunton city, VA" - }, - { - "value": "SUFFOLK_CITY_VA", - "label": "Suffolk city, VA" - }, - { - "value": "SURRY_COUNTY_VA", - "label": "Surry County, VA" - }, - { - "value": "SUSSEX_COUNTY_VA", - "label": "Sussex County, VA" - }, - { - "value": "TAZEWELL_COUNTY_VA", - "label": "Tazewell County, VA" - }, - { - "value": "VIRGINIA_BEACH_CITY_VA", - "label": "Virginia Beach city, VA" - }, - { - "value": "WARREN_COUNTY_VA", - "label": "Warren County, VA" - }, - { - "value": "WASHINGTON_COUNTY_VA", - "label": "Washington County, VA" - }, - { - "value": "WAYNESBORO_CITY_VA", - "label": "Waynesboro city, VA" - }, - { - "value": "WESTMORELAND_COUNTY_VA", - "label": "Westmoreland County, VA" - }, - { - "value": "WISE_COUNTY_VA", - "label": "Wise County, VA" - }, - { - "value": "WYTHE_COUNTY_VA", - "label": "Wythe County, VA" - }, - { - "value": "YORK_COUNTY_VA", - "label": "York County, VA" - }, - { - "value": "ADDISON_COUNTY_VT", - "label": "Addison County, VT" - }, - { - "value": "BENNINGTON_COUNTY_VT", - "label": "Bennington County, VT" - }, - { - "value": "CALEDONIA_COUNTY_VT", - "label": "Caledonia County, VT" - }, - { - "value": "CHITTENDEN_COUNTY_VT", - "label": "Chittenden County, VT" - }, - { - "value": "ESSEX_COUNTY_VT", - "label": "Essex County, VT" - }, - { - "value": "FRANKLIN_COUNTY_VT", - "label": "Franklin County, VT" - }, - { - "value": "GRAND_ISLE_COUNTY_VT", - "label": "Grand Isle County, VT" - }, - { - "value": "LAMOILLE_COUNTY_VT", - "label": "Lamoille County, VT" - }, - { - "value": "ORANGE_COUNTY_VT", - "label": "Orange County, VT" - }, - { - "value": "ORLEANS_COUNTY_VT", - "label": "Orleans County, VT" - }, - { - "value": "RUTLAND_COUNTY_VT", - "label": "Rutland County, VT" - }, - { - "value": "WASHINGTON_COUNTY_VT", - "label": "Washington County, VT" - }, - { - "value": "WINDHAM_COUNTY_VT", - "label": "Windham County, VT" - }, - { - "value": "WINDSOR_COUNTY_VT", - "label": "Windsor County, VT" - }, - { - "value": "ADAMS_COUNTY_WA", - "label": "Adams County, WA" - }, - { - "value": "ASOTIN_COUNTY_WA", - "label": "Asotin County, WA" - }, - { - "value": "BENEWAH_COUNTY_WA", - "label": "Benewah County, WA" - }, - { - "value": "BENTON_COUNTY_WA", - "label": "Benton County, WA" - }, - { - "value": "CHELAN_COUNTY_WA", - "label": "Chelan County, WA" - }, - { - "value": "CLALLAM_COUNTY_WA", - "label": "Clallam County, WA" - }, - { - "value": "CLARK_COUNTY_WA", - "label": "Clark County, WA" - }, - { - "value": "COLUMBIA_COUNTY_WA", - "label": "Columbia County, WA" - }, - { - "value": "COWLITZ_COUNTY_WA", - "label": "Cowlitz County, WA" - }, - { - "value": "DOUGLAS_COUNTY_WA", - "label": "Douglas County, WA" - }, - { - "value": "FERRY_COUNTY_WA", - "label": "Ferry County, WA" - }, - { - "value": "FRANKLIN_COUNTY_WA", - "label": "Franklin County, WA" - }, - { - "value": "GARFIELD_COUNTY_WA", - "label": "Garfield County, WA" - }, - { - "value": "GRANT_COUNTY_WA", - "label": "Grant County, WA" - }, - { - "value": "GRAYS_HARBOR_COUNTY_WA", - "label": "Grays Harbor County, WA" - }, - { - "value": "ISLAND_COUNTY_WA", - "label": "Island County, WA" - }, - { - "value": "JEFFERSON_COUNTY_WA", - "label": "Jefferson County, WA" - }, - { - "value": "KING_COUNTY_WA", - "label": "King County, WA" - }, - { - "value": "KITSAP_COUNTY_WA", - "label": "Kitsap County, WA" - }, - { - "value": "KITTITAS_COUNTY_WA", - "label": "Kittitas County, WA" - }, - { - "value": "KLICKITAT_COUNTY_WA", - "label": "Klickitat County, WA" - }, - { - "value": "LEWIS_COUNTY_WA", - "label": "Lewis County, WA" - }, - { - "value": "LINCOLN_COUNTY_WA", - "label": "Lincoln County, WA" - }, - { - "value": "MASON_COUNTY_WA", - "label": "Mason County, WA" - }, - { - "value": "OKANOGAN_COUNTY_WA", - "label": "Okanogan County, WA" - }, - { - "value": "PACIFIC_COUNTY_WA", - "label": "Pacific County, WA" - }, - { - "value": "PEND_OREILLE_COUNTY_WA", - "label": "Pend Oreille County, WA" - }, - { - "value": "PIERCE_COUNTY_WA", - "label": "Pierce County, WA" - }, - { - "value": "SAN_JUAN_COUNTY_WA", - "label": "San Juan County, WA" - }, - { - "value": "SKAGIT_COUNTY_WA", - "label": "Skagit County, WA" - }, - { - "value": "SKAMANIA_COUNTY_WA", - "label": "Skamania County, WA" - }, - { - "value": "SNOHOMISH_COUNTY_WA", - "label": "Snohomish County, WA" - }, - { - "value": "SPOKANE_COUNTY_WA", - "label": "Spokane County, WA" - }, - { - "value": "STEVENS_COUNTY_WA", - "label": "Stevens County, WA" - }, - { - "value": "THURSTON_COUNTY_WA", - "label": "Thurston County, WA" - }, - { - "value": "WAHKIAKUM_COUNTY_WA", - "label": "Wahkiakum County, WA" - }, - { - "value": "WALLA_WALLA_COUNTY_WA", - "label": "Walla Walla County, WA" - }, - { - "value": "WHATCOM_COUNTY_WA", - "label": "Whatcom County, WA" - }, - { - "value": "WHITMAN_COUNTY_WA", - "label": "Whitman County, WA" - }, - { - "value": "YAKIMA_COUNTY_WA", - "label": "Yakima County, WA" - }, - { - "value": "ADAMS_COUNTY_WI", - "label": "Adams County, WI" - }, - { - "value": "ASHLAND_COUNTY_WI", - "label": "Ashland County, WI" - }, - { - "value": "BARRON_COUNTY_WI", - "label": "Barron County, WI" - }, - { - "value": "BAYFIELD_COUNTY_WI", - "label": "Bayfield County, WI" - }, - { - "value": "BROWN_COUNTY_WI", - "label": "Brown County, WI" - }, - { - "value": "BUFFALO_COUNTY_WI", - "label": "Buffalo County, WI" - }, - { - "value": "BURNETT_COUNTY_WI", - "label": "Burnett County, WI" - }, - { - "value": "CALUMET_COUNTY_WI", - "label": "Calumet County, WI" - }, - { - "value": "CHIPPEWA_COUNTY_WI", - "label": "Chippewa County, WI" - }, - { - "value": "CLARK_COUNTY_WI", - "label": "Clark County, WI" - }, - { - "value": "COLUMBIA_COUNTY_WI", - "label": "Columbia County, WI" - }, - { - "value": "CRAWFORD_COUNTY_WI", - "label": "Crawford County, WI" - }, - { - "value": "DANE_COUNTY_WI", - "label": "Dane County, WI" - }, - { - "value": "DODGE_COUNTY_WI", - "label": "Dodge County, WI" - }, - { - "value": "DOOR_COUNTY_WI", - "label": "Door County, WI" - }, - { - "value": "DOUGLAS_COUNTY_WI", - "label": "Douglas County, WI" - }, - { - "value": "DUNN_COUNTY_WI", - "label": "Dunn County, WI" - }, - { - "value": "EAU_CLAIRE_COUNTY_WI", - "label": "Eau Claire County, WI" - }, - { - "value": "FLORENCE_COUNTY_WI", - "label": "Florence County, WI" - }, - { - "value": "FOND_DU_LAC_COUNTY_WI", - "label": "Fond du Lac County, WI" - }, - { - "value": "FOREST_COUNTY_WI", - "label": "Forest County, WI" - }, - { - "value": "GRANT_COUNTY_WI", - "label": "Grant County, WI" - }, - { - "value": "GREEN_COUNTY_WI", - "label": "Green County, WI" - }, - { - "value": "GREEN_LAKE_COUNTY_WI", - "label": "Green Lake County, WI" - }, - { - "value": "IOWA_COUNTY_WI", - "label": "Iowa County, WI" - }, - { - "value": "IRON_COUNTY_WI", - "label": "Iron County, WI" - }, - { - "value": "JACKSON_COUNTY_WI", - "label": "Jackson County, WI" - }, - { - "value": "JEFFERSON_COUNTY_WI", - "label": "Jefferson County, WI" - }, - { - "value": "JUNEAU_COUNTY_WI", - "label": "Juneau County, WI" - }, - { - "value": "KENOSHA_COUNTY_WI", - "label": "Kenosha County, WI" - }, - { - "value": "KEWAUNEE_COUNTY_WI", - "label": "Kewaunee County, WI" - }, - { - "value": "LA_CROSSE_COUNTY_WI", - "label": "La Crosse County, WI" - }, - { - "value": "LAFAYETTE_COUNTY_WI", - "label": "Lafayette County, WI" - }, - { - "value": "LANGLADE_COUNTY_WI", - "label": "Langlade County, WI" - }, - { - "value": "LINCOLN_COUNTY_WI", - "label": "Lincoln County, WI" - }, - { - "value": "MANITOWOC_COUNTY_WI", - "label": "Manitowoc County, WI" - }, - { - "value": "MARATHON_COUNTY_WI", - "label": "Marathon County, WI" - }, - { - "value": "MARINETTE_COUNTY_WI", - "label": "Marinette County, WI" - }, - { - "value": "MARQUETTE_COUNTY_WI", - "label": "Marquette County, WI" - }, - { - "value": "MENOMINEE_COUNTY_WI", - "label": "Menominee County, WI" - }, - { - "value": "MILWAUKEE_COUNTY_WI", - "label": "Milwaukee County, WI" - }, - { - "value": "MONROE_COUNTY_WI", - "label": "Monroe County, WI" - }, - { - "value": "OCONTO_COUNTY_WI", - "label": "Oconto County, WI" - }, - { - "value": "ONEIDA_COUNTY_WI", - "label": "Oneida County, WI" - }, - { - "value": "OUTAGAMIE_COUNTY_WI", - "label": "Outagamie County, WI" - }, - { - "value": "OZAUKEE_COUNTY_WI", - "label": "Ozaukee County, WI" - }, - { - "value": "PEPIN_COUNTY_WI", - "label": "Pepin County, WI" - }, - { - "value": "PIERCE_COUNTY_WI", - "label": "Pierce County, WI" - }, - { - "value": "POLK_COUNTY_WI", - "label": "Polk County, WI" - }, - { - "value": "PORTAGE_COUNTY_WI", - "label": "Portage County, WI" - }, - { - "value": "PRICE_COUNTY_WI", - "label": "Price County, WI" - }, - { - "value": "RACINE_COUNTY_WI", - "label": "Racine County, WI" - }, - { - "value": "RICHLAND_COUNTY_WI", - "label": "Richland County, WI" - }, - { - "value": "ROCK_COUNTY_WI", - "label": "Rock County, WI" - }, - { - "value": "RUSK_COUNTY_WI", - "label": "Rusk County, WI" - }, - { - "value": "SAUK_COUNTY_WI", - "label": "Sauk County, WI" - }, - { - "value": "SAWYER_COUNTY_WI", - "label": "Sawyer County, WI" - }, - { - "value": "SHAWANO_COUNTY_WI", - "label": "Shawano County, WI" - }, - { - "value": "SHEBOYGAN_COUNTY_WI", - "label": "Sheboygan County, WI" - }, - { - "value": "ST_CROIX_COUNTY_WI", - "label": "St. Croix County, WI" - }, - { - "value": "TAYLOR_COUNTY_WI", - "label": "Taylor County, WI" - }, - { - "value": "TREMPEALEAU_COUNTY_WI", - "label": "Trempealeau County, WI" - }, - { - "value": "VERNON_COUNTY_WI", - "label": "Vernon County, WI" - }, - { - "value": "VILAS_COUNTY_WI", - "label": "Vilas County, WI" - }, - { - "value": "WALWORTH_COUNTY_WI", - "label": "Walworth County, WI" - }, - { - "value": "WASHBURN_COUNTY_WI", - "label": "Washburn County, WI" - }, - { - "value": "WASHINGTON_COUNTY_WI", - "label": "Washington County, WI" - }, - { - "value": "WAUKESHA_COUNTY_WI", - "label": "Waukesha County, WI" - }, - { - "value": "WAUPACA_COUNTY_WI", - "label": "Waupaca County, WI" - }, - { - "value": "WAUSHARA_COUNTY_WI", - "label": "Waushara County, WI" - }, - { - "value": "WINNEBAGO_COUNTY_WI", - "label": "Winnebago County, WI" - }, - { - "value": "WOOD_COUNTY_WI", - "label": "Wood County, WI" - }, - { - "value": "BARBOUR_COUNTY_WV", - "label": "Barbour County, WV" - }, - { - "value": "BERKELEY_COUNTY_WV", - "label": "Berkeley County, WV" - }, - { - "value": "BOONE_COUNTY_WV", - "label": "Boone County, WV" - }, - { - "value": "BRAXTON_COUNTY_WV", - "label": "Braxton County, WV" - }, - { - "value": "BROOKE_COUNTY_WV", - "label": "Brooke County, WV" - }, - { - "value": "CABELL_COUNTY_WV", - "label": "Cabell County, WV" - }, - { - "value": "CALHOUN_COUNTY_WV", - "label": "Calhoun County, WV" - }, - { - "value": "CLAY_COUNTY_WV", - "label": "Clay County, WV" - }, - { - "value": "DODDRIDGE_COUNTY_WV", - "label": "Doddridge County, WV" - }, - { - "value": "FAYETTE_COUNTY_WV", - "label": "Fayette County, WV" - }, - { - "value": "GILMER_COUNTY_WV", - "label": "Gilmer County, WV" - }, - { - "value": "GRANT_COUNTY_WV", - "label": "Grant County, WV" - }, - { - "value": "GREENBRIER_COUNTY_WV", - "label": "Greenbrier County, WV" - }, - { - "value": "HAMPSHIRE_COUNTY_WV", - "label": "Hampshire County, WV" - }, - { - "value": "HANCOCK_COUNTY_WV", - "label": "Hancock County, WV" - }, - { - "value": "HARDY_COUNTY_WV", - "label": "Hardy County, WV" - }, - { - "value": "HARRISON_COUNTY_WV", - "label": "Harrison County, WV" - }, - { - "value": "JACKSON_COUNTY_WV", - "label": "Jackson County, WV" - }, - { - "value": "JEFFERSON_COUNTY_WV", - "label": "Jefferson County, WV" - }, - { - "value": "KANAWHA_COUNTY_WV", - "label": "Kanawha County, WV" - }, - { - "value": "LEWIS_COUNTY_WV", - "label": "Lewis County, WV" - }, - { - "value": "LINCOLN_COUNTY_WV", - "label": "Lincoln County, WV" - }, - { - "value": "LOGAN_COUNTY_WV", - "label": "Logan County, WV" - }, - { - "value": "MARION_COUNTY_WV", - "label": "Marion County, WV" - }, - { - "value": "MARSHALL_COUNTY_WV", - "label": "Marshall County, WV" - }, - { - "value": "MASON_COUNTY_WV", - "label": "Mason County, WV" - }, - { - "value": "MCDOWELL_COUNTY_WV", - "label": "McDowell County, WV" - }, - { - "value": "MERCER_COUNTY_WV", - "label": "Mercer County, WV" - }, - { - "value": "MINERAL_COUNTY_WV", - "label": "Mineral County, WV" - }, - { - "value": "MINGO_COUNTY_WV", - "label": "Mingo County, WV" - }, - { - "value": "MONONGALIA_COUNTY_WV", - "label": "Monongalia County, WV" - }, - { - "value": "MONROE_COUNTY_WV", - "label": "Monroe County, WV" - }, - { - "value": "MORGAN_COUNTY_WV", - "label": "Morgan County, WV" - }, - { - "value": "NICHOLAS_COUNTY_WV", - "label": "Nicholas County, WV" - }, - { - "value": "OHIO_COUNTY_WV", - "label": "Ohio County, WV" - }, - { - "value": "PENDLETON_COUNTY_WV", - "label": "Pendleton County, WV" - }, - { - "value": "PLEASANTS_COUNTY_WV", - "label": "Pleasants County, WV" - }, - { - "value": "POCAHONTAS_COUNTY_WV", - "label": "Pocahontas County, WV" - }, - { - "value": "PRESTON_COUNTY_WV", - "label": "Preston County, WV" - }, - { - "value": "PUTNAM_COUNTY_WV", - "label": "Putnam County, WV" - }, - { - "value": "RALEIGH_COUNTY_WV", - "label": "Raleigh County, WV" - }, - { - "value": "RANDOLPH_COUNTY_WV", - "label": "Randolph County, WV" - }, - { - "value": "RITCHIE_COUNTY_WV", - "label": "Ritchie County, WV" - }, - { - "value": "ROANE_COUNTY_WV", - "label": "Roane County, WV" - }, - { - "value": "SUMMERS_COUNTY_WV", - "label": "Summers County, WV" - }, - { - "value": "TAYLOR_COUNTY_WV", - "label": "Taylor County, WV" - }, - { - "value": "TUCKER_COUNTY_WV", - "label": "Tucker County, WV" - }, - { - "value": "TYLER_COUNTY_WV", - "label": "Tyler County, WV" - }, - { - "value": "UPSHUR_COUNTY_WV", - "label": "Upshur County, WV" - }, - { - "value": "WAYNE_COUNTY_WV", - "label": "Wayne County, WV" - }, - { - "value": "WEBSTER_COUNTY_WV", - "label": "Webster County, WV" - }, - { - "value": "WETZEL_COUNTY_WV", - "label": "Wetzel County, WV" - }, - { - "value": "WIRT_COUNTY_WV", - "label": "Wirt County, WV" - }, - { - "value": "WOOD_COUNTY_WV", - "label": "Wood County, WV" - }, - { - "value": "WYOMING_COUNTY_WV", - "label": "Wyoming County, WV" - }, - { - "value": "ALBANY_COUNTY_WY", - "label": "Albany County, WY" - }, - { - "value": "BIG_HORN_COUNTY_WY", - "label": "Big Horn County, WY" - }, - { - "value": "BONNEVILLE_COUNTY_WY", - "label": "Bonneville County, WY" - }, - { - "value": "CAMPBELL_COUNTY_WY", - "label": "Campbell County, WY" - }, - { - "value": "CARBON_COUNTY_WY", - "label": "Carbon County, WY" - }, - { - "value": "CONVERSE_COUNTY_WY", - "label": "Converse County, WY" - }, - { - "value": "CROOK_COUNTY_WY", - "label": "Crook County, WY" - }, - { - "value": "CUSTER_COUNTY_WY", - "label": "Custer County, WY" - }, - { - "value": "FREMONT_COUNTY_WY", - "label": "Fremont County, WY" - }, - { - "value": "GOSHEN_COUNTY_WY", - "label": "Goshen County, WY" - }, - { - "value": "HOT_SPRINGS_COUNTY_WY", - "label": "Hot Springs County, WY" - }, - { - "value": "JOHNSON_COUNTY_WY", - "label": "Johnson County, WY" - }, - { - "value": "KIMBALL_COUNTY_WY", - "label": "Kimball County, WY" - }, - { - "value": "LARAMIE_COUNTY_WY", - "label": "Laramie County, WY" - }, - { - "value": "LARIMER_COUNTY_WY", - "label": "Larimer County, WY" - }, - { - "value": "LINCOLN_COUNTY_WY", - "label": "Lincoln County, WY" - }, - { - "value": "NATRONA_COUNTY_WY", - "label": "Natrona County, WY" - }, - { - "value": "NIOBRARA_COUNTY_WY", - "label": "Niobrara County, WY" - }, - { - "value": "PARK_COUNTY_WY", - "label": "Park County, WY" - }, - { - "value": "PLATTE_COUNTY_WY", - "label": "Platte County, WY" - }, - { - "value": "SHERIDAN_COUNTY_WY", - "label": "Sheridan County, WY" - }, - { - "value": "SUBLETTE_COUNTY_WY", - "label": "Sublette County, WY" - }, - { - "value": "SUMMIT_COUNTY_WY", - "label": "Summit County, WY" - }, - { - "value": "SWEETWATER_COUNTY_WY", - "label": "Sweetwater County, WY" - }, - { - "value": "TETON_COUNTY_WY", - "label": "Teton County, WY" - }, - { - "value": "UINTA_COUNTY_WY", - "label": "Uinta County, WY" - }, - { - "value": "WASHAKIE_COUNTY_WY", - "label": "Washakie County, WY" - }, - { - "value": "WESTON_COUNTY_WY", - "label": "Weston County, WY" - } - ] - }, - "zip_code": { - "documentation": null, - "entity": "household", - "valueType": "str", - "definitionPeriod": "year", - "name": "zip_code", - "label": "ZIP code", - "category": null, - "unit": null, - "moduleName": "household.demographic.geographic.zip_code.zip_code", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": null, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "three_digit_zip_code": { - "documentation": null, - "entity": "household", - "valueType": "str", - "definitionPeriod": "year", - "name": "three_digit_zip_code", - "label": "Three-digit zipcode", - "category": null, - "unit": null, - "moduleName": "household.demographic.geographic.zip_code.three_digit_zip_code", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": null, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "average_home_energy_use_in_state": { - "documentation": "Average energy use per home in household's state, in kilowatt hours", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "average_home_energy_use_in_state", - "label": "Average energy use per in state", - "category": null, - "unit": null, - "moduleName": "household.demographic.geographic.state.average_home_energy_use_in_state", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "monthly_age": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "monthly_age", - "label": "Monthly age", - "category": null, - "unit": null, - "moduleName": "household.demographic.age.monthly_age", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "age_group": { - "documentation": null, - "entity": "person", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "age_group", - "label": "Age group", - "category": null, - "unit": null, - "moduleName": "household.demographic.age.age_group", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "WORKING_AGE", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "CHILD", - "label": "Child" - }, - { - "value": "WORKING_AGE", - "label": "Working-age" - }, - { - "value": "SENIOR", - "label": "Senior" - } - ] - }, - "age": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "age", - "label": "age", - "category": null, - "unit": null, - "moduleName": "household.demographic.age.age", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 40, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_senior": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_senior", - "label": "Is a senior", - "category": null, - "unit": null, - "moduleName": "household.demographic.age.is_senior", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "birth_year": { - "documentation": null, - "entity": "person", - "valueType": "int", - "definitionPeriod": "year", - "name": "birth_year", - "label": "Birth year", - "category": null, - "unit": "year", - "moduleName": "household.demographic.age.birth_year", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_wa_adult": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_wa_adult", - "label": "Is a working-age adult", - "category": null, - "unit": null, - "moduleName": "household.demographic.age.is_wa_adult", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_child": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_child", - "label": "Is a child", - "category": null, - "unit": null, - "moduleName": "household.demographic.age.is_child", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "spm_unit_count_children": { - "documentation": null, - "entity": "spm_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "spm_unit_count_children", - "label": "children in SPM unit", - "category": null, - "unit": null, - "moduleName": "household.demographic.spm_unit.spm_unit_count_children", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["is_child"], - "subtracts": null, - "hidden_input": false - }, - "spm_unit_count": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "spm_unit_count", - "label": "SPM units represented", - "category": null, - "unit": null, - "moduleName": "household.demographic.spm_unit.spm_unit_count", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 1, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "spm_unit_size": { - "documentation": null, - "entity": "spm_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "spm_unit_size", - "label": "SPM unit size", - "category": null, - "unit": null, - "moduleName": "household.demographic.spm_unit.spm_unit_size", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "spm_unit_is_married": { - "documentation": "Whether the adults in this SPM unit are married.", - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "spm_unit_is_married", - "label": "SPM unit is married", - "category": null, - "unit": null, - "moduleName": "household.demographic.spm_unit.spm_unit_is_married", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "spm_unit_count_adults": { - "documentation": null, - "entity": "spm_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "spm_unit_count_adults", - "label": "adults in SPM unit", - "category": null, - "unit": null, - "moduleName": "household.demographic.spm_unit.spm_unit_count_adults", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "spm_unit_id": { - "documentation": null, - "entity": "spm_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "spm_unit_id", - "label": "SPM unit ID", - "category": null, - "unit": null, - "moduleName": "household.demographic.spm_unit.spm_unit_id", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "person_spm_unit_id": { - "documentation": null, - "entity": "person", - "valueType": "int", - "definitionPeriod": "year", - "name": "person_spm_unit_id", - "label": "SPM unit ID", - "category": null, - "unit": null, - "moduleName": "household.demographic.spm_unit.spm_unit_id", - "indexInModule": 1, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "investment_in_529_plan": { - "documentation": "Amount invested in a 529 savings plan.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "investment_in_529_plan", - "label": "529 plan investment", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.education.investment_in_529_plan", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["investment_in_529_plan_indv"], - "subtracts": null, - "hidden_input": false - }, - "count_529_contribution_beneficiaries": { - "documentation": null, - "entity": "person", - "valueType": "int", - "definitionPeriod": "year", - "name": "count_529_contribution_beneficiaries", - "label": "Number of beneficiaries to 529 college savings plan contributions", - "category": null, - "unit": null, - "moduleName": "household.expense.education.count_529_contribution_beneficiaries", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "investment_in_529_plan_indv": { - "documentation": "Amount invested in a 529 savings plan for each contributor.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "investment_in_529_plan_indv", - "label": "Individual 529 plan investment amounts", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.education.investment_in_529_plan_indv", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "non_public_school_tuition": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "non_public_school_tuition", - "label": "Nonchartered, Nonpublic School Tuition", - "category": null, - "unit": null, - "moduleName": "household.expense.education.non_public_school_tuition", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "new_clean_vehicle_battery_critical_minerals_extracted_in_trading_partner_country": { - "documentation": "Percent of newly purchased new clean vehicle's battery critical minearls (by value) extracted or processed in any country with which the US has a free trade agreement in effect, or recycled in North America", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "new_clean_vehicle_battery_critical_minerals_extracted_in_trading_partner_country", - "label": "Percent of new clean vehicle's battery critical minerals extracted in a US trading partner country", - "category": null, - "unit": "/1", - "moduleName": "household.expense.vehicle.new_clean_vehicle_battery_critical_minerals_extracted_in_trading_partner_country", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "used_clean_vehicle_sale_price": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "used_clean_vehicle_sale_price", - "label": "Sale price of newly purchased used clean vehicle", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.vehicle.used_clean_vehicle_sale_price", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "new_clean_vehicle_battery_capacity": { - "documentation": "In kilowatt-hours (kWh)", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "new_clean_vehicle_battery_capacity", - "label": "Battery capacity of a purchased new clean vehicle", - "category": null, - "unit": "kWh", - "moduleName": "household.expense.vehicle.new_clean_vehicle_battery_capacity", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "new_clean_vehicle_msrp": { - "documentation": "Manufacturer's suggested retail price of a newly purchased new clean vehicle", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "new_clean_vehicle_msrp", - "label": "New clean vehicle MSRP", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.vehicle.new_clean_vehicle_msrp", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "new_clean_vehicle_classification": { - "documentation": null, - "entity": "tax_unit", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "new_clean_vehicle_classification", - "label": "New clean vehicle classification", - "category": null, - "unit": null, - "moduleName": "household.expense.vehicle.new_clean_vehicle_classification", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": "OTHER", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "VAN", - "label": "Van" - }, - { - "value": "SUV", - "label": "Sport utility vehicle" - }, - { - "value": "PICKUP", - "label": "Pickup truck" - }, - { - "value": "OTHER", - "label": "Other" - } - ] - }, - "new_clean_vehicle_battery_components_made_in_north_america": { - "documentation": "Percent of newly purchased new clean vehicle's battery components (by value) manufactured or assembled in North America", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "new_clean_vehicle_battery_components_made_in_north_america", - "label": "Percent of new clean vehicle's battery components made in North America", - "category": null, - "unit": "/1", - "moduleName": "household.expense.vehicle.new_clean_vehicle_battery_components_made_in_north_america", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "auto_loan_interest": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "auto_loan_interest", - "label": "auto loan interest expense", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.vehicle.auto_loan_interest", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "purchased_qualifying_new_clean_vehicle": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "purchased_qualifying_new_clean_vehicle", - "label": "Purchased a qualifying new clean vehicle", - "category": null, - "unit": null, - "moduleName": "household.expense.vehicle.purchased_qualifying_new_clean_vehicle", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "auto_loan_balance": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "auto_loan_balance", - "label": "auto loan total balance", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.vehicle.auto_loan_balance", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "purchased_qualifying_used_clean_vehicle": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "purchased_qualifying_used_clean_vehicle", - "label": "Purchased a qualifying used clean vehicle", - "category": null, - "unit": null, - "moduleName": "household.expense.vehicle.purchased_qualifying_used_clean_vehicle", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "student_loan_interest": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "student_loan_interest", - "label": "Student loan interest expense", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.person.student_loan_interest", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "qualified_tuition_expenses": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "qualified_tuition_expenses", - "label": "Qualified tuition expenses", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.person.qualified_tuition_expenses", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "investment_interest_expense": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "investment_interest_expense", - "label": "Investment interest expense", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.person.investment_interest_expense", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "deductible_mortgage_interest": { - "documentation": "Under the interest deduction, the US caps the mortgage value to which interest is applied which based on the year of purchase not tax year.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "deductible_mortgage_interest", - "label": "Deductible mortgage interest", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.person.deductible_mortgage_interest", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "educator_expense": { - "documentation": "Expenses necessary for carrying out educator-related duties.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "educator_expense", - "label": "Educator expenses", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.person.educator_expense", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "k12_tuition_and_fees": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "k12_tuition_and_fees", - "label": "K-12 Tuition and fees (from Form 8917)", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.person.k12_tuition_and_fees", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "unreimbursed_business_employee_expenses": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "unreimbursed_business_employee_expenses", - "label": "Unreimbursed business employee expenses", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.person.unreimbursed_business_employee_expenses", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mortgage_interest": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mortgage_interest", - "label": "Mortgage interest", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.person.mortgage_interest", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["non_deductible_mortgage_interest", "deductible_mortgage_interest"], - "subtracts": null, - "hidden_input": false - }, - "investment_expenses": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "investment_expenses", - "label": "Investment expenses", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.person.investment_expense", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tuition_and_fees": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "tuition_and_fees", - "label": "Tuition and fees (from Form 8917)", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.person.tuition_and_fees", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "qualified_adoption_assistance_expense": { - "documentation": "Qualified adoption expense (as defined in 26 U.S. Code § 23(d)) made pursuant to an adoption assistance program.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "qualified_adoption_assistance_expense", - "label": "Qualified adoption expense", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.person.qualified_adoption_assistance_expense", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "alimony_expense": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "alimony_expense", - "label": "Alimony expense", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.person.alimony_expense", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_preparation_fees": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "tax_preparation_fees", - "label": "Tax preparation fees", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.person.tax_preparation_fees", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "non_mortgage_interest": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "non_mortgage_interest", - "label": "Non-mortgage interest", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.person.non_mortgage_interest", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["investment_interest_expense"], - "subtracts": null, - "hidden_input": false - }, - "home_mortgage_interest": { - "documentation": "Home mortgage interest, including both reported and not reported on federal Form 1098.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "home_mortgage_interest", - "label": "Interest paid on a home mortgage", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.person.home_mortgage_interest", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "deductible_interest_expense": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "deductible_interest_expense", - "label": "Interest paid on all loans", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.person.deductible_interest_expense", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["deductible_mortgage_interest", "non_mortgage_interest"], - "subtracts": null, - "hidden_input": false - }, - "non_deductible_mortgage_interest": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "non_deductible_mortgage_interest", - "label": "Non-deductible mortgage interest", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.person.non_deductible_mortgage_interest", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "care_expenses": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "care_expenses", - "label": "Care expenses", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.childcare.care_expenses", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pre_subsidy_childcare_expenses": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "pre_subsidy_childcare_expenses", - "label": "Pre subsidy child care expenses", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.childcare.pre_subsidy_childcare_expenses", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "childcare_hours_per_week": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "childcare_hours_per_week", - "label": "Child care hours per week", - "category": null, - "unit": "hour", - "moduleName": "household.expense.childcare.childcare_hours_per_week", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_unit_childcare_expenses": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "tax_unit_childcare_expenses", - "label": "Childcare expenses", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.childcare.tax_unit_childcare_expenses", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "childcare_expenses": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "childcare_expenses", - "label": "Child care expenses", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.childcare.childcare_expenses", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "childcare_days_per_week": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "childcare_days_per_week", - "label": "Child care days per week", - "category": null, - "unit": "day", - "moduleName": "household.expense.childcare.childcare_days_per_week", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "spm_unit_pre_subsidy_childcare_expenses": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "spm_unit_pre_subsidy_childcare_expenses", - "label": "SPM unit pre subsidy child care expenses", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.childcare.spm_unit_pre_subsidy_childcare_expenses", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pre_subsidy_care_expenses": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "pre_subsidy_care_expenses", - "label": "Pre subsidy care expenses", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.childcare.pre_subsidy_care_expenses", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "spm_unit_capped_work_childcare_expenses": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "spm_unit_capped_work_childcare_expenses", - "label": "SPM unit work and childcare expenses", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.childcare.spm_unit_capped_work_childcare_expenses", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "childcare_hours_per_day": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "childcare_hours_per_day", - "label": "Child care hours per day", - "category": null, - "unit": "hour", - "moduleName": "household.expense.childcare.childcare_hours_per_day", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "childcare_provider_type_group": { - "documentation": null, - "entity": "person", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "childcare_provider_type_group", - "label": "Childcare provider type group", - "category": null, - "unit": null, - "moduleName": "household.expense.childcare.childcare_provider_type_group", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": "DCC_SACC", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "DCC_SACC", - "label": "Licenced/registered/permitted day care center; registered school-age child care" - }, - { - "value": "FDC_GFDC", - "label": "Registered family day care homes; licensed group family day care" - }, - { - "value": "LE_GC", - "label": "Legally exempt group child care programs" - }, - { - "value": "LE_STD", - "label": "Informal child care standard rate" - }, - { - "value": "LE_ENH", - "label": "Informal child care enhanced rate" - } - ] - }, - "after_school_expenses": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "after_school_expenses", - "label": "After school childcare expenses", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.childcare.after_school_expenses", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "charitable_cash_donations": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "charitable_cash_donations", - "label": "Charitable donations (cash)", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.charitable.charitable_cash_donations", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "charitable_non_cash_donations": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "charitable_non_cash_donations", - "label": "Charitable donations (non-cash)", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.charitable.charitable_non_cash_donations", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "spm_unit_payroll_tax_reported": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "spm_unit_payroll_tax_reported", - "label": "SPM unit payroll tax (reported)", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.tax.spm_unit_payroll_tax_reported", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "excess_withheld_payroll_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "excess_withheld_payroll_tax", - "label": "excess withheld payroll tax", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.tax.excess_withheld_payroll_tax", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "qualified_retirement_penalty": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "qualified_retirement_penalty", - "label": "Penalty tax on qualified retirement plans", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.tax.qualified_retirement_penalty", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "spm_unit_payroll_tax": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "spm_unit_payroll_tax", - "label": "Payroll tax", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.tax.spm_unit_payroll_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "spm_unit_state_tax": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "spm_unit_state_tax", - "label": "State income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.tax.spm_unit_state_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "casualty_loss": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "casualty_loss", - "label": "Casualty/theft loss", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.tax.casualty_loss", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "spm_unit_federal_tax_reported": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "spm_unit_federal_tax_reported", - "label": "Federal income tax (reported", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.tax.spm_unit_federal_tax_reported", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "spm_unit_federal_tax": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "spm_unit_federal_tax", - "label": "Federal income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.tax.spm_unit_federal_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "spm_unit_self_employment_tax": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "spm_unit_self_employment_tax", - "label": "Self employment tax", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.tax.spm_unit_self_employment_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["self_employment_tax"], - "subtracts": null, - "hidden_input": false - }, - "real_estate_taxes": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "real_estate_taxes", - "label": "Real estate taxes", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.tax.real_estate_taxes", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxable_estate_value": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxable_estate_value", - "label": "Taxable estate value", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.tax.taxable_estate_value", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "state_income_tax_reported": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "state_income_tax_reported", - "label": "reported State income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.tax.state_income_tax_reported", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "spm_unit_state_tax_reported": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "spm_unit_state_tax_reported", - "label": "State income tax (reported)", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.tax.spm_unit_state_tax_reported", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "metered_gas_expense": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "metered_gas_expense", - "label": "Metered gas expense", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.utilities.metered_gas_expense", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "broadband_cost": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "broadband_cost", - "label": "Broadband cost", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.utilities.broadband_cost", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "coal_expense": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "coal_expense", - "label": "Coal expense", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.utilities.coal_expense", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "sewage_expense": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "sewage_expense", - "label": "Sewage expense", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.utilities.sewage_expense", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "heating_cooling_expense": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "heating_cooling_expense", - "label": "Heating and cooling expense", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.utilities.heating_cooling_expense", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "utility_expense": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "utility_expense", - "label": "Utility expenses", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.utilities.utility_expense", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "heating_cooling_expense", - "gas_expense", - "electricity_expense", - "trash_expense", - "water_expense", - "sewage_expense", - "phone_expense" - ], - "subtracts": null, - "hidden_input": false - }, - "has_heating_cooling_expense": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "has_heating_cooling_expense", - "label": "Has heating/cooling costs", - "category": null, - "unit": null, - "moduleName": "household.expense.utilities.has_heating_cooling_expense", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "fuel_oil_expense": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "fuel_oil_expense", - "label": "Fuel oil expense", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.utilities.fuel_oil_expense", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "count_distinct_utility_expenses": { - "documentation": "The number of distinct utility expenses.", - "entity": "spm_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "count_distinct_utility_expenses", - "label": "Number of distinct utility expenses", - "category": null, - "unit": null, - "moduleName": "household.expense.utilities.count_distinct_utility_expenses", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "gas_expense": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "gas_expense", - "label": "Gas expense", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.utilities.gas_expense", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pre_subsidy_electricity_expense": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "pre_subsidy_electricity_expense", - "label": "Pre subsidy electricity expense", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.utilities.pre_subsidy_electricity_expense", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "phone_cost": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "phone_cost", - "label": "Phone cost", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.utilities.phone_cost", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "cooking_fuel_expense": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "cooking_fuel_expense", - "label": "Cooking fuel expense", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.utilities.cooking_fuel_expense", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "bottled_gas_expense": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "bottled_gas_expense", - "label": "Bottled gas expense", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.utilities.bottled_gas_expense", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "water_expense": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "water_expense", - "label": "Water expense", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.utilities.water_expense", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "has_phone_expense": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "has_phone_expense", - "label": "Has phone costs", - "category": null, - "unit": null, - "moduleName": "household.expense.utilities.has_phone_expense", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "phone_expense": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "phone_expense", - "label": "Phone expense", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.utilities.phone_expense", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["phone_cost"], - "subtracts": null, - "hidden_input": false - }, - "trash_expense": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "trash_expense", - "label": "Trash expense", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.utilities.trash_expense", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "electricity_expense": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "electricity_expense", - "label": "Electricity expense", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.utilities.electricity_expense", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "child_support_received": { - "documentation": "Value of child support benefits received.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "child_support_received", - "label": "Child support receipt", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.child_support.child_support_received", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "child_support_expense": { - "documentation": "Legally mandated child support expenses.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "child_support_expense", - "label": "Child support expense", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.child_support.child_support_expense", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "heating_expense_last_year": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "heating_expense_last_year", - "label": "Household's heating expense last year", - "category": null, - "unit": null, - "moduleName": "household.expense.housing.heating_expense_last_year", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "small_area_fair_market_rent": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "small_area_fair_market_rent", - "label": "Small area fair market rent", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.housing.small_area_fair_market_rent", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "heat_expense_included_in_rent": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "heat_expense_included_in_rent", - "label": "Whether heating expense is included in rent payments", - "category": null, - "unit": null, - "moduleName": "household.expense.housing.heat_expense_included_in_rent", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "homeowners_association_fees": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "homeowners_association_fees", - "label": "Homeowners association fees", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.housing.homeowners_association_fees", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pre_subsidy_rent": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "pre_subsidy_rent", - "label": "Pre subsidy rent", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.housing.pre_subsidy_rent", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "rent": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "rent", - "label": "Rent", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.housing.rent", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "homeowners_insurance": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "homeowners_insurance", - "label": "Homeowners insurance", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.housing.homeowners_insurance", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "rents": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "rents", - "label": "Tax unit pays rent", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.housing.rents", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tenure_type": { - "documentation": null, - "entity": "household", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "tenure_type", - "label": "tenure type", - "category": null, - "unit": null, - "moduleName": "household.expense.housing.tenure_type", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": "NONE", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "RENTED", - "label": "rented" - }, - { - "value": "OWNED_OUTRIGHT", - "label": "owned outright" - }, - { - "value": "OWNED_WITH_MORTGAGE", - "label": "owned with mortgage" - }, - { - "value": "NONE", - "label": "none" - } - ] - }, - "mortgage_payments": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mortgage_payments", - "label": "Mortgage payments", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.housing.mortgage_payments", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "utilities_included_in_rent": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "utilities_included_in_rent", - "label": "Whether utilities are included in rent payments", - "category": null, - "unit": null, - "moduleName": "household.expense.housing.utilities_included_in_rent", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_in_public_housing": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_in_public_housing", - "label": "Whether the household is in public housing", - "category": null, - "unit": null, - "moduleName": "household.expense.housing.is_in_public_housing", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "housing_cost": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "housing_cost", - "label": "Housing cost", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.housing.housing_cost", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "rent", - "real_estate_taxes", - "homeowners_association_fees", - "mortgage_payments", - "homeowners_insurance" - ], - "subtracts": null, - "hidden_input": false - }, - "heating_expenses": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "heating_expenses", - "label": "Tax unit heating cost", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.housing.heating_expenses", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["heating_expense_person"], - "subtracts": null, - "hidden_input": false - }, - "heating_expense_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "heating_expense_person", - "label": "Heating cost for each person", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.housing.heating_expense_person", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "home_energy_audit_expenditures": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "home_energy_audit_expenditures", - "label": "Expenditures on home energy audits", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.housing.expenditures.home_energy_audit_expenditures", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "current_home_energy_use": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "current_home_energy_use", - "label": "Current home energy use in monthly kilowatt hours", - "category": null, - "unit": "kWh/month", - "moduleName": "household.expense.housing.expenditures.residential_efficiency_electrification.current_home_energy_use", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "residential_efficiency_electrification_retrofit_expenditures": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "residential_efficiency_electrification_retrofit_expenditures", - "label": "Expenditures on efficiency and electrification retrofits ", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.housing.expenditures.residential_efficiency_electrification.residential_efficiency_electrification_retrofit_expenditures", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "residential_efficiency_electrification_retrofit_energy_savings": { - "documentation": "In kilowatt hours per month. Do not include savings from projects listed in other electrification and efficiency expenditure categories.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "residential_efficiency_electrification_retrofit_energy_savings", - "label": "Modeled energy system savings from a residential efficiency and electrification retrofit", - "category": null, - "unit": "kWh/month", - "moduleName": "household.expense.housing.expenditures.residential_efficiency_electrification.residential_efficiency_electrification_retrofit_energy_savings", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "energy_efficient_insulation_expenditures": { - "documentation": "Expenditures on any insulation material or system which is specifically and primarily designed to reduce the heat loss or gain of a dwelling unit when installed in or on such dwelling unit.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "energy_efficient_insulation_expenditures", - "label": "Energy efficient insulation expenditures", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.housing.expenditures.energy_efficiency_improvements.energy_efficient_insulation_expenditures", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "energy_efficient_door_expenditures": { - "documentation": "Expenditures on exterior doors that meet version 6.0 Energy Star program requirements.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "energy_efficient_door_expenditures", - "label": "Energy efficient door expenditures", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.housing.expenditures.energy_efficiency_improvements.energy_efficient_door_expenditures", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "energy_efficient_roof_expenditures": { - "documentation": "Expenditures on metal or asphalt roof or roof products that meet Energy Star program requirements and have appropriate pigmented coatings or cooling granules which are specifically and primarily designed to reduce the heat gain of such dwelling unit.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "energy_efficient_roof_expenditures", - "label": "Energy efficient roof expenditures", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.housing.expenditures.energy_efficiency_improvements.energy_efficient_roof_expenditures", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "energy_efficient_window_expenditures": { - "documentation": "Expenditures on exterior windows (including skylights) that meet version 6.0 Energy Star program requirements.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "energy_efficient_window_expenditures", - "label": "Energy efficient window expenditures", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.housing.expenditures.energy_efficiency_improvements.energy_efficient_window_expenditures", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "qualified_furnace_or_hot_water_boiler_expenditures": { - "documentation": "Must achieve an annual fuel utilization efficiency rate of not less than 95.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "qualified_furnace_or_hot_water_boiler_expenditures", - "label": "Expenditures on qualified natural gas, propane, or oil furnaces or hot water boilers", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.housing.expenditures.energy_property.qualified_furnace_or_hot_water_boiler_expenditures", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "electric_wiring_expenditures": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "electric_wiring_expenditures", - "label": "Expenditures on electric wiring", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.housing.expenditures.energy_property.electric_wiring_expenditures", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "electric_load_service_center_upgrade_expenditures": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "electric_load_service_center_upgrade_expenditures", - "label": "Expenditures on electric load service center upgrades", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.housing.expenditures.energy_property.electric_load_service_center_upgrade_expenditures", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "air_sealing_ventilation_expenditures": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "air_sealing_ventilation_expenditures", - "label": "Expenditures on air sealing and ventilation", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.housing.expenditures.energy_property.air_sealing_ventilation_expenditures", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "electric_stove_cooktop_range_or_oven_expenditures": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "electric_stove_cooktop_range_or_oven_expenditures", - "label": "Expenditures on electric stoves, cooktop ranges, or ovens", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.housing.expenditures.energy_property.electric_stove_cooktop_range_or_oven_expenditures", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "biomass_stove_boiler_expenditures": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "biomass_stove_boiler_expenditures", - "label": "Expenditures on biomass stoves and boilers", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.housing.expenditures.energy_property.biomass_stove_boiler_expenditures", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "electric_heat_pump_clothes_dryer_expenditures": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "electric_heat_pump_clothes_dryer_expenditures", - "label": "Expenditures on electric heat pump clother dryers", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.housing.expenditures.energy_property.electric_heat_pump_clothes_dryer_expenditures", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "heat_pump_water_heater_expenditures": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "heat_pump_water_heater_expenditures", - "label": "Expenditures on heat pump water heaters", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.housing.expenditures.energy_property.heat_pump_water_heater_expenditures", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "heat_pump_expenditures": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "heat_pump_expenditures", - "label": "Expenditures on heat pumps", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.housing.expenditures.energy_property.heat_pump_expenditures", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "energy_efficient_central_air_conditioner_expenditures": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "energy_efficient_central_air_conditioner_expenditures", - "label": "Expenditures on energy efficient central air conditioners", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.housing.expenditures.energy_property.energy_efficient_central_air_conditioner_expenditures", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "advanced_main_air_circulating_fan_expenditures": { - "documentation": "Must be used in a natural gas, propane, or oil furnaces and which have an annual electricity use of no more than 2 percent of the total annual energy use of the furnace.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "advanced_main_air_circulating_fan_expenditures", - "label": "Expenditures on advanced main air circulating fans", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.housing.expenditures.energy_property.advanced_main_air_circulating_fan_expenditures", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "solar_electric_property_expenditures": { - "documentation": "Expenditures for property which uses solar energy to generate electricity for use in a dwelling unit located in the United States and used as a residence by the taxpayer.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "solar_electric_property_expenditures", - "label": "Qualified solar electric property expenditures", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.housing.expenditures.energy_efficient_property.solar_electric_property_expenditures", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "fuel_cell_property_capacity": { - "documentation": "Kilowatts of capacity of qualified fuel cell properties purchased.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "fuel_cell_property_capacity", - "label": "Capacity of purchased fuel cells", - "category": null, - "unit": "kW", - "moduleName": "household.expense.housing.expenditures.energy_efficient_property.fuel_cell_property_capacity", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "fuel_cell_property_expenditures": { - "documentation": "Expenditures for qualified fuel cell property installed on or in connection with a dwelling unit located in the United States and used as a principal residence by the taxpayer.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "fuel_cell_property_expenditures", - "label": "Qualified fuel cell property expenditures", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.housing.expenditures.energy_efficient_property.fuel_cell_property_expenditures", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "small_wind_energy_property_expenditures": { - "documentation": "Expenditures for property which uses a wind turbine to generate electricity for use in connection with a dwelling unit located in the United States and used as a residence by the taxpayer.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "small_wind_energy_property_expenditures", - "label": "Qualified small wind energy property expenditures", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.housing.expenditures.energy_efficient_property.small_wind_energy_property_expenditures", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "geothermal_heat_pump_property_expenditures": { - "documentation": "Expenditures for qualified geothermal heat pump property installed on or in connection with a dwelling unit located in the United States and used as a residence by the taxpayer.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "geothermal_heat_pump_property_expenditures", - "label": "Qualified geothermal heat pump property expenditures", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.housing.expenditures.energy_efficient_property.geothermal_heat_pump_property_expenditures", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "solar_water_heating_property_expenditures": { - "documentation": "Expenditures for property to heat water for use in a dwelling unit located in the United States and used as a residence by the taxpayer if at least half of the energy used by such property for such purpose is derived from the sun.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "solar_water_heating_property_expenditures", - "label": "Qualified solar water heating property expenditures", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.housing.expenditures.energy_efficient_property.solar_water_heating_property_expenditures", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "qualified_battery_storage_technology_expenditures": { - "documentation": "Expenditures for qualified battery storage technology installed in connection with a dwelling unit located in the United States and used as a residence by the taxpayer and has the capacity not less than 3kwh.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "qualified_battery_storage_technology_expenditures", - "label": "Qualified battery storage technology expenditures", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.housing.expenditures.energy_efficient_property.qualified_battery_storage_technology_expenditures", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "employer_contribution_to_health_insurance_premiums_category": { - "documentation": null, - "entity": "person", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "employer_contribution_to_health_insurance_premiums_category", - "label": "Extent to which employer paid health insurance premiums", - "category": null, - "unit": null, - "moduleName": "household.expense.health.employer_contribution_to_health_insurance_premiums_category", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": "NONE", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "NONE", - "label": "NONE" - }, - { - "value": "SOME", - "label": "SOME" - }, - { - "value": "ALL", - "label": "ALL" - }, - { - "value": "NA", - "label": "N/A" - } - ] - }, - "imaging_expense": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "imaging_expense", - "label": "Imaging expenses", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.health.imaging_expense", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "has_marketplace_health_coverage": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "has_marketplace_health_coverage", - "label": "Is eligible for health insurance from an ACA Marketplace plan because has no employer-sponsored health insurance coverage.", - "category": null, - "unit": null, - "moduleName": "household.expense.health.has_marketplace_health_coverage", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": true, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "prescription_expense": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "prescription_expense", - "label": "Prescription expenses", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.health.prescription_expense", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "medicare_part_b_premiums": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "medicare_part_b_premiums", - "label": "Medicare Part B premiums", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.health.medicare_part_b_premiums", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "inpatient_expense": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "inpatient_expense", - "label": "Inpatient expenses", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.health.inpatient_expense", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "health_insurance_premiums": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "health_insurance_premiums", - "label": "Health insurance premiums", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.health.health_insurance_premiums", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["health_insurance_premiums_without_medicare_part_b", "medicare_part_b_premiums"], - "subtracts": null, - "hidden_input": false - }, - "urgent_care_expense": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "urgent_care_expense", - "label": "Urgent care expenses", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.health.urgent_care_expense", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "health_insurance_premiums_without_medicare_part_b": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "health_insurance_premiums_without_medicare_part_b", - "label": "Health insurance premiums without Medicare Part B premiums", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.health.health_insurance_premiums_without_medicare_part_b", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "other_medical_expenses": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "other_medical_expenses", - "label": "Other medical expenses", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.health.other_medical_expenses", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "medical_out_of_pocket_expenses": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "medical_out_of_pocket_expenses", - "label": "Medical out of pocket expenses", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.health.medical_out_of_pocket_expenses", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["health_insurance_premiums", "other_medical_expenses"], - "subtracts": null, - "hidden_input": false - }, - "physician_services_expense": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "physician_services_expense", - "label": "Physician services expenses", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.health.physician_services_expense", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "long_term_health_insurance_premiums": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "long_term_health_insurance_premiums", - "label": "Long-term health insurance premiums", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.health.long_term_health_insurance_premiums", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ambulance_expense": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ambulance_expense", - "label": "Ambulance expenses", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.health.ambulance_expense", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "outpatient_expense": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "outpatient_expense", - "label": "Outpatient expenses", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.health.outpatient_expense", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "self_employed_health_insurance_premiums": { - "documentation": "Health insurance premiums for plans covering individuals who are not covered by any employer-sponsored health insurance.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "self_employed_health_insurance_premiums", - "label": "Self-employed health insurance premiums", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.health.self_employed_health_insurance_premiums", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["health_insurance_premiums"], - "subtracts": null, - "hidden_input": false - }, - "over_the_counter_health_expenses": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "over_the_counter_health_expenses", - "label": "Over the counter health expenses", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.health.over_the_counter_health_expenses", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "lab_expense": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "lab_expense", - "label": "Lab expenses", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.health.lab_expense", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "er_visit_expense": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "er_visit_expense", - "label": "Emergency room visit expenses", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.health.er_visit_expense", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "health_savings_account_payroll_contributions": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "health_savings_account_payroll_contributions", - "label": "Health Savings Account payroll contributions", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.health.health_savings_account_contributions", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "able_contributions_person": { - "documentation": "Contributions made to an ABLE account by each individual.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "able_contributions_person", - "label": "Person-level ABLE contributions", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.retirement.able_contributions_person", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "able_contributions": { - "documentation": "Contributions made to an ABLE account by all members of the tax unit.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "able_contributions", - "label": "ABLE contributions", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.retirement.able_contributions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["able_contributions_person"], - "subtracts": null, - "hidden_input": false - }, - "traditional_401k_contributions": { - "documentation": "Contributions to traditional 401(k) accounts.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "traditional_401k_contributions", - "label": "Traditional 401(k) contributions", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.retirement.traditional_401k_contributions", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "self_employed_pension_contributions": { - "documentation": "Pension plan contributions associated with plans for the self employed.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "self_employed_pension_contributions", - "label": "Self-employed pension contributions", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.retirement.self_employed_pension_contributions", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "early_withdrawal_penalty": { - "documentation": "Penalties paid due to early withdrawal of savings.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "early_withdrawal_penalty", - "label": "Early savings withdrawal penalty", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.retirement.early_withdrawal_penalty", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "roth_ira_contributions": { - "documentation": "Contributions to Roth Individual Retirement Accounts.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "roth_ira_contributions", - "label": "Roth IRA contributions", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.retirement.roth_ira_contributions", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "traditional_403b_contributions": { - "documentation": "Contributions to traditional 403(b) accounts.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "traditional_403b_contributions", - "label": "Traditional 403(b) contributions", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.retirement.traditional_403b_contributions", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "roth_401k_contributions": { - "documentation": "Contributions to Roth 401(k) accounts.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "roth_401k_contributions", - "label": "Roth 401(k) contributions", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.retirement.roth_401k_contributions", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "roth_403b_contributions": { - "documentation": "Contributions to Roth 403(b) accounts", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "roth_403b_contributions", - "label": "Roth 403(b) contributions", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.retirement.roth_403b_contributions", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "traditional_ira_contributions": { - "documentation": "Contributions to traditional Individual Retirement Accounts.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "traditional_ira_contributions", - "label": "Traditional IRA contributions", - "category": null, - "unit": "currency-USD", - "moduleName": "household.expense.retirement.traditional_ira_contributions", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "fsla_overtime_salary_threshold": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "fsla_overtime_salary_threshold", - "label": "FSLA applicable salary threshold to determine eligibility for overtime pay", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.fsla_overtime_salary_threshold", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "illicit_income": { - "documentation": "Income from bribes, corrupt gifts or other illegal activities.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "illicit_income", - "label": "illicit income", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.illicit_income", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "property_sales_net_capital_gain": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "property_sales_net_capital_gain", - "label": "Net capital gains from sale or exchange of property", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.tax_unit.property_sales_net_capital_gain", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "us_govt_interest": { - "documentation": "Interest on U.S. government obligations such as U.S. savings bonds, U.S. Treasury bills, and U.S. government certificates.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "us_govt_interest", - "label": "Interest on U.S. government obligations", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.tax_unit.us_govt_interest", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "spouse_separate_adjusted_gross_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "spouse_separate_adjusted_gross_income", - "label": "Spouse's tax unit's adjusted gross income if they file separately", - "category": null, - "unit": null, - "moduleName": "household.income.tax_unit.spouse_separate_adjusted_gross_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "form_4972_lumpsum_distributions": { - "documentation": "Lump-sum distributions reported on IRS Form 4972.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "form_4972_lumpsum_distributions", - "label": "Lump-sum distributions reported on IRS Form 4972", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.tax_unit.form_4972_lumpsum_distributions", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "net_capital_gains": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "net_capital_gains", - "label": "Net capital gains before loss limitation", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.tax_unit.net_capital_gains", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["long_term_capital_gains", "short_term_capital_gains"], - "subtracts": null, - "hidden_input": false - }, - "equiv_household_net_income": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "equiv_household_net_income", - "label": "equivalised net income", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.household.equiv_household_net_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "household_income_decile": { - "documentation": "Decile of household income (person-weighted)", - "entity": "household", - "valueType": "int", - "definitionPeriod": "year", - "name": "household_income_decile", - "label": "household income decile", - "category": null, - "unit": null, - "moduleName": "household.income.household.household_income_decile", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "household_net_income": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "household_net_income", - "label": "net income", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.household.household_net_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "household_market_income", - "household_benefits", - "household_refundable_tax_credits" - ], - "subtracts": ["household_tax_before_refundable_credits"], - "hidden_input": false - }, - "household_benefits": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "household_benefits", - "label": "benefits", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.household.household_benefits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.household.household_benefits", - "subtracts": null, - "hidden_input": false - }, - "household_refundable_state_tax_credits": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "household_refundable_state_tax_credits", - "label": "refundable State income tax credits", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.household.household_refundable_state_tax_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.household.household_refundable_state_credits", - "subtracts": null, - "hidden_input": false - }, - "household_health_benefits": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "household_health_benefits", - "label": "Household health benefits", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.household.household_health_benefits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "household_refundable_tax_credits": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "household_refundable_tax_credits", - "label": "refundable tax credits", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.household.household_refundable_tax_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["income_tax_refundable_credits", "household_refundable_state_tax_credits"], - "subtracts": null, - "hidden_input": false - }, - "income_decile": { - "documentation": "Decile of household net income. Households are sorted by disposable income, and then divided into 10 equally-populated groups.", - "entity": "person", - "valueType": "int", - "definitionPeriod": "year", - "name": "income_decile", - "label": "income decile", - "category": null, - "unit": null, - "moduleName": "household.income.household.income_decile", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "household_tax_before_refundable_credits": { - "documentation": "Total tax liability before refundable credits.", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "household_tax_before_refundable_credits", - "label": "total tax before refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.household.household_tax_before_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "employee_payroll_tax", - "self_employment_tax", - "income_tax_before_refundable_credits", - "flat_tax", - "household_state_tax_before_refundable_credits" - ], - "subtracts": null, - "hidden_input": false - }, - "person_in_poverty": { - "documentation": "Whether person is in poverty", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "person_in_poverty", - "label": "person in poverty", - "category": null, - "unit": null, - "moduleName": "household.income.household.person_in_poverty", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "household_count_people": { - "documentation": null, - "entity": "household", - "valueType": "int", - "definitionPeriod": "year", - "name": "household_count_people", - "label": "Number of people", - "category": null, - "unit": "person", - "moduleName": "household.income.household.household_count_people", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "household_market_income": { - "documentation": "Income from non-government sources.", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "household_market_income", - "label": "market income", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.household.household_market_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.household.market_income_sources", - "subtracts": null, - "hidden_input": false - }, - "household_tax": { - "documentation": "Total tax liability after refundable credits.", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "household_tax", - "label": "total tax after refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.household.household_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["household_tax_before_refundable_credits"], - "subtracts": ["household_refundable_tax_credits"], - "hidden_input": false - }, - "household_state_tax_before_refundable_credits": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "household_state_tax_before_refundable_credits", - "label": "household State tax before refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.household.household_state_tax_before_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.household.state_income_tax_before_refundable_credits", - "subtracts": null, - "hidden_input": false - }, - "household_state_benefits": { - "documentation": "Benefits paid by State agencies.", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "household_state_benefits", - "label": "Household state benefits", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.household.household_state_benefits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.household.household_state_benefits", - "subtracts": null, - "hidden_input": false - }, - "household_local_benefits": { - "documentation": "Benefits paid by local agencies.", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "household_local_benefits", - "label": "Household local benefits", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.household.household_local_benefits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.household.household_local_benefits", - "subtracts": null, - "hidden_input": false - }, - "household_state_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "household_state_income_tax", - "label": "household State tax", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.household.household_state_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dependent_care_employer_benefits": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "dependent_care_employer_benefits", - "label": "Dependent care benefits received from an employer", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.dependent_care_employer_benefits", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "gambling_winnings": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "gambling_winnings", - "label": "Gambling winnings", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.gambling_winnings", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "gambling_losses": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "gambling_losses", - "label": "Gambling losses", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.gambling_losses", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ssi_reported": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ssi_reported", - "label": "SSI (reported)", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.ssi_reported", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_eligible_for_fsla_overtime": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_eligible_for_fsla_overtime", - "label": "is eligible for overtime pay", - "category": null, - "unit": null, - "moduleName": "household.income.person.is_eligible_for_fsla_overtime", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ssi_qualifying_quarters_earnings": { - "documentation": "Number of qualifying quarters of earnings for SSI eligibility", - "entity": "person", - "valueType": "int", - "definitionPeriod": "year", - "name": "ssi_qualifying_quarters_earnings", - "label": "SSI Qualifying Quarters of Earnings", - "category": null, - "unit": null, - "moduleName": "household.income.person.ssi_qualifying_quarters_earnings", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 40, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hours_worked_last_week": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "hours_worked_last_week", - "label": "weekly hours worked on the previous week", - "category": null, - "unit": "hour", - "moduleName": "household.income.person.hours_worked_last_week", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "fsla_overtime_occupation_exemption_category": { - "documentation": null, - "entity": "person", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "fsla_overtime_occupation_exemption_category", - "label": "FSLA occupation categories for overtime exemption", - "category": null, - "unit": null, - "moduleName": "household.income.person.fsla_overtime_occupation_exemption_category", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "NONE", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "NONE", - "label": "No exemption category" - }, - { - "value": "NEVER_WORKED", - "label": "Never worked" - }, - { - "value": "MILITARY", - "label": "Military" - }, - { - "value": "EXECUTIVE_ADMINISTRATIVE", - "label": "Executive, administrative, or professional" - }, - { - "value": "FARMER_FISHER", - "label": "Farmer or fisher" - }, - { - "value": "COMPUTER_SCIENTIST", - "label": "Computer scientist" - } - ] - }, - "weekly_hours_worked": { - "documentation": "Hours worked per week on average.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "weekly_hours_worked", - "label": "average weekly hours worked", - "category": null, - "unit": "hour", - "moduleName": "household.income.person.weekly_hours_worked", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["weekly_hours_worked_before_lsr", "weekly_hours_worked_behavioural_response"], - "subtracts": null, - "hidden_input": false - }, - "weekly_hours_worked_before_lsr": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "weekly_hours_worked_before_lsr", - "label": "average weekly hours worked (before labor supply responses)", - "category": null, - "unit": "hour", - "moduleName": "household.income.person.weekly_hours_worked", - "indexInModule": 1, - "isInputVariable": true, - "defaultValue": 40, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "weekly_hours_worked_behavioural_response_income_elasticity": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "weekly_hours_worked_behavioural_response_income_elasticity", - "label": "behavioural response in weekly hours worked (income effect)", - "category": null, - "unit": "hour", - "moduleName": "household.income.person.weekly_hours_worked", - "indexInModule": 2, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "weekly_hours_worked_behavioural_response_substitution_elasticity": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "weekly_hours_worked_behavioural_response_substitution_elasticity", - "label": "behavioural response in weekly hours worked (substitution effect)", - "category": null, - "unit": "hour", - "moduleName": "household.income.person.weekly_hours_worked", - "indexInModule": 3, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "weekly_hours_worked_behavioural_response": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "weekly_hours_worked_behavioural_response", - "label": "behavioural response in weekly hours worked", - "category": null, - "unit": "hour", - "moduleName": "household.income.person.weekly_hours_worked", - "indexInModule": 4, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "weekly_hours_worked_behavioural_response_income_elasticity", - "weekly_hours_worked_behavioural_response_substitution_elasticity" - ], - "subtracts": null, - "hidden_input": false - }, - "monthly_hours_worked": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "monthly_hours_worked", - "label": "Average monthly hours worked", - "category": null, - "unit": "hour", - "moduleName": "household.income.person.monthly_hours_worked", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "fsla_overtime_premium": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "fsla_overtime_premium", - "label": "premium income from overtime hours worked", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.fsla_overtime_premium", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_paid_hourly": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_paid_hourly", - "label": "is paid hourly", - "category": null, - "unit": null, - "moduleName": "household.income.person.is_paid_hourly", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tip_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "tip_income", - "label": "Tip income", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.tip_income", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "employment_income_last_year": { - "documentation": "Wages and salaries in prior year, including tips and commissions.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "employment_income_last_year", - "label": "employment income last year", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.employment_income_last_year", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "interest_income": { - "documentation": "Interest income from bonds, savings accounts, CDs, etc.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "interest_income", - "label": "interest income", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.interest.interest_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["tax_exempt_interest_income", "taxable_interest_income"], - "subtracts": null, - "hidden_input": false - }, - "tax_exempt_interest_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "tax_exempt_interest_income", - "label": "tax-exempt interest income", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.interest.tax_exempt_interest_income", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxable_interest_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxable_interest_income", - "label": "taxable interest income", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.interest.taxable_interest_income", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "farm_operations_income_would_be_qualified": { - "documentation": "Whether farm operations income would be considered qualified business income.", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "farm_operations_income_would_be_qualified", - "label": "Farm operations income would be qualified", - "category": null, - "unit": null, - "moduleName": "household.income.person.farm.farm_operations_income_would_be_qualified", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": true, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "farm_rent_income_would_be_qualified": { - "documentation": "Whether farm rental income would be considered qualified business income.", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "farm_rent_income_would_be_qualified", - "label": "Farm rent income would be qualified", - "category": null, - "unit": null, - "moduleName": "household.income.person.farm.farm_rent_income_would_be_qualified", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": true, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "farm_rent_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "farm_rent_income", - "label": "farm rental income", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.farm.farm_rent_income", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "farm_operations_income": { - "documentation": "Income from active farming operations. Schedule F. Do not include this income in self-employment income.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "farm_operations_income", - "label": "farm operations income", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.farm.farm_operations_income", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "non_qualified_dividend_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "non_qualified_dividend_income", - "label": "non-qualified dividend income", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.dividends.non_qualified_dividend_income", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "qualified_bdc_income": { - "documentation": "Business Development Company Dividend Income. Part of the QBID calculation.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "qualified_bdc_income", - "label": "Business Development Company dividend income", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.dividends.qualified_bdc_income", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "qualified_dividend_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "qualified_dividend_income", - "label": "qualified dividend income", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.dividends.qualified_dividend_income", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dividend_income": { - "documentation": "Qualified and non-qualified dividends", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "dividend_income", - "label": "ordinary dividend income", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.dividends.dividend_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["qualified_dividend_income", "non_qualified_dividend_income"], - "subtracts": null, - "hidden_input": false - }, - "qualified_reit_and_ptp_income": { - "documentation": "REIT and Publically Traded Partnership Income. Part of the QBID calclulation.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "qualified_reit_and_ptp_income", - "label": "REIT and PTP Income", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.dividends.qualified_reit_and_ptp_income", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "gi_cash_assistance": { - "documentation": "Income from guaranteed income or cash assistance pilots", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "gi_cash_assistance", - "label": "guaranteed income / cash assistance income", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.misc.gi_cash_assistance", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "military_basic_pay": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "military_basic_pay", - "label": "Military basic pay", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.misc.military_basic_pay", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "miscellaneous_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "miscellaneous_income", - "label": "Miscellaneous income", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.misc.miscellaneous_income", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "debt_relief": { - "documentation": "Income from discharge of indebtedness.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "debt_relief", - "label": "Debt relief income", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.misc.debt_relief", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "rental_income": { - "documentation": "Income from rental of property", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "rental_income", - "label": "rental income", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.misc.rental_income", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "investment_income_elected_form_4952": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "investment_income_elected_form_4952", - "label": "investment income elected on Form 4952", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.misc.investment_income_elected_form_4952", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "salt_refund_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "salt_refund_income", - "label": "State and local tax refund income", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.misc.salt_refund_income", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "us_bonds_for_higher_ed": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "us_bonds_for_higher_ed", - "label": "Income from U.S. bonds spent on higher education", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.misc.us_bonds_for_higher_ed", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "rental_income_would_be_qualified": { - "documentation": "Whether rental income would be considered qualified business income.", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "rental_income_would_be_qualified", - "label": "Rental income would be qualified", - "category": null, - "unit": null, - "moduleName": "household.income.person.misc.rental_income_would_be_qualified", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": true, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "strike_benefits": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "strike_benefits", - "label": "strike benefits", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.misc.strike_benefits", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "alimony_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "alimony_income", - "label": "Alimony income", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.misc.alimony_income", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "short_term_capital_gains": { - "documentation": "Net gains made from sales of assets held for one year or less(losses are expressed as negative gains).", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "short_term_capital_gains", - "label": "short-term capital gains", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.capital_gains.short_term_capital_gains", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "long_term_capital_gains_on_small_business_stock": { - "documentation": "Portion of capital_gains_28_percent_rate_gain not associated with collectibles.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "long_term_capital_gains_on_small_business_stock", - "label": "Long-term capital gains on small business stock sales, etc", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.capital_gains.long_term_capital_gains_on_small_business_stock", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "capital_gains": { - "documentation": "Net gain from disposition of property.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "capital_gains", - "label": "Capital gains (both short-term and long-term)", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.capital_gains.capital_gains", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["short_term_capital_gains", "long_term_capital_gains"], - "subtracts": null, - "hidden_input": false - }, - "long_term_capital_gains": { - "documentation": "Net gains made from sales of assets held for more than one year (losses are expressed as negative gains).", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "long_term_capital_gains", - "label": "long-term capital gains", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.capital_gains.long_term_capital_gains", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["long_term_capital_gains_before_response", "capital_gains_behavioral_response"], - "subtracts": null, - "hidden_input": false - }, - "unrecaptured_section_1250_gain": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "unrecaptured_section_1250_gain", - "label": "Un-recaptured section 1250 gain", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.capital_gains.unrecaptured_section_1250_gain", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "long_term_capital_gains_on_collectibles": { - "documentation": "Portion of capital_gains_28_percent_rate_gain associated with collectibles.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "long_term_capital_gains_on_collectibles", - "label": "Long-term capital gains on collectibles", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.capital_gains.long_term_capital_gains_on_collectibles", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "other_net_gain": { - "documentation": "Other net gain/loss from Form 4797", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "other_net_gain", - "label": "Other net gains", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.capital_gains.other_net_gain", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "non_sch_d_capital_gains": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "non_sch_d_capital_gains", - "label": "Capital gains not reported on Schedule D", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.capital_gains.non_sch_d_capital_gains", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "capital_losses": { - "documentation": "Losses from transactions involving property.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "capital_losses", - "label": "Capital losses (expressed as a non-negative number)", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.capital_gains.capital_losses", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_self_employed": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_self_employed", - "label": "Is self-employed", - "category": null, - "unit": null, - "moduleName": "household.income.person.self_employment.is_self_employed", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "business_is_qualified": { - "documentation": "Whether all income from self-employment, partnerships and S-corporations is from qualified businesses. A qualified trade or business is any trade or business other than a specified service trade or business, or employment. The list of specified service trades can be found at https://www.law.cornell.edu/uscode/text/26/1202#e_3_A.", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "business_is_qualified", - "label": "Business is qualified", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.self_employment.business_is_qualified", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": true, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "partnership_s_corp_income_would_be_qualified": { - "documentation": "Whether income from partnerships and S corporations would be considered qualified business income.", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "partnership_s_corp_income_would_be_qualified", - "label": "Partnership and S-corp income would be qualified", - "category": null, - "unit": null, - "moduleName": "household.income.person.self_employment.partnership_s_corp_income_would_be_qualified", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": true, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "business_is_sstb": { - "documentation": "Whether all income from self-employment, partnerships and S-corporations is from qualified businesses. A qualified trade or business is any specified service trade or business, or employment. The list of specified service trades can be found at https://www.law.cornell.edu/uscode/text/26/1202#e_3_A.", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "business_is_sstb", - "label": "Business is SSTB", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.self_employment.business_is_sstb", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "self_employment_income_would_be_qualified": { - "documentation": "Whether self-employment income would be considered qualified business income.", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "self_employment_income_would_be_qualified", - "label": "Self-employment income would be qualified", - "category": null, - "unit": null, - "moduleName": "household.income.person.self_employment.self_employment_income_would_be_qualified", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": true, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "partnership_s_corp_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "partnership_s_corp_income", - "label": "partnership/S-corp income", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.self_employment.partnership_s_corp_income", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "s_corp_self_employment_income": { - "documentation": "Partner self-employment earnings/loss (included in partnership_s_corp_income total)", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "s_corp_self_employment_income", - "label": "S-Corp self-employment income", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.self_employment.s_corp_self_employment_income", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "self_employment_income_last_year": { - "documentation": "Self-employment income in prior year.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "self_employment_income_last_year", - "label": "self-employment income last year", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.self_employment.self_employment_income_last_year", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "previous_year_income_available": { - "documentation": "Whether prior-year income was available in the survey.", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "previous_year_income_available", - "label": "Prior-year income available", - "category": null, - "unit": null, - "moduleName": "household.income.person.self_employment.self_employment_income_last_year", - "indexInModule": 1, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "unadjusted_basis_qualified_property": { - "documentation": "Share of unadjusted basis upon acquisition of all property held by qualified pass-through businesses.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "unadjusted_basis_qualified_property", - "label": "Unadjusted basis for qualified property", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.self_employment.unadjusted_basis_qualified_property", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "w2_wages_from_qualified_business": { - "documentation": "Share of wages paid by this person to employees as part of a pass-through qualified business or trade.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "w2_wages_from_qualified_business", - "label": "W2 wages", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.self_employment.w2_wages_from_qualified_business", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_exempt_401k_distributions": { - "documentation": "Tax-exempt distributions from 401(k) accounts (typically Roth).", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "tax_exempt_401k_distributions", - "label": "Tax-exempt 401(k) distributions", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.retirement.tax_exempt_401k_distributions", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "csrs_retirement_pay": { - "documentation": "Retirement income from the federal Civil Service Retirement System.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "csrs_retirement_pay", - "label": "Civil Service Retirement System (CSRS) retirement income", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.retirement.csrs_retirement_pay", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_exempt_private_pension_income": { - "documentation": "Tax-exempt income from non-government employee pensions.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "tax_exempt_private_pension_income", - "label": "tax-exempt private pension income", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.retirement.tax_exempt_private_pension_income", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxable_sep_distributions": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxable_sep_distributions", - "label": "taxable SEP distributions", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.retirement.taxable_sep_distributions", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "retirement_benefits_from_ss_exempt_employment": { - "documentation": "Amount of a recipient receive retirement benefits from SS exempt employment", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "retirement_benefits_from_ss_exempt_employment", - "label": "Retirement benefits amount from SS exempt employment", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.retirement.retirement_benefits_from_ss_exempt_employment", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_exempt_public_pension_income": { - "documentation": "Tax-exempt income from government employee pensions.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "tax_exempt_public_pension_income", - "label": "tax-exempt public pension income", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.retirement.tax_exempt_public_pension_income", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxable_retirement_distributions": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxable_retirement_distributions", - "label": "Taxable retirement account distributions", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.retirement.taxable_retirement_distributions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "taxable_ira_distributions", - "taxable_401k_distributions", - "taxable_sep_distributions", - "taxable_403b_distributions", - "keogh_distributions" - ], - "subtracts": null, - "hidden_input": false - }, - "retirement_distributions": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "retirement_distributions", - "label": "Retirement account distributions", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.retirement.retirement_distributions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["taxable_retirement_distributions", "tax_exempt_retirement_distributions"], - "subtracts": null, - "hidden_input": false - }, - "private_pension_income": { - "documentation": "Income from non-government employee pensions.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "private_pension_income", - "label": "private pension income", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.retirement.private_pension_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["tax_exempt_private_pension_income", "taxable_private_pension_income"], - "subtracts": null, - "hidden_input": false - }, - "keogh_distributions": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "keogh_distributions", - "label": "Keogh plan distributions", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.retirement.keogh_distributions", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "railroad_benefits": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "railroad_benefits", - "label": "Recieves any railroad benefits", - "category": null, - "unit": null, - "moduleName": "household.income.person.retirement.railroad_benefits", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_exempt_retirement_distributions": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "tax_exempt_retirement_distributions", - "label": "Tax-exempt retirement account distributions", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.retirement.tax_exempt_retirement_distributions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "tax_exempt_ira_distributions", - "tax_exempt_401k_distributions", - "tax_exempt_sep_distributions", - "tax_exempt_403b_distributions" - ], - "subtracts": null, - "hidden_input": false - }, - "taxable_public_pension_income": { - "documentation": "Taxable income from government employee pensions.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxable_public_pension_income", - "label": "taxable public pension income", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.retirement.taxable_public_pension_income", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_exempt_sep_distributions": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "tax_exempt_sep_distributions", - "label": "tax-exempt SEP distributions", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.retirement.tax_exempt_sep_distributions", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "military_retirement_pay": { - "documentation": "The benefits received under a United States military retirement plan, including survivor benefits.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "military_retirement_pay", - "label": "Military retirement pay", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.retirement.military_retirement_pay", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "public_pension_income": { - "documentation": "Income from government employee pensions.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "public_pension_income", - "label": "public pension income", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.retirement.public_pension_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["tax_exempt_public_pension_income", "taxable_public_pension_income"], - "subtracts": null, - "hidden_input": false - }, - "taxable_federal_pension_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxable_federal_pension_income", - "label": "Taxable federal pension income", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.retirement.taxable_federal_pension_income", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_exempt_ira_distributions": { - "documentation": "Tax-exempt distributions from individual retirement accounts (qualifying Roth distributions).", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "tax_exempt_ira_distributions", - "label": "Tax-exempt IRA distributions", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.retirement.tax_exempt_ira_distributions", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_exempt_403b_distributions": { - "documentation": "Tax-exempt distributions from 403(b) accounts (typically Roth).", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "tax_exempt_403b_distributions", - "label": "tax-exempt 403(b) distributions", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.retirement.tax_exempt_403b_distributions", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "sep_distributions": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "sep_distributions", - "label": "SEP distributions", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.retirement.sep_distributions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["taxable_sep_distributions", "tax_exempt_sep_distributions"], - "subtracts": null, - "hidden_input": false - }, - "pension_income": { - "documentation": "Income from pensions, annuitities, life insurance or endowment contracts.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "pension_income", - "label": "pension income", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.retirement.pension_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["tax_exempt_pension_income", "taxable_pension_income"], - "subtracts": null, - "hidden_input": false - }, - "military_retirement_pay_survivors": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "military_retirement_pay_survivors", - "label": "Military retirement income paid to surviving spouses", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.retirement.military_retirement_pay_survivors", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pension_survivors": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "pension_survivors", - "label": "Pension and annuity income from survivors benefits", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.retirement.pension_survivors", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxable_403b_distributions": { - "documentation": "Taxable distributions from 403b accounts (typically traditional).", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxable_403b_distributions", - "label": "Taxable 403(b) distributions", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.retirement.taxable_403b_distributions", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxable_private_pension_income": { - "documentation": "Taxable income from non-government employee pensions.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxable_private_pension_income", - "label": "taxable private pension income", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.retirement.taxable_private_pension_income", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxable_401k_distributions": { - "documentation": "Taxable distributions from 401k accounts (typically traditional).", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxable_401k_distributions", - "label": "Taxable 401(k) distributions", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.retirement.taxable_401k_distributions", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxable_ira_distributions": { - "documentation": "Taxable distributions from individual retirement accounts (typically traditional IRAs).", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxable_ira_distributions", - "label": "Taxable IRA distributions", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.retirement.taxable_ira_distributions", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_exempt_pension_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "tax_exempt_pension_income", - "label": "tax-exempt pension income", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.retirement.tax_exempt_pension_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["tax_exempt_public_pension_income", "tax_exempt_private_pension_income"], - "subtracts": null, - "hidden_input": false - }, - "taxable_pension_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxable_pension_income", - "label": "taxable pension income", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.retirement.taxable_pension_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["taxable_public_pension_income", "taxable_private_pension_income"], - "subtracts": null, - "hidden_input": false - }, - "military_service_income": { - "documentation": "Military pay from active duty, National Guard, and/or the reserve component of the armed forces.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "military_service_income", - "label": "Military service income", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.general.military_service_income", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "market_income": { - "documentation": "Income from all non-government sources", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "market_income", - "label": "Market income", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.general.market_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "state_or_federal_salary": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "state_or_federal_salary", - "label": "state or federal salary", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.general.state_or_federal_salary", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "personal_property": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "personal_property", - "label": "Personal property value", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.general.personal_property", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "disability_benefits": { - "documentation": "Disability benefits from employment (not Social Security), except for worker's compensation.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "disability_benefits", - "label": "disability benefits", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.general.disability_benefits", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "veterans_benefits": { - "documentation": "Veterans benefits from past military service.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "veterans_benefits", - "label": "Veterans benefits", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.general.veterans_benefits", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "estate_income_would_be_qualified": { - "documentation": "Whether income from estates would be considered qualified business income.", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "estate_income_would_be_qualified", - "label": "Estate income would be qualified", - "category": null, - "unit": null, - "moduleName": "household.income.person.estate.estate_income_would_be_qualified", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": true, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "estate_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "estate_income", - "label": "estate income", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.person.estate.estate_income", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "spm_unit_total_income_reported": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "spm_unit_total_income_reported", - "label": "SPM unit total income", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.spm_unit.spm_unit_total_income", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "deep_poverty_line": { - "documentation": "Income threshold below which a household is considered to be in deep poverty.", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "deep_poverty_line", - "label": "deep poverty line", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.spm_unit.deep_poverty_line", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "spm_unit_capped_housing_subsidy_reported": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "spm_unit_capped_housing_subsidy_reported", - "label": "SPM unit capped housing subsidy", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.spm_unit.spm_unit_capped_housing_subsidy_reported", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "spm_unit_state_fips": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "spm_unit_state_fips", - "label": "SPM unit state FIPS code", - "category": null, - "unit": null, - "moduleName": "household.income.spm_unit.spm_unit_fips", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "spm_unit_energy_subsidy": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "spm_unit_energy_subsidy", - "label": "SPM unit school energy subsidy", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.spm_unit.spm_unit_energy_subsidy", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "spm_unit_spm_threshold": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "spm_unit_spm_threshold", - "label": "SPM unit's SPM poverty threshold", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.spm_unit.spm_unit_spm_threshold", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "experienced_covid_income_loss": { - "documentation": "Whether the SPM unit experienced a loss of income due to COVID-19 since February 2020", - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "experienced_covid_income_loss", - "label": "Experienced Covid income loss", - "category": null, - "unit": null, - "moduleName": "household.income.spm_unit.experienced_covid_income_loss", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "spm_unit_broadband_subsidy_reported": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "spm_unit_broadband_subsidy_reported", - "label": "SPM unit reported broadband subsidy", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.spm_unit.spm_unit_broadband_subsidy_reported", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "poverty_gap": { - "documentation": "Difference between household income and poverty line.", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "poverty_gap", - "label": "poverty gap", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.spm_unit.poverty_gap", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "spm_unit_taxes": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "spm_unit_taxes", - "label": "Taxes", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.spm_unit.spm_unit_taxes", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "spm_unit_payroll_tax", - "spm_unit_self_employment_tax", - "spm_unit_federal_tax", - "spm_unit_state_tax", - "flat_tax" - ], - "subtracts": null, - "hidden_input": false - }, - "spm_unit_net_income_reported": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "spm_unit_net_income_reported", - "label": "Reported net income", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.spm_unit.spm_unit_net_income_reported", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "spm_unit_broadband_subsidy": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "spm_unit_broadband_subsidy", - "label": "SPM unit broadband subsidy", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.spm_unit.spm_unit_broadband_subsidy", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "spm_unit_oecd_equiv_net_income": { - "documentation": "Equivalised net income for the SPM unit under the OECD method (divided by the sqare root of the number of persons in the household)", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "spm_unit_oecd_equiv_net_income", - "label": "Equivalised income", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.spm_unit.spm_unit_oecd_equiv_net_income'", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "spm_unit_wic_reported": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "spm_unit_wic_reported", - "label": "SPM unit reported WIC", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.spm_unit.spm_unit_wic_reported", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "spm_unit_paycheck_withholdings": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "spm_unit_paycheck_withholdings", - "label": "Paycheck withholdings of the SPM unit", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.spm_unit.spm_unit_paycheck_withholdings", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["employee_payroll_tax", "state_withheld_income_tax", "income_tax_before_credits"], - "subtracts": null, - "hidden_input": false - }, - "spm_unit_net_income": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "spm_unit_net_income", - "label": "Net income", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.spm_unit.spm_unit_net_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["spm_unit_market_income", "spm_unit_benefits"], - "subtracts": ["spm_unit_taxes", "spm_unit_spm_expenses"], - "hidden_input": false - }, - "in_poverty": { - "documentation": "Whether a household is in poverty.", - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "in_poverty", - "label": "in poverty", - "category": null, - "unit": null, - "moduleName": "household.income.spm_unit.in_poverty", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "spm_unit_market_income": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "spm_unit_market_income", - "label": "Market income", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.spm_unit.spm_unit_market_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["market_income"], - "subtracts": null, - "hidden_input": false - }, - "spm_unit_school_lunch_subsidy": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "spm_unit_school_lunch_subsidy", - "label": "SPM unit school lunch subsidy", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.spm_unit.spm_unit_school_lunch_subsidy", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "spm_unit_energy_subsidy_reported": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "spm_unit_energy_subsidy_reported", - "label": "SPM unit school energy subsidy (reported)", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.spm_unit.spm_unit_energy_subsidy_reported", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "deep_poverty_gap": { - "documentation": "Difference between household income and deep poverty line.", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "deep_poverty_gap", - "label": "deep poverty gap", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.spm_unit.deep_poverty_gap", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "in_deep_poverty": { - "documentation": "Whether a household is in deep poverty.", - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "in_deep_poverty", - "label": "in deep poverty", - "category": null, - "unit": null, - "moduleName": "household.income.spm_unit.in_deep_poverty", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "spm_unit_snap": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "spm_unit_snap", - "label": "SPM unit SNAP subsidy", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.spm_unit.spm_unit_snap", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "poverty_line": { - "documentation": "Income threshold below which a household is considered to be in poverty.", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "poverty_line", - "label": "poverty line", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.spm_unit.poverty_line", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["spm_unit_spm_threshold"], - "subtracts": null, - "hidden_input": false - }, - "spm_unit_spm_expenses": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "spm_unit_spm_expenses", - "label": "SPM unit's SPM expenses (other than taxes)", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.spm_unit.spm_unit_spm_expenses", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "child_support_expense", - "medical_out_of_pocket_expenses", - "spm_unit_capped_work_childcare_expenses" - ], - "subtracts": null, - "hidden_input": false - }, - "spm_unit_capped_housing_subsidy": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "spm_unit_capped_housing_subsidy", - "label": "Housing subsidies", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.spm_unit.spm_unit_capped_housing_subsidy", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "spm_unit_benefits": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "spm_unit_benefits", - "label": "Benefits", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.spm_unit.spm_unit_benefits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "spm_unit_pell_grant": { - "documentation": "SPM unit's Pell Grant educational subsidy", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "spm_unit_pell_grant", - "label": "Pell Grant amount", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.spm_unit.spm_unit_pell_grant", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["pell_grant"], - "subtracts": null, - "hidden_input": false - }, - "spm_unit_is_in_spm_poverty": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "spm_unit_is_in_spm_poverty", - "label": "SPM unit in SPM poverty", - "category": null, - "unit": null, - "moduleName": "household.income.spm_unit.spm_unit_is_in_spm_poverty", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "spm_unit_wic": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "spm_unit_wic", - "label": "SPM unit WIC", - "category": null, - "unit": "currency-USD", - "moduleName": "household.income.spm_unit.spm_unit_wic", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "spm_unit_income_decile": { - "documentation": "The income decile of the SPM unit, person-weighted and using OECD-equivalised net income", - "entity": "spm_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "spm_unit_income_decile", - "label": "Income decile", - "category": null, - "unit": null, - "moduleName": "household.income.spm_unit.spm_unit_income_decile", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "spm_unit_is_in_deep_spm_poverty": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "spm_unit_is_in_deep_spm_poverty", - "label": "SPM unit in deep SPM poverty", - "category": null, - "unit": null, - "moduleName": "household.income.spm_unit.spm_unit_is_in_deep_spm_poverty", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "spm_unit_cash_assets": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "spm_unit_cash_assets", - "label": "SPM unit cash assets", - "category": null, - "unit": "currency-USD", - "moduleName": "household.assets.spm_unit_cash_assets", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "net_worth": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "net_worth", - "label": "net worth", - "category": null, - "unit": "currency-USD", - "moduleName": "household.assets.net_worth", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "spm_unit_assets": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "spm_unit_assets", - "label": "SPM unit assets", - "category": null, - "unit": "currency-USD", - "moduleName": "household.assets.spm_unit_assets", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "employment_income_before_lsr": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "employment_income_before_lsr", - "label": "employment income before labor supply responses", - "category": null, - "unit": "currency-USD", - "moduleName": "input.employment_income_before_lsr", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "state_name": { - "documentation": null, - "entity": "household", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "state_name", - "label": "State", - "category": null, - "unit": null, - "moduleName": "input.geography", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "CA", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "AL", - "label": "Alabama" - }, - { - "value": "AK", - "label": "Alaska" - }, - { - "value": "AZ", - "label": "Arizona" - }, - { - "value": "AR", - "label": "Arkansas" - }, - { - "value": "CA", - "label": "California" - }, - { - "value": "CO", - "label": "Colorado" - }, - { - "value": "CT", - "label": "Connecticut" - }, - { - "value": "DC", - "label": "District of Columbia" - }, - { - "value": "DE", - "label": "Delaware" - }, - { - "value": "FL", - "label": "Florida" - }, - { - "value": "GA", - "label": "Georgia" - }, - { - "value": "HI", - "label": "Hawaii" - }, - { - "value": "ID", - "label": "Idaho" - }, - { - "value": "IL", - "label": "Illinois" - }, - { - "value": "IN", - "label": "Indiana" - }, - { - "value": "IA", - "label": "Iowa" - }, - { - "value": "KS", - "label": "Kansas" - }, - { - "value": "KY", - "label": "Kentucky" - }, - { - "value": "LA", - "label": "Louisiana" - }, - { - "value": "ME", - "label": "Maine" - }, - { - "value": "MD", - "label": "Maryland" - }, - { - "value": "MA", - "label": "Massachusetts" - }, - { - "value": "MI", - "label": "Michigan" - }, - { - "value": "MN", - "label": "Minnesota" - }, - { - "value": "MS", - "label": "Mississippi" - }, - { - "value": "MO", - "label": "Missouri" - }, - { - "value": "MT", - "label": "Montana" - }, - { - "value": "NE", - "label": "Nebraska" - }, - { - "value": "NV", - "label": "Nevada" - }, - { - "value": "NH", - "label": "New Hampshire" - }, - { - "value": "NJ", - "label": "New Jersey" - }, - { - "value": "NM", - "label": "New Mexico" - }, - { - "value": "NY", - "label": "New York" - }, - { - "value": "NC", - "label": "North Carolina" - }, - { - "value": "ND", - "label": "North Dakota" - }, - { - "value": "OH", - "label": "Ohio" - }, - { - "value": "OK", - "label": "Oklahoma" - }, - { - "value": "OR", - "label": "Oregon" - }, - { - "value": "PA", - "label": "Pennsylvania" - }, - { - "value": "RI", - "label": "Rhode Island" - }, - { - "value": "SC", - "label": "South Carolina" - }, - { - "value": "SD", - "label": "South Dakota" - }, - { - "value": "TN", - "label": "Tennessee" - }, - { - "value": "TX", - "label": "Texas" - }, - { - "value": "UT", - "label": "Utah" - }, - { - "value": "VT", - "label": "Vermont" - }, - { - "value": "VA", - "label": "Virginia" - }, - { - "value": "WA", - "label": "Washington" - }, - { - "value": "WV", - "label": "West Virginia" - }, - { - "value": "WI", - "label": "Wisconsin" - }, - { - "value": "WY", - "label": "Wyoming" - }, - { - "value": "GU", - "label": "Guam" - }, - { - "value": "MP", - "label": "Northern Mariana Islands" - }, - { - "value": "PW", - "label": "Palau" - }, - { - "value": "PR", - "label": "Puerto Rico" - }, - { - "value": "VI", - "label": "Virgin Islands" - }, - { - "value": "AA", - "label": "Armed Forces Americas (Except Canada)" - }, - { - "value": "AE", - "label": "Armed Forces Africa/Canada/Europe/Middle East" - }, - { - "value": "AP", - "label": "Armed Forces Pacific" - } - ] - }, - "medicaid_rating_area": { - "documentation": null, - "entity": "household", - "valueType": "int", - "definitionPeriod": "year", - "name": "medicaid_rating_area", - "label": "Medicaid rating area", - "category": null, - "unit": null, - "moduleName": "input.geography", - "indexInModule": 1, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "county_fips": { - "documentation": "County FIPS code", - "entity": "household", - "valueType": "str", - "definitionPeriod": "year", - "name": "county_fips", - "label": "County FIPS code", - "category": null, - "unit": null, - "moduleName": "input.geography", - "indexInModule": 2, - "isInputVariable": true, - "defaultValue": null, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "state_fips": { - "documentation": "State FIPS code", - "entity": "household", - "valueType": "int", - "definitionPeriod": "year", - "name": "state_fips", - "label": "State FIPS code", - "category": null, - "unit": null, - "moduleName": "input.geography", - "indexInModule": 3, - "isInputVariable": true, - "defaultValue": 6, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "self_employment_income": { - "documentation": "Self-employment non-farm income.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "self_employment_income", - "label": "self-employment income", - "category": null, - "unit": "currency-USD", - "moduleName": "input.self_employment_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["self_employment_income_before_lsr", "self_employment_income_behavioral_response"], - "subtracts": null, - "hidden_input": false - }, - "self_employment_income_before_lsr": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "self_employment_income_before_lsr", - "label": "self-employment income before labor supply responses", - "category": null, - "unit": "currency-USD", - "moduleName": "input.self_employment_income_before_lsr", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "employment_income": { - "documentation": "Wages and salaries, including tips and commissions.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "employment_income", - "label": "employment income", - "category": null, - "unit": "currency-USD", - "moduleName": "input.employment_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["employment_income_before_lsr", "employment_income_behavioral_response"], - "subtracts": null, - "hidden_input": false - }, - "farm_income": { - "documentation": "Income averaging for farmers and fishermen. Schedule J. Seperate from QBI and self-employment income.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "farm_income", - "label": "farm income", - "category": null, - "unit": "currency-USD", - "moduleName": "input.farm_income", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "e02000": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "e02000", - "label": "e02000", - "category": null, - "unit": null, - "moduleName": "gov.puf", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "e26270": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "e26270", - "label": "e26270", - "category": null, - "unit": null, - "moduleName": "gov.puf", - "indexInModule": 1, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "e19200": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "e19200", - "label": "e19200", - "category": null, - "unit": null, - "moduleName": "gov.puf", - "indexInModule": 2, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "e18500": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "e18500", - "label": "e18500", - "category": null, - "unit": null, - "moduleName": "gov.puf", - "indexInModule": 3, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "e19800": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "e19800", - "label": "e19800", - "category": null, - "unit": null, - "moduleName": "gov.puf", - "indexInModule": 4, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "e20400": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "e20400", - "label": "e20400", - "category": null, - "unit": null, - "moduleName": "gov.puf", - "indexInModule": 5, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "e20100": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "e20100", - "label": "e20100", - "category": null, - "unit": null, - "moduleName": "gov.puf", - "indexInModule": 6, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "e00700": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "e00700", - "label": "e00700", - "category": null, - "unit": null, - "moduleName": "gov.puf", - "indexInModule": 7, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "e03270": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "e03270", - "label": "e03270", - "category": null, - "unit": null, - "moduleName": "gov.puf", - "indexInModule": 8, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "e24515": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "e24515", - "label": "e24515", - "category": null, - "unit": null, - "moduleName": "gov.puf", - "indexInModule": 9, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "e03300": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "e03300", - "label": "e03300", - "category": null, - "unit": null, - "moduleName": "gov.puf", - "indexInModule": 10, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "e07300": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "e07300", - "label": "e07300", - "category": null, - "unit": null, - "moduleName": "gov.puf", - "indexInModule": 11, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "e62900": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "e62900", - "label": "e62900", - "category": null, - "unit": null, - "moduleName": "gov.puf", - "indexInModule": 12, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "e32800": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "e32800", - "label": "e32800", - "category": null, - "unit": null, - "moduleName": "gov.puf", - "indexInModule": 13, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "e87530": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "e87530", - "label": "e87530", - "category": null, - "unit": null, - "moduleName": "gov.puf", - "indexInModule": 14, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "e03240": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "e03240", - "label": "e03240", - "category": null, - "unit": null, - "moduleName": "gov.puf", - "indexInModule": 15, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "e01100": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "e01100", - "label": "e01100", - "category": null, - "unit": null, - "moduleName": "gov.puf", - "indexInModule": 16, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "e01200": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "e01200", - "label": "e01200", - "category": null, - "unit": null, - "moduleName": "gov.puf", - "indexInModule": 17, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "e24518": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "e24518", - "label": "e24518", - "category": null, - "unit": null, - "moduleName": "gov.puf", - "indexInModule": 18, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "e09900": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "e09900", - "label": "e09900", - "category": null, - "unit": null, - "moduleName": "gov.puf", - "indexInModule": 19, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "e27200": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "e27200", - "label": "e27200", - "category": null, - "unit": null, - "moduleName": "gov.puf", - "indexInModule": 20, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "e03290": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "e03290", - "label": "e03290", - "category": null, - "unit": null, - "moduleName": "gov.puf", - "indexInModule": 21, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "e58990": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "e58990", - "label": "e58990", - "category": null, - "unit": null, - "moduleName": "gov.puf", - "indexInModule": 22, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "e03230": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "e03230", - "label": "e03230", - "category": null, - "unit": null, - "moduleName": "gov.puf", - "indexInModule": 23, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "e11200": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "e11200", - "label": "e11200", - "category": null, - "unit": null, - "moduleName": "gov.puf", - "indexInModule": 24, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "e07260": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "e07260", - "label": "e07260", - "category": null, - "unit": null, - "moduleName": "gov.puf", - "indexInModule": 25, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "e07240": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "e07240", - "label": "e07240", - "category": null, - "unit": null, - "moduleName": "gov.puf", - "indexInModule": 26, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "e03220": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "e03220", - "label": "e03220", - "category": null, - "unit": null, - "moduleName": "gov.puf", - "indexInModule": 27, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "p08000": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "p08000", - "label": "p08000", - "category": null, - "unit": null, - "moduleName": "gov.puf", - "indexInModule": 28, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "e03400": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "e03400", - "label": "e03400", - "category": null, - "unit": null, - "moduleName": "gov.puf", - "indexInModule": 29, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "e09800": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "e09800", - "label": "e09800", - "category": null, - "unit": null, - "moduleName": "gov.puf", - "indexInModule": 30, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "e09700": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "e09700", - "label": "e09700", - "category": null, - "unit": null, - "moduleName": "gov.puf", - "indexInModule": 31, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "e03500": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "e03500", - "label": "e03500", - "category": null, - "unit": null, - "moduleName": "gov.puf", - "indexInModule": 32, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "e87521": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "e87521", - "label": "e87521", - "category": null, - "unit": null, - "moduleName": "gov.puf", - "indexInModule": 33, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "federal_state_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "federal_state_income_tax", - "label": "Total federal and state income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.total_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["income_tax", "state_income_tax"], - "subtracts": null, - "hidden_input": false - }, - "tax_unit_is_filer": { - "documentation": "Whether this tax unit has a non-zero income tax liability.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "tax_unit_is_filer", - "label": "files taxes", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax_unit_is_filer", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_unit_is_joint": { - "documentation": "Whether this tax unit is a joint filer.", - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "tax_unit_is_joint", - "label": "Is joint-filing tax unit", - "category": null, - "unit": null, - "moduleName": "gov.irs.tax_unit.tax_unit_is_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "head_spouse_count": { - "documentation": null, - "entity": "tax_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "head_spouse_count", - "label": "Head and spouse count", - "category": null, - "unit": null, - "moduleName": "gov.irs.tax_unit.head_spouse_count", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_unit_count_dependents": { - "documentation": null, - "entity": "tax_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "tax_unit_count_dependents", - "label": "Number of dependents", - "category": null, - "unit": null, - "moduleName": "gov.irs.tax_unit.tax_unit_count_dependents", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["is_tax_unit_dependent"], - "subtracts": null, - "hidden_input": false - }, - "tax_unit_size": { - "documentation": "Number of people in the tax unit", - "entity": "tax_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "tax_unit_size", - "label": "Tax unit size", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax_unit.tax_unit_size", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "other_credits": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "other_credits", - "label": "other credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.other_credits", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "amt_foreign_tax_credit": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "amt_foreign_tax_credit", - "label": "AMT foreign tax credit from Form 6251", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.amt_foreign_tax_credit", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "income_tax_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "income_tax_refundable_credits", - "label": "federal refundable income tax credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.income_tax_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.irs.credits.refundable", - "subtracts": null, - "hidden_input": false - }, - "refundable_payroll_tax_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "refundable_payroll_tax_credit", - "label": "Refundable Payroll Tax Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.refundable_payroll_tax_credit", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "income_tax_capped_non_refundable_credits": { - "documentation": "Capped value of non-refundable tax credits", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "income_tax_capped_non_refundable_credits", - "label": "non-refundable tax credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.income_tax_capped_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["income_tax_non_refundable_credits"], - "subtracts": ["income_tax_unavailable_non_refundable_credits"], - "hidden_input": false - }, - "income_tax_unavailable_non_refundable_credits": { - "documentation": "Total value of non-refundable tax credits that were not available to the filer due to having too low income tax.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "income_tax_unavailable_non_refundable_credits", - "label": "unavailable non-refundable tax credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.income_tax_capped_non_refundable_credits", - "indexInModule": 1, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "recapture_of_investment_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "recapture_of_investment_credit", - "label": "Recapture of Investment Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.recapture_of_investment_credit", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "income_tax_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "income_tax_non_refundable_credits", - "label": "federal non-refundable income tax credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.income_tax_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.irs.credits.non_refundable", - "subtracts": null, - "hidden_input": false - }, - "capped_home_energy_audit_credit": { - "documentation": "Capped home energy audit credit", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "capped_home_energy_audit_credit", - "label": "Capped home energy audit credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.energy_efficient_home_improvement.capped_home_energy_audit_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "prior_energy_efficient_home_improvement_credits": { - "documentation": "Energy efficient home improvement credits claimed in prior years", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "prior_energy_efficient_home_improvement_credits", - "label": "Prior year energy efficient home improvement credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.energy_efficient_home_improvement.prior_energy_efficient_home_improvement_credits", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "energy_efficient_home_improvement_credit": { - "documentation": "Residential clean energy credit", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "energy_efficient_home_improvement_credit", - "label": "Energy efficient home improvement credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.energy_efficient_home_improvement.energy_efficient_home_improvement_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "energy_efficient_home_improvement_credit_credit_limit": { - "documentation": "Residential clean energy credit", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "energy_efficient_home_improvement_credit_credit_limit", - "label": "Energy efficient home improvement credit credit limit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.energy_efficient_home_improvement.energy_efficient_home_improvement_credit_credit_limit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "energy_efficient_home_improvement_credit_potential": { - "documentation": "Residential clean energy credit", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "energy_efficient_home_improvement_credit_potential", - "label": "Potential value of the Energy efficient home improvement credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.energy_efficient_home_improvement.energy_efficient_home_improvement_credit_potential", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "prior_energy_efficient_window_credits": { - "documentation": "Energy efficient window credits claimed in prior years", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "prior_energy_efficient_window_credits", - "label": "Prior years energy efficient window credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.energy_efficient_home_improvement.improvements.prior_energy_efficient_window_credits", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "capped_energy_efficient_door_credit": { - "documentation": "Capped energy-efficient exterior door credit", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "capped_energy_efficient_door_credit", - "label": "Capped energy-efficient exterior door credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.energy_efficient_home_improvement.improvements.capped_energy_efficient_door_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "capped_energy_efficient_roof_credit": { - "documentation": "Capped credit on energy-efficient roof materials", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "capped_energy_efficient_roof_credit", - "label": "Capped credit on energy-efficient roof credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.energy_efficient_home_improvement.improvements.capped_energy_efficient_roof_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "capped_energy_efficient_window_credit": { - "documentation": "Capped credit on energy-efficient exterior window and skylights", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "capped_energy_efficient_window_credit", - "label": "Capped energy efficient window credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.energy_efficient_home_improvement.improvements.capped_energy_efficient_window_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "capped_energy_efficient_insulation_credit": { - "documentation": "Capped credit on energy-efficient insulation material", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "capped_energy_efficient_insulation_credit", - "label": "Capped energy efficient insulation credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.energy_efficient_home_improvement.improvements.capped_energy_efficient_insulation_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "capped_advanced_main_air_circulating_fan_credit": { - "documentation": "Capped advanced main air circulating fan credit", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "capped_advanced_main_air_circulating_fan_credit", - "label": "Capped advanced main air circulating fan credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.energy_efficient_home_improvement.property.capped_advanced_main_air_circulating_fan_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "capped_energy_efficient_central_air_conditioner_credit": { - "documentation": "Capped energy-efficient central air conditioner expenditures", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "capped_energy_efficient_central_air_conditioner_credit", - "label": "Capped energy efficient central air conditioner credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.energy_efficient_home_improvement.property.capped_energy_efficient_central_air_conditioner_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "capped_heat_pump_heat_pump_water_heater_biomass_stove_boiler_credit": { - "documentation": "Capped credit on heat pumps, heat pump water heaters, and biomass stoves and boilers", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "capped_heat_pump_heat_pump_water_heater_biomass_stove_boiler_credit", - "label": "Capped credit on heat pumps, heat pump water heaters, and biomass stoves and boilers", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.energy_efficient_home_improvement.property.capped_heat_pump_heat_pump_water_heater_biomass_stove_boiler_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "capped_qualified_furnace_or_hot_water_boiler_credit": { - "documentation": "Capped qualified furnace or hot water boiler credit", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "capped_qualified_furnace_or_hot_water_boiler_credit", - "label": "Capped qualified furnace or hot water boiler credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.energy_efficient_home_improvement.property.capped_qualified_furnace_or_hot_water_boiler_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "lifetime_learning_credit_potential": { - "documentation": "Value of the non-refundable Lifetime Learning Credit", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "lifetime_learning_credit_potential", - "label": "Potential value of the Lifetime Learning Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.education.lifetime_learning_credit_potential", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "education_credit_phase_out": { - "documentation": "Percentage of the American Opportunity and Lifetime Learning credits which are phased out", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "education_credit_phase_out", - "label": "Education credit phase-out", - "category": null, - "unit": "/1", - "moduleName": "gov.irs.credits.education.education_credit_phase_out", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "lifetime_learning_credit": { - "documentation": "Value of the non-refundable Lifetime Learning Credit", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "lifetime_learning_credit", - "label": "Lifetime Learning Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.education.lifetime_learning_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "education_tax_credits": { - "documentation": "Education tax credits non-refundable amount from Form 8863", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "education_tax_credits", - "label": "Education tax credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.education.education_tax_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["non_refundable_american_opportunity_credit", "lifetime_learning_credit"], - "subtracts": null, - "hidden_input": false - }, - "lifetime_learning_credit_credit_limit": { - "documentation": "Value of the non-refundable Lifetime Learning Credit", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "lifetime_learning_credit_credit_limit", - "label": "Lifetime Learning Credit credit limit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.education.lifetime_learning_credit_credit_limit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "non_refundable_american_opportunity_credit": { - "documentation": "Value of the non-refundable portion of the American Opportunity Credit", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "non_refundable_american_opportunity_credit", - "label": "Non-refundable American Opportunity Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.education.american_opportunity_credit.non_refundable_american_opportunity_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "non_refundable_american_opportunity_credit_potential": { - "documentation": "Value of the non-refundable portion of the American Opportunity Credit", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "non_refundable_american_opportunity_credit_potential", - "label": "Potential value of the Non-refundable American Opportunity Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.education.american_opportunity_credit.non_refundable_american_opportunity_credit_potential", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["american_opportunity_credit"], - "subtracts": ["refundable_american_opportunity_credit"], - "hidden_input": false - }, - "refundable_american_opportunity_credit": { - "documentation": "Value of the refundable portion of the American Opportunity Credit", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "refundable_american_opportunity_credit", - "label": "Refundable American Opportunity Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.education.american_opportunity_credit.refundable_american_opportunity_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "non_refundable_american_opportunity_credit_credit_limit": { - "documentation": "Value of the non-refundable portion of the American Opportunity Credit", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "non_refundable_american_opportunity_credit_credit_limit", - "label": "Non-refundable American Opportunity Credit credit limit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.education.american_opportunity_credit.non_refundable_american_opportunity_credit_credit_limit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_eligible_for_american_opportunity_credit": { - "documentation": "Whether the person is eligible for the AOC in respect of qualified tuition expenses for this tax year. The expenses must be for one of the first four years of post-secondary education, and the person must not have claimed the AOC for any four previous tax years.", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_eligible_for_american_opportunity_credit", - "label": "Eligible for American Opportunity Credit", - "category": null, - "unit": null, - "moduleName": "gov.irs.credits.education.american_opportunity_credit.is_eligible_for_american_opportunity_credit", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "american_opportunity_credit": { - "documentation": "Total value of the American Opportunity Credit", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "american_opportunity_credit", - "label": "American Opportunity Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.education.american_opportunity_credit.american_opportunity_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "new_clean_vehicle_credit_potential": { - "documentation": "Nonrefundable credit for the purchase of a new clean vehicle", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "new_clean_vehicle_credit_potential", - "label": "Potential value of the New clean vehicle credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.clean_vehicle.new.new_clean_vehicle_credit_potential", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "new_clean_vehicle_credit": { - "documentation": "Nonrefundable credit for the purchase of a new clean vehicle", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "new_clean_vehicle_credit", - "label": "New clean vehicle credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.clean_vehicle.new.new_clean_vehicle_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "new_clean_vehicle_credit_credit_limit": { - "documentation": "Nonrefundable credit for the purchase of a new clean vehicle", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "new_clean_vehicle_credit_credit_limit", - "label": "New clean vehicle credit credit limit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.clean_vehicle.new.new_clean_vehicle_credit_credit_limit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "new_clean_vehicle_credit_eligible": { - "documentation": "Eligible for nonrefundable credit for the purchase of a new clean vehicle", - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "new_clean_vehicle_credit_eligible", - "label": "Eligible for new clean vehicle credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.clean_vehicle.new.new_clean_vehicle_credit_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "used_clean_vehicle_credit_potential": { - "documentation": "Nonrefundable credit for the purchase of a previously-owned clean vehicle", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "used_clean_vehicle_credit_potential", - "label": "Potential value of the Used clean vehicle credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.clean_vehicle.used.used_clean_vehicle_credit_potential", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "used_clean_vehicle_credit_credit_limit": { - "documentation": "Nonrefundable credit for the purchase of a previously-owned clean vehicle", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "used_clean_vehicle_credit_credit_limit", - "label": "Used clean vehicle credit credit limit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.clean_vehicle.used.used_clean_vehicle_credit_credit_limit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "used_clean_vehicle_credit": { - "documentation": "Nonrefundable credit for the purchase of a previously-owned clean vehicle", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "used_clean_vehicle_credit", - "label": "Used clean vehicle credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.clean_vehicle.used.used_clean_vehicle_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "used_clean_vehicle_credit_eligible": { - "documentation": "Eligible for nonrefundable credit for the purchase of a previously-owned clean vehicle", - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "used_clean_vehicle_credit_eligible", - "label": "Eligible for used clean vehicle credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.clean_vehicle.used.used_clean_vehicle_credit_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ctc_value": { - "documentation": "Actual value of the Child Tax Credit", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ctc_value", - "label": "CTC value", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.ctc.ctc_value", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ctc": { - "documentation": "Total value of the non-refundable and refundable portions of the Child Tax Credit.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ctc", - "label": "Child Tax Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.ctc.ctc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "non_refundable_ctc": { - "documentation": "The portion of the Child Tax Credit that is not refundable.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "non_refundable_ctc", - "label": "non-refundable CTC", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.ctc.non_refundable_ctc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ctc"], - "subtracts": ["refundable_ctc"], - "hidden_input": false - }, - "ctc_social_security_tax": { - "documentation": "Social Security taxes considered in the Child Tax Credit calculation", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ctc_social_security_tax", - "label": "Refundable Child Tax Credit Social Security Tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.ctc.refundable.ctc_social_security_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.irs.credits.ctc.refundable.social_security.add", - "subtracts": "gov.irs.credits.ctc.refundable.social_security.subtract", - "hidden_input": false - }, - "ctc_limiting_tax_liability": { - "documentation": "The tax liability used to determine the maximum amount of the non-refundable CTC. Excludes SALT from all calculations (this is an inaccuracy required to avoid circular dependencies).", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ctc_limiting_tax_liability", - "label": "CTC-limiting tax liability", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.ctc.refundable.ctc_limiting_tax_liability", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ctc_refundable_maximum": { - "documentation": "The maximum refundable CTC for this person.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ctc_refundable_maximum", - "label": "Maximum refundable CTC", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.ctc.refundable.ctc_refundable_maximum", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "refundable_ctc": { - "documentation": "The portion of the Child Tax Credit that is refundable.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "refundable_ctc", - "label": "refundable CTC", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.ctc.refundable.refundable_ctc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ctc_phase_in": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ctc_phase_in", - "label": "CTC phase-in", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.ctc.refundable.ctc_phase_in", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ctc_qualifying_children": { - "documentation": "Count of children that qualify for the Child Tax Credit", - "entity": "tax_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "ctc_qualifying_children", - "label": "CTC-qualifying children", - "category": null, - "unit": null, - "moduleName": "gov.irs.credits.ctc.maximum.ctc_qualifying_children", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ctc_qualifying_child"], - "subtracts": null, - "hidden_input": false - }, - "ctc_maximum": { - "documentation": "Maximum value of the Child Tax Credit, before phase-out.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ctc_maximum", - "label": "Maximum CTC", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.ctc.maximum.ctc_maximum", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ctc_individual_maximum"], - "subtracts": null, - "hidden_input": false - }, - "ctc_maximum_with_arpa_addition": { - "documentation": "Maximum value of the Child Tax Credit, before phase-out, under ARPA.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ctc_maximum_with_arpa_addition", - "label": "Maximum CTC for ARPA", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.ctc.maximum.ctc_maximum_with_arpa_addition", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ctc_maximum", "ctc_arpa_addition"], - "subtracts": null, - "hidden_input": false - }, - "ctc_qualifying_child": { - "documentation": "Child qualifies for the Child Tax Credit", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ctc_qualifying_child", - "label": "CTC-qualifying child", - "category": null, - "unit": null, - "moduleName": "gov.irs.credits.ctc.maximum.ctc_qualifying_child", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ctc_adult_individual_maximum": { - "documentation": "The CTC entitlement in respect of this person as an adult dependent.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ctc_adult_individual_maximum", - "label": "CTC maximum amount (adult dependent)", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.ctc.maximum.individual.ctc_adult_individual_maximum", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "meets_ctc_identification_requirements": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "meets_ctc_identification_requirements", - "label": "Person meets CTC identification requirements", - "category": null, - "unit": null, - "moduleName": "gov.irs.credits.ctc.maximum.individual.meets_ctc_identification_requirements", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "filer_meets_ctc_identification_requirements": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "filer_meets_ctc_identification_requirements", - "label": "Filer meets CTC identification requirements", - "category": null, - "unit": null, - "moduleName": "gov.irs.credits.ctc.maximum.individual.filer_meets_ctc_identification_requirements", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "meets_ctc_child_identification_requirements": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "meets_ctc_child_identification_requirements", - "label": "Child meets CTC identification requirements", - "category": null, - "unit": null, - "moduleName": "gov.irs.credits.ctc.maximum.individual.meets_ctc_child_identification_requirements", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ctc_child_individual_maximum_arpa": { - "documentation": "The CTC entitlement in respect of this person as a child, under the American Rescue Plan Act.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ctc_child_individual_maximum_arpa", - "label": "CTC maximum amount (child under ARPA)", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.ctc.maximum.individual.ctc_child_individual_maximum_arpa", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ctc_child_individual_maximum": { - "documentation": "The CTC entitlement in respect of this person as a child.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ctc_child_individual_maximum", - "label": "CTC maximum amount (child)", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.ctc.maximum.individual.ctc_child_individual_maximum", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ctc_individual_maximum": { - "documentation": "The Child Tax Credit entitlement in respect of this person.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ctc_individual_maximum", - "label": "CTC individual amount maximum", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.ctc.maximum.individual.ctc_individual_maximum", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ctc_child_individual_maximum", "ctc_adult_individual_maximum"], - "subtracts": null, - "hidden_input": false - }, - "ctc_phase_out": { - "documentation": "Reduction of the total CTC due to income.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ctc_phase_out", - "label": "CTC reduction from income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.ctc.phase_out.ctc_phase_out", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ctc_phase_out_threshold": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ctc_phase_out_threshold", - "label": "CTC phase-out threshold", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.ctc.phase_out.ctc_phase_out_threshold", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ctc_arpa_max_addition": { - "documentation": "ARPA capped the additional amount based on the phase-out thresholds.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ctc_arpa_max_addition", - "label": "Maximum additional CTC from ARPA", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.ctc.phase_out.arpa.ctc_arpa_max_addition", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ctc_arpa_phase_out_threshold": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ctc_arpa_phase_out_threshold", - "label": "CTC ARPA phase-out threshold", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.ctc.phase_out.arpa.ctc_arpa_phase_out_threshold", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ctc_arpa_uncapped_phase_out": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ctc_arpa_uncapped_phase_out", - "label": "Uncapped phase-out of ARPA CTC increase", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.ctc.phase_out.arpa.ctc_arpa_uncapped_phase_out", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ctc_arpa_phase_out": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ctc_arpa_phase_out", - "label": "Phase-out of CTC ARPA addition", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.ctc.phase_out.arpa.ctc_arpa_phase_out", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ctc_arpa_phase_out_cap": { - "documentation": "ARPA capped the additional amount based on the phase-out thresholds.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ctc_arpa_phase_out_cap", - "label": "Cap on phase-out of ARPA CTC expansion", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.ctc.phase_out.arpa.ctc_arpa_phase_out_cap", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ctc_arpa_addition": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ctc_arpa_addition", - "label": "Additional CTC from ARPA", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.ctc.phase_out.arpa.ctc_arpa_addition", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ctc_arpa_max_addition"], - "subtracts": ["ctc_arpa_phase_out"], - "hidden_input": false - }, - "rrc_caa": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "rrc_caa", - "label": "Recovery Rebate Credit (CAA)", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.recovery_rebate_credit.rrc_caa", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "rrc_arpa": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "rrc_arpa", - "label": "Recovery Rebate Credit (ARPA)", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.recovery_rebate_credit.rrc_arpa", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "recovery_rebate_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "recovery_rebate_credit", - "label": "Recovery Rebate Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.recovery_rebate_credit.recovery_rebate_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["rrc_cares", "rrc_caa", "rrc_arpa"], - "subtracts": null, - "hidden_input": false - }, - "rrc_cares": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "rrc_cares", - "label": "Recovery Rebate Credit (CARES)", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.recovery_rebate_credit.rrc_cares", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "foreign_tax_credit_potential": { - "documentation": "Foreign tax credit from Form 1116", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "foreign_tax_credit_potential", - "label": "Potential value of the Foreign tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.foreign_tax.foreign_tax_credit_potential", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "foreign_tax_credit_credit_limit": { - "documentation": "Foreign tax credit from Form 1116", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "foreign_tax_credit_credit_limit", - "label": "Foreign tax credit credit limit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.foreign_tax.foreign_tax_credit_credit_limit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["income_tax_before_credits"], - "subtracts": null, - "hidden_input": false - }, - "foreign_tax_credit": { - "documentation": "Foreign tax credit from Form 1116", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "foreign_tax_credit", - "label": "Foreign tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.foreign_tax.foreign_tax_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "spouse_earned": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "spouse_earned", - "label": "Spouse's adjusted earnings", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.cdcc.spouse_earned", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "cdcc_rate": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "cdcc_rate", - "label": "CDCC credit rate", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.cdcc.cdcc_rate", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "cdcc_credit_limit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "cdcc_credit_limit", - "label": "Child/dependent care credit credit limit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.cdcc.cdcc_credit_limit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "capped_count_cdcc_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "capped_count_cdcc_eligible", - "label": "Capped child/dependent care eligiable count", - "category": null, - "unit": null, - "moduleName": "gov.irs.credits.cdcc.capped_count_cdcc_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "cdcc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "cdcc", - "label": "Child/dependent care credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.cdcc.cdcc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "capped_cdcc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "capped_cdcc", - "label": "Capped child/dependent care credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.cdcc.capped_cdcc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "count_cdcc_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "count_cdcc_eligible", - "label": "CDCC-eligible children", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.cdcc.count_cdcc_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["is_cdcc_eligible"], - "subtracts": null, - "hidden_input": false - }, - "cdcc_potential": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "cdcc_potential", - "label": "Potential value of the Child/dependent care credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.cdcc.cdcc_potential", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_cdcc_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_cdcc_eligible", - "label": "CDCC-eligible", - "category": null, - "unit": null, - "moduleName": "gov.irs.credits.cdcc.cdcc_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "head_earned": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "head_earned", - "label": "Head's adjusted earnings", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.cdcc.head_earned", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "cdcc_limit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "cdcc_limit", - "label": "CDCC-relevant care expense limit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.cdcc.cdcc_limit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "cdcc_relevant_expenses": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "cdcc_relevant_expenses", - "label": "CDCC-relevant care expenses", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.cdcc.cdcc_relevant_expenses", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "min_head_spouse_earned": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "min_head_spouse_earned", - "label": "Less of head and spouse's earnings", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.cdcc.min_head_spouse_earned", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "general_business_credit": { - "documentation": "General business credit from Form 3800", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "general_business_credit", - "label": "General business credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.general_business.general_business_credit", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "residential_clean_energy_credit": { - "documentation": "Residential clean energy tax credit", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "residential_clean_energy_credit", - "label": "Residential clean energy credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.residential_clean_energy.residential_clean_energy_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "residential_clean_energy_credit_potential": { - "documentation": "Residential clean energy tax credit", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "residential_clean_energy_credit_potential", - "label": "Potential value of the Residential clean energy credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.residential_clean_energy.residential_clean_energy_credit_potential", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "residential_clean_energy_credit_credit_limit": { - "documentation": "Residential clean energy tax credit", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "residential_clean_energy_credit_credit_limit", - "label": "Residential clean energy credit credit limit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.residential_clean_energy.residential_clean_energy_credit_credit_limit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "savers_credit_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "savers_credit_person", - "label": "Retirement Savings Credit for eahc individual person", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.retirement_savings.savers_credit_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "savers_credit_potential": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "savers_credit_potential", - "label": "Potential value of the Retirement Savings Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.retirement_savings.savers_credit_potential", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["savers_credit_person"], - "subtracts": null, - "hidden_input": false - }, - "savers_credit_qualified_contributions": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "savers_credit_qualified_contributions", - "label": "Retirement Savings Credit qualified contributions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.retirement_savings.savers_credit_qualified_contributions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "savers_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "savers_credit", - "label": "Retirement Savings Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.retirement_savings.savers_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "savers_credit_eligible_person": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "savers_credit_eligible_person", - "label": "Eligible person for the retirement saving contributions credit", - "category": null, - "unit": null, - "moduleName": "gov.irs.credits.retirement_savings.savers_credit_eligible_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "savers_credit_credit_limit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "savers_credit_credit_limit", - "label": "Retirement Savings Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.retirement_savings.savers_credit_credit_limit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "prior_year_minimum_tax_credit": { - "documentation": "Prior year minimum tax credit from Form 8801", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "prior_year_minimum_tax_credit", - "label": "Prior year minimum tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.prior_year_minimum_tax.prior_year_minimum_tax_credit", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "filer_meets_eitc_identification_requirements": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "filer_meets_eitc_identification_requirements", - "label": "Filer meets EITC identification requirements", - "category": null, - "unit": null, - "moduleName": "gov.irs.credits.earned_income.filer_meets_eitc_identification_requirements", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "eitc_relevant_investment_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "eitc_relevant_investment_income", - "label": "EITC-relevant investment income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.earned_income.eitc_relevant_investment_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "eitc_reduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "eitc_reduction", - "label": "EITC reduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.earned_income.eitc_reduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "eitc_phased_in": { - "documentation": "EITC maximum amount, taking into account earnings.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "eitc_phased_in", - "label": "EITC phase-in amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.earned_income.eitc_phased_in", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "meets_eitc_identification_requirements": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "meets_eitc_identification_requirements", - "label": "Person meets EITC identification requirements", - "category": null, - "unit": null, - "moduleName": "gov.irs.credits.earned_income.meets_eitc_identification_requirements", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "eitc_phase_in_rate": { - "documentation": "Rate at which the EITC phases in with income.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "eitc_phase_in_rate", - "label": "EITC phase-in rate", - "category": null, - "unit": "/1", - "moduleName": "gov.irs.credits.earned_income.eitc_phase_in_rate", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "eitc_phase_out_start": { - "documentation": "Earnings above this level reduce EITC entitlement.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "eitc_phase_out_start", - "label": "EITC phase-out start", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.earned_income.eitc_phase_out_start", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "eitc_child_count": { - "documentation": "Number of children qualifying as children for the EITC.", - "entity": "tax_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "eitc_child_count", - "label": "EITC-qualifying children", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.earned_income.eitc_child_count", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "eitc_phase_out_rate": { - "documentation": "Percentage of earnings above the phase-out threshold that reduce the EITC.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "eitc_phase_out_rate", - "label": "EITC phase-out rate", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.earned_income.eitc_phase_out_rate", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "eitc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "eitc", - "label": "Federal earned income credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.earned_income.eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "eitc_agi_limit": { - "documentation": "Used for state-level policies, not EITC computations", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "eitc_agi_limit", - "label": "Maximum AGI to qualify for EITC", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.earned_income.eitc_agi_limit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "takes_up_eitc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "takes_up_eitc", - "label": "takes up the EITC", - "category": null, - "unit": null, - "moduleName": "gov.irs.credits.earned_income.takes_up_eitc", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": true, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "eitc_maximum": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "eitc_maximum", - "label": "Maximum EITC", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.earned_income.eitc_maximum", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "eitc_demographic_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "eitc_demographic_eligible", - "label": "Meets demographic eligibility for EITC", - "category": null, - "unit": null, - "moduleName": "gov.irs.credits.earned_income.eligibility.eitc_demographic_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "eitc_investment_income_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "eitc_investment_income_eligible", - "label": "Meets investment income eligibility for EITC", - "category": null, - "unit": null, - "moduleName": "gov.irs.credits.earned_income.eligibility.eitc_investment_income_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "eitc_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "eitc_eligible", - "label": "Eligible for EITC", - "category": null, - "unit": null, - "moduleName": "gov.irs.credits.earned_income.eligibility.eitc_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "elderly_disabled_credit": { - "documentation": "Schedule R credit for the elderly and the disabled", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "elderly_disabled_credit", - "label": "Elderly or disabled credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.elderly_and_disabled.elderly_disabled_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "elderly_disabled_credit_credit_limit": { - "documentation": "Schedule R credit for the elderly and the disabled", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "elderly_disabled_credit_credit_limit", - "label": "Elderly or disabled credit credit limit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.elderly_and_disabled.elderly_disabled_credit_credit_limit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "section_22_income": { - "documentation": "Income upon which the elderly or disabled credit is applied", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "section_22_income", - "label": "Section 22 income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.elderly_and_disabled.section_22_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "retired_on_total_disability": { - "documentation": "Whether this individual has retired on disability, and was permanently and totally disabled when they retired", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "retired_on_total_disability", - "label": "Retired on total disability", - "category": null, - "unit": null, - "moduleName": "gov.irs.credits.elderly_and_disabled.eligibility", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "qualifies_for_elderly_or_disabled_credit": { - "documentation": "Whether this tax unit qualifies for the elderly or disabled credit", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "qualifies_for_elderly_or_disabled_credit", - "label": "Qualifies for elderly or disabled credit", - "category": null, - "unit": null, - "moduleName": "gov.irs.credits.elderly_and_disabled.eligibility", - "indexInModule": 1, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "total_disability_payments": { - "documentation": "Wages (or payments in lieu thereof) paid to an individual for permanent and total disability", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "total_disability_payments", - "label": "Disability (total) payments", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.elderly_and_disabled.total_disability_payments", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "elderly_disabled_credit_potential": { - "documentation": "Schedule R credit for the elderly and the disabled", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "elderly_disabled_credit_potential", - "label": "Potential value of the Elderly or disabled credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.elderly_and_disabled.elderly_disabled_credit_potential", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "estate_tax_credit": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "estate_tax_credit", - "label": "Estate tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.credits.estate.estate_tax_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_tce_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_tce_eligible", - "label": "Eligible person for the Tax Counseling for the Elderly program", - "category": null, - "unit": null, - "moduleName": "gov.irs.tce.is_tce_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "adjusted_earnings": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "adjusted_earnings", - "label": "Personal earned income adjusted for self-employment tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.adjusted_earnings", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "filer_adjusted_earnings": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "filer_adjusted_earnings", - "label": "Filer earned income adjusted for self-employment tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.filer_adjusted_earnings", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxable_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxable_income", - "label": "IRS taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.taxable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "exemptions_count": { - "documentation": null, - "entity": "tax_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "exemptions_count", - "label": "Number of tax exemptions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.exemptions.exemptions_count", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["tax_unit_size"], - "subtracts": null, - "hidden_input": false - }, - "exemptions": { - "documentation": "Personal exemptions amount after phase-out", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "exemptions", - "label": "Exemptions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.exemptions.exemptions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "adjusted_gross_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "adjusted_gross_income", - "label": "Adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.adjusted_gross_income.adjusted_gross_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "positive_gross_income": { - "documentation": "Negative gross income values capped at zero", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "positive_gross_income", - "label": "Positive Gross Income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.adjusted_gross_income.positive_gross_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "adjusted_gross_income_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "adjusted_gross_income_person", - "label": "Federal adjusted gross income for each person", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.adjusted_gross_income.adjusted_gross_income_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "positive_agi": { - "documentation": "Negative AGI values capped at zero", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "positive_agi", - "label": "Positive AGI", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.adjusted_gross_income.positive_agi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "irs_employment_income": { - "documentation": "Employment income less payroll deductions.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "irs_employment_income", - "label": "IRS employment income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.irs_employment_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pre_tax_contributions": { - "documentation": "Payroll deductions.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "pre_tax_contributions", - "label": "Pre-tax contributions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.pre_tax_contributions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.irs.gross_income.pre_tax_contributions", - "subtracts": null, - "hidden_input": false - }, - "tax_unit_partnership_s_corp_income": { - "documentation": "Combined partnership/S-corporation income for the tax unit.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "tax_unit_partnership_s_corp_income", - "label": "Tax unit partnership/S-corp income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.tax_unit_partnership_s_corp_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["partnership_s_corp_income"], - "subtracts": null, - "hidden_input": false - }, - "has_qdiv_or_ltcg": { - "documentation": "Whether this tax unit has qualified dividend income or long-term capital gains income", - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "has_qdiv_or_ltcg", - "label": "Has qualified dividends or long-term capital gains", - "category": null, - "unit": null, - "moduleName": "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.has_qdiv_or_ltcg", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_unit_rental_income": { - "documentation": "Combined rental income for the tax unit.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "tax_unit_rental_income", - "label": "Tax unit rental income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.tax_unit_rental_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["rental_income"], - "subtracts": null, - "hidden_input": false - }, - "loss_limited_net_capital_gains": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "loss_limited_net_capital_gains", - "label": "Loss-limited net capital gains", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.loss_limited_net_capital_gains", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "irs_gross_income": { - "documentation": "Gross income, as defined in the Internal Revenue Code.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "irs_gross_income", - "label": "Gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.irs_gross_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "earned_income_last_year": { - "documentation": "Prior-year income from wages or self-employment", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "earned_income_last_year", - "label": "Earned income last year", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.earned_income.earned_income_last_year", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["employment_income_last_year", "self_employment_income_last_year"], - "subtracts": null, - "hidden_input": false - }, - "earned_income": { - "documentation": "Income from wages or self-employment", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "earned_income", - "label": "Earned income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.earned_income.earned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["employment_income", "self_employment_income"], - "subtracts": null, - "hidden_input": false - }, - "tax_unit_earned_income_last_year": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "tax_unit_earned_income_last_year", - "label": "Tax unit earned income last year", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.earned_income.tax_unit_earned_income_last_year", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_unit_earned_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "tax_unit_earned_income", - "label": "Tax unit earned income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.earned_income.tax_unit_earned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_unit_taxable_unemployment_compensation": { - "documentation": "Unemployment compensation included in AGI.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "tax_unit_taxable_unemployment_compensation", - "label": "Taxable unemployment compensation", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.unemployment_insurance.tax_unit_taxable_unemployment_compensation", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_unit_unemployment_compensation": { - "documentation": "Combined unemployment compensation for the tax unit.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "tax_unit_unemployment_compensation", - "label": "Tax unit unemployment compensation", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.unemployment_insurance.tax_unit_unemployment_compensation", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["unemployment_compensation"], - "subtracts": null, - "hidden_input": false - }, - "taxable_uc_agi": { - "documentation": "Income used to determine taxability of unemployment compensation.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxable_uc_agi", - "label": "Taxable unemployment compensation for SS adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.unemployment_insurance.taxable_uc_agi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxable_unemployment_compensation": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxable_unemployment_compensation", - "label": "Taxable unemployment compensation", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.unemployment_insurance.taxable_unemployment_insurance", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_exempt_unemployment_compensation": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "tax_exempt_unemployment_compensation", - "label": "Tax-exempt unemployment compensation", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.unemployment_insurance.tax_exempt_unemployment_compensation", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["unemployment_compensation"], - "subtracts": ["taxable_unemployment_compensation"], - "hidden_input": false - }, - "taxable_social_security": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxable_social_security", - "label": "Taxable Social Security", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.social_security.taxable_social_security", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_unit_social_security": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "tax_unit_social_security", - "label": "Tax unit Social Security", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.social_security.tax_unit_social_security", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["social_security"], - "subtracts": null, - "hidden_input": false - }, - "tax_unit_ss_combined_income_excess": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "tax_unit_ss_combined_income_excess", - "label": "Taxable Social Security combined income excess over base amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.social_security.tax_unit_ss_combined_income_excess", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_unit_combined_income_for_social_security_taxability": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "tax_unit_combined_income_for_social_security_taxability", - "label": "Taxable Social Security combined income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.social_security.tax_unit_combined_income_for_social_security_taxability", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_exempt_social_security": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "tax_exempt_social_security", - "label": "Tax-exempt Social Security", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.social_security.tax_exempt_social_security", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["tax_unit_social_security"], - "subtracts": ["tax_unit_taxable_social_security"], - "hidden_input": false - }, - "tax_unit_taxable_social_security": { - "documentation": "Social security (OASDI) benefits included in AGI, including tier 1 railroad retirement benefits.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "tax_unit_taxable_social_security", - "label": "Taxable Social Security benefits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.social_security.tax_unit_taxable_social_security", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxable_ss_magi": { - "documentation": "Income used to determine taxability of Social Security.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxable_ss_magi", - "label": "Modified adjusted gross income (SS)", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.social_security.taxable_ss_magi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "self_employed_health_insurance_ald_person": { - "documentation": "Personal above-the-line deduction for self-employed health insurance contributions.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "self_employed_health_insurance_ald_person", - "label": "Self-employed health insurance ALD for each person", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.self_employed_health_insurance_ald_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "self_employment_tax_ald": { - "documentation": "Above-the-line deduction for self-employment tax", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "self_employment_tax_ald", - "label": "Self-employment tax ALD deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.self_employment_tax_ald", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["self_employment_tax_ald_person"], - "subtracts": null, - "hidden_input": false - }, - "health_savings_account_ald": { - "documentation": "Above-the-line deduction from gross income for health savings account expenses.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "health_savings_account_ald", - "label": "Health savings account ALD", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.health_savings_account_ald", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "loss_ald": { - "documentation": "Above-the-line deduction from gross income for business losses.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "loss_ald", - "label": "Business loss ALD", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.loss_ald", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "foreign_earned_income_exclusion": { - "documentation": "Income earned and any housing expense in foreign countries that is excluded from adjusted gross income under 26 U.S. Code § 911.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "foreign_earned_income_exclusion", - "label": "Foreign earned income ALD", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.foreign_earned_income", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "limited_capital_loss": { - "documentation": "The capital loss deductible from gross income.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "limited_capital_loss", - "label": "Limited capital loss deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.limited_capital_loss", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "self_employment_tax_ald_person": { - "documentation": "Personal above-the-line deduction for self-employment tax", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "self_employment_tax_ald_person", - "label": "Self-employment tax ALD deduction for each person", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.self_employment_tax_ald_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "alimony_expense_ald": { - "documentation": "Above-the-line deduction from gross income for alimony expenses.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "alimony_expense_ald", - "label": "Alimony expense ALD", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.alimony_expense_ald", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "domestic_production_ald": { - "documentation": "Above-the-line deduction from gross income for domestic production activities.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "domestic_production_ald", - "label": "Domestic production activities ALD", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.domestic_production_ald", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "self_employed_pension_contribution_ald": { - "documentation": "Above-the-line deduction for self-employed pension plan contributions.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "self_employed_pension_contribution_ald", - "label": "Self-employed pension contribution ALD", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.self_employed_pension_contribution_ald", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["self_employed_pension_contribution_ald_person"], - "subtracts": null, - "hidden_input": false - }, - "specified_possession_income": { - "documentation": "Income generated in the above territories by any individual who is a bona fide resident.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "specified_possession_income", - "label": "Income from Guam, American Samoa, or the Northern Mariana Islands", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.specified_possession_income", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "above_the_line_deductions": { - "documentation": "Deductions applied to reach adjusted gross income from gross income.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "above_the_line_deductions", - "label": "Above-the-line deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.above_the_line_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.irs.ald.deductions", - "subtracts": null, - "hidden_input": false - }, - "self_employed_pension_contribution_ald_person": { - "documentation": "Personal above-the-line deduction for self-employed pension plan contributions.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "self_employed_pension_contribution_ald_person", - "label": "Self-employed pension contribution ALD for each person", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.self_employed_pension_contribution_ald_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "puerto_rico_income": { - "documentation": "Income generated in Puerto Rico by any individual who is a bona fide resident.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "puerto_rico_income", - "label": "Income from Puerto Rico", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.puerto_rico_income", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "self_employed_health_insurance_ald": { - "documentation": "Above-the-line deduction for self-employed health insurance contributions.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "self_employed_health_insurance_ald", - "label": "Self-employed health insurance ALD", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.self_employed_health_insurance_ald", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["self_employed_health_insurance_ald_person"], - "subtracts": null, - "hidden_input": false - }, - "student_loan_interest_ald_magi": { - "documentation": "Above-the-line deduction for student loan interest", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "student_loan_interest_ald_magi", - "label": "Modified adjusted gross income for the student loan interest ALD", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.student_loan_interest.student_loan_interest_ald_magi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "student_loan_interest_ald_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "student_loan_interest_ald_eligible", - "label": "Eligible for the Student loan interest ALD", - "category": null, - "unit": null, - "moduleName": "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.student_loan_interest.student_loan_interest_ald_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "student_loan_interest_ald": { - "documentation": "Above-the-line deduction for student loan interest", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "student_loan_interest_ald", - "label": "Student loan interest ALD", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.student_loan_interest.student_loan_interest_ald", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "capped_property_taxes": { - "documentation": "Local real estate taxes limited by the federal SALT cap.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "capped_property_taxes", - "label": "Local real estate taxes limited by the federal SALT cap.", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.deductions.capped_property_taxes", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxable_income_deductions_if_itemizing": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxable_income_deductions_if_itemizing", - "label": "Deductions if itemizing", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.deductions.taxable_income_deductions_if_itemizing", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.irs.deductions.deductions_if_itemizing", - "subtracts": null, - "hidden_input": false - }, - "taxable_income_deductions_if_not_itemizing": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxable_income_deductions_if_not_itemizing", - "label": "Deductions if not itemizing", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.deductions.taxable_income_deductions_if_not_itemizing", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.irs.deductions.deductions_if_not_itemizing", - "subtracts": null, - "hidden_input": false - }, - "tuition_and_fees_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "tuition_and_fees_deduction", - "label": "Tuition and fees deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.deductions.tuition_and_fees_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_liability_if_not_itemizing": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "tax_liability_if_not_itemizing", - "label": "Tax liability if not itemizing", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.deductions.tax_liability_if_not_itemizing", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_unit_itemizes": { - "documentation": "Whether tax unit elects to itemize deductions rather than claim the standard deduction.", - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "tax_unit_itemizes", - "label": "Itemizes tax deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.deductions.tax_unit_itemizes", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "itemized_deductions_less_salt": { - "documentation": "Non-SALT itemized deductions total.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "itemized_deductions_less_salt", - "label": "Itemized tax deductions other than SALT deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.deductions.itemized_deductions_less_salt", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_liability_if_itemizing": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "tax_liability_if_itemizing", - "label": "Tax liability if itemizing", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.deductions.tax_liability_if_itemizing", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxable_income_deductions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxable_income_deductions", - "label": "Taxable income deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.deductions.taxable_income_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tuition_and_fees_deduction_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "tuition_and_fees_deduction_eligible", - "label": "Tuition and fees deduction eligible", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.deductions.tuition_and_fees_deduction_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "qualified_business_income_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "qualified_business_income_deduction", - "label": "Qualified business income deduction for tax unit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.deductions.qualified_business_income_deduction.qualified_business_income_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxable_income_less_qbid": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxable_income_less_qbid", - "label": "Taxable income (not considering QBID)", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.deductions.qualified_business_income_deduction.taxable_income_less_qbid", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "qualified_business_income": { - "documentation": "Business income that qualifies for the qualified business income deduction.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "qualified_business_income", - "label": "Qualified business income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.deductions.qualified_business_income_deduction.qualified_business_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "qbid_amount": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "qbid_amount", - "label": "Per-cap qualified business income deduction amount for each person", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.deductions.qualified_business_income_deduction.qbid_amount", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "qualified_business_income_deduction_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "qualified_business_income_deduction_person", - "label": "Qualified business income deduction for each person", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.deductions.qualified_business_income_deduction.qualified_business_income_deduction_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "total_itemized_taxable_income_deductions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "total_itemized_taxable_income_deductions", - "label": "Total values of itemized taxable income deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.deductions.itemizing.total_itemized_taxable_income_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.irs.deductions.itemized_deductions", - "subtracts": null, - "hidden_input": false - }, - "salt": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "salt", - "label": "State and local sales or income tax and real estate taxes subject to the SALT deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.deductions.itemizing.salt", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.irs.deductions.itemized.salt_and_real_estate.sources", - "subtracts": null, - "hidden_input": false - }, - "casualty_loss_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "casualty_loss_deduction", - "label": "Casualty loss deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.deductions.itemizing.casualty_loss_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "salt_cap": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "salt_cap", - "label": "SALT cap", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.deductions.itemizing.salt_cap", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "salt_deduction": { - "documentation": "State and local taxes plus real estate tax deduction from taxable income.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "salt_deduction", - "label": "SALT deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.deductions.itemizing.salt_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "charitable_deduction": { - "documentation": "Deduction from taxable income for charitable donations.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "charitable_deduction", - "label": "Charitable deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.deductions.itemizing.charitable_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "interest_deduction": { - "documentation": "Interest expenses deducted from taxable income.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "interest_deduction", - "label": "Interest deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.deductions.itemizing.interest_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["deductible_interest_expense"], - "subtracts": null, - "hidden_input": false - }, - "state_and_local_sales_or_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "state_and_local_sales_or_income_tax", - "label": "State and local sales or income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.deductions.itemizing.state_and_local_sales_or_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wagering_losses_deduction": { - "documentation": "Deduction from taxable income for gambling losses, capped at gambling winnings.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wagering_losses_deduction", - "label": "Wagering losses deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.deductions.itemizing.wagering_losses_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "reported_salt": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "reported_salt", - "label": "Reported State and local sales or income tax and real estate taxes subject to the SALT deduction limited to taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.deductions.itemizing.reported_salt", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "total_misc_deductions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "total_misc_deductions", - "label": "Total miscellaneous deductions subject to the AGI floor", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.deductions.itemizing.total_misc_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.irs.deductions.itemized.misc.sources", - "subtracts": null, - "hidden_input": false - }, - "misc_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "misc_deduction", - "label": "Miscellaneous deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.deductions.itemizing.misc_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "charitable_deduction_for_non_itemizers": { - "documentation": "Charitable deduction amount for non-itemizers.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "charitable_deduction_for_non_itemizers", - "label": "Charitable deduction for non-itemizers", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.deductions.itemizing.charitable_deduction_for_non_itemizers", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "itemized_taxable_income_deductions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "itemized_taxable_income_deductions", - "label": "Itemized taxable income deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.deductions.itemizing.itemized_taxable_income_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "itemized_taxable_income_deductions_reduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "itemized_taxable_income_deductions_reduction", - "label": "Itemized taxable income deductions reduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.deductions.itemizing.itemized_taxable_income_deductions_reduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "medical_expense_deduction": { - "documentation": "Medical expenses deducted from taxable income.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "medical_expense_deduction", - "label": "Medical expense deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.deductions.itemizing.medical_expense_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "overtime_income_deduction_ssn_requirement_met": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "overtime_income_deduction_ssn_requirement_met", - "label": "SSN requirement met for the overtime income deduction", - "category": null, - "unit": null, - "moduleName": "gov.irs.income.taxable_income.deductions.overtime_income.overtime_income_deduction_ssn_requirement_met", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "overtime_income_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "overtime_income_deduction", - "label": "Overtime income deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.deductions.overtime_income.overtime_income_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tip_income_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "tip_income_deduction", - "label": "Tip income deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.deductions.tip_income.tip_income_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tip_income_deduction_ssn_requirement_met": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "tip_income_deduction_ssn_requirement_met", - "label": "SSN requirement met for the tip income deduction", - "category": null, - "unit": null, - "moduleName": "gov.irs.income.taxable_income.deductions.tip_income.tip_income_deduction_ssn_requirement_met", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "additional_standard_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "additional_standard_deduction", - "label": "Additional standard deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.deductions.standard_deduction.additional_standard_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "aged_blind_count": { - "documentation": null, - "entity": "tax_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "aged_blind_count", - "label": "Aged and or blind head and spouse count", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.deductions.standard_deduction.aged_blind_count", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "aged_head": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "aged_head", - "label": "Aged head", - "category": null, - "unit": null, - "moduleName": "gov.irs.income.taxable_income.deductions.standard_deduction.aged_head", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_irs_aged": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_irs_aged", - "label": "Aged person under the IRS requirements", - "category": null, - "unit": null, - "moduleName": "gov.irs.income.taxable_income.deductions.standard_deduction.is_irs_aged", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "standard_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "standard_deduction", - "label": "Standard deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.deductions.standard_deduction.standard_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "basic_standard_deduction", - "additional_standard_deduction", - "bonus_guaranteed_deduction" - ], - "subtracts": null, - "hidden_input": false - }, - "basic_standard_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "basic_standard_deduction", - "label": "Basic standard deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.deductions.standard_deduction.basic_standard_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "aged_spouse": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "aged_spouse", - "label": "Aged spouse", - "category": null, - "unit": null, - "moduleName": "gov.irs.income.taxable_income.deductions.standard_deduction.aged_spouse", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "additional_senior_deduction_eligible_person": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "additional_senior_deduction_eligible_person", - "label": "Person is eligible for the additional senior deduction", - "category": null, - "unit": null, - "moduleName": "gov.irs.income.taxable_income.deductions.senior_deduction.additional_senior_deduction_eligible_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "additional_senior_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "additional_senior_deduction", - "label": "Senior deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.deductions.senior_deduction.additional_senior_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "auto_loan_interest_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "auto_loan_interest_deduction", - "label": "Auto loan interest deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.taxable_income.deductions.auto_loan_interest.auto_loan_interest_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "amt_non_agi_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "amt_non_agi_income", - "label": "Income considered for AMT but not AGI", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.sources.amt_non_agi_income", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "investment_income_form_4952": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "investment_income_form_4952", - "label": "Investment income from Form 4952", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.income.sources.investment_income_form_4952", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "unreported_payroll_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "unreported_payroll_tax", - "label": "Unreported payroll taxes from Form 4137 or 8919", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax.payroll.unreported_payroll_tax", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "employee_payroll_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "employee_payroll_tax", - "label": "employee-side payroll tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax.payroll.employee_payroll_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "payroll_tax_gross_wages": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "payroll_tax_gross_wages", - "label": "Gross wages and salaries for payroll taxes", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax.payroll.payroll_tax_gross_wages", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["irs_employment_income"], - "subtracts": null, - "hidden_input": false - }, - "excess_payroll_tax_withheld": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "excess_payroll_tax_withheld", - "label": "Excess payroll (FICA/RRTA) tax withheld", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax.payroll.excess_payroll_tax_withheld", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "employee_medicare_tax": { - "documentation": "Total liability for employee-side health insurance payroll tax.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "employee_medicare_tax", - "label": "employee-side health insurance payroll tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax.payroll.medicare.employee_medicare_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "employer_medicare_tax": { - "documentation": "Total liability for employer-side health insurance payroll tax.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "employer_medicare_tax", - "label": "Employer-side health insurance payroll tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax.payroll.medicare.employer_medicare_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "employer_social_security_tax": { - "documentation": "Total liability for employer-side OASDI payroll tax.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "employer_social_security_tax", - "label": "Employer-side OASDI payroll tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax.payroll.social_security.employer_social_security_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "employee_social_security_tax": { - "documentation": "Total liability for employee-side OASDI payroll tax.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "employee_social_security_tax", - "label": "employee-side OASDI payroll tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax.payroll.social_security.employee_social_security_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxable_earnings_for_social_security": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxable_earnings_for_social_security", - "label": "Taxable gross earnings for OASDI FICA", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax.payroll.social_security.taxable_earnings_for_social_security", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "taxable_self_employment_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "taxable_self_employment_income", - "label": "Taxable self-employment income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax.self_employment.taxable_self_employment_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "self_employment_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "self_employment_tax", - "label": "self-employment tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax.self_employment.self_employment_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "social_security_taxable_self_employment_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "social_security_taxable_self_employment_income", - "label": "Taxable self-employment income for computing Social Security tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax.self_employment.social_security_taxable_self_employment_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "self_employment_medicare_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "self_employment_medicare_tax", - "label": "Self-employment Medicare tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax.self_employment.self_employment_medicare_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "self_employment_social_security_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "self_employment_social_security_tax", - "label": "Self-employment Social Security tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax.self_employment.self_employment_social_security_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "net_investment_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "net_investment_income", - "label": "net investment income (NII) that is base of the NII Tax (NIIT)", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax.federal_income.net_investment_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.irs.investment.income.sources", - "subtracts": null, - "hidden_input": false - }, - "additional_medicare_tax": { - "documentation": "Additional Medicare Tax from Form 8959 (included in payrolltax)", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "additional_medicare_tax", - "label": "Additional Medicare Tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax.federal_income.additional_medicare_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "income_tax_excluding_ptc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "income_tax_excluding_ptc", - "label": "income tax (excluding PTC)", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax.federal_income.income_tax_excluding_ptc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["income_tax"], - "subtracts": ["aca_ptc"], - "hidden_input": false - }, - "income_tax": { - "documentation": "Total federal individual income tax liability.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "income_tax", - "label": "Federal income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax.federal_income.income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "net_investment_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "net_investment_income_tax", - "label": "Net Investment Income Tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax.federal_income.net_investment_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "income_tax_before_refundable_credits": { - "documentation": "Income tax liability (including other taxes) after non-refundable credits are used, but before refundable credits are applied", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "income_tax_before_refundable_credits", - "label": "Federal income tax before refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax.federal_income.income_tax_before_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "amt_form_completed": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "amt_form_completed", - "label": "AMT form completed", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax.federal_income.amt_form_completed", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "amt_tax_including_cg": { - "documentation": "Alternative Minimum Tax (AMT) liability computed using the capital gains rates, Form 6251, Part III", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "amt_tax_including_cg", - "label": "Alternative Minimum Tax computed using the capital gains rates", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax.federal_income.alternative_minimum_tax.amt_tax_including_cg", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "alternative_minimum_tax": { - "documentation": "Alternative Minimum Tax (AMT) liability", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "alternative_minimum_tax", - "label": "Alternative Minimum Tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax.federal_income.alternative_minimum_tax.alternative_minimum_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "amt_part_iii_required": { - "documentation": "Whether the Alternative Minimum Tax (AMT) Part III worksheet is required, Form 6251, Part III", - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "amt_part_iii_required", - "label": "Alternative Minimum Tax Part III required", - "category": null, - "unit": null, - "moduleName": "gov.irs.tax.federal_income.alternative_minimum_tax.amt_part_iii_required", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "regular_tax_before_credits": { - "documentation": "Regular tax on regular taxable income before credits", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "regular_tax_before_credits", - "label": "Regular tax before credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax.federal_income.alternative_minimum_tax.regular_tax_before_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "amt_lower_base_tax": { - "documentation": "Alternative Minimum Tax (AMT) base tax, Form 6251 Part II Line 7 'All Others' - lower bracket", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "amt_lower_base_tax", - "label": "Alternative Minimum Tax lower base tax amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax.federal_income.alternative_minimum_tax.base_tax.amt_lower_base_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "amt_base_tax": { - "documentation": "Alternative Minimum Tax (AMT) base tax, Form 6251 Part II Line 7 'All Others'", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "amt_base_tax", - "label": "Alternative Minimum Tax base tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax.federal_income.alternative_minimum_tax.base_tax.amt_base_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["amt_lower_base_tax", "amt_higher_base_tax"], - "subtracts": null, - "hidden_input": false - }, - "amt_higher_base_tax": { - "documentation": "Alternative Minimum Tax (AMT) base tax, Form 6251 Part II Line 7 'All Others' - higher bracket", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "amt_higher_base_tax", - "label": "Alternative Minimum Tax higher base tax amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax.federal_income.alternative_minimum_tax.base_tax.amt_higher_base_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "amt_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "amt_income", - "label": "AMT taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax.federal_income.alternative_minimum_tax.income.amt_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "taxable_income", - "amt_excluded_deductions", - "amt_separate_addition", - "exemptions" - ], - "subtracts": null, - "hidden_input": false - }, - "amt_separate_addition": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "amt_separate_addition", - "label": "AMT taxable income separate addition", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax.federal_income.alternative_minimum_tax.income.amt_separate_addition", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "amt_excluded_deductions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "amt_excluded_deductions", - "label": "AMT taxable income excluded deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax.federal_income.alternative_minimum_tax.income.amt_excluded_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "amt_income_less_exemptions": { - "documentation": "Alternative Minimum Tax (AMT) income less exemptions", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "amt_income_less_exemptions", - "label": "Alternative Minimum Tax Income less exemptions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax.federal_income.alternative_minimum_tax.income.amt_income_less_exemptions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "amt_kiddie_tax_applies": { - "documentation": "Whether the kiddie tax applies to the tax unit", - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "amt_kiddie_tax_applies", - "label": "Alternative Minimum Tax kiddie tax applies", - "category": null, - "unit": null, - "moduleName": "gov.irs.tax.federal_income.alternative_minimum_tax.kiddie_tax.amt_kiddie_tax_applies", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "income_tax_main_rates": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "income_tax_main_rates", - "label": "Income tax main rates", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax.federal_income.before_credits.income_tax_main_rates", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "income_tax_before_credits": { - "documentation": "Total (regular + AMT) income tax liability before credits", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "income_tax_before_credits", - "label": "income tax before credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax.federal_income.before_credits.income_tax_before_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["income_tax_main_rates", "capital_gains_tax", "alternative_minimum_tax"], - "subtracts": null, - "hidden_input": false - }, - "capital_gains_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "capital_gains_tax", - "label": "Maximum income tax after capital gains tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax.federal_income.capital_gains.capital_gains_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dwks14": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "dwks14", - "label": "IRS Form 1040 Schedule D worksheet (part 5 of 6)", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax.federal_income.capital_gains.dwks14", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dwks09": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "dwks09", - "label": "IRS Form 1040 Schedule D worksheet (part 2 of 6)", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax.federal_income.capital_gains.dwks09", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dwks10": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "dwks10", - "label": "IRS Form 1040 Schedule D worksheet (part 3 of 6)", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax.federal_income.capital_gains.dwks10", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dwks13": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "dwks13", - "label": "IRS Form 1040 Schedule D worksheet (part 4 of 6)", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax.federal_income.capital_gains.dwks13", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dwks19": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "dwks19", - "label": "IRS Form 1040 Schedule D worksheet (part 6 of 6)", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax.federal_income.capital_gains.dwks19", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dividend_income_reduced_by_investment_income": { - "documentation": "IRS Form 1040 Schedule D worksheet (part 1 of 6)", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "dividend_income_reduced_by_investment_income", - "label": "Dividend income reduced by investment income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax.federal_income.capital_gains.dividend_income_reduced_by_investment_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "capital_gains_excluded_from_taxable_income": { - "documentation": "This is subtracted from taxable income before applying the ordinary tax rates. Capital gains tax is calculated separately.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "capital_gains_excluded_from_taxable_income", - "label": "Capital gains excluded from taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax.federal_income.capital_gains.capital_gains_excluded_from_taxable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "adjusted_net_capital_gain": { - "documentation": "The excess of net long-term capital gain over net short-term capital loss.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "adjusted_net_capital_gain", - "label": "Adjusted net capital gain", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax.federal_income.capital_gains.adjusted_net_capital_gain", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "capital_gains_28_percent_rate_gain": { - "documentation": "Includes collectibles and certain small business stock gains. These are taxed at a higher (28-percent) rate than other capital gains, while a proportion is excluded from taxable income.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "capital_gains_28_percent_rate_gain", - "label": "28-percent rate gain", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax.federal_income.capital_gains.capital_gains_28_percent_rate_gain", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "long_term_capital_gains_on_collectibles", - "long_term_capital_gains_on_small_business_stock" - ], - "subtracts": null, - "hidden_input": false - }, - "net_capital_gain": { - "documentation": "The excess of net long-term capital gain over net short-term capitalloss, plus qualified dividends (the definition of \"net capital gain\"which applies to 26 U.S.C. § 1(h) from § 1(h)(11)).", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "net_capital_gain", - "label": "Net capital gain", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax.federal_income.capital_gains.net_capital_gain", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "estate_tax_before_credits": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "estate_tax_before_credits", - "label": "Estate tax before credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax.estate.estate_tax_before_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "estate_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "estate_tax", - "label": "Estate tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.irs.tax.estate.estate_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "vita_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "vita_eligible", - "label": "Eligible for the VITA program", - "category": null, - "unit": null, - "moduleName": "gov.irs.vita.vita_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "state_sales_tax_income_bracket": { - "documentation": null, - "entity": "tax_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "state_sales_tax_income_bracket", - "label": "State Sales Tax Income Bracket", - "category": null, - "unit": null, - "moduleName": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_income_bracket", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "social_security_retirement": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "social_security_retirement", - "label": "Social Security retirement benefits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.ssa.ss.social_security_retirement", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "social_security_survivors": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "social_security_survivors", - "label": "Social Security survivors benefits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.ssa.ss.social_security_survivors", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "never_eligible_for_social_security_benefits": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "never_eligible_for_social_security_benefits", - "label": "Never eligible for Social Security", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.ssa.ss.never_eligible_for_social_security_benefits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "social_security": { - "documentation": "Social Security benefits, not including SSI", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "social_security", - "label": "Social Security", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.ssa.ss.social_security", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "social_security_dependents", - "social_security_disability", - "social_security_retirement", - "social_security_survivors" - ], - "subtracts": null, - "hidden_input": false - }, - "social_security_disability": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "social_security_disability", - "label": "Social Security disability benefits (SSDI)", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.ssa.ss.social_security_disability", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "social_security_dependents": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "social_security_dependents", - "label": "Social Security dependents benefits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.ssa.ss.social_security_dependents", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_ssi_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_ssi_eligible", - "label": "Is SSI eligible person", - "category": null, - "unit": null, - "moduleName": "gov.ssa.ssi.is_ssi_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_unit_ssi": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "tax_unit_ssi", - "label": "Total SSI for the tax unit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.ssa.ssi.tax_unit_ssi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ssi"], - "subtracts": null, - "hidden_input": false - }, - "ssi_claim_is_joint": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ssi_claim_is_joint", - "label": "SSI claim is joint", - "category": null, - "unit": null, - "moduleName": "gov.ssa.ssi.ssi_claim_is_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ssi_amount_if_eligible": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ssi_amount_if_eligible", - "label": "SSI amount if eligible", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.ssa.ssi.ssi_amount_if_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "uncapped_ssi": { - "documentation": "Maximum SSI, less countable income (can be below zero).", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "uncapped_ssi", - "label": "Uncapped SSI", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.ssa.ssi.uncapped_ssi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ssi": { - "documentation": "Supplemental Security Income", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ssi", - "label": "SSI", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.ssa.ssi.ssi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_ssi_aged": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_ssi_aged", - "label": "Is aged for SSI", - "category": null, - "unit": null, - "moduleName": "gov.ssa.ssi.eligibility.status.is_ssi_aged", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_ssi_eligible_individual": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_ssi_eligible_individual", - "label": "Is an SSI-eligible individual", - "category": null, - "unit": null, - "moduleName": "gov.ssa.ssi.eligibility.status.is_ssi_eligible_individual", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_ssi_disabled": { - "documentation": "Indicates whether a person is disabled for the Supplemental Security Income program", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_ssi_disabled", - "label": "SSI disabled", - "category": null, - "unit": null, - "moduleName": "gov.ssa.ssi.eligibility.status.is_ssi_disabled", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_ssi_qualified_noncitizen": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_ssi_qualified_noncitizen", - "label": "Is an SSI qualified noncitizen", - "category": null, - "unit": null, - "moduleName": "gov.ssa.ssi.eligibility.status.is_ssi_qualified_noncitizen", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_ssi_ineligible_child": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_ssi_ineligible_child", - "label": "Is an SSI-ineligible child", - "category": null, - "unit": null, - "moduleName": "gov.ssa.ssi.eligibility.status.is_ssi_ineligible_child", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_ssi_ineligible_spouse": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_ssi_ineligible_spouse", - "label": "Is an SSI-ineligible spouse", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.ssa.ssi.eligibility.status.is_ssi_ineligible_spouse", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_ssi_ineligible_parent": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_ssi_ineligible_parent", - "label": "Is an SSI-ineligible parent in respect of a child", - "category": null, - "unit": null, - "moduleName": "gov.ssa.ssi.eligibility.status.is_ssi_ineligible_parent", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_ssi_eligible_spouse": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_ssi_eligible_spouse", - "label": "Is an SSI-eligible spouse", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.ssa.ssi.eligibility.status.is_ssi_eligible_spouse", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ssi_category": { - "documentation": null, - "entity": "person", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "ssi_category", - "label": "SSI category", - "category": null, - "unit": null, - "moduleName": "gov.ssa.ssi.eligibility.status.ssi_category", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "NONE", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "AGED", - "label": "Aged" - }, - { - "value": "BLIND", - "label": "Blind" - }, - { - "value": "DISABLED", - "label": "Disabled" - }, - { - "value": "NONE", - "label": "None" - } - ] - }, - "is_ssi_aged_blind_disabled": { - "documentation": "Indicates whether a person is aged, blind, or disabled for the Supplemental Security Income program", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_ssi_aged_blind_disabled", - "label": "SSI aged, blind, or disabled", - "category": null, - "unit": null, - "moduleName": "gov.ssa.ssi.eligibility.status.is_ssi_aged_blind_disabled", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ssi_countable_income": { - "documentation": "\nCalculates total countable income for SSI:\n - Earned (after ignoring blind/disabled student exclusion)\n - Unearned\n - Parental deemed if child\n - Spousal deemed if married to an ineligible spouse\n - Applies standard SSI exclusions.\n", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ssi_countable_income", - "label": "SSI countable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.ssa.ssi.eligibility.income.ssi_countable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ssi_engaged_in_sga": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ssi_engaged_in_sga", - "label": "Income less than the SGA limit", - "category": null, - "unit": null, - "moduleName": "gov.ssa.ssi.eligibility.income.ssi_engaged_in_sga", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ssi_unearned_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ssi_unearned_income", - "label": "SSI earned income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.ssa.ssi.eligibility.income.ssi_unearned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.ssa.ssi.income.sources.unearned", - "subtracts": null, - "hidden_input": false - }, - "is_ssi_blind_or_disabled_working_student_exclusion_eligible": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "is_ssi_blind_or_disabled_working_student_exclusion_eligible", - "label": "Eligible for SSI blind or disabled working student earned income exclusion", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.ssa.ssi.eligibility.income.is_ssi_blind_or_disabled_working_student_exclusion_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ssi_blind_or_disabled_working_student_exclusion": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ssi_blind_or_disabled_working_student_exclusion", - "label": "SSI blind or disabled working student earned income exclusion", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.ssa.ssi.eligibility.income.ssi_blind_or_disabled_working_student_exclusion", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ssi_earned_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ssi_earned_income", - "label": "SSI earned income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.ssa.ssi.eligibility.income.ssi_earned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.ssa.ssi.income.sources.earned", - "subtracts": null, - "hidden_input": false - }, - "ssi_ineligible_parent_allocation": { - "documentation": "The amount of income that SSI does not to SSI claimants.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ssi_ineligible_parent_allocation", - "label": "SSI ineligible parent allocation", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.ssa.ssi.eligibility.income.deemed.ssi_ineligible_parent_allocation", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ssi_ineligible_child_allocation": { - "documentation": "The amount of income that SSI deems ought to be spent on this child, and therefore is not deemed to SSI claimants.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ssi_ineligible_child_allocation", - "label": "SSI ineligible child allocation", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.ssa.ssi.eligibility.income.deemed.ssi_ineligible_child_allocation", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ssi_income_deemed_from_ineligible_spouse": { - "documentation": "\nSpousal deeming: \n 1) If leftover spouse income \u003C= (coupleFBR - indivFBR), then 0 is deemed.\n 2) Otherwise, spouse's deemed = (couple combined countable) - (individual alone countable).\n This yields 816 for 1986 Example 3 and 12000 for the 2025 test.\n", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ssi_income_deemed_from_ineligible_spouse", - "label": "SSI income (deemed from ineligible spouse)", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.ssa.ssi.eligibility.income.deemed.from_ineligible_spouse.ssi_income_deemed_from_ineligible_spouse", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ssi_earned_income_deemed_from_ineligible_spouse": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ssi_earned_income_deemed_from_ineligible_spouse", - "label": "SSI earned income (deemed from ineligible spouse)", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.ssa.ssi.eligibility.income.deemed.from_ineligible_spouse.ssi_earned_income_deemed_from_ineligible_spouse", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ssi_unearned_income_deemed_from_ineligible_spouse": { - "documentation": "This is ignored if total income is under the SSI individual allowance.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ssi_unearned_income_deemed_from_ineligible_spouse", - "label": "SSI unearned income (deemed from ineligible spouse)", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.ssa.ssi.eligibility.income.deemed.from_ineligible_spouse.ssi_unearned_income_deemed_from_ineligible_spouse", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ssi_unearned_income_deemed_from_ineligible_parent": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ssi_unearned_income_deemed_from_ineligible_parent", - "label": "SSI unearned income (deemed from ineligible parent)", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.ssa.ssi.eligibility.income.deemed.from_ineligible_parent.ssi_unearned_income_deemed_from_ineligible_parent", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ssi_marital_earned_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ssi_marital_earned_income", - "label": "Total SSI earned income for a marital unit", - "category": null, - "unit": null, - "moduleName": "gov.ssa.ssi.eligibility.income.marital.ssi_marital_earned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ssi_marital_both_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ssi_marital_both_eligible", - "label": "Both members of the marital unit are eligible for SSI", - "category": null, - "unit": null, - "moduleName": "gov.ssa.ssi.eligibility.income.marital.ssi_marital_both_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ssi_marital_unearned_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ssi_marital_unearned_income", - "label": "Total SSI unearned income for a marital unit", - "category": null, - "unit": null, - "moduleName": "gov.ssa.ssi.eligibility.income.marital.ssi_marital_unearned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ssi_countable_resources": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ssi_countable_resources", - "label": "SSI countable resources", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.ssa.ssi.eligibility.resources.ssi_countable_resources", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "meets_ssi_resource_test": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "meets_ssi_resource_test", - "label": "Meets SSI resource test", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.ssa.ssi.eligibility.resources.meets_ssi_resource_test", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "takes_up_aca_if_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "takes_up_aca_if_eligible", - "label": "Whether a random eligible SPM unit does not claim ACA Premium Tax Credit", - "category": null, - "unit": null, - "moduleName": "gov.aca.takes_up_aca_if_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "aca_take_up_seed": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "aca_take_up_seed", - "label": "Randomly assigned seed for ACA take-up", - "category": null, - "unit": null, - "moduleName": "gov.aca.aca_take_up_seed", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "aca_ptc_phase_out_rate": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "aca_ptc_phase_out_rate", - "label": "ACA PTC phase-out rate (i.e., IRS Form 8962 'applicable figure')", - "category": null, - "unit": "/1", - "moduleName": "gov.aca.ptc.aca_ptc_phase_out_rate", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "premium_tax_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "premium_tax_credit", - "label": "Affordable Care Act Premium Tax Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.aca.ptc.premium_tax_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["aca_ptc"], - "subtracts": null, - "hidden_input": false - }, - "aca_ptc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "aca_ptc", - "label": "ACA premium tax credit for tax unit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.aca.ptc.aca_ptc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "slcsp_age_0": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "month", - "name": "slcsp_age_0", - "label": "Second-lowest ACA silver-plan for a person aged 0", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.aca.slspc.slcsp_age_0", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "slcsp_family_tier_applies": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "slcsp_family_tier_applies", - "label": "ACA family tier applies, rather than age curves", - "category": null, - "unit": null, - "moduleName": "gov.aca.slspc.slcsp_family_tier_applies", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "slcsp": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "slcsp", - "label": "Second-lowest ACA silver-plan cost", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.aca.slspc.slcsp", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["slcsp_age_curve_amount_person", "slcsp_family_tier_amount"], - "subtracts": null, - "hidden_input": false - }, - "slcsp_family_tier_category": { - "documentation": null, - "entity": "tax_unit", - "valueType": "Enum", - "definitionPeriod": "month", - "name": "slcsp_family_tier_category", - "label": "ACA family tier category for premium calculation", - "category": null, - "unit": null, - "moduleName": "gov.aca.slspc.slcsp_family_tier_category", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "INDIVIDUAL_AGE_RATED", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "INDIVIDUAL_AGE_RATED", - "label": "Individual age rated" - }, - { - "value": "ONE_ADULT", - "label": "One_adult" - }, - { - "value": "TWO_ADULTS", - "label": "Two_adults" - }, - { - "value": "ONE_ADULT_AND_ONE_OR_MORE_CHILDREN", - "label": "One_adult_and_one_or_more_children" - }, - { - "value": "TWO_ADULTS_AND_ONE_OR_MORE_CHILDREN", - "label": "Two_adults_and_one_or_more_children" - }, - { - "value": "CHILD_ONLY", - "label": "Child_only" - } - ] - }, - "slcsp_age_curve_applies": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "slcsp_age_curve_applies", - "label": "ACA age curve applies, rather than family tier", - "category": null, - "unit": null, - "moduleName": "gov.aca.slspc.slcsp_age_curve_applies", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "slcsp_age_curve_amount_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "slcsp_age_curve_amount_person", - "label": "Second-lowest ACA silver-plan cost, for people in age curve states", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.aca.slspc.slcsp_age_curve_amount_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "slcsp_family_tier_multiplier": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "slcsp_family_tier_multiplier", - "label": "ACA family tier multiplier for premium calculation", - "category": null, - "unit": "/1", - "moduleName": "gov.aca.slspc.slcsp_family_tier_multiplier", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "slcsp_rating_area_default": { - "documentation": null, - "entity": "household", - "valueType": "int", - "definitionPeriod": "year", - "name": "slcsp_rating_area_default", - "label": "Second-lowest ACA silver-plan cost rating area outside of LA County", - "category": null, - "unit": null, - "moduleName": "gov.aca.slspc.slcsp_rating_area_default", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "slcsp_rating_area_la_county": { - "documentation": null, - "entity": "household", - "valueType": "int", - "definitionPeriod": "year", - "name": "slcsp_rating_area_la_county", - "label": "Second-lowest ACA silver-plan cost rating area in Los Angeles County", - "category": null, - "unit": null, - "moduleName": "gov.aca.slspc.slcsp_rating_area_la_county", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "slcsp_rating_area": { - "documentation": null, - "entity": "household", - "valueType": "int", - "definitionPeriod": "year", - "name": "slcsp_rating_area", - "label": "Second-lowest ACA silver-plan cost rating area", - "category": null, - "unit": null, - "moduleName": "gov.aca.slspc.slcsp_rating_area", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "slcsp_family_tier_amount": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "slcsp_family_tier_amount", - "label": "ACA family tier premium amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.aca.slspc.slcsp_family_tier_amount", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_aca_eshi_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_aca_eshi_eligible", - "label": "Person is eligible for employer-sponsored health insurance under ACA rules", - "category": null, - "unit": null, - "moduleName": "gov.aca.eligibility.is_aca_eshi_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_aca_ptc_immigration_status_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_aca_ptc_immigration_status_eligible", - "label": "Person is eligible for ACA premium tax credit and pays ACA premium due to immigration status", - "category": null, - "unit": null, - "moduleName": "gov.aca.eligibility.is_aca_ptc_immigration_status_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "aca_magi_fraction": { - "documentation": "ACA-related MAGI as fraction of federal poverty line.Documentation on use of prior-year FPL in the following reference: title: 2022 IRS Form 8962 (ACA PTC) instructions, Line 4 href: https://www.irs.gov/pub/irs-pdf/i8962.pdf#page=7Documentation on truncation of fraction in the following reference: title: 2022 IRS Form 8962 instructions, Line 5 Worksheet 2 href: https://www.irs.gov/pub/irs-pdf/i8962.pdf#page=8", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "aca_magi_fraction", - "label": "ACA-related modified AGI as fraction of prior-year FPL", - "category": null, - "unit": null, - "moduleName": "gov.aca.eligibility.aca_magi_fraction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "aca_child_index": { - "documentation": null, - "entity": "person", - "valueType": "int", - "definitionPeriod": "year", - "name": "aca_child_index", - "label": "Index of child in tax unit (1 = oldest)", - "category": null, - "unit": null, - "moduleName": "gov.aca.eligibility.aca_child_index", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "aca_magi": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "aca_magi", - "label": "ACA-related modified AGI for this tax unit", - "category": null, - "unit": null, - "moduleName": "gov.aca.eligibility.aca_magi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["medicaid_magi"], - "subtracts": null, - "hidden_input": false - }, - "is_aca_ptc_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_aca_ptc_eligible", - "label": "Person is eligible for ACA premium tax credit and pays ACA premium", - "category": null, - "unit": null, - "moduleName": "gov.aca.eligibility.is_aca_ptc_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "offered_aca_disqualifying_esi": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "offered_aca_disqualifying_esi", - "label": "Person is offered ACA disqualifying esi", - "category": null, - "unit": null, - "moduleName": "gov.aca.eligibility.offered_aca_disqualifying_esi", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "has_esi": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "has_esi", - "label": "Person currently has ESI", - "category": null, - "unit": null, - "moduleName": "gov.aca.eligibility.has_esi", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "in_denver": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "in_denver", - "label": "Is in Denver County", - "category": null, - "unit": null, - "moduleName": "gov.local.co.denver.in_denver", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_co_denver_dhs_elderly": { - "documentation": "Is elderly per Denver DHS guidelines", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_co_denver_dhs_elderly", - "label": "Denver DHS elderly", - "category": null, - "unit": null, - "moduleName": "gov.local.co.denver.dhs.is_co_denver_dhs_elderly", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "has_co_denver_dhs_elderly_disabled": { - "documentation": "Whether the SPM unit has a person who meets Denver DHS definitions of elderly or disabled", - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "has_co_denver_dhs_elderly_disabled", - "label": "Has Denver DHS elderly or disabled people", - "category": null, - "unit": null, - "moduleName": "gov.local.co.denver.dhs.has_co_denver_dhs_elderly_disabled", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_denver_property_tax_relief_income": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_denver_property_tax_relief_income", - "label": "Denver Property Tax Relief income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.local.co.denver.dhs.property_tax_relief.co_denver_property_tax_relief_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.local.co.denver.dhs.property_tax_relief.income_sources", - "subtracts": null, - "hidden_input": false - }, - "co_denver_renter_property_tax_relief": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_denver_renter_property_tax_relief", - "label": "Denver Property Tax Relief for renters", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.local.co.denver.dhs.property_tax_relief.co_denver_renter_property_tax_relief", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["gov.local.co.denver.dhs.property_tax_relief.amount.renter"], - "subtracts": null, - "hidden_input": false - }, - "co_denver_property_tax_relief": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_denver_property_tax_relief", - "label": "Denver Property Tax Relief", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.local.co.denver.dhs.property_tax_relief.co_denver_property_tax_relief", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["co_denver_homeowner_property_tax_relief", "co_denver_renter_property_tax_relief"], - "subtracts": null, - "hidden_input": false - }, - "co_denver_homeowner_property_tax_relief": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_denver_homeowner_property_tax_relief", - "label": "Denver Property Tax Relief for homeowners", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.local.co.denver.dhs.property_tax_relief.co_denver_homeowner_property_tax_relief", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["gov.local.co.denver.dhs.property_tax_relief.amount.homeowner"], - "subtracts": null, - "hidden_input": false - }, - "co_denver_property_tax_relief_renter_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_denver_property_tax_relief_renter_eligible", - "label": "Eligible for the renter Denver Property Tax Relief", - "category": null, - "unit": null, - "moduleName": "gov.local.co.denver.dhs.property_tax_relief.eligibility.co_denver_property_tax_relief_renter_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_denver_property_tax_relief_homeowner_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_denver_property_tax_relief_homeowner_eligible", - "label": "Eligible for the homeowner Denver Property Tax Relief", - "category": null, - "unit": null, - "moduleName": "gov.local.co.denver.dhs.property_tax_relief.eligibility.co_denver_property_tax_relief_homeowner_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nyc_income_tax_before_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nyc_income_tax_before_credits", - "label": "NYC income tax before credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.local.ny.nyc.tax.income.nyc_income_tax_before_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nyc_income_tax_before_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nyc_income_tax_before_refundable_credits", - "label": "NYC income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.local.ny.nyc.tax.income.nyc_income_tax_before_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nyc_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nyc_non_refundable_credits", - "label": "NYC non-refundable tax credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.local.ny.nyc.tax.income.nyc_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.local.ny.nyc.tax.income.credits.non_refundable", - "subtracts": null, - "hidden_input": false - }, - "nyc_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nyc_refundable_credits", - "label": "NYC refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.local.ny.nyc.tax.income.nyc_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.local.ny.nyc.tax.income.credits.refundable", - "subtracts": null, - "hidden_input": false - }, - "nyc_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nyc_income_tax", - "label": "NYC income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.local.ny.nyc.tax.income.nyc_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["nyc_income_tax_before_refundable_credits"], - "subtracts": ["nyc_refundable_credits"], - "hidden_input": false - }, - "nyc_eitc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nyc_eitc", - "label": "NYC EITC", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.local.ny.nyc.tax.income.credits.nyc_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nyc_household_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nyc_household_credit", - "label": "NYC Household Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.local.ny.nyc.tax.income.credits.household.nyc_household_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nyc_unincorporated_business_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nyc_unincorporated_business_credit", - "label": "NYC Unincorporated Business Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.local.ny.nyc.tax.income.credits.unincorporated_business.nyc_unincorporated_business_credit", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nyc_cdcc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nyc_cdcc", - "label": "NYC Child and Dependent Care Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.local.ny.nyc.tax.income.credits.cdcc.nyc_cdcc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nyc_cdcc_applicable_percentage": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nyc_cdcc_applicable_percentage", - "label": "NYC CDCC rate", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.local.ny.nyc.tax.income.credits.cdcc.nyc_cdcc_applicable_percentage", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nyc_cdcc_age_restricted_expenses": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nyc_cdcc_age_restricted_expenses", - "label": "Childcare expenses for children under NYC CDCC age limit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.local.ny.nyc.tax.income.credits.cdcc.nyc_cdcc_age_restricted_expenses", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nyc_cdcc_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "nyc_cdcc_eligible", - "label": "Eligible for NYC CDCC", - "category": null, - "unit": null, - "moduleName": "gov.local.ny.nyc.tax.income.credits.cdcc.nyc_cdcc_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nyc_cdcc_share_qualifying_childcare_expenses": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nyc_cdcc_share_qualifying_childcare_expenses", - "label": "Share of Childcare expenses that qualify towards NYC CDCC", - "category": null, - "unit": "/1", - "moduleName": "gov.local.ny.nyc.tax.income.credits.cdcc.nyc_cdcc_share_qualifying_childcare_expenses", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nyc_school_tax_credit_rate_reduction_amount": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nyc_school_tax_credit_rate_reduction_amount", - "label": "NYC School Tax Credit Rate Reduction Amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.local.ny.nyc.tax.income.credits.school.nyc_school_tax_credit_rate_reduction_amount", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nyc_school_tax_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nyc_school_tax_credit", - "label": "NYC School Tax Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.local.ny.nyc.tax.income.credits.school.nyc_school_tax_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "nyc_school_tax_credit_fixed_amount", - "nyc_school_tax_credit_rate_reduction_amount" - ], - "subtracts": null, - "hidden_input": false - }, - "nyc_school_tax_credit_rate_reduction_amount_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "nyc_school_tax_credit_rate_reduction_amount_eligible", - "label": "Eligible for NYC School Tax Credit Rate Reduction Amount", - "category": null, - "unit": null, - "moduleName": "gov.local.ny.nyc.tax.income.credits.school.nyc_school_tax_credit_rate_reduction_amount_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nyc_school_tax_credit_fixed_amount": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nyc_school_tax_credit_fixed_amount", - "label": "NYC School Tax Credit Fixed Amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.local.ny.nyc.tax.income.credits.school.nyc_school_tax_credit_fixed_amount", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nyc_school_tax_credit_fixed_amount_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "nyc_school_tax_credit_fixed_amount_eligible", - "label": "Eligible for NYC School Tax Credit Fixed Amount", - "category": null, - "unit": null, - "moduleName": "gov.local.ny.nyc.tax.income.credits.school.nyc_school_tax_credit_fixed_amount_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nyc_school_credit_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nyc_school_credit_income", - "label": "NYC income used for school tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.local.ny.nyc.tax.income.credits.school.nyc_school_credit_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["adjusted_gross_income"], - "subtracts": null, - "hidden_input": false - }, - "nyc_taxable_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nyc_taxable_income", - "label": "NYC taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.local.ny.nyc.tax.income.taxable_income.nyc_taxable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ny_taxable_income"], - "subtracts": null, - "hidden_input": false - }, - "assessed_property_value": { - "documentation": "Total assessed value of property owned by this person.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "assessed_property_value", - "label": "Assessed property value", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.local.tax.assessed_property_value", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "salt_refund_last_year": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "salt_refund_last_year", - "label": "SALT refund last year", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.local.tax.salt_refund_last_year", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "local_sales_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "local_sales_tax", - "label": "Local sales tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.local.tax.sales.local_sales_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "local_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "local_income_tax", - "label": "Local income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.local.tax.income.local_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["nyc_income_tax"], - "subtracts": null, - "hidden_input": false - }, - "in_riv": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "in_riv", - "label": "Is in Riverside County", - "category": null, - "unit": null, - "moduleName": "gov.local.ca.riv.in_riv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_riv_share_payment": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "ca_riv_share_payment", - "label": "Riverside County Sharing Households Assist Riverside's Energy program (SHARE) payment", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.local.ca.riv.share.ca_riv_share_payment", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_riv_share_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "ca_riv_share_eligible", - "label": "Eligible for the Riverside County Sharing Households Assist Riverside's Energy program (SHARE)", - "category": null, - "unit": null, - "moduleName": "gov.local.ca.riv.share.ca_riv_share_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_riv_share_countable_income": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_riv_share_countable_income", - "label": "Riverside County Sharing Households Assist Riverside's Energy program (SHARE) countable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.local.ca.riv.share.ca_riv_share_countable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.local.ca.riv.cap.share.countable_income.sources", - "subtracts": null, - "hidden_input": false - }, - "ca_riv_share_electricity_emergency_payment": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_riv_share_electricity_emergency_payment", - "label": "Riverside County Sharing Households Assist Riverside's Energy program (SHARE) electric emergency payment", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.local.ca.riv.share.emergency_payment.ca_riv_share_electricity_emergency_payment", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_riv_share_eligible_for_emergency_payment": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "ca_riv_share_eligible_for_emergency_payment", - "label": "SPM Unit has urgent notice and/or disconnection notice under Riverside County SHARE program", - "category": null, - "unit": null, - "moduleName": "gov.local.ca.riv.share.emergency_payment.ca_riv_share_eligible_for_emergency_payment", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_riv_liheap_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ca_riv_liheap_eligible", - "label": "Eligible for the California Riverside County LIHEAP", - "category": null, - "unit": null, - "moduleName": "gov.local.ca.riv.liheap.ca_riv_liheap_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_riv_liheap_countable_income": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_riv_liheap_countable_income", - "label": "Riverside County Low Income Home Energy Assistance Program (LIHEAP) countable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.local.ca.riv.liheap.ca_riv_liheap_countable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.local.ca.riv.cap.liheap.countable_income.sources", - "subtracts": null, - "hidden_input": false - }, - "ca_sf_wftc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_sf_wftc", - "label": "San Francisco Working Families Tax Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.local.ca.sf.wftc.ca_sf_wftc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "in_la": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "in_la", - "label": "Is in Los Angeles County", - "category": null, - "unit": null, - "moduleName": "gov.local.ca.la.in_la", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_la_expectant_parent_payment": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "ca_la_expectant_parent_payment", - "label": "Los Angeles County expectant parent payment", - "category": null, - "unit": null, - "moduleName": "gov.local.ca.la.dss.expectant_parent_payment.ca_la_expectant_parent_payment", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["gov.local.ca.la.dss.expectant_parent_payment.amount"], - "subtracts": null, - "hidden_input": false - }, - "ca_la_expectant_parent_payment_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "month", - "name": "ca_la_expectant_parent_payment_eligible", - "label": "Eligible for the Los Angeles County expectant parent payment", - "category": null, - "unit": null, - "moduleName": "gov.local.ca.la.dss.expectant_parent_payment.ca_la_expectant_parent_payment_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_la_infant_supplement_eligible_person": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "month", - "name": "ca_la_infant_supplement_eligible_person", - "label": "Eligible for the Los Angeles County infant supplement", - "category": null, - "unit": null, - "moduleName": "gov.local.ca.la.dss.infant_supplement.ca_la_infant_supplement_eligible_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_la_infant_supplement": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "month", - "name": "ca_la_infant_supplement", - "label": "Los Angeles County infant supplement", - "category": null, - "unit": null, - "moduleName": "gov.local.ca.la.dss.infant_supplement.ca_la_infant_supplement", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "la_general_relief_net_income": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "la_general_relief_net_income", - "label": "Net Income under the Los Angeles County General Relief after state and federal deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.local.ca.la.general_relief.la_general_relief_net_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "la_general_relief": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "la_general_relief", - "label": "Los Angeles County General Relief", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.local.ca.la.general_relief.la_general_relief", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["la_general_relief_base_amount"], - "subtracts": ["la_general_relief_rent_contribution"], - "hidden_input": false - }, - "la_general_relief_gross_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "la_general_relief_gross_income", - "label": "Gross Income sources accounted for under the Los Angeles County General Relief", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.local.ca.la.general_relief.la_general_relief_gross_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.local.ca.la.general_relief.income_sources", - "subtracts": null, - "hidden_input": false - }, - "la_general_relief_base_amount": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "la_general_relief_base_amount", - "label": "Los Angeles County General Relief base amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.local.ca.la.general_relief.la_general_relief_base_amount", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "la_general_relief_recipient": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "la_general_relief_recipient", - "label": "Recipient of the Los Angeles County General Relief", - "category": null, - "unit": null, - "moduleName": "gov.local.ca.la.general_relief.la_general_relief_recipient", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "la_general_relief_rent_contribution": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "la_general_relief_rent_contribution", - "label": "Los Angeles County General Relief rent contribution", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.local.ca.la.general_relief.housing_subsidy.la_general_relief_rent_contribution", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "la_general_relief_housing_subsidy": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "la_general_relief_housing_subsidy", - "label": "Los Angeles County General Relief Housing Subsidy", - "category": null, - "unit": null, - "moduleName": "gov.local.ca.la.general_relief.housing_subsidy.la_general_relief_housing_subsidy", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "la_general_relief_housing_subsidy_program_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "la_general_relief_housing_subsidy_program_eligible", - "label": "Eligible for the Los Angeles County General Relief Housing Subsidy based on the program eligibility", - "category": null, - "unit": null, - "moduleName": "gov.local.ca.la.general_relief.housing_subsidy.eligibility.la_general_relief_housing_subsidy_program_eligible", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "la_general_relief_housing_subsidy_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "la_general_relief_housing_subsidy_eligible", - "label": "Eligible for the Los Angeles County General Relief Housing Subsidy", - "category": null, - "unit": null, - "moduleName": "gov.local.ca.la.general_relief.housing_subsidy.eligibility.la_general_relief_housing_subsidy_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "la_general_relief_housing_subsidy_base_amount_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "la_general_relief_housing_subsidy_base_amount_eligible", - "label": "Eligible for the Los Angeles County General Relief Housing Subsidy based on the base amount requirements", - "category": null, - "unit": null, - "moduleName": "gov.local.ca.la.general_relief.housing_subsidy.eligibility.la_general_relief_housing_subsidy_base_amount_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "la_general_relief_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "la_general_relief_eligible", - "label": "Eligible for the Los Angeles County General Relief", - "category": null, - "unit": null, - "moduleName": "gov.local.ca.la.general_relief.eligibility.la_general_relief_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "la_general_relief_disability_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "la_general_relief_disability_eligible", - "label": "Eligible for the Los Angeles County General Relief based on the disability requirements", - "category": null, - "unit": null, - "moduleName": "gov.local.ca.la.general_relief.eligibility.la_general_relief_disability_eligible", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "la_general_relief_personal_property_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "la_general_relief_personal_property_eligible", - "label": "Eligible for the Los Angeles County General Relief based on the personal property value requirements", - "category": null, - "unit": null, - "moduleName": "gov.local.ca.la.general_relief.eligibility.la_general_relief_personal_property_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "la_general_relief_home_value_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "la_general_relief_home_value_eligible", - "label": "Eligible for the Los Angeles County General Relief based on the home value requirements", - "category": null, - "unit": null, - "moduleName": "gov.local.ca.la.general_relief.eligibility.la_general_relief_home_value_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "la_general_relief_motor_vehicle_value_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "la_general_relief_motor_vehicle_value_eligible", - "label": "Eligible for the Los Angeles County General Relief based on the motor vehicle value requirements", - "category": null, - "unit": null, - "moduleName": "gov.local.ca.la.general_relief.eligibility.la_general_relief_motor_vehicle_value_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "la_general_relief_age_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "la_general_relief_age_eligible", - "label": "Eligible for the Los Angeles County General Relief based on the age requirements", - "category": null, - "unit": null, - "moduleName": "gov.local.ca.la.general_relief.eligibility.la_general_relief_age_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "la_general_relief_net_income_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "la_general_relief_net_income_eligible", - "label": "Eligible for the Los Angeles County General Relief based on the net income requirements", - "category": null, - "unit": null, - "moduleName": "gov.local.ca.la.general_relief.eligibility.net_income.la_general_relief_net_income_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "la_general_relief_net_income_limit": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "la_general_relief_net_income_limit", - "label": "Limit for the Los Angeles County General Relief net income requirements", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.local.ca.la.general_relief.eligibility.net_income.la_general_relief_net_income_limit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "la_general_relief_cash_asset_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "la_general_relief_cash_asset_eligible", - "label": "Eligible for the Los Angeles County General Relief based on the cash asset requirements", - "category": null, - "unit": null, - "moduleName": "gov.local.ca.la.general_relief.eligibility.cash.la_general_relief_cash_asset_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "la_general_relief_cash_asset_limit": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "la_general_relief_cash_asset_limit", - "label": "Limit for the Los Angeles County General Relief cash asset requirements", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.local.ca.la.general_relief.eligibility.cash.la_general_relief_cash_asset_limit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "la_general_relief_immigration_status_eligible_person": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "la_general_relief_immigration_status_eligible_person", - "label": "Eligible Person for the Los Angeles County General Relief based on the immigration status requirements", - "category": null, - "unit": null, - "moduleName": "gov.local.ca.la.general_relief.eligibility.immigration.la_general_relief_immigration_status_eligible_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "la_general_relief_immigration_status_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "la_general_relief_immigration_status_eligible", - "label": "Eligible for the Los Angeles County General Relief based on the immigration status requirements", - "category": null, - "unit": null, - "moduleName": "gov.local.ca.la.general_relief.eligibility.immigration.la_general_relief_immigration_status_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_la_ez_save_eligible": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "month", - "name": "ca_la_ez_save_eligible", - "label": "Eligible for the Los Angeles County EZ Save program", - "category": null, - "unit": null, - "moduleName": "gov.local.ca.la.dwp.ez_save.ca_la_ez_save_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_la_ez_save_fpg": { - "documentation": "The federal poverty guideline used to determine LA ez save eligibility.", - "entity": "household", - "valueType": "float", - "definitionPeriod": "month", - "name": "ca_la_ez_save_fpg", - "label": "Los Angeles County EZ save federal poverty guideline", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.local.ca.la.dwp.ez_save.ca_la_ez_save_fpg", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_la_ez_save_countable_income": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_la_ez_save_countable_income", - "label": "Los Angeles County EZ Save program countable income", - "category": null, - "unit": null, - "moduleName": "gov.local.ca.la.dwp.ez_save.ca_la_ez_save_countable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.local.ca.la.dwp.ez_save.income_sources", - "subtracts": null, - "hidden_input": false - }, - "ca_la_ez_save": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "month", - "name": "ca_la_ez_save", - "label": "Los Angeles County EZ Save program", - "category": null, - "unit": null, - "moduleName": "gov.local.ca.la.dwp.ez_save.ca_la_ez_save", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "md_montgomery_eitc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "md_montgomery_eitc", - "label": "Montgomery County, Maryland EITC", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.local.md.montgomery.tax.income.credits.eitc.refundable.montgomery_refundable_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "fcc_fpg_ratio": { - "documentation": "SPM unit's ratio of IRS gross income to their federal poverty guideline", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "fcc_fpg_ratio", - "label": "Federal poverty ratio per FCC", - "category": null, - "unit": "/1", - "moduleName": "gov.fcc.fcc_fpg_ratio", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_acp_eligible": { - "documentation": "Eligible for Affordable Connectivity Program", - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_acp_eligible", - "label": "Eligible for Affordable Connectivity Program", - "category": null, - "unit": null, - "moduleName": "gov.fcc.acp.is_acp_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "acp": { - "documentation": "Affordable Connectivity Program amount", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "acp", - "label": "Affordable Connectivity Program", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.fcc.acp.acp", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "lifeline": { - "documentation": "Amount of Lifeline phone and broadband benefit", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "lifeline", - "label": "Lifeline", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.fcc.lifeline.lifeline", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "broadband_cost_after_lifeline": { - "documentation": "Broadband costs after Lifeline benefits", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "broadband_cost_after_lifeline", - "label": "Broadband costs after Lifeline", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.fcc.lifeline.broadband_cost_after_lifeline", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_lifeline_eligible": { - "documentation": "Eligible for Lifeline phone or broadband subsidy", - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_lifeline_eligible", - "label": "Eligible for Lifeline", - "category": null, - "unit": null, - "moduleName": "gov.fcc.lifeline.is_lifeline_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ebb": { - "documentation": "Emergency Broadband Benefit amount", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ebb", - "label": "Emergency Broadband Benefit amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.fcc.ebb.ebb", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_ebb_eligible": { - "documentation": "Eligible for Emergency Broadband Benefit", - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_ebb_eligible", - "label": "Eligible for Emergency Broadband Benefit", - "category": null, - "unit": null, - "moduleName": "gov.fcc.ebb.is_ebb_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "enrolled_in_ebb": { - "documentation": "Whether a SPM unit is already enrolled in the Emergency Broadband Benefit", - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "enrolled_in_ebb", - "label": "Enrolled for Emergency Broadband Benefit", - "category": null, - "unit": null, - "moduleName": "gov.fcc.ebb.enrolled_in_ebb", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pr_gross_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "pr_gross_income", - "label": "Puerto Rico gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.territories.pr.tax.income.pr_gross_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["pr_gross_income_person"], - "subtracts": null, - "hidden_input": false - }, - "pr_agi_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "pr_agi_person", - "label": "Puerto Rico adjusted gross income person level", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.territories.pr.tax.income.pr_agi_person", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pr_gross_income_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "pr_gross_income_person", - "label": "Puerto Rico gross income person", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.territories.pr.tax.income.pr_gross_income_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.territories.pr.tax.income.gross_income.sources", - "subtracts": null, - "hidden_input": false - }, - "pr_agi": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "pr_agi", - "label": "Puerto Rico adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.territories.pr.tax.income.pr_agi", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pr_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "pr_refundable_credits", - "label": "Puerto Rico refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.territories.pr.tax.income.credits.pr_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.territories.pr.tax.income.credits.refundable", - "subtracts": null, - "hidden_input": false - }, - "pr_low_income_credit_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "pr_low_income_credit_eligible", - "label": "Eligible unit for the Puerto Rico low income credit", - "category": null, - "unit": null, - "moduleName": "gov.territories.pr.tax.income.credits.low_income.pr_low_income_credit_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pr_low_income_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "pr_low_income_credit", - "label": "Puerto Rico low income credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.territories.pr.tax.income.credits.low_income.pr_low_income_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pr_low_income_credit_eligible_person": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "pr_low_income_credit_eligible_person", - "label": "Eligible person for the Puerto Rico low income credit", - "category": null, - "unit": null, - "moduleName": "gov.territories.pr.tax.income.credits.low_income.pr_low_income_credit_eligible_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pr_compensatory_low_income_credit": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "pr_compensatory_low_income_credit", - "label": "Additional compensatory low income credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.territories.pr.tax.income.credits.low_income.pr_compensatory_low_income_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pr_low_income_credit_eligible_people": { - "documentation": null, - "entity": "tax_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "pr_low_income_credit_eligible_people", - "label": "Eligible people for the Puerto Rico low income credit", - "category": null, - "unit": null, - "moduleName": "gov.territories.pr.tax.income.credits.low_income.pr_low_income_credit_eligible_people", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["pr_low_income_credit_eligible_person"], - "subtracts": null, - "hidden_input": false - }, - "pr_earned_income_credit_eligible_person": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "pr_earned_income_credit_eligible_person", - "label": "Puerto Rico earned income credit eligible person", - "category": null, - "unit": null, - "moduleName": "gov.territories.pr.tax.income.credits.earned_income.pr_earned_income_credit_eligible_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pr_earned_income_credit_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "pr_earned_income_credit_eligible", - "label": "Puerto Rico earned income credit eligible unit", - "category": null, - "unit": null, - "moduleName": "gov.territories.pr.tax.income.credits.earned_income.pr_earned_income_credit_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pr_earned_income_credit_unearned_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "pr_earned_income_credit_unearned_income", - "label": "Puerto Rico earned income credit unearned income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.territories.pr.tax.income.credits.earned_income.pr_earned_income_credit_unearned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.territories.pr.tax.income.credits.earned_income.unearned_income.sources", - "subtracts": null, - "hidden_input": false - }, - "pr_earned_income_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "pr_earned_income_credit", - "label": "Puerto Rico earned income credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.territories.pr.tax.income.credits.earned_income.pr_earned_income_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pr_charitable_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "pr_charitable_deduction", - "label": "Puerto Rico charitable deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.territories.pr.tax.income.taxable_income.deductions.pr_charitable_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pr_casualty_loss_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "pr_casualty_loss_deduction", - "label": "Puerto Rico casualty loss deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.territories.pr.tax.income.taxable_income.deductions.pr_casualty_loss_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pr_mortgage_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "pr_mortgage_deduction", - "label": "Puerto Rico home mortgage deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.territories.pr.tax.income.taxable_income.deductions.pr_mortgage_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pr_medical_expense_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "pr_medical_expense_deduction", - "label": "Puerto Rico medical expense deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.territories.pr.tax.income.taxable_income.deductions.pr_medical_expense_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pr_education_deduction_beneficiary_count": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "pr_education_deduction_beneficiary_count", - "label": "Puerto Rico education contribution deduction beneficiary count", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.territories.pr.tax.income.taxable_income.deductions.education.pr_education_deduction_beneficiary_count", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pr_education_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "pr_education_deduction", - "label": "Puerto Rico education contribution deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.territories.pr.tax.income.taxable_income.deductions.education.pr_education_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pr_retirement_deduction": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "pr_retirement_deduction", - "label": "Puerto Rico retirement contribution deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.territories.pr.tax.income.taxable_income.deductions.retirement.pr_retirement_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pr_retirement_deduction_eligibility": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "pr_retirement_deduction_eligibility", - "label": "Puerto Rico retirement contribution deduction eligibility", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.territories.pr.tax.income.taxable_income.deductions.retirement.pr_retirement_deduction_eligibility", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hud_max_subsidy": { - "documentation": "Max subsidy for HUD programs", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "hud_max_subsidy", - "label": "HUD max subsidy", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.hud.hud_max_subsidy", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ami": { - "documentation": "Area median income for a four-person household", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "ami", - "label": "Area median income", - "category": null, - "unit": null, - "moduleName": "gov.hud.ami", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hud_annual_income": { - "documentation": "Annual income for HUD programs", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "hud_annual_income", - "label": "HUD annual income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.hud.hud_annual_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["market_income", "social_security", "ssi", "tanf"], - "subtracts": null, - "hidden_input": false - }, - "is_hud_elderly_disabled_family": { - "documentation": "Whether an SPM unit is deemed elderly or disabled for HUD purposes", - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_hud_elderly_disabled_family", - "label": "HUD elderly or disabled family", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.hud.is_hud_elderly_disabled_family", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "housing_assistance": { - "documentation": "Housing assistance", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "housing_assistance", - "label": "Housing assistance", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.hud.housing_assistance", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["hud_hap"], - "subtracts": null, - "hidden_input": false - }, - "housing_designated_welfare": { - "documentation": "Housing designated welfare", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "housing_designated_welfare", - "label": "Housing designated welfare", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.hud.housing_designated_welfare", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_unit_income_ami_ratio": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "tax_unit_income_ami_ratio", - "label": "Ratio of tax unit income to area median income", - "category": null, - "unit": null, - "moduleName": "gov.hud.tax_unit_income_ami_ratio", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "household_income_ami_ratio": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "household_income_ami_ratio", - "label": "Ratio of household income to area median income", - "category": null, - "unit": null, - "moduleName": "gov.hud.household_income_ami_ratio", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "receives_housing_assistance": { - "documentation": "Currently receives housing assistance", - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "receives_housing_assistance", - "label": "Currently receives housing assistance", - "category": null, - "unit": null, - "moduleName": "gov.hud.receives_housing_assistance", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hud_income_level": { - "documentation": "Income level for HUD programs", - "entity": "spm_unit", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "hud_income_level", - "label": "HUD income level", - "category": null, - "unit": null, - "moduleName": "gov.hud.hud_income_level", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "ABOVE_MODERATE", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "ABOVE_MODERATE", - "label": "Above moderate" - }, - { - "value": "MODERATE", - "label": "Moderate" - }, - { - "value": "LOW", - "label": "Low" - }, - { - "value": "VERY_LOW", - "label": "Very low" - }, - { - "value": "ESPECIALLY_LOW", - "label": "Especially low" - } - ] - }, - "hud_adjusted_income": { - "documentation": "Adjusted income for HUD programs", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "hud_adjusted_income", - "label": "HUD adjusted income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.hud.hud_adjusted_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hud_gross_rent": { - "documentation": "Gross rent for HUD programs", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "hud_gross_rent", - "label": "HUD gross rent", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.hud.hud_gross_rent", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["pre_subsidy_rent", "hud_utility_allowance"], - "subtracts": null, - "hidden_input": false - }, - "is_eligible_for_housing_assistance": { - "documentation": "HUD housing assistance payment", - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_eligible_for_housing_assistance", - "label": "Is eligible for HUD voucher", - "category": null, - "unit": null, - "moduleName": "gov.hud.is_eligible_for_housing_assistance", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hud_hap": { - "documentation": "HUD housing assistance payment", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "hud_hap", - "label": "HUD housing assistance payment", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.hud.hud_hap", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hud_utility_allowance": { - "documentation": "Utility allowance for HUD programs", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "hud_utility_allowance", - "label": "HUD utility allowance", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.hud.hud_utility_allowance", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pha_payment_standard": { - "documentation": "Payment standard for HUD programs", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "pha_payment_standard", - "label": "HUD payment standard", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.hud.pha_payment_standard", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hud_minimum_rent": { - "documentation": "Minimum Rent for HUD programs", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "hud_minimum_rent", - "label": "HUD minimum rent", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.hud.hud_minimum_rent", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hud_ttp": { - "documentation": "Total Tenant Payment", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "hud_ttp", - "label": "HUD total tenant payment", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.hud.ttp.hud_ttp", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hud_ttp_adjusted_income_share": { - "documentation": "HUD adjusted income share for Total Tenant Payment", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "hud_ttp_adjusted_income_share", - "label": "HUD adjusted income share for total tenant payment", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.hud.ttp.hud_ttp_adjusted_income_share", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hud_ttp_income_share": { - "documentation": "HUD income share for Total Tenant Payment", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "hud_ttp_income_share", - "label": "HUD income share for total tenant payment", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.hud.ttp.hud_ttp_income_share", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hud_especially_low_income_factor": { - "documentation": "Especially Low income factor for HUD programs", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "hud_especially_low_income_factor", - "label": "HUD Especially Low income factor", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.hud.income_level_factor.hud_especially_low_income_factor", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hud_low_income_factor": { - "documentation": "Low income factor for HUD programs", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "hud_low_income_factor", - "label": "HUD Low income factor", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.hud.income_level_factor.hud_low_income_factor", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hud_very_low_income_factor": { - "documentation": "Very Low income factor for HUD programs", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "hud_very_low_income_factor", - "label": "HUD Very Low income factor", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.hud.income_level_factor.hud_very_low_income_factor", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hud_moderate_income_factor": { - "documentation": "Moderate income factor for HUD programs", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "hud_moderate_income_factor", - "label": "HUD Moderate income factor", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.hud.income_level_factor.hud_moderate_income_factor", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pell_grant_calculation_method": { - "documentation": null, - "entity": "tax_unit", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "pell_grant_calculation_method", - "label": "Pell Grant calculation method", - "category": null, - "unit": null, - "moduleName": "gov.ed.pell_grant.pell_grant_calculation_method", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "SAI", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "EFC", - "label": "efc" - }, - { - "value": "SAI", - "label": "sai" - } - ] - }, - "pell_grant_countable_assets": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "pell_grant_countable_assets", - "label": "Pell Grant countable assets", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.ed.pell_grant.pell_grant_countable_assets", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "cost_of_attending_college": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "cost_of_attending_college", - "label": "Pell Grant cost of attendance", - "category": null, - "unit": null, - "moduleName": "gov.ed.pell_grant.pell_grant_cost_of_attending_college", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pell_grant_formula": { - "documentation": null, - "entity": "person", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "pell_grant_formula", - "label": "Pell Grant formula", - "category": null, - "unit": null, - "moduleName": "gov.ed.pell_grant.pell_grant_formula", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "A", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "A", - "label": "A" - }, - { - "value": "B", - "label": "B" - }, - { - "value": "C", - "label": "C" - } - ] - }, - "pell_grant": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "pell_grant", - "label": "Pell Grant", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.ed.pell_grant.pell_grant", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pell_grant_months_in_school": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "pell_grant_months_in_school", - "label": "Pell Grant months of year student is in school", - "category": null, - "unit": null, - "moduleName": "gov.ed.pell_grant.pell_grant_months_in_school", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pell_grant_uses_sai": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "pell_grant_uses_sai", - "label": "Pell Grant uses the student aid index", - "category": null, - "unit": null, - "moduleName": "gov.ed.pell_grant.sai.pell_grant_uses_sai", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pell_grant_sai": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "pell_grant_sai", - "label": "Pell Grant student aid index", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.ed.pell_grant.sai.pell_grant_sai", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pell_grant_max_fpg_percent_limit": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "pell_grant_max_fpg_percent_limit", - "label": "The maximum FPG percent to qualify for the maximum Pell Grant", - "category": null, - "unit": "/1", - "moduleName": "gov.ed.pell_grant.sai.eligibility_type.pell_grant_max_fpg_limit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pell_grant_household_type": { - "documentation": null, - "entity": "person", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "pell_grant_household_type", - "label": "Pell Grant household type", - "category": null, - "unit": null, - "moduleName": "gov.ed.pell_grant.sai.eligibility_type.pell_grant_household_type", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "INDEPENDENT_SINGLE", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "DEPENDENT_SINGLE", - "label": "Dependent single" - }, - { - "value": "DEPENDENT_NOT_SINGLE", - "label": "Dependent not single" - }, - { - "value": "INDEPENDENT_SINGLE", - "label": "Independent single" - }, - { - "value": "INDEPENDENT_NOT_SINGLE", - "label": "Independent not single" - } - ] - }, - "pell_grant_min_fpg_percent_limit": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "pell_grant_min_fpg_percent_limit", - "label": "The maximum FPG percent to qualify for the minimum Pell Grant", - "category": null, - "unit": "/1", - "moduleName": "gov.ed.pell_grant.sai.eligibility_type.pell_grant_min_fpg_limit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pell_grant_eligibility_type": { - "documentation": null, - "entity": "person", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "pell_grant_eligibility_type", - "label": "Maximum, minimum, or ineligible for Pell Grant", - "category": null, - "unit": null, - "moduleName": "gov.ed.pell_grant.sai.eligibility_type.pell_grant_eligibility_type", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "INELIGIBLE", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "MAXIMUM", - "label": "maximum" - }, - { - "value": "MINIMUM", - "label": "minimum" - }, - { - "value": "INELIGIBLE", - "label": "ineligible" - } - ] - }, - "pell_grant_head_allowances": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "pell_grant_head_allowances", - "label": "Pell Grant head allowances", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.ed.pell_grant.head.pell_grant_head_allowances", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pell_grant_contribution_from_assets": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "pell_grant_contribution_from_assets", - "label": "Pell Grant head contribution from assets", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.ed.pell_grant.head.pell_grant_head_contribution_from_assets", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pell_grant_head_assets": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "pell_grant_head_assets", - "label": "Pell Grant head assets", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.ed.pell_grant.head.pell_grant_head_assets", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pell_grant_head_available_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "pell_grant_head_available_income", - "label": "Pell Grant head available income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.ed.pell_grant.head.pell_grant_head_available_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pell_grant_head_contribution": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "pell_grant_head_contribution", - "label": "Pell Grant head contribution", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.ed.pell_grant.head.pell_grant_head_contribution", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pell_grant_primary_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "pell_grant_primary_income", - "label": "Pell Grant head income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.ed.pell_grant.head.pell_grant_head_income", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pell_grant_dependent_other_allowances": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "pell_grant_dependent_other_allowances", - "label": "Pell Grant dependent other allowances", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.ed.pell_grant.dependent.pell_grant_dependent_other_allowances", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pell_grant_dependent_available_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "pell_grant_dependent_available_income", - "label": "Pell Grant dependent available income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.ed.pell_grant.dependent.pell_grant_dependent_available_income", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pell_grant_dependent_contribution": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "pell_grant_dependent_contribution", - "label": "Pell Grant dependent contribution", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.ed.pell_grant.dependent.pell_grant_dependent_contribution", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pell_grant_dependent_allowances": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "pell_grant_dependent_allowances", - "label": "Pell Grant dependent allowances", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.ed.pell_grant.dependent.pell_grant_dependent_allowances", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pell_grant_uses_efc": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "pell_grant_uses_efc", - "label": "Pell Grant uses the expected family contribution", - "category": null, - "unit": null, - "moduleName": "gov.ed.pell_grant.efc.pell_grant_uses_efc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pell_grant_efc": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "pell_grant_efc", - "label": "Pell Grant expected family contribution", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.ed.pell_grant.efc.pell_grant_efc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pell_grant_simplified_formula_applies": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "pell_grant_simplified_formula_applies", - "label": "Use Pell Grant simplified formula", - "category": null, - "unit": null, - "moduleName": "gov.ed.pell_grant.efc.pell_grant_simplified_formula_applies", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pell_grant_dependents_in_college": { - "documentation": null, - "entity": "tax_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "pell_grant_dependents_in_college", - "label": "Pell Grant dependents in college", - "category": null, - "unit": null, - "moduleName": "gov.ed.pell_grant.efc.pell_grant_dependents_in_college", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "has_usda_elderly_disabled": { - "documentation": "Whether the SPM unit has a person who meets USDA definitions of elderly or disabled", - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "has_usda_elderly_disabled", - "label": "Has USDA elderly or disabled people", - "category": null, - "unit": null, - "moduleName": "gov.usda.has_usda_elderly_disabled", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "has_all_usda_elderly_disabled": { - "documentation": "Whether the SPM unit's members all meet USDA definitions of elderly or disabled", - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "has_all_usda_elderly_disabled", - "label": "Has all USDA elderly or disabled people", - "category": null, - "unit": null, - "moduleName": "gov.usda.has_all_usda_elderly_disabled", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_usda_elderly": { - "documentation": "Is elderly per USDA guidelines", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_usda_elderly", - "label": "USDA elderly", - "category": null, - "unit": null, - "moduleName": "gov.usda.is_usda_elderly", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_usda_disabled": { - "documentation": "Disabled according to USDA criteria", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_usda_disabled", - "label": "USDA disabled status", - "category": null, - "unit": null, - "moduleName": "gov.usda.is_usda_disabled", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "fdpir": { - "documentation": "Benefit value of the Food Distribution Program on Indian Reservations", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "fdpir", - "label": "Food Distribution Program on Indian Reservations", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.usda.fdpir.fdpir", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "commodity_supplemental_food_program_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "commodity_supplemental_food_program_eligible", - "label": "Commodity Supplemental Food Program eligible", - "category": null, - "unit": null, - "moduleName": "gov.usda.csfp.commodity_supplemental_food_program_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "commodity_supplemental_food_program": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "commodity_supplemental_food_program", - "label": "Commodity Supplemental Food Program", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.usda.csfp.commodity_supplemental_food_program", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["gov.usda.csfp.amount"], - "subtracts": null, - "hidden_input": false - }, - "receives_wic": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "month", - "name": "receives_wic", - "label": "Reported to receive WIC", - "category": null, - "unit": null, - "moduleName": "gov.usda.wic.receives_wic", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_wic_eligible": { - "documentation": "Is eligible for the Special Supplemental Nutrition Program for Women, Infants and Children (WIC)", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "month", - "name": "is_wic_eligible", - "label": "Is eligible for WIC", - "category": null, - "unit": null, - "moduleName": "gov.usda.wic.is_wic_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wic": { - "documentation": "Benefit value for the Special Supplemental Nutrition Program for Women, Infants and Children (WIC)", - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "wic", - "label": "WIC", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.usda.wic.wic", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "meets_wic_income_test": { - "documentation": "Meets income test for the Special Supplemental Nutrition Program for Women, Infants and Children (WIC)", - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "meets_wic_income_test", - "label": "Meets WIC income test", - "category": null, - "unit": null, - "moduleName": "gov.usda.wic.meets_wic_income_test", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_wic_at_nutritional_risk": { - "documentation": "Assessed as being at nutritional risk for the Special Supplemental Nutrition Program for Women, Infants and Children (WIC)", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "month", - "name": "is_wic_at_nutritional_risk", - "label": "At nutritional risk for WIC", - "category": null, - "unit": null, - "moduleName": "gov.usda.wic.is_wic_at_nutritional_risk", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wic_fpg": { - "documentation": "Federal poverty guideline for WIC, with family size incremented by one for pregnant women", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "wic_fpg", - "label": "Pregnancy-adjusted poverty line for WIC", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.usda.wic.wic_fpg", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wic_category": { - "documentation": "Demographic category for the Special Supplemental Nutrition Program for Women, Infants and Children (WIC)", - "entity": "person", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "wic_category", - "label": "WIC demographic category", - "category": null, - "unit": null, - "moduleName": "gov.usda.wic.wic_category", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "NONE", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "PREGNANT", - "label": "Pregnant" - }, - { - "value": "POSTPARTUM", - "label": "Postpartum" - }, - { - "value": "BREASTFEEDING", - "label": "Breastfeeding" - }, - { - "value": "INFANT", - "label": "Infant" - }, - { - "value": "CHILD", - "label": "Child" - }, - { - "value": "NONE", - "label": "None" - } - ] - }, - "meets_wic_categorical_eligibility": { - "documentation": "Meets the program participation eligibility criteria for WIC", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "month", - "name": "meets_wic_categorical_eligibility", - "label": "Meets WIC categorical (program participation) eligibility", - "category": null, - "unit": null, - "moduleName": "gov.usda.wic.meets_wic_categorical_eligibility", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "would_claim_wic": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "month", - "name": "would_claim_wic", - "label": "Would claim WIC", - "category": null, - "unit": null, - "moduleName": "gov.usda.wic.would_claim_wic", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wic_category_str": { - "documentation": "WIC category variable, stored as a string", - "entity": "person", - "valueType": "str", - "definitionPeriod": "year", - "name": "wic_category_str", - "label": "WIC category (string)", - "category": null, - "unit": null, - "moduleName": "gov.usda.wic.wic_category_str", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": null, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "school_meal_daily_subsidy": { - "documentation": "Value of school meal subsidies per child per day", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "school_meal_daily_subsidy", - "label": "School meal subsidies per child per day", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.usda.school_meals.school_meal_daily_subsidy", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "free_school_meals": { - "documentation": "Value of free school meals.", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "free_school_meals", - "label": "free school meals", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.usda.school_meals.free_school_meals", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "meets_school_meal_categorical_eligibility": { - "documentation": "Whether this SPM unit is eligible for free school meal via participation in other programs", - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "meets_school_meal_categorical_eligibility", - "label": "School meal categorical eligibility", - "category": null, - "unit": null, - "moduleName": "gov.usda.school_meals.meets_school_meal_categorical_eligibility", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": "gov.usda.school_meals.categorical_eligibility", - "subtracts": null, - "hidden_input": false - }, - "free_school_meals_reported": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "free_school_meals_reported", - "label": "Free school meals (reported)", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.usda.school_meals.free_school_meals_reported", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "school_meal_tier": { - "documentation": "SPM unit's school meal program tier", - "entity": "spm_unit", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "school_meal_tier", - "label": "School meal tier", - "category": null, - "unit": null, - "moduleName": "gov.usda.school_meals.school_meal_tier", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "PAID", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "FREE", - "label": "Free" - }, - { - "value": "REDUCED", - "label": "Reduced price" - }, - { - "value": "PAID", - "label": "Paid" - } - ] - }, - "school_meal_net_subsidy": { - "documentation": "Value of free and reduced price school meal subsidies", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "school_meal_net_subsidy", - "label": "Free and reduced price school meals", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.usda.school_meals.school_meal_net_subsidy", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "school_meal_fpg_ratio": { - "documentation": "SPM unit's federal poverty ratio for school meal program", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "school_meal_fpg_ratio", - "label": "School meal FPG ratio", - "category": null, - "unit": "/1", - "moduleName": "gov.usda.school_meals.school_meal_fpg_ratio", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "reduced_price_school_meals": { - "documentation": "Value of reduced price school meals.", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "reduced_price_school_meals", - "label": "reduced price school meals", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.usda.school_meals.reduced_price_school_meals", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "school_meal_paid_daily_subsidy": { - "documentation": "Value of school meal subsidies paid to full-price children per day in household's state", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "school_meal_paid_daily_subsidy", - "label": "School meal subsidies per full-price child per day", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.usda.school_meals.school_meal_paid_daily_subsidy", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "school_meal_countable_income": { - "documentation": "SPM unit's countable income for school meal program", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "school_meal_countable_income", - "label": "Countable income for school meals", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.usda.school_meals.school_meal_countable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.usda.school_meals.income.sources", - "subtracts": null, - "hidden_input": false - }, - "snap_reported": { - "documentation": "Reported value of SNAP.", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "snap_reported", - "label": "SNAP (reported amount)", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.usda.snap.snap_reported", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "snap_utility_region_str": { - "documentation": null, - "entity": "household", - "valueType": "str", - "definitionPeriod": "year", - "name": "snap_utility_region_str", - "label": "SNAP utility region", - "category": null, - "unit": null, - "moduleName": "gov.usda.snap.snap_utility_region_str", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": null, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "snap": { - "documentation": "Final SNAP benefit amount, equal to net income minus food contribution", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "snap", - "label": "SNAP allotment", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.usda.snap.snap", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "snap_normal_allotment": { - "documentation": "Normal SNAP benefit amount, equal to net income minus food contribution", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "snap_normal_allotment", - "label": "SNAP normal allotment", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.usda.snap.snap_normal_allotment", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "snap_utility_region": { - "documentation": "Region deciding the SNAP utility allowances.", - "entity": "household", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "snap_utility_region", - "label": "SNAP utility region", - "category": null, - "unit": null, - "moduleName": "gov.usda.snap.snap_utility_region", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "CA", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "AL", - "label": "AL" - }, - { - "value": "AK", - "label": "AK" - }, - { - "value": "AZ", - "label": "AZ" - }, - { - "value": "AR", - "label": "AR" - }, - { - "value": "CA", - "label": "CA" - }, - { - "value": "CO", - "label": "CO" - }, - { - "value": "CT", - "label": "CT" - }, - { - "value": "DE", - "label": "DE" - }, - { - "value": "FL", - "label": "FL" - }, - { - "value": "GA", - "label": "GA" - }, - { - "value": "HI", - "label": "HI" - }, - { - "value": "ID", - "label": "ID" - }, - { - "value": "IL", - "label": "IL" - }, - { - "value": "IN", - "label": "IN" - }, - { - "value": "IA", - "label": "IA" - }, - { - "value": "KS", - "label": "KS" - }, - { - "value": "KY", - "label": "KY" - }, - { - "value": "LA", - "label": "LA" - }, - { - "value": "ME", - "label": "ME" - }, - { - "value": "MD", - "label": "MD" - }, - { - "value": "MA", - "label": "MA" - }, - { - "value": "MI", - "label": "MI" - }, - { - "value": "MN", - "label": "MN" - }, - { - "value": "MS", - "label": "MS" - }, - { - "value": "MO", - "label": "MO" - }, - { - "value": "MT", - "label": "MT" - }, - { - "value": "NE", - "label": "NE" - }, - { - "value": "NV", - "label": "NV" - }, - { - "value": "NH", - "label": "NH" - }, - { - "value": "NJ", - "label": "NJ" - }, - { - "value": "NM", - "label": "NM" - }, - { - "value": "NY", - "label": "NY" - }, - { - "value": "NC", - "label": "NC" - }, - { - "value": "ND", - "label": "ND" - }, - { - "value": "OH", - "label": "OH" - }, - { - "value": "OK", - "label": "OK" - }, - { - "value": "OR", - "label": "OR" - }, - { - "value": "PA", - "label": "PA" - }, - { - "value": "RI", - "label": "RI" - }, - { - "value": "SC", - "label": "SC" - }, - { - "value": "SD", - "label": "SD" - }, - { - "value": "TN", - "label": "TN" - }, - { - "value": "TX", - "label": "TX" - }, - { - "value": "UT", - "label": "UT" - }, - { - "value": "VT", - "label": "VT" - }, - { - "value": "VA", - "label": "VA" - }, - { - "value": "WA", - "label": "WA" - }, - { - "value": "WV", - "label": "WV" - }, - { - "value": "WI", - "label": "WI" - }, - { - "value": "WY", - "label": "WY" - }, - { - "value": "DC", - "label": "DC" - }, - { - "value": "GU", - "label": "GU" - }, - { - "value": "MP", - "label": "MP" - }, - { - "value": "PW", - "label": "PW" - }, - { - "value": "PR", - "label": "PR" - }, - { - "value": "VI", - "label": "VI" - }, - { - "value": "AA", - "label": "AA" - }, - { - "value": "AE", - "label": "AE" - }, - { - "value": "AP", - "label": "AP" - } - ] - }, - "snap_take_up_seed": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "snap_take_up_seed", - "label": "Randomly assigned seed for SNAP take-up", - "category": null, - "unit": null, - "moduleName": "gov.usda.snap.snap_take_up_seed", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "snap_expected_contribution": { - "documentation": "Expected food contribution from SNAP net income", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "snap_expected_contribution", - "label": "SNAP expected food contribution", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.usda.snap.snap_expected_contribution", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "snap_min_allotment": { - "documentation": "Minimum allotment for SNAP based on household size and state", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "snap_min_allotment", - "label": "SNAP minimum allotment", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.usda.snap.snap_min_allotment", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "snap_region_str": { - "documentation": null, - "entity": "household", - "valueType": "str", - "definitionPeriod": "year", - "name": "snap_region_str", - "label": "SNAP region", - "category": null, - "unit": null, - "moduleName": "gov.usda.snap.snap_region_str", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": null, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "snap_max_allotment": { - "documentation": "Maximum SNAP allotment for SPM unit, based on the state group and household size.", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "snap_max_allotment", - "label": "SNAP maximum allotment", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.usda.snap.snap_max_allotment", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "snap_unit_size": { - "documentation": null, - "entity": "spm_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "snap_unit_size", - "label": "SNAP unit", - "category": null, - "unit": null, - "moduleName": "gov.usda.snap.snap_unit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "snap_region": { - "documentation": null, - "entity": "household", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "snap_region", - "label": "SNAP region", - "category": null, - "unit": null, - "moduleName": "gov.usda.snap.snap_region", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "CONTIGUOUS_US", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "CONTIGUOUS_US", - "label": "Contiguous US" - }, - { - "value": "AK_URBAN", - "label": "Alaska (urban)" - }, - { - "value": "AK_RURAL_1", - "label": "Alaska (rural 1)" - }, - { - "value": "AK_RURAL_2", - "label": "Alaska (rural 2)" - }, - { - "value": "GU", - "label": "Guam" - }, - { - "value": "HI", - "label": "Hawaii" - }, - { - "value": "VI", - "label": "Virgin Islands" - } - ] - }, - "snap_emergency_allotment": { - "documentation": "SNAP emergency allotment", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "snap_emergency_allotment", - "label": "SNAP emergency allotment", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.usda.snap.snap_emergency_allotment", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "takes_up_snap_if_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "takes_up_snap_if_eligible", - "label": "Whether a random eligible SPM unit does not claim SNAP", - "category": null, - "unit": null, - "moduleName": "gov.usda.snap.takes_up_snap_if_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "snap_fpg": { - "documentation": "The federal poverty guideline used to determine SNAP eligibility.", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "snap_fpg", - "label": "SNAP federal poverty guideline", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.usda.snap.income.snap_fpg", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "snap_excluded_child_earner": { - "documentation": "Whether this person is a child whose earned income is excluded from SNAP ", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "month", - "name": "snap_excluded_child_earner", - "label": "Excluded child earner", - "category": null, - "unit": null, - "moduleName": "gov.usda.snap.income.snap_excluded_child_earner", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "snap_countable_earner": { - "documentation": "Whether this person's earned income is counted for SNAP", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "month", - "name": "snap_countable_earner", - "label": "Countable income earner", - "category": null, - "unit": null, - "moduleName": "gov.usda.snap.income.snap_countable_earner", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "snap_net_income": { - "documentation": "Final net income, after all deductions", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "snap_net_income", - "label": "SNAP net income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.usda.snap.income.snap_net_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "snap_unearned_income": { - "documentation": "Unearned income for calculating the SNAP benefit", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "snap_unearned_income", - "label": "SNAP unearned income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.usda.snap.income.snap_unearned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.usda.snap.income.sources.unearned", - "subtracts": null, - "hidden_input": false - }, - "snap_net_income_fpg_ratio": { - "documentation": "SNAP net income as a percentage of the federal poverty line", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "snap_net_income_fpg_ratio", - "label": "SNAP net income to FPL ratio", - "category": null, - "unit": "/1", - "moduleName": "gov.usda.snap.income.snap_net_income_fpg_ratio", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "snap_earned_income": { - "documentation": "Earned income for calculating the SNAP earned income deduction", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "snap_earned_income", - "label": "SNAP earned income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.usda.snap.income.snap_earned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["snap_earned_income_person"], - "subtracts": null, - "hidden_input": false - }, - "snap_earned_income_person": { - "documentation": "Earned income per person for calculating the SNAP earned income deduction", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "snap_earned_income_person", - "label": "SNAP earned income person", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.usda.snap.income.snap_earned_income_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.usda.snap.income.sources.earned", - "subtracts": null, - "hidden_input": false - }, - "snap_gross_income": { - "documentation": "Gross income for calculating SNAP eligibility", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "snap_gross_income", - "label": "SNAP gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.usda.snap.income.gross.snap_gross_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["snap_earned_income", "snap_unearned_income"], - "subtracts": ["snap_child_support_gross_income_deduction"], - "hidden_input": false - }, - "snap_gross_income_fpg_ratio": { - "documentation": "SNAP gross income as a percentage of the federal poverty line", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "snap_gross_income_fpg_ratio", - "label": "SNAP gross income to FPL ratio", - "category": null, - "unit": "/1", - "moduleName": "gov.usda.snap.income.gross.snap_gross_income_fpg_ratio", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "snap_child_support_gross_income_deduction": { - "documentation": "Deduction for child support payments when computing SNAP gross income", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "snap_child_support_gross_income_deduction", - "label": "SNAP child support payment deduction from gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.usda.snap.income.gross.snap_child_support_gross_income_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "snap_earned_income_deduction": { - "documentation": "Earned income deduction for calculating SNAP benefit amount", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "snap_earned_income_deduction", - "label": "SNAP earned income deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.usda.snap.income.deductions.snap_earned_income_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "snap_dependent_care_deduction": { - "documentation": "Deduction from SNAP gross income for dependent care", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "snap_dependent_care_deduction", - "label": "SNAP dependent care deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.usda.snap.income.deductions.snap_dependent_care_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["childcare_expenses"], - "subtracts": null, - "hidden_input": false - }, - "snap_child_support_deduction": { - "documentation": "Deduction from SNAP gross income for child support payments", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "snap_child_support_deduction", - "label": "SNAP child support payment deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.usda.snap.income.deductions.snap_child_support_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "snap_excess_medical_expense_deduction": { - "documentation": "Deduction from SNAP gross income for excess medical expenses", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "snap_excess_medical_expense_deduction", - "label": "SNAP excess medical expense deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.usda.snap.income.deductions.snap_excess_medical_expense_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "snap_standard_deduction": { - "documentation": "Standard deduction for calculating SNAP benefit amount", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "snap_standard_deduction", - "label": "SNAP standard deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.usda.snap.income.deductions.snap_standard_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "snap_deductions": { - "documentation": "Deductions made from gross income for SNAP benefits", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "snap_deductions", - "label": "SNAP income deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.usda.snap.income.deductions.snap_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.usda.snap.income.deductions.allowed", - "subtracts": null, - "hidden_input": false - }, - "snap_self_employment_income_after_expense_deduction": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "snap_self_employment_income_after_expense_deduction", - "label": "Self-employment income after the SNAP self-employment expense deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.usda.snap.income.deductions.self_employment.snap_self_employment_income_after_expense_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "snap_self_employment_income_expense": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "snap_self_employment_income_expense", - "label": "All self-employment income expenses for the SNAP self-employment deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.usda.snap.income.deductions.self_employment.snap_self_employment_income_expense", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "snap_self_employment_expense_deduction": { - "documentation": "Self-employment income deduction for calculating SNAP benefit amount", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "snap_self_employment_expense_deduction", - "label": "SNAP self-employment expense deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.usda.snap.income.deductions.self_employment.snap_self_employment_expense_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "snap_utility_allowance_type": { - "documentation": "The type of utility allowance that is eligible for the SPM unit", - "entity": "spm_unit", - "valueType": "Enum", - "definitionPeriod": "month", - "name": "snap_utility_allowance_type", - "label": "SNAP utility allowance eligibility", - "category": null, - "unit": null, - "moduleName": "gov.usda.snap.income.deductions.shelter.snap_utility_allowance_type", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "NONE", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "SUA", - "label": "Standard Utility Allowance" - }, - { - "value": "LUA", - "label": "Limited Utility Allowance" - }, - { - "value": "IUA", - "label": "Individual Utility Allowance" - }, - { - "value": "NONE", - "label": "None" - } - ] - }, - "snap_excess_shelter_expense_deduction": { - "documentation": "Excess shelter expense deduction for calculating SNAP benefit amount", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "snap_excess_shelter_expense_deduction", - "label": "SNAP shelter deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.usda.snap.income.deductions.shelter.snap_excess_shelter_expense_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "snap_standard_utility_allowance": { - "documentation": "The standard utility allowance deduction for SNAP", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "snap_standard_utility_allowance", - "label": "SNAP Standard Utility Allowance", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.usda.snap.income.deductions.shelter.snap_standard_utility_allowance", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "snap_limited_utility_allowance_by_household_size": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "snap_limited_utility_allowance_by_household_size", - "label": "SNAP Limited Utility Allowance by household size", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.usda.snap.income.deductions.shelter.snap_limited_utility_allowance_by_household_size", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "snap_individual_utility_allowance": { - "documentation": "The individual utility allowance deduction for SNAP", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "snap_individual_utility_allowance", - "label": "SNAP Individual Utility Allowance", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.usda.snap.income.deductions.shelter.snap_individual_utility_allowance", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "snap_state_using_standard_utility_allowance": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "snap_state_using_standard_utility_allowance", - "label": "Whether a state always uses the standard utility allowance", - "category": null, - "unit": null, - "moduleName": "gov.usda.snap.income.deductions.shelter.snap_state_using_standard_utility_allowance", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "snap_standard_utility_allowance_by_household_size": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "snap_standard_utility_allowance_by_household_size", - "label": "SNAP Standard Utility Allowance by household size", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.usda.snap.income.deductions.shelter.snap_standard_utility_allowance_by_household_size", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "snap_limited_utility_allowance": { - "documentation": "The limited utility allowance deduction for SNAP", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "snap_limited_utility_allowance", - "label": "SNAP Limited Utility Allowance", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.usda.snap.income.deductions.shelter.snap_limited_utility_allowance", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "snap_utility_allowance": { - "documentation": "The regular utility allowance deduction for SNAP", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "snap_utility_allowance", - "label": "Standard Utility Allowance", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.usda.snap.income.deductions.shelter.snap_utility_allowance", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "snap_standard_utility_allowance", - "snap_limited_utility_allowance", - "snap_individual_utility_allowance" - ], - "subtracts": null, - "hidden_input": false - }, - "snap_net_income_pre_shelter": { - "documentation": "SNAP net income before the shelter deduction, needed as intermediate to calculate shelter deduction", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "snap_net_income_pre_shelter", - "label": "SNAP net income (pre-shelter)", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.usda.snap.income.deductions.shelter.snap_net_income_pre_shelter", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "meets_snap_gross_income_test": { - "documentation": "Whether this SPM unit meets the SNAP gross income test", - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "meets_snap_gross_income_test", - "label": "Meets SNAP gross income test", - "category": null, - "unit": null, - "moduleName": "gov.usda.snap.eligibility.meets_snap_gross_income_test", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "meets_snap_net_income_test": { - "documentation": "Whether this SPM unit meets the SNAP net income test", - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "meets_snap_net_income_test", - "label": "Meets SNAP net income test", - "category": null, - "unit": null, - "moduleName": "gov.usda.snap.eligibility.meets_snap_net_income_test", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "meets_snap_asset_test": { - "documentation": "Whether the SPM unit's financial resources are within SNAP's allowable limit", - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "meets_snap_asset_test", - "label": "Meets SNAP asset test", - "category": null, - "unit": null, - "moduleName": "gov.usda.snap.eligibility.meets_snap_asset_test", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "snap_assets": { - "documentation": "Countable assets for SNAP limits", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "snap_assets", - "label": "SNAP assets", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.usda.snap.eligibility.snap_assets", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_snap_eligible": { - "documentation": "Whether this SPM unit is eligible for SNAP benefits", - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "is_snap_eligible", - "label": "SNAP eligible", - "category": null, - "unit": null, - "moduleName": "gov.usda.snap.eligibility.is_snap_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "meets_snap_categorical_eligibility": { - "documentation": "Whether this SPM unit is eligible for SNAP benefits via participation in other programs", - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "meets_snap_categorical_eligibility", - "label": "SNAP categorical eligibility", - "category": null, - "unit": null, - "moduleName": "gov.usda.snap.eligibility.meets_snap_categorical_eligibility", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "meets_snap_general_work_requirements": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "month", - "name": "meets_snap_general_work_requirements", - "label": "Person is eligible for SNAP benefits via general work requirements", - "category": null, - "unit": null, - "moduleName": "gov.usda.snap.eligibility.work_requirements.meets_snap_general_work_requirements", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "meets_snap_abawd_work_requirements": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "month", - "name": "meets_snap_abawd_work_requirements", - "label": "Person is eligible for SNAP benefits via Able-Bodied Adult Without Dependents (ABAWD) work requirements", - "category": null, - "unit": null, - "moduleName": "gov.usda.snap.eligibility.work_requirements.meets_snap_abawd_work_requirements", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "meets_snap_work_requirements": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "meets_snap_work_requirements", - "label": "SPM Unit is eligible for SNAP benefits via work requirements", - "category": null, - "unit": null, - "moduleName": "gov.usda.snap.eligibility.work_requirements.meets_snap_work_requirements", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_snap_ineligible_student": { - "documentation": "Whether this person is an ineligible student for SNAP and can not be counted towards the household size", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_snap_ineligible_student", - "label": "Is an ineligible student for SNAP", - "category": null, - "unit": null, - "moduleName": "gov.usda.snap.eligibility.student.is_snap_ineligible_student", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "state_filing_status_if_married_filing_separately_on_same_return": { - "documentation": null, - "entity": "tax_unit", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "state_filing_status_if_married_filing_separately_on_same_return", - "label": "State filing status for the tax unit if married couple file separately on same return", - "category": null, - "unit": null, - "moduleName": "gov.states.state_filing_status_if_married_filing_separately_on_same_return", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "SINGLE", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "SINGLE", - "label": "Single" - }, - { - "value": "SEPARATE", - "label": "Separate" - }, - { - "value": "HEAD_OF_HOUSEHOLD", - "label": "Head of household" - }, - { - "value": "SURVIVING_SPOUSE", - "label": "Surviving spouse" - } - ] - }, - "unemployment_compensation": { - "documentation": "Income from unemployment compensation programs.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "unemployment_compensation", - "label": "unemployment compensation", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.unemployment_compensation", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "workers_compensation": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "workers_compensation", - "label": "worker's compensation", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.workers_compensation", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "general_assistance": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "general_assistance", - "label": "general assistance", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.general_assistance", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nd_income_tax_before_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nd_income_tax_before_refundable_credits", - "label": "North Dakota income tax before refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nd.tax.income.nd_income_tax_before_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nd_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nd_income_tax", - "label": "North Dakota income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nd.tax.income.nd_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["nd_income_tax_before_refundable_credits"], - "subtracts": ["nd_refundable_credits"], - "hidden_input": false - }, - "nd_withheld_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "nd_withheld_income_tax", - "label": "North Dakota withheld income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nd.tax.income.nd_withheld_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nd_taxable_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nd_taxable_income", - "label": "North Dakota taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nd.tax.income.nd_taxable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nd_income_tax_before_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nd_income_tax_before_credits", - "label": "North Dakota income tax before credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nd.tax.income.nd_income_tax_before_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nd_nonrefundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nd_nonrefundable_credits", - "label": "North Dakota nonrefundable income tax credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nd.tax.income.nd_nonrefundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.nd.tax.income.credits.nonrefundable", - "subtracts": null, - "hidden_input": false - }, - "nd_additions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nd_additions", - "label": "North Dakota additions to federal taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nd.tax.income.nd_additions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.nd.tax.income.taxable_income.additions.sources", - "subtracts": null, - "hidden_input": false - }, - "nd_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nd_refundable_credits", - "label": "North Dakota refundable income tax credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nd.tax.income.nd_refundable_credits", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nd_mpc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nd_mpc", - "label": "North Dakota marriage-penalty nonrefundable credit amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nd.tax.income.credits.nd_mpc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nd_rtrc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nd_rtrc", - "label": "North Dakota resident-tax-relief nonrefundable credit amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nd.tax.income.credits.nd_rtrc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nd_subtractions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nd_subtractions", - "label": "North Dakota subtractions from federal taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nd.tax.income.subtractions.nd_subtractions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.nd.tax.income.taxable_income.subtractions.sources", - "subtracts": null, - "hidden_input": false - }, - "nd_qdiv_subtraction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nd_qdiv_subtraction", - "label": "North Dakota qualified dividends subtraction from federal taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nd.tax.income.subtractions.nd_qdiv_subtraction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nd_ltcg_subtraction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nd_ltcg_subtraction", - "label": "North Dakota long-term capital gains subtraction from federal taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nd.tax.income.subtractions.nd_ltcg_subtraction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_child_care_subsidies": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_child_care_subsidies", - "label": "Colorado child care subsidies", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.co_child_care_subsidies", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["co_ccap_subsidy"], - "subtracts": null, - "hidden_input": false - }, - "co_state_supplement": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_state_supplement", - "label": "Colorado State Supplement", - "category": null, - "unit": null, - "moduleName": "gov.states.co.ssa.state_suplement.co_state_supplement", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_state_supplement_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "co_state_supplement_eligible", - "label": "Colorado State Supplement Eligible", - "category": null, - "unit": null, - "moduleName": "gov.states.co.ssa.state_suplement.co_state_supplement_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_oap_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "co_oap_eligible", - "label": "Colorado Old Age Pension Eligible", - "category": null, - "unit": null, - "moduleName": "gov.states.co.ssa.oap.co_oap_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_oap": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_oap", - "label": "Colorado Old Age Pension", - "category": null, - "unit": null, - "moduleName": "gov.states.co.ssa.oap.co_oap", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_tanf_income_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "co_tanf_income_eligible", - "label": "Colorado TANF income eligible", - "category": null, - "unit": null, - "moduleName": "gov.states.co.cdhs.tanf.co_tanf_income_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_tanf": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_tanf", - "label": "Colorado TANF", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.cdhs.tanf.co_tanf", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_tanf_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "co_tanf_eligible", - "label": "Colorado TANF eligible", - "category": null, - "unit": null, - "moduleName": "gov.states.co.cdhs.tanf.co_tanf_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_tanf_need_standard": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_tanf_need_standard", - "label": "Colorado TANF need standard", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.cdhs.tanf.co_tanf_need_standard", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_tanf_count_children": { - "documentation": null, - "entity": "spm_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "co_tanf_count_children", - "label": "Colorado TANF number of children", - "category": null, - "unit": null, - "moduleName": "gov.states.co.cdhs.tanf.co_tanf_count_children", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["is_child", "is_pregnant"], - "subtracts": null, - "hidden_input": false - }, - "co_tanf_grant_standard": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_tanf_grant_standard", - "label": "Colorado TANF grant standard", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.cdhs.tanf.co_tanf_grant_standard", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_tanf_countable_gross_unearned_income": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_tanf_countable_gross_unearned_income", - "label": "Colorado TANF countable gross unearned income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.cdhs.tanf.income.co_tanf_countable_gross_unearned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_tanf_countable_earned_income_need": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_tanf_countable_earned_income_need", - "label": "Colorado TANF total countable income for need determination", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.cdhs.tanf.income.co_tanf_countable_earned_income_need", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_tanf_countable_earned_income_grant_standard": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_tanf_countable_earned_income_grant_standard", - "label": "Colorado TANF total countable earned income for grant standard", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.cdhs.tanf.income.co_tanf_countable_earned_income_grant_standard", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_tanf_countable_gross_earned_income": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_tanf_countable_gross_earned_income", - "label": "Colorado TANF countable gross earned income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.cdhs.tanf.income.co_tanf_countable_gross_earned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.co.cdhs.tanf.income.earned", - "subtracts": null, - "hidden_input": false - }, - "co_chp_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "co_chp_eligible", - "label": "Colorado Child Health Plan Plus eligibility", - "category": null, - "unit": null, - "moduleName": "gov.states.co.hcpf.chp.co_chp_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_chp": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_chp", - "label": "Colorado Child Health Plan Plus expense savings", - "category": null, - "unit": null, - "moduleName": "gov.states.co.hcpf.chp.co_chp", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_chp_out_of_pocket_maximum": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_chp_out_of_pocket_maximum", - "label": "Colorado Child Health Plan Plus out of pocket maximum", - "category": null, - "unit": null, - "moduleName": "gov.states.co.hcpf.chp.co_chp_out_of_pocket_maximum", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_income_tax_before_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_income_tax_before_refundable_credits", - "label": "Colorado income tax before refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.tax.income.co_income_tax_before_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_income_tax_before_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_income_tax_before_non_refundable_credits", - "label": "Colorado income tax before non-refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.tax.income.co_income_tax_before_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_refundable_credits", - "label": "Colorado refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.tax.income.co_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.co.tax.income.credits.refundable", - "subtracts": null, - "hidden_input": false - }, - "co_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_non_refundable_credits", - "label": "Colorado non-refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.tax.income.co_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_taxable_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_taxable_income", - "label": "Colorado taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.tax.income.co_taxable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_income_tax", - "label": "Colorado income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.tax.income.co_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["co_income_tax_before_refundable_credits"], - "subtracts": ["co_refundable_credits"], - "hidden_input": false - }, - "co_withheld_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_withheld_income_tax", - "label": "Colorado withheld income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.tax.income.co_withheld_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_eitc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_eitc", - "label": "Colorado EITC", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.tax.income.credits.eitc.co_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_sales_tax_refund_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "co_sales_tax_refund_eligible", - "label": "Eligible for the Colorado sales tax refund", - "category": null, - "unit": null, - "moduleName": "gov.states.co.tax.income.credits.sales_tax_refund.co_sales_tax_refund_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_sales_tax_refund": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_sales_tax_refund", - "label": "Colorado sales tax refund", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.tax.income.credits.sales_tax_refund.co_sales_tax_refund", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_modified_agi": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_modified_agi", - "label": "Colorado modified adjusted gross income for the sales tax refund", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.tax.income.credits.sales_tax_refund.co_modified_agi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.co.tax.income.credits.sales_tax_refund.magi_sources", - "subtracts": null, - "hidden_input": false - }, - "co_ctc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_ctc", - "label": "Colorado child tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.tax.income.credits.ctc.co_ctc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_ctc_eligible_child": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "co_ctc_eligible_child", - "label": "Colorado child tax credit eligible child", - "category": null, - "unit": null, - "moduleName": "gov.states.co.tax.income.credits.ctc.co_ctc_eligible_child", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": "gov.states.co.tax.income.credits.ctc.eligible_child", - "subtracts": null, - "hidden_input": false - }, - "co_ctc_eligible_children_count": { - "documentation": null, - "entity": "tax_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "co_ctc_eligible_children_count", - "label": "Colorado child tax credit eligible children count", - "category": null, - "unit": null, - "moduleName": "gov.states.co.tax.income.credits.ctc.co_ctc_eligible_children_count", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["co_ctc_eligible_child"], - "subtracts": null, - "hidden_input": false - }, - "co_refundable_ctc": { - "documentation": "Total value of the refundable portions of the Child Tax Credit.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_refundable_ctc", - "label": "Refundable Child Tax Credit replicated to include the Colorado limitations", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.tax.income.credits.ctc.federal_ctc.co_refundable_ctc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_non_refundable_ctc": { - "documentation": "Total value of the non-refundable portion of the Child Tax Credit.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_non_refundable_ctc", - "label": "Non-refundable Child Tax Credit replicated to include the Colorado limitations", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.tax.income.credits.ctc.federal_ctc.co_non_refundable_ctc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_federal_ctc_child_individual_maximum": { - "documentation": "The CTC entitlement in respect of this person as a child.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_federal_ctc_child_individual_maximum", - "label": "CTC maximum amount (child) replicated to account for the Colorado state CTC child eligibility", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.tax.income.credits.ctc.federal_ctc.co_federal_ctc_child_individual_maximum", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_federal_ctc_maximum": { - "documentation": "Maximum value of the Child Tax Credit, before phase-out.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_federal_ctc_maximum", - "label": "Maximum CTC replicated to include the Colorado limitations", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.tax.income.credits.ctc.federal_ctc.co_federal_ctc_maximum", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["co_federal_ctc_child_individual_maximum"], - "subtracts": null, - "hidden_input": false - }, - "co_federal_ctc": { - "documentation": "Total value of the non-refundable and refundable portion of the Child Tax Credit.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_federal_ctc", - "label": "Child Tax Credit replicated to include the Colorado limitations", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.tax.income.credits.ctc.federal_ctc.co_federal_ctc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["co_refundable_ctc", "co_non_refundable_ctc"], - "subtracts": null, - "hidden_input": false - }, - "co_low_income_cdcc_eligible": { - "documentation": "https://casetext.com/statute/colorado-revised-statutes/title-39-taxation/specific-taxes/income-tax/article-22-income-tax/part-1-general/section-39-22-1195-child-care-expenses-tax-credit-legislative-declaration-definitionshttps://tax.colorado.gov/sites/tax/files/documents/DR_104_Book_2022.pdf#page=46", - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "co_low_income_cdcc_eligible", - "label": "Eligible for the Colorado Low-income Child Care Expenses Credit", - "category": null, - "unit": null, - "moduleName": "gov.states.co.tax.income.credits.cdcc.co_low_income_cdcc_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_cdcc": { - "documentation": "https://advance.lexis.com/documentpage/?pdmfid=1000516&crid=d14880b7-7410-4295-bcf1-2e099e57d8f3&pdistocdocslideraccess=true&config=014FJAAyNGJkY2Y4Zi1mNjgyLTRkN2YtYmE4OS03NTYzNzYzOTg0OGEKAFBvZENhdGFsb2d592qv2Kywlf8caKqYROP5&pddocfullpath=%2Fshared%2Fdocument%2Fstatutes-legislation%2Furn%3AcontentItem%3A65HV-06G3-CGX8-050B-00008-00&pdcomponentid=234177&pdtocnodeidentifier=ABPAACAACAABAACABA&ecomp=k2vckkk&prid=e2e32763-f8fa-4832-8191-f70124d877f6https://tax.colorado.gov/sites/tax/files/documents/DR_104_Book_2022.pdf#page=46", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_cdcc", - "label": "Colorado Child Care Expenses Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.tax.income.credits.cdcc.co_cdcc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_low_income_cdcc": { - "documentation": "https://casetext.com/statute/colorado-revised-statutes/title-39-taxation/specific-taxes/income-tax/article-22-income-tax/part-1-general/section-39-22-1195-child-care-expenses-tax-credit-legislative-declaration-definitionshttps://tax.colorado.gov/sites/tax/files/documents/DR_104_Book_2022.pdf#page=46", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_low_income_cdcc", - "label": "Colorado Low-income Child Care Expenses Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.tax.income.credits.cdcc.co_low_income_cdcc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_family_affordability_credit": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_family_affordability_credit", - "label": "Colorado Family Affordability Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.tax.income.credits.family_affordability.co_family_affordability_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_income_qualified_senior_housing_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_income_qualified_senior_housing_credit", - "label": "Colorado Income Qualified Senior Housing Income Tax Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.tax.income.credits.income_qualified_senior_housing.co_income_qualified_senior_housing_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_income_qualified_senior_housing_credit_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "co_income_qualified_senior_housing_credit_eligible", - "label": "Eligible for Colorado Income Qualified Senior Housing Income Tax Credit", - "category": null, - "unit": null, - "moduleName": "gov.states.co.tax.income.credits.income_qualified_senior_housing.co_income_qualified_senior_housing_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_property_tax_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_property_tax_exemption", - "label": "Colorado property tax exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.tax.income.exemptions.co_property_tax_exemption", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_subtractions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_subtractions", - "label": "Colorado subtractions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.tax.income.subtractions.co_subtractions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.co.tax.income.subtractions.subtractions", - "subtracts": null, - "hidden_input": false - }, - "co_military_retirement_subtraction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_military_retirement_subtraction", - "label": "Colorado military retirement subtraction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.tax.income.subtractions.military_retirement.co_military_retirement_subtraction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_charitable_contribution_subtraction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_charitable_contribution_subtraction", - "label": "Colorado charitable contribution subtraction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.tax.income.subtractions.charitable_contribution.co_charitable_contribution_subtraction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_charitable_contribution_subtraction_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "co_charitable_contribution_subtraction_eligible", - "label": "Eligible for the Colorado charitable contribution subtraction", - "category": null, - "unit": null, - "moduleName": "gov.states.co.tax.income.subtractions.charitable_contribution.co_charitable_contribution_subtraction_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_collegeinvest_subtraction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_collegeinvest_subtraction", - "label": "Colorado collegeinvest subtraction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.tax.income.subtractions.collegeinvest_contribution.co_collegeinvest_subtraction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_able_contribution_subtraction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_able_contribution_subtraction", - "label": "Colorado able contribution subtraction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.tax.income.subtractions.able_contribution.co_able_contribution_subtraction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_pension_subtraction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_pension_subtraction", - "label": "Colorado pension and annuity subtraction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.tax.income.subtractions.pension.co_pension_subtraction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["co_pension_subtraction_indv", "co_social_security_subtraction_indv"], - "subtracts": null, - "hidden_input": false - }, - "co_social_security_subtraction_indv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_social_security_subtraction_indv", - "label": "Colorado social security subtraction for eligible individuals", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.tax.income.subtractions.pension.co_social_security_subtraction_indv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_pension_subtraction_indv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_pension_subtraction_indv", - "label": "Colorado pension and annuity subtraction for eligible individuals", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.tax.income.subtractions.pension.co_pension_subtraction_indv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_pension_subtraction_indv_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "co_pension_subtraction_indv_eligible", - "label": "Eligible for the Colorado pension and annuity subtraction for eligible individuals", - "category": null, - "unit": null, - "moduleName": "gov.states.co.tax.income.subtractions.pension.co_pension_subtraction_indv_eligible.", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_social_security_subtraction_indv_eligible": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_social_security_subtraction_indv_eligible", - "label": "Eligible for the Colorado social security subtraction for eligible individuals", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.tax.income.subtractions.pension.co_social_security_subtraction_indv_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_pension_subtraction_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_pension_subtraction_income", - "label": "Income for the Colorado pension and annuity subtraction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.tax.income.subtractions.pension.co_pension_subtraction_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.co.tax.income.subtractions.pension.income_sources", - "subtracts": null, - "hidden_input": false - }, - "co_additions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_additions", - "label": "Colorado additions to federal taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.tax.income.additions.co_additions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.co.tax.income.additions.additions", - "subtracts": null, - "hidden_input": false - }, - "co_state_addback": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_state_addback", - "label": "Colorado state income tax addback", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.tax.income.additions.co_state_addback", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_qualified_business_income_deduction_addback_required": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "co_qualified_business_income_deduction_addback_required", - "label": "Required to add back the Colorado qualified business income deduction", - "category": null, - "unit": null, - "moduleName": "gov.states.co.tax.income.additions.qualified_business_income_deduction.co_qualified_business_income_deduction_addback_required", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_qualified_business_income_deduction_addback": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_qualified_business_income_deduction_addback", - "label": "Colorado qualified business income deduction addback", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.tax.income.additions.qualified_business_income_deduction.co_qualified_business_income_deduction_addback", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["qualified_business_income_deduction"], - "subtracts": null, - "hidden_input": false - }, - "co_federal_deduction_addback": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "co_federal_deduction_addback", - "label": "Colorado federal deductions addback", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.tax.income.additions.federal_deductions.co_federal_deduction_addback", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_federal_deduction_addback_required": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "co_federal_deduction_addback_required", - "label": "Required to add back the Colorado federal deductions", - "category": null, - "unit": null, - "moduleName": "gov.states.co.tax.income.additions.federal_deductions.co_federal_deduction_addback_required", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_ccap_subsidy": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "co_ccap_subsidy", - "label": "Colorado Child Care Assistance Program", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.ccap.co_ccap_subsidy", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_ccap_countable_income": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "co_ccap_countable_income", - "label": "Colorado Child Care Assitance Program Countable Income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.ccap.co_ccap_countable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["snap_earned_income", "snap_unearned_income"], - "subtracts": null, - "hidden_input": false - }, - "co_ccap_eligible_children": { - "documentation": null, - "entity": "spm_unit", - "valueType": "int", - "definitionPeriod": "month", - "name": "co_ccap_eligible_children", - "label": "Number of children eligible for Colorado Child Care Assistance Program", - "category": null, - "unit": null, - "moduleName": "gov.states.co.ccap.co_ccap_eligible_children", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["co_ccap_child_eligible"], - "subtracts": null, - "hidden_input": false - }, - "co_ccap_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "co_ccap_eligible", - "label": "Eligible for Colorado Child Care Assistance Program", - "category": null, - "unit": null, - "moduleName": "gov.states.co.ccap.co_ccap_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_quality_rating_of_child_care_facility": { - "documentation": null, - "entity": "person", - "valueType": "int", - "definitionPeriod": "year", - "name": "co_quality_rating_of_child_care_facility", - "label": "Quality rating of child care facility for Colorado Child Care Assistance Program", - "category": null, - "unit": null, - "moduleName": "gov.states.co.ccap.co_quality_rating_of_child_care_facility", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_ccap_parent_fee": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "co_ccap_parent_fee", - "label": "Colorado Child Care Assistance Program parent fee", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.ccap.co_ccap_parent_fee", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_ccap_child_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "month", - "name": "co_ccap_child_eligible", - "label": "Child eligibility for Colorado Child Care Assistance Program", - "category": null, - "unit": null, - "moduleName": "gov.states.co.ccap.co_ccap_child_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_ccap_add_on_parent_fee": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "co_ccap_add_on_parent_fee", - "label": "Colorado Child Care Assistance Program add on parent fee", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.ccap.co_ccap_add_on_parent_fee", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_ccap_base_parent_fee": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "co_ccap_base_parent_fee", - "label": "Colorado Child Care Assistance Program base parent fee", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.ccap.co_ccap_base_parent_fee", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_ccap_smi": { - "documentation": "The state median income used to determine eligibility for Colorado's Child Care Assistance Program. This differs from the HHS definition by basing it on the prior year if before October, and dividing by 12.", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "co_ccap_smi", - "label": "State median income for Colorado CCAP", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.co.ccap.co_ccap_smi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_ccap_re_determination_income_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "co_ccap_re_determination_income_eligible", - "label": "Eligible for the re-determination of Colorado Child Care Assistance Program through income", - "category": null, - "unit": null, - "moduleName": "gov.states.co.ccap.re_determination.co_ccap_re_determination_income_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_ccap_re_determination_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "co_ccap_re_determination_eligible", - "label": "Eligible for the re-determination of the Colorado Child Care Assistance Program", - "category": null, - "unit": null, - "moduleName": "gov.states.co.ccap.re_determination.co_ccap_re_determination_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_ccap_is_in_re_determination_process": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "co_ccap_is_in_re_determination_process", - "label": "Whether applicants are in the re-determination process of the Colorado Child Care Assistance Program", - "category": null, - "unit": null, - "moduleName": "gov.states.co.ccap.re_determination.co_ccap_is_in_re_determination_process", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_ccap_entry_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "co_ccap_entry_eligible", - "label": "Eligible for the entry of the Colorado Child Care Assistance Program", - "category": null, - "unit": null, - "moduleName": "gov.states.co.ccap.entry.co_ccap_entry_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_ccap_smi_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "co_ccap_smi_eligible", - "label": "Meets Colorado Child Care Assistance Program state median income-based income eligibility test", - "category": null, - "unit": null, - "moduleName": "gov.states.co.ccap.entry.co_ccap_smi_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_ccap_entry_income_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "co_ccap_entry_income_eligible", - "label": "Eligible for the entry of Colorado Child Care Assistance Program through income", - "category": null, - "unit": null, - "moduleName": "gov.states.co.ccap.entry.co_ccap_entry_income_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_ccap_is_in_entry_process": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "co_ccap_is_in_entry_process", - "label": "Whether applicants are in the entry process of the Colorado Child Care Assistance Program", - "category": null, - "unit": null, - "moduleName": "gov.states.co.ccap.entry.co_ccap_is_in_entry_process", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": true, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "co_ccap_fpg_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "co_ccap_fpg_eligible", - "label": "Meets Colorado Child Care Assistance Program poverty-based income eligibility test", - "category": null, - "unit": null, - "moduleName": "gov.states.co.ccap.entry.co_ccap_fpg_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "de_taxable_income_indv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "de_taxable_income_indv", - "label": "Delaware taxable income when married couples are filing separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.de.tax.income.de_taxable_income_indv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "de_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "de_income_tax", - "label": "Delaware personal income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.de.tax.income.de_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["de_income_tax_before_refundable_credits"], - "subtracts": ["de_refundable_credits"], - "hidden_input": false - }, - "de_withheld_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "de_withheld_income_tax", - "label": "Delaware withheld income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.de.tax.income.de_withheld_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "de_pre_exclusions_agi": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "de_pre_exclusions_agi", - "label": "Delaware individual adjusted gross income before exclusions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.de.tax.income.de_pre_exclusions_agi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["de_additions", "adjusted_gross_income_person"], - "subtracts": ["de_subtractions"], - "hidden_input": false - }, - "de_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "de_non_refundable_credits", - "label": "Delaware non-refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.de.tax.income.de_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.de.tax.income.credits.non_refundable", - "subtracts": null, - "hidden_input": false - }, - "de_taxable_income_joint": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "de_taxable_income_joint", - "label": "Delaware taxable income when married filing jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.de.tax.income.de_taxable_income_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "de_income_tax_before_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "de_income_tax_before_refundable_credits", - "label": "Delaware personal income tax before refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.de.tax.income.de_income_tax_before_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "de_files_separately": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "de_files_separately", - "label": "married couple files separately on the Delaware tax return", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.de.tax.income.de_files_separately", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "de_income_tax_before_non_refundable_credits_unit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "de_income_tax_before_non_refundable_credits_unit", - "label": "Delaware personal income tax before non-refundable credits combined", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.de.tax.income.de_income_tax_before_non_refundable_credits_unit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "de_agi_joint": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "de_agi_joint", - "label": "Delaware adjusted gross income for each individual whe married filing jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.de.tax.income.de_agi_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "de_income_tax_before_non_refundable_credits_joint": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "de_income_tax_before_non_refundable_credits_joint", - "label": "Delaware personal income tax before non-refundable credits when married filing jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.de.tax.income.de_income_tax_before_non_refundable_credits_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "de_income_tax_before_non_refundable_credits_indv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "de_income_tax_before_non_refundable_credits_indv", - "label": "Delaware personal income tax before non-refundable credits when married filing separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.de.tax.income.de_income_tax_before_non_refundable_credits_indv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "de_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "de_refundable_credits", - "label": "Delaware refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.de.tax.income.de_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.de.tax.income.credits.refundable", - "subtracts": null, - "hidden_input": false - }, - "de_agi_indiv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "de_agi_indiv", - "label": "Delaware adjusted gross income for each individual when married filing separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.de.tax.income.de_agi_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "de_eitc": { - "documentation": "Refundable or non-refundable Delaware EITC", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "de_eitc", - "label": "Delaware EITC", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.de.tax.income.credits.eitc.de_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "de_refundable_eitc": { - "documentation": "Refundable EITC credit reducing DE State income tax page 8.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "de_refundable_eitc", - "label": "Delaware refundable EITC", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.de.tax.income.credits.eitc.de_refundable_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["de_refundable_eitc_if_claimed"], - "subtracts": null, - "hidden_input": false - }, - "de_refundable_eitc_if_claimed": { - "documentation": "Refundable EITC credit reducing DE State income tax page 8.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "de_refundable_eitc_if_claimed", - "label": "Delaware refundable EITC if claimed", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.de.tax.income.credits.eitc.de_refundable_eitc_if_claimed", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "de_non_refundable_eitc": { - "documentation": "Non-refundable EITC credit reducing DE State income tax.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "de_non_refundable_eitc", - "label": "Delaware non-refundable EITC", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.de.tax.income.credits.eitc.de_non_refundable_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "de_non_refundable_eitc_if_claimed": { - "documentation": "Non-refundable EITC credit reducing DE State income tax.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "de_non_refundable_eitc_if_claimed", - "label": "Delaware non-refundable EITC if claimed", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.de.tax.income.credits.eitc.de_non_refundable_eitc_if_claimed", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "de_claims_refundable_eitc": { - "documentation": "Whether the filer claims the refundable over the non-refundable Delaware Earned Income Tax Credit.", - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "de_claims_refundable_eitc", - "label": "Filer claims refundable Delaware EITC", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.de.tax.income.credits.eitc.refundability_calculation.de_claims_refundable_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "de_income_tax_if_claiming_refundable_eitc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "de_income_tax_if_claiming_refundable_eitc", - "label": "Delaware tax liability if claiming refundable Delaware EITC", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.de.tax.income.credits.eitc.refundability_calculation.de_income_tax_if_claiming_refundable_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "de_income_tax_if_claiming_non_refundable_eitc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "de_income_tax_if_claiming_non_refundable_eitc", - "label": "Delaware tax liability if claiming non-refundable Delaware EITC", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.de.tax.income.credits.eitc.refundability_calculation.de_income_tax_if_claiming_non_refundable_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "de_relief_rebate": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "de_relief_rebate", - "label": "Delaware relief rebate", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.de.tax.income.credits.relief_rebate.de_relief_rebate", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "de_cdcc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "de_cdcc", - "label": "Delaware dependent care credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.de.tax.income.credits.cdcc.de_cdcc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "de_personal_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "de_personal_credit", - "label": "Delaware personal credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.de.tax.income.credits.personal.de_personal_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "de_aged_personal_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "de_aged_personal_credit", - "label": "Delaware aged personal credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.de.tax.income.credits.personal.de_aged_personal_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "de_subtractions": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "de_subtractions", - "label": "Delaware subtractions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.de.tax.income.subtractions.de_subtractions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.de.tax.income.subtractions.subtractions", - "subtracts": null, - "hidden_input": false - }, - "de_pension_exclusion_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "de_pension_exclusion_income", - "label": "Income sources for the Delaware pension exclusion", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.de.tax.income.subtractions.pension_exclusion.de_pension_exclusion_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.de.tax.income.subtractions.exclusions.pension.income_sources", - "subtracts": null, - "hidden_input": false - }, - "de_pension_exclusion": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "de_pension_exclusion", - "label": "Delaware individual pension exclusion", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.de.tax.income.subtractions.pension_exclusion.de_pension_exclusion", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "de_elderly_or_disabled_income_exclusion_joint": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "de_elderly_or_disabled_income_exclusion_joint", - "label": "Delaware individual aged or disabled exclusion when married filing jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.de.tax.income.subtractions.exclusions.de_elderly_or_disabled_income_exclusion_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "de_elderly_or_disabled_income_exclusion_eligible_person": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "de_elderly_or_disabled_income_exclusion_eligible_person", - "label": "Eligible person for the Delaware elderly or disabled income exclusion", - "category": null, - "unit": null, - "moduleName": "gov.states.de.tax.income.subtractions.exclusions.de_elderly_or_disabled_income_exclusion_eligible_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "de_elderly_or_disabled_income_exclusion_indiv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "de_elderly_or_disabled_income_exclusion_indiv", - "label": "Delaware individual aged or disabled exclusion when married filing sepaartely", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.de.tax.income.subtractions.exclusions.de_elderly_or_disabled_income_exclusion_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "de_additions": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "de_additions", - "label": "Delaware adjusted gross income additions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.de.tax.income.additions.de_additions", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "de_tax_unit_itemizes": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "de_tax_unit_itemizes", - "label": "Whether the tax unit in Delaware itemizes the deductions", - "category": null, - "unit": null, - "moduleName": "gov.states.de.tax.income.deductions.de_tax_unit_itemizes", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "de_deduction_joint": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "de_deduction_joint", - "label": "Delaware deduction when married filing jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.de.tax.income.deductions.de_deduction_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "de_deduction_indv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "de_deduction_indv", - "label": "Delaware deduction when married couples are filing separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.de.tax.income.deductions.de_deduction_indv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "de_itemized_deductions_unit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "de_itemized_deductions_unit", - "label": "Delaware itemized deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.de.tax.income.deductions.itemized.de_itemized_deductions_unit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.de.tax.income.deductions.itemized.sources", - "subtracts": null, - "hidden_input": false - }, - "de_itemized_deductions_joint": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "de_itemized_deductions_joint", - "label": "Delaware itemized deductions when married filing jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.de.tax.income.deductions.itemized.de_itemized_deductions_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "de_itemized_deductions_indv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "de_itemized_deductions_indv", - "label": "Delaware itemized deductions when married couples are filing separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.de.tax.income.deductions.itemized.de_itemized_deductions_indv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "de_capped_real_estate_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "de_capped_real_estate_tax", - "label": "Delaware capped real estate tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.de.tax.income.deductions.itemized.de_capped_real_estate_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "de_base_standard_deduction_joint": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "de_base_standard_deduction_joint", - "label": "Delaware base standard deduction when married couples are filing jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.de.tax.income.deductions.standard.de_base_standard_deduction_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "de_standard_deduction_indv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "de_standard_deduction_indv", - "label": "Delaware standard deduction when married couples are filing separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.de.tax.income.deductions.standard.de_standard_deduction_indv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["de_base_standard_deduction_indv", "de_additional_standard_deduction"], - "subtracts": null, - "hidden_input": false - }, - "de_standard_deduction_joint": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "de_standard_deduction_joint", - "label": "Delaware standard deduction when married filing jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.de.tax.income.deductions.standard.de_standard_deduction_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "de_base_standard_deduction_indv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "de_base_standard_deduction_indv", - "label": "Delaware base standard deduction when married couples are filing separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.de.tax.income.deductions.standard.de_base_standard_deduction_indv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "de_additional_standard_deduction": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "de_additional_standard_deduction", - "label": "Delaware additional standard deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.de.tax.income.deductions.standard.de_additional_standard_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ks_withheld_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ks_withheld_income_tax", - "label": "Kansas withheld income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ks.tax.income.ks_withheld_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ks_income_tax_before_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ks_income_tax_before_refundable_credits", - "label": "Kansas income tax before refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ks.tax.income.ks_income_tax_before_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ks_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ks_income_tax", - "label": "Kansas income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ks.tax.income.ks_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ks_income_tax_before_refundable_credits"], - "subtracts": ["ks_refundable_credits"], - "hidden_input": false - }, - "ks_income_tax_before_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ks_income_tax_before_credits", - "label": "Kansas income tax before credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ks.tax.income.ks_income_tax_before_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ks_agi": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ks_agi", - "label": "Kansas AGI", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ks.tax.income.ks_agi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["adjusted_gross_income", "ks_additions"], - "subtracts": ["ks_agi_subtractions"], - "hidden_input": false - }, - "ks_agi_subtractions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ks_agi_subtractions", - "label": "Kansas AGI subtractions from federal AGI", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ks.tax.income.ks_agi_subtractions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ks_taxable_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ks_taxable_income", - "label": "Kansas taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ks.tax.income.ks_taxable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ks_additions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ks_additions", - "label": "Kansas AGI additions to federal AGI", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ks.tax.income.ks_additions", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ks_fstc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ks_fstc", - "label": "Kansas food sales tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ks.tax.income.credits.ks_fstc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ks_nonrefundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ks_nonrefundable_credits", - "label": "Kansas nonrefundable income tax credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ks.tax.income.credits.ks_nonrefundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ks_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ks_refundable_credits", - "label": "Kansas refundable income tax credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ks.tax.income.credits.ks_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ks.tax.income.credits.refundable", - "subtracts": null, - "hidden_input": false - }, - "ks_cdcc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ks_cdcc", - "label": "Kansas child and dependent care expenses credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ks.tax.income.credits.ks_cdcc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ks_refundable_eitc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ks_refundable_eitc", - "label": "Kansas refundable EITC amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ks.tax.income.credits.eitc.ks_refundable_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ks_nonrefundable_eitc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ks_nonrefundable_eitc", - "label": "Kansas EITC nonrefundable amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ks.tax.income.credits.eitc.ks_nonrefundable_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ks_total_eitc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ks_total_eitc", - "label": "Kansas total EITC amount (both nonrefundable and refundable)", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ks.tax.income.credits.eitc.ks_total_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ks_count_exemptions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ks_count_exemptions", - "label": "number of KS exemptions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ks.tax.income.exemptions.ks_count_exemptions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ks_disabled_veteran_exemptions_eligible_person": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ks_disabled_veteran_exemptions_eligible_person", - "label": "Eligible person for the Kansas disabled veteran exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ks.tax.income.exemptions.ks_disabled_veteran_exemptions_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ks_exemptions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ks_exemptions", - "label": "Kansas exemptions amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ks.tax.income.exemptions.ks_exemptions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ks_standard_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ks_standard_deduction", - "label": "Kansas standard deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ks.tax.income.deductions.ks_standard_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ks_itemized_deductions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ks_itemized_deductions", - "label": "Kansas itemized deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ks.tax.income.deductions.ks_itemized_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "me_income_tax_before_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "me_income_tax_before_refundable_credits", - "label": "Maine income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.me.tax.income.me_income_tax_before_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "me_income_tax_before_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "me_income_tax_before_credits", - "label": "Maine main income tax (before credits and supplemental tax)", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.me.tax.income.me_income_tax_before_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "me_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "me_refundable_credits", - "label": "Maine refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.me.tax.income.me_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.me.tax.income.credits.refundable", - "subtracts": null, - "hidden_input": false - }, - "me_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "me_non_refundable_credits", - "label": "Maine non refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.me.tax.income.me_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.me.tax.income.credits.non_refundable", - "subtracts": null, - "hidden_input": false - }, - "me_withheld_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "me_withheld_income_tax", - "label": "Maine withheld income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.me.tax.income.me_withheld_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "me_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "me_income_tax", - "label": "Maine income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.me.tax.income.me_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["me_income_tax_before_refundable_credits"], - "subtracts": ["me_refundable_credits"], - "hidden_input": false - }, - "me_eitc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "me_eitc", - "label": "Maine EITC", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.me.tax.income.credits.me_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "me_sales_and_property_tax_fairness_credit_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "me_sales_and_property_tax_fairness_credit_income", - "label": "Maine sales and property tax fairness credit total income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.me.tax.income.credits.fairness.me_sales_and_property_tax_fairness_credit_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.me.tax.income.credits.fairness.income_sources", - "subtracts": null, - "hidden_input": false - }, - "me_sales_tax_fairness_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "me_sales_tax_fairness_credit", - "label": "Maine sales tax fairness credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.me.tax.income.credits.fairness.sales_tax_fairness_credit.me_sales_tax_fairness_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "me_sales_tax_fairness_credit_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "me_sales_tax_fairness_credit_eligible", - "label": "Eligible for the Maine sales tax fairness credit", - "category": null, - "unit": null, - "moduleName": "gov.states.me.tax.income.credits.fairness.sales_tax_fairness_credit.me_sales_tax_fairness_credit_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "me_property_tax_fairness_credit_veterans_cap": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "me_property_tax_fairness_credit_veterans_cap", - "label": "Veterans cap for Maine property tax fairness credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.me.tax.income.credits.fairness.property_tax_fairness_credit.me_property_tax_fairness_credit_veterans_cap", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "me_property_tax_fairness_credit_base_cap": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "me_property_tax_fairness_credit_base_cap", - "label": "Maine property tax fairness credit base cap", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.me.tax.income.credits.fairness.property_tax_fairness_credit.me_property_tax_fairness_credit_base_cap", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "me_property_tax_fairness_credit_cap": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "me_property_tax_fairness_credit_cap", - "label": "Maine property tax fairness credit cap", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.me.tax.income.credits.fairness.property_tax_fairness_credit.me_property_tax_fairness_credit_cap", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "me_property_tax_fairness_credit_base_cap", - "me_property_tax_fairness_credit_veterans_cap" - ], - "subtracts": null, - "hidden_input": false - }, - "me_property_tax_fairness_credit_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "me_property_tax_fairness_credit_eligible", - "label": "Eligible for the maine property tax fairness credit", - "category": null, - "unit": null, - "moduleName": "gov.states.me.tax.income.credits.fairness.property_tax_fairness_credit.me_property_tax_fairness_credit_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "me_property_tax_fairness_credit_benefit_base": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "me_property_tax_fairness_credit_benefit_base", - "label": "Maine property tax fairness credit benefit base", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.me.tax.income.credits.fairness.property_tax_fairness_credit.me_property_tax_fairness_credit_benefit_base", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "me_property_tax_fairness_credit_countable_rent_property_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "me_property_tax_fairness_credit_countable_rent_property_tax", - "label": "Countable rent and property tax for Maine property tax fairness credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.me.tax.income.credits.fairness.property_tax_fairness_credit.me_property_tax_fairness_credit_countable_rent_property_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["me_property_tax_fairness_credit_countable_rent", "real_estate_taxes"], - "subtracts": null, - "hidden_input": false - }, - "me_property_tax_fairness_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "me_property_tax_fairness_credit", - "label": "Maine property tax fairness credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.me.tax.income.credits.fairness.property_tax_fairness_credit.me_property_tax_fairness_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "me_property_tax_fairness_credit_countable_rent": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "me_property_tax_fairness_credit_countable_rent", - "label": "Countable rent for Maine property tax fairness credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.me.tax.income.credits.fairness.property_tax_fairness_credit.me_property_tax_fairness_credit_countable_rent", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "me_step_4_share_of_child_care_expenses": { - "documentation": "Share of child care expenses that are from programs classified as Step 4 in Maine", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "me_step_4_share_of_child_care_expenses", - "label": "Maine step 4 share of child care expenses", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.me.tax.income.credits.child_care_credit.me_step_4_share_of_child_care_expenses", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "me_child_care_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "me_child_care_credit", - "label": "Maine child care credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.me.tax.income.credits.child_care_credit.me_child_care_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "me_refundable_child_care_credit": { - "documentation": "Refundable portion of the Maine child care credit", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "me_refundable_child_care_credit", - "label": "Maine refundable child care credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.me.tax.income.credits.child_care_credit.me_refundable_child_care_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "me_non_refundable_child_care_credit": { - "documentation": "The portion of the Maine Child Care Credit that is non-refundable.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "me_non_refundable_child_care_credit", - "label": "Maine non-refundable child care credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.me.tax.income.credits.child_care_credit.me_non_refundable_child_care_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "me_dependent_exemption_credit_amount_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "me_dependent_exemption_credit_amount_person", - "label": "Maine dependent exemption credit amount for each person", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.me.tax.income.credits.dependent_exemption.me_dependent_exemption_credit_amount_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "me_dependent_exemption_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "me_dependent_exemption_credit", - "label": "Maine dependent exemption credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.me.tax.income.credits.dependent_exemption.me_dependent_exemption_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "me_additions": { - "documentation": "Additions to ME AGI over federal AGI.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "me_additions", - "label": "Maine AGI additions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.me.tax.income.adjusted_gross_income.me_additions", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "me_agi_subtractions": { - "documentation": "Subtractions from ME AGI over federal AGI.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "me_agi_subtractions", - "label": "ME AGI subtractions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.me.tax.income.adjusted_gross_income.me_agi_subtractions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "tax_unit_taxable_social_security", - "us_govt_interest", - "me_pension_income_deduction" - ], - "subtracts": null, - "hidden_input": false - }, - "me_agi": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "me_agi", - "label": "Maine adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.me.tax.income.adjusted_gross_income.me_agi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["adjusted_gross_income", "me_additions"], - "subtracts": ["me_agi_subtractions"], - "hidden_input": false - }, - "me_pension_income_deduction": { - "documentation": "Maine pension income deduction, which subtracts from federal AGI to compute Maine AGI.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "me_pension_income_deduction", - "label": "Maine pension income deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.me.tax.income.adjusted_gross_income.me_pension_income_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "me_exemptions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "me_exemptions", - "label": "Maine income exemptions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.me.tax.income.taxable_income.me_exemptions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["me_personal_exemption_deduction"], - "subtracts": null, - "hidden_input": false - }, - "me_deductions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "me_deductions", - "label": "Maine income deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.me.tax.income.taxable_income.me_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "me_taxable_income": { - "documentation": "ME AGI less taxable income deductions", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "me_taxable_income", - "label": "Maine taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.me.tax.income.taxable_income.me_taxable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "me_itemized_deductions_pre_phaseout": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "me_itemized_deductions_pre_phaseout", - "label": "Maine itemized deductions before phaseout", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.me.tax.income.taxable_income.deductions.me_itemized_deductions_pre_phaseout", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "me_deduction_phaseout_percentage": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "me_deduction_phaseout_percentage", - "label": "Maine deduction phaseout percentage", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.me.tax.income.taxable_income.deductions.me_deduction_phaseout_percentage", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "me_personal_exemption_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "me_personal_exemption_deduction", - "label": "Maine personal exemption deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.me.tax.income.taxable_income.deductions.personal_exemption.me_personal_exemption_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "or_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "or_income_tax", - "label": "OR income tax after refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.or.tax.income.or_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["or_income_tax_before_refundable_credits"], - "subtracts": ["or_refundable_credits"], - "hidden_input": false - }, - "or_agi": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "or_agi", - "label": "Oregon adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.or.tax.income.or_agi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["adjusted_gross_income", "or_additions"], - "subtracts": ["or_income_subtractions"], - "hidden_input": false - }, - "or_income_tax_before_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "or_income_tax_before_refundable_credits", - "label": "OR income tax before refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.or.tax.income.or_income_tax_before_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "or_withheld_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "or_withheld_income_tax", - "label": "Oregon withheld income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.or.tax.income.or_withheld_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "or_additions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "or_additions", - "label": "Oregon income additions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.or.tax.income.or_additions", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "or_taxable_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "or_taxable_income", - "label": "OR taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.or.tax.income.or_taxable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "or_income_tax_before_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "or_income_tax_before_credits", - "label": "OR income tax before credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.or.tax.income.or_income_tax_before_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "or_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "or_non_refundable_credits", - "label": "OR uncapped non-refundable tax credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.or.tax.income.credits.or_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.or.tax.income.credits.nonrefundable", - "subtracts": null, - "hidden_input": false - }, - "or_ctc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "or_ctc", - "label": "Oregon Child Tax Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.or.tax.income.credits.or_ctc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "or_eitc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "or_eitc", - "label": "OR EITC", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.or.tax.income.credits.or_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "or_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "or_refundable_credits", - "label": "Oregon refundable tax credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.or.tax.income.credits.or_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.or.tax.income.credits.refundable", - "subtracts": null, - "hidden_input": false - }, - "or_retirement_credit_eligible_person": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "or_retirement_credit_eligible_person", - "label": "Eligible person for the Oregon Retirement Income Tax Credit", - "category": null, - "unit": null, - "moduleName": "gov.states.or.tax.income.credits.retirement_credit.or_retirement_credit_eligible_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "or_retirement_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "or_retirement_credit", - "label": "Oregon Retirement Income Tax Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.or.tax.income.credits.retirement_credit.or_retirement_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "or_retirement_credit_household_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "or_retirement_credit_household_income", - "label": "Household income for the Oregon Retirement Income Tax Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.or.tax.income.credits.retirement_credit.or_retirement_credit_household_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["adjusted_gross_income", "tax_exempt_interest_income"], - "subtracts": ["taxable_social_security"], - "hidden_input": false - }, - "or_wfhdc_household_income": { - "documentation": "Larger of federal and state AGI", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "or_wfhdc_household_income", - "label": "Household income for the Oregon working family household and dependent care credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.or.tax.income.credits.wfhdc.or_wfhdc_household_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "or_wfhdc_employment_eligible": { - "documentation": "Oregon Working Family Household and Dependent Care Credit household eligibility", - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "or_wfhdc_employment_eligible", - "label": "Employment eligible for the Oregon working family household and dependent care credit", - "category": null, - "unit": null, - "moduleName": "gov.states.or.tax.income.credits.wfhdc.or_wfhdc_employment_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "or_wfhdc_income_category": { - "documentation": null, - "entity": "tax_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "or_wfhdc_income_category", - "label": "Oregon working family household and dependent care credit percentage table row letter", - "category": null, - "unit": "/1", - "moduleName": "gov.states.or.tax.income.credits.wfhdc.or_wfhdc_income_category", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "or_wfhdc_eligibility_category": { - "documentation": null, - "entity": "tax_unit", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "or_wfhdc_eligibility_category", - "label": "Oregon working family household and dependent care credit percentage table column", - "category": null, - "unit": null, - "moduleName": "gov.states.or.tax.income.credits.wfhdc.or_wfhdc_eligibility_category", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "NONE", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "YOUNGEST", - "label": "Youngest" - }, - { - "value": "YOUNG", - "label": "Young" - }, - { - "value": "OLD", - "label": "Old" - }, - { - "value": "DISABLED_TEENS", - "label": "Disabled teenagers" - }, - { - "value": "DISABLED_ADULTS", - "label": "Disabled adults" - }, - { - "value": "NONE", - "label": "None" - } - ] - }, - "or_wfhdc_income_eligible": { - "documentation": "Oregon Working Family Household and Dependent Care Credit household eligibility", - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "or_wfhdc_income_eligible", - "label": "Income eligible for the Oregon working family household and dependent care credit", - "category": null, - "unit": null, - "moduleName": "gov.states.or.tax.income.credits.wfhdc.or_wfhdc_income_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "or_working_family_household_and_dependent_care_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "or_working_family_household_and_dependent_care_credit", - "label": "Oregon working family household and dependent care credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.or.tax.income.credits.wfhdc.or_working_family_household_and_dependent_care_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "or_wfhdc_has_qualified_individual_eligible": { - "documentation": "Oregon Working Family Household and Dependent Care Credit household eligibility", - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "or_wfhdc_has_qualified_individual_eligible", - "label": "Check if household has eligible individuals for Oregon Working Family Household and Dependent Care Credit", - "category": null, - "unit": null, - "moduleName": "gov.states.or.tax.income.credits.wfhdc.or_wfhdc_has_qualified_individual_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "or_wfhdc_household_size_eligible": { - "documentation": "Oregon Working Family Household and Dependent Care Credit household eligibility", - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "or_wfhdc_household_size_eligible", - "label": "Household size eligible for the Oregon working family household and dependent care credit", - "category": null, - "unit": null, - "moduleName": "gov.states.or.tax.income.credits.wfhdc.or_wfhdc_household_size_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "or_wfhdc_eligible": { - "documentation": "Oregon Working Family Household and Dependent Care Credit household eligibility", - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "or_wfhdc_eligible", - "label": "Eligible for the Oregon working family household and dependent care credit", - "category": null, - "unit": null, - "moduleName": "gov.states.or.tax.income.credits.wfhdc.or_wfhdc_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "or_cdcc_relevant_expenses": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "or_cdcc_relevant_expenses", - "label": "Oregon working family household and dependent care expenses", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.or.tax.income.credits.wfhdc.or_cdcc_relevant_expenses", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "or_disabled_child_dependent_exemptions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "or_disabled_child_dependent_exemptions", - "label": "OR disabled child dependent exemptions", - "category": null, - "unit": null, - "moduleName": "gov.states.or.tax.income.credits.exemption.or_disabled_child_dependent_exemptions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "or_severely_disabled_exemptions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "or_severely_disabled_exemptions", - "label": "OR severely disabled exemptions for tax head or spouse", - "category": null, - "unit": null, - "moduleName": "gov.states.or.tax.income.credits.exemption.or_severely_disabled_exemptions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "or_regular_exemptions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "or_regular_exemptions", - "label": "OR regular exemptions", - "category": null, - "unit": null, - "moduleName": "gov.states.or.tax.income.credits.exemption.or_regular_exemptions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "or_exemption_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "or_exemption_credit", - "label": "OR exemption credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.or.tax.income.credits.exemption.or_exemption_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "or_kicker": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "or_kicker", - "label": "OR Kicker", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.or.tax.income.credits.kicker.or_kicker", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "or_tax_before_credits_in_prior_year": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "or_tax_before_credits_in_prior_year", - "label": "OR tax before credits in prior year", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.or.tax.income.credits.kicker.or_tax_before_credits_in_prior_year", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "or_federal_tax_liability_subtraction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "or_federal_tax_liability_subtraction", - "label": "OR federal tax liability subtraction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.or.tax.income.subtractions.or_federal_tax_liability_subtraction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "or_income_subtractions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "or_income_subtractions", - "label": "OR income subtractions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.or.tax.income.subtractions.or_income_subtractions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.or.tax.income.subtractions.subtractions", - "subtracts": null, - "hidden_input": false - }, - "or_federal_pension_subtraction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "or_federal_pension_subtraction", - "label": "Oregon Federal Pension Subtraction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.or.tax.income.subtractions.or_federal_pension_subtraction", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "or_standard_deduction": { - "documentation": "Oregon standard deduction, including bonus for aged or blind and special rules for filers who are claimable as dependents.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "or_standard_deduction", - "label": "OR standard deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.or.tax.income.deductions.or_standard_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "or_deductions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "or_deductions", - "label": "OR deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.or.tax.income.deductions.or_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "or_itemized_deductions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "or_itemized_deductions", - "label": "OR itemized deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.or.tax.income.deductions.or_itemized_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["itemized_deductions_less_salt", "capped_property_taxes"], - "subtracts": null, - "hidden_input": false - }, - "ga_agi": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ga_agi", - "label": "Georgia adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ga.tax.income.ga_agi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["adjusted_gross_income", "ga_additions"], - "subtracts": ["ga_subtractions"], - "hidden_input": false - }, - "ga_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ga_refundable_credits", - "label": "Georgia refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ga.tax.income.ga_refundable_credits", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ga_taxable_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ga_taxable_income", - "label": "Georgia taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ga.tax.income.ga_taxable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ga_subtractions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ga_subtractions", - "label": "Georgia subtractions from federal adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ga.tax.income.ga_subtractions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ga.tax.income.subtractions.subtractions", - "subtracts": null, - "hidden_input": false - }, - "ga_withheld_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ga_withheld_income_tax", - "label": "Georgia withheld income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ga.tax.income.ga_withheld_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ga_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ga_income_tax", - "label": "Georgia income tax after refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ga.tax.income.ga_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ga_income_tax_before_refundable_credits"], - "subtracts": ["ga_refundable_credits"], - "hidden_input": false - }, - "ga_income_tax_before_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ga_income_tax_before_non_refundable_credits", - "label": "Georgia income tax before non-refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ga.tax.income.ga_income_tax_before_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ga_income_tax_before_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ga_income_tax_before_refundable_credits", - "label": "Georgia income tax before refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ga.tax.income.ga_income_tax_before_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ga_additions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ga_additions", - "label": "Georgia additions to federal adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ga.tax.income.ga_additions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ga.tax.income.additions.additions", - "subtracts": null, - "hidden_input": false - }, - "ga_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ga_non_refundable_credits", - "label": "Georgia non-refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ga.tax.income.ga_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ga.tax.income.credits.non_refundable", - "subtracts": null, - "hidden_input": false - }, - "ga_low_income_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ga_low_income_credit", - "label": "Georgia low income credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ga.tax.income.credits.ga_low_income_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ga_cdcc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ga_cdcc", - "label": "Georgia non-refundable dependent care credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ga.tax.income.credits.cdcc.ga_cdcc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ga_exemptions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ga_exemptions", - "label": "Georgia Exemptions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ga.tax.income.exemptions.ga_exemptions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ga_investment_in_529_plan_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ga_investment_in_529_plan_deduction", - "label": "Georgia investment in 529 plan deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ga.tax.income.subtractions.ga_investment_in_529_plan_deduction", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ga_retirement_exclusion_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ga_retirement_exclusion_person", - "label": "Georgia retirement exclusion for each person", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ga.tax.income.subtractions.retirement.ga_retirement_exclusion_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ga_retirement_exclusion": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ga_retirement_exclusion", - "label": "Georgia retirement exclusion", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ga.tax.income.subtractions.retirement.ga_retirement_exclusion", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ga_retirement_exclusion_person"], - "subtracts": null, - "hidden_input": false - }, - "ga_retirement_income_exclusion_retirement_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ga_retirement_income_exclusion_retirement_income", - "label": "Georgia retirement income for the retirement income exclusion", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ga.tax.income.subtractions.retirement.ga_retirement_income_exclusion_retirement_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ga.tax.income.agi.exclusions.retirement.sources", - "subtracts": null, - "hidden_input": false - }, - "ga_retirement_exclusion_countable_earned_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ga_retirement_exclusion_countable_earned_income", - "label": "Countable earned income for the Georgia retirement exclusion for each person", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ga.tax.income.subtractions.retirement.ga_retirement_exclusion_countable_earned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ga_retirement_exclusion_eligible_person": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ga_retirement_exclusion_eligible_person", - "label": "Eligible person for the Georgia retirement exclusion", - "category": null, - "unit": null, - "moduleName": "gov.states.ga.tax.income.subtractions.retirement.ga_retirement_exclusion_eligible_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ga_military_retirement_exclusion_eligible_person": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ga_military_retirement_exclusion_eligible_person", - "label": "Eligible person for the Georgia military retirement exclusion", - "category": null, - "unit": null, - "moduleName": "gov.states.ga.tax.income.subtractions.retirement.military.ga_military_retirement_exclusion_eligible_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ga_military_retirement_exclusion_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ga_military_retirement_exclusion_person", - "label": "Georgia military retirement exclusion", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ga.tax.income.subtractions.retirement.military.ga_military_retirement_exclusion_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ga_military_retirement_exclusion": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ga_military_retirement_exclusion", - "label": "Georgia military retirement exclusion", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ga.tax.income.subtractions.retirement.military.ga_military_retirement_exclusion", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ga_military_retirement_exclusion_person"], - "subtracts": null, - "hidden_input": false - }, - "ga_standard_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ga_standard_deduction", - "label": "Georgia standard deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ga.tax.income.deductions.ga_standard_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ga_additional_standard_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ga_additional_standard_deduction", - "label": "Georgia additional standard deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ga.tax.income.deductions.ga_additional_standard_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ga_deductions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ga_deductions", - "label": "Georgia deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ga.tax.income.deductions.ga_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "vt_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "vt_non_refundable_credits", - "label": "Vermont non-refundable tax credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.vt.tax.income.vt_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "vt_normal_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "vt_normal_income_tax", - "label": "Vermont normal income tax before non-refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.vt.tax.income.vt_normal_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "vt_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "vt_income_tax", - "label": "Vermont income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.vt.tax.income.vt_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["vt_income_tax_before_refundable_credits"], - "subtracts": ["vt_refundable_credits"], - "hidden_input": false - }, - "vt_eitc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "vt_eitc", - "label": "Vermont earned income tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.vt.tax.income.vt_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "vt_amt": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "vt_amt", - "label": "Vermont alternative minimum tax (AMT)", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.vt.tax.income.vt_amt", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "vt_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "vt_refundable_credits", - "label": "Vermont refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.vt.tax.income.vt_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.vt.tax.income.credits.refundable", - "subtracts": null, - "hidden_input": false - }, - "vt_income_tax_before_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "vt_income_tax_before_non_refundable_credits", - "label": "Vermont income tax before non-refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.vt.tax.income.vt_income_tax_before_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "vt_income_tax_before_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "vt_income_tax_before_refundable_credits", - "label": "Vermont income tax before refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.vt.tax.income.vt_income_tax_before_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "vt_taxable_income": { - "documentation": "VT AGI less taxable income deductions and exemptions", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "vt_taxable_income", - "label": "Vermont taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.vt.tax.income.vt_taxable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "vt_withheld_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "vt_withheld_income_tax", - "label": "Vermont withheld income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.vt.tax.income.vt_withheld_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "vt_elderly_or_disabled_credit": { - "documentation": "Schedule R credit for the elderly and the disabled", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "vt_elderly_or_disabled_credit", - "label": "Vermont elderly or disabled credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.vt.tax.income.credits.vt_elderly_or_disabled_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "vt_veteran_tax_credit": { - "documentation": "Vermont veteran tax credit providing $250 refundable credit for low-income veterans as part of S.51 (2025) tax relief package.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "vt_veteran_tax_credit", - "label": "Vermont veteran tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.vt.tax.income.credits.vt_veteran_tax_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "vt_charitable_contribution_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "vt_charitable_contribution_credit", - "label": "Vermont charitable contribution credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.vt.tax.income.credits.vt_charitable_contributions_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "vt_ctc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "vt_ctc", - "label": "Vermont child tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.vt.tax.income.credits.ctc.vt_ctc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "vt_low_income_cdcc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "vt_low_income_cdcc", - "label": "Vermont low-income child care and dependent care credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.vt.tax.income.credits.cdcc.vt_low_income_cdcc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "vt_low_income_cdcc_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "vt_low_income_cdcc_eligible", - "label": "Eligible for the Vermont low-income child care and dependent care credit", - "category": null, - "unit": null, - "moduleName": "gov.states.vt.tax.income.credits.cdcc.vt_low_income_cdcc_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "vt_cdcc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "vt_cdcc", - "label": "Vermont child care and dependent care credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.vt.tax.income.credits.cdcc.vt_cdcc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "vt_renter_credit_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "vt_renter_credit_income", - "label": "Vermont renter credit income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.vt.tax.income.credits.renter.vt_renter_credit_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "adjusted_gross_income", - "vt_renter_credit_countable_tax_exempt_ss", - "tax_exempt_interest_income" - ], - "subtracts": null, - "hidden_input": false - }, - "vt_renter_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "vt_renter_credit", - "label": "Vermont renter credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.vt.tax.income.credits.renter.vt_renter_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "vt_renter_credit_countable_tax_exempt_ss": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "vt_renter_credit_countable_tax_exempt_ss", - "label": "Vermont renter credit countable tax exempt social security", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.vt.tax.income.credits.renter.vt_renter_credit_countable_tax_exempt_ss", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "vt_personal_exemptions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "vt_personal_exemptions", - "label": "Vermont personal exemptions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.vt.tax.income.exemptions.vt_personal_exemptions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "vt_agi": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "vt_agi", - "label": "Vermont adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.vt.tax.income.adjusted_gross_income.vt_agi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["adjusted_gross_income", "vt_additions"], - "subtracts": ["vt_subtractions"], - "hidden_input": false - }, - "vt_additions": { - "documentation": "Additions to Vermont adjusted gross income", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "vt_additions", - "label": "Vermont AGI additions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.vt.tax.income.adjusted_gross_income.vt_additions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["tax_exempt_interest_income"], - "subtracts": null, - "hidden_input": false - }, - "vt_subtractions": { - "documentation": "Subtractions from Vermont adjusted gross income", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "vt_subtractions", - "label": "Vermont subtractions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.vt.tax.income.adjusted_gross_income.subtractions.vt_subtractions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.vt.tax.income.agi.subtractions", - "subtracts": null, - "hidden_input": false - }, - "vt_medical_expense_deduction": { - "documentation": "Vermont medical expenses deducted from taxable income.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "vt_medical_expense_deduction", - "label": "Vermont medical expense deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.vt.tax.income.adjusted_gross_income.subtractions.vt_medical_expense_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "vt_percentage_capital_gains_exclusion": { - "documentation": "This can be selected to be subtracted from federal adjusted gross income in Vermont as percentage capital gains exclusion.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "vt_percentage_capital_gains_exclusion", - "label": "Vermont percentage capital gains exclusion", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.vt.tax.income.adjusted_gross_income.subtractions.vt_capital_gain_exclusion.vt_percentage_capital_gains_exclusion", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "vt_capital_gains_exclusion": { - "documentation": "Vermont excludes a portion of capital gains, calculated either as a flat amount or as a fraction of adjusted net capital gains, and limited by a fraction of federal taxable income.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "vt_capital_gains_exclusion", - "label": "Vermont capital gains exclusion", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.vt.tax.income.adjusted_gross_income.subtractions.vt_capital_gain_exclusion.vt_capital_gains_exclusion", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "vt_military_retirement_pay_exclusion": { - "documentation": "Vermont military retirement benefits exempt from Vermont taxation.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "vt_military_retirement_pay_exclusion", - "label": "Vermont military retirement income exclusion", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.vt.tax.income.adjusted_gross_income.subtractions.retirement_income_exemption.vt_military_retirement_pay_exclusion", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "vt_military_retirement_cap_based_exemption": { - "documentation": "Vermont military retirement benefits exempt from Vermont taxation up to cap amount (pre-2025).", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "vt_military_retirement_cap_based_exemption", - "label": "Vermont military retirement cap-based exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.vt.tax.income.adjusted_gross_income.subtractions.retirement_income_exemption.vt_military_retirement_cap_based_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "vt_retirement_income_exemption": { - "documentation": "Vermont retirement benefits exempt from Vermont taxation.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "vt_retirement_income_exemption", - "label": "Vermont retirement income exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.vt.tax.income.adjusted_gross_income.subtractions.retirement_income_exemption.vt_retirement_income_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "vt_military_retirement_income_based_exemption": { - "documentation": "Vermont military retirement benefits exempt from Vermont taxation based on AGI thresholds (2025+).", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "vt_military_retirement_income_based_exemption", - "label": "Vermont military retirement income-based exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.vt.tax.income.adjusted_gross_income.subtractions.retirement_income_exemption.vt_military_retirement_income_based_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "vt_retirement_income_exemption_eligible": { - "documentation": "Vermont filers use below criteria to check whether the tax unit is eligible for vermont retirement income exemption.", - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "vt_retirement_income_exemption_eligible", - "label": "Vermont retirement income exemption eligibility status", - "category": null, - "unit": null, - "moduleName": "gov.states.vt.tax.income.adjusted_gross_income.subtractions.retirement_income_exemption.vt_retirement_income_exemption_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "vt_csrs_retirement_pay_exclusion": { - "documentation": "Vermont Civil Service Retirement System (CSRS) retirement benefits exempt from Vermont taxation.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "vt_csrs_retirement_pay_exclusion", - "label": "Vermont Civil Service Retirement System (CSRS) retirement income exclusion", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.vt.tax.income.adjusted_gross_income.subtractions.retirement_income_exemption.vt_csrs_retirement_pay_exclusion", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "vt_standard_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "vt_standard_deduction", - "label": "Vermont standard deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.vt.tax.income.deductions.vt_standard_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ct_income_tax_after_personal_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ct_income_tax_after_personal_credits", - "label": "Connecticut income tax after personal tax credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ct.tax.income.ct_income_tax_after_personal_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ct_income_tax_after_amt": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ct_income_tax_after_amt", - "label": "Connecticut income tax after the addition of the alternative minimum tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ct.tax.income.ct_income_tax_after_amt", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ct_amt", "ct_income_tax_after_personal_credits"], - "subtracts": null, - "hidden_input": false - }, - "ct_taxable_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ct_taxable_income", - "label": "Connecticut taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ct.tax.income.ct_taxable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ct_agi_subtractions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ct_agi_subtractions", - "label": "Connecticut subtractions from federal adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ct.tax.income.ct_agi_subtractions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ct.tax.income.subtractions.subtractions", - "subtracts": null, - "hidden_input": false - }, - "ct_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ct_refundable_credits", - "label": "Connecticut refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ct.tax.income.ct_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ct.tax.income.credits.refundable", - "subtracts": null, - "hidden_input": false - }, - "ct_agi": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ct_agi", - "label": "Connecticut adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ct.tax.income.ct_agi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["adjusted_gross_income", "ct_additions"], - "subtracts": ["ct_agi_subtractions"], - "hidden_input": false - }, - "ct_income_tax_before_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ct_income_tax_before_refundable_credits", - "label": "Connecticut income tax before refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ct.tax.income.ct_income_tax_before_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ct_withheld_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ct_withheld_income_tax", - "label": "Connecticut withheld income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ct.tax.income.ct_withheld_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ct_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ct_non_refundable_credits", - "label": "Connecticut non-refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ct.tax.income.ct_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ct.tax.income.credits.non_refundable", - "subtracts": null, - "hidden_input": false - }, - "ct_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ct_income_tax", - "label": "Connecticut income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ct.tax.income.ct_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ct_income_tax_before_refundable_credits"], - "subtracts": ["ct_refundable_credits"], - "hidden_input": false - }, - "ct_personal_credit_rate": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ct_personal_credit_rate", - "label": "Connecticut personal credit rate", - "category": null, - "unit": "\u0001", - "moduleName": "gov.states.ct.tax.income.credits.ct_personal_credit_rate", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ct_eitc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ct_eitc", - "label": "Connecticut Earned Income Tax Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ct.tax.income.credits.eitc.ct_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ct_property_tax_credit_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ct_property_tax_credit_eligible", - "label": "Eligible for the Connecticut Property Tax Credit", - "category": null, - "unit": null, - "moduleName": "gov.states.ct.tax.income.credits.property_tax.ct_property_tax_credit_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ct_property_tax_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ct_property_tax_credit", - "label": "Connecticut property tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ct.tax.income.credits.property_tax.ct_property_tax_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ct_personal_exemptions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ct_personal_exemptions", - "label": "Connecticut Personal Exemptions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ct.tax.income.exemptions.ct_personal_exemptions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ct_amt": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ct_amt", - "label": "Connecticut alternative minimum tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ct.tax.income.amt.ct_amt", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ct_social_security_benefit_adjustment": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ct_social_security_benefit_adjustment", - "label": "Connecticut social security benefit adjustment", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ct.tax.income.subtractions.ct_social_security_benefit_adjustment", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ct_subtractions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ct_subtractions", - "label": "Connecticut subtractions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ct.tax.income.subtractions.ct_subtractions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ct.tax.income.subtractions.subtractions", - "subtracts": null, - "hidden_input": false - }, - "ct_tuition_subtraction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ct_tuition_subtraction", - "label": "Connecticut tuition subtraction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ct.tax.income.subtractions.tuition.ct_tuition_subtraction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ct_pension_annuity_subtraction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ct_pension_annuity_subtraction", - "label": "Connecticut pension and annuity subtraction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ct.tax.income.subtractions.pension_annuity.ct_pension_annuity_subtraction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ct_child_tax_rebate": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ct_child_tax_rebate", - "label": "Connecticut child tax rebate", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ct.tax.income.rebate.ct_child_tax_rebate", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ct_additions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ct_additions", - "label": "Connecticut additions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ct.tax.income.additions.ct_additions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ct.tax.income.additions.additions", - "subtracts": null, - "hidden_input": false - }, - "ct_section_179_expense_add_back": { - "documentation": "Add 80 percent of the section 179 amount deducted in determining federal AGI.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ct_section_179_expense_add_back", - "label": "Connecticut Section 179 Expense Add Back", - "category": null, - "unit": null, - "moduleName": "gov.states.ct.tax.income.additions.ct_section_179_expense_add_back", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ct_income_tax_recapture": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ct_income_tax_recapture", - "label": "Connecticut income tax recapture", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ct.tax.income.add_back.ct_income_tax_recapture", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "ct_income_tax_low_tax_recapture", - "ct_income_tax_middle_tax_recapture", - "ct_income_tax_high_tax_recapture" - ], - "subtracts": null, - "hidden_input": false - }, - "ct_income_tax_high_tax_recapture": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ct_income_tax_high_tax_recapture", - "label": "Connecticut income tax recapture at high brackets", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ct.tax.income.add_back.ct_income_tax_high_tax_recapture", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ct_income_tax_phase_out_add_back": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ct_income_tax_phase_out_add_back", - "label": "Connecticut income tax phase out add back", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ct.tax.income.add_back.ct_income_tax_phase_out_add_back", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ct_income_tax_middle_tax_recapture": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ct_income_tax_middle_tax_recapture", - "label": "Connecticut income tax recapture at middle brackets", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ct.tax.income.add_back.ct_income_tax_middle_tax_recapture", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ct_income_tax_low_tax_recapture": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ct_income_tax_low_tax_recapture", - "label": "Connecticut income tax recapture at low brackets", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ct.tax.income.add_back.ct_income_tax_low_tax_recapture", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_drive_clean_purchased_qualifying_vehicle": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ny_drive_clean_purchased_qualifying_vehicle", - "label": "Purchased a qualifying new vehicle at an authorized dealership for the New York Drive Clean rebate program", - "category": null, - "unit": null, - "moduleName": "gov.states.ny.nyserda.drive_clean.ny_drive_clean_purchased_qualifying_vehicle", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_drive_clean_vehicle_electric_range": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_drive_clean_vehicle_electric_range", - "label": "New York Drive Clean rebate program all-electric vehicle range", - "category": null, - "unit": "miles", - "moduleName": "gov.states.ny.nyserda.drive_clean.ny_drive_clean_vehicle_electric_range", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_drive_clean_rebate": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_drive_clean_rebate", - "label": "New York Drive Clean Rebate", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.nyserda.drive_clean.ny_drive_clean_rebate", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_drive_clean_vehicle_cost": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_drive_clean_vehicle_cost", - "label": "Price of a qualifying vehicle purchased at an authorized New York dealership considered under the New York Drive Clean rebate program", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.nyserda.drive_clean.ny_drive_clean_vehicle_cost", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_income_tax_before_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_income_tax_before_refundable_credits", - "label": "NY income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.tax.income.ny_income_tax_before_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_supplemental_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_supplemental_tax", - "label": "NY supplemental income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.tax.income.ny_supplemental_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_withheld_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_withheld_income_tax", - "label": "New York withheld income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.tax.income.ny_withheld_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_non_refundable_credits", - "label": "NY capped non-refundable tax credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.tax.income.ny_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_refundable_credits", - "label": "NY refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.tax.income.ny_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ny.tax.income.credits.refundable", - "subtracts": null, - "hidden_input": false - }, - "ny_allowable_college_tuition_expenses": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_allowable_college_tuition_expenses", - "label": "New York allowable college tuition expenses for the credit and deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.tax.income.ny_allowable_college_tuition_expenses", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_income_tax_before_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_income_tax_before_credits", - "label": "NY income tax before credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.tax.income.ny_income_tax_before_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ny_main_income_tax", "ny_supplemental_tax"], - "subtracts": null, - "hidden_input": false - }, - "ny_main_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_main_income_tax", - "label": "NY main income tax (before credits and supplemental tax)", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.tax.income.ny_main_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_income_tax", - "label": "NY income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.tax.income.ny_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ny_income_tax_before_refundable_credits"], - "subtracts": ["ny_refundable_credits"], - "hidden_input": false - }, - "ny_geothermal_energy_system_credit": { - "documentation": "The tax credit for a qualified purchase or lease of geothermal energy system equipment, with a 5-year carryover.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_geothermal_energy_system_credit", - "label": "New York geothermal energy system equipment credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.tax.income.credits.ny_geothermal_energy_system_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_eitc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_eitc", - "label": "New York EITC", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.tax.income.credits.ny_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_household_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_household_credit", - "label": "NY household credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.tax.income.credits.ny_household_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_real_property_tax_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_real_property_tax_credit", - "label": "NY real property tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.tax.income.credits.ny_real_property_tax_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_qualified_geothermal_energy_system_expenditures": { - "documentation": "Money spent in the current year for the purchase or lease of geothermal energy system equipment.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_qualified_geothermal_energy_system_expenditures", - "label": "Qualified geothermal energy system equipment expenditures", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.tax.income.credits.ny_qualified_geothermal_energy_system_expenditures", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_supplemental_eitc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_supplemental_eitc", - "label": "NY Supplemental EITC", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.tax.income.credits.ny_supplemental_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_inflation_refund_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_inflation_refund_credit", - "label": "New York 2025 inflation refund credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.tax.income.credits.ny_inflation_refund_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_ctc_post_2024": { - "documentation": "New York's Empire State Child Credit under post-2024 rules (2025-2027)", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_ctc_post_2024", - "label": "New York CTC post-2024", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.tax.income.credits.ctc.ny_ctc_post_2024", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_ctc_pre_2024_eligible": { - "documentation": "Whether the tax unit is eligible for NY CTC under pre-2024 rules", - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ny_ctc_pre_2024_eligible", - "label": "NY CTC pre-2024 eligibility", - "category": null, - "unit": null, - "moduleName": "gov.states.ny.tax.income.credits.ctc.ny_ctc_pre_2024_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_ctc_post_2024_phase_out": { - "documentation": "Amount by which New York CTC is reduced due to income phase-out under post-2024 rules", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_ctc_post_2024_phase_out", - "label": "New York CTC post-2024 phase-out amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.tax.income.credits.ctc.ny_ctc_post_2024_phase_out", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_ctc_post_2024_eligible": { - "documentation": "Whether the tax unit is eligible for New York CTC under post-2024 rules", - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ny_ctc_post_2024_eligible", - "label": "New York CTC post-2024 eligibility", - "category": null, - "unit": null, - "moduleName": "gov.states.ny.tax.income.credits.ctc.ny_ctc_post_2024_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_ctc_post_2024_base": { - "documentation": "Base New York CTC amount before phase-out under post-2024 rules", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_ctc_post_2024_base", - "label": "New York CTC post-2024 base amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.tax.income.credits.ctc.ny_ctc_post_2024_base", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_ctc": { - "documentation": "New York's Empire State Child Credit", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_ctc", - "label": "NY CTC", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.tax.income.credits.ctc.ny_ctc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ny_ctc_post_2024", "ny_ctc_pre_2024"], - "subtracts": null, - "hidden_input": false - }, - "ny_additional_ctc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_additional_ctc", - "label": "New York additional Empire State Child Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.tax.income.credits.ctc.ny_additional_ctc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_ctc_pre_2024": { - "documentation": "New York's Empire State Child Credit under pre-2024 rules (original system)", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_ctc_pre_2024", - "label": "NY CTC pre-2024 rules", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.tax.income.credits.ctc.ny_ctc_pre_2024", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_cdcc_max": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_cdcc_max", - "label": "Maximum NY CDCC", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.tax.income.credits.cdcc.ny_cdcc_max", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_cdcc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_cdcc", - "label": "NY CDCC", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.tax.income.credits.cdcc.ny_cdcc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_cdcc_rate": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_cdcc_rate", - "label": "NY CDCC rate", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.tax.income.credits.cdcc.ny_cdcc_rate", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_college_tuition_credit_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ny_college_tuition_credit_eligible", - "label": "New York college tuition credit eligible", - "category": null, - "unit": null, - "moduleName": "gov.states.ny.tax.income.credits.college_tuition.ny_college_tuition_credit_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_college_tuition_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_college_tuition_credit", - "label": "NY college tuition credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.tax.income.credits.college_tuition.ny_college_tuition_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_qualified_solar_energy_systems_equipment_expenditures": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_qualified_solar_energy_systems_equipment_expenditures", - "label": "Qualified solar energy systems equipment expenditures in New York", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.tax.income.credits.solar_energy_systems.ny_qualified_solar_energy_systems_equipment_expenditures", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_solar_energy_systems_equipment_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_solar_energy_systems_equipment_credit", - "label": "New York solar energy systems equipment credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.tax.income.credits.solar_energy_systems.ny_solar_energy_systems_equipment_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_pension_exclusion": { - "documentation": "Exclusion for pension income for eligible individuals.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_pension_exclusion", - "label": "New York pension exclusion", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.tax.income.adjusted_gross_income.ny_pension_exclusion", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_agi_subtractions": { - "documentation": "Subtractions from NY AGI over federal AGI.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_agi_subtractions", - "label": "New York AGI subtractions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.tax.income.adjusted_gross_income.ny_agi_subtractions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ny.tax.income.agi.subtractions.sources", - "subtracts": null, - "hidden_input": false - }, - "ny_agi": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_agi", - "label": "NY adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.tax.income.adjusted_gross_income.ny_agi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["adjusted_gross_income", "ny_additions"], - "subtracts": ["ny_agi_subtractions"], - "hidden_input": false - }, - "ny_additions": { - "documentation": "Additions to NY AGI over federal AGI.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_additions", - "label": "New York AGI additions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.tax.income.adjusted_gross_income.ny_additions", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_deductions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_deductions", - "label": "NY income deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.tax.income.taxable_income.ny_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_taxable_income": { - "documentation": "NY AGI less taxable income deductions", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_taxable_income", - "label": "NY taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.tax.income.taxable_income.ny_taxable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_exemptions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_exemptions", - "label": "NY exemptions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.tax.income.taxable_income.ny_exemptions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_standard_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_standard_deduction", - "label": "NY standard deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.tax.income.taxable_income.deductions.ny_standard_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_itemizes": { - "documentation": "Tax units who itemize their federal deductions can opt to itemize their New York deductions. However, if a standard deduction causes a lower tax liability, they must choose that.", - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ny_itemizes", - "label": "Itemizes New York deductions", - "category": null, - "unit": null, - "moduleName": "gov.states.ny.tax.income.taxable_income.deductions.itemized.ny_itemizes", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_itemized_deductions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_itemized_deductions", - "label": "New York itemized deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.tax.income.taxable_income.deductions.itemized.ny_itemized_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ny_itemized_deductions_max"], - "subtracts": ["ny_itemized_deductions_reduction"], - "hidden_input": false - }, - "ny_itemized_deductions_max": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_itemized_deductions_max", - "label": "NY uncapped itemized deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.tax.income.taxable_income.deductions.itemized.ny_itemized_deductions_max", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "itemized_deductions_less_salt", - "real_estate_taxes", - "ny_college_tuition_deduction" - ], - "subtracts": null, - "hidden_input": false - }, - "ny_college_tuition_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_college_tuition_deduction", - "label": "New York itemized deduction for college tuition expenses", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.tax.income.taxable_income.deductions.itemized.ny_college_tuition_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_itemized_deductions_reduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_itemized_deductions_reduction", - "label": "NY itemized deductions reduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.tax.income.taxable_income.deductions.itemized.reduction.ny_itemized_deductions_reduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_itemized_deductions_reduction_applies": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ny_itemized_deductions_reduction_applies", - "label": "Whether the reduction to the New York itemized deductions applies", - "category": null, - "unit": null, - "moduleName": "gov.states.ny.tax.income.taxable_income.deductions.itemized.reduction.ny_itemized_deductions_reduction_applies", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_itemized_deductions_reduction_based_on_charitable_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_itemized_deductions_reduction_based_on_charitable_deduction", - "label": "New York itemized deductions reduction based on charitable deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.tax.income.taxable_income.deductions.itemized.reduction.based_on_charitable_deduction.ny_itemized_deductions_reduction_based_on_charitable_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_itemized_deductions_reduction_based_on_charitable_deduction_applies": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ny_itemized_deductions_reduction_based_on_charitable_deduction_applies", - "label": "New York itemized deductions reduction based on charitable deduction", - "category": null, - "unit": null, - "moduleName": "gov.states.ny.tax.income.taxable_income.deductions.itemized.reduction.based_on_charitable_deduction.ny_itemized_deductions_reduction_based_on_charitable_deduction_applies", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_itemized_deductions_higher_incremental_reduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_itemized_deductions_higher_incremental_reduction", - "label": "New York itemized deductions higher incremental reduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.tax.income.taxable_income.deductions.itemized.reduction.based_on_charitable_deduction.incremental.ny_itemized_deductions_higher_incremental_reduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_itemized_deductions_incremental_reduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_itemized_deductions_incremental_reduction", - "label": "New York itemized deductions incremental reduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.tax.income.taxable_income.deductions.itemized.reduction.based_on_charitable_deduction.incremental.ny_itemized_deductions_incremental_reduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "ny_itemized_deductions_higher_incremental_reduction", - "ny_itemized_deductions_lower_incremental_reduction" - ], - "subtracts": null, - "hidden_input": false - }, - "ny_itemized_deductions_lower_incremental_reduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_itemized_deductions_lower_incremental_reduction", - "label": "New York itemized deductions lower incremental reduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.tax.income.taxable_income.deductions.itemized.reduction.based_on_charitable_deduction.incremental.ny_itemized_deductions_lower_incremental_reduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_tanf": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_tanf", - "label": "New York TANF", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.otda.tanf.ny_tanf", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_tanf_resources_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ny_tanf_resources_eligible", - "label": "New York TANF resources eligible", - "category": null, - "unit": null, - "moduleName": "gov.states.ny.otda.tanf.ny_tanf_resources_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_tanf_need_standard": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_tanf_need_standard", - "label": "New York TANF need standard", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.otda.tanf.ny_tanf_need_standard", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_tanf_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ny_tanf_eligible", - "label": "New York TANF eligible", - "category": null, - "unit": null, - "moduleName": "gov.states.ny.otda.tanf.ny_tanf_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_tanf_income_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ny_tanf_income_eligible", - "label": "New York TANF income eligible", - "category": null, - "unit": null, - "moduleName": "gov.states.ny.otda.tanf.ny_tanf_income_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_tanf_countable_resources": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_tanf_countable_resources", - "label": "Countable resources for New York TANF", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.otda.tanf.ny_tanf_countable_resources", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_tanf_grant_standard": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_tanf_grant_standard", - "label": "New York TANF grant standard", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.otda.tanf.ny_tanf_grant_standard", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_tanf_countable_earned_income": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_tanf_countable_earned_income", - "label": "New York TANF countable earned income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.otda.tanf.income.ny_tanf_countable_earned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ny_tanf_gross_earned_income": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_tanf_gross_earned_income", - "label": "New York TANF gross earned income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.otda.tanf.income.ny_tanf_gross_earned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ny.otda.tanf.income.earned", - "subtracts": null, - "hidden_input": false - }, - "ny_tanf_countable_gross_unearned_income": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ny_tanf_countable_gross_unearned_income", - "label": "New York TANF countable gross unearned income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ny.otda.tanf.income.ny_tanf_countable_gross_unearned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ny.otda.tanf.income.unearned", - "subtracts": null, - "hidden_input": false - }, - "va_must_file": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "va_must_file", - "label": "Tax unit must file Virginia income taxes", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.va.tax.income.va_must_file", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "va_agi": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "va_agi", - "label": "Virginia adjusted federal adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.va.tax.income.va_agi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["adjusted_gross_income", "va_additions"], - "subtracts": ["va_subtractions"], - "hidden_input": false - }, - "va_rebate": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "va_rebate", - "label": "Virginia rebate", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.va.tax.income.va_rebate", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "va_agi_share": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "va_agi_share", - "label": "Virginia share of state adjusted gross income of each person", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.va.tax.income.va_agi_share", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "va_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "va_income_tax", - "label": "Virginia income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.va.tax.income.va_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["va_income_tax_before_refundable_credits"], - "subtracts": ["va_refundable_credits"], - "hidden_input": false - }, - "va_subtractions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "va_subtractions", - "label": "Virginia subtractions from the adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.va.tax.income.va_subtractions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.va.tax.income.subtractions.subtractions", - "subtracts": null, - "hidden_input": false - }, - "va_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "va_non_refundable_credits", - "label": "Virginia non-refundable income tax credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.va.tax.income.va_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.va.tax.income.credits.non_refundable", - "subtracts": null, - "hidden_input": false - }, - "va_taxable_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "va_taxable_income", - "label": "Virginia taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.va.tax.income.va_taxable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "va_agi_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "va_agi_person", - "label": "Virginia adjusted gross income for each person", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.va.tax.income.va_agi_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "va_withheld_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "va_withheld_income_tax", - "label": "Virginia withheld income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.va.tax.income.va_withheld_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "va_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "va_refundable_credits", - "label": "Virginia refundable income tax credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.va.tax.income.va_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.va.tax.income.credits.refundable", - "subtracts": null, - "hidden_input": false - }, - "va_income_tax_before_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "va_income_tax_before_non_refundable_credits", - "label": "Virginia income tax before non-refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.va.tax.income.va_income_tax_before_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "va_income_tax_before_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "va_income_tax_before_refundable_credits", - "label": "Virginia income tax before credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.va.tax.income.va_income_tax_before_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "va_refundable_eitc_if_claimed": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "va_refundable_eitc_if_claimed", - "label": "Virginia refundable earned income tax credit if claimed", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.va.tax.income.credits.eitc.va_refundable_eitc_if_claimed", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "va_non_refundable_eitc_if_claimed": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "va_non_refundable_eitc_if_claimed", - "label": "Virginia non-refundable EITC if claimed", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.va.tax.income.credits.eitc.va_non_refundable_eitc_if_claimed", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "va_eitc_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "va_eitc_person", - "label": "Virginia Earned Income Tax Credit per individual when married filing seperately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.va.tax.income.credits.eitc.va_eitc_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "va_non_refundable_eitc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "va_non_refundable_eitc", - "label": "Virginia non-refundable EITC", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.va.tax.income.credits.eitc.va_non_refundable_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "va_refundable_eitc": { - "documentation": "Refundable EITC credit reducing Virginia State income tax", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "va_refundable_eitc", - "label": "Virginia refundable earned income tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.va.tax.income.credits.eitc.va_refundable_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["va_refundable_eitc_if_claimed"], - "subtracts": null, - "hidden_input": false - }, - "va_eitc": { - "documentation": "Refundable or non-refundable Virginia EITC", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "va_eitc", - "label": "Virginia Earned Income Tax Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.va.tax.income.credits.eitc.va_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "va_claims_refundable_eitc": { - "documentation": "Whether the filer claims the refundable over the non-refundable Virginia Earned Income Tax Credit.", - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "va_claims_refundable_eitc", - "label": "Filer claims refundable Virginia EITC", - "category": null, - "unit": null, - "moduleName": "gov.states.va.tax.income.credits.eitc.refundability_calculation.va_claims_refundable_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "va_income_tax_if_claiming_refundable_eitc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "va_income_tax_if_claiming_refundable_eitc", - "label": "Virginia tax liability if claiming refundable Virginia EITC", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.va.tax.income.credits.eitc.refundability_calculation.va_income_tax_if_claiming_refundable_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "va_income_tax_if_claiming_non_refundable_eitc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "va_income_tax_if_claiming_non_refundable_eitc", - "label": "Virginia tax liability if claiming non-refundable Virginia EITC", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.va.tax.income.credits.eitc.refundability_calculation.va_income_tax_if_claiming_non_refundable_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "va_low_income_tax_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "va_low_income_tax_credit", - "label": "Virginia low income tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.va.tax.income.credits.low_income_credit.va_low_income_tax_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "va_low_income_tax_credit_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "va_low_income_tax_credit_eligible", - "label": "Eligible for the Virginia Low Income Tax Credit", - "category": null, - "unit": null, - "moduleName": "gov.states.va.tax.income.credits.low_income_credit.va_low_income_tax_credit_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "va_low_income_tax_credit_agi_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "va_low_income_tax_credit_agi_eligible", - "label": "Eligible for the Virginia low income tax credit", - "category": null, - "unit": null, - "moduleName": "gov.states.va.tax.income.credits.low_income_credit.va_low_income_tax_credit_agi_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "va_personal_exemption_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "va_personal_exemption_person", - "label": "Virginia personal exemption for each person", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.va.tax.income.exemptions.va_personal_exemption_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "va_total_exemptions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "va_total_exemptions", - "label": "Virginia exemptions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.va.tax.income.exemptions.va_total_exemptions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["va_personal_exemption", "va_aged_blind_exemption"], - "subtracts": null, - "hidden_input": false - }, - "va_aged_blind_exemption_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "va_aged_blind_exemption_person", - "label": "Virginia aged/blind exemption for each person", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.va.tax.income.exemptions.va_aged_blind_exemption_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "va_aged_blind_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "va_aged_blind_exemption", - "label": "Virginia aged/blind exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.va.tax.income.exemptions.va_aged_blind_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["va_aged_blind_exemption_person"], - "subtracts": null, - "hidden_input": false - }, - "va_personal_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "va_personal_exemption", - "label": "Virginia personal exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.va.tax.income.exemptions.va_personal_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["va_personal_exemption_person"], - "subtracts": null, - "hidden_input": false - }, - "va_disability_income_subtraction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "va_disability_income_subtraction", - "label": "Virginia disability income subtraction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.va.tax.income.subtractions.va_disability_income_subtraction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "va_national_guard_subtraction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "va_national_guard_subtraction", - "label": "Virginia national guard pay subtraction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.va.tax.income.subtractions.va_national_guard_subtraction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "va_federal_state_employees_subtraction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "va_federal_state_employees_subtraction", - "label": "Virginia federal state employees subtraction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.va.tax.income.subtractions.va_federal_state_employees_subtraction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "va_military_benefit_subtraction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "va_military_benefit_subtraction", - "label": "Virginia military benefit subtraction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.va.tax.income.subtractions.va_military_benefit_subtraction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "va_military_basic_pay_subtraction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "va_military_basic_pay_subtraction", - "label": "Virginia military basic pay subtraction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.va.tax.income.subtractions.va_military_basic_pay.va_military_basic_pay_subtraction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "va_age_deduction_agi": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "va_age_deduction_agi", - "label": "Virginia adjusted gross income for the age deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.va.tax.income.subtractions.age_deduction.va_age_deduction_agi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["adjusted_gross_income"], - "subtracts": ["tax_unit_taxable_social_security"], - "hidden_input": false - }, - "va_age_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "va_age_deduction", - "label": "Virginia age deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.va.tax.income.subtractions.age_deduction.va_age_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "va_additions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "va_additions", - "label": "Virginia additions to federal adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.va.tax.income.additions.va_additions", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "va_agi_less_exemptions_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "va_agi_less_exemptions_person", - "label": "Difference between individual VAGI and personal exemption amounts", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.va.tax.income.spouse_tax_adjustment.va_agi_less_exemptions_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "va_spouse_tax_adjustment_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "va_spouse_tax_adjustment_eligible", - "label": "Eligible for Virginia's spouse tax adjustment", - "category": null, - "unit": null, - "moduleName": "gov.states.va.tax.income.spouse_tax_adjustment.va_spouse_tax_adjustment_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "va_spouse_tax_adjustment": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "va_spouse_tax_adjustment", - "label": "Virginia Spouse Tax Adjustment", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.va.tax.income.spouse_tax_adjustment.va_spouse_tax_adjustment", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "va_deductions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "va_deductions", - "label": "Virginia deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.va.tax.income.deductions.va_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "va_standard_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "va_standard_deduction", - "label": "Virginia standard deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.va.tax.income.deductions.va_standard_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "va_capped_state_and_local_sales_or_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "va_capped_state_and_local_sales_or_income_tax", - "label": "Capped state and local sales or income tax for Virginia itemized deductions purposes", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.va.tax.income.deductions.va_capped_state_and_local_sales_or_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "va_itemized_deductions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "va_itemized_deductions", - "label": "Virginia itemized deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.va.tax.income.deductions.va_itemized_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "va_reduced_itemized_deductions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "va_reduced_itemized_deductions", - "label": "Virginia reduced itemized deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.va.tax.income.deductions.va_reduced_itemized_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "va_child_dependent_care_expense_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "va_child_dependent_care_expense_deduction", - "label": "Virginia child and dependent care expense deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.va.tax.income.deductions.cdcc_expense.va_child_dependent_care_expense_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "va_child_dependent_care_deduction_cdcc_limit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "va_child_dependent_care_deduction_cdcc_limit", - "label": "Federal CDCC-relevant care expense limit for Virginia tax purposes", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.va.tax.income.deductions.cdcc_expense.va_child_dependent_care_deduction_cdcc_limit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ar_taxable_capital_gains_joint": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ar_taxable_capital_gains_joint", - "label": "Arkansas taxable capital gains when married filing jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ar.tax.income.ar_taxable_capital_gains_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ar_files_separately": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ar_files_separately", - "label": "married couple files separately on the Arkansas tax return", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ar.tax.income.ar_files_separately", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ar_income_tax_before_non_refundable_credits_indiv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ar_income_tax_before_non_refundable_credits_indiv", - "label": "Arkansas income tax before non refundable credits when married couples are filing separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ar.tax.income.ar_income_tax_before_non_refundable_credits_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ar_taxable_capital_gains_indiv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ar_taxable_capital_gains_indiv", - "label": "Arkansas taxable capital gains when married filing separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ar.tax.income.ar_taxable_capital_gains_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ar_exemptions": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ar_exemptions", - "label": "Arkansas exemptions from income tax for each individual", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ar.tax.income.ar_exemptions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ar.tax.income.exemptions.exemptions", - "subtracts": null, - "hidden_input": false - }, - "ar_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ar_non_refundable_credits", - "label": "Arkansas non-refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ar.tax.income.ar_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ar.tax.income.credits.non_refundable", - "subtracts": null, - "hidden_input": false - }, - "ar_gross_income_indiv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ar_gross_income_indiv", - "label": "Arkansas gross income when married filing separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ar.tax.income.ar_gross_income_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ar.tax.income.gross_income.sources.individual", - "subtracts": null, - "hidden_input": false - }, - "ar_agi_indiv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ar_agi_indiv", - "label": "Arkansas adjusted gross income for each individual", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ar.tax.income.ar_agi_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ar_taxable_income_joint": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ar_taxable_income_joint", - "label": "Arkansas taxable income when married filing jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ar.tax.income.ar_taxable_income_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ar_agi_joint": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ar_agi_joint", - "label": "Arkansas adjusted gross income for each individual", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ar.tax.income.ar_agi_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ar_gross_income_joint": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ar_gross_income_joint", - "label": "Arkansas gross income when married filing jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ar.tax.income.ar_gross_income_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ar.tax.income.gross_income.sources.joint", - "subtracts": null, - "hidden_input": false - }, - "ar_taxable_income_indiv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ar_taxable_income_indiv", - "label": "Arkansas taxable income when married couples are filing separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ar.tax.income.ar_taxable_income_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ar_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ar_refundable_credits", - "label": "Arkansas refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ar.tax.income.ar_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ar.tax.income.credits.refundable", - "subtracts": null, - "hidden_input": false - }, - "ar_withheld_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ar_withheld_income_tax", - "label": "Arkansas withheld income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ar.tax.income.ar_withheld_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ar_income_tax_before_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ar_income_tax_before_refundable_credits", - "label": "Arkansas income tax before refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ar.tax.income.ar_income_tax_before_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ar_income_tax_before_non_refundable_credits_unit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ar_income_tax_before_non_refundable_credits_unit", - "label": "Arkansas income tax before non refundable credits combined", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ar.tax.income.ar_income_tax_before_non_refundable_credits_unit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ar_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ar_income_tax", - "label": "Arkansas income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ar.tax.income.ar_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ar_income_tax_before_refundable_credits"], - "subtracts": ["ar_refundable_credits"], - "hidden_input": false - }, - "ar_income_tax_before_non_refundable_credits_joint": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ar_income_tax_before_non_refundable_credits_joint", - "label": "Arkansas income tax before non refundable credits when married filing jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ar.tax.income.ar_income_tax_before_non_refundable_credits_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ar_low_income_tax_joint": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ar_low_income_tax_joint", - "label": "Arkansas low income tax when married couples are filing separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ar.tax.income.low_income.ar_low_income_tax_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ar_inflation_relief_credit_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ar_inflation_relief_credit_person", - "label": "Arkansas inflation relief income-tax credit for each individual", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ar.tax.income.credits.ar_inflation_relief_credit_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ar_inflation_relief_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ar_inflation_relief_credit", - "label": "Arkansas inflation relief income-tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ar.tax.income.credits.ar_inflationary_relief_tax_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ar_inflation_relief_credit_person"], - "subtracts": null, - "hidden_input": false - }, - "ar_cdcc": { - "documentation": "https://codes.findlaw.com/ar/title-26-taxation/ar-code-sect-26-51-502/", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ar_cdcc", - "label": "Arkansas Child and Dependent Care Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ar.tax.income.credits.ar_cdcc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ar_personal_credits_base": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ar_personal_credits_base", - "label": "Arkansas base personal credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ar.tax.income.credits.personal.ar_personal_credits_base", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ar_personal_credit_dependent": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ar_personal_credit_dependent", - "label": "Arkansas personal tax credit dependent amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ar.tax.income.credits.personal.ar_personal_credit_dependent", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ar_personal_credit_disabled_dependent": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ar_personal_credit_disabled_dependent", - "label": "Arkansas disabled dependent personal tax credit amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ar.tax.income.credits.personal.ar_personal_credit_disabled_dependent", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ar_personal_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ar_personal_credits", - "label": "Arkansas personal credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ar.tax.income.credits.personal.ar_personal_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "ar_personal_credit_dependent", - "ar_personal_credits_base", - "ar_personal_credit_disabled_dependent" - ], - "subtracts": null, - "hidden_input": false - }, - "ar_retirement_or_disability_benefits_exemption_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ar_retirement_or_disability_benefits_exemption_person", - "label": "Arkansas individual retirement or disability benefits exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ar.tax.income.exemptions.ar_retirement_or_disability_benefits_exemption_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ar_military_retirement_income_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ar_military_retirement_income_person", - "label": "Arkansas military retirement income for each person", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ar.tax.income.exemptions.ar_military_retirement_income_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ar_retirement_or_disability_benefits_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ar_retirement_or_disability_benefits_exemption", - "label": "Arkansas retirement or disability benefits exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ar.tax.income.exemptions.ar_retirement_or_disability_benefits_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ar_capped_retirement_or_disability_benefits_exemption_person"], - "subtracts": null, - "hidden_input": false - }, - "ar_capped_retirement_or_disability_benefits_exemption_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ar_capped_retirement_or_disability_benefits_exemption_person", - "label": "Arkansas capped individual retirement or disability benefits exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ar.tax.income.exemptions.ar_capped_retirement_or_disability_benefits_exemption_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ar_deduction_indiv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ar_deduction_indiv", - "label": "Arkansas deduction when married couples are filing separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ar.tax.income.deductions.ar_deduction_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ar_deduction_joint": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ar_deduction_joint", - "label": "Arkansas deduction when married filing jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ar.tax.income.deductions.ar_deduction_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ar_tax_unit_itemizes": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ar_tax_unit_itemizes", - "label": "Whether the tax unit in Arkansas itemizes the deductions when married filing separately", - "category": null, - "unit": null, - "moduleName": "gov.states.ar.tax.income.deductions.ar_tax_unit_itemizes", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ar_misc_deduction_joint": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ar_misc_deduction_joint", - "label": "Arkansas miscellaneous deduction when married filing jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ar.tax.income.deductions.itemized.ar_misc_deduction_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ar_itemized_deductions_joint": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ar_itemized_deductions_joint", - "label": "Arkansas itemized deductions when married filing jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ar.tax.income.deductions.itemized.ar_itemized_deductions_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ar_medical_expense_deduction_joint": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ar_medical_expense_deduction_joint", - "label": "Arkansas medical and dental expense deduction when married filing jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ar.tax.income.deductions.itemized.ar_medical_expense_deduction_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ar_misc_deduction_indiv": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ar_misc_deduction_indiv", - "label": "Arkansas miscellaneous deduction when married filing separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ar.tax.income.deductions.itemized.ar_misc_deduction_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ar_medical_expense_deduction_indiv": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ar_medical_expense_deduction_indiv", - "label": "Arkansas medical and dental expense deduction when married filing separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ar.tax.income.deductions.itemized.ar_medical_expense_deduction_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ar_itemized_deductions_indiv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ar_itemized_deductions_indiv", - "label": "Arkansas itemized deductions when married couples are filing separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ar.tax.income.deductions.itemized.ar_itemized_deductions_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ar_post_secondary_education_tuition_deduction_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ar_post_secondary_education_tuition_deduction_person", - "label": "Arkansas person post-secondary education tuition deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ar.tax.income.deductions.itemized.post_secondary_education.ar_post_secondary_education_tuition_deduction_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ar_post_secondary_education_tuition_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ar_post_secondary_education_tuition_deduction", - "label": "Arkansas post-secondary education tuition deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ar.tax.income.deductions.itemized.post_secondary_education.ar_post_secondary_education_tuition_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ar_post_secondary_education_tuition_deduction_person"], - "subtracts": null, - "hidden_input": false - }, - "ar_standard_deduction_indiv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ar_standard_deduction_indiv", - "label": "Arkansas standard deduction when married couples are filing separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ar.tax.income.deductions.standard.ar_standard_deduction_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ar_standard_deduction_joint": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ar_standard_deduction_joint", - "label": "Arkansas standard deduction when married filing jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ar.tax.income.deductions.standard.ar_standard_deduction_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ne_child_care_subsidies": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ne_child_care_subsidies", - "label": "Nebraska child care subsidies", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ne.dhhs.ne_child_care_subsidies", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ne_child_care_subsidy"], - "subtracts": null, - "hidden_input": false - }, - "ne_dhhs_has_special_needs": { - "documentation": "A child has a requirement for extra care because of an acute or chronic physical or mental condition", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ne_dhhs_has_special_needs", - "label": "Has special needs under Nebraska Department of Health and Human Services", - "category": null, - "unit": null, - "moduleName": "gov.states.ne.dhhs.ne_dhhs_has_special_needs", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ne_child_care_subsidy_eligible_child": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ne_child_care_subsidy_eligible_child", - "label": "Nebraska Child Care Subsidy program eligible child", - "category": null, - "unit": null, - "moduleName": "gov.states.ne.dhhs.child_care_subsidy.ne_child_care_subsidy_eligible_child", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ne_child_care_subsidy": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ne_child_care_subsidy", - "label": "Nebraska Child Care Subsidy", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ne.dhhs.child_care_subsidy.ne_child_care_subsidy", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ne_child_care_subsidy_eligible_parent": { - "documentation": "Nebraska Child Care Subsidy eligible program parent must either be working, involved with Employment First as part of the ADC program, going to school or trainings, going to medical or therapy visits for self or child(ren), or ill or hurt (must be confirmed by a doctor)", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ne_child_care_subsidy_eligible_parent", - "label": "Nebraska Child Care Subsidy program eligible parent", - "category": null, - "unit": null, - "moduleName": "gov.states.ne.dhhs.child_care_subsidy.ne_child_care_subsidy_eligible_parent", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ne_child_care_subsidy_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ne_child_care_subsidy_eligible", - "label": "Eligible for the Nebraska Child Care Subsidy program", - "category": null, - "unit": null, - "moduleName": "gov.states.ne.dhhs.child_care_subsidy.ne_child_care_subsidy_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ne_child_care_subsidy_income_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ne_child_care_subsidy_income_eligible", - "label": "Nebraska Child Care Subsidy program income eligible", - "category": null, - "unit": null, - "moduleName": "gov.states.ne.dhhs.child_care_subsidy.ne_child_care_subsidy_income_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ne_income_tax_before_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ne_income_tax_before_credits", - "label": "NE income tax before credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ne.tax.income.ne_income_tax_before_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ne_withheld_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ne_withheld_income_tax", - "label": "Nebraska withheld income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ne.tax.income.ne_withheld_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ne_income_tax_before_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ne_income_tax_before_refundable_credits", - "label": "NE income tax before refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ne.tax.income.ne_income_tax_before_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ne_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ne_income_tax", - "label": "NE income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ne.tax.income.ne_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ne_income_tax_before_refundable_credits"], - "subtracts": ["ne_refundable_credits"], - "hidden_input": false - }, - "ne_nonrefundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ne_nonrefundable_credits", - "label": "NE nonrefundable income tax credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ne.tax.income.ne_nonrefundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ne.tax.income.credits.nonrefundable", - "subtracts": null, - "hidden_input": false - }, - "ne_taxable_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ne_taxable_income", - "label": "NE taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ne.tax.income.ne_taxable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ne_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ne_refundable_credits", - "label": "NE refundable income tax credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ne.tax.income.ne_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ne.tax.income.credits.refundable", - "subtracts": null, - "hidden_input": false - }, - "ne_elderly_disabled_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ne_elderly_disabled_credit", - "label": "NE elderly/disabled tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ne.tax.income.credits.ne_elderly_disabled_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ne_eitc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ne_eitc", - "label": "NE EITC amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ne.tax.income.credits.eitc.ne_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ne_school_readiness_credit": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ne_school_readiness_credit", - "label": "Nebraska school readiness tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ne.tax.income.credits.school_readiness.ne_school_readiness_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ne_school_readiness_credit_child_care_worker_rating": { - "documentation": null, - "entity": "person", - "valueType": "int", - "definitionPeriod": "year", - "name": "ne_school_readiness_credit_child_care_worker_rating", - "label": "Level of child care worker for the Nebraska school readiness refundable tax credit", - "category": null, - "unit": null, - "moduleName": "gov.states.ne.tax.income.credits.school_readiness.ne_school_readiness_credit_child_care_worker_rating", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ne_school_readiness_credit_eligible_worker": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ne_school_readiness_credit_eligible_worker", - "label": "Eligible worker for the Nebraska school readiness refundable tax credit", - "category": null, - "unit": null, - "moduleName": "gov.states.ne.tax.income.credits.school_readiness.ne_school_readiness_credit_eligible_worker", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ne_refundable_ctc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ne_refundable_ctc", - "label": "Nebraska refundable Child Tax Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ne.tax.income.credits.ctc.refundable.ne_refundable_ctc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ne_refundable_ctc_total_household_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ne_refundable_ctc_total_household_income", - "label": "Nebraska refundable Child Tax Credit total household income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ne.tax.income.credits.ctc.refundable.ne_refundable_ctc_total_household_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ne_refundable_ctc_income_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ne_refundable_ctc_income_eligible", - "label": "Nebraska refundable Child Tax Credit total household income eligible child", - "category": null, - "unit": null, - "moduleName": "gov.states.ne.tax.income.credits.ctc.refundable.ne_refundable_ctc_income_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ne_refundable_ctc_eligible_child": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ne_refundable_ctc_eligible_child", - "label": "Nebraska refundable Child Tax Credit eligible child", - "category": null, - "unit": null, - "moduleName": "gov.states.ne.tax.income.credits.ctc.refundable.ne_refundable_ctc_eligible_child", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ne_cdcc_refundable_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ne_cdcc_refundable_eligible", - "label": "Eligible for the Nebraska refundable CDCC", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ne.tax.income.credits.cdcc.ne_cdcc_refundable_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ne_cdcc_nonrefundable": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ne_cdcc_nonrefundable", - "label": "Nebraska nonrefundable cdcc", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ne.tax.income.credits.cdcc.ne_cdcc_nonrefundable", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ne_cdcc_refundable": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ne_cdcc_refundable", - "label": "Nebraska refundable cdcc", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ne.tax.income.credits.cdcc.ne_cdcc_refundable", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ne_exemptions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ne_exemptions", - "label": "Nebraska exemptions amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ne.tax.income.exemptions.ne_exemptions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ne_agi": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ne_agi", - "label": "NE AGI", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ne.tax.income.adjusted_gross_income.ne_agi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["adjusted_gross_income", "ne_additions"], - "subtracts": ["ne_agi_subtractions"], - "hidden_input": false - }, - "ne_additions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ne_additions", - "label": "Nebraska AGI additions to federal AGI", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ne.tax.income.adjusted_gross_income.ne_additions", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ne_agi_subtractions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ne_agi_subtractions", - "label": "Nebraska subtractions from federal adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ne.tax.income.adjusted_gross_income.ne_agi_subtractions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ne.tax.income.agi.subtractions.subtractions", - "subtracts": null, - "hidden_input": false - }, - "ne_social_security_subtraction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ne_social_security_subtraction", - "label": "Nebraska social security subtraction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ne.tax.income.adjusted_gross_income.subtractions.ne_social_security_subtraction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ne_military_retirement_subtraction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ne_military_retirement_subtraction", - "label": "Nebraska military retirement subtraction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ne.tax.income.adjusted_gross_income.subtractions.ne_military_retirement_substraction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ne_itemized_deductions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ne_itemized_deductions", - "label": "NE itemized deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ne.tax.income.deductions.ne_itemized_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ne_standard_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ne_standard_deduction", - "label": "NE standard deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ne.tax.income.deductions.ne_standard_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ne_base_standard_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ne_base_standard_deduction", - "label": "Nebraska standard deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ne.tax.income.deductions.ne_base_standard_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wa_capital_gains_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wa_capital_gains_tax", - "label": "Washington capital gains tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wa.tax.income.wa_capital_gains_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wa_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wa_income_tax", - "label": "Washington income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wa.tax.income.wa_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["wa_income_tax_before_refundable_credits"], - "subtracts": ["wa_refundable_credits"], - "hidden_input": false - }, - "wa_income_tax_before_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wa_income_tax_before_refundable_credits", - "label": "Washington income tax before refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wa.tax.income.wa_income_tax_before_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["wa_capital_gains_tax"], - "subtracts": null, - "hidden_input": false - }, - "wa_working_families_tax_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wa_working_families_tax_credit", - "label": "Washington Working Families Tax Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wa.tax.income.credits.wa_working_families_tax_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wa_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wa_refundable_credits", - "label": "Washington refundable tax credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wa.tax.income.credits.wa_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.wa.tax.income.credits.refundable", - "subtracts": null, - "hidden_input": false - }, - "wa_tanf_countable_resources": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wa_tanf_countable_resources", - "label": "Countable resources for Washington TANF", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wa.dshs.tanf.wa_tanf_countable_resources", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wa_tanf_resources_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "wa_tanf_resources_eligible", - "label": "Washington TANF resources eligible", - "category": null, - "unit": null, - "moduleName": "gov.states.wa.dshs.tanf.wa_tanf_resources_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hi_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "hi_refundable_credits", - "label": "Hawaii refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.hi.tax.income.hi_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.hi.tax.income.credits.refundable", - "subtracts": null, - "hidden_input": false - }, - "hi_taxable_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "hi_taxable_income", - "label": "Hawaii taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.hi.tax.income.hi_taxable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hi_subtractions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "hi_subtractions", - "label": "Hawaii subtractions from federal adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.hi.tax.income.hi_subtractions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.hi.tax.income.subtractions.subtractions", - "subtracts": null, - "hidden_input": false - }, - "hi_additions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "hi_additions", - "label": "Hawaii additions to federal adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.hi.tax.income.hi_additions", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hi_agi": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "hi_agi", - "label": "Hawaii adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.hi.tax.income.hi_agi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["hi_additions", "adjusted_gross_income"], - "subtracts": ["hi_subtractions"], - "hidden_input": false - }, - "hi_income_tax_before_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "hi_income_tax_before_non_refundable_credits", - "label": "Hawaii income tax before non-refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.hi.tax.income.hi_income_tax_before_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hi_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "hi_non_refundable_credits", - "label": "Hawaii non-refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.hi.tax.income.hi_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.hi.tax.income.credits.non_refundable", - "subtracts": null, - "hidden_input": false - }, - "hi_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "hi_income_tax", - "label": "Hawaii income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.hi.tax.income.hi_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["hi_income_tax_before_refundable_credits"], - "subtracts": ["hi_refundable_credits"], - "hidden_input": false - }, - "hi_withheld_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "hi_withheld_income_tax", - "label": "Hawaii withheld income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.hi.tax.income.hi_withheld_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hi_income_tax_before_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "hi_income_tax_before_refundable_credits", - "label": "Hawaii income tax before refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.hi.tax.income.hi_income_tax_before_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hi_eitc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "hi_eitc", - "label": "Hawaii earned income tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.hi.tax.income.credits.hi_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hi_cdcc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "hi_cdcc", - "label": "Hawaii child and dependent care credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.hi.tax.income.credits.cdcc.hi_cdcc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hi_cdcc_min_head_spouse_earned": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "hi_cdcc_min_head_spouse_earned", - "label": "Hawaii minimum income between head and spouse for the CDCC", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.hi.tax.income.credits.cdcc.dependent_care_benefit.hi_cdcc_min_head_spouse_earned", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hi_cdcc_income_floor_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "hi_cdcc_income_floor_eligible", - "label": "Hawaii income floor eligible", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.hi.tax.income.credits.cdcc.dependent_care_benefit.hi_cdcc_income_floor_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hi_dependent_care_benefits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "hi_dependent_care_benefits", - "label": "Hawaii Dependent Care Benefits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.hi.tax.income.credits.cdcc.dependent_care_benefit.hi_dependent_care_benefits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hi_food_excise_credit_minor_child_count": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "hi_food_excise_credit_minor_child_count", - "label": "Minor child's number for the Hawaii Food/Excise Tax Credit", - "category": null, - "unit": null, - "moduleName": "gov.states.hi.tax.income.credits.food_excise.hi_food_excise_credit_minor_child_count", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hi_food_excise_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "hi_food_excise_credit", - "label": "Hawaii Food/Excise Tax Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.hi.tax.income.credits.food_excise.hi_food_excise_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hi_food_excise_credit_child_receiving_public_support": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "hi_food_excise_credit_child_receiving_public_support", - "label": "Child received support for the hawaii food excise credit", - "category": null, - "unit": null, - "moduleName": "gov.states.hi.tax.income.credits.food_excise.hi_food_excise_credit_child_receiving_public_support", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hi_food_excise_exemption_amount": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "hi_food_excise_exemption_amount", - "label": "Exemption amount for Hawaii Food/Excise Tax Credit", - "category": null, - "unit": null, - "moduleName": "gov.states.hi.tax.income.credits.food_excise.hi_food_excise_exemption_amount", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hi_food_excise_credit_minor_child_amount": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "hi_food_excise_credit_minor_child_amount", - "label": "Minor child amount for the Hawaii Food/Excise Tax Credit", - "category": null, - "unit": null, - "moduleName": "gov.states.hi.tax.income.credits.food_excise.hi_food_excise_credit_minor_child_amount", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hi_tax_credit_for_low_income_household_renters": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "hi_tax_credit_for_low_income_household_renters", - "label": "Hawaii low income household renters tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.hi.tax.income.credits.hi_low_income_household_renters.hi_low_income_household_renters_tax_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hi_tax_credit_for_low_income_household_renters_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "hi_tax_credit_for_low_income_household_renters_eligible", - "label": "Eligible for the Hawaii low income household renters tax credit", - "category": null, - "unit": null, - "moduleName": "gov.states.hi.tax.income.credits.hi_low_income_household_renters.hi_tax_credit_for_low_income_household_renters_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hi_regular_exemptions": { - "documentation": "https://files.hawaii.gov/tax/forms/2022/n11ins.pdf#page=20", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "hi_regular_exemptions", - "label": "Hawaii regular exemptions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.hi.tax.income.exemptions.hi_regular_exemptions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hi_exemptions": { - "documentation": "https://files.hawaii.gov/tax/forms/2022/n11ins.pdf#page=20", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "hi_exemptions", - "label": "Hawaii exemptions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.hi.tax.income.exemptions.hi_exemptions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hi_disabled_exemptions": { - "documentation": "https://files.hawaii.gov/tax/forms/2022/n11ins.pdf#page=20", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "hi_disabled_exemptions", - "label": "Hawaii disabled exemptions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.hi.tax.income.exemptions.hi_disabled_exemptions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hi_military_pay_exclusion": { - "documentation": "https://files.hawaii.gov/tax/forms/2022/n11ins.pdf#page=13", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "hi_military_pay_exclusion", - "label": "Hawaii military reserve or national guard duty pay exclusion", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.hi.tax.income.subtractions.hi_military_pay_exclusion", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hi_alternative_tax_on_capital_gains_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "hi_alternative_tax_on_capital_gains_eligible", - "label": "Eligible for the Hawaii alternative tax on capital gains", - "category": null, - "unit": null, - "moduleName": "gov.states.hi.tax.income.alternative_tax.hi_alternative_tax_on_capital_gains_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hi_alternative_tax_on_capital_gains": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "hi_alternative_tax_on_capital_gains", - "label": "Hawaii alternative tax on capital gains", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.hi.tax.income.alternative_tax.hi_alternative_tax_on_capital_gains", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hi_taxable_income_for_alternative_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "hi_taxable_income_for_alternative_tax", - "label": "Hawaii eligible capital gains for the alternative tax capital gains", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.hi.tax.income.alternative_tax.hi_taxable_income_for_alternative_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hi_deductions": { - "documentation": "https://files.hawaii.gov/tax/forms/2022/n11ins.pdf#page=15https://files.hawaii.gov/tax/forms/2022/n11ins.pdf#page=20", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "hi_deductions", - "label": "Hawaii deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.hi.tax.income.deductions.hi_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hi_itemized_deductions": { - "documentation": "https://files.hawaii.gov/tax/forms/2022/n11ins.pdf#page=15https://files.hawaii.gov/tax/forms/2022/n11ins.pdf#page=32", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "hi_itemized_deductions", - "label": "Hawaii itemized deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.hi.tax.income.deductions.itemized.hi_itemized_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hi_interest_deduction": { - "documentation": "https://files.hawaii.gov/tax/forms/2022/n11ins.pdf#page=17https://files.hawaii.gov/tax/forms/2022/n11ins.pdf#page=32", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "hi_interest_deduction", - "label": "Hawaii interest deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.hi.tax.income.deductions.itemized.hi_interest_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["investment_interest_expense", "mortgage_interest"], - "subtracts": null, - "hidden_input": false - }, - "hi_salt_deduction": { - "documentation": "https://files.hawaii.gov/tax/forms/2022/n11ins.pdf#page=18https://files.hawaii.gov/tax/forms/2022/n11ins.pdf#page=32", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "hi_salt_deduction", - "label": "Hawaii state and local tax deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.hi.tax.income.deductions.itemized.hi_salt_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["state_and_local_sales_or_income_tax", "real_estate_taxes"], - "subtracts": null, - "hidden_input": false - }, - "hi_reduced_itemized_deductions": { - "documentation": "https://files.hawaii.gov/tax/forms/2022/n11ins.pdf#page=15https://files.hawaii.gov/tax/forms/2022/n11ins.pdf#page=32", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "hi_reduced_itemized_deductions", - "label": "Hawaii reduced itemized deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.hi.tax.income.deductions.itemized.hi_reduced_itemized_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hi_medical_expense_deduction": { - "documentation": "https://files.hawaii.gov/tax/forms/2022/n11ins.pdf#page=15https://files.hawaii.gov/tax/forms/2022/n11ins.pdf#page=32", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "hi_medical_expense_deduction", - "label": "Hawaii medical expense deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.hi.tax.income.deductions.itemized.hi_medical_expense_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hi_casualty_loss_deduction": { - "documentation": "https://files.hawaii.gov/tax/forms/2022/n11ins.pdf#page=18https://files.hawaii.gov/tax/forms/2022/n11ins.pdf#page=32", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "hi_casualty_loss_deduction", - "label": "Hawaii casualty loss deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.hi.tax.income.deductions.itemized.hi_casualty_loss_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hi_total_itemized_deductions": { - "documentation": "https://files.hawaii.gov/tax/forms/2022/n11ins.pdf#page=15https://files.hawaii.gov/tax/forms/2022/n11ins.pdf#page=32", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "hi_total_itemized_deductions", - "label": "Hawaii total itemized deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.hi.tax.income.deductions.itemized.hi_total_itemized_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.hi.tax.income.deductions.itemized.sources", - "subtracts": null, - "hidden_input": false - }, - "hi_standard_deduction": { - "documentation": "https://files.hawaii.gov/tax/forms/2022/n11ins.pdf", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "hi_standard_deduction", - "label": "Hawaii standard deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.hi.tax.income.deductions.standard.hi_standard_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "state_sales_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "state_sales_tax", - "label": "State sales tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.tax.sales.state_sales_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "state_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "state_refundable_credits", - "label": "state refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.tax.income.state_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.household.state_refundable_credits", - "subtracts": null, - "hidden_input": false - }, - "state_itemized_deductions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "state_itemized_deductions", - "label": "State itemized deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.tax.income.state_itemized_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.household.state_itemized_deductions", - "subtracts": null, - "hidden_input": false - }, - "state_standard_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "state_standard_deduction", - "label": "State standard deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.tax.income.state_standard_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.household.state_standard_deductions", - "subtracts": null, - "hidden_input": false - }, - "state_eitc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "state_eitc", - "label": "State Earned Income Tax Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.tax.income.state_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.household.state_eitcs", - "subtracts": null, - "hidden_input": false - }, - "state_agi": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "state_agi", - "label": "State adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.tax.income.state_agi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.household.state_agis", - "subtracts": null, - "hidden_input": false - }, - "state_property_tax_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "state_property_tax_credit", - "label": "State Property Tax Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.tax.income.state_property_tax_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.household.state_property_tax_credits", - "subtracts": null, - "hidden_input": false - }, - "state_withheld_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "state_withheld_income_tax", - "label": "state income tax before refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.tax.income.state_withheld_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.household.state_withheld_income_tax", - "subtracts": null, - "hidden_input": false - }, - "state_cdcc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "state_cdcc", - "label": "State Child and Dependent Care Tax Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.tax.income.state_cdcc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.household.state_cdccs", - "subtracts": null, - "hidden_input": false - }, - "state_ctc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "state_ctc", - "label": "State Child Tax Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.tax.income.state_ctc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.household.state_ctcs", - "subtracts": null, - "hidden_input": false - }, - "state_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "state_income_tax", - "label": "state income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.tax.income.state_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ar_standard_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ar_standard_deduction", - "label": "Arkansas standard deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.tax.income._generate_state_mfs_variables", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ar_itemized_deductions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ar_itemized_deductions", - "label": "Arkansas itemized deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.tax.income._generate_state_mfs_variables", - "indexInModule": 1, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ar_taxable_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ar_taxable_income", - "label": "Arkansas taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.tax.income._generate_state_mfs_variables", - "indexInModule": 2, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ar_agi": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ar_agi", - "label": "Arkansas adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.tax.income._generate_state_mfs_variables", - "indexInModule": 3, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_taxable_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "dc_taxable_income", - "label": "DC taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.tax.income._generate_state_mfs_variables", - "indexInModule": 4, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "de_standard_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "de_standard_deduction", - "label": "Delaware standard deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.tax.income._generate_state_mfs_variables", - "indexInModule": 5, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "de_itemized_deductions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "de_itemized_deductions", - "label": "Delaware itemized deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.tax.income._generate_state_mfs_variables", - "indexInModule": 6, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "de_taxable_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "de_taxable_income", - "label": "Delaware taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.tax.income._generate_state_mfs_variables", - "indexInModule": 7, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "de_agi": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "de_agi", - "label": "Delaware adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.tax.income._generate_state_mfs_variables", - "indexInModule": 8, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ia_standard_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_standard_deduction", - "label": "Iowa standard deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.tax.income._generate_state_mfs_variables", - "indexInModule": 9, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ia_itemized_deductions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_itemized_deductions", - "label": "Iowa itemized deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.tax.income._generate_state_mfs_variables", - "indexInModule": 10, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ia_taxable_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_taxable_income", - "label": "Iowa taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.tax.income._generate_state_mfs_variables", - "indexInModule": 11, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ia_agi": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_agi", - "label": "Iowa adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.tax.income._generate_state_mfs_variables", - "indexInModule": 12, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ky_standard_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ky_standard_deduction", - "label": "Kentucky standard deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.tax.income._generate_state_mfs_variables", - "indexInModule": 13, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ky_itemized_deductions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ky_itemized_deductions", - "label": "Kentucky itemized deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.tax.income._generate_state_mfs_variables", - "indexInModule": 14, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ky_taxable_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ky_taxable_income", - "label": "Kentucky taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.tax.income._generate_state_mfs_variables", - "indexInModule": 15, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ms_standard_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ms_standard_deduction", - "label": "Mississippi standard deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.tax.income._generate_state_mfs_variables", - "indexInModule": 16, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ms_itemized_deductions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ms_itemized_deductions", - "label": "Mississippi itemized deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.tax.income._generate_state_mfs_variables", - "indexInModule": 17, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ms_taxable_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ms_taxable_income", - "label": "Mississippi taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.tax.income._generate_state_mfs_variables", - "indexInModule": 18, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_standard_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_standard_deduction", - "label": "Montana standard deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.tax.income._generate_state_mfs_variables", - "indexInModule": 19, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_itemized_deductions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_itemized_deductions", - "label": "Montana itemized deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.tax.income._generate_state_mfs_variables", - "indexInModule": 20, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_taxable_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_taxable_income", - "label": "Montana taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.tax.income._generate_state_mfs_variables", - "indexInModule": 21, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "state_income_tax_before_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "state_income_tax_before_refundable_credits", - "label": "state income tax before refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.tax.income.state_income_tax_before_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.household.state_income_tax_before_refundable_credits", - "subtracts": null, - "hidden_input": false - }, - "state_taxable_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "state_taxable_income", - "label": "State taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.tax.income.state_taxable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.household.state_taxable_incomes", - "subtracts": null, - "hidden_input": false - }, - "nh_education_tax_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nh_education_tax_credit", - "label": "New Hampshire Education Tax Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nh.tax.credits.nh_education_tax_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nh_income_tax_before_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nh_income_tax_before_refundable_credits", - "label": "New Hampshire income tax before refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nh.tax.income.nh_income_tax_before_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nh_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nh_income_tax", - "label": "New Hampshire income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nh.tax.income.nh_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["nh_income_tax_before_refundable_credits"], - "subtracts": ["nh_refundable_credits"], - "hidden_input": false - }, - "nh_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nh_refundable_credits", - "label": "New Hampshire refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nh.tax.income.nh_refundable_credits", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nh_taxable_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nh_taxable_income", - "label": "New Hampshire taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nh.tax.income.nh_taxable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["dividend_income", "interest_income"], - "subtracts": ["nh_total_exemptions"], - "hidden_input": false - }, - "nh_base_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nh_base_exemption", - "label": "New Hampshire base exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nh.tax.income.exemptions.nh_base_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nh_old_age_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nh_old_age_exemption", - "label": "New Hampshire old age exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nh.tax.income.exemptions.nh_old_age_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nh_total_exemptions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nh_total_exemptions", - "label": "New Hampshire total exemption allowance", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nh.tax.income.exemptions.nh_total_exemptions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "nh_base_exemption", - "nh_blind_exemption", - "nh_disabled_exemption", - "nh_old_age_exemption" - ], - "subtracts": null, - "hidden_input": false - }, - "nh_disabled_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nh_disabled_exemption", - "label": "New Hampshire disabled exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nh.tax.income.exemptions.nh_disabled_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nh_blind_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nh_blind_exemption", - "label": "New Hampshire blind exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nh.tax.income.exemptions.nh_blind_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mo_tanf_income_limit": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mo_tanf_income_limit", - "label": "Missouri TANF income limit / maximum benefit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mo.dss.tanf.mo_tanf_income_limit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mo_withheld_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mo_withheld_income_tax", - "label": "Missouri withheld income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mo.tax.income.mo_withheld_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mo_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mo_non_refundable_credits", - "label": "Missouri non-refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mo.tax.income.credits.mo_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.mo.tax.income.credits.non_refundable", - "subtracts": null, - "hidden_input": false - }, - "mo_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mo_refundable_credits", - "label": "Missouri refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mo.tax.income.credits.mo_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.mo.tax.income.credits.refundable", - "subtracts": null, - "hidden_input": false - }, - "mo_wftc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mo_wftc", - "label": "Missouri Working Families Tax Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mo.tax.income.credits.mo_wftc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mo_property_tax_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mo_property_tax_credit", - "label": "Missouri property tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mo.tax.income.credits.property_tax.mo_property_tax_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mo_ptc_net_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mo_ptc_net_income", - "label": "Missouri property tax credit net income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mo.tax.income.credits.property_tax.mo_ptc_net_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mo_ptc_gross_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mo_ptc_gross_income", - "label": "Missouri property tax credit gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mo.tax.income.credits.property_tax.mo_ptc_gross_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mo_ptc_income_offset": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mo_ptc_income_offset", - "label": "Missouri property tax credit gross income offset amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mo.tax.income.credits.property_tax.mo_ptc_income_offset", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mo_ptc_taxunit_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mo_ptc_taxunit_eligible", - "label": "Missouri property tax credit taxunit eligible", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mo.tax.income.credits.property_tax.mo_ptc_taxunit_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mo_adjusted_gross_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mo_adjusted_gross_income", - "label": "Missouri adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mo.tax.income.adjusted_gross_income.mo_adjusted_gross_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mo_net_state_income_taxes": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mo_net_state_income_taxes", - "label": "Missouri net state income taxes", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mo.tax.income.taxable_income.mo_net_state_income_taxes", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mo_taxable_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mo_taxable_income", - "label": "Missouri AGI minus deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mo.tax.income.taxable_income.mo_taxable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mo_qualified_health_insurance_premiums": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mo_qualified_health_insurance_premiums", - "label": "Missouri qualified healh insurance premiums", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mo.tax.income.subtractions.mo_qualified_health_insurance_premiums", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mo_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mo_income_tax", - "label": "Missouri income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mo.tax.income.income_tax.mo_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["mo_income_tax_before_refundable_credits"], - "subtracts": ["mo_refundable_credits"], - "hidden_input": false - }, - "mo_income_tax_before_credits": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mo_income_tax_before_credits", - "label": "Missouri income tax before credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mo.tax.income.income_tax.mo_income_tax_before_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mo_income_tax_exempt": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mo_income_tax_exempt", - "label": "Missouri income tax exempt", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mo.tax.income.income_tax.mo_income_tax_exempt", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mo_income_tax_before_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mo_income_tax_before_refundable_credits", - "label": "Missouri income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mo.tax.income.income_tax.mo_income_tax_before_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mo_federal_income_tax_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mo_federal_income_tax_deduction", - "label": "Missouri Federal income tax deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mo.tax.income.deductions.mo_federal_income_tax_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mo_pension_and_ss_or_ssd_deduction_section_a": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mo_pension_and_ss_or_ssd_deduction_section_a", - "label": "Missouri Pension and Social Security or SS Disability Deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mo.tax.income.deductions.mo_pension_and_ss_or_ssd_deduction_section_a", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mo_pension_and_ss_or_ssd_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mo_pension_and_ss_or_ssd_deduction", - "label": "Missouri Pension and Social Security or SS Disability Deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mo.tax.income.deductions.mo_pension_and_ss_or_ssd_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mo_itemized_deductions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mo_itemized_deductions", - "label": "Sum of itemized deductions applicable to Missouri taxable income calculation", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mo.tax.income.deductions.mo_itemized_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mo_pension_and_ss_or_ssd_deduction_section_b": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mo_pension_and_ss_or_ssd_deduction_section_b", - "label": "Missouri Pension and Social Security or SS Disability Deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mo.tax.income.deductions.mo_pension_and_ss_or_ssd_deduction_section_b", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mo_business_income_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mo_business_income_deduction", - "label": "Missouri business income deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mo.tax.income.deductions.mo_business_income_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mo_pension_and_ss_or_ssd_deduction_section_c": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mo_pension_and_ss_or_ssd_deduction_section_c", - "label": "Missouri Pension and Social Security or SS Disability Deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mo.tax.income.deductions.mo_pension_and_ss_or_ssd_deduction_section_c", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nc_income_tax_before_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nc_income_tax_before_credits", - "label": "North Carolina income tax before credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nc.tax.income.nc_income_tax_before_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nc_withheld_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "nc_withheld_income_tax", - "label": "North Carolina withheld income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nc.tax.income.nc_withheld_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nc_additions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nc_additions", - "label": "North Carolina additions to the adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nc.tax.income.nc_additions", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nc_taxable_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nc_taxable_income", - "label": "North Carolina taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nc.tax.income.nc_taxable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["adjusted_gross_income", "nc_additions"], - "subtracts": ["nc_deductions"], - "hidden_input": false - }, - "nc_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nc_income_tax", - "label": "North Carolina income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nc.tax.income.nc_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nc_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nc_non_refundable_credits", - "label": "North Carolina non-refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nc.tax.income.nc_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.nc.tax.income.credits.non_refundable", - "subtracts": null, - "hidden_input": false - }, - "nc_use_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nc_use_tax", - "label": "North Carolina use tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nc.tax.income.nc_use_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nc_ctc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nc_ctc", - "label": "North Carolina credit for children", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nc.tax.income.credits.nc_ctc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nc_deductions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nc_deductions", - "label": "North Carolina deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nc.tax.income.deductions.nc_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.nc.tax.income.deductions.deductions", - "subtracts": null, - "hidden_input": false - }, - "nc_standard_or_itemized_deductions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nc_standard_or_itemized_deductions", - "label": "North Carolina standard or itemized deductions amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nc.tax.income.deductions.nc_standard_or_itemized_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nc_itemized_deductions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nc_itemized_deductions", - "label": "North Carolina itemized deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nc.tax.income.deductions.nc_itemized_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nc_child_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nc_child_deduction", - "label": "North Carolina child deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nc.tax.income.deductions.nc_child_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nc_standard_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nc_standard_deduction", - "label": "North Carolina standard deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nc.tax.income.deductions.nc_standard_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nc_military_retirement_deduction_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "nc_military_retirement_deduction_eligible", - "label": "North Carolina military retirement deduction eligible", - "category": null, - "unit": null, - "moduleName": "gov.states.nc.tax.income.deductions.military_retirement.nc_military_retirement_deduction_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nc_military_retirement_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nc_military_retirement_deduction", - "label": "North Carolina military retirement deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nc.tax.income.deductions.military_retirement.nc_military_retirement_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nc_scca_child_age_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "nc_scca_child_age_eligible", - "label": "North Carolina child age eligibility for Subsidized Child Care Assistance (SCCA) program", - "category": null, - "unit": null, - "moduleName": "gov.states.nc.ncdhhs.scca.nc_scca_child_age_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nc_scca_has_eligible_child": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "nc_scca_has_eligible_child", - "label": "Any eligible child for North Carolina Subsidized Child Care Assistance program", - "category": null, - "unit": null, - "moduleName": "gov.states.nc.ncdhhs.scca.nc_scca_has_eligible_child", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": ["nc_scca_child_age_eligible"], - "subtracts": null, - "hidden_input": false - }, - "nc_scca_market_rate": { - "documentation": null, - "entity": "person", - "valueType": "int", - "definitionPeriod": "month", - "name": "nc_scca_market_rate", - "label": "North Carolina Subsidized Child Care Assistance (SCCA) program market rate", - "category": null, - "unit": null, - "moduleName": "gov.states.nc.ncdhhs.scca.nc_scca_market_rate", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nc_scca": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "nc_scca", - "label": "North Carolina Subsidized Child Care Assistance Program", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nc.ncdhhs.scca.nc_scca", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nc_scca_age_group": { - "documentation": null, - "entity": "person", - "valueType": "int", - "definitionPeriod": "year", - "name": "nc_scca_age_group", - "label": "North Carolina SCCA age group", - "category": null, - "unit": null, - "moduleName": "gov.states.nc.ncdhhs.scca.nc_scca_age_group", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nc_scca_countable_income": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "nc_scca_countable_income", - "label": "North Carolina Subsidized Child Care Assistance program countable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nc.ncdhhs.scca.nc_scca_countable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.nc.ncdhhs.scca.income.sources", - "subtracts": null, - "hidden_input": false - }, - "nc_scca_is_school_age": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "nc_scca_is_school_age", - "label": "North Carolina SCCA school age determination", - "category": null, - "unit": null, - "moduleName": "gov.states.nc.ncdhhs.scca.nc_scca_is_school_age", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nc_scca_fpg_rate": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nc_scca_fpg_rate", - "label": "North Carolina Subsidized Child Care Assistance (SCCA) program income limits compared to the FPL", - "category": null, - "unit": null, - "moduleName": "gov.states.nc.ncdhhs.scca.nc_scca_fpg_rate", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nc_scca_parent_fee": { - "documentation": null, - "entity": "spm_unit", - "valueType": "int", - "definitionPeriod": "month", - "name": "nc_scca_parent_fee", - "label": "North Carolina Subsidized Child Care Assistance Program parent fee", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nc.ncdhhs.scca.nc_scca_parent_fee", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nc_scca_entry_income_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "nc_scca_entry_income_eligible", - "label": "North Carolina entry income eligibility for Subsidized Child Care Assistance program", - "category": null, - "unit": null, - "moduleName": "gov.states.nc.ncdhhs.scca.entry.nc_scca_entry_income_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nc_scca_entry_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "nc_scca_entry_eligible", - "label": "North Carolina entry eligibility for Subsidized Child Care Assistance Program", - "category": null, - "unit": null, - "moduleName": "gov.states.nc.ncdhhs.scca.entry.nc_scca_entry_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nc_tanf_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "nc_tanf_eligible", - "label": "North Carolina TANF eligible", - "category": null, - "unit": null, - "moduleName": "gov.states.nc.ncdhhs.tanf.nc_tanf_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nc_demographic_tanf_eligible": { - "documentation": "Whether any person in a family applying for the Temporary Assistance for Needy Families program meets demographic requirements.", - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "nc_demographic_tanf_eligible", - "label": "North Carolina Demographic eligibility for TANF", - "category": null, - "unit": null, - "moduleName": "gov.states.nc.ncdhhs.tanf.nc_demographic_tanf_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nc_tanf": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nc_tanf", - "label": "North Carolina TANF", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nc.ncdhhs.tanf.nc_tanf", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nc_tanf_reduced_need_standard": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nc_tanf_reduced_need_standard", - "label": "North Carolina TANF reduced need standard", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nc.ncdhhs.tanf.nc_tanf_reduced_need_standard", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nc_tanf_income_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "nc_tanf_income_eligible", - "label": "North Carolina TANF income eligible", - "category": null, - "unit": null, - "moduleName": "gov.states.nc.ncdhhs.tanf.nc_tanf_income_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nc_tanf_need_standard": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nc_tanf_need_standard", - "label": "North Carolina TANF need standard", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nc.ncdhhs.tanf.nc_tanf_need_standard", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nc_tanf_countable_gross_unearned_income": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nc_tanf_countable_gross_unearned_income", - "label": "North Carolina TANF countable gross unearned income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nc.ncdhhs.tanf.income.nc_tanf_countable_gross_unearned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nc_tanf_countable_earned_income": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nc_tanf_countable_earned_income", - "label": "North Carolina TANF countable earned income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nc.ncdhhs.tanf.income.nc_tanf_countable_earned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.nc.ncdhhs.tanf.income.earned", - "subtracts": null, - "hidden_input": false - }, - "sc_taxable_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "sc_taxable_income", - "label": "South Carolina taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.sc.tax.income.sc_taxable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "sc_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "sc_income_tax", - "label": "South Carolina income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.sc.tax.income.sc_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["sc_income_tax_before_refundable_credits"], - "subtracts": ["sc_refundable_credits"], - "hidden_input": false - }, - "sc_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "sc_refundable_credits", - "label": "South Carolina refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.sc.tax.income.sc_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.sc.tax.income.credits.refundable", - "subtracts": null, - "hidden_input": false - }, - "sc_income_tax_before_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "sc_income_tax_before_refundable_credits", - "label": "South Carolina income tax before refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.sc.tax.income.sc_income_tax_before_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "sc_withheld_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "sc_withheld_income_tax", - "label": "South Carolina withheld income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.sc.tax.income.sc_withheld_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "sc_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "sc_non_refundable_credits", - "label": "South Carolina non-refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.sc.tax.income.sc_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.sc.tax.income.credits.non_refundable", - "subtracts": null, - "hidden_input": false - }, - "sc_income_tax_before_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "sc_income_tax_before_non_refundable_credits", - "label": "South Carolina income tax before non-refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.sc.tax.income.sc_income_tax_before_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "sc_eitc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "sc_eitc", - "label": "South Carolina EITC", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.sc.tax.income.credits.eitc.sc_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "sc_cdcc": { - "documentation": "South Carolina Child and Dependent Care Credit", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "sc_cdcc", - "label": "South Carolina CDCC", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.sc.tax.income.credits.cdcc.sc_cdcc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "sc_two_wage_earner_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "sc_two_wage_earner_credit", - "label": "South Carolina two wage earner credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.sc.tax.income.credits.two_wage_earner.sc_two_wage_earner_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "sc_gross_earned_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "sc_gross_earned_income", - "label": "South Carolina gross earned income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.sc.tax.income.credits.two_wage_earner.sc_gross_earned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "sc_tuition_credit": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "sc_tuition_credit", - "label": "South Carolina Tuition Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.sc.tax.income.credits.college_tuition.sc_tuition_credit", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "sc_tuition_credit_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "sc_tuition_credit_eligible", - "label": "Eligible for the South Carolina Tuition Credit", - "category": null, - "unit": null, - "moduleName": "gov.states.sc.tax.income.credits.college_tuition.sc_tuition_credit_eligible", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "sc_dependent_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "sc_dependent_exemption", - "label": "South Carolina dependent exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.sc.tax.income.exemptions.sc_dependent_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "sc_senior_exemption_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "sc_senior_exemption_person", - "label": "South Carolina senior exemption for each person", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.sc.tax.income.exemptions.senior.sc_senior_exemption_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "sc_senior_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "sc_senior_exemption", - "label": "South Carolina senior exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.sc.tax.income.exemptions.senior.sc_senior_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["sc_senior_exemption_person"], - "subtracts": null, - "hidden_input": false - }, - "sc_subtractions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "sc_subtractions", - "label": "South Carolina subtractions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.sc.tax.income.subtractions.sc_subtractions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.sc.tax.income.subtractions.subtractions", - "subtracts": null, - "hidden_input": false - }, - "sc_military_deduction_indv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "sc_military_deduction_indv", - "label": "South Carolina military deduction for eligible individuals", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.sc.tax.income.subtractions.military_retirement.sc_military_deduction_indv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "sc_military_deduction_survivors": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "sc_military_deduction_survivors", - "label": "South Carolina military retirement deduction for survivors", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.sc.tax.income.subtractions.military_retirement.sc_military_deduction_survivors", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "sc_military_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "sc_military_deduction", - "label": "South Carolina military retirement deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.sc.tax.income.subtractions.military_retirement.sc_military_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["sc_military_deduction_indv", "sc_military_deduction_survivors"], - "subtracts": null, - "hidden_input": false - }, - "sc_retirement_cap": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "sc_retirement_cap", - "label": "South Carolina retirement income subtraction cap", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.sc.tax.income.subtractions.retirement.sc_retirement_cap", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "sc_retirement_deduction_survivors": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "sc_retirement_deduction_survivors", - "label": "South Carolina retirement deduction for survivors", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.sc.tax.income.subtractions.retirement.sc_retirement_deduction_survivors", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "sc_retirement_deduction_indv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "sc_retirement_deduction_indv", - "label": "South Carolina retirement deduction for eligible individuals", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.sc.tax.income.subtractions.retirement.sc_retirement_deduction_indv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "sc_retirement_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "sc_retirement_deduction", - "label": "South Carolina retirement deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.sc.tax.income.subtractions.retirement.sc_retirement_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["sc_retirement_deduction_indv", "sc_retirement_deduction_survivors"], - "subtracts": null, - "hidden_input": false - }, - "sc_additions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "sc_additions", - "label": "South Carolina additions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.sc.tax.income.additions.sc_additions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.sc.tax.income.additions.additions", - "subtracts": null, - "hidden_input": false - }, - "sc_state_tax_addback": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "sc_state_tax_addback", - "label": "South Carolina State Tax addback", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.sc.tax.income.additions.sc_state_tax_addback", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "sc_young_child_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "sc_young_child_deduction", - "label": "South Carolina young child deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.sc.tax.income.deductions.sc_young_child_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "sc_net_capital_gain_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "sc_net_capital_gain_deduction", - "label": "South Carolina net capital gain deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.sc.tax.income.deductions.net_capital_gain.sc_net_capital_gain_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ms_withheld_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ms_withheld_income_tax", - "label": "Mississippi withheld income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ms.tax.income.ms_withheld_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ms_prorate_fraction": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ms_prorate_fraction", - "label": "Share of Mississippi AGI within tax unit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ms.tax.income.ms_prorate_fraction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ms_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ms_income_tax", - "label": "Mississippi income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ms.tax.income.ms_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ms_files_separately": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ms_files_separately", - "label": "married couple files separately on Mississippi tax return", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ms.tax.income.ms_files_separately", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ms_income_tax_before_credits_joint": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ms_income_tax_before_credits_joint", - "label": "Mississippi income tax before credits when married couples file jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ms.tax.income.ms_income_tax_before_credits_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ms_agi_adjustments": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ms_agi_adjustments", - "label": "Mississippi adjustments to federal adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ms.tax.income.ms_agi_adjustments", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ms.tax.income.adjustments.adjustments", - "subtracts": null, - "hidden_input": false - }, - "ms_income_tax_before_credits_unit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ms_income_tax_before_credits_unit", - "label": "Mississippi income tax before credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ms.tax.income.ms_income_tax_before_credits_unit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ms_agi": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ms_agi", - "label": "Mississippi adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ms.tax.income.ms_agi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ms_income_tax_before_credits_indiv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ms_income_tax_before_credits_indiv", - "label": "Mississippi income tax before credits when married couples file separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ms.tax.income.ms_income_tax_before_credits_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ms_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ms_non_refundable_credits", - "label": "Mississippi non-refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ms.tax.income.ms_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ms.tax.income.credits.non_refundable", - "subtracts": null, - "hidden_input": false - }, - "ms_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ms_refundable_credits", - "label": "Mississippi refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ms.tax.income.ms_refundable_credits", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ms_retirement_income_exemption": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ms_retirement_income_exemption", - "label": "Mississippi retirement income exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ms.tax.income.adjustments.ms_retirement_income_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ms_self_employment_adjustment": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ms_self_employment_adjustment", - "label": "Mississippi self employment adjustment", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ms.tax.income.adjustments.ms_self_employment_adjustment", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ms_national_guard_or_reserve_pay_adjustment": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ms_national_guard_or_reserve_pay_adjustment", - "label": "Mississippi national guard or reserve pay adjustment", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ms.tax.income.adjustments.ms_national_guard_or_reserve_pay_adjustment", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ms_cdcc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ms_cdcc", - "label": "Mississippi child and dependent care credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ms.tax.income.credits.cdcc.ms_cdcc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ms_cdcc_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ms_cdcc_eligible", - "label": "Eligible for the Mississippi child and dependent care credit", - "category": null, - "unit": null, - "moduleName": "gov.states.ms.tax.income.credits.cdcc.ms_cdcc_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ms_charitable_contributions_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ms_charitable_contributions_credit", - "label": "Mississippi charitable contributions credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ms.tax.income.credits.charitable_contribution.ms_charitable_contributions_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ms_charitable_contributions_to_qualifying_foster_care_organizations": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ms_charitable_contributions_to_qualifying_foster_care_organizations", - "label": "Charitable contributions to qualifying foster care organizations in Mississippi", - "category": null, - "unit": null, - "moduleName": "gov.states.ms.tax.income.credits.charitable_contribution.ms_charitable_contributions_to_qualifying_foster_care_organizations", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ms_blind_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ms_blind_exemption", - "label": "Mississippi blind exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ms.tax.income.exemptions.ms_blind_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ms_regular_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ms_regular_exemption", - "label": "Mississippi regular exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ms.tax.income.exemptions.ms_regular_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ms_total_exemptions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ms_total_exemptions", - "label": "Mississippi total exemptions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ms.tax.income.exemptions.ms_total_exemptions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "ms_regular_exemption", - "ms_dependents_exemption", - "ms_aged_exemption", - "ms_blind_exemption" - ], - "subtracts": null, - "hidden_input": false - }, - "ms_dependents_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ms_dependents_exemption", - "label": "Mississippi qualified and other dependent children exemption", - "category": null, - "unit": null, - "moduleName": "gov.states.ms.tax.income.exemptions.ms_dependents_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ms_aged_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ms_aged_exemption", - "label": "Mississippi aged exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ms.tax.income.exemptions.ms_aged_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ms_total_exemptions_joint": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ms_total_exemptions_joint", - "label": "Mississippi total exemptions when married couples file jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ms.tax.income.exemptions.ms_total_exemptions_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ms_total_exemptions_indiv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ms_total_exemptions_indiv", - "label": "Mississippi total exemptions when married couples file separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ms.tax.income.exemptions.ms_total_exemptions_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ms_taxable_income_indiv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ms_taxable_income_indiv", - "label": "Mississippi taxable income when married couple file separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ms.tax.income.taxable_income.ms_taxable_income_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ms_taxable_income_joint": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ms_taxable_income_joint", - "label": "Mississippi taxable income when married couple file jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ms.tax.income.taxable_income.ms_taxable_income_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ms_pre_deductions_taxable_income_indiv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ms_pre_deductions_taxable_income_indiv", - "label": "Mississippi pre deductions taxable income when married couple file separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ms.tax.income.taxable_income.ms_pre_deductions_taxable_income_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ms_tax_unit_itemizes": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ms_tax_unit_itemizes", - "label": "Whether the tax unit in Mississippi itemizes the deductions when married filing separately", - "category": null, - "unit": null, - "moduleName": "gov.states.ms.tax.income.deductions.ms_tax_unit_itemizes", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ms_deductions_indiv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ms_deductions_indiv", - "label": "Mississippi deductions when married couples file separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ms.tax.income.deductions.ms_deductions_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ms_deductions_joint": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ms_deductions_joint", - "label": "Mississippi deductions when married couples file jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ms.tax.income.deductions.ms_deductions_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ms_itemized_deductions_joint": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ms_itemized_deductions_joint", - "label": "Mississippi itemized deductions for joint couples", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ms.tax.income.deductions.itemized.ms_itemized_deductions_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ms_itemized_deductions_unit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ms_itemized_deductions_unit", - "label": "Mississippi itemized deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ms.tax.income.deductions.itemized.ms_itemized_deductions_unit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["itemized_deductions_less_salt", "misc_deduction", "ms_real_estate_tax_deduction"], - "subtracts": null, - "hidden_input": false - }, - "ms_itemized_deductions_indiv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ms_itemized_deductions_indiv", - "label": "Mississippi itemized deductions for individual couples", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ms.tax.income.deductions.itemized.ms_itemized_deductions_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ms_real_estate_tax_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ms_real_estate_tax_deduction", - "label": "Mississippi real estate tax deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ms.tax.income.deductions.itemized.ms_real_estate_tax_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ms_standard_deduction_indiv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ms_standard_deduction_indiv", - "label": "Mississippi standard deduction when married couples file separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ms.tax.income.deductions.standard.ms_standard_deduction_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ms_standard_deduction_joint": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ms_standard_deduction_joint", - "label": "Mississippi personal standard deduction for married couples filing jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ms.tax.income.deductions.standard.ms_standard_deduction_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_state_living_arrangement": { - "documentation": null, - "entity": "household", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "ma_state_living_arrangement", - "label": "Massachusetts State Living Arrangement", - "category": null, - "unit": null, - "moduleName": "gov.states.ma.dta.ssp.ma_state_living_arrangement", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": "FULL_COST", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "FULL_COST", - "label": "Full cost of living" - }, - { - "value": "SHARED_EXPENSES", - "label": "Shared expenses" - }, - { - "value": "HOUSEHOLD_OF_ANOTHER", - "label": "Household of another" - }, - { - "value": "REST_HOME", - "label": "Rest home" - }, - { - "value": "MEDICAID_FACILITY", - "label": "Medicaid facility" - }, - { - "value": "ASSISTED_LIVING", - "label": "Assisted living" - } - ] - }, - "ma_state_supplement": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_state_supplement", - "label": "Massachusetts State Supplement payment amount", - "category": null, - "unit": null, - "moduleName": "gov.states.ma.dta.ssp.ma_state_supplement", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_maximum_state_supplement": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_maximum_state_supplement", - "label": "Massachusetts maximum State Supplement payment amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.dta.ssp.ma_maximum_state_supplement", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_tcap_gross_unearned_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "ma_tcap_gross_unearned_income", - "label": "Massachusetts Transitional Cash Assistance Program (TCAP) gross unearned income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.dta.tcap.ma_tcap_gross_unearned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ma.dta.tcap.gross_income.unearned", - "subtracts": null, - "hidden_input": false - }, - "ma_tcap_gross_earned_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "ma_tcap_gross_earned_income", - "label": "Massachusetts Transitional Cash Assistance Program (TCAP) gross earned income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.dta.tcap.ma_tcap_gross_earned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ma.dta.tcap.gross_income.earned", - "subtracts": null, - "hidden_input": false - }, - "ma_tafdc_exceeds_eaedc": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "ma_tafdc_exceeds_eaedc", - "label": "Whether the TAFDC value exceeds the EAEDC value", - "category": null, - "unit": null, - "moduleName": "gov.states.ma.dta.tcap.ma_tafdc_exceeds_eaedc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_eaedc_countable_assets": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "ma_eaedc_countable_assets", - "label": "Massachusetts EAEDC countable assets", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.dta.tcap.eaedc.ma_eaedc_countable_assets", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ma.dta.tcap.eaedc.assets.sources", - "subtracts": null, - "hidden_input": false - }, - "ma_eaedc_if_claimed": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "ma_eaedc_if_claimed", - "label": "Massachusetts EAEDC benefit amount if claimed", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.dta.tcap.eaedc.ma_eaedc_if_claimed", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ma_eaedc_standard_assistance"], - "subtracts": ["ma_eaedc_net_income"], - "hidden_input": false - }, - "ma_eaedc": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "ma_eaedc", - "label": "Massachusetts EAEDC", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.dta.tcap.eaedc.ma_eaedc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_eaedc_dependent_care_deduction": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "ma_eaedc_dependent_care_deduction", - "label": "Massachusetts EAEDC dependent care deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.dta.tcap.eaedc.dependent_care_deduction.ma_eaedc_dependent_care_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ma_eaedc_dependent_care_deduction_person"], - "subtracts": null, - "hidden_input": false - }, - "ma_eaedc_eligible_dependent": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "month", - "name": "ma_eaedc_eligible_dependent", - "label": "Eligible dependent for the Massachusetts EAEDC dependent care deduction", - "category": null, - "unit": null, - "moduleName": "gov.states.ma.dta.tcap.eaedc.dependent_care_deduction.ma_eaedc_eligible_dependent", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_eaedc_dependent_care_deduction_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "ma_eaedc_dependent_care_deduction_person", - "label": "Massachusetts EAEDC dependent care deduction for each person", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.dta.tcap.eaedc.dependent_care_deduction.ma_eaedc_dependent_care_deduction_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_eaedc_countable_earned_income": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "ma_eaedc_countable_earned_income", - "label": "Massachusetts EAEDC countable earned income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.dta.tcap.eaedc.income.ma_eaedc_countable_earned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_eaedc_net_income": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "ma_eaedc_net_income", - "label": "Massachusetts EAEDC net income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.dta.tcap.eaedc.income.ma_eaedc_net_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ma_tcap_gross_unearned_income", "ma_eaedc_countable_earned_income"], - "subtracts": null, - "hidden_input": false - }, - "ma_eaedc_living_arrangement": { - "documentation": null, - "entity": "spm_unit", - "valueType": "Enum", - "definitionPeriod": "month", - "name": "ma_eaedc_living_arrangement", - "label": "Massachusetts EAEDC living arrangement", - "category": null, - "unit": null, - "moduleName": "gov.states.ma.dta.tcap.eaedc.income.ma_eaedc_living_arrangement", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": "A", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "A", - "label": "A" - }, - { - "value": "B", - "label": "B" - }, - { - "value": "C", - "label": "C" - }, - { - "value": "D", - "label": "D" - }, - { - "value": "E", - "label": "E" - }, - { - "value": "F", - "label": "F" - }, - { - "value": "H", - "label": "H" - }, - { - "value": "NONE", - "label": "None" - } - ] - }, - "ma_eaedc_standard_assistance": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "ma_eaedc_standard_assistance", - "label": "Massachusetts EAEDC standard assistance", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.dta.tcap.eaedc.income.ma_eaedc_standard_assistance", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_eaedc_earned_income_after_disregard_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "ma_eaedc_earned_income_after_disregard_person", - "label": "Massachusetts EAEDC earned income after disregard for each person", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.dta.tcap.eaedc.income.ma_eaedc_earned_income_after_disregard_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_eaedc_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "ma_eaedc_eligible", - "label": "Eligible for the Massachusetts EAEDC", - "category": null, - "unit": null, - "moduleName": "gov.states.ma.dta.tcap.eaedc.eligibility.ma_eaedc_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_eaedc_income_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "ma_eaedc_income_eligible", - "label": "Eligible for the Massachusetts EAEDC based on income", - "category": null, - "unit": null, - "moduleName": "gov.states.ma.dta.tcap.eaedc.eligibility.financial.ma_eaedc_income_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_eaedc_assets_limit_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "ma_eaedc_assets_limit_eligible", - "label": "Eligible based on the asset limit for the Massachusetts EAEDC", - "category": null, - "unit": null, - "moduleName": "gov.states.ma.dta.tcap.eaedc.eligibility.financial.ma_eaedc_assets_limit_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_eaedc_financial_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "ma_eaedc_financial_eligible", - "label": "Financial eligible for Massachusetts EAEDC", - "category": null, - "unit": null, - "moduleName": "gov.states.ma.dta.tcap.eaedc.eligibility.financial.ma_eaedc_financial_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_eaedc_immigration_status_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "ma_eaedc_immigration_status_eligible", - "label": "Eligible for the Massachusetts EAEDC based on immigration status", - "category": null, - "unit": null, - "moduleName": "gov.states.ma.dta.tcap.eaedc.eligibility.non_financial.ma_eaedc_immigration_status_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_eaedc_eligible_disabled_head_or_spouse": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "ma_eaedc_eligible_disabled_head_or_spouse", - "label": "Disabled head or spouse present for Massachusetts EAEDC", - "category": null, - "unit": null, - "moduleName": "gov.states.ma.dta.tcap.eaedc.eligibility.non_financial.ma_eaedc_eligible_disabled_head_or_spouse", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_eaedc_eligible_elderly_present": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "ma_eaedc_eligible_elderly_present", - "label": "Eligible elderly present for the Massachusetts EAEDC", - "category": null, - "unit": null, - "moduleName": "gov.states.ma.dta.tcap.eaedc.eligibility.non_financial.ma_eaedc_eligible_elderly_present", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_eaedc_eligible_disabled_dependent_present": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "ma_eaedc_eligible_disabled_dependent_present", - "label": "Disabled dependent present for Massachusetts EAEDC", - "category": null, - "unit": null, - "moduleName": "gov.states.ma.dta.tcap.eaedc.eligibility.non_financial.ma_eaedc_eligible_disabled_dependent_present", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_eaedc_non_financial_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "ma_eaedc_non_financial_eligible", - "label": "Non-financial eligible for Massachusetts EAEDC", - "category": null, - "unit": null, - "moduleName": "gov.states.ma.dta.tcap.eaedc.eligibility.non_financial.ma_eaedc_non_financial_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_eaedc_eligible_caretaker_family": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "ma_eaedc_eligible_caretaker_family", - "label": "Eligible caretaker family for the Massachusetts EAEDC", - "category": null, - "unit": null, - "moduleName": "gov.states.ma.dta.tcap.eaedc.eligibility.non_financial.ma_eaedc_eligible_caretaker_family", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_tafdc": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "ma_tafdc", - "label": "Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC)", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.dta.tcap.tafdc.ma_tafdc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ma_tafdc_if_claimed"], - "subtracts": null, - "hidden_input": false - }, - "ma_tafdc_eligible_infant": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ma_tafdc_eligible_infant", - "label": "Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) eligible infant", - "category": null, - "unit": null, - "moduleName": "gov.states.ma.dta.tcap.tafdc.ma_tafdc_eligible_infant", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_tafdc_if_claimed": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "ma_tafdc_if_claimed", - "label": "Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) benefit amount if claimed", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.dta.tcap.tafdc.ma_tafdc_if_claimed", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "ma_tafdc_potential_main_benefit", - "ma_tafdc_clothing_allowance", - "ma_tafdc_infant_benefit" - ], - "subtracts": null, - "hidden_input": false - }, - "is_tafdc_related_to_head_or_spouse": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_tafdc_related_to_head_or_spouse", - "label": "Person is related to the head or spouse under the TAFDC regulations", - "category": null, - "unit": null, - "moduleName": "gov.states.ma.dta.tcap.tafdc.is_tafdc_related_to_head_or_spouse", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": true, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_tafdc_applicable_income_for_financial_eligibility": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_tafdc_applicable_income_for_financial_eligibility", - "label": "Applicable income for the Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) financial eligibility check", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.dta.tcap.tafdc.income.ma_tafdc_applicable_income_for_financial_eligibility", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ma_tafdc_earned_income_after_deductions", "ma_tafdc_countable_unearned_income"], - "subtracts": null, - "hidden_input": false - }, - "ma_tafdc_applicable_income_grant_amount": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "ma_tafdc_applicable_income_grant_amount", - "label": "Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) countable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.dta.tcap.tafdc.income.ma_tafdc_applicable_income_grant_amount", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ma_tafdc_countable_earned_income", "ma_tafdc_countable_unearned_income"], - "subtracts": null, - "hidden_input": false - }, - "ma_tafdc_countable_unearned_income": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "ma_tafdc_countable_unearned_income", - "label": "Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) countable unearned income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.dta.tcap.tafdc.income.unearned.ma_tafdc_countable_unearned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_tafdc_full_earned_income_disregard_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ma_tafdc_full_earned_income_disregard_eligible", - "label": "Is eligible for the full earned income disregard under the Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC)", - "category": null, - "unit": null, - "moduleName": "gov.states.ma.dta.tcap.tafdc.income.earned.ma_tafdc_full_earned_income_disregard_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_tafdc_countable_earned_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_tafdc_countable_earned_income", - "label": "Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) countable earned income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.dta.tcap.tafdc.income.earned.ma_tafdc_countable_earned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_tafdc_earned_income_after_deductions": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_tafdc_earned_income_after_deductions", - "label": "Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) earned income after deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.dta.tcap.tafdc.income.earned.ma_tafdc_earned_income_after_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_tafdc_partially_disregarded_earned_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "ma_tafdc_partially_disregarded_earned_income", - "label": "Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) partially disregarded earned income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.dta.tcap.tafdc.income.earned.ma_tafdc_partially_disregarded_earned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_tafdc_child_support_deduction": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "ma_tafdc_child_support_deduction", - "label": "Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) child support deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.dta.tcap.tafdc.income.deductions.ma_tafdc_child_support_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_tafdc_work_related_expense_deduction": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "ma_tafdc_work_related_expense_deduction", - "label": "Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) work-related expense deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.dta.tcap.tafdc.income.deductions.ma_tafdc_work_related_expense_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["gov.states.ma.dta.tcap.deductions.work_related_expenses.amount"], - "subtracts": null, - "hidden_input": false - }, - "ma_tafdc_dependent_care_deduction": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "ma_tafdc_dependent_care_deduction", - "label": "Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) dependent care deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.dta.tcap.tafdc.income.deductions.ma_tafdc_dependent_care_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ma_tafdc_dependent_care_deduction_person"], - "subtracts": null, - "hidden_input": false - }, - "ma_tafdc_dependent_care_deduction_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "ma_tafdc_dependent_care_deduction_person", - "label": "Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) dependent care deduction for each person", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.dta.tcap.tafdc.income.deductions.ma_tafdc_dependent_care_deduction_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_tafdc_financial_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "ma_tafdc_financial_eligible", - "label": "Eligible for Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) due to income", - "category": null, - "unit": null, - "moduleName": "gov.states.ma.dta.tcap.tafdc.eligibility.ma_tafdc_financial_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_tafdc_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "ma_tafdc_eligible", - "label": "Eligible for Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC)", - "category": null, - "unit": null, - "moduleName": "gov.states.ma.dta.tcap.tafdc.eligibility.ma_tafdc_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_tafdc_immigration_status_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ma_tafdc_immigration_status_eligible", - "label": "Eligible for Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) due to immigration status", - "category": null, - "unit": null, - "moduleName": "gov.states.ma.dta.tcap.tafdc.eligibility.non_financial.ma_tafdc_immigration_status_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_tafdc_pregnancy_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ma_tafdc_pregnancy_eligible", - "label": "Eligible for Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) due to pregnancy", - "category": null, - "unit": null, - "moduleName": "gov.states.ma.dta.tcap.tafdc.eligibility.non_financial.ma_tafdc_pregnancy_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_tafdc_age_limit": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_tafdc_age_limit", - "label": "Applicable age limit for the Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC)", - "category": null, - "unit": null, - "moduleName": "gov.states.ma.dta.tcap.tafdc.eligibility.non_financial.ma_tafdc_age_limit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_tafdc_eligible_dependent": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ma_tafdc_eligible_dependent", - "label": "Eligible dependent for the Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC)", - "category": null, - "unit": null, - "moduleName": "gov.states.ma.dta.tcap.tafdc.eligibility.non_financial.ma_tafdc_eligible_dependent", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_tafdc_non_financial_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "ma_tafdc_non_financial_eligible", - "label": "Eligible for Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC)", - "category": null, - "unit": null, - "moduleName": "gov.states.ma.dta.tcap.tafdc.eligibility.non_financial.ma_tafdc_non_financial_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_tafdc_dependent_criteria_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ma_tafdc_dependent_criteria_eligible", - "label": "Eligible based on the dependent criteria for the Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC)", - "category": null, - "unit": null, - "moduleName": "gov.states.ma.dta.tcap.tafdc.eligibility.non_financial.ma_tafdc_dependent_criteria_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_tafdc_potential_main_benefit": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "ma_tafdc_potential_main_benefit", - "label": "Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) potential main benefit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.dta.tcap.tafdc.payment.ma_tafdc_potential_main_benefit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_tafdc_infant_benefit": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_tafdc_infant_benefit", - "label": "Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) infant benefit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.dta.tcap.tafdc.payment.ma_tafdc_infant_benefit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_tafdc_clothing_allowance": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_tafdc_clothing_allowance", - "label": "Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) clothing allowance", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.dta.tcap.tafdc.payment.ma_tafdc_clothing_allowance", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_tafdc_payment_standard": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "ma_tafdc_payment_standard", - "label": "Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) payment standard", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.dta.tcap.tafdc.payment.ma_tafdc_payment_standard", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_withheld_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_withheld_income_tax", - "label": "Massachusetts withheld income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.tax.income.ma_withheld_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_ma_income_tax_exempt": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_ma_income_tax_exempt", - "label": "MA income tax exempt", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.tax.income.is_ma_income_tax_exempt", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_income_tax_before_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_income_tax_before_credits", - "label": "MA income tax before credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.tax.income.ma_income_tax_before_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_non_refundable_credits", - "label": "MA non-refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.tax.income.ma_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ma.tax.income.credits.non_refundable", - "subtracts": null, - "hidden_input": false - }, - "ma_income_tax_exemption_threshold": { - "documentation": "MA AGI threshold below which an individual is exempt from State income tax.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_income_tax_exemption_threshold", - "label": "MA income tax exemption threshold", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.tax.income.ma_income_tax_exemption_threshold", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_refundable_credits", - "label": "MA refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.tax.income.ma_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ma.tax.income.credits.refundable", - "subtracts": null, - "hidden_input": false - }, - "ma_income_tax_before_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_income_tax_before_refundable_credits", - "label": "MA income tax before refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.tax.income.ma_income_tax_before_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_income_tax": { - "documentation": "Massachusetts State income tax.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_income_tax", - "label": "MA income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.tax.income.ma_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ma_income_tax_before_refundable_credits"], - "subtracts": ["ma_refundable_credits"], - "hidden_input": false - }, - "ma_gross_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_gross_income", - "label": "MA gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.tax.income.gross_income.ma_gross_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_part_a_gross_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_part_a_gross_income", - "label": "MA Part A gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.tax.income.gross_income.ma_part_a_gross_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_part_c_gross_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_part_c_gross_income", - "label": "MA Part C gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.tax.income.gross_income.ma_part_c_gross_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_part_b_gross_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_part_b_gross_income", - "label": "MA Part B gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.tax.income.gross_income.ma_part_b_gross_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_dependent_care_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_dependent_care_credit", - "label": "MA dependent care credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.tax.income.credits.ma_dependent_care_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_child_and_family_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_child_and_family_credit", - "label": "Massachusetts child and family tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.tax.income.credits.ma_child_and_family_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_limited_income_tax_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_limited_income_tax_credit", - "label": "MA Limited Income Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.tax.income.credits.ma_limited_income_tax_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_eitc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_eitc", - "label": "MA EITC", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.tax.income.credits.ma_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_child_and_family_credit_or_dependent_care_credit": { - "documentation": "The CFTC replaces the Dependent Care Tax Credit and the Household Dependent Tax Credit with Child and Family Tax Credit for tax years beginning on or after January 1, 2023.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_child_and_family_credit_or_dependent_care_credit", - "label": "MA dependent or dependent care credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.tax.income.credits.ma_child_and_family_credit_or_dependent_care_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_covid_19_essential_employee_premium_pay_program": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_covid_19_essential_employee_premium_pay_program", - "label": "MA COVID 19 Essential Employee Premium Pay Program", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.tax.income.credits.ma_covid_19_essential_employee_premium_pay_program.ma_covid_19_essential_employee_premium_pay_program", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "claimed_ma_covid_19_essential_employee_premium_pay_program_2020": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "claimed_ma_covid_19_essential_employee_premium_pay_program_2020", - "label": "Claimed MA COVID 19 Essential Employee Premium Pay Program for 2020", - "category": null, - "unit": null, - "moduleName": "gov.states.ma.tax.income.credits.ma_covid_19_essential_employee_premium_pay_program.claimed_ma_covid_19_essential_employee_premium_pay_program_2020", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_scb_total_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_scb_total_income", - "label": "Total income for the MA Senior Circuit Breaker", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.tax.income.credits.senior_circuit_breaker.ma_scb_total_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_senior_circuit_breaker": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_senior_circuit_breaker", - "label": "MA Senior Circuit Breaker Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.tax.income.credits.senior_circuit_breaker.ma_senior_circuit_breaker", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_part_a_agi": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_part_a_agi", - "label": "MA Part A AGI", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.tax.income.adjusted_gross_income.ma_part_a_agi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_part_b_agi": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_part_b_agi", - "label": "MA Part B AGI", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.tax.income.adjusted_gross_income.ma_part_b_agi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_agi": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_agi", - "label": "MA adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.tax.income.adjusted_gross_income.ma_agi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ma_part_a_agi", "ma_part_b_agi", "ma_part_c_agi"], - "subtracts": null, - "hidden_input": false - }, - "ma_part_c_agi": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_part_c_agi", - "label": "MA Part C AGI", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.tax.income.adjusted_gross_income.ma_part_c_agi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ma_part_c_gross_income"], - "subtracts": null, - "hidden_input": false - }, - "ma_part_b_taxable_income_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_part_b_taxable_income_exemption", - "label": "MA Part B taxable income exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.tax.income.taxable_income.ma_part_b_taxable_income_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_part_a_taxable_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_part_a_taxable_income", - "label": "MA Part A taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.tax.income.taxable_income.ma_part_a_taxable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ma_part_a_taxable_dividend_income", "ma_part_a_taxable_capital_gains_income"], - "subtracts": null, - "hidden_input": false - }, - "ma_part_a_cg_excess_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_part_a_cg_excess_exemption", - "label": "MA Part A (short-term) capital gains excess exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.tax.income.taxable_income.ma_part_a_cg_excess_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_part_b_excess_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_part_b_excess_exemption", - "label": "MA Part B excess exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.tax.income.taxable_income.ma_part_b_excess_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_part_a_div_excess_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_part_a_div_excess_exemption", - "label": "MA Part A dividends excess exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.tax.income.taxable_income.ma_part_a_div_excess_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_part_b_taxable_income_deductions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_part_b_taxable_income_deductions", - "label": "MA Part B taxable income deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.tax.income.taxable_income.ma_part_b_taxable_income_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_part_a_taxable_capital_gains_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_part_a_taxable_capital_gains_income", - "label": "MA Part A taxable income from short-term capital gains", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.tax.income.taxable_income.ma_part_a_taxable_capital_gains_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_part_c_taxable_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_part_c_taxable_income", - "label": "MA Part C taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.tax.income.taxable_income.ma_part_c_taxable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_part_b_taxable_income_before_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_part_b_taxable_income_before_exemption", - "label": "MA Part B taxable income before exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.tax.income.taxable_income.ma_part_b_taxable_income_before_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_part_b_taxable_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_part_b_taxable_income", - "label": "MA Part B taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.tax.income.taxable_income.ma_part_b_taxable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_part_a_taxable_dividend_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_part_a_taxable_dividend_income", - "label": "MA Part A taxable income from dividends", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ma.tax.income.taxable_income.ma_part_a_taxable_dividend_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_mbta_tap_charlie_card_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ma_mbta_tap_charlie_card_eligible", - "label": "Eligible for the Massachusetts Bay Transportation Authority Transportation Access Pass (TAP) Charlie Card program", - "category": null, - "unit": null, - "moduleName": "gov.states.ma.dot.mbta.tap_charlie_card.ma_mbta_tap_charlie_card_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_mbta_senior_charlie_card_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ma_mbta_senior_charlie_card_eligible", - "label": "Eligible for the Massachusetts Bay Transportation Authority Senior Charlie Card program", - "category": null, - "unit": null, - "moduleName": "gov.states.ma.dot.mbta.senior_charlie_card.ma_mbta_senior_charlie_card_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_mbta_enrolled_in_applicable_programs": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ma_mbta_enrolled_in_applicable_programs", - "label": "Enrolled in applicable programs to receive the Massachusetts Bay Transportation Authority income-eligible reduced fare program", - "category": null, - "unit": null, - "moduleName": "gov.states.ma.dot.mbta.income_eligible_reduced_fares.ma_mbta_enrolled_in_applicable_programs", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": "gov.states.ma.dot.mbta.income_eligible_reduced_fares.applicable_programs", - "subtracts": null, - "hidden_input": false - }, - "ma_mbta_income_eligible_reduced_fare_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ma_mbta_income_eligible_reduced_fare_eligible", - "label": "Eligible for the Massachusetts Bay Transportation Authority income-eligible reduced fare program", - "category": null, - "unit": null, - "moduleName": "gov.states.ma.dot.mbta.income_eligible_reduced_fares.ma_mbta_income_eligible_reduced_fare_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_liheap_heating_type": { - "documentation": null, - "entity": "spm_unit", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "ma_liheap_heating_type", - "label": "Massachusetts LIHEAP household's heating type", - "category": null, - "unit": null, - "moduleName": "gov.states.ma.doer.liheap.ma_liheap_heating_type", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": "ELECTRICITY", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "HEATING_OIL_AND_PROPANE", - "label": "Heating oil and Propane" - }, - { - "value": "NATURAL_GAS", - "label": "Natural Gas" - }, - { - "value": "KEROSENE", - "label": "Kerosene" - }, - { - "value": "ELECTRICITY", - "label": "Electricity" - }, - { - "value": "OTHER", - "label": "Other" - }, - { - "value": "NONE", - "label": "None" - } - ] - }, - "ma_liheap_benefit_level": { - "documentation": null, - "entity": "spm_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "ma_liheap_benefit_level", - "label": "Benefit Level for Massachusetts LIHEAP payment", - "category": null, - "unit": null, - "moduleName": "gov.states.ma.doer.liheap.ma_liheap_benefit_level", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_liheap_state_median_income_threshold": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_liheap_state_median_income_threshold", - "label": "Massachusetts LIHEAP state median income threshold", - "category": null, - "unit": null, - "moduleName": "gov.states.ma.doer.liheap.ma_liheap_state_median_income_threshold", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_liheap_income": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_liheap_income", - "label": "Massachusetts LIHEAP income", - "category": null, - "unit": null, - "moduleName": "gov.states.ma.doer.liheap.ma_liheap_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["irs_gross_income"], - "subtracts": null, - "hidden_input": false - }, - "ma_liheap_fpg": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_liheap_fpg", - "label": "Massachusetts LIHEAP federal poverty guideline", - "category": null, - "unit": null, - "moduleName": "gov.states.ma.doer.liheap.ma_liheap_fpg", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_liheap_utility_category": { - "documentation": null, - "entity": "spm_unit", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "ma_liheap_utility_category", - "label": "Massachusetts LIHEAP household's utility category", - "category": null, - "unit": null, - "moduleName": "gov.states.ma.doer.liheap.ma_liheap_utility_category", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "NONE", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "UTILITY_AND_HEAT_IN_RENT", - "label": "Utility and Heat in Rent" - }, - { - "value": "DELIVERABLE_FUEL", - "label": "Deliverable Fuel" - }, - { - "value": "NONE", - "label": "None" - } - ] - }, - "ma_liheap_income_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ma_liheap_income_eligible", - "label": "Eligible for Massachusetts LIHEAP due to income", - "category": null, - "unit": null, - "moduleName": "gov.states.ma.doer.liheap.eligibility.ma_liheap_income_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_liheap_eligible_subsidized_housing": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ma_liheap_eligible_subsidized_housing", - "label": "Massachusetts LIHEAP eligible subsidized housing", - "category": null, - "unit": null, - "moduleName": "gov.states.ma.doer.liheap.eligibility.ma_liheap_eligible_subsidized_housing", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_liheap_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ma_liheap_eligible", - "label": "Eligible for the Massachusetts LIHEAP", - "category": null, - "unit": null, - "moduleName": "gov.states.ma.doer.liheap.eligibility.ma_liheap_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_liheap_hecs_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ma_liheap_hecs_eligible", - "label": "Eligible for Massachusetts LIHEAP High Energy Cost Supplement (HECS)", - "category": null, - "unit": null, - "moduleName": "gov.states.ma.doer.liheap.eligibility.ma_liheap_hecs_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_liheap_hecs_payment": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_liheap_hecs_payment", - "label": "Massachusetts LIHEAP High Energy Cost Supplement (HECS) payment", - "category": null, - "unit": null, - "moduleName": "gov.states.ma.doer.liheap.payment.ma_liheap_hecs_payment", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_liheap_standard_payment": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_liheap_standard_payment", - "label": "Massachusetts LIHEAP standard payment", - "category": null, - "unit": null, - "moduleName": "gov.states.ma.doer.liheap.payment.ma_liheap_standard_payment", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ma_liheap": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ma_liheap", - "label": "Massachusetts LIHEAP payment", - "category": null, - "unit": null, - "moduleName": "gov.states.ma.doer.liheap.payment.ma_liheap", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mi_taxable_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mi_taxable_income", - "label": "Michigan taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mi.tax.income.mi_taxable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mi_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mi_non_refundable_credits", - "label": "Michigan non-refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mi.tax.income.mi_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mi_household_resources": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mi_household_resources", - "label": "Michigan household resources", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mi.tax.income.mi_household_resources", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.mi.tax.income.household_resources", - "subtracts": ["health_insurance_premiums", "above_the_line_deductions"], - "hidden_input": false - }, - "mi_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mi_refundable_credits", - "label": "Michigan refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mi.tax.income.mi_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.mi.tax.income.credits.refundable", - "subtracts": null, - "hidden_input": false - }, - "mi_income_tax_before_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mi_income_tax_before_refundable_credits", - "label": "Michigan income tax before refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mi.tax.income.mi_income_tax_before_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mi_subtractions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mi_subtractions", - "label": "Michigan taxable income subtractions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mi.tax.income.mi_subtractions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.mi.tax.income.subtractions", - "subtracts": null, - "hidden_input": false - }, - "mi_withheld_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mi_withheld_income_tax", - "label": "Michigan withheld income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mi.tax.income.mi_withheld_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mi_additions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mi_additions", - "label": "Michigan taxable income additions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mi.tax.income.mi_additions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.mi.tax.income.additions", - "subtracts": null, - "hidden_input": false - }, - "mi_is_senior_for_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "mi_is_senior_for_tax", - "label": "Michigan filer is a senior", - "category": null, - "unit": null, - "moduleName": "gov.states.mi.tax.income.mi_is_senior_for_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mi_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mi_income_tax", - "label": "Michigan income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mi.tax.income.mi_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["mi_income_tax_before_refundable_credits"], - "subtracts": ["mi_refundable_credits"], - "hidden_input": false - }, - "mi_income_tax_before_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mi_income_tax_before_non_refundable_credits", - "label": "Michigan income tax before non-refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mi.tax.income.mi_income_tax_before_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mi_eitc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mi_eitc", - "label": "Michigan Earned Income Tax Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mi.tax.income.credits.mi_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mi_home_heating_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mi_home_heating_credit", - "label": "Michigan home heating credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mi.tax.income.credits.home_heating.mi_home_heating_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mi_home_heating_credit_eligible_rate": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mi_home_heating_credit_eligible_rate", - "label": "Eligible for the Michigan home heating credit", - "category": null, - "unit": null, - "moduleName": "gov.states.mi.tax.income.credits.home_heating.mi_home_heating_credit_eligible_rate", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mi_alternate_home_heating_credit_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "mi_alternate_home_heating_credit_eligible", - "label": "Eligible for the Michigan alternate home heating credit", - "category": null, - "unit": null, - "moduleName": "gov.states.mi.tax.income.credits.home_heating.alternate.mi_alternate_home_heating_credit_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mi_alternate_home_heating_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mi_alternate_home_heating_credit", - "label": "Michigan alternate home heating credit amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mi.tax.income.credits.home_heating.alternate.mi_alternate_home_heating_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mi_standard_home_heating_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mi_standard_home_heating_credit", - "label": "Michigan standard home heating credit amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mi.tax.income.credits.home_heating.standard.mi_standard_home_heating_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mi_standard_home_heating_credit_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "mi_standard_home_heating_credit_eligible", - "label": "Eligible for the Michigan home heating standard credit", - "category": null, - "unit": null, - "moduleName": "gov.states.mi.tax.income.credits.home_heating.standard.mi_standard_home_heating_credit_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mi_homestead_property_tax_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mi_homestead_property_tax_credit", - "label": "Michigan homestead property tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mi.tax.income.credits.homestead_property_tax.mi_homestead_property_tax_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mi_allowable_homestead_property_tax_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mi_allowable_homestead_property_tax_credit", - "label": "Michigan allowable homestead property tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mi.tax.income.credits.homestead_property_tax.mi_allowable_homestead_property_tax_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mi_homestead_property_tax_credit_alternate_senior_amount": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mi_homestead_property_tax_credit_alternate_senior_amount", - "label": "Michigan alternate senior renter homestead property tax credit amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mi.tax.income.credits.homestead_property_tax.mi_homestead_property_tax_credit_alternate_senior_amount", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mi_homestead_property_tax_credit_countable_property_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mi_homestead_property_tax_credit_countable_property_tax", - "label": "Michigan homestead property tax credit countable property tax (including rent equivalent)", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mi.tax.income.credits.homestead_property_tax.mi_homestead_property_tax_credit_countable_property_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mi_homestead_property_tax_credit_pre_alternate_senior_amount": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mi_homestead_property_tax_credit_pre_alternate_senior_amount", - "label": "Michigan homestead property tax credit per alternate senior credit amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mi.tax.income.credits.homestead_property_tax.mi_homestead_property_tax_credit_pre_alternate_senior_amount", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mi_homestead_property_tax_credit_household_resource_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mi_homestead_property_tax_credit_household_resource_exemption", - "label": "Michigan homestead property tax credit household resource exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mi.tax.income.credits.homestead_property_tax.mi_homestead_property_tax_credit_household_resource_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mi_homestead_property_tax_credit_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "mi_homestead_property_tax_credit_eligible", - "label": "Eligible for the Michigan homestead property tax credit", - "category": null, - "unit": null, - "moduleName": "gov.states.mi.tax.income.credits.homestead_property_tax.mi_homestead_property_tax_credit_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mi_personal_exemptions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mi_personal_exemptions", - "label": "Michigan personal and stillborn exemptions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mi.tax.income.exemptions.mi_personal_exemptions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mi_disabled_exemption_eligible_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mi_disabled_exemption_eligible_person", - "label": "Eligible person for the Michigan disabled exemptions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mi.tax.income.exemptions.mi_disabled_exemption_eligible_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mi_exemptions_count": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mi_exemptions_count", - "label": "Michigan exemptions count", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mi.tax.income.exemptions.mi_exemptions_count", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "tax_unit_size", - "mi_disabled_exemption_eligible_person", - "is_fully_disabled_service_connected_veteran" - ], - "subtracts": null, - "hidden_input": false - }, - "mi_exemptions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mi_exemptions", - "label": "Michigan exemptions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mi.tax.income.exemptions.mi_exemptions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mi_standard_deduction": { - "documentation": "Michigan standard deduction of qualifying age.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mi_standard_deduction", - "label": "Michigan standard deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mi.tax.income.deductions.standard.mi_standard_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["mi_standard_deduction_tier_two", "mi_standard_deduction_tier_three"], - "subtracts": null, - "hidden_input": false - }, - "mi_standard_deduction_tier_two_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "mi_standard_deduction_tier_two_eligible", - "label": "Eligible for the Michigan tier two standard deduction", - "category": null, - "unit": null, - "moduleName": "gov.states.mi.tax.income.deductions.standard.tier_two.mi_standard_deduction_tier_two_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mi_standard_deduction_tier_two": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mi_standard_deduction_tier_two", - "label": "Michigan tier two standard deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mi.tax.income.deductions.standard.tier_two.mi_standard_deduction_tier_two", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mi_standard_deduction_tier_two_increase_eligible_people": { - "documentation": null, - "entity": "tax_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "mi_standard_deduction_tier_two_increase_eligible_people", - "label": "Number of eligible people for the Michigan tier two standard deduction increase", - "category": null, - "unit": null, - "moduleName": "gov.states.mi.tax.income.deductions.standard.tier_two.mi_standard_deduction_tier_two_increase_eligible_people", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mi_standard_deduction_tier_three_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "mi_standard_deduction_tier_three_eligible", - "label": "Eligible for the Michigan standard deduction", - "category": null, - "unit": null, - "moduleName": "gov.states.mi.tax.income.deductions.standard.tier_three.mi_standard_deduction_tier_three_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mi_standard_deduction_tier_three": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mi_standard_deduction_tier_three", - "label": "Michigan tier three standard deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mi.tax.income.deductions.standard.tier_three.mi_standard_deduction_tier_three", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mi_interest_dividends_capital_gains_deduction_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "mi_interest_dividends_capital_gains_deduction_eligible", - "label": "Eligible for the Michigan interest dividends capital gains deduction", - "category": null, - "unit": null, - "moduleName": "gov.states.mi.tax.income.deductions.interest_dividends_capital_gains.mi_interest_dividends_capital_gains_deduction_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mi_interest_dividends_capital_gains_deduction": { - "documentation": "Michigan interest, dividends, and capital gains deduction of qualifying age.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mi_interest_dividends_capital_gains_deduction", - "label": "Michigan interest, dividends, and capital gains deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mi.tax.income.deductions.interest_dividends_capital_gains.mi_interest_dividends_capital_gains_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mi_pension_benefit": { - "documentation": "Michigan retirement and pension benefits of qualifying age.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mi_pension_benefit", - "label": "Michigan pension benefit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mi.tax.income.deductions.retirement.mi_pension_benefit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "mi_retirement_benefits_deduction_tier_one", - "mi_retirement_benefits_deduction_tier_three" - ], - "subtracts": null, - "hidden_input": false - }, - "mi_expanded_retirement_benefits_deduction_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "mi_expanded_retirement_benefits_deduction_eligible", - "label": "Eligible for the Michigan expanded retirement benefits deduction", - "category": null, - "unit": null, - "moduleName": "gov.states.mi.tax.income.deductions.retirement.expanded.mi_expanded_retirement_benefits_deduction_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mi_expanded_retirement_benefits_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mi_expanded_retirement_benefits_deduction", - "label": "Michigan expanded retirement benefits deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mi.tax.income.deductions.retirement.expanded.mi_expanded_retirement_benefits_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mi_retirement_benefits_deduction_tier_one": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mi_retirement_benefits_deduction_tier_one", - "label": "Michigan retirement benefits deduction for tier one", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mi.tax.income.deductions.retirement.tier_one.mi_retirement_benefits_deduction_tier_one", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["mi_retirement_benefits_deduction_tier_one_amount"], - "subtracts": null, - "hidden_input": false - }, - "mi_retirement_benefits_deduction_tier_one_amount": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mi_retirement_benefits_deduction_tier_one_amount", - "label": "Michigan retirement benefits deduction amount for tier one, regardless of eligiblity", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mi.tax.income.deductions.retirement.tier_one.mi_retirement_benefits_deduction_tier_one_amount", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mi_retirement_benefits_deduction_tier_one_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "mi_retirement_benefits_deduction_tier_one_eligible", - "label": "Eligible for the Michigan tier one retirement benefits deduction", - "category": null, - "unit": null, - "moduleName": "gov.states.mi.tax.income.deductions.retirement.tier_one.mi_retirement_benefits_deduction_tier_one_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mi_retirement_benefits_deduction_tier_three": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mi_retirement_benefits_deduction_tier_three", - "label": "Michigan retirement benefits deduction for tier three", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mi.tax.income.deductions.retirement.tier_three.mi_retirement_benefits_deduction_tier_three", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mi_retirement_benefits_deduction_tier_three_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "mi_retirement_benefits_deduction_tier_three_eligible", - "label": "Eligible for the Michigan tier three retirement benefits deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mi.tax.income.deductions.retirement.tier_three.mi_retirement_benefits_deduction_tier_three_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mi_retirement_benefits_deduction_tier_three_ss_exempt_retired_eligible_people": { - "documentation": null, - "entity": "tax_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "mi_retirement_benefits_deduction_tier_three_ss_exempt_retired_eligible_people", - "label": "Eligible for the Michigan tier three retired retirement benefits deduction", - "category": null, - "unit": null, - "moduleName": "gov.states.mi.tax.income.deductions.retirement.tier_three.ss_exempt.retired.mi_retirement_benefits_deduction_tier_three_ss_exempt_retired_eligible_people", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mi_retirement_benefits_deduction_tier_three_ss_exempt_retired": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mi_retirement_benefits_deduction_tier_three_ss_exempt_retired", - "label": "Michigan retired tier three retirement benefits deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mi.tax.income.deductions.retirement.tier_three.ss_exempt.retired.mi_retirement_benefits_deduction_tier_three_ss_exempt_retired", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mi_retirement_benefits_deduction_tier_three_ss_exempt_not_retired_eligible_people": { - "documentation": null, - "entity": "tax_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "mi_retirement_benefits_deduction_tier_three_ss_exempt_not_retired_eligible_people", - "label": "Number of eligible people for the Michigan non-retired tier three retirement benefits deduction", - "category": null, - "unit": null, - "moduleName": "gov.states.mi.tax.income.deductions.retirement.tier_three.ss_exempt.not_retired.mi_retirement_benefits_deduction_tier_three_ss_exempt_not_retired_eligible_people", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mi_retirement_benefits_deduction_tier_three_ss_exempt_not_retired": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mi_retirement_benefits_deduction_tier_three_ss_exempt_not_retired", - "label": "Michigan non-retired tier three retirement benefits deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mi.tax.income.deductions.retirement.tier_three.ss_exempt.not_retired.mi_retirement_benefits_deduction_tier_three_ss_exempt_not_retired", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ok_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ok_income_tax", - "label": "Oklahoma income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ok.tax.income.ok_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ok_income_tax_before_refundable_credits", "ok_use_tax"], - "subtracts": ["ok_refundable_credits"], - "hidden_input": false - }, - "ok_agi_subtractions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ok_agi_subtractions", - "label": "Oklahoma AGI subtractions from federal AGI", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ok.tax.income.ok_agi_subtractions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ok.tax.income.agi.subtractions.subtractions", - "subtracts": null, - "hidden_input": false - }, - "ok_withheld_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ok_withheld_income_tax", - "label": "Oklahoma withheld income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ok.tax.income.ok_withheld_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ok_agi": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ok_agi", - "label": "Oklahoma AGI", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ok.tax.income.ok_agi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["adjusted_gross_income", "ok_additions"], - "subtracts": ["ok_agi_subtractions"], - "hidden_input": false - }, - "ok_income_tax_before_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ok_income_tax_before_credits", - "label": "Oklahoma income tax before credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ok.tax.income.ok_income_tax_before_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ok_use_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ok_use_tax", - "label": "Oklahoma use tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ok.tax.income.ok_use_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ok_adjustments": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ok_adjustments", - "label": "Oklahoma adjustments", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ok.tax.income.ok_adjustments", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ok_additions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ok_additions", - "label": "Oklahoma AGI additions to federal AGI", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ok.tax.income.ok_additions", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ok_taxable_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ok_taxable_income", - "label": "Oklahoma taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ok.tax.income.ok_taxable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ok_income_tax_before_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ok_income_tax_before_refundable_credits", - "label": "Oklahoma income tax before refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ok.tax.income.ok_income_tax_before_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ok_child_care_child_tax_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ok_child_care_child_tax_credit", - "label": "Oklahoma Child Care/Child Tax Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ok.tax.income.credits.ok_child_care_child_tax_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ok_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ok_refundable_credits", - "label": "Oklahoma refundable income tax credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ok.tax.income.credits.ok_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ok.tax.income.credits.refundable", - "subtracts": null, - "hidden_input": false - }, - "ok_ptc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ok_ptc", - "label": "Oklahoma property tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ok.tax.income.credits.ok_ptc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ok_gross_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ok_gross_income", - "label": "Oklahoma gross income used in OK credit calculations", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ok.tax.income.credits.ok_gross_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ok_stc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ok_stc", - "label": "Oklahoma sales tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ok.tax.income.credits.ok_stc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ok_nonrefundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ok_nonrefundable_credits", - "label": "Oklahoma nonrefundable income tax credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ok.tax.income.credits.ok_nonrefundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ok.tax.income.credits.nonrefundable", - "subtracts": null, - "hidden_input": false - }, - "ok_eitc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ok_eitc", - "label": "Oklahoma EITC", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ok.tax.income.credits.eitc.ok_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ok_federal_eitc_maximum": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ok_federal_eitc_maximum", - "label": "Maximum federal EITC for the Oklahoma EITC computation", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ok.tax.income.credits.eitc.federal_credit.ok_federal_eitc_maximum", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ok_federal_eitc_phase_out_start": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ok_federal_eitc_phase_out_start", - "label": "Federal EITC phase-out start for the Oklahoma EITC computation", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ok.tax.income.credits.eitc.federal_credit.ok_federal_eitc_phase_out_start", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ok_federal_eitc_reduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ok_federal_eitc_reduction", - "label": "Federal EITC reduction for the Oklahoma EITC computation", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ok.tax.income.credits.eitc.federal_credit.ok_federal_eitc_reduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ok_federal_eitc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ok_federal_eitc", - "label": "Federal earned income credit for the Oklahoma EITC computation", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ok.tax.income.credits.eitc.federal_credit.ok_federal_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ok_federal_eitc_phased_in": { - "documentation": "EITC maximum amount, taking into account earnings.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ok_federal_eitc_phased_in", - "label": "Federal EITC phase-in amount for the Oklahoma EITC computation", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ok.tax.income.credits.eitc.federal_credit.ok_federal_eitc_phased_in", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ok_federal_eitc_phase_in_rate": { - "documentation": "Rate at which the EITC phases in with income.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ok_federal_eitc_phase_in_rate", - "label": "Federal EITC phase-in rate for the Oklahoma EITC computation", - "category": null, - "unit": "/1", - "moduleName": "gov.states.ok.tax.income.credits.eitc.federal_credit.ok_federal_eitc_phase_in_rate", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ok_federal_eitc_phase_out_rate": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ok_federal_eitc_phase_out_rate", - "label": "Federal EITC phase-out rate for the Oklahoma EITC computation", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ok.tax.income.credits.eitc.federal_credit.ok_federal_eitc_phase_out_rate", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ok_federal_eitc_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ok_federal_eitc_eligible", - "label": "Eligible for federal EITC for the Oklahoma EITC computation", - "category": null, - "unit": null, - "moduleName": "gov.states.ok.tax.income.credits.eitc.federal_credit.eligible.ok_federal_eitc_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ok_federal_eitc_demographic_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ok_federal_eitc_demographic_eligible", - "label": "Meets demographic eligibility for EITC for the Oklahoma EITC computation", - "category": null, - "unit": null, - "moduleName": "gov.states.ok.tax.income.credits.eitc.federal_credit.eligible.ok_federal_eitc_demographic_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ok_federal_eitc_investment_income_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ok_federal_eitc_investment_income_eligible", - "label": "Meets investment income eligibility for EITC", - "category": null, - "unit": null, - "moduleName": "gov.states.ok.tax.income.credits.eitc.federal_credit.eligible.ok_federal_eitc_investment_income_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ok_exemptions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ok_exemptions", - "label": "Oklahoma exemptions amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ok.tax.income.exemptions.ok_exemptions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ok_count_exemptions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ok_count_exemptions", - "label": "Count of Oklahoma exemptions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ok.tax.income.exemptions.ok_count_exemptions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ok_military_retirement_exclusion": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ok_military_retirement_exclusion", - "label": "Oklahoma military retirement exclusion", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ok.tax.income.subtractions.ok_military_retirement_exclusion", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ok_pension_subtraction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ok_pension_subtraction", - "label": "Oklahoma pension subtraction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ok.tax.income.subtractions.ok_pension_subtraction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ok_itemized_deductions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ok_itemized_deductions", - "label": "Oklahoma itemized deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ok.tax.income.deductions.ok_itemized_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ok_standard_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ok_standard_deduction", - "label": "Oklahoma standard deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ok.tax.income.deductions.ok_standard_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ok_tanf": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ok_tanf", - "label": "Oklahoma TANF", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ok.tanf.ok_tanf", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "oh_taxable_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "oh_taxable_income", - "label": "Ohio taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.oh.tax.income.oh_taxable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "oh_modified_agi": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "oh_modified_agi", - "label": "Ohio modified adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.oh.tax.income.oh_modifed_agi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["oh_agi"], - "subtracts": null, - "hidden_input": false - }, - "oh_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "oh_non_refundable_credits", - "label": "Ohio non-refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.oh.tax.income.oh_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.oh.tax.income.credits.non_refundable", - "subtracts": null, - "hidden_input": false - }, - "oh_income_tax_before_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "oh_income_tax_before_non_refundable_credits", - "label": "Ohio income tax before credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.oh.tax.income.oh_income_tax_before_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "oh_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "oh_income_tax", - "label": "Ohio income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.oh.tax.income.oh_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["oh_income_tax_before_refundable_credits"], - "subtracts": ["oh_refundable_credits"], - "hidden_input": false - }, - "oh_income_tax_before_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "oh_income_tax_before_refundable_credits", - "label": "Ohio income tax before refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.oh.tax.income.oh_income_tax_before_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "oh_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "oh_refundable_credits", - "label": "Ohio refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.oh.tax.income.oh_refundable_credits", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "oh_income_tax_exempt": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "oh_income_tax_exempt", - "label": "Ohio income tax exempt", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.oh.tax.income.oh_income_tax_exempt", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "oh_withheld_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "oh_withheld_income_tax", - "label": "Ohio withheld income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.oh.tax.income.oh_withheld_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "oh_exemption_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "oh_exemption_credit", - "label": "Ohio Exemption Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.oh.tax.income.credits.oh_exemption_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "oh_senior_citizen_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "oh_senior_citizen_credit", - "label": "Ohio senior citizen credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.oh.tax.income.credits.oh_senior_citizen_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "oh_non_public_school_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "oh_non_public_school_credits", - "label": "Ohio Nonchartered, Nonpublic, School Tuition Credit AGI Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.oh.tax.income.credits.oh_non_public_school_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "oh_has_taken_oh_lump_sum_credits": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "oh_has_taken_oh_lump_sum_credits", - "label": "Whether a person has taken Ohio lump sum credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.oh.tax.income.credits.oh_has_taken_oh_lump_sum_credits", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "oh_adoption_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "oh_adoption_credit", - "label": "Ohio adoption credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.oh.tax.income.credits.oh_adoption_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["oh_adoption_credit_person"], - "subtracts": null, - "hidden_input": false - }, - "oh_cdcc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "oh_cdcc", - "label": "Ohio child and dependent care credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.oh.tax.income.credits.oh_cdcc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "oh_adoption_credit_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "oh_adoption_credit_person", - "label": "Ohio adoption credit for each person", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.oh.tax.income.credits.oh_adoption_credit_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "oh_eitc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "oh_eitc", - "label": "Ohio Earned Income Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.oh.tax.income.credits.oh_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "oh_lump_sum_distribution_credit_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "oh_lump_sum_distribution_credit_eligible", - "label": "Eligible for the Ohio lump sum distribution credit", - "category": null, - "unit": null, - "moduleName": "gov.states.oh.tax.income.credits.lump_sum_distribution.oh_lump_sum_distribution_credit_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "oh_lump_sum_distribution_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "oh_lump_sum_distribution_credit", - "label": "Ohio lump sum distribution credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.oh.tax.income.credits.lump_sum_distribution.oh_lump_sum_distribution_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["oh_lump_sum_distribution_credit_person"], - "subtracts": null, - "hidden_input": false - }, - "oh_lump_sum_distribution_credit_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "oh_lump_sum_distribution_credit_person", - "label": "Ohio lump sum distribution credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.oh.tax.income.credits.lump_sum_distribution.oh_lump_sum_distribution_credit_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "oh_lump_sum_distribution_credit_eligible_person": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "oh_lump_sum_distribution_credit_eligible_person", - "label": "Eligible person for the Ohio lump sum distribution credit", - "category": null, - "unit": null, - "moduleName": "gov.states.oh.tax.income.credits.lump_sum_distribution.oh_lump_sum_distribution_credit_eligible_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "oh_partial_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "oh_partial_non_refundable_credits", - "label": "Ohio non-refundable credits prior to the joint filing credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.oh.tax.income.credits.joint_filing_credit.oh_partial_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.oh.tax.income.credits.joint_filing.other_non_refundable_credits", - "subtracts": null, - "hidden_input": false - }, - "oh_tax_before_joint_filing_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "oh_tax_before_joint_filing_credit", - "label": "Ohio tax liability before the joint filing credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.oh.tax.income.credits.joint_filing_credit.oh_tax_before_joint_filing_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "oh_joint_filing_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "oh_joint_filing_credit", - "label": "Ohio joint filing credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.oh.tax.income.credits.joint_filing_credit.oh_joint_filing_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "oh_joint_filing_credit_agi_subtractions": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "oh_joint_filing_credit_agi_subtractions", - "label": "Ohio qualifying income for the joint filing credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.oh.tax.income.credits.joint_filing_credit.oh_joint_filing_credit_agi_subtractions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.oh.tax.income.credits.joint_filing.agi_subtractions", - "subtracts": null, - "hidden_input": false - }, - "oh_joint_filing_credit_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "oh_joint_filing_credit_eligible", - "label": "Eligible for the Ohio joint filing credit", - "category": null, - "unit": null, - "moduleName": "gov.states.oh.tax.income.credits.joint_filing_credit.oh_joint_filing_credit_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "oh_joint_filing_credit_qualifying_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "oh_joint_filing_credit_qualifying_income", - "label": "Ohio qualifying income for the joint filing credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.oh.tax.income.credits.joint_filing_credit.oh_joint_filing_credit_qualifying_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["oh_agi_person"], - "subtracts": ["oh_joint_filing_credit_agi_subtractions"], - "hidden_input": false - }, - "oh_retirement_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "oh_retirement_credit", - "label": "Ohio Retirement Income Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.oh.tax.income.credits.retirement_income.oh_retirement_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "oh_pension_based_retirement_income_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "oh_pension_based_retirement_income_credit", - "label": "Ohio pension based retirement income credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.oh.tax.income.credits.retirement_income.pension_based.oh_pension_based_retirement_income_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "oh_pension_based_retirement_income_credit_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "oh_pension_based_retirement_income_credit_eligible", - "label": "Eligible for the Ohio pension based retirement income credit", - "category": null, - "unit": null, - "moduleName": "gov.states.oh.tax.income.credits.retirement_income.pension_based.oh_pension_based_retirement_income_credit_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "oh_lump_sum_retirement_credit_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "oh_lump_sum_retirement_credit_eligible", - "label": "Eligible for the Ohio lump sum retirement income credit", - "category": null, - "unit": null, - "moduleName": "gov.states.oh.tax.income.credits.retirement_income.lump_sum.oh_lump_sum_retirement_credit_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "oh_lump_sum_retirement_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "oh_lump_sum_retirement_credit", - "label": "Ohio Lump Sum Retirement Income Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.oh.tax.income.credits.retirement_income.lump_sum.oh_lump_sum_retirement_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "oh_personal_exemptions_eligible_person": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "oh_personal_exemptions_eligible_person", - "label": "Eligible person for the Ohio Exemption Credit", - "category": null, - "unit": null, - "moduleName": "gov.states.oh.tax.income.exemptions.oh_personal_exemptions_eligible_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "oh_personal_exemptions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "oh_personal_exemptions", - "label": "Ohio personal exemptions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.oh.tax.income.exemptions.oh_personal_exemptions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "oh_agi": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "oh_agi", - "label": "Ohio adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.oh.tax.income.adjusted_gross_income.oh_agi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["oh_agi_person"], - "subtracts": null, - "hidden_input": false - }, - "oh_agi_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "oh_agi_person", - "label": "Ohio adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.oh.tax.income.adjusted_gross_income.oh_agi_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["adjusted_gross_income_person", "oh_additions"], - "subtracts": ["oh_deductions"], - "hidden_input": false - }, - "oh_other_add_backs": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "oh_other_add_backs", - "label": "Ohio other add backs", - "category": null, - "unit": null, - "moduleName": "gov.states.oh.tax.income.additions.oh_other_add_backs", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "oh_bonus_depreciation_add_back": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "oh_bonus_depreciation_add_back", - "label": "Ohio bonus depreciation add back", - "category": null, - "unit": null, - "moduleName": "gov.states.oh.tax.income.additions.oh_bonus_depreciation_add_back", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "oh_additions": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "oh_additions", - "label": "Ohio additions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.oh.tax.income.additions.oh_additions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.oh.tax.income.additions", - "subtracts": null, - "hidden_input": false - }, - "oh_uniformed_services_retirement_income_deduction": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "oh_uniformed_services_retirement_income_deduction", - "label": "Ohio Uniformed services retirement income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.oh.tax.income.deductions.oh_uniformed_services_retirement_income_deduction", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "oh_deductions": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "oh_deductions", - "label": "Ohio deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.oh.tax.income.deductions.oh_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.oh.tax.income.deductions.deductions", - "subtracts": null, - "hidden_input": false - }, - "oh_section_179_expense_add_back": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "oh_section_179_expense_add_back", - "label": "Ohio Section 179 Expense Add Back", - "category": null, - "unit": null, - "moduleName": "gov.states.oh.tax.income.deductions.oh_section_179_expense_add_back", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "oh_federal_conformity_deductions": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "oh_federal_conformity_deductions", - "label": "Ohio federal conformity deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.oh.tax.income.deductions.oh_federal_conformity_deduction", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "oh_unreimbursed_medical_care_expense_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "oh_unreimbursed_medical_care_expense_deduction", - "label": "Ohio unreimbursed medical and health care expense deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.oh.tax.income.deductions.medical_exepenses.oh_unreimbursed_medical_care_expense_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["oh_unreimbursed_medical_care_expense_deduction_person"], - "subtracts": null, - "hidden_input": false - }, - "oh_unreimbursed_medical_care_expense_deduction_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "oh_unreimbursed_medical_care_expense_deduction_person", - "label": "Ohio unreimbursed medical and health care expense deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.oh.tax.income.deductions.medical_exepenses.oh_unreimbursed_medical_care_expense_deduction_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "oh_insured_unreimbursed_medical_care_expenses", - "oh_uninsured_unreimbursed_medical_care_expenses", - "long_term_health_insurance_premiums" - ], - "subtracts": null, - "hidden_input": false - }, - "oh_uninsured_unreimbursed_medical_care_expenses": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "oh_uninsured_unreimbursed_medical_care_expenses", - "label": "Ohio unreimbursed medical and health care expense deduction for uninsured expenses", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.oh.tax.income.deductions.medical_exepenses.oh_uninsured_unreimbursed_medical_care_expenses", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "oh_insured_unreimbursed_medical_care_expenses": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "oh_insured_unreimbursed_medical_care_expenses", - "label": "Ohio insured unreimbursed medical and health care expense deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.oh.tax.income.deductions.medical_exepenses.insured_unreimbursed_expenses.oh_insured_unreimbursed_medical_care_expenses", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "oh_insured_unreimbursed_medical_care_expenses_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "oh_insured_unreimbursed_medical_care_expenses_person", - "label": "Ohio insured unreimbursed medical and health care expense deduction for each person", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.oh.tax.income.deductions.medical_exepenses.insured_unreimbursed_expenses.oh_insured_unreimbursed_medical_care_expenses_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "oh_insured_unreimbursed_medical_care_expense_amount": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "oh_insured_unreimbursed_medical_care_expense_amount", - "label": "Ohio insured unreimbursed medical and health care expense amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.oh.tax.income.deductions.medical_exepenses.insured_unreimbursed_expenses.oh_insured_unreimbursed_medical_care_expense_amount", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "oh_529_plan_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "oh_529_plan_deduction", - "label": "Ohio deduction for contributions to 529 plans", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.oh.tax.income.deductions.529_plan.oh_529_plan_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "oh_529_plan_deduction_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "oh_529_plan_deduction_person", - "label": "Ohio deduction for contributions to 529 plans", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.oh.tax.income.deductions.529_plan.oh_529_plan_deduction_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_cta_benefit": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "il_cta_benefit", - "label": "Illinois Chicago Transit Authority benefit amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.rta.cta.il_cta_benefit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_cta_children_reduced_fare_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "il_cta_children_reduced_fare_eligible", - "label": "Eligible for the Illinois Chicago Transit Authority children reduced fare", - "category": null, - "unit": null, - "moduleName": "gov.states.il.rta.cta.reduced_fare.il_cta_children_reduced_fare_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_cta_reduced_fare_benefit": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "il_cta_reduced_fare_benefit", - "label": "Illinois Chicago Transit Authority Reduced Fare Program benefit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.rta.cta.reduced_fare.il_cta_reduced_fare_benefit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_cta_reduced_fare_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "il_cta_reduced_fare_eligible", - "label": "Eligible for the Illinois Chicago Transit Authority Reduced Fare Program", - "category": null, - "unit": null, - "moduleName": "gov.states.il.rta.cta.reduced_fare.il_cta_reduced_fare_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_cta_rta_reduced_fare_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "il_cta_rta_reduced_fare_eligible", - "label": "Eligible for the Illinois Chicago Transit Authority RTA reduced fare", - "category": null, - "unit": null, - "moduleName": "gov.states.il.rta.cta.reduced_fare.il_cta_rta_reduced_fare_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_cta_student_reduced_fare_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "il_cta_student_reduced_fare_eligible", - "label": "Eligible for the Illinois Chicago Transit Authority student reduced fare", - "category": null, - "unit": null, - "moduleName": "gov.states.il.rta.cta.reduced_fare.il_cta_student_reduced_fare_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_cta_military_service_pass_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "il_cta_military_service_pass_eligible", - "label": "Eligible for the Illinois Chicago Transit Authority military service pass", - "category": null, - "unit": null, - "moduleName": "gov.states.il.rta.cta.free_ride.il_cta_military_service_pass_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_cta_free_ride_benefit": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "il_cta_free_ride_benefit", - "label": "Illinois Chicago Transit Authority Free Ride Program benefit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.rta.cta.free_ride.il_cta_free_ride_benefit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["gov.states.il.rta.cta.monthly_pass_cost.full_fare"], - "subtracts": null, - "hidden_input": false - }, - "il_cta_free_ride_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "il_cta_free_ride_eligible", - "label": "Eligible for the Illinois Chicago Transit Authority Free Ride Program", - "category": null, - "unit": null, - "moduleName": "gov.states.il.rta.cta.free_ride.il_cta_free_ride_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_bap_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "il_bap_eligible", - "label": "Eligible person for the Illinois Chicago Department of Aging Benefit Access Program (BAP)", - "category": null, - "unit": null, - "moduleName": "gov.states.il.idoa.bap.il_bap_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_income_tax_before_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "il_income_tax_before_non_refundable_credits", - "label": "IL income tax before credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.tax.income.il_income_tax_before_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_income_tax_before_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "il_income_tax_before_refundable_credits", - "label": "Illinois income tax before refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.tax.income.il_income_tax_before_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_taxable_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "il_taxable_income", - "label": "IL taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.tax.income.il_taxable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "il_income_tax", - "label": "Illinois income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.tax.income.il_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["il_total_tax"], - "subtracts": ["il_refundable_credits"], - "hidden_input": false - }, - "il_use_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "il_use_tax", - "label": "IL use tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.tax.income.il_use_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_total_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "il_total_tax", - "label": "Illinois total tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.tax.income.il_total_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["il_income_tax_before_refundable_credits", "il_use_tax"], - "subtracts": null, - "hidden_input": false - }, - "il_withheld_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "il_withheld_income_tax", - "label": "Illinois withheld income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.tax.income.il_withheld_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_schedule_m_additions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "il_schedule_m_additions", - "label": "IL Schedule M additions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.tax.income.schedule_m.il_schedule_m_additions", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_schedule_m_subtractions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "il_schedule_m_subtractions", - "label": "IL Schedule M deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.tax.income.schedule_m.il_schedule_m_subtractions", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_eitc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "il_eitc", - "label": "IL EITC", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.tax.income.credits.il_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_ctc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "il_ctc", - "label": "Illinois Child Tax Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.tax.income.credits.il_ctc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_nonrefundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "il_nonrefundable_credits", - "label": "Illinois non-refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.tax.income.credits.il_nonrefundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.il.tax.income.credits.non_refundable", - "subtracts": null, - "hidden_input": false - }, - "il_k12_education_expense_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "il_k12_education_expense_credit", - "label": "Illinois K-12 Education Expense Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.tax.income.credits.il_k12_education_expense_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_property_tax_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "il_property_tax_credit", - "label": "Illinois Property Tax Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.tax.income.credits.il_property_tax_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "il_refundable_credits", - "label": "Illinois refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.tax.income.credits.il_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.il.tax.income.credits.refundable", - "subtracts": null, - "hidden_input": false - }, - "il_total_exemptions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "il_total_exemptions", - "label": "IL total exemption allowance", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.tax.income.exemptions.il_total_exemptions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["il_personal_exemption", "il_aged_blind_exemption", "il_dependent_exemption"], - "subtracts": null, - "hidden_input": false - }, - "il_personal_exemption_eligibility_status": { - "documentation": null, - "entity": "tax_unit", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "il_personal_exemption_eligibility_status", - "label": "Whether The Tax Unit Is Eligible For The Illinois Personal Exemption", - "category": null, - "unit": null, - "moduleName": "gov.states.il.tax.income.exemptions.il_personal_exemption_eligibility_status", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "NOT_ELIGIBLE", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "BOTH_ELIGIBLE", - "label": 1 - }, - { - "value": "PARTIALLY_ELIGIBLE", - "label": 2 - }, - { - "value": "NOT_ELIGIBLE", - "label": 3 - } - ] - }, - "il_dependent_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "il_dependent_exemption", - "label": "Illinois dependent exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.tax.income.exemptions.il_dependent_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_personal_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "il_personal_exemption", - "label": "Illinois personal exemption amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.tax.income.exemptions.il_personal_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_aged_blind_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "il_aged_blind_exemption", - "label": "IL aged and blind exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.tax.income.exemptions.il_aged_blind_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_is_exemption_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "il_is_exemption_eligible", - "label": "Whether this tax unit is eligible for any exemptions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.tax.income.exemptions.il_is_exemption_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_pass_through_entity_tax_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "il_pass_through_entity_tax_credit", - "label": "IL Pass-Through Entity Tax Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.tax.income.pass_through.il_pass_through_entity_tax_credit", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_pass_through_withholding": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "il_pass_through_withholding", - "label": "IL Pass-Through Withholding", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.tax.income.pass_through.il_pass_through_withholding", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_base_income_additions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "il_base_income_additions", - "label": "IL base income additions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.tax.income.base_income.il_base_income_additions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.il.tax.income.base.additions", - "subtracts": null, - "hidden_input": false - }, - "il_base_income_subtractions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "il_base_income_subtractions", - "label": "IL base income subtractions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.tax.income.base_income.il_base_income_subtractions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.il.tax.income.base.subtractions", - "subtracts": null, - "hidden_input": false - }, - "il_base_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "il_base_income", - "label": "IL base income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.tax.income.base_income.il_base_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["adjusted_gross_income", "il_base_income_additions"], - "subtracts": ["il_base_income_subtractions"], - "hidden_input": false - }, - "il_aabd_institutional_status": { - "documentation": null, - "entity": "spm_unit", - "valueType": "Enum", - "definitionPeriod": "month", - "name": "il_aabd_institutional_status", - "label": "Illinois AABD Institutional Status", - "category": null, - "unit": null, - "moduleName": "gov.states.il.dhs.aabd.il_aabd_institutional_status", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": "NONE", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "A", - "label": "A" - }, - { - "value": "B", - "label": "B" - }, - { - "value": "C", - "label": "C" - }, - { - "value": "D", - "label": "D" - }, - { - "value": "E", - "label": "E" - }, - { - "value": "F", - "label": "F" - }, - { - "value": "G", - "label": "G" - }, - { - "value": "H", - "label": "H" - }, - { - "value": "I", - "label": "I" - }, - { - "value": "NONE", - "label": "None" - } - ] - }, - "il_aabd_area": { - "documentation": null, - "entity": "household", - "valueType": "Enum", - "definitionPeriod": "month", - "name": "il_aabd_area", - "label": "Illinois Aid to the Aged, Blind or Disabled (AABD) area", - "category": null, - "unit": null, - "moduleName": "gov.states.il.dhs.aabd.il_aabd_area", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "AREA_1", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "AREA_1", - "label": "Area 1" - }, - { - "value": "AREA_2", - "label": "Area 2" - }, - { - "value": "AREA_3", - "label": "Area 3" - }, - { - "value": "AREA_4", - "label": "Area 4" - }, - { - "value": "AREA_5", - "label": "Area 5" - }, - { - "value": "AREA_6", - "label": "Area 6" - }, - { - "value": "AREA_7", - "label": "Area 7" - }, - { - "value": "AREA_8", - "label": "Area 8" - } - ] - }, - "il_aabd": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "il_aabd", - "label": "Illinois Aid to the Aged, Blind or Disabled (AABD) cash benefit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.dhs.aabd.il_aabd", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["il_aabd_person"], - "subtracts": null, - "hidden_input": false - }, - "il_aabd_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "il_aabd_person", - "label": "Illinois Aid to the Aged, Blind or Disabled (AABD) cash benefit per person", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.dhs.aabd.il_aabd_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_aabd_countable_vehicle_value": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "il_aabd_countable_vehicle_value", - "label": "Illinois Aid to the Aged, Blind or Disabled (AABD) countable vehicles value", - "category": null, - "unit": null, - "moduleName": "gov.states.il.dhs.aabd.asset.il_aabd_countable_vehicle_value", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_aabd_countable_assets": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "il_aabd_countable_assets", - "label": "Illinois Aid to the Aged, Blind or Disabled (AABD) countable assets", - "category": null, - "unit": null, - "moduleName": "gov.states.il.dhs.aabd.asset.il_aabd_countable_assets", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.il.dhs.aabd.asset.sources", - "subtracts": null, - "hidden_input": false - }, - "il_aabd_vehicle_is_essential": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "il_aabd_vehicle_is_essential", - "label": "Whether the household has a vehicle which is considered essential under the Illinois Aid to the Aged, Blind or Disabled (AABD)", - "category": null, - "unit": null, - "moduleName": "gov.states.il.dhs.aabd.asset.il_aabd_vehicle_is_essential", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_aabd_asset_value_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "il_aabd_asset_value_eligible", - "label": "Eligible for Illinois Aid to the Aged, Blind or Disabled (AABD) due to asset", - "category": null, - "unit": null, - "moduleName": "gov.states.il.dhs.aabd.asset.il_aabd_asset_value_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_aabd_gross_unearned_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "il_aabd_gross_unearned_income", - "label": "Illinois Aid to the Aged, Blind or Disabled (AABD) gross unearned income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.dhs.aabd.income.il_aabd_gross_unearned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.il.dhs.aabd.income.sources.unearned", - "subtracts": null, - "hidden_input": false - }, - "il_aabd_flat_exemption_excess_over_unearned_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "il_aabd_flat_exemption_excess_over_unearned_income", - "label": "Illinois Aid to the Aged, Blind or Disabled (AABD) flat exemption excess over unearned income", - "category": null, - "unit": null, - "moduleName": "gov.states.il.dhs.aabd.income.il_aabd_flat_exemption_excess_over_unearned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_aabd_countable_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "il_aabd_countable_income", - "label": "Illinois Aid to the Aged, Blind or Disabled (AABD) countable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.dhs.aabd.income.il_aabd_countable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "il_aabd_earned_income_after_exemption_person", - "il_aabd_countable_unearned_income" - ], - "subtracts": null, - "hidden_input": false - }, - "il_aabd_countable_unearned_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "il_aabd_countable_unearned_income", - "label": "Illinois Aid to the Aged, Blind or Disabled (AABD) countable unearned income", - "category": null, - "unit": null, - "moduleName": "gov.states.il.dhs.aabd.income.il_aabd_countable_unearned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_aabd_expense_exemption_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "il_aabd_expense_exemption_person", - "label": "Illinois Aid to the Aged, Blind or Disabled (AABD) expense exemption per person", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.dhs.aabd.income.expense.il_aabd_expense_exemption_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.il.dhs.aabd.income.exemption.sources", - "subtracts": null, - "hidden_input": false - }, - "il_aabd_child_care_expense_exemption": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "il_aabd_child_care_expense_exemption", - "label": "Illinois Aid to the Aged, Blind or Disabled (AABD) childcare expense exemption", - "category": null, - "unit": null, - "moduleName": "gov.states.il.dhs.aabd.income.expense.il_aabd_child_care_expense_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_aabd_gross_earned_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "il_aabd_gross_earned_income", - "label": "Illinois Aid to the Aged, Blind or Disabled (AABD) gross earned income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.dhs.aabd.income.earned.il_aabd_gross_earned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.il.dhs.aabd.income.sources.earned", - "subtracts": null, - "hidden_input": false - }, - "il_aabd_earned_income_after_exemption_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "il_aabd_earned_income_after_exemption_person", - "label": "Illinois Aid to the Aged, Blind or Disabled (AABD) earned income after exemption per person", - "category": null, - "unit": null, - "moduleName": "gov.states.il.dhs.aabd.income.earned.il_aabd_earned_income_after_exemption_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_aabd_aged_blind_disabled_person": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "month", - "name": "il_aabd_aged_blind_disabled_person", - "label": "Aged, blind, or disabled person for Illinois Aid to the Aged, Blind or Disabled (AABD)", - "category": null, - "unit": null, - "moduleName": "gov.states.il.dhs.aabd.eligibility.il_aabd_aged_blind_disabled_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_aabd_eligible_person": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "month", - "name": "il_aabd_eligible_person", - "label": "Eligible person for Illinois Aid to the Aged, Blind or Disabled (AABD)", - "category": null, - "unit": null, - "moduleName": "gov.states.il.dhs.aabd.eligibility.il_aabd_eligible_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_aabd_immigration_status_eligible_person": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "month", - "name": "il_aabd_immigration_status_eligible_person", - "label": "Eligible person for Illinois Aid to the Aged, Blind or Disabled (AABD) based on immigration status", - "category": null, - "unit": null, - "moduleName": "gov.states.il.dhs.aabd.eligibility.il_aabd_immigration_status_eligible_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_aabd_financial_eligible_person": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "month", - "name": "il_aabd_financial_eligible_person", - "label": "Illinois Aid to the Aged, Blind or Disabled (AABD) eligible person due to financial criteria", - "category": null, - "unit": null, - "moduleName": "gov.states.il.dhs.aabd.eligibility.il_aabd_financial_eligible_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_aabd_non_financial_eligible_person": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "month", - "name": "il_aabd_non_financial_eligible_person", - "label": "Eligible person for Illinois Aid to the Aged, Blind or Disabled (AABD)", - "category": null, - "unit": null, - "moduleName": "gov.states.il.dhs.aabd.eligibility.il_aabd_non_financial_eligible_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_aabd_need_standard_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "il_aabd_need_standard_person", - "label": "Illinois Aid to the Aged, Blind or Disabled (AABD) need standard for each person", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.dhs.aabd.payment.il_aabd_need_standard_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "il_aabd_grant_amount", - "il_aabd_utility_allowance_person", - "il_aabd_personal_allowance", - "il_aabd_shelter_allowance" - ], - "subtracts": null, - "hidden_input": false - }, - "il_aabd_grant_amount": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "il_aabd_grant_amount", - "label": "Illinois Aid to the Aged, Blind or Disabled (AABD) grant amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.dhs.aabd.payment.il_aabd_grant_amount", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["gov.states.il.dhs.aabd.payment.grant_amount"], - "subtracts": null, - "hidden_input": false - }, - "il_aabd_is_bedfast": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "month", - "name": "il_aabd_is_bedfast", - "label": "Whether the person is a bedfast client under the Illinois Aid to the Aged, Blind or Disabled (AABD)", - "category": null, - "unit": null, - "moduleName": "gov.states.il.dhs.aabd.payment.personal_allowance.il_aabd_is_bedfast", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_aabd_personal_allowance": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "il_aabd_personal_allowance", - "label": "Illinois Aid to the Aged, Blind or Disabled (AABD) personal allowance", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.dhs.aabd.payment.personal_allowance.il_aabd_personal_allowance", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_aabd_utility_allowance": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "il_aabd_utility_allowance", - "label": "Illinois Aid to the Aged, Blind or Disabled (AABD) utility allowance", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.dhs.aabd.payment.utility.il_utility_allowance", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_aabd_utility_allowance_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "il_aabd_utility_allowance_person", - "label": "Illinois Aid to the Aged, Blind or Disabled (AABD) utility allowance per person", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.dhs.aabd.payment.utility.il_utility_allowance_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_aabd_shelter_allowance": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "il_aabd_shelter_allowance", - "label": "Illinois Aid to the Aged, Blind or Disabled (AABD) shelter allowance", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.dhs.aabd.payment.shelter.il_aabd_shelter_allowance", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_ccap_enrolled": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "il_ccap_enrolled", - "label": "Whether the family is currently enrolled in Illinois Child Care Assistance Program (CCAP)", - "category": null, - "unit": null, - "moduleName": "gov.states.il.dhs.ccap.il_ccap_enrolled", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_ccap_countable_income": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "il_ccap_countable_income", - "label": "Illinois Child Care Assistance Program (CCAP) countable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.dhs.ccap.il_ccap_countable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.il.dhs.ccap.income.countable_income.sources", - "subtracts": null, - "hidden_input": false - }, - "il_ccap_parent_meets_working_requirements": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "il_ccap_parent_meets_working_requirements", - "label": "Parent meets Illinois Child Care Assistance Program (CCAP) working requirements", - "category": null, - "unit": null, - "moduleName": "gov.states.il.dhs.ccap.eligibility.il_ccap_parent_meets_working_requirements", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_ccap_income_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "il_ccap_income_eligible", - "label": "Eligible for Illinois Child Care Assistance Program (CCAP) due to income", - "category": null, - "unit": null, - "moduleName": "gov.states.il.dhs.ccap.eligibility.il_ccap_income_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_ccap_eligible_child": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "month", - "name": "il_ccap_eligible_child", - "label": "Eligible child for Illinois Child Care Assistance Program (CCAP)", - "category": null, - "unit": null, - "moduleName": "gov.states.il.dhs.ccap.eligibility.il_ccap_eligible_child", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_ccap_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "il_ccap_eligible", - "label": "Eligible for Illinois Child Care Assistance Program (CCAP)", - "category": null, - "unit": null, - "moduleName": "gov.states.il.dhs.ccap.eligibility.il_ccap_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_ccap_immigration_status_eligible_person": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "month", - "name": "il_ccap_immigration_status_eligible_person", - "label": "Eligible person for Illinois Child Care Assistance Program (CCAP) based on immigration status", - "category": null, - "unit": null, - "moduleName": "gov.states.il.dhs.ccap.eligibility.il_ccap_immigration_status_eligible_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_tanf_payment_level_for_grant_calculation": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "il_tanf_payment_level_for_grant_calculation", - "label": "Illinois Temporary Assistance for Needy Families (TANF) payment level for grant calculation", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.dhs.tanf.il_tanf_payment_level_for_grant_application", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_tanf_payment_level_for_initial_eligibility": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "il_tanf_payment_level_for_initial_eligibility", - "label": "Illinois Temporary Assistance for Needy Families (TANF) payment level for initial eligibility", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.dhs.tanf.il_tanf_payment_level_for_initial_eligibility", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_tanf": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "il_tanf", - "label": "Illinois Temporary Assistance for Needy Families (TANF)", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.dhs.tanf.il_tanf", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_tanf_countable_income_for_initial_eligibility": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "il_tanf_countable_income_for_initial_eligibility", - "label": "Illinois Temporary Assistance for Needy Families (TANF) countable income at application", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.dhs.tanf.income.il_tanf_countable_income_for_initial_eligibility", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "il_tanf_countable_earned_income_for_initial_eligibility", - "il_tanf_countable_unearned_income" - ], - "subtracts": null, - "hidden_input": false - }, - "il_tanf_countable_income_for_grant_calculation": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "il_tanf_countable_income_for_grant_calculation", - "label": "Illinois Temporary Assistance for Needy Families (TANF) countable income for grant calculation", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.dhs.tanf.income.il_tanf_countable_income_for_grant_calculation", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "il_tanf_countable_earned_income_for_grant_calculation", - "il_tanf_countable_unearned_income" - ], - "subtracts": null, - "hidden_input": false - }, - "il_tanf_countable_unearned_income": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "il_tanf_countable_unearned_income", - "label": "Illinois Temporary Assistance for Needy Families (TANF) countable unearned income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.dhs.tanf.income.unearned.il_tanf_countable_unearned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_tanf_gross_unearned_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "il_tanf_gross_unearned_income", - "label": "Illinois Temporary Assistance for Needy Families (TANF) gross unearned income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.dhs.tanf.income.unearned.il_tanf_gross_unearned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.il.dhs.tanf.income.sources.unearned", - "subtracts": null, - "hidden_input": false - }, - "il_tanf_countable_earned_income_for_grant_calculation": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "il_tanf_countable_earned_income_for_grant_calculation", - "label": "Illinois Temporary Assistance for Needy Families (TANF) countable earned income for grant calculation", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.dhs.tanf.income.earned.il_tanf_countable_earned_income_for_grant_calculation", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_tanf_countable_earned_income_for_initial_eligibility": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "il_tanf_countable_earned_income_for_initial_eligibility", - "label": "Illinois Temporary Assistance for Needy Families (TANF) countable earned income for initial eligibility", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.dhs.tanf.income.earned.il_tanf_countable_earned_income_for_initial_eligibility", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_tanf_countable_gross_earned_income": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "il_tanf_countable_gross_earned_income", - "label": "Illinois Temporary Assistance for Needy Families (TANF) countable gross earned income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.dhs.tanf.income.earned.il_tanf_countable_gross_earned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_tanf_gross_earned_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "il_tanf_gross_earned_income", - "label": "Illinois Temporary Assistance for Needy Families (TANF) gross earned income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.dhs.tanf.income.earned.il_tanf_gross_earned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.il.dhs.tanf.income.sources.earned", - "subtracts": null, - "hidden_input": false - }, - "il_tanf_initial_employment_deduction_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "il_tanf_initial_employment_deduction_person", - "label": "Illinois Temporary Assistance for Needy Families (TANF) initial employment deduction per person", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.dhs.tanf.income.deductions.il_tanf_initial_employment_deduction_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_tanf_childcare_deduction": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "il_tanf_childcare_deduction", - "label": "Illinois Temporary Assistance for Needy Families (TANF) child care deduction ", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.il.dhs.tanf.income.deductions.il_tanf_childcare_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_tanf_payment_eligible_requirements": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "month", - "name": "il_tanf_payment_eligible_requirements", - "label": "Eligible requirements for Illinois Temporary Assistance for Needy Families (TANF) payment", - "category": null, - "unit": null, - "moduleName": "gov.states.il.dhs.tanf.assistance_unit.il_tanf_payment_eligible_requirements", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_tanf_assistance_unit_size": { - "documentation": null, - "entity": "spm_unit", - "valueType": "int", - "definitionPeriod": "month", - "name": "il_tanf_assistance_unit_size", - "label": "Illinois Temporary Assistance for Needy Families (TANF) assistance unit size", - "category": null, - "unit": null, - "moduleName": "gov.states.il.dhs.tanf.assistance_unit.il_tanf_assistance_unit_size", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["il_tanf_payment_eligible_child", "il_tanf_payment_eligible_parent"], - "subtracts": null, - "hidden_input": false - }, - "il_tanf_assistance_unit_fpg": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "il_tanf_assistance_unit_fpg", - "label": "Illinois TANF assistance unit's federal poverty guideline", - "category": null, - "unit": null, - "moduleName": "gov.states.il.dhs.tanf.assistance_unit.il_tanf_assistance_unit_fpg", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_tanf_payment_eligible_parent": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "month", - "name": "il_tanf_payment_eligible_parent", - "label": "Eligible parent for Illinois Temporary Assistance for Needy Families (TANF) payment", - "category": null, - "unit": null, - "moduleName": "gov.states.il.dhs.tanf.assistance_unit.il_tanf_payment_eligible_parent", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_tanf_payment_eligible_child": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "month", - "name": "il_tanf_payment_eligible_child", - "label": "Eligible child for Illinois Temporary Assistance for Needy Families (TANF) payment", - "category": null, - "unit": null, - "moduleName": "gov.states.il.dhs.tanf.assistance_unit.il_tanf_payment_eligible_child", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_tanf_immigration_status_eligible_person": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "month", - "name": "il_tanf_immigration_status_eligible_person", - "label": "Eligible person for the Illinois TANF based on immigration status", - "category": null, - "unit": null, - "moduleName": "gov.states.il.dhs.tanf.eligibility.il_tanf_immigration_status_eligible_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_tanf_non_financial_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "il_tanf_non_financial_eligible", - "label": "Eligible for Illinois Temporary Assistance for Needy Families (TANF) due to non financial requirements", - "category": null, - "unit": null, - "moduleName": "gov.states.il.dhs.tanf.eligibility.il_tanf_non_financial_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_tanf_eligible_child": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "month", - "name": "il_tanf_eligible_child", - "label": "Eligible child for Illinois Temporary Assistance for Needy Families (TANF) based on demographics", - "category": null, - "unit": null, - "moduleName": "gov.states.il.dhs.tanf.eligibility.il_tanf_eligible_child", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_tanf_income_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "il_tanf_income_eligible", - "label": "Eligible for Illinois Temporary Assistance for Needy Families (TANF) due to income", - "category": null, - "unit": null, - "moduleName": "gov.states.il.dhs.tanf.eligibility.il_tanf_income_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_tanf_demographic_eligible_person": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "month", - "name": "il_tanf_demographic_eligible_person", - "label": "Eligible person for Illinois Temporary Assistance for Needy Families (TANF) based on demographics", - "category": null, - "unit": null, - "moduleName": "gov.states.il.dhs.tanf.eligibility.il_tanf_demographic_eligible_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "il_tanf_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "il_tanf_eligible", - "label": "Eligible for Illinois Temporary Assistance for Needy Families (TANF)", - "category": null, - "unit": null, - "moduleName": "gov.states.il.dhs.tanf.eligibility.il_tanf_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ut_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ut_income_tax", - "label": "Utah income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ut.tax.income.ut_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ut_income_tax_before_refundable_credits"], - "subtracts": ["ut_refundable_credits"], - "hidden_input": false - }, - "ut_income_tax_before_refundable_credits": { - "documentation": "Form TC-40, line 32", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ut_income_tax_before_refundable_credits", - "label": "Utah income tax before refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ut.tax.income.ut_income_tax_before_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ut_income_tax_before_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ut_income_tax_before_non_refundable_credits", - "label": "Utah income tax before non-refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ut.tax.income.ut_income_tax_before_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ut_income_tax_before_credits": { - "documentation": "Form TC-40, line 10", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ut_income_tax_before_credits", - "label": "Utah income tax before credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ut.tax.income.ut_income_tax_before_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ut_income_tax_exempt": { - "documentation": "Form TC-40, line 21", - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ut_income_tax_exempt", - "label": "exempt from Utah income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ut.tax.income.ut_income_tax_exempt", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ut_withheld_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ut_withheld_income_tax", - "label": "Utah withheld income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ut.tax.income.ut_withheld_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ut_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ut_non_refundable_credits", - "label": "Utah non-refundable tax credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ut.tax.income.credits.ut_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ut.tax.income.credits.non_refundable", - "subtracts": null, - "hidden_input": false - }, - "ut_at_home_parent_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ut_at_home_parent_credit", - "label": "Utah at-home parent credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ut.tax.income.credits.ut_at_home_parent_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ut_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ut_refundable_credits", - "label": "Utah refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ut.tax.income.credits.ut_refundable_credits", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ut_at_home_parent_credit_agi_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ut_at_home_parent_credit_agi_eligible", - "label": "Eligible for the Utah at-home parent credit based on adjusted gross income", - "category": null, - "unit": null, - "moduleName": "gov.states.ut.tax.income.credits.ut_at_home_parent_credit_agi_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ut_at_home_parent_credit_earned_income_eligible_person": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ut_at_home_parent_credit_earned_income_eligible_person", - "label": "Eligible person for the Utah at-home parent credit income based on the earned income", - "category": null, - "unit": null, - "moduleName": "gov.states.ut.tax.income.credits.ut_at_home_parent_credit_earned_income_eligible_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ut_eitc": { - "documentation": "This credit is a fraction of the federal EITC.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ut_eitc", - "label": "Utah Earned Income Tax Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ut.tax.income.credits.ut_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ut_retirement_credit_max": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ut_retirement_credit_max", - "label": "Utah retirement credit maximum amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ut.tax.income.credits.retirement_credit.ut_retirement_credit_max", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ut_retirement_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ut_retirement_credit", - "label": "Utah retirement credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ut.tax.income.credits.retirement_credit.ut_retirement_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ut_retirement_credit_max"], - "subtracts": null, - "hidden_input": false - }, - "ut_claims_retirement_credit": { - "documentation": "Utah residents can claim only one of the retirement credit or the social security benefits credit. We assume they claim the one with higher value.", - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ut_claims_retirement_credit", - "label": "claims the Utah retirement credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ut.tax.income.credits.retirement_credit.ut_claims_retirement_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ut_ss_benefits_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ut_ss_benefits_credit", - "label": "Utah Social Security Benefits Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ut.tax.income.credits.ss_benefits_credit.ut_ss_benefits_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ut_ss_benefits_credit_max": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ut_ss_benefits_credit_max", - "label": "Utah Social Security Benefits Credit maximum amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ut.tax.income.credits.ss_benefits_credit.ut_ss_benefits_credit_max", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ut_taxpayer_credit_reduction": { - "documentation": "Form TC-40, line 19", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ut_taxpayer_credit_reduction", - "label": "Utah taxpayer credit reduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ut.tax.income.credits.taxpayer_credit.ut_taxpayer_credit_reduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ut_personal_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ut_personal_exemption", - "label": "Utah personal exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ut.tax.income.credits.taxpayer_credit.ut_personal_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ut_personal_exemption_additional_dependents": { - "documentation": null, - "entity": "tax_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "ut_personal_exemption_additional_dependents", - "label": "Utah total additional dependents under the personal exemption", - "category": null, - "unit": null, - "moduleName": "gov.states.ut.tax.income.credits.taxpayer_credit.ut_personal_exemption_additional_dependents", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ut_personal_exemption_additional_dependent_eligible"], - "subtracts": null, - "hidden_input": false - }, - "ut_taxpayer_credit_phase_out_income": { - "documentation": "Income that reduces the Utah taxpayer credit. Form TC-40, line 18", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ut_taxpayer_credit_phase_out_income", - "label": "Utah taxpayer credit phase-out income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ut.tax.income.credits.taxpayer_credit.ut_taxpayer_credit_phase_out_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ut_total_dependents": { - "documentation": "Form TC-40, line 2c", - "entity": "tax_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "ut_total_dependents", - "label": "Utah total dependents", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ut.tax.income.credits.taxpayer_credit.ut_total_dependents", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["tax_unit_count_dependents"], - "subtracts": null, - "hidden_input": false - }, - "ut_federal_deductions_for_taxpayer_credit": { - "documentation": "These federal deductions are added to the Utah personal exemption to determine the Utah taxpayer credit.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ut_federal_deductions_for_taxpayer_credit", - "label": "Utah federal deductions considered for taxpayer credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ut.tax.income.credits.taxpayer_credit.ut_federal_deductions_for_taxpayer_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ut_personal_exemption_additional_dependent_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ut_personal_exemption_additional_dependent_eligible", - "label": "Utah additional dependent personal exemption eligible", - "category": null, - "unit": null, - "moduleName": "gov.states.ut.tax.income.credits.taxpayer_credit.ut_personal_exemption_additional_dependent_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ut_taxpayer_credit": { - "documentation": "Form TC-40, line 20", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ut_taxpayer_credit", - "label": "Utah taxpayer credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ut.tax.income.credits.taxpayer_credit.ut_taxpayer_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ut_taxpayer_credit_max": { - "documentation": "Form TC-40, line (12 through) 16", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ut_taxpayer_credit_max", - "label": "Utah initial taxpayer credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ut.tax.income.credits.taxpayer_credit.ut_taxpayer_credit_max", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ut_ctc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ut_ctc", - "label": "Utah Child Tax Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ut.tax.income.credits.child_tax_credit.ut_ctc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ut_taxable_income": { - "documentation": "Form TC-40, line 9", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ut_taxable_income", - "label": "Utah taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ut.tax.income.taxable_income.ut_taxable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ut_total_income"], - "subtracts": ["ut_subtractions", "ut_state_tax_refund"], - "hidden_input": false - }, - "ut_state_tax_refund": { - "documentation": "Form TC-40, line 7", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ut_state_tax_refund", - "label": "Utah state tax refund", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ut.tax.income.taxable_income.ut_state_tax_refund", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["salt_refund_last_year"], - "subtracts": null, - "hidden_input": false - }, - "ut_total_income": { - "documentation": "Form TC-40, line 6", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ut_total_income", - "label": "Utah total income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ut.tax.income.taxable_income.ut_total_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["adjusted_gross_income", "ut_additions"], - "subtracts": null, - "hidden_input": false - }, - "ut_additions": { - "documentation": "Form TC-40, line 5", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ut_additions", - "label": "Utah additions to income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ut.tax.income.taxable_income.ut_additions", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ut_subtractions": { - "documentation": "Form TC-40, line 8", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ut_subtractions", - "label": "Utah subtractions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ut.tax.income.taxable_income.ut_subtractions", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_income_tax_before_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "dc_income_tax_before_credits", - "label": "DC income tax before credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.tax.income.dc_income_tax_before_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_snap_temporary_local_benefit": { - "documentation": "DC temporary SNAP benefit amount", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "dc_snap_temporary_local_benefit", - "label": "DC temporary local SNAP benefit amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.tax.income.dc_snap_temporary_local_benefit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_income_tax_before_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "dc_income_tax_before_refundable_credits", - "label": "DC income tax before refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.tax.income.dc_income_tax_before_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_income_tax_before_credits_indiv": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "dc_income_tax_before_credits_indiv", - "label": "DC income tax before credits when married couples file separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.tax.income.dc_income_tax_before_credits_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_agi": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "dc_agi", - "label": "DC AGI (adjusted gross income) for each person in tax unit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.tax.income.dc_agi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["adjusted_gross_income_person", "dc_additions"], - "subtracts": ["dc_income_subtractions"], - "hidden_input": false - }, - "dc_withheld_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "dc_withheld_income_tax", - "label": "DC withheld income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.tax.income.dc_withheld_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_income_tax_before_credits_joint": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "dc_income_tax_before_credits_joint", - "label": "DC income tax before credits when married couples file jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.tax.income.dc_income_tax_before_credits_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_taxable_income_joint": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "dc_taxable_income_joint", - "label": "DC taxable income (can be negative) when married couple files jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.tax.income.dc_taxable_income_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["dc_taxable_income_indiv"], - "subtracts": null, - "hidden_input": false - }, - "dc_taxable_income_indiv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "dc_taxable_income_indiv", - "label": "DC taxable income (can be negative) when married couple files separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.tax.income.dc_taxable_income_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["dc_agi"], - "subtracts": ["dc_deduction_indiv"], - "hidden_input": false - }, - "dc_files_separately": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "dc_files_separately", - "label": "Married couple files separately on DC tax return", - "category": null, - "unit": null, - "moduleName": "gov.states.dc.tax.income.dc_files_separately", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "dc_income_tax", - "label": "DC income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.tax.income.dc_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["dc_income_tax_before_refundable_credits"], - "subtracts": ["dc_refundable_credits"], - "hidden_input": false - }, - "dc_cdcc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "dc_cdcc", - "label": "DC child and dependent care credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.tax.income.credits.dc_cdcc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_ptc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "dc_ptc", - "label": "DC property tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.tax.income.credits.dc_ptc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "takes_up_dc_ptc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "takes_up_dc_ptc", - "label": "Takes up the DC property tax credit", - "category": null, - "unit": null, - "moduleName": "gov.states.dc.tax.income.credits.takes_up_dc_ptc", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": true, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_kccatc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "dc_kccatc", - "label": "DC keep child care affordable tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.tax.income.credits.dc_kccatc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "dc_refundable_credits", - "label": "DC refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.tax.income.credits.dc_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.dc.tax.income.credits.refundable", - "subtracts": null, - "hidden_input": false - }, - "dc_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "dc_non_refundable_credits", - "label": "DC non-refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.tax.income.credits.dc_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.dc.tax.income.credits.non_refundable", - "subtracts": null, - "hidden_input": false - }, - "dc_eitc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "dc_eitc", - "label": "DC EITC", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.tax.income.credits.eitc.dc_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_eitc_without_qualifying_child": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "dc_eitc_without_qualifying_child", - "label": "DC EITC without qualifying children", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.tax.income.credits.eitc.dc_eitc_without_qualifying_child", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_eitc_with_qualifying_child": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "dc_eitc_with_qualifying_child", - "label": "DC EITC with qualifying children", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.tax.income.credits.eitc.dc_eitc_with_qualifying_child", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_ctc_capped_children": { - "documentation": null, - "entity": "tax_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "dc_ctc_capped_children", - "label": "Capped number of DC CTC eligible children", - "category": null, - "unit": null, - "moduleName": "gov.states.dc.tax.income.credits.ctc.dc_ctc_capped_children", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_ctc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "dc_ctc", - "label": "DC Child Tax Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.tax.income.credits.ctc.dc_ctc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_ctc_eligible_child": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "dc_ctc_eligible_child", - "label": "Whether the child is eligible for the DC CTC", - "category": null, - "unit": null, - "moduleName": "gov.states.dc.tax.income.credits.ctc.dc_ctc_eligible_child", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_disabled_exclusion_subtraction": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "dc_disabled_exclusion_subtraction", - "label": "DC disabled exclusion subtraction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.tax.income.subtractions.dc_disabled_exclusion_subtraction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_disability_exclusion": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "dc_disability_exclusion", - "label": "DC disability exclusion", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.tax.income.subtractions.dc_disability_exclusion", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_income_subtractions": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "dc_income_subtractions", - "label": "DC subtractions from federal adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.tax.income.subtractions.dc_income_subtractions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.dc.tax.income.subtractions.sources", - "subtracts": null, - "hidden_input": false - }, - "dc_additions": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "dc_additions", - "label": "DC additions to federal adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.tax.income.additions.dc_additions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.dc.tax.income.additions.sources", - "subtracts": null, - "hidden_input": false - }, - "dc_self_employment_loss_addition": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "dc_self_employment_loss_addition", - "label": "DC excess self-employment loss addition", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.tax.income.additions.dc_self_employment_loss_addition", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_standard_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "dc_standard_deduction", - "label": "DC standard deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.tax.income.deductions.dc_standard_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["basic_standard_deduction", "additional_standard_deduction"], - "subtracts": null, - "hidden_input": false - }, - "dc_deduction_indiv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "dc_deduction_indiv", - "label": "DC deduction for each person in tax unit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.tax.income.deductions.dc_deduction_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_itemized_deductions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "dc_itemized_deductions", - "label": "DC itemized deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.tax.income.deductions.dc_itemized_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_deduction_joint": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "dc_deduction_joint", - "label": "DC deduction for each tax unit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.tax.income.deductions.dc_deduction_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_liheap_housing_type": { - "documentation": null, - "entity": "spm_unit", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "dc_liheap_housing_type", - "label": "Housing type for DC LIHEAP", - "category": null, - "unit": null, - "moduleName": "gov.states.dc.doee.liheap.dc_liheap_housing_type", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": "MULTI_FAMILY", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "SINGLE_FAMILY", - "label": "Single Family" - }, - { - "value": "MULTI_FAMILY", - "label": "Multi Family" - } - ] - }, - "dc_liheap_payment": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "dc_liheap_payment", - "label": "DC LIHEAP payment", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.doee.liheap.dc_liheap_payment", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_liheap_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "dc_liheap_eligible", - "label": "Eligible for the DC LIHEAP", - "category": null, - "unit": null, - "moduleName": "gov.states.dc.doee.liheap.dc_liheap_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_liheap_income_level": { - "documentation": null, - "entity": "spm_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "dc_liheap_income_level", - "label": "Income level for DC LIHEAP payment", - "category": null, - "unit": null, - "moduleName": "gov.states.dc.doee.liheap.dc_liheap_income_level", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_liheap_heating_type": { - "documentation": null, - "entity": "spm_unit", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "dc_liheap_heating_type", - "label": "Household heating types for DC LIHEAP", - "category": null, - "unit": null, - "moduleName": "gov.states.dc.doee.liheap.dc_liheap_heating_type", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": "ELECTRICITY", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "ELECTRICITY", - "label": "Electricity" - }, - { - "value": "GAS", - "label": "Gas" - }, - { - "value": "HEAT_IN_RENT", - "label": "Heat in Rent" - }, - { - "value": "OIL", - "label": "Oil" - } - ] - }, - "dc_pap_eligible_child": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "month", - "name": "dc_pap_eligible_child", - "label": "Eligible child for DC Public Assistance Programs based on demographics", - "category": null, - "unit": null, - "moduleName": "gov.states.dc.dhs.dc_pap_eligible_child", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_ccsp_enrolled": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "dc_ccsp_enrolled", - "label": "Whether the family is currently enrolled in DC Child Care Subsidy Program (CCSP)", - "category": null, - "unit": null, - "moduleName": "gov.states.dc.dhs.ccsp.dc_ccsp_enrolled", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_ccsp_assets": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "dc_ccsp_assets", - "label": "DC Child Care Subsidy Program (CCSP) asset", - "category": null, - "unit": null, - "moduleName": "gov.states.dc.dhs.ccsp.dc_ccsp_assets", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.dc.dhs.ccsp.assets.sources", - "subtracts": null, - "hidden_input": false - }, - "dc_ccsp": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "dc_ccsp", - "label": "DC Child Care Subsidy Program (CCSP) benefit amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.dhs.ccsp.dc_ccsp", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_ccsp_countable_income": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "dc_ccsp_countable_income", - "label": "DC Child Care Subsidy Program (CCSP) countable income", - "category": null, - "unit": null, - "moduleName": "gov.states.dc.dhs.ccsp.dc_ccsp_countable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.dc.dhs.ccsp.income.countable_income.sources", - "subtracts": null, - "hidden_input": false - }, - "dc_ccsp_first_child_copay": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "dc_ccsp_first_child_copay", - "label": "DC Child Care Subsidy Program (CCSP) fist child copay amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.dhs.ccsp.copay.dc_ccsp_first_child_copay", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_ccsp_is_full_time": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "month", - "name": "dc_ccsp_is_full_time", - "label": "Person is attending full time day care under DC Child Care Subsidy Program (CCSP)", - "category": null, - "unit": null, - "moduleName": "gov.states.dc.dhs.ccsp.copay.dc_ccsp_is_full_time", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_ccsp_is_second_youngest_child": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "month", - "name": "dc_ccsp_is_second_youngest_child", - "label": "Person is the second youngest child for DC Child Care Subsidy Program (CCSP) ", - "category": null, - "unit": null, - "moduleName": "gov.states.dc.dhs.ccsp.copay.dc_ccsp_is_second_youngest_child", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_ccsp_second_child_copay": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "dc_ccsp_second_child_copay", - "label": "DC Child Care Subsidy Program (CCSP) second child copay amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.dhs.ccsp.copay.dc_ccsp_second_child_copay", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_ccsp_copay": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "dc_ccsp_copay", - "label": "DC Child Care Subsidy Program (CCSP) copay", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.dhs.ccsp.copay.dc_ccsp_copay", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_ccsp_is_youngest_child": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "month", - "name": "dc_ccsp_is_youngest_child", - "label": "Person is the youngest child for DC Child Care Subsidy Program (CCSP) ", - "category": null, - "unit": null, - "moduleName": "gov.states.dc.dhs.ccsp.copay.dc_ccsp_is_youngest_child", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_ccsp_income_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "dc_ccsp_income_eligible", - "label": "Eligible for DC Child Care Subsidy Program (CCSP) due to income", - "category": null, - "unit": null, - "moduleName": "gov.states.dc.dhs.ccsp.eligibility.dc_ccsp_income_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_ccsp_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "dc_ccsp_eligible", - "label": "Eligible for DC Child Care Subsidy Program (CCSP)", - "category": null, - "unit": null, - "moduleName": "gov.states.dc.dhs.ccsp.eligibility.dc_ccsp_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_ccsp_eligible_child": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "month", - "name": "dc_ccsp_eligible_child", - "label": "Eligible child for DC Child Care Subsidy Program (CCSP)", - "category": null, - "unit": null, - "moduleName": "gov.states.dc.dhs.ccsp.eligibility.dc_ccsp_eligible_child", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_ccsp_immigration_status_eligible_person": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "month", - "name": "dc_ccsp_immigration_status_eligible_person", - "label": "Eligible person for DC Child Care Subsidy Program (CCSP) based on immigration status", - "category": null, - "unit": null, - "moduleName": "gov.states.dc.dhs.ccsp.eligibility.dc_ccsp_immigration_status_eligible_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_ccsp_income_test_waived": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "dc_ccsp_income_test_waived", - "label": "Income test exemption under DC Child Care Subsidy Program (CCSP)", - "category": null, - "unit": null, - "moduleName": "gov.states.dc.dhs.ccsp.eligibility.dc_ccsp_income_test_waived", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_ccsp_asset_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "dc_ccsp_asset_eligible", - "label": "Eligible for DC Child Care Subsidy Program (CCSP) due to income", - "category": null, - "unit": null, - "moduleName": "gov.states.dc.dhs.ccsp.eligibility.dc_ccsp_asset_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_ccsp_qualified_activity_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "dc_ccsp_qualified_activity_eligible", - "label": "Eligible for DC Child Care Subsidy Program (CCSP) due to qualified activity", - "category": null, - "unit": null, - "moduleName": "gov.states.dc.dhs.ccsp.eligibility.qualified_activity_or_need.dc_ccsp_qualified_activity_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_ccsp_qualified_need_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "dc_ccsp_qualified_need_eligible", - "label": "Eligible for DC Child Care Subsidy Program (CCSP) due to qualified need", - "category": null, - "unit": null, - "moduleName": "gov.states.dc.dhs.ccsp.eligibility.qualified_activity_or_need.dc_ccsp_qualified_need_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_ccsp_qualified_activity_or_need_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "dc_ccsp_qualified_activity_or_need_eligible", - "label": "Eligible for DC Child Care Subsidy Program (CCSP) due to qualified activity or need", - "category": null, - "unit": null, - "moduleName": "gov.states.dc.dhs.ccsp.eligibility.qualified_activity_or_need.dc_ccsp_qualified_activity_or_need_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_ccsp_childcare_provider_category": { - "documentation": null, - "entity": "person", - "valueType": "Enum", - "definitionPeriod": "month", - "name": "dc_ccsp_childcare_provider_category", - "label": "DC Child Care Subsidy Program (CCSP) child care provider category", - "category": null, - "unit": null, - "moduleName": "gov.states.dc.dhs.ccsp.payment.dc_ccsp_childcare_provider_category", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": "CHILD_CENTER", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "CHILD_CENTER", - "label": "Child Center" - }, - { - "value": "CHILD_HOME_AND_EXPANDED_HOME", - "label": "Child Home and Expanded Home" - }, - { - "value": "IN_HOME_CHILD_CARE", - "label": "In-Home Child Care" - } - ] - }, - "dc_ccsp_maximum_subsidy_amount": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "dc_ccsp_maximum_subsidy_amount", - "label": "DC Child Care Subsidy Program (CCSP) maximum subsidy amount per child", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.dhs.ccsp.payment.dc_ccsp_maximum_subsidy_amount", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_ccsp_child_category": { - "documentation": null, - "entity": "person", - "valueType": "Enum", - "definitionPeriod": "month", - "name": "dc_ccsp_child_category", - "label": "DC Child Care Subsidy Program (CCSP) child category", - "category": null, - "unit": null, - "moduleName": "gov.states.dc.dhs.ccsp.payment.dc_ccsp_child_category", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": "PRESCHOOL", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "INFANT_AND_TODDLER", - "label": "Infant and Toddler" - }, - { - "value": "INFANT_AND_TODDLER_SPECIAL_NEEDS", - "label": "Infant and Toddler Special Needs" - }, - { - "value": "PRESCHOOL", - "label": "Preschool" - }, - { - "value": "PRESCHOOL_BEFORE_AND_AFTER", - "label": "Preschool Before and After" - }, - { - "value": "SCHOOL_AGE_BEFORE_AND_AFTER", - "label": "School-Age Before and After" - }, - { - "value": "SCHOOL_AGE_BEFORE_OR_AFTER", - "label": "School-Age Before or After" - }, - { - "value": "PRESCHOOL_AND_SCHOOL_AGE_SPECIAL_NEEDS", - "label": "Preschool and School-Age Special Needs" - } - ] - }, - "dc_ccsp_attending_days_per_month": { - "documentation": null, - "entity": "person", - "valueType": "int", - "definitionPeriod": "month", - "name": "dc_ccsp_attending_days_per_month", - "label": "DC Child Care Subsidy Program (CCSP) attending days per month", - "category": null, - "unit": null, - "moduleName": "gov.states.dc.dhs.ccsp.payment.dc_ccsp_attending_days_per_month", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_ccsp_schedule_type": { - "documentation": null, - "entity": "person", - "valueType": "Enum", - "definitionPeriod": "month", - "name": "dc_ccsp_schedule_type", - "label": "DC Child Care Subsidy Program (CCSP) schedule type", - "category": null, - "unit": null, - "moduleName": "gov.states.dc.dhs.ccsp.payment.dc_ccsp_schedule_type", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": "FULL_TIME_TRADITIONAL", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "FULL_TIME_TRADITIONAL", - "label": "Full-Time Traditional" - }, - { - "value": "PART_TIME_TRADITIONAL", - "label": "Part-Time Traditional" - }, - { - "value": "EXTENDED_DAY_FULL_TIME", - "label": "Extended Day Full-Time" - }, - { - "value": "EXTENDED_DAY_PART_TIME", - "label": "Extended Day Part-Time" - }, - { - "value": "FULL_TIME_NONTRADITIONAL", - "label": "Full-Time Nontraditional" - }, - { - "value": "PART_TIME_NONTRADITIONAL", - "label": "Part-Time Nontraditional" - } - ] - }, - "dc_gac_standard_payment": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "dc_gac_standard_payment", - "label": "DC General Assistance for Children (GAC) standard payment", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.dhs.gac.dc_gac_standard_payment", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_gac": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "dc_gac", - "label": "DC General Assistance for Children (GAC)", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.dhs.gac.dc_gac", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_gac_assistance_unit_size": { - "documentation": null, - "entity": "spm_unit", - "valueType": "int", - "definitionPeriod": "month", - "name": "dc_gac_assistance_unit_size", - "label": "DC General Assistance for Children (GAC) assistance unit size", - "category": null, - "unit": null, - "moduleName": "gov.states.dc.dhs.gac.dc_gac_assistance_unit_size", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["dc_gac_eligible_child"], - "subtracts": null, - "hidden_input": false - }, - "dc_gac_earned_income_after_disregard_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "dc_gac_earned_income_after_disregard_person", - "label": "DC General Assistance for Children (GAC) earned income after disregard per person", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.dhs.gac.income.dc_gac_earned_income_after_disregard_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_gac_countable_unearned_income_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "dc_gac_countable_unearned_income_person", - "label": "DC General Assistance for Children (GAC) unearned income per person", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.dhs.gac.income.dc_gac_countable_unearned_income_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["dc_tanf_gross_unearned_income"], - "subtracts": null, - "hidden_input": false - }, - "dc_gac_countable_income": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "dc_gac_countable_income", - "label": "DC General Assistance for Children (GAC) countable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.dhs.gac.income.dc_gac_countable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "dc_gac_earned_income_after_disregard_person", - "dc_gac_countable_unearned_income_person" - ], - "subtracts": null, - "hidden_input": false - }, - "dc_gac_eligible_child": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "month", - "name": "dc_gac_eligible_child", - "label": "Eligible child for DC General Assistance for Children (GAC) based on demographics", - "category": null, - "unit": null, - "moduleName": "gov.states.dc.dhs.gac.eligibility.dc_gac_eligible_child", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_gac_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "dc_gac_eligible", - "label": "Eligible for DC General Assistance for Children (GAC)", - "category": null, - "unit": null, - "moduleName": "gov.states.dc.dhs.gac.eligibility.dc_gac_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_gac_income_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "dc_gac_income_eligible", - "label": "Eligible for DC General Assistance for Children (GAC) due to income", - "category": null, - "unit": null, - "moduleName": "gov.states.dc.dhs.gac.eligibility.dc_gac_income_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_power_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "dc_power_eligible", - "label": "Eligible for DC Program on Work, Employment, and Responsibility (POWER)", - "category": null, - "unit": null, - "moduleName": "gov.states.dc.dhs.power.dc_power_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_power": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "dc_power", - "label": "DC Program on Work, Employment, and Responsibility (POWER)", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.dhs.power.dc_power", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_power_head_or_spouse_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "month", - "name": "dc_power_head_or_spouse_eligible", - "label": "Eligible for DC Program on Work, Employment, and Responsibility (POWER)", - "category": null, - "unit": null, - "moduleName": "gov.states.dc.dhs.power.dc_power_head_or_spouse_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_power_has_disqualifying_benefits": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "dc_power_has_disqualifying_benefits", - "label": "Is receiving disqualifying benefits under DC Program on Work, Employment, and Responsibility (POWER)", - "category": null, - "unit": null, - "moduleName": "gov.states.dc.dhs.power.dc_power_has_disqualifying_beneifts", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": "gov.states.dc.dhs.power.disqualifying_benefits", - "subtracts": null, - "hidden_input": false - }, - "dc_tanf_countable_resources": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "dc_tanf_countable_resources", - "label": "DC Temporary Assistance for Needy Families (TANF) countable resources", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.dhs.tanf.dc_tanf_countable_resources", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_tanf_standard_payment": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "dc_tanf_standard_payment", - "label": "DC Temporary Assistance for Needy Families (TANF) standard payment", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.dhs.tanf.dc_tanf_standard_payment", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_tanf": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "dc_tanf", - "label": "DC Temporary Assistance for Needy Families (TANF)", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.dhs.tanf.dc_tanf", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_tanf_assistance_unit_size": { - "documentation": null, - "entity": "spm_unit", - "valueType": "int", - "definitionPeriod": "month", - "name": "dc_tanf_assistance_unit_size", - "label": "DC Temporary Assistance for Needy Families (TANF) assistance unit size", - "category": null, - "unit": null, - "moduleName": "gov.states.dc.dhs.tanf.dc_tanf_assistance_unit_size", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["spm_unit_size"], - "subtracts": ["dc_gac_assistance_unit_size"], - "hidden_input": false - }, - "dc_tanf_countable_income": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "dc_tanf_countable_income", - "label": "DC Temporary Assistance for Needy Families (TANF) countable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.dhs.tanf.income.dc_tanf_countable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_tanf_countable_unearned_income": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "dc_tanf_countable_unearned_income", - "label": "DC Temporary Assistance for Needy Families (TANF) countable unearned income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.dhs.tanf.income.unearned.dc_tanf_countable_unearned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_tanf_gross_unearned_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "dc_tanf_gross_unearned_income", - "label": "DC Temporary Assistance for Needy Families (TANF) gross unearned income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.dhs.tanf.income.unearned.dc_tanf_gross_unearned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.dc.dhs.tanf.income.sources.unearned", - "subtracts": null, - "hidden_input": false - }, - "dc_tanf_earned_income_after_disregard_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "dc_tanf_earned_income_after_disregard_person", - "label": "DC Temporary Assistance for Needy Families (TANF) earned income after disregard per person", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.dhs.tanf.income.earned.dc_tanf_earned_income_after_disregard_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_tanf_gross_earned_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "dc_tanf_gross_earned_income", - "label": "DC Temporary Assistance for Needy Families (TANF) gross earned income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.dhs.tanf.income.earned.dc_tanf_gross_earned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.dc.dhs.tanf.income.sources.earned", - "subtracts": null, - "hidden_input": false - }, - "dc_tanf_countable_earned_income": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "dc_tanf_countable_earned_income", - "label": "DC Temporary Assistance for Needy Families (TANF) countable earned income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.dhs.tanf.income.earned.dc_tanf_countable_earned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["dc_tanf_earned_income_after_disregard_person"], - "subtracts": null, - "hidden_input": false - }, - "dc_tanf_childcare_deduction": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "dc_tanf_childcare_deduction", - "label": "DC Temporary Assistance for Needy Families (TANF) child care deduction ", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.dc.dhs.tanf.income.deductions.dc_tanf_childcare_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_tanf_work_requirement_exempt": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "month", - "name": "dc_tanf_work_requirement_exempt", - "label": "Exempted from working requirement for DC Temporary Assistance for Needy Families (TANF)", - "category": null, - "unit": null, - "moduleName": "gov.states.dc.dhs.tanf.work_requirement.dc_tanf_work_requirement_exempt", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_tanf_is_working": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "month", - "name": "dc_tanf_is_working", - "label": "Person is working under the work requirement for DC Temporary Assistance for Needy Families (TANF)", - "category": null, - "unit": null, - "moduleName": "gov.states.dc.dhs.tanf.work_requirement.dc_tanf_is_working", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_tanf_meets_work_requirements": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "dc_tanf_meets_work_requirements", - "label": "Work requirement satisfied for DC Temporary Assistance for Needy Families (TANF)", - "category": null, - "unit": null, - "moduleName": "gov.states.dc.dhs.tanf.work_requirement.dc_tanf_meets_work_requirements", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_tanf_immigration_status_eligible_person": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "month", - "name": "dc_tanf_immigration_status_eligible_person", - "label": "Eligible person for DC Temporary Assistance for Needy Families (TANF) based on immigration status", - "category": null, - "unit": null, - "moduleName": "gov.states.dc.dhs.tanf.eligibility.dc_tanf_immigration_status_eligible_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_tanf_demographic_eligible_person": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "month", - "name": "dc_tanf_demographic_eligible_person", - "label": "Eligible person for DC Temporary Assistance for Needy Families (TANF) based on demographics", - "category": null, - "unit": null, - "moduleName": "gov.states.dc.dhs.tanf.eligibility.dc_tanf_demographic_eligible_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_tanf_income_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "dc_tanf_income_eligible", - "label": "Eligible for DC Temporary Assistance for Needy Families (TANF) due to income", - "category": null, - "unit": null, - "moduleName": "gov.states.dc.dhs.tanf.eligibility.dc_tanf_income_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_tanf_basic_eligibility_requirements": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "dc_tanf_basic_eligibility_requirements", - "label": "Basic eligibility requirements for DC Temporary Assistance for Needy Families (TANF)", - "category": null, - "unit": null, - "moduleName": "gov.states.dc.dhs.tanf.eligibility.dc_tanf_basic_eligibility_requirements", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_tanf_resources_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "dc_tanf_resources_eligible", - "label": "Eligible for DC Temporary Assistance for Needy Families (TANF) due to resources", - "category": null, - "unit": null, - "moduleName": "gov.states.dc.dhs.tanf.eligibility.dc_tanf_resources_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "dc_tanf_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "dc_tanf_eligible", - "label": "Eligible for DC Temporary Assistance for Needy Families (TANF)", - "category": null, - "unit": null, - "moduleName": "gov.states.dc.dhs.tanf.eligibility.dc_tanf_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "al_income_tax_before_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "al_income_tax_before_refundable_credits", - "label": "Alabama income tax before refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.al.tax.income.al_income_tax_before_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "al_agi": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "al_agi", - "label": "Alabama adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.al.tax.income.al_agi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.al.tax.income.agi.gross_income_sources", - "subtracts": "gov.states.al.tax.income.agi.deductions", - "hidden_input": false - }, - "al_withheld_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "al_withheld_income_tax", - "label": "Alabama withheld income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.al.tax.income.al_withheld_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "al_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "al_refundable_credits", - "label": "Alabama refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.al.tax.income.al_refundable_credits", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "al_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "al_income_tax", - "label": "Alabama income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.al.tax.income.al_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["al_income_tax_before_refundable_credits"], - "subtracts": ["al_refundable_credits"], - "hidden_input": false - }, - "al_income_tax_before_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "al_income_tax_before_non_refundable_credits", - "label": "Alabama income tax before non-refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.al.tax.income.al_income_tax_before_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "al_taxable_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "al_taxable_income", - "label": "Alabama taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.al.tax.income.al_taxable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "al_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "al_non_refundable_credits", - "label": "Alabama non-refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.al.tax.income.al_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "al_personal_exemption": { - "documentation": "https://alisondb.legislature.state.al.us/alison/CodeOfAlabama/1975/Coatoc.htm", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "al_personal_exemption", - "label": "Alabama personal exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.al.tax.income.exemptions.al_personal_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "al_dependent_exemption": { - "documentation": "https://alisondb.legislature.state.al.us/alison/CodeOfAlabama/1975/Coatoc.htm", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "al_dependent_exemption", - "label": "Alabama dependent exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.al.tax.income.exemptions.al_dependent_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "al_retirement_exemption_person": { - "documentation": "https://www.revenue.alabama.gov/wp-content/uploads/2024/01/23schrsinstr.pdf#page=1https://www.revenue.alabama.gov/ultraviewer/viewer/basic_viewer/index.html?form=2024/01/23f40bk.pdf#page=14https://casetext.com/statute/code-of-alabama/title-40-revenue-and-taxation/chapter-18-income-taxes/article-1-general-provisions/section-40-18-19-exemptions-generally", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "al_retirement_exemption_person", - "label": "Alabama retirement exemption for each person", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.al.tax.income.exemptions.retirement.al_retirement_exemption_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "al_retirement_exemption": { - "documentation": "https://www.revenue.alabama.gov/wp-content/uploads/2024/01/23schrsinstr.pdf#page=1https://www.revenue.alabama.gov/ultraviewer/viewer/basic_viewer/index.html?form=2024/01/23f40bk.pdf#page=14https://casetext.com/statute/code-of-alabama/title-40-revenue-and-taxation/chapter-18-income-taxes/article-1-general-provisions/section-40-18-19-exemptions-generally", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "al_retirement_exemption", - "label": "Alabama retirement exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.al.tax.income.exemptions.retirement.al_retirement_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["al_retirement_exemption_person"], - "subtracts": null, - "hidden_input": false - }, - "al_retirement_exemption_eligible_person": { - "documentation": "https://www.revenue.alabama.gov/wp-content/uploads/2024/01/23schrsinstr.pdf#page=1https://www.revenue.alabama.gov/ultraviewer/viewer/basic_viewer/index.html?form=2024/01/23f40bk.pdf#page=14https://casetext.com/statute/code-of-alabama/title-40-revenue-and-taxation/chapter-18-income-taxes/article-1-general-provisions/section-40-18-19-exemptions-generally", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "al_retirement_exemption_eligible_person", - "label": "Alabama retirement exemption", - "category": null, - "unit": null, - "moduleName": "gov.states.al.tax.income.exemptions.retirement.al_retirement_exemption_eligible_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "al_deductions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "al_deductions", - "label": "Alabama deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.al.tax.income.deductions.al_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "al_standard_deduction": { - "documentation": "https://alisondb.legislature.state.al.us/alison/CodeOfAlabama/1975/Coatoc.htm", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "al_standard_deduction", - "label": "Alabama standard deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.al.tax.income.deductions.al_standard_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "al_federal_income_tax_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "al_federal_income_tax_deduction", - "label": "Alabama federal income tax deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.al.tax.income.deductions.federal_income_tax.al_federal_income_tax_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "al_itemized_deductions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "al_itemized_deductions", - "label": "Alabama itemized deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.al.tax.income.deductions.itemized.al_itemized_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.al.tax.income.deductions.itemized.sources", - "subtracts": null, - "hidden_input": false - }, - "al_interest_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "al_interest_deduction", - "label": "Alabama investment interest", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.al.tax.income.deductions.itemized.al_investment_interest", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["mortgage_interest", "investment_interest_expense"], - "subtracts": null, - "hidden_input": false - }, - "al_medical_expense_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "al_medical_expense_deduction", - "label": "Alabama medical expense deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.al.tax.income.deductions.itemized.al_medical_expense_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "al_misc_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "al_misc_deduction", - "label": "Alabama Work Related Expense", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.al.tax.income.deductions.itemized.al_misc_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "al_casualty_loss_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "al_casualty_loss_deduction", - "label": "Alabama casualty loss deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.al.tax.income.deductions.itemized.al_casualty_loss_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ri_withheld_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ri_withheld_income_tax", - "label": "Rhode Island withheld income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ri.tax.income.ri_withheld_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ri_income_tax_before_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ri_income_tax_before_refundable_credits", - "label": "Rhode Island income tax before refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ri.tax.income.ri_income_tax_before_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ri_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ri_non_refundable_credits", - "label": "Rhode Island non-refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ri.tax.income.ri_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ri.tax.income.credits.non_refundable", - "subtracts": null, - "hidden_input": false - }, - "ri_taxable_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ri_taxable_income", - "label": "Rhode Island taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ri.tax.income.ri_taxable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ri_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ri_income_tax", - "label": "Rhode Island income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ri.tax.income.ri_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ri_income_tax_before_refundable_credits"], - "subtracts": ["ri_refundable_credits"], - "hidden_input": false - }, - "ri_income_tax_before_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ri_income_tax_before_non_refundable_credits", - "label": "Rhode Island income tax before refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ri.tax.income.ri_income_tax_before_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ri_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ri_refundable_credits", - "label": "Rhode Island refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ri.tax.income.ri_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ri.tax.income.credits.refundable", - "subtracts": null, - "hidden_input": false - }, - "ri_agi": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ri_agi", - "label": "Rhode Island AGI", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ri.tax.income.agi.ri_agi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["adjusted_gross_income", "ri_additions"], - "subtracts": ["ri_subtractions"], - "hidden_input": false - }, - "ri_additions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ri_additions", - "label": "Rhode Island AGI Additions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ri.tax.income.agi.ri_additions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ri.tax.income.agi.additions.additions", - "subtracts": null, - "hidden_input": false - }, - "ri_tuition_saving_program_contribution_subtraction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ri_tuition_saving_program_contribution_subtraction", - "label": "Rhode Island tuition saving program contribution subtraction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ri.tax.income.agi.subtractions.ri_tuition_saving_program_contribution_subtraction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ri_subtractions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ri_subtractions", - "label": "Rhode Island AGI Subtractions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ri.tax.income.agi.subtractions.ri_subtractions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ri.tax.income.agi.subtractions.subtractions", - "subtracts": null, - "hidden_input": false - }, - "ri_social_security_modification": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ri_social_security_modification", - "label": "Rhode Island Social Security Modification", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ri.tax.income.agi.subtractions.social_security.ri_social_security_modification", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ri_social_security_modification_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ri_social_security_modification_eligible", - "label": "Eligible for the Rhode Island Social Security Modification", - "category": null, - "unit": null, - "moduleName": "gov.states.ri.tax.income.agi.subtractions.social_security.ri_social_security_modification_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ri_retirement_income_subtraction_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ri_retirement_income_subtraction_eligible", - "label": "Eligible for the Rhode Island retirement income subtraction", - "category": null, - "unit": null, - "moduleName": "gov.states.ri.tax.income.agi.subtractions.taxable_retirement_income.ri_retirement_income_subtraction_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ri_retirement_income_subtraction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ri_retirement_income_subtraction", - "label": "Rhode Island retirement income subtraction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ri.tax.income.agi.subtractions.taxable_retirement_income.ri_retirement_income_subtraction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ri_eitc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ri_eitc", - "label": "Rhode Island earned income tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ri.tax.income.credits.eitc.ri_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ri_child_tax_rebate": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ri_child_tax_rebate", - "label": "Rhode Island Child Tax Rebate", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ri.tax.income.credits.rebates.ri_child_tax_rebate", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ri_child_tax_rebate_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ri_child_tax_rebate_eligible", - "label": "Rhode Island Child Tax Rebate", - "category": null, - "unit": null, - "moduleName": "gov.states.ri.tax.income.credits.rebates.ri_child_tax_rebate_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ri_cdcc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ri_cdcc", - "label": "Rhode Island child and dependent care credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ri.tax.income.credits.cdcc.ri_cdcc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ri_property_tax_household_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ri_property_tax_household_income", - "label": "Rhode Island total household income for the property tax credit computation", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ri.tax.income.credits.property_tax.ri_property_tax_household_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ri.tax.income.credits.property_tax.income_sources", - "subtracts": null, - "hidden_input": false - }, - "ri_property_tax_credit_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ri_property_tax_credit_eligible", - "label": "Rhode Island property tax credit eligibility status", - "category": null, - "unit": null, - "moduleName": "gov.states.ri.tax.income.credits.property_tax.ri_property_tax_credit_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ri_property_tax_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ri_property_tax_credit", - "label": "Rhode Island property tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ri.tax.income.credits.property_tax.ri_property_tax_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ri_exemptions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ri_exemptions", - "label": "Rhode Island exemptions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ri.tax.income.exemption.ri_exemptions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ri_standard_deduction": { - "documentation": "https://tax.ri.gov/sites/g/files/xkgbur541/files/2022-12/ADV_2022_40_Inflation_Adjustments.pdf", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ri_standard_deduction", - "label": "Rhode Island standard deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ri.tax.income.deductions.standard.ri_standard_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ri_standard_deduction_applicable_percentage": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ri_standard_deduction_applicable_percentage", - "label": "Rhode Island standard deduction applicable percentage", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ri.tax.income.deductions.standard.ri_standard_deduction_applicable_percentage", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "in_withheld_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "in_withheld_income_tax", - "label": "Indiana withheld income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.in.tax.income.in_withheld_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "in_agi_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "in_agi_tax", - "label": "Indiana adjusted gross income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.in.tax.income.in_agi_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "in_county_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "in_county_tax", - "label": "Indiana county tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.in.tax.income.in_county_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "in_agi": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "in_agi", - "label": "Indiana adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.in.tax.income.in_agi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["adjusted_gross_income", "in_add_backs"], - "subtracts": ["in_deductions", "in_exemptions"], - "hidden_input": false - }, - "in_income_tax_before_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "in_income_tax_before_refundable_credits", - "label": "Indiana income tax before refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.in.tax.income.in_income_tax_before_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["in_agi_tax", "in_use_tax"], - "subtracts": null, - "hidden_input": false - }, - "in_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "in_income_tax", - "label": "Indiana income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.in.tax.income.in_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["in_income_tax_before_refundable_credits"], - "subtracts": ["in_refundable_credits"], - "hidden_input": false - }, - "in_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "in_refundable_credits", - "label": "Indiana refundable income tax credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.in.tax.income.credits.in_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["in_eitc", "in_unified_elderly_tax_credit"], - "subtracts": null, - "hidden_input": false - }, - "in_eitc_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "in_eitc_eligible", - "label": "Indiana earned income tax credit eligibility status", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.in.tax.income.credits.earned_income_credit.in_eitc_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "in_eitc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "in_eitc", - "label": "Indiana earned income tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.in.tax.income.credits.earned_income_credit.in_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "in_unified_elderly_tax_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "in_unified_elderly_tax_credit", - "label": "Indiana unified elderly tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.in.tax.income.credits.elderly_tax_credit.in_unified_elderly_tax_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "in_adoption_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "in_adoption_exemption", - "label": "Indiana adoption exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.in.tax.income.exemptions.in_adoption_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "in_additional_exemptions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "in_additional_exemptions", - "label": "Indiana additional exemptions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.in.tax.income.exemptions.in_additional_exemptions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "in_aged_low_agi_exemptions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "in_aged_low_agi_exemptions", - "label": "Indiana aged and low-AGI exemptions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.in.tax.income.exemptions.in_aged_low_agi_exemptions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "in_exemptions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "in_exemptions", - "label": "Indiana exemptions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.in.tax.income.exemptions.in_exemptions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "in_base_exemptions", - "in_additional_exemptions", - "in_aged_blind_exemptions", - "in_aged_low_agi_exemptions", - "in_adoption_exemption" - ], - "subtracts": null, - "hidden_input": false - }, - "in_qualifying_child_count": { - "documentation": "Number of qualifying children for the IN additional exemption.", - "entity": "tax_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "in_qualifying_child_count", - "label": "Indiana qualifying dependent child count", - "category": null, - "unit": "child", - "moduleName": "gov.states.in.tax.income.exemptions.in_qualifying_child_count", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["in_is_qualifying_dependent_child"], - "subtracts": null, - "hidden_input": false - }, - "in_aged_blind_exemptions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "in_aged_blind_exemptions", - "label": "Indiana exemptions for aged and or blind", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.in.tax.income.exemptions.in_aged_blind_exemptions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "in_is_qualifying_dependent_child": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "in_is_qualifying_dependent_child", - "label": "Indiana additional exemption qualifying dependent child", - "category": null, - "unit": null, - "moduleName": "gov.states.in.tax.income.exemptions.in_is_qualifying_dependent_child", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "in_base_exemptions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "in_base_exemptions", - "label": "Indiana base exemptions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.in.tax.income.exemptions.in_base_exemptions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "in_oos_municipal_obligation_interest_add_back": { - "documentation": "Add back for interest earned from a direct obligation of a state or political subdivision other than Indiana for obligations purchased after Dec. 31, 2011.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "in_oos_municipal_obligation_interest_add_back", - "label": "Indiana out-of-state municipal obligation interest add back", - "category": null, - "unit": null, - "moduleName": "gov.states.in.tax.income.add_backs.in_oos_municipal_obligation_interest_add_back", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "in_bonus_depreciation_add_back": { - "documentation": "Income (or loss) included in Federal AGI under Section 168(k)'s bonus depreciation less the amount that would have been included without it.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "in_bonus_depreciation_add_back", - "label": "Indiana bonus depreciation add back", - "category": null, - "unit": null, - "moduleName": "gov.states.in.tax.income.add_backs.in_bonus_depreciation_add_back", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "in_nol_add_back": { - "documentation": "Add back for net operating losses reported on federal Schedule 1.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "in_nol_add_back", - "label": "Indiana net operating loss add back", - "category": null, - "unit": null, - "moduleName": "gov.states.in.tax.income.add_backs.in_nol_add_back", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "in_add_backs": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "in_add_backs", - "label": "Indiana add-backs", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.in.tax.income.add_backs.in_add_backs", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "in_bonus_depreciation_add_back", - "in_nol_add_back", - "in_oos_municipal_obligation_interest_add_back", - "in_other_add_backs", - "in_section_179_expense_add_back", - "in_tax_add_back" - ], - "subtracts": null, - "hidden_input": false - }, - "in_section_179_expense_add_back": { - "documentation": "Federal IRC Section 179 expenses less IRC Section 179 expenses if they had been calculated with a $25,000 ceiling.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "in_section_179_expense_add_back", - "label": "Indiana Section 179 Expense Add Back", - "category": null, - "unit": null, - "moduleName": "gov.states.in.tax.income.add_backs.in_section_179_expense_add_back", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "in_tax_add_back": { - "documentation": "Add backs for certain taxes deducted from federal Schedules C, C-EZ, E and/or F.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "in_tax_add_back", - "label": "Indiana tax add back", - "category": null, - "unit": null, - "moduleName": "gov.states.in.tax.income.add_backs.in_tax_add_back", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "in_other_add_backs": { - "documentation": "Other add backs including those for Conformity, Employer Student Loan Payment, Meal Deductions, Student Loan Discharges, Excess Federal Interest Deduction Modification, Federal Repatriated Dividend Deductions, Qualified Preferred Stock, and Catch-Up Modifications.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "in_other_add_backs", - "label": "Indiana other add backs", - "category": null, - "unit": null, - "moduleName": "gov.states.in.tax.income.add_backs.in_other_add_backs", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "in_unemployment_compensation_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "in_unemployment_compensation_deduction", - "label": "Indiana unemployment compensation deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.in.tax.income.deductions.in_unemployment_compensation_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "in_nonpublic_school_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "in_nonpublic_school_deduction", - "label": "Indiana nonpublic school expenditures deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.in.tax.income.deductions.in_nonpublic_school_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "in_healthcare_sharing_deduction": { - "documentation": "Healthcare sharing expenses paid by a qualified individual for membership in a health care sharing ministry allowable for deduction in Indiana.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "in_healthcare_sharing_deduction", - "label": "Indiana healthcare sharing ministry deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.in.tax.income.deductions.in_healthcare_sharing_deduction", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "in_deductions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "in_deductions", - "label": "Indiana deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.in.tax.income.deductions.in_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.in.tax.income.deductions.deductions", - "subtracts": null, - "hidden_input": false - }, - "in_renters_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "in_renters_deduction", - "label": "Indiana renter's deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.in.tax.income.deductions.in_renters_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "in_military_service_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "in_military_service_deduction", - "label": "Indiana military service deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.in.tax.income.deductions.in_military_service_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "in_homeowners_property_tax_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "in_homeowners_property_tax_deduction", - "label": "Indiana homeowner's residential property tax deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.in.tax.income.deductions.in_homeowners_property_tax_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "in_other_deductions": { - "documentation": "Other deductions available in Indiana including those for civil service annuities, disability retirement, government or civic group capital contributions, human services for Medicaid recipients, infrastructure fund gifts, indiana lottery winings annuity, Indiana partnership long-term care policy premiums, military retirement income or survivor's benefits, National Guard and reserve component members, Olympic/Paralymic medal winners, qualified patents income eemption, railroad unemployment and sickness benefits, repayment of previously taxed income deductions, COVID-related employee retention credit dissalowed expenses, and Indiana-only tax-exempt bonds.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "in_other_deductions", - "label": "Indiana other deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.in.tax.income.deductions.in_other_deductions", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "in_nol": { - "documentation": "Net operating losses allowable for deduction in Indiana.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "in_nol", - "label": "Indiana NOL", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.in.tax.income.deductions.in_nol", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "in_use_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "in_use_tax", - "label": "Indiana use tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.in.tax.use.in_use_tax", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "id_income_tax_liable": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "id_income_tax_liable", - "label": "Liable to pay income taxes in Idaho", - "category": null, - "unit": null, - "moduleName": "gov.states.id.tax.income.id_income_tax_liable", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "id_additions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "id_additions", - "label": "Idaho additions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.id.tax.income.id_additions", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "id_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "id_income_tax", - "label": "Idaho income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.id.tax.income.id_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["id_income_tax_before_refundable_credits", "id_pbf"], - "subtracts": ["id_refundable_credits"], - "hidden_input": false - }, - "id_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "id_refundable_credits", - "label": "Idaho refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.id.tax.income.id_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.id.tax.income.credits.refundable", - "subtracts": null, - "hidden_input": false - }, - "id_income_tax_before_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "id_income_tax_before_non_refundable_credits", - "label": "Idaho income tax before non-refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.id.tax.income.id_income_tax_before_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "id_taxable_income": { - "documentation": "Idaho taxable income", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "id_taxable_income", - "label": "Idaho taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.id.tax.income.id_taxable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "id_income_tax_before_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "id_income_tax_before_refundable_credits", - "label": "Idaho income tax before refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.id.tax.income.id_income_tax_before_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "id_receives_aged_or_disabled_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "id_receives_aged_or_disabled_credit", - "label": "Filer receives the Idaho aged or disabled credit over the deduction", - "category": null, - "unit": null, - "moduleName": "gov.states.id.tax.income.id_receives_aged_or_disabled_credit", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": true, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "id_agi": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "id_agi", - "label": "Idaho adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.id.tax.income.id_agi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["id_additions", "adjusted_gross_income"], - "subtracts": ["id_subtractions"], - "hidden_input": false - }, - "id_withheld_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "id_withheld_income_tax", - "label": "Idaho withheld income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.id.tax.income.id_withheld_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "id_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "id_non_refundable_credits", - "label": "Idaho non-refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.id.tax.income.id_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.id.tax.income.credits.non_refundable", - "subtracts": null, - "hidden_input": false - }, - "id_pbf": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "id_pbf", - "label": "Idaho permanent building tax", - "category": null, - "unit": null, - "moduleName": "gov.states.id.tax.income.other_taxes.pbf.id_pbf", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "id_pbf_liable": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "id_pbf_liable", - "label": "Liable for the Idaho permanent building fund tax", - "category": null, - "unit": null, - "moduleName": "gov.states.id.tax.income.other_taxes.pbf.id_pbf_liable", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "id_aged_or_disabled_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "id_aged_or_disabled_credit", - "label": "Idaho aged or disabled credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.id.tax.income.credits.id_aged_or_disabled_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "id_ctc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "id_ctc", - "label": "Idaho Child Tax Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.id.tax.income.credits.id_ctc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "id_aged_or_disabled_credit_eligible_person": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "id_aged_or_disabled_credit_eligible_person", - "label": "Eligible person for the Idaho aged or disabled credit", - "category": null, - "unit": null, - "moduleName": "gov.states.id.tax.income.credits.id_aged_or_disabled_credit_eligible_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "id_grocery_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "id_grocery_credit", - "label": "Idaho grocery credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.id.tax.income.credits.grocery.id_grocery_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "id_grocery_credit_aged": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "id_grocery_credit_aged", - "label": "Idaho aged grocery credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.id.tax.income.credits.grocery.id_grocery_credit_aged", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "id_grocery_credit_base": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "id_grocery_credit_base", - "label": "Idaho base grocery credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.id.tax.income.credits.grocery.id_grocery_credit_base", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "id_grocery_credit_qualified_months": { - "documentation": null, - "entity": "person", - "valueType": "int", - "definitionPeriod": "year", - "name": "id_grocery_credit_qualified_months", - "label": "Months qualified for the Idaho grocery credit", - "category": null, - "unit": null, - "moduleName": "gov.states.id.tax.income.credits.grocery.eligible.id_grocery_credit_qualified_months", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "id_grocery_credit_qualifying_month": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "month", - "name": "id_grocery_credit_qualifying_month", - "label": "Qualifies for the Idaho grocery credit in the given month", - "category": null, - "unit": null, - "moduleName": "gov.states.id.tax.income.credits.grocery.eligible.id_grocery_credit_qualifying_month", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "id_aged_or_disabled_deduction_eligible_person": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "id_aged_or_disabled_deduction_eligible_person", - "label": "Eligible person for the Idaho aged or disabled deduction", - "category": null, - "unit": null, - "moduleName": "gov.states.id.tax.income.subtractions.id_aged_or_disabled_deduction_eligible_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "id_aged_or_disabled_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "id_aged_or_disabled_deduction", - "label": "Idaho aged or disabled deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.id.tax.income.subtractions.id_aged_or_disabled_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "id_subtractions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "id_subtractions", - "label": "Idaho subtractions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.id.tax.income.subtractions.id_subtractions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.id.tax.income.subtractions.subtractions", - "subtracts": null, - "hidden_input": false - }, - "id_cdcc_limit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "id_cdcc_limit", - "label": "Federal CDCC-relevant care expense limit for Idaho tax purposes", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.id.tax.income.subtractions.household_and_dependent_care.id_cdcc_limit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "id_household_and_dependent_care_expense_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "id_household_and_dependent_care_expense_deduction", - "label": "Idaho household and dependent care expense deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.id.tax.income.subtractions.household_and_dependent_care.id_household_and_dependent_care_expense_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "id_deductions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "id_deductions", - "label": "Idaho deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.id.tax.income.deductions.id_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "id_capital_gains_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "id_capital_gains_deduction", - "label": "Idaho capital gains deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.id.tax.income.deductions.id_capital_gains_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "id_itemized_deductions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "id_itemized_deductions", - "label": "Idaho itemized deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.id.tax.income.deductions.id_itemized_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "id_salt_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "id_salt_deduction", - "label": "Idaho SALT deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.id.tax.income.deductions.id_salt_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "id_retirement_benefits_deduction_relevant_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "id_retirement_benefits_deduction_relevant_income", - "label": "Idaho retirement benefits deduction income sources", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.id.tax.income.deductions.retirement_benefits.id_retirement_benefits_deduction_relevant_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.id.tax.income.deductions.retirement_benefits.income_sources", - "subtracts": null, - "hidden_input": false - }, - "id_retirement_benefits_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "id_retirement_benefits_deduction", - "label": "Idaho retirement benefits deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.id.tax.income.deductions.retirement_benefits.id_retirement_benefits_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "id_retirement_benefits_deduction_eligible_person": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "id_retirement_benefits_deduction_eligible_person", - "label": "Eligible person for the Idaho retirement benefits deduction", - "category": null, - "unit": null, - "moduleName": "gov.states.id.tax.income.deductions.retirement_benefits.id_retirement_benefits_eligible_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tx_tanf_income_limit": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "tx_tanf_income_limit", - "label": "Texas TANF income limit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.tx.tanf.tx_tanf_income_limit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wi_standard_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wi_standard_deduction", - "label": "Wisconsin standard deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wi.tax.income.wi_standard_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wi_agi": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wi_agi", - "label": "Wisconsin Adjusted Gross Income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wi.tax.income.wi_agi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["adjusted_gross_income", "wi_additions"], - "subtracts": ["wi_income_subtractions"], - "hidden_input": false - }, - "wi_withheld_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "wi_withheld_income_tax", - "label": "Wisconsin withheld income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wi.tax.income.wi_withheld_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wi_taxable_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wi_taxable_income", - "label": "Wisconsin taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wi.tax.income.wi_taxable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wi_income_tax_before_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wi_income_tax_before_refundable_credits", - "label": "Wisconsin income tax before refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wi.tax.income.wi_income_tax_before_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wi_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wi_income_tax", - "label": "Wisconsin income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wi.tax.income.wi_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["wi_income_tax_before_refundable_credits"], - "subtracts": ["wi_refundable_credits"], - "hidden_input": false - }, - "wi_income_tax_before_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wi_income_tax_before_credits", - "label": "Wisconsin income tax before credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wi.tax.income.wi_income_before_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wi_nonrefundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wi_nonrefundable_credits", - "label": "Wisconsin nonrefundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wi.tax.income.credits.wi_nonrefundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.wi.tax.income.credits.non_refundable", - "subtracts": null, - "hidden_input": false - }, - "wi_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wi_refundable_credits", - "label": "Wisconsin refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wi.tax.income.credits.wi_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.wi.tax.income.credits.refundable", - "subtracts": null, - "hidden_input": false - }, - "wi_married_couple_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wi_married_couple_credit", - "label": "Wisconsin married couple credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wi.tax.income.credits.married_couple.wi_married_couple_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wi_homestead_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "wi_homestead_eligible", - "label": "Wisconsin homestead credit eligibility status", - "category": null, - "unit": null, - "moduleName": "gov.states.wi.tax.income.credits.homestead.wi_homestead_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wi_homestead_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wi_homestead_income", - "label": "Wisconsin homestead credit income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wi.tax.income.credits.homestead.wi_homestead_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wi_homestead_property_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wi_homestead_property_tax", - "label": "Wisconsin homestead credit property tax amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wi.tax.income.credits.homestead.wi_homestead_property_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wi_homestead_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wi_homestead_credit", - "label": "Wisconsin homestead credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wi.tax.income.credits.homestead.wi_homestead_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wi_childcare_expense_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wi_childcare_expense_credit", - "label": "Wisconsin childcare expense credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wi.tax.income.credits.childcare_expense.wi_childcare_expense_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wi_property_tax_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wi_property_tax_credit", - "label": "Wisconsin property tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wi.tax.income.credits.property_tax.wi_property_tax_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wi_earned_income_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wi_earned_income_credit", - "label": "Wisconsin earned income credit (WI EITC)", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wi.tax.income.credits.earned_income.wi_earned_income_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wi_itemized_deduction_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wi_itemized_deduction_credit", - "label": "Wisconsin itemized deduction credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wi.tax.income.credits.itemized_deduction.wi_itemized_deduction_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wi_base_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wi_base_exemption", - "label": "Wisconsin base exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wi.tax.income.exemptions.wi_base_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wi_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wi_exemption", - "label": "Wisconsin exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wi.tax.income.exemptions.wi_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["wi_base_exemption", "wi_additional_exemption"], - "subtracts": null, - "hidden_input": false - }, - "wi_additional_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wi_additional_exemption", - "label": "Wisconsin additional exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wi.tax.income.exemptions.wi_additional_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wi_childcare_expense_subtraction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wi_childcare_expense_subtraction", - "label": "Wisconsin childcare expense subtraction from federal AGI", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wi.tax.income.subtractions.wi_childcare_expense_subtraction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wi_capital_gain_loss_subtraction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wi_capital_gain_loss_subtraction", - "label": "Wisconsin capital gain/loss subtraction from federal AGI", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wi.tax.income.subtractions.wi_capital_gain_loss_subtraction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wi_unemployment_compensation_subtraction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wi_unemployment_compensation_subtraction", - "label": "Wisconsin unemployment compensation subtraction from federal AGI", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wi.tax.income.subtractions.wi_unemployment_compensation_subtraction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wi_retirement_income_subtraction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wi_retirement_income_subtraction", - "label": "Wisconsin retirement income subtraction from federal AGI", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wi.tax.income.subtractions.wi_retirement_income_subtraction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wi_retirement_income_subtraction_agi_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "wi_retirement_income_subtraction_agi_eligible", - "label": "Wisconsin retirement income subtraction AGI eligibility", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wi.tax.income.subtractions.wi_retirement_income_subtraction_agi_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wi_income_subtractions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wi_income_subtractions", - "label": "Wisconsin subtractions from federal adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wi.tax.income.subtractions.wi_income_subtractions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.wi.tax.income.subtractions.sources", - "subtracts": null, - "hidden_input": false - }, - "wi_additions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wi_additions", - "label": "Wisconsin additions to federal adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wi.tax.income.additions.wi_additions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.wi.tax.income.additions.sources", - "subtracts": null, - "hidden_input": false - }, - "wi_capital_loss": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wi_capital_loss", - "label": "Wisconsin capital loss (limited differently than US capital loss)", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wi.tax.income.additions.wi_capital_loss", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wi_capital_gain_loss_addition": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wi_capital_gain_loss_addition", - "label": "WI capital gain/loss addition to federal adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wi.tax.income.additions.wi_capital_gain_loss_addition", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_child_care_subsidies": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_child_care_subsidies", - "label": "California child care subsidies", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.ca_child_care_subsidies", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ca_calworks_child_care"], - "subtracts": null, - "hidden_input": false - }, - "ca_in_medical_care_facility": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ca_in_medical_care_facility", - "label": "Is in a California medical care facility", - "category": null, - "unit": null, - "moduleName": "gov.states.ca.ca_in_medical_care_facility", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_foster_care_minor_dependent": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "month", - "name": "ca_foster_care_minor_dependent", - "label": "California foster care minor dependent", - "category": null, - "unit": null, - "moduleName": "gov.states.ca.ca_foster_care_minor_dependent", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_ffyp_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ca_ffyp_eligible", - "label": "Eligible person for the California Former Foster Youth Program", - "category": null, - "unit": null, - "moduleName": "gov.states.ca.dhcs.ffyp.ca_ffyp_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_taxable_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_taxable_income", - "label": "CA taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.tax.income.ca_taxable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_income_tax", - "label": "CA income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.tax.income.ca_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "ca_income_tax_before_refundable_credits", - "ca_mental_health_services_tax", - "ca_use_tax" - ], - "subtracts": ["ca_refundable_credits"], - "hidden_input": false - }, - "ca_agi_subtractions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_agi_subtractions", - "label": "CA AGI subtractions from federal AGI", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.tax.income.ca_agi_subtractions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ca.tax.income.agi.subtractions", - "subtracts": null, - "hidden_input": false - }, - "ca_mental_health_services_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_mental_health_services_tax", - "label": "CA mental health services tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.tax.income.ca_mental_health_services_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_use_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_use_tax", - "label": "CA Use Tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.tax.income.ca_use_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_agi": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_agi", - "label": "CA AGI", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.tax.income.ca_agi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["adjusted_gross_income", "ca_additions"], - "subtracts": ["ca_agi_subtractions"], - "hidden_input": false - }, - "ca_income_tax_before_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_income_tax_before_refundable_credits", - "label": "CA income tax before refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.tax.income.ca_income_tax_before_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_additions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_additions", - "label": "CA AGI additions to federal AGI", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.tax.income.ca_additions", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_withheld_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_withheld_income_tax", - "label": "California withheld income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.tax.income.ca_withheld_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_income_tax_before_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_income_tax_before_credits", - "label": "CA income tax before credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.tax.income.ca_income_tax_before_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_amt": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_amt", - "label": "California alternative minimum tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.tax.income.alternative_minimum_tax.ca_amt", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_amt_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_amt_exemption", - "label": "California AMT exemption amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.tax.income.alternative_minimum_tax.exemption.ca_amt_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_amti": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_amti", - "label": "California alternative minimum taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.tax.income.alternative_minimum_tax.amti.ca_amti", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_pre_exemption_amti": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_pre_exemption_amti", - "label": "California pre-exemption alternative minimum taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.tax.income.alternative_minimum_tax.amti.ca_pre_exemption_amti", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "ca_amti_adjustments", - "ca_taxable_income", - "ca_itemized_deductions_pre_limitation" - ], - "subtracts": null, - "hidden_input": false - }, - "ca_amti_adjustments": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_amti_adjustments", - "label": "California AMTI adjustment", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.tax.income.alternative_minimum_tax.amti.ca_amti_adjustments", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_refundable_credits", - "label": "California refundable income tax credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.tax.income.credits.ca_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ca.tax.income.credits.refundable", - "subtracts": null, - "hidden_input": false - }, - "ca_federal_cdcc": { - "documentation": "https://www.ftb.ca.gov/about-ftb/data-reports-plans/Summary-of-Federal-Income-Tax-Changes/index.html#PL-117-2-9631", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_federal_cdcc", - "label": "Child and Dependent Care Expenses Credit replicated to include California limitations", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.tax.income.credits.ca_federal_cdcc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_cdcc_relevant_expenses": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_cdcc_relevant_expenses", - "label": "CDCC-relevant care expenses replicated to include California limitations", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.tax.income.credits.ca_cdcc_relevant_expenses", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_cdcc_rate": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_cdcc_rate", - "label": "CDCC credit rate replicated to include California limitations", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.tax.income.credits.ca_cdcc_rate", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_nonrefundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_nonrefundable_credits", - "label": "California nonrefundable income tax credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.tax.income.credits.ca_nonrefundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ca.tax.income.credits.nonrefundable", - "subtracts": null, - "hidden_input": false - }, - "ca_federal_capped_cdcc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_federal_capped_cdcc", - "label": "Capped child/dependent care credit replicated to include California limitations", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.tax.income.credits.ca_federal_capped_cdcc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_cdcc": { - "documentation": "https://www.ftb.ca.gov/forms/2020/2020-3506-instructions.html", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_cdcc", - "label": "California Child and Dependent Care Expenses Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.tax.income.credits.ca_cdcc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_renter_credit": { - "documentation": "https://casetext.com/statute/california-codes/california-revenue-and-taxation-code/division-2-other-taxes/part-10-personal-income-tax/chapter-2-imposition-of-tax/section-170535-credit-for-qualified-renter", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_renter_credit", - "label": "California Renter Tax Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.tax.income.credits.ca_renter_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_foster_youth_tax_credit_eligible_person": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ca_foster_youth_tax_credit_eligible_person", - "label": "Eligible person for the California foster youth tax credit", - "category": null, - "unit": null, - "moduleName": "gov.states.ca.tax.income.credits.foster_youth.ca_foster_youth_tax_credit_eligible_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_foster_youth_tax_credit_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_foster_youth_tax_credit_person", - "label": "California foster youth tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.tax.income.credits.foster_youth.ca_foster_youth_tax_credit_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_foster_youth_tax_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_foster_youth_tax_credit", - "label": "California foster youth tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.tax.income.credits.foster_youth.ca_foster_youth_tax_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ca_foster_youth_tax_credit_person"], - "subtracts": null, - "hidden_input": false - }, - "ca_eitc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_eitc", - "label": "CalEITC", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.tax.income.credits.earned_income.ca_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_is_qualifying_child_for_caleitc": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ca_is_qualifying_child_for_caleitc", - "label": "Child qualifies for CalEITC", - "category": null, - "unit": null, - "moduleName": "gov.states.ca.tax.income.credits.earned_income.ca_is_qualifying_child_for_caleitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_eitc_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ca_eitc_eligible", - "label": "CalEITC eligible", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.tax.income.credits.earned_income.ca_eitc_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_yctc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_yctc", - "label": "California Young Child Tax Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.tax.income.credits.young_child.ca_yctc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_exemptions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_exemptions", - "label": "CA Exemptions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.tax.income.exemptions.ca_exemptions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_deductions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_deductions", - "label": "California deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.tax.income.deductions.ca_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_investment_interest_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_investment_interest_deduction", - "label": "California investment interest deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.tax.income.deductions.ca_investment_interest_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_itemized_deductions_pre_limitation": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_itemized_deductions_pre_limitation", - "label": "California pre-limitation itemized deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.tax.income.deductions.itemized.ca_itemized_deductions_pre_limitation", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "ca_investment_interest_deduction", - "real_estate_taxes", - "itemized_deductions_less_salt" - ], - "subtracts": null, - "hidden_input": false - }, - "ca_itemized_deductions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_itemized_deductions", - "label": "California itemized deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.tax.income.deductions.itemized.ca_itemized_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_standard_deduction": { - "documentation": "https://www.ftb.ca.gov/forms/2021/2021-540.pdf", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_standard_deduction", - "label": "California standard deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.tax.income.deductions.standard.ca_standard_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_care_amount_if_eligible": { - "documentation": "California's CARE program provides this electricity discount to eligible households.", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_care_amount_if_eligible", - "label": "California CARE amount discounted", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.cpuc.care.ca_care_amount_if_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_care": { - "documentation": "California's CARE program provides this electricity discount to eligible households.", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_care", - "label": "California CARE", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.cpuc.care.ca_care", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_care_income_eligible": { - "documentation": "Eligible for California Alternate Rates for Energy", - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ca_care_income_eligible", - "label": "Eligible for California CARE program by virtue of income", - "category": null, - "unit": null, - "moduleName": "gov.states.ca.cpuc.care.eligibility.ca_care_income_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_care_eligible": { - "documentation": "Eligible for California Alternate Rates for Energy", - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ca_care_eligible", - "label": "Eligible for California CARE program", - "category": null, - "unit": null, - "moduleName": "gov.states.ca.cpuc.care.eligibility.ca_care_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": ["ca_care_categorically_eligible", "ca_care_income_eligible"], - "subtracts": null, - "hidden_input": false - }, - "ca_care_categorically_eligible": { - "documentation": "Eligible for California Alternate Rates for Energy", - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ca_care_categorically_eligible", - "label": "Eligible for California CARE program by virtue of participation in a qualifying program", - "category": null, - "unit": null, - "moduleName": "gov.states.ca.cpuc.care.eligibility.ca_care_categorically_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_care_poverty_line": { - "documentation": null, - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_care_poverty_line", - "label": "Poverty line as defined for California CARE program", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.cpuc.care.eligibility.ca_care_poverty_line", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_fera": { - "documentation": "California's FERA program provides this electricity discount to eligible households.", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_fera", - "label": "California FERA", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.cpuc.fera.ca_fera", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_fera_amount_if_eligible": { - "documentation": "California's CARE program provides this electricity discount to eligible households.", - "entity": "household", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_fera_amount_if_eligible", - "label": "California FERA discounted amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.cpuc.fera.ca_fera_amount_if_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_fera_eligible": { - "documentation": "Eligible for California Alternate Rates for Energy", - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ca_fera_eligible", - "label": "Eligible for California FERA program", - "category": null, - "unit": null, - "moduleName": "gov.states.ca.cpuc.fera.ca_fera_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_in_home_supportive_services": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_in_home_supportive_services", - "label": "California In-Home Supportive Services", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.cdss.ca_in_home_supportive_services", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_capi": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_capi", - "label": "California CAPI", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.cdss.capi.ca_capi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_capi_income_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ca_capi_income_eligible", - "label": "California CAPI income eligible", - "category": null, - "unit": null, - "moduleName": "gov.states.ca.cdss.capi.eligibility.ca_capi_income_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_capi_eligible_person": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ca_capi_eligible_person", - "label": "California CAPI eligible person", - "category": null, - "unit": null, - "moduleName": "gov.states.ca.cdss.capi.eligibility.ca_capi_eligible_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_capi_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ca_capi_eligible", - "label": "California CAPI eligible", - "category": null, - "unit": null, - "moduleName": "gov.states.ca.cdss.capi.eligibility.ca_capi_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_capi_resource_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ca_capi_resource_eligible", - "label": "California CAPI resource eligible", - "category": null, - "unit": null, - "moduleName": "gov.states.ca.cdss.capi.eligibility.ca_capi_resource_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_capi_resources": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_capi_resources", - "label": "California CAPI resources", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.cdss.capi.resources.ca_capi_resources", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ssi_countable_resources", "ca_capi_countable_vehicle_value"], - "subtracts": null, - "hidden_input": false - }, - "ca_capi_countable_vehicle_value": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_capi_countable_vehicle_value", - "label": "California CAPI countable vehicle value", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.cdss.capi.resources.ca_capi_countable_vehicle_value", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_state_supplement_eligible_person": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "month", - "name": "ca_state_supplement_eligible_person", - "label": "California SSI state supplement eligible person", - "category": null, - "unit": null, - "moduleName": "gov.states.ca.cdss.state_supplement.ca_state_supplement_eligible_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_state_supplement": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_state_supplement", - "label": "California state supplement", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.cdss.state_supplement.ca_state_supplement", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_state_supplement_aged_blind_disabled_amount": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "ca_state_supplement_aged_blind_disabled_amount", - "label": "California SSI state supplement aged disabled and blind amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.cdss.state_supplement.payment_standard.ca_state_supplement_aged_blind_disabled_amount", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_state_supplement_food_allowance_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "ca_state_supplement_food_allowance_eligible", - "label": "California SSI state supplement food allowance eligible", - "category": null, - "unit": null, - "moduleName": "gov.states.ca.cdss.state_supplement.payment_standard.ca_state_supplement_food_allowance_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_state_supplement_food_allowance": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "ca_state_supplement_food_allowance", - "label": "California SSI state supplement food allowance", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.cdss.state_supplement.payment_standard.ca_state_supplement_food_allowance", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_state_supplement_payment_standard": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "ca_state_supplement_payment_standard", - "label": "California SSI state supplement payment standard", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.cdss.state_supplement.payment_standard.ca_state_supplement_payment_standard", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "ca_state_supplement_dependent_amount", - "ca_state_supplement_food_allowance", - "ca_state_supplement_medical_care_facility_amount", - "ca_state_supplement_out_of_home_care_facility_amount", - "ca_state_supplement_aged_blind_disabled_amount" - ], - "subtracts": null, - "hidden_input": false - }, - "ca_state_supplement_out_of_home_care_facility_amount": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "ca_state_supplement_out_of_home_care_facility_amount", - "label": "California SSI state supplement out of home care facility amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.cdss.state_supplement.payment_standard.ca_state_supplement_out_of_home_care_facility_amount", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_state_supplement_aged_disabled_amount": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "ca_state_supplement_aged_disabled_amount", - "label": "California SSI state supplement aged disabled amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.cdss.state_supplement.payment_standard.ca_state_supplement_aged_disabled_amount", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_state_supplement_aged_disabled_count": { - "documentation": null, - "entity": "spm_unit", - "valueType": "int", - "definitionPeriod": "month", - "name": "ca_state_supplement_aged_disabled_count", - "label": "California SSI state supplement aged or disabled count", - "category": null, - "unit": null, - "moduleName": "gov.states.ca.cdss.state_supplement.payment_standard.ca_state_supplement_aged_disabled_count", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_state_supplement_medical_care_facility_amount": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "ca_state_supplement_medical_care_facility_amount", - "label": "California SSI state supplement medical care facility amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.cdss.state_supplement.payment_standard.ca_state_supplement_medical_care_facility_amount", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_state_supplement_dependent_amount": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "ca_state_supplement_dependent_amount", - "label": "California SSI state supplement dependent amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.cdss.state_supplement.payment_standard.ca_state_supplement_dependent_amount", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_state_supplement_blind_amount": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "ca_state_supplement_blind_amount", - "label": "California SSI state supplement blind amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.cdss.state_supplement.payment_standard.ca_state_supplement_blind_amount", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_tanf": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_tanf", - "label": "California CalWORKs Cash Benefit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.cdss.tanf.cash.ca_tanf", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_tanf_countable_income_recipient": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_tanf_countable_income_recipient", - "label": "California CalWORKs countable income for payment computation", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.cdss.tanf.cash.income.ca_tanf_countable_income_recipient", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_tanf_db_unearned_income": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_tanf_db_unearned_income", - "label": "California CalWORKs Disability-Based Unearned Income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.cdss.tanf.cash.income.ca_tanf_db_unearned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ca.cdss.tanf.cash.income.sources.db_unearned", - "subtracts": null, - "hidden_input": false - }, - "ca_tanf_countable_income_applicant": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_tanf_countable_income_applicant", - "label": "California CalWORKs Countable Income for Eligibility", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.cdss.tanf.cash.income.ca_tanf_countable_income_applicant", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_tanf_earned_income": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_tanf_earned_income", - "label": "California CalWORKs gross earned income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.cdss.tanf.cash.income.ca_tanf_earned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ca.cdss.tanf.cash.income.sources.earned", - "subtracts": null, - "hidden_input": false - }, - "ca_tanf_other_unearned_income": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_tanf_other_unearned_income", - "label": "California CalWORKs other unearned income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.cdss.tanf.cash.income.ca_tanf_other_unearned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ca.cdss.tanf.cash.income.sources.other_unearned", - "subtracts": null, - "hidden_input": false - }, - "ca_tanf_vehicle_value_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ca_tanf_vehicle_value_eligible", - "label": "Eligible child for the California CalWORKs based on the vehicle value", - "category": null, - "unit": null, - "moduleName": "gov.states.ca.cdss.tanf.cash.eligibility.ca_tanf_vehicle_value_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_tanf_immigration_status_eligible_person": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ca_tanf_immigration_status_eligible_person", - "label": "California TANF immigration status Eligibility", - "category": null, - "unit": null, - "moduleName": "gov.states.ca.cdss.tanf.cash.eligibility.ca_tanf_immigration_status_eligible_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_tanf_income_limit": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_tanf_income_limit", - "label": "California CalWORKs Minimum Basic Standard of Adequate Care", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.cdss.tanf.cash.eligibility.ca_tanf_income_limit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_tanf_recipient_financial_test": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ca_tanf_recipient_financial_test", - "label": "California CalWORKs Recipient Financial Test", - "category": null, - "unit": null, - "moduleName": "gov.states.ca.cdss.tanf.cash.eligibility.ca_tanf_recipient_financial_test", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_tanf_applicant_financial_test": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ca_tanf_applicant_financial_test", - "label": "California CalWORKs Applicant Financial Test", - "category": null, - "unit": null, - "moduleName": "gov.states.ca.cdss.tanf.cash.eligibility.ca_tanf_applicant_financial_test", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_tanf_region1": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ca_tanf_region1", - "label": "In a CalWORKs region 1 county", - "category": null, - "unit": null, - "moduleName": "gov.states.ca.cdss.tanf.cash.eligibility.ca_tanf_region1", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_tanf_financial_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ca_tanf_financial_eligible", - "label": "California CalWORKs Financial Eligibility", - "category": null, - "unit": null, - "moduleName": "gov.states.ca.cdss.tanf.cash.eligibility.ca_tanf_financial_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_tanf_resources_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ca_tanf_resources_eligible", - "label": "Eligible for the California CalWORKs based on the available resources", - "category": null, - "unit": null, - "moduleName": "gov.states.ca.cdss.tanf.cash.eligibility.ca_tanf_resources_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_tanf_exempt": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ca_tanf_exempt", - "label": "California CalWORKs Exempt Eligibility", - "category": null, - "unit": null, - "moduleName": "gov.states.ca.cdss.tanf.cash.eligibility.ca_tanf_exempt", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": "gov.states.ca.cdss.tanf.cash.exempt", - "subtracts": null, - "hidden_input": false - }, - "ca_tanf_maximum_payment": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_tanf_maximum_payment", - "label": "California CalWORKs Maximum Aid Payment", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.cdss.tanf.cash.eligibility.ca_tanf_maximum_payment", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_tanf_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ca_tanf_eligible", - "label": "Eligible for the California CalWORKs", - "category": null, - "unit": null, - "moduleName": "gov.states.ca.cdss.tanf.cash.eligibility.ca_tanf_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_tanf_resources": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_tanf_resources", - "label": "California CalWORKs Resources", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.cdss.tanf.cash.resources.ca_tanf_resources", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ca.cdss.tanf.cash.resources.sources", - "subtracts": null, - "hidden_input": false - }, - "ca_tanf_resources_limit": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_tanf_resources_limit", - "label": "California CalWORKs Resources Limit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.cdss.tanf.cash.resources.ca_tanf_resources_limit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_calworks_child_care_full_time": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "month", - "name": "ca_calworks_child_care_full_time", - "label": "Whether a child is classified as receiving full-time care for CalWORKs Child Care", - "category": null, - "unit": null, - "moduleName": "gov.states.ca.cdss.tanf.child_care.child_care_time.ca_calworks_child_care_full_time", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_calworks_child_care_time_category": { - "documentation": null, - "entity": "person", - "valueType": "Enum", - "definitionPeriod": "month", - "name": "ca_calworks_child_care_time_category", - "label": "California CalWORKs Child Care time category", - "category": null, - "unit": null, - "moduleName": "gov.states.ca.cdss.tanf.child_care.child_care_time.ca_calworks_child_care_time_category", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": "WEEKLY", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "HOURLY", - "label": "Hourly" - }, - { - "value": "DAILY", - "label": "Daily" - }, - { - "value": "WEEKLY", - "label": "Weekly" - }, - { - "value": "MONTHLY", - "label": "Monthly" - } - ] - }, - "ca_calworks_child_care_weeks_per_month": { - "documentation": null, - "entity": "person", - "valueType": "int", - "definitionPeriod": "month", - "name": "ca_calworks_child_care_weeks_per_month", - "label": "California CalWORKs Child Care weeks per month", - "category": null, - "unit": null, - "moduleName": "gov.states.ca.cdss.tanf.child_care.child_care_time.ca_calworks_child_care_weeks_per_month", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_calworks_child_care_days_per_month": { - "documentation": null, - "entity": "person", - "valueType": "int", - "definitionPeriod": "month", - "name": "ca_calworks_child_care_days_per_month", - "label": "California CalWORKs Child Care days per month", - "category": null, - "unit": null, - "moduleName": "gov.states.ca.cdss.tanf.child_care.child_care_time.ca_calworks_child_care_days_per_month", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_calworks_child_care_provider_category": { - "documentation": null, - "entity": "person", - "valueType": "Enum", - "definitionPeriod": "month", - "name": "ca_calworks_child_care_provider_category", - "label": "California CalWORKs Child Care provider categroy", - "category": null, - "unit": null, - "moduleName": "gov.states.ca.cdss.tanf.child_care.child_care_time.ca_calworks_child_care_provider_category", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": "CHILD_CARE_CENTER", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "CHILD_CARE_CENTER", - "label": "Child care center" - }, - { - "value": "FAMILY_CHILD_CARE_HOME", - "label": "Family and child care home" - }, - { - "value": "LICENSE_EXEMPT", - "label": "License exempt" - } - ] - }, - "ca_calworks_child_care_child_age_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ca_calworks_child_care_child_age_eligible", - "label": "Eligible child for the California CalWORKs Child Care based on age", - "category": null, - "unit": null, - "moduleName": "gov.states.ca.cdss.tanf.child_care.eligibility.ca_calworks_child_care_child_age_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_calworks_child_care_age_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ca_calworks_child_care_age_eligible", - "label": "California CalWORKs Child Care SPMUnit Age Eligibility", - "category": null, - "unit": null, - "moduleName": "gov.states.ca.cdss.tanf.child_care.eligibility.ca_calworks_child_care_age_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_calworks_child_care_meets_work_requirement": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ca_calworks_child_care_meets_work_requirement", - "label": "Meets CalWORKs Child Care Work Requirement", - "category": null, - "unit": null, - "moduleName": "gov.states.ca.cdss.tanf.child_care.eligibility.ca_calworks_child_care_meets_work_requirement", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_calworks_child_care_welfare_to_work": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_calworks_child_care_welfare_to_work", - "label": "California CalWORKs Welfare to Work", - "category": null, - "unit": "hour", - "moduleName": "gov.states.ca.cdss.tanf.child_care.eligibility.ca_calworks_child_care_welfare_to_work", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_calworks_child_care_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ca_calworks_child_care_eligible", - "label": "Eligible for the California CalWORKs Child Care", - "category": null, - "unit": null, - "moduleName": "gov.states.ca.cdss.tanf.child_care.eligibility.ca_calworks_child_care_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_calworks_child_care_immigration_status_eligible_person": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ca_calworks_child_care_immigration_status_eligible_person", - "label": "California CalWORKs Child Care immigration status Eligibility", - "category": null, - "unit": null, - "moduleName": "gov.states.ca.cdss.tanf.child_care.eligibility.ca_calworks_child_care_immigration_status_eligible_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_calworks_child_care_factor_category": { - "documentation": null, - "entity": "person", - "valueType": "Enum", - "definitionPeriod": "month", - "name": "ca_calworks_child_care_factor_category", - "label": "California CalWORKs Child Care factor category", - "category": null, - "unit": null, - "moduleName": "gov.states.ca.cdss.tanf.child_care.reimbursement.ca_calworks_child_care_factor_category", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": "STANDARD", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "STANDARD", - "label": "Standard Rate Ceilings" - }, - { - "value": "EVENING_AND_WEEKEND_I", - "label": "Evening/Weekend Care Rate Ceilings (50% or more of time)" - }, - { - "value": "EVENING_AND_WEEKEND_II", - "label": "Evening/Weekend Care Rate Ceilings (at least 10% but less than 50% of time)" - }, - { - "value": "EXCEPTIONAL_NEEDS", - "label": "Exceptional Needs Care Rate Ceilings" - }, - { - "value": "SEVERELY_DISABLED", - "label": "Severely Disabled Care Rate Ceilings" - } - ] - }, - "ca_calworks_child_care_payment_factor": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "ca_calworks_child_care_payment_factor", - "label": "California CalWORKs Child Care payment factor", - "category": null, - "unit": null, - "moduleName": "gov.states.ca.cdss.tanf.child_care.reimbursement.ca_calworks_child_care_payment_factor", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_calworks_child_care_payment": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "ca_calworks_child_care_payment", - "label": "California CalWORKs Child Care payment", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.cdss.tanf.child_care.reimbursement.ca_calworks_child_care_payment", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_calworks_child_care_time_coefficient": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "ca_calworks_child_care_time_coefficient", - "label": "California CalWORKs Child Care hours per month", - "category": null, - "unit": null, - "moduleName": "gov.states.ca.cdss.tanf.child_care.reimbursement.ca_calworks_child_care_time_coefficient", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_calworks_child_care_payment_standard": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "month", - "name": "ca_calworks_child_care_payment_standard", - "label": "California CalWORKs Child Care Payment Standard", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.cdss.tanf.child_care.reimbursement.ca_calworks_child_care_payment_standard", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_calworks_child_care": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "month", - "name": "ca_calworks_child_care", - "label": "California CalWORKs Child Care final payment", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.cdss.tanf.child_care.reimbursement.ca_calworks_child_care", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ca_calworks_child_care_payment"], - "subtracts": null, - "hidden_input": false - }, - "ca_cvrp_vehicle_rebate_amount": { - "documentation": "Rebate value for a purchased vehicle under the California Clean Vehicle Rebate Project (CVRP)", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_cvrp_vehicle_rebate_amount", - "label": "CVRP rebate for purchased vehicle", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.calepa.carb.cvrp.ca_cvrp_vehicle_rebate_amount", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_ca_cvrp_normal_rebate_eligible": { - "documentation": "Eligible for California Clean Vehicle Rebate Project (CVRP) normal rebate", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_ca_cvrp_normal_rebate_eligible", - "label": "Eligible for CVRP normal rebate", - "category": null, - "unit": null, - "moduleName": "gov.states.ca.calepa.carb.cvrp.is_ca_cvrp_normal_rebate_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_cvrp": { - "documentation": "Total California Clean Vehicle Rebate Project (CVRP) benefit", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_cvrp", - "label": "California Clean Vehicle Rebate Project", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.calepa.carb.cvrp.ca_cvrp", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_ca_cvrp_increased_rebate_eligible": { - "documentation": "Eligible for increased rebate for low- and middle-income participants in California's Clean Vehicle Rebate Project (CVRP)", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_ca_cvrp_increased_rebate_eligible", - "label": "Eligible for CVRP increased rebate", - "category": null, - "unit": null, - "moduleName": "gov.states.ca.calepa.carb.cvrp.is_ca_cvrp_increased_rebate_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ca_state_disability_insurance": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ca_state_disability_insurance", - "label": "California state disability insurance (SDI)", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ca.edd.ca_state_disability_insurance", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mn_withheld_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mn_withheld_income_tax", - "label": "Minnesota withheld income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mn.tax.income.mn_withheld_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mn_taxable_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mn_taxable_income", - "label": "Minnesota taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mn.tax.income.mn_taxable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mn_income_tax_before_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mn_income_tax_before_refundable_credits", - "label": "Minnesota income tax before refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mn.tax.income.mn_income_tax_before_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mn_basic_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mn_basic_tax", - "label": "Minnesota basic tax calculated using tax rate schedules", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mn.tax.income.mn_basic_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mn_income_tax_before_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mn_income_tax_before_credits", - "label": "Minnesota income tax before credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mn.tax.income.mn_income_tax_before_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mn_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mn_income_tax", - "label": "Minnesota income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mn.tax.income.mn_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["mn_income_tax_before_refundable_credits"], - "subtracts": ["mn_refundable_credits"], - "hidden_input": false - }, - "mn_niit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mn_niit", - "label": "Minnesota Net Investment Income Tax (NIIT)", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mn.tax.income.niit.mn_niit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mn_child_and_working_families_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mn_child_and_working_families_credits", - "label": "Minnesota child and working families credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mn.tax.income.credits.mn_child_and_working_families_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mn_cdcc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mn_cdcc", - "label": "Minnesota child and dependent care expense credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mn.tax.income.credits.mn_cdcc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mn_wfc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mn_wfc", - "label": "Minnesota working family credit amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mn.tax.income.credits.mn_wfc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mn_wfc_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "mn_wfc_eligible", - "label": "Minnesota working family credit eligibilty status", - "category": null, - "unit": null, - "moduleName": "gov.states.mn.tax.income.credits.mn_wfc_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mn_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mn_refundable_credits", - "label": "Minnesota refundable income tax credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mn.tax.income.credits.mn_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.mn.tax.income.credits.refundable", - "subtracts": null, - "hidden_input": false - }, - "mn_marriage_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mn_marriage_credit", - "label": "Minnesota marriage credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mn.tax.income.credits.mn_marriage_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mn_nonrefundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mn_nonrefundable_credits", - "label": "Minnesota nonrefundable income tax credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mn.tax.income.credits.mn_nonrefundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.mn.tax.income.credits.nonrefundable", - "subtracts": null, - "hidden_input": false - }, - "mn_exemptions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mn_exemptions", - "label": "Minnesota exemptions amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mn.tax.income.exemptions.mn_exemptions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mn_amt": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mn_amt", - "label": "Minnesota alternative minimum tax (AMT)", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mn.tax.income.amt.mn_amt", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mn_amt_taxable_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mn_amt_taxable_income", - "label": "Minnesota alternative minimum tax (AMT) taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mn.tax.income.amt.mn_amt_taxable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mn_charity_subtraction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mn_charity_subtraction", - "label": "Minnesota charity subtraction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mn.tax.income.subtractions.mn_charity_subtraction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mn_social_security_subtraction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mn_social_security_subtraction", - "label": "Minnesota social security subtraction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mn.tax.income.subtractions.mn_social_security_subtraction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mn_elderly_disabled_subtraction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mn_elderly_disabled_subtraction", - "label": "Minnesota elderly/disabled subtraction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mn.tax.income.subtractions.mn_elderly_disabled_subtraction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mn_public_pension_subtraction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mn_public_pension_subtraction", - "label": "Minnesota public pension subtraction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mn.tax.income.subtractions.mn_public_pension_subtraction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mn_subtractions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mn_subtractions", - "label": "Minnesota subtractions from federal AGI", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mn.tax.income.subtractions.mn_subtractions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.mn.tax.income.subtractions.sources", - "subtracts": null, - "hidden_input": false - }, - "mn_additions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mn_additions", - "label": "Minnesota additions to federal AGI", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mn.tax.income.additions.mn_additions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.mn.tax.income.additions.sources", - "subtracts": null, - "hidden_input": false - }, - "mn_itemized_deductions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mn_itemized_deductions", - "label": "Minnesota itemized deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mn.tax.income.deductions.mn_itemized_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mn_deductions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mn_deductions", - "label": "Minnesota deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mn.tax.income.deductions.mn_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mn_standard_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mn_standard_deduction", - "label": "Minnesota standard deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mn.tax.income.deductions.mn_standard_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mn_itemizing": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "mn_itemizing", - "label": "whether or not itemizing Minnesota deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mn.tax.income.deductions.mn_itemizing", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nj_tanf_countable_resources": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nj_tanf_countable_resources", - "label": "Countable resources for New Jersey TANF", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nj.njdhs.tanf.nj_tanf_countable_resources", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nj_tanf_resources_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "nj_tanf_resources_eligible", - "label": "New Jersey TANF resources eligible", - "category": null, - "unit": null, - "moduleName": "gov.states.nj.njdhs.tanf.nj_tanf_resources_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nj_tanf_maximum_benefit": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nj_tanf_maximum_benefit", - "label": "New Jersey TANF maximum benefit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nj.njdhs.tanf.nj_tanf_maximum_benefit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nj_tanf_maximum_allowable_income": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nj_tanf_maximum_allowable_income", - "label": "New Jersey TANF maximum allowable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nj.njdhs.tanf.nj_tanf_maximum_allowable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nj_tanf_countable_gross_unearned_income": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nj_tanf_countable_gross_unearned_income", - "label": "New Jersey TANF countable gross unearned income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nj.njdhs.tanf.income.nj_tanf_countable_gross_unearned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.nj.njdhs.tanf.income.unearned", - "subtracts": null, - "hidden_input": false - }, - "nj_tanf_gross_earned_income": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nj_tanf_gross_earned_income", - "label": "New Jersey TANF gross earned income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nj.njdhs.tanf.income.nj_tanf_gross_earned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.nj.njdhs.tanf.income.earned", - "subtracts": null, - "hidden_input": false - }, - "nj_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nj_income_tax", - "label": "New Jersey income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nj.tax.income.nj_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nj_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nj_non_refundable_credits", - "label": "New Jersey non-refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nj.tax.income.nj_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nj_main_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nj_main_income_tax", - "label": "New Jersey income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nj.tax.income.nj_main_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nj_income_tax_before_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nj_income_tax_before_refundable_credits", - "label": "New Jersey income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nj.tax.income.nj_income_tax_before_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nj_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nj_refundable_credits", - "label": "New Jersey refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nj.tax.income.nj_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["nj_property_tax_credit", "nj_eitc", "nj_cdcc", "nj_ctc"], - "subtracts": null, - "hidden_input": false - }, - "nj_withheld_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "nj_withheld_income_tax", - "label": "New Jersey withheld income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nj.tax.income.nj_withheld_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nj_childless_eitc_age_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "nj_childless_eitc_age_eligible", - "label": "New Jersey Eligible for EITC", - "category": null, - "unit": null, - "moduleName": "gov.states.nj.tax.income.credits.eitc.nj_childless_eitc_age_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nj_eitc_income_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "nj_eitc_income_eligible", - "label": "New Jersey Eligible for EITC", - "category": null, - "unit": null, - "moduleName": "gov.states.nj.tax.income.credits.eitc.nj_eitc_income_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nj_eitc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nj_eitc", - "label": "New Jersey EITC", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nj.tax.income.credits.eitc.nj_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nj_ctc_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "nj_ctc_eligible", - "label": "Eligible for the New Jersey child tax credit", - "category": null, - "unit": null, - "moduleName": "gov.states.nj.tax.income.credits.ctc.nj_ctc_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nj_ctc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nj_ctc", - "label": "New Jersey Child Tax Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nj.tax.income.credits.ctc.nj_ctc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nj_cdcc": { - "documentation": "New Jersey Child and Dependent Care Credit", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nj_cdcc", - "label": "New Jersey CDCC", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nj.tax.income.credits.cdcc.nj_cdcc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nj_property_tax_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nj_property_tax_credit", - "label": "New Jersey property tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nj.tax.income.credits.property_tax_credit.nj_property_tax_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nj_property_tax_credit_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "nj_property_tax_credit_eligible", - "label": "New Jersey property tax credit eligibility", - "category": null, - "unit": null, - "moduleName": "gov.states.nj.tax.income.credits.property_tax_credit.nj_property_tax_credit_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nj_dependents_attending_college_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nj_dependents_attending_college_exemption", - "label": "New Jersey dependents attending college exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nj.tax.income.exemptions.nj_dependents_attending_college_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nj_blind_or_disabled_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nj_blind_or_disabled_exemption", - "label": "New Jersey blind or disabled exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nj.tax.income.exemptions.nj_blind_or_disabled_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nj_senior_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nj_senior_exemption", - "label": "New Jersey senior exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nj.tax.income.exemptions.nj_senior_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nj_dependents_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nj_dependents_exemption", - "label": "New Jersey qualified and other dependent children exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nj.tax.income.exemptions.nj_dependents_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nj_regular_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nj_regular_exemption", - "label": "New Jersey regular exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nj.tax.income.exemptions.nj_regular_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nj_total_exemptions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nj_total_exemptions", - "label": "New Jersey total exemption allowance", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nj.tax.income.exemptions.nj_total_exemptions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "nj_regular_exemption", - "nj_senior_exemption", - "nj_dependents_exemption", - "nj_blind_or_disabled_exemption", - "nj_dependents_attending_college_exemption" - ], - "subtracts": null, - "hidden_input": false - }, - "nj_total_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "nj_total_income", - "label": "New Jersey total income by person", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nj.tax.income.adjusted_gross_income.nj_total_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nj_additions": { - "documentation": "Additions to federal AGI to get NJ total income.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "nj_additions", - "label": "New Jersey additions to federal AGI by person", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nj.tax.income.adjusted_gross_income.nj_additions", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nj_agi": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nj_agi", - "label": "New Jersey adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nj.tax.income.adjusted_gross_income.nj_agi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nj_agi_subtractions": { - "documentation": "Subtractions from federal AGI to get NJ total income.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "nj_agi_subtractions", - "label": "New Jersey subtractions from federal AGI by person", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nj.tax.income.adjusted_gross_income.nj_agi_subtractions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.nj.tax.income.subtractions", - "subtracts": null, - "hidden_input": false - }, - "nj_taxable_income_before_property_tax_deduction": { - "documentation": "NJ AGI less taxable income deductions, before property tax deduction (Line 39)", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nj_taxable_income_before_property_tax_deduction", - "label": "New Jersey taxable income before property tax deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nj.tax.income.taxable_income.nj_taxable_income_before_property_tax_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nj_taxable_income": { - "documentation": "NJ AGI less taxable income deductions (Line 42)", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nj_taxable_income", - "label": "New Jersey taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nj.tax.income.taxable_income.nj_taxable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nj_taking_property_tax_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "nj_taking_property_tax_deduction", - "label": "Household taking New Jersey property tax deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nj.tax.income.property_tax.nj_taking_property_tax_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nj_property_tax_deduction_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "nj_property_tax_deduction_eligible", - "label": "New Jersey property tax deduction eligibility", - "category": null, - "unit": null, - "moduleName": "gov.states.nj.tax.income.property_tax.nj_property_tax_deduction_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nj_potential_property_tax_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nj_potential_property_tax_deduction", - "label": "New Jersey potential property tax deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nj.tax.income.property_tax.nj_potential_property_tax_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nj_property_tax_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nj_property_tax_deduction", - "label": "New Jersey property tax deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nj.tax.income.property_tax.nj_property_tax_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nj_other_retirement_income_exclusion": { - "documentation": "New Jersey other retirement income exclusion", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nj_other_retirement_income_exclusion", - "label": "New Jersey Other Retirement Income Exclusion", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nj.tax.income.exclusions.nj_other_retirement_income_exclusion", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nj_eligible_pension_income": { - "documentation": "New Jersey pension income eligible for pension exclusion", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "nj_eligible_pension_income", - "label": "New Jersey pension income eligible for pension exclusion", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nj.tax.income.exclusions.nj_eligible_pension_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nj_pension_retirement_exclusion": { - "documentation": "New Jersey pension and retirement excludable amount if eligible (Line 28a)", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nj_pension_retirement_exclusion", - "label": "New Jersey Pension/Retirement Exclusion", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nj.tax.income.exclusions.nj_pension_retirement_exclusion", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nj_retirement_exclusion_fraction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nj_retirement_exclusion_fraction", - "label": "New Jersey retirement exclusion fraction based on total income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nj.tax.income.exclusions.nj_retirement_exclusion_fraction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nj_other_retirement_special_exclusion": { - "documentation": "New Jersey other retirement special exclusion", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nj_other_retirement_special_exclusion", - "label": "New Jersey Other Retirement Special Exclusion", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nj.tax.income.exclusions.nj_other_retirement_special_exclusion", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nj_medical_expense_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nj_medical_expense_deduction", - "label": "New Jersey medical expense deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nj.tax.income.deductions.nj_medical_expense_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nj_total_deductions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nj_total_deductions", - "label": "New Jersey total deductions to income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nj.tax.income.deductions.nj_total_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["nj_medical_expense_deduction"], - "subtracts": null, - "hidden_input": false - }, - "ky_files_separately": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ky_files_separately", - "label": "Married couple file separately on the Kentucky tax return", - "category": null, - "unit": null, - "moduleName": "gov.states.ky.tax.income.ky_filing_separately", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ky_additions": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ky_additions", - "label": "Kentucky additions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ky.tax.income.ky_additions", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ky_income_tax_before_non_refundable_credits_unit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ky_income_tax_before_non_refundable_credits_unit", - "label": "Kentucky income tax before non-refundable credits combined", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ky.tax.income.ky_income_tax_before_non_refundable_credits_unit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ky_income_tax_before_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ky_income_tax_before_refundable_credits", - "label": "Kentucky income tax before refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ky.tax.income.ky_income_tax_before_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ky_subtractions": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ky_subtractions", - "label": "Kentucky subtractions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ky.tax.income.ky_subtractions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ky.tax.income.subtractions", - "subtracts": null, - "hidden_input": false - }, - "ky_income_tax_before_non_refundable_credits_joint": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ky_income_tax_before_non_refundable_credits_joint", - "label": "Kentucky income tax before non-refundable credits when married filing jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ky.tax.income.ky_income_tax_before_non_refundable_credits_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ky_agi": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ky_agi", - "label": "Kentucky adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ky.tax.income.ky_agi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ky_additions", "adjusted_gross_income_person"], - "subtracts": ["ky_subtractions"], - "hidden_input": false - }, - "ky_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ky_income_tax", - "label": "Kentucky income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ky.tax.income.ky_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ky_income_tax_before_refundable_credits"], - "subtracts": ["ky_refundable_credits"], - "hidden_input": false - }, - "ky_taxable_income_indiv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ky_taxable_income_indiv", - "label": "Kentucky taxable income when married couples file separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ky.tax.income.ky_taxable_income_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ky_filing_status": { - "documentation": null, - "entity": "tax_unit", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "ky_filing_status", - "label": "Filing status for the tax unit in Kentucky", - "category": null, - "unit": null, - "moduleName": "gov.states.ky.tax.income.ky_filing_status", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "SINGLE", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "SINGLE", - "label": "Single" - }, - { - "value": "JOINT", - "label": "Joint" - }, - { - "value": "SEPARATE", - "label": "Separate" - } - ] - }, - "ky_income_tax_before_non_refundable_credits_indiv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ky_income_tax_before_non_refundable_credits_indiv", - "label": "Kentucky income tax before non-refundable credits when married couples are filing separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ky.tax.income.ky_income_tax_before_non_refundable_credits_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ky_taxable_income_joint": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ky_taxable_income_joint", - "label": "Kentucky taxable income when married couples file jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ky.tax.income.ky_taxable_income_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ky_withheld_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ky_withheld_income_tax", - "label": "Kentucky withheld income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ky.tax.income.ky_withheld_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ky_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ky_refundable_credits", - "label": "Kentucky refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ky.tax.income.credits.ky_refundable_credits", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ky_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ky_non_refundable_credits", - "label": "Kentucky non-refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ky.tax.income.credits.ky_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ky.tax.income.credits.non_refundable", - "subtracts": null, - "hidden_input": false - }, - "ky_modified_agi": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ky_modified_agi", - "label": "Kentucky modified adjusted gross income for the family size tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ky.tax.income.credits.family_size_credit.ky_modified_agi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ky_family_size_tax_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ky_family_size_tax_credit", - "label": "Kentucky family size tax credit", - "category": null, - "unit": "/1", - "moduleName": "gov.states.ky.tax.income.credits.family_size_credit.ky_family_size_tax_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ky_family_size_tax_credit_rate": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ky_family_size_tax_credit_rate", - "label": "Kentucky family size tax credit rate", - "category": null, - "unit": "/1", - "moduleName": "gov.states.ky.tax.income.credits.family_size_credit.ky_family_size_tax_credit_rate", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ky_tuition_tax_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ky_tuition_tax_credit", - "label": "Kentucky tuition tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ky.tax.income.credits.tuition_tax.ky_tuition_tax_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ky_tuition_tax_credit_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ky_tuition_tax_credit_eligible", - "label": "Eligible for the Kentucky tuition tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ky.tax.income.credits.tuition_tax.ky_tuition_tax_credit_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ky_military_personal_tax_credits": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ky_military_personal_tax_credits", - "label": "Kentucky personal tax credits military service amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ky.tax.income.credits.personal.ky_military_personal_tax_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ky_personal_tax_credits_joint": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ky_personal_tax_credits_joint", - "label": "Kentucky personal tax credits when married couples file jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ky.tax.income.credits.personal.ky_personal_tax_credits_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ky_personal_tax_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ky_personal_tax_credits", - "label": "Kentucky personal tax credits combined", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ky.tax.income.credits.personal.ky_personal_tax_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ky_blind_personal_tax_credits": { - "documentation": "https://apps.legislature.ky.gov/law/statutes/statute.aspx?id=53500#page=3", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ky_blind_personal_tax_credits", - "label": "Kentucky personal tax credits blind amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ky.tax.income.credits.personal.ky_blind_personal_tax_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ky_aged_personal_tax_credits": { - "documentation": "https://apps.legislature.ky.gov/law/statutes/statute.aspx?id=53500#page=3", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ky_aged_personal_tax_credits", - "label": "Kentucky personal tax credits aged amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ky.tax.income.credits.personal.ky_aged_personal_tax_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ky_personal_tax_credits_indiv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ky_personal_tax_credits_indiv", - "label": "Kentucky personal tax credits when married couples file separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ky.tax.income.credits.personal.ky_personal_tax_credits_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "ky_blind_personal_tax_credits", - "ky_aged_personal_tax_credits", - "ky_military_personal_tax_credits" - ], - "subtracts": null, - "hidden_input": false - }, - "ky_cdcc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ky_cdcc", - "label": "Kentucky household and dependent care service credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ky.tax.income.credits.dependent_care_service.ky_cdcc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ky_service_credits_percentage_pre_1998": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ky_service_credits_percentage_pre_1998", - "label": "Share of service credit months worked before 1998", - "category": null, - "unit": null, - "moduleName": "gov.states.ky.tax.income.exclusions.pension_income.ky_service_credits_percentage_pre_1998", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ky_pension_income_exclusion": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ky_pension_income_exclusion", - "label": "KY Pension Income Exclusion", - "category": null, - "unit": null, - "moduleName": "gov.states.ky.tax.income.exclusions.pension_income.ky_pension_income_exclusion", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ky_service_credit_months_pre_1998": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ky_service_credit_months_pre_1998", - "label": "Kentucky service credit months before 1998", - "category": null, - "unit": null, - "moduleName": "gov.states.ky.tax.income.exclusions.pension_income.ky_service_credit_months_pre_1998", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ky_pension_income_exclusion_exemption_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ky_pension_income_exclusion_exemption_eligible", - "label": "KY Pension Income Exclusion Exemption Eligible", - "category": null, - "unit": null, - "moduleName": "gov.states.ky.tax.income.exclusions.pension_income.ky_pension_income_exclusion_exemption_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": [ - "retired_from_federal_government", - "retired_from_ky_government", - "railroad_benefits" - ], - "subtracts": null, - "hidden_input": false - }, - "ky_service_credit_months_post_1997": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ky_service_credit_months_post_1997", - "label": "Kentucky service credit months after 1997", - "category": null, - "unit": null, - "moduleName": "gov.states.ky.tax.income.exclusions.pension_income.ky_service_credit_months_post_1997", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "retired_from_ky_government": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "retired_from_ky_government", - "label": "Retired from state or local government in Kentucky", - "category": null, - "unit": null, - "moduleName": "gov.states.ky.tax.income.exclusions.pension_income.retired_from_ky_government", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ky_deductions_joint": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ky_deductions_joint", - "label": "Kentucky itemized deductions when married couples file jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ky.tax.income.deductions.ky_deductions_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ky_itemized_deductions_unit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ky_itemized_deductions_unit", - "label": "Kentucky itemized deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ky.tax.income.deductions.ky_itemized_deductions_unit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["itemized_deductions_less_salt"], - "subtracts": ["medical_expense_deduction"], - "hidden_input": false - }, - "ky_standard_deduction_joint": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ky_standard_deduction_joint", - "label": "Kentucky standard deduction when married couples file jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ky.tax.income.deductions.ky_standard_deduction_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ky_itemized_deductions_indiv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ky_itemized_deductions_indiv", - "label": "Kentucky itemized deductions when married couples file separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ky.tax.income.deductions.ky_itemized_deduction_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ky_standard_deduction_indiv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ky_standard_deduction_indiv", - "label": "Kentucky standard deduction when married couples file separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ky.tax.income.deductions.ky_standard_deduction_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ky_itemized_deductions_joint": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ky_itemized_deductions_joint", - "label": "Kentucky itemized deductions when married couples file jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ky.tax.income.deductions.ky_itemized_deduction_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ky_tax_unit_itemizes": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ky_tax_unit_itemizes", - "label": "Whether the tax unit in Kentucky itemizes the deductions when married filing separately", - "category": null, - "unit": null, - "moduleName": "gov.states.ky.tax.income.deductions.ky_tax_unit_itemizes", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ky_deductions_indiv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ky_deductions_indiv", - "label": "Kentucky income deductions when married couples file separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ky.tax.income.deductions.ky_deductions_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pa_withheld_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "pa_withheld_income_tax", - "label": "Pennsylvania withheld income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.pa.tax.income.pa_withheld_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pa_refundable_tax_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "pa_refundable_tax_credits", - "label": "Pennsylvania refundable tax credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.pa.tax.income.pa_refundable_tax_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.pa.tax.income.credits.refundable", - "subtracts": null, - "hidden_input": false - }, - "pa_use_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "pa_use_tax", - "label": "PA Use Tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.pa.tax.income.pa_use_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pa_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "pa_income_tax", - "label": "Pennsylvania income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.pa.tax.income.pa_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["pa_income_tax_after_forgiveness", "pa_use_tax"], - "subtracts": ["pa_refundable_tax_credits"], - "hidden_input": false - }, - "pa_tax_forgiveness_rate": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "pa_tax_forgiveness_rate", - "label": "PA tax forgiveness on eligibility income", - "category": null, - "unit": "/1", - "moduleName": "gov.states.pa.tax.income.forgiveness.pa_tax_forgiveness_rate", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pa_income_tax_after_forgiveness": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "pa_income_tax_after_forgiveness", - "label": "PA income tax after forgiveness", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.pa.tax.income.forgiveness.pa_income_tax_after_forgiveness", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["pa_income_tax_before_forgiveness"], - "subtracts": ["pa_tax_forgiveness_amount"], - "hidden_input": false - }, - "pa_income_tax_before_forgiveness": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "pa_income_tax_before_forgiveness", - "label": "PA income tax before forgiveness", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.pa.tax.income.forgiveness.pa_income_tax_before_forgiveness", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pa_eligibility_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "pa_eligibility_income", - "label": "PA eligibility income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.pa.tax.income.forgiveness.pa_eligibility_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.pa.tax.income.forgiveness.eligibility_income_sources", - "subtracts": null, - "hidden_input": false - }, - "pa_tax_forgiveness_amount": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "pa_tax_forgiveness_amount", - "label": "PA forgiveness amount", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.pa.tax.income.forgiveness.pa_tax_forgiveness_amount", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pa_cdcc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "pa_cdcc", - "label": "Pennsylvania Child and Dependent Care Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.pa.tax.income.credits.pa_cdcc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pa_nontaxable_pension_income": { - "documentation": "US taxable pension income excluded from PA AGI.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "pa_nontaxable_pension_income", - "label": "Pension income taxable by US but not by PA", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.pa.tax.income.taxable_income.pa_nontaxable_pension_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pa_adjusted_taxable_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "pa_adjusted_taxable_income", - "label": "PA income tax after deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.pa.tax.income.taxable_income.pa_adjusted_taxable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["pa_total_taxable_income"], - "subtracts": ["pa_tax_deductions"], - "hidden_input": false - }, - "pa_total_taxable_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "pa_total_taxable_income", - "label": "PA total taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.pa.tax.income.taxable_income.pa_total_taxable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pa_tax_deductions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "pa_tax_deductions", - "label": "PA deductions against taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.pa.tax.income.deductions.pa_tax_deductions", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pa_tanf_age_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "pa_tanf_age_eligible", - "label": "Pennsylvania TANF age eligibility", - "category": null, - "unit": null, - "moduleName": "gov.states.pa.dhs.tanf.cash_assistance.pa_tanf_age_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pa_tanf_countable_resources": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "pa_tanf_countable_resources", - "label": "Pennsylvania TANF countable resources", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.pa.dhs.tanf.eligibility.pa_tanf_countable_resources", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pa_tanf_resources_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "pa_tanf_resources_eligible", - "label": "Meets Pennsylvania TANF resource limit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.pa.dhs.tanf.eligibility.pa_tanf_resources_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "pa_tanf_age_eligible_on_pregnant_women_limitation": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "pa_tanf_age_eligible_on_pregnant_women_limitation", - "label": "Pennsylvania TANF age eligibility on pregnant women requirement", - "category": null, - "unit": null, - "moduleName": "gov.states.pa.dhs.tanf.eligibility.pregnancy_eligibility.age_eligibility", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wv_additions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wv_additions", - "label": "West Virginia additions to the adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wv.tax.income.wv_additions", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wv_withheld_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "wv_withheld_income_tax", - "label": "West Virginia withheld income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wv.tax.income.wv_withheld_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wv_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wv_non_refundable_credits", - "label": "West Virginia refundable tax credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wv.tax.income.wv_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.wv.tax.income.credits.non_refundable", - "subtracts": null, - "hidden_input": false - }, - "wv_subtractions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wv_subtractions", - "label": "West Virginia subtractions from the adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wv.tax.income.wv_subtractions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.wv.tax.income.subtractions.subtractions", - "subtracts": null, - "hidden_input": false - }, - "wv_agi": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wv_agi", - "label": "West Virginia adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wv.tax.income.wv_agi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["adjusted_gross_income", "wv_additions"], - "subtracts": ["wv_subtractions"], - "hidden_input": false - }, - "wv_income_tax_before_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wv_income_tax_before_refundable_credits", - "label": "West Virginia income tax before refundable tax credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wv.tax.income.wv_income_tax_before_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wv_taxable_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wv_taxable_income", - "label": "West Virginia taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wv.tax.income.wv_taxable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wv_income_tax_before_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wv_income_tax_before_non_refundable_credits", - "label": "West Virginia income tax before non-refundable tax credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wv.tax.income.wv_income_tax_before_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wv_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wv_refundable_credits", - "label": "West Virginia refundable tax credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wv.tax.income.wv_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.wv.tax.income.credits.refundable", - "subtracts": null, - "hidden_input": false - }, - "wv_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wv_income_tax", - "label": "West Virginia income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wv.tax.income.wv_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["wv_income_tax_before_refundable_credits"], - "subtracts": ["wv_refundable_credits"], - "hidden_input": false - }, - "wv_cdcc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wv_cdcc", - "label": "West Virginia Child and Dependent Care Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wv.tax.income.credits.wv_cdcc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wv_sctc_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "wv_sctc_eligible", - "label": "Eligible for the West Virginia senior citizens tax credit", - "category": null, - "unit": null, - "moduleName": "gov.states.wv.tax.income.credits.sctc.wv_sctc_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wv_sctc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wv_sctc", - "label": "West Virginia senior citizens tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wv.tax.income.credits.sctc.wv_sctc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wv_taxable_property_value": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wv_taxable_property_value", - "label": "West Virginia taxable property value", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wv.tax.income.credits.sctc.wv_taxable_property_value", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["assessed_property_value"], - "subtracts": ["wv_homestead_exemption"], - "hidden_input": false - }, - "wv_homestead_excess_property_tax_credit_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "wv_homestead_excess_property_tax_credit_eligible", - "label": "Eligible for the West Virginia homestead excess property tax credit", - "category": null, - "unit": null, - "moduleName": "gov.states.wv.tax.income.credits.heptc.wv_homestead_excess_property_tax_credit_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wv_homestead_excess_property_tax_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wv_homestead_excess_property_tax_credit", - "label": "West Virginia homestead excess property tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wv.tax.income.credits.heptc.wv_homestead_excess_property_tax_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wv_gross_household_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wv_gross_household_income", - "label": "West Virginia gross household income", - "category": null, - "unit": null, - "moduleName": "gov.states.wv.tax.income.credits.heptc.wv_gross_household_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.wv.tax.income.credits.heptc.gross_household_income.sources", - "subtracts": null, - "hidden_input": false - }, - "wv_low_income_family_tax_credit_fpg": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wv_low_income_family_tax_credit_fpg", - "label": "Federal poverty guidelines for the West Virginia low-income family tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wv.tax.income.credits.liftc.wv_low_income_family_tax_credit_fpg", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wv_low_income_family_tax_credit_agi": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wv_low_income_family_tax_credit_agi", - "label": "Adjusted gross income for the West Virginia low-income family tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wv.tax.income.credits.liftc.wv_low_income_family_tax_credit_agi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["adjusted_gross_income", "tax_exempt_interest_income", "wv_additions"], - "subtracts": null, - "hidden_input": false - }, - "wv_low_income_family_tax_credit_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "wv_low_income_family_tax_credit_eligible", - "label": "Eligible for the West Virginia low-income family tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wv.tax.income.credits.liftc.wv_low_income_family_tax_credit_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wv_low_income_family_tax_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wv_low_income_family_tax_credit", - "label": "West Virginia low-income family tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wv.tax.income.credits.liftc.wv_low_income_family_tax_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wv_personal_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wv_personal_exemption", - "label": "West Virginia personal exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wv.tax.income.exemptions.wv_personal_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wv_homestead_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wv_homestead_exemption", - "label": "West Virginia homestead exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wv.tax.income.exemptions.homestead_exemption.wv_homestead_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wv_low_income_earned_income_exclusion_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "wv_low_income_earned_income_exclusion_eligible", - "label": "Eligible for the West Virginia low-income earned income exclusion", - "category": null, - "unit": null, - "moduleName": "gov.states.wv.tax.income.subtractions.low_income_earned_income.wv_low_income_earned_income_exclusion_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wv_low_income_earned_income_exclusion": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wv_low_income_earned_income_exclusion", - "label": "West Virginia low-income earned income exclusion", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wv.tax.income.subtractions.low_income_earned_income.wv_low_income_earned_income_exclusion", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wv_social_security_benefits_subtraction_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "wv_social_security_benefits_subtraction_eligible", - "label": "Eligible for the West Virginia social security benefits subtraction", - "category": null, - "unit": null, - "moduleName": "gov.states.wv.tax.income.subtractions.social_security.wv_social_security_benefits_subtraction_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wv_social_security_benefits_subtraction_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "wv_social_security_benefits_subtraction_person", - "label": "West Virginia social security benefits subtraction for each person", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wv.tax.income.subtractions.social_security.wv_social_security_benefits_subtraction_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wv_social_security_benefits_subtraction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wv_social_security_benefits_subtraction", - "label": "West Virginia social security benefits subtraction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wv.tax.income.subtractions.social_security.wv_social_security_benefits_subtraction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["wv_social_security_benefits_subtraction_person"], - "subtracts": null, - "hidden_input": false - }, - "wv_senior_citizen_disability_deduction_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "wv_senior_citizen_disability_deduction_person", - "label": "West Virginia senior citizen or disability deduction for each person", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wv.tax.income.subtractions.senior_citizen_disability.wv_senior_citizen_disability_deduction_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wv_senior_citizen_disability_deduction_eligible_person": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "wv_senior_citizen_disability_deduction_eligible_person", - "label": "Eligible person for the West Virginia senior citizen or disability deduction", - "category": null, - "unit": null, - "moduleName": "gov.states.wv.tax.income.subtractions.senior_citizen_disability.wv_senior_citizen_disability_deduction_eligible_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wv_senior_citizen_disability_deduction_total_modifications": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "wv_senior_citizen_disability_deduction_total_modifications", - "label": "West Virginia total modifications for the senior citizen or disability deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wv.tax.income.subtractions.senior_citizen_disability.wv_senior_citizen_disability_deduction_total_modifications", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.wv.tax.income.subtractions.senior_citizen_disability_deduction.modification_sources", - "subtracts": null, - "hidden_input": false - }, - "wv_senior_citizen_disability_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wv_senior_citizen_disability_deduction", - "label": "West Virginia senior citizen or disability deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wv.tax.income.subtractions.senior_citizen_disability.wv_senior_citizen_disability_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["wv_senior_citizen_disability_deduction_person"], - "subtracts": null, - "hidden_input": false - }, - "wv_public_pension_subtraction_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "wv_public_pension_subtraction_person", - "label": "West Virginia public pension subtraction for each person", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wv.tax.income.subtractions.public_pension.wv_public_pension_subtraction_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "wv_public_pension_subtraction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "wv_public_pension_subtraction", - "label": "West Virginia public pension subtraction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.wv.tax.income.subtractions.public_pension.wv_public_pension_subtraction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["wv_public_pension_subtraction_person"], - "subtracts": null, - "hidden_input": false - }, - "ia_reduced_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_reduced_tax", - "label": "Iowa income tax reduced amount for single tax units", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.ia_reduced_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ia_alternate_tax_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ia_alternate_tax_eligible", - "label": "Iowa alternate tax eligible", - "category": null, - "unit": null, - "moduleName": "gov.states.ia.tax.income.ia_alternate_tax_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ia_income_tax_before_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_income_tax_before_refundable_credits", - "label": "Iowa income tax before refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.ia_income_tax_before_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ia_is_tax_exempt": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ia_is_tax_exempt", - "label": "whether or not exempt from Iowa income tax because of low income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.ia_is_tax_exempt", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ia_modified_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_modified_income", - "label": "Iowa modified income used in tax-exempt and alternate-tax calculations", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.ia_modified_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ia.tax.income.modified_income.sources", - "subtracts": null, - "hidden_input": false - }, - "ia_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_income_tax", - "label": "Iowa income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.ia_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ia_income_tax_before_refundable_credits"], - "subtracts": ["ia_refundable_credits"], - "hidden_input": false - }, - "ia_reportable_social_security": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_reportable_social_security", - "label": "Iowa reportable social security benefits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.ia_reportable_social_security", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ia_withheld_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_withheld_income_tax", - "label": "Iowa withheld income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.ia_withheld_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ia_income_tax_before_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_income_tax_before_credits", - "label": "Iowa income tax before credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.ia_income_tax_before_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ia_files_separately": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ia_files_separately", - "label": "married couple files separately on Iowa tax return", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.ia_files_separately", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ia_base_tax_joint": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_base_tax_joint", - "label": "Iowa base tax when married couples file jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.including_married_filing_separately.ia_base_tax_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ia_amt_joint": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_amt_joint", - "label": "Iowa alternative minimum tax when married couples file jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.including_married_filing_separately.ia_amt_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ia_income_tax_joint": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_income_tax_joint", - "label": "Iowa income tax when married couples file jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.including_married_filing_separately.ia_income_tax_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ia_base_tax_joint", "ia_amt_joint"], - "subtracts": null, - "hidden_input": false - }, - "ia_income_tax_indiv": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_income_tax_indiv", - "label": "Iowa income tax when married couples file separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.including_married_filing_separately.ia_income_tax_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ia_base_tax_indiv", "ia_amt_indiv"], - "subtracts": null, - "hidden_input": false - }, - "ia_regular_tax_indiv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_regular_tax_indiv", - "label": "Iowa regular tax calculated using income tax rate schedule when married couples file separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.including_married_filing_separately.ia_regular_tax_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ia_base_tax_indiv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_base_tax_indiv", - "label": "Iowa base tax when married couples file separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.including_married_filing_separately.ia_base_tax_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ia_regular_tax_joint": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_regular_tax_joint", - "label": "Iowa regular tax calculated using income tax rate schedule when married couples file jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.including_married_filing_separately.ia_regular_tax_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ia_taxable_income_joint": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_taxable_income_joint", - "label": "Iowa taxable income when married couple file jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.including_married_filing_separately.ia_taxable_income_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ia_amt_indiv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_amt_indiv", - "label": "Iowa alternative minimum tax when married couples file separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.including_married_filing_separately.ia_amt_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ia_taxable_income_indiv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_taxable_income_indiv", - "label": "Iowa taxable income when married couple file separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.including_married_filing_separately.ia_taxable_income_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ia_alternate_tax_unit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_alternate_tax_unit", - "label": "Iowa alternate tax calculated using worksheet", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.including_married_filing_separately.alternate_tax.ia_alternate_tax_unit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ia_alternate_tax_joint": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_alternate_tax_joint", - "label": "Iowa alternate tax when married couples file jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.including_married_filing_separately.alternate_tax.ia_alternate_tax_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ia_alternate_tax_indiv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_alternate_tax_indiv", - "label": "Iowa alternate tax when married couples file separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.including_married_filing_separately.alternate_tax.ia_alternate_tax_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ia_itemized_deductions_joint": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_itemized_deductions_joint", - "label": "Iowa itemized deductions for joint couples", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.including_married_filing_separately.deductions.ia_itemized_deductions_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ia_basic_deduction_joint": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_basic_deduction_joint", - "label": "Iowa deduction of either standard or itemized deductions when married couples file jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.including_married_filing_separately.deductions.ia_basic_deduction_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ia_standard_deduction_indiv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_standard_deduction_indiv", - "label": "Iowa standard deduction when married couples file separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.including_married_filing_separately.deductions.ia_standard_deduction_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ia_basic_deduction_indiv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_basic_deduction_indiv", - "label": "Iowa deduction of either standard or itemized deductions when married couples file separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.including_married_filing_separately.deductions.ia_basic_deduction_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ia_standard_deduction_joint": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_standard_deduction_joint", - "label": "Iowa standard deduction when married couples file jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.including_married_filing_separately.deductions.ia_standard_deduction_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ia_itemized_deductions_indiv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_itemized_deductions_indiv", - "label": "Iowa itemized deductions for individual couples", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.including_married_filing_separately.deductions.ia_itemized_deductions_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ia_fedtax_deduction": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_fedtax_deduction", - "label": "Iowa deduction for selected components of federal income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.including_married_filing_separately.deductions.ia_fedtax_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ia_qbi_deduction": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_qbi_deduction", - "label": "Iowa deduction that is fraction of federal qualified business income deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.including_married_filing_separately.deductions.ia_qbi_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ia_itemized_deductions_unit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_itemized_deductions_unit", - "label": "Iowa itemized deductions for tax unit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.including_married_filing_separately.deductions.ia_itemized_deductions_unit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ia_eitc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_eitc", - "label": "Iowa earned income tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.credits.ia_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ia_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_refundable_credits", - "label": "Iowa refundable income tax credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.credits.ia_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ia.tax.income.credits.refundable", - "subtracts": null, - "hidden_input": false - }, - "ia_cdcc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_cdcc", - "label": "Iowa child/dependent care credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.credits.ia_cdcc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ia_exemption_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_exemption_credit", - "label": "Iowa exemption credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.credits.ia_exemption_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ia_nonrefundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_nonrefundable_credits", - "label": "Iowa nonrefundable income tax credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.credits.ia_nonrefundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ia.tax.income.credits.nonrefundable", - "subtracts": null, - "hidden_input": false - }, - "ia_pension_exclusion_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ia_pension_exclusion_eligible", - "label": "Eligible for the Iowa pension exclusion", - "category": null, - "unit": null, - "moduleName": "gov.states.ia.tax.income.net_income.ia_pension_exclusion_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ia_pension_exclusion": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_pension_exclusion", - "label": "Iowa pension exclusion", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.net_income.ia_pension_exclusion", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ia_net_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_net_income", - "label": "Iowa net income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.net_income.ia_net_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ia_income_adjustments": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_income_adjustments", - "label": "Iowa income adjustments", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.net_income.ia_income_adjustments", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ia.tax.income.income_adjustments.sources", - "subtracts": null, - "hidden_input": false - }, - "ia_gross_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_gross_income", - "label": "Iowa gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.net_income.ia_gross_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ia.tax.income.gross_income.sources", - "subtracts": null, - "hidden_input": false - }, - "ia_prorate_fraction": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_prorate_fraction", - "label": "Iowa joint amount proration fraction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.net_income.ia_prorate_fraction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ia_regular_tax_consolidated": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_regular_tax_consolidated", - "label": "Iowa regular tax for years on or after 2023", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.consolidated.ia_regular_tax_consolidated", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ia_alternate_tax_consolidated": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_alternate_tax_consolidated", - "label": "Iowa alternate tax for years on or after 2023", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.consolidated.ia_alternate_tax_consolidated", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ia_income_tax_consolidated": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_income_tax_consolidated", - "label": "Iowa income tax for years on or after 2023", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.consolidated.ia_income_tax_consolidated", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ia_additions_consolidated": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_additions_consolidated", - "label": "Iowa additions to taxable income for years on or after 2023", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.consolidated.taxable_income.ia_additions_consolidated", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ia.tax.income.taxable_income.additions", - "subtracts": null, - "hidden_input": false - }, - "ia_taxable_income_modifications_consolidated": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_taxable_income_modifications_consolidated", - "label": "Iowa modifications to taxable income for years on or after 2023", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.consolidated.taxable_income.ia_taxable_income_modifications_consolidated", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["ia_additions_consolidated"], - "subtracts": ["ia_subtractions_consolidated"], - "hidden_input": false - }, - "ia_taxable_income_consolidated": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_taxable_income_consolidated", - "label": "Iowa taxable income for years on or after 2023", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.consolidated.taxable_income.ia_taxable_income_consolidated", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ia_subtractions_consolidated": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ia_subtractions_consolidated", - "label": "Iowa subtractions from taxable income for years on or after 2023", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ia.tax.income.consolidated.taxable_income.ia_subtractions_consolidated", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.ia.tax.income.taxable_income.subtractions", - "subtracts": null, - "hidden_input": false - }, - "az_additions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "az_additions", - "label": "Arizona additions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.az.tax.income.az_additions", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "az_filing_status": { - "documentation": "https://www.azleg.gov/viewdocument/?docName=https://www.azleg.gov/ars/43/01001.htmhttps://azdor.gov/forms/individual/form-140a-arizona-resident-personal-income-tax-booklet", - "entity": "tax_unit", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "az_filing_status", - "label": "Arizona filing status", - "category": null, - "unit": null, - "moduleName": "gov.states.az.tax.income.az_filing_status", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "SINGLE", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "SINGLE", - "label": "Single" - }, - { - "value": "SEPARATE", - "label": "Separate" - }, - { - "value": "HEAD_OF_HOUSEHOLD", - "label": "Head of household" - }, - { - "value": "JOINT", - "label": "Joint" - } - ] - }, - "az_withheld_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "az_withheld_income_tax", - "label": "Arizona withheld income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.az.tax.income.az_withheld_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "az_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "az_non_refundable_credits", - "label": "Arizona non-refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.az.tax.income.az_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.az.tax.income.credits.non_refundable", - "subtracts": null, - "hidden_input": false - }, - "az_agi": { - "documentation": "https://azdor.gov/sites/default/files/2023-03/FORMS_INDIVIDUAL_2020_140NRBOOKLET.pdf#page=18", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "az_agi", - "label": "Arizona adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.az.tax.income.az_agi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "az_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "az_income_tax", - "label": "Arizona income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.az.tax.income.az_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["az_income_tax_before_refundable_credits"], - "subtracts": ["az_refundable_credits"], - "hidden_input": false - }, - "az_subtractions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "az_subtractions", - "label": "Arizona subtractions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.az.tax.income.az_subtractions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.az.tax.income.subtractions.subtractions", - "subtracts": null, - "hidden_input": false - }, - "az_income_tax_before_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "az_income_tax_before_non_refundable_credits", - "label": "Arizona income tax before non-refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.az.tax.income.az_income_tax_before_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "az_taxable_income": { - "documentation": "https://azdor.gov/sites/default/files/2023-03/FORMS_INDIVIDUAL_2022_140Ai.pdf#page=8https://azdor.gov/sites/default/files/2023-03/FORMS_INDIVIDUAL_2022_140Ai.pdf#page=8", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "az_taxable_income", - "label": "Arizona taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.az.tax.income.az_taxable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "az_income_tax_before_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "az_income_tax_before_refundable_credits", - "label": "Arizona income tax before refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.az.tax.income.az_income_tax_before_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "az_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "az_refundable_credits", - "label": "Arizona refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.az.tax.income.az_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.az.tax.income.credits.refundable", - "subtracts": null, - "hidden_input": false - }, - "az_increased_excise_tax_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "az_increased_excise_tax_credit", - "label": "Arizona Increased Excise Tax Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.az.tax.income.credits.az_increased_excise_tax_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "az_increased_excise_tax_credit_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "az_increased_excise_tax_credit_eligible", - "label": "Eligible for Arizona Increased Excise Tax Credit", - "category": null, - "unit": null, - "moduleName": "gov.states.az.tax.income.credits.az_increased_excise_tax_credit_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "az_dependent_tax_credit": { - "documentation": "https://www.azleg.gov/viewdocument/?docName=https://www.azleg.gov/ars/43/01073-01.htm", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "az_dependent_tax_credit", - "label": "Arizona dependent tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.az.tax.income.credits.dependent_credit.az_dependent_tax_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "az_family_tax_credit_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "az_family_tax_credit_eligible", - "label": "Eligible for the Arizona Family Tax Credit", - "category": null, - "unit": null, - "moduleName": "gov.states.az.tax.income.credits.family_tax_credit.az_family_tax_credit_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "az_family_tax_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "az_family_tax_credit", - "label": "Arizona Family Tax Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.az.tax.income.credits.family_tax_credit.az_family_tax_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "az_charitable_contributions_to_qualifying_charitable_organizations": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "az_charitable_contributions_to_qualifying_charitable_organizations", - "label": "Charitable contributions to qualifying charitable organizations in Arizona", - "category": null, - "unit": null, - "moduleName": "gov.states.az.tax.income.credits.charitable_contribution.az_charitable_contributions_to_qualifying_charitable_organizations", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "az_charitable_contributions_to_qualifying_foster_care_organizations": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "az_charitable_contributions_to_qualifying_foster_care_organizations", - "label": "Charitable contributions to qualifying foster care organizations in Arizona", - "category": null, - "unit": null, - "moduleName": "gov.states.az.tax.income.credits.charitable_contribution.az_charitable_contributions_to_qualifying_foster_care_organizations", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "az_charitable_contributions_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "az_charitable_contributions_credit", - "label": "Arizona charitable contributions credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.az.tax.income.credits.charitable_contribution.az_charitable_contributions_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "az_property_tax_credit_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "az_property_tax_credit_income", - "label": "Income for the Arizona property tax the credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.az.tax.income.credits.property_tax_credit.az_property_tax_credit_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.az.tax.income.credits.property_tax.income_sources", - "subtracts": null, - "hidden_input": false - }, - "az_property_tax_credit_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "az_property_tax_credit_eligible", - "label": "Eligible for the Arizona Property Tax Credit", - "category": null, - "unit": null, - "moduleName": "gov.states.az.tax.income.credits.property_tax_credit.az_property_tax_credit_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "az_property_tax_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "az_property_tax_credit", - "label": "Arizona Property Tax Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.az.tax.income.credits.property_tax_credit.az_property_tax_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "az_blind_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "az_blind_exemption", - "label": "Arizona blind exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.az.tax.income.exemptions.az_blind_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "az_stillborn_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "az_stillborn_exemption", - "label": "Arizona stillborn exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.az.tax.income.exemptions.az_stillborn_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "az_exemptions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "az_exemptions", - "label": "Arizona total exemptions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.az.tax.income.exemptions.az_exemptions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "az_aged_exemption", - "az_blind_exemption", - "az_parents_grandparents_exemption", - "az_stillborn_exemption" - ], - "subtracts": null, - "hidden_input": false - }, - "az_parents_grandparents_exemption": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "az_parents_grandparents_exemption", - "label": "Arizona parents and grandparents exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.az.tax.income.exemptions.az_parents_grandparents_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "az_aged_exemption_eligible_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "az_aged_exemption_eligible_person", - "label": "Eligible person for the Arizona aged exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.az.tax.income.exemptions.az_aged_exemption_eligible_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "az_aged_exemption": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "az_aged_exemption", - "label": "Arizona aged exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.az.tax.income.exemptions.az_aged_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "az_public_pension_exclusion": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "az_public_pension_exclusion", - "label": "Arizona Pension Exclusion", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.az.tax.income.subtractions.az_public_pension_exclusion", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "az_military_retirement_subtraction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "az_military_retirement_subtraction", - "label": "Arizona military retirement subtraction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.az.tax.income.subtractions.az_military_retirement_subtraction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "az_529_college_savings_plan_subtraction": { - "documentation": "https://azdor.gov/sites/default/files/2023-03/FORMS_INDIVIDUAL_2022_140i.pdf#page=15", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "az_529_college_savings_plan_subtraction", - "label": "Arizona 529 college savings plan subtraction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.az.tax.income.subtractions.college_savings.az_529_college_savings_plan_subtraction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "az_long_term_capital_gains_subtraction": { - "documentation": "https://azdor.gov/sites/default/files/2023-03/FORMS_INDIVIDUAL_2022_140i.pdf#page=31", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "az_long_term_capital_gains_subtraction", - "label": "Arizona long-term capital gains subtraction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.az.tax.income.subtractions.capital_gains.az_long_term_capital_gains_subtraction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "az_deductions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "az_deductions", - "label": "Arizona deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.az.tax.income.deductions.az_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "az_itemized_deductions": { - "documentation": "Arizona Form 140 Schedule A", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "az_itemized_deductions", - "label": "Arizona Itemized Deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.az.tax.income.deductions.itemized.az_itemized_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "az_standard_deduction": { - "documentation": "https://www.azleg.gov/viewdocument/?docName=https://www.azleg.gov/ars/43/01041.htm", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "az_standard_deduction", - "label": "Arizona standard deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.az.tax.income.deductions.standard.az_standard_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "az_base_standard_deduction", - "az_increased_standard_deduction_for_charitable_contributions" - ], - "subtracts": null, - "hidden_input": false - }, - "az_base_standard_deduction": { - "documentation": "https://www.azleg.gov/viewdocument/?docName=https://www.azleg.gov/ars/43/01041.htm", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "az_base_standard_deduction", - "label": "Arizona base standard deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.az.tax.income.deductions.standard.az_base_standard_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "az_increased_standard_deduction_for_charitable_contributions": { - "documentation": "https://www.azleg.gov/viewdocument/?docName=https://www.azleg.gov/ars/43/01041.htm", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "az_increased_standard_deduction_for_charitable_contributions", - "label": "Arizona increased standard deduction for charitable contributions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.az.tax.income.deductions.standard.az_increased_standard_deduction_for_charitable_contributions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "az_tanf_eligible_child": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "az_tanf_eligible_child", - "label": "Eligible child for the Arizona Cash Assistance", - "category": null, - "unit": null, - "moduleName": "gov.states.az.hhs.tanf.eligibility.az_tanf_eligible_child", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_files_separately": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "mt_files_separately", - "label": "married couple files separately on Montana tax return", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.filing.mt_files_separately", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_eitc": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_eitc", - "label": "Montana EITC", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.credits.eitc.mt_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_capital_gain_credit": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_capital_gain_credit", - "label": "Montana capital gain credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.credits.capital_gain.mt_capital_gain_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_property_tax_rebate": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_property_tax_rebate", - "label": "Montana property tax rebate", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.credits.rebate.mt_property_tax_rebate", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_income_tax_rebate": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_income_tax_rebate", - "label": "Montana 2023 income tax rebate", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.credits.rebate.mt_income_tax_rebate", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_elderly_homeowner_or_renter_credit_gross_household_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_elderly_homeowner_or_renter_credit_gross_household_income", - "label": "Montana gross household income for the elderly homeowner/renter credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.credits.mt_elderly_homeowner_or_renter.mt_elderly_homeowner_or_renter_credit_gross_household_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.gross_income_sources", - "subtracts": null, - "hidden_input": false - }, - "mt_elderly_homeowner_or_renter_credit_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "mt_elderly_homeowner_or_renter_credit_eligible", - "label": "Eligible for the Montana Elderly Homeowner/Renter Credit", - "category": null, - "unit": null, - "moduleName": "gov.states.mt.tax.income.credits.mt_elderly_homeowner_or_renter.mt_elderly_homeowner_or_renter_credit_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_elderly_homeowner_or_renter_credit": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_elderly_homeowner_or_renter_credit", - "label": "Montana Elderly Homeowner/Renter Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.credits.mt_elderly_homeowner_or_renter.mt_elderly_homeowner_or_renter_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_elderly_homeowner_or_renter_credit_net_household_income": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_elderly_homeowner_or_renter_credit_net_household_income", - "label": "Net household income for Montana elderly homeowner or renter credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.credits.mt_elderly_homeowner_or_renter.mt_elderly_homeowner_or_renter_credit_net_household_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_interest_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_interest_exemption", - "label": "Montana interest exemption for the tax unit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.exemptions.interest.mt_interest_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_interest_exemption_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_interest_exemption_person", - "label": "Montana interest exemption for each person", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.exemptions.interest.mt_interest_exemption_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_interest_exemption_eligible_person": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "mt_interest_exemption_eligible_person", - "label": "Eligible for the Montana interest exemption", - "category": null, - "unit": null, - "moduleName": "gov.states.mt.tax.income.exemptions.interest.mt_interest_exemption_eligible_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_aged_exemption_eligible_person": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "mt_aged_exemption_eligible_person", - "label": "Montana aged exemptions when married couples file separately", - "category": null, - "unit": null, - "moduleName": "gov.states.mt.tax.income.exemptions.aged.mt_aged_exemption_eligible_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_dependent_exemptions_person": { - "documentation": null, - "entity": "person", - "valueType": "int", - "definitionPeriod": "year", - "name": "mt_dependent_exemptions_person", - "label": "Montana dependent exemption for each dependent", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.exemptions.dependent.mt_dependent_exemptions_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_personal_exemptions_joint": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_personal_exemptions_joint", - "label": "Montana exemptions when married couple files jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.exemptions.personal.mt_personal_exemptions_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_personal_exemptions_indiv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_personal_exemptions_indiv", - "label": "Montana exemptions when married couples file separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.exemptions.personal.mt_personal_exemptions_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_capital_gains_tax_indiv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_capital_gains_tax_indiv", - "label": "Montana net long-term capital gains tax when married couples file separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.capital_gains.mt_capital_gains_tax_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_capital_gains_tax_joint": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_capital_gains_tax_joint", - "label": "Montana net long-term capital gains tax when married couples file jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.capital_gains.mt_capital_gains_tax_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_capital_gains_tax_applicable_threshold_indiv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_capital_gains_tax_applicable_threshold_indiv", - "label": "Montana applicable threshold for the capital gains tax when married couples file separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.capital_gains.mt_capital_gains_tax_applicable_threshold_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_capital_gains_tax_applicable_threshold_joint": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_capital_gains_tax_applicable_threshold_joint", - "label": "Montana applicable threshold for the capital gains tax when married couples file jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.capital_gains.mt_capital_gains_tax_applicable_threshold_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_subtractions": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_subtractions", - "label": "Montana subtractions from federal adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.subtractions.mt_subtractions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.mt.tax.income.subtractions.subtractions", - "subtracts": null, - "hidden_input": false - }, - "mt_tuition_subtraction_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_tuition_subtraction_person", - "label": "Montana tuition subtraction", - "category": null, - "unit": null, - "moduleName": "gov.states.mt.tax.income.subtractions.tuition.mt_tuition_subtraction_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_tuition_subtraction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_tuition_subtraction", - "label": "Montana tuition subtraction", - "category": null, - "unit": null, - "moduleName": "gov.states.mt.tax.income.subtractions.tuition.mt_tuition_subtraction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["mt_tuition_subtraction_person"], - "subtracts": null, - "hidden_input": false - }, - "mt_disability_income_exclusion_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_disability_income_exclusion_person", - "label": "Montana disability income exclusion for each person", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.subtractions.disability.mt_disability_income_exclusion_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_disability_income_exclusion": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_disability_income_exclusion", - "label": "Montana disability income exclusion", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.subtractions.disability.mt_disability_income_exclusion", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["mt_disability_income_exclusion_person"], - "subtracts": null, - "hidden_input": false - }, - "mt_disability_income_exclusion_eligible_person": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "mt_disability_income_exclusion_eligible_person", - "label": "Montana disability income exclusion eligible person", - "category": null, - "unit": null, - "moduleName": "gov.states.mt.tax.income.subtractions.disability.mt_disability_income_exclusion_eligible_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_old_age_subtraction": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_old_age_subtraction", - "label": "Montana old age subtraction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.subtractions.old_age.mt_old_age_subtraction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_income_tax", - "label": "Montana income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.base.mt_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_taxable_social_security": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_taxable_social_security", - "label": "Montana taxable social security benefits", - "category": null, - "unit": null, - "moduleName": "gov.states.mt.tax.income.base.mt_taxable_social_security", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_applicable_ald_deductions": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_applicable_ald_deductions", - "label": "Montana applicable above-the-line deductions ", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.base.mt_applicable_ald_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_withheld_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_withheld_income_tax", - "label": "Montana withheld income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.base.mt_withheld_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_agi": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_agi", - "label": "Montana Adjusted Gross Income for each individual", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.base.mt_agi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_additions": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_additions", - "label": "Montana additions to federal adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.additions.mt_additions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.mt.tax.income.additions.additions", - "subtracts": null, - "hidden_input": false - }, - "mt_income_tax_joint": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_income_tax_joint", - "label": "Montana income tax when married couples are filing jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.tax_calculation.mt_income_tax_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["mt_income_tax_before_refundable_credits_joint"], - "subtracts": ["mt_refundable_credits"], - "hidden_input": false - }, - "mt_regular_income_tax_indiv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_regular_income_tax_indiv", - "label": "Montana income (subtracting capital gains before 2024) tax before refundable credits, when married couples file separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.tax_calculation.mt_regular_income_tax_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_income_tax_before_non_refundable_credits_indiv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_income_tax_before_non_refundable_credits_indiv", - "label": "Montana income tax before refundable credits when married couples file separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.tax_calculation.mt_income_tax_before_non_refundable_credits_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["mt_capital_gains_tax_indiv", "mt_regular_income_tax_indiv"], - "subtracts": null, - "hidden_input": false - }, - "mt_refundable_credits_before_renter_credit": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_refundable_credits_before_renter_credit", - "label": "Montana refundable credits before adding the elderly homeowner or renter credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.tax_calculation.mt_refundable_credits_before_renter_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.mt.tax.income.credits.refundable", - "subtracts": null, - "hidden_input": false - }, - "mt_income_tax_indiv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_income_tax_indiv", - "label": "Montana income tax when married couples are filing separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.tax_calculation.mt_income_tax_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_non_refundable_credits": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_non_refundable_credits", - "label": "Montana refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.tax_calculation.mt_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.mt.tax.income.credits.non_refundable", - "subtracts": null, - "hidden_input": false - }, - "mt_taxable_income_indiv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_taxable_income_indiv", - "label": "Montana taxable income when married couples are filing separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.tax_calculation.mt_taxable_income_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_income_tax_before_non_refundable_credits_joint": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_income_tax_before_non_refundable_credits_joint", - "label": "Montana income tax before refundable credits when married couples file jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.tax_calculation.mt_income_tax_before_non_refundable_credits_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["mt_capital_gains_tax_joint", "mt_regular_income_tax_joint"], - "subtracts": null, - "hidden_input": false - }, - "mt_income_tax_before_refundable_credits_joint": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_income_tax_before_refundable_credits_joint", - "label": "Montana income tax before refundable credits when married couples are filing jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.tax_calculation.mt_income_tax_before_refundable_credits_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_regular_income_tax_joint": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_regular_income_tax_joint", - "label": "Montana income (subtracting capital gains since 2024) tax before refundable credits, when married couples file separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.tax_calculation.mt_regular_income_tax_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_refundable_credits": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_refundable_credits", - "label": "Montana refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.tax_calculation.mt_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "mt_refundable_credits_before_renter_credit", - "mt_elderly_homeowner_or_renter_credit" - ], - "subtracts": null, - "hidden_input": false - }, - "mt_income_tax_before_refundable_credits_indiv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_income_tax_before_refundable_credits_indiv", - "label": "Montana income tax before refundable credits when married couples are filing separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.tax_calculation.mt_income_tax_before_refundable_credits_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_taxable_income_joint": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_taxable_income_joint", - "label": "Montana taxable income when married couples file jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.tax_calculation.mt_taxable_income_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_pre_dependent_exemption_taxable_income_indiv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_pre_dependent_exemption_taxable_income_indiv", - "label": "Montana taxable income before the dependent exemption when married couples are filing separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.tax_calculation.mt_pre_dependent_exemption_taxable_income_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_income_tax_before_refundable_credits_unit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_income_tax_before_refundable_credits_unit", - "label": "Montana income tax before refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.tax_calculation.mt_income_tax_before_refundable_credits_unit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_deductions_indiv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_deductions_indiv", - "label": "The total amount of Montana deductions and exemptions when married filing separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.deductions.mt_deductions_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_child_dependent_care_expense_deduction_eligible_child": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "mt_child_dependent_care_expense_deduction_eligible_child", - "label": "Eligible child for the Montana child dependent care expense deduction", - "category": null, - "unit": null, - "moduleName": "gov.states.mt.tax.income.deductions.cdcc.mt_child_dependent_care_expense_deduction_eligibile_child", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_child_dependent_care_expense_deduction_eligible_children": { - "documentation": null, - "entity": "tax_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "mt_child_dependent_care_expense_deduction_eligible_children", - "label": "Eligible children for the Montana child dependent care expense deduction ", - "category": null, - "unit": null, - "moduleName": "gov.states.mt.tax.income.deductions.cdcc.mt_child_dependent_care_expense_deduction_eligible_children", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["mt_child_dependent_care_expense_deduction_eligible_child"], - "subtracts": null, - "hidden_input": false - }, - "mt_child_dependent_care_expense_deduction": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_child_dependent_care_expense_deduction", - "label": "Montana child dependent care expense deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.deductions.cdcc.mt_child_dependent_care_expense_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_federal_income_tax_deduction_indiv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_federal_income_tax_deduction_indiv", - "label": "Montana federal income tax deduction when married couples are filing separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.deductions.itemized.federal_tax.mt_federal_income_tax_deduction_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_federal_income_tax_deduction_unit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_federal_income_tax_deduction_unit", - "label": "Montana federal income tax deduction for the entire tax unit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.deductions.itemized.federal_tax.mt_federal_income_tax_deduction_unit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_salt_deduction": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_salt_deduction", - "label": "Montana state and local tax deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.deductions.itemized.salt.mt_salt_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_misc_deductions": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_misc_deductions", - "label": "Montana miscellaneous deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.deductions.itemized.general.mt_misc_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.mt.tax.income.deductions.itemized.misc_deductions", - "subtracts": null, - "hidden_input": false - }, - "mt_itemized_deductions_indiv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_itemized_deductions_indiv", - "label": "Montana itemized deductions when married couples are filing separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.deductions.itemized.general.mt_itemized_deductions_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_itemized_deductions_joint": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_itemized_deductions_joint", - "label": "Montana itemized deductions when married couples are filing jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.deductions.itemized.general.mt_itemized_deductions_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_medical_expense_deduction_joint": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_medical_expense_deduction_joint", - "label": "Montana medical expense deduction when married couples are filing jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.deductions.itemized.medical.mt_medical_expense_deduction_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_medical_expense_deduction_indiv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_medical_expense_deduction_indiv", - "label": "Montana medical expense deduction when married couples are filing separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.deductions.itemized.medical.mt_medical_expense_deduction_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_standard_deduction_joint": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_standard_deduction_joint", - "label": "Montana standard deduction when married couples are filing jointly", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.deductions.standard.mt_standard_deduction_joint", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_standard_deduction_indiv": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "mt_standard_deduction_indiv", - "label": "Montana standard deduction when married couples are filing separately", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.mt.tax.income.deductions.standard.mt_standard_deduction_indiv", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "mt_tax_unit_itemizes": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "mt_tax_unit_itemizes", - "label": "Whether the tax unit in Montana itemizes the deductions when married filing separately", - "category": null, - "unit": null, - "moduleName": "gov.states.mt.tax.income.deductions.general.mt_tax_unit_itemizes", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nm_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nm_income_tax", - "label": "New Mexico income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nm.tax.income.nm_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["nm_income_tax_before_refundable_credits"], - "subtracts": ["nm_refundable_credits"], - "hidden_input": false - }, - "nm_other_deductions_and_exemptions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nm_other_deductions_and_exemptions", - "label": "New Mexico other income deductions and exemptions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nm.tax.income.nm_other_deductions_and_exemptions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.nm.tax.income.other_deductions_and_exemptions", - "subtracts": null, - "hidden_input": false - }, - "nm_taxable_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nm_taxable_income", - "label": "New Mexico taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nm.tax.income.nm_taxable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nm_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nm_refundable_credits", - "label": "New Mexico refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nm.tax.income.nm_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.nm.tax.income.credits.refundable", - "subtracts": null, - "hidden_input": false - }, - "nm_income_tax_before_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nm_income_tax_before_refundable_credits", - "label": "New Mexico income tax before refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nm.tax.income.nm_income_tax_before_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nm_income_tax_before_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nm_income_tax_before_non_refundable_credits", - "label": "New Mexico income tax before non-refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nm.tax.income.nm_income_tax_before_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nm_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nm_non_refundable_credits", - "label": "New Mexico non-refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nm.tax.income.nm_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nm_additions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nm_additions", - "label": "New Mexico additions to federal AGI", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nm.tax.income.nm_additions", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nm_modified_gross_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nm_modified_gross_income", - "label": "New Mexico modified gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nm.tax.income.nm_modified_gross_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.nm.tax.income.modified_gross_income", - "subtracts": null, - "hidden_input": false - }, - "nm_withheld_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "nm_withheld_income_tax", - "label": "New Mexico withheld income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nm.tax.income.nm_withheld_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nm_2021_income_rebate": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nm_2021_income_rebate", - "label": "New Mexico 2021 income tax rebate", - "category": null, - "unit": null, - "moduleName": "gov.states.nm.tax.income.rebates.2021_rebate.nm_2021_income_rebate", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nm_additional_2021_income_rebate": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nm_additional_2021_income_rebate", - "label": "New Mexico additional 2021 income tax rebate", - "category": null, - "unit": null, - "moduleName": "gov.states.nm.tax.income.rebates.2021_rebate.nm_additional_2021_income_rebate", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nm_supplemental_2021_income_rebate": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nm_supplemental_2021_income_rebate", - "label": "New Mexico supplemental 2021 income tax rebate", - "category": null, - "unit": null, - "moduleName": "gov.states.nm.tax.income.rebates.2021_rebate.nm_supplemental_2021_income_rebate", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nm_property_tax_rebate": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nm_property_tax_rebate", - "label": "New Mexico property tax rebate", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nm.tax.income.rebates.property_tax_rebate.nm_property_tax_rebate", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nm_property_tax_rebate_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "nm_property_tax_rebate_eligible", - "label": "Eligible for the New Mexico property tax rebate", - "category": null, - "unit": null, - "moduleName": "gov.states.nm.tax.income.rebates.property_tax_rebate.nm_property_tax_rebate_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nm_low_income_comprehensive_tax_rebate": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nm_low_income_comprehensive_tax_rebate", - "label": "New Mexico low income comprehensive tax rebate", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nm.tax.income.rebates.low_income_comprehensive.nm_low_income_comprehensive_tax_rebate", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nm_low_income_comprehensive_tax_rebate_exemptions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nm_low_income_comprehensive_tax_rebate_exemptions", - "label": "New Mexico low income comprehensive tax rebate exemptions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nm.tax.income.rebates.low_income_comprehensive.nm_low_income_comprehensive_tax_rebate_exemptions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nm_medical_expense_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nm_medical_expense_credit", - "label": "New Mexico unreimbursed medical expense care credit", - "category": null, - "unit": null, - "moduleName": "gov.states.nm.tax.income.credits.nm_medical_expense_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nm_ctc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nm_ctc", - "label": "New Mexico child income tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nm.tax.income.credits.nm_ctc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nm_eitc_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "nm_eitc_eligible", - "label": "Eligible for New Mexico EITC", - "category": null, - "unit": null, - "moduleName": "gov.states.nm.tax.income.credits.eitc.nm_eitc_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nm_eitc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nm_eitc", - "label": "New Mexico EITC", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nm.tax.income.credits.eitc.nm_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nm_eitc_demographic_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "nm_eitc_demographic_eligible", - "label": "Meets demographic eligibility for New Mexico EITC", - "category": null, - "unit": null, - "moduleName": "gov.states.nm.tax.income.credits.eitc.nm_eitc_demographic_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nm_cdcc_eligible_child": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "nm_cdcc_eligible_child", - "label": "Eligible child for the New Mexico dependent child day care credit", - "category": null, - "unit": null, - "moduleName": "gov.states.nm.tax.income.credits.cdcc.nm_cdcc_eligible_child", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nm_cdcc_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "nm_cdcc_eligible", - "label": "Eligible household for the New Mexico dependent child day care credit", - "category": null, - "unit": null, - "moduleName": "gov.states.nm.tax.income.credits.cdcc.nm_cdcc_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nm_cdcc_max_amount": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nm_cdcc_max_amount", - "label": "New Mexico maximum credit for dependent child day care credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nm.tax.income.credits.cdcc.nm_cdcc_max_amount", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nm_cdcc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nm_cdcc", - "label": "New Mexico dependent child day care credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nm.tax.income.credits.cdcc.nm_cdcc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nm_social_security_income_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nm_social_security_income_exemption", - "label": "New Mexico social security income exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nm.tax.income.exemptions.nm_social_security_income_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nm_low_and_middle_income_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nm_low_and_middle_income_exemption", - "label": "New Mexico low- and middle-income exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nm.tax.income.exemptions.nm_low_and_middle_income_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nm_aged_blind_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nm_aged_blind_exemption", - "label": "New Mexico aged and blind exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nm.tax.income.exemptions.nm_blind_and_aged_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nm_hundred_year_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nm_hundred_year_exemption", - "label": "New Mexico hundred year exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nm.tax.income.exemptions.nm_hundred_year_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nm_medical_expense_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nm_medical_expense_exemption", - "label": "New Mexico unreimbursed medical expense care exemption", - "category": null, - "unit": null, - "moduleName": "gov.states.nm.tax.income.exemptions.nm_medical_expense_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nm_exemptions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nm_exemptions", - "label": "New Mexico income exemptions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nm.tax.income.exemptions.nm_exemptions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.nm.tax.income.exemptions.exemptions", - "subtracts": null, - "hidden_input": false - }, - "nm_armed_forces_retirement_pay_exemption_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "nm_armed_forces_retirement_pay_exemption_person", - "label": "New Mexico armed forces retirement pay exemption per person ", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nm.tax.income.exemptions.nm_armed_forces_retirement_pay_exemption_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nm_deductions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nm_deductions", - "label": "New Mexico income deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nm.tax.income.deductions.nm_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nm_medical_care_expense_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nm_medical_care_expense_deduction", - "label": "New Mexico medical care expense deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nm.tax.income.deductions.nm_medical_care_expense_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nm_net_capital_gains_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nm_net_capital_gains_deduction", - "label": "New Mexico net capital gain deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nm.tax.income.deductions.nm_net_capital_gains_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nm_salt_add_back": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nm_salt_add_back", - "label": "New Mexico salt addback", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nm.tax.income.deductions.nm_salt_add_back", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nm_deduction_for_certain_dependents": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "nm_deduction_for_certain_dependents", - "label": "New Mexico deduction for certain dependents", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.nm.tax.income.deductions.certain_dependents.nm_deduction_for_certain_dependents", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "nm_deduction_for_certain_dependents_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "nm_deduction_for_certain_dependents_eligible", - "label": "Eligibility for New Mexico deduction for certain dependents", - "category": null, - "unit": null, - "moduleName": "gov.states.nm.tax.income.deductions.certain_dependents.nm_deduction_for_certain_dependents_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "md_taxable_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "md_taxable_income", - "label": "MD taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tax.income.md_taxable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "md_withheld_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "md_withheld_income_tax", - "label": "Maryland withheld income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tax.income.md_withheld_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "md_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "md_income_tax", - "label": "MD income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tax.income.md_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["md_income_tax_before_refundable_credits"], - "subtracts": ["md_refundable_credits"], - "hidden_input": false - }, - "md_income_tax_before_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "md_income_tax_before_refundable_credits", - "label": "MD income tax after non-refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tax.income.md_income_tax_before_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "md_income_tax_before_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "md_income_tax_before_credits", - "label": "MD income tax before credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tax.income.md_income_tax_before_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "md_agi": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "md_agi", - "label": "MD AGI", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tax.income.agi.md_agi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "md_total_subtractions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "md_total_subtractions", - "label": "MD total subtractions from AGI", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tax.income.agi.subtractions.md_total_subtractions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.md.tax.income.agi.subtractions.sources", - "subtracts": null, - "hidden_input": false - }, - "md_two_income_subtraction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "md_two_income_subtraction", - "label": "MD two-income married couple subtraction from AGI", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tax.income.agi.subtractions.md_two_income_subtraction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "md_socsec_subtraction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "md_socsec_subtraction", - "label": "MD social security subtraction from AGI", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tax.income.agi.subtractions.md_socsec_subtraction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["md_socsec_subtraction_amount"], - "subtracts": null, - "hidden_input": false - }, - "md_socsec_subtraction_amount": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "md_socsec_subtraction_amount", - "label": "MD social security subtraction from AGI", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tax.income.agi.subtractions.md_socsec_subtraction_amount", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["taxable_social_security"], - "subtracts": null, - "hidden_input": false - }, - "md_pension_subtraction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "md_pension_subtraction", - "label": "MD pension subtraction from AGI", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tax.income.agi.subtractions.md_pension_subtraction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["md_pension_subtraction_amount"], - "subtracts": null, - "hidden_input": false - }, - "md_dependent_care_subtraction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "md_dependent_care_subtraction", - "label": "MD depdendent care subtraction from AGI", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tax.income.agi.subtractions.md_dependent_care_subtraction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "md_pension_subtraction_amount": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "md_pension_subtraction_amount", - "label": "MD pension subtraction from AGI", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tax.income.agi.subtractions.md_pension_subtraction_amount", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "md_hundred_year_subtraction_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "md_hundred_year_subtraction_person", - "label": "Maryland hundred year subtraction per person", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tax.income.agi.subtractions.hundred_year.md_hundred_year_subtraction_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "md_hundred_year_subtraction_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "md_hundred_year_subtraction_eligible", - "label": "Eligible for the Maryland hundred year subtraction", - "category": null, - "unit": null, - "moduleName": "gov.states.md.tax.income.agi.subtractions.hundred_year.md_hundred_year_subtraction_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "md_hundred_year_subtraction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "md_hundred_year_subtraction", - "label": "Maryland hundred year subtraction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tax.income.agi.subtractions.hundred_year.md_hundred_year_subtraction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["md_hundred_year_subtraction_person"], - "subtracts": null, - "hidden_input": false - }, - "md_total_additions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "md_total_additions", - "label": "MD total additions to AGI", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tax.income.agi.additions.md_total_additions", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "md_tax_unit_earned_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "md_tax_unit_earned_income", - "label": "MD tax unit earned income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tax.income.income_sources.md_tax_unit_earned_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "md_non_refundable_credits": { - "documentation": "Maryland non-refundable tax credits", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "md_non_refundable_credits", - "label": "MD non-refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tax.income.credits.md_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.md.tax.income.credits.non_refundable", - "subtracts": null, - "hidden_input": false - }, - "md_refundable_credits": { - "documentation": "Maryland refundable tax credits", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "md_refundable_credits", - "label": "MD refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tax.income.credits.md_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.md.tax.income.credits.refundable", - "subtracts": null, - "hidden_input": false - }, - "md_qualifies_for_unmarried_childless_eitc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "md_qualifies_for_unmarried_childless_eitc", - "label": "Qualifies for the MD unmarried childless EITC", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tax.income.credits.eitc.md_qualifies_for_unmarried_childless_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "federal_eitc_without_age_minimum": { - "documentation": "The federal EITC with the minimum age condition ignored.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "federal_eitc_without_age_minimum", - "label": "Federal EITC without age minimum", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tax.income.credits.eitc.federal_eitc_without_age_minimum", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "md_eitc": { - "documentation": "Refundable and non-refundable Maryland EITC", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "md_eitc", - "label": "MD total EITC", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tax.income.credits.eitc.md_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["md_non_refundable_eitc", "md_refundable_eitc"], - "subtracts": null, - "hidden_input": false - }, - "md_married_or_has_child_non_refundable_eitc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "md_married_or_has_child_non_refundable_eitc", - "label": "Maryland non-refundable EITC for filers who are married or have qualifying child", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tax.income.credits.eitc.non_refundable.md_married_or_has_child_non_refundable_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "md_non_refundable_eitc": { - "documentation": "Non-refundable EITC credit reducing MD State income tax.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "md_non_refundable_eitc", - "label": "MD EITC non-refundable State tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tax.income.credits.eitc.non_refundable.md_non_refundable_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "md_married_or_has_child_non_refundable_eitc", - "md_unmarried_childless_non_refundable_eitc" - ], - "subtracts": null, - "hidden_input": false - }, - "md_unmarried_childless_non_refundable_eitc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "md_unmarried_childless_non_refundable_eitc", - "label": "Maryland unmarried childless non-refundable EITC", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tax.income.credits.eitc.non_refundable.md_unmarried_childless_non_refundable_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "md_refundable_eitc": { - "documentation": "Refundable EITC credit reducing MD State income tax.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "md_refundable_eitc", - "label": "MD EITC refundable State tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tax.income.credits.eitc.refundable.md_refundable_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "md_married_or_has_child_refundable_eitc", - "md_unmarried_childless_refundable_eitc" - ], - "subtracts": null, - "hidden_input": false - }, - "md_married_or_has_child_refundable_eitc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "md_married_or_has_child_refundable_eitc", - "label": "Maryland refundable EITC for filers who are married or have qualifying child", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tax.income.credits.eitc.refundable.md_married_or_has_child_refundable_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "md_unmarried_childless_refundable_eitc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "md_unmarried_childless_refundable_eitc", - "label": "Maryland unmarried childless refundable EITC", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tax.income.credits.eitc.refundable.md_unmarried_childless_refundable_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_eligible_md_poverty_line_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_eligible_md_poverty_line_credit", - "label": "Eligible for MD Poverty Line Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tax.income.credits.poverty_line.is_eligible_md_poverty_line_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "md_poverty_line_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "md_poverty_line_credit", - "label": "MD Poverty Line Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tax.income.credits.poverty_line.md_poverty_line_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "md_senior_tax_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "md_senior_tax_credit", - "label": "Maryland Senior Tax Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tax.income.credits.senior_tax.md_senior_tax_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "md_senior_tax_credit_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "md_senior_tax_credit_eligible", - "label": "Eligible for the Maryland Senior Tax Credit", - "category": null, - "unit": null, - "moduleName": "gov.states.md.tax.income.credits.senior_tax.md_senior_tax_credit_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "md_ctc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "md_ctc", - "label": "Maryland Child Tax Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tax.income.credits.ctc.md_ctc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "md_ctc_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "md_ctc_eligible", - "label": "Eligible for the Maryland Child Tax Credit", - "category": null, - "unit": null, - "moduleName": "gov.states.md.tax.income.credits.ctc.md_ctc_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "md_refundable_cdcc": { - "documentation": "Maryland refundable Child and Dependent Care Tax Credit", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "md_refundable_cdcc", - "label": "MD refundable CDCC", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tax.income.credits.cdcc.md_refundable_cdcc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "md_cdcc": { - "documentation": "Maryland Child and Dependent Care Tax Credit", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "md_cdcc", - "label": "MD CDCC", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tax.income.credits.cdcc.md_cdcc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "md_aged_blind_exemptions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "md_aged_blind_exemptions", - "label": "MD aged blind exemptions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tax.income.exemptions.md_aged_blind_exemptions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["md_aged_dependent_exemption", "md_aged_exemption", "md_blind_exemption"], - "subtracts": null, - "hidden_input": false - }, - "md_blind_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "md_blind_exemption", - "label": "MD blind exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tax.income.exemptions.md_blind_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "md_exemptions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "md_exemptions", - "label": "MD exemptions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tax.income.exemptions.md_exemptions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["md_total_personal_exemptions", "md_aged_blind_exemptions"], - "subtracts": null, - "hidden_input": false - }, - "md_aged_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "md_aged_exemption", - "label": "MD aged exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tax.income.exemptions.md_aged_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "md_personal_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "md_personal_exemption", - "label": "MD value per personal exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tax.income.exemptions.md_personal_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "md_aged_dependent_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "md_aged_dependent_exemption", - "label": "MD aged dependent exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tax.income.exemptions.md_aged_dependent_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "md_total_personal_exemptions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "md_total_personal_exemptions", - "label": "MD total personal exemptions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tax.income.exemptions.md_total_personal_exemptions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "md_capital_gains_surtax_applies": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "md_capital_gains_surtax_applies", - "label": "Maryland capital gains surtax applies", - "category": null, - "unit": null, - "moduleName": "gov.states.md.tax.income.capital_gains.md_capital_gains_surtax_applies", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "md_capital_gains_surtax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "md_capital_gains_surtax", - "label": "Maryland capital gains surtax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tax.income.capital_gains.md_capital_gains_surtax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "md_local_income_tax_before_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "md_local_income_tax_before_credits", - "label": "MD local income tax before credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tax.income.local.md_local_income_tax_before_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "md_itemized_deductions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "md_itemized_deductions", - "label": "Maryland itemized deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tax.income.deductions.md_itemized_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "md_standard_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "md_standard_deduction", - "label": "MD standard deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tax.income.deductions.md_standard_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "md_deductions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "md_deductions", - "label": "MD deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tax.income.deductions.md_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "md_tanf_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "md_tanf_eligible", - "label": "Maryland TANF eligible", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tanf.md_tanf_eligible", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "md_tanf_maximum_benefit": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "md_tanf_maximum_benefit", - "label": "Maryland TANF maximum benefit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tanf.md_tanf_maximum_benefit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "md_tanf_count_children": { - "documentation": null, - "entity": "spm_unit", - "valueType": "int", - "definitionPeriod": "year", - "name": "md_tanf_count_children", - "label": "Maryland TANF number of children", - "category": null, - "unit": null, - "moduleName": "gov.states.md.tanf.md_tanf_count_children", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "is_child", - "subtracts": null, - "hidden_input": false - }, - "md_tanf_gross_earned_income_deduction": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "md_tanf_gross_earned_income_deduction", - "label": "Maryland TANF earned income deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.md.tanf.income.earned.md_tanf_gross_earned_income_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "md_snap_elderly_present": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "md_snap_elderly_present", - "label": "Elderly person is present for the Maryland SNAP minimum allotment", - "category": null, - "unit": null, - "moduleName": "gov.states.md.usda.snap.min_allotment.md_snap_elderly_present", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "md_snap_is_elderly": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "md_snap_is_elderly", - "label": "Is an elderly person for Maryland SNAP minimum allotment", - "category": null, - "unit": null, - "moduleName": "gov.states.md.usda.snap.min_allotment.md_snap_is_elderly", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ak_permanent_fund_dividend": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ak_permanent_fund_dividend", - "label": "Alaska Permanent Fund Dividend", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ak.dor.ak_permanent_fund_dividend", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["gov.states.ak.dor.permanent_fund_dividend"], - "subtracts": null, - "hidden_input": false - }, - "ak_energy_relief": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ak_energy_relief", - "label": "Alaska One Time Energy Relief", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.ak.dor.ak_energy_relief", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["gov.states.ak.dor.energy_relief"], - "subtracts": null, - "hidden_input": false - }, - "la_income_tax": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "la_income_tax", - "label": "Louisiana income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.la.tax.income.la_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["la_income_tax_before_refundable_credits"], - "subtracts": ["la_refundable_credits"], - "hidden_input": false - }, - "la_agi": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "la_agi", - "label": "Louisiana adjusted gross income income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.la.tax.income.la_agi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "la_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "la_refundable_credits", - "label": "Louisiana refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.la.tax.income.la_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.la.tax.income.credits.refundable", - "subtracts": null, - "hidden_input": false - }, - "la_income_tax_before_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "la_income_tax_before_refundable_credits", - "label": "Louisiana income tax before refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.la.tax.income.la_income_tax_before_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "la_withheld_income_tax": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "la_withheld_income_tax", - "label": "Louisiana withheld income tax", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.la.tax.income.la_withheld_income_tax", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "la_income_tax_before_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "la_income_tax_before_non_refundable_credits", - "label": "Louisiana income tax before non-refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.la.tax.income.la_income_tax_before_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "la_taxable_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "la_taxable_income", - "label": "Louisiana taxable income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.la.tax.income.la_taxable_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "la_non_refundable_credits": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "la_non_refundable_credits", - "label": "Louisiana non-refundable credits", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.la.tax.income.la_non_refundable_credits", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": "gov.states.la.tax.income.credits.non_refundable", - "subtracts": null, - "hidden_input": false - }, - "la_disability_income_exemption_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "la_disability_income_exemption_person", - "label": "Louisiana disability income exemption for each person", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.la.tax.income.exempt_income.la_disability_income_exemption_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "la_agi_exempt_income": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "la_agi_exempt_income", - "label": "Louisiana income that is exempt from the adjusted gross income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.la.tax.income.exempt_income.la_agi_exempt_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "la_retirement_exemption_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "la_retirement_exemption_person", - "label": "Louisiana retirement exemption for each person", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.la.tax.income.exempt_income.la_retirement_exemption_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "la_military_pay_exclusion": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "la_military_pay_exclusion", - "label": "Louisiana military pay exclusion", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.la.tax.income.exempt_income.military_pay_exclusion.la_military_pay_exclusion", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "la_eitc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "la_eitc", - "label": "Louisiana Earned Income Tax Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.la.tax.income.credits.la_eitc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "la_school_readiness_credit_refundable": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "la_school_readiness_credit_refundable", - "label": "Louisiana refundable school readiness tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.la.tax.income.credits.school_readiness.la_school_readiness_credit_refundable", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["la_school_readiness_tax_credit"], - "subtracts": null, - "hidden_input": false - }, - "la_school_readiness_credit_eligible_child": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "la_school_readiness_credit_eligible_child", - "label": "Eligible child for the Louisiana school readiness tax credit", - "category": null, - "unit": null, - "moduleName": "gov.states.la.tax.income.credits.school_readiness.la_school_readiness_credit_eligible_child", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "la_school_readiness_credit_non_refundable": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "la_school_readiness_credit_non_refundable", - "label": "Louisiana non-refundable school readiness tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.la.tax.income.credits.school_readiness.la_school_readiness_credit_non_refundable", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["la_school_readiness_tax_credit"], - "subtracts": ["la_school_readiness_tax_credit_refundable"], - "hidden_input": false - }, - "la_quality_rating_of_child_care_facility": { - "documentation": null, - "entity": "person", - "valueType": "int", - "definitionPeriod": "year", - "name": "la_quality_rating_of_child_care_facility", - "label": "Quality rating of child care facility for the Louisiana school readiness tax credit", - "category": null, - "unit": null, - "moduleName": "gov.states.la.tax.income.credits.school_readiness.la_quality_rating_of_child_care_facility", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "la_school_readiness_credit_refundable_eligible": { - "documentation": null, - "entity": "tax_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "la_school_readiness_credit_refundable_eligible", - "label": "Louisiana refundable school readiness tax credit eligibility", - "category": null, - "unit": null, - "moduleName": "gov.states.la.tax.income.credits.school_readiness.la_school_readiness_credit_refundable_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "la_school_readiness_credit": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "la_school_readiness_credit", - "label": "Louisiana school readiness tax credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.la.tax.income.credits.school_readiness.la_school_readiness_tax_credit", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "la_non_refundable_cdcc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "la_non_refundable_cdcc", - "label": "Louisiana non-refundable Child and Dependent Care Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.la.tax.income.credits.cdcc.la_non_refundable_cdcc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "la_refundable_cdcc": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "la_refundable_cdcc", - "label": "Louisiana refundable Child and Dependent Care Credit", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.la.tax.income.credits.cdcc.la_refundable_cdcc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "la_exemptions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "la_exemptions", - "label": "Louisiana exemptions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.la.tax.income.exemptions.la_exemptions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": [ - "la_personal_exemption", - "la_blind_exemption", - "la_dependents_exemption", - "la_surviving_spouse_exemption", - "la_aged_exemption" - ], - "subtracts": null, - "hidden_input": false - }, - "la_surviving_spouse_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "la_surviving_spouse_exemption", - "label": "Louisiana qualifying surviving spouse exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.la.tax.income.exemptions.personal.la_widow_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "la_dependents_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "la_dependents_exemption", - "label": "Louisiana qualified dependents exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.la.tax.income.exemptions.personal.la_dependents_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "la_personal_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "la_personal_exemption", - "label": "Louisiana personal exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.la.tax.income.exemptions.personal.la_personal_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "la_aged_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "la_aged_exemption", - "label": "Louisiana aged exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.la.tax.income.exemptions.personal.la_aged_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "la_blind_exemption": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "la_blind_exemption", - "label": "Louisiana blind exemption", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.la.tax.income.exemptions.personal.blind.la_blind_exemption", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["la_blind_exemption_person"], - "subtracts": null, - "hidden_input": false - }, - "la_receives_blind_exemption": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "la_receives_blind_exemption", - "label": "Filer receives the Louisiana blind exemption over the subtraction", - "category": null, - "unit": null, - "moduleName": "gov.states.la.tax.income.exemptions.personal.blind.la_receives_blind_exemption", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": true, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "la_blind_exemption_person": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "la_blind_exemption_person", - "label": "Louisiana blind exemption for each individual", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.la.tax.income.exemptions.personal.blind.la_blind_exemption_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "la_standard_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "la_standard_deduction", - "label": "Louisiana standard deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.la.tax.income.deductions.la_standard_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "la_itemized_deductions": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "la_itemized_deductions", - "label": "Louisiana itemized deductions", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.la.tax.income.deductions.la_itemized_deductions", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "la_federal_tax_deduction": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "la_federal_tax_deduction", - "label": "Louisiana federal tax deduction", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.states.la.tax.income.deductions.la_federal_tax_deduction", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "hhs_smi": { - "documentation": "SPM unit's median income as defined by the Department of Health and Human Services, based on their state and size", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "hhs_smi", - "label": "State Median Income (HHS)", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.hhs.hhs_smi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "spm_unit_fpg": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "spm_unit_fpg", - "label": "SPM unit's federal poverty guideline", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.hhs.spm_unit_fpg", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_unit_fpg": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "tax_unit_fpg", - "label": "Tax unit's federal poverty guideline", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.hhs.tax_unit_fpg", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_medicare_eligible": { - "documentation": "CMS, Original Medicare (Part A and B) Eligibility and Enrollmenthttps://www.cms.gov/medicare/enrollment-renewal/health-plans/original-part-a-bAbove link includes the following text: Part A coverage begins the month the individual turns age 65", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_medicare_eligible", - "label": "Person is eligible for Medicare", - "category": null, - "unit": null, - "moduleName": "gov.hhs.medicare.eligibility.is_medicare_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "months_receiving_social_security_disability": { - "documentation": null, - "entity": "person", - "valueType": "int", - "definitionPeriod": "year", - "name": "months_receiving_social_security_disability", - "label": "Number of months person has received social security disability", - "category": null, - "unit": null, - "moduleName": "gov.hhs.medicare.eligibility.months_receiving_social_security_disability", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_chip_eligible_standard_pregnant_person": { - "documentation": "Determines if a pregnant person is eligible for the standard Children's Health Insurance Program", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_chip_eligible_standard_pregnant_person", - "label": "Pregnant person eligible for standard CHIP", - "category": null, - "unit": null, - "moduleName": "gov.hhs.chip.is_chip_eligible_standard_pregnant_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_chip_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_chip_eligible", - "label": "CHIP eligible", - "category": null, - "unit": null, - "moduleName": "gov.hhs.chip.is_chip_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "chip": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "chip", - "label": "CHIP", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.hhs.chip.chip", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["per_capita_chip"], - "subtracts": null, - "hidden_input": false - }, - "is_chip_eligible_pregnant": { - "documentation": "Determines if a pregnant person is eligible for the Children's Health Insurance Program through either the standard pregnant pathway or FCEP", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_chip_eligible_pregnant", - "label": "Pregnant person eligible for CHIP", - "category": null, - "unit": null, - "moduleName": "gov.hhs.chip.is_chip_eligible_pregnant", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_chip_fcep_eligible_person": { - "documentation": "Determines if a pregnant person is eligible for the Children's Health Insurance Program through the Family Coverage Extension Program", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_chip_fcep_eligible_person", - "label": "Pregnant person eligible for CHIP through FCEP", - "category": null, - "unit": null, - "moduleName": "gov.hhs.chip.is_chip_fcep_eligible_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "chip_category": { - "documentation": "Category under which a person is eligible for the Children's Health Insurance Program", - "entity": "person", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "chip_category", - "label": "CHIP category", - "category": null, - "unit": null, - "moduleName": "gov.hhs.chip.chip_category", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "NONE", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "CHILD", - "label": "Child" - }, - { - "value": "PREGNANT_STANDARD", - "label": "Pregnant - Standard" - }, - { - "value": "PREGNANT_FCEP", - "label": "Pregnant - FCEP" - }, - { - "value": "NONE", - "label": "None" - } - ] - }, - "per_capita_chip": { - "documentation": "Per-capita CHIP payment for this person's State.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "per_capita_chip", - "label": "Average CHIP payment", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.hhs.chip.per_capita_chip", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_chip_eligible_child": { - "documentation": "Determines if a child is eligible for the Children's Health Insurance Program", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_chip_eligible_child", - "label": "Child eligible for CHIP", - "category": null, - "unit": null, - "moduleName": "gov.hhs.chip.is_chip_eligible_child", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ccdf_age_group": { - "documentation": null, - "entity": "person", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "ccdf_age_group", - "label": "CCDF age group", - "category": null, - "unit": null, - "moduleName": "gov.hhs.ccdf.ccdf_age_group", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "INFANT", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "INFANT", - "label": "Infant" - }, - { - "value": "TODDLER", - "label": "Toddler" - }, - { - "value": "PRESCHOOLER", - "label": "Preschooler" - }, - { - "value": "SCHOOL_AGE", - "label": "School age" - } - ] - }, - "spm_unit_ccdf_subsidy": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "spm_unit_ccdf_subsidy", - "label": "SPM unit CCDF subsidy", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.hhs.ccdf.spm_unit_ccdf_subsidy", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_enrolled_in_ccdf": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_enrolled_in_ccdf", - "label": "CCDF enrollment status", - "category": null, - "unit": null, - "moduleName": "gov.hhs.ccdf.is_enrolled_in_ccdf", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_ccdf_initial_income_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_ccdf_initial_income_eligible", - "label": "Initial income eligibility for CCDF", - "category": null, - "unit": null, - "moduleName": "gov.hhs.ccdf.is_ccdf_initial_income_eligible", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ccdf_county_cluster": { - "documentation": null, - "entity": "household", - "valueType": "int", - "definitionPeriod": "year", - "name": "ccdf_county_cluster", - "label": "County cluster for CCDF", - "category": null, - "unit": null, - "moduleName": "gov.hhs.ccdf.ccdf_county_cluster", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ccdf_market_rate": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "ccdf_market_rate", - "label": "CCDF market rate", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.hhs.ccdf.ccdf_market_rate", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_ccdf_reason_for_care_eligible": { - "documentation": "Indicates whether child qualifies for CCDF based on parents meeting activity test or that he/she receives or needs protective services", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_ccdf_reason_for_care_eligible", - "label": "Reason-for-care eligibility for CCDF", - "category": null, - "unit": null, - "moduleName": "gov.hhs.ccdf.is_ccdf_reason_for_care_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "spm_unit_total_ccdf_copay": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "spm_unit_total_ccdf_copay", - "label": "SPM unit total CCDF copay", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.hhs.ccdf.spm_unit_total_ccdf_copay", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_ccdf_asset_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_ccdf_asset_eligible", - "label": "Asset eligibility for CCDF", - "category": null, - "unit": null, - "moduleName": "gov.hhs.ccdf.is_ccdf_asset_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_ccdf_age_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_ccdf_age_eligible", - "label": "Age eligibility for CCDF", - "category": null, - "unit": null, - "moduleName": "gov.hhs.ccdf.is_ccdf_age_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_ccdf_continuous_income_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_ccdf_continuous_income_eligible", - "label": "Continuous income eligibility for CCDF", - "category": null, - "unit": null, - "moduleName": "gov.hhs.ccdf.is_ccdf_continuous_income_eligible", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ccdf_income_to_smi_ratio": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ccdf_income_to_smi_ratio", - "label": "Income to SMI ratio", - "category": null, - "unit": null, - "moduleName": "gov.hhs.ccdf.ccdf_income_to_smi_ratio", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_ccdf_home_based": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_ccdf_home_based", - "label": "Whether CCDF care is home-based versus center-based", - "category": null, - "unit": null, - "moduleName": "gov.hhs.ccdf.is_ccdf_home_based", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ccdf_duration_of_care": { - "documentation": null, - "entity": "person", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "ccdf_duration_of_care", - "label": "Child care duration of care", - "category": null, - "unit": null, - "moduleName": "gov.hhs.ccdf.ccdf_duration_of_care", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "WEEKLY", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "WEEKLY", - "label": "Weekly" - }, - { - "value": "DAILY", - "label": "Daily" - }, - { - "value": "PART_DAY", - "label": "Part-Day" - }, - { - "value": "HOURLY", - "label": "Hourly" - } - ] - }, - "is_ccdf_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_ccdf_eligible", - "label": "Eligibility for CCDF", - "category": null, - "unit": null, - "moduleName": "gov.hhs.ccdf.is_ccdf_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "ccdf_income": { - "documentation": null, - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "ccdf_income", - "label": "Income", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.hhs.ccdf.ccdf_income", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["market_income"], - "subtracts": null, - "hidden_input": false - }, - "is_ccdf_income_eligible": { - "documentation": null, - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_ccdf_income_eligible", - "label": "Income eligibility for CCDF", - "category": null, - "unit": null, - "moduleName": "gov.hhs.ccdf.is_ccdf_income_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "meets_ccdf_activity_test": { - "documentation": "Indicates whether parent or parents meet activity test (working/in job training/in educational program)", - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "year", - "name": "meets_ccdf_activity_test", - "label": "Activity test for CCDF", - "category": null, - "unit": null, - "moduleName": "gov.hhs.ccdf.meets_ccdf_activity_test", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "head_start": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "head_start", - "label": "Amount of Head Start benefit", - "category": null, - "unit": null, - "moduleName": "gov.hhs.head_start.head_start", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_early_head_start_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_early_head_start_eligible", - "label": "Eligible person for the Early Head Start program", - "category": null, - "unit": null, - "moduleName": "gov.hhs.head_start.is_early_head_start_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "early_head_start": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "early_head_start", - "label": "Amount of Early Head Start benefit", - "category": null, - "unit": null, - "moduleName": "gov.hhs.head_start.early_head_start", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_head_start_categorically_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_head_start_categorically_eligible", - "label": "Early Head Start or Head Start program eligible", - "category": null, - "unit": null, - "moduleName": "gov.hhs.head_start.is_head_start_categorically_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_head_start_income_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_head_start_income_eligible", - "label": "Early Head Start or Head Start income eligible", - "category": null, - "unit": null, - "moduleName": "gov.hhs.head_start.is_head_start_income_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_head_start_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_head_start_eligible", - "label": "Eligible person for the Head Start program", - "category": null, - "unit": null, - "moduleName": "gov.hhs.head_start.is_head_start_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "medicaid_enrolled": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "medicaid_enrolled", - "label": "Medicaid enrolled", - "category": null, - "unit": null, - "moduleName": "gov.hhs.medicaid.medicaid_enrolled", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": ["takes_up_medicaid_if_eligible"], - "subtracts": null, - "hidden_input": false - }, - "takes_up_medicaid_if_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "takes_up_medicaid_if_eligible", - "label": "Whether a random eligible person unit does not enroll in Medicaid", - "category": null, - "unit": null, - "moduleName": "gov.hhs.medicaid.takes_up_medicaid_if_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "medicaid_cost": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "medicaid_cost", - "label": "Medicaid_cost", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.hhs.medicaid.medicaid_cost", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["medicaid_cost_if_enrolled"], - "subtracts": null, - "hidden_input": false - }, - "medicaid": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "medicaid", - "label": "Medicaid", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.hhs.medicaid.medicaid", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["medicaid_cost"], - "subtracts": null, - "hidden_input": false - }, - "medicaid_take_up_seed": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "medicaid_take_up_seed", - "label": "Randomly assigned seed for Medicaid take-up", - "category": null, - "unit": null, - "moduleName": "gov.hhs.medicaid.medicaid_take_up_seed", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tax_unit_medicaid_income_level": { - "documentation": "Medicaid/CHIP-related MAGI as fraction of federal poverty line.Documentation: 'Federal poverty level (FPL)' at the following URL:URL: https://www.healthcare.gov/glossary/federal-poverty-level-fpl/**Pregnant Women:** * Pregnant women are counted as themselves plus the number of children they are expecting to deliver when determining household size for Medicaid eligibility. * Sources: URL: https://www.sos.state.co.us/CCR/GenerateRulePdf.do?ruleVersionId=11618&fileName=10%20CCR%25202505-10%208.100 URL: https://www.cms.gov/marketplace/technical-assistance-resources/special-populations-pregnant-women.pdf", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "tax_unit_medicaid_income_level", - "label": "Medicaid/CHIP-related modified adjusted gross income (MAGI) level", - "category": null, - "unit": "/1", - "moduleName": "gov.hhs.medicaid.income.tax_unit_medicaid_income_level", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "medicaid_magi": { - "documentation": "Medicaid/CHIP/ACA-related modified AGI for this tax unit.", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "medicaid_magi", - "label": "Medicaid/CHIP/ACA-related Modified AGI", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.hhs.medicaid.income.medicaid_magi", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "medicaid_income_level": { - "documentation": "Modified AGI as a fraction of current-year federal poverty line.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "medicaid_income_level", - "label": "Medicaid/CHIP-related income level", - "category": null, - "unit": "/1", - "moduleName": "gov.hhs.medicaid.income.medicaid_income_level", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "medicaid_group": { - "documentation": null, - "entity": "person", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "medicaid_group", - "label": "Medicaid spending group", - "category": null, - "unit": null, - "moduleName": "gov.hhs.medicaid.costs.medicaid_group", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "NONE", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "CHILD", - "label": "Child" - }, - { - "value": "NON_EXPANSION_ADULT", - "label": "Non-Expansion Adult" - }, - { - "value": "EXPANSION_ADULT", - "label": "Expansion Adult" - }, - { - "value": "AGED_DISABLED", - "label": "Aged/Disabled" - }, - { - "value": "NONE", - "label": "None" - } - ] - }, - "medicaid_cost_if_enrolled": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "medicaid_cost_if_enrolled", - "label": "Per capita Medicaid cost by eligibility group & state", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.hhs.medicaid.costs.medicaid_cost_if_enrolled", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_medicaid_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_medicaid_eligible", - "label": "Eligible for Medicaid", - "category": null, - "unit": null, - "moduleName": "gov.hhs.medicaid.eligibility.is_medicaid_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "medicaid_work_requirement_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "medicaid_work_requirement_eligible", - "label": "Eligible person for Medicaid via work requirement", - "category": null, - "unit": null, - "moduleName": "gov.hhs.medicaid.eligibility.medicaid_work_requirement_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_optional_senior_or_disabled_income_eligible": { - "documentation": "True if the tax unit’s countable income—after the state-specific income disregard—is below the income limit that the state sets for its optional pathway for aged, blind, or disabled individuals who are not otherwise SSI-eligible.", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_optional_senior_or_disabled_income_eligible", - "label": "Income-eligibility for State’s optional Medicaid pathway for seniors or people with disabilities", - "category": null, - "unit": null, - "moduleName": "gov.hhs.medicaid.eligibility.categories.is_optional_senior_or_disabled_income_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_ssi_recipient_for_medicaid": { - "documentation": "Qualifies for Medicaid due to receiving SSI, or if in a 209(b) state, due to meeting that state's eligibility requirements.", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_ssi_recipient_for_medicaid", - "label": "SSI recipients", - "category": null, - "unit": null, - "moduleName": "gov.hhs.medicaid.eligibility.categories.is_ssi_recipient_for_medicaid", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_optional_senior_or_disabled_asset_eligible": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_optional_senior_or_disabled_asset_eligible", - "label": "Asset-eligibility for State’s optional Medicaid pathway for seniors or people with disabilities", - "category": null, - "unit": null, - "moduleName": "gov.hhs.medicaid.eligibility.categories.is_optional_senior_or_disabled_asset_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "medicaid_category": { - "documentation": null, - "entity": "person", - "valueType": "Enum", - "definitionPeriod": "year", - "name": "medicaid_category", - "label": "Medicaid category", - "category": null, - "unit": null, - "moduleName": "gov.hhs.medicaid.eligibility.categories.medicaid_category", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": "NONE", - "adds": null, - "subtracts": null, - "hidden_input": false, - "possibleValues": [ - { - "value": "INFANT", - "label": "Infant" - }, - { - "value": "YOUNG_CHILD", - "label": "Young child" - }, - { - "value": "OLDER_CHILD", - "label": "Older child" - }, - { - "value": "YOUNG_ADULT", - "label": "Young adult" - }, - { - "value": "ADULT", - "label": "Adult" - }, - { - "value": "PARENT", - "label": "Parent" - }, - { - "value": "PREGNANT", - "label": "Pregnant" - }, - { - "value": "SSI_RECIPIENT", - "label": "SSI recipient" - }, - { - "value": "SENIOR_OR_DISABLED", - "label": " Senior or disabled" - }, - { - "value": "NONE", - "label": "None" - } - ] - }, - "is_optional_senior_or_disabled_for_medicaid": { - "documentation": "Whether this person qualifies for Medicaid through the State's optional aged, blind, or disabled pathway (not otherwise SSI-eligible)", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_optional_senior_or_disabled_for_medicaid", - "label": "Seniors or disabled people not meeting SSI rules", - "category": null, - "unit": null, - "moduleName": "gov.hhs.medicaid.eligibility.categories.is_optional_senior_or_disabled_for_medicaid", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_parent_for_medicaid": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_parent_for_medicaid", - "label": "Parents", - "category": null, - "unit": null, - "moduleName": "gov.hhs.medicaid.eligibility.categories.parent.is_parent_for_medicaid", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_parent_for_medicaid_fc": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_parent_for_medicaid_fc", - "label": "Medicaid parent financial criteria", - "category": null, - "unit": null, - "moduleName": "gov.hhs.medicaid.eligibility.categories.parent.is_parent_for_medicaid_fc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_parent_for_medicaid_nfc": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_parent_for_medicaid_nfc", - "label": "Medicaid parent non-financial criteria", - "category": null, - "unit": null, - "moduleName": "gov.hhs.medicaid.eligibility.categories.parent.is_parent_for_medicaid_nfc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_young_adult_for_medicaid_nfc": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_young_adult_for_medicaid_nfc", - "label": "Medicaid young adult non-financial criteria", - "category": null, - "unit": null, - "moduleName": "gov.hhs.medicaid.eligibility.categories.young_adult.is_young_adult_for_medicaid_nfc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_young_adult_for_medicaid": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_young_adult_for_medicaid", - "label": "Young adults", - "category": null, - "unit": null, - "moduleName": "gov.hhs.medicaid.eligibility.categories.young_adult.is_young_adult_for_medicaid", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_young_adult_for_medicaid_fc": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_young_adult_for_medicaid_fc", - "label": "Medicaid young adult financial criteria", - "category": null, - "unit": null, - "moduleName": "gov.hhs.medicaid.eligibility.categories.young_adult.is_young_adult_for_medicaid_fc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_pregnant_for_medicaid_fc": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_pregnant_for_medicaid_fc", - "label": "Medicaid pregnant financial criteria", - "category": null, - "unit": null, - "moduleName": "gov.hhs.medicaid.eligibility.categories.pregnant.is_pregnant_for_medicaid_fc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_pregnant_for_medicaid_nfc": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_pregnant_for_medicaid_nfc", - "label": "Medicaid pregnant non-financial criteria", - "category": null, - "unit": null, - "moduleName": "gov.hhs.medicaid.eligibility.categories.pregnant.is_pregnant_for_medicaid_nfc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_pregnant_for_medicaid": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_pregnant_for_medicaid", - "label": "Pregnant people", - "category": null, - "unit": null, - "moduleName": "gov.hhs.medicaid.eligibility.categories.pregnant.is_pregnant_for_medicaid", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_adult_for_medicaid": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_adult_for_medicaid", - "label": "Working-age and childless adults", - "category": null, - "unit": null, - "moduleName": "gov.hhs.medicaid.eligibility.categories.adult.is_adult_for_medicaid", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_adult_for_medicaid_fc": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_adult_for_medicaid_fc", - "label": "Medicaid adult financial criteria", - "category": null, - "unit": null, - "moduleName": "gov.hhs.medicaid.eligibility.categories.adult.is_adult_for_medicaid_fc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_adult_for_medicaid_nfc": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_adult_for_medicaid_nfc", - "label": "Medicaid adult non-financial criteria", - "category": null, - "unit": null, - "moduleName": "gov.hhs.medicaid.eligibility.categories.adult.is_adult_for_medicaid_nfc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_in_medicaid_medically_needy_category": { - "documentation": "Whether this person is in a Medicaid category for which there is a medically needy pathway.", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_in_medicaid_medically_needy_category", - "label": "In Medicaid medically needy category", - "category": null, - "unit": null, - "moduleName": "gov.hhs.medicaid.eligibility.categories.medically_needy.is_in_medicaid_medically_needy_category", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_medically_needy_for_medicaid": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_medically_needy_for_medicaid", - "label": "Medically needy", - "category": null, - "unit": null, - "moduleName": "gov.hhs.medicaid.eligibility.categories.medically_needy.is_medically_needy_for_medicaid", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_older_child_for_medicaid_nfc": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_older_child_for_medicaid_nfc", - "label": "Medicaid older child non-financial criteria", - "category": null, - "unit": null, - "moduleName": "gov.hhs.medicaid.eligibility.categories.older_child.is_older_child_for_medicaid_nfc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_older_child_for_medicaid_fc": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_older_child_for_medicaid_fc", - "label": "Medicaid older child financial criteria", - "category": null, - "unit": null, - "moduleName": "gov.hhs.medicaid.eligibility.categories.older_child.is_older_child_for_medicaid_fc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_older_child_for_medicaid": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_older_child_for_medicaid", - "label": "Older children", - "category": null, - "unit": null, - "moduleName": "gov.hhs.medicaid.eligibility.categories.older_child.is_older_child_for_medicaid", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_infant_for_medicaid_nfc": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_infant_for_medicaid_nfc", - "label": "Medicaid infant non-financial criteria", - "category": null, - "unit": null, - "moduleName": "gov.hhs.medicaid.eligibility.categories.infant.is_infant_for_medicaid_nfc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_infant_for_medicaid": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_infant_for_medicaid", - "label": "Infants", - "category": null, - "unit": null, - "moduleName": "gov.hhs.medicaid.eligibility.categories.infant.is_infant_for_medicaid", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_infant_for_medicaid_fc": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_infant_for_medicaid_fc", - "label": "Medicaid infant financial criteria", - "category": null, - "unit": null, - "moduleName": "gov.hhs.medicaid.eligibility.categories.infant.is_infant_for_medicaid_fc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_young_child_for_medicaid_nfc": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_young_child_for_medicaid_nfc", - "label": "Medicaid young child non-financial criteria", - "category": null, - "unit": null, - "moduleName": "gov.hhs.medicaid.eligibility.categories.young_child.is_young_child_for_medicaid_nfc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_young_child_for_medicaid": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_young_child_for_medicaid", - "label": "Young children", - "category": null, - "unit": null, - "moduleName": "gov.hhs.medicaid.eligibility.categories.young_child.is_young_child_for_medicaid", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_young_child_for_medicaid_fc": { - "documentation": null, - "entity": "person", - "valueType": "bool", - "definitionPeriod": "year", - "name": "is_young_child_for_medicaid_fc", - "label": "Medicaid young child financial criteria", - "category": null, - "unit": null, - "moduleName": "gov.hhs.medicaid.eligibility.categories.young_child.is_young_child_for_medicaid_fc", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "meets_tanf_non_cash_gross_income_test": { - "documentation": "Income eligibility (gross income as a percent of the poverty line) for TANF non-cash benefit for SNAP BBCE", - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "meets_tanf_non_cash_gross_income_test", - "label": "Meets gross income test for TANF non-cash benefit", - "category": null, - "unit": null, - "moduleName": "gov.hhs.tanf.non_cash.meets_tanf_non_cash_gross_income_test", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_tanf_non_cash_hheod": { - "documentation": "Whether the household is considered elderly or disabled for TANF non-cash benefit for SNAP BBCE", - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "is_tanf_non_cash_hheod", - "label": "Elderly or disabled for TANF non-cash benefit", - "category": null, - "unit": null, - "moduleName": "gov.hhs.tanf.non_cash.is_tanf_non_cash_hheod", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "meets_tanf_non_cash_asset_test": { - "documentation": "Asset eligibility for TANF non-cash benefit for SNAP BBCE", - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "meets_tanf_non_cash_asset_test", - "label": "Meets asset test for TANF non-cash benefit", - "category": null, - "unit": null, - "moduleName": "gov.hhs.tanf.non_cash.meets_tanf_non_cash_asset_test", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_tanf_non_cash_eligible": { - "documentation": "Eligibility for TANF non-cash benefit for SNAP BBCE", - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "is_tanf_non_cash_eligible", - "label": "Eligibility for TANF non-cash benefit", - "category": null, - "unit": null, - "moduleName": "gov.hhs.tanf.non_cash.is_tanf_non_cash_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "meets_tanf_non_cash_net_income_test": { - "documentation": "Income eligibility (net income as a percent of the poverty line) for TANF non-cash benefit for SNAP BBCE", - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "meets_tanf_non_cash_net_income_test", - "label": "Meets net income test for TANF non-cash benefit", - "category": null, - "unit": null, - "moduleName": "gov.hhs.tanf.non_cash.meets_tanf_non_cash_net_income_test", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tanf_reported": { - "documentation": "Amount of Temporary Assistance for Needy Families benefit reported.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "tanf_reported", - "label": "Reported TANF", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.hhs.tanf.cash.tanf_reported", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tanf_person": { - "documentation": "Per-capita value of Temporary Assistance for Needy Families benefit.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "tanf_person", - "label": "Per-capita TANF", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.hhs.tanf.cash.tanf_person", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "tanf": { - "documentation": "Value of Temporary Assistance for Needy Families benefit received, summing all state-specific TANF programs.", - "entity": "spm_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "tanf", - "label": "TANF", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.hhs.tanf.cash.tanf", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_tanf_enrolled": { - "documentation": "Whether the familiy is currently enrolled in the Temporary Assistance for Needy Families program.", - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "is_tanf_enrolled", - "label": "Enrolled in TANF", - "category": null, - "unit": null, - "moduleName": "gov.hhs.tanf.cash.eligibility.is_tanf_enrolled", - "indexInModule": 0, - "isInputVariable": true, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_person_demographic_tanf_eligible": { - "documentation": "Whether this person meets the demographic requirements for TANF eligibility", - "entity": "person", - "valueType": "bool", - "definitionPeriod": "month", - "name": "is_person_demographic_tanf_eligible", - "label": "Person demographic eligibility for TANF", - "category": null, - "unit": null, - "moduleName": "gov.hhs.tanf.cash.eligibility.is_person_demographic_tanf_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "is_demographic_tanf_eligible": { - "documentation": "Whether any person in a family applying for the Temporary Assistance for Needy Families program meets demographic requirements.", - "entity": "spm_unit", - "valueType": "bool", - "definitionPeriod": "month", - "name": "is_demographic_tanf_eligible", - "label": "Demographic eligibility for TANF", - "category": null, - "unit": null, - "moduleName": "gov.hhs.tanf.cash.eligibility.is_demographic_tanf_eligible", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": false, - "adds": ["is_person_demographic_tanf_eligible"], - "subtracts": null, - "hidden_input": false - }, - "residential_efficiency_electrification_rebate": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "residential_efficiency_electrification_rebate", - "label": "Residential efficiency and electrification rebate", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.doe.residential_efficiency_electrification_rebate.residential_efficiency_electrification_rebate", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "capped_heat_pump_water_heater_rebate": { - "documentation": "Before total high efficiency electric home rebate cap", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "capped_heat_pump_water_heater_rebate", - "label": "Capped heat pump water heater rebate", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.doe.high_efficiency_electric_home_rebate.capped_heat_pump_water_heater_rebate", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "capped_electric_stove_cooktop_range_or_oven_rebate": { - "documentation": "Before total high efficiency electric home rebate cap", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "capped_electric_stove_cooktop_range_or_oven_rebate", - "label": "Capped electric stove cooktop range or oven rebate", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.doe.high_efficiency_electric_home_rebate.capped_electric_stove_cooktop_range_or_oven_rebate", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "capped_electric_wiring_rebate": { - "documentation": "Before total high efficiency electric home rebate cap", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "capped_electric_wiring_rebate", - "label": "Capped electric wiring rebate", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.doe.high_efficiency_electric_home_rebate.capped_electric_wiring_rebate", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "capped_electric_heat_pump_clothes_dryer_rebate": { - "documentation": "Before total high efficiency electric home rebate cap", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "capped_electric_heat_pump_clothes_dryer_rebate", - "label": "Capped electric heat pump clothes dryer rebate", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.doe.high_efficiency_electric_home_rebate.capped_electric_heat_pump_clothes_dryer_rebate", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "capped_insulation_air_sealing_ventilation_rebate": { - "documentation": "Before total high efficiency electric home rebate cap", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "capped_insulation_air_sealing_ventilation_rebate", - "label": "Capped insulation air sealing and ventilation rebate", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.doe.high_efficiency_electric_home_rebate.capped_insulation_air_sealing_ventilation_rebate", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "capped_electric_load_service_center_upgrade_rebate": { - "documentation": "Before total high efficiency electric home rebate cap", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "capped_electric_load_service_center_upgrade_rebate", - "label": "Capped electric load service center upgrade rebate", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.doe.high_efficiency_electric_home_rebate.capped_electric_load_service_center_upgrade_rebate", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "capped_heat_pump_rebate": { - "documentation": "Before total high efficiency electric home rebate cap", - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "capped_heat_pump_rebate", - "label": "Capped heat pump rebate", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.doe.high_efficiency_electric_home_rebate.capped_heat_pump_rebate", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "high_efficiency_electric_home_rebate_percent_covered": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "high_efficiency_electric_home_rebate_percent_covered", - "label": "Percent of expenditures covered by high electricity home rebate", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.doe.high_efficiency_electric_home_rebate.high_efficiency_electric_home_rebate_percent_covered", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "high_efficiency_electric_home_rebate": { - "documentation": null, - "entity": "tax_unit", - "valueType": "float", - "definitionPeriod": "year", - "name": "high_efficiency_electric_home_rebate", - "label": "High efficiency electric home rebate", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.doe.high_efficiency_electric_home_rebate.high_efficiency_electric_home_rebate", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "relative_capital_gains_mtr_change": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "relative_capital_gains_mtr_change", - "label": "relative change in capital gains tax rate", - "category": null, - "unit": "/1", - "moduleName": "gov.simulation.capital_gains_responses", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "capital_gains_elasticity": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "capital_gains_elasticity", - "label": "elasticity of capital gains realizations", - "category": null, - "unit": "/1", - "moduleName": "gov.simulation.capital_gains_responses", - "indexInModule": 1, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "capital_gains_behavioral_response": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "capital_gains_behavioral_response", - "label": "capital gains behavioral response", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.simulation.capital_gains_responses", - "indexInModule": 2, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "long_term_capital_gains_before_response": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "long_term_capital_gains_before_response", - "label": "capital gains before responses", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.simulation.capital_gains_responses", - "indexInModule": 3, - "isInputVariable": true, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "adult_index_cg": { - "documentation": null, - "entity": "person", - "valueType": "int", - "definitionPeriod": "year", - "name": "adult_index_cg", - "label": "index of adult in household, ranked by capital gains", - "category": null, - "unit": null, - "moduleName": "gov.simulation.capital_gains_responses", - "indexInModule": 4, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "marginal_tax_rate_on_capital_gains": { - "documentation": "Percent of marginal capital gains that do not increase household net income.", - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "marginal_tax_rate_on_capital_gains", - "label": "capital gains marginal tax rate", - "category": null, - "unit": "/1", - "moduleName": "gov.simulation.capital_gains_responses", - "indexInModule": 5, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "relative_wage_change": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "relative_wage_change", - "label": "relative wage change", - "category": null, - "unit": "/1", - "moduleName": "gov.simulation.labor_supply_response.relative_wage_change", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "relative_income_change": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "relative_income_change", - "label": "relative income change", - "category": null, - "unit": "/1", - "moduleName": "gov.simulation.labor_supply_response.relative_income_change", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "substitution_elasticity_lsr": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "substitution_elasticity_lsr", - "label": "substitution elasticity of labor supply response", - "category": null, - "unit": "/1", - "moduleName": "gov.simulation.labor_supply_response.substitution_elasticity_lsr", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "self_employment_income_behavioral_response": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "self_employment_income_behavioral_response", - "label": "self-employment income behavioral response", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.simulation.labor_supply_response.self_employment_income_behavioral_response", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["labor_supply_behavioral_response"], - "subtracts": ["employment_income_behavioral_response"], - "hidden_input": false - }, - "substitution_elasticity": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "substitution_elasticity", - "label": "substitution elasticity of labor supply", - "category": null, - "unit": "/1", - "moduleName": "gov.simulation.labor_supply_response.substitution_elasticity", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "labor_supply_behavioral_response": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "labor_supply_behavioral_response", - "label": "earnings-related labor supply change", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.simulation.labor_supply_response.labor_supply_behavioral_response", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "income_elasticity": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "income_elasticity", - "label": "income elasticity of labor supply", - "category": null, - "unit": "/1", - "moduleName": "gov.simulation.labor_supply_response.income_elasticity", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": ["gov.simulation.labor_supply_responses.elasticities.income"], - "subtracts": null, - "hidden_input": false - }, - "employment_income_behavioral_response": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "employment_income_behavioral_response", - "label": "employment income behavioral response", - "category": null, - "unit": "currency-USD", - "moduleName": "gov.simulation.labor_supply_response.employment_income_behavioral_response", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "income_elasticity_lsr": { - "documentation": null, - "entity": "person", - "valueType": "float", - "definitionPeriod": "year", - "name": "income_elasticity_lsr", - "label": "income elasticity of labor supply response", - "category": null, - "unit": "/1", - "moduleName": "gov.simulation.labor_supply_response.income_elasticity_lsr", - "indexInModule": 0, - "isInputVariable": false, - "defaultValue": 0, - "adds": null, - "subtracts": null, - "hidden_input": false - }, - "AL": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "AL", - "label": "In AL", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "AK": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "AK", - "label": "In AK", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "AZ": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "AZ", - "label": "In AZ", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "AR": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "AR", - "label": "In AR", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "CA": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "CA", - "label": "In CA", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "CO": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "CO", - "label": "In CO", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "CT": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "CT", - "label": "In CT", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "DC": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "DC", - "label": "In DC", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "DE": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "DE", - "label": "In DE", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "FL": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "FL", - "label": "In FL", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "GA": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "GA", - "label": "In GA", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "HI": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "HI", - "label": "In HI", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "ID": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ID", - "label": "In ID", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "IL": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "IL", - "label": "In IL", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "IN": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "IN", - "label": "In IN", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "IA": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "IA", - "label": "In IA", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "KS": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "KS", - "label": "In KS", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "KY": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "KY", - "label": "In KY", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "LA": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "LA", - "label": "In LA", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "ME": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ME", - "label": "In ME", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "MD": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "MD", - "label": "In MD", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "MA": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "MA", - "label": "In MA", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "MI": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "MI", - "label": "In MI", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "MN": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "MN", - "label": "In MN", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "MS": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "MS", - "label": "In MS", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "MO": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "MO", - "label": "In MO", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "MT": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "MT", - "label": "In MT", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "NE": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "NE", - "label": "In NE", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "NV": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "NV", - "label": "In NV", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "NH": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "NH", - "label": "In NH", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "NJ": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "NJ", - "label": "In NJ", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "NM": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "NM", - "label": "In NM", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "NY": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "NY", - "label": "In NY", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "NC": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "NC", - "label": "In NC", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "ND": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "ND", - "label": "In ND", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "OH": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "OH", - "label": "In OH", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "OK": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "OK", - "label": "In OK", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "OR": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "OR", - "label": "In OR", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "PA": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "PA", - "label": "In PA", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "RI": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "RI", - "label": "In RI", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "SC": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "SC", - "label": "In SC", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "SD": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "SD", - "label": "In SD", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "TN": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "TN", - "label": "In TN", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "TX": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "TX", - "label": "In TX", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "UT": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "UT", - "label": "In UT", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "VT": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "VT", - "label": "In VT", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "VA": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "VA", - "label": "In VA", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "WA": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "WA", - "label": "In WA", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "WV": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "WV", - "label": "In WV", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "WI": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "WI", - "label": "In WI", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "WY": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "WY", - "label": "In WY", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - }, - "PR": { - "documentation": null, - "entity": "household", - "valueType": "bool", - "definitionPeriod": "year", - "name": "PR", - "label": "In PR", - "category": null, - "unit": null, - "moduleName": "", - "indexInModule": null, - "isInputVariable": false, - "defaultValue": false, - "adds": null, - "subtracts": null, - "hidden_input": true - } - }, - "parameters": { - "gov": { - "type": "parameterNode", - "parameter": "gov", - "description": null, - "label": "Government", - "economy": true, - "household": true - }, - "gov.contrib": { - "type": "parameterNode", - "parameter": "gov.contrib", - "description": null, - "label": "Contributed", - "economy": true, - "household": true - }, - "gov.contrib.ctc": { - "type": "parameterNode", - "parameter": "gov.contrib.ctc", - "description": null, - "label": "ctc", - "economy": true, - "household": true - }, - "gov.contrib.ctc.additional_bracket": { - "type": "parameterNode", - "parameter": "gov.contrib.ctc.additional_bracket", - "description": null, - "label": "additional bracket", - "economy": true, - "household": true - }, - "gov.contrib.ctc.additional_bracket.amount": { - "type": "parameterNode", - "parameter": "gov.contrib.ctc.additional_bracket.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.contrib.ctc.additional_bracket.amount.base": { - "type": "parameterNode", - "parameter": "gov.contrib.ctc.additional_bracket.amount.base", - "description": "The IRS provides a maximum Child Tax Credit of this amount with an additional bracket, depending on the child's age.", - "label": "Child Tax Credit amount" - }, - "gov.contrib.ctc.additional_bracket.amount.base[0]": { - "type": "parameterNode", - "parameter": "gov.contrib.ctc.additional_bracket.amount.base[0]", - "description": null, - "label": "bracket 1" - }, - "gov.contrib.ctc.additional_bracket.amount.base[0].threshold": { - "type": "parameter", - "parameter": "gov.contrib.ctc.additional_bracket.amount.base[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ctc.additional_bracket.amount.base[0].amount": { - "type": "parameter", - "parameter": "gov.contrib.ctc.additional_bracket.amount.base[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ctc.additional_bracket.amount.base[1]": { - "type": "parameterNode", - "parameter": "gov.contrib.ctc.additional_bracket.amount.base[1]", - "description": null, - "label": "bracket 2" - }, - "gov.contrib.ctc.additional_bracket.amount.base[1].threshold": { - "type": "parameter", - "parameter": "gov.contrib.ctc.additional_bracket.amount.base[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "0000-01-01": 6 - }, - "economy": true, - "household": true - }, - "gov.contrib.ctc.additional_bracket.amount.base[1].amount": { - "type": "parameter", - "parameter": "gov.contrib.ctc.additional_bracket.amount.base[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ctc.additional_bracket.amount.base[2]": { - "type": "parameterNode", - "parameter": "gov.contrib.ctc.additional_bracket.amount.base[2]", - "description": null, - "label": "bracket 3" - }, - "gov.contrib.ctc.additional_bracket.amount.base[2].threshold": { - "type": "parameter", - "parameter": "gov.contrib.ctc.additional_bracket.amount.base[2].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "0000-01-01": 17 - }, - "economy": true, - "household": true - }, - "gov.contrib.ctc.additional_bracket.amount.base[2].amount": { - "type": "parameter", - "parameter": "gov.contrib.ctc.additional_bracket.amount.base[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ctc.additional_bracket.amount.actc": { - "type": "parameterNode", - "parameter": "gov.contrib.ctc.additional_bracket.amount.actc", - "description": "The IRS provides a maximum ACTC of this amount with an additional bracket, depending on the child's age.", - "label": "ACTC amount" - }, - "gov.contrib.ctc.additional_bracket.amount.actc[0]": { - "type": "parameterNode", - "parameter": "gov.contrib.ctc.additional_bracket.amount.actc[0]", - "description": null, - "label": "bracket 1" - }, - "gov.contrib.ctc.additional_bracket.amount.actc[0].threshold": { - "type": "parameter", - "parameter": "gov.contrib.ctc.additional_bracket.amount.actc[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ctc.additional_bracket.amount.actc[0].amount": { - "type": "parameter", - "parameter": "gov.contrib.ctc.additional_bracket.amount.actc[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ctc.additional_bracket.amount.actc[1]": { - "type": "parameterNode", - "parameter": "gov.contrib.ctc.additional_bracket.amount.actc[1]", - "description": null, - "label": "bracket 2" - }, - "gov.contrib.ctc.additional_bracket.amount.actc[1].threshold": { - "type": "parameter", - "parameter": "gov.contrib.ctc.additional_bracket.amount.actc[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "0000-01-01": 6 - }, - "economy": true, - "household": true - }, - "gov.contrib.ctc.additional_bracket.amount.actc[1].amount": { - "type": "parameter", - "parameter": "gov.contrib.ctc.additional_bracket.amount.actc[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ctc.additional_bracket.amount.actc[2]": { - "type": "parameterNode", - "parameter": "gov.contrib.ctc.additional_bracket.amount.actc[2]", - "description": null, - "label": "bracket 3" - }, - "gov.contrib.ctc.additional_bracket.amount.actc[2].threshold": { - "type": "parameter", - "parameter": "gov.contrib.ctc.additional_bracket.amount.actc[2].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "0000-01-01": 17 - }, - "economy": true, - "household": true - }, - "gov.contrib.ctc.additional_bracket.amount.actc[2].amount": { - "type": "parameter", - "parameter": "gov.contrib.ctc.additional_bracket.amount.actc[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ctc.additional_bracket.in_effect": { - "type": "parameter", - "parameter": "gov.contrib.ctc.additional_bracket.in_effect", - "description": "An expanded Child Tax Credit bracket is applied, if this is true.", - "label": "Additional CTC bracket in effect", - "unit": "bool", - "period": "year", - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.ctc.oldest_child_supplement": { - "type": "parameterNode", - "parameter": "gov.contrib.ctc.oldest_child_supplement", - "description": null, - "label": "oldest child supplement", - "economy": true, - "household": true - }, - "gov.contrib.ctc.oldest_child_supplement.in_effect": { - "type": "parameter", - "parameter": "gov.contrib.ctc.oldest_child_supplement.in_effect", - "description": "An increased Child Tax Credit amount is provided to the oldest child in a household, if this is true.", - "label": "CTC oldest child supplement in effect", - "unit": "bool", - "period": "year", - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.ctc.oldest_child_supplement.amount": { - "type": "parameter", - "parameter": "gov.contrib.ctc.oldest_child_supplement.amount", - "description": "An increased Child Tax Credit of this amount is provided to the oldest child in a household.", - "label": "CTC oldest child supplement", - "unit": "currency-USD", - "period": "year", - "values": { - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.maryland_child_alliance": { - "type": "parameterNode", - "parameter": "gov.contrib.maryland_child_alliance", - "description": null, - "label": "Maryland Child Alliance", - "economy": true, - "household": true - }, - "gov.contrib.maryland_child_alliance.abolish_non_refundable_child_eitc": { - "type": "parameter", - "parameter": "gov.contrib.maryland_child_alliance.abolish_non_refundable_child_eitc", - "description": "Abolish the non-refundable Maryland EITC for tax units with children.", - "label": "Abolish MD non-refundable EITC for families with children", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.maryland_child_alliance.abolish_refundable_child_eitc": { - "type": "parameter", - "parameter": "gov.contrib.maryland_child_alliance.abolish_refundable_child_eitc", - "description": "Abolish the refundable Maryland EITC for tax units with children.", - "label": "Abolish MD refundable EITC for families with children", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.dc_kccatc": { - "type": "parameterNode", - "parameter": "gov.contrib.dc_kccatc", - "description": null, - "label": "DC KCCATC", - "economy": true, - "household": true - }, - "gov.contrib.dc_kccatc.expenses": { - "type": "parameterNode", - "parameter": "gov.contrib.dc_kccatc.expenses", - "description": null, - "label": "expenses", - "economy": true, - "household": true - }, - "gov.contrib.dc_kccatc.expenses.max": { - "type": "parameter", - "parameter": "gov.contrib.dc_kccatc.expenses.max", - "description": "DC caps the KCCATC at this amount per eligible child.", - "label": "DC KCCATC maximum", - "unit": "currency-USD", - "period": "year", - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.dc_kccatc.expenses.rate": { - "type": "parameter", - "parameter": "gov.contrib.dc_kccatc.expenses.rate", - "description": "The DC KCCATC covers this percentage of child care expenses for the tax unit.", - "label": "DC KCCATC expense share", - "unit": "/1", - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.dc_kccatc.active": { - "type": "parameter", - "parameter": "gov.contrib.dc_kccatc.active", - "description": "Whether to reform the DC KCCATC in line with the parameters in this folder.", - "label": "DC KCCATC custom reforms active", - "unit": "bool", - "period": null, - "values": { - "2020-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.dc_kccatc.phase_out": { - "type": "parameterNode", - "parameter": "gov.contrib.dc_kccatc.phase_out", - "description": null, - "label": "phase out", - "economy": true, - "household": true - }, - "gov.contrib.dc_kccatc.phase_out.rate": { - "type": "parameter", - "parameter": "gov.contrib.dc_kccatc.phase_out.rate", - "description": "DC phases out the KCCATC at this rate of AGI above the threshold.", - "label": "DC KCCATC phase-out rate", - "unit": "/1", - "period": "year", - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.dc_kccatc.phase_out.threshold": { - "type": "parameterNode", - "parameter": "gov.contrib.dc_kccatc.phase_out.threshold", - "description": "AGI after this amount phases out the DC KCCATC.", - "label": "DC KCCATC phase-out threshold", - "economy": true, - "household": true - }, - "gov.contrib.dc_kccatc.phase_out.threshold.SINGLE": { - "type": "parameter", - "parameter": "gov.contrib.dc_kccatc.phase_out.threshold.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.dc_kccatc.phase_out.threshold.JOINT": { - "type": "parameter", - "parameter": "gov.contrib.dc_kccatc.phase_out.threshold.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.dc_kccatc.phase_out.threshold.SEPARATE": { - "type": "parameter", - "parameter": "gov.contrib.dc_kccatc.phase_out.threshold.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.dc_kccatc.phase_out.threshold.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.contrib.dc_kccatc.phase_out.threshold.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.dc_kccatc.phase_out.threshold.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.contrib.dc_kccatc.phase_out.threshold.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.second_earner_reform": { - "type": "parameterNode", - "parameter": "gov.contrib.second_earner_reform", - "description": null, - "label": "second earner reform", - "economy": true, - "household": true - }, - "gov.contrib.second_earner_reform.in_effect": { - "type": "parameter", - "parameter": "gov.contrib.second_earner_reform.in_effect", - "description": "The second earner tax reform is in effect if this is true.", - "label": "Second earner tax reform in effect", - "unit": "bool", - "period": "year", - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.repeal_state_dependent_exemptions": { - "type": "parameterNode", - "parameter": "gov.contrib.repeal_state_dependent_exemptions", - "description": null, - "label": "repeal state dependent exemptions", - "economy": true, - "household": true - }, - "gov.contrib.repeal_state_dependent_exemptions.in_effect": { - "type": "parameter", - "parameter": "gov.contrib.repeal_state_dependent_exemptions.in_effect", - "description": "The state dependent exemptions are repealed, if this is true.", - "label": "Repeal state dependent exemptions", - "unit": "bool", - "period": "year", - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.joint_eitc": { - "type": "parameterNode", - "parameter": "gov.contrib.joint_eitc", - "description": null, - "label": "joint eitc", - "economy": true, - "household": true - }, - "gov.contrib.joint_eitc.in_effect": { - "type": "parameter", - "parameter": "gov.contrib.joint_eitc.in_effect", - "description": "A proposal to halve the EITC phase out rate for joint filers.", - "label": "Joint EITC phase-out rate halving in effect", - "unit": "bool", - "period": "year", - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.dc_tax_threshold_joint_ratio": { - "type": "parameter", - "parameter": "gov.contrib.dc_tax_threshold_joint_ratio", - "description": "Ratio of single to joint tax thresholds for DC's income tax.", - "label": "DC single-joint tax threshold ratio", - "unit": "/1", - "period": null, - "values": { - "2000-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.contrib.snap": { - "type": "parameterNode", - "parameter": "gov.contrib.snap", - "description": null, - "label": "snap", - "economy": true, - "household": true - }, - "gov.contrib.snap.abolish_net_income_test": { - "type": "parameterNode", - "parameter": "gov.contrib.snap.abolish_net_income_test", - "description": null, - "label": "abolish net income test", - "economy": true, - "household": true - }, - "gov.contrib.snap.abolish_net_income_test.in_effect": { - "type": "parameter", - "parameter": "gov.contrib.snap.abolish_net_income_test.in_effect", - "description": "SNAP net income test is abolished, if this is true.", - "label": "Abolish SNAP net income test in effect", - "unit": "bool", - "period": "year", - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.snap.abolish_deductions": { - "type": "parameterNode", - "parameter": "gov.contrib.snap.abolish_deductions", - "description": null, - "label": "abolish deductions", - "economy": true, - "household": true - }, - "gov.contrib.snap.abolish_deductions.in_effect": { - "type": "parameter", - "parameter": "gov.contrib.snap.abolish_deductions.in_effect", - "description": "SNAP deductions are abolished, if this is true.", - "label": "Abolish SNAP deductions in effect", - "unit": "bool", - "period": "year", - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.biden": { - "type": "parameterNode", - "parameter": "gov.contrib.biden", - "description": null, - "label": "biden", - "economy": true, - "household": true - }, - "gov.contrib.biden.budget_2025": { - "type": "parameterNode", - "parameter": "gov.contrib.biden.budget_2025", - "description": null, - "label": "budget 2025", - "economy": true, - "household": true - }, - "gov.contrib.biden.budget_2025.medicare": { - "type": "parameterNode", - "parameter": "gov.contrib.biden.budget_2025.medicare", - "description": null, - "label": "medicare", - "economy": true, - "household": true - }, - "gov.contrib.biden.budget_2025.medicare.rate": { - "type": "parameter", - "parameter": "gov.contrib.biden.budget_2025.medicare.rate", - "description": "President Biden proposed this additional Medicare tax rate.", - "label": "President Biden additional Medicare tax rate", - "unit": "/1", - "period": "year", - "values": { - "2024-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.biden.budget_2025.medicare.threshold": { - "type": "parameter", - "parameter": "gov.contrib.biden.budget_2025.medicare.threshold", - "description": "President Biden proposed an additional Medicare tax rate for filers with adjusted gross income above this threshold.", - "label": "President Biden additional Medicare tax rate threshold", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 498110.354128121, - "2034-01-01": 488464.899027863, - "2033-01-01": 478938.523620201, - "2032-01-01": 469650.307597731, - "2031-01-01": 460600.250960452, - "2030-01-01": 451669.274015769, - "2029-01-01": 442857.376763682, - "2028-01-01": 434164.55920419, - "2027-01-01": 425352.661952103, - "2026-01-01": 415123.716358126, - "2025-01-01": 408873.421759929, - "2024-01-01": 400000, - "2015-01-01": 400000 - }, - "economy": true, - "household": true - }, - "gov.contrib.biden.budget_2025.net_investment_income": { - "type": "parameterNode", - "parameter": "gov.contrib.biden.budget_2025.net_investment_income", - "description": null, - "label": "net investment income", - "economy": true, - "household": true - }, - "gov.contrib.biden.budget_2025.net_investment_income.rate": { - "type": "parameter", - "parameter": "gov.contrib.biden.budget_2025.net_investment_income.rate", - "description": "President Biden proposed this additional net investment income tax rate.", - "label": "President Biden additional NIIT rate", - "unit": "/1", - "period": "year", - "values": { - "2024-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.biden.budget_2025.net_investment_income.threshold": { - "type": "parameter", - "parameter": "gov.contrib.biden.budget_2025.net_investment_income.threshold", - "description": "President Biden proposed an additional net investment income tax rate for filers with adjusted gross income above this threshold.", - "label": "President Biden additional NIIT rate threshold", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 498110.354128121, - "2034-01-01": 488464.899027863, - "2033-01-01": 478938.523620201, - "2032-01-01": 469650.307597731, - "2031-01-01": 460600.250960452, - "2030-01-01": 451669.274015769, - "2029-01-01": 442857.376763682, - "2028-01-01": 434164.55920419, - "2027-01-01": 425352.661952103, - "2026-01-01": 415123.716358126, - "2025-01-01": 408873.421759929, - "2024-01-01": 400000, - "2015-01-01": 400000 - }, - "economy": true, - "household": true - }, - "gov.contrib.biden.budget_2025.capital_gains": { - "type": "parameterNode", - "parameter": "gov.contrib.biden.budget_2025.capital_gains", - "description": null, - "label": "Tax capital gains income as ordinary income", - "economy": true, - "household": true - }, - "gov.contrib.biden.budget_2025.capital_gains.income_threshold": { - "type": "parameterNode", - "parameter": "gov.contrib.biden.budget_2025.capital_gains.income_threshold", - "description": "President Biden proposed taxing as ordinary income the excess of capital income above these thresholds, by filing status.", - "label": "Threshold above which capital income is taxed as ordinary income", - "economy": true, - "household": true - }, - "gov.contrib.biden.budget_2025.capital_gains.income_threshold.JOINT": { - "type": "parameter", - "parameter": "gov.contrib.biden.budget_2025.capital_gains.income_threshold.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1000000, - "2015-01-01": 1000000 - }, - "economy": true, - "household": true - }, - "gov.contrib.biden.budget_2025.capital_gains.income_threshold.SINGLE": { - "type": "parameter", - "parameter": "gov.contrib.biden.budget_2025.capital_gains.income_threshold.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1000000, - "2015-01-01": 1000000 - }, - "economy": true, - "household": true - }, - "gov.contrib.biden.budget_2025.capital_gains.income_threshold.SEPARATE": { - "type": "parameter", - "parameter": "gov.contrib.biden.budget_2025.capital_gains.income_threshold.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 500000, - "2015-01-01": 500000 - }, - "economy": true, - "household": true - }, - "gov.contrib.biden.budget_2025.capital_gains.income_threshold.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.contrib.biden.budget_2025.capital_gains.income_threshold.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1000000, - "2015-01-01": 1000000 - }, - "economy": true, - "household": true - }, - "gov.contrib.biden.budget_2025.capital_gains.income_threshold.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.contrib.biden.budget_2025.capital_gains.income_threshold.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1000000, - "2015-01-01": 1000000 - }, - "economy": true, - "household": true - }, - "gov.contrib.biden.budget_2025.capital_gains.active": { - "type": "parameter", - "parameter": "gov.contrib.biden.budget_2025.capital_gains.active", - "description": "The proposal of President Biden to tax capital income as ordinary is active if this is true.", - "label": "Capital income over threshold taxed as ordinary income", - "unit": "bool", - "period": "year", - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.crfb": { - "type": "parameterNode", - "parameter": "gov.contrib.crfb", - "description": null, - "label": "crfb", - "economy": true, - "household": true - }, - "gov.contrib.crfb.tax_employer_social_security_tax": { - "type": "parameterNode", - "parameter": "gov.contrib.crfb.tax_employer_social_security_tax", - "description": null, - "label": "tax employer social security tax", - "economy": true, - "household": true - }, - "gov.contrib.crfb.tax_employer_social_security_tax.in_effect": { - "type": "parameter", - "parameter": "gov.contrib.crfb.tax_employer_social_security_tax.in_effect", - "description": "Employer side Social Security taxes are added to gross income, if this is true.", - "label": "Reform to tax employer-side Social Security taxes as gross income", - "unit": "bool", - "period": "year", - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.crfb.tax_employer_medicare_tax": { - "type": "parameterNode", - "parameter": "gov.contrib.crfb.tax_employer_medicare_tax", - "description": null, - "label": "tax employer medicare tax", - "economy": true, - "household": true - }, - "gov.contrib.crfb.tax_employer_medicare_tax.in_effect": { - "type": "parameter", - "parameter": "gov.contrib.crfb.tax_employer_medicare_tax.in_effect", - "description": "Employer side Medicare taxes are added to gross income, if this is true.", - "label": "Reform to tax employer-side Medicare taxes as gross income", - "unit": "bool", - "period": "year", - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.crfb.tax_employer_payroll_tax": { - "type": "parameterNode", - "parameter": "gov.contrib.crfb.tax_employer_payroll_tax", - "description": null, - "label": "tax employer payroll tax", - "economy": true, - "household": true - }, - "gov.contrib.crfb.tax_employer_payroll_tax.in_effect": { - "type": "parameter", - "parameter": "gov.contrib.crfb.tax_employer_payroll_tax.in_effect", - "description": "Employer side payroll taxes--Social Security and Medicare--are added to gross income, if this is true.", - "label": "Reform to tax employer-side payroll taxes as gross income", - "unit": "bool", - "period": "year", - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center": { - "type": "parameterNode", - "parameter": "gov.contrib.ubi_center", - "description": null, - "label": "UBI Center", - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income": { - "type": "parameterNode", - "parameter": "gov.contrib.ubi_center.basic_income", - "description": null, - "label": "basic income", - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.phase_in": { - "type": "parameterNode", - "parameter": "gov.contrib.ubi_center.basic_income.phase_in", - "description": null, - "label": "phase in", - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.phase_in.include_ss_benefits_as_earnings": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.phase_in.include_ss_benefits_as_earnings", - "description": "Social Security benefits are treated as earnings under the basic income phase in if this is selected.", - "label": "SS benefits treated as earnings for basic income", - "unit": "bool", - "period": "year", - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.phase_in.in_effect": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.phase_in.in_effect", - "description": "Basic income is phased in if this is true.", - "label": "Basic income phase-in in effect", - "unit": "bool", - "period": "year", - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.phase_in.rate": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.phase_in.rate", - "description": "The basic income phases in at this rate.", - "label": "Basic income phase-in rate", - "unit": "/1", - "period": "year", - "values": { - "0000-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.phase_in.per_person": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.phase_in.per_person", - "description": "Basic incomes phase in per person if this is selected; otherwise, they phase in at a flat rate irrespective of household size.", - "label": "Phase in basic income per person", - "unit": "bool", - "period": "year", - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.amount": { - "type": "parameterNode", - "parameter": "gov.contrib.ubi_center.basic_income.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.amount.tax_unit": { - "type": "parameterNode", - "parameter": "gov.contrib.ubi_center.basic_income.amount.tax_unit", - "description": null, - "label": "tax unit", - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.amount.tax_unit.fpg_percent": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.amount.tax_unit.fpg_percent", - "description": "A basic income is provided to tax units at this percentage of the federal poverty guideline", - "label": "Basic income as a percent of tax unit's poverty line", - "unit": "/1", - "period": null, - "values": { - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.amount.person": { - "type": "parameterNode", - "parameter": "gov.contrib.ubi_center.basic_income.amount.person", - "description": null, - "label": "person", - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.amount.person.by_age": { - "type": "parameterNode", - "parameter": "gov.contrib.ubi_center.basic_income.amount.person.by_age", - "description": "Basic income amounts by age.", - "label": "by age" - }, - "gov.contrib.ubi_center.basic_income.amount.person.by_age[0]": { - "type": "parameterNode", - "parameter": "gov.contrib.ubi_center.basic_income.amount.person.by_age[0]", - "description": null, - "label": "bracket 1" - }, - "gov.contrib.ubi_center.basic_income.amount.person.by_age[0].threshold": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.amount.person.by_age[0].threshold", - "description": null, - "label": "Young child basic income age", - "unit": "year", - "period": null, - "values": { - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.amount.person.by_age[0].amount": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.amount.person.by_age[0].amount", - "description": "Unconditional payment to young children.", - "label": "Young child basic income", - "unit": "currency-USD", - "period": "year", - "values": { - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.amount.person.by_age[1]": { - "type": "parameterNode", - "parameter": "gov.contrib.ubi_center.basic_income.amount.person.by_age[1]", - "description": null, - "label": "bracket 2" - }, - "gov.contrib.ubi_center.basic_income.amount.person.by_age[1].threshold": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.amount.person.by_age[1].threshold", - "description": null, - "label": "Older child basic income age", - "unit": "year", - "period": null, - "values": { - "2010-01-01": 6 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.amount.person.by_age[1].amount": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.amount.person.by_age[1].amount", - "description": "Unconditional payment to older children.", - "label": "Older child basic income", - "unit": "currency-USD", - "period": "year", - "values": { - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.amount.person.by_age[2]": { - "type": "parameterNode", - "parameter": "gov.contrib.ubi_center.basic_income.amount.person.by_age[2]", - "description": null, - "label": "bracket 3" - }, - "gov.contrib.ubi_center.basic_income.amount.person.by_age[2].threshold": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.amount.person.by_age[2].threshold", - "description": "Age at which individuals receive the young adult payment, rather than the older child payment.", - "label": "Young adult basic income age", - "unit": "year", - "period": null, - "values": { - "2010-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.amount.person.by_age[2].amount": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.amount.person.by_age[2].amount", - "description": "Unconditional payment to working-age adults.", - "label": "Young adult basic income", - "unit": "currency-USD", - "period": "year", - "values": { - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.amount.person.by_age[3]": { - "type": "parameterNode", - "parameter": "gov.contrib.ubi_center.basic_income.amount.person.by_age[3]", - "description": null, - "label": "bracket 4" - }, - "gov.contrib.ubi_center.basic_income.amount.person.by_age[3].threshold": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.amount.person.by_age[3].threshold", - "description": "Age at which individuals receive the older adult payment, rather than the young adult payment.", - "label": "Older adult basic income age", - "unit": "year", - "period": null, - "values": { - "2010-01-01": 25 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.amount.person.by_age[3].amount": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.amount.person.by_age[3].amount", - "description": "Unconditional payment to older adults.", - "label": "Older adult basic income", - "unit": "currency-USD", - "period": "year", - "values": { - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.amount.person.by_age[4]": { - "type": "parameterNode", - "parameter": "gov.contrib.ubi_center.basic_income.amount.person.by_age[4]", - "description": null, - "label": "bracket 5" - }, - "gov.contrib.ubi_center.basic_income.amount.person.by_age[4].threshold": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.amount.person.by_age[4].threshold", - "description": "Age at which individuals receive the senior citizen payment, rather than the working-age adult payment.", - "label": "Senior citizen basic income age", - "unit": "year", - "period": null, - "values": { - "2010-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.amount.person.by_age[4].amount": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.amount.person.by_age[4].amount", - "description": "Unconditional payment to senior citizens.", - "label": "Senior citizen basic income", - "unit": "currency-USD", - "period": "year", - "values": { - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.amount.person.flat": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.amount.person.flat", - "description": "Basic income amount.", - "label": "Basic income", - "unit": "currency-USD", - "period": "year", - "values": { - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.amount.person.marriage_bonus": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.amount.person.marriage_bonus", - "description": "The following bonus is provided to married couples as a percentage of their basic income amount.", - "label": "Basic income marriage bonus rate", - "unit": "/1", - "period": "year", - "values": { - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.amount.person.disability": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.amount.person.disability", - "description": "Payment to individuals with SSI-qualifying disabilities.", - "label": "Disability-based UBI", - "unit": "currency-USD", - "period": "year", - "values": { - "2020-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.phase_out": { - "type": "parameterNode", - "parameter": "gov.contrib.ubi_center.basic_income.phase_out", - "description": null, - "label": "phase out", - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.phase_out.by_rate": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.phase_out.by_rate", - "description": "Basic incomes phase out as a rate above a threshold if this is selected; otherwise, they phase out between the threshold and a phase-out end.", - "label": "Phase out basic income as a rate", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": true - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.phase_out.rate": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.phase_out.rate", - "description": "The basic income phases out at this rate for tax filers with adjusted gross income above the threshold.", - "label": "Basic income phase-out rate", - "unit": "/1", - "period": null, - "values": { - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.phase_out.end": { - "type": "parameterNode", - "parameter": "gov.contrib.ubi_center.basic_income.phase_out.end", - "description": "The basic income phases out for adjusted gross income between the threshold and this value.", - "label": "Basic income phase-out end", - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.phase_out.end.SINGLE": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.phase_out.end.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.phase_out.end.JOINT": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.phase_out.end.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.phase_out.end.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.phase_out.end.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.phase_out.end.SEPARATE": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.phase_out.end.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.phase_out.end.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.phase_out.end.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.phase_out.threshold": { - "type": "parameterNode", - "parameter": "gov.contrib.ubi_center.basic_income.phase_out.threshold", - "description": "The basic income phases out for adjusted gross income above this value.", - "label": "Basic income phase-out threshold", - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.phase_out.threshold.SINGLE": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.phase_out.threshold.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.phase_out.threshold.JOINT": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.phase_out.threshold.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.phase_out.threshold.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.phase_out.threshold.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.phase_out.threshold.SEPARATE": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.phase_out.threshold.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.phase_out.threshold.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.phase_out.threshold.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.agi_limit": { - "type": "parameterNode", - "parameter": "gov.contrib.ubi_center.basic_income.agi_limit", - "description": null, - "label": "agi limit", - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.agi_limit.in_effect": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.agi_limit.in_effect", - "description": "Basic income is limited to tax units below an AGI level if this switch is activated.", - "label": "Basic income AGI limit in effect", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.agi_limit.amount": { - "type": "parameterNode", - "parameter": "gov.contrib.ubi_center.basic_income.agi_limit.amount", - "description": "Tax units are eligible for basic income payments unless their adjusted gross income exceeds this threshold.", - "label": "Basic income AGI limit", - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.agi_limit.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.agi_limit.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.agi_limit.amount.JOINT": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.agi_limit.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.agi_limit.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.agi_limit.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.agi_limit.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.agi_limit.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.agi_limit.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.agi_limit.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.basic_income.taxable": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.basic_income.taxable", - "description": "Whether the IRS counts basic income in adjusted gross income. If true, this overrides and eliminates all other basic income phase-out parameters.", - "label": "Basic income taxability", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.flat_tax": { - "type": "parameterNode", - "parameter": "gov.contrib.ubi_center.flat_tax", - "description": null, - "label": "flat tax", - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.flat_tax.abolish_payroll_tax": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.flat_tax.abolish_payroll_tax", - "description": "Abolish all payroll tax liabilities.", - "label": "Abolish payroll taxes", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.flat_tax.exemption": { - "type": "parameterNode", - "parameter": "gov.contrib.ubi_center.flat_tax.exemption", - "description": null, - "label": "exemption", - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.flat_tax.exemption.agi": { - "type": "parameterNode", - "parameter": "gov.contrib.ubi_center.flat_tax.exemption.agi", - "description": "The following amount is exempt under the flat AGI tax structure, based on filing status.", - "label": "Flat tax on AGI exemption amount", - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.flat_tax.exemption.agi.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.flat_tax.exemption.agi.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.flat_tax.exemption.agi.JOINT": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.flat_tax.exemption.agi.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.flat_tax.exemption.agi.SEPARATE": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.flat_tax.exemption.agi.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.flat_tax.exemption.agi.SINGLE": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.flat_tax.exemption.agi.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.flat_tax.exemption.agi.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.flat_tax.exemption.agi.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.flat_tax.abolish_self_emp_tax": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.flat_tax.abolish_self_emp_tax", - "description": "Abolish self-employment tax liabilities.", - "label": "Abolish self-employment tax", - "unit": "bool", - "period": null, - "values": { - "2000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.flat_tax.rate": { - "type": "parameterNode", - "parameter": "gov.contrib.ubi_center.flat_tax.rate", - "description": null, - "label": "rate", - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.flat_tax.rate.gross_income": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.flat_tax.rate.gross_income", - "description": "Flat tax rate applied to federal gross income.", - "label": "Flat tax rate on gross income", - "unit": "/1", - "period": "year", - "values": { - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.flat_tax.rate.agi": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.flat_tax.rate.agi", - "description": "Flat tax rate applied to federal adjusted gross income.", - "label": "Flat tax rate on AGI", - "unit": "/1", - "period": null, - "values": { - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.flat_tax.abolish_federal_income_tax": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.flat_tax.abolish_federal_income_tax", - "description": "Abolish all federal income tax liabilities.", - "label": "Abolish federal income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.ubi_center.flat_tax.deduct_ptc": { - "type": "parameter", - "parameter": "gov.contrib.ubi_center.flat_tax.deduct_ptc", - "description": "Deduct the Premium Tax Credit from the flat tax.", - "label": "Premium Tax Credit flat tax deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.reconciliation": { - "type": "parameterNode", - "parameter": "gov.contrib.reconciliation", - "description": null, - "label": "reconciliation", - "economy": true, - "household": true - }, - "gov.contrib.reconciliation.ssn_for_llc_and_aoc": { - "type": "parameterNode", - "parameter": "gov.contrib.reconciliation.ssn_for_llc_and_aoc", - "description": null, - "label": "ssn for llc and aoc", - "economy": true, - "household": true - }, - "gov.contrib.reconciliation.ssn_for_llc_and_aoc.in_effect": { - "type": "parameter", - "parameter": "gov.contrib.reconciliation.ssn_for_llc_and_aoc.in_effect", - "description": "The Committee on Ways and Means proposed an SSN requirement for LLC and AOC, which is in effect if this is true.", - "label": "Reconciled SSN requirement for LLC and AOC in effect", - "unit": "bool", - "period": "year", - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.reconciliation.medicaid_work_requirement": { - "type": "parameterNode", - "parameter": "gov.contrib.reconciliation.medicaid_work_requirement", - "description": null, - "label": "medicaid work requirement", - "economy": true, - "household": true - }, - "gov.contrib.reconciliation.medicaid_work_requirement.senate": { - "type": "parameterNode", - "parameter": "gov.contrib.reconciliation.medicaid_work_requirement.senate", - "description": null, - "label": "senate", - "economy": true, - "household": true - }, - "gov.contrib.reconciliation.medicaid_work_requirement.senate.dependent_age_limit": { - "type": "parameter", - "parameter": "gov.contrib.reconciliation.medicaid_work_requirement.senate.dependent_age_limit", - "description": "The Committee on Ways and Means proposed to exempt Medicaid work requirement to individuals with a dependent child at this age or younger.", - "label": "Reconciliation Medicaid work requirement dependent child age limit", - "unit": "year", - "period": "year", - "values": { - "2027-01-01": 13, - "2015-01-01": 13 - }, - "economy": true, - "household": true - }, - "gov.contrib.reconciliation.medicaid_work_requirement.senate.in_effect": { - "type": "parameter", - "parameter": "gov.contrib.reconciliation.medicaid_work_requirement.senate.in_effect", - "description": "The Committee on Ways and Means proposed to limit Medicaid to filers who meet work requirements, which comes in effect if this is true.", - "label": "Reconciliation Medicaid with work requirement in effect", - "unit": "bool", - "period": "year", - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.reconciliation.medicaid_work_requirement.age_range": { - "type": "parameterNode", - "parameter": "gov.contrib.reconciliation.medicaid_work_requirement.age_range", - "description": "The Committee on Ways and Means proposed to require individuals within these age brackets to meet Medicaid work requirements.", - "label": "Reconciliation Medicaid work requirements age threshold" - }, - "gov.contrib.reconciliation.medicaid_work_requirement.age_range[0]": { - "type": "parameterNode", - "parameter": "gov.contrib.reconciliation.medicaid_work_requirement.age_range[0]", - "description": null, - "label": "bracket 1" - }, - "gov.contrib.reconciliation.medicaid_work_requirement.age_range[0].threshold": { - "type": "parameter", - "parameter": "gov.contrib.reconciliation.medicaid_work_requirement.age_range[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2027-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.reconciliation.medicaid_work_requirement.age_range[0].amount": { - "type": "parameter", - "parameter": "gov.contrib.reconciliation.medicaid_work_requirement.age_range[0].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2027-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.reconciliation.medicaid_work_requirement.age_range[1]": { - "type": "parameterNode", - "parameter": "gov.contrib.reconciliation.medicaid_work_requirement.age_range[1]", - "description": null, - "label": "bracket 2" - }, - "gov.contrib.reconciliation.medicaid_work_requirement.age_range[1].threshold": { - "type": "parameter", - "parameter": "gov.contrib.reconciliation.medicaid_work_requirement.age_range[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2027-01-01": 19, - "2015-01-01": 19 - }, - "economy": true, - "household": true - }, - "gov.contrib.reconciliation.medicaid_work_requirement.age_range[1].amount": { - "type": "parameter", - "parameter": "gov.contrib.reconciliation.medicaid_work_requirement.age_range[1].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2027-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.contrib.reconciliation.medicaid_work_requirement.age_range[2]": { - "type": "parameterNode", - "parameter": "gov.contrib.reconciliation.medicaid_work_requirement.age_range[2]", - "description": null, - "label": "bracket 3" - }, - "gov.contrib.reconciliation.medicaid_work_requirement.age_range[2].threshold": { - "type": "parameter", - "parameter": "gov.contrib.reconciliation.medicaid_work_requirement.age_range[2].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2027-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.contrib.reconciliation.medicaid_work_requirement.age_range[2].amount": { - "type": "parameter", - "parameter": "gov.contrib.reconciliation.medicaid_work_requirement.age_range[2].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2027-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.reconciliation.medicaid_work_requirement.monthly_hours_threshold": { - "type": "parameter", - "parameter": "gov.contrib.reconciliation.medicaid_work_requirement.monthly_hours_threshold", - "description": "The Committee on Ways and Means proposed to limit Medicaid to individuals working more than this number of monthly hours.", - "label": "Reconciliation Medicaid work requirement monthly hours threshold", - "unit": "hours", - "period": "month", - "values": { - "2027-01-01": 80, - "2015-01-01": 80 - }, - "economy": true, - "household": true - }, - "gov.contrib.reconciliation.medicaid_work_requirement.house": { - "type": "parameterNode", - "parameter": "gov.contrib.reconciliation.medicaid_work_requirement.house", - "description": null, - "label": "house", - "economy": true, - "household": true - }, - "gov.contrib.reconciliation.medicaid_work_requirement.house.in_effect": { - "type": "parameter", - "parameter": "gov.contrib.reconciliation.medicaid_work_requirement.house.in_effect", - "description": "The Committee on Ways and Means proposed to limit Medicaid to filers who meet work requirements, which comes in effect if this is true.", - "label": "Reconciliation Medicaid with work requirement in effect", - "unit": "bool", - "period": "year", - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.reconciliation.snap_abawd_work_requirement": { - "type": "parameterNode", - "parameter": "gov.contrib.reconciliation.snap_abawd_work_requirement", - "description": null, - "label": "snap abawd work requirement", - "economy": true, - "household": true - }, - "gov.contrib.reconciliation.snap_abawd_work_requirement.sunset_provision_in_effect": { - "type": "parameter", - "parameter": "gov.contrib.reconciliation.snap_abawd_work_requirement.sunset_provision_in_effect", - "description": "The Committee on Ways and Means proposed an Able-Bodied Adult Without Dependents (ABAWD) work requirement for the Supplemental Nutrition Assistance Program, which is in effect if this is true.", - "label": "Reconciled ABAWD work requirement for SNAP in effect", - "unit": "bool", - "period": "year", - "values": { - "2030-10-01": true, - "2022-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.reconciliation.snap_abawd_work_requirement.in_effect": { - "type": "parameter", - "parameter": "gov.contrib.reconciliation.snap_abawd_work_requirement.in_effect", - "description": "The Committee on Ways and Means proposed an Able-Bodied Adult Without Dependents (ABAWD) work requirement for the Supplemental Nutrition Assistance Program, which is in effect if this is true.", - "label": "Reconciled ABAWD work requirement for SNAP in effect", - "unit": "bool", - "period": "year", - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.individual_eitc": { - "type": "parameterNode", - "parameter": "gov.contrib.individual_eitc", - "description": null, - "label": "Individual EITCs", - "economy": true, - "household": true - }, - "gov.contrib.individual_eitc.agi_eitc_limit": { - "type": "parameter", - "parameter": "gov.contrib.individual_eitc.agi_eitc_limit", - "description": "Tax filers with combined earned income over this cannot claim the EITC. This is only active if the Winship EITC reform is active.", - "label": "EITC AGI limit", - "unit": "currency-USD", - "period": "year", - "values": { - "2020-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.individual_eitc.enabled": { - "type": "parameter", - "parameter": "gov.contrib.individual_eitc.enabled", - "description": "A proposal by Scott Winship to assess EITC income at the individual level, regardless of filing status.", - "label": "Individual-income EITCs", - "unit": "bool", - "period": null, - "values": { - "2020-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.local": { - "type": "parameterNode", - "parameter": "gov.contrib.local", - "description": null, - "label": "local", - "economy": true, - "household": true - }, - "gov.contrib.local.nyc": { - "type": "parameterNode", - "parameter": "gov.contrib.local.nyc", - "description": null, - "label": "nyc", - "economy": true, - "household": true - }, - "gov.contrib.local.nyc.stc": { - "type": "parameterNode", - "parameter": "gov.contrib.local.nyc.stc", - "description": null, - "label": "stc", - "economy": true, - "household": true - }, - "gov.contrib.local.nyc.stc.min_children": { - "type": "parameter", - "parameter": "gov.contrib.local.nyc.stc.min_children", - "description": "Limit NYC School Tax Credit eligibility to tax units with at least this many children.", - "label": "NYC School Tax Credit Minimum Number of Children", - "unit": "single_amount", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.local.nyc.stc.adjust_income_limit_by_filing_status_and_eligibility_by_children": { - "type": "parameter", - "parameter": "gov.contrib.local.nyc.stc.adjust_income_limit_by_filing_status_and_eligibility_by_children", - "description": "Adjust the NYC School Tax Credit (Fixed and Rate Reduction components) Income Limit by Filing Status and Eligibility by Children.", - "label": "Adjust NYC STC Income Limit by Filing Status and Eligibility by Children", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.local.nyc.stc.income_limit": { - "type": "parameterNode", - "parameter": "gov.contrib.local.nyc.stc.income_limit", - "description": "Limit NYC School Tax Credit eligibility by filing status to filers with NY AGI not above this amount.", - "label": "NYC School Tax Credit Income Limit", - "economy": true, - "household": true - }, - "gov.contrib.local.nyc.stc.income_limit.SINGLE": { - "type": "parameter", - "parameter": "gov.contrib.local.nyc.stc.income_limit.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 250000, - "2015-01-01": 250000 - }, - "economy": true, - "household": true - }, - "gov.contrib.local.nyc.stc.income_limit.SEPARATE": { - "type": "parameter", - "parameter": "gov.contrib.local.nyc.stc.income_limit.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 250000, - "2015-01-01": 250000 - }, - "economy": true, - "household": true - }, - "gov.contrib.local.nyc.stc.income_limit.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.contrib.local.nyc.stc.income_limit.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2022-01-01": 250000, - "2015-01-01": 250000 - }, - "economy": true, - "household": true - }, - "gov.contrib.local.nyc.stc.income_limit.JOINT": { - "type": "parameter", - "parameter": "gov.contrib.local.nyc.stc.income_limit.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2022-01-01": 250000, - "2015-01-01": 250000 - }, - "economy": true, - "household": true - }, - "gov.contrib.local.nyc.stc.income_limit.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.contrib.local.nyc.stc.income_limit.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 250000, - "2015-01-01": 250000 - }, - "economy": true, - "household": true - }, - "gov.contrib.local.nyc.stc.phase_out": { - "type": "parameterNode", - "parameter": "gov.contrib.local.nyc.stc.phase_out", - "description": null, - "label": "phase out", - "economy": true, - "household": true - }, - "gov.contrib.local.nyc.stc.phase_out.rate": { - "type": "parameterNode", - "parameter": "gov.contrib.local.nyc.stc.phase_out.rate", - "description": null, - "label": "rate", - "economy": true, - "household": true - }, - "gov.contrib.local.nyc.stc.phase_out.rate.other": { - "type": "parameterNode", - "parameter": "gov.contrib.local.nyc.stc.phase_out.rate.other", - "description": "New York reduces the NYC school tax credit for single, separate, and head of household filers, based on state adjusted gross income.", - "label": "NYC school tax credit other reduction rate" - }, - "gov.contrib.local.nyc.stc.phase_out.rate.other[0]": { - "type": "parameterNode", - "parameter": "gov.contrib.local.nyc.stc.phase_out.rate.other[0]", - "description": null, - "label": "bracket 1" - }, - "gov.contrib.local.nyc.stc.phase_out.rate.other[0].rate": { - "type": "parameter", - "parameter": "gov.contrib.local.nyc.stc.phase_out.rate.other[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2025-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.local.nyc.stc.phase_out.rate.other[0].threshold": { - "type": "parameter", - "parameter": "gov.contrib.local.nyc.stc.phase_out.rate.other[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.local.nyc.stc.phase_out.rate.other[1]": { - "type": "parameterNode", - "parameter": "gov.contrib.local.nyc.stc.phase_out.rate.other[1]", - "description": null, - "label": "bracket 2" - }, - "gov.contrib.local.nyc.stc.phase_out.rate.other[1].rate": { - "type": "parameter", - "parameter": "gov.contrib.local.nyc.stc.phase_out.rate.other[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2025-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.contrib.local.nyc.stc.phase_out.rate.other[1].threshold": { - "type": "parameter", - "parameter": "gov.contrib.local.nyc.stc.phase_out.rate.other[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": 75000, - "2015-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.contrib.local.nyc.stc.phase_out.rate.joint_and_surviving_spouse": { - "type": "parameterNode", - "parameter": "gov.contrib.local.nyc.stc.phase_out.rate.joint_and_surviving_spouse", - "description": "New York reduces the NYC school tax credit for joint filers and surviving spouses at this rate, based on state adjusted gross income.", - "label": "NYC school tax credit joint and surviving spouse reduction rate" - }, - "gov.contrib.local.nyc.stc.phase_out.rate.joint_and_surviving_spouse[0]": { - "type": "parameterNode", - "parameter": "gov.contrib.local.nyc.stc.phase_out.rate.joint_and_surviving_spouse[0]", - "description": null, - "label": "bracket 1" - }, - "gov.contrib.local.nyc.stc.phase_out.rate.joint_and_surviving_spouse[0].rate": { - "type": "parameter", - "parameter": "gov.contrib.local.nyc.stc.phase_out.rate.joint_and_surviving_spouse[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2025-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.local.nyc.stc.phase_out.rate.joint_and_surviving_spouse[0].threshold": { - "type": "parameter", - "parameter": "gov.contrib.local.nyc.stc.phase_out.rate.joint_and_surviving_spouse[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.local.nyc.stc.phase_out.rate.joint_and_surviving_spouse[1]": { - "type": "parameterNode", - "parameter": "gov.contrib.local.nyc.stc.phase_out.rate.joint_and_surviving_spouse[1]", - "description": null, - "label": "bracket 2" - }, - "gov.contrib.local.nyc.stc.phase_out.rate.joint_and_surviving_spouse[1].rate": { - "type": "parameter", - "parameter": "gov.contrib.local.nyc.stc.phase_out.rate.joint_and_surviving_spouse[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2025-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.contrib.local.nyc.stc.phase_out.rate.joint_and_surviving_spouse[1].threshold": { - "type": "parameter", - "parameter": "gov.contrib.local.nyc.stc.phase_out.rate.joint_and_surviving_spouse[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.contrib.local.nyc.stc.phase_out.in_effect": { - "type": "parameter", - "parameter": "gov.contrib.local.nyc.stc.phase_out.in_effect", - "description": "The NYC school tax credit phases out with state adjusted gross income, if this is true.", - "label": "NYC school tax credit phase out in effect", - "unit": "bool", - "period": "year", - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.cbo": { - "type": "parameterNode", - "parameter": "gov.contrib.cbo", - "description": null, - "label": "Congressional Budget Office", - "economy": true, - "household": true - }, - "gov.contrib.cbo.payroll": { - "type": "parameterNode", - "parameter": "gov.contrib.cbo.payroll", - "description": null, - "label": "payroll", - "economy": true, - "household": true - }, - "gov.contrib.cbo.payroll.secondary_earnings_threshold": { - "type": "parameter", - "parameter": "gov.contrib.cbo.payroll.secondary_earnings_threshold", - "description": "The US levies payroll taxes on earnings greater than this amount, in addition to earnings below the maximum taxable amount under current law.", - "label": "Social Security payroll tax secondary earnings threshold", - "unit": "USD", - "period": null, - "values": { - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.contrib.congress": { - "type": "parameterNode", - "parameter": "gov.contrib.congress", - "description": null, - "label": "congress", - "economy": true, - "household": true - }, - "gov.contrib.congress.delauro": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.delauro", - "description": null, - "label": "Rep Rosa DeLauro", - "economy": true, - "household": true - }, - "gov.contrib.congress.delauro.american_family_act": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.delauro.american_family_act", - "description": null, - "label": "American Family Act", - "economy": true, - "household": true - }, - "gov.contrib.congress.delauro.american_family_act.baby_bonus": { - "type": "parameter", - "parameter": "gov.contrib.congress.delauro.american_family_act.baby_bonus", - "description": "The Child Tax Credit increases by this amount for newborns, above the normal amount for young children.", - "label": "American Family Act baby bonus", - "unit": "float", - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.golden": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.golden", - "description": null, - "label": "golden", - "economy": true, - "household": true - }, - "gov.contrib.congress.golden.fisc_act": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.golden.fisc_act", - "description": null, - "label": "fisc act", - "economy": true, - "household": true - }, - "gov.contrib.congress.golden.fisc_act.family_income_supplement": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.golden.fisc_act.family_income_supplement", - "description": null, - "label": "family income supplement", - "economy": true, - "household": true - }, - "gov.contrib.congress.golden.fisc_act.family_income_supplement.agi_fraction": { - "type": "parameter", - "parameter": "gov.contrib.congress.golden.fisc_act.family_income_supplement.agi_fraction", - "description": "Representative Jared Golden capped his proposed monthly family income supplement at this fraction of adjusted gross income in the prior tax year.", - "label": "FISC cap as fraction of AGI", - "unit": "/1", - "period": "year", - "values": { - "2026-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.golden.fisc_act.family_income_supplement.amount": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.golden.fisc_act.family_income_supplement.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.contrib.congress.golden.fisc_act.family_income_supplement.amount.base": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.golden.fisc_act.family_income_supplement.amount.base", - "description": "Representative Jared Golden proposed a family income supplement of this amount for each child, based on age.", - "label": "FISC Act family income supplement base amount" - }, - "gov.contrib.congress.golden.fisc_act.family_income_supplement.amount.base[0]": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.golden.fisc_act.family_income_supplement.amount.base[0]", - "description": null, - "label": "bracket 1" - }, - "gov.contrib.congress.golden.fisc_act.family_income_supplement.amount.base[0].threshold": { - "type": "parameter", - "parameter": "gov.contrib.congress.golden.fisc_act.family_income_supplement.amount.base[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2026-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.golden.fisc_act.family_income_supplement.amount.base[0].amount": { - "type": "parameter", - "parameter": "gov.contrib.congress.golden.fisc_act.family_income_supplement.amount.base[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2026-01-01": 8000, - "2015-01-01": 8000 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.golden.fisc_act.family_income_supplement.amount.base[1]": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.golden.fisc_act.family_income_supplement.amount.base[1]", - "description": null, - "label": "bracket 2" - }, - "gov.contrib.congress.golden.fisc_act.family_income_supplement.amount.base[1].threshold": { - "type": "parameter", - "parameter": "gov.contrib.congress.golden.fisc_act.family_income_supplement.amount.base[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2026-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.golden.fisc_act.family_income_supplement.amount.base[1].amount": { - "type": "parameter", - "parameter": "gov.contrib.congress.golden.fisc_act.family_income_supplement.amount.base[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2026-01-01": 4800, - "2015-01-01": 4800 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.golden.fisc_act.family_income_supplement.amount.base[2]": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.golden.fisc_act.family_income_supplement.amount.base[2]", - "description": null, - "label": "bracket 3" - }, - "gov.contrib.congress.golden.fisc_act.family_income_supplement.amount.base[2].threshold": { - "type": "parameter", - "parameter": "gov.contrib.congress.golden.fisc_act.family_income_supplement.amount.base[2].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2026-01-01": 6, - "2015-01-01": 6 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.golden.fisc_act.family_income_supplement.amount.base[2].amount": { - "type": "parameter", - "parameter": "gov.contrib.congress.golden.fisc_act.family_income_supplement.amount.base[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2026-01-01": 3000, - "2015-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.golden.fisc_act.family_income_supplement.amount.pregnancy": { - "type": "parameter", - "parameter": "gov.contrib.congress.golden.fisc_act.family_income_supplement.amount.pregnancy", - "description": "Representative Jared Golden proposed a family income supplement of this amount for pregnant women.", - "label": "FISC Act family income supplement pregnant amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2026-01-01": 3200, - "2015-01-01": 3200 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.golden.fisc_act.family_income_supplement.marriage_bonus_rate": { - "type": "parameter", - "parameter": "gov.contrib.congress.golden.fisc_act.family_income_supplement.marriage_bonus_rate", - "description": "Representative Jared Golden proposed a family income supplement with a marriage bonus of this percentage of the total credit.", - "label": "FISC Act family income supplement marriage bonus rate", - "unit": "/1", - "period": "year", - "values": { - "2026-01-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.golden.fisc_act.family_income_supplement.phase_out": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.golden.fisc_act.family_income_supplement.phase_out", - "description": null, - "label": "phase out", - "economy": true, - "household": true - }, - "gov.contrib.congress.golden.fisc_act.family_income_supplement.phase_out.other": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.golden.fisc_act.family_income_supplement.phase_out.other", - "description": "Representative Jared Golden proposed a family income supplement which is phased out at this rate for non-joint filers, based on adjusted gross income.", - "label": "FISC Act family income supplement other filers phase-out rate" - }, - "gov.contrib.congress.golden.fisc_act.family_income_supplement.phase_out.other[0]": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.golden.fisc_act.family_income_supplement.phase_out.other[0]", - "description": null, - "label": "bracket 1" - }, - "gov.contrib.congress.golden.fisc_act.family_income_supplement.phase_out.other[0].rate": { - "type": "parameter", - "parameter": "gov.contrib.congress.golden.fisc_act.family_income_supplement.phase_out.other[0].rate", - "description": null, - "label": "rate", - "unit": null, - "period": null, - "values": { - "2026-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.golden.fisc_act.family_income_supplement.phase_out.other[0].threshold": { - "type": "parameter", - "parameter": "gov.contrib.congress.golden.fisc_act.family_income_supplement.phase_out.other[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2026-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.golden.fisc_act.family_income_supplement.phase_out.other[1]": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.golden.fisc_act.family_income_supplement.phase_out.other[1]", - "description": null, - "label": "bracket 2" - }, - "gov.contrib.congress.golden.fisc_act.family_income_supplement.phase_out.other[1].rate": { - "type": "parameter", - "parameter": "gov.contrib.congress.golden.fisc_act.family_income_supplement.phase_out.other[1].rate", - "description": null, - "label": "rate", - "unit": null, - "period": null, - "values": { - "2026-01-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.golden.fisc_act.family_income_supplement.phase_out.other[1].threshold": { - "type": "parameter", - "parameter": "gov.contrib.congress.golden.fisc_act.family_income_supplement.phase_out.other[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2026-01-01": 125000, - "2015-01-01": 125000 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.golden.fisc_act.family_income_supplement.phase_out.joint": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.golden.fisc_act.family_income_supplement.phase_out.joint", - "description": "Representative Jared Golden proposed a family income supplement which is phased out at this rate for joint filers, based on adjusted gross income.", - "label": "FISC Act family income supplement joint phase-out rate" - }, - "gov.contrib.congress.golden.fisc_act.family_income_supplement.phase_out.joint[0]": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.golden.fisc_act.family_income_supplement.phase_out.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.contrib.congress.golden.fisc_act.family_income_supplement.phase_out.joint[0].rate": { - "type": "parameter", - "parameter": "gov.contrib.congress.golden.fisc_act.family_income_supplement.phase_out.joint[0].rate", - "description": null, - "label": "rate", - "unit": null, - "period": null, - "values": { - "2026-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.golden.fisc_act.family_income_supplement.phase_out.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.contrib.congress.golden.fisc_act.family_income_supplement.phase_out.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2026-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.golden.fisc_act.family_income_supplement.phase_out.joint[1]": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.golden.fisc_act.family_income_supplement.phase_out.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.contrib.congress.golden.fisc_act.family_income_supplement.phase_out.joint[1].rate": { - "type": "parameter", - "parameter": "gov.contrib.congress.golden.fisc_act.family_income_supplement.phase_out.joint[1].rate", - "description": null, - "label": "rate", - "unit": null, - "period": null, - "values": { - "2026-01-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.golden.fisc_act.family_income_supplement.phase_out.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.contrib.congress.golden.fisc_act.family_income_supplement.phase_out.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2026-01-01": 250000, - "2015-01-01": 250000 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.golden.fisc_act.family_income_supplement.caregiver_age_threshold": { - "type": "parameter", - "parameter": "gov.contrib.congress.golden.fisc_act.family_income_supplement.caregiver_age_threshold", - "description": "Representative Jared Golden proposed a family income supplement which is limited to caregivers of this age or older.", - "label": "FISC Act family income supplement caregiver age threshold", - "unit": "year", - "period": "year", - "values": { - "2026-01-01": 18, - "2015-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.golden.fisc_act.family_income_supplement.child_age_limit": { - "type": "parameter", - "parameter": "gov.contrib.congress.golden.fisc_act.family_income_supplement.child_age_limit", - "description": "Representative Jared Golden proposed a family income supplement which is limited to children under this age.", - "label": "FISC Act family income supplement child age threshold", - "unit": "year", - "period": "year", - "values": { - "2026-01-01": 18, - "2015-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.golden.fisc_act.in_effect": { - "type": "parameter", - "parameter": "gov.contrib.congress.golden.fisc_act.in_effect", - "description": "The proposed Family Income Supplemental Credit Act applies if this is true.", - "label": "FISC Act in effect", - "unit": "bool", - "period": "year", - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.afa": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.afa", - "description": null, - "label": "afa", - "economy": true, - "household": true - }, - "gov.contrib.congress.afa.ctc": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.afa.ctc", - "description": null, - "label": "ctc", - "economy": true, - "household": true - }, - "gov.contrib.congress.afa.ctc.amount": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.afa.ctc.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.contrib.congress.afa.ctc.amount.multiplier": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.afa.ctc.amount.multiplier", - "description": "Senator Michael Bennet proposed a child tax credit with a multiplier of this amount of the base amount, based on the child's age.", - "label": "AFA CTC multiplier" - }, - "gov.contrib.congress.afa.ctc.amount.multiplier[0]": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.afa.ctc.amount.multiplier[0]", - "description": null, - "label": "bracket 1" - }, - "gov.contrib.congress.afa.ctc.amount.multiplier[0].threshold": { - "type": "parameter", - "parameter": "gov.contrib.congress.afa.ctc.amount.multiplier[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2025-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.afa.ctc.amount.multiplier[0].amount": { - "type": "parameter", - "parameter": "gov.contrib.congress.afa.ctc.amount.multiplier[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2025-01-01": 1.2, - "2015-01-01": 1.2 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.afa.ctc.amount.multiplier[1]": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.afa.ctc.amount.multiplier[1]", - "description": null, - "label": "bracket 2" - }, - "gov.contrib.congress.afa.ctc.amount.multiplier[1].threshold": { - "type": "parameter", - "parameter": "gov.contrib.congress.afa.ctc.amount.multiplier[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2025-01-01": 6, - "2015-01-01": 6 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.afa.ctc.amount.multiplier[1].amount": { - "type": "parameter", - "parameter": "gov.contrib.congress.afa.ctc.amount.multiplier[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2025-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.afa.ctc.amount.multiplier[2]": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.afa.ctc.amount.multiplier[2]", - "description": null, - "label": "bracket 3" - }, - "gov.contrib.congress.afa.ctc.amount.multiplier[2].threshold": { - "type": "parameter", - "parameter": "gov.contrib.congress.afa.ctc.amount.multiplier[2].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2025-01-01": 18, - "2015-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.afa.ctc.amount.multiplier[2].amount": { - "type": "parameter", - "parameter": "gov.contrib.congress.afa.ctc.amount.multiplier[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2025-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.afa.ctc.amount.base": { - "type": "parameter", - "parameter": "gov.contrib.congress.afa.ctc.amount.base", - "description": "Senator Michael Bennet proposed a child tax credit of this base amount.", - "label": "AFA CTC base amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 4440, - "2034-01-01": 4320, - "2033-01-01": 4200, - "2032-01-01": 4080, - "2031-01-01": 4080, - "2030-01-01": 3960, - "2029-01-01": 3840, - "2028-01-01": 3840, - "2027-01-01": 3720, - "2026-01-01": 3600, - "2025-01-01": 3600, - "2015-01-01": 3600 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.afa.ctc.amount.baby_bonus": { - "type": "parameter", - "parameter": "gov.contrib.congress.afa.ctc.amount.baby_bonus", - "description": "Senator Michael Bennet proposed a child tax credit with a baby bonus of this percentage of the base amount, in the first month of the child's life.", - "label": "AFA CTC baby bonus", - "unit": "/1", - "period": "year", - "values": { - "2025-01-01": 8, - "2015-01-01": 8 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.afa.ctc.phase_out": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.afa.ctc.phase_out", - "description": null, - "label": "Phase-out", - "economy": true, - "household": true - }, - "gov.contrib.congress.afa.ctc.phase_out.increment": { - "type": "parameter", - "parameter": "gov.contrib.congress.afa.ctc.phase_out.increment", - "description": "Senator Michael Bennet proposed a child tax credit and other dependent credit which phase out by a certain amount for each increment by which one's income exceeds the phase-out thresholds.", - "label": "AFA CTC phase-out increment", - "unit": "currency-USD", - "period": "year", - "values": { - "2025-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.afa.ctc.phase_out.lower_floor": { - "type": "parameter", - "parameter": "gov.contrib.congress.afa.ctc.phase_out.lower_floor", - "description": "Senator Michael Bennet proposed a child tax credit which is partially reduced to this amount beginning at the lower threshold before being fully phased out at the higher threshold.", - "label": "AFA CTC phase-out lower floor", - "unit": "currency-USD", - "period": "year", - "values": { - "2025-01-01": 2000, - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.afa.ctc.phase_out.amount": { - "type": "parameter", - "parameter": "gov.contrib.congress.afa.ctc.phase_out.amount", - "description": "Senator Michael Bennet proposed a child tax credit and other dependent credit which phase out by this amount for each increment by which one's income exceeds the phase-out thresholds.", - "label": "AFA CTC phase-out amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2025-01-01": 50, - "2015-01-01": 50 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.afa.ctc.phase_out.threshold": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.afa.ctc.phase_out.threshold", - "description": null, - "label": "threshold", - "economy": true, - "household": true - }, - "gov.contrib.congress.afa.ctc.phase_out.threshold.lower": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.afa.ctc.phase_out.threshold.lower", - "description": "Senator Michael Bennet proposed a child tax credit which phases out partially for filers with AGI above these thresholds, based on filing status.", - "label": "AFA CTC phase-out lower threshold", - "economy": true, - "household": true - }, - "gov.contrib.congress.afa.ctc.phase_out.threshold.lower.SINGLE": { - "type": "parameter", - "parameter": "gov.contrib.congress.afa.ctc.phase_out.threshold.lower.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 135000, - "2034-01-01": 135000, - "2033-01-01": 130000, - "2032-01-01": 130000, - "2031-01-01": 125000, - "2030-01-01": 125000, - "2029-01-01": 120000, - "2028-01-01": 120000, - "2027-01-01": 115000, - "2026-01-01": 115000, - "2025-01-01": 112500, - "2015-01-01": 112500 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.afa.ctc.phase_out.threshold.lower.JOINT": { - "type": "parameter", - "parameter": "gov.contrib.congress.afa.ctc.phase_out.threshold.lower.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 185000, - "2034-01-01": 180000, - "2033-01-01": 175000, - "2032-01-01": 170000, - "2031-01-01": 170000, - "2030-01-01": 165000, - "2029-01-01": 160000, - "2028-01-01": 160000, - "2027-01-01": 155000, - "2026-01-01": 150000, - "2025-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.afa.ctc.phase_out.threshold.lower.SEPARATE": { - "type": "parameter", - "parameter": "gov.contrib.congress.afa.ctc.phase_out.threshold.lower.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 90000, - "2034-01-01": 90000, - "2033-01-01": 90000, - "2032-01-01": 85000, - "2031-01-01": 85000, - "2030-01-01": 85000, - "2029-01-01": 80000, - "2028-01-01": 80000, - "2027-01-01": 80000, - "2026-01-01": 75000, - "2025-01-01": 75000, - "2015-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.afa.ctc.phase_out.threshold.lower.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.contrib.congress.afa.ctc.phase_out.threshold.lower.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 135000, - "2034-01-01": 135000, - "2033-01-01": 130000, - "2032-01-01": 130000, - "2031-01-01": 125000, - "2030-01-01": 125000, - "2029-01-01": 120000, - "2028-01-01": 120000, - "2027-01-01": 115000, - "2026-01-01": 115000, - "2025-01-01": 112500, - "2015-01-01": 112500 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.afa.ctc.phase_out.threshold.lower.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.contrib.congress.afa.ctc.phase_out.threshold.lower.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 185000, - "2034-01-01": 180000, - "2033-01-01": 175000, - "2032-01-01": 170000, - "2031-01-01": 170000, - "2030-01-01": 165000, - "2029-01-01": 160000, - "2028-01-01": 160000, - "2027-01-01": 155000, - "2026-01-01": 150000, - "2025-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.afa.ctc.phase_out.threshold.higher": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.afa.ctc.phase_out.threshold.higher", - "description": "Senator Michael Bennet proposed an other dependent credit which phases out fully for filers with AGI above these thresholds, based on filing status.", - "label": "AFA CTC phase-out higher threshold", - "economy": true, - "household": true - }, - "gov.contrib.congress.afa.ctc.phase_out.threshold.higher.SINGLE": { - "type": "parameter", - "parameter": "gov.contrib.congress.afa.ctc.phase_out.threshold.higher.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2025-01-01": 300000, - "2015-01-01": 300000 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.afa.ctc.phase_out.threshold.higher.JOINT": { - "type": "parameter", - "parameter": "gov.contrib.congress.afa.ctc.phase_out.threshold.higher.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2025-01-01": 400000, - "2015-01-01": 400000 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.afa.ctc.phase_out.threshold.higher.SEPARATE": { - "type": "parameter", - "parameter": "gov.contrib.congress.afa.ctc.phase_out.threshold.higher.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2025-01-01": 200000, - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.afa.ctc.phase_out.threshold.higher.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.contrib.congress.afa.ctc.phase_out.threshold.higher.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2025-01-01": 300000, - "2015-01-01": 300000 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.afa.ctc.phase_out.threshold.higher.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.contrib.congress.afa.ctc.phase_out.threshold.higher.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2025-01-01": 400000, - "2015-01-01": 400000 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.afa.other_dependent_credit": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.afa.other_dependent_credit", - "description": null, - "label": "other dependent credit", - "economy": true, - "household": true - }, - "gov.contrib.congress.afa.other_dependent_credit.amount": { - "type": "parameter", - "parameter": "gov.contrib.congress.afa.other_dependent_credit.amount", - "description": "Senator Michael Bennet proposed a nonrefundable other dependent credit for each qualifying child of this amount.", - "label": "AFA other dependent credit amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2025-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.afa.in_effect": { - "type": "parameter", - "parameter": "gov.contrib.congress.afa.in_effect", - "description": "Senator Michael Bennet's American Family Act of 2025 applies if this is true.", - "label": "AFA in effect", - "unit": "bool", - "period": "year", - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.romney": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.romney", - "description": null, - "label": "Senator Mitt Romney", - "economy": true, - "household": true - }, - "gov.contrib.congress.romney.family_security_act_2_0": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.romney.family_security_act_2_0", - "description": null, - "label": "Family Security Act 2.0", - "economy": true, - "household": true - }, - "gov.contrib.congress.romney.family_security_act_2_0.eitc": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.romney.family_security_act_2_0.eitc", - "description": null, - "label": "eitc", - "economy": true, - "household": true - }, - "gov.contrib.congress.romney.family_security_act_2_0.eitc.apply_eitc_structure": { - "type": "parameter", - "parameter": "gov.contrib.congress.romney.family_security_act_2_0.eitc.apply_eitc_structure", - "description": "Senator Mitt Romney proposed structural changes to the Earned Income Tax Credit in the Family Security Act 2.0, which apply if this is true.", - "label": "Apply Family Security Act 2.0 structure of EITC", - "unit": "bool", - "period": "year", - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.romney.family_security_act_2_0.eitc.amount": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.romney.family_security_act_2_0.eitc.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.contrib.congress.romney.family_security_act_2_0.eitc.amount.joint": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.romney.family_security_act_2_0.eitc.amount.joint", - "description": "Under the Family Security Act 2.0, this maximum EITC amount is provided for joint filers, based on number of children.", - "label": "Family Security Act 2.0 EITC joint max amount" - }, - "gov.contrib.congress.romney.family_security_act_2_0.eitc.amount.joint[0]": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.romney.family_security_act_2_0.eitc.amount.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.contrib.congress.romney.family_security_act_2_0.eitc.amount.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.contrib.congress.romney.family_security_act_2_0.eitc.amount.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.romney.family_security_act_2_0.eitc.amount.joint[0].amount": { - "type": "parameter", - "parameter": "gov.contrib.congress.romney.family_security_act_2_0.eitc.amount.joint[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.romney.family_security_act_2_0.eitc.amount.joint[1]": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.romney.family_security_act_2_0.eitc.amount.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.contrib.congress.romney.family_security_act_2_0.eitc.amount.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.contrib.congress.romney.family_security_act_2_0.eitc.amount.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2022-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.romney.family_security_act_2_0.eitc.amount.joint[1].amount": { - "type": "parameter", - "parameter": "gov.contrib.congress.romney.family_security_act_2_0.eitc.amount.joint[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.romney.family_security_act_2_0.eitc.amount.single": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.romney.family_security_act_2_0.eitc.amount.single", - "description": "Under the Family Security Act 2.0, this maximum EITC amount is provided for single filers, based on number of children.", - "label": "Family Security Act 2.0 EITC single max amount" - }, - "gov.contrib.congress.romney.family_security_act_2_0.eitc.amount.single[0]": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.romney.family_security_act_2_0.eitc.amount.single[0]", - "description": null, - "label": "bracket 1" - }, - "gov.contrib.congress.romney.family_security_act_2_0.eitc.amount.single[0].threshold": { - "type": "parameter", - "parameter": "gov.contrib.congress.romney.family_security_act_2_0.eitc.amount.single[0].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.romney.family_security_act_2_0.eitc.amount.single[0].amount": { - "type": "parameter", - "parameter": "gov.contrib.congress.romney.family_security_act_2_0.eitc.amount.single[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.romney.family_security_act_2_0.eitc.amount.single[1]": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.romney.family_security_act_2_0.eitc.amount.single[1]", - "description": null, - "label": "bracket 2" - }, - "gov.contrib.congress.romney.family_security_act_2_0.eitc.amount.single[1].threshold": { - "type": "parameter", - "parameter": "gov.contrib.congress.romney.family_security_act_2_0.eitc.amount.single[1].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2022-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.romney.family_security_act_2_0.eitc.amount.single[1].amount": { - "type": "parameter", - "parameter": "gov.contrib.congress.romney.family_security_act_2_0.eitc.amount.single[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.romney.family_security_act_2_0.ctc": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.romney.family_security_act_2_0.ctc", - "description": null, - "label": "ctc", - "economy": true, - "household": true - }, - "gov.contrib.congress.romney.family_security_act_2_0.ctc.phase_in": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.romney.family_security_act_2_0.ctc.phase_in", - "description": null, - "label": "phase in", - "economy": true, - "household": true - }, - "gov.contrib.congress.romney.family_security_act_2_0.ctc.phase_in.income_phase_in_end": { - "type": "parameter", - "parameter": "gov.contrib.congress.romney.family_security_act_2_0.ctc.phase_in.income_phase_in_end", - "description": "Senator Mitt Romney proposed phasing in the Child Tax Credit linearly from zero to this earnings level under the Family Security Act 2.0.", - "label": "Family Security Act 2.0 Child Tax Credit phase-in earnings limit", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.romney.family_security_act_2_0.ctc.base": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.romney.family_security_act_2_0.ctc.base", - "description": "Senator Mitt Romney proposed providing the following Child Tax Credit amount per child under the Family Security Act 2.0, based on age.", - "label": "Family Security Act 2.0 Child Tax Credit amount" - }, - "gov.contrib.congress.romney.family_security_act_2_0.ctc.base[0]": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.romney.family_security_act_2_0.ctc.base[0]", - "description": null, - "label": "bracket 1" - }, - "gov.contrib.congress.romney.family_security_act_2_0.ctc.base[0].threshold": { - "type": "parameter", - "parameter": "gov.contrib.congress.romney.family_security_act_2_0.ctc.base[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.romney.family_security_act_2_0.ctc.base[0].amount": { - "type": "parameter", - "parameter": "gov.contrib.congress.romney.family_security_act_2_0.ctc.base[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.romney.family_security_act_2_0.ctc.base[1]": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.romney.family_security_act_2_0.ctc.base[1]", - "description": null, - "label": "bracket 2" - }, - "gov.contrib.congress.romney.family_security_act_2_0.ctc.base[1].threshold": { - "type": "parameter", - "parameter": "gov.contrib.congress.romney.family_security_act_2_0.ctc.base[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 6, - "2015-01-01": 6 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.romney.family_security_act_2_0.ctc.base[1].amount": { - "type": "parameter", - "parameter": "gov.contrib.congress.romney.family_security_act_2_0.ctc.base[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.romney.family_security_act_2_0.ctc.base[2]": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.romney.family_security_act_2_0.ctc.base[2]", - "description": null, - "label": "bracket 3" - }, - "gov.contrib.congress.romney.family_security_act_2_0.ctc.base[2].threshold": { - "type": "parameter", - "parameter": "gov.contrib.congress.romney.family_security_act_2_0.ctc.base[2].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 18, - "2015-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.romney.family_security_act_2_0.ctc.base[2].amount": { - "type": "parameter", - "parameter": "gov.contrib.congress.romney.family_security_act_2_0.ctc.base[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.romney.family_security_act_2_0.ctc.child_cap": { - "type": "parameter", - "parameter": "gov.contrib.congress.romney.family_security_act_2_0.ctc.child_cap", - "description": "Senator Mitt Romney proposed limiting the Child Tax Credit to this number of children per filer under the Family Security Act 2.0.", - "label": "Family Security Act 2.0 Child Tax Credit child cap", - "unit": "child", - "period": "year", - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.romney.family_security_act_2_0.ctc.apply_ctc_structure": { - "type": "parameter", - "parameter": "gov.contrib.congress.romney.family_security_act_2_0.ctc.apply_ctc_structure", - "description": "Senator Mitt Romney proposed structural changes to the Child Tax Credit in the Family Security Act 2.0, which apply if this is true.", - "label": "Apply Family Security Act 2.0 structure of CTC", - "unit": "bool", - "period": "year", - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.romney.family_security_act": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.romney.family_security_act", - "description": null, - "label": "Family Security Act", - "economy": true, - "household": true - }, - "gov.contrib.congress.romney.family_security_act.remove_head_of_household": { - "type": "parameter", - "parameter": "gov.contrib.congress.romney.family_security_act.remove_head_of_household", - "description": "The head of household filing status will be eliminated if this is true.", - "label": "Repeal head of household filing status", - "unit": "bool", - "period": null, - "values": { - "2000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.romney.family_security_act_2024": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.romney.family_security_act_2024", - "description": null, - "label": "family security act 2024", - "economy": true, - "household": true - }, - "gov.contrib.congress.romney.family_security_act_2024.pregnant_mothers_credit": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.romney.family_security_act_2024.pregnant_mothers_credit", - "description": null, - "label": "pregnant mothers credit", - "economy": true, - "household": true - }, - "gov.contrib.congress.romney.family_security_act_2024.pregnant_mothers_credit.income_phase_in_end": { - "type": "parameter", - "parameter": "gov.contrib.congress.romney.family_security_act_2024.pregnant_mothers_credit.income_phase_in_end", - "description": "Senator Mitt Romney proposed phasing in the Pregnant Mothers Tax Credit linearly from zero to this earnings level under the Family Security Act 3.0.", - "label": "Family Security Act 3.0 Child Tax Credit phase-in earnings limit", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.romney.family_security_act_2024.pregnant_mothers_credit.amount": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.romney.family_security_act_2024.pregnant_mothers_credit.amount", - "description": "Under the Family Security Act 3.0, senator Mitt Romney proposed the following pregnant mothers credit amount for newborn children.", - "label": "Family Security Act 3.0 pregnant mothers credit amount" - }, - "gov.contrib.congress.romney.family_security_act_2024.pregnant_mothers_credit.amount[0]": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.romney.family_security_act_2024.pregnant_mothers_credit.amount[0]", - "description": null, - "label": "bracket 1" - }, - "gov.contrib.congress.romney.family_security_act_2024.pregnant_mothers_credit.amount[0].threshold": { - "type": "parameter", - "parameter": "gov.contrib.congress.romney.family_security_act_2024.pregnant_mothers_credit.amount[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2026-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.romney.family_security_act_2024.pregnant_mothers_credit.amount[0].amount": { - "type": "parameter", - "parameter": "gov.contrib.congress.romney.family_security_act_2024.pregnant_mothers_credit.amount[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2026-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.romney.family_security_act_2024.pregnant_mothers_credit.amount[1]": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.romney.family_security_act_2024.pregnant_mothers_credit.amount[1]", - "description": null, - "label": "bracket 2" - }, - "gov.contrib.congress.romney.family_security_act_2024.pregnant_mothers_credit.amount[1].threshold": { - "type": "parameter", - "parameter": "gov.contrib.congress.romney.family_security_act_2024.pregnant_mothers_credit.amount[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2026-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.romney.family_security_act_2024.pregnant_mothers_credit.amount[1].amount": { - "type": "parameter", - "parameter": "gov.contrib.congress.romney.family_security_act_2024.pregnant_mothers_credit.amount[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2026-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.tlaib": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.tlaib", - "description": null, - "label": "Rep Rashida Tlaib", - "economy": true, - "household": true - }, - "gov.contrib.congress.tlaib.boost": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.tlaib.boost", - "description": null, - "label": "boost", - "economy": true, - "household": true - }, - "gov.contrib.congress.tlaib.boost.middle_class_tax_credit": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.tlaib.boost.middle_class_tax_credit", - "description": null, - "label": "middle class tax credit", - "economy": true, - "household": true - }, - "gov.contrib.congress.tlaib.boost.middle_class_tax_credit.administered_through_ssa": { - "type": "parameter", - "parameter": "gov.contrib.congress.tlaib.boost.middle_class_tax_credit.administered_through_ssa", - "description": "The BOOST Act middle class credit is administered through the Social Security Administration if this is true.", - "label": "BOOST Act middle class credit administered through SSA", - "unit": "bool", - "period": "year", - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.tlaib.end_child_poverty_act": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.tlaib.end_child_poverty_act", - "description": null, - "label": "End Child Poverty Act", - "economy": true, - "household": true - }, - "gov.contrib.congress.tlaib.end_child_poverty_act.adult_dependent_credit": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.tlaib.end_child_poverty_act.adult_dependent_credit", - "description": null, - "label": "adult dependent credit", - "economy": true, - "household": true - }, - "gov.contrib.congress.tlaib.end_child_poverty_act.adult_dependent_credit.min_age": { - "type": "parameter", - "parameter": "gov.contrib.congress.tlaib.end_child_poverty_act.adult_dependent_credit.min_age", - "description": "Minimum age to qualify for Rep Tlaib's End Child Poverty Act (2022) adult dependent credit", - "label": "End Child Poverty Act adult dependent credit minimum age", - "unit": "year", - "period": "year", - "values": { - "2023-01-01": 19, - "2015-01-01": 19 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.tlaib.end_child_poverty_act.adult_dependent_credit.amount": { - "type": "parameter", - "parameter": "gov.contrib.congress.tlaib.end_child_poverty_act.adult_dependent_credit.amount", - "description": "Amount of Rep Tlaib's End Child Poverty Act (2022) adult dependent credit", - "label": "End Child Poverty Act adult dependent credit amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 789.881576511057, - "2034-01-01": 774.58623639693, - "2033-01-01": 759.479727642236, - "2032-01-01": 744.750881606409, - "2031-01-01": 730.39969828945, - "2030-01-01": 716.237346331925, - "2029-01-01": 702.263825733833, - "2028-01-01": 688.479136495174, - "2027-01-01": 674.505615897083, - "2026-01-01": 658.28500212173, - "2025-01-01": 648.373558783989, - "2024-01-01": 634.302475316856, - "2023-01-01": 600, - "2015-01-01": 600 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.tlaib.end_child_poverty_act.child_benefit": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.tlaib.end_child_poverty_act.child_benefit", - "description": null, - "label": "child benefit", - "economy": true, - "household": true - }, - "gov.contrib.congress.tlaib.end_child_poverty_act.child_benefit.age_limit": { - "type": "parameter", - "parameter": "gov.contrib.congress.tlaib.end_child_poverty_act.child_benefit.age_limit", - "description": "The child benefit component under the End Child Poverty Act is limited to dependents below this age.", - "label": "End Child Poverty Act child benefit age limit", - "unit": "year", - "period": "year", - "values": { - "2023-01-01": 19, - "2015-01-01": 19 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.tlaib.end_child_poverty_act.in_effect": { - "type": "parameter", - "parameter": "gov.contrib.congress.tlaib.end_child_poverty_act.in_effect", - "description": "Rep Tlaib's End Child Poverty Act applies if this is true.", - "label": "End Child Poverty Act in effect", - "unit": "bool", - "period": "year", - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.tlaib.end_child_poverty_act.filer_credit": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.tlaib.end_child_poverty_act.filer_credit", - "description": null, - "label": "filer credit", - "economy": true, - "household": true - }, - "gov.contrib.congress.tlaib.end_child_poverty_act.filer_credit.eligibility": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.tlaib.end_child_poverty_act.filer_credit.eligibility", - "description": null, - "label": "eligibility", - "economy": true, - "household": true - }, - "gov.contrib.congress.tlaib.end_child_poverty_act.filer_credit.eligibility.min_age": { - "type": "parameter", - "parameter": "gov.contrib.congress.tlaib.end_child_poverty_act.filer_credit.eligibility.min_age", - "description": "Minimum age to qualify for Rep Tlaib's End Child Poverty Act (2022) filer credit", - "label": "End Child Poverty Act filer credit minimum age", - "unit": "year", - "period": null, - "values": { - "2023-01-01": 19, - "2015-01-01": 19 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.tlaib.end_child_poverty_act.filer_credit.eligibility.max_age": { - "type": "parameter", - "parameter": "gov.contrib.congress.tlaib.end_child_poverty_act.filer_credit.eligibility.max_age", - "description": "Maximum age to qualify for Rep Tlaib's End Child Poverty Act (2022) filer credit", - "label": "End Child Poverty Act filer credit maximum age", - "unit": "year", - "period": "year", - "values": { - "2023-01-01": 64, - "2015-01-01": 64 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.tlaib.end_child_poverty_act.filer_credit.phase_out": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.tlaib.end_child_poverty_act.filer_credit.phase_out", - "description": null, - "label": "phase out", - "economy": true, - "household": true - }, - "gov.contrib.congress.tlaib.end_child_poverty_act.filer_credit.phase_out.start": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.tlaib.end_child_poverty_act.filer_credit.phase_out.start", - "description": "Phase-out start for Rep Tlaib's End Child Poverty Act (2022) filer credit", - "label": "End Child Poverty Act filer credit phase-out start", - "economy": true, - "household": true - }, - "gov.contrib.congress.tlaib.end_child_poverty_act.filer_credit.phase_out.start.JOINT": { - "type": "parameter", - "parameter": "gov.contrib.congress.tlaib.end_child_poverty_act.filer_credit.phase_out.start.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 52658.7717674038, - "2034-01-01": 51639.082426462, - "2033-01-01": 50631.9818428157, - "2032-01-01": 49650.0587737606, - "2031-01-01": 48693.3132192967, - "2030-01-01": 47749.1564221283, - "2029-01-01": 46817.5883822555, - "2028-01-01": 45898.6090996783, - "2027-01-01": 44967.0410598055, - "2026-01-01": 43885.6668081153, - "2025-01-01": 43224.9039189326, - "2024-01-01": 42286.8316877904, - "2023-01-01": 40000, - "2015-01-01": 40000 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.tlaib.end_child_poverty_act.filer_credit.phase_out.start.SINGLE": { - "type": "parameter", - "parameter": "gov.contrib.congress.tlaib.end_child_poverty_act.filer_credit.phase_out.start.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 26329.3858837019, - "2034-01-01": 25819.541213231, - "2033-01-01": 25315.9909214079, - "2032-01-01": 24825.0293868803, - "2031-01-01": 24346.6566096483, - "2030-01-01": 23874.5782110642, - "2029-01-01": 23408.7941911278, - "2028-01-01": 22949.3045498391, - "2027-01-01": 22483.5205299028, - "2026-01-01": 21942.8334040577, - "2025-01-01": 21612.4519594663, - "2024-01-01": 21143.4158438952, - "2023-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.tlaib.end_child_poverty_act.filer_credit.phase_out.start.SEPARATE": { - "type": "parameter", - "parameter": "gov.contrib.congress.tlaib.end_child_poverty_act.filer_credit.phase_out.start.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 26329.3858837019, - "2034-01-01": 25819.541213231, - "2033-01-01": 25315.9909214079, - "2032-01-01": 24825.0293868803, - "2031-01-01": 24346.6566096483, - "2030-01-01": 23874.5782110642, - "2029-01-01": 23408.7941911278, - "2028-01-01": 22949.3045498391, - "2027-01-01": 22483.5205299028, - "2026-01-01": 21942.8334040577, - "2025-01-01": 21612.4519594663, - "2024-01-01": 21143.4158438952, - "2023-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.tlaib.end_child_poverty_act.filer_credit.phase_out.start.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.contrib.congress.tlaib.end_child_poverty_act.filer_credit.phase_out.start.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 26329.3858837019, - "2034-01-01": 25819.541213231, - "2033-01-01": 25315.9909214079, - "2032-01-01": 24825.0293868803, - "2031-01-01": 24346.6566096483, - "2030-01-01": 23874.5782110642, - "2029-01-01": 23408.7941911278, - "2028-01-01": 22949.3045498391, - "2027-01-01": 22483.5205299028, - "2026-01-01": 21942.8334040577, - "2025-01-01": 21612.4519594663, - "2024-01-01": 21143.4158438952, - "2023-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.tlaib.end_child_poverty_act.filer_credit.phase_out.start.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.contrib.congress.tlaib.end_child_poverty_act.filer_credit.phase_out.start.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 26329.3858837019, - "2034-01-01": 25819.541213231, - "2033-01-01": 25315.9909214079, - "2032-01-01": 24825.0293868803, - "2031-01-01": 24346.6566096483, - "2030-01-01": 23874.5782110642, - "2029-01-01": 23408.7941911278, - "2028-01-01": 22949.3045498391, - "2027-01-01": 22483.5205299028, - "2026-01-01": 21942.8334040577, - "2025-01-01": 21612.4519594663, - "2024-01-01": 21143.4158438952, - "2023-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.tlaib.end_child_poverty_act.filer_credit.phase_out.rate": { - "type": "parameter", - "parameter": "gov.contrib.congress.tlaib.end_child_poverty_act.filer_credit.phase_out.rate", - "description": "Phase-out rate for Rep Tlaib's End Child Poverty Act (2022) filer credit", - "label": "End Child Poverty Act filer credit phase-out rate", - "unit": "/1", - "period": "year", - "values": { - "2023-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.tlaib.end_child_poverty_act.filer_credit.amount": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.tlaib.end_child_poverty_act.filer_credit.amount", - "description": "Amount of Rep Tlaib's End Child Poverty Act (2022) filer credit", - "label": "End Child Poverty Act filer credit amount", - "economy": true, - "household": true - }, - "gov.contrib.congress.tlaib.end_child_poverty_act.filer_credit.amount.JOINT": { - "type": "parameter", - "parameter": "gov.contrib.congress.tlaib.end_child_poverty_act.filer_credit.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1579.76315302211, - "2034-01-01": 1549.17247279386, - "2033-01-01": 1518.95945528447, - "2032-01-01": 1489.50176321282, - "2031-01-01": 1460.7993965789, - "2030-01-01": 1432.47469266385, - "2029-01-01": 1404.52765146767, - "2028-01-01": 1376.95827299035, - "2027-01-01": 1349.01123179417, - "2026-01-01": 1316.57000424346, - "2025-01-01": 1296.74711756798, - "2024-01-01": 1268.60495063371, - "2023-01-01": 1200, - "2015-01-01": 1200 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.tlaib.end_child_poverty_act.filer_credit.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.contrib.congress.tlaib.end_child_poverty_act.filer_credit.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 789.881576511057, - "2034-01-01": 774.58623639693, - "2033-01-01": 759.479727642236, - "2032-01-01": 744.750881606409, - "2031-01-01": 730.39969828945, - "2030-01-01": 716.237346331925, - "2029-01-01": 702.263825733833, - "2028-01-01": 688.479136495174, - "2027-01-01": 674.505615897083, - "2026-01-01": 658.28500212173, - "2025-01-01": 648.373558783989, - "2024-01-01": 634.302475316856, - "2023-01-01": 600, - "2015-01-01": 600 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.tlaib.end_child_poverty_act.filer_credit.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.contrib.congress.tlaib.end_child_poverty_act.filer_credit.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 789.881576511057, - "2034-01-01": 774.58623639693, - "2033-01-01": 759.479727642236, - "2032-01-01": 744.750881606409, - "2031-01-01": 730.39969828945, - "2030-01-01": 716.237346331925, - "2029-01-01": 702.263825733833, - "2028-01-01": 688.479136495174, - "2027-01-01": 674.505615897083, - "2026-01-01": 658.28500212173, - "2025-01-01": 648.373558783989, - "2024-01-01": 634.302475316856, - "2023-01-01": 600, - "2015-01-01": 600 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.tlaib.end_child_poverty_act.filer_credit.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.contrib.congress.tlaib.end_child_poverty_act.filer_credit.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 789.881576511057, - "2034-01-01": 774.58623639693, - "2033-01-01": 759.479727642236, - "2032-01-01": 744.750881606409, - "2031-01-01": 730.39969828945, - "2030-01-01": 716.237346331925, - "2029-01-01": 702.263825733833, - "2028-01-01": 688.479136495174, - "2027-01-01": 674.505615897083, - "2026-01-01": 658.28500212173, - "2025-01-01": 648.373558783989, - "2024-01-01": 634.302475316856, - "2023-01-01": 600, - "2015-01-01": 600 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.tlaib.end_child_poverty_act.filer_credit.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.contrib.congress.tlaib.end_child_poverty_act.filer_credit.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 789.881576511057, - "2034-01-01": 774.58623639693, - "2033-01-01": 759.479727642236, - "2032-01-01": 744.750881606409, - "2031-01-01": 730.39969828945, - "2030-01-01": 716.237346331925, - "2029-01-01": 702.263825733833, - "2028-01-01": 688.479136495174, - "2027-01-01": 674.505615897083, - "2026-01-01": 658.28500212173, - "2025-01-01": 648.373558783989, - "2024-01-01": 634.302475316856, - "2023-01-01": 600, - "2015-01-01": 600 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.hawley": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.hawley", - "description": null, - "label": "hawley", - "economy": true, - "household": true - }, - "gov.contrib.congress.hawley.awra": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.hawley.awra", - "description": null, - "label": "awra", - "economy": true, - "household": true - }, - "gov.contrib.congress.hawley.awra.amount": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.hawley.awra.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.contrib.congress.hawley.awra.amount.non_joint": { - "type": "parameter", - "parameter": "gov.contrib.congress.hawley.awra.amount.non_joint", - "description": "The American Worker Rebate Act, proposed by Senator Josh Hawley, provides this amount for non-joint filers.", - "label": "American Worker Rebate Act non-joint amount", - "unit": "currency-USD", - "period": "year", - "values": { - "0000-01-01": 600 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.hawley.awra.amount.joint_multiplier": { - "type": "parameter", - "parameter": "gov.contrib.congress.hawley.awra.amount.joint_multiplier", - "description": "The American Worker Rebate Act, proposed by Senator Josh Hawley, provides this multiple of the non-joint rebate amount for joint filers.", - "label": "American Worker Rebate Act non-joint multiplier", - "unit": "/1", - "period": "year", - "values": { - "0000-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.hawley.awra.eligible_immigration_statuses": { - "type": "parameter", - "parameter": "gov.contrib.congress.hawley.awra.eligible_immigration_statuses", - "description": "The tax rebate, proposed by the American Worker Rebate Act, is limited to filers of the following immigration statuses.", - "label": "American Worker Rebate Act eligible immigration statuses", - "unit": "list", - "period": "year", - "values": { - "0000-01-01": ["CITIZEN", "LEGAL_PERMANENT_RESIDENT"] - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.hawley.awra.in_effect": { - "type": "parameter", - "parameter": "gov.contrib.congress.hawley.awra.in_effect", - "description": "The American Worker Rebate Act, proposed by Senator Josh Hawley, applies, if this is true.", - "label": "American Worker Rebate Act in effect", - "unit": "bool", - "period": "year", - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.hawley.awra.phase_out": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.hawley.awra.phase_out", - "description": null, - "label": "phase out", - "economy": true, - "household": true - }, - "gov.contrib.congress.hawley.awra.phase_out.start": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.hawley.awra.phase_out.start", - "description": "The tax rebate, proposed by the American Worker Rebate Act, phases out the rebate for filers with adjusted gross income above this threshold, based on filing status.", - "label": "American Worker Rebate Act phase-out start", - "economy": true, - "household": true - }, - "gov.contrib.congress.hawley.awra.phase_out.start.SINGLE": { - "type": "parameter", - "parameter": "gov.contrib.congress.hawley.awra.phase_out.start.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "0000-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.hawley.awra.phase_out.start.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.contrib.congress.hawley.awra.phase_out.start.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "0000-01-01": 112500 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.hawley.awra.phase_out.start.JOINT": { - "type": "parameter", - "parameter": "gov.contrib.congress.hawley.awra.phase_out.start.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "0000-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.hawley.awra.phase_out.start.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.contrib.congress.hawley.awra.phase_out.start.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "0000-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.hawley.awra.phase_out.start.SEPARATE": { - "type": "parameter", - "parameter": "gov.contrib.congress.hawley.awra.phase_out.start.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "0000-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.hawley.awra.phase_out.rate": { - "type": "parameter", - "parameter": "gov.contrib.congress.hawley.awra.phase_out.rate", - "description": "The tax rebate, proposed by the American Worker Rebate Act, phases out at this rate of adjusted gross income above the phase-out start.", - "label": "American Worker Rebate Act phase-out rate", - "unit": "/1", - "period": "year", - "values": { - "0000-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.wftca": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.wftca", - "description": null, - "label": "Working Families Tax Cut Act", - "economy": true, - "household": true - }, - "gov.contrib.congress.wftca.bonus_guaranteed_deduction": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.wftca.bonus_guaranteed_deduction", - "description": null, - "label": "bonus guaranteed deduction", - "economy": true, - "household": true - }, - "gov.contrib.congress.wftca.bonus_guaranteed_deduction.phase_out": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.wftca.bonus_guaranteed_deduction.phase_out", - "description": null, - "label": "phase out", - "economy": true, - "household": true - }, - "gov.contrib.congress.wftca.bonus_guaranteed_deduction.phase_out.rate": { - "type": "parameter", - "parameter": "gov.contrib.congress.wftca.bonus_guaranteed_deduction.phase_out.rate", - "description": "Rate at which the bonus guaranteed deduction reduces with AGI.", - "label": "Bonus guaranteed deduction phase-out rate", - "unit": "/1", - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.wftca.bonus_guaranteed_deduction.phase_out.threshold": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.wftca.bonus_guaranteed_deduction.phase_out.threshold", - "description": "Threshold at which the bonus guaranteed deduction begins to phase out.", - "label": "Bonus guaranteed deduction phase-out threshold", - "economy": true, - "household": true - }, - "gov.contrib.congress.wftca.bonus_guaranteed_deduction.phase_out.threshold.SINGLE": { - "type": "parameter", - "parameter": "gov.contrib.congress.wftca.bonus_guaranteed_deduction.phase_out.threshold.SINGLE", - "description": null, - "label": "WFTCA single filer phase-out threshold", - "unit": null, - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.wftca.bonus_guaranteed_deduction.phase_out.threshold.SEPARATE": { - "type": "parameter", - "parameter": "gov.contrib.congress.wftca.bonus_guaranteed_deduction.phase_out.threshold.SEPARATE", - "description": null, - "label": "WFTCA separate filer phase-out threshold", - "unit": null, - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.wftca.bonus_guaranteed_deduction.phase_out.threshold.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.contrib.congress.wftca.bonus_guaranteed_deduction.phase_out.threshold.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "WFTCA head-of-household filer phase-out threshold", - "unit": null, - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.wftca.bonus_guaranteed_deduction.phase_out.threshold.JOINT": { - "type": "parameter", - "parameter": "gov.contrib.congress.wftca.bonus_guaranteed_deduction.phase_out.threshold.JOINT", - "description": null, - "label": "WFTCA joint filer phase-out threshold", - "unit": null, - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.wftca.bonus_guaranteed_deduction.phase_out.threshold.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.contrib.congress.wftca.bonus_guaranteed_deduction.phase_out.threshold.SURVIVING_SPOUSE", - "description": null, - "label": "WFTCA surviving spouse filer phase-out threshold", - "unit": null, - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.wftca.bonus_guaranteed_deduction.amount": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.wftca.bonus_guaranteed_deduction.amount", - "description": "An increase to the basic standard deduction.", - "label": "Bonus guaranteed deduction", - "economy": true, - "household": true - }, - "gov.contrib.congress.wftca.bonus_guaranteed_deduction.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.contrib.congress.wftca.bonus_guaranteed_deduction.amount.SINGLE", - "description": null, - "label": "WFTCA single filer amount", - "unit": null, - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.wftca.bonus_guaranteed_deduction.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.contrib.congress.wftca.bonus_guaranteed_deduction.amount.SEPARATE", - "description": null, - "label": "WFTCA separate filer amount", - "unit": null, - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.wftca.bonus_guaranteed_deduction.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.contrib.congress.wftca.bonus_guaranteed_deduction.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "WFTCA head-of-household filer amount", - "unit": null, - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.wftca.bonus_guaranteed_deduction.amount.JOINT": { - "type": "parameter", - "parameter": "gov.contrib.congress.wftca.bonus_guaranteed_deduction.amount.JOINT", - "description": null, - "label": "WFTCA joint filer amount", - "unit": null, - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.wftca.bonus_guaranteed_deduction.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.contrib.congress.wftca.bonus_guaranteed_deduction.amount.SURVIVING_SPOUSE", - "description": null, - "label": "WFTCA surviving spouse filer amount", - "unit": null, - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.wyden_smith": { - "type": "parameterNode", - "parameter": "gov.contrib.congress.wyden_smith", - "description": null, - "label": "wyden smith", - "economy": true, - "household": true - }, - "gov.contrib.congress.wyden_smith.per_child_actc_phase_in": { - "type": "parameter", - "parameter": "gov.contrib.congress.wyden_smith.per_child_actc_phase_in", - "description": "The US phases in the Additional Child Tax Credit on a per child basis if this is true.", - "label": "Per-child ACTC phase-in", - "unit": "bool", - "period": null, - "values": { - "2000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.congress.wyden_smith.actc_lookback": { - "type": "parameter", - "parameter": "gov.contrib.congress.wyden_smith.actc_lookback", - "description": "The US phases in the Additional Child Tax Credit on the greater of current and prior year earnings if this is true.", - "label": "ACTC lookback", - "unit": "bool", - "period": null, - "values": { - "2020-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket": { - "type": "parameterNode", - "parameter": "gov.contrib.additional_tax_bracket", - "description": null, - "label": "additional tax bracket", - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.in_effect": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.in_effect", - "description": "An additional tax bracket is applied, if this is true.", - "label": "Additional income tax bracket in effect", - "unit": "bool", - "period": "year", - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket": { - "type": "parameterNode", - "parameter": "gov.contrib.additional_tax_bracket.bracket", - "description": "Income tax rates and brackets for tax units.", - "label": "bracket", - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.rates": { - "type": "parameterNode", - "parameter": "gov.contrib.additional_tax_bracket.bracket.rates", - "description": "Income tax rate by tax bracket.", - "label": "Individual income tax rates", - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.rates.1": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.rates.1", - "description": null, - "label": "1", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.rates.2": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.rates.2", - "description": null, - "label": "2", - "unit": "/1", - "period": null, - "values": { - "2026-01-01": 0.15, - "2018-01-01": 0.12, - "2015-01-01": 0.12 - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.rates.3": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.rates.3", - "description": null, - "label": "3", - "unit": "/1", - "period": null, - "values": { - "2026-01-01": 0.25, - "2018-01-01": 0.22, - "2015-01-01": 0.22 - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.rates.4": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.rates.4", - "description": null, - "label": "4", - "unit": "/1", - "period": null, - "values": { - "2026-01-01": 0.28, - "2018-01-01": 0.24, - "2015-01-01": 0.24 - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.rates.5": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.rates.5", - "description": null, - "label": "5", - "unit": "/1", - "period": null, - "values": { - "2026-01-01": 0.33, - "2018-01-01": 0.32, - "2015-01-01": 0.32 - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.rates.6": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.rates.6", - "description": null, - "label": "6", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.35, - "2015-01-01": 0.35 - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.rates.7": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.rates.7", - "description": null, - "label": "7", - "unit": "/1", - "period": null, - "values": { - "2026-01-01": 0.396, - "2018-01-01": 0.37, - "2015-01-01": 0.37 - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.rates.8": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.rates.8", - "description": null, - "label": "8", - "unit": "/1", - "period": null, - "values": { - "2026-01-01": 0.396, - "2018-01-01": 0.37, - "2015-01-01": 0.37 - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds": { - "type": "parameterNode", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds", - "description": "The upper threshold for each income tax bracket, for each tax filer type.", - "label": "Individual income tax rate thresholds", - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.1": { - "type": "parameterNode", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.1.SINGLE": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.1.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 14500, - "2034-01-01": 14225, - "2033-01-01": 13950, - "2032-01-01": 13675, - "2031-01-01": 13425, - "2030-01-01": 13150, - "2029-01-01": 12900, - "2028-01-01": 12650, - "2027-01-01": 12400, - "2026-01-01": 12150, - "2025-01-01": 11925, - "2024-01-01": 11600, - "2023-01-01": 11000, - "2022-01-01": 10275, - "2021-01-01": 9950, - "2020-01-01": 9875, - "2019-01-01": 9700, - "2018-01-01": 9525, - "2015-01-01": 9525 - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.1.JOINT": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.1.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 29000, - "2034-01-01": 28450, - "2033-01-01": 27900, - "2032-01-01": 27350, - "2031-01-01": 26850, - "2030-01-01": 26300, - "2029-01-01": 25800, - "2028-01-01": 25300, - "2027-01-01": 24800, - "2026-01-01": 24300, - "2025-01-01": 23850, - "2024-01-01": 23200, - "2023-01-01": 22000, - "2022-01-01": 20550, - "2021-01-01": 19900, - "2020-01-01": 19750, - "2019-01-01": 19400, - "2018-01-01": 19050, - "2015-01-01": 19050 - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.1.SEPARATE": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.1.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 14500, - "2034-01-01": 14225, - "2033-01-01": 13950, - "2032-01-01": 13675, - "2031-01-01": 13425, - "2030-01-01": 13150, - "2029-01-01": 12900, - "2028-01-01": 12650, - "2027-01-01": 12400, - "2026-01-01": 12150, - "2025-01-01": 11925, - "2024-01-01": 11600, - "2023-01-01": 11000, - "2022-01-01": 10275, - "2021-01-01": 9950, - "2020-01-01": 9875, - "2019-01-01": 9700, - "2018-01-01": 9525, - "2015-01-01": 9525 - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.1.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.1.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 20700, - "2034-01-01": 20300, - "2033-01-01": 19900, - "2032-01-01": 19550, - "2031-01-01": 19150, - "2030-01-01": 18800, - "2029-01-01": 18400, - "2028-01-01": 18050, - "2027-01-01": 17700, - "2026-01-01": 17350, - "2025-01-01": 17000, - "2024-01-01": 16550, - "2023-01-01": 15700, - "2022-01-01": 14650, - "2021-01-01": 14200, - "2020-01-01": 14100, - "2019-01-01": 13850, - "2018-01-01": 13600, - "2015-01-01": 13600 - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.1.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.1.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 29000, - "2034-01-01": 28450, - "2033-01-01": 27900, - "2032-01-01": 27350, - "2031-01-01": 26850, - "2030-01-01": 26300, - "2029-01-01": 25800, - "2028-01-01": 25300, - "2027-01-01": 24800, - "2026-01-01": 24300, - "2025-01-01": 23850, - "2024-01-01": 23200, - "2023-01-01": 22000, - "2022-01-01": 20550, - "2021-01-01": 19900, - "2020-01-01": 19750, - "2019-01-01": 19400, - "2018-01-01": 19050, - "2015-01-01": 19050 - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.2": { - "type": "parameterNode", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.2.SINGLE": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.2.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 58950, - "2034-01-01": 57800, - "2033-01-01": 56650, - "2032-01-01": 55550, - "2031-01-01": 54500, - "2030-01-01": 53450, - "2029-01-01": 52400, - "2028-01-01": 51400, - "2027-01-01": 50350, - "2026-01-01": 49300, - "2025-01-01": 48475, - "2024-01-01": 47150, - "2023-01-01": 44725, - "2022-01-01": 41775, - "2021-01-01": 40525, - "2020-01-01": 40125, - "2019-01-01": 39475, - "2018-01-01": 38700, - "2015-01-01": 38700 - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.2.JOINT": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.2.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 117900, - "2034-01-01": 115600, - "2033-01-01": 113300, - "2032-01-01": 111100, - "2031-01-01": 109000, - "2030-01-01": 106900, - "2029-01-01": 104800, - "2028-01-01": 102800, - "2027-01-01": 100700, - "2026-01-01": 98600, - "2025-01-01": 96950, - "2024-01-01": 94300, - "2023-01-01": 89450, - "2022-01-01": 83550, - "2021-01-01": 81050, - "2020-01-01": 80250, - "2019-01-01": 78950, - "2018-01-01": 77400, - "2015-01-01": 77400 - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.2.SEPARATE": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.2.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 58950, - "2034-01-01": 57800, - "2033-01-01": 56650, - "2032-01-01": 55550, - "2031-01-01": 54500, - "2030-01-01": 53450, - "2029-01-01": 52400, - "2028-01-01": 51400, - "2027-01-01": 50350, - "2026-01-01": 49300, - "2025-01-01": 48475, - "2024-01-01": 47150, - "2023-01-01": 44725, - "2022-01-01": 41775, - "2021-01-01": 40525, - "2020-01-01": 40125, - "2019-01-01": 39475, - "2018-01-01": 38700, - "2015-01-01": 38700 - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.2.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.2.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 78950, - "2034-01-01": 77400, - "2033-01-01": 75900, - "2032-01-01": 74450, - "2031-01-01": 73000, - "2030-01-01": 71550, - "2029-01-01": 70200, - "2028-01-01": 68850, - "2027-01-01": 67450, - "2026-01-01": 66050, - "2025-01-01": 64850, - "2024-01-01": 63100, - "2023-01-01": 59850, - "2022-01-01": 55900, - "2021-01-01": 54200, - "2020-01-01": 53700, - "2019-01-01": 52850, - "2018-01-01": 51800, - "2015-01-01": 51800 - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.2.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.2.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 117900, - "2034-01-01": 115600, - "2033-01-01": 113300, - "2032-01-01": 111100, - "2031-01-01": 109000, - "2030-01-01": 106900, - "2029-01-01": 104800, - "2028-01-01": 102800, - "2027-01-01": 100700, - "2026-01-01": 98600, - "2025-01-01": 96950, - "2024-01-01": 94300, - "2023-01-01": 89450, - "2022-01-01": 83550, - "2021-01-01": 81050, - "2020-01-01": 80250, - "2019-01-01": 78950, - "2018-01-01": 77400, - "2015-01-01": 77400 - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.3": { - "type": "parameterNode", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.3.SINGLE": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.3.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 142750, - "2034-01-01": 139950, - "2033-01-01": 137200, - "2032-01-01": 134550, - "2031-01-01": 131950, - "2030-01-01": 129400, - "2029-01-01": 126900, - "2028-01-01": 124400, - "2027-01-01": 121950, - "2026-01-01": 119400, - "2025-01-01": 103350, - "2024-01-01": 100525, - "2023-01-01": 95375, - "2022-01-01": 89075, - "2021-01-01": 86375, - "2020-01-01": 85525, - "2019-01-01": 84200, - "2018-01-01": 82500, - "2015-01-01": 82500 - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.3.JOINT": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.3.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 237850, - "2034-01-01": 233200, - "2033-01-01": 228700, - "2032-01-01": 224250, - "2031-01-01": 219900, - "2030-01-01": 215600, - "2029-01-01": 211450, - "2028-01-01": 207350, - "2027-01-01": 203250, - "2026-01-01": 199000, - "2025-01-01": 206700, - "2024-01-01": 201050, - "2023-01-01": 190750, - "2022-01-01": 178150, - "2021-01-01": 172750, - "2020-01-01": 171050, - "2019-01-01": 168400, - "2018-01-01": 165000, - "2015-01-01": 165000 - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.3.SEPARATE": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.3.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 118925, - "2034-01-01": 116600, - "2033-01-01": 114350, - "2032-01-01": 112125, - "2031-01-01": 109950, - "2030-01-01": 107800, - "2029-01-01": 105725, - "2028-01-01": 103675, - "2027-01-01": 101625, - "2026-01-01": 99500, - "2025-01-01": 103350, - "2024-01-01": 100525, - "2023-01-01": 95375, - "2022-01-01": 89075, - "2021-01-01": 86375, - "2020-01-01": 85525, - "2019-01-01": 84200, - "2018-01-01": 82500, - "2015-01-01": 82500 - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.3.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.3.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 203850, - "2034-01-01": 199850, - "2033-01-01": 195950, - "2032-01-01": 192150, - "2031-01-01": 188450, - "2030-01-01": 184800, - "2029-01-01": 181200, - "2028-01-01": 177700, - "2027-01-01": 174150, - "2026-01-01": 170550, - "2025-01-01": 103350, - "2024-01-01": 100500, - "2023-01-01": 95350, - "2022-01-01": 89050, - "2021-01-01": 86350, - "2020-01-01": 85500, - "2019-01-01": 84200, - "2018-01-01": 82500, - "2015-01-01": 82500 - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.3.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.3.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 237850, - "2034-01-01": 233200, - "2033-01-01": 228700, - "2032-01-01": 224250, - "2031-01-01": 219900, - "2030-01-01": 215600, - "2029-01-01": 211450, - "2028-01-01": 207350, - "2027-01-01": 203250, - "2026-01-01": 199000, - "2025-01-01": 206700, - "2024-01-01": 201050, - "2023-01-01": 190750, - "2022-01-01": 178150, - "2021-01-01": 172750, - "2020-01-01": 171050, - "2019-01-01": 168400, - "2018-01-01": 165000, - "2015-01-01": 165000 - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.4": { - "type": "parameterNode", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.4.SINGLE": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.4.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 297750, - "2034-01-01": 291900, - "2033-01-01": 286250, - "2032-01-01": 280700, - "2031-01-01": 275250, - "2030-01-01": 269900, - "2029-01-01": 264650, - "2028-01-01": 259550, - "2027-01-01": 254400, - "2026-01-01": 249100, - "2025-01-01": 197300, - "2024-01-01": 191950, - "2023-01-01": 182100, - "2022-01-01": 170050, - "2021-01-01": 164925, - "2020-01-01": 163300, - "2019-01-01": 160725, - "2018-01-01": 157500, - "2015-01-01": 157500 - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.4.JOINT": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.4.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 362450, - "2034-01-01": 355400, - "2033-01-01": 348450, - "2032-01-01": 341700, - "2031-01-01": 335050, - "2030-01-01": 328550, - "2029-01-01": 322200, - "2028-01-01": 315950, - "2027-01-01": 309700, - "2026-01-01": 303250, - "2025-01-01": 394600, - "2024-01-01": 383900, - "2023-01-01": 364200, - "2022-01-01": 340100, - "2021-01-01": 329850, - "2020-01-01": 326600, - "2019-01-01": 321450, - "2018-01-01": 315000, - "2015-01-01": 315000 - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.4.SEPARATE": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.4.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 181225, - "2034-01-01": 177700, - "2033-01-01": 174225, - "2032-01-01": 170850, - "2031-01-01": 167525, - "2030-01-01": 164275, - "2029-01-01": 161100, - "2028-01-01": 157975, - "2027-01-01": 154850, - "2026-01-01": 151625, - "2025-01-01": 197300, - "2024-01-01": 191950, - "2023-01-01": 182100, - "2022-01-01": 170050, - "2021-01-01": 164925, - "2020-01-01": 163300, - "2019-01-01": 160725, - "2018-01-01": 157500, - "2015-01-01": 157500 - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.4.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.4.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 330100, - "2034-01-01": 323650, - "2033-01-01": 317350, - "2032-01-01": 311200, - "2031-01-01": 305150, - "2030-01-01": 299250, - "2029-01-01": 293450, - "2028-01-01": 287750, - "2027-01-01": 282050, - "2026-01-01": 276200, - "2025-01-01": 197300, - "2024-01-01": 191950, - "2023-01-01": 182100, - "2022-01-01": 170050, - "2021-01-01": 164900, - "2020-01-01": 163300, - "2019-01-01": 160700, - "2018-01-01": 157500, - "2015-01-01": 157500 - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.4.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.4.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 362450, - "2034-01-01": 355400, - "2033-01-01": 348450, - "2032-01-01": 341700, - "2031-01-01": 335050, - "2030-01-01": 328550, - "2029-01-01": 322200, - "2028-01-01": 315950, - "2027-01-01": 309700, - "2026-01-01": 303250, - "2025-01-01": 394600, - "2024-01-01": 383900, - "2023-01-01": 364200, - "2022-01-01": 340100, - "2021-01-01": 329850, - "2020-01-01": 326600, - "2019-01-01": 321450, - "2018-01-01": 315000, - "2015-01-01": 315000 - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.5": { - "type": "parameterNode", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.5.SINGLE": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.5.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 647250, - "2034-01-01": 634650, - "2033-01-01": 622300, - "2032-01-01": 610200, - "2031-01-01": 598350, - "2030-01-01": 586750, - "2029-01-01": 575400, - "2028-01-01": 564200, - "2027-01-01": 553050, - "2026-01-01": 541550, - "2025-01-01": 250525, - "2024-01-01": 243725, - "2023-01-01": 231250, - "2022-01-01": 215950, - "2021-01-01": 209425, - "2020-01-01": 207350, - "2019-01-01": 204100, - "2018-01-01": 200000, - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.5.JOINT": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.5.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 647250, - "2034-01-01": 634650, - "2033-01-01": 622300, - "2032-01-01": 610200, - "2031-01-01": 598350, - "2030-01-01": 586750, - "2029-01-01": 575400, - "2028-01-01": 564200, - "2027-01-01": 553050, - "2026-01-01": 541550, - "2025-01-01": 501050, - "2024-01-01": 487450, - "2023-01-01": 462500, - "2022-01-01": 431900, - "2021-01-01": 418850, - "2020-01-01": 414700, - "2019-01-01": 408200, - "2018-01-01": 400000, - "2015-01-01": 400000 - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.5.SEPARATE": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.5.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 647250, - "2034-01-01": 634650, - "2033-01-01": 622300, - "2032-01-01": 610200, - "2031-01-01": 598350, - "2030-01-01": 586750, - "2029-01-01": 575400, - "2028-01-01": 564200, - "2027-01-01": 553050, - "2026-01-01": 541550, - "2025-01-01": 250525, - "2024-01-01": 243725, - "2023-01-01": 231250, - "2022-01-01": 215950, - "2021-01-01": 209425, - "2020-01-01": 207350, - "2019-01-01": 204100, - "2018-01-01": 200000, - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.5.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.5.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 647250, - "2034-01-01": 634650, - "2033-01-01": 622300, - "2032-01-01": 610200, - "2031-01-01": 598350, - "2030-01-01": 586750, - "2029-01-01": 575400, - "2028-01-01": 564200, - "2027-01-01": 553050, - "2026-01-01": 541550, - "2025-01-01": 250500, - "2024-01-01": 243700, - "2023-01-01": 231250, - "2022-01-01": 215950, - "2021-01-01": 209400, - "2020-01-01": 207350, - "2019-01-01": 204100, - "2018-01-01": 200000, - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.5.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.5.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 647250, - "2034-01-01": 634650, - "2033-01-01": 622300, - "2032-01-01": 610200, - "2031-01-01": 598350, - "2030-01-01": 586750, - "2029-01-01": 575400, - "2028-01-01": 564200, - "2027-01-01": 553050, - "2026-01-01": 541550, - "2025-01-01": 501050, - "2024-01-01": 487450, - "2023-01-01": 462500, - "2022-01-01": 431900, - "2021-01-01": 418850, - "2020-01-01": 414700, - "2019-01-01": 408200, - "2018-01-01": 400000, - "2015-01-01": 400000 - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.6": { - "type": "parameterNode", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.6.SINGLE": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.6.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 649900, - "2034-01-01": 637250, - "2033-01-01": 624850, - "2032-01-01": 612700, - "2031-01-01": 600800, - "2030-01-01": 589150, - "2029-01-01": 577700, - "2028-01-01": 566500, - "2027-01-01": 555300, - "2026-01-01": 543800, - "2025-01-01": 626350, - "2024-01-01": 609350, - "2023-01-01": 578125, - "2022-01-01": 539000, - "2021-01-01": 523600, - "2020-01-01": 518400, - "2019-01-01": 510300, - "2018-01-01": 500000, - "2015-01-01": 500000 - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.6.JOINT": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.6.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 731150, - "2034-01-01": 716900, - "2033-01-01": 702950, - "2032-01-01": 689250, - "2031-01-01": 675900, - "2030-01-01": 662800, - "2029-01-01": 649950, - "2028-01-01": 637350, - "2027-01-01": 624700, - "2026-01-01": 611750, - "2025-01-01": 751600, - "2024-01-01": 731200, - "2023-01-01": 693750, - "2022-01-01": 647850, - "2021-01-01": 628300, - "2020-01-01": 622050, - "2019-01-01": 612350, - "2018-01-01": 600000, - "2015-01-01": 600000 - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.6.SEPARATE": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.6.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 365575, - "2034-01-01": 358450, - "2033-01-01": 351475, - "2032-01-01": 344625, - "2031-01-01": 337950, - "2030-01-01": 331400, - "2029-01-01": 324975, - "2028-01-01": 318675, - "2027-01-01": 312350, - "2026-01-01": 305875, - "2025-01-01": 375800, - "2024-01-01": 365600, - "2023-01-01": 346875, - "2022-01-01": 323925, - "2021-01-01": 329850, - "2020-01-01": 311025, - "2019-01-01": 306175, - "2018-01-01": 300000, - "2015-01-01": 300000 - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.6.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.6.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 690500, - "2034-01-01": 677050, - "2033-01-01": 663900, - "2032-01-01": 651000, - "2031-01-01": 638350, - "2030-01-01": 625950, - "2029-01-01": 613850, - "2028-01-01": 601950, - "2027-01-01": 590000, - "2026-01-01": 577750, - "2025-01-01": 626350, - "2024-01-01": 609350, - "2023-01-01": 578100, - "2022-01-01": 539900, - "2021-01-01": 523600, - "2020-01-01": 518400, - "2019-01-01": 510300, - "2018-01-01": 500000, - "2015-01-01": 500000 - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.6.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.6.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 731150, - "2034-01-01": 716900, - "2033-01-01": 702950, - "2032-01-01": 689250, - "2031-01-01": 675900, - "2030-01-01": 662800, - "2029-01-01": 649950, - "2028-01-01": 637350, - "2027-01-01": 624700, - "2026-01-01": 611750, - "2025-01-01": 751600, - "2024-01-01": 731200, - "2023-01-01": 693750, - "2022-01-01": 647850, - "2021-01-01": 628300, - "2020-01-01": 622050, - "2019-01-01": 612350, - "2018-01-01": 600000, - "2015-01-01": 600000 - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.7": { - "type": "parameterNode", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.7", - "description": null, - "label": "7", - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.7.SINGLE": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.7.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2018-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.7.JOINT": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.7.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2018-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.7.SEPARATE": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.7.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2018-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.7.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.7.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2018-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.7.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.7.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2018-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.8": { - "type": "parameterNode", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.8", - "description": null, - "label": "8", - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.8.SINGLE": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.8.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2018-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.8.JOINT": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.8.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2018-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.8.SEPARATE": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.8.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2018-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.8.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.8.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2018-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.contrib.additional_tax_bracket.bracket.thresholds.8.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.contrib.additional_tax_bracket.bracket.thresholds.8.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2018-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.contrib.states": { - "type": "parameterNode", - "parameter": "gov.contrib.states", - "description": null, - "label": "states", - "economy": true, - "household": true - }, - "gov.contrib.states.or": { - "type": "parameterNode", - "parameter": "gov.contrib.states.or", - "description": null, - "label": "or", - "economy": true, - "household": true - }, - "gov.contrib.states.or.rebate": { - "type": "parameterNode", - "parameter": "gov.contrib.states.or.rebate", - "description": null, - "label": "rebate", - "economy": true, - "household": true - }, - "gov.contrib.states.or.rebate.state_tax_exempt": { - "type": "parameter", - "parameter": "gov.contrib.states.or.rebate.state_tax_exempt", - "description": "The Basic Income amount is exempt from Oregon state income tax if this is true.", - "label": "Oregon Basic Income state tax exempt", - "unit": "bool", - "period": "year", - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.states.ny": { - "type": "parameterNode", - "parameter": "gov.contrib.states.ny", - "description": null, - "label": "ny", - "economy": true, - "household": true - }, - "gov.contrib.states.ny.wftc": { - "type": "parameterNode", - "parameter": "gov.contrib.states.ny.wftc", - "description": null, - "label": "Working Families Tax Credit", - "economy": true, - "household": true - }, - "gov.contrib.states.ny.wftc.eitc": { - "type": "parameterNode", - "parameter": "gov.contrib.states.ny.wftc.eitc", - "description": null, - "label": "eitc", - "economy": true, - "household": true - }, - "gov.contrib.states.ny.wftc.eitc.match": { - "type": "parameter", - "parameter": "gov.contrib.states.ny.wftc.eitc.match", - "description": "New York matches this fraction of the Earned Income Tax Credit under the Working Families Tax Credit.", - "label": "New York Working Families Tax Credit EITC match", - "unit": "/1", - "period": "year", - "values": { - "2029-01-01": 0, - "2028-01-01": 0.1, - "2027-01-01": 0.15, - "2026-01-01": 0.2, - "2025-01-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.contrib.states.ny.wftc.reduction": { - "type": "parameterNode", - "parameter": "gov.contrib.states.ny.wftc.reduction", - "description": null, - "label": "reduction", - "economy": true, - "household": true - }, - "gov.contrib.states.ny.wftc.reduction.married": { - "type": "parameterNode", - "parameter": "gov.contrib.states.ny.wftc.reduction.married", - "description": "New York reduces the Working Families Tax Credit for married filers at this rate, based on state adjusted gross income.", - "label": "New York working families tax credit married reduction" - }, - "gov.contrib.states.ny.wftc.reduction.married[0]": { - "type": "parameterNode", - "parameter": "gov.contrib.states.ny.wftc.reduction.married[0]", - "description": null, - "label": "bracket 1" - }, - "gov.contrib.states.ny.wftc.reduction.married[0].rate": { - "type": "parameter", - "parameter": "gov.contrib.states.ny.wftc.reduction.married[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2025-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.states.ny.wftc.reduction.married[0].threshold": { - "type": "parameter", - "parameter": "gov.contrib.states.ny.wftc.reduction.married[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.states.ny.wftc.reduction.married[1]": { - "type": "parameterNode", - "parameter": "gov.contrib.states.ny.wftc.reduction.married[1]", - "description": null, - "label": "bracket 2" - }, - "gov.contrib.states.ny.wftc.reduction.married[1].rate": { - "type": "parameter", - "parameter": "gov.contrib.states.ny.wftc.reduction.married[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2025-01-01": 0.02, - "2015-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.contrib.states.ny.wftc.reduction.married[1].threshold": { - "type": "parameter", - "parameter": "gov.contrib.states.ny.wftc.reduction.married[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2029-01-01": 50000, - "2028-01-01": 90000, - "2025-01-01": 110000, - "2015-01-01": 110000 - }, - "economy": true, - "household": true - }, - "gov.contrib.states.ny.wftc.reduction.single": { - "type": "parameterNode", - "parameter": "gov.contrib.states.ny.wftc.reduction.single", - "description": "New York reduces the Working Families Tax Credit for single filers at this rate, based on state adjusted gross income.", - "label": "New York working families tax credit single reduction" - }, - "gov.contrib.states.ny.wftc.reduction.single[0]": { - "type": "parameterNode", - "parameter": "gov.contrib.states.ny.wftc.reduction.single[0]", - "description": null, - "label": "bracket 1" - }, - "gov.contrib.states.ny.wftc.reduction.single[0].rate": { - "type": "parameter", - "parameter": "gov.contrib.states.ny.wftc.reduction.single[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2025-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.states.ny.wftc.reduction.single[0].threshold": { - "type": "parameter", - "parameter": "gov.contrib.states.ny.wftc.reduction.single[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.states.ny.wftc.reduction.single[1]": { - "type": "parameterNode", - "parameter": "gov.contrib.states.ny.wftc.reduction.single[1]", - "description": null, - "label": "bracket 2" - }, - "gov.contrib.states.ny.wftc.reduction.single[1].rate": { - "type": "parameter", - "parameter": "gov.contrib.states.ny.wftc.reduction.single[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2025-01-01": 0.02, - "2015-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.contrib.states.ny.wftc.reduction.single[1].threshold": { - "type": "parameter", - "parameter": "gov.contrib.states.ny.wftc.reduction.single[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2029-01-01": 25000, - "2028-01-01": 45000, - "2027-01-01": 55000, - "2026-01-01": 65000, - "2025-01-01": 75000, - "2015-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.contrib.states.ny.wftc.amount": { - "type": "parameterNode", - "parameter": "gov.contrib.states.ny.wftc.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.contrib.states.ny.wftc.amount.max": { - "type": "parameter", - "parameter": "gov.contrib.states.ny.wftc.amount.max", - "description": "New York provides the following maximum Working Families Tax Credit amount per child.", - "label": "New York Working Families Tax Credit max amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1750, - "2034-01-01": 1750, - "2033-01-01": 1700, - "2032-01-01": 1650, - "2031-01-01": 1650, - "2030-01-01": 1600, - "2029-01-01": 1600, - "2028-01-01": 1200, - "2027-01-01": 1000, - "2026-01-01": 800, - "2025-01-01": 550, - "2015-01-01": 550 - }, - "economy": true, - "household": true - }, - "gov.contrib.states.ny.wftc.amount.min": { - "type": "parameter", - "parameter": "gov.contrib.states.ny.wftc.amount.min", - "description": "New York provides the following minimum Working Families Tax Credit amount per child.", - "label": "New York Working Families Tax Credit minimum amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 100, - "2034-01-01": 100, - "2033-01-01": 100, - "2032-01-01": 100, - "2031-01-01": 100, - "2030-01-01": 100, - "2029-01-01": 100, - "2028-01-01": 100, - "2027-01-01": 100, - "2026-01-01": 100, - "2025-01-01": 100, - "2024-01-01": 100, - "2015-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.contrib.states.ny.wftc.exemptions": { - "type": "parameterNode", - "parameter": "gov.contrib.states.ny.wftc.exemptions", - "description": null, - "label": "exemptions", - "economy": true, - "household": true - }, - "gov.contrib.states.ny.wftc.exemptions.in_effect": { - "type": "parameter", - "parameter": "gov.contrib.states.ny.wftc.exemptions.in_effect", - "description": "The Exemption reform of the New York Working Families Tax Credit reform applies if this is true.", - "label": "New York Working Families Tax Credit exemption reform applies", - "unit": "bool", - "period": "year", - "values": { - "2026-01-01": true, - "2025-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.states.ny.wftc.in_effect": { - "type": "parameter", - "parameter": "gov.contrib.states.ny.wftc.in_effect", - "description": "The New York Working Families Tax Credit reform applies if this is true.", - "label": "New York Working Families Tax Credit reform in effect", - "unit": "bool", - "period": "year", - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.states.ny.wftc.child_age_threshold": { - "type": "parameter", - "parameter": "gov.contrib.states.ny.wftc.child_age_threshold", - "description": "New York limits the Working Families Tax Credit to children at or below this age.", - "label": "New York Working Families Tax Credit child age threshold", - "unit": "year", - "period": "year", - "values": { - "2028-01-01": 17, - "2025-01-01": 16, - "2015-01-01": 16 - }, - "economy": true, - "household": true - }, - "gov.contrib.states.mi": { - "type": "parameterNode", - "parameter": "gov.contrib.states.mi", - "description": null, - "label": "mi", - "economy": true, - "household": true - }, - "gov.contrib.states.mi.surtax": { - "type": "parameterNode", - "parameter": "gov.contrib.states.mi.surtax", - "description": null, - "label": "surtax", - "economy": true, - "household": true - }, - "gov.contrib.states.mi.surtax.rate": { - "type": "parameterNode", - "parameter": "gov.contrib.states.mi.surtax.rate", - "description": null, - "label": "rate", - "economy": true, - "household": true - }, - "gov.contrib.states.mi.surtax.rate.joint": { - "type": "parameterNode", - "parameter": "gov.contrib.states.mi.surtax.rate.joint", - "description": "Invest in Our Kids proposed a ballot initiative to implement a surtax on joint filers with taxable income above this threshold.", - "label": "Michigan surtax joint rate" - }, - "gov.contrib.states.mi.surtax.rate.joint[0]": { - "type": "parameterNode", - "parameter": "gov.contrib.states.mi.surtax.rate.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.contrib.states.mi.surtax.rate.joint[0].rate": { - "type": "parameter", - "parameter": "gov.contrib.states.mi.surtax.rate.joint[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.states.mi.surtax.rate.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.contrib.states.mi.surtax.rate.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2027-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.states.mi.surtax.rate.joint[1]": { - "type": "parameterNode", - "parameter": "gov.contrib.states.mi.surtax.rate.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.contrib.states.mi.surtax.rate.joint[1].rate": { - "type": "parameter", - "parameter": "gov.contrib.states.mi.surtax.rate.joint[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.contrib.states.mi.surtax.rate.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.contrib.states.mi.surtax.rate.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2027-01-01": 1000000, - "2015-01-01": 1000000 - }, - "economy": true, - "household": true - }, - "gov.contrib.states.mi.surtax.rate.single": { - "type": "parameterNode", - "parameter": "gov.contrib.states.mi.surtax.rate.single", - "description": "Invest in Our Kids proposed a ballot initiative to implement a surtax on single filers with taxable income above this threshold.", - "label": "Michigan surtax single rate." - }, - "gov.contrib.states.mi.surtax.rate.single[0]": { - "type": "parameterNode", - "parameter": "gov.contrib.states.mi.surtax.rate.single[0]", - "description": null, - "label": "bracket 1" - }, - "gov.contrib.states.mi.surtax.rate.single[0].rate": { - "type": "parameter", - "parameter": "gov.contrib.states.mi.surtax.rate.single[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.states.mi.surtax.rate.single[0].threshold": { - "type": "parameter", - "parameter": "gov.contrib.states.mi.surtax.rate.single[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2027-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.states.mi.surtax.rate.single[1]": { - "type": "parameterNode", - "parameter": "gov.contrib.states.mi.surtax.rate.single[1]", - "description": null, - "label": "bracket 2" - }, - "gov.contrib.states.mi.surtax.rate.single[1].rate": { - "type": "parameter", - "parameter": "gov.contrib.states.mi.surtax.rate.single[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.contrib.states.mi.surtax.rate.single[1].threshold": { - "type": "parameter", - "parameter": "gov.contrib.states.mi.surtax.rate.single[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2027-01-01": 500000, - "2015-01-01": 500000 - }, - "economy": true, - "household": true - }, - "gov.contrib.states.mi.surtax.in_effect": { - "type": "parameter", - "parameter": "gov.contrib.states.mi.surtax.in_effect", - "description": "The proposed Michigan surtax is in effect, if this is true.", - "label": "Michigan surtax in effect", - "unit": "bool", - "period": "year", - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.states.dc": { - "type": "parameterNode", - "parameter": "gov.contrib.states.dc", - "description": null, - "label": "dc", - "economy": true, - "household": true - }, - "gov.contrib.states.dc.property_tax": { - "type": "parameterNode", - "parameter": "gov.contrib.states.dc.property_tax", - "description": null, - "label": "property tax", - "economy": true, - "household": true - }, - "gov.contrib.states.dc.property_tax.income_limit": { - "type": "parameterNode", - "parameter": "gov.contrib.states.dc.property_tax.income_limit", - "description": null, - "label": "income limit", - "economy": true, - "household": true - }, - "gov.contrib.states.dc.property_tax.income_limit.elderly": { - "type": "parameterNode", - "parameter": "gov.contrib.states.dc.property_tax.income_limit.elderly", - "description": "DC limits the property tax credit to households with at least one elderly head or spouse with adjusted gross income below this threshold, based on filing status.", - "label": "DC property tax credit elderly income limit", - "economy": true, - "household": true - }, - "gov.contrib.states.dc.property_tax.income_limit.elderly.JOINT": { - "type": "parameter", - "parameter": "gov.contrib.states.dc.property_tax.income_limit.elderly.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2035-01-01": 108900, - "2034-01-01": 106800, - "2033-01-01": 104700, - "2032-01-01": 102675, - "2031-01-01": 100700, - "2030-01-01": 98750, - "2029-01-01": 96825, - "2028-01-01": 94925, - "2027-01-01": 93000, - "2026-01-01": 90750, - "2025-01-01": 89400, - "2015-01-01": 89400 - }, - "economy": true, - "household": true - }, - "gov.contrib.states.dc.property_tax.income_limit.elderly.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.contrib.states.dc.property_tax.income_limit.elderly.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2035-01-01": 108900, - "2034-01-01": 106800, - "2033-01-01": 104700, - "2032-01-01": 102675, - "2031-01-01": 100700, - "2030-01-01": 98750, - "2029-01-01": 96825, - "2028-01-01": 94925, - "2027-01-01": 93000, - "2026-01-01": 90750, - "2025-01-01": 89400, - "2015-01-01": 89400 - }, - "economy": true, - "household": true - }, - "gov.contrib.states.dc.property_tax.income_limit.elderly.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.contrib.states.dc.property_tax.income_limit.elderly.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 108900, - "2034-01-01": 106800, - "2033-01-01": 104700, - "2032-01-01": 102675, - "2031-01-01": 100700, - "2030-01-01": 98750, - "2029-01-01": 96825, - "2028-01-01": 94925, - "2027-01-01": 93000, - "2026-01-01": 90750, - "2025-01-01": 89400, - "2015-01-01": 89400 - }, - "economy": true, - "household": true - }, - "gov.contrib.states.dc.property_tax.income_limit.elderly.SINGLE": { - "type": "parameter", - "parameter": "gov.contrib.states.dc.property_tax.income_limit.elderly.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 108900, - "2034-01-01": 106800, - "2033-01-01": 104700, - "2032-01-01": 102675, - "2031-01-01": 100700, - "2030-01-01": 98750, - "2029-01-01": 96825, - "2028-01-01": 94925, - "2027-01-01": 93000, - "2026-01-01": 90750, - "2025-01-01": 89400, - "2015-01-01": 89400 - }, - "economy": true, - "household": true - }, - "gov.contrib.states.dc.property_tax.income_limit.elderly.SEPARATE": { - "type": "parameter", - "parameter": "gov.contrib.states.dc.property_tax.income_limit.elderly.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 108900, - "2034-01-01": 106800, - "2033-01-01": 104700, - "2032-01-01": 102675, - "2031-01-01": 100700, - "2030-01-01": 98750, - "2029-01-01": 96825, - "2028-01-01": 94925, - "2027-01-01": 93000, - "2026-01-01": 90750, - "2025-01-01": 89400, - "2015-01-01": 89400 - }, - "economy": true, - "household": true - }, - "gov.contrib.states.dc.property_tax.income_limit.non_elderly": { - "type": "parameterNode", - "parameter": "gov.contrib.states.dc.property_tax.income_limit.non_elderly", - "description": "DC limits the property tax credit to households with no elderly heads or spouses with adjusted gross income below this threshold, based on filing status.", - "label": "DC property tax credit non-elderly income limit", - "economy": true, - "household": true - }, - "gov.contrib.states.dc.property_tax.income_limit.non_elderly.JOINT": { - "type": "parameter", - "parameter": "gov.contrib.states.dc.property_tax.income_limit.non_elderly.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2035-01-01": 79900, - "2034-01-01": 78350, - "2033-01-01": 76825, - "2032-01-01": 75350, - "2031-01-01": 73875, - "2030-01-01": 72450, - "2029-01-01": 71050, - "2028-01-01": 69650, - "2027-01-01": 68225, - "2026-01-01": 66600, - "2025-01-01": 65600, - "2015-01-01": 65600 - }, - "economy": true, - "household": true - }, - "gov.contrib.states.dc.property_tax.income_limit.non_elderly.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.contrib.states.dc.property_tax.income_limit.non_elderly.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2035-01-01": 79900, - "2034-01-01": 78350, - "2033-01-01": 76825, - "2032-01-01": 75350, - "2031-01-01": 73875, - "2030-01-01": 72450, - "2029-01-01": 71050, - "2028-01-01": 69650, - "2027-01-01": 68225, - "2026-01-01": 66600, - "2025-01-01": 65600, - "2015-01-01": 65600 - }, - "economy": true, - "household": true - }, - "gov.contrib.states.dc.property_tax.income_limit.non_elderly.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.contrib.states.dc.property_tax.income_limit.non_elderly.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 79900, - "2034-01-01": 78350, - "2033-01-01": 76825, - "2032-01-01": 75350, - "2031-01-01": 73875, - "2030-01-01": 72450, - "2029-01-01": 71050, - "2028-01-01": 69650, - "2027-01-01": 68225, - "2026-01-01": 66600, - "2025-01-01": 65600, - "2015-01-01": 65600 - }, - "economy": true, - "household": true - }, - "gov.contrib.states.dc.property_tax.income_limit.non_elderly.SINGLE": { - "type": "parameter", - "parameter": "gov.contrib.states.dc.property_tax.income_limit.non_elderly.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 79900, - "2034-01-01": 78350, - "2033-01-01": 76825, - "2032-01-01": 75350, - "2031-01-01": 73875, - "2030-01-01": 72450, - "2029-01-01": 71050, - "2028-01-01": 69650, - "2027-01-01": 68225, - "2026-01-01": 66600, - "2025-01-01": 65600, - "2015-01-01": 65600 - }, - "economy": true, - "household": true - }, - "gov.contrib.states.dc.property_tax.income_limit.non_elderly.SEPARATE": { - "type": "parameter", - "parameter": "gov.contrib.states.dc.property_tax.income_limit.non_elderly.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 79900, - "2034-01-01": 78350, - "2033-01-01": 76825, - "2032-01-01": 75350, - "2031-01-01": 73875, - "2030-01-01": 72450, - "2029-01-01": 71050, - "2028-01-01": 69650, - "2027-01-01": 68225, - "2026-01-01": 66600, - "2025-01-01": 65600, - "2015-01-01": 65600 - }, - "economy": true, - "household": true - }, - "gov.contrib.states.dc.property_tax.in_effect": { - "type": "parameter", - "parameter": "gov.contrib.states.dc.property_tax.in_effect", - "description": "The DC property tax credit reform applies if this is true.", - "label": "DC property tax credit reform in effect", - "unit": "bool", - "period": "year", - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.states.dc.property_tax.phase_out": { - "type": "parameterNode", - "parameter": "gov.contrib.states.dc.property_tax.phase_out", - "description": null, - "label": "phase out", - "economy": true, - "household": true - }, - "gov.contrib.states.dc.property_tax.phase_out.rate": { - "type": "parameter", - "parameter": "gov.contrib.states.dc.property_tax.phase_out.rate", - "description": "DC phases the property tax credit out at this rate of adjusted gross income over the income limit.", - "label": "DC property tax credit phase out rate", - "unit": "/1", - "period": "year", - "values": { - "2025-01-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.contrib.states.dc.property_tax.phase_out.applies": { - "type": "parameter", - "parameter": "gov.contrib.states.dc.property_tax.phase_out.applies", - "description": "The DC property tax credit phases out with adjusted gross income over the income limit, if this is true.", - "label": "DC property tax credit phase out applies", - "unit": "bool", - "period": "year", - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.states.dc.property_tax.amount": { - "type": "parameterNode", - "parameter": "gov.contrib.states.dc.property_tax.amount", - "description": "DC provides the following property tax credit amount, based on filing status.", - "label": "DC property tax credit amount", - "economy": true, - "household": true - }, - "gov.contrib.states.dc.property_tax.amount.JOINT": { - "type": "parameter", - "parameter": "gov.contrib.states.dc.property_tax.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2035-01-01": 1700, - "2034-01-01": 1650, - "2033-01-01": 1625, - "2032-01-01": 1600, - "2031-01-01": 1575, - "2030-01-01": 1525, - "2029-01-01": 1500, - "2028-01-01": 1475, - "2027-01-01": 1450, - "2026-01-01": 1400, - "2025-01-01": 1400, - "2015-01-01": 1400 - }, - "economy": true, - "household": true - }, - "gov.contrib.states.dc.property_tax.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.contrib.states.dc.property_tax.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2035-01-01": 1700, - "2034-01-01": 1650, - "2033-01-01": 1625, - "2032-01-01": 1600, - "2031-01-01": 1575, - "2030-01-01": 1525, - "2029-01-01": 1500, - "2028-01-01": 1475, - "2027-01-01": 1450, - "2026-01-01": 1400, - "2025-01-01": 1400, - "2015-01-01": 1400 - }, - "economy": true, - "household": true - }, - "gov.contrib.states.dc.property_tax.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.contrib.states.dc.property_tax.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 1700, - "2034-01-01": 1650, - "2033-01-01": 1625, - "2032-01-01": 1600, - "2031-01-01": 1575, - "2030-01-01": 1525, - "2029-01-01": 1500, - "2028-01-01": 1475, - "2027-01-01": 1450, - "2026-01-01": 1400, - "2025-01-01": 1400, - "2015-01-01": 1400 - }, - "economy": true, - "household": true - }, - "gov.contrib.states.dc.property_tax.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.contrib.states.dc.property_tax.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 1700, - "2034-01-01": 1650, - "2033-01-01": 1625, - "2032-01-01": 1600, - "2031-01-01": 1575, - "2030-01-01": 1525, - "2029-01-01": 1500, - "2028-01-01": 1475, - "2027-01-01": 1450, - "2026-01-01": 1400, - "2025-01-01": 1400, - "2015-01-01": 1400 - }, - "economy": true, - "household": true - }, - "gov.contrib.states.dc.property_tax.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.contrib.states.dc.property_tax.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 1700, - "2034-01-01": 1650, - "2033-01-01": 1625, - "2032-01-01": 1600, - "2031-01-01": 1575, - "2030-01-01": 1525, - "2029-01-01": 1500, - "2028-01-01": 1475, - "2027-01-01": 1450, - "2026-01-01": 1400, - "2025-01-01": 1400, - "2015-01-01": 1400 - }, - "economy": true, - "household": true - }, - "gov.contrib.states.mn": { - "type": "parameterNode", - "parameter": "gov.contrib.states.mn", - "description": null, - "label": "mn", - "economy": true, - "household": true - }, - "gov.contrib.states.mn.walz": { - "type": "parameterNode", - "parameter": "gov.contrib.states.mn.walz", - "description": null, - "label": "walz", - "economy": true, - "household": true - }, - "gov.contrib.states.mn.walz.hf1938": { - "type": "parameterNode", - "parameter": "gov.contrib.states.mn.walz.hf1938", - "description": null, - "label": "hf1938", - "economy": true, - "household": true - }, - "gov.contrib.states.mn.walz.hf1938.repeal": { - "type": "parameter", - "parameter": "gov.contrib.states.mn.walz.hf1938.repeal", - "description": "The Minnesota Bill HF1938, implemented by Gov. Walz, is repealed if this is true.", - "label": "Minnesota Bill HF1938 repeal", - "unit": "bool", - "period": "year", - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.states.mt": { - "type": "parameterNode", - "parameter": "gov.contrib.states.mt", - "description": null, - "label": "mt", - "economy": true, - "household": true - }, - "gov.contrib.states.mt.ctc": { - "type": "parameterNode", - "parameter": "gov.contrib.states.mt.ctc", - "description": null, - "label": "Child Tax Credit", - "economy": true, - "household": true - }, - "gov.contrib.states.mt.ctc.reduction": { - "type": "parameterNode", - "parameter": "gov.contrib.states.mt.ctc.reduction", - "description": null, - "label": "reduction", - "economy": true, - "household": true - }, - "gov.contrib.states.mt.ctc.reduction.increment": { - "type": "parameter", - "parameter": "gov.contrib.states.mt.ctc.reduction.increment", - "description": "Montana reduces the child tax credit for each of these increments that a filer's adjusted gross income exceeds the threshold.", - "label": "Montana child tax credit reduction increment", - "unit": null, - "period": "year", - "values": { - "2023-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.contrib.states.mt.ctc.reduction.amount": { - "type": "parameter", - "parameter": "gov.contrib.states.mt.ctc.reduction.amount", - "description": "Montana reduces the child tax credit by this amount for each income increment.", - "label": "Montana child tax credit reduction amount", - "unit": null, - "period": "year", - "values": { - "2023-01-01": 90, - "2015-01-01": 90 - }, - "economy": true, - "household": true - }, - "gov.contrib.states.mt.ctc.reduction.threshold": { - "type": "parameter", - "parameter": "gov.contrib.states.mt.ctc.reduction.threshold", - "description": "Montana reduces the child tax credit for filers with income above this income threshold.", - "label": "Montana child tax credit reduction threshold", - "unit": null, - "period": "year", - "values": { - "2023-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.contrib.states.mt.ctc.income_limit": { - "type": "parameterNode", - "parameter": "gov.contrib.states.mt.ctc.income_limit", - "description": null, - "label": "income limit", - "economy": true, - "household": true - }, - "gov.contrib.states.mt.ctc.income_limit.investment": { - "type": "parameter", - "parameter": "gov.contrib.states.mt.ctc.income_limit.investment", - "description": "Montana limits its child tax credit to filers with investment income below this amount.", - "label": "Montana child tax credit investment income limit", - "unit": null, - "period": "year", - "values": { - "2023-01-01": 10300, - "2015-01-01": 10300 - }, - "economy": true, - "household": true - }, - "gov.contrib.states.mt.ctc.income_limit.agi": { - "type": "parameter", - "parameter": "gov.contrib.states.mt.ctc.income_limit.agi", - "description": "Montana limits its child tax credit to filers with federal adjusted gross income below this amount.", - "label": "Montana child tax credit adjusted gross income limit", - "unit": "currency-USD", - "period": "year", - "values": { - "2023-01-01": 56000, - "2015-01-01": 56000 - }, - "economy": true, - "household": true - }, - "gov.contrib.states.mt.ctc.in_effect": { - "type": "parameter", - "parameter": "gov.contrib.states.mt.ctc.in_effect", - "description": "The Montana Child Tax Credit is in effect if this is true.", - "label": "Montana Child Tax Credit in effect", - "unit": "bool", - "period": "year", - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.states.mt.ctc.amount": { - "type": "parameterNode", - "parameter": "gov.contrib.states.mt.ctc.amount", - "description": "Montana provides the following base amount per child under the child tax credit, based on age.", - "label": "Montana child tax credit base" - }, - "gov.contrib.states.mt.ctc.amount[0]": { - "type": "parameterNode", - "parameter": "gov.contrib.states.mt.ctc.amount[0]", - "description": null, - "label": "bracket 1" - }, - "gov.contrib.states.mt.ctc.amount[0].threshold": { - "type": "parameter", - "parameter": "gov.contrib.states.mt.ctc.amount[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.states.mt.ctc.amount[0].amount": { - "type": "parameter", - "parameter": "gov.contrib.states.mt.ctc.amount[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 1200, - "2015-01-01": 1200 - }, - "economy": true, - "household": true - }, - "gov.contrib.states.mt.ctc.amount[1]": { - "type": "parameterNode", - "parameter": "gov.contrib.states.mt.ctc.amount[1]", - "description": null, - "label": "bracket 2" - }, - "gov.contrib.states.mt.ctc.amount[1].threshold": { - "type": "parameter", - "parameter": "gov.contrib.states.mt.ctc.amount[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2023-01-01": 6, - "2015-01-01": 6 - }, - "economy": true, - "household": true - }, - "gov.contrib.states.mt.ctc.amount[1].amount": { - "type": "parameter", - "parameter": "gov.contrib.states.mt.ctc.amount[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.treasury": { - "type": "parameterNode", - "parameter": "gov.contrib.treasury", - "description": null, - "label": "treasury", - "economy": true, - "household": true - }, - "gov.contrib.treasury.repeal_dependent_exemptions": { - "type": "parameter", - "parameter": "gov.contrib.treasury.repeal_dependent_exemptions", - "description": "The dependent exemptions will be repealed if this is true.", - "label": "Repeal dependent exemptions", - "unit": "bool", - "period": "year", - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.harris": { - "type": "parameterNode", - "parameter": "gov.contrib.harris", - "description": null, - "label": "harris", - "economy": true, - "household": true - }, - "gov.contrib.harris.rent_relief_act": { - "type": "parameterNode", - "parameter": "gov.contrib.harris.rent_relief_act", - "description": null, - "label": "rent relief act", - "economy": true, - "household": true - }, - "gov.contrib.harris.rent_relief_act.rent_relief_credit": { - "type": "parameterNode", - "parameter": "gov.contrib.harris.rent_relief_act.rent_relief_credit", - "description": null, - "label": "rent relief credit", - "economy": true, - "household": true - }, - "gov.contrib.harris.rent_relief_act.rent_relief_credit.safmr_share_rent_cap": { - "type": "parameter", - "parameter": "gov.contrib.harris.rent_relief_act.rent_relief_credit.safmr_share_rent_cap", - "description": "Kamala Harris proposed capping rent at this fraction of small area fair market rent under the rent relief credit.", - "label": "Rent Relief Credit rent cap as fraction of SAFMR", - "unit": "/1", - "period": "year", - "values": { - "2019-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.rent_relief_act.rent_relief_credit.rent_income_share_threshold": { - "type": "parameter", - "parameter": "gov.contrib.harris.rent_relief_act.rent_relief_credit.rent_income_share_threshold", - "description": "Kamala Harris proposed to provide a rent relief credit to households who spend more than this share of income on rent.", - "label": "Rent Relief Credit income share threshold", - "unit": "/1", - "period": "year", - "values": { - "2019-01-01": 0.3, - "2015-01-01": 0.3 - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.rent_relief_act.rent_relief_credit.high_income_area_threshold_increase": { - "type": "parameter", - "parameter": "gov.contrib.harris.rent_relief_act.rent_relief_credit.high_income_area_threshold_increase", - "description": "Kamala Harris proposed raising the Rent Relief Act thresholds by this amounts for residents of areas where HUD uses the small area fair market rent for the Housing Choice Voucher Program.", - "label": "Rent Relief Credit high income area threshold increase", - "unit": "currency-USD", - "period": "year", - "values": { - "2019-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.rent_relief_act.rent_relief_credit.applicable_percentage": { - "type": "parameterNode", - "parameter": "gov.contrib.harris.rent_relief_act.rent_relief_credit.applicable_percentage", - "description": "Kamala Harris proposed a rent relief tax credit of the following percentage of excess rent, based on gross income.", - "label": "Rent Relief Credit applicable percentage" - }, - "gov.contrib.harris.rent_relief_act.rent_relief_credit.applicable_percentage[0]": { - "type": "parameterNode", - "parameter": "gov.contrib.harris.rent_relief_act.rent_relief_credit.applicable_percentage[0]", - "description": null, - "label": "bracket 1" - }, - "gov.contrib.harris.rent_relief_act.rent_relief_credit.applicable_percentage[0].threshold": { - "type": "parameter", - "parameter": "gov.contrib.harris.rent_relief_act.rent_relief_credit.applicable_percentage[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2019-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.rent_relief_act.rent_relief_credit.applicable_percentage[0].amount": { - "type": "parameter", - "parameter": "gov.contrib.harris.rent_relief_act.rent_relief_credit.applicable_percentage[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2019-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.rent_relief_act.rent_relief_credit.applicable_percentage[1]": { - "type": "parameterNode", - "parameter": "gov.contrib.harris.rent_relief_act.rent_relief_credit.applicable_percentage[1]", - "description": null, - "label": "bracket 2" - }, - "gov.contrib.harris.rent_relief_act.rent_relief_credit.applicable_percentage[1].threshold": { - "type": "parameter", - "parameter": "gov.contrib.harris.rent_relief_act.rent_relief_credit.applicable_percentage[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2019-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.rent_relief_act.rent_relief_credit.applicable_percentage[1].amount": { - "type": "parameter", - "parameter": "gov.contrib.harris.rent_relief_act.rent_relief_credit.applicable_percentage[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2019-01-01": 0.75, - "2015-01-01": 0.75 - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.rent_relief_act.rent_relief_credit.applicable_percentage[2]": { - "type": "parameterNode", - "parameter": "gov.contrib.harris.rent_relief_act.rent_relief_credit.applicable_percentage[2]", - "description": null, - "label": "bracket 3" - }, - "gov.contrib.harris.rent_relief_act.rent_relief_credit.applicable_percentage[2].threshold": { - "type": "parameter", - "parameter": "gov.contrib.harris.rent_relief_act.rent_relief_credit.applicable_percentage[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2019-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.rent_relief_act.rent_relief_credit.applicable_percentage[2].amount": { - "type": "parameter", - "parameter": "gov.contrib.harris.rent_relief_act.rent_relief_credit.applicable_percentage[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2019-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.rent_relief_act.rent_relief_credit.applicable_percentage[3]": { - "type": "parameterNode", - "parameter": "gov.contrib.harris.rent_relief_act.rent_relief_credit.applicable_percentage[3]", - "description": null, - "label": "bracket 4" - }, - "gov.contrib.harris.rent_relief_act.rent_relief_credit.applicable_percentage[3].threshold": { - "type": "parameter", - "parameter": "gov.contrib.harris.rent_relief_act.rent_relief_credit.applicable_percentage[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2019-01-01": 75000, - "2015-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.rent_relief_act.rent_relief_credit.applicable_percentage[3].amount": { - "type": "parameter", - "parameter": "gov.contrib.harris.rent_relief_act.rent_relief_credit.applicable_percentage[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2019-01-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.rent_relief_act.rent_relief_credit.applicable_percentage[4]": { - "type": "parameterNode", - "parameter": "gov.contrib.harris.rent_relief_act.rent_relief_credit.applicable_percentage[4]", - "description": null, - "label": "bracket 5" - }, - "gov.contrib.harris.rent_relief_act.rent_relief_credit.applicable_percentage[4].threshold": { - "type": "parameter", - "parameter": "gov.contrib.harris.rent_relief_act.rent_relief_credit.applicable_percentage[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2019-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.rent_relief_act.rent_relief_credit.applicable_percentage[4].amount": { - "type": "parameter", - "parameter": "gov.contrib.harris.rent_relief_act.rent_relief_credit.applicable_percentage[4].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2019-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.rent_relief_act.rent_relief_credit.subsidized_rent_rate": { - "type": "parameter", - "parameter": "gov.contrib.harris.rent_relief_act.rent_relief_credit.subsidized_rent_rate", - "description": "Kamala Harris proposed to provide a rent relief credit of this share of after-subsidy rent to residents of government-subsidized housing.", - "label": "Rent Relief Credit subsidized rent rate", - "unit": "/1", - "period": "year", - "values": { - "2019-01-01": 0.083, - "2015-01-01": 0.083 - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.rent_relief_act.rent_relief_credit.in_effect": { - "type": "parameter", - "parameter": "gov.contrib.harris.rent_relief_act.rent_relief_credit.in_effect", - "description": "The Rent Relief Tax Credit proposed by Kamala Harris applies if this is true.", - "label": "Rent Relief Tax Credit in effect", - "unit": "bool", - "period": "year", - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.capital_gains": { - "type": "parameterNode", - "parameter": "gov.contrib.harris.capital_gains", - "description": null, - "label": "capital gains", - "economy": true, - "household": true - }, - "gov.contrib.harris.capital_gains.brackets": { - "type": "parameterNode", - "parameter": "gov.contrib.harris.capital_gains.brackets", - "description": "Harris proposed to tax capital gains at the following rates.", - "label": "brackets", - "economy": true, - "household": true - }, - "gov.contrib.harris.capital_gains.brackets.rates": { - "type": "parameterNode", - "parameter": "gov.contrib.harris.capital_gains.brackets.rates", - "description": "Long term capital gain and qualified dividends (regular/non-AMT) rate", - "label": "rates", - "economy": true, - "household": true - }, - "gov.contrib.harris.capital_gains.brackets.rates.1": { - "type": "parameter", - "parameter": "gov.contrib.harris.capital_gains.brackets.rates.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2013-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.capital_gains.brackets.rates.2": { - "type": "parameter", - "parameter": "gov.contrib.harris.capital_gains.brackets.rates.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2013-01-01": 0.15 - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.capital_gains.brackets.rates.3": { - "type": "parameter", - "parameter": "gov.contrib.harris.capital_gains.brackets.rates.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2013-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.capital_gains.brackets.rates.4": { - "type": "parameter", - "parameter": "gov.contrib.harris.capital_gains.brackets.rates.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2013-01-01": 0.28 - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.capital_gains.brackets.thresholds": { - "type": "parameterNode", - "parameter": "gov.contrib.harris.capital_gains.brackets.thresholds", - "description": "Top thresholds of long-term capital gains and qualified dividends (regular/non-AMT) tax brackets", - "label": "thresholds", - "economy": true, - "household": true - }, - "gov.contrib.harris.capital_gains.brackets.thresholds.1": { - "type": "parameterNode", - "parameter": "gov.contrib.harris.capital_gains.brackets.thresholds.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.contrib.harris.capital_gains.brackets.thresholds.1.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.contrib.harris.capital_gains.brackets.thresholds.1.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2024-01-01": 63000, - "2023-01-01": 59750, - "2022-01-01": 55800, - "2021-01-01": 54100, - "2020-01-01": 53600, - "2019-01-01": 52750, - "2018-01-01": 51700, - "2017-01-01": 50800, - "2016-01-01": 50400, - "2015-01-01": 50200, - "2014-01-01": 49400, - "2013-01-01": 48600 - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.capital_gains.brackets.thresholds.1.JOINT": { - "type": "parameter", - "parameter": "gov.contrib.harris.capital_gains.brackets.thresholds.1.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 94050, - "2023-01-01": 89250, - "2022-01-01": 83350, - "2021-01-01": 80800, - "2020-01-01": 80000, - "2019-01-01": 78750, - "2018-01-01": 77200, - "2017-01-01": 75900, - "2016-01-01": 75300, - "2015-01-01": 74900, - "2014-01-01": 73800, - "2013-01-01": 72500 - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.capital_gains.brackets.thresholds.1.SEPARATE": { - "type": "parameter", - "parameter": "gov.contrib.harris.capital_gains.brackets.thresholds.1.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 47025, - "2023-01-01": 44625, - "2022-01-01": 41675, - "2021-01-01": 40400, - "2020-01-01": 40000, - "2019-01-01": 39375, - "2018-01-01": 38600, - "2017-01-01": 37950, - "2016-01-01": 37650, - "2015-01-01": 37450, - "2014-01-01": 36900, - "2013-01-01": 36250 - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.capital_gains.brackets.thresholds.1.SINGLE": { - "type": "parameter", - "parameter": "gov.contrib.harris.capital_gains.brackets.thresholds.1.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 47025, - "2023-01-01": 44625, - "2022-01-01": 41675, - "2021-01-01": 40400, - "2020-01-01": 40000, - "2019-01-01": 39375, - "2018-01-01": 38600, - "2017-01-01": 37950, - "2016-01-01": 37650, - "2015-01-01": 37450, - "2014-01-01": 36900, - "2013-01-01": 36250 - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.capital_gains.brackets.thresholds.1.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.contrib.harris.capital_gains.brackets.thresholds.1.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 94050, - "2023-01-01": 89250, - "2022-01-01": 83350, - "2021-01-01": 80800, - "2020-01-01": 80000, - "2019-01-01": 78750, - "2018-01-01": 77200, - "2017-01-01": 75900, - "2016-01-01": 75300, - "2015-01-01": 74900, - "2014-01-01": 73800, - "2013-01-01": 72500 - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.capital_gains.brackets.thresholds.2": { - "type": "parameterNode", - "parameter": "gov.contrib.harris.capital_gains.brackets.thresholds.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.contrib.harris.capital_gains.brackets.thresholds.2.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.contrib.harris.capital_gains.brackets.thresholds.2.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2024-01-01": 551350, - "2023-01-01": 523050, - "2022-01-01": 488500, - "2021-01-01": 473750, - "2020-01-01": 469050, - "2019-01-01": 461700, - "2018-01-01": 452400, - "2017-01-01": 444550, - "2016-01-01": 441000, - "2015-01-01": 439000, - "2014-01-01": 432200, - "2013-01-01": 425000 - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.capital_gains.brackets.thresholds.2.JOINT": { - "type": "parameter", - "parameter": "gov.contrib.harris.capital_gains.brackets.thresholds.2.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 583750, - "2023-01-01": 553850, - "2022-01-01": 517200, - "2021-01-01": 501600, - "2020-01-01": 496600, - "2019-01-01": 488850, - "2018-01-01": 479000, - "2017-01-01": 470700, - "2016-01-01": 466950, - "2015-01-01": 464850, - "2014-01-01": 457600, - "2013-01-01": 450000 - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.capital_gains.brackets.thresholds.2.SEPARATE": { - "type": "parameter", - "parameter": "gov.contrib.harris.capital_gains.brackets.thresholds.2.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 291850, - "2023-01-01": 276900, - "2022-01-01": 258600, - "2021-01-01": 250800, - "2020-01-01": 248300, - "2019-01-01": 244425, - "2018-01-01": 239500, - "2017-01-01": 235350, - "2016-01-01": 233475, - "2015-01-01": 232425, - "2014-01-01": 228800, - "2013-01-01": 225000 - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.capital_gains.brackets.thresholds.2.SINGLE": { - "type": "parameter", - "parameter": "gov.contrib.harris.capital_gains.brackets.thresholds.2.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 518900, - "2023-01-01": 492300, - "2022-01-01": 459750, - "2021-01-01": 445850, - "2020-01-01": 441450, - "2019-01-01": 434550, - "2018-01-01": 425800, - "2017-01-01": 418400, - "2016-01-01": 415050, - "2015-01-01": 413200, - "2014-01-01": 406750, - "2013-01-01": 400000 - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.capital_gains.brackets.thresholds.2.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.contrib.harris.capital_gains.brackets.thresholds.2.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 583750, - "2023-01-01": 553850, - "2022-01-01": 517200, - "2021-01-01": 501600, - "2020-01-01": 496600, - "2019-01-01": 488850, - "2018-01-01": 479000, - "2017-01-01": 470700, - "2016-01-01": 466950, - "2015-01-01": 464850, - "2014-01-01": 457600, - "2013-01-01": 450000 - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.capital_gains.brackets.thresholds.3": { - "type": "parameterNode", - "parameter": "gov.contrib.harris.capital_gains.brackets.thresholds.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.contrib.harris.capital_gains.brackets.thresholds.3.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.contrib.harris.capital_gains.brackets.thresholds.3.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2013-01-01": 1000000 - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.capital_gains.brackets.thresholds.3.JOINT": { - "type": "parameter", - "parameter": "gov.contrib.harris.capital_gains.brackets.thresholds.3.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2013-01-01": 1000000 - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.capital_gains.brackets.thresholds.3.SEPARATE": { - "type": "parameter", - "parameter": "gov.contrib.harris.capital_gains.brackets.thresholds.3.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2013-01-01": 1000000 - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.capital_gains.brackets.thresholds.3.SINGLE": { - "type": "parameter", - "parameter": "gov.contrib.harris.capital_gains.brackets.thresholds.3.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2013-01-01": 1000000 - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.capital_gains.brackets.thresholds.3.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.contrib.harris.capital_gains.brackets.thresholds.3.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2013-01-01": 1000000 - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.capital_gains.in_effect": { - "type": "parameter", - "parameter": "gov.contrib.harris.capital_gains.in_effect", - "description": "Vice President Kamala Harris has proposed to add a top capital gains tax bracket, which comes into effect if this is true.", - "label": "Harris capital gains tax reform in effect", - "unit": "bool", - "period": "year", - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.lift": { - "type": "parameterNode", - "parameter": "gov.contrib.harris.lift", - "description": null, - "label": "lift", - "economy": true, - "household": true - }, - "gov.contrib.harris.lift.middle_class_tax_credit": { - "type": "parameterNode", - "parameter": "gov.contrib.harris.lift.middle_class_tax_credit", - "description": null, - "label": "middle class tax credit", - "economy": true, - "household": true - }, - "gov.contrib.harris.lift.middle_class_tax_credit.age_threshold": { - "type": "parameter", - "parameter": "gov.contrib.harris.lift.middle_class_tax_credit.age_threshold", - "description": "The Middle Class Tax Credit is limited to filers below this age threshold.", - "label": "Middle Class Tax Credit age threshold", - "unit": "year", - "period": "year", - "values": { - "2019-01-01": 18, - "2015-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.lift.middle_class_tax_credit.cap": { - "type": "parameter", - "parameter": "gov.contrib.harris.lift.middle_class_tax_credit.cap", - "description": "The Middle Class Tax Credit is capped at the following amount.", - "label": "Middle Class Tax Credit cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 4450, - "2034-01-01": 4350, - "2033-01-01": 4300, - "2032-01-01": 4200, - "2031-01-01": 4100, - "2030-01-01": 4050, - "2029-01-01": 3950, - "2028-01-01": 3900, - "2027-01-01": 3800, - "2026-01-01": 3700, - "2025-01-01": 3650, - "2024-01-01": 3600, - "2023-01-01": 3400, - "2022-01-01": 3150, - "2021-01-01": 3100, - "2020-01-01": 3050, - "2019-01-01": 3000, - "2015-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.lift.middle_class_tax_credit.in_effect": { - "type": "parameter", - "parameter": "gov.contrib.harris.lift.middle_class_tax_credit.in_effect", - "description": "The Middle Class Tax Credit applies if this is true.", - "label": "Middle Class Tax Credit in effect", - "unit": "bool", - "period": "year", - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.lift.middle_class_tax_credit.phase_out": { - "type": "parameterNode", - "parameter": "gov.contrib.harris.lift.middle_class_tax_credit.phase_out", - "description": null, - "label": "phase out", - "economy": true, - "household": true - }, - "gov.contrib.harris.lift.middle_class_tax_credit.phase_out.start": { - "type": "parameterNode", - "parameter": "gov.contrib.harris.lift.middle_class_tax_credit.phase_out.start", - "description": "The Middle Class Tax Credit is phased-out for filers with adjusted gross income above this threshold, based on filing status.", - "label": "Middle Class Tax Credit phase-out start", - "economy": true, - "household": true - }, - "gov.contrib.harris.lift.middle_class_tax_credit.phase_out.start.SINGLE": { - "type": "parameter", - "parameter": "gov.contrib.harris.lift.middle_class_tax_credit.phase_out.start.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 44600, - "2034-01-01": 43700, - "2033-01-01": 42850, - "2032-01-01": 42050, - "2031-01-01": 41250, - "2030-01-01": 40450, - "2029-01-01": 39650, - "2028-01-01": 38850, - "2027-01-01": 38050, - "2026-01-01": 37150, - "2025-01-01": 36600, - "2024-01-01": 35800, - "2023-01-01": 33850, - "2022-01-01": 31650, - "2021-01-01": 30850, - "2020-01-01": 30500, - "2019-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.lift.middle_class_tax_credit.phase_out.start.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.contrib.harris.lift.middle_class_tax_credit.phase_out.start.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2035-01-01": 89150, - "2034-01-01": 87450, - "2033-01-01": 85750, - "2032-01-01": 84100, - "2031-01-01": 82450, - "2030-01-01": 80850, - "2029-01-01": 79300, - "2028-01-01": 77750, - "2027-01-01": 76150, - "2026-01-01": 74300, - "2025-01-01": 73200, - "2024-01-01": 71600, - "2023-01-01": 67750, - "2022-01-01": 63300, - "2021-01-01": 61700, - "2020-01-01": 60950, - "2019-01-01": 60000, - "2015-01-01": 60000 - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.lift.middle_class_tax_credit.phase_out.start.JOINT": { - "type": "parameter", - "parameter": "gov.contrib.harris.lift.middle_class_tax_credit.phase_out.start.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2035-01-01": 89150, - "2034-01-01": 87450, - "2033-01-01": 85750, - "2032-01-01": 84100, - "2031-01-01": 82450, - "2030-01-01": 80850, - "2029-01-01": 79300, - "2028-01-01": 77750, - "2027-01-01": 76150, - "2026-01-01": 74300, - "2025-01-01": 73200, - "2024-01-01": 71600, - "2023-01-01": 67750, - "2022-01-01": 63300, - "2021-01-01": 61700, - "2020-01-01": 60950, - "2019-01-01": 60000, - "2015-01-01": 60000 - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.lift.middle_class_tax_credit.phase_out.start.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.contrib.harris.lift.middle_class_tax_credit.phase_out.start.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 44600, - "2034-01-01": 43700, - "2033-01-01": 42850, - "2032-01-01": 42050, - "2031-01-01": 41250, - "2030-01-01": 40450, - "2029-01-01": 39650, - "2028-01-01": 38850, - "2027-01-01": 38050, - "2026-01-01": 37150, - "2025-01-01": 36600, - "2024-01-01": 35800, - "2023-01-01": 33850, - "2022-01-01": 31650, - "2021-01-01": 30850, - "2020-01-01": 30500, - "2019-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.lift.middle_class_tax_credit.phase_out.start.SEPARATE": { - "type": "parameter", - "parameter": "gov.contrib.harris.lift.middle_class_tax_credit.phase_out.start.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 44600, - "2034-01-01": 43700, - "2033-01-01": 42850, - "2032-01-01": 42050, - "2031-01-01": 41250, - "2030-01-01": 40450, - "2029-01-01": 39650, - "2028-01-01": 38850, - "2027-01-01": 38050, - "2026-01-01": 37150, - "2025-01-01": 36600, - "2024-01-01": 35800, - "2023-01-01": 33850, - "2022-01-01": 31650, - "2021-01-01": 30850, - "2020-01-01": 30500, - "2019-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.lift.middle_class_tax_credit.phase_out.width": { - "type": "parameterNode", - "parameter": "gov.contrib.harris.lift.middle_class_tax_credit.phase_out.width", - "description": "The Middle Class Tax Credit is phased-out for filers with adjusted gross income above this threshold, based on filing status.", - "label": "Middle Class Tax Credit phase-out width", - "economy": true, - "household": true - }, - "gov.contrib.harris.lift.middle_class_tax_credit.phase_out.width.SINGLE": { - "type": "parameter", - "parameter": "gov.contrib.harris.lift.middle_class_tax_credit.phase_out.width.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 29700, - "2034-01-01": 29150, - "2033-01-01": 28600, - "2032-01-01": 28050, - "2031-01-01": 27500, - "2030-01-01": 26950, - "2029-01-01": 26450, - "2028-01-01": 25900, - "2027-01-01": 25400, - "2026-01-01": 24750, - "2025-01-01": 24400, - "2024-01-01": 23850, - "2023-01-01": 22600, - "2022-01-01": 21100, - "2021-01-01": 20550, - "2020-01-01": 20300, - "2019-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.lift.middle_class_tax_credit.phase_out.width.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.contrib.harris.lift.middle_class_tax_credit.phase_out.width.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2035-01-01": 29700, - "2034-01-01": 29150, - "2033-01-01": 28600, - "2032-01-01": 28050, - "2031-01-01": 27500, - "2030-01-01": 26950, - "2029-01-01": 26450, - "2028-01-01": 25900, - "2027-01-01": 25400, - "2026-01-01": 24750, - "2025-01-01": 24400, - "2024-01-01": 23850, - "2023-01-01": 22600, - "2022-01-01": 21100, - "2021-01-01": 20550, - "2020-01-01": 20300, - "2019-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.lift.middle_class_tax_credit.phase_out.width.JOINT": { - "type": "parameter", - "parameter": "gov.contrib.harris.lift.middle_class_tax_credit.phase_out.width.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2035-01-01": 59450, - "2034-01-01": 58300, - "2033-01-01": 57150, - "2032-01-01": 56050, - "2031-01-01": 54950, - "2030-01-01": 53900, - "2029-01-01": 52850, - "2028-01-01": 51800, - "2027-01-01": 50750, - "2026-01-01": 49550, - "2025-01-01": 48800, - "2024-01-01": 47750, - "2023-01-01": 45150, - "2022-01-01": 42200, - "2021-01-01": 41100, - "2020-01-01": 40650, - "2019-01-01": 40000, - "2015-01-01": 40000 - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.lift.middle_class_tax_credit.phase_out.width.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.contrib.harris.lift.middle_class_tax_credit.phase_out.width.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 29700, - "2034-01-01": 29150, - "2033-01-01": 28600, - "2032-01-01": 28050, - "2031-01-01": 27500, - "2030-01-01": 26950, - "2029-01-01": 26450, - "2028-01-01": 25900, - "2027-01-01": 25400, - "2026-01-01": 24750, - "2025-01-01": 24400, - "2024-01-01": 23850, - "2023-01-01": 22600, - "2022-01-01": 21100, - "2021-01-01": 20550, - "2020-01-01": 20300, - "2019-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.lift.middle_class_tax_credit.phase_out.width.SEPARATE": { - "type": "parameter", - "parameter": "gov.contrib.harris.lift.middle_class_tax_credit.phase_out.width.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 29700, - "2034-01-01": 29150, - "2033-01-01": 28600, - "2032-01-01": 28050, - "2031-01-01": 27500, - "2030-01-01": 26950, - "2029-01-01": 26450, - "2028-01-01": 25900, - "2027-01-01": 25400, - "2026-01-01": 24750, - "2025-01-01": 24400, - "2024-01-01": 23850, - "2023-01-01": 22600, - "2022-01-01": 21100, - "2021-01-01": 20550, - "2020-01-01": 20300, - "2019-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.contrib.harris.lift.middle_class_tax_credit.joint_multiplier": { - "type": "parameter", - "parameter": "gov.contrib.harris.lift.middle_class_tax_credit.joint_multiplier", - "description": "The amount of the Middle Class Tax Credit is multiplied by this factor for joint filers.", - "label": "Middle Class Tax Credit joint multiplier", - "unit": "/1", - "period": "year", - "values": { - "2019-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.contrib.tax_exempt": { - "type": "parameterNode", - "parameter": "gov.contrib.tax_exempt", - "description": null, - "label": "tax exempt", - "economy": true, - "household": true - }, - "gov.contrib.tax_exempt.tip_income": { - "type": "parameterNode", - "parameter": "gov.contrib.tax_exempt.tip_income", - "description": null, - "label": "tip income", - "economy": true, - "household": true - }, - "gov.contrib.tax_exempt.tip_income.payroll_tax_exempt": { - "type": "parameter", - "parameter": "gov.contrib.tax_exempt.tip_income.payroll_tax_exempt", - "description": "The propsal to exempt tip income from payroll tax applies, if this is true.", - "label": "Tip income payroll tax exempt", - "unit": "bool", - "period": "year", - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.tax_exempt.tip_income.income_tax_exempt": { - "type": "parameter", - "parameter": "gov.contrib.tax_exempt.tip_income.income_tax_exempt", - "description": "The propsal to exempt tip income from payroll tax applies, if this is true.", - "label": "Tip income, income tax exempt", - "unit": "bool", - "period": "year", - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.tax_exempt.overtime": { - "type": "parameterNode", - "parameter": "gov.contrib.tax_exempt.overtime", - "description": null, - "label": "overtime", - "economy": true, - "household": true - }, - "gov.contrib.tax_exempt.overtime.payroll_tax_exempt": { - "type": "parameter", - "parameter": "gov.contrib.tax_exempt.overtime.payroll_tax_exempt", - "description": "The propsal to exempt overtime income from payroll tax applies, if this is true.", - "label": "Overtime income payroll tax exempt", - "unit": "bool", - "period": "year", - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.tax_exempt.overtime.income_tax_exempt": { - "type": "parameter", - "parameter": "gov.contrib.tax_exempt.overtime.income_tax_exempt", - "description": "The propsal to exempt overtime income from income tax applies, if this is true.", - "label": "Overtime income, income tax exempt", - "unit": "bool", - "period": "year", - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.tax_exempt.in_effect": { - "type": "parameter", - "parameter": "gov.contrib.tax_exempt.in_effect", - "description": "Various income sources are exempt from federal income or payroll tax, if this is true.", - "label": "Tax exemptions in effect", - "unit": "bool", - "period": "year", - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.contrib.deductions": { - "type": "parameterNode", - "parameter": "gov.contrib.deductions", - "description": null, - "label": "deductions", - "economy": true, - "household": true - }, - "gov.contrib.deductions.salt": { - "type": "parameterNode", - "parameter": "gov.contrib.deductions.salt", - "description": null, - "label": "salt", - "economy": true, - "household": true - }, - "gov.contrib.deductions.salt.limit_salt_deduction_to_property_taxes": { - "type": "parameter", - "parameter": "gov.contrib.deductions.salt.limit_salt_deduction_to_property_taxes", - "description": "The State and Local Tax (SALT) deduction is limited to the amount of property taxes paid, if this is true.", - "label": "Limit SALT deduction to property taxes", - "unit": "bool", - "period": "year", - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.irs": { - "type": "parameterNode", - "parameter": "gov.irs", - "description": null, - "label": "Internal Revenue Service (IRS)", - "economy": true, - "household": true - }, - "gov.irs.unemployment_compensation": { - "type": "parameterNode", - "parameter": "gov.irs.unemployment_compensation", - "description": null, - "label": "unemployment compensation", - "economy": true, - "household": true - }, - "gov.irs.unemployment_compensation.exemption": { - "type": "parameterNode", - "parameter": "gov.irs.unemployment_compensation.exemption", - "description": null, - "label": "exemption", - "economy": true, - "household": true - }, - "gov.irs.unemployment_compensation.exemption.amount": { - "type": "parameter", - "parameter": "gov.irs.unemployment_compensation.exemption.amount", - "description": "Unemployment Insurance exemption amount", - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2020-01-01": 10200, - "2013-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.unemployment_compensation.exemption.cutoff": { - "type": "parameterNode", - "parameter": "gov.irs.unemployment_compensation.exemption.cutoff", - "description": "Unemployment Insurance exemption cutoff", - "label": "cutoff", - "economy": true, - "household": true - }, - "gov.irs.unemployment_compensation.exemption.cutoff.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.unemployment_compensation.exemption.cutoff.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2020-01-01": 150000, - "2013-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.unemployment_compensation.exemption.cutoff.JOINT": { - "type": "parameter", - "parameter": "gov.irs.unemployment_compensation.exemption.cutoff.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2020-01-01": 150000, - "2013-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.unemployment_compensation.exemption.cutoff.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.unemployment_compensation.exemption.cutoff.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2020-01-01": 150000, - "2013-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.unemployment_compensation.exemption.cutoff.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.unemployment_compensation.exemption.cutoff.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2020-01-01": 150000, - "2013-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.unemployment_compensation.exemption.cutoff.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.unemployment_compensation.exemption.cutoff.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2020-01-01": 150000, - "2013-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.gross_income": { - "type": "parameterNode", - "parameter": "gov.irs.gross_income", - "description": null, - "label": "gross income", - "economy": true, - "household": true - }, - "gov.irs.gross_income.pre_tax_contributions": { - "type": "parameter", - "parameter": "gov.irs.gross_income.pre_tax_contributions", - "description": "The US subtracts these payroll deductions from wages and salaries when determining the taxable amount.", - "label": "Pre-tax contributions", - "unit": "list", - "period": "year", - "values": { - "2010-01-01": [ - "traditional_401k_contributions", - "traditional_403b_contributions", - "health_insurance_premiums", - "health_savings_account_payroll_contributions" - ] - }, - "economy": true, - "household": true - }, - "gov.irs.gross_income.sources": { - "type": "parameter", - "parameter": "gov.irs.gross_income.sources", - "description": "Income sources counted as gross income for tax purposes.", - "label": "Gross income sources", - "unit": "list", - "period": "year", - "values": { - "2010-01-01": [ - "irs_employment_income", - "self_employment_income", - "partnership_s_corp_income", - "farm_income", - "farm_rent_income", - "capital_gains", - "taxable_interest_income", - "rental_income", - "dividend_income", - "taxable_pension_income", - "debt_relief", - "taxable_unemployment_compensation", - "taxable_social_security", - "illicit_income", - "taxable_retirement_distributions", - "miscellaneous_income", - "ak_permanent_fund_dividend" - ] - }, - "economy": true, - "household": true - }, - "gov.irs.gross_income.retirement_contributions": { - "type": "parameterNode", - "parameter": "gov.irs.gross_income.retirement_contributions", - "description": null, - "label": "retirement contributions", - "economy": true, - "household": true - }, - "gov.irs.gross_income.retirement_contributions.catch_up": { - "type": "parameterNode", - "parameter": "gov.irs.gross_income.retirement_contributions.catch_up", - "description": null, - "label": "catch up", - "economy": true, - "household": true - }, - "gov.irs.gross_income.retirement_contributions.catch_up.age_threshold": { - "type": "parameter", - "parameter": "gov.irs.gross_income.retirement_contributions.catch_up.age_threshold", - "description": "The US limits catch-up pension contributions to individuals this age or older.", - "label": "Pension contribution catch-up age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 50, - "2015-01-01": 50 - }, - "economy": true, - "household": true - }, - "gov.irs.gross_income.retirement_contributions.catch_up.limit": { - "type": "parameterNode", - "parameter": "gov.irs.gross_income.retirement_contributions.catch_up.limit", - "description": null, - "label": "limit", - "economy": true, - "household": true - }, - "gov.irs.gross_income.retirement_contributions.catch_up.limit.ira": { - "type": "parameter", - "parameter": "gov.irs.gross_income.retirement_contributions.catch_up.limit.ira", - "description": "The US allows for catch-up IRA contributions of this amount.", - "label": "IRA catch-up amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2018-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.irs.gross_income.retirement_contributions.catch_up.limit.401k": { - "type": "parameter", - "parameter": "gov.irs.gross_income.retirement_contributions.catch_up.limit.401k", - "description": "IRS limits the 401(k) contributions catch-up to this amount.", - "label": "401(k) catch-up amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2023-01-01": 7500, - "2020-01-01": 6500, - "2018-01-01": 6000, - "2015-01-01": 6000 - }, - "economy": true, - "household": true - }, - "gov.irs.gross_income.retirement_contributions.limit": { - "type": "parameterNode", - "parameter": "gov.irs.gross_income.retirement_contributions.limit", - "description": null, - "label": "limit", - "economy": true, - "household": true - }, - "gov.irs.gross_income.retirement_contributions.limit.ira": { - "type": "parameter", - "parameter": "gov.irs.gross_income.retirement_contributions.limit.ira", - "description": "The US limits annual IRA contributions to this amount.", - "label": "IRA contribution limit", - "unit": "currency-USD", - "period": "year", - "values": { - "2024-01-01": 7000, - "2023-01-01": 6500, - "2019-01-01": 6000, - "2018-01-01": 5500, - "2015-01-01": 5500 - }, - "economy": true, - "household": true - }, - "gov.irs.gross_income.retirement_contributions.limit.401k": { - "type": "parameter", - "parameter": "gov.irs.gross_income.retirement_contributions.limit.401k", - "description": "The US limits annual 401(k) contributions to this amount.", - "label": "401(k) contribution limit", - "unit": "currency-USD", - "period": "year", - "values": { - "2024-01-01": 23000, - "2023-01-01": 22500, - "2022-01-01": 20500, - "2020-01-01": 19500, - "2019-01-01": 19000, - "2018-01-01": 18500, - "2015-01-01": 18500 - }, - "economy": true, - "household": true - }, - "gov.irs.gross_income.dependent_care_assistance_programs": { - "type": "parameterNode", - "parameter": "gov.irs.gross_income.dependent_care_assistance_programs", - "description": null, - "label": "dependent care assistance programs", - "economy": true, - "household": true - }, - "gov.irs.gross_income.dependent_care_assistance_programs.reduction_amount": { - "type": "parameterNode", - "parameter": "gov.irs.gross_income.dependent_care_assistance_programs.reduction_amount", - "description": "IRS reduces the dependent care benefit limit by this amount, based on filing status.", - "label": "IRS reduction amount from gross income for dependent care assistance", - "economy": true, - "household": true - }, - "gov.irs.gross_income.dependent_care_assistance_programs.reduction_amount.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.gross_income.dependent_care_assistance_programs.reduction_amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2018-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.irs.gross_income.dependent_care_assistance_programs.reduction_amount.JOINT": { - "type": "parameter", - "parameter": "gov.irs.gross_income.dependent_care_assistance_programs.reduction_amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2018-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.irs.gross_income.dependent_care_assistance_programs.reduction_amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.gross_income.dependent_care_assistance_programs.reduction_amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2018-01-01": 2500, - "2015-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.irs.gross_income.dependent_care_assistance_programs.reduction_amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.gross_income.dependent_care_assistance_programs.reduction_amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2018-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.irs.gross_income.dependent_care_assistance_programs.reduction_amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.gross_income.dependent_care_assistance_programs.reduction_amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2018-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.irs.gross_income.disqualified_earned_income": { - "type": "parameter", - "parameter": "gov.irs.gross_income.disqualified_earned_income", - "description": "Income sources counted as disqualified earned income.", - "label": "Disqualified earned income sources", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": [ - "dividend_income", - "tax_exempt_interest_income", - "interest_income", - "rental_income", - "capital_gains" - ], - "2015-01-01": [ - "dividend_income", - "tax_exempt_interest_income", - "interest_income", - "rental_income", - "capital_gains" - ] - }, - "economy": true, - "household": true - }, - "gov.irs.credits": { - "type": "parameterNode", - "parameter": "gov.irs.credits", - "description": null, - "label": "credits", - "economy": true, - "household": true - }, - "gov.irs.credits.eitc": { - "type": "parameterNode", - "parameter": "gov.irs.credits.eitc", - "description": null, - "label": "Earned Income Tax Credit", - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.phase_in_rate": { - "type": "parameterNode", - "parameter": "gov.irs.credits.eitc.phase_in_rate", - "description": "Earned income credit phase-in rate.", - "label": "EITC phase-in rate by number of children" - }, - "gov.irs.credits.eitc.phase_in_rate[0]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.eitc.phase_in_rate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.irs.credits.eitc.phase_in_rate[0].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.eitc.phase_in_rate[0].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "1995-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.phase_in_rate[0].amount": { - "type": "parameter", - "parameter": "gov.irs.credits.eitc.phase_in_rate[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.0765, - "2021-01-01": 0.153, - "1995-01-01": 0.0765 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.phase_in_rate[1]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.eitc.phase_in_rate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.irs.credits.eitc.phase_in_rate[1].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.eitc.phase_in_rate[1].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "1995-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.phase_in_rate[1].amount": { - "type": "parameter", - "parameter": "gov.irs.credits.eitc.phase_in_rate[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "1995-01-01": 0.34 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.phase_in_rate[2]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.eitc.phase_in_rate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.irs.credits.eitc.phase_in_rate[2].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.eitc.phase_in_rate[2].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "1995-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.phase_in_rate[2].amount": { - "type": "parameter", - "parameter": "gov.irs.credits.eitc.phase_in_rate[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "1995-01-01": 0.4 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.phase_in_rate[3]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.eitc.phase_in_rate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.irs.credits.eitc.phase_in_rate[3].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.eitc.phase_in_rate[3].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "1995-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.phase_in_rate[3].amount": { - "type": "parameter", - "parameter": "gov.irs.credits.eitc.phase_in_rate[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "1995-01-01": 0.45 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.max": { - "type": "parameterNode", - "parameter": "gov.irs.credits.eitc.max", - "description": "The maximum EITC amount.", - "label": "EITC maximum amount by number of children" - }, - "gov.irs.credits.eitc.max[0]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.eitc.max[0]", - "description": null, - "label": "bracket 1" - }, - "gov.irs.credits.eitc.max[0].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.eitc.max[0].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.max[0].amount": { - "type": "parameter", - "parameter": "gov.irs.credits.eitc.max[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 792, - "2034-01-01": 776, - "2033-01-01": 762, - "2032-01-01": 747, - "2031-01-01": 732, - "2030-01-01": 718, - "2029-01-01": 704, - "2028-01-01": 691, - "2027-01-01": 677, - "2026-01-01": 662, - "2025-01-01": 649, - "2024-01-01": 632, - "2023-01-01": 600, - "2022-01-01": 560, - "2021-01-01": 1502, - "2020-01-01": 538, - "2019-01-01": 529, - "2018-01-01": 519, - "2017-01-01": 510, - "2015-01-01": 510 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.max[1]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.eitc.max[1]", - "description": null, - "label": "bracket 2" - }, - "gov.irs.credits.eitc.max[1].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.eitc.max[1].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "0000-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.max[1].amount": { - "type": "parameter", - "parameter": "gov.irs.credits.eitc.max[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 5280, - "2034-01-01": 5178, - "2033-01-01": 5072, - "2032-01-01": 4978, - "2031-01-01": 4882, - "2030-01-01": 4787, - "2029-01-01": 4695, - "2028-01-01": 4604, - "2027-01-01": 4512, - "2026-01-01": 4420, - "2025-01-01": 4328, - "2024-01-01": 4213, - "2023-01-01": 3995, - "2022-01-01": 3733, - "2021-01-01": 3618, - "2020-01-01": 3584, - "2019-01-01": 3526, - "2018-01-01": 3461, - "2017-01-01": 3400, - "2015-01-01": 3400 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.max[2]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.eitc.max[2]", - "description": null, - "label": "bracket 3" - }, - "gov.irs.credits.eitc.max[2].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.eitc.max[2].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "0000-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.max[2].amount": { - "type": "parameter", - "parameter": "gov.irs.credits.eitc.max[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 8724, - "2034-01-01": 8556, - "2033-01-01": 8388, - "2032-01-01": 8224, - "2031-01-01": 8068, - "2030-01-01": 7908, - "2029-01-01": 7756, - "2028-01-01": 7608, - "2027-01-01": 7456, - "2026-01-01": 7300, - "2025-01-01": 7152, - "2024-01-01": 6960, - "2023-01-01": 6604, - "2022-01-01": 6164, - "2021-01-01": 5980, - "2020-01-01": 5920, - "2019-01-01": 5828, - "2018-01-01": 5716, - "2017-01-01": 5616, - "2015-01-01": 5616 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.max[3]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.eitc.max[3]", - "description": null, - "label": "bracket 4" - }, - "gov.irs.credits.eitc.max[3].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.eitc.max[3].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "0000-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.max[3].amount": { - "type": "parameter", - "parameter": "gov.irs.credits.eitc.max[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 9814, - "2034-01-01": 9626, - "2033-01-01": 9436, - "2032-01-01": 9252, - "2031-01-01": 9076, - "2030-01-01": 8896, - "2029-01-01": 8726, - "2028-01-01": 8559, - "2027-01-01": 8388, - "2026-01-01": 8212, - "2025-01-01": 8046, - "2024-01-01": 7830, - "2023-01-01": 7430, - "2022-01-01": 6935, - "2021-01-01": 6728, - "2020-01-01": 6660, - "2019-01-01": 6557, - "2018-01-01": 6431, - "2017-01-01": 6318, - "2015-01-01": 6318 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.takeup": { - "type": "parameterNode", - "parameter": "gov.irs.credits.eitc.takeup", - "description": "The share of eligible individuals who claim the EITC.", - "label": "EITC take-up rate by number of children" - }, - "gov.irs.credits.eitc.takeup[0]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.eitc.takeup[0]", - "description": null, - "label": "bracket 1" - }, - "gov.irs.credits.eitc.takeup[0].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.eitc.takeup[0].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.takeup[0].amount": { - "type": "parameter", - "parameter": "gov.irs.credits.eitc.takeup[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2000-01-01": 0.65 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.takeup[1]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.eitc.takeup[1]", - "description": null, - "label": "bracket 2" - }, - "gov.irs.credits.eitc.takeup[1].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.eitc.takeup[1].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2000-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.takeup[1].amount": { - "type": "parameter", - "parameter": "gov.irs.credits.eitc.takeup[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2000-01-01": 0.86 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.takeup[2]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.eitc.takeup[2]", - "description": null, - "label": "bracket 3" - }, - "gov.irs.credits.eitc.takeup[2].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.eitc.takeup[2].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2000-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.takeup[2].amount": { - "type": "parameter", - "parameter": "gov.irs.credits.eitc.takeup[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2000-01-01": 0.85 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.eligibility": { - "type": "parameterNode", - "parameter": "gov.irs.credits.eitc.eligibility", - "description": null, - "label": "eligibility", - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.eligibility.age": { - "type": "parameterNode", - "parameter": "gov.irs.credits.eitc.eligibility.age", - "description": null, - "label": "age", - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.eligibility.age.min_student": { - "type": "parameter", - "parameter": "gov.irs.credits.eitc.eligibility.age.min_student", - "description": "The US limits EITC eligibility for students without children to those this age or older.", - "label": "EITC minimum childless student age", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 25, - "2021-01-01": 24, - "2013-01-01": 25 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.eligibility.age.max": { - "type": "parameter", - "parameter": "gov.irs.credits.eitc.eligibility.age.max", - "description": "The US limits EITC eligibility for filers without children to those below this age.", - "label": "EITC maximum childless age", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 64, - "2021-01-01": "Infinity", - "2013-01-01": 64 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.eligibility.age.min": { - "type": "parameter", - "parameter": "gov.irs.credits.eitc.eligibility.age.min", - "description": "The US limits EITC eligibility for non-student filers without children to those this age or older.", - "label": "EITC minimum non-student childless age", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 25, - "2021-01-01": 19, - "2013-01-01": 25 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.eligibility.separate_filer": { - "type": "parameter", - "parameter": "gov.irs.credits.eitc.eligibility.separate_filer", - "description": "The US makes married filing separate filers eligible for the EITC when this is true.", - "label": "EITC separate filers eligible", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": true, - "2013-01-01": false - }, - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.phase_out": { - "type": "parameterNode", - "parameter": "gov.irs.credits.eitc.phase_out", - "description": null, - "label": "phase out", - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.phase_out.max_investment_income": { - "type": "parameter", - "parameter": "gov.irs.credits.eitc.phase_out.max_investment_income", - "description": "Maximum investment income for EITC.", - "label": "EITC maximum investment income", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 14558.0965038271, - "2034-01-01": 14276.1921727705, - "2033-01-01": 13997.7681420972, - "2032-01-01": 13726.3047121908, - "2031-01-01": 13461.8018830512, - "2030-01-01": 13200.7793542951, - "2029-01-01": 12943.2371259223, - "2028-01-01": 12689.175197933, - "2027-01-01": 12431.6329695602, - "2026-01-01": 12132.6751666248, - "2025-01-01": 11950, - "2024-01-01": 11600, - "2023-01-01": 11000, - "2022-01-01": 10300, - "2021-01-01": 10000, - "2020-01-01": 3650, - "2019-01-01": 3600, - "2018-01-01": 3500, - "2017-01-01": 3450, - "2015-01-01": 3400, - "2014-01-01": 3350, - "2013-01-01": 3300 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.phase_out.joint_bonus": { - "type": "parameterNode", - "parameter": "gov.irs.credits.eitc.phase_out.joint_bonus", - "description": "Extra earned income credit phase-out start AGI for married filing jointly.", - "label": "joint bonus" - }, - "gov.irs.credits.eitc.phase_out.joint_bonus[0]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.eitc.phase_out.joint_bonus[0]", - "description": null, - "label": "bracket 1" - }, - "gov.irs.credits.eitc.phase_out.joint_bonus[0].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.eitc.phase_out.joint_bonus[0].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2013-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.phase_out.joint_bonus[0].amount": { - "type": "parameter", - "parameter": "gov.irs.credits.eitc.phase_out.joint_bonus[0].amount", - "description": null, - "label": "EITC phase-out start joint filer bonus (no children)", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 8670, - "2034-01-01": 8510, - "2033-01-01": 8340, - "2032-01-01": 8180, - "2031-01-01": 8020, - "2030-01-01": 7870, - "2029-01-01": 7710, - "2028-01-01": 7570, - "2027-01-01": 7410, - "2026-01-01": 7260, - "2025-01-01": 7110, - "2024-01-01": 6920, - "2023-01-01": 6570, - "2022-01-01": 6130, - "2021-01-01": 5940, - "2020-01-01": 5890, - "2019-01-01": 5800, - "2018-01-01": 5690, - "2017-01-01": 5590, - "2016-01-01": 5550, - "2015-01-01": 5520, - "2014-01-01": 5430, - "2013-01-01": 5340, - "2012-01-01": 5210, - "2011-01-01": 5080, - "2010-01-01": 5010, - "2009-01-01": 5000, - "2008-01-01": 3000, - "2005-01-01": 2000, - "2002-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.phase_out.joint_bonus[1]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.eitc.phase_out.joint_bonus[1]", - "description": null, - "label": "bracket 2" - }, - "gov.irs.credits.eitc.phase_out.joint_bonus[1].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.eitc.phase_out.joint_bonus[1].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2013-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.phase_out.joint_bonus[1].amount": { - "type": "parameter", - "parameter": "gov.irs.credits.eitc.phase_out.joint_bonus[1].amount", - "description": null, - "label": "EITC phase-out start joint filer bonus (with children)", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 8680, - "2034-01-01": 8510, - "2033-01-01": 8340, - "2032-01-01": 8180, - "2031-01-01": 8020, - "2030-01-01": 7870, - "2029-01-01": 7720, - "2028-01-01": 7570, - "2027-01-01": 7420, - "2026-01-01": 7260, - "2025-01-01": 7120, - "2024-01-01": 6920, - "2023-01-01": 6560, - "2022-01-01": 6130, - "2021-01-01": 5950, - "2020-01-01": 5890, - "2019-01-01": 5790, - "2018-01-01": 5700, - "2017-01-01": 5590, - "2016-01-01": 5550, - "2015-01-01": 5520, - "2014-01-01": 5430, - "2013-01-01": 5340, - "2012-01-01": 5210, - "2011-01-01": 5080, - "2010-01-01": 5010, - "2009-01-01": 5000, - "2008-01-01": 3000, - "2005-01-01": 2000, - "2002-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.phase_out.start": { - "type": "parameterNode", - "parameter": "gov.irs.credits.eitc.phase_out.start", - "description": "The EITC phase-out start.", - "label": "EITC phase-out start by number of children" - }, - "gov.irs.credits.eitc.phase_out.start[0]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.eitc.phase_out.start[0]", - "description": null, - "label": "bracket 1" - }, - "gov.irs.credits.eitc.phase_out.start[0].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.eitc.phase_out.start[0].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "1995-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.phase_out.start[0].amount": { - "type": "parameter", - "parameter": "gov.irs.credits.eitc.phase_out.start[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 12960, - "2034-01-01": 12700, - "2033-01-01": 12460, - "2032-01-01": 12210, - "2031-01-01": 11980, - "2030-01-01": 11740, - "2029-01-01": 11520, - "2028-01-01": 11290, - "2027-01-01": 11070, - "2026-01-01": 10840, - "2025-01-01": 10620, - "2024-01-01": 10330, - "2023-01-01": 9800, - "2022-01-01": 9160, - "2021-01-01": 11610, - "2020-01-01": 8790, - "2019-01-01": 8650, - "2018-01-01": 8510, - "2017-01-01": 8340, - "2015-01-01": 8340 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.phase_out.start[1]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.eitc.phase_out.start[1]", - "description": null, - "label": "bracket 2" - }, - "gov.irs.credits.eitc.phase_out.start[1].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.eitc.phase_out.start[1].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "1995-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.phase_out.start[1].amount": { - "type": "parameter", - "parameter": "gov.irs.credits.eitc.phase_out.start[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 28490, - "2034-01-01": 27930, - "2033-01-01": 27390, - "2032-01-01": 26860, - "2031-01-01": 26340, - "2030-01-01": 25820, - "2029-01-01": 25320, - "2028-01-01": 24830, - "2027-01-01": 24340, - "2026-01-01": 23840, - "2025-01-01": 23350, - "2024-01-01": 22720, - "2023-01-01": 21560, - "2022-01-01": 20130, - "2021-01-01": 19520, - "2020-01-01": 19330, - "2019-01-01": 19030, - "2018-01-01": 18700, - "2017-01-01": 18340, - "2015-01-01": 18340 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.phase_out.start[2]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.eitc.phase_out.start[2]", - "description": null, - "label": "bracket 3" - }, - "gov.irs.credits.eitc.phase_out.start[2].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.eitc.phase_out.start[2].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "1995-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.phase_out.start[2].amount": { - "type": "parameter", - "parameter": "gov.irs.credits.eitc.phase_out.start[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 28490, - "2034-01-01": 27930, - "2033-01-01": 27390, - "2032-01-01": 26860, - "2031-01-01": 26340, - "2030-01-01": 25820, - "2029-01-01": 25320, - "2028-01-01": 24830, - "2027-01-01": 24340, - "2026-01-01": 23840, - "2025-01-01": 23350, - "2024-01-01": 22720, - "2023-01-01": 21560, - "2022-01-01": 20130, - "2021-01-01": 19520, - "2020-01-01": 19330, - "2019-01-01": 19030, - "2018-01-01": 18700, - "2017-01-01": 18340, - "2015-01-01": 18340 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.phase_out.start[3]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.eitc.phase_out.start[3]", - "description": null, - "label": "bracket 4" - }, - "gov.irs.credits.eitc.phase_out.start[3].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.eitc.phase_out.start[3].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "1995-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.phase_out.start[3].amount": { - "type": "parameter", - "parameter": "gov.irs.credits.eitc.phase_out.start[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2034-01-01": 27870, - "2033-01-01": 27320, - "2032-01-01": 26790, - "2031-01-01": 26270, - "2030-01-01": 25760, - "2029-01-01": 25260, - "2028-01-01": 24780, - "2027-01-01": 24310, - "2026-01-01": 23810, - "2025-01-01": 23350, - "2024-01-01": 22720, - "2023-01-01": 21560, - "2022-01-01": 20130, - "2021-01-01": 19520, - "2020-01-01": 19330, - "2019-01-01": 19030, - "2018-01-01": 18700, - "2017-01-01": 18340, - "2015-01-01": 18340 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.phase_out.rate": { - "type": "parameterNode", - "parameter": "gov.irs.credits.eitc.phase_out.rate", - "description": "Earned income credit phase-out rate.", - "label": "EITC phase-out rate by number of children" - }, - "gov.irs.credits.eitc.phase_out.rate[0]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.eitc.phase_out.rate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.irs.credits.eitc.phase_out.rate[0].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.eitc.phase_out.rate[0].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "1995-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.phase_out.rate[0].amount": { - "type": "parameter", - "parameter": "gov.irs.credits.eitc.phase_out.rate[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.0765, - "2021-01-01": 0.153, - "1995-01-01": 0.0765 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.phase_out.rate[1]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.eitc.phase_out.rate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.irs.credits.eitc.phase_out.rate[1].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.eitc.phase_out.rate[1].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "1995-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.phase_out.rate[1].amount": { - "type": "parameter", - "parameter": "gov.irs.credits.eitc.phase_out.rate[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "1995-01-01": 0.1598 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.phase_out.rate[2]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.eitc.phase_out.rate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.irs.credits.eitc.phase_out.rate[2].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.eitc.phase_out.rate[2].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "1995-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.phase_out.rate[2].amount": { - "type": "parameter", - "parameter": "gov.irs.credits.eitc.phase_out.rate[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "1995-01-01": 0.2106 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.phase_out.rate[3]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.eitc.phase_out.rate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.irs.credits.eitc.phase_out.rate[3].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.eitc.phase_out.rate[3].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "1995-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.eitc.phase_out.rate[3].amount": { - "type": "parameter", - "parameter": "gov.irs.credits.eitc.phase_out.rate[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "1995-01-01": 0.2106 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.refundable": { - "type": "parameter", - "parameter": "gov.irs.credits.refundable", - "description": "Refundable tax credits.", - "label": "Refundable tax credits", - "unit": "list", - "period": "year", - "values": { - "2022-01-01": [ - "eitc", - "refundable_american_opportunity_credit", - "refundable_ctc", - "recovery_rebate_credit", - "refundable_payroll_tax_credit" - ], - "2021-01-01": [ - "eitc", - "refundable_american_opportunity_credit", - "refundable_ctc", - "recovery_rebate_credit", - "refundable_payroll_tax_credit", - "cdcc" - ], - "2013-01-01": [ - "eitc", - "refundable_american_opportunity_credit", - "refundable_ctc", - "recovery_rebate_credit", - "refundable_payroll_tax_credit" - ] - }, - "economy": true, - "household": true - }, - "gov.irs.credits.energy_efficient_home_improvement": { - "type": "parameterNode", - "parameter": "gov.irs.credits.energy_efficient_home_improvement", - "description": null, - "label": "energy efficient home improvement", - "economy": true, - "household": true - }, - "gov.irs.credits.energy_efficient_home_improvement.cap": { - "type": "parameterNode", - "parameter": "gov.irs.credits.energy_efficient_home_improvement.cap", - "description": null, - "label": "cap", - "economy": true, - "household": true - }, - "gov.irs.credits.energy_efficient_home_improvement.cap.lifetime": { - "type": "parameterNode", - "parameter": "gov.irs.credits.energy_efficient_home_improvement.cap.lifetime", - "description": null, - "label": "lifetime", - "economy": true, - "household": true - }, - "gov.irs.credits.energy_efficient_home_improvement.cap.lifetime.window": { - "type": "parameter", - "parameter": "gov.irs.credits.energy_efficient_home_improvement.cap.lifetime.window", - "description": "The IRS caps lifetime energy efficient home improvement credits on windows at this amount.", - "label": "Energy efficient home improvement credit lifetime window limit", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": "Infinity", - "2017-01-01": 200, - "2015-01-01": 200 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.energy_efficient_home_improvement.cap.lifetime.total": { - "type": "parameter", - "parameter": "gov.irs.credits.energy_efficient_home_improvement.cap.lifetime.total", - "description": "The IRS caps lifetime energy efficient home improvement credits at this amount.", - "label": "Energy efficient home improvement credit lifetime limit", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": "Infinity", - "2017-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.energy_efficient_home_improvement.cap.annual": { - "type": "parameterNode", - "parameter": "gov.irs.credits.energy_efficient_home_improvement.cap.annual", - "description": null, - "label": "annual", - "economy": true, - "household": true - }, - "gov.irs.credits.energy_efficient_home_improvement.cap.annual.door": { - "type": "parameter", - "parameter": "gov.irs.credits.energy_efficient_home_improvement.cap.annual.door", - "description": "The IRS caps energy efficient home improvement credits on exterior doors at this amount per year.", - "label": "Energy efficient home improvement credit cap on exterior doors", - "unit": "currency-USD", - "period": "year", - "values": { - "2023-01-01": 500, - "2017-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.irs.credits.energy_efficient_home_improvement.cap.annual.energy_efficient_central_air_conditioner": { - "type": "parameter", - "parameter": "gov.irs.credits.energy_efficient_home_improvement.cap.annual.energy_efficient_central_air_conditioner", - "description": "The IRS caps energy efficient home improvement credits on energy efficient central air conditioners at this amount per year.", - "label": "Energy efficient home improvement credit cap on energy-efficient central air conditioners", - "unit": "currency-USD", - "period": "year", - "values": { - "2017-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.irs.credits.energy_efficient_home_improvement.cap.annual.advanced_main_air_circulating_fan": { - "type": "parameter", - "parameter": "gov.irs.credits.energy_efficient_home_improvement.cap.annual.advanced_main_air_circulating_fan", - "description": "The IRS caps energy efficient home improvement credits on advance main air circulating fans at this amount per year.", - "label": "Energy efficient home improvement credit cap on advanced main air circulating fans", - "unit": "currency-USD", - "period": "year", - "values": { - "2023-01-01": "Infinity", - "2017-01-01": 50, - "2015-01-01": 50 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.energy_efficient_home_improvement.cap.annual.heat_pump_heat_pump_water_heater_biomass_stove_boiler": { - "type": "parameter", - "parameter": "gov.irs.credits.energy_efficient_home_improvement.cap.annual.heat_pump_heat_pump_water_heater_biomass_stove_boiler", - "description": "The IRS caps energy efficient home improvement credits on heat pumps, heat pump water heaters, and biomass stoves and boilers at this amount per year.", - "label": "Energy efficient home improvement credit cap on heat pumps, heat pump water heaters, and biomass stoves and boilers", - "unit": "currency-USD", - "period": "year", - "values": { - "2023-01-01": 2000, - "2017-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.irs.credits.energy_efficient_home_improvement.cap.annual.energy_efficient_building_property": { - "type": "parameter", - "parameter": "gov.irs.credits.energy_efficient_home_improvement.cap.annual.energy_efficient_building_property", - "description": "The IRS caps energy efficient home improvement credits on energy efficient building property at this amount per year.", - "label": "Energy efficient home improvement credit cap on energy-efficient building property", - "unit": "currency-USD", - "period": "year", - "values": { - "2023-01-01": 600, - "2017-01-01": 300, - "2015-01-01": 300 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.energy_efficient_home_improvement.cap.annual.window": { - "type": "parameter", - "parameter": "gov.irs.credits.energy_efficient_home_improvement.cap.annual.window", - "description": "The IRS caps energy efficient home improvement credits on energy efficient windows and skylights at this amount per year.", - "label": "Energy efficient home improvement credit cap on windows and skylights", - "unit": "currency-USD", - "period": "year", - "values": { - "2023-01-01": 600, - "2017-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.irs.credits.energy_efficient_home_improvement.cap.annual.roof": { - "type": "parameter", - "parameter": "gov.irs.credits.energy_efficient_home_improvement.cap.annual.roof", - "description": "The IRS caps energy efficient home improvement credits on roofs and roof material at this amount per year.", - "label": "Energy efficient home improvement credit cap on roofs", - "unit": "currency-USD", - "period": "year", - "values": { - "2017-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.irs.credits.energy_efficient_home_improvement.cap.annual.qualified_furnace_or_hot_water_boiler": { - "type": "parameter", - "parameter": "gov.irs.credits.energy_efficient_home_improvement.cap.annual.qualified_furnace_or_hot_water_boiler", - "description": "The IRS caps energy efficient home improvement credits on qualified natural gas, propane, or oil furnaces or hot water boilers at this amount per year.", - "label": "Energy efficient home improvement credit cap on qualified furnaces or boilers", - "unit": "currency-USD", - "period": "year", - "values": { - "2023-01-01": "Infinity", - "2017-01-01": 150, - "2015-01-01": 150 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.energy_efficient_home_improvement.cap.annual.insulation_material": { - "type": "parameter", - "parameter": "gov.irs.credits.energy_efficient_home_improvement.cap.annual.insulation_material", - "description": "The IRS caps energy efficient home improvement credits on energy efficient insulation material at this amount per year.", - "label": "Energy efficient home improvement credit cap on energy efficient insulation material", - "unit": "currency-USD", - "period": "year", - "values": { - "2017-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.irs.credits.energy_efficient_home_improvement.cap.annual.total": { - "type": "parameter", - "parameter": "gov.irs.credits.energy_efficient_home_improvement.cap.annual.total", - "description": "The IRS caps energy efficient total home improvement credits at this amount per year (the cap on heat pumps, heat pump water heaters, and biomass stoves and boilers supersedes this cap).", - "label": "Energy efficient home improvement credit total cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2023-01-01": 1200, - "2017-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.irs.credits.energy_efficient_home_improvement.cap.annual.home_energy_audit": { - "type": "parameter", - "parameter": "gov.irs.credits.energy_efficient_home_improvement.cap.annual.home_energy_audit", - "description": "The IRS caps energy efficient home improvement credits on home energy audits at this amount per year.", - "label": "Energy efficient home improvement credit cap on home energy audits", - "unit": "currency-USD", - "period": "year", - "values": { - "2023-01-01": 150, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.energy_efficient_home_improvement.preceding_credits": { - "type": "parameter", - "parameter": "gov.irs.credits.energy_efficient_home_improvement.preceding_credits", - "description": "Non-refundable tax credits which precede the Energy Efficient Home Improvement Credit.", - "label": "Non-refundable tax credits preceding the Energy Efficient Home Improvement Credit", - "unit": "list", - "period": "year", - "values": { - "2013-01-01": [ - "foreign_tax_credit", - "cdcc", - "non_refundable_american_opportunity_credit", - "lifetime_learning_credit", - "savers_credit", - "residential_clean_energy_credit" - ] - }, - "economy": true, - "household": true - }, - "gov.irs.credits.energy_efficient_home_improvement.rates": { - "type": "parameterNode", - "parameter": "gov.irs.credits.energy_efficient_home_improvement.rates", - "description": null, - "label": "rates", - "economy": true, - "household": true - }, - "gov.irs.credits.energy_efficient_home_improvement.rates.improvements": { - "type": "parameter", - "parameter": "gov.irs.credits.energy_efficient_home_improvement.rates.improvements", - "description": "The IRS provides an energy efficient home improvement tax credit for this share of qualified energy efficiency improvements.", - "label": "Energy efficient home improvement credit rate on improvements", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.3, - "2017-01-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.energy_efficient_home_improvement.rates.property": { - "type": "parameter", - "parameter": "gov.irs.credits.energy_efficient_home_improvement.rates.property", - "description": "The IRS provides an energy efficient home improvement tax credit for this share of residential energy property expenditures.", - "label": "Energy efficient home improvement credit rate on property", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.3, - "2017-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.energy_efficient_home_improvement.rates.home_energy_audit": { - "type": "parameter", - "parameter": "gov.irs.credits.energy_efficient_home_improvement.rates.home_energy_audit", - "description": "The IRS provides an energy efficient home improvement tax credit for this share of home energy audit expenditures.", - "label": "Energy efficient home improvement credit rate on home energy audits", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.3, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.energy_efficient_home_improvement.in_effect": { - "type": "parameter", - "parameter": "gov.irs.credits.energy_efficient_home_improvement.in_effect", - "description": "The IRS provides the energy efficient home improvement tax credit when this is true.", - "label": "Energy efficient home improvement tax credit in effect", - "unit": null, - "period": null, - "values": { - "2033-01-01": false, - "2009-01-01": true, - "2008-01-01": false, - "2006-01-01": true - }, - "economy": true, - "household": true - }, - "gov.irs.credits.energy_efficient_home_improvement.qualified_expenditures": { - "type": "parameterNode", - "parameter": "gov.irs.credits.energy_efficient_home_improvement.qualified_expenditures", - "description": null, - "label": "qualified expenditures", - "economy": true, - "household": true - }, - "gov.irs.credits.energy_efficient_home_improvement.qualified_expenditures.heat_pump_heat_pump_water_heater_biomass_stove_boiler": { - "type": "parameter", - "parameter": "gov.irs.credits.energy_efficient_home_improvement.qualified_expenditures.heat_pump_heat_pump_water_heater_biomass_stove_boiler", - "description": "The US provides a energy efficient home improvement credit for these energy efficiency improvements.", - "label": "Expenditures on heat pump water heaters, heat pumps, and biomass stovers and boilers that qualify for energy efficient home improvement credit", - "unit": null, - "period": null, - "values": { - "2023-01-01": ["heat_pump", "heat_pump_water_heater", "biomass_stove_boiler"], - "2006-01-01": ["heat_pump", "heat_pump_water_heater"] - }, - "economy": true, - "household": true - }, - "gov.irs.credits.energy_efficient_home_improvement.qualified_expenditures.credits": { - "type": "parameter", - "parameter": "gov.irs.credits.energy_efficient_home_improvement.qualified_expenditures.credits", - "description": "The US includes these capped credits in determining the total energy efficient home improvement tax credit.", - "label": "Energy efficiency improvements that qualify for energy efficient home improvement credit", - "unit": null, - "period": null, - "values": { - "2023-01-01": [ - "capped_energy_efficient_door_credit", - "capped_energy_efficient_insulation_credit", - "capped_energy_efficient_window_credit", - "capped_advanced_main_air_circulating_fan_credit", - "capped_qualified_furnace_or_hot_water_boiler_credit", - "capped_advanced_main_air_circulating_fan_credit", - "capped_energy_efficient_central_air_conditioner_credit", - "capped_heat_pump_heat_pump_water_heater_biomass_stove_boiler_credit", - "capped_qualified_furnace_or_hot_water_boiler_credit", - "capped_home_energy_audit_credit" - ], - "2006-01-01": [ - "capped_energy_efficient_door_credit", - "capped_energy_efficient_insulation_credit", - "capped_energy_efficient_window_credit", - "capped_energy_efficient_roof_credit", - "capped_advanced_main_air_circulating_fan_credit", - "capped_qualified_furnace_or_hot_water_boiler_credit", - "capped_energy_efficient_central_air_conditioner_credit", - "capped_heat_pump_heat_pump_water_heater_biomass_stove_boiler_credit", - "capped_qualified_furnace_or_hot_water_boiler_credit" - ] - }, - "economy": true, - "household": true - }, - "gov.irs.credits.elderly_or_disabled": { - "type": "parameterNode", - "parameter": "gov.irs.credits.elderly_or_disabled", - "description": null, - "label": "Elderly or disabled credit", - "economy": true, - "household": true - }, - "gov.irs.credits.elderly_or_disabled.age": { - "type": "parameter", - "parameter": "gov.irs.credits.elderly_or_disabled.age", - "description": "Age threshold for the elderly or disabled credit eligibility", - "label": "age", - "unit": "year", - "period": null, - "values": { - "2010-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.elderly_or_disabled.phase_out": { - "type": "parameterNode", - "parameter": "gov.irs.credits.elderly_or_disabled.phase_out", - "description": "Phase-out thresholds and rates for the elderly or disabled credit", - "label": "phase out", - "economy": true, - "household": true - }, - "gov.irs.credits.elderly_or_disabled.phase_out.threshold": { - "type": "parameterNode", - "parameter": "gov.irs.credits.elderly_or_disabled.phase_out.threshold", - "description": null, - "label": "threshold", - "economy": true, - "household": true - }, - "gov.irs.credits.elderly_or_disabled.phase_out.threshold.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.credits.elderly_or_disabled.phase_out.threshold.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2010-01-01": 7500 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.elderly_or_disabled.phase_out.threshold.JOINT": { - "type": "parameter", - "parameter": "gov.irs.credits.elderly_or_disabled.phase_out.threshold.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2010-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.elderly_or_disabled.phase_out.threshold.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.credits.elderly_or_disabled.phase_out.threshold.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2010-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.elderly_or_disabled.phase_out.threshold.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.credits.elderly_or_disabled.phase_out.threshold.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2010-01-01": 7500 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.elderly_or_disabled.phase_out.threshold.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.credits.elderly_or_disabled.phase_out.threshold.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2010-01-01": 7500 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.elderly_or_disabled.phase_out.rate": { - "type": "parameter", - "parameter": "gov.irs.credits.elderly_or_disabled.phase_out.rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2010-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.elderly_or_disabled.preceding_credits": { - "type": "parameter", - "parameter": "gov.irs.credits.elderly_or_disabled.preceding_credits", - "description": "Non-refundable tax credits which precede the Elderly or Disabled Credit.", - "label": "Non-refundable tax credits preceding the Elderly or Disabled Credit", - "unit": "list", - "period": "year", - "values": { - "2013-01-01": [ - "foreign_tax_credit", - "cdcc", - "non_refundable_american_opportunity_credit", - "lifetime_learning_credit", - "savers_credit", - "residential_clean_energy_credit", - "energy_efficient_home_improvement_credit" - ] - }, - "economy": true, - "household": true - }, - "gov.irs.credits.elderly_or_disabled.amount": { - "type": "parameterNode", - "parameter": "gov.irs.credits.elderly_or_disabled.amount", - "description": "Initial amount of Section 22 income", - "label": "amount", - "economy": true, - "household": true - }, - "gov.irs.credits.elderly_or_disabled.amount.one_qualified": { - "type": "parameter", - "parameter": "gov.irs.credits.elderly_or_disabled.amount.one_qualified", - "description": null, - "label": "one qualified", - "unit": null, - "period": null, - "values": { - "2010-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.elderly_or_disabled.amount.two_qualified": { - "type": "parameter", - "parameter": "gov.irs.credits.elderly_or_disabled.amount.two_qualified", - "description": null, - "label": "two qualified", - "unit": null, - "period": null, - "values": { - "2010-01-01": 7500 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.elderly_or_disabled.amount.separate": { - "type": "parameter", - "parameter": "gov.irs.credits.elderly_or_disabled.amount.separate", - "description": null, - "label": "separate", - "unit": null, - "period": null, - "values": { - "2010-01-01": 3750 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.elderly_or_disabled.rate": { - "type": "parameter", - "parameter": "gov.irs.credits.elderly_or_disabled.rate", - "description": "Percentage of Section 22 income which forms the elderly or disabled credit", - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2010-01-01": 0.15 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.education": { - "type": "parameterNode", - "parameter": "gov.irs.credits.education", - "description": null, - "label": "Education credits", - "economy": true, - "household": true - }, - "gov.irs.credits.education.lifetime_learning_credit": { - "type": "parameterNode", - "parameter": "gov.irs.credits.education.lifetime_learning_credit", - "description": null, - "label": "lifetime learning credit", - "economy": true, - "household": true - }, - "gov.irs.credits.education.lifetime_learning_credit.abolition": { - "type": "parameter", - "parameter": "gov.irs.credits.education.lifetime_learning_credit.abolition", - "description": "", - "label": "Abolish the Lifetime Learning Credit", - "unit": "abolition", - "period": null, - "values": { - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.irs.credits.education.lifetime_learning_credit.preceding_credits": { - "type": "parameter", - "parameter": "gov.irs.credits.education.lifetime_learning_credit.preceding_credits", - "description": "Non-refundable tax credits which precede the Lifetime Learning Credit.", - "label": "Non-refundable tax credits preceding the Lifetime Learning Credit", - "unit": "list", - "period": "year", - "values": { - "2013-01-01": ["foreign_tax_credit", "cdcc", "non_refundable_american_opportunity_credit"] - }, - "economy": true, - "household": true - }, - "gov.irs.credits.education.lifetime_learning_credit.expense_limit": { - "type": "parameter", - "parameter": "gov.irs.credits.education.lifetime_learning_credit.expense_limit", - "description": "Maximum expenses for relief under the Lifetime Learning Credit", - "label": "Lifetime Learning Credit maximum expense", - "unit": "currency-USD", - "period": "year", - "values": { - "1998-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.education.lifetime_learning_credit.rate": { - "type": "parameter", - "parameter": "gov.irs.credits.education.lifetime_learning_credit.rate", - "description": "Percentage of capped tuition expenses which is credited", - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "1998-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.education.phase_out": { - "type": "parameterNode", - "parameter": "gov.irs.credits.education.phase_out", - "description": null, - "label": "phase out", - "economy": true, - "household": true - }, - "gov.irs.credits.education.phase_out.start": { - "type": "parameterNode", - "parameter": "gov.irs.credits.education.phase_out.start", - "description": "Phase-out start for both the American Opportunity Credit and Lifetime Learning Credit on AGI", - "label": "start", - "economy": true, - "household": true - }, - "gov.irs.credits.education.phase_out.start.single": { - "type": "parameter", - "parameter": "gov.irs.credits.education.phase_out.start.single", - "description": "Phase-out start for both the American Opportunity Credit and Lifetime Learning Credit on AGI.", - "label": "Education credits phase-out start (single filers)", - "unit": "currency-USD", - "period": "year", - "values": { - "2010-01-01": 80000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.education.phase_out.start.joint": { - "type": "parameter", - "parameter": "gov.irs.credits.education.phase_out.start.joint", - "description": "Phase-out start for both the American Opportunity Credit and Lifetime Learning Credit on AGI.", - "label": "Education credits phase-out start (joint filers)", - "unit": "currency-USD", - "period": "year", - "values": { - "2010-01-01": 160000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.education.phase_out.length": { - "type": "parameterNode", - "parameter": "gov.irs.credits.education.phase_out.length", - "description": "Length of the phase-out for both the American Opportunity Credit and Lifetime Learning Credit on AGI (when excess income totals this amount, the credit is reduced to zero)", - "label": "length", - "economy": true, - "household": true - }, - "gov.irs.credits.education.phase_out.length.single": { - "type": "parameter", - "parameter": "gov.irs.credits.education.phase_out.length.single", - "description": "Length of the phase-out for both the American Opportunity Credit and Lifetime Learning Credit on AGI (when excess income totals this amount, the credit is reduced to zero).", - "label": "Education credits phase-out length (single filers)", - "unit": "currency-USD", - "period": "year", - "values": { - "2010-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.education.phase_out.length.joint": { - "type": "parameter", - "parameter": "gov.irs.credits.education.phase_out.length.joint", - "description": "Length of the phase-out for both the American Opportunity Credit and Lifetime Learning Credit on AGI (when excess income totals this amount, the credit is reduced to zero).", - "label": "Education credits phase-out length (joint filers)", - "unit": "currency-USD", - "period": "year", - "values": { - "2010-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.education.american_opportunity_credit": { - "type": "parameterNode", - "parameter": "gov.irs.credits.education.american_opportunity_credit", - "description": null, - "label": "american opportunity credit", - "economy": true, - "household": true - }, - "gov.irs.credits.education.american_opportunity_credit.abolition": { - "type": "parameter", - "parameter": "gov.irs.credits.education.american_opportunity_credit.abolition", - "description": "", - "label": "American Opportunity Credit abolition", - "unit": "abolition", - "period": null, - "values": { - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.irs.credits.education.american_opportunity_credit.refundability": { - "type": "parameter", - "parameter": "gov.irs.credits.education.american_opportunity_credit.refundability", - "description": "Percentage of the American Opportunity Credit which is refundable.", - "label": "American Opportunity Credit refundable percentage", - "unit": "/1", - "period": null, - "values": { - "2009-01-01": 0.4 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.education.american_opportunity_credit.preceding_credits": { - "type": "parameter", - "parameter": "gov.irs.credits.education.american_opportunity_credit.preceding_credits", - "description": "Non-refundable tax credits which precede the American Opportunity Credit.", - "label": "Non-refundable tax credits preceding the American Opportunity Credit", - "unit": "list", - "period": "year", - "values": { - "2013-01-01": ["foreign_tax_credit", "cdcc"] - }, - "economy": true, - "household": true - }, - "gov.irs.credits.education.american_opportunity_credit.amount": { - "type": "parameterNode", - "parameter": "gov.irs.credits.education.american_opportunity_credit.amount", - "description": "Value of the maximum American Opportunity Credit, as a marginal rate schedule on tuition expenses", - "label": "amount" - }, - "gov.irs.credits.education.american_opportunity_credit.amount[0]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.education.american_opportunity_credit.amount[0]", - "description": null, - "label": "bracket 1" - }, - "gov.irs.credits.education.american_opportunity_credit.amount[0].rate": { - "type": "parameter", - "parameter": "gov.irs.credits.education.american_opportunity_credit.amount[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2009-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.education.american_opportunity_credit.amount[0].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.education.american_opportunity_credit.amount[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2009-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.education.american_opportunity_credit.amount[1]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.education.american_opportunity_credit.amount[1]", - "description": null, - "label": "bracket 2" - }, - "gov.irs.credits.education.american_opportunity_credit.amount[1].rate": { - "type": "parameter", - "parameter": "gov.irs.credits.education.american_opportunity_credit.amount[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2009-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.education.american_opportunity_credit.amount[1].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.education.american_opportunity_credit.amount[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2009-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.education.american_opportunity_credit.amount[2]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.education.american_opportunity_credit.amount[2]", - "description": null, - "label": "bracket 3" - }, - "gov.irs.credits.education.american_opportunity_credit.amount[2].rate": { - "type": "parameter", - "parameter": "gov.irs.credits.education.american_opportunity_credit.amount[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2009-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.education.american_opportunity_credit.amount[2].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.education.american_opportunity_credit.amount[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2009-01-01": 4000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.clean_vehicle": { - "type": "parameterNode", - "parameter": "gov.irs.credits.clean_vehicle", - "description": null, - "label": "clean vehicle", - "economy": true, - "household": true - }, - "gov.irs.credits.clean_vehicle.new": { - "type": "parameterNode", - "parameter": "gov.irs.credits.clean_vehicle.new", - "description": null, - "label": "new", - "economy": true, - "household": true - }, - "gov.irs.credits.clean_vehicle.new.critical_minerals": { - "type": "parameterNode", - "parameter": "gov.irs.credits.clean_vehicle.new.critical_minerals", - "description": null, - "label": "critical minerals", - "economy": true, - "household": true - }, - "gov.irs.credits.clean_vehicle.new.critical_minerals.amount": { - "type": "parameter", - "parameter": "gov.irs.credits.clean_vehicle.new.critical_minerals.amount", - "description": "The IRS provides a credit of this amount to filers purchasing new clean vehicles meeting the critical mineral requirement.", - "label": "Credit for clean vehicles meeting the critical mineral requirement.", - "unit": "currency-USD", - "period": "year", - "values": { - "2022-01-01": 3750, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.clean_vehicle.new.critical_minerals.threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.clean_vehicle.new.critical_minerals.threshold", - "description": "The IRS limits the new clean vehicle tax credit to vehicles with at least this share of battery critical minerals (by value) extracted or processed in a country with which the United States has a free trade agreement in effect, or recycled in North America.", - "label": "Share of clean vehicle battery critical minerals made in North America to qualify for credit", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.8, - "2026-01-01": 0.7, - "2025-01-01": 0.6, - "2024-01-01": 0.5, - "2022-01-01": 0.4, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.clean_vehicle.new.preceding_credits": { - "type": "parameter", - "parameter": "gov.irs.credits.clean_vehicle.new.preceding_credits", - "description": "Non-refundable tax credits which precede the New Clean Vehicle Credit.", - "label": "Non-refundable tax credits preceding the New Clean Vehicle Credit", - "unit": "list", - "period": "year", - "values": { - "2013-01-01": [ - "foreign_tax_credit", - "cdcc", - "non_refundable_american_opportunity_credit", - "lifetime_learning_credit", - "savers_credit", - "residential_clean_energy_credit", - "energy_efficient_home_improvement_credit", - "elderly_disabled_credit" - ] - }, - "economy": true, - "household": true - }, - "gov.irs.credits.clean_vehicle.new.capacity_bonus": { - "type": "parameterNode", - "parameter": "gov.irs.credits.clean_vehicle.new.capacity_bonus", - "description": null, - "label": "capacity bonus", - "economy": true, - "household": true - }, - "gov.irs.credits.clean_vehicle.new.capacity_bonus.kwh_threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.clean_vehicle.new.capacity_bonus.kwh_threshold", - "description": "The IRS provides a capacity bonus for its new clean vehicle credit to filers purchasing vehicles with at least this battery capacity, in kilowatt hours.", - "label": "New clean vehicle credit kilowatt-hour threshold for battery capacity bonus", - "unit": "kilowatt-hour", - "period": null, - "values": { - "2021-01-01": 5, - "2015-01-01": 5 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.clean_vehicle.new.capacity_bonus.max": { - "type": "parameter", - "parameter": "gov.irs.credits.clean_vehicle.new.capacity_bonus.max", - "description": "The IRS caps its new clean vehicle credit capacity bonus at this amount.", - "label": "New clean vehicle credit maximum amount for capacity bonus", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 0, - "2021-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.clean_vehicle.new.capacity_bonus.amount": { - "type": "parameter", - "parameter": "gov.irs.credits.clean_vehicle.new.capacity_bonus.amount", - "description": "The IRS enhances its new clean vehicle credit with capacity bonus of this amount per kilowatt-hour in excess of the threshold.", - "label": "New clean vehicle credit amount per excess kilowatt-hour", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 0, - "2021-01-01": 417, - "2015-01-01": 417 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.clean_vehicle.new.base_amount": { - "type": "parameter", - "parameter": "gov.irs.credits.clean_vehicle.new.base_amount", - "description": "The IRS sets the new clean vehicle credit at this base amount.", - "label": "New clean vehicle credit base amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 0, - "2021-01-01": 2500, - "2015-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.clean_vehicle.new.battery_components": { - "type": "parameterNode", - "parameter": "gov.irs.credits.clean_vehicle.new.battery_components", - "description": null, - "label": "battery components", - "economy": true, - "household": true - }, - "gov.irs.credits.clean_vehicle.new.battery_components.amount": { - "type": "parameter", - "parameter": "gov.irs.credits.clean_vehicle.new.battery_components.amount", - "description": "The IRS provides a credit of this amount for filers purchasing new clean vehicles meeting the battery components requirement.", - "label": "Credit for clean vehicles meeting the battery components requirement", - "unit": "currency-USD", - "period": "year", - "values": { - "2022-01-01": 3750, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.clean_vehicle.new.battery_components.threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.clean_vehicle.new.battery_components.threshold", - "description": "The IRS limits its clean vehicle credit battery component amount to filers purchasing vehicles with this share of battery components (by value) made in North America.", - "label": "Share of clean vehicle battery components made in North America to qualify for credit", - "unit": "/1", - "period": null, - "values": { - "2029-01-01": 1, - "2028-01-01": 0.9, - "2027-01-01": 0.8, - "2026-01-01": 0.7, - "2024-01-01": 0.6, - "2022-01-01": 0.5, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.clean_vehicle.new.eligibility": { - "type": "parameterNode", - "parameter": "gov.irs.credits.clean_vehicle.new.eligibility", - "description": null, - "label": "eligibility", - "economy": true, - "household": true - }, - "gov.irs.credits.clean_vehicle.new.eligibility.msrp_limit": { - "type": "parameterNode", - "parameter": "gov.irs.credits.clean_vehicle.new.eligibility.msrp_limit", - "description": "The IRS limits the new clean vehicle credit to vehicles with MSRP below this value.", - "label": "MSRP limit for new clean vehicle credit", - "economy": true, - "household": true - }, - "gov.irs.credits.clean_vehicle.new.eligibility.msrp_limit.VAN": { - "type": "parameter", - "parameter": "gov.irs.credits.clean_vehicle.new.eligibility.msrp_limit.VAN", - "description": null, - "label": "VAN", - "unit": null, - "period": null, - "values": { - "2022-01-01": 80000, - "0000-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.irs.credits.clean_vehicle.new.eligibility.msrp_limit.SUV": { - "type": "parameter", - "parameter": "gov.irs.credits.clean_vehicle.new.eligibility.msrp_limit.SUV", - "description": null, - "label": "SUV", - "unit": null, - "period": null, - "values": { - "2022-01-01": 80000, - "0000-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.irs.credits.clean_vehicle.new.eligibility.msrp_limit.PICKUP": { - "type": "parameter", - "parameter": "gov.irs.credits.clean_vehicle.new.eligibility.msrp_limit.PICKUP", - "description": null, - "label": "PICKUP", - "unit": null, - "period": null, - "values": { - "2022-01-01": 80000, - "0000-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.irs.credits.clean_vehicle.new.eligibility.msrp_limit.OTHER": { - "type": "parameter", - "parameter": "gov.irs.credits.clean_vehicle.new.eligibility.msrp_limit.OTHER", - "description": null, - "label": "OTHER", - "unit": null, - "period": null, - "values": { - "2022-01-01": 55000, - "0000-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.irs.credits.clean_vehicle.new.eligibility.min_kwh": { - "type": "parameter", - "parameter": "gov.irs.credits.clean_vehicle.new.eligibility.min_kwh", - "description": "The IRS limits the new clean vehicle credit to vehicles with at least this battery capacity, in kilowatt hours.", - "label": "Minimum kWh of battery capacity for new clean vehicle to be eligible for credit", - "unit": "kilowatt-hour", - "period": null, - "values": { - "2021-01-01": 4, - "2015-01-01": 4 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.clean_vehicle.new.eligibility.income_limit": { - "type": "parameterNode", - "parameter": "gov.irs.credits.clean_vehicle.new.eligibility.income_limit", - "description": "The IRS limits the new clean vehicle credit to filers with modified adjusted gross income below this threshold in either the current or preceding year.", - "label": "Income limit for new clean vehicle credit", - "economy": true, - "household": true - }, - "gov.irs.credits.clean_vehicle.new.eligibility.income_limit.JOINT": { - "type": "parameter", - "parameter": "gov.irs.credits.clean_vehicle.new.eligibility.income_limit.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2023-01-01": 300000, - "0000-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.irs.credits.clean_vehicle.new.eligibility.income_limit.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.credits.clean_vehicle.new.eligibility.income_limit.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2023-01-01": 300000, - "0000-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.irs.credits.clean_vehicle.new.eligibility.income_limit.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.credits.clean_vehicle.new.eligibility.income_limit.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2023-01-01": 225000, - "0000-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.irs.credits.clean_vehicle.new.eligibility.income_limit.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.credits.clean_vehicle.new.eligibility.income_limit.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2023-01-01": 150000, - "0000-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.irs.credits.clean_vehicle.new.eligibility.income_limit.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.credits.clean_vehicle.new.eligibility.income_limit.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2023-01-01": 150000, - "0000-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.irs.credits.clean_vehicle.used": { - "type": "parameterNode", - "parameter": "gov.irs.credits.clean_vehicle.used", - "description": null, - "label": "used", - "economy": true, - "household": true - }, - "gov.irs.credits.clean_vehicle.used.preceding_credits": { - "type": "parameter", - "parameter": "gov.irs.credits.clean_vehicle.used.preceding_credits", - "description": "Non-refundable tax credits which precede the Used Clean Vehicle Credit.", - "label": "Non-refundable tax credits preceding the Used Clean Vehicle Credit", - "unit": "list", - "period": "year", - "values": { - "2013-01-01": [ - "foreign_tax_credit", - "cdcc", - "non_refundable_american_opportunity_credit", - "lifetime_learning_credit", - "savers_credit", - "residential_clean_energy_credit", - "energy_efficient_home_improvement_credit", - "elderly_disabled_credit", - "new_clean_vehicle_credit" - ] - }, - "economy": true, - "household": true - }, - "gov.irs.credits.clean_vehicle.used.amount": { - "type": "parameterNode", - "parameter": "gov.irs.credits.clean_vehicle.used.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.irs.credits.clean_vehicle.used.amount.max": { - "type": "parameter", - "parameter": "gov.irs.credits.clean_vehicle.used.amount.max", - "description": "The IRS caps the used clean vehicle credit at this amount.", - "label": "Maximum amount of used clean vehicle credit", - "unit": "currency-USD", - "period": "year", - "values": { - "2023-01-01": 4000, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.clean_vehicle.used.amount.percent_of_sale_price": { - "type": "parameter", - "parameter": "gov.irs.credits.clean_vehicle.used.amount.percent_of_sale_price", - "description": "The IRS provides a tax credit for up to this percentage of a used clean vehicle's purchase price.", - "label": "Used clean vehicle credit as a percent of sale price", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.3, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.clean_vehicle.used.eligibility": { - "type": "parameterNode", - "parameter": "gov.irs.credits.clean_vehicle.used.eligibility", - "description": null, - "label": "eligibility", - "economy": true, - "household": true - }, - "gov.irs.credits.clean_vehicle.used.eligibility.income_limit": { - "type": "parameterNode", - "parameter": "gov.irs.credits.clean_vehicle.used.eligibility.income_limit", - "description": "The IRS limits the used clean vehicle credit to filers with modified adjusted gross income below this threshold in either the current or preceding year.", - "label": "Income limit for used clean vehicle credit", - "economy": true, - "household": true - }, - "gov.irs.credits.clean_vehicle.used.eligibility.income_limit.JOINT": { - "type": "parameter", - "parameter": "gov.irs.credits.clean_vehicle.used.eligibility.income_limit.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2023-01-01": 150000, - "0000-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.irs.credits.clean_vehicle.used.eligibility.income_limit.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.credits.clean_vehicle.used.eligibility.income_limit.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2023-01-01": 150000, - "0000-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.irs.credits.clean_vehicle.used.eligibility.income_limit.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.credits.clean_vehicle.used.eligibility.income_limit.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2023-01-01": 112500, - "0000-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.irs.credits.clean_vehicle.used.eligibility.income_limit.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.credits.clean_vehicle.used.eligibility.income_limit.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2023-01-01": 75000, - "0000-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.irs.credits.clean_vehicle.used.eligibility.income_limit.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.credits.clean_vehicle.used.eligibility.income_limit.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2023-01-01": 75000, - "0000-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.irs.credits.clean_vehicle.used.eligibility.sale_price_limit": { - "type": "parameter", - "parameter": "gov.irs.credits.clean_vehicle.used.eligibility.sale_price_limit", - "description": "The IRS limits the used clean vehicle credit to vehicle purchases below this threshold.", - "label": "Sale price limit for used clean vehicle credit", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 25000, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.premium_tax_credit": { - "type": "parameterNode", - "parameter": "gov.irs.credits.premium_tax_credit", - "description": null, - "label": "premium tax credit", - "economy": true, - "household": true - }, - "gov.irs.credits.premium_tax_credit.eligibility": { - "type": "parameterNode", - "parameter": "gov.irs.credits.premium_tax_credit.eligibility", - "description": "Eligibility for the Premium Tax Credit as a percentage of the federal poverty line.", - "label": "eligibility" - }, - "gov.irs.credits.premium_tax_credit.eligibility[0]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.premium_tax_credit.eligibility[0]", - "description": null, - "label": "bracket 1" - }, - "gov.irs.credits.premium_tax_credit.eligibility[0].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.premium_tax_credit.eligibility[0].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.premium_tax_credit.eligibility[0].amount": { - "type": "parameter", - "parameter": "gov.irs.credits.premium_tax_credit.eligibility[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.irs.credits.premium_tax_credit.eligibility[1]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.premium_tax_credit.eligibility[1]", - "description": null, - "label": "bracket 2" - }, - "gov.irs.credits.premium_tax_credit.eligibility[1].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.premium_tax_credit.eligibility[1].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.premium_tax_credit.eligibility[1].amount": { - "type": "parameter", - "parameter": "gov.irs.credits.premium_tax_credit.eligibility[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.irs.credits.premium_tax_credit.eligibility[2]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.premium_tax_credit.eligibility[2]", - "description": null, - "label": "bracket 3" - }, - "gov.irs.credits.premium_tax_credit.eligibility[2].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.premium_tax_credit.eligibility[2].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2015-01-01": 4 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.premium_tax_credit.eligibility[2].amount": { - "type": "parameter", - "parameter": "gov.irs.credits.premium_tax_credit.eligibility[2].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.irs.credits.premium_tax_credit.phase_out": { - "type": "parameterNode", - "parameter": "gov.irs.credits.premium_tax_credit.phase_out", - "description": null, - "label": "phase out", - "economy": true, - "household": true - }, - "gov.irs.credits.premium_tax_credit.phase_out.ending_rate": { - "type": "parameterNode", - "parameter": "gov.irs.credits.premium_tax_credit.phase_out.ending_rate", - "description": "Ending rate of the phase-out of the Premium Tax Credit, by MAGI percentage of the federal poverty line.", - "label": "ending rate" - }, - "gov.irs.credits.premium_tax_credit.phase_out.ending_rate[0]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.premium_tax_credit.phase_out.ending_rate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.irs.credits.premium_tax_credit.phase_out.ending_rate[0].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.premium_tax_credit.phase_out.ending_rate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.premium_tax_credit.phase_out.ending_rate[0].amount": { - "type": "parameter", - "parameter": "gov.irs.credits.premium_tax_credit.phase_out.ending_rate[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": 0.02, - "2021-01-01": 0, - "2015-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.premium_tax_credit.phase_out.ending_rate[1]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.premium_tax_credit.phase_out.ending_rate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.irs.credits.premium_tax_credit.phase_out.ending_rate[1].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.premium_tax_credit.phase_out.ending_rate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 1.33, - "2021-01-01": null, - "2015-01-01": 1.33 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.premium_tax_credit.phase_out.ending_rate[1].amount": { - "type": "parameter", - "parameter": "gov.irs.credits.premium_tax_credit.phase_out.ending_rate[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": 1.33, - "2021-01-01": null, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.premium_tax_credit.phase_out.ending_rate[2]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.premium_tax_credit.phase_out.ending_rate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.irs.credits.premium_tax_credit.phase_out.ending_rate[2].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.premium_tax_credit.phase_out.ending_rate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 1.5 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.premium_tax_credit.phase_out.ending_rate[2].amount": { - "type": "parameter", - "parameter": "gov.irs.credits.premium_tax_credit.phase_out.ending_rate[2].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": 0.063, - "2021-01-01": 0.02, - "2015-01-01": 0.063 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.premium_tax_credit.phase_out.ending_rate[3]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.premium_tax_credit.phase_out.ending_rate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.irs.credits.premium_tax_credit.phase_out.ending_rate[3].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.premium_tax_credit.phase_out.ending_rate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.premium_tax_credit.phase_out.ending_rate[3].amount": { - "type": "parameter", - "parameter": "gov.irs.credits.premium_tax_credit.phase_out.ending_rate[3].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": 0.0805, - "2021-01-01": 0.04, - "2015-01-01": 0.0805 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.premium_tax_credit.phase_out.ending_rate[4]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.premium_tax_credit.phase_out.ending_rate[4]", - "description": null, - "label": "bracket 5" - }, - "gov.irs.credits.premium_tax_credit.phase_out.ending_rate[4].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.premium_tax_credit.phase_out.ending_rate[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 2.5 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.premium_tax_credit.phase_out.ending_rate[4].amount": { - "type": "parameter", - "parameter": "gov.irs.credits.premium_tax_credit.phase_out.ending_rate[4].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": 0.0805, - "2021-01-01": 0.06, - "2015-01-01": 0.0805 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.premium_tax_credit.phase_out.ending_rate[5]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.premium_tax_credit.phase_out.ending_rate[5]", - "description": null, - "label": "bracket 6" - }, - "gov.irs.credits.premium_tax_credit.phase_out.ending_rate[5].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.premium_tax_credit.phase_out.ending_rate[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.premium_tax_credit.phase_out.ending_rate[5].amount": { - "type": "parameter", - "parameter": "gov.irs.credits.premium_tax_credit.phase_out.ending_rate[5].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": 0.095, - "2021-01-01": 0.085, - "2015-01-01": 0.095 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.premium_tax_credit.phase_out.ending_rate[6]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.premium_tax_credit.phase_out.ending_rate[6]", - "description": null, - "label": "bracket 7" - }, - "gov.irs.credits.premium_tax_credit.phase_out.ending_rate[6].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.premium_tax_credit.phase_out.ending_rate[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 4 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.premium_tax_credit.phase_out.ending_rate[6].amount": { - "type": "parameter", - "parameter": "gov.irs.credits.premium_tax_credit.phase_out.ending_rate[6].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": 0, - "2021-01-01": 0.085, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.premium_tax_credit.phase_out.starting_rate": { - "type": "parameterNode", - "parameter": "gov.irs.credits.premium_tax_credit.phase_out.starting_rate", - "description": "Starting rate of the phase-out of the Premium Tax Credit, by MAGI percentage of the federal poverty line.", - "label": "starting rate" - }, - "gov.irs.credits.premium_tax_credit.phase_out.starting_rate[0]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.premium_tax_credit.phase_out.starting_rate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.irs.credits.premium_tax_credit.phase_out.starting_rate[0].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.premium_tax_credit.phase_out.starting_rate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.premium_tax_credit.phase_out.starting_rate[0].amount": { - "type": "parameter", - "parameter": "gov.irs.credits.premium_tax_credit.phase_out.starting_rate[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": 0.02, - "2021-01-01": 0, - "2015-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.premium_tax_credit.phase_out.starting_rate[1]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.premium_tax_credit.phase_out.starting_rate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.irs.credits.premium_tax_credit.phase_out.starting_rate[1].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.premium_tax_credit.phase_out.starting_rate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 1.33, - "2021-01-01": null, - "2015-01-01": 1.33 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.premium_tax_credit.phase_out.starting_rate[1].amount": { - "type": "parameter", - "parameter": "gov.irs.credits.premium_tax_credit.phase_out.starting_rate[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": 1.33, - "2021-01-01": null, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.premium_tax_credit.phase_out.starting_rate[2]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.premium_tax_credit.phase_out.starting_rate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.irs.credits.premium_tax_credit.phase_out.starting_rate[2].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.premium_tax_credit.phase_out.starting_rate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 1.5 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.premium_tax_credit.phase_out.starting_rate[2].amount": { - "type": "parameter", - "parameter": "gov.irs.credits.premium_tax_credit.phase_out.starting_rate[2].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": 0.04, - "2021-01-01": 0, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.premium_tax_credit.phase_out.starting_rate[3]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.premium_tax_credit.phase_out.starting_rate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.irs.credits.premium_tax_credit.phase_out.starting_rate[3].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.premium_tax_credit.phase_out.starting_rate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.premium_tax_credit.phase_out.starting_rate[3].amount": { - "type": "parameter", - "parameter": "gov.irs.credits.premium_tax_credit.phase_out.starting_rate[3].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": 0.063, - "2021-01-01": 0.02, - "2015-01-01": 0.063 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.premium_tax_credit.phase_out.starting_rate[4]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.premium_tax_credit.phase_out.starting_rate[4]", - "description": null, - "label": "bracket 5" - }, - "gov.irs.credits.premium_tax_credit.phase_out.starting_rate[4].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.premium_tax_credit.phase_out.starting_rate[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 2.5 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.premium_tax_credit.phase_out.starting_rate[4].amount": { - "type": "parameter", - "parameter": "gov.irs.credits.premium_tax_credit.phase_out.starting_rate[4].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": 0.0805, - "2021-01-01": 0.04, - "2015-01-01": 0.0805 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.premium_tax_credit.phase_out.starting_rate[5]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.premium_tax_credit.phase_out.starting_rate[5]", - "description": null, - "label": "bracket 6" - }, - "gov.irs.credits.premium_tax_credit.phase_out.starting_rate[5].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.premium_tax_credit.phase_out.starting_rate[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.premium_tax_credit.phase_out.starting_rate[5].amount": { - "type": "parameter", - "parameter": "gov.irs.credits.premium_tax_credit.phase_out.starting_rate[5].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": 0.095, - "2021-01-01": 0.06, - "2015-01-01": 0.095 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.premium_tax_credit.phase_out.starting_rate[6]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.premium_tax_credit.phase_out.starting_rate[6]", - "description": null, - "label": "bracket 7" - }, - "gov.irs.credits.premium_tax_credit.phase_out.starting_rate[6].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.premium_tax_credit.phase_out.starting_rate[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 4 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.premium_tax_credit.phase_out.starting_rate[6].amount": { - "type": "parameter", - "parameter": "gov.irs.credits.premium_tax_credit.phase_out.starting_rate[6].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": 0, - "2021-01-01": 0.085, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.ctc": { - "type": "parameterNode", - "parameter": "gov.irs.credits.ctc", - "description": null, - "label": "Child Tax Credit", - "economy": true, - "household": true - }, - "gov.irs.credits.ctc.adult_ssn_requirement_applies": { - "type": "parameter", - "parameter": "gov.irs.credits.ctc.adult_ssn_requirement_applies", - "description": "The IRS requires a Social Security Number for at least one of the adults in the household to qualify for the Child Tax Credit, if this is true.", - "label": "Child Tax Credit adult identification requirement applies", - "unit": "bool", - "period": "year", - "values": { - "2025-01-01": true, - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.irs.credits.ctc.eligible_ssn_card_type": { - "type": "parameter", - "parameter": "gov.irs.credits.ctc.eligible_ssn_card_type", - "description": "The IRS limits the child tax credit to filers with one of these SSN Card types.", - "label": "Child tax credit eligible SSN card type", - "unit": "list", - "period": "year", - "values": { - "2018-01-01": ["CITIZEN", "NON_CITIZEN_VALID_EAD"], - "2015-01-01": ["CITIZEN", "NON_CITIZEN_VALID_EAD"] - }, - "economy": true, - "household": true - }, - "gov.irs.credits.ctc.amount": { - "type": "parameterNode", - "parameter": "gov.irs.credits.ctc.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.irs.credits.ctc.amount.base": { - "type": "parameterNode", - "parameter": "gov.irs.credits.ctc.amount.base", - "description": "The IRS provides a maximum Child Tax Credit of this amount, depending on the child's age.", - "label": "Child Tax Credit amount" - }, - "gov.irs.credits.ctc.amount.base[0]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.ctc.amount.base[0]", - "description": null, - "label": "bracket 1" - }, - "gov.irs.credits.ctc.amount.base[0].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.ctc.amount.base[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2013-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.ctc.amount.base[0].amount": { - "type": "parameter", - "parameter": "gov.irs.credits.ctc.amount.base[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 2700, - "2033-01-01": 2600, - "2031-01-01": 2500, - "2029-01-01": 2400, - "2027-01-01": 2300, - "2025-01-01": 2200, - "2018-01-01": 2000, - "2013-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.ctc.amount.base[1]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.ctc.amount.base[1]", - "description": null, - "label": "bracket 2" - }, - "gov.irs.credits.ctc.amount.base[1].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.ctc.amount.base[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 17, - "2021-01-01": 18, - "2013-01-01": 17 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.ctc.amount.base[1].amount": { - "type": "parameter", - "parameter": "gov.irs.credits.ctc.amount.base[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2013-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.ctc.amount.adult_dependent": { - "type": "parameter", - "parameter": "gov.irs.credits.ctc.amount.adult_dependent", - "description": "Maximum value of the CTC for adult dependents.", - "label": "Child tax credit for adult dependents", - "unit": "currency-USD", - "period": "year", - "values": { - "2018-01-01": 500, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.ctc.amount.arpa_expansion_cap_percent_of_threshold_diff": { - "type": "parameter", - "parameter": "gov.irs.credits.ctc.amount.arpa_expansion_cap_percent_of_threshold_diff", - "description": "The IRS caps the American Rescue Plan Act Child Tax Credit expansion by this percentage of the difference in phase-out thresholds between base and ARPA.", - "label": "ARPA CTC expansion cap as percent of threshold difference", - "unit": "/1", - "period": null, - "values": { - "0000-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.ctc.amount.arpa": { - "type": "parameterNode", - "parameter": "gov.irs.credits.ctc.amount.arpa", - "description": "The IRS provided a higher maximum Child Tax Credit of this amount, depending on the child's age, under the American Rescue Plan Act.", - "label": "Child Tax Credit ARPA amount" - }, - "gov.irs.credits.ctc.amount.arpa[0]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.ctc.amount.arpa[0]", - "description": null, - "label": "bracket 1" - }, - "gov.irs.credits.ctc.amount.arpa[0].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.ctc.amount.arpa[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2013-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.ctc.amount.arpa[0].amount": { - "type": "parameter", - "parameter": "gov.irs.credits.ctc.amount.arpa[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 0, - "2021-01-01": 3600, - "2013-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.ctc.amount.arpa[1]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.ctc.amount.arpa[1]", - "description": null, - "label": "bracket 2" - }, - "gov.irs.credits.ctc.amount.arpa[1].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.ctc.amount.arpa[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2013-01-01": 6 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.ctc.amount.arpa[1].amount": { - "type": "parameter", - "parameter": "gov.irs.credits.ctc.amount.arpa[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 0, - "2021-01-01": 3000, - "2013-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.ctc.refundable": { - "type": "parameterNode", - "parameter": "gov.irs.credits.ctc.refundable", - "description": null, - "label": "Refundability", - "economy": true, - "household": true - }, - "gov.irs.credits.ctc.refundable.phase_in": { - "type": "parameterNode", - "parameter": "gov.irs.credits.ctc.refundable.phase_in", - "description": null, - "label": "Phase-in", - "economy": true, - "household": true - }, - "gov.irs.credits.ctc.refundable.phase_in.min_children_for_ss_taxes_minus_eitc": { - "type": "parameter", - "parameter": "gov.irs.credits.ctc.refundable.phase_in.min_children_for_ss_taxes_minus_eitc", - "description": "Minimum number of qualifying children to increase the refundable Child Tax Credit by Social Security taxes minus the Earned Income Tax Credit.", - "label": "Minimum children to consider Social Security taxes minus EITC in refundable CTC", - "unit": "person", - "period": null, - "values": { - "2013-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.ctc.refundable.phase_in.rate": { - "type": "parameter", - "parameter": "gov.irs.credits.ctc.refundable.phase_in.rate", - "description": "Additional Child Tax Credit rate", - "label": "CTC refundable phase-in rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.15 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.ctc.refundable.phase_in.threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.ctc.refundable.phase_in.threshold", - "description": "Additional Child Tax Credit income threshold", - "label": "CTC refundable phase-in threshold", - "unit": "currency-USD", - "period": "year", - "values": { - "2018-01-01": 2500, - "2013-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.ctc.refundable.fully_refundable": { - "type": "parameter", - "parameter": "gov.irs.credits.ctc.refundable.fully_refundable", - "description": "The IRS makes the Child Tax Credit fully refundable if this is true.", - "label": "Fully refundable CTC", - "unit": "bool", - "period": null, - "values": { - "2022-01-01": false, - "2021-01-01": true, - "2013-01-01": false - }, - "economy": true, - "household": true - }, - "gov.irs.credits.ctc.refundable.individual_max": { - "type": "parameter", - "parameter": "gov.irs.credits.ctc.refundable.individual_max", - "description": "Maximum refundable amount of the CTC for qualifying children.", - "label": "Child tax credit refundable maximum amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2034-01-01": 2100, - "2032-01-01": 2000, - "2029-01-01": 1900, - "2027-01-01": 1800, - "2024-01-01": 1700, - "2023-01-01": 1600, - "2022-01-01": 1500, - "2018-01-01": 1400, - "2013-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.ctc.refundable.social_security": { - "type": "parameterNode", - "parameter": "gov.irs.credits.ctc.refundable.social_security", - "description": null, - "label": "Social Security", - "economy": true, - "household": true - }, - "gov.irs.credits.ctc.refundable.social_security.add": { - "type": "parameter", - "parameter": "gov.irs.credits.ctc.refundable.social_security.add", - "description": "The IRS defines social security taxes under the Child Tax Credit to include the following variables.", - "label": "Child Tax Credit added social security taxes", - "unit": "list", - "period": "year", - "values": { - "2018-01-01": [ - "employee_social_security_tax", - "employee_medicare_tax", - "unreported_payroll_tax", - "self_employment_tax_ald", - "additional_medicare_tax" - ], - "2015-01-01": [ - "employee_social_security_tax", - "employee_medicare_tax", - "unreported_payroll_tax", - "self_employment_tax_ald", - "additional_medicare_tax" - ] - }, - "economy": true, - "household": true - }, - "gov.irs.credits.ctc.refundable.social_security.subtract": { - "type": "parameter", - "parameter": "gov.irs.credits.ctc.refundable.social_security.subtract", - "description": "The IRS defines social security taxes under the Child Tax Credit to exclude the following variables.", - "label": "Child Tax Credit subtracted social security taxes", - "unit": "list", - "period": "year", - "values": { - "2018-01-01": ["excess_payroll_tax_withheld"], - "2015-01-01": ["excess_payroll_tax_withheld"] - }, - "economy": true, - "household": true - }, - "gov.irs.credits.ctc.child_ssn_requirement_applies": { - "type": "parameter", - "parameter": "gov.irs.credits.ctc.child_ssn_requirement_applies", - "description": "The IRS requires a Social Security Number for qualifying children for the Child Tax Credit if this is true.", - "label": "Child Tax Credit child identification requirement applies", - "unit": "bool", - "period": "year", - "values": { - "2018-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.irs.credits.ctc.phase_out": { - "type": "parameterNode", - "parameter": "gov.irs.credits.ctc.phase_out", - "description": null, - "label": "Phase-out", - "economy": true, - "household": true - }, - "gov.irs.credits.ctc.phase_out.increment": { - "type": "parameter", - "parameter": "gov.irs.credits.ctc.phase_out.increment", - "description": "The IRS reduces the American Rescue Plan Act Child Tax Credit expansion by a certain amount for each of this increment by which one's income exceeds the phase-out thresholds.", - "label": "CTC phase-out increment (ARPA)", - "unit": "currency-USD", - "period": null, - "values": { - "0000-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.ctc.phase_out.arpa": { - "type": "parameterNode", - "parameter": "gov.irs.credits.ctc.phase_out.arpa", - "description": null, - "label": "ARPA", - "economy": true, - "household": true - }, - "gov.irs.credits.ctc.phase_out.arpa.increment": { - "type": "parameter", - "parameter": "gov.irs.credits.ctc.phase_out.arpa.increment", - "description": "The IRS reduces the Child Tax Credit by a certain amount for each of this increment by which one's income exceeds the phase-out thresholds.", - "label": "CTC phase-out increment", - "unit": "currency-USD", - "period": null, - "values": { - "0000-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.ctc.phase_out.arpa.in_effect": { - "type": "parameter", - "parameter": "gov.irs.credits.ctc.phase_out.arpa.in_effect", - "description": "The IRS adds a second phase-out when this is in effect.", - "label": "CTC ARPA phase-out in effect", - "unit": "bool", - "period": null, - "values": { - "2022-01-01": false, - "2021-01-01": true, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.irs.credits.ctc.phase_out.arpa.amount": { - "type": "parameter", - "parameter": "gov.irs.credits.ctc.phase_out.arpa.amount", - "description": "The IRS reduces the American Rescue Plan Act Child Tax Credit expansion by this amount for each increment by which one's income exceeds the phase-out thresholds.", - "label": "CTC phase-out amount (ARPA)", - "unit": "currency-USD", - "period": null, - "values": { - "0000-01-01": 50 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.ctc.phase_out.arpa.threshold": { - "type": "parameterNode", - "parameter": "gov.irs.credits.ctc.phase_out.arpa.threshold", - "description": "Child tax credit phase-out MAGI start for the ARPA CTC expansion", - "label": "CTC phase-out threshold (ARPA)", - "economy": true, - "household": true - }, - "gov.irs.credits.ctc.phase_out.arpa.threshold.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.credits.ctc.phase_out.arpa.threshold.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "0000-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.ctc.phase_out.arpa.threshold.JOINT": { - "type": "parameter", - "parameter": "gov.irs.credits.ctc.phase_out.arpa.threshold.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "0000-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.ctc.phase_out.arpa.threshold.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.credits.ctc.phase_out.arpa.threshold.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "0000-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.ctc.phase_out.arpa.threshold.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.credits.ctc.phase_out.arpa.threshold.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "0000-01-01": 112500 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.ctc.phase_out.arpa.threshold.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.credits.ctc.phase_out.arpa.threshold.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "0000-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.ctc.phase_out.amount": { - "type": "parameter", - "parameter": "gov.irs.credits.ctc.phase_out.amount", - "description": "The IRS reduces the Child Tax Credit by this amount for each increment by which one's income exceeds the phase-out thresholds.", - "label": "CTC phase-out amount", - "unit": "currency-USD", - "period": null, - "values": { - "0000-01-01": 50 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.ctc.phase_out.threshold": { - "type": "parameterNode", - "parameter": "gov.irs.credits.ctc.phase_out.threshold", - "description": "The IRS phases out the Child Tax Credit for filers with MAGI above these thresholds.", - "label": "CTC phase-out threshold", - "economy": true, - "household": true - }, - "gov.irs.credits.ctc.phase_out.threshold.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.credits.ctc.phase_out.threshold.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2018-01-01": 200000, - "2013-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.ctc.phase_out.threshold.JOINT": { - "type": "parameter", - "parameter": "gov.irs.credits.ctc.phase_out.threshold.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2018-01-01": 400000, - "2013-01-01": 110000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.ctc.phase_out.threshold.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.credits.ctc.phase_out.threshold.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2018-01-01": 200000, - "2013-01-01": 55000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.ctc.phase_out.threshold.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.credits.ctc.phase_out.threshold.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2018-01-01": 200000, - "2013-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.ctc.phase_out.threshold.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.credits.ctc.phase_out.threshold.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2018-01-01": 400000, - "2013-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.recovery_rebate_credit": { - "type": "parameterNode", - "parameter": "gov.irs.credits.recovery_rebate_credit", - "description": null, - "label": "recovery rebate credit", - "economy": true, - "household": true - }, - "gov.irs.credits.recovery_rebate_credit.arpa": { - "type": "parameterNode", - "parameter": "gov.irs.credits.recovery_rebate_credit.arpa", - "description": null, - "label": "arpa", - "economy": true, - "household": true - }, - "gov.irs.credits.recovery_rebate_credit.arpa.max": { - "type": "parameterNode", - "parameter": "gov.irs.credits.recovery_rebate_credit.arpa.max", - "description": null, - "label": "max", - "economy": true, - "household": true - }, - "gov.irs.credits.recovery_rebate_credit.arpa.max.dependent": { - "type": "parameter", - "parameter": "gov.irs.credits.recovery_rebate_credit.arpa.max.dependent", - "description": "Maximum credit per dependent.", - "label": "ARPA Recovery Rebate Credit maximum amount (dependent children)", - "unit": "currency-USD", - "period": "year", - "values": { - "2022-01-01": 0, - "2021-01-01": 1400, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.recovery_rebate_credit.arpa.max.adult": { - "type": "parameter", - "parameter": "gov.irs.credits.recovery_rebate_credit.arpa.max.adult", - "description": "Maximum credit per non-dependent adult.", - "label": "ARPA Recovery Rebate Credit maximum amount (non-dependent adults)", - "unit": "currency-USD", - "period": "year", - "values": { - "2022-01-01": 0, - "2021-01-01": 1400, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.recovery_rebate_credit.arpa.phase_out": { - "type": "parameterNode", - "parameter": "gov.irs.credits.recovery_rebate_credit.arpa.phase_out", - "description": null, - "label": "phase out", - "economy": true, - "household": true - }, - "gov.irs.credits.recovery_rebate_credit.arpa.phase_out.length": { - "type": "parameterNode", - "parameter": "gov.irs.credits.recovery_rebate_credit.arpa.phase_out.length", - "description": "Phase-out length for the third Recovery Rebate Credit.", - "label": "ARPA Recovery Rebate Credit phase-out length", - "economy": true, - "household": true - }, - "gov.irs.credits.recovery_rebate_credit.arpa.phase_out.length.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.credits.recovery_rebate_credit.arpa.phase_out.length.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "0000-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.recovery_rebate_credit.arpa.phase_out.length.JOINT": { - "type": "parameter", - "parameter": "gov.irs.credits.recovery_rebate_credit.arpa.phase_out.length.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "0000-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.recovery_rebate_credit.arpa.phase_out.length.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.credits.recovery_rebate_credit.arpa.phase_out.length.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "0000-01-01": 7500 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.recovery_rebate_credit.arpa.phase_out.length.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.credits.recovery_rebate_credit.arpa.phase_out.length.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "0000-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.recovery_rebate_credit.arpa.phase_out.length.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.credits.recovery_rebate_credit.arpa.phase_out.length.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "0000-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.recovery_rebate_credit.arpa.phase_out.threshold": { - "type": "parameterNode", - "parameter": "gov.irs.credits.recovery_rebate_credit.arpa.phase_out.threshold", - "description": "Phase-out starting threshold for the ARPA Recovery Rebate Credit.", - "label": "ARPA Recovery Rebate Credit phase-out starting threshold", - "economy": true, - "household": true - }, - "gov.irs.credits.recovery_rebate_credit.arpa.phase_out.threshold.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.credits.recovery_rebate_credit.arpa.phase_out.threshold.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 0, - "2021-01-01": 75000, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.recovery_rebate_credit.arpa.phase_out.threshold.JOINT": { - "type": "parameter", - "parameter": "gov.irs.credits.recovery_rebate_credit.arpa.phase_out.threshold.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2022-01-01": 0, - "2021-01-01": 150000, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.recovery_rebate_credit.arpa.phase_out.threshold.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.credits.recovery_rebate_credit.arpa.phase_out.threshold.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2022-01-01": 0, - "2021-01-01": 112500, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.recovery_rebate_credit.arpa.phase_out.threshold.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.credits.recovery_rebate_credit.arpa.phase_out.threshold.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 0, - "2021-01-01": 75000, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.recovery_rebate_credit.arpa.phase_out.threshold.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.credits.recovery_rebate_credit.arpa.phase_out.threshold.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 0, - "2021-01-01": 75000, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.recovery_rebate_credit.caa": { - "type": "parameterNode", - "parameter": "gov.irs.credits.recovery_rebate_credit.caa", - "description": null, - "label": "caa", - "economy": true, - "household": true - }, - "gov.irs.credits.recovery_rebate_credit.caa.max": { - "type": "parameterNode", - "parameter": "gov.irs.credits.recovery_rebate_credit.caa.max", - "description": null, - "label": "max", - "economy": true, - "household": true - }, - "gov.irs.credits.recovery_rebate_credit.caa.max.adult": { - "type": "parameter", - "parameter": "gov.irs.credits.recovery_rebate_credit.caa.max.adult", - "description": "Maximum credit per non-dependent adult.", - "label": "CAA Recovery Rebate Credit maximum amount (non-dependent adults)", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 0, - "2020-01-01": 600, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.recovery_rebate_credit.caa.max.child": { - "type": "parameter", - "parameter": "gov.irs.credits.recovery_rebate_credit.caa.max.child", - "description": "Maximum credit per dependent child.", - "label": "CAA Recovery Rebate Credit maximum amount (dependent children)", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 0, - "2020-01-01": 600, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.recovery_rebate_credit.caa.phase_out": { - "type": "parameterNode", - "parameter": "gov.irs.credits.recovery_rebate_credit.caa.phase_out", - "description": null, - "label": "phase out", - "economy": true, - "household": true - }, - "gov.irs.credits.recovery_rebate_credit.caa.phase_out.rate": { - "type": "parameter", - "parameter": "gov.irs.credits.recovery_rebate_credit.caa.phase_out.rate", - "description": "Phase-out rate for the CAA Recovery Rebate Credit.", - "label": "CAA Recovery Rebate Credit phase-out rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0, - "2020-01-01": 0.05, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.recovery_rebate_credit.caa.phase_out.threshold": { - "type": "parameterNode", - "parameter": "gov.irs.credits.recovery_rebate_credit.caa.phase_out.threshold", - "description": "Phase-out starting threshold for the second Recovery Rebate Credit.", - "label": "Second Recovery Rebate Credit phase-out starting threshold", - "economy": true, - "household": true - }, - "gov.irs.credits.recovery_rebate_credit.caa.phase_out.threshold.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.credits.recovery_rebate_credit.caa.phase_out.threshold.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2020-01-01": 75000, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.recovery_rebate_credit.caa.phase_out.threshold.JOINT": { - "type": "parameter", - "parameter": "gov.irs.credits.recovery_rebate_credit.caa.phase_out.threshold.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2020-01-01": 150000, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.recovery_rebate_credit.caa.phase_out.threshold.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.credits.recovery_rebate_credit.caa.phase_out.threshold.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2020-01-01": 112500, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.recovery_rebate_credit.caa.phase_out.threshold.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.credits.recovery_rebate_credit.caa.phase_out.threshold.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2020-01-01": 75000, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.recovery_rebate_credit.caa.phase_out.threshold.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.credits.recovery_rebate_credit.caa.phase_out.threshold.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2020-01-01": 75000, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.recovery_rebate_credit.cares": { - "type": "parameterNode", - "parameter": "gov.irs.credits.recovery_rebate_credit.cares", - "description": null, - "label": "cares", - "economy": true, - "household": true - }, - "gov.irs.credits.recovery_rebate_credit.cares.max": { - "type": "parameterNode", - "parameter": "gov.irs.credits.recovery_rebate_credit.cares.max", - "description": null, - "label": "max", - "economy": true, - "household": true - }, - "gov.irs.credits.recovery_rebate_credit.cares.max.adult": { - "type": "parameter", - "parameter": "gov.irs.credits.recovery_rebate_credit.cares.max.adult", - "description": "Maximum credit per non-dependent adult.", - "label": "CARES Recovery Rebate Credit maximum amount (non-dependent adults)", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 0, - "2020-01-01": 1200, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.recovery_rebate_credit.cares.max.child": { - "type": "parameter", - "parameter": "gov.irs.credits.recovery_rebate_credit.cares.max.child", - "description": "Maximum credit per dependent child.", - "label": "CARES Recovery Rebate Credit maximum amount (dependent children)", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 0, - "2020-01-01": 500, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.recovery_rebate_credit.cares.phase_out": { - "type": "parameterNode", - "parameter": "gov.irs.credits.recovery_rebate_credit.cares.phase_out", - "description": null, - "label": "phase out", - "economy": true, - "household": true - }, - "gov.irs.credits.recovery_rebate_credit.cares.phase_out.rate": { - "type": "parameter", - "parameter": "gov.irs.credits.recovery_rebate_credit.cares.phase_out.rate", - "description": "Phase-out rate for the CARES Recovery Rebate Credit.", - "label": "CARES Recovery Rebate Credit phase-out rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0, - "2020-01-01": 0.05, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.recovery_rebate_credit.cares.phase_out.threshold": { - "type": "parameterNode", - "parameter": "gov.irs.credits.recovery_rebate_credit.cares.phase_out.threshold", - "description": "Phase-out starting threshold for the CARES Recovery Rebate Credit.", - "label": "CARES Recovery Rebate Credit phase-out starting threshold", - "economy": true, - "household": true - }, - "gov.irs.credits.recovery_rebate_credit.cares.phase_out.threshold.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.credits.recovery_rebate_credit.cares.phase_out.threshold.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2020-01-01": 75000, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.recovery_rebate_credit.cares.phase_out.threshold.JOINT": { - "type": "parameter", - "parameter": "gov.irs.credits.recovery_rebate_credit.cares.phase_out.threshold.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2020-01-01": 150000, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.recovery_rebate_credit.cares.phase_out.threshold.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.credits.recovery_rebate_credit.cares.phase_out.threshold.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2020-01-01": 112500, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.recovery_rebate_credit.cares.phase_out.threshold.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.credits.recovery_rebate_credit.cares.phase_out.threshold.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2020-01-01": 75000, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.recovery_rebate_credit.cares.phase_out.threshold.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.credits.recovery_rebate_credit.cares.phase_out.threshold.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2020-01-01": 75000, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.cdcc": { - "type": "parameterNode", - "parameter": "gov.irs.credits.cdcc", - "description": null, - "label": "Child and Dependent Care Credit", - "economy": true, - "household": true - }, - "gov.irs.credits.cdcc.preceding_credits": { - "type": "parameter", - "parameter": "gov.irs.credits.cdcc.preceding_credits", - "description": "Non-refundable tax credits which precede the Child and Dependent Care Credit.", - "label": "Non-refundable tax credits preceding the CDCC", - "unit": "list", - "period": "year", - "values": { - "2013-01-01": ["foreign_tax_credit"] - }, - "economy": true, - "household": true - }, - "gov.irs.credits.cdcc.max": { - "type": "parameter", - "parameter": "gov.irs.credits.cdcc.max", - "description": "Maximum child and dependent care expenses per dependent.", - "label": "Maximum care expenses per dependent for CDCC.", - "unit": "currency-USD", - "period": "year", - "values": { - "2022-01-01": 3000, - "2021-01-01": 8000, - "2013-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.cdcc.eligibility": { - "type": "parameterNode", - "parameter": "gov.irs.credits.cdcc.eligibility", - "description": null, - "label": "eligibility", - "economy": true, - "household": true - }, - "gov.irs.credits.cdcc.eligibility.child_age": { - "type": "parameter", - "parameter": "gov.irs.credits.cdcc.eligibility.child_age", - "description": "The age under which a child qualifies as a dependent for the CDCC.", - "label": "CDCC dependent child maximum age", - "unit": "year", - "period": null, - "values": { - "2010-01-01": 13 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.cdcc.eligibility.max": { - "type": "parameter", - "parameter": "gov.irs.credits.cdcc.eligibility.max", - "description": "Maximum number of dependents qualifiable for CDCC.", - "label": "CDCC maximum dependents", - "unit": "person", - "period": null, - "values": { - "2010-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.cdcc.phase_out": { - "type": "parameterNode", - "parameter": "gov.irs.credits.cdcc.phase_out", - "description": null, - "label": "phase out", - "economy": true, - "household": true - }, - "gov.irs.credits.cdcc.phase_out.increment": { - "type": "parameter", - "parameter": "gov.irs.credits.cdcc.phase_out.increment", - "description": "Child and dependent care credit phase-out increment. Income after the phase-out start(s) reduce the CDCC applicable percentage by the rate for each full or partial increment.", - "label": "CDCC phase-out increment", - "unit": "currency-USD", - "period": null, - "values": { - "2013-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.cdcc.phase_out.start": { - "type": "parameter", - "parameter": "gov.irs.credits.cdcc.phase_out.start", - "description": "Child & dependent care credit phase-out AGI start.", - "label": "CDCC phase-out start", - "unit": "currency-USD", - "period": "year", - "values": { - "2022-01-01": 15000, - "2021-01-01": 125000, - "2013-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.cdcc.phase_out.second_start": { - "type": "parameter", - "parameter": "gov.irs.credits.cdcc.phase_out.second_start", - "description": "Child & dependent care credit second phase-out start.", - "label": "CDCC second phase-out start", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": "Infinity", - "2021-01-01": 400000, - "2013-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.irs.credits.cdcc.phase_out.max": { - "type": "parameter", - "parameter": "gov.irs.credits.cdcc.phase_out.max", - "description": "Child and dependent care credit maximum percentage rate.", - "label": "CDCC maximum rate", - "unit": "/1", - "period": "year", - "values": { - "2026-01-01": 0.5, - "2022-01-01": 0.35, - "2021-01-01": 0.5, - "2013-01-01": 0.35 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.cdcc.phase_out.amended_structure": { - "type": "parameterNode", - "parameter": "gov.irs.credits.cdcc.phase_out.amended_structure", - "description": null, - "label": "amended structure", - "economy": true, - "household": true - }, - "gov.irs.credits.cdcc.phase_out.amended_structure.second_start": { - "type": "parameterNode", - "parameter": "gov.irs.credits.cdcc.phase_out.amended_structure.second_start", - "description": "The IRS phases the Child and Dependent Care Credit rate out in increments of adjusted gross income above this second threshold, based on filing status.", - "label": "CDCC amended phase-out second start", - "economy": true, - "household": true - }, - "gov.irs.credits.cdcc.phase_out.amended_structure.second_start.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.credits.cdcc.phase_out.amended_structure.second_start.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2026-01-01": 75000, - "2015-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.cdcc.phase_out.amended_structure.second_start.JOINT": { - "type": "parameter", - "parameter": "gov.irs.credits.cdcc.phase_out.amended_structure.second_start.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2026-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.cdcc.phase_out.amended_structure.second_start.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.credits.cdcc.phase_out.amended_structure.second_start.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2026-01-01": 75000, - "2015-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.cdcc.phase_out.amended_structure.second_start.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.credits.cdcc.phase_out.amended_structure.second_start.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2026-01-01": 75000, - "2015-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.cdcc.phase_out.amended_structure.second_start.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.credits.cdcc.phase_out.amended_structure.second_start.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2026-01-01": 75000, - "2015-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.cdcc.phase_out.amended_structure.second_min": { - "type": "parameter", - "parameter": "gov.irs.credits.cdcc.phase_out.amended_structure.second_min", - "description": "The IRS phases the Child and Dependent Care Credit rate out in increments of adjusted gross income above the second threshold to this minimum.", - "label": "CDCC amended phase-out second minimum rate", - "unit": "/1", - "period": "year", - "values": { - "2026-01-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.cdcc.phase_out.amended_structure.second_increment": { - "type": "parameterNode", - "parameter": "gov.irs.credits.cdcc.phase_out.amended_structure.second_increment", - "description": "The IRS phases the Child and Dependent Care Credit rate out in increments of adjusted gross income above the second threshold, based on filing status.", - "label": "CDCC amended phase-out second increment", - "economy": true, - "household": true - }, - "gov.irs.credits.cdcc.phase_out.amended_structure.second_increment.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.credits.cdcc.phase_out.amended_structure.second_increment.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2026-01-01": 2000, - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.cdcc.phase_out.amended_structure.second_increment.JOINT": { - "type": "parameter", - "parameter": "gov.irs.credits.cdcc.phase_out.amended_structure.second_increment.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2026-01-01": 4000, - "2015-01-01": 4000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.cdcc.phase_out.amended_structure.second_increment.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.credits.cdcc.phase_out.amended_structure.second_increment.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2026-01-01": 2000, - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.cdcc.phase_out.amended_structure.second_increment.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.credits.cdcc.phase_out.amended_structure.second_increment.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2026-01-01": 2000, - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.cdcc.phase_out.amended_structure.second_increment.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.credits.cdcc.phase_out.amended_structure.second_increment.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2026-01-01": 2000, - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.cdcc.phase_out.amended_structure.applies": { - "type": "parameter", - "parameter": "gov.irs.credits.cdcc.phase_out.amended_structure.applies", - "description": "The IRS phases the Child and Dependent Care Credit rate out at an amended structure, if this is true.", - "label": "CDCC amended phase-out structure in effect", - "unit": "bool", - "period": "year", - "values": { - "2026-01-01": true, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.irs.credits.cdcc.phase_out.rate": { - "type": "parameter", - "parameter": "gov.irs.credits.cdcc.phase_out.rate", - "description": "Child and dependent care credit phase-out percentage rate. This is the reduction to the applicable percentage for each full or partial increment beyond which AGI exceeds the phase-out start(s).", - "label": "CDCC phase-out rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.01 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.cdcc.phase_out.min": { - "type": "parameter", - "parameter": "gov.irs.credits.cdcc.phase_out.min", - "description": "Child and dependent care credit phase-out percentage rate floor. The first phase-out does not reduce the childcare credit rate below this percentage.", - "label": "CDCC minimum rate", - "unit": "/1", - "period": "year", - "values": { - "2026-01-01": 0.35, - "2013-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.retirement_saving": { - "type": "parameterNode", - "parameter": "gov.irs.credits.retirement_saving", - "description": null, - "label": "retirement saving", - "economy": true, - "household": true - }, - "gov.irs.credits.retirement_saving.contributions_cap": { - "type": "parameter", - "parameter": "gov.irs.credits.retirement_saving.contributions_cap", - "description": "The IRS caps the qualifying contributions at the following amount under the saver's credit.", - "label": "Saver's Credit contributions cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2018-01-01": 2000, - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.retirement_saving.qualified_retirement_savings_contributions": { - "type": "parameter", - "parameter": "gov.irs.credits.retirement_saving.qualified_retirement_savings_contributions", - "description": "The IRA sums the following elements as qualified retirement savings contributions when computing the saver's credit.", - "label": "Saver's Credit qualified retirement savings contributions", - "unit": "list", - "period": "year", - "values": { - "2026-01-01": [ - "traditional_ira_contributions", - "traditional_401k_contributions", - "traditional_403b_contributions", - "roth_ira_contributions", - "roth_401k_contributions", - "roth_403b_contributions", - "self_employed_pension_contributions" - ], - "2018-01-01": [ - "traditional_ira_contributions", - "traditional_401k_contributions", - "traditional_403b_contributions", - "roth_ira_contributions", - "roth_401k_contributions", - "roth_403b_contributions", - "self_employed_pension_contributions", - "able_contributions_person" - ], - "2015-01-01": [ - "traditional_ira_contributions", - "traditional_401k_contributions", - "traditional_403b_contributions", - "roth_ira_contributions", - "roth_401k_contributions", - "roth_403b_contributions", - "self_employed_pension_contributions", - "able_contributions_person" - ] - }, - "economy": true, - "household": true - }, - "gov.irs.credits.retirement_saving.preceding_credits": { - "type": "parameter", - "parameter": "gov.irs.credits.retirement_saving.preceding_credits", - "description": "Non-refundable tax credits which precede the Retirement Savings Credit.", - "label": "Non-refundable tax credits preceding the Retirement Savings Credit", - "unit": "list", - "period": "year", - "values": { - "2013-01-01": [ - "foreign_tax_credit", - "cdcc", - "non_refundable_american_opportunity_credit", - "lifetime_learning_credit" - ] - }, - "economy": true, - "household": true - }, - "gov.irs.credits.retirement_saving.rate": { - "type": "parameterNode", - "parameter": "gov.irs.credits.retirement_saving.rate", - "description": null, - "label": "rate", - "economy": true, - "household": true - }, - "gov.irs.credits.retirement_saving.rate.threshold_adjustment": { - "type": "parameterNode", - "parameter": "gov.irs.credits.retirement_saving.rate.threshold_adjustment", - "description": "IRS multiplies the joint threshold of the saver's credit by this rate, based on filing status.", - "label": "Retirement Savings Contributions Credit (Saver's Credit) threshold adjustment rate", - "economy": true, - "household": true - }, - "gov.irs.credits.retirement_saving.rate.threshold_adjustment.JOINT": { - "type": "parameter", - "parameter": "gov.irs.credits.retirement_saving.rate.threshold_adjustment.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2018-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.retirement_saving.rate.threshold_adjustment.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.credits.retirement_saving.rate.threshold_adjustment.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2018-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.retirement_saving.rate.threshold_adjustment.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.credits.retirement_saving.rate.threshold_adjustment.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2018-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.retirement_saving.rate.threshold_adjustment.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.credits.retirement_saving.rate.threshold_adjustment.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2018-01-01": 0.75, - "2015-01-01": 0.75 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.retirement_saving.rate.threshold_adjustment.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.credits.retirement_saving.rate.threshold_adjustment.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2018-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.retirement_saving.rate.joint": { - "type": "parameterNode", - "parameter": "gov.irs.credits.retirement_saving.rate.joint", - "description": "IRS multiplies the qualified contributions by the following rate for joint filers under the Saver's Credit, based on adjusted gross income.", - "label": "Saver's Credit joint rate" - }, - "gov.irs.credits.retirement_saving.rate.joint[0]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.retirement_saving.rate.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.irs.credits.retirement_saving.rate.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.retirement_saving.rate.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.retirement_saving.rate.joint[0].amount": { - "type": "parameter", - "parameter": "gov.irs.credits.retirement_saving.rate.joint[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2018-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.retirement_saving.rate.joint[1]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.retirement_saving.rate.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.irs.credits.retirement_saving.rate.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.retirement_saving.rate.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 43500, - "2022-01-01": 41000, - "2021-01-01": 39500, - "2020-01-01": 39000, - "2019-01-01": 38500, - "2018-01-01": 38000, - "2015-01-01": 38000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.retirement_saving.rate.joint[1].amount": { - "type": "parameter", - "parameter": "gov.irs.credits.retirement_saving.rate.joint[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2018-01-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.retirement_saving.rate.joint[2]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.retirement_saving.rate.joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.irs.credits.retirement_saving.rate.joint[2].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.retirement_saving.rate.joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 47500, - "2022-01-01": 44000, - "2021-01-01": 43000, - "2020-01-01": 42500, - "2019-01-01": 41500, - "2018-01-01": 41000, - "2015-01-01": 41000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.retirement_saving.rate.joint[2].amount": { - "type": "parameter", - "parameter": "gov.irs.credits.retirement_saving.rate.joint[2].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2018-01-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.retirement_saving.rate.joint[3]": { - "type": "parameterNode", - "parameter": "gov.irs.credits.retirement_saving.rate.joint[3]", - "description": null, - "label": "bracket 4" - }, - "gov.irs.credits.retirement_saving.rate.joint[3].threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.retirement_saving.rate.joint[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 73000, - "2022-01-01": 68000, - "2021-01-01": 66000, - "2020-01-01": 65000, - "2019-01-01": 64000, - "2018-01-01": 63000, - "2015-01-01": 63000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.retirement_saving.rate.joint[3].amount": { - "type": "parameter", - "parameter": "gov.irs.credits.retirement_saving.rate.joint[3].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.retirement_saving.age_threshold": { - "type": "parameter", - "parameter": "gov.irs.credits.retirement_saving.age_threshold", - "description": "The IRS limits the saver's credit to taxpayers at or over to following age.", - "label": "Retirement Savings Contributions Credit (Saver's Credit) age threshold", - "unit": "year", - "period": "year", - "values": { - "2018-01-01": 18, - "2015-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.residential_clean_energy": { - "type": "parameterNode", - "parameter": "gov.irs.credits.residential_clean_energy", - "description": null, - "label": "residential clean energy", - "economy": true, - "household": true - }, - "gov.irs.credits.residential_clean_energy.preceding_credits": { - "type": "parameter", - "parameter": "gov.irs.credits.residential_clean_energy.preceding_credits", - "description": "Non-refundable tax credits which precede the Residential Clean Energy Credit.", - "label": "Non-refundable tax credits preceding the Residential Clean Energy Credit", - "unit": "list", - "period": "year", - "values": { - "2013-01-01": [ - "foreign_tax_credit", - "cdcc", - "non_refundable_american_opportunity_credit", - "lifetime_learning_credit", - "savers_credit" - ] - }, - "economy": true, - "household": true - }, - "gov.irs.credits.residential_clean_energy.applicable_percentage": { - "type": "parameter", - "parameter": "gov.irs.credits.residential_clean_energy.applicable_percentage", - "description": "The IRS provides a tax credit for this share of qualifying residential clean energy expenditures.", - "label": "Residential Clean Energy Credit applicable percentage", - "unit": "/1", - "period": null, - "values": { - "2035-01-01": 0, - "2034-01-01": 0.22, - "2033-01-01": 0.26, - "2022-01-01": 0.3, - "2020-01-01": 0.26, - "2017-01-01": 0.3, - "2015-01-01": 0.3 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.residential_clean_energy.elements": { - "type": "parameter", - "parameter": "gov.irs.credits.residential_clean_energy.elements", - "description": "Elements of the Residential Clean Energy Credit.", - "label": "Expenditure elements of the Residential Clean Energy Credit", - "unit": "list", - "period": null, - "values": { - "2023-01-01": [ - "geothermal_heat_pump_property_expenditures", - "small_wind_energy_property_expenditures", - "solar_electric_property_expenditures", - "solar_water_heating_property_expenditures", - "fuel_cell_property_expenditures", - "qualified_battery_storage_technology_expenditures" - ], - "2017-01-01": [ - "biomass_stove_boiler_expenditures", - "geothermal_heat_pump_property_expenditures", - "small_wind_energy_property_expenditures", - "solar_electric_property_expenditures", - "solar_water_heating_property_expenditures", - "fuel_cell_property_expenditures" - ], - "2015-01-01": [ - "biomass_stove_boiler_expenditures", - "geothermal_heat_pump_property_expenditures", - "small_wind_energy_property_expenditures", - "solar_electric_property_expenditures", - "solar_water_heating_property_expenditures", - "fuel_cell_property_expenditures" - ] - }, - "economy": true, - "household": true - }, - "gov.irs.credits.residential_clean_energy.fuel_cell_cap_per_kw": { - "type": "parameter", - "parameter": "gov.irs.credits.residential_clean_energy.fuel_cell_cap_per_kw", - "description": "The IRS caps the tax credit for fuel cell property expenditures at this amount per kilowatt.", - "label": "Residential Clean Energy Credit fuel cell cap per kilowatt", - "unit": "currency-USD", - "period": null, - "values": { - "2017-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.irs.credits.non_refundable": { - "type": "parameter", - "parameter": "gov.irs.credits.non_refundable", - "description": "Non-refundable tax credits.", - "label": "Non-refundable tax credits", - "unit": "list", - "period": null, - "values": { - "2022-01-01": [ - "foreign_tax_credit", - "cdcc", - "non_refundable_american_opportunity_credit", - "lifetime_learning_credit", - "savers_credit", - "residential_clean_energy_credit", - "energy_efficient_home_improvement_credit", - "elderly_disabled_credit", - "new_clean_vehicle_credit", - "used_clean_vehicle_credit", - "non_refundable_ctc" - ], - "2021-01-01": [ - "elderly_disabled_credit", - "non_refundable_ctc", - "non_refundable_american_opportunity_credit", - "lifetime_learning_credit", - "savers_credit", - "residential_clean_energy_credit", - "energy_efficient_home_improvement_credit", - "new_clean_vehicle_credit" - ], - "2013-01-01": [ - "cdcc", - "elderly_disabled_credit", - "non_refundable_ctc", - "non_refundable_american_opportunity_credit", - "lifetime_learning_credit", - "savers_credit", - "residential_clean_energy_credit", - "energy_efficient_home_improvement_credit" - ] - }, - "economy": true, - "household": true - }, - "gov.irs.credits.estate": { - "type": "parameterNode", - "parameter": "gov.irs.credits.estate", - "description": null, - "label": "estate", - "economy": true, - "household": true - }, - "gov.irs.credits.estate.base": { - "type": "parameter", - "parameter": "gov.irs.credits.estate.base", - "description": "The IRS provides this base exclusion amount under the estate tax credit.", - "label": "Estate tax credit base exclusion amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 18000000, - "2034-01-01": 17650000, - "2033-01-01": 17310000, - "2032-01-01": 16970000, - "2031-01-01": 16640000, - "2030-01-01": 16320000, - "2029-01-01": 16000000, - "2028-01-01": 15690000, - "2027-01-01": 15370000, - "2026-01-01": 15000000, - "2025-01-01": 13990000, - "2024-01-01": 13610000, - "2023-01-01": 12920000, - "2022-01-01": 12060000, - "2021-01-01": 11700000, - "2020-01-01": 11580000, - "2019-01-01": 11400000, - "2018-01-01": 11180000, - "2017-01-01": 5490000, - "2016-01-01": 5450000, - "2015-01-01": 5430000, - "2014-01-01": 5340000, - "2013-01-01": 5250000, - "2012-01-01": 5120000, - "2011-01-01": 5000000, - "2002-01-01": 1000000, - "2000-01-01": 675000, - "1999-01-01": 650000, - "1998-01-01": 625000, - "1987-01-01": 600000, - "1986-01-01": 500000, - "1985-01-01": 400000, - "1984-01-01": 325000, - "1983-01-01": 275000, - "1982-01-01": 225000, - "1981-01-01": 175625, - "1980-01-01": 161563, - "1979-01-01": 147333, - "1978-01-01": 134000, - "1977-07-01": 120667, - "1977-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.irs.tce": { - "type": "parameterNode", - "parameter": "gov.irs.tce", - "description": null, - "label": "tce", - "economy": true, - "household": true - }, - "gov.irs.tce.age_threshold": { - "type": "parameter", - "parameter": "gov.irs.tce.age_threshold", - "description": "IRS provides free tax assistance under the Tax Counseling for the Elderly (TCE) grant program for individuals this age or older.", - "label": "TCE age threshold", - "unit": "year", - "period": "year", - "values": { - "2023-01-01": 60, - "2015-01-01": 60 - }, - "economy": true, - "household": true - }, - "gov.irs.payroll": { - "type": "parameterNode", - "parameter": "gov.irs.payroll", - "description": null, - "label": "payroll", - "economy": true, - "household": true - }, - "gov.irs.payroll.medicare": { - "type": "parameterNode", - "parameter": "gov.irs.payroll.medicare", - "description": null, - "label": "medicare", - "economy": true, - "household": true - }, - "gov.irs.payroll.medicare.rate": { - "type": "parameterNode", - "parameter": "gov.irs.payroll.medicare.rate", - "description": null, - "label": "rate", - "economy": true, - "household": true - }, - "gov.irs.payroll.medicare.rate.employer": { - "type": "parameter", - "parameter": "gov.irs.payroll.medicare.rate.employer", - "description": "Employer-side Medicare FICA rate.", - "label": "Employer-side Medicare tax rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.0145 - }, - "economy": true, - "household": true - }, - "gov.irs.payroll.medicare.rate.employee": { - "type": "parameter", - "parameter": "gov.irs.payroll.medicare.rate.employee", - "description": "Employee-side Medicare FICA rate.", - "label": "Employee-side Medicare tax rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.0145 - }, - "economy": true, - "household": true - }, - "gov.irs.payroll.medicare.additional": { - "type": "parameterNode", - "parameter": "gov.irs.payroll.medicare.additional", - "description": null, - "label": "additional", - "economy": true, - "household": true - }, - "gov.irs.payroll.medicare.additional.exclusion": { - "type": "parameterNode", - "parameter": "gov.irs.payroll.medicare.additional.exclusion", - "description": "Earnings exclusion above which the Additional Medicare Tax is levied (same for wages and self-employment earnings)", - "label": "Additional Medicare Tax rate exclusion", - "economy": true, - "household": true - }, - "gov.irs.payroll.medicare.additional.exclusion.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.payroll.medicare.additional.exclusion.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2013-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.irs.payroll.medicare.additional.exclusion.JOINT": { - "type": "parameter", - "parameter": "gov.irs.payroll.medicare.additional.exclusion.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2013-01-01": 250000 - }, - "economy": true, - "household": true - }, - "gov.irs.payroll.medicare.additional.exclusion.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.payroll.medicare.additional.exclusion.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2013-01-01": 125000 - }, - "economy": true, - "household": true - }, - "gov.irs.payroll.medicare.additional.exclusion.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.payroll.medicare.additional.exclusion.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2013-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.irs.payroll.medicare.additional.exclusion.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.payroll.medicare.additional.exclusion.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2013-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.irs.payroll.medicare.additional.rate": { - "type": "parameter", - "parameter": "gov.irs.payroll.medicare.additional.rate", - "description": "Additional Medicare Tax rate (same for wages and self-employment earnings).", - "label": "Additional Medicare Tax rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.009 - }, - "economy": true, - "household": true - }, - "gov.irs.payroll.social_security": { - "type": "parameterNode", - "parameter": "gov.irs.payroll.social_security", - "description": null, - "label": "Social Security", - "economy": true, - "household": true - }, - "gov.irs.payroll.social_security.rate": { - "type": "parameterNode", - "parameter": "gov.irs.payroll.social_security.rate", - "description": null, - "label": "rate", - "economy": true, - "household": true - }, - "gov.irs.payroll.social_security.rate.employer": { - "type": "parameter", - "parameter": "gov.irs.payroll.social_security.rate.employer", - "description": "Employer-side Social Security payroll tax rate", - "label": "Employer-side Social Security tax rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.062 - }, - "economy": true, - "household": true - }, - "gov.irs.payroll.social_security.rate.employee": { - "type": "parameter", - "parameter": "gov.irs.payroll.social_security.rate.employee", - "description": "Employee-side Social Security payroll tax rate", - "label": "Employee-side Social Security tax rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.062 - }, - "economy": true, - "household": true - }, - "gov.irs.payroll.social_security.cap": { - "type": "parameter", - "parameter": "gov.irs.payroll.social_security.cap", - "description": "Individual earnings below this amount are subjected to Social Security (OASDI) payroll tax. This parameter is indexed by the rate of growth in average wages, not by the price inflation rate.", - "label": "Social Security earnings cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 254400, - "2034-01-01": 246000, - "2033-01-01": 237900, - "2032-01-01": 230100, - "2031-01-01": 222300, - "2030-01-01": 214200, - "2029-01-01": 206400, - "2028-01-01": 198600, - "2027-01-01": 192600, - "2026-01-01": 186000, - "2025-01-01": 176100, - "2024-01-01": 168600, - "2023-01-01": 160200, - "2022-01-01": 147000, - "2021-01-01": 142800, - "2020-01-01": 137700, - "2019-01-01": 132900, - "2018-01-01": 128400, - "2017-01-01": 127200, - "2016-01-01": 118500, - "2015-01-01": 118500, - "2014-01-01": 117000, - "2013-01-01": 113700, - "2012-01-01": 110100, - "2009-01-01": 106800, - "2008-01-01": 102000, - "2007-01-01": 97500, - "2006-01-01": 94200, - "2005-01-01": 90000, - "2004-01-01": 87900, - "2003-01-01": 87000, - "2002-01-01": 84900, - "2001-01-01": 80400, - "2000-01-01": 76200, - "1999-01-01": 72600, - "1998-01-01": 68400, - "1997-01-01": 65400, - "1996-01-01": 62700, - "1995-01-01": 61200, - "1994-01-01": 60600, - "1993-01-01": 57600, - "1992-01-01": 55500, - "1991-01-01": 53400, - "1990-01-01": 51300, - "1989-01-01": 48000, - "1988-01-01": 45000, - "1987-01-01": 43800, - "1986-01-01": 42000, - "1985-01-01": 39600, - "1984-01-01": 37800, - "1983-01-01": 35700, - "1982-01-01": 32400, - "1981-01-01": 29700, - "1980-01-01": 25900, - "1979-01-01": 22900, - "1978-01-01": 17700, - "1977-01-01": 16500, - "1976-01-01": 15300, - "1975-01-01": 14100, - "1974-01-01": 13200, - "1973-01-01": 10800, - "1972-01-01": 9000, - "1968-01-01": 7800, - "1966-01-01": 6600, - "1959-01-01": 4800, - "1955-01-01": 4200, - "1951-01-01": 3600, - "1937-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.irs.income": { - "type": "parameterNode", - "parameter": "gov.irs.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.irs.income.exemption": { - "type": "parameterNode", - "parameter": "gov.irs.income.exemption", - "description": null, - "label": "exemption", - "economy": true, - "household": true - }, - "gov.irs.income.exemption.overtime": { - "type": "parameterNode", - "parameter": "gov.irs.income.exemption.overtime", - "description": null, - "label": "overtime", - "economy": true, - "household": true - }, - "gov.irs.income.exemption.overtime.rate_multiplier": { - "type": "parameter", - "parameter": "gov.irs.income.exemption.overtime.rate_multiplier", - "description": "The US requires employers to pay qualified employees this percentage of the normal hourly wage for overtime hours worked.", - "label": "overtime wage rate", - "unit": "/1", - "period": "year", - "values": { - "2024-01-01": 1.5, - "2015-01-01": 1.5 - }, - "economy": true, - "household": true - }, - "gov.irs.income.exemption.overtime.salary_basis_threshold": { - "type": "parameter", - "parameter": "gov.irs.income.exemption.overtime.salary_basis_threshold", - "description": "The US classifies as exempt from overtime individuals employed in a \"bona fide executive, administrative, or professional capacity\" and other generally exempt occupations if they have a weekly salary level of or above this value.", - "label": "salary basis threshold", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1544.4556370006, - "2034-01-01": 1493.66438570568, - "2033-01-01": 1444.48135571484, - "2032-01-01": 1396.91720147546, - "2031-01-01": 1351.040351551, - "2030-01-01": 1306.9037780531, - "2029-01-01": 1262.7672045552, - "2028-01-01": 1216.71988347264, - "2027-01-01": 1172.36001676764, - "2026-01-01": 1128, - "2025-01-01": 1128, - "2024-01-01": 844, - "2019-01-01": 684, - "2016-01-01": 913, - "2004-01-01": 455 - }, - "economy": true, - "household": true - }, - "gov.irs.income.exemption.overtime.hours_threshold": { - "type": "parameter", - "parameter": "gov.irs.income.exemption.overtime.hours_threshold", - "description": "The US requires employers to pay qualified employees overtime for hours worked in excess of this value.", - "label": "overtime weekly hours threshold", - "unit": "hour", - "period": "year", - "values": { - "2014-01-01": 40 - }, - "economy": true, - "household": true - }, - "gov.irs.income.exemption.overtime.computer_salary_threshold": { - "type": "parameter", - "parameter": "gov.irs.income.exemption.overtime.computer_salary_threshold", - "description": "The US classifies as exempt from overtime salaried individuals working in computer science related positions if they have an hourly salary level of or above this value.", - "label": "computer science salary threshold", - "unit": "currency-USD", - "period": "year", - "values": { - "2014-01-01": 27.63 - }, - "economy": true, - "household": true - }, - "gov.irs.income.exemption.overtime.hce_salary_threshold": { - "type": "parameter", - "parameter": "gov.irs.income.exemption.overtime.hce_salary_threshold", - "description": "The US classifies as exempt from overtime salaried individuals if they have an annual salary level of or above this value.", - "label": "highly compensated employee salary threshold", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 206973.485737198, - "2034-01-01": 200166.917731218, - "2033-01-01": 193575.868488722, - "2032-01-01": 187201.765819003, - "2031-01-01": 181053.779877531, - "2030-01-01": 175139.009490797, - "2029-01-01": 169224.239104062, - "2028-01-01": 163053.408213881, - "2027-01-01": 157108.714161935, - "2026-01-01": 151164, - "2025-01-01": 151164, - "2024-01-01": 132964, - "2016-01-01": 134004, - "2010-01-01": 107432, - "2004-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.irs.income.exemption.phase_out": { - "type": "parameterNode", - "parameter": "gov.irs.income.exemption.phase_out", - "description": null, - "label": "Phase-out", - "economy": true, - "household": true - }, - "gov.irs.income.exemption.phase_out.start": { - "type": "parameterNode", - "parameter": "gov.irs.income.exemption.phase_out.start", - "description": "Personal exemption phase-out starting income", - "label": "start", - "economy": true, - "household": true - }, - "gov.irs.income.exemption.phase_out.start.JOINT": { - "type": "parameter", - "parameter": "gov.irs.income.exemption.phase_out.start.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2035-01-01": 487400, - "2034-01-01": 477900, - "2033-01-01": 468600, - "2032-01-01": 459500, - "2031-01-01": 450600, - "2030-01-01": 441850, - "2029-01-01": 433300, - "2028-01-01": 424900, - "2027-01-01": 416450, - "2026-01-01": 407850, - "2018-01-01": "Infinity", - "2017-01-01": 313800, - "2016-01-01": 311300, - "2015-01-01": 309900, - "2014-01-01": 305050, - "2013-01-01": 300000 - }, - "economy": true, - "household": true - }, - "gov.irs.income.exemption.phase_out.start.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.income.exemption.phase_out.start.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 406200, - "2034-01-01": 398250, - "2033-01-01": 390500, - "2032-01-01": 382900, - "2031-01-01": 375500, - "2030-01-01": 368200, - "2029-01-01": 361050, - "2028-01-01": 354050, - "2027-01-01": 347050, - "2026-01-01": 339850, - "2018-01-01": "Infinity", - "2017-01-01": 261500, - "2016-01-01": 259400, - "2015-01-01": 258250, - "2014-01-01": 254200, - "2013-01-01": 250000 - }, - "economy": true, - "household": true - }, - "gov.irs.income.exemption.phase_out.start.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.income.exemption.phase_out.start.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 243700, - "2034-01-01": 238950, - "2033-01-01": 234300, - "2032-01-01": 229750, - "2031-01-01": 225300, - "2030-01-01": 220900, - "2029-01-01": 216650, - "2028-01-01": 212450, - "2027-01-01": 208200, - "2026-01-01": 203900, - "2018-01-01": "Infinity", - "2017-01-01": 156900, - "2016-01-01": 155650, - "2015-01-01": 154950, - "2014-01-01": 152525, - "2013-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.irs.income.exemption.phase_out.start.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.income.exemption.phase_out.start.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2035-01-01": 446800, - "2034-01-01": 438100, - "2033-01-01": 429550, - "2032-01-01": 421050, - "2031-01-01": 413050, - "2030-01-01": 405000, - "2029-01-01": 397200, - "2028-01-01": 389500, - "2027-01-01": 381750, - "2026-01-01": 373850, - "2018-01-01": "Infinity", - "2017-01-01": 287650, - "2016-01-01": 285350, - "2015-01-01": 284050, - "2014-01-01": 279650, - "2013-01-01": 275000 - }, - "economy": true, - "household": true - }, - "gov.irs.income.exemption.phase_out.start.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.income.exemption.phase_out.start.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 487400, - "2034-01-01": 477900, - "2033-01-01": 468600, - "2032-01-01": 459500, - "2031-01-01": 450600, - "2030-01-01": 441850, - "2029-01-01": 433300, - "2028-01-01": 424900, - "2027-01-01": 416450, - "2026-01-01": 407850, - "2018-01-01": "Infinity", - "2017-01-01": 313800, - "2016-01-01": 311300, - "2015-01-01": 309900, - "2014-01-01": 305050, - "2013-01-01": 300000 - }, - "economy": true, - "household": true - }, - "gov.irs.income.exemption.phase_out.step_size": { - "type": "parameterNode", - "parameter": "gov.irs.income.exemption.phase_out.step_size", - "description": "Personal exemption phase-out step size", - "label": "step size", - "economy": true, - "household": true - }, - "gov.irs.income.exemption.phase_out.step_size.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.income.exemption.phase_out.step_size.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2013-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.irs.income.exemption.phase_out.step_size.JOINT": { - "type": "parameter", - "parameter": "gov.irs.income.exemption.phase_out.step_size.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2013-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.irs.income.exemption.phase_out.step_size.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.income.exemption.phase_out.step_size.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2013-01-01": 1250 - }, - "economy": true, - "household": true - }, - "gov.irs.income.exemption.phase_out.step_size.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.income.exemption.phase_out.step_size.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2013-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.irs.income.exemption.phase_out.step_size.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.income.exemption.phase_out.step_size.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2013-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.irs.income.exemption.phase_out.rate": { - "type": "parameter", - "parameter": "gov.irs.income.exemption.phase_out.rate", - "description": "Personal exemption phase-out rate", - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.irs.income.exemption.amount": { - "type": "parameter", - "parameter": "gov.irs.income.exemption.amount", - "description": "Personal and dependent exemption amount", - "label": "amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2022-01-01": 0, - "2021-01-01": 0, - "2020-01-01": 0, - "2019-01-01": 0, - "2018-01-01": 0, - "2017-01-01": 4050, - "2016-01-01": 4050, - "2015-01-01": 4000, - "2014-01-01": 3950, - "2013-01-01": 3900 - }, - "economy": true, - "household": true - }, - "gov.irs.income.exemption.traditional_distribution": { - "type": "parameterNode", - "parameter": "gov.irs.income.exemption.traditional_distribution", - "description": null, - "label": "traditional distribution", - "economy": true, - "household": true - }, - "gov.irs.income.exemption.traditional_distribution.age_threshold": { - "type": "parameter", - "parameter": "gov.irs.income.exemption.traditional_distribution.age_threshold", - "description": "The exemption for traditional IRA distributions is limited to filers above this age.", - "label": "Traditional IRA distribution age threshold", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 59.5, - "2015-01-01": 59.5 - }, - "economy": true, - "household": true - }, - "gov.irs.income.amt": { - "type": "parameterNode", - "parameter": "gov.irs.income.amt", - "description": null, - "label": "Alternative minimum tax", - "economy": true, - "household": true - }, - "gov.irs.income.amt.multiplier": { - "type": "parameterNode", - "parameter": "gov.irs.income.amt.multiplier", - "description": "The IRS multiplies the Alternative Minimum Tax income tax brackets by this rate, based on filing status.", - "label": "AMT tax bracket multiplier", - "economy": true, - "household": true - }, - "gov.irs.income.amt.multiplier.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.income.amt.multiplier.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2013-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.irs.income.amt.multiplier.JOINT": { - "type": "parameter", - "parameter": "gov.irs.income.amt.multiplier.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2013-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.irs.income.amt.multiplier.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.income.amt.multiplier.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2013-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.irs.income.amt.multiplier.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.income.amt.multiplier.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2013-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.irs.income.amt.multiplier.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.income.amt.multiplier.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2013-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.irs.income.amt.brackets": { - "type": "parameterNode", - "parameter": "gov.irs.income.amt.brackets", - "description": "The IRS provides the following Alternative Minimum Tax (AMT) brackets.", - "label": "Alternative Minimum Tax brackets" - }, - "gov.irs.income.amt.brackets[0]": { - "type": "parameterNode", - "parameter": "gov.irs.income.amt.brackets[0]", - "description": null, - "label": "bracket 1" - }, - "gov.irs.income.amt.brackets[0].rate": { - "type": "parameter", - "parameter": "gov.irs.income.amt.brackets[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.26 - }, - "economy": true, - "household": true - }, - "gov.irs.income.amt.brackets[0].threshold": { - "type": "parameter", - "parameter": "gov.irs.income.amt.brackets[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2013-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.income.amt.brackets[1]": { - "type": "parameterNode", - "parameter": "gov.irs.income.amt.brackets[1]", - "description": null, - "label": "bracket 2" - }, - "gov.irs.income.amt.brackets[1].rate": { - "type": "parameter", - "parameter": "gov.irs.income.amt.brackets[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.28 - }, - "economy": true, - "household": true - }, - "gov.irs.income.amt.brackets[1].threshold": { - "type": "parameter", - "parameter": "gov.irs.income.amt.brackets[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 291700, - "2034-01-01": 286000, - "2033-01-01": 280400, - "2032-01-01": 274900, - "2031-01-01": 269600, - "2030-01-01": 264400, - "2029-01-01": 259300, - "2028-01-01": 254200, - "2027-01-01": 249200, - "2026-01-01": 244000, - "2025-01-01": 239100, - "2024-01-01": 232600, - "2023-01-01": 220700, - "2022-01-01": 206100, - "2021-01-01": 199900, - "2020-01-01": 197900, - "2019-01-01": 194800, - "2018-01-01": 191100, - "2017-01-01": 187800, - "2016-01-01": 186300, - "2015-01-01": 185400, - "2014-01-01": 182500, - "2013-01-01": 179500 - }, - "economy": true, - "household": true - }, - "gov.irs.income.amt.exemption": { - "type": "parameterNode", - "parameter": "gov.irs.income.amt.exemption", - "description": null, - "label": "exemption", - "economy": true, - "household": true - }, - "gov.irs.income.amt.exemption.child": { - "type": "parameterNode", - "parameter": "gov.irs.income.amt.exemption.child", - "description": null, - "label": "child", - "economy": true, - "household": true - }, - "gov.irs.income.amt.exemption.child.amount": { - "type": "parameter", - "parameter": "gov.irs.income.amt.exemption.child.amount", - "description": "Child AMT exemption additional income base", - "label": "amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 11634.2946955271, - "2034-01-01": 11409.0071338877, - "2033-01-01": 11186.5009001697, - "2032-01-01": 10969.5573222947, - "2031-01-01": 10758.1764002627, - "2030-01-01": 10549.5768061521, - "2029-01-01": 10343.758539963, - "2028-01-01": 10140.7216016954, - "2027-01-01": 9934.90333550629, - "2026-01-01": 9695.98726705165, - "2025-01-01": 9550, - "2024-01-01": 9250, - "2023-01-01": 8800, - "2022-01-01": 8200, - "2021-01-01": 7950, - "2020-01-01": 7900, - "2019-01-01": 7750, - "2018-01-01": 7600, - "2017-01-01": 7500, - "2016-01-01": 7400, - "2015-01-01": 7400, - "2014-01-01": 7250, - "2013-01-01": 7150 - }, - "economy": true, - "household": true - }, - "gov.irs.income.amt.exemption.separate_limit": { - "type": "parameter", - "parameter": "gov.irs.income.amt.exemption.separate_limit", - "description": "AMT exemption phase-out ending AMT taxable income for Married filing Separately. The AMT exemption is entirely disallowed beyond this AMT taxable income level for individuals who are married but filing separately.", - "label": "separate limit", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 776150, - "2034-01-01": 760950, - "2033-01-01": 746100, - "2032-01-01": 731700, - "2031-01-01": 717650, - "2030-01-01": 703750, - "2029-01-01": 689950, - "2028-01-01": 676350, - "2027-01-01": 662750, - "2026-01-01": 639200, - "2025-01-01": 900350, - "2024-01-01": 875950, - "2023-01-01": 831150, - "2022-01-01": 776100, - "2021-01-01": 752800, - "2019-01-01": 733700, - "2018-01-01": 718800, - "2017-01-01": 249450, - "2016-01-01": 247450, - "2015-01-01": 246250, - "2014-01-01": 242450, - "2013-01-01": 238550 - }, - "economy": true, - "household": true - }, - "gov.irs.income.amt.exemption.phase_out": { - "type": "parameterNode", - "parameter": "gov.irs.income.amt.exemption.phase_out", - "description": null, - "label": "phase out", - "economy": true, - "household": true - }, - "gov.irs.income.amt.exemption.phase_out.start": { - "type": "parameterNode", - "parameter": "gov.irs.income.amt.exemption.phase_out.start", - "description": "AMT exemption phase-out start", - "label": "start", - "economy": true, - "household": true - }, - "gov.irs.income.amt.exemption.phase_out.start.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.income.amt.exemption.phase_out.start.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2035-01-01": 609150, - "2034-01-01": 597350, - "2033-01-01": 585700, - "2032-01-01": 574300, - "2031-01-01": 563250, - "2030-01-01": 552350, - "2029-01-01": 541550, - "2028-01-01": 530950, - "2027-01-01": 520150, - "2026-01-01": 500000, - "2025-01-01": 626350, - "2024-01-01": 609350, - "2023-01-01": 578150, - "2022-01-01": 539900, - "2021-01-01": 523600, - "2020-01-01": 518400, - "2019-01-01": 510300, - "2018-01-01": 500000, - "2017-01-01": 120700, - "2016-01-01": 119700, - "2015-01-01": 119200, - "2014-01-01": 117300, - "2013-01-01": 115400 - }, - "economy": true, - "household": true - }, - "gov.irs.income.amt.exemption.phase_out.start.JOINT": { - "type": "parameter", - "parameter": "gov.irs.income.amt.exemption.phase_out.start.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2035-01-01": 1218300, - "2034-01-01": 1194700, - "2033-01-01": 1171400, - "2032-01-01": 1148600, - "2031-01-01": 1126500, - "2030-01-01": 1104700, - "2029-01-01": 1083100, - "2028-01-01": 1061900, - "2027-01-01": 1040300, - "2026-01-01": 1000000, - "2025-01-01": 1252700, - "2024-01-01": 1218700, - "2023-01-01": 1156300, - "2022-01-01": 1079800, - "2021-01-01": 1047200, - "2020-01-01": 1036800, - "2019-01-01": 1020600, - "2018-01-01": 1000000, - "2017-01-01": 160900, - "2016-01-01": 159700, - "2015-01-01": 158900, - "2014-01-01": 156500, - "2013-01-01": 153900 - }, - "economy": true, - "household": true - }, - "gov.irs.income.amt.exemption.phase_out.start.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.income.amt.exemption.phase_out.start.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 609150, - "2034-01-01": 597350, - "2033-01-01": 585700, - "2032-01-01": 574300, - "2031-01-01": 563250, - "2030-01-01": 552350, - "2029-01-01": 541550, - "2028-01-01": 530950, - "2027-01-01": 520150, - "2026-01-01": 500000, - "2025-01-01": 626350, - "2024-01-01": 609350, - "2023-01-01": 578150, - "2022-01-01": 539900, - "2021-01-01": 523600, - "2020-01-01": 518400, - "2019-01-01": 510300, - "2018-01-01": 500000, - "2017-01-01": 80450, - "2016-01-01": 79850, - "2015-01-01": 79450, - "2014-01-01": 78250, - "2013-01-01": 76950 - }, - "economy": true, - "household": true - }, - "gov.irs.income.amt.exemption.phase_out.start.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.income.amt.exemption.phase_out.start.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 609150, - "2034-01-01": 597350, - "2033-01-01": 585700, - "2032-01-01": 574300, - "2031-01-01": 563250, - "2030-01-01": 552350, - "2029-01-01": 541550, - "2028-01-01": 530950, - "2027-01-01": 520150, - "2026-01-01": 500000, - "2025-01-01": 626350, - "2024-01-01": 609350, - "2023-01-01": 578150, - "2022-01-01": 539900, - "2021-01-01": 523600, - "2020-01-01": 518400, - "2019-01-01": 510300, - "2018-01-01": 500000, - "2017-01-01": 120700, - "2016-01-01": 119700, - "2015-01-01": 119200, - "2014-01-01": 117300, - "2013-01-01": 115400 - }, - "economy": true, - "household": true - }, - "gov.irs.income.amt.exemption.phase_out.start.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.income.amt.exemption.phase_out.start.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 1218300, - "2034-01-01": 1194700, - "2033-01-01": 1171400, - "2032-01-01": 1148600, - "2031-01-01": 1126500, - "2030-01-01": 1104700, - "2029-01-01": 1083100, - "2028-01-01": 1061900, - "2027-01-01": 1040300, - "2026-01-01": 1000000, - "2025-01-01": 1252700, - "2024-01-01": 1218700, - "2023-01-01": 1156300, - "2022-01-01": 1079800, - "2021-01-01": 1047200, - "2020-01-01": 1036800, - "2019-01-01": 1020600, - "2018-01-01": 1000000, - "2017-01-01": 160900, - "2016-01-01": 159700, - "2015-01-01": 158900, - "2014-01-01": 156500, - "2013-01-01": 153900 - }, - "economy": true, - "household": true - }, - "gov.irs.income.amt.exemption.phase_out.rate": { - "type": "parameter", - "parameter": "gov.irs.income.amt.exemption.phase_out.rate", - "description": "AMT exemption phase-out rate", - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.irs.income.amt.exemption.amount": { - "type": "parameterNode", - "parameter": "gov.irs.income.amt.exemption.amount", - "description": "AMT exemption amount", - "label": "amount", - "economy": true, - "household": true - }, - "gov.irs.income.amt.exemption.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.income.amt.exemption.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2035-01-01": 107300, - "2034-01-01": 105300, - "2033-01-01": 103200, - "2032-01-01": 101200, - "2031-01-01": 99200, - "2030-01-01": 97300, - "2029-01-01": 95400, - "2028-01-01": 93600, - "2027-01-01": 91700, - "2026-01-01": 89400, - "2025-01-01": 88100, - "2024-01-01": 85700, - "2023-01-01": 81300, - "2022-01-01": 75900, - "2021-01-01": 73600, - "2020-01-01": 72900, - "2019-01-01": 71700, - "2018-01-01": 70300, - "2017-01-01": 54300, - "2016-01-01": 53900, - "2015-01-01": 53600, - "2014-01-01": 52800, - "2013-01-01": 51900, - "2011-01-01": 50600 - }, - "economy": true, - "household": true - }, - "gov.irs.income.amt.exemption.amount.JOINT": { - "type": "parameter", - "parameter": "gov.irs.income.amt.exemption.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2035-01-01": 166900, - "2034-01-01": 163700, - "2033-01-01": 160500, - "2032-01-01": 157400, - "2031-01-01": 154300, - "2030-01-01": 151300, - "2029-01-01": 148400, - "2028-01-01": 145500, - "2027-01-01": 142500, - "2026-01-01": 139000, - "2025-01-01": 137000, - "2024-01-01": 133300, - "2023-01-01": 126500, - "2022-01-01": 118100, - "2021-01-01": 114600, - "2020-01-01": 113400, - "2019-01-01": 111700, - "2018-01-01": 109400, - "2017-01-01": 84500, - "2016-01-01": 83800, - "2015-01-01": 83400, - "2014-01-01": 82100, - "2013-01-01": 80800 - }, - "economy": true, - "household": true - }, - "gov.irs.income.amt.exemption.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.income.amt.exemption.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 83500, - "2034-01-01": 81800, - "2033-01-01": 80200, - "2032-01-01": 78700, - "2031-01-01": 77200, - "2030-01-01": 75700, - "2029-01-01": 74200, - "2028-01-01": 72700, - "2027-01-01": 71300, - "2026-01-01": 69600, - "2025-01-01": 68500, - "2024-01-01": 66650, - "2023-01-01": 63250, - "2022-01-01": 59050, - "2021-01-01": 57300, - "2020-01-01": 56700, - "2019-01-01": 55850, - "2018-01-01": 54700, - "2017-01-01": 42250, - "2016-01-01": 41900, - "2015-01-01": 41700, - "2014-01-01": 41050, - "2013-01-01": 40400 - }, - "economy": true, - "household": true - }, - "gov.irs.income.amt.exemption.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.income.amt.exemption.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 107300, - "2034-01-01": 105300, - "2033-01-01": 103200, - "2032-01-01": 101200, - "2031-01-01": 99200, - "2030-01-01": 97300, - "2029-01-01": 95400, - "2028-01-01": 93600, - "2027-01-01": 91700, - "2026-01-01": 89400, - "2025-01-01": 88100, - "2024-01-01": 85700, - "2023-01-01": 81300, - "2022-01-01": 75900, - "2021-01-01": 73600, - "2020-01-01": 72900, - "2019-01-01": 71700, - "2018-01-01": 70300, - "2017-01-01": 54300, - "2016-01-01": 53900, - "2015-01-01": 53600, - "2014-01-01": 52800, - "2013-01-01": 51900 - }, - "economy": true, - "household": true - }, - "gov.irs.income.amt.exemption.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.income.amt.exemption.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 166900, - "2034-01-01": 163700, - "2033-01-01": 160500, - "2032-01-01": 157400, - "2031-01-01": 154300, - "2030-01-01": 151300, - "2029-01-01": 148400, - "2028-01-01": 145500, - "2027-01-01": 142500, - "2026-01-01": 139000, - "2025-01-01": 137000, - "2024-01-01": 133300, - "2023-01-01": 126500, - "2022-01-01": 118100, - "2021-01-01": 114600, - "2020-01-01": 113400, - "2019-01-01": 111700, - "2018-01-01": 109400, - "2017-01-01": 84500, - "2016-01-01": 83800, - "2015-01-01": 83400, - "2014-01-01": 82100, - "2013-01-01": 80800 - }, - "economy": true, - "household": true - }, - "gov.irs.income.amt.capital_gains": { - "type": "parameterNode", - "parameter": "gov.irs.income.amt.capital_gains", - "description": null, - "label": "capital gains", - "economy": true, - "household": true - }, - "gov.irs.income.amt.capital_gains.capital_gain_excess_tax_rate": { - "type": "parameter", - "parameter": "gov.irs.income.amt.capital_gains.capital_gain_excess_tax_rate", - "description": "The IRS multiplies the taxable excess capital gain by this rate.", - "label": "Alternative Minimum Tax capital gain excess tax rate", - "unit": "/1", - "period": "year", - "values": { - "2018-01-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.irs.income.amt.itemized_deductions_add_back": { - "type": "parameter", - "parameter": "gov.irs.income.amt.itemized_deductions_add_back", - "description": "The US adds these deductions back when calculating alternative minimum taxable income.", - "label": "AMT income itemized deductions add back", - "unit": "list", - "period": "year", - "values": { - "2013-01-01": ["salt_deduction", "misc_deduction"] - }, - "economy": true, - "household": true - }, - "gov.irs.income.bracket": { - "type": "parameterNode", - "parameter": "gov.irs.income.bracket", - "description": "Income tax rates and brackets for tax units.", - "label": "bracket", - "economy": true, - "household": true - }, - "gov.irs.income.bracket.rates": { - "type": "parameterNode", - "parameter": "gov.irs.income.bracket.rates", - "description": "Income tax rate by tax bracket.", - "label": "Individual income tax rates", - "economy": true, - "household": true - }, - "gov.irs.income.bracket.rates.1": { - "type": "parameter", - "parameter": "gov.irs.income.bracket.rates.1", - "description": null, - "label": "1", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.irs.income.bracket.rates.2": { - "type": "parameter", - "parameter": "gov.irs.income.bracket.rates.2", - "description": null, - "label": "2", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.12, - "2015-01-01": 0.12 - }, - "economy": true, - "household": true - }, - "gov.irs.income.bracket.rates.3": { - "type": "parameter", - "parameter": "gov.irs.income.bracket.rates.3", - "description": null, - "label": "3", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.22, - "2015-01-01": 0.22 - }, - "economy": true, - "household": true - }, - "gov.irs.income.bracket.rates.4": { - "type": "parameter", - "parameter": "gov.irs.income.bracket.rates.4", - "description": null, - "label": "4", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.24, - "2015-01-01": 0.24 - }, - "economy": true, - "household": true - }, - "gov.irs.income.bracket.rates.5": { - "type": "parameter", - "parameter": "gov.irs.income.bracket.rates.5", - "description": null, - "label": "5", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.32, - "2015-01-01": 0.32 - }, - "economy": true, - "household": true - }, - "gov.irs.income.bracket.rates.6": { - "type": "parameter", - "parameter": "gov.irs.income.bracket.rates.6", - "description": null, - "label": "6", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.35, - "2015-01-01": 0.35 - }, - "economy": true, - "household": true - }, - "gov.irs.income.bracket.rates.7": { - "type": "parameter", - "parameter": "gov.irs.income.bracket.rates.7", - "description": null, - "label": "7", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.37, - "2015-01-01": 0.37 - }, - "economy": true, - "household": true - }, - "gov.irs.income.bracket.thresholds": { - "type": "parameterNode", - "parameter": "gov.irs.income.bracket.thresholds", - "description": "The upper threshold for each income tax bracket, for each tax filer type.", - "label": "Individual income tax rate thresholds", - "economy": true, - "household": true - }, - "gov.irs.income.bracket.thresholds.1": { - "type": "parameterNode", - "parameter": "gov.irs.income.bracket.thresholds.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.income.bracket.thresholds.1.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.income.bracket.thresholds.1.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2025-01-01": 11925, - "2024-01-01": 11600, - "2023-01-01": 11000, - "2022-01-01": 10275, - "2021-01-01": 9950, - "2020-01-01": 9875, - "2019-01-01": 9700, - "2018-01-01": 9525, - "2015-01-01": 9525 - }, - "economy": true, - "household": true - }, - "gov.irs.income.bracket.thresholds.1.JOINT": { - "type": "parameter", - "parameter": "gov.irs.income.bracket.thresholds.1.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2025-01-01": 23850, - "2024-01-01": 23200, - "2023-01-01": 22000, - "2022-01-01": 20550, - "2021-01-01": 19900, - "2020-01-01": 19750, - "2019-01-01": 19400, - "2018-01-01": 19050, - "2015-01-01": 19050 - }, - "economy": true, - "household": true - }, - "gov.irs.income.bracket.thresholds.1.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.income.bracket.thresholds.1.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2025-01-01": 11925, - "2024-01-01": 11600, - "2023-01-01": 11000, - "2022-01-01": 10275, - "2021-01-01": 9950, - "2020-01-01": 9875, - "2019-01-01": 9700, - "2018-01-01": 9525, - "2015-01-01": 9525 - }, - "economy": true, - "household": true - }, - "gov.irs.income.bracket.thresholds.1.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.income.bracket.thresholds.1.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2025-01-01": 17000, - "2024-01-01": 16550, - "2023-01-01": 15700, - "2022-01-01": 14650, - "2021-01-01": 14200, - "2020-01-01": 14100, - "2019-01-01": 13850, - "2018-01-01": 13600, - "2015-01-01": 13600 - }, - "economy": true, - "household": true - }, - "gov.irs.income.bracket.thresholds.1.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.income.bracket.thresholds.1.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2025-01-01": 23850, - "2024-01-01": 23200, - "2023-01-01": 22000, - "2022-01-01": 20550, - "2021-01-01": 19900, - "2020-01-01": 19750, - "2019-01-01": 19400, - "2018-01-01": 19050, - "2015-01-01": 19050 - }, - "economy": true, - "household": true - }, - "gov.irs.income.bracket.thresholds.2": { - "type": "parameterNode", - "parameter": "gov.irs.income.bracket.thresholds.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.income.bracket.thresholds.2.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.income.bracket.thresholds.2.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2025-01-01": 48475, - "2024-01-01": 47150, - "2023-01-01": 44725, - "2022-01-01": 41775, - "2021-01-01": 40525, - "2020-01-01": 40125, - "2019-01-01": 39475, - "2018-01-01": 38700, - "2015-01-01": 38700 - }, - "economy": true, - "household": true - }, - "gov.irs.income.bracket.thresholds.2.JOINT": { - "type": "parameter", - "parameter": "gov.irs.income.bracket.thresholds.2.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2025-01-01": 96950, - "2024-01-01": 94300, - "2023-01-01": 89450, - "2022-01-01": 83550, - "2021-01-01": 81050, - "2020-01-01": 80250, - "2019-01-01": 78950, - "2018-01-01": 77400, - "2015-01-01": 77400 - }, - "economy": true, - "household": true - }, - "gov.irs.income.bracket.thresholds.2.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.income.bracket.thresholds.2.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2025-01-01": 48475, - "2024-01-01": 47150, - "2023-01-01": 44725, - "2022-01-01": 41775, - "2021-01-01": 40525, - "2020-01-01": 40125, - "2019-01-01": 39475, - "2018-01-01": 38700, - "2015-01-01": 38700 - }, - "economy": true, - "household": true - }, - "gov.irs.income.bracket.thresholds.2.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.income.bracket.thresholds.2.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2025-01-01": 64850, - "2024-01-01": 63100, - "2023-01-01": 59850, - "2022-01-01": 55900, - "2021-01-01": 54200, - "2020-01-01": 53700, - "2019-01-01": 52850, - "2018-01-01": 51800, - "2015-01-01": 51800 - }, - "economy": true, - "household": true - }, - "gov.irs.income.bracket.thresholds.2.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.income.bracket.thresholds.2.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2025-01-01": 96950, - "2024-01-01": 94300, - "2023-01-01": 89450, - "2022-01-01": 83550, - "2021-01-01": 81050, - "2020-01-01": 80250, - "2019-01-01": 78950, - "2018-01-01": 77400, - "2015-01-01": 77400 - }, - "economy": true, - "household": true - }, - "gov.irs.income.bracket.thresholds.3": { - "type": "parameterNode", - "parameter": "gov.irs.income.bracket.thresholds.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.income.bracket.thresholds.3.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.income.bracket.thresholds.3.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 125900, - "2034-01-01": 123450, - "2033-01-01": 121050, - "2032-01-01": 118700, - "2031-01-01": 116400, - "2030-01-01": 114150, - "2029-01-01": 111900, - "2028-01-01": 109700, - "2027-01-01": 107500, - "2026-01-01": 104900, - "2025-01-01": 103350, - "2024-01-01": 100525, - "2023-01-01": 95375, - "2022-01-01": 89075, - "2021-01-01": 86375, - "2020-01-01": 85525, - "2019-01-01": 84200, - "2018-01-01": 82500, - "2015-01-01": 82500 - }, - "economy": true, - "household": true - }, - "gov.irs.income.bracket.thresholds.3.JOINT": { - "type": "parameter", - "parameter": "gov.irs.income.bracket.thresholds.3.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 249950, - "2034-01-01": 245100, - "2033-01-01": 240300, - "2032-01-01": 235650, - "2031-01-01": 231100, - "2030-01-01": 226650, - "2029-01-01": 222200, - "2028-01-01": 217850, - "2027-01-01": 213400, - "2026-01-01": 208300, - "2025-01-01": 206700, - "2024-01-01": 201050, - "2023-01-01": 190750, - "2022-01-01": 178150, - "2021-01-01": 172750, - "2020-01-01": 171050, - "2019-01-01": 168400, - "2018-01-01": 165000, - "2015-01-01": 165000 - }, - "economy": true, - "household": true - }, - "gov.irs.income.bracket.thresholds.3.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.income.bracket.thresholds.3.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 125900, - "2034-01-01": 123450, - "2033-01-01": 121050, - "2032-01-01": 118700, - "2031-01-01": 116400, - "2030-01-01": 114150, - "2029-01-01": 111900, - "2028-01-01": 109700, - "2027-01-01": 107500, - "2026-01-01": 104900, - "2025-01-01": 103350, - "2024-01-01": 100525, - "2023-01-01": 95375, - "2022-01-01": 89075, - "2021-01-01": 86375, - "2020-01-01": 85525, - "2019-01-01": 84200, - "2018-01-01": 82500, - "2015-01-01": 82500 - }, - "economy": true, - "household": true - }, - "gov.irs.income.bracket.thresholds.3.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.income.bracket.thresholds.3.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 125900, - "2034-01-01": 123450, - "2033-01-01": 121050, - "2032-01-01": 118700, - "2031-01-01": 116400, - "2030-01-01": 114150, - "2029-01-01": 111900, - "2028-01-01": 109700, - "2027-01-01": 107500, - "2026-01-01": 104900, - "2025-01-01": 103350, - "2024-01-01": 100500, - "2023-01-01": 95350, - "2022-01-01": 89050, - "2021-01-01": 86350, - "2020-01-01": 85500, - "2019-01-01": 84200, - "2018-01-01": 82500, - "2015-01-01": 82500 - }, - "economy": true, - "household": true - }, - "gov.irs.income.bracket.thresholds.3.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.income.bracket.thresholds.3.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 249950, - "2034-01-01": 245100, - "2033-01-01": 240300, - "2032-01-01": 235650, - "2031-01-01": 231100, - "2030-01-01": 226650, - "2029-01-01": 222200, - "2028-01-01": 217850, - "2027-01-01": 213400, - "2026-01-01": 208300, - "2025-01-01": 206700, - "2024-01-01": 201050, - "2023-01-01": 190750, - "2022-01-01": 178150, - "2021-01-01": 172750, - "2020-01-01": 171050, - "2019-01-01": 168400, - "2018-01-01": 165000, - "2015-01-01": 165000 - }, - "economy": true, - "household": true - }, - "gov.irs.income.bracket.thresholds.4": { - "type": "parameterNode", - "parameter": "gov.irs.income.bracket.thresholds.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.income.bracket.thresholds.4.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.income.bracket.thresholds.4.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 238550, - "2034-01-01": 233950, - "2033-01-01": 229400, - "2032-01-01": 224950, - "2031-01-01": 220600, - "2030-01-01": 216350, - "2029-01-01": 212100, - "2028-01-01": 207950, - "2027-01-01": 203700, - "2026-01-01": 198800, - "2025-01-01": 197300, - "2024-01-01": 191950, - "2023-01-01": 182100, - "2022-01-01": 170050, - "2021-01-01": 164925, - "2020-01-01": 163300, - "2019-01-01": 160725, - "2018-01-01": 157500, - "2015-01-01": 157500 - }, - "economy": true, - "household": true - }, - "gov.irs.income.bracket.thresholds.4.JOINT": { - "type": "parameter", - "parameter": "gov.irs.income.bracket.thresholds.4.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 477150, - "2034-01-01": 467950, - "2033-01-01": 458800, - "2032-01-01": 449900, - "2031-01-01": 441250, - "2030-01-01": 432700, - "2029-01-01": 424250, - "2028-01-01": 415900, - "2027-01-01": 407450, - "2026-01-01": 397650, - "2025-01-01": 394600, - "2024-01-01": 383900, - "2023-01-01": 364200, - "2022-01-01": 340100, - "2021-01-01": 329850, - "2020-01-01": 326600, - "2019-01-01": 321450, - "2018-01-01": 315000, - "2015-01-01": 315000 - }, - "economy": true, - "household": true - }, - "gov.irs.income.bracket.thresholds.4.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.income.bracket.thresholds.4.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 238550, - "2034-01-01": 233950, - "2033-01-01": 229400, - "2032-01-01": 224950, - "2031-01-01": 220600, - "2030-01-01": 216350, - "2029-01-01": 212100, - "2028-01-01": 207950, - "2027-01-01": 203700, - "2026-01-01": 198800, - "2025-01-01": 197300, - "2024-01-01": 191950, - "2023-01-01": 182100, - "2022-01-01": 170050, - "2021-01-01": 164925, - "2020-01-01": 163300, - "2019-01-01": 160725, - "2018-01-01": 157500, - "2015-01-01": 157500 - }, - "economy": true, - "household": true - }, - "gov.irs.income.bracket.thresholds.4.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.income.bracket.thresholds.4.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 238550, - "2034-01-01": 233950, - "2033-01-01": 229400, - "2032-01-01": 224950, - "2031-01-01": 220600, - "2030-01-01": 216350, - "2029-01-01": 212100, - "2028-01-01": 207950, - "2027-01-01": 203700, - "2026-01-01": 198800, - "2025-01-01": 197300, - "2024-01-01": 191950, - "2023-01-01": 182100, - "2022-01-01": 170050, - "2021-01-01": 164900, - "2020-01-01": 163300, - "2019-01-01": 160700, - "2018-01-01": 157500, - "2015-01-01": 157500 - }, - "economy": true, - "household": true - }, - "gov.irs.income.bracket.thresholds.4.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.income.bracket.thresholds.4.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 477150, - "2034-01-01": 467950, - "2033-01-01": 458800, - "2032-01-01": 449900, - "2031-01-01": 441250, - "2030-01-01": 432700, - "2029-01-01": 424250, - "2028-01-01": 415900, - "2027-01-01": 407450, - "2026-01-01": 397650, - "2025-01-01": 394600, - "2024-01-01": 383900, - "2023-01-01": 364200, - "2022-01-01": 340100, - "2021-01-01": 329850, - "2020-01-01": 326600, - "2019-01-01": 321450, - "2018-01-01": 315000, - "2015-01-01": 315000 - }, - "economy": true, - "household": true - }, - "gov.irs.income.bracket.thresholds.5": { - "type": "parameterNode", - "parameter": "gov.irs.income.bracket.thresholds.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.income.bracket.thresholds.5.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.income.bracket.thresholds.5.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 307750, - "2034-01-01": 301750, - "2033-01-01": 295900, - "2032-01-01": 290150, - "2031-01-01": 284550, - "2030-01-01": 279050, - "2029-01-01": 273600, - "2028-01-01": 268250, - "2027-01-01": 262800, - "2026-01-01": 256450, - "2025-01-01": 250525, - "2024-01-01": 243725, - "2023-01-01": 231250, - "2022-01-01": 215950, - "2021-01-01": 209425, - "2020-01-01": 207350, - "2019-01-01": 204100, - "2018-01-01": 200000, - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.irs.income.bracket.thresholds.5.JOINT": { - "type": "parameter", - "parameter": "gov.irs.income.bracket.thresholds.5.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 615500, - "2034-01-01": 603550, - "2033-01-01": 591800, - "2032-01-01": 580350, - "2031-01-01": 569150, - "2030-01-01": 558100, - "2029-01-01": 547200, - "2028-01-01": 536500, - "2027-01-01": 525600, - "2026-01-01": 512950, - "2025-01-01": 501050, - "2024-01-01": 487450, - "2023-01-01": 462500, - "2022-01-01": 431900, - "2021-01-01": 418850, - "2020-01-01": 414700, - "2019-01-01": 408200, - "2018-01-01": 400000, - "2015-01-01": 400000 - }, - "economy": true, - "household": true - }, - "gov.irs.income.bracket.thresholds.5.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.income.bracket.thresholds.5.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 307750, - "2034-01-01": 301750, - "2033-01-01": 295900, - "2032-01-01": 290150, - "2031-01-01": 284550, - "2030-01-01": 279050, - "2029-01-01": 273600, - "2028-01-01": 268250, - "2027-01-01": 262800, - "2026-01-01": 256450, - "2025-01-01": 250525, - "2024-01-01": 243725, - "2023-01-01": 231250, - "2022-01-01": 215950, - "2021-01-01": 209425, - "2020-01-01": 207350, - "2019-01-01": 204100, - "2018-01-01": 200000, - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.irs.income.bracket.thresholds.5.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.income.bracket.thresholds.5.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 307750, - "2034-01-01": 301750, - "2033-01-01": 295900, - "2032-01-01": 290150, - "2031-01-01": 284550, - "2030-01-01": 279050, - "2029-01-01": 273600, - "2028-01-01": 268250, - "2027-01-01": 262800, - "2026-01-01": 256450, - "2025-01-01": 250500, - "2024-01-01": 243700, - "2023-01-01": 231250, - "2022-01-01": 215950, - "2021-01-01": 209400, - "2020-01-01": 207350, - "2019-01-01": 204100, - "2018-01-01": 200000, - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.irs.income.bracket.thresholds.5.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.income.bracket.thresholds.5.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 615500, - "2034-01-01": 603550, - "2033-01-01": 591800, - "2032-01-01": 580350, - "2031-01-01": 569150, - "2030-01-01": 558100, - "2029-01-01": 547200, - "2028-01-01": 536500, - "2027-01-01": 525600, - "2026-01-01": 512950, - "2025-01-01": 501050, - "2024-01-01": 487450, - "2023-01-01": 462500, - "2022-01-01": 431900, - "2021-01-01": 418850, - "2020-01-01": 414700, - "2019-01-01": 408200, - "2018-01-01": 400000, - "2015-01-01": 400000 - }, - "economy": true, - "household": true - }, - "gov.irs.income.bracket.thresholds.6": { - "type": "parameterNode", - "parameter": "gov.irs.income.bracket.thresholds.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.income.bracket.thresholds.6.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.income.bracket.thresholds.6.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 772700, - "2034-01-01": 757750, - "2033-01-01": 742950, - "2032-01-01": 728550, - "2031-01-01": 714500, - "2030-01-01": 700650, - "2029-01-01": 687000, - "2028-01-01": 673500, - "2027-01-01": 659800, - "2026-01-01": 643950, - "2025-01-01": 626350, - "2024-01-01": 609350, - "2023-01-01": 578125, - "2022-01-01": 539000, - "2021-01-01": 523600, - "2020-01-01": 518400, - "2019-01-01": 510300, - "2018-01-01": 500000, - "2015-01-01": 500000 - }, - "economy": true, - "household": true - }, - "gov.irs.income.bracket.thresholds.6.JOINT": { - "type": "parameter", - "parameter": "gov.irs.income.bracket.thresholds.6.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 927250, - "2034-01-01": 909300, - "2033-01-01": 891550, - "2032-01-01": 874250, - "2031-01-01": 857400, - "2030-01-01": 840800, - "2029-01-01": 824400, - "2028-01-01": 808200, - "2027-01-01": 791800, - "2026-01-01": 772750, - "2025-01-01": 751600, - "2024-01-01": 731200, - "2023-01-01": 693750, - "2022-01-01": 647850, - "2021-01-01": 628300, - "2020-01-01": 622050, - "2019-01-01": 612350, - "2018-01-01": 600000, - "2015-01-01": 600000 - }, - "economy": true, - "household": true - }, - "gov.irs.income.bracket.thresholds.6.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.income.bracket.thresholds.6.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 463600, - "2034-01-01": 454650, - "2033-01-01": 445750, - "2032-01-01": 437100, - "2031-01-01": 428700, - "2030-01-01": 420400, - "2029-01-01": 412200, - "2028-01-01": 404100, - "2027-01-01": 395900, - "2026-01-01": 386350, - "2025-01-01": 375800, - "2024-01-01": 365600, - "2023-01-01": 346875, - "2022-01-01": 323925, - "2021-01-01": 329850, - "2020-01-01": 311025, - "2019-01-01": 306175, - "2018-01-01": 300000, - "2015-01-01": 300000 - }, - "economy": true, - "household": true - }, - "gov.irs.income.bracket.thresholds.6.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.income.bracket.thresholds.6.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 772700, - "2034-01-01": 757750, - "2033-01-01": 742950, - "2032-01-01": 728550, - "2031-01-01": 714500, - "2030-01-01": 700650, - "2029-01-01": 687000, - "2028-01-01": 673500, - "2027-01-01": 659800, - "2026-01-01": 643950, - "2025-01-01": 626350, - "2024-01-01": 609350, - "2023-01-01": 578100, - "2022-01-01": 539900, - "2021-01-01": 523600, - "2020-01-01": 518400, - "2019-01-01": 510300, - "2018-01-01": 500000, - "2015-01-01": 500000 - }, - "economy": true, - "household": true - }, - "gov.irs.income.bracket.thresholds.6.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.income.bracket.thresholds.6.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 927250, - "2034-01-01": 909300, - "2033-01-01": 891550, - "2032-01-01": 874250, - "2031-01-01": 857400, - "2030-01-01": 840800, - "2029-01-01": 824400, - "2028-01-01": 808200, - "2027-01-01": 791800, - "2026-01-01": 772750, - "2025-01-01": 751600, - "2024-01-01": 731200, - "2023-01-01": 693750, - "2022-01-01": 647850, - "2021-01-01": 628300, - "2020-01-01": 622050, - "2019-01-01": 612350, - "2018-01-01": 600000, - "2015-01-01": 600000 - }, - "economy": true, - "household": true - }, - "gov.irs.income.bracket.thresholds.7": { - "type": "parameterNode", - "parameter": "gov.irs.income.bracket.thresholds.7", - "description": null, - "label": "7", - "economy": true, - "household": true - }, - "gov.irs.income.bracket.thresholds.7.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.income.bracket.thresholds.7.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2018-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.irs.income.bracket.thresholds.7.JOINT": { - "type": "parameter", - "parameter": "gov.irs.income.bracket.thresholds.7.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2018-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.irs.income.bracket.thresholds.7.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.income.bracket.thresholds.7.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2018-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.irs.income.bracket.thresholds.7.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.income.bracket.thresholds.7.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2018-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.irs.income.bracket.thresholds.7.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.income.bracket.thresholds.7.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2018-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.irs.income.disability_income_exclusion": { - "type": "parameterNode", - "parameter": "gov.irs.income.disability_income_exclusion", - "description": null, - "label": "disability income exclusion", - "economy": true, - "household": true - }, - "gov.irs.income.disability_income_exclusion.cap": { - "type": "parameter", - "parameter": "gov.irs.income.disability_income_exclusion.cap", - "description": "IRS caps the disability exclusion to this amount per disabled person.", - "label": "Disability exclusion cap", - "unit": "currency-USD", - "period": "year", - "values": { - "1976-01-01": 5200 - }, - "economy": true, - "household": true - }, - "gov.irs.income.disability_income_exclusion.amount": { - "type": "parameter", - "parameter": "gov.irs.income.disability_income_exclusion.amount", - "description": "IRS reduces the excludable disability income by this amount.", - "label": "Disability income reduction amount", - "unit": "currency-USD", - "period": "year", - "values": { - "1976-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.irs.capital_gains": { - "type": "parameterNode", - "parameter": "gov.irs.capital_gains", - "description": null, - "label": "capital gains", - "economy": true, - "household": true - }, - "gov.irs.capital_gains.brackets": { - "type": "parameterNode", - "parameter": "gov.irs.capital_gains.brackets", - "description": "Capital gains tax thresholds and rates", - "label": "brackets", - "economy": true, - "household": true - }, - "gov.irs.capital_gains.brackets.rates": { - "type": "parameterNode", - "parameter": "gov.irs.capital_gains.brackets.rates", - "description": "Long term capital gain and qualified dividends (regular/non-AMT) rate", - "label": "rates", - "economy": true, - "household": true - }, - "gov.irs.capital_gains.brackets.rates.1": { - "type": "parameter", - "parameter": "gov.irs.capital_gains.brackets.rates.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2013-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.capital_gains.brackets.rates.2": { - "type": "parameter", - "parameter": "gov.irs.capital_gains.brackets.rates.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2013-01-01": 0.15 - }, - "economy": true, - "household": true - }, - "gov.irs.capital_gains.brackets.rates.3": { - "type": "parameter", - "parameter": "gov.irs.capital_gains.brackets.rates.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2013-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.irs.capital_gains.brackets.thresholds": { - "type": "parameterNode", - "parameter": "gov.irs.capital_gains.brackets.thresholds", - "description": "Top thresholds of long-term capital gains and qualified dividends (regular/non-AMT) tax brackets", - "label": "thresholds", - "economy": true, - "household": true - }, - "gov.irs.capital_gains.brackets.thresholds.1": { - "type": "parameterNode", - "parameter": "gov.irs.capital_gains.brackets.thresholds.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.capital_gains.brackets.thresholds.1.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.capital_gains.brackets.thresholds.1.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2025-01-01": 64750, - "2024-01-01": 63000, - "2023-01-01": 59750, - "2022-01-01": 55800, - "2021-01-01": 54100, - "2020-01-01": 53600, - "2019-01-01": 52750, - "2018-01-01": 51700, - "2017-01-01": 50800, - "2016-01-01": 50400, - "2015-01-01": 50200, - "2014-01-01": 49400, - "2013-01-01": 48600 - }, - "economy": true, - "household": true - }, - "gov.irs.capital_gains.brackets.thresholds.1.JOINT": { - "type": "parameter", - "parameter": "gov.irs.capital_gains.brackets.thresholds.1.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2025-01-01": 96700, - "2024-01-01": 94050, - "2023-01-01": 89250, - "2022-01-01": 83350, - "2021-01-01": 80800, - "2020-01-01": 80000, - "2019-01-01": 78750, - "2018-01-01": 77200, - "2017-01-01": 75900, - "2016-01-01": 75300, - "2015-01-01": 74900, - "2014-01-01": 73800, - "2013-01-01": 72500 - }, - "economy": true, - "household": true - }, - "gov.irs.capital_gains.brackets.thresholds.1.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.capital_gains.brackets.thresholds.1.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2025-01-01": 48350, - "2024-01-01": 47025, - "2023-01-01": 44625, - "2022-01-01": 41675, - "2021-01-01": 40400, - "2020-01-01": 40000, - "2019-01-01": 39375, - "2018-01-01": 38600, - "2017-01-01": 37950, - "2016-01-01": 37650, - "2015-01-01": 37450, - "2014-01-01": 36900, - "2013-01-01": 36250 - }, - "economy": true, - "household": true - }, - "gov.irs.capital_gains.brackets.thresholds.1.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.capital_gains.brackets.thresholds.1.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2025-01-01": 48350, - "2024-01-01": 47025, - "2023-01-01": 44625, - "2022-01-01": 41675, - "2021-01-01": 40400, - "2020-01-01": 40000, - "2019-01-01": 39375, - "2018-01-01": 38600, - "2017-01-01": 37950, - "2016-01-01": 37650, - "2015-01-01": 37450, - "2014-01-01": 36900, - "2013-01-01": 36250 - }, - "economy": true, - "household": true - }, - "gov.irs.capital_gains.brackets.thresholds.1.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.capital_gains.brackets.thresholds.1.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2025-01-01": 96700, - "2024-01-01": 94050, - "2023-01-01": 89250, - "2022-01-01": 83350, - "2021-01-01": 80800, - "2020-01-01": 80000, - "2019-01-01": 78750, - "2018-01-01": 77200, - "2017-01-01": 75900, - "2016-01-01": 75300, - "2015-01-01": 74900, - "2014-01-01": 73800, - "2013-01-01": 72500 - }, - "economy": true, - "household": true - }, - "gov.irs.capital_gains.brackets.thresholds.2": { - "type": "parameterNode", - "parameter": "gov.irs.capital_gains.brackets.thresholds.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.capital_gains.brackets.thresholds.2.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.capital_gains.brackets.thresholds.2.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2025-01-01": 566700, - "2024-01-01": 551350, - "2023-01-01": 523050, - "2022-01-01": 488500, - "2021-01-01": 473750, - "2020-01-01": 469050, - "2019-01-01": 461700, - "2018-01-01": 452400, - "2017-01-01": 444550, - "2016-01-01": 441000, - "2015-01-01": 439000, - "2014-01-01": 432200, - "2013-01-01": 425000 - }, - "economy": true, - "household": true - }, - "gov.irs.capital_gains.brackets.thresholds.2.JOINT": { - "type": "parameter", - "parameter": "gov.irs.capital_gains.brackets.thresholds.2.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2025-01-01": 600050, - "2024-01-01": 583750, - "2023-01-01": 553850, - "2022-01-01": 517200, - "2021-01-01": 501600, - "2020-01-01": 496600, - "2019-01-01": 488850, - "2018-01-01": 479000, - "2017-01-01": 470700, - "2016-01-01": 466950, - "2015-01-01": 464850, - "2014-01-01": 457600, - "2013-01-01": 450000 - }, - "economy": true, - "household": true - }, - "gov.irs.capital_gains.brackets.thresholds.2.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.capital_gains.brackets.thresholds.2.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2025-01-01": 300000, - "2024-01-01": 291850, - "2023-01-01": 276900, - "2022-01-01": 258600, - "2021-01-01": 250800, - "2020-01-01": 248300, - "2019-01-01": 244425, - "2018-01-01": 239500, - "2017-01-01": 235350, - "2016-01-01": 233475, - "2015-01-01": 232425, - "2014-01-01": 228800, - "2013-01-01": 225000 - }, - "economy": true, - "household": true - }, - "gov.irs.capital_gains.brackets.thresholds.2.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.capital_gains.brackets.thresholds.2.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2025-01-01": 533400, - "2024-01-01": 518900, - "2023-01-01": 492300, - "2022-01-01": 459750, - "2021-01-01": 445850, - "2020-01-01": 441450, - "2019-01-01": 434550, - "2018-01-01": 425800, - "2017-01-01": 418400, - "2016-01-01": 415050, - "2015-01-01": 413200, - "2014-01-01": 406750, - "2013-01-01": 400000 - }, - "economy": true, - "household": true - }, - "gov.irs.capital_gains.brackets.thresholds.2.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.capital_gains.brackets.thresholds.2.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2025-01-01": 600050, - "2024-01-01": 583750, - "2023-01-01": 553850, - "2022-01-01": 517200, - "2021-01-01": 501600, - "2020-01-01": 496600, - "2019-01-01": 488850, - "2018-01-01": 479000, - "2017-01-01": 470700, - "2016-01-01": 466950, - "2015-01-01": 464850, - "2014-01-01": 457600, - "2013-01-01": 450000 - }, - "economy": true, - "household": true - }, - "gov.irs.capital_gains.loss_limit": { - "type": "parameterNode", - "parameter": "gov.irs.capital_gains.loss_limit", - "description": "Capital gains loss limit", - "label": "loss limit", - "economy": true, - "household": true - }, - "gov.irs.capital_gains.loss_limit.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.capital_gains.loss_limit.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2013-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.irs.capital_gains.loss_limit.JOINT": { - "type": "parameter", - "parameter": "gov.irs.capital_gains.loss_limit.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2013-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.irs.capital_gains.loss_limit.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.capital_gains.loss_limit.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2013-01-01": 1500 - }, - "economy": true, - "household": true - }, - "gov.irs.capital_gains.loss_limit.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.capital_gains.loss_limit.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2013-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.irs.capital_gains.loss_limit.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.capital_gains.loss_limit.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2013-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.irs.capital_gains.unrecaptured_s_1250_rate": { - "type": "parameter", - "parameter": "gov.irs.capital_gains.unrecaptured_s_1250_rate", - "description": "Tax rate on net un-recaptured Section 1250 gains.", - "label": "Tax rate on net un-recaptured Section 1250 gains.", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.irs.capital_gains.other_cg_rate": { - "type": "parameter", - "parameter": "gov.irs.capital_gains.other_cg_rate", - "description": "Capital gains tax rate applying to special categories of gains (including small business stock and collectibles).", - "label": "Other capital gain tax rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.28, - "2015-01-01": 0.28 - }, - "economy": true, - "household": true - }, - "gov.irs.investment": { - "type": "parameterNode", - "parameter": "gov.irs.investment", - "description": null, - "label": "investment", - "economy": true, - "household": true - }, - "gov.irs.investment.income": { - "type": "parameterNode", - "parameter": "gov.irs.investment.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.irs.investment.income.sources": { - "type": "parameter", - "parameter": "gov.irs.investment.income.sources", - "description": "Income sources counted as net investment income.", - "label": "net investment income sources", - "unit": "currency-USD", - "period": null, - "values": { - "2013-01-01": [ - "taxable_interest_income", - "dividend_income", - "rental_income", - "loss_limited_net_capital_gains" - ] - }, - "economy": true, - "household": true - }, - "gov.irs.investment.net_investment_income_tax": { - "type": "parameterNode", - "parameter": "gov.irs.investment.net_investment_income_tax", - "description": null, - "label": "net investment income tax", - "economy": true, - "household": true - }, - "gov.irs.investment.net_investment_income_tax.rate": { - "type": "parameter", - "parameter": "gov.irs.investment.net_investment_income_tax.rate", - "description": "Net Investment Income Tax rate", - "label": "rate", - "unit": "currency-USD", - "period": null, - "values": { - "2013-01-01": 0.038 - }, - "economy": true, - "household": true - }, - "gov.irs.investment.net_investment_income_tax.threshold": { - "type": "parameterNode", - "parameter": "gov.irs.investment.net_investment_income_tax.threshold", - "description": "Net Investment Income Tax modified AGI threshold", - "label": "threshold", - "economy": true, - "household": true - }, - "gov.irs.investment.net_investment_income_tax.threshold.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.investment.net_investment_income_tax.threshold.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2013-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.irs.investment.net_investment_income_tax.threshold.JOINT": { - "type": "parameter", - "parameter": "gov.irs.investment.net_investment_income_tax.threshold.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2013-01-01": 250000 - }, - "economy": true, - "household": true - }, - "gov.irs.investment.net_investment_income_tax.threshold.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.investment.net_investment_income_tax.threshold.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2013-01-01": 125000 - }, - "economy": true, - "household": true - }, - "gov.irs.investment.net_investment_income_tax.threshold.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.investment.net_investment_income_tax.threshold.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2013-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.irs.investment.net_investment_income_tax.threshold.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.investment.net_investment_income_tax.threshold.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2013-01-01": 250000 - }, - "economy": true, - "household": true - }, - "gov.irs.tax": { - "type": "parameterNode", - "parameter": "gov.irs.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.irs.tax.estate": { - "type": "parameterNode", - "parameter": "gov.irs.tax.estate", - "description": null, - "label": "estate", - "economy": true, - "household": true - }, - "gov.irs.tax.estate.rate": { - "type": "parameterNode", - "parameter": "gov.irs.tax.estate.rate", - "description": "The IRS taxes estate at the following rates.", - "label": "Estate tax rate" - }, - "gov.irs.tax.estate.rate[0]": { - "type": "parameterNode", - "parameter": "gov.irs.tax.estate.rate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.irs.tax.estate.rate[0].rate": { - "type": "parameter", - "parameter": "gov.irs.tax.estate.rate[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2017-01-01": 0.18, - "2015-01-01": 0.18 - }, - "economy": true, - "household": true - }, - "gov.irs.tax.estate.rate[0].threshold": { - "type": "parameter", - "parameter": "gov.irs.tax.estate.rate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2017-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.tax.estate.rate[1]": { - "type": "parameterNode", - "parameter": "gov.irs.tax.estate.rate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.irs.tax.estate.rate[1].rate": { - "type": "parameter", - "parameter": "gov.irs.tax.estate.rate[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2017-01-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.irs.tax.estate.rate[1].threshold": { - "type": "parameter", - "parameter": "gov.irs.tax.estate.rate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2017-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.irs.tax.estate.rate[2]": { - "type": "parameterNode", - "parameter": "gov.irs.tax.estate.rate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.irs.tax.estate.rate[2].rate": { - "type": "parameter", - "parameter": "gov.irs.tax.estate.rate[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2017-01-01": 0.22, - "2015-01-01": 0.22 - }, - "economy": true, - "household": true - }, - "gov.irs.tax.estate.rate[2].threshold": { - "type": "parameter", - "parameter": "gov.irs.tax.estate.rate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2017-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.irs.tax.estate.rate[3]": { - "type": "parameterNode", - "parameter": "gov.irs.tax.estate.rate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.irs.tax.estate.rate[3].rate": { - "type": "parameter", - "parameter": "gov.irs.tax.estate.rate[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2017-01-01": 0.24, - "2015-01-01": 0.24 - }, - "economy": true, - "household": true - }, - "gov.irs.tax.estate.rate[3].threshold": { - "type": "parameter", - "parameter": "gov.irs.tax.estate.rate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2017-01-01": 40000, - "2015-01-01": 40000 - }, - "economy": true, - "household": true - }, - "gov.irs.tax.estate.rate[4]": { - "type": "parameterNode", - "parameter": "gov.irs.tax.estate.rate[4]", - "description": null, - "label": "bracket 5" - }, - "gov.irs.tax.estate.rate[4].rate": { - "type": "parameter", - "parameter": "gov.irs.tax.estate.rate[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2017-01-01": 0.26, - "2015-01-01": 0.26 - }, - "economy": true, - "household": true - }, - "gov.irs.tax.estate.rate[4].threshold": { - "type": "parameter", - "parameter": "gov.irs.tax.estate.rate[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2017-01-01": 60000, - "2015-01-01": 60000 - }, - "economy": true, - "household": true - }, - "gov.irs.tax.estate.rate[5]": { - "type": "parameterNode", - "parameter": "gov.irs.tax.estate.rate[5]", - "description": null, - "label": "bracket 6" - }, - "gov.irs.tax.estate.rate[5].rate": { - "type": "parameter", - "parameter": "gov.irs.tax.estate.rate[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2017-01-01": 0.28, - "2015-01-01": 0.28 - }, - "economy": true, - "household": true - }, - "gov.irs.tax.estate.rate[5].threshold": { - "type": "parameter", - "parameter": "gov.irs.tax.estate.rate[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2017-01-01": 80000, - "2015-01-01": 80000 - }, - "economy": true, - "household": true - }, - "gov.irs.tax.estate.rate[6]": { - "type": "parameterNode", - "parameter": "gov.irs.tax.estate.rate[6]", - "description": null, - "label": "bracket 7" - }, - "gov.irs.tax.estate.rate[6].rate": { - "type": "parameter", - "parameter": "gov.irs.tax.estate.rate[6].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2017-01-01": 0.3, - "2015-01-01": 0.3 - }, - "economy": true, - "household": true - }, - "gov.irs.tax.estate.rate[6].threshold": { - "type": "parameter", - "parameter": "gov.irs.tax.estate.rate[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2017-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.irs.tax.estate.rate[7]": { - "type": "parameterNode", - "parameter": "gov.irs.tax.estate.rate[7]", - "description": null, - "label": "bracket 8" - }, - "gov.irs.tax.estate.rate[7].rate": { - "type": "parameter", - "parameter": "gov.irs.tax.estate.rate[7].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2017-01-01": 0.32, - "2015-01-01": 0.32 - }, - "economy": true, - "household": true - }, - "gov.irs.tax.estate.rate[7].threshold": { - "type": "parameter", - "parameter": "gov.irs.tax.estate.rate[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2017-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.irs.tax.estate.rate[8]": { - "type": "parameterNode", - "parameter": "gov.irs.tax.estate.rate[8]", - "description": null, - "label": "bracket 9" - }, - "gov.irs.tax.estate.rate[8].rate": { - "type": "parameter", - "parameter": "gov.irs.tax.estate.rate[8].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2017-01-01": 0.34, - "2015-01-01": 0.34 - }, - "economy": true, - "household": true - }, - "gov.irs.tax.estate.rate[8].threshold": { - "type": "parameter", - "parameter": "gov.irs.tax.estate.rate[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2017-01-01": 250000, - "2015-01-01": 250000 - }, - "economy": true, - "household": true - }, - "gov.irs.tax.estate.rate[9]": { - "type": "parameterNode", - "parameter": "gov.irs.tax.estate.rate[9]", - "description": null, - "label": "bracket 10" - }, - "gov.irs.tax.estate.rate[9].rate": { - "type": "parameter", - "parameter": "gov.irs.tax.estate.rate[9].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2017-01-01": 0.37, - "2015-01-01": 0.37 - }, - "economy": true, - "household": true - }, - "gov.irs.tax.estate.rate[9].threshold": { - "type": "parameter", - "parameter": "gov.irs.tax.estate.rate[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2017-01-01": 500000, - "2015-01-01": 500000 - }, - "economy": true, - "household": true - }, - "gov.irs.tax.estate.rate[10]": { - "type": "parameterNode", - "parameter": "gov.irs.tax.estate.rate[10]", - "description": null, - "label": "bracket 11" - }, - "gov.irs.tax.estate.rate[10].rate": { - "type": "parameter", - "parameter": "gov.irs.tax.estate.rate[10].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2017-01-01": 0.39, - "2015-01-01": 0.39 - }, - "economy": true, - "household": true - }, - "gov.irs.tax.estate.rate[10].threshold": { - "type": "parameter", - "parameter": "gov.irs.tax.estate.rate[10].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2017-01-01": 750000, - "2015-01-01": 750000 - }, - "economy": true, - "household": true - }, - "gov.irs.tax.estate.rate[11]": { - "type": "parameterNode", - "parameter": "gov.irs.tax.estate.rate[11]", - "description": null, - "label": "bracket 12" - }, - "gov.irs.tax.estate.rate[11].rate": { - "type": "parameter", - "parameter": "gov.irs.tax.estate.rate[11].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2017-01-01": 0.4, - "2015-01-01": 0.4 - }, - "economy": true, - "household": true - }, - "gov.irs.tax.estate.rate[11].threshold": { - "type": "parameter", - "parameter": "gov.irs.tax.estate.rate[11].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2017-01-01": 1000000, - "2015-01-01": 1000000 - }, - "economy": true, - "household": true - }, - "gov.irs.ald": { - "type": "parameterNode", - "parameter": "gov.irs.ald", - "description": null, - "label": "Above-the-line deductions", - "economy": true, - "household": true - }, - "gov.irs.ald.loss": { - "type": "parameterNode", - "parameter": "gov.irs.ald.loss", - "description": null, - "label": "loss", - "economy": true, - "household": true - }, - "gov.irs.ald.loss.max": { - "type": "parameterNode", - "parameter": "gov.irs.ald.loss.max", - "description": "Maximum amount of business losses deductible", - "label": "Business loss limitation", - "economy": true, - "household": true - }, - "gov.irs.ald.loss.max.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.ald.loss.max.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2027-01-01": "Infinity", - "2024-01-01": 305000, - "2023-01-01": 289000, - "2022-01-01": 270000, - "2021-01-01": 262000, - "2020-01-01": 259000, - "2019-01-01": 255000, - "2018-01-01": 250000, - "2013-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.irs.ald.loss.max.JOINT": { - "type": "parameter", - "parameter": "gov.irs.ald.loss.max.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2027-01-01": "Infinity", - "2024-01-01": 610000, - "2023-01-01": 578000, - "2022-01-01": 540000, - "2021-01-01": 524000, - "2020-01-01": 518000, - "2019-01-01": 510000, - "2018-01-01": 500000, - "2013-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.irs.ald.loss.max.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.ald.loss.max.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2027-01-01": "Infinity", - "2024-01-01": 305000, - "2023-01-01": 289000, - "2022-01-01": 270000, - "2021-01-01": 262000, - "2020-01-01": 259000, - "2019-01-01": 255000, - "2018-01-01": 250000, - "2013-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.irs.ald.loss.max.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.ald.loss.max.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2027-01-01": "Infinity", - "2024-01-01": 305000, - "2023-01-01": 289000, - "2022-01-01": 270000, - "2021-01-01": 262000, - "2020-01-01": 259000, - "2019-01-01": 255000, - "2018-01-01": 250000, - "2013-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.irs.ald.loss.max.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.ald.loss.max.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2027-01-01": "Infinity", - "2024-01-01": 610000, - "2023-01-01": 578000, - "2022-01-01": 540000, - "2021-01-01": 524000, - "2020-01-01": 518000, - "2019-01-01": 510000, - "2018-01-01": 500000, - "2013-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.irs.ald.loss.capital": { - "type": "parameterNode", - "parameter": "gov.irs.ald.loss.capital", - "description": null, - "label": "capital", - "economy": true, - "household": true - }, - "gov.irs.ald.loss.capital.max": { - "type": "parameterNode", - "parameter": "gov.irs.ald.loss.capital.max", - "description": "Maximum capital loss deductible from gross income to reach AGI.", - "label": "Maximum capital loss deductible above-the-line", - "economy": true, - "household": true - }, - "gov.irs.ald.loss.capital.max.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.ald.loss.capital.max.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2010-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.irs.ald.loss.capital.max.JOINT": { - "type": "parameter", - "parameter": "gov.irs.ald.loss.capital.max.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2010-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.irs.ald.loss.capital.max.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.ald.loss.capital.max.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2010-01-01": 1500 - }, - "economy": true, - "household": true - }, - "gov.irs.ald.loss.capital.max.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.ald.loss.capital.max.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2010-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.irs.ald.loss.capital.max.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.ald.loss.capital.max.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2010-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.irs.ald.alimony_expense": { - "type": "parameterNode", - "parameter": "gov.irs.ald.alimony_expense", - "description": null, - "label": "alimony expense", - "economy": true, - "household": true - }, - "gov.irs.ald.alimony_expense.divorce_year_threshold": { - "type": "parameterNode", - "parameter": "gov.irs.ald.alimony_expense.divorce_year_threshold", - "description": "The IRS allows for an above the line deduction for alimony expenses for divorces that occurred in these years.", - "label": "Alimony expense deduction divorce year threshold" - }, - "gov.irs.ald.alimony_expense.divorce_year_threshold[0]": { - "type": "parameterNode", - "parameter": "gov.irs.ald.alimony_expense.divorce_year_threshold[0]", - "description": null, - "label": "bracket 1" - }, - "gov.irs.ald.alimony_expense.divorce_year_threshold[0].threshold": { - "type": "parameter", - "parameter": "gov.irs.ald.alimony_expense.divorce_year_threshold[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.ald.alimony_expense.divorce_year_threshold[0].amount": { - "type": "parameter", - "parameter": "gov.irs.ald.alimony_expense.divorce_year_threshold[0].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": true - }, - "economy": true, - "household": true - }, - "gov.irs.ald.alimony_expense.divorce_year_threshold[1]": { - "type": "parameterNode", - "parameter": "gov.irs.ald.alimony_expense.divorce_year_threshold[1]", - "description": null, - "label": "bracket 2" - }, - "gov.irs.ald.alimony_expense.divorce_year_threshold[1].threshold": { - "type": "parameter", - "parameter": "gov.irs.ald.alimony_expense.divorce_year_threshold[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "0000-01-01": 2019 - }, - "economy": true, - "household": true - }, - "gov.irs.ald.alimony_expense.divorce_year_threshold[1].amount": { - "type": "parameter", - "parameter": "gov.irs.ald.alimony_expense.divorce_year_threshold[1].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.irs.ald.alimony_expense.divorce_year_threshold[2]": { - "type": "parameterNode", - "parameter": "gov.irs.ald.alimony_expense.divorce_year_threshold[2]", - "description": null, - "label": "bracket 3" - }, - "gov.irs.ald.alimony_expense.divorce_year_threshold[2].threshold": { - "type": "parameter", - "parameter": "gov.irs.ald.alimony_expense.divorce_year_threshold[2].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "0000-01-01": 2026 - }, - "economy": true, - "household": true - }, - "gov.irs.ald.alimony_expense.divorce_year_threshold[2].amount": { - "type": "parameter", - "parameter": "gov.irs.ald.alimony_expense.divorce_year_threshold[2].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": true - }, - "economy": true, - "household": true - }, - "gov.irs.ald.self_employment_tax": { - "type": "parameterNode", - "parameter": "gov.irs.ald.self_employment_tax", - "description": null, - "label": "self employment tax", - "economy": true, - "household": true - }, - "gov.irs.ald.self_employment_tax.percent_deductible": { - "type": "parameter", - "parameter": "gov.irs.ald.self_employment_tax.percent_deductible", - "description": "Employer share of self-employment tax that can be deducted from net earnings.", - "label": "percent deductible", - "unit": "/1", - "period": null, - "values": { - "0000-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.irs.ald.misc": { - "type": "parameterNode", - "parameter": "gov.irs.ald.misc", - "description": null, - "label": "misc", - "economy": true, - "household": true - }, - "gov.irs.ald.misc.employer_share": { - "type": "parameter", - "parameter": "gov.irs.ald.misc.employer_share", - "description": "Employer share of self-employment tax that can be deducted from net earnings.", - "label": "employer share", - "unit": "/1", - "period": null, - "values": { - "0000-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.irs.ald.misc.self_emp_tax_adj": { - "type": "parameter", - "parameter": "gov.irs.ald.misc.self_emp_tax_adj", - "description": "Adjustment for self-employment tax haircut", - "label": "self emp tax adj", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.ald.misc.max_business_losses": { - "type": "parameterNode", - "parameter": "gov.irs.ald.misc.max_business_losses", - "description": "Maximum amount of business losses deductible", - "label": "max business losses", - "economy": true, - "household": true - }, - "gov.irs.ald.misc.max_business_losses.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.ald.misc.max_business_losses.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2027-01-01": "Infinity", - "2026-01-01": 283535.22, - "2019-01-01": 255000, - "2018-01-01": 250000, - "2013-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.irs.ald.misc.max_business_losses.JOINT": { - "type": "parameter", - "parameter": "gov.irs.ald.misc.max_business_losses.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2027-01-01": "Infinity", - "2026-01-01": 567070.42, - "2019-01-01": 510000, - "2018-01-01": 500000, - "2013-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.irs.ald.misc.max_business_losses.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.ald.misc.max_business_losses.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2027-01-01": "Infinity", - "2026-01-01": 283535.22, - "2019-01-01": 255000, - "2018-01-01": 250000, - "2013-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.irs.ald.misc.max_business_losses.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.ald.misc.max_business_losses.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2027-01-01": "Infinity", - "2026-01-01": 283535.22, - "2019-01-01": 255000, - "2018-01-01": 250000, - "2013-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.irs.ald.misc.max_business_losses.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.ald.misc.max_business_losses.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2027-01-01": "Infinity", - "2026-01-01": 567070.42, - "2019-01-01": 510000, - "2018-01-01": 500000, - "2013-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.irs.ald.deductions": { - "type": "parameter", - "parameter": "gov.irs.ald.deductions", - "description": "Above-the-line deductions from gross income to reach adjusted gross income.", - "label": "Above-the-line deductions", - "unit": "list", - "period": null, - "values": { - "2026-01-01": [ - "loss_ald", - "self_employment_tax_ald", - "student_loan_interest_ald", - "early_withdrawal_penalty", - "alimony_expense", - "educator_expense", - "health_savings_account_ald", - "self_employed_health_insurance_ald", - "self_employed_pension_contribution_ald", - "traditional_ira_contributions", - "qualified_adoption_assistance_expense", - "us_bonds_for_higher_ed", - "specified_possession_income", - "puerto_rico_income" - ], - "2021-01-01": [ - "loss_ald", - "self_employment_tax_ald", - "student_loan_interest_ald", - "early_withdrawal_penalty", - "alimony_expense", - "educator_expense", - "health_savings_account_ald", - "self_employed_health_insurance_ald", - "self_employed_pension_contribution_ald", - "traditional_ira_contributions", - "qualified_adoption_assistance_expense", - "us_bonds_for_higher_ed", - "specified_possession_income", - "puerto_rico_income" - ], - "2018-01-01": [ - "loss_ald", - "self_employment_tax_ald", - "student_loan_interest_ald", - "early_withdrawal_penalty", - "alimony_expense", - "educator_expense", - "qualified_tuition_expenses", - "health_savings_account_ald", - "self_employed_health_insurance_ald", - "self_employed_pension_contribution_ald", - "traditional_ira_contributions", - "qualified_adoption_assistance_expense", - "us_bonds_for_higher_ed", - "specified_possession_income", - "puerto_rico_income" - ], - "2010-01-01": [ - "loss_ald", - "self_employment_tax_ald", - "student_loan_interest_ald", - "early_withdrawal_penalty", - "alimony_expense", - "educator_expense", - "qualified_tuition_expenses", - "domestic_production_ald", - "health_savings_account_ald", - "self_employed_health_insurance_ald", - "self_employed_pension_contribution_ald", - "traditional_ira_contributions", - "qualified_adoption_assistance_expense", - "us_bonds_for_higher_ed", - "specified_possession_income", - "puerto_rico_income" - ] - }, - "economy": true, - "household": true - }, - "gov.irs.ald.student_loan_interest": { - "type": "parameterNode", - "parameter": "gov.irs.ald.student_loan_interest", - "description": null, - "label": "student loan interest", - "economy": true, - "household": true - }, - "gov.irs.ald.student_loan_interest.reduction": { - "type": "parameterNode", - "parameter": "gov.irs.ald.student_loan_interest.reduction", - "description": null, - "label": "reduction", - "economy": true, - "household": true - }, - "gov.irs.ald.student_loan_interest.reduction.start": { - "type": "parameterNode", - "parameter": "gov.irs.ald.student_loan_interest.reduction.start", - "description": "IRS allows for a student loan interest deduction of this amount, based on filing status.", - "label": "Student loan interest deduction amount", - "economy": true, - "household": true - }, - "gov.irs.ald.student_loan_interest.reduction.start.JOINT": { - "type": "parameter", - "parameter": "gov.irs.ald.student_loan_interest.reduction.start.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2035-01-01": 205000, - "2034-01-01": 200000, - "2033-01-01": 195000, - "2032-01-01": 190000, - "2031-01-01": 185000, - "2030-01-01": 185000, - "2029-01-01": 180000, - "2028-01-01": 175000, - "2027-01-01": 175000, - "2026-01-01": 170000, - "2025-01-01": 165000, - "2024-01-01": 165000, - "2023-01-01": 155000, - "2022-01-01": 145000, - "2019-01-01": 140000, - "2002-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.irs.ald.student_loan_interest.reduction.start.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.ald.student_loan_interest.reduction.start.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 95000, - "2034-01-01": 95000, - "2033-01-01": 95000, - "2032-01-01": 90000, - "2031-01-01": 90000, - "2030-01-01": 90000, - "2029-01-01": 85000, - "2028-01-01": 85000, - "2027-01-01": 85000, - "2026-01-01": 80000, - "2025-01-01": 80000, - "2024-01-01": 80000, - "2023-01-01": 75000, - "2019-01-01": 70000, - "2002-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.irs.ald.student_loan_interest.reduction.start.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.ald.student_loan_interest.reduction.start.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2002-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.ald.student_loan_interest.reduction.start.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.ald.student_loan_interest.reduction.start.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2035-01-01": 95000, - "2034-01-01": 95000, - "2033-01-01": 95000, - "2032-01-01": 90000, - "2031-01-01": 90000, - "2030-01-01": 90000, - "2029-01-01": 85000, - "2028-01-01": 85000, - "2027-01-01": 85000, - "2026-01-01": 80000, - "2025-01-01": 80000, - "2024-01-01": 80000, - "2023-01-01": 75000, - "2019-01-01": 70000, - "2002-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.irs.ald.student_loan_interest.reduction.start.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.ald.student_loan_interest.reduction.start.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 95000, - "2034-01-01": 95000, - "2033-01-01": 95000, - "2032-01-01": 90000, - "2031-01-01": 90000, - "2030-01-01": 90000, - "2029-01-01": 85000, - "2028-01-01": 85000, - "2027-01-01": 85000, - "2026-01-01": 80000, - "2025-01-01": 80000, - "2024-01-01": 80000, - "2023-01-01": 75000, - "2019-01-01": 70000, - "2002-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.irs.ald.student_loan_interest.reduction.divisor": { - "type": "parameterNode", - "parameter": "gov.irs.ald.student_loan_interest.reduction.divisor", - "description": "IRS reduces the student loan interest deduction for filers with modified adjusted income over this threshold, based on filing status.", - "label": "Student loan interest deduction reduction divisor", - "economy": true, - "household": true - }, - "gov.irs.ald.student_loan_interest.reduction.divisor.JOINT": { - "type": "parameter", - "parameter": "gov.irs.ald.student_loan_interest.reduction.divisor.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2002-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.irs.ald.student_loan_interest.reduction.divisor.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.ald.student_loan_interest.reduction.divisor.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2002-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.irs.ald.student_loan_interest.reduction.divisor.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.ald.student_loan_interest.reduction.divisor.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2002-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.ald.student_loan_interest.reduction.divisor.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.ald.student_loan_interest.reduction.divisor.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2002-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.irs.ald.student_loan_interest.reduction.divisor.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.ald.student_loan_interest.reduction.divisor.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2002-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.irs.ald.student_loan_interest.magi": { - "type": "parameterNode", - "parameter": "gov.irs.ald.student_loan_interest.magi", - "description": null, - "label": "magi", - "economy": true, - "household": true - }, - "gov.irs.ald.student_loan_interest.magi.excluded_alds": { - "type": "parameter", - "parameter": "gov.irs.ald.student_loan_interest.magi.excluded_alds", - "description": "IRS excludes the following above the line deductions from the modified adjusted gross income under the student loan interest deduction.", - "label": "Student loan interest deduction excluded above the line deductions", - "unit": "list", - "period": "year", - "values": { - "2002-01-01": ["student_loan_interest_ald", "puerto_rico_income"] - }, - "economy": true, - "household": true - }, - "gov.irs.ald.student_loan_interest.magi.person_alds": { - "type": "parameter", - "parameter": "gov.irs.ald.student_loan_interest.magi.person_alds", - "description": "IRS consideres the following person level above the line deductions for the modified adjusted gross income computation under the student loan interest deduction.", - "label": "Student loan interest deduction person level above the line deductions", - "unit": "list", - "period": "year", - "values": { - "2002-01-01": [ - "self_employment_tax_ald", - "self_employed_health_insurance_ald", - "self_employed_pension_contribution_ald" - ] - }, - "economy": true, - "household": true - }, - "gov.irs.ald.student_loan_interest.magi.excluded_gross_income_sources": { - "type": "parameter", - "parameter": "gov.irs.ald.student_loan_interest.magi.excluded_gross_income_sources", - "description": "IRS excludes the following gross income sources from the modified adjusted gross income under the student loan interest deduction.", - "label": "Student loan interest deduction excluded gross income sources", - "unit": "list", - "period": "year", - "values": { - "2002-01-01": ["taxable_unemployment_compensation"] - }, - "economy": true, - "household": true - }, - "gov.irs.ald.student_loan_interest.cap": { - "type": "parameterNode", - "parameter": "gov.irs.ald.student_loan_interest.cap", - "description": "IRS caps the student loan interest deduction at this amount, based on filing status.", - "label": "Student loan interest deduction cap", - "economy": true, - "household": true - }, - "gov.irs.ald.student_loan_interest.cap.JOINT": { - "type": "parameter", - "parameter": "gov.irs.ald.student_loan_interest.cap.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2002-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.irs.ald.student_loan_interest.cap.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.ald.student_loan_interest.cap.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2002-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.irs.ald.student_loan_interest.cap.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.ald.student_loan_interest.cap.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2002-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.ald.student_loan_interest.cap.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.ald.student_loan_interest.cap.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2002-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.irs.ald.student_loan_interest.cap.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.ald.student_loan_interest.cap.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2002-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.irs.__pycache__": { - "type": "parameterNode", - "parameter": "gov.irs.__pycache__", - "description": null, - "label": " pycache ", - "economy": true, - "household": true - }, - "gov.irs.dependent": { - "type": "parameterNode", - "parameter": "gov.irs.dependent", - "description": null, - "label": "dependent", - "economy": true, - "household": true - }, - "gov.irs.dependent.ineligible_age": { - "type": "parameterNode", - "parameter": "gov.irs.dependent.ineligible_age", - "description": null, - "label": "ineligible age", - "economy": true, - "household": true - }, - "gov.irs.dependent.ineligible_age.student": { - "type": "parameter", - "parameter": "gov.irs.dependent.ineligible_age.student", - "description": "The IRS permits filers to claim dependents who are full-time students if they are younger than this age at the end of the year.", - "label": "IRS student dependent age limit", - "unit": "year", - "period": "year", - "values": { - "2018-01-01": 24, - "2015-01-01": 24 - }, - "economy": true, - "household": true - }, - "gov.irs.dependent.ineligible_age.non_student": { - "type": "parameter", - "parameter": "gov.irs.dependent.ineligible_age.non_student", - "description": "The IRS permits filers to claim dependents who are non-students if they are younger than this age at the end of the year.", - "label": "IRS non-student dependent age limit", - "unit": "year", - "period": "year", - "values": { - "2018-01-01": 19, - "2015-01-01": 19 - }, - "economy": true, - "household": true - }, - "gov.irs.uprating": { - "type": "parameter", - "parameter": "gov.irs.uprating", - "description": "Uprating index for IRS tax parameters (December 1999 = 100%).", - "label": "Uprating index for IRS tax parameters", - "unit": "/1", - "period": null, - "values": { - "2035-01-01": 209.15, - "2034-01-01": 205.1, - "2033-01-01": 201.1, - "2032-01-01": 197.2, - "2031-01-01": 193.4, - "2030-01-01": 189.65, - "2029-01-01": 185.95, - "2028-01-01": 182.3, - "2027-01-01": 178.6, - "2026-01-01": 174.305, - "2025-01-01": 171.680583333333, - "2024-01-01": 167.95475, - "2023-01-01": 158.871916666667, - "2022-01-01": 148.477583333333, - "2021-01-01": 144.65725, - "2020-01-01": 143.006083333333, - "2019-01-01": 140.726166666667, - "2018-01-01": 138.061583333333, - "2017-01-01": 135.917916666667, - "2016-01-01": 135.334416666667, - "2015-01-01": 134.84, - "2014-01-01": 133.004416666667, - "2013-01-01": 131.068333333333, - "2012-01-01": 127.637916666667, - "2011-01-01": 125.100416666667, - "2010-01-01": 123.833333333333 - }, - "economy": true, - "household": true - }, - "gov.irs.self_employment": { - "type": "parameterNode", - "parameter": "gov.irs.self_employment", - "description": null, - "label": "self employment", - "economy": true, - "household": true - }, - "gov.irs.self_employment.net_earnings_exemption": { - "type": "parameter", - "parameter": "gov.irs.self_employment.net_earnings_exemption", - "description": "Minimum self-employment net earnings to have to pay self-employment tax.", - "label": "Self-employment net earnings exemption", - "unit": "currency-USD", - "period": "year", - "values": { - "2013-01-01": 400 - }, - "economy": true, - "household": true - }, - "gov.irs.self_employment.rate": { - "type": "parameterNode", - "parameter": "gov.irs.self_employment.rate", - "description": null, - "label": "rate", - "economy": true, - "household": true - }, - "gov.irs.self_employment.rate.medicare": { - "type": "parameter", - "parameter": "gov.irs.self_employment.rate.medicare", - "description": "Self-employment Medicare tax rate.", - "label": "Self-employment Medicare tax rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.029 - }, - "economy": true, - "household": true - }, - "gov.irs.self_employment.rate.social_security": { - "type": "parameter", - "parameter": "gov.irs.self_employment.rate.social_security", - "description": "Self-employment Social Security tax rate", - "label": "Self-employment Social Security tax rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.124 - }, - "economy": true, - "household": true - }, - "gov.irs.social_security": { - "type": "parameterNode", - "parameter": "gov.irs.social_security", - "description": null, - "label": "Social Security", - "economy": true, - "household": true - }, - "gov.irs.social_security.taxability": { - "type": "parameterNode", - "parameter": "gov.irs.social_security.taxability", - "description": null, - "label": "taxability", - "economy": true, - "household": true - }, - "gov.irs.social_security.taxability.rate": { - "type": "parameterNode", - "parameter": "gov.irs.social_security.taxability.rate", - "description": null, - "label": "rate", - "economy": true, - "household": true - }, - "gov.irs.social_security.taxability.rate.base": { - "type": "parameter", - "parameter": "gov.irs.social_security.taxability.rate.base", - "description": "The IRS includes this portion of Social Security benefits in taxable income for filers whose modified adjusted gross income is between the base and additional thresholds.", - "label": "Social Security benefit base taxable rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.irs.social_security.taxability.rate.additional": { - "type": "parameter", - "parameter": "gov.irs.social_security.taxability.rate.additional", - "description": "The IRS includes this additional portion of Social Security benefits in taxable income for filers whose modified adjusted gross income exceeds the additional threshold.", - "label": "Social Security benefit additional taxable rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.85 - }, - "economy": true, - "household": true - }, - "gov.irs.social_security.taxability.income": { - "type": "parameterNode", - "parameter": "gov.irs.social_security.taxability.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.irs.social_security.taxability.income.revoked_deductions": { - "type": "parameter", - "parameter": "gov.irs.social_security.taxability.income.revoked_deductions", - "description": "Above-the-line deductions reverted to reach social-security-related MAGI from AGI.", - "label": "Social-security-related MAGI reverted deductions", - "unit": "currency-USD", - "period": null, - "values": { - "2010-01-01": [ - "taxable_social_security", - "us_bonds_for_higher_ed", - "qualified_adoption_assistance_expense", - "student_loan_interest_ald", - "specified_possession_income", - "puerto_rico_income" - ] - }, - "economy": true, - "household": true - }, - "gov.irs.social_security.taxability.threshold": { - "type": "parameterNode", - "parameter": "gov.irs.social_security.taxability.threshold", - "description": null, - "label": "threshold", - "economy": true, - "household": true - }, - "gov.irs.social_security.taxability.threshold.base": { - "type": "parameterNode", - "parameter": "gov.irs.social_security.taxability.threshold.base", - "description": null, - "label": "base", - "economy": true, - "household": true - }, - "gov.irs.social_security.taxability.threshold.base.main": { - "type": "parameterNode", - "parameter": "gov.irs.social_security.taxability.threshold.base.main", - "description": "The IRS taxes Social Security benefits at the base rate, for filers with modified adjusted gross income between this threshold and the respective additional threshold, by filing status.", - "label": "Social Security taxability base threshold", - "economy": true, - "household": true - }, - "gov.irs.social_security.taxability.threshold.base.main.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.social_security.taxability.threshold.base.main.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2013-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.irs.social_security.taxability.threshold.base.main.JOINT": { - "type": "parameter", - "parameter": "gov.irs.social_security.taxability.threshold.base.main.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2013-01-01": 32000 - }, - "economy": true, - "household": true - }, - "gov.irs.social_security.taxability.threshold.base.main.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.social_security.taxability.threshold.base.main.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2013-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.irs.social_security.taxability.threshold.base.main.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.social_security.taxability.threshold.base.main.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2013-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.irs.social_security.taxability.threshold.base.main.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.social_security.taxability.threshold.base.main.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2013-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.irs.social_security.taxability.threshold.base.separate_cohabitating": { - "type": "parameter", - "parameter": "gov.irs.social_security.taxability.threshold.base.separate_cohabitating", - "description": "The IRS taxes Social Security benefits at the base rate, for cohabitating married filing separately filers with modified adjusted gross income between this threshold and the respective additional threshold.", - "label": "Social Security taxability base threshold for cohabitating separate filers", - "unit": "currency-USD", - "period": "year", - "values": { - "2013-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.social_security.taxability.threshold.adjusted_base": { - "type": "parameterNode", - "parameter": "gov.irs.social_security.taxability.threshold.adjusted_base", - "description": null, - "label": "adjusted base", - "economy": true, - "household": true - }, - "gov.irs.social_security.taxability.threshold.adjusted_base.main": { - "type": "parameterNode", - "parameter": "gov.irs.social_security.taxability.threshold.adjusted_base.main", - "description": "The IRS taxes Social Security benefits at the additional rate, for filers with modified adjusted gross income between above the additional threshold, by filing status.", - "label": "Social Security taxability additional threshold", - "economy": true, - "household": true - }, - "gov.irs.social_security.taxability.threshold.adjusted_base.main.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.social_security.taxability.threshold.adjusted_base.main.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2013-01-01": 34000 - }, - "economy": true, - "household": true - }, - "gov.irs.social_security.taxability.threshold.adjusted_base.main.JOINT": { - "type": "parameter", - "parameter": "gov.irs.social_security.taxability.threshold.adjusted_base.main.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2013-01-01": 44000 - }, - "economy": true, - "household": true - }, - "gov.irs.social_security.taxability.threshold.adjusted_base.main.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.social_security.taxability.threshold.adjusted_base.main.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2013-01-01": 34000 - }, - "economy": true, - "household": true - }, - "gov.irs.social_security.taxability.threshold.adjusted_base.main.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.social_security.taxability.threshold.adjusted_base.main.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2013-01-01": 34000 - }, - "economy": true, - "household": true - }, - "gov.irs.social_security.taxability.threshold.adjusted_base.main.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.social_security.taxability.threshold.adjusted_base.main.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2013-01-01": 34000 - }, - "economy": true, - "household": true - }, - "gov.irs.social_security.taxability.threshold.adjusted_base.separate_cohabitating": { - "type": "parameter", - "parameter": "gov.irs.social_security.taxability.threshold.adjusted_base.separate_cohabitating", - "description": "The IRS taxes Social Security benefits at the additional rate, for cohabitating married filing separately filers with modified adjusted gross income above this threshold.", - "label": "Social Security taxability additional threshold for cohabitating separate filers", - "unit": "currency-USD", - "period": "year", - "values": { - "2013-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.vita": { - "type": "parameterNode", - "parameter": "gov.irs.vita", - "description": null, - "label": "vita", - "economy": true, - "household": true - }, - "gov.irs.vita.eligibility": { - "type": "parameterNode", - "parameter": "gov.irs.vita.eligibility", - "description": null, - "label": "eligibility", - "economy": true, - "household": true - }, - "gov.irs.vita.eligibility.income_limit": { - "type": "parameter", - "parameter": "gov.irs.vita.eligibility.income_limit", - "description": "The IRS extends the Volunteer Income Tax Assistance (VITA) program to filers with gross income at or below this amount.", - "label": "VITA Program Income Limit", - "unit": "currency-USD", - "period": "year", - "values": { - "2023-01-01": 64000, - "2022-01-01": 58000, - "2015-01-01": 58000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions": { - "type": "parameterNode", - "parameter": "gov.irs.deductions", - "description": null, - "label": "deductions", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized_deductions": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized_deductions", - "description": "Deductions from taxable income if itemizing (that are not available if not itemizing).", - "label": "itemized deductions", - "unit": "list", - "period": null, - "values": { - "2022-01-01": [ - "charitable_deduction", - "interest_deduction", - "salt_deduction", - "medical_expense_deduction", - "casualty_loss_deduction", - "misc_deduction" - ], - "2020-01-01": [ - "charitable_deduction", - "charitable_deduction_for_non_itemizers", - "interest_deduction", - "salt_deduction", - "medical_expense_deduction", - "casualty_loss_deduction", - "misc_deduction" - ], - "2018-01-01": [ - "charitable_deduction", - "interest_deduction", - "salt_deduction", - "medical_expense_deduction", - "casualty_loss_deduction", - "misc_deduction" - ], - "2015-01-01": [ - "charitable_deduction", - "interest_deduction", - "salt_deduction", - "medical_expense_deduction", - "casualty_loss_deduction", - "misc_deduction" - ] - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.deductions_if_not_itemizing": { - "type": "parameter", - "parameter": "gov.irs.deductions.deductions_if_not_itemizing", - "description": "Deductions from taxable income if not itemizing.", - "label": "Taxable income deductions if itemizing", - "unit": "list", - "period": "year", - "values": { - "2029-01-01": [ - "qualified_business_income_deduction", - "wagering_losses_deduction", - "itemized_taxable_income_deductions" - ], - "2025-01-01": [ - "charitable_deduction_for_non_itemizers", - "standard_deduction", - "qualified_business_income_deduction", - "tip_income_deduction", - "overtime_income_deduction", - "additional_senior_deduction", - "auto_loan_interest_deduction" - ], - "2020-01-01": [ - "charitable_deduction_for_non_itemizers", - "standard_deduction", - "qualified_business_income_deduction" - ], - "2018-01-01": [ - "standard_deduction", - "qualified_business_income_deduction", - "tuition_and_fees_deduction" - ], - "2015-01-01": [ - "standard_deduction", - "qualified_business_income_deduction", - "tuition_and_fees_deduction" - ] - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.qbi": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.qbi", - "description": null, - "label": "Qualified business income", - "economy": true, - "household": true - }, - "gov.irs.deductions.qbi.deduction_floor": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.qbi.deduction_floor", - "description": null, - "label": "deduction floor", - "economy": true, - "household": true - }, - "gov.irs.deductions.qbi.deduction_floor.in_effect": { - "type": "parameter", - "parameter": "gov.irs.deductions.qbi.deduction_floor.in_effect", - "description": "The IRS applies a deduction floor for the Qualified Business Income Deduction, if this is true.", - "label": "QBID deduction floor in effect", - "unit": "bool", - "period": "year", - "values": { - "2026-01-01": true, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.qbi.deduction_floor.amount": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.qbi.deduction_floor.amount", - "description": "The IRS applies a deduction floor of this amount for the Qualified Business Income Deduction, based on qualified business income.", - "label": "QBID deduction floor amount" - }, - "gov.irs.deductions.qbi.deduction_floor.amount[0]": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.qbi.deduction_floor.amount[0]", - "description": null, - "label": "bracket 1" - }, - "gov.irs.deductions.qbi.deduction_floor.amount[0].threshold": { - "type": "parameter", - "parameter": "gov.irs.deductions.qbi.deduction_floor.amount[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2026-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.qbi.deduction_floor.amount[0].amount": { - "type": "parameter", - "parameter": "gov.irs.deductions.qbi.deduction_floor.amount[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2026-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.qbi.deduction_floor.amount[1]": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.qbi.deduction_floor.amount[1]", - "description": null, - "label": "bracket 2" - }, - "gov.irs.deductions.qbi.deduction_floor.amount[1].threshold": { - "type": "parameter", - "parameter": "gov.irs.deductions.qbi.deduction_floor.amount[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2026-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.qbi.deduction_floor.amount[1].amount": { - "type": "parameter", - "parameter": "gov.irs.deductions.qbi.deduction_floor.amount[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2026-01-01": 400, - "2015-01-01": 400 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.qbi.max": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.qbi.max", - "description": null, - "label": "max", - "economy": true, - "household": true - }, - "gov.irs.deductions.qbi.max.business_property": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.qbi.max.business_property", - "description": null, - "label": "business property", - "economy": true, - "household": true - }, - "gov.irs.deductions.qbi.max.business_property.rate": { - "type": "parameter", - "parameter": "gov.irs.deductions.qbi.max.business_property.rate", - "description": "Alternative QBID cap rate on pass-through business property owned", - "label": "Alternative QBID rate on business property", - "unit": "/1", - "period": "year", - "values": { - "2018-01-01": 0.025, - "2013-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.qbi.max.w2_wages": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.qbi.max.w2_wages", - "description": null, - "label": "w2 wages", - "economy": true, - "household": true - }, - "gov.irs.deductions.qbi.max.w2_wages.alt_rate": { - "type": "parameter", - "parameter": "gov.irs.deductions.qbi.max.w2_wages.alt_rate", - "description": "Alternative QBID cap rate on pass-through business W-2 wages paid. QBID is capped at this fraction of W-2 wages paid by the pass-through business plus some fraction of business property if pre-QBID taxable income is above the QBID thresholds and the alternative cap is higher than the main wage-only cap.", - "label": "Alternative QBID rate on W-2 wages", - "unit": "/1", - "period": "year", - "values": { - "2018-01-01": 0.25, - "2013-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.qbi.max.w2_wages.rate": { - "type": "parameter", - "parameter": "gov.irs.deductions.qbi.max.w2_wages.rate", - "description": "QBID cap rate on pass-through business W-2 wages paid.", - "label": "QBID rate on W-2 wages", - "unit": "/1", - "period": "year", - "values": { - "2018-01-01": 0.5, - "2013-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.qbi.max.rate": { - "type": "parameter", - "parameter": "gov.irs.deductions.qbi.max.rate", - "description": "Pass-through qualified business income deduction rate.", - "label": "Qualified business income deduction rate", - "unit": "/1", - "period": "year", - "values": { - "2018-01-01": 0.2, - "2017-01-01": 0, - "2016-01-01": 0, - "2015-01-01": 0, - "2014-01-01": 0, - "2013-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.qbi.deduction_definition": { - "type": "parameter", - "parameter": "gov.irs.deductions.qbi.deduction_definition", - "description": "Sources of qualified business income deductions.", - "label": "Qualified business income deductions", - "unit": "list", - "period": null, - "values": { - "2018-01-01": [ - "self_employment_tax_ald_person", - "self_employed_health_insurance_ald_person", - "self_employed_pension_contribution_ald_person" - ], - "2015-01-01": [ - "self_employment_tax_ald_person", - "self_employed_health_insurance_ald_person", - "self_employed_pension_contribution_ald_person" - ] - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.qbi.phase_out": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.qbi.phase_out", - "description": null, - "label": "phase out", - "economy": true, - "household": true - }, - "gov.irs.deductions.qbi.phase_out.start": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.qbi.phase_out.start", - "description": "Threshold of taxable income (excluding QBID) after which the QBI deduction is phased out.", - "label": "Qualified business income deduction phase-out start", - "economy": true, - "household": true - }, - "gov.irs.deductions.qbi.phase_out.start.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.deductions.qbi.phase_out.start.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 240341.613837813, - "2034-01-01": 235687.616534236, - "2033-01-01": 231091.075987493, - "2032-01-01": 226609.448954419, - "2031-01-01": 222242.735435013, - "2030-01-01": 217933.478672442, - "2029-01-01": 213681.678666705, - "2028-01-01": 209487.335417802, - "2027-01-01": 205235.535412065, - "2026-01-01": 200300, - "2025-01-01": 197300, - "2024-01-01": 191950, - "2023-01-01": 182100, - "2022-01-01": 170050, - "2021-01-01": 164900, - "2020-01-01": 163300, - "2019-01-01": 160700, - "2018-01-01": 157500, - "2013-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.qbi.phase_out.start.JOINT": { - "type": "parameter", - "parameter": "gov.irs.deductions.qbi.phase_out.start.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 480683.227675626, - "2034-01-01": 471375.233068472, - "2033-01-01": 462182.151974986, - "2032-01-01": 453218.897908838, - "2031-01-01": 444485.470870027, - "2030-01-01": 435866.957344884, - "2029-01-01": 427363.35733341, - "2028-01-01": 418974.670835604, - "2027-01-01": 410471.07082413, - "2026-01-01": 400600, - "2025-01-01": 394600, - "2024-01-01": 383900, - "2023-01-01": 364200, - "2022-01-01": 340100, - "2021-01-01": 329800, - "2020-01-01": 326600, - "2019-01-01": 321400, - "2018-01-01": 315000, - "2013-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.qbi.phase_out.start.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.deductions.qbi.phase_out.start.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 240341.613837813, - "2034-01-01": 235687.616534236, - "2033-01-01": 231091.075987493, - "2032-01-01": 226609.448954419, - "2031-01-01": 222242.735435013, - "2030-01-01": 217933.478672442, - "2029-01-01": 213681.678666705, - "2028-01-01": 209487.335417802, - "2027-01-01": 205235.535412065, - "2026-01-01": 200300, - "2025-01-01": 197300, - "2024-01-01": 191950, - "2023-01-01": 182100, - "2022-01-01": 170050, - "2021-01-01": 164925, - "2020-01-01": 163300, - "2019-01-01": 160725, - "2018-01-01": 157500, - "2013-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.qbi.phase_out.start.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.deductions.qbi.phase_out.start.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 240341.613837813, - "2034-01-01": 235687.616534236, - "2033-01-01": 231091.075987493, - "2032-01-01": 226609.448954419, - "2031-01-01": 222242.735435013, - "2030-01-01": 217933.478672442, - "2029-01-01": 213681.678666705, - "2028-01-01": 209487.335417802, - "2027-01-01": 205235.535412065, - "2026-01-01": 200300, - "2025-01-01": 197300, - "2024-01-01": 191950, - "2023-01-01": 182100, - "2022-01-01": 170050, - "2021-01-01": 164900, - "2020-01-01": 163300, - "2019-01-01": 160700, - "2018-01-01": 157500, - "2013-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.qbi.phase_out.start.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.deductions.qbi.phase_out.start.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 480683.227675626, - "2034-01-01": 471375.233068472, - "2033-01-01": 462182.151974986, - "2032-01-01": 453218.897908838, - "2031-01-01": 444485.470870027, - "2030-01-01": 435866.957344884, - "2029-01-01": 427363.35733341, - "2028-01-01": 418974.670835604, - "2027-01-01": 410471.07082413, - "2026-01-01": 400600, - "2025-01-01": 394600, - "2024-01-01": 383900, - "2023-01-01": 364200, - "2022-01-01": 340100, - "2021-01-01": 329800, - "2020-01-01": 326600, - "2019-01-01": 321400, - "2018-01-01": 315000, - "2013-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.qbi.phase_out.length": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.qbi.phase_out.length", - "description": "Dollar gap between upper and lower threshold of pre-QBID taxable income", - "label": "QBID phase-out length", - "economy": true, - "household": true - }, - "gov.irs.deductions.qbi.phase_out.length.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.deductions.qbi.phase_out.length.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2026-01-01": 75000, - "2018-01-01": 50000, - "2013-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.qbi.phase_out.length.JOINT": { - "type": "parameter", - "parameter": "gov.irs.deductions.qbi.phase_out.length.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2026-01-01": 150000, - "2018-01-01": 100000, - "2013-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.qbi.phase_out.length.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.deductions.qbi.phase_out.length.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2026-01-01": 75000, - "2018-01-01": 50000, - "2013-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.qbi.phase_out.length.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.deductions.qbi.phase_out.length.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2026-01-01": 75000, - "2018-01-01": 50000, - "2013-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.qbi.phase_out.length.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.deductions.qbi.phase_out.length.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2026-01-01": 150000, - "2018-01-01": 100000, - "2013-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.qbi.income_definition": { - "type": "parameter", - "parameter": "gov.irs.deductions.qbi.income_definition", - "description": "Income sources that count as qualified business income.", - "label": "Qualified business income sources", - "unit": "list", - "period": null, - "values": { - "2018-01-01": [ - "self_employment_income", - "partnership_s_corp_income", - "farm_rent_income", - "farm_operations_income", - "rental_income", - "estate_income" - ], - "2015-01-01": [ - "self_employment_income", - "partnership_s_corp_income", - "farm_rent_income", - "farm_operations_income", - "rental_income", - "estate_income" - ] - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.overtime_income": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.overtime_income", - "description": null, - "label": "overtime income", - "economy": true, - "household": true - }, - "gov.irs.deductions.overtime_income.eligible_ssn_card_type": { - "type": "parameter", - "parameter": "gov.irs.deductions.overtime_income.eligible_ssn_card_type", - "description": "The IRS limits the overtime income deduction to filers with one of these SSN Card types.", - "label": "Overtime income deduction eligible SSN card type", - "unit": "list", - "period": "year", - "values": { - "2018-01-01": ["CITIZEN", "NON_CITIZEN_VALID_EAD"], - "2015-01-01": ["CITIZEN", "NON_CITIZEN_VALID_EAD"] - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.overtime_income.cap": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.overtime_income.cap", - "description": "The IRS caps the overtime income exemption at this amount, based on filing status.", - "label": "Overtime income exemption cap", - "economy": true, - "household": true - }, - "gov.irs.deductions.overtime_income.cap.JOINT": { - "type": "parameter", - "parameter": "gov.irs.deductions.overtime_income.cap.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2025-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.overtime_income.cap.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.deductions.overtime_income.cap.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2025-01-01": 12500, - "2015-01-01": 12500 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.overtime_income.cap.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.deductions.overtime_income.cap.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2025-01-01": 12500, - "2015-01-01": 12500 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.overtime_income.cap.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.deductions.overtime_income.cap.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2025-01-01": 12500, - "2015-01-01": 12500 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.overtime_income.cap.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.deductions.overtime_income.cap.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2025-01-01": 12500, - "2015-01-01": 12500 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.overtime_income.phase_out": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.overtime_income.phase_out", - "description": null, - "label": "phase out", - "economy": true, - "household": true - }, - "gov.irs.deductions.overtime_income.phase_out.start": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.overtime_income.phase_out.start", - "description": "The IRS phases out the overtime income exemption for income above this threshold, based on filing status.", - "label": "Overtime income exemption phase out start", - "economy": true, - "household": true - }, - "gov.irs.deductions.overtime_income.phase_out.start.JOINT": { - "type": "parameter", - "parameter": "gov.irs.deductions.overtime_income.phase_out.start.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2025-01-01": 300000, - "2015-01-01": 300000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.overtime_income.phase_out.start.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.deductions.overtime_income.phase_out.start.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2025-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.overtime_income.phase_out.start.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.deductions.overtime_income.phase_out.start.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2025-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.overtime_income.phase_out.start.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.deductions.overtime_income.phase_out.start.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2025-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.overtime_income.phase_out.start.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.deductions.overtime_income.phase_out.start.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2025-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.overtime_income.phase_out.rate": { - "type": "parameter", - "parameter": "gov.irs.deductions.overtime_income.phase_out.rate", - "description": "The IRS phases out the overtime income exemption at the following rate for income above a certain threshold.", - "label": "Overtime income exemption phase out rate", - "unit": "/1", - "period": "year", - "values": { - "2025-01-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.tip_income": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.tip_income", - "description": null, - "label": "tip income", - "economy": true, - "household": true - }, - "gov.irs.deductions.tip_income.eligible_ssn_card_type": { - "type": "parameter", - "parameter": "gov.irs.deductions.tip_income.eligible_ssn_card_type", - "description": "The IRS limits the tip income deduction to filers with one of these SSN Card types.", - "label": "Tip income deduction eligible SSN card types", - "unit": "list", - "period": "year", - "values": { - "2018-01-01": ["CITIZEN", "NON_CITIZEN_VALID_EAD"], - "2015-01-01": ["CITIZEN", "NON_CITIZEN_VALID_EAD"] - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.tip_income.cap": { - "type": "parameter", - "parameter": "gov.irs.deductions.tip_income.cap", - "description": "The IRS caps the tip income exemption at this amount.", - "label": "Tip income exemption cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2025-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.tip_income.phase_out": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.tip_income.phase_out", - "description": null, - "label": "phase out", - "economy": true, - "household": true - }, - "gov.irs.deductions.tip_income.phase_out.start": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.tip_income.phase_out.start", - "description": "The IRS phases out the tip income exemption for income above this threshold, based on filing status.", - "label": "Tip income exemption phase out start", - "economy": true, - "household": true - }, - "gov.irs.deductions.tip_income.phase_out.start.JOINT": { - "type": "parameter", - "parameter": "gov.irs.deductions.tip_income.phase_out.start.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2025-01-01": 300000, - "2015-01-01": 300000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.tip_income.phase_out.start.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.deductions.tip_income.phase_out.start.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2025-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.tip_income.phase_out.start.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.deductions.tip_income.phase_out.start.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2025-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.tip_income.phase_out.start.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.deductions.tip_income.phase_out.start.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2025-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.tip_income.phase_out.start.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.deductions.tip_income.phase_out.start.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2025-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.tip_income.phase_out.rate": { - "type": "parameter", - "parameter": "gov.irs.deductions.tip_income.phase_out.rate", - "description": "The IRS phases out the tip income exemption at the following rate for income above a certain threshold.", - "label": "Tip income exemption phase out rate", - "unit": "/1", - "period": "year", - "values": { - "2025-01-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized", - "description": null, - "label": "itemized", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.reduction": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.reduction", - "description": null, - "label": "reduction", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.reduction.agi_threshold": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.reduction.agi_threshold", - "description": "IRS deducts the total itemized deductions amount for filers with adjusted gross income below this amount, based on filing status.", - "label": "IRS itemized deductions reduction threshold", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.reduction.agi_threshold.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.reduction.agi_threshold.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 406200, - "2034-01-01": 398250, - "2033-01-01": 390500, - "2032-01-01": 382900, - "2031-01-01": 375500, - "2030-01-01": 368200, - "2029-01-01": 361050, - "2028-01-01": 354050, - "2027-01-01": 347050, - "2026-01-01": 339850, - "2018-01-01": 0, - "2017-01-01": 261500, - "2016-01-01": 259400, - "2015-01-01": 258250, - "2014-01-01": 254200, - "2013-01-01": 250000, - "2010-01-01": 0, - "2009-01-01": 166800 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.reduction.agi_threshold.JOINT": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.reduction.agi_threshold.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2035-01-01": 487400, - "2034-01-01": 477900, - "2033-01-01": 468600, - "2032-01-01": 459500, - "2031-01-01": 450600, - "2030-01-01": 441850, - "2029-01-01": 433300, - "2028-01-01": 424900, - "2027-01-01": 416450, - "2026-01-01": 407850, - "2018-01-01": 0, - "2017-01-01": 313800, - "2016-01-01": 311300, - "2015-01-01": 309900, - "2014-01-01": 305050, - "2013-01-01": 300000, - "2010-01-01": 0, - "2009-01-01": 250200 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.reduction.agi_threshold.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.reduction.agi_threshold.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 243700, - "2034-01-01": 238950, - "2033-01-01": 234300, - "2032-01-01": 229750, - "2031-01-01": 225300, - "2030-01-01": 220900, - "2029-01-01": 216650, - "2028-01-01": 212450, - "2027-01-01": 208200, - "2026-01-01": 203900, - "2018-01-01": 0, - "2017-01-01": 156900, - "2016-01-01": 155650, - "2015-01-01": 154950, - "2014-01-01": 152525, - "2013-01-01": 150000, - "2010-01-01": 0, - "2009-01-01": 125100 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.reduction.agi_threshold.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.reduction.agi_threshold.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2035-01-01": 446800, - "2034-01-01": 438100, - "2033-01-01": 429550, - "2032-01-01": 421200, - "2031-01-01": 413050, - "2030-01-01": 405000, - "2029-01-01": 397200, - "2028-01-01": 389500, - "2027-01-01": 381750, - "2026-01-01": 373850, - "2018-01-01": 0, - "2017-01-01": 287650, - "2016-01-01": 285350, - "2015-01-01": 284050, - "2014-01-01": 279650, - "2013-01-01": 275000, - "2010-01-01": 0, - "2009-01-01": 208500 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.reduction.agi_threshold.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.reduction.agi_threshold.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 487400, - "2034-01-01": 477900, - "2033-01-01": 468600, - "2032-01-01": 459500, - "2031-01-01": 450600, - "2030-01-01": 441850, - "2029-01-01": 433300, - "2028-01-01": 424900, - "2027-01-01": 416450, - "2026-01-01": 407850, - "2018-01-01": 0, - "2017-01-01": 313800, - "2016-01-01": 311300, - "2015-01-01": 309900, - "2014-01-01": 305050, - "2013-01-01": 300000, - "2010-01-01": 0, - "2009-01-01": 250200 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.reduction.rate": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.reduction.rate", - "description": null, - "label": "rate", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.reduction.rate.base": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.reduction.rate.base", - "description": "IRS multiplies the excess of the total and reduced itemized deductions by this rate.", - "label": "IRS reduced itemized deductions base rate", - "unit": "/1", - "period": "year", - "values": { - "2017-01-01": 0.8, - "2015-01-01": 0.8 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.reduction.rate.excess_agi": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.reduction.rate.excess_agi", - "description": "IRS multiplies the excess of adjusted gross income over the applicable amount by this rate.", - "label": "IRS itemized deductions reduced adjusted gross income rate", - "unit": "/1", - "period": "year", - "values": { - "2017-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.reduction.amended_structure": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.reduction.amended_structure", - "description": null, - "label": "amended structure", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.reduction.amended_structure.rate": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.reduction.amended_structure.rate", - "description": "The IRS phases the itemized deductions out at the following rate of the lesser of the itemized deductions or taxable income above the highest income tax rate threshold.", - "label": "Itemized deductions amended reduction rate", - "unit": "/1", - "period": "year", - "values": { - "0000-01-01": 0.05405405 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.reduction.amended_structure.applies": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.reduction.amended_structure.applies", - "description": "The IRS reduces the itemized deductions at an amended structure, if this is true.", - "label": "Itemized deductions amended reduction structure applies", - "unit": "bool", - "period": "year", - "values": { - "2026-01-01": true, - "2009-01-01": false - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.reduction.applies": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.reduction.applies", - "description": "The itemized deductions reduction applies if this is true.", - "label": "Itemized deductions reduction applies", - "unit": "bool", - "period": "year", - "values": { - "2026-01-01": true, - "2018-01-01": false, - "2013-01-01": true, - "2010-01-01": false, - "2009-01-01": true - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.limitation": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.limitation", - "description": null, - "label": "limitation", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.limitation.applicable_amount": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.limitation.applicable_amount", - "description": "The US limits the itemized deductions to filers with adjusted gross income over this amount, based on filing status.", - "label": "Itemized deductions applicable amount", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.limitation.applicable_amount.JOINT": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.limitation.applicable_amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2035-01-01": 487400, - "2034-01-01": 477900, - "2033-01-01": 468600, - "2032-01-01": 459500, - "2031-01-01": 450600, - "2030-01-01": 441850, - "2029-01-01": 433300, - "2028-01-01": 424900, - "2027-01-01": 416450, - "2026-01-01": 407850, - "2018-01-01": "Infinity", - "2017-01-01": 313800, - "2016-01-01": 311300, - "2015-01-01": 309900, - "2014-01-01": 305050, - "2013-01-01": 300000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.limitation.applicable_amount.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.limitation.applicable_amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 406200, - "2034-01-01": 398250, - "2033-01-01": 390500, - "2032-01-01": 382900, - "2031-01-01": 375500, - "2030-01-01": 368200, - "2029-01-01": 361050, - "2028-01-01": 354050, - "2027-01-01": 347050, - "2026-01-01": 339850, - "2018-01-01": "Infinity", - "2017-01-01": 261500, - "2016-01-01": 259400, - "2015-01-01": 258250, - "2014-01-01": 254200, - "2013-01-01": 250000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.limitation.applicable_amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.limitation.applicable_amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 243700, - "2034-01-01": 238950, - "2033-01-01": 234300, - "2032-01-01": 229750, - "2031-01-01": 225300, - "2030-01-01": 220900, - "2029-01-01": 216650, - "2028-01-01": 212450, - "2027-01-01": 208200, - "2026-01-01": 203900, - "2018-01-01": "Infinity", - "2017-01-01": 156900, - "2016-01-01": 155650, - "2015-01-01": 154950, - "2014-01-01": 152525, - "2013-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.limitation.applicable_amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.limitation.applicable_amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2035-01-01": 446800, - "2034-01-01": 438100, - "2033-01-01": 429550, - "2032-01-01": 421200, - "2031-01-01": 413050, - "2030-01-01": 405000, - "2029-01-01": 397200, - "2028-01-01": 389500, - "2027-01-01": 381750, - "2026-01-01": 373850, - "2018-01-01": "Infinity", - "2017-01-01": 287650, - "2016-01-01": 285350, - "2015-01-01": 284050, - "2014-01-01": 279650, - "2013-01-01": 275000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.limitation.applicable_amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.limitation.applicable_amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 487400, - "2034-01-01": 477900, - "2033-01-01": 468600, - "2032-01-01": 459500, - "2031-01-01": 450600, - "2030-01-01": 441850, - "2029-01-01": 433300, - "2028-01-01": 424900, - "2027-01-01": 416450, - "2026-01-01": 407850, - "2018-01-01": "Infinity", - "2017-01-01": 313800, - "2016-01-01": 311300, - "2015-01-01": 309900, - "2014-01-01": 305050, - "2013-01-01": 300000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.limitation.agi_rate": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.limitation.agi_rate", - "description": "The US limits itemized deductions to this fraction of the excess of adjusted gross income over the applicable amount.", - "label": "The US itemized deductions limitation fraction", - "unit": "/1", - "period": "year", - "values": { - "2026-01-01": 0.03, - "2018-01-01": "Infinity", - "2017-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.limitation.itemized_deduction_rate": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.limitation.itemized_deduction_rate", - "description": "The US limits itemized deductions to this fraction of the amount of the itemized deductions otherwise allowable for such taxable year.", - "label": "The US itemized deductions limitation rate", - "unit": "/1", - "period": "year", - "values": { - "2026-01-01": 0.8, - "2018-01-01": "Infinity", - "2017-01-01": 0.8, - "2015-01-01": 0.8 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.interest": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.interest", - "description": null, - "label": "interest", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.interest.mortgage": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.interest.mortgage", - "description": null, - "label": "mortgage", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.interest.mortgage.cap": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.interest.mortgage.cap", - "description": "The IRS allows an itemized deduction for interest paid on mortgages up to this amount, based on filing status.", - "label": "IRS home mortgage value cap", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.interest.mortgage.cap.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.interest.mortgage.cap.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2018-01-01": 750000, - "2017-01-01": 1000000, - "2015-01-01": 1000000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.interest.mortgage.cap.JOINT": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.interest.mortgage.cap.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2018-01-01": 750000, - "2017-01-01": 1000000, - "2015-01-01": 1000000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.interest.mortgage.cap.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.interest.mortgage.cap.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2018-01-01": 375000, - "2017-01-01": 500000, - "2015-01-01": 500000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.interest.mortgage.cap.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.interest.mortgage.cap.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2018-01-01": 750000, - "2017-01-01": 1000000, - "2015-01-01": 1000000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.interest.mortgage.cap.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.interest.mortgage.cap.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2018-01-01": 750000, - "2017-01-01": 1000000, - "2015-01-01": 1000000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.misc": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.misc", - "description": null, - "label": "misc", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.misc.sources": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.misc.sources", - "description": "The US deducts the following expenses under the miscellaneous deduction.", - "label": "Miscellaneous deduction sources", - "unit": "list", - "period": "year", - "values": { - "2013-01-01": ["unreimbursed_business_employee_expenses", "tax_preparation_fees"] - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.misc.floor": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.misc.floor", - "description": "The US deducts miscellaneous expenses over this percentage of adjusted gross income from taxable income.", - "label": "Miscellaneous expense deduction floor", - "unit": "/1", - "period": "year", - "values": { - "2013-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.misc.applies": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.misc.applies", - "description": "The miscellaneous itemized deduction applies if this is true.", - "label": "Miscellaneous expense deduction applies", - "unit": "bool", - "period": "year", - "values": { - "2018-01-01": false, - "2013-01-01": true - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.charity": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.charity", - "description": null, - "label": "charity", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.charity.non_itemizers_amount": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.charity.non_itemizers_amount", - "description": "IRS allows for the following charitable deduction amount for non-itemizers, based on filing status.", - "label": "Charitable deduction amount for non-itemizers", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.charity.non_itemizers_amount.JOINT": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.charity.non_itemizers_amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2026-01-01": 2000, - "2022-01-01": 0, - "2021-01-01": 600, - "2020-01-01": 300, - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.charity.non_itemizers_amount.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.charity.non_itemizers_amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2026-01-01": 1000, - "2022-01-01": 0, - "2021-01-01": 300, - "2020-01-01": 150, - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.charity.non_itemizers_amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.charity.non_itemizers_amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2026-01-01": 1000, - "2022-01-01": 0, - "2021-01-01": 300, - "2020-01-01": 150, - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.charity.non_itemizers_amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.charity.non_itemizers_amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2026-01-01": 1000, - "2022-01-01": 0, - "2021-01-01": 300, - "2020-01-01": 150, - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.charity.non_itemizers_amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.charity.non_itemizers_amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2026-01-01": 1000, - "2022-01-01": 0, - "2021-01-01": 300, - "2020-01-01": 150, - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.charity.floor": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.charity.floor", - "description": null, - "label": "floor", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.charity.floor.amount": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.charity.floor.amount", - "description": "The IRS floors the charitable deduction at this percentage of adjusted gross income.", - "label": "Charitable donation floor amount", - "unit": "bool", - "period": "year", - "values": { - "2026-01-01": 0.005, - "2015-01-01": 0.005 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.charity.floor.applies": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.charity.floor.applies", - "description": "The IRS floors the charitable deduction, if this is true.", - "label": "Charitable donation floor applies", - "unit": "bool", - "period": "year", - "values": { - "2026-01-01": true, - "2013-01-01": false - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.charity.ceiling": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.charity.ceiling", - "description": null, - "label": "ceiling", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.charity.ceiling.non_cash": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.charity.ceiling.non_cash", - "description": "Ceiling (as a fraction of AGI) for noncash charitable contribution deductions.", - "label": "Non-cash charitable deduction limit", - "unit": "/1", - "period": "year", - "values": { - "2026-01-01": 0.5, - "2013-01-01": 0.3 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.charity.ceiling.all": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.charity.ceiling.all", - "description": "Ceiling (as a decimal fraction of AGI) for all charitable contribution deductions.", - "label": "Charitable deduction limit", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.6, - "2020-01-01": 1, - "2018-01-01": 0.6, - "2013-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate", - "description": null, - "label": "salt and real estate", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.sources": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.sources", - "description": "The State and local taxes and real estate tax deduction is limited to the following sources.", - "label": "SALT and real estate tax deduction sources", - "unit": "list", - "period": "year", - "values": { - "2013-01-01": ["state_and_local_sales_or_income_tax", "real_estate_taxes"] - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.cap": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.cap", - "description": "Maximum amount of state and local income, sales and real estate tax deductions allowed.", - "label": "SALT cap", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.cap.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.cap.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2030-01-01": 10000, - "2029-01-01": 41624, - "2028-01-01": 41212, - "2027-01-01": 40804, - "2026-01-01": 40400, - "2025-01-01": 40000, - "2019-01-01": 10000, - "2018-01-01": 10000, - "2017-01-01": "Infinity", - "2016-01-01": "Infinity", - "2015-01-01": "Infinity", - "2014-01-01": "Infinity", - "2013-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.cap.JOINT": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.cap.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2030-01-01": 10000, - "2029-01-01": 41624, - "2028-01-01": 41212, - "2027-01-01": 40804, - "2026-01-01": 40400, - "2025-01-01": 40000, - "2019-01-01": 10000, - "2018-01-01": 10000, - "2017-01-01": "Infinity", - "2016-01-01": "Infinity", - "2015-01-01": "Infinity", - "2014-01-01": "Infinity", - "2013-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.cap.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.cap.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2030-01-01": 5000, - "2029-01-01": 20812, - "2028-01-01": 20606, - "2027-01-01": 20402, - "2026-01-01": 20200, - "2025-01-01": 20000, - "2019-01-01": 5000, - "2018-01-01": 5000, - "2017-01-01": "Infinity", - "2016-01-01": "Infinity", - "2015-01-01": "Infinity", - "2014-01-01": "Infinity", - "2013-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.cap.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.cap.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2030-01-01": 10000, - "2029-01-01": 41624, - "2028-01-01": 41212, - "2027-01-01": 40804, - "2026-01-01": 40400, - "2025-01-01": 40000, - "2019-01-01": 10000, - "2018-01-01": 10000, - "2017-01-01": "Infinity", - "2016-01-01": "Infinity", - "2015-01-01": "Infinity", - "2014-01-01": "Infinity", - "2013-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.cap.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.cap.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2030-01-01": 10000, - "2029-01-01": 41624, - "2028-01-01": 41212, - "2027-01-01": 40804, - "2026-01-01": 40400, - "2025-01-01": 40000, - "2019-01-01": 10000, - "2018-01-01": 10000, - "2017-01-01": "Infinity", - "2016-01-01": "Infinity", - "2015-01-01": "Infinity", - "2014-01-01": "Infinity", - "2013-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.phase_out": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.phase_out", - "description": null, - "label": "phase out", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.phase_out.floor": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.phase_out.floor", - "description": null, - "label": "floor", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.phase_out.floor.amount": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.phase_out.floor.amount", - "description": "The IRS floors the SALT deduction at this amount, based on filing status.", - "label": "SALT deduction floor amount", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.phase_out.floor.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.phase_out.floor.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2025-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.phase_out.floor.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.phase_out.floor.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2025-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.phase_out.floor.amount.JOINT": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.phase_out.floor.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2025-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.phase_out.floor.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.phase_out.floor.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2025-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.phase_out.floor.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.phase_out.floor.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2025-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.phase_out.floor.applies": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.phase_out.floor.applies", - "description": "The IRS floors the SALT deduction, if this is true.", - "label": "SALT deduction floor applies", - "unit": "bool", - "period": "year", - "values": { - "2030-01-01": false, - "2025-01-01": true, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.phase_out.in_effect": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.phase_out.in_effect", - "description": "The SALT deduction is phased out based on adjusted gross income, if this is true.", - "label": "SALT deduction phase out in effect", - "unit": "bool", - "period": "year", - "values": { - "2030-01-01": false, - "2025-01-01": true, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.phase_out.rate": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.phase_out.rate", - "description": "The IRS phases out the SALT deduction at this rate of adjusted gross income over the phase-out threshold.", - "label": "SALT deduction phase out rate", - "unit": "/1", - "period": "year", - "values": { - "2025-01-01": 0.3, - "2015-01-01": 0.3 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.phase_out.threshold": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.phase_out.threshold", - "description": "The IRS phases out the SALT deduction out for filers with adjusted gross income above this amount, based on filing status.", - "label": "SALT deduction phase out threshold", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.phase_out.threshold.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.phase_out.threshold.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2029-01-01": 520302, - "2028-01-01": 515151, - "2027-01-01": 510050, - "2026-01-01": 505000, - "2025-01-01": 500000, - "2015-01-01": 500000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.phase_out.threshold.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.phase_out.threshold.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2029-01-01": 520302, - "2028-01-01": 515151, - "2027-01-01": 510050, - "2026-01-01": 505000, - "2025-01-01": 500000, - "2015-01-01": 500000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.phase_out.threshold.JOINT": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.phase_out.threshold.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2029-01-01": 520302, - "2028-01-01": 515151, - "2027-01-01": 510050, - "2026-01-01": 505000, - "2025-01-01": 500000, - "2015-01-01": 500000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.phase_out.threshold.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.phase_out.threshold.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2029-01-01": 520302, - "2028-01-01": 515151, - "2027-01-01": 510050, - "2026-01-01": 505000, - "2025-01-01": 500000, - "2015-01-01": 500000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.phase_out.threshold.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.phase_out.threshold.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2029-01-01": 260151, - "2028-01-01": 257575, - "2027-01-01": 255025, - "2026-01-01": 252500, - "2025-01-01": 250000, - "2015-01-01": 250000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table", - "description": null, - "label": "state sales tax table", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_sources": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_sources", - "description": "The IRS counts these sources as income for the optional state sales tax tables.", - "label": "State sales tax table income sources", - "unit": "list", - "period": "year", - "values": { - "2023-01-01": [ - "adjusted_gross_income", - "tax_exempt_interest_income", - "veterans_benefits", - "workers_compensation", - "tax_exempt_social_security", - "tax_exempt_pension_income", - "tax_exempt_retirement_distributions", - "tanf", - "ssi" - ], - "2015-01-01": [ - "adjusted_gross_income", - "tax_exempt_interest_income", - "veterans_benefits", - "workers_compensation", - "tax_exempt_social_security", - "tax_exempt_pension_income", - "tax_exempt_retirement_distributions", - "tanf", - "ssi" - ] - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket", - "description": "Montana taxes the net long-term capital gains by the following marginal rates for head of household filers, according to the taxable income.", - "label": "Montana capital gains tax rates for head of household filers" - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[0]": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[0]", - "description": null, - "label": "bracket 1" - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[0].threshold": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[0].amount": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[1]": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[1]", - "description": null, - "label": "bracket 2" - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[1].threshold": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[1].amount": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[2]": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[2]", - "description": null, - "label": "bracket 3" - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[2].threshold": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[2].amount": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[2].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 3, - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[3]": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[3]", - "description": null, - "label": "bracket 4" - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[3].threshold": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 40000, - "2015-01-01": 40000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[3].amount": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[3].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 4, - "2015-01-01": 4 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[4]": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[4]", - "description": null, - "label": "bracket 5" - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[4].threshold": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[4].amount": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[4].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 5, - "2015-01-01": 5 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[5]": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[5]", - "description": null, - "label": "bracket 6" - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[5].threshold": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 60000, - "2015-01-01": 60000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[5].amount": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[5].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 6, - "2015-01-01": 6 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[6]": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[6]", - "description": null, - "label": "bracket 7" - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[6].threshold": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 70000, - "2015-01-01": 70000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[6].amount": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[6].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 7, - "2015-01-01": 7 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[7]": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[7]", - "description": null, - "label": "bracket 8" - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[7].threshold": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 80000, - "2015-01-01": 80000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[7].amount": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[7].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 8, - "2015-01-01": 8 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[8]": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[8]", - "description": null, - "label": "bracket 9" - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[8].threshold": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 90000, - "2015-01-01": 90000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[8].amount": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[8].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 9, - "2015-01-01": 9 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[9]": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[9]", - "description": null, - "label": "bracket 10" - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[9].threshold": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[9].amount": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[9].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 10, - "2015-01-01": 10 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[10]": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[10]", - "description": null, - "label": "bracket 11" - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[10].threshold": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[10].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 120000, - "2015-01-01": 120000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[10].amount": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[10].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 11, - "2015-01-01": 11 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[11]": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[11]", - "description": null, - "label": "bracket 12" - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[11].threshold": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[11].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 140000, - "2015-01-01": 140000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[11].amount": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[11].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 12, - "2015-01-01": 12 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[12]": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[12]", - "description": null, - "label": "bracket 13" - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[12].threshold": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[12].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 160000, - "2015-01-01": 160000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[12].amount": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[12].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 13, - "2015-01-01": 13 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[13]": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[13]", - "description": null, - "label": "bracket 14" - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[13].threshold": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[13].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 180000, - "2015-01-01": 180000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[13].amount": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[13].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[14]": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[14]", - "description": null, - "label": "bracket 15" - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[14].threshold": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[14].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 200000, - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[14].amount": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[14].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 15, - "2015-01-01": 15 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[15]": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[15]", - "description": null, - "label": "bracket 16" - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[15].threshold": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[15].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 225000, - "2015-01-01": 225000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[15].amount": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[15].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 16, - "2015-01-01": 16 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[16]": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[16]", - "description": null, - "label": "bracket 17" - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[16].threshold": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[16].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 250000, - "2015-01-01": 250000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[16].amount": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[16].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 17, - "2015-01-01": 17 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[17]": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[17]", - "description": null, - "label": "bracket 18" - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[17].threshold": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[17].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 275000, - "2015-01-01": 275000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[17].amount": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[17].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 18, - "2015-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[18]": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[18]", - "description": null, - "label": "bracket 19" - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[18].threshold": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[18].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 300000, - "2015-01-01": 300000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[18].amount": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.income_bracket[18].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 19, - "2015-01-01": 19 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax", - "description": "The IRS allows filers who do not log their state sales tax to enter these values instead for the state and local tax deduction.", - "label": "Optional state sales tax table", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL", - "description": null, - "label": "AL", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 480.51129237756, - "2034-01-01": 471.206627141465, - "2033-01-01": 462.016834315693, - "2032-01-01": 453.056786310566, - "2031-01-01": 444.326483126082, - "2030-01-01": 435.711052351921, - "2029-01-01": 427.210493988081, - "2028-01-01": 418.824808034564, - "2027-01-01": 410.324249670725, - "2026-01-01": 400.456709624053, - "2025-01-01": 394.42724826026, - "2024-01-01": 385.867339151088, - "2023-01-01": 365, - "2015-01-01": 365 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 645.069954150697, - "2034-01-01": 632.578759724159, - "2033-01-01": 620.241777574492, - "2032-01-01": 608.213219978567, - "2031-01-01": 596.493086936384, - "2030-01-01": 584.927166171072, - "2029-01-01": 573.51545768263, - "2028-01-01": 562.257961471059, - "2027-01-01": 550.846252982617, - "2026-01-01": 537.599418399413, - "2025-01-01": 529.505073006924, - "2024-01-01": 518.013688175433, - "2023-01-01": 490, - "2015-01-01": 490 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 725.374581095988, - "2034-01-01": 711.328360424514, - "2033-01-01": 697.455549884786, - "2032-01-01": 683.929559608552, - "2031-01-01": 670.750389595812, - "2030-01-01": 657.744629714817, - "2029-01-01": 644.91227996557, - "2028-01-01": 632.253340348068, - "2027-01-01": 619.420990598821, - "2026-01-01": 604.525060281789, - "2025-01-01": 595.423051483297, - "2024-01-01": 582.501106499313, - "2023-01-01": 551, - "2015-01-01": 551 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 792.514515099427, - "2034-01-01": 777.168190518253, - "2033-01-01": 762.011326734376, - "2032-01-01": 747.233384545097, - "2031-01-01": 732.834363950415, - "2030-01-01": 718.624804153031, - "2029-01-01": 704.604705152945, - "2028-01-01": 690.774066950158, - "2027-01-01": 676.753967950073, - "2026-01-01": 660.479285462136, - "2025-01-01": 650.534803979936, - "2024-01-01": 636.416816901246, - "2023-01-01": 602, - "2015-01-01": 602 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 850.439164043572, - "2034-01-01": 833.971181187361, - "2033-01-01": 817.706506761474, - "2032-01-01": 801.848449196234, - "2031-01-01": 786.397008491641, - "2030-01-01": 771.148876217372, - "2029-01-01": 756.104052373426, - "2028-01-01": 741.262536959804, - "2027-01-01": 726.217713115859, - "2026-01-01": 708.753518951063, - "2025-01-01": 698.082198290762, - "2024-01-01": 682.932331757815, - "2023-01-01": 646, - "2015-01-01": 646 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 901.78146651679, - "2034-01-01": 884.319286553161, - "2033-01-01": 867.072689058219, - "2032-01-01": 850.25725650065, - "2031-01-01": 833.872988880455, - "2030-01-01": 817.704303728947, - "2029-01-01": 801.751201046125, - "2028-01-01": 786.013680831991, - "2027-01-01": 770.060578149169, - "2026-01-01": 751.542044088975, - "2025-01-01": 740.226479611721, - "2024-01-01": 724.161992653411, - "2023-01-01": 685, - "2015-01-01": 685 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 949.174361107454, - "2034-01-01": 930.794460736977, - "2033-01-01": 912.641472716753, - "2032-01-01": 894.942309397035, - "2031-01-01": 877.696970777823, - "2030-01-01": 860.678544508863, - "2029-01-01": 843.887030590155, - "2028-01-01": 827.322429021701, - "2027-01-01": 810.530915102994, - "2026-01-01": 791.039144216279, - "2025-01-01": 779.12889313876, - "2024-01-01": 762.220141172422, - "2023-01-01": 721, - "2015-01-01": 721 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 991.301378521377, - "2034-01-01": 972.105726678147, - "2033-01-01": 953.147058191006, - "2032-01-01": 934.662356416043, - "2031-01-01": 916.65162135326, - "2030-01-01": 898.877869646565, - "2029-01-01": 881.34110129596, - "2028-01-01": 864.041316301444, - "2027-01-01": 846.504547950839, - "2026-01-01": 826.147677662771, - "2025-01-01": 813.708816273906, - "2024-01-01": 796.049606522655, - "2023-01-01": 753, - "2015-01-01": 753 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1030.79545734693, - "2034-01-01": 1010.83503849799, - "2033-01-01": 991.121044573117, - "2032-01-01": 971.899900496364, - "2031-01-01": 953.171606267732, - "2030-01-01": 934.689736963162, - "2029-01-01": 916.454292582651, - "2028-01-01": 898.465273126203, - "2027-01-01": 880.229828745693, - "2026-01-01": 859.061927768858, - "2025-01-01": 846.127494213106, - "2024-01-01": 827.764730288497, - "2023-01-01": 783, - "2015-01-01": 783 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1083.45422911433, - "2034-01-01": 1062.47412092446, - "2033-01-01": 1041.75302641593, - "2032-01-01": 1021.54995927012, - "2031-01-01": 1001.86491948703, - "2030-01-01": 982.43889338529, - "2029-01-01": 963.271880964907, - "2028-01-01": 944.363882225881, - "2027-01-01": 925.196869805498, - "2026-01-01": 902.947594576973, - "2025-01-01": 889.352398132038, - "2024-01-01": 870.051561976288, - "2023-01-01": 823, - "2015-01-01": 823 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1150.59416311777, - "2034-01-01": 1128.31395101819, - "2033-01-01": 1106.30880326552, - "2032-01-01": 1084.85378420667, - "2031-01-01": 1063.94889384163, - "2030-01-01": 1043.3190678235, - "2029-01-01": 1022.96430615228, - "2028-01-01": 1002.88460882797, - "2027-01-01": 982.52984715675, - "2026-01-01": 958.90181975732, - "2025-01-01": 944.464150628677, - "2024-01-01": 923.967272378221, - "2023-01-01": 874, - "2015-01-01": 874 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1211.15175065029, - "2034-01-01": 1187.69889580863, - "2033-01-01": 1164.53558238476, - "2032-01-01": 1141.95135179649, - "2031-01-01": 1119.94620404382, - "2030-01-01": 1098.23059770895, - "2029-01-01": 1076.80453279188, - "2028-01-01": 1055.6680092926, - "2027-01-01": 1034.24194437553, - "2026-01-01": 1009.37033658665, - "2025-01-01": 994.17279013545, - "2024-01-01": 972.59712881918, - "2023-01-01": 920, - "2015-01-01": 920 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1267.75993030025, - "2034-01-01": 1243.21090941707, - "2033-01-01": 1218.96496286579, - "2032-01-01": 1195.32516497829, - "2031-01-01": 1172.29151575457, - "2030-01-01": 1149.56094086274, - "2029-01-01": 1127.1334403028, - "2028-01-01": 1105.00901407475, - "2027-01-01": 1082.58151351482, - "2026-01-01": 1056.54742840538, - "2025-01-01": 1040.6395618483, - "2024-01-01": 1018.05547288355, - "2023-01-01": 963, - "2015-01-01": 963 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1319.10223277347, - "2034-01-01": 1293.55901478287, - "2033-01-01": 1268.33114516253, - "2032-01-01": 1243.7339722827, - "2031-01-01": 1219.76749614338, - "2030-01-01": 1196.11636837431, - "2029-01-01": 1172.7805889755, - "2028-01-01": 1149.76015794694, - "2027-01-01": 1126.42437854813, - "2026-01-01": 1099.33595354329, - "2025-01-01": 1082.78384316926, - "2024-01-01": 1059.28513377915, - "2023-01-01": 1002, - "2015-01-01": 1002 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1373.07747383505, - "2034-01-01": 1346.48907427, - "2033-01-01": 1320.22892655142, - "2032-01-01": 1294.62528252581, - "2031-01-01": 1269.67814219316, - "2030-01-01": 1245.059253707, - "2029-01-01": 1220.76861706731, - "2028-01-01": 1196.80623227411, - "2027-01-01": 1172.51559563443, - "2026-01-01": 1144.31876202161, - "2025-01-01": 1127.08936968617, - "2024-01-01": 1102.62913625914, - "2023-01-01": 1043, - "2015-01-01": 1043 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1429.68565348501, - "2034-01-01": 1402.00108787844, - "2033-01-01": 1374.65830703245, - "2032-01-01": 1347.9990957076, - "2031-01-01": 1322.0234539039, - "2030-01-01": 1296.38959686078, - "2029-01-01": 1271.09752457824, - "2028-01-01": 1246.14723705627, - "2027-01-01": 1220.85516477372, - "2026-01-01": 1191.49585384033, - "2025-01-01": 1173.55614139902, - "2024-01-01": 1148.08748032351, - "2023-01-01": 1086, - "2015-01-01": 1086 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1483.6608945466, - "2034-01-01": 1454.93114736557, - "2033-01-01": 1426.55608842133, - "2032-01-01": 1398.89040595071, - "2031-01-01": 1371.93409995368, - "2030-01-01": 1345.33248219347, - "2029-01-01": 1319.08555267005, - "2028-01-01": 1293.19331138344, - "2027-01-01": 1266.94638186002, - "2026-01-01": 1236.47866231865, - "2025-01-01": 1217.86166791593, - "2024-01-01": 1191.43148280349, - "2023-01-01": 1127, - "2015-01-01": 1127 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1533.68672772564, - "2034-01-01": 1503.9882756707, - "2033-01-01": 1474.65647117201, - "2032-01-01": 1446.05796178578, - "2031-01-01": 1418.19274751202, - "2030-01-01": 1390.69418079449, - "2029-01-01": 1363.56226163319, - "2028-01-01": 1336.79699002813, - "2027-01-01": 1309.66507086684, - "2026-01-01": 1278.17004578636, - "2025-01-01": 1258.92532663891, - "2024-01-01": 1231.6039729069, - "2023-01-01": 1165, - "2015-01-01": 1165 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1821.99350315217, - "2034-01-01": 1786.71225195558, - "2033-01-01": 1751.86657176142, - "2032-01-01": 1717.89203357212, - "2031-01-01": 1684.78863738766, - "2030-01-01": 1652.12081220564, - "2029-01-01": 1619.88855802604, - "2028-01-01": 1588.09187484887, - "2027-01-01": 1555.85962066927, - "2026-01-01": 1518.44407156079, - "2025-01-01": 1495.58167559507, - "2024-01-01": 1463.12437639755, - "2023-01-01": 1384, - "2015-01-01": 1384 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 573.980612264702, - "2034-01-01": 562.865998448435, - "2033-01-01": 551.888602086691, - "2032-01-01": 541.185640633991, - "2031-01-01": 530.757114090334, - "2030-01-01": 520.465805001199, - "2029-01-01": 510.311713366585, - "2028-01-01": 500.294839186493, - "2027-01-01": 490.14074755188, - "2026-01-01": 478.353768208457, - "2025-01-01": 471.151452716365, - "2024-01-01": 460.926465396916, - "2023-01-01": 436, - "2015-01-01": 436 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 767.501598509911, - "2034-01-01": 752.639626365683, - "2033-01-01": 737.961135359039, - "2032-01-01": 723.649606627561, - "2031-01-01": 709.705040171249, - "2030-01-01": 695.94395485252, - "2029-01-01": 682.366350671374, - "2028-01-01": 668.972227627811, - "2027-01-01": 655.394623446665, - "2026-01-01": 639.633593728281, - "2025-01-01": 630.002974618443, - "2024-01-01": 616.330571849545, - "2023-01-01": 583, - "2015-01-01": 583 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 860.970918397052, - "2034-01-01": 844.298997672653, - "2033-01-01": 827.832903130037, - "2032-01-01": 811.778460950986, - "2031-01-01": 796.135671135501, - "2030-01-01": 780.698707501798, - "2029-01-01": 765.467570049877, - "2028-01-01": 750.44225877974, - "2027-01-01": 735.21112132782, - "2026-01-01": 717.530652312686, - "2025-01-01": 706.727179074548, - "2024-01-01": 691.389698095373, - "2023-01-01": 654, - "2015-01-01": 654 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 939.959076048158, - "2034-01-01": 921.757621312346, - "2033-01-01": 903.78087589426, - "2032-01-01": 886.253549111627, - "2031-01-01": 869.175640964446, - "2030-01-01": 852.32244213499, - "2029-01-01": 835.693952623261, - "2028-01-01": 819.290172429258, - "2027-01-01": 802.661682917528, - "2026-01-01": 783.359152524859, - "2025-01-01": 771.564534952947, - "2024-01-01": 754.819945627059, - "2023-01-01": 714, - "2015-01-01": 714 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1007.0990100516, - "2034-01-01": 987.597451406085, - "2033-01-01": 968.33665274385, - "2032-01-01": 949.557374048172, - "2031-01-01": 931.259615319049, - "2030-01-01": 913.202616573204, - "2029-01-01": 895.386377810636, - "2028-01-01": 877.810899031347, - "2027-01-01": 859.99466026878, - "2026-01-01": 839.313377705206, - "2025-01-01": 826.676287449586, - "2024-01-01": 808.735656028992, - "2023-01-01": 765, - "2015-01-01": 765 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1067.65659758411, - "2034-01-01": 1046.98239619652, - "2033-01-01": 1026.56343186309, - "2032-01-01": 1006.654941638, - "2031-01-01": 987.25692552124, - "2030-01-01": 968.114146458651, - "2029-01-01": 949.22660445023, - "2028-01-01": 930.594299495977, - "2027-01-01": 911.706757487557, - "2026-01-01": 889.781894534539, - "2025-01-01": 876.384926956359, - "2024-01-01": 857.365512469951, - "2023-01-01": 811, - "2015-01-01": 811 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1121.6318386457, - "2034-01-01": 1099.91245568364, - "2033-01-01": 1078.46121325197, - "2032-01-01": 1057.5462518811, - "2031-01-01": 1037.16757157102, - "2030-01-01": 1017.05703179133, - "2029-01-01": 997.214632542042, - "2028-01-01": 977.640373823148, - "2027-01-01": 957.797974573857, - "2026-01-01": 934.764703012857, - "2025-01-01": 920.690453473265, - "2024-01-01": 900.709514949936, - "2023-01-01": 852, - "2015-01-01": 852 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1171.65767182473, - "2034-01-01": 1148.96958398878, - "2033-01-01": 1126.56159600265, - "2032-01-01": 1104.71380771617, - "2031-01-01": 1083.42621912935, - "2030-01-01": 1062.41873039235, - "2029-01-01": 1041.69134150518, - "2028-01-01": 1021.24405246784, - "2027-01-01": 1000.51666358067, - "2026-01-01": 976.456086480566, - "2025-01-01": 961.75411219625, - "2024-01-01": 940.882005053337, - "2023-01-01": 890, - "2015-01-01": 890 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1217.73409712121, - "2034-01-01": 1194.15378111193, - "2033-01-01": 1170.86458011511, - "2032-01-01": 1148.15760914321, - "2031-01-01": 1126.03286819624, - "2030-01-01": 1104.19924226172, - "2029-01-01": 1082.65673133966, - "2028-01-01": 1061.40533543006, - "2027-01-01": 1039.862824508, - "2026-01-01": 1014.85604493767, - "2025-01-01": 999.575903125317, - "2024-01-01": 977.882982780153, - "2023-01-01": 925, - "2015-01-01": 925 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1278.29168465373, - "2034-01-01": 1253.53872590236, - "2033-01-01": 1229.09135923435, - "2032-01-01": 1205.25517673304, - "2031-01-01": 1182.03017839843, - "2030-01-01": 1159.11077214716, - "2029-01-01": 1136.49695797925, - "2028-01-01": 1114.18873589469, - "2027-01-01": 1091.57492172678, - "2026-01-01": 1065.324561767, - "2025-01-01": 1049.28454263209, - "2024-01-01": 1026.51283922111, - "2023-01-01": 971, - "2015-01-01": 971 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1355.96337301065, - "2034-01-01": 1329.7063724814, - "2033-01-01": 1303.7735324525, - "2032-01-01": 1278.48901342434, - "2031-01-01": 1253.85281539689, - "2030-01-01": 1229.5407778698, - "2029-01-01": 1205.55290084308, - "2028-01-01": 1181.88918431672, - "2027-01-01": 1157.90130728999, - "2026-01-01": 1130.05592030897, - "2025-01-01": 1113.04127591251, - "2024-01-01": 1088.8859159606, - "2023-01-01": 1030, - "2015-01-01": 1030 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1427.05271489664, - "2034-01-01": 1399.41913375712, - "2033-01-01": 1372.12670794031, - "2032-01-01": 1345.51659276891, - "2031-01-01": 1319.58878824294, - "2030-01-01": 1294.00213903968, - "2029-01-01": 1268.75664515912, - "2028-01-01": 1243.85230660128, - "2027-01-01": 1218.60681272073, - "2026-01-01": 1189.30157049993, - "2025-01-01": 1171.39489620307, - "2024-01-01": 1145.97313873912, - "2023-01-01": 1084, - "2015-01-01": 1084 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1492.8761796059, - "2034-01-01": 1463.9679867902, - "2033-01-01": 1435.41668524383, - "2032-01-01": 1407.57916623611, - "2031-01-01": 1380.45542976706, - "2030-01-01": 1353.68858456734, - "2029-01-01": 1327.27863063694, - "2028-01-01": 1301.22556797588, - "2027-01-01": 1274.81561404549, - "2026-01-01": 1244.15865401007, - "2025-01-01": 1225.42602610174, - "2024-01-01": 1198.83167834886, - "2023-01-01": 1134, - "2015-01-01": 1134 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1552.11729784423, - "2034-01-01": 1522.06195451997, - "2033-01-01": 1492.37766481699, - "2032-01-01": 1463.43548235659, - "2031-01-01": 1435.23540713877, - "2030-01-01": 1407.40638554223, - "2029-01-01": 1379.94841756698, - "2028-01-01": 1352.86150321302, - "2027-01-01": 1325.40353523777, - "2026-01-01": 1293.5300291692, - "2025-01-01": 1274.05404301054, - "2024-01-01": 1246.40436399762, - "2023-01-01": 1179, - "2015-01-01": 1179 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1615.30782396511, - "2034-01-01": 1584.02885343172, - "2033-01-01": 1553.13604302837, - "2032-01-01": 1523.01555288511, - "2031-01-01": 1493.66738300193, - "2030-01-01": 1464.70537324879, - "2029-01-01": 1436.12952362569, - "2028-01-01": 1407.93983413263, - "2027-01-01": 1379.36398450953, - "2026-01-01": 1346.19282933894, - "2025-01-01": 1325.92392771326, - "2024-01-01": 1297.14856202297, - "2023-01-01": 1227, - "2015-01-01": 1227 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1681.13128867437, - "2034-01-01": 1648.5777064648, - "2033-01-01": 1616.42602033189, - "2032-01-01": 1585.07812635231, - "2031-01-01": 1554.53402452605, - "2030-01-01": 1524.39181877645, - "2029-01-01": 1494.65150910351, - "2028-01-01": 1465.31309550723, - "2027-01-01": 1435.57278583429, - "2026-01-01": 1401.04991284908, - "2025-01-01": 1379.95505761192, - "2024-01-01": 1350.00710163271, - "2023-01-01": 1277, - "2015-01-01": 1277 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1741.68887620688, - "2034-01-01": 1707.96265125523, - "2033-01-01": 1674.65279945113, - "2032-01-01": 1642.17569394213, - "2031-01-01": 1610.53133472824, - "2030-01-01": 1579.30334866189, - "2029-01-01": 1548.4917357431, - "2028-01-01": 1518.09649597186, - "2027-01-01": 1487.28488305307, - "2026-01-01": 1451.51842967842, - "2025-01-01": 1429.6636971187, - "2024-01-01": 1398.63695807367, - "2023-01-01": 1323, - "2015-01-01": 1323 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1799.61352515103, - "2034-01-01": 1764.76564192434, - "2033-01-01": 1730.34797947823, - "2032-01-01": 1696.79075859327, - "2031-01-01": 1664.09397926946, - "2030-01-01": 1631.82742072623, - "2029-01-01": 1599.99108296358, - "2028-01-01": 1568.58496598151, - "2027-01-01": 1536.74862821885, - "2026-01-01": 1499.79266316734, - "2025-01-01": 1477.21109142952, - "2024-01-01": 1445.15247293024, - "2023-01-01": 1367, - "2015-01-01": 1367 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2132.68025657985, - "2034-01-01": 2091.38283827171, - "2033-01-01": 2050.59526463404, - "2032-01-01": 2010.8273803373, - "2031-01-01": 1972.07918538152, - "2030-01-01": 1933.8408350962, - "2029-01-01": 1896.11232948135, - "2028-01-01": 1858.89366853697, - "2027-01-01": 1821.16516292212, - "2026-01-01": 1777.36950572867, - "2025-01-01": 1750.60860871677, - "2024-01-01": 1712.61668335551, - "2023-01-01": 1620, - "2015-01-01": 1620 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 638.487607679771, - "2034-01-01": 626.123874420851, - "2033-01-01": 613.91277984414, - "2032-01-01": 602.006962631847, - "2031-01-01": 590.406422783972, - "2030-01-01": 578.958521618306, - "2029-01-01": 567.663259134848, - "2028-01-01": 556.520635333599, - "2027-01-01": 545.225372850142, - "2026-01-01": 532.113710048399, - "2025-01-01": 524.101960017058, - "2024-01-01": 512.727834214459, - "2023-01-01": 485, - "2015-01-01": 485 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 850.439164043572, - "2034-01-01": 833.971181187361, - "2033-01-01": 817.706506761474, - "2032-01-01": 801.848449196234, - "2031-01-01": 786.397008491641, - "2030-01-01": 771.148876217372, - "2029-01-01": 756.104052373426, - "2028-01-01": 741.262536959804, - "2027-01-01": 726.217713115859, - "2026-01-01": 708.753518951063, - "2025-01-01": 698.082198290762, - "2024-01-01": 682.932331757815, - "2023-01-01": 646, - "2015-01-01": 646 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 954.440238284194, - "2034-01-01": 935.958368979623, - "2033-01-01": 917.704670901035, - "2032-01-01": 899.907315274411, - "2031-01-01": 882.566302099752, - "2030-01-01": 865.453460151076, - "2029-01-01": 848.568789428381, - "2028-01-01": 831.912289931669, - "2027-01-01": 815.027619208975, - "2026-01-01": 795.427710897091, - "2025-01-01": 783.451383530653, - "2024-01-01": 766.448824341201, - "2023-01-01": 725, - "2015-01-01": 725 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1040.01074240623, - "2034-01-01": 1019.87187792262, - "2033-01-01": 999.98164139561, - "2032-01-01": 980.588660781772, - "2031-01-01": 961.692936081109, - "2030-01-01": 943.045839337034, - "2029-01-01": 924.647370549546, - "2028-01-01": 906.497529718646, - "2027-01-01": 888.099060931159, - "2026-01-01": 866.741919460278, - "2025-01-01": 853.691852398919, - "2024-01-01": 835.164925833861, - "2023-01-01": 790, - "2015-01-01": 790 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1115.04949217478, - "2034-01-01": 1093.45757038033, - "2033-01-01": 1072.13221552162, - "2032-01-01": 1051.33999453438, - "2031-01-01": 1031.08090741861, - "2030-01-01": 1011.08838723857, - "2029-01-01": 991.36243399426, - "2028-01-01": 971.903047685688, - "2027-01-01": 952.177094441382, - "2026-01-01": 929.278994661842, - "2025-01-01": 915.287340483398, - "2024-01-01": 895.423660988962, - "2023-01-01": 847, - "2015-01-01": 847 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1180.87295688403, - "2034-01-01": 1158.00642341341, - "2033-01-01": 1135.42219282514, - "2032-01-01": 1113.40256800158, - "2031-01-01": 1091.94754894273, - "2030-01-01": 1070.77483276623, - "2029-01-01": 1049.88441947208, - "2028-01-01": 1029.27630906029, - "2027-01-01": 1008.38589576614, - "2026-01-01": 984.136078171987, - "2025-01-01": 969.318470382064, - "2024-01-01": 948.2822005987, - "2023-01-01": 897, - "2015-01-01": 897 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1240.11407512236, - "2034-01-01": 1216.10039114318, - "2033-01-01": 1192.38317239831, - "2032-01-01": 1169.25888412206, - "2031-01-01": 1146.72752631444, - "2030-01-01": 1124.49263374112, - "2029-01-01": 1102.55420640212, - "2028-01-01": 1080.91224429742, - "2027-01-01": 1058.97381695842, - "2026-01-01": 1033.50745333112, - "2025-01-01": 1017.94648729086, - "2024-01-01": 995.854886247464, - "2023-01-01": 942, - "2015-01-01": 942 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1294.08931618395, - "2034-01-01": 1269.0304506303, - "2033-01-01": 1244.2809537872, - "2032-01-01": 1220.15019436517, - "2031-01-01": 1196.63817236422, - "2030-01-01": 1173.4355190738, - "2029-01-01": 1150.54223449393, - "2028-01-01": 1127.95831862459, - "2027-01-01": 1105.06503404472, - "2026-01-01": 1078.49026180943, - "2025-01-01": 1062.25201380777, - "2024-01-01": 1039.19888872745, - "2023-01-01": 983, - "2015-01-01": 983 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1345.43161865717, - "2034-01-01": 1319.3785559961, - "2033-01-01": 1293.64713608394, - "2032-01-01": 1268.55900166958, - "2031-01-01": 1244.11415275303, - "2030-01-01": 1219.99094658538, - "2029-01-01": 1196.18938316663, - "2028-01-01": 1172.70946249678, - "2027-01-01": 1148.90789907803, - "2026-01-01": 1121.27878694735, - "2025-01-01": 1104.39629512873, - "2024-01-01": 1080.42854962305, - "2023-01-01": 1022, - "2015-01-01": 1022 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1411.25508336642, - "2034-01-01": 1383.92740902918, - "2033-01-01": 1356.93711338746, - "2032-01-01": 1330.62157513678, - "2031-01-01": 1304.98079427715, - "2030-01-01": 1279.67739211304, - "2029-01-01": 1254.71136864445, - "2028-01-01": 1230.08272387138, - "2027-01-01": 1205.11670040279, - "2026-01-01": 1176.13587045749, - "2025-01-01": 1158.42742502739, - "2024-01-01": 1133.28708923278, - "2023-01-01": 1072, - "2015-01-01": 1072 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1496.82558748845, - "2034-01-01": 1467.84091797218, - "2033-01-01": 1439.21408388204, - "2032-01-01": 1411.30292064415, - "2031-01-01": 1384.10742825851, - "2030-01-01": 1357.269771299, - "2029-01-01": 1330.78994976561, - "2028-01-01": 1304.66796365836, - "2027-01-01": 1278.18814212497, - "2026-01-01": 1247.45007902068, - "2025-01-01": 1228.66789389566, - "2024-01-01": 1202.00319072544, - "2023-01-01": 1137, - "2015-01-01": 1137 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1574.49727584537, - "2034-01-01": 1544.00856455121, - "2033-01-01": 1513.89625710019, - "2032-01-01": 1484.53675733544, - "2031-01-01": 1455.93006525697, - "2030-01-01": 1427.69977702164, - "2029-01-01": 1399.84589262944, - "2028-01-01": 1372.36841208038, - "2027-01-01": 1344.51452768818, - "2026-01-01": 1312.18143756265, - "2025-01-01": 1292.42462717608, - "2024-01-01": 1264.37626746493, - "2023-01-01": 1196, - "2015-01-01": 1196 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1645.58661773137, - "2034-01-01": 1613.72132582694, - "2033-01-01": 1582.24943258799, - "2032-01-01": 1551.56433668002, - "2031-01-01": 1521.66603810302, - "2030-01-01": 1492.16113819151, - "2029-01-01": 1463.04963694548, - "2028-01-01": 1434.33153436495, - "2027-01-01": 1405.22003311892, - "2026-01-01": 1371.4270877536, - "2025-01-01": 1350.77824746664, - "2024-01-01": 1321.46349024345, - "2023-01-01": 1250, - "2015-01-01": 1250 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1711.41008244062, - "2034-01-01": 1678.27017886001, - "2033-01-01": 1645.53940989151, - "2032-01-01": 1613.62691014722, - "2031-01-01": 1582.53267962714, - "2030-01-01": 1551.84758371917, - "2029-01-01": 1521.5716224233, - "2028-01-01": 1491.70479573954, - "2027-01-01": 1461.42883444368, - "2026-01-01": 1426.28417126375, - "2025-01-01": 1404.80937736531, - "2024-01-01": 1374.32202985319, - "2023-01-01": 1300, - "2015-01-01": 1300 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1778.55001644406, - "2034-01-01": 1744.11000895375, - "2033-01-01": 1710.0951867411, - "2032-01-01": 1676.93073508376, - "2031-01-01": 1644.61665398175, - "2030-01-01": 1612.72775815738, - "2029-01-01": 1581.26404761068, - "2028-01-01": 1550.22552234163, - "2027-01-01": 1518.76181179493, - "2026-01-01": 1482.2383964441, - "2025-01-01": 1459.92112986195, - "2024-01-01": 1428.23774025512, - "2023-01-01": 1351, - "2015-01-01": 1351 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1850.95582762424, - "2034-01-01": 1815.11374729014, - "2033-01-01": 1779.71416177497, - "2032-01-01": 1745.19956589769, - "2031-01-01": 1711.56995965828, - "2030-01-01": 1678.38284823781, - "2029-01-01": 1645.63823163628, - "2028-01-01": 1613.33610985369, - "2027-01-01": 1580.59149325216, - "2026-01-01": 1542.58118830525, - "2025-01-01": 1519.35537275048, - "2024-01-01": 1486.38213382583, - "2023-01-01": 1406, - "2015-01-01": 1406 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1916.7792923335, - "2034-01-01": 1879.66260032322, - "2033-01-01": 1843.00413907849, - "2032-01-01": 1807.26213936489, - "2031-01-01": 1772.4366011824, - "2030-01-01": 1738.06929376547, - "2029-01-01": 1704.1602171141, - "2028-01-01": 1670.70937122829, - "2027-01-01": 1636.80029457692, - "2026-01-01": 1597.4382718154, - "2025-01-01": 1573.38650264915, - "2024-01-01": 1539.24067343557, - "2023-01-01": 1456, - "2015-01-01": 1456 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1979.96981845438, - "2034-01-01": 1941.62949923497, - "2033-01-01": 1903.76251728987, - "2032-01-01": 1866.8422098934, - "2031-01-01": 1830.86857704555, - "2030-01-01": 1795.36828147202, - "2029-01-01": 1760.34132317281, - "2028-01-01": 1725.7877021479, - "2027-01-01": 1690.76074384869, - "2026-01-01": 1650.10107198514, - "2025-01-01": 1625.25638735187, - "2024-01-01": 1589.98487146092, - "2023-01-01": 1504, - "2015-01-01": 1504 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2343.31534364947, - "2034-01-01": 2297.93916797756, - "2033-01-01": 2253.1231920053, - "2032-01-01": 2209.42761543235, - "2031-01-01": 2166.8524382587, - "2030-01-01": 2124.83746078471, - "2029-01-01": 2083.38268301037, - "2028-01-01": 2042.48810493568, - "2027-01-01": 2001.03332716135, - "2026-01-01": 1952.91217296113, - "2025-01-01": 1923.5082243925, - "2024-01-01": 1881.76401010667, - "2023-01-01": 1780, - "2015-01-01": 1780 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 688.513440858805, - "2034-01-01": 675.18100272599, - "2033-01-01": 662.013162594815, - "2032-01-01": 649.17451846692, - "2031-01-01": 636.665070342304, - "2030-01-01": 624.320220219328, - "2029-01-01": 612.139968097991, - "2028-01-01": 600.124313978294, - "2027-01-01": 587.944061856957, - "2026-01-01": 573.805093516108, - "2025-01-01": 565.165618740044, - "2024-01-01": 552.90032431786, - "2023-01-01": 523, - "2015-01-01": 523 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 916.262628752826, - "2034-01-01": 898.520034220438, - "2033-01-01": 880.996484064993, - "2032-01-01": 863.911022663435, - "2031-01-01": 847.263650015762, - "2030-01-01": 830.835321745033, - "2029-01-01": 814.626037851246, - "2028-01-01": 798.635798334402, - "2027-01-01": 782.426514440616, - "2026-01-01": 763.610602461207, - "2025-01-01": 752.113328189427, - "2024-01-01": 735.790871367553, - "2023-01-01": 696, - "2015-01-01": 696 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1026.84604946437, - "2034-01-01": 1006.96210731601, - "2033-01-01": 987.323645934906, - "2032-01-01": 968.176146088332, - "2031-01-01": 949.519607776285, - "2030-01-01": 931.108550231502, - "2029-01-01": 912.942973453982, - "2028-01-01": 895.022877443727, - "2027-01-01": 876.857300666207, - "2026-01-01": 855.770502758249, - "2025-01-01": 842.885626419186, - "2024-01-01": 824.593217911913, - "2023-01-01": 780, - "2015-01-01": 780 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1118.99890005733, - "2034-01-01": 1097.33050156232, - "2033-01-01": 1075.92961415983, - "2032-01-01": 1055.06374894241, - "2031-01-01": 1034.73290591005, - "2030-01-01": 1014.66957397023, - "2029-01-01": 994.873753122929, - "2028-01-01": 975.345443368164, - "2027-01-01": 955.549622520867, - "2026-01-01": 932.570419672451, - "2025-01-01": 918.529208277318, - "2024-01-01": 898.595173365546, - "2023-01-01": 850, - "2015-01-01": 850 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1197.98705770844, - "2034-01-01": 1174.78912520201, - "2033-01-01": 1151.87758692406, - "2032-01-01": 1129.53883710305, - "2031-01-01": 1107.772875739, - "2030-01-01": 1086.29330860342, - "2029-01-01": 1065.10013569631, - "2028-01-01": 1044.19335701768, - "2027-01-01": 1023.00018411058, - "2026-01-01": 998.398919884624, - "2025-01-01": 983.366564155717, - "2024-01-01": 962.025420897232, - "2023-01-01": 910, - "2015-01-01": 910 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1269.07639959443, - "2034-01-01": 1244.50188647773, - "2033-01-01": 1220.23076241186, - "2032-01-01": 1196.56641644763, - "2031-01-01": 1173.50884858505, - "2030-01-01": 1150.75466977329, - "2029-01-01": 1128.30388001236, - "2028-01-01": 1106.15647930225, - "2027-01-01": 1083.70568954131, - "2026-01-01": 1057.64457007558, - "2025-01-01": 1041.72018444628, - "2024-01-01": 1019.11264367575, - "2023-01-01": 964, - "2015-01-01": 964 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1332.26692571532, - "2034-01-01": 1306.46878538949, - "2033-01-01": 1280.98914062324, - "2032-01-01": 1256.14648697614, - "2031-01-01": 1231.94082444821, - "2030-01-01": 1208.05365747985, - "2029-01-01": 1184.48498607106, - "2028-01-01": 1161.23481022186, - "2027-01-01": 1137.66613881308, - "2026-01-01": 1110.30737024532, - "2025-01-01": 1093.59006914899, - "2024-01-01": 1069.8568417011, - "2023-01-01": 1012, - "2015-01-01": 1012 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1390.19157465946, - "2034-01-01": 1363.2717760586, - "2033-01-01": 1336.68432065033, - "2032-01-01": 1310.76155162728, - "2031-01-01": 1285.50346898943, - "2030-01-01": 1260.57772954419, - "2029-01-01": 1235.98433329155, - "2028-01-01": 1211.72328023151, - "2027-01-01": 1187.12988397887, - "2026-01-01": 1158.58160373425, - "2025-01-01": 1141.13746345982, - "2024-01-01": 1116.37235655767, - "2023-01-01": 1056, - "2015-01-01": 1056 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1444.16681572105, - "2034-01-01": 1416.20183554572, - "2033-01-01": 1388.58210203922, - "2032-01-01": 1361.65286187038, - "2031-01-01": 1335.41411503921, - "2030-01-01": 1309.52061487687, - "2029-01-01": 1283.97236138336, - "2028-01-01": 1258.76935455868, - "2027-01-01": 1233.22110106517, - "2026-01-01": 1203.56441221256, - "2025-01-01": 1185.44298997673, - "2024-01-01": 1159.71635903765, - "2023-01-01": 1097, - "2015-01-01": 1097 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1515.25615760704, - "2034-01-01": 1485.91459682144, - "2033-01-01": 1456.93527752702, - "2032-01-01": 1428.68044121496, - "2031-01-01": 1401.15008788526, - "2030-01-01": 1373.98197604674, - "2029-01-01": 1347.1761056994, - "2028-01-01": 1320.73247684324, - "2027-01-01": 1293.9266064959, - "2026-01-01": 1262.81006240352, - "2025-01-01": 1243.79661026729, - "2024-01-01": 1216.80358181617, - "2023-01-01": 1151, - "2015-01-01": 1151 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1606.09253890582, - "2034-01-01": 1574.99201400709, - "2033-01-01": 1544.27544620588, - "2032-01-01": 1514.3267925997, - "2031-01-01": 1485.14605318855, - "2030-01-01": 1456.34927087491, - "2029-01-01": 1427.93644565879, - "2028-01-01": 1399.90757754019, - "2027-01-01": 1371.49475232407, - "2026-01-01": 1338.51283764752, - "2025-01-01": 1318.35956952744, - "2024-01-01": 1289.74836647761, - "2023-01-01": 1220, - "2015-01-01": 1220 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1689.03010443948, - "2034-01-01": 1656.32356882877, - "2033-01-01": 1624.02081760831, - "2032-01-01": 1592.52563516837, - "2031-01-01": 1561.83802150894, - "2030-01-01": 1531.55419223977, - "2029-01-01": 1501.67414736085, - "2028-01-01": 1472.19788687218, - "2027-01-01": 1442.31784199326, - "2026-01-01": 1407.6327628703, - "2025-01-01": 1386.43879319976, - "2024-01-01": 1356.35012638588, - "2023-01-01": 1283, - "2015-01-01": 1283 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1764.06885420803, - "2034-01-01": 1729.90926128648, - "2033-01-01": 1696.17139173433, - "2032-01-01": 1663.27696892098, - "2031-01-01": 1631.22599284644, - "2030-01-01": 1599.5967401413, - "2029-01-01": 1568.38921080556, - "2028-01-01": 1537.60340483922, - "2027-01-01": 1506.39587550348, - "2026-01-01": 1470.16983807186, - "2025-01-01": 1448.03428128424, - "2024-01-01": 1416.60886154098, - "2023-01-01": 1340, - "2015-01-01": 1340 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1833.84172679984, - "2034-01-01": 1798.33104550154, - "2033-01-01": 1763.25876767606, - "2032-01-01": 1729.06329679621, - "2031-01-01": 1695.74463286201, - "2030-01-01": 1662.86437240062, - "2029-01-01": 1630.42251541205, - "2028-01-01": 1598.4190618963, - "2027-01-01": 1565.97720490773, - "2026-01-01": 1528.31834659262, - "2025-01-01": 1505.30727897683, - "2024-01-01": 1472.6389135273, - "2023-01-01": 1393, - "2015-01-01": 1393 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1906.24753798002, - "2034-01-01": 1869.33478383792, - "2033-01-01": 1832.87774270993, - "2032-01-01": 1797.33212761013, - "2031-01-01": 1762.69793853854, - "2030-01-01": 1728.51946248104, - "2029-01-01": 1694.79669943765, - "2028-01-01": 1661.52964940835, - "2027-01-01": 1627.80688636496, - "2026-01-01": 1588.66113845378, - "2025-01-01": 1564.74152186536, - "2024-01-01": 1530.78330709801, - "2023-01-01": 1448, - "2015-01-01": 1448 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1982.60275704275, - "2034-01-01": 1944.21145335629, - "2033-01-01": 1906.29411638201, - "2032-01-01": 1869.32471283209, - "2031-01-01": 1833.30324270652, - "2030-01-01": 1797.75573929313, - "2029-01-01": 1762.68220259192, - "2028-01-01": 1728.08263260289, - "2027-01-01": 1693.00909590168, - "2026-01-01": 1652.29535532554, - "2025-01-01": 1627.41763254781, - "2024-01-01": 1592.09921304531, - "2023-01-01": 1506, - "2015-01-01": 1506 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2053.69209892875, - "2034-01-01": 2013.92421463202, - "2033-01-01": 1974.64729186981, - "2032-01-01": 1936.35229217666, - "2031-01-01": 1899.03921555257, - "2030-01-01": 1862.217100463, - "2029-01-01": 1825.88594690796, - "2028-01-01": 1790.04575488745, - "2027-01-01": 1753.71460133241, - "2026-01-01": 1711.5410055165, - "2025-01-01": 1685.77125283837, - "2024-01-01": 1649.18643582383, - "2023-01-01": 1560, - "2015-01-01": 1560 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2120.83203293219, - "2034-01-01": 2079.76404472576, - "2033-01-01": 2039.2030687194, - "2032-01-01": 1999.65611711321, - "2031-01-01": 1961.12318990717, - "2030-01-01": 1923.09727490122, - "2029-01-01": 1885.57837209534, - "2028-01-01": 1848.56648148954, - "2027-01-01": 1811.04757868367, - "2026-01-01": 1767.49523069685, - "2025-01-01": 1740.88300533501, - "2024-01-01": 1703.10214622576, - "2023-01-01": 1611, - "2015-01-01": 1611 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2507.87400542261, - "2034-01-01": 2459.31130056025, - "2033-01-01": 2411.3481352641, - "2032-01-01": 2364.58404910035, - "2031-01-01": 2319.019042069, - "2030-01-01": 2274.05357460386, - "2029-01-01": 2229.68764670492, - "2028-01-01": 2185.92125837218, - "2027-01-01": 2141.55533047324, - "2026-01-01": 2090.05488173649, - "2025-01-01": 2058.58604913917, - "2024-01-01": 2013.91035913102, - "2023-01-01": 1905, - "2015-01-01": 1905 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 730.640458272728, - "2034-01-01": 716.49226866716, - "2033-01-01": 702.518748069068, - "2032-01-01": 688.894565485928, - "2031-01-01": 675.619720917741, - "2030-01-01": 662.51954535703, - "2029-01-01": 649.594038803795, - "2028-01-01": 636.843201258036, - "2027-01-01": 623.917694704801, - "2026-01-01": 608.9136269626, - "2025-01-01": 599.74554187519, - "2024-01-01": 586.729789668092, - "2023-01-01": 555, - "2015-01-01": 555 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 971.5543391086, - "2034-01-01": 952.741070768223, - "2033-01-01": 934.16006499995, - "2032-01-01": 916.043584375883, - "2031-01-01": 898.391628896024, - "2030-01-01": 880.971935988267, - "2029-01-01": 863.784505652614, - "2028-01-01": 846.829337889064, - "2027-01-01": 829.641907553412, - "2026-01-01": 809.690552609728, - "2025-01-01": 797.499477304307, - "2024-01-01": 780.192044639733, - "2023-01-01": 738, - "2015-01-01": 738 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1087.40363699689, - "2034-01-01": 1066.34705210644, - "2033-01-01": 1045.55042505414, - "2032-01-01": 1025.27371367816, - "2031-01-01": 1005.51691797848, - "2030-01-01": 986.02008011695, - "2029-01-01": 966.783200093576, - "2028-01-01": 947.806277908357, - "2027-01-01": 928.569397884984, - "2026-01-01": 906.239019587582, - "2025-01-01": 892.594265925958, - "2024-01-01": 873.223074352872, - "2023-01-01": 826, - "2015-01-01": 826 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1183.5058954724, - "2034-01-01": 1160.58837753473, - "2033-01-01": 1137.95379191728, - "2032-01-01": 1115.88507094027, - "2031-01-01": 1094.38221460369, - "2030-01-01": 1073.16229058733, - "2029-01-01": 1052.22529889119, - "2028-01-01": 1031.57123951527, - "2027-01-01": 1010.63424781913, - "2026-01-01": 986.330361512392, - "2025-01-01": 971.47971557801, - "2024-01-01": 950.39654218309, - "2023-01-01": 899, - "2015-01-01": 899 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1267.75993030025, - "2034-01-01": 1243.21090941707, - "2033-01-01": 1218.96496286579, - "2032-01-01": 1195.32516497829, - "2031-01-01": 1172.29151575457, - "2030-01-01": 1149.56094086274, - "2029-01-01": 1127.1334403028, - "2028-01-01": 1105.00901407475, - "2027-01-01": 1082.58151351482, - "2026-01-01": 1056.54742840538, - "2025-01-01": 1040.6395618483, - "2024-01-01": 1018.05547288355, - "2023-01-01": 963, - "2015-01-01": 963 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1342.7986800688, - "2034-01-01": 1316.79660187478, - "2033-01-01": 1291.1155369918, - "2032-01-01": 1266.0764987309, - "2031-01-01": 1241.67948709207, - "2030-01-01": 1217.60348876427, - "2029-01-01": 1193.84850374752, - "2028-01-01": 1170.4145320418, - "2027-01-01": 1146.65954702504, - "2026-01-01": 1119.08450360694, - "2025-01-01": 1102.23504993278, - "2024-01-01": 1078.31420803866, - "2023-01-01": 1020, - "2015-01-01": 1020 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1408.62214477805, - "2034-01-01": 1381.34545490786, - "2033-01-01": 1354.40551429532, - "2032-01-01": 1328.1390721981, - "2031-01-01": 1302.54612861619, - "2030-01-01": 1277.28993429193, - "2029-01-01": 1252.37048922533, - "2028-01-01": 1227.78779341639, - "2027-01-01": 1202.8683483498, - "2026-01-01": 1173.94158711709, - "2025-01-01": 1156.26617983145, - "2024-01-01": 1131.17274764839, - "2023-01-01": 1070, - "2015-01-01": 1070 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1470.49620160475, - "2034-01-01": 1442.02137675895, - "2033-01-01": 1413.89809296063, - "2032-01-01": 1386.47789125727, - "2031-01-01": 1359.76077164886, - "2030-01-01": 1333.39519308793, - "2029-01-01": 1307.38115557448, - "2028-01-01": 1281.71865910852, - "2027-01-01": 1255.70462159507, - "2026-01-01": 1225.50724561662, - "2025-01-01": 1207.05544193619, - "2024-01-01": 1180.85977488155, - "2023-01-01": 1117, - "2015-01-01": 1117 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1527.10438125471, - "2034-01-01": 1497.5333903674, - "2033-01-01": 1468.32747344166, - "2032-01-01": 1439.85170443906, - "2031-01-01": 1412.1060833596, - "2030-01-01": 1384.72553624172, - "2029-01-01": 1357.71006308541, - "2028-01-01": 1331.05966389067, - "2027-01-01": 1304.04419073436, - "2026-01-01": 1272.68433743535, - "2025-01-01": 1253.52221364905, - "2024-01-01": 1226.31811894592, - "2023-01-01": 1160, - "2015-01-01": 1160 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1602.14313102326, - "2034-01-01": 1571.11908282511, - "2033-01-01": 1540.47804756767, - "2032-01-01": 1510.60303819167, - "2031-01-01": 1481.4940546971, - "2030-01-01": 1452.76808414325, - "2029-01-01": 1424.42512653012, - "2028-01-01": 1396.46518185771, - "2027-01-01": 1368.12222424458, - "2026-01-01": 1335.22141263691, - "2025-01-01": 1315.11770173352, - "2024-01-01": 1286.57685410102, - "2023-01-01": 1217, - "2015-01-01": 1217 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1696.92892020459, - "2034-01-01": 1664.06943119274, - "2033-01-01": 1631.61561488474, - "2032-01-01": 1599.97314398444, - "2031-01-01": 1569.14201849184, - "2030-01-01": 1538.71656570308, - "2029-01-01": 1508.69678561818, - "2028-01-01": 1479.08267823713, - "2027-01-01": 1449.06289815223, - "2026-01-01": 1414.21561289152, - "2025-01-01": 1392.9225287876, - "2024-01-01": 1362.69315113905, - "2023-01-01": 1289, - "2015-01-01": 1289 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1783.8158936208, - "2034-01-01": 1749.2739171964, - "2033-01-01": 1715.15838492538, - "2032-01-01": 1681.89574096114, - "2031-01-01": 1649.48598530367, - "2030-01-01": 1617.5026737996, - "2029-01-01": 1585.94580644891, - "2028-01-01": 1554.8153832516, - "2027-01-01": 1523.25851590091, - "2026-01-01": 1486.62696312491, - "2025-01-01": 1464.24362025384, - "2024-01-01": 1432.4664234239, - "2023-01-01": 1355, - "2015-01-01": 1355 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1862.80405127191, - "2034-01-01": 1826.73254083609, - "2033-01-01": 1791.10635768961, - "2032-01-01": 1756.37082912178, - "2031-01-01": 1722.52595513262, - "2030-01-01": 1689.12640843279, - "2029-01-01": 1656.17218902229, - "2028-01-01": 1623.66329690112, - "2027-01-01": 1590.70907749062, - "2026-01-01": 1552.45546333708, - "2025-01-01": 1529.08097613224, - "2024-01-01": 1495.89667095559, - "2023-01-01": 1415, - "2015-01-01": 1415 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1936.52633174628, - "2034-01-01": 1899.02725623314, - "2033-01-01": 1861.99113226955, - "2032-01-01": 1825.88091140505, - "2031-01-01": 1790.69659363964, - "2030-01-01": 1755.97522742377, - "2029-01-01": 1721.71681275745, - "2028-01-01": 1687.92134964067, - "2027-01-01": 1653.66293497435, - "2026-01-01": 1613.89539686844, - "2025-01-01": 1589.59584161875, - "2024-01-01": 1555.09823531849, - "2023-01-01": 1471, - "2015-01-01": 1471 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2012.88155080901, - "2034-01-01": 1973.90392575151, - "2033-01-01": 1935.40750594163, - "2032-01-01": 1897.873496627, - "2031-01-01": 1861.30189780762, - "2030-01-01": 1825.21150423585, - "2029-01-01": 1789.60231591172, - "2028-01-01": 1754.4743328352, - "2027-01-01": 1718.86514451107, - "2026-01-01": 1677.52961374021, - "2025-01-01": 1652.2719523012, - "2024-01-01": 1616.41414126579, - "2023-01-01": 1529, - "2015-01-01": 1529 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2093.1861777543, - "2034-01-01": 2052.65352645186, - "2033-01-01": 2012.62127825192, - "2032-01-01": 1973.58983625698, - "2031-01-01": 1935.55920046704, - "2030-01-01": 1898.0289677796, - "2029-01-01": 1860.99913819466, - "2028-01-01": 1824.46971171221, - "2027-01-01": 1787.43988212727, - "2026-01-01": 1744.45525562259, - "2025-01-01": 1718.18993077757, - "2024-01-01": 1680.90155958967, - "2023-01-01": 1590, - "2015-01-01": 1590 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2168.22492752285, - "2034-01-01": 2126.23921890957, - "2033-01-01": 2084.77185237794, - "2032-01-01": 2044.34117000959, - "2031-01-01": 2004.94717180454, - "2030-01-01": 1966.07151568113, - "2029-01-01": 1927.71420163937, - "2028-01-01": 1889.87522967925, - "2027-01-01": 1851.51791563749, - "2026-01-01": 1806.99233082415, - "2025-01-01": 1779.78541886205, - "2024-01-01": 1741.16029474477, - "2023-01-01": 1647, - "2015-01-01": 1647 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2237.99780011466, - "2034-01-01": 2194.66100312463, - "2033-01-01": 2151.85922831967, - "2032-01-01": 2110.12749788483, - "2031-01-01": 2069.46581182011, - "2030-01-01": 2029.33914794045, - "2029-01-01": 1989.74750624586, - "2028-01-01": 1950.69088673633, - "2027-01-01": 1911.09924504173, - "2026-01-01": 1865.1408393449, - "2025-01-01": 1837.05841655464, - "2024-01-01": 1797.19034673109, - "2023-01-01": 1700, - "2015-01-01": 1700 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2643.47034272367, - "2034-01-01": 2592.28193780839, - "2033-01-01": 2541.72548850935, - "2032-01-01": 2492.43295044278, - "2031-01-01": 2444.40432360869, - "2030-01-01": 2397.00765239084, - "2029-01-01": 2350.24293678923, - "2028-01-01": 2304.11017680385, - "2027-01-01": 2257.34546120224, - "2026-01-01": 2203.06047376739, - "2025-01-01": 2169.89017673042, - "2024-01-01": 2122.79895072708, - "2023-01-01": 2008, - "2015-01-01": 2008 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 789.881576511057, - "2034-01-01": 774.58623639693, - "2033-01-01": 759.479727642236, - "2032-01-01": 744.750881606409, - "2031-01-01": 730.39969828945, - "2030-01-01": 716.237346331925, - "2029-01-01": 702.263825733833, - "2028-01-01": 688.479136495174, - "2027-01-01": 674.505615897083, - "2026-01-01": 658.28500212173, - "2025-01-01": 648.373558783989, - "2024-01-01": 634.302475316856, - "2023-01-01": 600, - "2015-01-01": 600 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1047.90955817134, - "2034-01-01": 1027.61774028659, - "2033-01-01": 1007.57643867203, - "2032-01-01": 988.036169597836, - "2031-01-01": 968.996933064004, - "2030-01-01": 950.208212800353, - "2029-01-01": 931.670008806884, - "2028-01-01": 913.382321083598, - "2027-01-01": 894.84411709013, - "2026-01-01": 873.324769481495, - "2025-01-01": 860.175587986759, - "2024-01-01": 841.507950587029, - "2023-01-01": 796, - "2015-01-01": 796 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1172.97414111892, - "2034-01-01": 1150.26056104944, - "2033-01-01": 1127.82739554872, - "2032-01-01": 1105.95505918552, - "2031-01-01": 1084.64355195983, - "2030-01-01": 1063.61245930291, - "2029-01-01": 1042.86178121474, - "2028-01-01": 1022.39151769533, - "2027-01-01": 1001.64083960717, - "2026-01-01": 977.553228150769, - "2025-01-01": 962.834734794224, - "2024-01-01": 941.939175845532, - "2023-01-01": 891, - "2015-01-01": 891 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1276.97521535954, - "2034-01-01": 1252.2477488417, - "2033-01-01": 1227.82555968828, - "2032-01-01": 1204.01392526369, - "2031-01-01": 1180.81284556794, - "2030-01-01": 1157.91704323661, - "2029-01-01": 1135.3265182697, - "2028-01-01": 1113.0412706672, - "2027-01-01": 1090.45074570028, - "2026-01-01": 1064.2274200968, - "2025-01-01": 1048.20392003412, - "2024-01-01": 1025.45566842892, - "2023-01-01": 970, - "2015-01-01": 970 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1366.49512736413, - "2034-01-01": 1340.03418896669, - "2033-01-01": 1313.89992882107, - "2032-01-01": 1288.41902517909, - "2031-01-01": 1263.59147804075, - "2030-01-01": 1239.09060915423, - "2029-01-01": 1214.91641851953, - "2028-01-01": 1191.06890613665, - "2027-01-01": 1166.89471550195, - "2026-01-01": 1138.83305367059, - "2025-01-01": 1121.6862566963, - "2024-01-01": 1097.34328229816, - "2023-01-01": 1038, - "2015-01-01": 1038 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1445.48328501523, - "2034-01-01": 1417.49281260638, - "2033-01-01": 1389.84790158529, - "2032-01-01": 1362.89411333973, - "2031-01-01": 1336.63144786969, - "2030-01-01": 1310.71434378742, - "2029-01-01": 1285.14280109291, - "2028-01-01": 1259.91681978617, - "2027-01-01": 1234.34527709166, - "2026-01-01": 1204.66155388277, - "2025-01-01": 1186.5236125747, - "2024-01-01": 1160.77352982985, - "2023-01-01": 1098, - "2015-01-01": 1098 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1517.88909619541, - "2034-01-01": 1488.49655094277, - "2033-01-01": 1459.46687661916, - "2032-01-01": 1431.16294415365, - "2031-01-01": 1403.58475354623, - "2030-01-01": 1376.36943386785, - "2029-01-01": 1349.51698511851, - "2028-01-01": 1323.02740729823, - "2027-01-01": 1296.17495854889, - "2026-01-01": 1265.00434574392, - "2025-01-01": 1245.95785546323, - "2024-01-01": 1218.91792340056, - "2023-01-01": 1153, - "2015-01-01": 1153 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1583.71256090467, - "2034-01-01": 1553.04540397584, - "2033-01-01": 1522.75685392268, - "2032-01-01": 1493.22551762085, - "2031-01-01": 1464.45139507035, - "2030-01-01": 1436.05587939551, - "2029-01-01": 1408.03897059633, - "2028-01-01": 1380.40066867282, - "2027-01-01": 1352.38375987365, - "2026-01-01": 1319.86142925407, - "2025-01-01": 1299.9889853619, - "2024-01-01": 1271.7764630103, - "2023-01-01": 1203, - "2015-01-01": 1203 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1644.27014843718, - "2034-01-01": 1612.43034876627, - "2033-01-01": 1580.98363304192, - "2032-01-01": 1550.32308521068, - "2031-01-01": 1520.44870527254, - "2030-01-01": 1490.96740928096, - "2029-01-01": 1461.87919723593, - "2028-01-01": 1433.18406913745, - "2027-01-01": 1404.09585709243, - "2026-01-01": 1370.3299460834, - "2025-01-01": 1349.69762486867, - "2024-01-01": 1320.40631945126, - "2023-01-01": 1249, - "2015-01-01": 1249 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1723.25830608829, - "2034-01-01": 1689.88897240597, - "2033-01-01": 1656.93160580614, - "2032-01-01": 1624.79817337132, - "2031-01-01": 1593.48867510148, - "2030-01-01": 1562.59114391415, - "2029-01-01": 1532.10557980931, - "2028-01-01": 1502.03198278697, - "2027-01-01": 1471.54641868214, - "2026-01-01": 1436.15844629557, - "2025-01-01": 1414.53498074707, - "2024-01-01": 1383.83656698294, - "2023-01-01": 1309, - "2015-01-01": 1309 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1825.94291103473, - "2034-01-01": 1790.58518313757, - "2033-01-01": 1755.66397039963, - "2032-01-01": 1721.61578798015, - "2031-01-01": 1688.44063587911, - "2030-01-01": 1655.7019989373, - "2029-01-01": 1623.39987715471, - "2028-01-01": 1591.53427053134, - "2027-01-01": 1559.23214874876, - "2026-01-01": 1521.7354965714, - "2025-01-01": 1498.82354338899, - "2024-01-01": 1466.29588877413, - "2023-01-01": 1387, - "2015-01-01": 1387 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1918.09576162768, - "2034-01-01": 1880.95357738388, - "2033-01-01": 1844.26993862456, - "2032-01-01": 1808.50339083423, - "2031-01-01": 1773.65393401288, - "2030-01-01": 1739.26302267602, - "2029-01-01": 1705.33065682366, - "2028-01-01": 1671.85683645578, - "2027-01-01": 1637.92447060342, - "2026-01-01": 1598.5354134856, - "2025-01-01": 1574.46712524712, - "2024-01-01": 1540.29784422777, - "2023-01-01": 1457, - "2015-01-01": 1457 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2003.66626574972, - "2034-01-01": 1964.86708632688, - "2033-01-01": 1926.54690911914, - "2032-01-01": 1889.18473634159, - "2031-01-01": 1852.78056799424, - "2030-01-01": 1816.85540186198, - "2029-01-01": 1781.40923794482, - "2028-01-01": 1746.44207624276, - "2027-01-01": 1710.9959123256, - "2026-01-01": 1669.84962204879, - "2025-01-01": 1644.70759411539, - "2024-01-01": 1609.01394572043, - "2023-01-01": 1522, - "2015-01-01": 1522 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2081.33795410664, - "2034-01-01": 2041.03473290591, - "2033-01-01": 2001.22908233729, - "2032-01-01": 1962.41857303289, - "2031-01-01": 1924.6032049927, - "2030-01-01": 1887.28540758462, - "2029-01-01": 1850.46518080865, - "2028-01-01": 1814.14252466478, - "2027-01-01": 1777.32229788881, - "2026-01-01": 1734.58098059076, - "2025-01-01": 1708.46432739581, - "2024-01-01": 1671.38702245992, - "2023-01-01": 1581, - "2015-01-01": 1581 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2162.95905034611, - "2034-01-01": 2121.07531066693, - "2033-01-01": 2079.70865419366, - "2032-01-01": 2039.37616413222, - "2031-01-01": 2000.07784048261, - "2030-01-01": 1961.29660003892, - "2029-01-01": 1923.03244280114, - "2028-01-01": 1885.28536876929, - "2027-01-01": 1847.02121153151, - "2026-01-01": 1802.60376414334, - "2025-01-01": 1775.46292847016, - "2024-01-01": 1736.93161157599, - "2023-01-01": 1643, - "2015-01-01": 1643 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2248.52955446814, - "2034-01-01": 2204.98881960993, - "2033-01-01": 2161.98562468823, - "2032-01-01": 2120.05750963958, - "2031-01-01": 2079.20447446397, - "2030-01-01": 2038.88897922488, - "2029-01-01": 1999.11102392231, - "2028-01-01": 1959.87060855626, - "2027-01-01": 1920.0926532537, - "2026-01-01": 1873.91797270653, - "2025-01-01": 1845.70339733842, - "2024-01-01": 1805.64771306865, - "2023-01-01": 1708, - "2015-01-01": 1708 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2328.83418141343, - "2034-01-01": 2283.73842031028, - "2033-01-01": 2239.19939699852, - "2032-01-01": 2195.77384926956, - "2031-01-01": 2153.4617771234, - "2030-01-01": 2111.70644276862, - "2029-01-01": 2070.50784620525, - "2028-01-01": 2029.86598743327, - "2027-01-01": 1988.6673908699, - "2026-01-01": 1940.8436145889, - "2025-01-01": 1911.62137581479, - "2024-01-01": 1870.13513139253, - "2023-01-01": 1769, - "2015-01-01": 1769 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2403.87293118198, - "2034-01-01": 2357.32411276799, - "2033-01-01": 2311.34997112454, - "2032-01-01": 2266.52518302217, - "2031-01-01": 2222.84974846089, - "2030-01-01": 2179.74899067016, - "2029-01-01": 2137.22290964996, - "2028-01-01": 2095.27150540031, - "2027-01-01": 2052.74542438012, - "2026-01-01": 2003.38068979047, - "2025-01-01": 1973.21686389927, - "2024-01-01": 1930.39386654763, - "2023-01-01": 1826, - "2015-01-01": 1826 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AL.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2835.6748596747, - "2034-01-01": 2780.76458866498, - "2033-01-01": 2726.53222223563, - "2032-01-01": 2673.65566496701, - "2031-01-01": 2622.13491685913, - "2030-01-01": 2571.29207333161, - "2029-01-01": 2521.12713438446, - "2028-01-01": 2471.64010001768, - "2027-01-01": 2421.47516107053, - "2026-01-01": 2363.24315761701, - "2025-01-01": 2327.66107603452, - "2024-01-01": 2277.14588638751, - "2023-01-01": 2154, - "2015-01-01": 2154 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ", - "description": null, - "label": "AZ", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 688.513440858805, - "2034-01-01": 675.18100272599, - "2033-01-01": 662.013162594815, - "2032-01-01": 649.17451846692, - "2031-01-01": 636.665070342304, - "2030-01-01": 624.320220219328, - "2029-01-01": 612.139968097991, - "2028-01-01": 600.124313978294, - "2027-01-01": 587.944061856957, - "2026-01-01": 573.805093516108, - "2025-01-01": 565.165618740044, - "2024-01-01": 552.90032431786, - "2023-01-01": 523, - "2015-01-01": 523 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 916.262628752826, - "2034-01-01": 898.520034220438, - "2033-01-01": 880.996484064993, - "2032-01-01": 863.911022663435, - "2031-01-01": 847.263650015762, - "2030-01-01": 830.835321745033, - "2029-01-01": 814.626037851246, - "2028-01-01": 798.635798334402, - "2027-01-01": 782.426514440616, - "2026-01-01": 763.610602461207, - "2025-01-01": 752.113328189427, - "2024-01-01": 735.790871367553, - "2023-01-01": 696, - "2015-01-01": 696 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1026.84604946437, - "2034-01-01": 1006.96210731601, - "2033-01-01": 987.323645934906, - "2032-01-01": 968.176146088332, - "2031-01-01": 949.519607776285, - "2030-01-01": 931.108550231502, - "2029-01-01": 912.942973453982, - "2028-01-01": 895.022877443727, - "2027-01-01": 876.857300666207, - "2026-01-01": 855.770502758249, - "2025-01-01": 842.885626419186, - "2024-01-01": 824.593217911913, - "2023-01-01": 780, - "2015-01-01": 780 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1118.99890005733, - "2034-01-01": 1097.33050156232, - "2033-01-01": 1075.92961415983, - "2032-01-01": 1055.06374894241, - "2031-01-01": 1034.73290591005, - "2030-01-01": 1014.66957397023, - "2029-01-01": 994.873753122929, - "2028-01-01": 975.345443368164, - "2027-01-01": 955.549622520867, - "2026-01-01": 932.570419672451, - "2025-01-01": 918.529208277318, - "2024-01-01": 898.595173365546, - "2023-01-01": 850, - "2015-01-01": 850 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1197.98705770844, - "2034-01-01": 1174.78912520201, - "2033-01-01": 1151.87758692406, - "2032-01-01": 1129.53883710305, - "2031-01-01": 1107.772875739, - "2030-01-01": 1086.29330860342, - "2029-01-01": 1065.10013569631, - "2028-01-01": 1044.19335701768, - "2027-01-01": 1023.00018411058, - "2026-01-01": 998.398919884624, - "2025-01-01": 983.366564155717, - "2024-01-01": 962.025420897232, - "2023-01-01": 910, - "2015-01-01": 910 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1269.07639959443, - "2034-01-01": 1244.50188647773, - "2033-01-01": 1220.23076241186, - "2032-01-01": 1196.56641644763, - "2031-01-01": 1173.50884858505, - "2030-01-01": 1150.75466977329, - "2029-01-01": 1128.30388001236, - "2028-01-01": 1106.15647930225, - "2027-01-01": 1083.70568954131, - "2026-01-01": 1057.64457007558, - "2025-01-01": 1041.72018444628, - "2024-01-01": 1019.11264367575, - "2023-01-01": 964, - "2015-01-01": 964 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1332.26692571532, - "2034-01-01": 1306.46878538949, - "2033-01-01": 1280.98914062324, - "2032-01-01": 1256.14648697614, - "2031-01-01": 1231.94082444821, - "2030-01-01": 1208.05365747985, - "2029-01-01": 1184.48498607106, - "2028-01-01": 1161.23481022186, - "2027-01-01": 1137.66613881308, - "2026-01-01": 1110.30737024532, - "2025-01-01": 1093.59006914899, - "2024-01-01": 1069.8568417011, - "2023-01-01": 1012, - "2015-01-01": 1012 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1390.19157465946, - "2034-01-01": 1363.2717760586, - "2033-01-01": 1336.68432065033, - "2032-01-01": 1310.76155162728, - "2031-01-01": 1285.50346898943, - "2030-01-01": 1260.57772954419, - "2029-01-01": 1235.98433329155, - "2028-01-01": 1211.72328023151, - "2027-01-01": 1187.12988397887, - "2026-01-01": 1158.58160373425, - "2025-01-01": 1141.13746345982, - "2024-01-01": 1116.37235655767, - "2023-01-01": 1056, - "2015-01-01": 1056 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1444.16681572105, - "2034-01-01": 1416.20183554572, - "2033-01-01": 1388.58210203922, - "2032-01-01": 1361.65286187038, - "2031-01-01": 1335.41411503921, - "2030-01-01": 1309.52061487687, - "2029-01-01": 1283.97236138336, - "2028-01-01": 1258.76935455868, - "2027-01-01": 1233.22110106517, - "2026-01-01": 1203.56441221256, - "2025-01-01": 1185.44298997673, - "2024-01-01": 1159.71635903765, - "2023-01-01": 1097, - "2015-01-01": 1097 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1515.25615760704, - "2034-01-01": 1485.91459682144, - "2033-01-01": 1456.93527752702, - "2032-01-01": 1428.68044121496, - "2031-01-01": 1401.15008788526, - "2030-01-01": 1373.98197604674, - "2029-01-01": 1347.1761056994, - "2028-01-01": 1320.73247684324, - "2027-01-01": 1293.9266064959, - "2026-01-01": 1262.81006240352, - "2025-01-01": 1243.79661026729, - "2024-01-01": 1216.80358181617, - "2023-01-01": 1151, - "2015-01-01": 1151 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1606.09253890582, - "2034-01-01": 1574.99201400709, - "2033-01-01": 1544.27544620588, - "2032-01-01": 1514.3267925997, - "2031-01-01": 1485.14605318855, - "2030-01-01": 1456.34927087491, - "2029-01-01": 1427.93644565879, - "2028-01-01": 1399.90757754019, - "2027-01-01": 1371.49475232407, - "2026-01-01": 1338.51283764752, - "2025-01-01": 1318.35956952744, - "2024-01-01": 1289.74836647761, - "2023-01-01": 1220, - "2015-01-01": 1220 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1689.03010443948, - "2034-01-01": 1656.32356882877, - "2033-01-01": 1624.02081760831, - "2032-01-01": 1592.52563516837, - "2031-01-01": 1561.83802150894, - "2030-01-01": 1531.55419223977, - "2029-01-01": 1501.67414736085, - "2028-01-01": 1472.19788687218, - "2027-01-01": 1442.31784199326, - "2026-01-01": 1407.6327628703, - "2025-01-01": 1386.43879319976, - "2024-01-01": 1356.35012638588, - "2023-01-01": 1283, - "2015-01-01": 1283 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1764.06885420803, - "2034-01-01": 1729.90926128648, - "2033-01-01": 1696.17139173433, - "2032-01-01": 1663.27696892098, - "2031-01-01": 1631.22599284644, - "2030-01-01": 1599.5967401413, - "2029-01-01": 1568.38921080556, - "2028-01-01": 1537.60340483922, - "2027-01-01": 1506.39587550348, - "2026-01-01": 1470.16983807186, - "2025-01-01": 1448.03428128424, - "2024-01-01": 1416.60886154098, - "2023-01-01": 1340, - "2015-01-01": 1340 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1833.84172679984, - "2034-01-01": 1798.33104550154, - "2033-01-01": 1763.25876767606, - "2032-01-01": 1729.06329679621, - "2031-01-01": 1695.74463286201, - "2030-01-01": 1662.86437240062, - "2029-01-01": 1630.42251541205, - "2028-01-01": 1598.4190618963, - "2027-01-01": 1565.97720490773, - "2026-01-01": 1528.31834659262, - "2025-01-01": 1505.30727897683, - "2024-01-01": 1472.6389135273, - "2023-01-01": 1393, - "2015-01-01": 1393 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1906.24753798002, - "2034-01-01": 1869.33478383792, - "2033-01-01": 1832.87774270993, - "2032-01-01": 1797.33212761013, - "2031-01-01": 1762.69793853854, - "2030-01-01": 1728.51946248104, - "2029-01-01": 1694.79669943765, - "2028-01-01": 1661.52964940835, - "2027-01-01": 1627.80688636496, - "2026-01-01": 1588.66113845378, - "2025-01-01": 1564.74152186536, - "2024-01-01": 1530.78330709801, - "2023-01-01": 1448, - "2015-01-01": 1448 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1982.60275704275, - "2034-01-01": 1944.21145335629, - "2033-01-01": 1906.29411638201, - "2032-01-01": 1869.32471283209, - "2031-01-01": 1833.30324270652, - "2030-01-01": 1797.75573929313, - "2029-01-01": 1762.68220259192, - "2028-01-01": 1728.08263260289, - "2027-01-01": 1693.00909590168, - "2026-01-01": 1652.29535532554, - "2025-01-01": 1627.41763254781, - "2024-01-01": 1592.09921304531, - "2023-01-01": 1506, - "2015-01-01": 1506 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2053.69209892875, - "2034-01-01": 2013.92421463202, - "2033-01-01": 1974.64729186981, - "2032-01-01": 1936.35229217666, - "2031-01-01": 1899.03921555257, - "2030-01-01": 1862.217100463, - "2029-01-01": 1825.88594690796, - "2028-01-01": 1790.04575488745, - "2027-01-01": 1753.71460133241, - "2026-01-01": 1711.5410055165, - "2025-01-01": 1685.77125283837, - "2024-01-01": 1649.18643582383, - "2023-01-01": 1560, - "2015-01-01": 1560 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2120.83203293219, - "2034-01-01": 2079.76404472576, - "2033-01-01": 2039.2030687194, - "2032-01-01": 1999.65611711321, - "2031-01-01": 1961.12318990717, - "2030-01-01": 1923.09727490122, - "2029-01-01": 1885.57837209534, - "2028-01-01": 1848.56648148954, - "2027-01-01": 1811.04757868367, - "2026-01-01": 1767.49523069685, - "2025-01-01": 1740.88300533501, - "2024-01-01": 1703.10214622576, - "2023-01-01": 1611, - "2015-01-01": 1611 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2507.87400542261, - "2034-01-01": 2459.31130056025, - "2033-01-01": 2411.3481352641, - "2032-01-01": 2364.58404910035, - "2031-01-01": 2319.019042069, - "2030-01-01": 2274.05357460386, - "2029-01-01": 2229.68764670492, - "2028-01-01": 2185.92125837218, - "2027-01-01": 2141.55533047324, - "2026-01-01": 2090.05488173649, - "2025-01-01": 2058.58604913917, - "2024-01-01": 2013.91035913102, - "2023-01-01": 1905, - "2015-01-01": 1905 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 730.640458272728, - "2034-01-01": 716.49226866716, - "2033-01-01": 702.518748069068, - "2032-01-01": 688.894565485928, - "2031-01-01": 675.619720917741, - "2030-01-01": 662.51954535703, - "2029-01-01": 649.594038803795, - "2028-01-01": 636.843201258036, - "2027-01-01": 623.917694704801, - "2026-01-01": 608.9136269626, - "2025-01-01": 599.74554187519, - "2024-01-01": 586.729789668092, - "2023-01-01": 555, - "2015-01-01": 555 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 971.5543391086, - "2034-01-01": 952.741070768223, - "2033-01-01": 934.16006499995, - "2032-01-01": 916.043584375883, - "2031-01-01": 898.391628896024, - "2030-01-01": 880.971935988267, - "2029-01-01": 863.784505652614, - "2028-01-01": 846.829337889064, - "2027-01-01": 829.641907553412, - "2026-01-01": 809.690552609728, - "2025-01-01": 797.499477304307, - "2024-01-01": 780.192044639733, - "2023-01-01": 738, - "2015-01-01": 738 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1087.40363699689, - "2034-01-01": 1066.34705210644, - "2033-01-01": 1045.55042505414, - "2032-01-01": 1025.27371367816, - "2031-01-01": 1005.51691797848, - "2030-01-01": 986.02008011695, - "2029-01-01": 966.783200093576, - "2028-01-01": 947.806277908357, - "2027-01-01": 928.569397884984, - "2026-01-01": 906.239019587582, - "2025-01-01": 892.594265925958, - "2024-01-01": 873.223074352872, - "2023-01-01": 826, - "2015-01-01": 826 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1183.5058954724, - "2034-01-01": 1160.58837753473, - "2033-01-01": 1137.95379191728, - "2032-01-01": 1115.88507094027, - "2031-01-01": 1094.38221460369, - "2030-01-01": 1073.16229058733, - "2029-01-01": 1052.22529889119, - "2028-01-01": 1031.57123951527, - "2027-01-01": 1010.63424781913, - "2026-01-01": 986.330361512392, - "2025-01-01": 971.47971557801, - "2024-01-01": 950.39654218309, - "2023-01-01": 899, - "2015-01-01": 899 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1267.75993030025, - "2034-01-01": 1243.21090941707, - "2033-01-01": 1218.96496286579, - "2032-01-01": 1195.32516497829, - "2031-01-01": 1172.29151575457, - "2030-01-01": 1149.56094086274, - "2029-01-01": 1127.1334403028, - "2028-01-01": 1105.00901407475, - "2027-01-01": 1082.58151351482, - "2026-01-01": 1056.54742840538, - "2025-01-01": 1040.6395618483, - "2024-01-01": 1018.05547288355, - "2023-01-01": 963, - "2015-01-01": 963 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1342.7986800688, - "2034-01-01": 1316.79660187478, - "2033-01-01": 1291.1155369918, - "2032-01-01": 1266.0764987309, - "2031-01-01": 1241.67948709207, - "2030-01-01": 1217.60348876427, - "2029-01-01": 1193.84850374752, - "2028-01-01": 1170.4145320418, - "2027-01-01": 1146.65954702504, - "2026-01-01": 1119.08450360694, - "2025-01-01": 1102.23504993278, - "2024-01-01": 1078.31420803866, - "2023-01-01": 1020, - "2015-01-01": 1020 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1408.62214477805, - "2034-01-01": 1381.34545490786, - "2033-01-01": 1354.40551429532, - "2032-01-01": 1328.1390721981, - "2031-01-01": 1302.54612861619, - "2030-01-01": 1277.28993429193, - "2029-01-01": 1252.37048922533, - "2028-01-01": 1227.78779341639, - "2027-01-01": 1202.8683483498, - "2026-01-01": 1173.94158711709, - "2025-01-01": 1156.26617983145, - "2024-01-01": 1131.17274764839, - "2023-01-01": 1070, - "2015-01-01": 1070 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1470.49620160475, - "2034-01-01": 1442.02137675895, - "2033-01-01": 1413.89809296063, - "2032-01-01": 1386.47789125727, - "2031-01-01": 1359.76077164886, - "2030-01-01": 1333.39519308793, - "2029-01-01": 1307.38115557448, - "2028-01-01": 1281.71865910852, - "2027-01-01": 1255.70462159507, - "2026-01-01": 1225.50724561662, - "2025-01-01": 1207.05544193619, - "2024-01-01": 1180.85977488155, - "2023-01-01": 1117, - "2015-01-01": 1117 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1527.10438125471, - "2034-01-01": 1497.5333903674, - "2033-01-01": 1468.32747344166, - "2032-01-01": 1439.85170443906, - "2031-01-01": 1412.1060833596, - "2030-01-01": 1384.72553624172, - "2029-01-01": 1357.71006308541, - "2028-01-01": 1331.05966389067, - "2027-01-01": 1304.04419073436, - "2026-01-01": 1272.68433743535, - "2025-01-01": 1253.52221364905, - "2024-01-01": 1226.31811894592, - "2023-01-01": 1160, - "2015-01-01": 1160 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1602.14313102326, - "2034-01-01": 1571.11908282511, - "2033-01-01": 1540.47804756767, - "2032-01-01": 1510.60303819167, - "2031-01-01": 1481.4940546971, - "2030-01-01": 1452.76808414325, - "2029-01-01": 1424.42512653012, - "2028-01-01": 1396.46518185771, - "2027-01-01": 1368.12222424458, - "2026-01-01": 1335.22141263691, - "2025-01-01": 1315.11770173352, - "2024-01-01": 1286.57685410102, - "2023-01-01": 1217, - "2015-01-01": 1217 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1696.92892020459, - "2034-01-01": 1664.06943119274, - "2033-01-01": 1631.61561488474, - "2032-01-01": 1599.97314398444, - "2031-01-01": 1569.14201849184, - "2030-01-01": 1538.71656570308, - "2029-01-01": 1508.69678561818, - "2028-01-01": 1479.08267823713, - "2027-01-01": 1449.06289815223, - "2026-01-01": 1414.21561289152, - "2025-01-01": 1392.9225287876, - "2024-01-01": 1362.69315113905, - "2023-01-01": 1289, - "2015-01-01": 1289 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1783.8158936208, - "2034-01-01": 1749.2739171964, - "2033-01-01": 1715.15838492538, - "2032-01-01": 1681.89574096114, - "2031-01-01": 1649.48598530367, - "2030-01-01": 1617.5026737996, - "2029-01-01": 1585.94580644891, - "2028-01-01": 1554.8153832516, - "2027-01-01": 1523.25851590091, - "2026-01-01": 1486.62696312491, - "2025-01-01": 1464.24362025384, - "2024-01-01": 1432.4664234239, - "2023-01-01": 1355, - "2015-01-01": 1355 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1862.80405127191, - "2034-01-01": 1826.73254083609, - "2033-01-01": 1791.10635768961, - "2032-01-01": 1756.37082912178, - "2031-01-01": 1722.52595513262, - "2030-01-01": 1689.12640843279, - "2029-01-01": 1656.17218902229, - "2028-01-01": 1623.66329690112, - "2027-01-01": 1590.70907749062, - "2026-01-01": 1552.45546333708, - "2025-01-01": 1529.08097613224, - "2024-01-01": 1495.89667095559, - "2023-01-01": 1415, - "2015-01-01": 1415 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1936.52633174628, - "2034-01-01": 1899.02725623314, - "2033-01-01": 1861.99113226955, - "2032-01-01": 1825.88091140505, - "2031-01-01": 1790.69659363964, - "2030-01-01": 1755.97522742377, - "2029-01-01": 1721.71681275745, - "2028-01-01": 1687.92134964067, - "2027-01-01": 1653.66293497435, - "2026-01-01": 1613.89539686844, - "2025-01-01": 1589.59584161875, - "2024-01-01": 1555.09823531849, - "2023-01-01": 1471, - "2015-01-01": 1471 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2012.88155080901, - "2034-01-01": 1973.90392575151, - "2033-01-01": 1935.40750594163, - "2032-01-01": 1897.873496627, - "2031-01-01": 1861.30189780762, - "2030-01-01": 1825.21150423585, - "2029-01-01": 1789.60231591172, - "2028-01-01": 1754.4743328352, - "2027-01-01": 1718.86514451107, - "2026-01-01": 1677.52961374021, - "2025-01-01": 1652.2719523012, - "2024-01-01": 1616.41414126579, - "2023-01-01": 1529, - "2015-01-01": 1529 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2093.1861777543, - "2034-01-01": 2052.65352645186, - "2033-01-01": 2012.62127825192, - "2032-01-01": 1973.58983625698, - "2031-01-01": 1935.55920046704, - "2030-01-01": 1898.0289677796, - "2029-01-01": 1860.99913819466, - "2028-01-01": 1824.46971171221, - "2027-01-01": 1787.43988212727, - "2026-01-01": 1744.45525562259, - "2025-01-01": 1718.18993077757, - "2024-01-01": 1680.90155958967, - "2023-01-01": 1590, - "2015-01-01": 1590 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2168.22492752285, - "2034-01-01": 2126.23921890957, - "2033-01-01": 2084.77185237794, - "2032-01-01": 2044.34117000959, - "2031-01-01": 2004.94717180454, - "2030-01-01": 1966.07151568113, - "2029-01-01": 1927.71420163937, - "2028-01-01": 1889.87522967925, - "2027-01-01": 1851.51791563749, - "2026-01-01": 1806.99233082415, - "2025-01-01": 1779.78541886205, - "2024-01-01": 1741.16029474477, - "2023-01-01": 1647, - "2015-01-01": 1647 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2237.99780011466, - "2034-01-01": 2194.66100312463, - "2033-01-01": 2151.85922831967, - "2032-01-01": 2110.12749788483, - "2031-01-01": 2069.46581182011, - "2030-01-01": 2029.33914794045, - "2029-01-01": 1989.74750624586, - "2028-01-01": 1950.69088673633, - "2027-01-01": 1911.09924504173, - "2026-01-01": 1865.1408393449, - "2025-01-01": 1837.05841655464, - "2024-01-01": 1797.19034673109, - "2023-01-01": 1700, - "2015-01-01": 1700 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2643.47034272367, - "2034-01-01": 2592.28193780839, - "2033-01-01": 2541.72548850935, - "2032-01-01": 2492.43295044278, - "2031-01-01": 2444.40432360869, - "2030-01-01": 2397.00765239084, - "2029-01-01": 2350.24293678923, - "2028-01-01": 2304.11017680385, - "2027-01-01": 2257.34546120224, - "2026-01-01": 2203.06047376739, - "2025-01-01": 2169.89017673042, - "2024-01-01": 2122.79895072708, - "2023-01-01": 2008, - "2015-01-01": 2008 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 789.881576511057, - "2034-01-01": 774.58623639693, - "2033-01-01": 759.479727642236, - "2032-01-01": 744.750881606409, - "2031-01-01": 730.39969828945, - "2030-01-01": 716.237346331925, - "2029-01-01": 702.263825733833, - "2028-01-01": 688.479136495174, - "2027-01-01": 674.505615897083, - "2026-01-01": 658.28500212173, - "2025-01-01": 648.373558783989, - "2024-01-01": 634.302475316856, - "2023-01-01": 600, - "2015-01-01": 600 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1047.90955817134, - "2034-01-01": 1027.61774028659, - "2033-01-01": 1007.57643867203, - "2032-01-01": 988.036169597836, - "2031-01-01": 968.996933064004, - "2030-01-01": 950.208212800353, - "2029-01-01": 931.670008806884, - "2028-01-01": 913.382321083598, - "2027-01-01": 894.84411709013, - "2026-01-01": 873.324769481495, - "2025-01-01": 860.175587986759, - "2024-01-01": 841.507950587029, - "2023-01-01": 796, - "2015-01-01": 796 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1172.97414111892, - "2034-01-01": 1150.26056104944, - "2033-01-01": 1127.82739554872, - "2032-01-01": 1105.95505918552, - "2031-01-01": 1084.64355195983, - "2030-01-01": 1063.61245930291, - "2029-01-01": 1042.86178121474, - "2028-01-01": 1022.39151769533, - "2027-01-01": 1001.64083960717, - "2026-01-01": 977.553228150769, - "2025-01-01": 962.834734794224, - "2024-01-01": 941.939175845532, - "2023-01-01": 891, - "2015-01-01": 891 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1276.97521535954, - "2034-01-01": 1252.2477488417, - "2033-01-01": 1227.82555968828, - "2032-01-01": 1204.01392526369, - "2031-01-01": 1180.81284556794, - "2030-01-01": 1157.91704323661, - "2029-01-01": 1135.3265182697, - "2028-01-01": 1113.0412706672, - "2027-01-01": 1090.45074570028, - "2026-01-01": 1064.2274200968, - "2025-01-01": 1048.20392003412, - "2024-01-01": 1025.45566842892, - "2023-01-01": 970, - "2015-01-01": 970 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1366.49512736413, - "2034-01-01": 1340.03418896669, - "2033-01-01": 1313.89992882107, - "2032-01-01": 1288.41902517909, - "2031-01-01": 1263.59147804075, - "2030-01-01": 1239.09060915423, - "2029-01-01": 1214.91641851953, - "2028-01-01": 1191.06890613665, - "2027-01-01": 1166.89471550195, - "2026-01-01": 1138.83305367059, - "2025-01-01": 1121.6862566963, - "2024-01-01": 1097.34328229816, - "2023-01-01": 1038, - "2015-01-01": 1038 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1445.48328501523, - "2034-01-01": 1417.49281260638, - "2033-01-01": 1389.84790158529, - "2032-01-01": 1362.89411333973, - "2031-01-01": 1336.63144786969, - "2030-01-01": 1310.71434378742, - "2029-01-01": 1285.14280109291, - "2028-01-01": 1259.91681978617, - "2027-01-01": 1234.34527709166, - "2026-01-01": 1204.66155388277, - "2025-01-01": 1186.5236125747, - "2024-01-01": 1160.77352982985, - "2023-01-01": 1098, - "2015-01-01": 1098 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1517.88909619541, - "2034-01-01": 1488.49655094277, - "2033-01-01": 1459.46687661916, - "2032-01-01": 1431.16294415365, - "2031-01-01": 1403.58475354623, - "2030-01-01": 1376.36943386785, - "2029-01-01": 1349.51698511851, - "2028-01-01": 1323.02740729823, - "2027-01-01": 1296.17495854889, - "2026-01-01": 1265.00434574392, - "2025-01-01": 1245.95785546323, - "2024-01-01": 1218.91792340056, - "2023-01-01": 1153, - "2015-01-01": 1153 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1583.71256090467, - "2034-01-01": 1553.04540397584, - "2033-01-01": 1522.75685392268, - "2032-01-01": 1493.22551762085, - "2031-01-01": 1464.45139507035, - "2030-01-01": 1436.05587939551, - "2029-01-01": 1408.03897059633, - "2028-01-01": 1380.40066867282, - "2027-01-01": 1352.38375987365, - "2026-01-01": 1319.86142925407, - "2025-01-01": 1299.9889853619, - "2024-01-01": 1271.7764630103, - "2023-01-01": 1203, - "2015-01-01": 1203 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1644.27014843718, - "2034-01-01": 1612.43034876627, - "2033-01-01": 1580.98363304192, - "2032-01-01": 1550.32308521068, - "2031-01-01": 1520.44870527254, - "2030-01-01": 1490.96740928096, - "2029-01-01": 1461.87919723593, - "2028-01-01": 1433.18406913745, - "2027-01-01": 1404.09585709243, - "2026-01-01": 1370.3299460834, - "2025-01-01": 1349.69762486867, - "2024-01-01": 1320.40631945126, - "2023-01-01": 1249, - "2015-01-01": 1249 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1723.25830608829, - "2034-01-01": 1689.88897240597, - "2033-01-01": 1656.93160580614, - "2032-01-01": 1624.79817337132, - "2031-01-01": 1593.48867510148, - "2030-01-01": 1562.59114391415, - "2029-01-01": 1532.10557980931, - "2028-01-01": 1502.03198278697, - "2027-01-01": 1471.54641868214, - "2026-01-01": 1436.15844629557, - "2025-01-01": 1414.53498074707, - "2024-01-01": 1383.83656698294, - "2023-01-01": 1309, - "2015-01-01": 1309 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1825.94291103473, - "2034-01-01": 1790.58518313757, - "2033-01-01": 1755.66397039963, - "2032-01-01": 1721.61578798015, - "2031-01-01": 1688.44063587911, - "2030-01-01": 1655.7019989373, - "2029-01-01": 1623.39987715471, - "2028-01-01": 1591.53427053134, - "2027-01-01": 1559.23214874876, - "2026-01-01": 1521.7354965714, - "2025-01-01": 1498.82354338899, - "2024-01-01": 1466.29588877413, - "2023-01-01": 1387, - "2015-01-01": 1387 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1918.09576162768, - "2034-01-01": 1880.95357738388, - "2033-01-01": 1844.26993862456, - "2032-01-01": 1808.50339083423, - "2031-01-01": 1773.65393401288, - "2030-01-01": 1739.26302267602, - "2029-01-01": 1705.33065682366, - "2028-01-01": 1671.85683645578, - "2027-01-01": 1637.92447060342, - "2026-01-01": 1598.5354134856, - "2025-01-01": 1574.46712524712, - "2024-01-01": 1540.29784422777, - "2023-01-01": 1457, - "2015-01-01": 1457 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2003.66626574972, - "2034-01-01": 1964.86708632688, - "2033-01-01": 1926.54690911914, - "2032-01-01": 1889.18473634159, - "2031-01-01": 1852.78056799424, - "2030-01-01": 1816.85540186198, - "2029-01-01": 1781.40923794482, - "2028-01-01": 1746.44207624276, - "2027-01-01": 1710.9959123256, - "2026-01-01": 1669.84962204879, - "2025-01-01": 1644.70759411539, - "2024-01-01": 1609.01394572043, - "2023-01-01": 1522, - "2015-01-01": 1522 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2081.33795410664, - "2034-01-01": 2041.03473290591, - "2033-01-01": 2001.22908233729, - "2032-01-01": 1962.41857303289, - "2031-01-01": 1924.6032049927, - "2030-01-01": 1887.28540758462, - "2029-01-01": 1850.46518080865, - "2028-01-01": 1814.14252466478, - "2027-01-01": 1777.32229788881, - "2026-01-01": 1734.58098059076, - "2025-01-01": 1708.46432739581, - "2024-01-01": 1671.38702245992, - "2023-01-01": 1581, - "2015-01-01": 1581 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2162.95905034611, - "2034-01-01": 2121.07531066693, - "2033-01-01": 2079.70865419366, - "2032-01-01": 2039.37616413222, - "2031-01-01": 2000.07784048261, - "2030-01-01": 1961.29660003892, - "2029-01-01": 1923.03244280114, - "2028-01-01": 1885.28536876929, - "2027-01-01": 1847.02121153151, - "2026-01-01": 1802.60376414334, - "2025-01-01": 1775.46292847016, - "2024-01-01": 1736.93161157599, - "2023-01-01": 1643, - "2015-01-01": 1643 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2248.52955446814, - "2034-01-01": 2204.98881960993, - "2033-01-01": 2161.98562468823, - "2032-01-01": 2120.05750963958, - "2031-01-01": 2079.20447446397, - "2030-01-01": 2038.88897922488, - "2029-01-01": 1999.11102392231, - "2028-01-01": 1959.87060855626, - "2027-01-01": 1920.0926532537, - "2026-01-01": 1873.91797270653, - "2025-01-01": 1845.70339733842, - "2024-01-01": 1805.64771306865, - "2023-01-01": 1708, - "2015-01-01": 1708 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2328.83418141343, - "2034-01-01": 2283.73842031028, - "2033-01-01": 2239.19939699852, - "2032-01-01": 2195.77384926956, - "2031-01-01": 2153.4617771234, - "2030-01-01": 2111.70644276862, - "2029-01-01": 2070.50784620525, - "2028-01-01": 2029.86598743327, - "2027-01-01": 1988.6673908699, - "2026-01-01": 1940.8436145889, - "2025-01-01": 1911.62137581479, - "2024-01-01": 1870.13513139253, - "2023-01-01": 1769, - "2015-01-01": 1769 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2403.87293118198, - "2034-01-01": 2357.32411276799, - "2033-01-01": 2311.34997112454, - "2032-01-01": 2266.52518302217, - "2031-01-01": 2222.84974846089, - "2030-01-01": 2179.74899067016, - "2029-01-01": 2137.22290964996, - "2028-01-01": 2095.27150540031, - "2027-01-01": 2052.74542438012, - "2026-01-01": 2003.38068979047, - "2025-01-01": 1973.21686389927, - "2024-01-01": 1930.39386654763, - "2023-01-01": 1826, - "2015-01-01": 1826 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2835.6748596747, - "2034-01-01": 2780.76458866498, - "2033-01-01": 2726.53222223563, - "2032-01-01": 2673.65566496701, - "2031-01-01": 2622.13491685913, - "2030-01-01": 2571.29207333161, - "2029-01-01": 2521.12713438446, - "2028-01-01": 2471.64010001768, - "2027-01-01": 2421.47516107053, - "2026-01-01": 2363.24315761701, - "2025-01-01": 2327.66107603452, - "2024-01-01": 2277.14588638751, - "2023-01-01": 2154, - "2015-01-01": 2154 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 502.891270378706, - "2034-01-01": 493.153237172712, - "2033-01-01": 483.53542659889, - "2032-01-01": 474.158061289414, - "2031-01-01": 465.021141244283, - "2030-01-01": 456.004443831325, - "2029-01-01": 447.10796905054, - "2028-01-01": 438.331716901928, - "2027-01-01": 429.435242121143, - "2026-01-01": 419.108118017502, - "2025-01-01": 412.797832425806, - "2024-01-01": 403.839242618399, - "2023-01-01": 382, - "2015-01-01": 382 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 720.108703919247, - "2034-01-01": 706.164452181867, - "2033-01-01": 692.392351700505, - "2032-01-01": 678.964553731176, - "2031-01-01": 665.881058273882, - "2030-01-01": 652.969714072605, - "2029-01-01": 640.230521127344, - "2028-01-01": 627.663479438101, - "2027-01-01": 614.92428649284, - "2026-01-01": 600.136493600977, - "2025-01-01": 591.100561091403, - "2024-01-01": 578.272423330534, - "2023-01-01": 547, - "2015-01-01": 547 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 829.37565533661, - "2034-01-01": 813.315548216776, - "2033-01-01": 797.453714024347, - "2032-01-01": 781.98842568673, - "2031-01-01": 766.919683203923, - "2030-01-01": 752.049213648521, - "2029-01-01": 737.377017020524, - "2028-01-01": 722.903093319933, - "2027-01-01": 708.230896691937, - "2026-01-01": 691.199252227817, - "2025-01-01": 680.792236723189, - "2024-01-01": 666.017599082699, - "2023-01-01": 630, - "2015-01-01": 630 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 922.844975223752, - "2034-01-01": 904.974919523746, - "2033-01-01": 887.325481795345, - "2032-01-01": 870.117280010155, - "2031-01-01": 853.350314168174, - "2030-01-01": 836.803966297799, - "2029-01-01": 820.478236399028, - "2028-01-01": 804.373124471862, - "2027-01-01": 788.047394573092, - "2026-01-01": 769.096310812221, - "2025-01-01": 757.516441179294, - "2024-01-01": 741.076725328527, - "2023-01-01": 701, - "2015-01-01": 701 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1004.46607146323, - "2034-01-01": 985.015497284762, - "2033-01-01": 965.80505365171, - "2032-01-01": 947.074871109484, - "2031-01-01": 928.824949658084, - "2030-01-01": 910.815158752097, - "2029-01-01": 893.045498391524, - "2028-01-01": 875.515968576363, - "2027-01-01": 857.74630821579, - "2026-01-01": 837.1190943648, - "2025-01-01": 824.515042253639, - "2024-01-01": 806.621314444602, - "2023-01-01": 763, - "2015-01-01": 763 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1076.87188264341, - "2034-01-01": 1056.01923562115, - "2033-01-01": 1035.42402868558, - "2032-01-01": 1015.3437019234, - "2031-01-01": 995.778255334617, - "2030-01-01": 976.470248832524, - "2029-01-01": 957.419682417125, - "2028-01-01": 938.626556088421, - "2027-01-01": 919.575989673023, - "2026-01-01": 897.461886225959, - "2025-01-01": 883.949285142172, - "2024-01-01": 864.765708015314, - "2023-01-01": 818, - "2015-01-01": 818 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1144.01181664685, - "2034-01-01": 1121.85906571489, - "2033-01-01": 1099.97980553517, - "2032-01-01": 1078.64752685995, - "2031-01-01": 1057.86222968922, - "2030-01-01": 1037.35042327074, - "2029-01-01": 1017.1121076045, - "2028-01-01": 997.147282690511, - "2027-01-01": 976.908967024275, - "2026-01-01": 953.416111406306, - "2025-01-01": 939.061037638811, - "2024-01-01": 918.681418417247, - "2023-01-01": 869, - "2015-01-01": 869 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1205.88587347355, - "2034-01-01": 1182.53498756598, - "2033-01-01": 1159.47238420048, - "2032-01-01": 1136.98634591912, - "2031-01-01": 1115.07687272189, - "2030-01-01": 1093.45568206674, - "2029-01-01": 1072.12277395365, - "2028-01-01": 1051.07814838263, - "2027-01-01": 1029.74524026955, - "2026-01-01": 1004.98176990584, - "2025-01-01": 989.850299743557, - "2024-01-01": 968.368445650401, - "2023-01-01": 916, - "2015-01-01": 916 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1262.49405312351, - "2034-01-01": 1238.04700117443, - "2033-01-01": 1213.90176468151, - "2032-01-01": 1190.36015910091, - "2031-01-01": 1167.42218443264, - "2030-01-01": 1144.78602522053, - "2029-01-01": 1122.45168146458, - "2028-01-01": 1100.41915316479, - "2027-01-01": 1078.08480940884, - "2026-01-01": 1052.15886172457, - "2025-01-01": 1036.31707145641, - "2024-01-01": 1013.82678971478, - "2023-01-01": 959, - "2015-01-01": 959 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1338.84927218624, - "2034-01-01": 1312.9236706928, - "2033-01-01": 1287.31813835359, - "2032-01-01": 1262.35274432286, - "2031-01-01": 1238.02748860062, - "2030-01-01": 1214.02230203261, - "2029-01-01": 1190.33718461885, - "2028-01-01": 1166.97213635932, - "2027-01-01": 1143.28701894556, - "2026-01-01": 1115.79307859633, - "2025-01-01": 1098.99318213886, - "2024-01-01": 1075.14269566207, - "2023-01-01": 1017, - "2015-01-01": 1017 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1437.58446925012, - "2034-01-01": 1409.74695024241, - "2033-01-01": 1382.25310430887, - "2032-01-01": 1355.44660452366, - "2031-01-01": 1329.3274508868, - "2030-01-01": 1303.5519703241, - "2029-01-01": 1278.12016283558, - "2028-01-01": 1253.03202842122, - "2027-01-01": 1227.60022093269, - "2026-01-01": 1198.07870386155, - "2025-01-01": 1180.03987698686, - "2024-01-01": 1154.43050507668, - "2023-01-01": 1092, - "2015-01-01": 1092 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1527.10438125471, - "2034-01-01": 1497.5333903674, - "2033-01-01": 1468.32747344166, - "2032-01-01": 1439.85170443906, - "2031-01-01": 1412.1060833596, - "2030-01-01": 1384.72553624172, - "2029-01-01": 1357.71006308541, - "2028-01-01": 1331.05966389067, - "2027-01-01": 1304.04419073436, - "2026-01-01": 1272.68433743535, - "2025-01-01": 1253.52221364905, - "2024-01-01": 1226.31811894592, - "2023-01-01": 1160, - "2015-01-01": 1160 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1610.04194678837, - "2034-01-01": 1578.86494518907, - "2033-01-01": 1548.07284484409, - "2032-01-01": 1518.05054700773, - "2031-01-01": 1488.79805168, - "2030-01-01": 1459.93045760657, - "2029-01-01": 1431.44776478746, - "2028-01-01": 1403.34997322266, - "2027-01-01": 1374.86728040355, - "2026-01-01": 1341.80426265813, - "2025-01-01": 1321.60143732136, - "2024-01-01": 1292.91987885419, - "2023-01-01": 1223, - "2015-01-01": 1223 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1687.71363514529, - "2034-01-01": 1655.03259176811, - "2033-01-01": 1622.75501806224, - "2032-01-01": 1591.28438369903, - "2031-01-01": 1560.62068867846, - "2030-01-01": 1530.36046332921, - "2029-01-01": 1500.50370765129, - "2028-01-01": 1471.05042164469, - "2027-01-01": 1441.19366596677, - "2026-01-01": 1406.5356212001, - "2025-01-01": 1385.35817060179, - "2024-01-01": 1355.29295559368, - "2023-01-01": 1282, - "2015-01-01": 1282 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1768.01826209058, - "2034-01-01": 1733.78219246846, - "2033-01-01": 1699.96879037254, - "2032-01-01": 1667.00072332901, - "2031-01-01": 1634.87799133789, - "2030-01-01": 1603.17792687296, - "2029-01-01": 1571.90052993423, - "2028-01-01": 1541.0458005217, - "2027-01-01": 1509.76840358297, - "2026-01-01": 1473.46126308247, - "2025-01-01": 1451.27614907816, - "2024-01-01": 1419.78037391756, - "2023-01-01": 1343, - "2015-01-01": 1343 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1853.58876621261, - "2034-01-01": 1817.69570141146, - "2033-01-01": 1782.24576086711, - "2032-01-01": 1747.68206883637, - "2031-01-01": 1714.00462531924, - "2030-01-01": 1680.77030605892, - "2029-01-01": 1647.97911105539, - "2028-01-01": 1615.63104030868, - "2027-01-01": 1582.83984530515, - "2026-01-01": 1544.77547164566, - "2025-01-01": 1521.51661794643, - "2024-01-01": 1488.49647541022, - "2023-01-01": 1408, - "2015-01-01": 1408 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1933.89339315791, - "2034-01-01": 1896.44530211182, - "2033-01-01": 1859.45953317741, - "2032-01-01": 1823.39840846636, - "2031-01-01": 1788.26192797867, - "2030-01-01": 1753.58776960266, - "2029-01-01": 1719.37593333833, - "2028-01-01": 1685.62641918569, - "2027-01-01": 1651.41458292136, - "2026-01-01": 1611.70111352804, - "2025-01-01": 1587.4345964228, - "2024-01-01": 1552.9838937341, - "2023-01-01": 1469, - "2015-01-01": 1469 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2010.24861222064, - "2034-01-01": 1971.32197163019, - "2033-01-01": 1932.87590684949, - "2032-01-01": 1895.39099368831, - "2031-01-01": 1858.86723214665, - "2030-01-01": 1822.82404641475, - "2029-01-01": 1787.2614364926, - "2028-01-01": 1752.17940238022, - "2027-01-01": 1716.61679245808, - "2026-01-01": 1675.3353303998, - "2025-01-01": 1650.11070710525, - "2024-01-01": 1614.2997996814, - "2023-01-01": 1527, - "2015-01-01": 1527 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2452.58229506683, - "2034-01-01": 2405.09026401247, - "2033-01-01": 2358.18455432914, - "2032-01-01": 2312.4514873879, - "2031-01-01": 2267.89106318874, - "2030-01-01": 2223.91696036063, - "2029-01-01": 2180.52917890355, - "2028-01-01": 2137.72771881752, - "2027-01-01": 2094.33993736044, - "2026-01-01": 2043.97493158797, - "2025-01-01": 2013.19990002429, - "2024-01-01": 1969.50918585884, - "2023-01-01": 1863, - "2015-01-01": 1863 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 563.448857911221, - "2034-01-01": 552.538181963143, - "2033-01-01": 541.762205718128, - "2032-01-01": 531.255628879238, - "2031-01-01": 521.018451446474, - "2030-01-01": 510.915973716773, - "2029-01-01": 500.948195690134, - "2028-01-01": 491.115117366558, - "2027-01-01": 481.147339339919, - "2026-01-01": 469.576634846834, - "2025-01-01": 462.506471932579, - "2024-01-01": 452.469099059357, - "2023-01-01": 428, - "2015-01-01": 428 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 805.679208041278, - "2034-01-01": 790.077961124868, - "2033-01-01": 774.66932219508, - "2032-01-01": 759.645899238537, - "2031-01-01": 745.007692255239, - "2030-01-01": 730.562093258563, - "2029-01-01": 716.309102248509, - "2028-01-01": 702.248719225078, - "2027-01-01": 687.995728215024, - "2026-01-01": 671.450702164165, - "2025-01-01": 661.341029959669, - "2024-01-01": 646.988524823193, - "2023-01-01": 612, - "2015-01-01": 612 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 928.110852400492, - "2034-01-01": 910.138827766392, - "2033-01-01": 892.388679979627, - "2032-01-01": 875.082285887531, - "2031-01-01": 858.219645490104, - "2030-01-01": 841.578881940011, - "2029-01-01": 825.159995237253, - "2028-01-01": 808.96298538183, - "2027-01-01": 792.544098679072, - "2026-01-01": 773.484877493033, - "2025-01-01": 761.838931571187, - "2024-01-01": 745.305408497306, - "2023-01-01": 705, - "2015-01-01": 705 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1032.11192664111, - "2034-01-01": 1012.12601555865, - "2033-01-01": 992.386844119188, - "2032-01-01": 973.141151965708, - "2031-01-01": 954.388939098215, - "2030-01-01": 935.883465873715, - "2029-01-01": 917.624732292208, - "2028-01-01": 899.612738353695, - "2027-01-01": 881.354004772188, - "2026-01-01": 860.159069439061, - "2025-01-01": 847.208116811079, - "2024-01-01": 828.821901080692, - "2023-01-01": 784, - "2015-01-01": 784 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1122.94830793989, - "2034-01-01": 1101.2034327443, - "2033-01-01": 1079.72701279804, - "2032-01-01": 1058.78750335045, - "2031-01-01": 1038.3849044015, - "2030-01-01": 1018.25076070189, - "2029-01-01": 998.385072251598, - "2028-01-01": 978.78783905064, - "2027-01-01": 958.922150600352, - "2026-01-01": 935.86184468306, - "2025-01-01": 921.771076071238, - "2024-01-01": 901.766685742131, - "2023-01-01": 853, - "2015-01-01": 853 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1204.56940417936, - "2034-01-01": 1181.24401050532, - "2033-01-01": 1158.20658465441, - "2032-01-01": 1135.74509444977, - "2031-01-01": 1113.85953989141, - "2030-01-01": 1092.26195315619, - "2029-01-01": 1070.95233424409, - "2028-01-01": 1049.93068315514, - "2027-01-01": 1028.62106424305, - "2026-01-01": 1003.88462823564, - "2025-01-01": 988.769677145583, - "2024-01-01": 967.311274858206, - "2023-01-01": 915, - "2015-01-01": 915 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1279.60815394791, - "2034-01-01": 1254.82970296303, - "2033-01-01": 1230.35715878042, - "2032-01-01": 1206.49642820238, - "2031-01-01": 1183.24751122891, - "2030-01-01": 1160.30450105772, - "2029-01-01": 1137.66739768881, - "2028-01-01": 1115.33620112218, - "2027-01-01": 1092.69909775327, - "2026-01-01": 1066.4217034372, - "2025-01-01": 1050.36516523006, - "2024-01-01": 1027.57001001331, - "2023-01-01": 972, - "2015-01-01": 972 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1348.06455724554, - "2034-01-01": 1321.96051011743, - "2033-01-01": 1296.17873517608, - "2032-01-01": 1271.04150460827, - "2031-01-01": 1246.54881841399, - "2030-01-01": 1222.37840440648, - "2029-01-01": 1198.53026258574, - "2028-01-01": 1175.00439295176, - "2027-01-01": 1151.15625113102, - "2026-01-01": 1123.47307028775, - "2025-01-01": 1106.55754032467, - "2024-01-01": 1082.54289120743, - "2023-01-01": 1024, - "2015-01-01": 1024 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1412.57155266061, - "2034-01-01": 1385.21838608984, - "2033-01-01": 1358.20291293353, - "2032-01-01": 1331.86282660613, - "2031-01-01": 1306.19812710763, - "2030-01-01": 1280.87112102359, - "2029-01-01": 1255.881808354, - "2028-01-01": 1231.23018909887, - "2027-01-01": 1206.24087642928, - "2026-01-01": 1177.23301212769, - "2025-01-01": 1159.50804762537, - "2024-01-01": 1134.34426002498, - "2023-01-01": 1073, - "2015-01-01": 1073 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1496.82558748845, - "2034-01-01": 1467.84091797218, - "2033-01-01": 1439.21408388204, - "2032-01-01": 1411.30292064415, - "2031-01-01": 1384.10742825851, - "2030-01-01": 1357.269771299, - "2029-01-01": 1330.78994976561, - "2028-01-01": 1304.66796365836, - "2027-01-01": 1278.18814212497, - "2026-01-01": 1247.45007902068, - "2025-01-01": 1228.66789389566, - "2024-01-01": 1202.00319072544, - "2023-01-01": 1137, - "2015-01-01": 1137 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1606.09253890582, - "2034-01-01": 1574.99201400709, - "2033-01-01": 1544.27544620588, - "2032-01-01": 1514.3267925997, - "2031-01-01": 1485.14605318855, - "2030-01-01": 1456.34927087491, - "2029-01-01": 1427.93644565879, - "2028-01-01": 1399.90757754019, - "2027-01-01": 1371.49475232407, - "2026-01-01": 1338.51283764752, - "2025-01-01": 1318.35956952744, - "2024-01-01": 1289.74836647761, - "2023-01-01": 1220, - "2015-01-01": 1220 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1706.14420526388, - "2034-01-01": 1673.10627061737, - "2033-01-01": 1640.47621170723, - "2032-01-01": 1608.66190426984, - "2031-01-01": 1577.66334830521, - "2030-01-01": 1547.07266807696, - "2029-01-01": 1516.88986358508, - "2028-01-01": 1487.11493482958, - "2027-01-01": 1456.9321303377, - "2026-01-01": 1421.89560458294, - "2025-01-01": 1400.48688697342, - "2024-01-01": 1370.09334668441, - "2023-01-01": 1296, - "2015-01-01": 1296 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1798.29705585684, - "2034-01-01": 1763.47466486368, - "2033-01-01": 1729.08217993216, - "2032-01-01": 1695.54950712392, - "2031-01-01": 1662.87664643898, - "2030-01-01": 1630.63369181568, - "2029-01-01": 1598.82064325403, - "2028-01-01": 1567.43750075401, - "2027-01-01": 1535.62445219236, - "2026-01-01": 1498.69552149714, - "2025-01-01": 1476.13046883155, - "2024-01-01": 1444.09530213804, - "2023-01-01": 1366, - "2015-01-01": 1366 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1885.18402927306, - "2034-01-01": 1848.67915086734, - "2033-01-01": 1812.6249499728, - "2032-01-01": 1777.47210410063, - "2031-01-01": 1743.22061325082, - "2030-01-01": 1709.41979991219, - "2029-01-01": 1676.06966408475, - "2028-01-01": 1643.17020576848, - "2027-01-01": 1609.82006994104, - "2026-01-01": 1571.10687173053, - "2025-01-01": 1547.45156029779, - "2024-01-01": 1513.8685744229, - "2023-01-01": 1432, - "2015-01-01": 1432 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1974.70394127764, - "2034-01-01": 1936.46559099232, - "2033-01-01": 1898.69931910559, - "2032-01-01": 1861.87720401602, - "2031-01-01": 1825.99924572363, - "2030-01-01": 1790.59336582981, - "2029-01-01": 1755.65956433458, - "2028-01-01": 1721.19784123794, - "2027-01-01": 1686.26403974271, - "2026-01-01": 1645.71250530433, - "2025-01-01": 1620.93389695997, - "2024-01-01": 1585.75618829214, - "2023-01-01": 1500, - "2015-01-01": 1500 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2070.80619975316, - "2034-01-01": 2030.70691642062, - "2033-01-01": 1991.10268596873, - "2032-01-01": 1952.48856127814, - "2031-01-01": 1914.86454234884, - "2030-01-01": 1877.7355763002, - "2029-01-01": 1841.1016631322, - "2028-01-01": 1804.96280284485, - "2027-01-01": 1768.32888967685, - "2026-01-01": 1725.80384722914, - "2025-01-01": 1699.81934661202, - "2024-01-01": 1662.92965612236, - "2023-01-01": 1573, - "2015-01-01": 1573 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2159.00964246356, - "2034-01-01": 2117.20237948494, - "2033-01-01": 2075.91125555544, - "2032-01-01": 2035.65240972418, - "2031-01-01": 1996.42584199116, - "2030-01-01": 1957.71541330726, - "2029-01-01": 1919.52112367248, - "2028-01-01": 1881.84297308681, - "2027-01-01": 1843.64868345203, - "2026-01-01": 1799.31233913273, - "2025-01-01": 1772.22106067624, - "2024-01-01": 1733.76009919941, - "2023-01-01": 1640, - "2015-01-01": 1640 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2244.58014658559, - "2034-01-01": 2201.11588842794, - "2033-01-01": 2158.18822605002, - "2032-01-01": 2116.33375523155, - "2031-01-01": 2075.55247597252, - "2030-01-01": 2035.30779249322, - "2029-01-01": 1995.59970479364, - "2028-01-01": 1956.42821287379, - "2027-01-01": 1916.72012517421, - "2026-01-01": 1870.62654769592, - "2025-01-01": 1842.4615295445, - "2024-01-01": 1802.47620069207, - "2023-01-01": 1705, - "2015-01-01": 1705 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2738.256131905, - "2034-01-01": 2685.23228617602, - "2033-01-01": 2632.86305582642, - "2032-01-01": 2581.80305623555, - "2031-01-01": 2532.05228740343, - "2030-01-01": 2482.95613395067, - "2029-01-01": 2434.51459587729, - "2028-01-01": 2386.72767318327, - "2027-01-01": 2338.28613510989, - "2026-01-01": 2282.054674022, - "2025-01-01": 2247.6950037845, - "2024-01-01": 2198.9152477651, - "2023-01-01": 2080, - "2015-01-01": 2080 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 602.942936736774, - "2034-01-01": 591.26749378299, - "2033-01-01": 579.73619210024, - "2032-01-01": 568.493172959559, - "2031-01-01": 557.538436360947, - "2030-01-01": 546.727841033369, - "2029-01-01": 536.061386976826, - "2028-01-01": 525.539074191316, - "2027-01-01": 514.872620134773, - "2026-01-01": 502.490884952921, - "2025-01-01": 494.925149871778, - "2024-01-01": 484.1842228252, - "2023-01-01": 458, - "2015-01-01": 458 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 860.970918397052, - "2034-01-01": 844.298997672653, - "2033-01-01": 827.832903130037, - "2032-01-01": 811.778460950986, - "2031-01-01": 796.135671135501, - "2030-01-01": 780.698707501798, - "2029-01-01": 765.467570049877, - "2028-01-01": 750.44225877974, - "2027-01-01": 735.21112132782, - "2026-01-01": 717.530652312686, - "2025-01-01": 706.727179074548, - "2024-01-01": 691.389698095373, - "2023-01-01": 654, - "2015-01-01": 654 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 991.301378521377, - "2034-01-01": 972.105726678147, - "2033-01-01": 953.147058191006, - "2032-01-01": 934.662356416043, - "2031-01-01": 916.65162135326, - "2030-01-01": 898.877869646565, - "2029-01-01": 881.34110129596, - "2028-01-01": 864.041316301444, - "2027-01-01": 846.504547950839, - "2026-01-01": 826.147677662771, - "2025-01-01": 813.708816273906, - "2024-01-01": 796.049606522655, - "2023-01-01": 753, - "2015-01-01": 753 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1101.88479923292, - "2034-01-01": 1080.54779977372, - "2033-01-01": 1059.47422006092, - "2032-01-01": 1038.92747984094, - "2031-01-01": 1018.90757911378, - "2030-01-01": 999.151098133035, - "2029-01-01": 979.658036898696, - "2028-01-01": 960.428395410768, - "2027-01-01": 940.93533417643, - "2026-01-01": 918.307577959814, - "2025-01-01": 904.481114503665, - "2024-01-01": 884.851953067015, - "2023-01-01": 837, - "2015-01-01": 837 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1199.30352700262, - "2034-01-01": 1176.08010226267, - "2033-01-01": 1153.14338647013, - "2032-01-01": 1130.7800885724, - "2031-01-01": 1108.99020856948, - "2030-01-01": 1087.48703751397, - "2029-01-01": 1066.27057540587, - "2028-01-01": 1045.34082224517, - "2027-01-01": 1024.12436013707, - "2026-01-01": 999.496061554827, - "2025-01-01": 984.44718675369, - "2024-01-01": 963.082591689427, - "2023-01-01": 911, - "2015-01-01": 911 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1286.19050041884, - "2034-01-01": 1261.28458826633, - "2033-01-01": 1236.68615651077, - "2032-01-01": 1212.7026855491, - "2031-01-01": 1189.33417538132, - "2030-01-01": 1166.27314561048, - "2029-01-01": 1143.51959623659, - "2028-01-01": 1121.07352725964, - "2027-01-01": 1098.31997788575, - "2026-01-01": 1071.90741178822, - "2025-01-01": 1055.76827821993, - "2024-01-01": 1032.85586397428, - "2023-01-01": 977, - "2015-01-01": 977 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1366.49512736413, - "2034-01-01": 1340.03418896669, - "2033-01-01": 1313.89992882107, - "2032-01-01": 1288.41902517909, - "2031-01-01": 1263.59147804075, - "2030-01-01": 1239.09060915423, - "2029-01-01": 1214.91641851953, - "2028-01-01": 1191.06890613665, - "2027-01-01": 1166.89471550195, - "2026-01-01": 1138.83305367059, - "2025-01-01": 1121.6862566963, - "2024-01-01": 1097.34328229816, - "2023-01-01": 1038, - "2015-01-01": 1038 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1438.90093854431, - "2034-01-01": 1411.03792730307, - "2033-01-01": 1383.51890385494, - "2032-01-01": 1356.68785599301, - "2031-01-01": 1330.54478371728, - "2030-01-01": 1304.74569923466, - "2029-01-01": 1279.29060254513, - "2028-01-01": 1254.17949364871, - "2027-01-01": 1228.72439695919, - "2026-01-01": 1199.17584553175, - "2025-01-01": 1181.12049958483, - "2024-01-01": 1155.48767586887, - "2023-01-01": 1093, - "2015-01-01": 1093 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1507.35734184193, - "2034-01-01": 1478.16873445747, - "2033-01-01": 1449.3404802506, - "2032-01-01": 1421.2329323989, - "2031-01-01": 1393.84609090237, - "2030-01-01": 1366.81960258342, - "2029-01-01": 1340.15346744206, - "2028-01-01": 1313.84768547829, - "2027-01-01": 1287.18155033693, - "2026-01-01": 1256.2272123823, - "2025-01-01": 1237.31287467945, - "2024-01-01": 1210.460557063, - "2023-01-01": 1145, - "2015-01-01": 1145 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1598.19372314071, - "2034-01-01": 1567.24615164312, - "2033-01-01": 1536.68064892946, - "2032-01-01": 1506.87928378363, - "2031-01-01": 1477.84205620565, - "2030-01-01": 1449.18689741159, - "2029-01-01": 1420.91380740145, - "2028-01-01": 1393.02278617524, - "2027-01-01": 1364.7496961651, - "2026-01-01": 1331.9299876263, - "2025-01-01": 1311.8758339396, - "2024-01-01": 1283.40534172444, - "2023-01-01": 1214, - "2015-01-01": 1214 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1714.04302102899, - "2034-01-01": 1680.85213298134, - "2033-01-01": 1648.07100898365, - "2032-01-01": 1616.10941308591, - "2031-01-01": 1584.96734528811, - "2030-01-01": 1554.23504154028, - "2029-01-01": 1523.91250184242, - "2028-01-01": 1493.99972619453, - "2027-01-01": 1463.67718649667, - "2026-01-01": 1428.47845460415, - "2025-01-01": 1406.97062256126, - "2024-01-01": 1376.43637143758, - "2023-01-01": 1302, - "2015-01-01": 1302 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1821.99350315217, - "2034-01-01": 1786.71225195558, - "2033-01-01": 1751.86657176142, - "2032-01-01": 1717.89203357212, - "2031-01-01": 1684.78863738766, - "2030-01-01": 1652.12081220564, - "2029-01-01": 1619.88855802604, - "2028-01-01": 1588.09187484887, - "2027-01-01": 1555.85962066927, - "2026-01-01": 1518.44407156079, - "2025-01-01": 1495.58167559507, - "2024-01-01": 1463.12437639755, - "2023-01-01": 1384, - "2015-01-01": 1384 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1919.41223092187, - "2034-01-01": 1882.24455444454, - "2033-01-01": 1845.53573817063, - "2032-01-01": 1809.74464230357, - "2031-01-01": 1774.87126684336, - "2030-01-01": 1740.45675158658, - "2029-01-01": 1706.50109653321, - "2028-01-01": 1673.00430168327, - "2027-01-01": 1639.04864662991, - "2026-01-01": 1599.6325551558, - "2025-01-01": 1575.54774784509, - "2024-01-01": 1541.35501501996, - "2023-01-01": 1458, - "2015-01-01": 1458 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2011.56508151483, - "2034-01-01": 1972.61294869085, - "2033-01-01": 1934.14170639556, - "2032-01-01": 1896.63224515766, - "2031-01-01": 1860.08456497713, - "2030-01-01": 1824.0177753253, - "2029-01-01": 1788.43187620216, - "2028-01-01": 1753.32686760771, - "2027-01-01": 1717.74096848457, - "2026-01-01": 1676.43247207001, - "2025-01-01": 1651.19132970323, - "2024-01-01": 1615.35697047359, - "2023-01-01": 1528, - "2015-01-01": 1528 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2107.66733999034, - "2034-01-01": 2066.85427411914, - "2033-01-01": 2026.5450732587, - "2032-01-01": 1987.24360241977, - "2031-01-01": 1948.94986160235, - "2030-01-01": 1911.15998579569, - "2029-01-01": 1873.87397499978, - "2028-01-01": 1837.09182921462, - "2027-01-01": 1799.80581841872, - "2026-01-01": 1756.52381399482, - "2025-01-01": 1730.07677935528, - "2024-01-01": 1692.53043830381, - "2023-01-01": 1601, - "2015-01-01": 1601 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2209.03547564259, - "2034-01-01": 2166.25950779008, - "2033-01-01": 2124.01163830612, - "2032-01-01": 2082.81996555926, - "2031-01-01": 2042.6844895495, - "2030-01-01": 2003.07711190828, - "2029-01-01": 1963.99783263562, - "2028-01-01": 1925.4466517315, - "2027-01-01": 1886.36737245884, - "2026-01-01": 1841.00372260044, - "2025-01-01": 1813.28471939922, - "2024-01-01": 1773.93258930281, - "2023-01-01": 1678, - "2015-01-01": 1678 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2303.82126482392, - "2034-01-01": 2259.20985615771, - "2033-01-01": 2215.14920562319, - "2032-01-01": 2172.19007135203, - "2031-01-01": 2130.33245334423, - "2030-01-01": 2089.02559346811, - "2029-01-01": 2048.26949172368, - "2028-01-01": 2008.06414811093, - "2027-01-01": 1967.30804636649, - "2026-01-01": 1919.99792285505, - "2025-01-01": 1891.0895464533, - "2024-01-01": 1850.04888634083, - "2023-01-01": 1750, - "2015-01-01": 1750 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2394.65764612269, - "2034-01-01": 2348.28727334336, - "2033-01-01": 2302.48937430204, - "2032-01-01": 2257.83642273676, - "2031-01-01": 2214.32841864752, - "2030-01-01": 2171.39288829628, - "2029-01-01": 2129.02983168307, - "2028-01-01": 2087.23924880787, - "2027-01-01": 2044.87619219466, - "2026-01-01": 1995.70069809905, - "2025-01-01": 1965.65250571346, - "2024-01-01": 1922.99367100227, - "2023-01-01": 1819, - "2015-01-01": 1819 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AZ.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2921.24536379673, - "2034-01-01": 2864.67809760798, - "2033-01-01": 2808.8091927302, - "2032-01-01": 2754.33701047437, - "2031-01-01": 2701.26155084048, - "2030-01-01": 2648.88445251757, - "2029-01-01": 2597.20571550562, - "2028-01-01": 2546.22533980465, - "2027-01-01": 2494.54660279271, - "2026-01-01": 2434.5573661802, - "2025-01-01": 2397.90154490279, - "2024-01-01": 2345.86198788017, - "2023-01-01": 2219, - "2015-01-01": 2219 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR", - "description": null, - "label": "AR", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 502.891270378706, - "2034-01-01": 493.153237172712, - "2033-01-01": 483.53542659889, - "2032-01-01": 474.158061289414, - "2031-01-01": 465.021141244283, - "2030-01-01": 456.004443831325, - "2029-01-01": 447.10796905054, - "2028-01-01": 438.331716901928, - "2027-01-01": 429.435242121143, - "2026-01-01": 419.108118017502, - "2025-01-01": 412.797832425806, - "2024-01-01": 403.839242618399, - "2023-01-01": 382, - "2015-01-01": 382 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 720.108703919247, - "2034-01-01": 706.164452181867, - "2033-01-01": 692.392351700505, - "2032-01-01": 678.964553731176, - "2031-01-01": 665.881058273882, - "2030-01-01": 652.969714072605, - "2029-01-01": 640.230521127344, - "2028-01-01": 627.663479438101, - "2027-01-01": 614.92428649284, - "2026-01-01": 600.136493600977, - "2025-01-01": 591.100561091403, - "2024-01-01": 578.272423330534, - "2023-01-01": 547, - "2015-01-01": 547 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 829.37565533661, - "2034-01-01": 813.315548216776, - "2033-01-01": 797.453714024347, - "2032-01-01": 781.98842568673, - "2031-01-01": 766.919683203923, - "2030-01-01": 752.049213648521, - "2029-01-01": 737.377017020524, - "2028-01-01": 722.903093319933, - "2027-01-01": 708.230896691937, - "2026-01-01": 691.199252227817, - "2025-01-01": 680.792236723189, - "2024-01-01": 666.017599082699, - "2023-01-01": 630, - "2015-01-01": 630 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 922.844975223752, - "2034-01-01": 904.974919523746, - "2033-01-01": 887.325481795345, - "2032-01-01": 870.117280010155, - "2031-01-01": 853.350314168174, - "2030-01-01": 836.803966297799, - "2029-01-01": 820.478236399028, - "2028-01-01": 804.373124471862, - "2027-01-01": 788.047394573092, - "2026-01-01": 769.096310812221, - "2025-01-01": 757.516441179294, - "2024-01-01": 741.076725328527, - "2023-01-01": 701, - "2015-01-01": 701 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1004.46607146323, - "2034-01-01": 985.015497284762, - "2033-01-01": 965.80505365171, - "2032-01-01": 947.074871109484, - "2031-01-01": 928.824949658084, - "2030-01-01": 910.815158752097, - "2029-01-01": 893.045498391524, - "2028-01-01": 875.515968576363, - "2027-01-01": 857.74630821579, - "2026-01-01": 837.1190943648, - "2025-01-01": 824.515042253639, - "2024-01-01": 806.621314444602, - "2023-01-01": 763, - "2015-01-01": 763 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1076.87188264341, - "2034-01-01": 1056.01923562115, - "2033-01-01": 1035.42402868558, - "2032-01-01": 1015.3437019234, - "2031-01-01": 995.778255334617, - "2030-01-01": 976.470248832524, - "2029-01-01": 957.419682417125, - "2028-01-01": 938.626556088421, - "2027-01-01": 919.575989673023, - "2026-01-01": 897.461886225959, - "2025-01-01": 883.949285142172, - "2024-01-01": 864.765708015314, - "2023-01-01": 818, - "2015-01-01": 818 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1144.01181664685, - "2034-01-01": 1121.85906571489, - "2033-01-01": 1099.97980553517, - "2032-01-01": 1078.64752685995, - "2031-01-01": 1057.86222968922, - "2030-01-01": 1037.35042327074, - "2029-01-01": 1017.1121076045, - "2028-01-01": 997.147282690511, - "2027-01-01": 976.908967024275, - "2026-01-01": 953.416111406306, - "2025-01-01": 939.061037638811, - "2024-01-01": 918.681418417247, - "2023-01-01": 869, - "2015-01-01": 869 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1205.88587347355, - "2034-01-01": 1182.53498756598, - "2033-01-01": 1159.47238420048, - "2032-01-01": 1136.98634591912, - "2031-01-01": 1115.07687272189, - "2030-01-01": 1093.45568206674, - "2029-01-01": 1072.12277395365, - "2028-01-01": 1051.07814838263, - "2027-01-01": 1029.74524026955, - "2026-01-01": 1004.98176990584, - "2025-01-01": 989.850299743557, - "2024-01-01": 968.368445650401, - "2023-01-01": 916, - "2015-01-01": 916 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1262.49405312351, - "2034-01-01": 1238.04700117443, - "2033-01-01": 1213.90176468151, - "2032-01-01": 1190.36015910091, - "2031-01-01": 1167.42218443264, - "2030-01-01": 1144.78602522053, - "2029-01-01": 1122.45168146458, - "2028-01-01": 1100.41915316479, - "2027-01-01": 1078.08480940884, - "2026-01-01": 1052.15886172457, - "2025-01-01": 1036.31707145641, - "2024-01-01": 1013.82678971478, - "2023-01-01": 959, - "2015-01-01": 959 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1338.84927218624, - "2034-01-01": 1312.9236706928, - "2033-01-01": 1287.31813835359, - "2032-01-01": 1262.35274432286, - "2031-01-01": 1238.02748860062, - "2030-01-01": 1214.02230203261, - "2029-01-01": 1190.33718461885, - "2028-01-01": 1166.97213635932, - "2027-01-01": 1143.28701894556, - "2026-01-01": 1115.79307859633, - "2025-01-01": 1098.99318213886, - "2024-01-01": 1075.14269566207, - "2023-01-01": 1017, - "2015-01-01": 1017 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1437.58446925012, - "2034-01-01": 1409.74695024241, - "2033-01-01": 1382.25310430887, - "2032-01-01": 1355.44660452366, - "2031-01-01": 1329.3274508868, - "2030-01-01": 1303.5519703241, - "2029-01-01": 1278.12016283558, - "2028-01-01": 1253.03202842122, - "2027-01-01": 1227.60022093269, - "2026-01-01": 1198.07870386155, - "2025-01-01": 1180.03987698686, - "2024-01-01": 1154.43050507668, - "2023-01-01": 1092, - "2015-01-01": 1092 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1527.10438125471, - "2034-01-01": 1497.5333903674, - "2033-01-01": 1468.32747344166, - "2032-01-01": 1439.85170443906, - "2031-01-01": 1412.1060833596, - "2030-01-01": 1384.72553624172, - "2029-01-01": 1357.71006308541, - "2028-01-01": 1331.05966389067, - "2027-01-01": 1304.04419073436, - "2026-01-01": 1272.68433743535, - "2025-01-01": 1253.52221364905, - "2024-01-01": 1226.31811894592, - "2023-01-01": 1160, - "2015-01-01": 1160 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1610.04194678837, - "2034-01-01": 1578.86494518907, - "2033-01-01": 1548.07284484409, - "2032-01-01": 1518.05054700773, - "2031-01-01": 1488.79805168, - "2030-01-01": 1459.93045760657, - "2029-01-01": 1431.44776478746, - "2028-01-01": 1403.34997322266, - "2027-01-01": 1374.86728040355, - "2026-01-01": 1341.80426265813, - "2025-01-01": 1321.60143732136, - "2024-01-01": 1292.91987885419, - "2023-01-01": 1223, - "2015-01-01": 1223 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1687.71363514529, - "2034-01-01": 1655.03259176811, - "2033-01-01": 1622.75501806224, - "2032-01-01": 1591.28438369903, - "2031-01-01": 1560.62068867846, - "2030-01-01": 1530.36046332921, - "2029-01-01": 1500.50370765129, - "2028-01-01": 1471.05042164469, - "2027-01-01": 1441.19366596677, - "2026-01-01": 1406.5356212001, - "2025-01-01": 1385.35817060179, - "2024-01-01": 1355.29295559368, - "2023-01-01": 1282, - "2015-01-01": 1282 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1768.01826209058, - "2034-01-01": 1733.78219246846, - "2033-01-01": 1699.96879037254, - "2032-01-01": 1667.00072332901, - "2031-01-01": 1634.87799133789, - "2030-01-01": 1603.17792687296, - "2029-01-01": 1571.90052993423, - "2028-01-01": 1541.0458005217, - "2027-01-01": 1509.76840358297, - "2026-01-01": 1473.46126308247, - "2025-01-01": 1451.27614907816, - "2024-01-01": 1419.78037391756, - "2023-01-01": 1343, - "2015-01-01": 1343 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1853.58876621261, - "2034-01-01": 1817.69570141146, - "2033-01-01": 1782.24576086711, - "2032-01-01": 1747.68206883637, - "2031-01-01": 1714.00462531924, - "2030-01-01": 1680.77030605892, - "2029-01-01": 1647.97911105539, - "2028-01-01": 1615.63104030868, - "2027-01-01": 1582.83984530515, - "2026-01-01": 1544.77547164566, - "2025-01-01": 1521.51661794643, - "2024-01-01": 1488.49647541022, - "2023-01-01": 1408, - "2015-01-01": 1408 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1933.89339315791, - "2034-01-01": 1896.44530211182, - "2033-01-01": 1859.45953317741, - "2032-01-01": 1823.39840846636, - "2031-01-01": 1788.26192797867, - "2030-01-01": 1753.58776960266, - "2029-01-01": 1719.37593333833, - "2028-01-01": 1685.62641918569, - "2027-01-01": 1651.41458292136, - "2026-01-01": 1611.70111352804, - "2025-01-01": 1587.4345964228, - "2024-01-01": 1552.9838937341, - "2023-01-01": 1469, - "2015-01-01": 1469 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2010.24861222064, - "2034-01-01": 1971.32197163019, - "2033-01-01": 1932.87590684949, - "2032-01-01": 1895.39099368831, - "2031-01-01": 1858.86723214665, - "2030-01-01": 1822.82404641475, - "2029-01-01": 1787.2614364926, - "2028-01-01": 1752.17940238022, - "2027-01-01": 1716.61679245808, - "2026-01-01": 1675.3353303998, - "2025-01-01": 1650.11070710525, - "2024-01-01": 1614.2997996814, - "2023-01-01": 1527, - "2015-01-01": 1527 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2452.58229506683, - "2034-01-01": 2405.09026401247, - "2033-01-01": 2358.18455432914, - "2032-01-01": 2312.4514873879, - "2031-01-01": 2267.89106318874, - "2030-01-01": 2223.91696036063, - "2029-01-01": 2180.52917890355, - "2028-01-01": 2137.72771881752, - "2027-01-01": 2094.33993736044, - "2026-01-01": 2043.97493158797, - "2025-01-01": 2013.19990002429, - "2024-01-01": 1969.50918585884, - "2023-01-01": 1863, - "2015-01-01": 1863 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 563.448857911221, - "2034-01-01": 552.538181963143, - "2033-01-01": 541.762205718128, - "2032-01-01": 531.255628879238, - "2031-01-01": 521.018451446474, - "2030-01-01": 510.915973716773, - "2029-01-01": 500.948195690134, - "2028-01-01": 491.115117366558, - "2027-01-01": 481.147339339919, - "2026-01-01": 469.576634846834, - "2025-01-01": 462.506471932579, - "2024-01-01": 452.469099059357, - "2023-01-01": 428, - "2015-01-01": 428 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 805.679208041278, - "2034-01-01": 790.077961124868, - "2033-01-01": 774.66932219508, - "2032-01-01": 759.645899238537, - "2031-01-01": 745.007692255239, - "2030-01-01": 730.562093258563, - "2029-01-01": 716.309102248509, - "2028-01-01": 702.248719225078, - "2027-01-01": 687.995728215024, - "2026-01-01": 671.450702164165, - "2025-01-01": 661.341029959669, - "2024-01-01": 646.988524823193, - "2023-01-01": 612, - "2015-01-01": 612 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 928.110852400492, - "2034-01-01": 910.138827766392, - "2033-01-01": 892.388679979627, - "2032-01-01": 875.082285887531, - "2031-01-01": 858.219645490104, - "2030-01-01": 841.578881940011, - "2029-01-01": 825.159995237253, - "2028-01-01": 808.96298538183, - "2027-01-01": 792.544098679072, - "2026-01-01": 773.484877493033, - "2025-01-01": 761.838931571187, - "2024-01-01": 745.305408497306, - "2023-01-01": 705, - "2015-01-01": 705 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1032.11192664111, - "2034-01-01": 1012.12601555865, - "2033-01-01": 992.386844119188, - "2032-01-01": 973.141151965708, - "2031-01-01": 954.388939098215, - "2030-01-01": 935.883465873715, - "2029-01-01": 917.624732292208, - "2028-01-01": 899.612738353695, - "2027-01-01": 881.354004772188, - "2026-01-01": 860.159069439061, - "2025-01-01": 847.208116811079, - "2024-01-01": 828.821901080692, - "2023-01-01": 784, - "2015-01-01": 784 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1122.94830793989, - "2034-01-01": 1101.2034327443, - "2033-01-01": 1079.72701279804, - "2032-01-01": 1058.78750335045, - "2031-01-01": 1038.3849044015, - "2030-01-01": 1018.25076070189, - "2029-01-01": 998.385072251598, - "2028-01-01": 978.78783905064, - "2027-01-01": 958.922150600352, - "2026-01-01": 935.86184468306, - "2025-01-01": 921.771076071238, - "2024-01-01": 901.766685742131, - "2023-01-01": 853, - "2015-01-01": 853 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1204.56940417936, - "2034-01-01": 1181.24401050532, - "2033-01-01": 1158.20658465441, - "2032-01-01": 1135.74509444977, - "2031-01-01": 1113.85953989141, - "2030-01-01": 1092.26195315619, - "2029-01-01": 1070.95233424409, - "2028-01-01": 1049.93068315514, - "2027-01-01": 1028.62106424305, - "2026-01-01": 1003.88462823564, - "2025-01-01": 988.769677145583, - "2024-01-01": 967.311274858206, - "2023-01-01": 915, - "2015-01-01": 915 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1279.60815394791, - "2034-01-01": 1254.82970296303, - "2033-01-01": 1230.35715878042, - "2032-01-01": 1206.49642820238, - "2031-01-01": 1183.24751122891, - "2030-01-01": 1160.30450105772, - "2029-01-01": 1137.66739768881, - "2028-01-01": 1115.33620112218, - "2027-01-01": 1092.69909775327, - "2026-01-01": 1066.4217034372, - "2025-01-01": 1050.36516523006, - "2024-01-01": 1027.57001001331, - "2023-01-01": 972, - "2015-01-01": 972 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1348.06455724554, - "2034-01-01": 1321.96051011743, - "2033-01-01": 1296.17873517608, - "2032-01-01": 1271.04150460827, - "2031-01-01": 1246.54881841399, - "2030-01-01": 1222.37840440648, - "2029-01-01": 1198.53026258574, - "2028-01-01": 1175.00439295176, - "2027-01-01": 1151.15625113102, - "2026-01-01": 1123.47307028775, - "2025-01-01": 1106.55754032467, - "2024-01-01": 1082.54289120743, - "2023-01-01": 1024, - "2015-01-01": 1024 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1412.57155266061, - "2034-01-01": 1385.21838608984, - "2033-01-01": 1358.20291293353, - "2032-01-01": 1331.86282660613, - "2031-01-01": 1306.19812710763, - "2030-01-01": 1280.87112102359, - "2029-01-01": 1255.881808354, - "2028-01-01": 1231.23018909887, - "2027-01-01": 1206.24087642928, - "2026-01-01": 1177.23301212769, - "2025-01-01": 1159.50804762537, - "2024-01-01": 1134.34426002498, - "2023-01-01": 1073, - "2015-01-01": 1073 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1496.82558748845, - "2034-01-01": 1467.84091797218, - "2033-01-01": 1439.21408388204, - "2032-01-01": 1411.30292064415, - "2031-01-01": 1384.10742825851, - "2030-01-01": 1357.269771299, - "2029-01-01": 1330.78994976561, - "2028-01-01": 1304.66796365836, - "2027-01-01": 1278.18814212497, - "2026-01-01": 1247.45007902068, - "2025-01-01": 1228.66789389566, - "2024-01-01": 1202.00319072544, - "2023-01-01": 1137, - "2015-01-01": 1137 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1606.09253890582, - "2034-01-01": 1574.99201400709, - "2033-01-01": 1544.27544620588, - "2032-01-01": 1514.3267925997, - "2031-01-01": 1485.14605318855, - "2030-01-01": 1456.34927087491, - "2029-01-01": 1427.93644565879, - "2028-01-01": 1399.90757754019, - "2027-01-01": 1371.49475232407, - "2026-01-01": 1338.51283764752, - "2025-01-01": 1318.35956952744, - "2024-01-01": 1289.74836647761, - "2023-01-01": 1220, - "2015-01-01": 1220 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1706.14420526388, - "2034-01-01": 1673.10627061737, - "2033-01-01": 1640.47621170723, - "2032-01-01": 1608.66190426984, - "2031-01-01": 1577.66334830521, - "2030-01-01": 1547.07266807696, - "2029-01-01": 1516.88986358508, - "2028-01-01": 1487.11493482958, - "2027-01-01": 1456.9321303377, - "2026-01-01": 1421.89560458294, - "2025-01-01": 1400.48688697342, - "2024-01-01": 1370.09334668441, - "2023-01-01": 1296, - "2015-01-01": 1296 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1798.29705585684, - "2034-01-01": 1763.47466486368, - "2033-01-01": 1729.08217993216, - "2032-01-01": 1695.54950712392, - "2031-01-01": 1662.87664643898, - "2030-01-01": 1630.63369181568, - "2029-01-01": 1598.82064325403, - "2028-01-01": 1567.43750075401, - "2027-01-01": 1535.62445219236, - "2026-01-01": 1498.69552149714, - "2025-01-01": 1476.13046883155, - "2024-01-01": 1444.09530213804, - "2023-01-01": 1366, - "2015-01-01": 1366 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1885.18402927306, - "2034-01-01": 1848.67915086734, - "2033-01-01": 1812.6249499728, - "2032-01-01": 1777.47210410063, - "2031-01-01": 1743.22061325082, - "2030-01-01": 1709.41979991219, - "2029-01-01": 1676.06966408475, - "2028-01-01": 1643.17020576848, - "2027-01-01": 1609.82006994104, - "2026-01-01": 1571.10687173053, - "2025-01-01": 1547.45156029779, - "2024-01-01": 1513.8685744229, - "2023-01-01": 1432, - "2015-01-01": 1432 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1974.70394127764, - "2034-01-01": 1936.46559099232, - "2033-01-01": 1898.69931910559, - "2032-01-01": 1861.87720401602, - "2031-01-01": 1825.99924572363, - "2030-01-01": 1790.59336582981, - "2029-01-01": 1755.65956433458, - "2028-01-01": 1721.19784123794, - "2027-01-01": 1686.26403974271, - "2026-01-01": 1645.71250530433, - "2025-01-01": 1620.93389695997, - "2024-01-01": 1585.75618829214, - "2023-01-01": 1500, - "2015-01-01": 1500 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2070.80619975316, - "2034-01-01": 2030.70691642062, - "2033-01-01": 1991.10268596873, - "2032-01-01": 1952.48856127814, - "2031-01-01": 1914.86454234884, - "2030-01-01": 1877.7355763002, - "2029-01-01": 1841.1016631322, - "2028-01-01": 1804.96280284485, - "2027-01-01": 1768.32888967685, - "2026-01-01": 1725.80384722914, - "2025-01-01": 1699.81934661202, - "2024-01-01": 1662.92965612236, - "2023-01-01": 1573, - "2015-01-01": 1573 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2159.00964246356, - "2034-01-01": 2117.20237948494, - "2033-01-01": 2075.91125555544, - "2032-01-01": 2035.65240972418, - "2031-01-01": 1996.42584199116, - "2030-01-01": 1957.71541330726, - "2029-01-01": 1919.52112367248, - "2028-01-01": 1881.84297308681, - "2027-01-01": 1843.64868345203, - "2026-01-01": 1799.31233913273, - "2025-01-01": 1772.22106067624, - "2024-01-01": 1733.76009919941, - "2023-01-01": 1640, - "2015-01-01": 1640 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2244.58014658559, - "2034-01-01": 2201.11588842794, - "2033-01-01": 2158.18822605002, - "2032-01-01": 2116.33375523155, - "2031-01-01": 2075.55247597252, - "2030-01-01": 2035.30779249322, - "2029-01-01": 1995.59970479364, - "2028-01-01": 1956.42821287379, - "2027-01-01": 1916.72012517421, - "2026-01-01": 1870.62654769592, - "2025-01-01": 1842.4615295445, - "2024-01-01": 1802.47620069207, - "2023-01-01": 1705, - "2015-01-01": 1705 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2738.256131905, - "2034-01-01": 2685.23228617602, - "2033-01-01": 2632.86305582642, - "2032-01-01": 2581.80305623555, - "2031-01-01": 2532.05228740343, - "2030-01-01": 2482.95613395067, - "2029-01-01": 2434.51459587729, - "2028-01-01": 2386.72767318327, - "2027-01-01": 2338.28613510989, - "2026-01-01": 2282.054674022, - "2025-01-01": 2247.6950037845, - "2024-01-01": 2198.9152477651, - "2023-01-01": 2080, - "2015-01-01": 2080 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 602.942936736774, - "2034-01-01": 591.26749378299, - "2033-01-01": 579.73619210024, - "2032-01-01": 568.493172959559, - "2031-01-01": 557.538436360947, - "2030-01-01": 546.727841033369, - "2029-01-01": 536.061386976826, - "2028-01-01": 525.539074191316, - "2027-01-01": 514.872620134773, - "2026-01-01": 502.490884952921, - "2025-01-01": 494.925149871778, - "2024-01-01": 484.1842228252, - "2023-01-01": 458, - "2015-01-01": 458 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 860.970918397052, - "2034-01-01": 844.298997672653, - "2033-01-01": 827.832903130037, - "2032-01-01": 811.778460950986, - "2031-01-01": 796.135671135501, - "2030-01-01": 780.698707501798, - "2029-01-01": 765.467570049877, - "2028-01-01": 750.44225877974, - "2027-01-01": 735.21112132782, - "2026-01-01": 717.530652312686, - "2025-01-01": 706.727179074548, - "2024-01-01": 691.389698095373, - "2023-01-01": 654, - "2015-01-01": 654 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 991.301378521377, - "2034-01-01": 972.105726678147, - "2033-01-01": 953.147058191006, - "2032-01-01": 934.662356416043, - "2031-01-01": 916.65162135326, - "2030-01-01": 898.877869646565, - "2029-01-01": 881.34110129596, - "2028-01-01": 864.041316301444, - "2027-01-01": 846.504547950839, - "2026-01-01": 826.147677662771, - "2025-01-01": 813.708816273906, - "2024-01-01": 796.049606522655, - "2023-01-01": 753, - "2015-01-01": 753 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1101.88479923292, - "2034-01-01": 1080.54779977372, - "2033-01-01": 1059.47422006092, - "2032-01-01": 1038.92747984094, - "2031-01-01": 1018.90757911378, - "2030-01-01": 999.151098133035, - "2029-01-01": 979.658036898696, - "2028-01-01": 960.428395410768, - "2027-01-01": 940.93533417643, - "2026-01-01": 918.307577959814, - "2025-01-01": 904.481114503665, - "2024-01-01": 884.851953067015, - "2023-01-01": 837, - "2015-01-01": 837 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1199.30352700262, - "2034-01-01": 1176.08010226267, - "2033-01-01": 1153.14338647013, - "2032-01-01": 1130.7800885724, - "2031-01-01": 1108.99020856948, - "2030-01-01": 1087.48703751397, - "2029-01-01": 1066.27057540587, - "2028-01-01": 1045.34082224517, - "2027-01-01": 1024.12436013707, - "2026-01-01": 999.496061554827, - "2025-01-01": 984.44718675369, - "2024-01-01": 963.082591689427, - "2023-01-01": 911, - "2015-01-01": 911 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1286.19050041884, - "2034-01-01": 1261.28458826633, - "2033-01-01": 1236.68615651077, - "2032-01-01": 1212.7026855491, - "2031-01-01": 1189.33417538132, - "2030-01-01": 1166.27314561048, - "2029-01-01": 1143.51959623659, - "2028-01-01": 1121.07352725964, - "2027-01-01": 1098.31997788575, - "2026-01-01": 1071.90741178822, - "2025-01-01": 1055.76827821993, - "2024-01-01": 1032.85586397428, - "2023-01-01": 977, - "2015-01-01": 977 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1366.49512736413, - "2034-01-01": 1340.03418896669, - "2033-01-01": 1313.89992882107, - "2032-01-01": 1288.41902517909, - "2031-01-01": 1263.59147804075, - "2030-01-01": 1239.09060915423, - "2029-01-01": 1214.91641851953, - "2028-01-01": 1191.06890613665, - "2027-01-01": 1166.89471550195, - "2026-01-01": 1138.83305367059, - "2025-01-01": 1121.6862566963, - "2024-01-01": 1097.34328229816, - "2023-01-01": 1038, - "2015-01-01": 1038 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1438.90093854431, - "2034-01-01": 1411.03792730307, - "2033-01-01": 1383.51890385494, - "2032-01-01": 1356.68785599301, - "2031-01-01": 1330.54478371728, - "2030-01-01": 1304.74569923466, - "2029-01-01": 1279.29060254513, - "2028-01-01": 1254.17949364871, - "2027-01-01": 1228.72439695919, - "2026-01-01": 1199.17584553175, - "2025-01-01": 1181.12049958483, - "2024-01-01": 1155.48767586887, - "2023-01-01": 1093, - "2015-01-01": 1093 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1507.35734184193, - "2034-01-01": 1478.16873445747, - "2033-01-01": 1449.3404802506, - "2032-01-01": 1421.2329323989, - "2031-01-01": 1393.84609090237, - "2030-01-01": 1366.81960258342, - "2029-01-01": 1340.15346744206, - "2028-01-01": 1313.84768547829, - "2027-01-01": 1287.18155033693, - "2026-01-01": 1256.2272123823, - "2025-01-01": 1237.31287467945, - "2024-01-01": 1210.460557063, - "2023-01-01": 1145, - "2015-01-01": 1145 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1598.19372314071, - "2034-01-01": 1567.24615164312, - "2033-01-01": 1536.68064892946, - "2032-01-01": 1506.87928378363, - "2031-01-01": 1477.84205620565, - "2030-01-01": 1449.18689741159, - "2029-01-01": 1420.91380740145, - "2028-01-01": 1393.02278617524, - "2027-01-01": 1364.7496961651, - "2026-01-01": 1331.9299876263, - "2025-01-01": 1311.8758339396, - "2024-01-01": 1283.40534172444, - "2023-01-01": 1214, - "2015-01-01": 1214 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1714.04302102899, - "2034-01-01": 1680.85213298134, - "2033-01-01": 1648.07100898365, - "2032-01-01": 1616.10941308591, - "2031-01-01": 1584.96734528811, - "2030-01-01": 1554.23504154028, - "2029-01-01": 1523.91250184242, - "2028-01-01": 1493.99972619453, - "2027-01-01": 1463.67718649667, - "2026-01-01": 1428.47845460415, - "2025-01-01": 1406.97062256126, - "2024-01-01": 1376.43637143758, - "2023-01-01": 1302, - "2015-01-01": 1302 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1821.99350315217, - "2034-01-01": 1786.71225195558, - "2033-01-01": 1751.86657176142, - "2032-01-01": 1717.89203357212, - "2031-01-01": 1684.78863738766, - "2030-01-01": 1652.12081220564, - "2029-01-01": 1619.88855802604, - "2028-01-01": 1588.09187484887, - "2027-01-01": 1555.85962066927, - "2026-01-01": 1518.44407156079, - "2025-01-01": 1495.58167559507, - "2024-01-01": 1463.12437639755, - "2023-01-01": 1384, - "2015-01-01": 1384 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1919.41223092187, - "2034-01-01": 1882.24455444454, - "2033-01-01": 1845.53573817063, - "2032-01-01": 1809.74464230357, - "2031-01-01": 1774.87126684336, - "2030-01-01": 1740.45675158658, - "2029-01-01": 1706.50109653321, - "2028-01-01": 1673.00430168327, - "2027-01-01": 1639.04864662991, - "2026-01-01": 1599.6325551558, - "2025-01-01": 1575.54774784509, - "2024-01-01": 1541.35501501996, - "2023-01-01": 1458, - "2015-01-01": 1458 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2011.56508151483, - "2034-01-01": 1972.61294869085, - "2033-01-01": 1934.14170639556, - "2032-01-01": 1896.63224515766, - "2031-01-01": 1860.08456497713, - "2030-01-01": 1824.0177753253, - "2029-01-01": 1788.43187620216, - "2028-01-01": 1753.32686760771, - "2027-01-01": 1717.74096848457, - "2026-01-01": 1676.43247207001, - "2025-01-01": 1651.19132970323, - "2024-01-01": 1615.35697047359, - "2023-01-01": 1528, - "2015-01-01": 1528 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2107.66733999034, - "2034-01-01": 2066.85427411914, - "2033-01-01": 2026.5450732587, - "2032-01-01": 1987.24360241977, - "2031-01-01": 1948.94986160235, - "2030-01-01": 1911.15998579569, - "2029-01-01": 1873.87397499978, - "2028-01-01": 1837.09182921462, - "2027-01-01": 1799.80581841872, - "2026-01-01": 1756.52381399482, - "2025-01-01": 1730.07677935528, - "2024-01-01": 1692.53043830381, - "2023-01-01": 1601, - "2015-01-01": 1601 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2209.03547564259, - "2034-01-01": 2166.25950779008, - "2033-01-01": 2124.01163830612, - "2032-01-01": 2082.81996555926, - "2031-01-01": 2042.6844895495, - "2030-01-01": 2003.07711190828, - "2029-01-01": 1963.99783263562, - "2028-01-01": 1925.4466517315, - "2027-01-01": 1886.36737245884, - "2026-01-01": 1841.00372260044, - "2025-01-01": 1813.28471939922, - "2024-01-01": 1773.93258930281, - "2023-01-01": 1678, - "2015-01-01": 1678 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2303.82126482392, - "2034-01-01": 2259.20985615771, - "2033-01-01": 2215.14920562319, - "2032-01-01": 2172.19007135203, - "2031-01-01": 2130.33245334423, - "2030-01-01": 2089.02559346811, - "2029-01-01": 2048.26949172368, - "2028-01-01": 2008.06414811093, - "2027-01-01": 1967.30804636649, - "2026-01-01": 1919.99792285505, - "2025-01-01": 1891.0895464533, - "2024-01-01": 1850.04888634083, - "2023-01-01": 1750, - "2015-01-01": 1750 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2394.65764612269, - "2034-01-01": 2348.28727334336, - "2033-01-01": 2302.48937430204, - "2032-01-01": 2257.83642273676, - "2031-01-01": 2214.32841864752, - "2030-01-01": 2171.39288829628, - "2029-01-01": 2129.02983168307, - "2028-01-01": 2087.23924880787, - "2027-01-01": 2044.87619219466, - "2026-01-01": 1995.70069809905, - "2025-01-01": 1965.65250571346, - "2024-01-01": 1922.99367100227, - "2023-01-01": 1819, - "2015-01-01": 1819 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2921.24536379673, - "2034-01-01": 2864.67809760798, - "2033-01-01": 2808.8091927302, - "2032-01-01": 2754.33701047437, - "2031-01-01": 2701.26155084048, - "2030-01-01": 2648.88445251757, - "2029-01-01": 2597.20571550562, - "2028-01-01": 2546.22533980465, - "2027-01-01": 2494.54660279271, - "2026-01-01": 2434.5573661802, - "2025-01-01": 2397.90154490279, - "2024-01-01": 2345.86198788017, - "2023-01-01": 2219, - "2015-01-01": 2219 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 631.905261208846, - "2034-01-01": 619.668989117544, - "2033-01-01": 607.583782113788, - "2032-01-01": 595.800705285127, - "2031-01-01": 584.31975863156, - "2030-01-01": 572.98987706554, - "2029-01-01": 561.811060587066, - "2028-01-01": 550.78330919614, - "2027-01-01": 539.604492717666, - "2026-01-01": 526.628001697384, - "2025-01-01": 518.698847027191, - "2024-01-01": 507.441980253485, - "2023-01-01": 480, - "2015-01-01": 480 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 903.097935810975, - "2034-01-01": 885.610263613823, - "2033-01-01": 868.338488604289, - "2032-01-01": 851.498507969994, - "2031-01-01": 835.090321710938, - "2030-01-01": 818.898032639501, - "2029-01-01": 802.921640755682, - "2028-01-01": 787.161146059483, - "2027-01-01": 771.184754175665, - "2026-01-01": 752.639185759178, - "2025-01-01": 741.307102209694, - "2024-01-01": 725.219163445606, - "2023-01-01": 686, - "2015-01-01": 686 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1040.01074240623, - "2034-01-01": 1019.87187792262, - "2033-01-01": 999.98164139561, - "2032-01-01": 980.588660781772, - "2031-01-01": 961.692936081109, - "2030-01-01": 943.045839337034, - "2029-01-01": 924.647370549546, - "2028-01-01": 906.497529718646, - "2027-01-01": 888.099060931159, - "2026-01-01": 866.741919460278, - "2025-01-01": 853.691852398919, - "2024-01-01": 835.164925833861, - "2023-01-01": 790, - "2015-01-01": 790 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1155.86004029451, - "2034-01-01": 1133.47785926084, - "2033-01-01": 1111.3720014498, - "2032-01-01": 1089.81879008405, - "2031-01-01": 1068.81822516356, - "2030-01-01": 1048.09398346572, - "2029-01-01": 1027.64606499051, - "2028-01-01": 1007.47446973794, - "2027-01-01": 987.026551262731, - "2026-01-01": 963.290386438132, - "2025-01-01": 948.786641020571, - "2024-01-01": 928.195955547, - "2023-01-01": 878, - "2015-01-01": 878 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1257.22817594677, - "2034-01-01": 1232.88309293178, - "2033-01-01": 1208.83856649723, - "2032-01-01": 1185.39515322353, - "2031-01-01": 1162.55285311071, - "2030-01-01": 1140.01110957831, - "2029-01-01": 1117.76992262635, - "2028-01-01": 1095.82929225482, - "2027-01-01": 1073.58810530286, - "2026-01-01": 1047.77029504375, - "2025-01-01": 1031.99458106452, - "2024-01-01": 1009.598106546, - "2023-01-01": 955, - "2015-01-01": 955 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1348.06455724554, - "2034-01-01": 1321.96051011743, - "2033-01-01": 1296.17873517608, - "2032-01-01": 1271.04150460827, - "2031-01-01": 1246.54881841399, - "2030-01-01": 1222.37840440648, - "2029-01-01": 1198.53026258574, - "2028-01-01": 1175.00439295176, - "2027-01-01": 1151.15625113102, - "2026-01-01": 1123.47307028775, - "2025-01-01": 1106.55754032467, - "2024-01-01": 1082.54289120743, - "2023-01-01": 1024, - "2015-01-01": 1024 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1431.0021227792, - "2034-01-01": 1403.2920649391, - "2033-01-01": 1375.92410657852, - "2032-01-01": 1349.24034717694, - "2031-01-01": 1323.24078673439, - "2030-01-01": 1297.58332577134, - "2029-01-01": 1272.26796428779, - "2028-01-01": 1247.29470228376, - "2027-01-01": 1221.97934080021, - "2026-01-01": 1192.59299551053, - "2025-01-01": 1174.63676399699, - "2024-01-01": 1149.1446511157, - "2023-01-01": 1087, - "2015-01-01": 1087 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1507.35734184193, - "2034-01-01": 1478.16873445747, - "2033-01-01": 1449.3404802506, - "2032-01-01": 1421.2329323989, - "2031-01-01": 1393.84609090237, - "2030-01-01": 1366.81960258342, - "2029-01-01": 1340.15346744206, - "2028-01-01": 1313.84768547829, - "2027-01-01": 1287.18155033693, - "2026-01-01": 1256.2272123823, - "2025-01-01": 1237.31287467945, - "2024-01-01": 1210.460557063, - "2023-01-01": 1145, - "2015-01-01": 1145 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1579.76315302211, - "2034-01-01": 1549.17247279386, - "2033-01-01": 1518.95945528447, - "2032-01-01": 1489.50176321282, - "2031-01-01": 1460.7993965789, - "2030-01-01": 1432.47469266385, - "2029-01-01": 1404.52765146767, - "2028-01-01": 1376.95827299035, - "2027-01-01": 1349.01123179417, - "2026-01-01": 1316.57000424346, - "2025-01-01": 1296.74711756798, - "2024-01-01": 1268.60495063371, - "2023-01-01": 1200, - "2015-01-01": 1200 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1674.54894220344, - "2034-01-01": 1642.12282116149, - "2033-01-01": 1610.09702260154, - "2032-01-01": 1578.87186900559, - "2031-01-01": 1548.44736037363, - "2030-01-01": 1518.42317422368, - "2029-01-01": 1488.79931055572, - "2028-01-01": 1459.57576936977, - "2027-01-01": 1429.95190570182, - "2026-01-01": 1395.56420449807, - "2025-01-01": 1374.55194462206, - "2024-01-01": 1344.72124767174, - "2023-01-01": 1272, - "2015-01-01": 1272 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1795.66411726847, - "2034-01-01": 1760.89271074235, - "2033-01-01": 1726.55058084002, - "2032-01-01": 1693.06700418524, - "2031-01-01": 1660.44198077802, - "2030-01-01": 1628.24623399458, - "2029-01-01": 1596.47976383491, - "2028-01-01": 1565.14257029903, - "2027-01-01": 1533.37610013937, - "2026-01-01": 1496.50123815673, - "2025-01-01": 1473.9692236356, - "2024-01-01": 1441.98096055365, - "2023-01-01": 1364, - "2015-01-01": 1364 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1907.5640072742, - "2034-01-01": 1870.62576089858, - "2033-01-01": 1834.143542256, - "2032-01-01": 1798.57337907948, - "2031-01-01": 1763.91527136902, - "2030-01-01": 1729.7131913916, - "2029-01-01": 1695.96713914721, - "2028-01-01": 1662.67711463585, - "2027-01-01": 1628.93106239145, - "2026-01-01": 1589.75828012398, - "2025-01-01": 1565.82214446333, - "2024-01-01": 1531.84047789021, - "2023-01-01": 1449, - "2015-01-01": 1449 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2011.56508151483, - "2034-01-01": 1972.61294869085, - "2033-01-01": 1934.14170639556, - "2032-01-01": 1896.63224515766, - "2031-01-01": 1860.08456497713, - "2030-01-01": 1824.0177753253, - "2029-01-01": 1788.43187620216, - "2028-01-01": 1753.32686760771, - "2027-01-01": 1717.74096848457, - "2026-01-01": 1676.43247207001, - "2025-01-01": 1651.19132970323, - "2024-01-01": 1615.35697047359, - "2023-01-01": 1528, - "2015-01-01": 1528 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2107.66733999034, - "2034-01-01": 2066.85427411914, - "2033-01-01": 2026.5450732587, - "2032-01-01": 1987.24360241977, - "2031-01-01": 1948.94986160235, - "2030-01-01": 1911.15998579569, - "2029-01-01": 1873.87397499978, - "2028-01-01": 1837.09182921462, - "2027-01-01": 1799.80581841872, - "2026-01-01": 1756.52381399482, - "2025-01-01": 1730.07677935528, - "2024-01-01": 1692.53043830381, - "2023-01-01": 1601, - "2015-01-01": 1601 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2207.71900634841, - "2034-01-01": 2164.96853072942, - "2033-01-01": 2122.74583876005, - "2032-01-01": 2081.57871408991, - "2031-01-01": 2041.46715671901, - "2030-01-01": 2001.88338299773, - "2029-01-01": 1962.82739292606, - "2028-01-01": 1924.29918650401, - "2027-01-01": 1885.24319643235, - "2026-01-01": 1839.90658093024, - "2025-01-01": 1812.20409680125, - "2024-01-01": 1772.87541851061, - "2023-01-01": 1677, - "2015-01-01": 1677 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2313.03654988321, - "2034-01-01": 2268.24669558234, - "2033-01-01": 2224.00980244568, - "2032-01-01": 2180.87883163743, - "2031-01-01": 2138.85378315761, - "2030-01-01": 2097.38169584199, - "2029-01-01": 2056.46256969057, - "2028-01-01": 2016.09640470337, - "2027-01-01": 1975.17727855196, - "2026-01-01": 1927.67791454647, - "2025-01-01": 1898.65390463911, - "2024-01-01": 1857.44908188619, - "2023-01-01": 1757, - "2015-01-01": 1757 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2413.08821624128, - "2034-01-01": 2366.36095219262, - "2033-01-01": 2320.21056794703, - "2032-01-01": 2275.21394330758, - "2031-01-01": 2231.37107827427, - "2030-01-01": 2188.10509304403, - "2029-01-01": 2145.41598761686, - "2028-01-01": 2103.30376199276, - "2027-01-01": 2060.61465656559, - "2026-01-01": 2011.06068148189, - "2025-01-01": 1980.78122208509, - "2024-01-01": 1937.794062093, - "2023-01-01": 1833, - "2015-01-01": 1833 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2507.87400542261, - "2034-01-01": 2459.31130056025, - "2033-01-01": 2411.3481352641, - "2032-01-01": 2364.58404910035, - "2031-01-01": 2319.019042069, - "2030-01-01": 2274.05357460386, - "2029-01-01": 2229.68764670492, - "2028-01-01": 2185.92125837218, - "2027-01-01": 2141.55533047324, - "2026-01-01": 2090.05488173649, - "2025-01-01": 2058.58604913917, - "2024-01-01": 2013.91035913102, - "2023-01-01": 1905, - "2015-01-01": 1905 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3058.15817039198, - "2034-01-01": 2998.93971191678, - "2033-01-01": 2940.45234552152, - "2032-01-01": 2883.42716328615, - "2031-01-01": 2827.86416521065, - "2030-01-01": 2773.0322592151, - "2029-01-01": 2718.93144529949, - "2028-01-01": 2665.56172346382, - "2027-01-01": 2611.46090954821, - "2026-01-01": 2548.6600998813, - "2025-01-01": 2510.28629509201, - "2024-01-01": 2455.80775026843, - "2023-01-01": 2323, - "2015-01-01": 2323 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 655.601708504177, - "2034-01-01": 642.906576209452, - "2033-01-01": 630.368173943056, - "2032-01-01": 618.14323173332, - "2031-01-01": 606.231749580244, - "2030-01-01": 594.476997455497, - "2029-01-01": 582.878975359081, - "2028-01-01": 571.437683290995, - "2027-01-01": 559.839661194579, - "2026-01-01": 546.376551761036, - "2025-01-01": 538.150053790711, - "2024-01-01": 526.471054512991, - "2023-01-01": 498, - "2015-01-01": 498 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 936.009668165603, - "2034-01-01": 917.884690130362, - "2033-01-01": 899.983477256049, - "2032-01-01": 882.529794703595, - "2031-01-01": 865.523642472998, - "2030-01-01": 848.741255403331, - "2029-01-01": 832.182633494591, - "2028-01-01": 815.847776746782, - "2027-01-01": 799.289154838043, - "2026-01-01": 780.06772751425, - "2025-01-01": 768.322667159027, - "2024-01-01": 751.648433250475, - "2023-01-01": 711, - "2015-01-01": 711 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1078.18835193759, - "2034-01-01": 1057.31021268181, - "2033-01-01": 1036.68982823165, - "2032-01-01": 1016.58495339275, - "2031-01-01": 996.995588165099, - "2030-01-01": 977.663977743077, - "2029-01-01": 958.590122126681, - "2028-01-01": 939.774021315913, - "2027-01-01": 920.700165699518, - "2026-01-01": 898.559027896162, - "2025-01-01": 885.029907740145, - "2024-01-01": 865.822878807509, - "2023-01-01": 819, - "2015-01-01": 819 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1197.98705770844, - "2034-01-01": 1174.78912520201, - "2033-01-01": 1151.87758692406, - "2032-01-01": 1129.53883710305, - "2031-01-01": 1107.772875739, - "2030-01-01": 1086.29330860342, - "2029-01-01": 1065.10013569631, - "2028-01-01": 1044.19335701768, - "2027-01-01": 1023.00018411058, - "2026-01-01": 998.398919884624, - "2025-01-01": 983.366564155717, - "2024-01-01": 962.025420897232, - "2023-01-01": 910, - "2015-01-01": 910 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1303.30460124324, - "2034-01-01": 1278.06729005493, - "2033-01-01": 1253.14155060969, - "2032-01-01": 1228.83895465058, - "2031-01-01": 1205.15950217759, - "2030-01-01": 1181.79162144768, - "2029-01-01": 1158.73531246082, - "2028-01-01": 1135.99057521704, - "2027-01-01": 1112.93426623019, - "2026-01-01": 1086.17025350085, - "2025-01-01": 1069.81637199358, - "2024-01-01": 1046.59908427281, - "2023-01-01": 990, - "2015-01-01": 990 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1398.09039042457, - "2034-01-01": 1371.01763842257, - "2033-01-01": 1344.27911792676, - "2032-01-01": 1318.20906044334, - "2031-01-01": 1292.80746597233, - "2030-01-01": 1267.74010300751, - "2029-01-01": 1243.00697154888, - "2028-01-01": 1218.60807159646, - "2027-01-01": 1193.87494013784, - "2026-01-01": 1165.16445375546, - "2025-01-01": 1147.62119904766, - "2024-01-01": 1122.71538131084, - "2023-01-01": 1062, - "2015-01-01": 1062 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1483.6608945466, - "2034-01-01": 1454.93114736557, - "2033-01-01": 1426.55608842133, - "2032-01-01": 1398.89040595071, - "2031-01-01": 1371.93409995368, - "2030-01-01": 1345.33248219347, - "2029-01-01": 1319.08555267005, - "2028-01-01": 1293.19331138344, - "2027-01-01": 1266.94638186002, - "2026-01-01": 1236.47866231865, - "2025-01-01": 1217.86166791593, - "2024-01-01": 1191.43148280349, - "2023-01-01": 1127, - "2015-01-01": 1127 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1563.96552149189, - "2034-01-01": 1533.68074806592, - "2033-01-01": 1503.76986073163, - "2032-01-01": 1474.60674558069, - "2031-01-01": 1446.19140261311, - "2030-01-01": 1418.14994573721, - "2029-01-01": 1390.48237495299, - "2028-01-01": 1363.18869026045, - "2027-01-01": 1335.52111947622, - "2026-01-01": 1303.40430420103, - "2025-01-01": 1283.7796463923, - "2024-01-01": 1255.91890112738, - "2023-01-01": 1188, - "2015-01-01": 1188 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1637.68780196626, - "2034-01-01": 1605.97546346297, - "2033-01-01": 1574.65463531157, - "2032-01-01": 1544.11682786395, - "2031-01-01": 1514.36204112013, - "2030-01-01": 1484.99876472819, - "2029-01-01": 1456.02699868815, - "2028-01-01": 1427.44674299999, - "2027-01-01": 1398.47497695995, - "2026-01-01": 1364.84423773239, - "2025-01-01": 1344.2945118788, - "2024-01-01": 1315.12046549028, - "2023-01-01": 1244, - "2015-01-01": 1244 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1735.10652973596, - "2034-01-01": 1701.50776595192, - "2033-01-01": 1668.32380172078, - "2032-01-01": 1635.96943659541, - "2031-01-01": 1604.44467057583, - "2030-01-01": 1573.33470410913, - "2029-01-01": 1542.63953719532, - "2028-01-01": 1512.3591698344, - "2027-01-01": 1481.66400292059, - "2026-01-01": 1446.0327213274, - "2025-01-01": 1424.26058412883, - "2024-01-01": 1393.35110411269, - "2023-01-01": 1318, - "2015-01-01": 1318 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1861.48758197772, - "2034-01-01": 1825.44156377543, - "2033-01-01": 1789.84055814354, - "2032-01-01": 1755.12957765244, - "2031-01-01": 1721.30862230214, - "2030-01-01": 1687.93267952224, - "2029-01-01": 1655.00174931273, - "2028-01-01": 1622.51583167363, - "2027-01-01": 1589.58490146412, - "2026-01-01": 1551.35832166688, - "2025-01-01": 1528.00035353427, - "2024-01-01": 1494.83950016339, - "2023-01-01": 1414, - "2015-01-01": 1414 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1978.6533491602, - "2034-01-01": 1940.33852217431, - "2033-01-01": 1902.4967177438, - "2032-01-01": 1865.60095842405, - "2031-01-01": 1829.65124421507, - "2030-01-01": 1794.17455256147, - "2029-01-01": 1759.17088346325, - "2028-01-01": 1724.64023692041, - "2027-01-01": 1689.63656782219, - "2026-01-01": 1649.00393031493, - "2025-01-01": 1624.17576475389, - "2024-01-01": 1588.92770066872, - "2023-01-01": 1503, - "2015-01-01": 1503 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2085.28736198919, - "2034-01-01": 2044.90766408789, - "2033-01-01": 2005.0264809755, - "2032-01-01": 1966.14232744092, - "2031-01-01": 1928.25520348415, - "2030-01-01": 1890.86659431628, - "2029-01-01": 1853.97649993732, - "2028-01-01": 1817.58492034726, - "2027-01-01": 1780.6948259683, - "2026-01-01": 1737.87240560137, - "2025-01-01": 1711.70619518973, - "2024-01-01": 1674.5585348365, - "2023-01-01": 1584, - "2015-01-01": 1584 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2184.02255905307, - "2034-01-01": 2141.73094363751, - "2033-01-01": 2099.96144693078, - "2032-01-01": 2059.23618764172, - "2031-01-01": 2019.55516577033, - "2030-01-01": 1980.39626260777, - "2029-01-01": 1941.75947815405, - "2028-01-01": 1903.64481240916, - "2027-01-01": 1865.00802795543, - "2026-01-01": 1820.15803086658, - "2025-01-01": 1792.75289003773, - "2024-01-01": 1753.84634425111, - "2023-01-01": 1659, - "2015-01-01": 1659 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2288.0236332937, - "2034-01-01": 2243.71813142977, - "2033-01-01": 2199.95961107034, - "2032-01-01": 2157.2950537199, - "2031-01-01": 2115.72445937844, - "2030-01-01": 2074.70084654147, - "2029-01-01": 2034.224215209, - "2028-01-01": 1994.29456538102, - "2027-01-01": 1953.81793404855, - "2026-01-01": 1906.83222281261, - "2025-01-01": 1878.12207527762, - "2024-01-01": 1837.36283683449, - "2023-01-01": 1738, - "2015-01-01": 1738 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2398.60705400524, - "2034-01-01": 2352.16020452534, - "2033-01-01": 2306.28677294026, - "2032-01-01": 2261.5601771448, - "2031-01-01": 2217.98041713896, - "2030-01-01": 2174.97407502794, - "2029-01-01": 2132.54115081174, - "2028-01-01": 2090.68164449035, - "2027-01-01": 2048.24872027414, - "2026-01-01": 1998.99212310965, - "2025-01-01": 1968.89437350738, - "2024-01-01": 1926.16518337885, - "2023-01-01": 1822, - "2015-01-01": 1822 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2501.29165895168, - "2034-01-01": 2452.85641525694, - "2033-01-01": 2405.01913753375, - "2032-01-01": 2358.37779175363, - "2031-01-01": 2312.93237791659, - "2030-01-01": 2268.08493005109, - "2029-01-01": 2223.83544815714, - "2028-01-01": 2180.18393223472, - "2027-01-01": 2135.93445034076, - "2026-01-01": 2084.56917338548, - "2025-01-01": 2053.1829361493, - "2024-01-01": 2008.62450517004, - "2023-01-01": 1900, - "2015-01-01": 1900 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2598.71038672138, - "2034-01-01": 2548.3887177459, - "2033-01-01": 2498.68830394296, - "2032-01-01": 2450.23040048509, - "2031-01-01": 2403.01500737229, - "2030-01-01": 2356.42086943203, - "2029-01-01": 2310.44798666431, - "2028-01-01": 2265.09635906912, - "2027-01-01": 2219.1234763014, - "2026-01-01": 2165.75765698049, - "2025-01-01": 2133.14900839932, - "2024-01-01": 2086.85514379246, - "2023-01-01": 1974, - "2015-01-01": 1974 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3168.74159110352, - "2034-01-01": 3107.38178501235, - "2033-01-01": 3046.77950739144, - "2032-01-01": 2987.69228671104, - "2031-01-01": 2930.12012297118, - "2030-01-01": 2873.30548770157, - "2029-01-01": 2817.24838090222, - "2028-01-01": 2761.94880257314, - "2027-01-01": 2705.8916957738, - "2026-01-01": 2640.82000017834, - "2025-01-01": 2601.05859332177, - "2024-01-01": 2544.61009681279, - "2023-01-01": 2407, - "2015-01-01": 2407 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 687.19697156462, - "2034-01-01": 673.890025665329, - "2033-01-01": 660.747363048745, - "2032-01-01": 647.933266997576, - "2031-01-01": 635.447737511822, - "2030-01-01": 623.126491308774, - "2029-01-01": 610.969528388434, - "2028-01-01": 598.976848750802, - "2027-01-01": 586.819885830462, - "2026-01-01": 572.707951845905, - "2025-01-01": 564.084996142071, - "2024-01-01": 551.843153525665, - "2023-01-01": 522, - "2015-01-01": 522 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 982.086093462081, - "2034-01-01": 963.068887253516, - "2033-01-01": 944.286461368513, - "2032-01-01": 925.973596130635, - "2031-01-01": 908.130291539883, - "2030-01-01": 890.521767272693, - "2029-01-01": 873.148023329065, - "2028-01-01": 856.009059709, - "2027-01-01": 838.635315765373, - "2026-01-01": 818.467685971351, - "2025-01-01": 806.144458088093, - "2024-01-01": 788.649410977291, - "2023-01-01": 746, - "2015-01-01": 746 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1130.847123705, - "2034-01-01": 1108.94929510827, - "2033-01-01": 1087.32181007447, - "2032-01-01": 1066.23501216651, - "2031-01-01": 1045.6889013844, - "2030-01-01": 1025.41313416521, - "2029-01-01": 1005.40771050894, - "2028-01-01": 985.672630415591, - "2027-01-01": 965.667206759323, - "2026-01-01": 942.444694704277, - "2025-01-01": 928.254811659078, - "2024-01-01": 908.109710495299, - "2023-01-01": 859, - "2015-01-01": 859 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1257.22817594677, - "2034-01-01": 1232.88309293178, - "2033-01-01": 1208.83856649723, - "2032-01-01": 1185.39515322353, - "2031-01-01": 1162.55285311071, - "2030-01-01": 1140.01110957831, - "2029-01-01": 1117.76992262635, - "2028-01-01": 1095.82929225482, - "2027-01-01": 1073.58810530286, - "2026-01-01": 1047.77029504375, - "2025-01-01": 1031.99458106452, - "2024-01-01": 1009.598106546, - "2023-01-01": 955, - "2015-01-01": 955 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1367.81159665831, - "2034-01-01": 1341.32516602735, - "2033-01-01": 1315.16572836714, - "2032-01-01": 1289.66027664843, - "2031-01-01": 1264.80881087123, - "2030-01-01": 1240.28433806478, - "2029-01-01": 1216.08685822909, - "2028-01-01": 1192.21637136414, - "2027-01-01": 1168.01889152845, - "2026-01-01": 1139.9301953408, - "2025-01-01": 1122.76687929427, - "2024-01-01": 1098.40045309036, - "2023-01-01": 1039, - "2015-01-01": 1039 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1466.5467937222, - "2034-01-01": 1438.14844557697, - "2033-01-01": 1410.10069432242, - "2032-01-01": 1382.75413684923, - "2031-01-01": 1356.10877315741, - "2030-01-01": 1329.81400635627, - "2029-01-01": 1303.86983644582, - "2028-01-01": 1278.27626342604, - "2027-01-01": 1252.33209351558, - "2026-01-01": 1222.21582060601, - "2025-01-01": 1203.81357414227, - "2024-01-01": 1177.68826250496, - "2023-01-01": 1114, - "2015-01-01": 1114 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1556.06670572678, - "2034-01-01": 1525.93488570195, - "2033-01-01": 1496.1750634552, - "2032-01-01": 1467.15923676463, - "2031-01-01": 1438.88740563022, - "2030-01-01": 1410.98757227389, - "2029-01-01": 1383.45973669565, - "2028-01-01": 1356.30389889549, - "2027-01-01": 1328.77606331725, - "2026-01-01": 1296.82145417981, - "2025-01-01": 1277.29591080446, - "2024-01-01": 1249.57587637421, - "2023-01-01": 1182, - "2015-01-01": 1182 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1639.00427126044, - "2034-01-01": 1607.26644052363, - "2033-01-01": 1575.92043485764, - "2032-01-01": 1545.3580793333, - "2031-01-01": 1515.57937395061, - "2030-01-01": 1486.19249363874, - "2029-01-01": 1457.1974383977, - "2028-01-01": 1428.59420822749, - "2027-01-01": 1399.59915298645, - "2026-01-01": 1365.94137940259, - "2025-01-01": 1345.37513447678, - "2024-01-01": 1316.17763628248, - "2023-01-01": 1245, - "2015-01-01": 1245 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1716.67595961736, - "2034-01-01": 1683.43408710266, - "2033-01-01": 1650.60260807579, - "2032-01-01": 1618.5919160246, - "2031-01-01": 1587.40201094907, - "2030-01-01": 1556.62249936138, - "2029-01-01": 1526.25338126153, - "2028-01-01": 1496.29465664951, - "2027-01-01": 1465.92553854966, - "2026-01-01": 1430.67273794456, - "2025-01-01": 1409.1318677572, - "2024-01-01": 1378.55071302197, - "2023-01-01": 1304, - "2015-01-01": 1304 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1819.3605645638, - "2034-01-01": 1784.13029783426, - "2033-01-01": 1749.33497266928, - "2032-01-01": 1715.40953063343, - "2031-01-01": 1682.3539717267, - "2030-01-01": 1649.73335438453, - "2029-01-01": 1617.54767860693, - "2028-01-01": 1585.79694439388, - "2027-01-01": 1553.61126861628, - "2026-01-01": 1516.24978822039, - "2025-01-01": 1493.42043039912, - "2024-01-01": 1461.01003481316, - "2023-01-01": 1382, - "2015-01-01": 1382 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1952.3239632765, - "2034-01-01": 1914.51898096108, - "2033-01-01": 1877.18072682239, - "2032-01-01": 1840.77592903717, - "2031-01-01": 1805.30458760542, - "2030-01-01": 1770.29997435041, - "2029-01-01": 1735.76208927212, - "2028-01-01": 1701.69093237057, - "2027-01-01": 1667.15304729229, - "2026-01-01": 1627.06109691088, - "2025-01-01": 1602.56331279443, - "2024-01-01": 1567.78428482483, - "2023-01-01": 1483, - "2015-01-01": 1483 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2073.43913834153, - "2034-01-01": 2033.28887054194, - "2033-01-01": 1993.63428506087, - "2032-01-01": 1954.97106421682, - "2031-01-01": 1917.29920800981, - "2030-01-01": 1880.1230341213, - "2029-01-01": 1843.44254255131, - "2028-01-01": 1807.25773329983, - "2027-01-01": 1770.57724172984, - "2026-01-01": 1727.99813056954, - "2025-01-01": 1701.98059180797, - "2024-01-01": 1665.04399770675, - "2023-01-01": 1575, - "2015-01-01": 1575 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2185.33902834726, - "2034-01-01": 2143.02192069817, - "2033-01-01": 2101.22724647685, - "2032-01-01": 2060.47743911107, - "2031-01-01": 2020.77249860081, - "2030-01-01": 1981.58999151832, - "2029-01-01": 1942.9299178636, - "2028-01-01": 1904.79227763665, - "2027-01-01": 1866.13220398193, - "2026-01-01": 1821.25517253679, - "2025-01-01": 1793.8335126357, - "2024-01-01": 1754.9035150433, - "2023-01-01": 1660, - "2015-01-01": 1660 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2290.65657188207, - "2034-01-01": 2246.3000855511, - "2033-01-01": 2202.49121016248, - "2032-01-01": 2159.77755665859, - "2031-01-01": 2118.15912503941, - "2030-01-01": 2077.08830436258, - "2029-01-01": 2036.56509462811, - "2028-01-01": 1996.58949583601, - "2027-01-01": 1956.06628610154, - "2026-01-01": 1909.02650615302, - "2025-01-01": 1880.28332047357, - "2024-01-01": 1839.47717841888, - "2023-01-01": 1740, - "2015-01-01": 1740 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2398.60705400524, - "2034-01-01": 2352.16020452534, - "2033-01-01": 2306.28677294026, - "2032-01-01": 2261.5601771448, - "2031-01-01": 2217.98041713896, - "2030-01-01": 2174.97407502794, - "2029-01-01": 2132.54115081174, - "2028-01-01": 2090.68164449035, - "2027-01-01": 2048.24872027414, - "2026-01-01": 1998.99212310965, - "2025-01-01": 1968.89437350738, - "2024-01-01": 1926.16518337885, - "2023-01-01": 1822, - "2015-01-01": 1822 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2514.45635189353, - "2034-01-01": 2465.76618586356, - "2033-01-01": 2417.67713299445, - "2032-01-01": 2370.79030644707, - "2031-01-01": 2325.10570622142, - "2030-01-01": 2280.02221915663, - "2029-01-01": 2235.5398452527, - "2028-01-01": 2191.65858450964, - "2027-01-01": 2147.17621060571, - "2026-01-01": 2095.54059008751, - "2025-01-01": 2063.98916212903, - "2024-01-01": 2019.19621309199, - "2023-01-01": 1910, - "2015-01-01": 1910 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2622.40683401671, - "2034-01-01": 2571.62630483781, - "2033-01-01": 2521.47269577222, - "2032-01-01": 2472.57292693328, - "2031-01-01": 2424.92699832097, - "2030-01-01": 2377.90798982199, - "2029-01-01": 2331.51590143632, - "2028-01-01": 2285.75073316398, - "2027-01-01": 2239.35864477831, - "2026-01-01": 2185.50620704414, - "2025-01-01": 2152.60021516284, - "2024-01-01": 2105.88421805196, - "2023-01-01": 1992, - "2015-01-01": 1992 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2725.09143896315, - "2034-01-01": 2672.32251556941, - "2033-01-01": 2620.20506036571, - "2032-01-01": 2569.39054154211, - "2031-01-01": 2519.8789590986, - "2030-01-01": 2471.01884484514, - "2029-01-01": 2422.81019878172, - "2028-01-01": 2375.25302090835, - "2027-01-01": 2327.04437484494, - "2026-01-01": 2271.08325731997, - "2025-01-01": 2236.88877780476, - "2024-01-01": 2188.34353984315, - "2023-01-01": 2070, - "2015-01-01": 2070 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AR.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3321.452029229, - "2034-01-01": 3257.13512404909, - "2033-01-01": 3193.6122547356, - "2032-01-01": 3131.67745715495, - "2031-01-01": 3071.33073130714, - "2030-01-01": 3011.77804132574, - "2029-01-01": 2953.01938721077, - "2028-01-01": 2895.05476896221, - "2027-01-01": 2836.29611484723, - "2026-01-01": 2768.08843392188, - "2025-01-01": 2726.41081468667, - "2024-01-01": 2667.24190870738, - "2023-01-01": 2523, - "2015-01-01": 2523 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA", - "description": null, - "label": "CA", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 645.069954150697, - "2034-01-01": 632.578759724159, - "2033-01-01": 620.241777574492, - "2032-01-01": 608.213219978567, - "2031-01-01": 596.493086936384, - "2030-01-01": 584.927166171072, - "2029-01-01": 573.51545768263, - "2028-01-01": 562.257961471059, - "2027-01-01": 550.846252982617, - "2026-01-01": 537.599418399413, - "2025-01-01": 529.505073006924, - "2024-01-01": 518.013688175433, - "2023-01-01": 490, - "2015-01-01": 490 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 893.88265075168, - "2034-01-01": 876.573424189192, - "2033-01-01": 859.477891781797, - "2032-01-01": 842.809747684586, - "2031-01-01": 826.568991897561, - "2030-01-01": 810.541930265628, - "2029-01-01": 794.728562788787, - "2028-01-01": 779.128889467039, - "2027-01-01": 763.315521990199, - "2026-01-01": 744.959194067758, - "2025-01-01": 733.742744023881, - "2024-01-01": 717.818967900242, - "2023-01-01": 679, - "2015-01-01": 679 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1018.94723369926, - "2034-01-01": 999.216244952039, - "2033-01-01": 979.728848658484, - "2032-01-01": 960.728637272268, - "2031-01-01": 942.215610793391, - "2030-01-01": 923.946176768183, - "2029-01-01": 905.920335196644, - "2028-01-01": 888.138086078775, - "2027-01-01": 870.112244507237, - "2026-01-01": 849.187652737032, - "2025-01-01": 836.401890831346, - "2024-01-01": 818.250193158745, - "2023-01-01": 774, - "2015-01-01": 774 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1122.94830793989, - "2034-01-01": 1101.2034327443, - "2033-01-01": 1079.72701279804, - "2032-01-01": 1058.78750335045, - "2031-01-01": 1038.3849044015, - "2030-01-01": 1018.25076070189, - "2029-01-01": 998.385072251598, - "2028-01-01": 978.78783905064, - "2027-01-01": 958.922150600352, - "2026-01-01": 935.86184468306, - "2025-01-01": 921.771076071238, - "2024-01-01": 901.766685742131, - "2023-01-01": 853, - "2015-01-01": 853 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1215.10115853284, - "2034-01-01": 1191.57182699061, - "2033-01-01": 1168.33298102297, - "2032-01-01": 1145.67510620453, - "2031-01-01": 1123.59820253527, - "2030-01-01": 1101.81178444061, - "2029-01-01": 1080.31585192055, - "2028-01-01": 1059.11040497508, - "2027-01-01": 1037.61447245501, - "2026-01-01": 1012.66176159726, - "2025-01-01": 997.41465792937, - "2024-01-01": 975.768641195764, - "2023-01-01": 923, - "2015-01-01": 923 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1296.72225477232, - "2034-01-01": 1271.61240475163, - "2033-01-01": 1246.81255287934, - "2032-01-01": 1222.63269730386, - "2031-01-01": 1199.07283802518, - "2030-01-01": 1175.82297689491, - "2029-01-01": 1152.88311391304, - "2028-01-01": 1130.25324907958, - "2027-01-01": 1107.31338609771, - "2026-01-01": 1080.68454514984, - "2025-01-01": 1064.41325900372, - "2024-01-01": 1041.31323031184, - "2023-01-01": 985, - "2015-01-01": 985 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1370.44453524668, - "2034-01-01": 1343.90712014867, - "2033-01-01": 1317.69732745928, - "2032-01-01": 1292.14277958712, - "2031-01-01": 1267.2434765322, - "2030-01-01": 1242.67179588589, - "2029-01-01": 1218.4277376482, - "2028-01-01": 1194.51130181913, - "2027-01-01": 1170.26724358144, - "2026-01-01": 1142.1244786812, - "2025-01-01": 1124.92812449022, - "2024-01-01": 1100.51479467475, - "2023-01-01": 1041, - "2015-01-01": 1041 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1438.90093854431, - "2034-01-01": 1411.03792730307, - "2033-01-01": 1383.51890385494, - "2032-01-01": 1356.68785599301, - "2031-01-01": 1330.54478371728, - "2030-01-01": 1304.74569923466, - "2029-01-01": 1279.29060254513, - "2028-01-01": 1254.17949364871, - "2027-01-01": 1228.72439695919, - "2026-01-01": 1199.17584553175, - "2025-01-01": 1181.12049958483, - "2024-01-01": 1155.48767586887, - "2023-01-01": 1093, - "2015-01-01": 1093 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1502.09146466519, - "2034-01-01": 1473.00482621483, - "2033-01-01": 1444.27728206632, - "2032-01-01": 1416.26792652152, - "2031-01-01": 1388.97675958044, - "2030-01-01": 1362.04468694121, - "2029-01-01": 1335.47170860384, - "2028-01-01": 1309.25782456832, - "2027-01-01": 1282.68484623095, - "2026-01-01": 1251.83864570149, - "2025-01-01": 1232.99038428755, - "2024-01-01": 1206.23187389422, - "2023-01-01": 1141, - "2015-01-01": 1141 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1586.34549949304, - "2034-01-01": 1555.62735809717, - "2033-01-01": 1525.28845301482, - "2032-01-01": 1495.70802055954, - "2031-01-01": 1466.88606073131, - "2030-01-01": 1438.44333721662, - "2029-01-01": 1410.37985001545, - "2028-01-01": 1382.69559912781, - "2027-01-01": 1354.63211192664, - "2026-01-01": 1322.05571259447, - "2025-01-01": 1302.15023055784, - "2024-01-01": 1273.89080459469, - "2023-01-01": 1205, - "2015-01-01": 1205 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1694.29598161622, - "2034-01-01": 1661.48747707141, - "2033-01-01": 1629.0840157926, - "2032-01-01": 1597.49064104575, - "2031-01-01": 1566.70735283087, - "2030-01-01": 1536.32910788198, - "2029-01-01": 1506.35590619907, - "2028-01-01": 1476.78774778215, - "2027-01-01": 1446.81454609924, - "2026-01-01": 1412.02132955111, - "2025-01-01": 1390.76128359166, - "2024-01-01": 1360.57880955466, - "2023-01-01": 1287, - "2015-01-01": 1287 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1793.0311786801, - "2034-01-01": 1758.31075662103, - "2033-01-01": 1724.01898174787, - "2032-01-01": 1690.58450124655, - "2031-01-01": 1658.00731511705, - "2030-01-01": 1625.85877617347, - "2029-01-01": 1594.1388844158, - "2028-01-01": 1562.84763984405, - "2027-01-01": 1531.12774808638, - "2026-01-01": 1494.30695481633, - "2025-01-01": 1471.80797843966, - "2024-01-01": 1439.86661896926, - "2023-01-01": 1362, - "2015-01-01": 1362 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1883.86755997887, - "2034-01-01": 1847.38817380668, - "2033-01-01": 1811.35915042673, - "2032-01-01": 1776.23085263129, - "2031-01-01": 1742.00328042034, - "2030-01-01": 1708.22607100164, - "2029-01-01": 1674.89922437519, - "2028-01-01": 1642.02274054099, - "2027-01-01": 1608.69589391454, - "2026-01-01": 1570.00973006033, - "2025-01-01": 1546.37093769981, - "2024-01-01": 1512.8114036307, - "2023-01-01": 1431, - "2015-01-01": 1431 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1969.4380641009, - "2034-01-01": 1931.30168274968, - "2033-01-01": 1893.63612092131, - "2032-01-01": 1856.91219813865, - "2031-01-01": 1821.1299144017, - "2030-01-01": 1785.8184501876, - "2029-01-01": 1750.97780549636, - "2028-01-01": 1716.60798032797, - "2027-01-01": 1681.76733563673, - "2026-01-01": 1641.32393862351, - "2025-01-01": 1616.61140656808, - "2024-01-01": 1581.52750512336, - "2023-01-01": 1496, - "2015-01-01": 1496 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2056.32503751712, - "2034-01-01": 2016.50616875334, - "2033-01-01": 1977.17889096195, - "2032-01-01": 1938.83479511535, - "2031-01-01": 1901.47388121354, - "2030-01-01": 1864.60455828411, - "2029-01-01": 1828.22682632708, - "2028-01-01": 1792.34068534244, - "2027-01-01": 1755.96295338541, - "2026-01-01": 1713.7352888569, - "2025-01-01": 1687.93249803432, - "2024-01-01": 1651.30077740822, - "2023-01-01": 1562, - "2015-01-01": 1562 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2149.79435740426, - "2034-01-01": 2108.16554006031, - "2033-01-01": 2067.05065873295, - "2032-01-01": 2026.96364943878, - "2031-01-01": 1987.90451217779, - "2030-01-01": 1949.35931093339, - "2029-01-01": 1911.32804570558, - "2028-01-01": 1873.81071649437, - "2027-01-01": 1835.77945126656, - "2026-01-01": 1791.63234744131, - "2025-01-01": 1764.65670249042, - "2024-01-01": 1726.35990365404, - "2023-01-01": 1633, - "2015-01-01": 1633 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2236.68133082048, - "2034-01-01": 2193.37002606397, - "2033-01-01": 2150.5934287736, - "2032-01-01": 2108.88624641548, - "2031-01-01": 2068.24847898963, - "2030-01-01": 2028.1454190299, - "2029-01-01": 1988.5770665363, - "2028-01-01": 1949.54342150884, - "2027-01-01": 1909.97506901524, - "2026-01-01": 1864.0436976747, - "2025-01-01": 1835.97779395666, - "2024-01-01": 1796.1331759389, - "2023-01-01": 1699, - "2015-01-01": 1699 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2319.61889635414, - "2034-01-01": 2274.70158088565, - "2033-01-01": 2230.33880017603, - "2032-01-01": 2187.08508898415, - "2031-01-01": 2144.94044731002, - "2030-01-01": 2103.35034039475, - "2029-01-01": 2062.31476823835, - "2028-01-01": 2021.83373084083, - "2027-01-01": 1980.79815868443, - "2026-01-01": 1933.16362289748, - "2025-01-01": 1904.05701762898, - "2024-01-01": 1862.73493584717, - "2023-01-01": 1762, - "2015-01-01": 1762 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2798.81371943751, - "2034-01-01": 2744.61723096645, - "2033-01-01": 2691.08983494565, - "2032-01-01": 2638.90062382538, - "2031-01-01": 2588.04959760562, - "2030-01-01": 2537.86766383612, - "2029-01-01": 2488.35482251688, - "2028-01-01": 2439.5110736479, - "2027-01-01": 2389.99823232866, - "2026-01-01": 2332.52319085133, - "2025-01-01": 2297.40364329127, - "2024-01-01": 2247.54510420606, - "2023-01-01": 2126, - "2015-01-01": 2126 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 738.539274037839, - "2034-01-01": 724.238131031129, - "2033-01-01": 710.11354534549, - "2032-01-01": 696.342074301993, - "2031-01-01": 682.923717900636, - "2030-01-01": 669.681918820349, - "2029-01-01": 656.616677061133, - "2028-01-01": 643.727992622988, - "2027-01-01": 630.662750863772, - "2026-01-01": 615.496476983818, - "2025-01-01": 606.22927746303, - "2024-01-01": 593.072814421261, - "2023-01-01": 561, - "2015-01-01": 561 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1021.58017228763, - "2034-01-01": 1001.79819907336, - "2033-01-01": 982.260447750625, - "2032-01-01": 963.211140210956, - "2031-01-01": 944.650276454355, - "2030-01-01": 926.333634589289, - "2029-01-01": 908.261214615757, - "2028-01-01": 890.433016533759, - "2027-01-01": 872.360596560227, - "2026-01-01": 851.381936077438, - "2025-01-01": 838.563136027292, - "2024-01-01": 820.364534743134, - "2023-01-01": 776, - "2015-01-01": 776 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1162.44238676544, - "2034-01-01": 1139.93274456415, - "2033-01-01": 1117.70099918016, - "2032-01-01": 1096.02504743077, - "2031-01-01": 1074.90488931597, - "2030-01-01": 1054.06262801848, - "2029-01-01": 1033.49826353829, - "2028-01-01": 1013.2117958754, - "2027-01-01": 992.647431395207, - "2026-01-01": 968.776094789146, - "2025-01-01": 954.189754010437, - "2024-01-01": 933.481809507974, - "2023-01-01": 883, - "2015-01-01": 883 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1279.60815394791, - "2034-01-01": 1254.82970296303, - "2033-01-01": 1230.35715878042, - "2032-01-01": 1206.49642820238, - "2031-01-01": 1183.24751122891, - "2030-01-01": 1160.30450105772, - "2029-01-01": 1137.66739768881, - "2028-01-01": 1115.33620112218, - "2027-01-01": 1092.69909775327, - "2026-01-01": 1066.4217034372, - "2025-01-01": 1050.36516523006, - "2024-01-01": 1027.57001001331, - "2023-01-01": 972, - "2015-01-01": 972 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1383.60922818854, - "2034-01-01": 1356.81689075529, - "2033-01-01": 1330.35532291998, - "2032-01-01": 1304.55529428056, - "2031-01-01": 1279.41680483702, - "2030-01-01": 1254.60908499142, - "2029-01-01": 1230.13213474376, - "2028-01-01": 1205.98595409405, - "2027-01-01": 1181.50900384639, - "2026-01-01": 1153.09589538323, - "2025-01-01": 1135.73435046995, - "2024-01-01": 1111.08650259669, - "2023-01-01": 1051, - "2015-01-01": 1051 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1475.76207878149, - "2034-01-01": 1447.1852850016, - "2033-01-01": 1418.96129114491, - "2032-01-01": 1391.44289713464, - "2031-01-01": 1364.63010297079, - "2030-01-01": 1338.17010873015, - "2029-01-01": 1312.06291441271, - "2028-01-01": 1286.30852001848, - "2027-01-01": 1260.20132570105, - "2026-01-01": 1229.89581229743, - "2025-01-01": 1211.37793232809, - "2024-01-01": 1185.08845805033, - "2023-01-01": 1121, - "2015-01-01": 1121 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1560.01611360934, - "2034-01-01": 1529.80781688394, - "2033-01-01": 1499.97246209342, - "2032-01-01": 1470.88299117266, - "2031-01-01": 1442.53940412166, - "2030-01-01": 1414.56875900555, - "2029-01-01": 1386.97105582432, - "2028-01-01": 1359.74629457797, - "2027-01-01": 1332.14859139674, - "2026-01-01": 1300.11287919042, - "2025-01-01": 1280.53777859838, - "2024-01-01": 1252.74738875079, - "2023-01-01": 1185, - "2015-01-01": 1185 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1636.37133267207, - "2034-01-01": 1604.68448640231, - "2033-01-01": 1573.3888357655, - "2032-01-01": 1542.87557639461, - "2031-01-01": 1513.14470828964, - "2030-01-01": 1483.80503581764, - "2029-01-01": 1454.85655897859, - "2028-01-01": 1426.2992777725, - "2027-01-01": 1397.35080093346, - "2026-01-01": 1363.74709606218, - "2025-01-01": 1343.21388928083, - "2024-01-01": 1314.06329469809, - "2023-01-01": 1243, - "2015-01-01": 1243 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1708.77714385225, - "2034-01-01": 1675.68822473869, - "2033-01-01": 1643.00781079937, - "2032-01-01": 1611.14440720853, - "2031-01-01": 1580.09801396618, - "2030-01-01": 1549.46012589806, - "2029-01-01": 1519.23074300419, - "2028-01-01": 1489.40986528456, - "2027-01-01": 1459.18048239069, - "2026-01-01": 1424.08988792334, - "2025-01-01": 1402.64813216936, - "2024-01-01": 1372.2076882688, - "2023-01-01": 1298, - "2015-01-01": 1298 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1802.2464637394, - "2034-01-01": 1767.34759604566, - "2033-01-01": 1732.87957857037, - "2032-01-01": 1699.27326153196, - "2031-01-01": 1666.52864493043, - "2030-01-01": 1634.21487854734, - "2029-01-01": 1602.33196238269, - "2028-01-01": 1570.87989643649, - "2027-01-01": 1538.99698027184, - "2026-01-01": 1501.98694650775, - "2025-01-01": 1479.37233662547, - "2024-01-01": 1447.26681451463, - "2023-01-01": 1369, - "2015-01-01": 1369 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1924.67810809861, - "2034-01-01": 1887.40846268719, - "2033-01-01": 1850.59893635491, - "2032-01-01": 1814.70964818095, - "2031-01-01": 1779.74059816529, - "2030-01-01": 1745.23166722879, - "2029-01-01": 1711.18285537144, - "2028-01-01": 1677.59416259324, - "2027-01-01": 1643.54535073589, - "2026-01-01": 1604.02112183662, - "2025-01-01": 1579.87023823699, - "2024-01-01": 1545.58369818874, - "2023-01-01": 1462, - "2015-01-01": 1462 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2036.57799810434, - "2034-01-01": 1997.14151284342, - "2033-01-01": 1958.1918977709, - "2032-01-01": 1920.21602307519, - "2031-01-01": 1883.2138887563, - "2030-01-01": 1846.69862462581, - "2029-01-01": 1810.67023068373, - "2028-01-01": 1775.12870693006, - "2027-01-01": 1739.10031298798, - "2026-01-01": 1697.27816380386, - "2025-01-01": 1671.72315906472, - "2024-01-01": 1635.44321552529, - "2023-01-01": 1547, - "2015-01-01": 1547 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2137.9461337566, - "2034-01-01": 2096.54674651436, - "2033-01-01": 2055.65846281832, - "2032-01-01": 2015.79238621468, - "2031-01-01": 1976.94851670344, - "2030-01-01": 1938.61575073841, - "2029-01-01": 1900.79408831957, - "2028-01-01": 1863.48352944694, - "2027-01-01": 1825.6618670281, - "2026-01-01": 1781.75807240948, - "2025-01-01": 1754.93109910866, - "2024-01-01": 1716.84536652429, - "2023-01-01": 1624, - "2015-01-01": 1624 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2234.04839223211, - "2034-01-01": 2190.78807194265, - "2033-01-01": 2148.06182968146, - "2032-01-01": 2106.40374347679, - "2031-01-01": 2065.81381332866, - "2030-01-01": 2025.75796120879, - "2029-01-01": 1986.23618711719, - "2028-01-01": 1947.24849105385, - "2027-01-01": 1907.72671696225, - "2026-01-01": 1861.84941433429, - "2025-01-01": 1833.81654876072, - "2024-01-01": 1794.01883435451, - "2023-01-01": 1697, - "2015-01-01": 1697 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2332.78358929599, - "2034-01-01": 2287.61135149227, - "2033-01-01": 2242.99679563674, - "2032-01-01": 2199.49760367759, - "2031-01-01": 2157.11377561484, - "2030-01-01": 2115.28762950028, - "2029-01-01": 2074.01916533392, - "2028-01-01": 2033.30838311575, - "2027-01-01": 1992.03991894938, - "2026-01-01": 1944.13503959951, - "2025-01-01": 1914.86324360871, - "2024-01-01": 1873.30664376912, - "2023-01-01": 1772, - "2015-01-01": 1772 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2436.78466353661, - "2034-01-01": 2389.59853928453, - "2033-01-01": 2342.9949597763, - "2032-01-01": 2297.55646975577, - "2031-01-01": 2253.28306922295, - "2030-01-01": 2209.59221343399, - "2029-01-01": 2166.48390238887, - "2028-01-01": 2123.95813608761, - "2027-01-01": 2080.8498250425, - "2026-01-01": 2030.80923154554, - "2025-01-01": 2000.23242884861, - "2024-01-01": 1956.8231363525, - "2023-01-01": 1851, - "2015-01-01": 1851 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2535.51986060049, - "2034-01-01": 2486.42181883414, - "2033-01-01": 2437.92992573158, - "2032-01-01": 2390.65032995657, - "2031-01-01": 2344.58303150913, - "2030-01-01": 2299.12188172548, - "2029-01-01": 2254.2668806056, - "2028-01-01": 2210.01802814951, - "2027-01-01": 2165.16302702964, - "2026-01-01": 2113.09485681075, - "2025-01-01": 2081.27912369661, - "2024-01-01": 2036.11094576711, - "2023-01-01": 1926, - "2015-01-01": 1926 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2627.67271119345, - "2034-01-01": 2576.79021308045, - "2033-01-01": 2526.5358939565, - "2032-01-01": 2477.53793281065, - "2031-01-01": 2429.7963296429, - "2030-01-01": 2382.6829054642, - "2029-01-01": 2336.19766027455, - "2028-01-01": 2290.34059407395, - "2027-01-01": 2243.8553488843, - "2026-01-01": 2189.89477372496, - "2025-01-01": 2156.92270555474, - "2024-01-01": 2110.11290122074, - "2023-01-01": 1996, - "2015-01-01": 1996 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3166.10865251515, - "2034-01-01": 3104.79983089103, - "2033-01-01": 3044.24790829929, - "2032-01-01": 2985.20978377236, - "2031-01-01": 2927.68545731021, - "2030-01-01": 2870.91802988046, - "2029-01-01": 2814.90750148311, - "2028-01-01": 2759.65387211816, - "2027-01-01": 2703.64334372081, - "2026-01-01": 2638.62571683793, - "2025-01-01": 2598.89734812582, - "2024-01-01": 2542.4957552284, - "2023-01-01": 2405, - "2015-01-01": 2405 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 799.096861570353, - "2034-01-01": 783.62307582156, - "2033-01-01": 768.340324464728, - "2032-01-01": 753.439641891817, - "2031-01-01": 738.921028102827, - "2030-01-01": 724.593448705797, - "2029-01-01": 710.456903700727, - "2028-01-01": 696.511393087618, - "2027-01-01": 682.374848082549, - "2026-01-01": 665.96499381315, - "2025-01-01": 655.937916969802, - "2024-01-01": 641.70267086222, - "2023-01-01": 607, - "2015-01-01": 607 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1104.5177378213, - "2034-01-01": 1083.12975389504, - "2033-01-01": 1062.00581915306, - "2032-01-01": 1041.40998277963, - "2031-01-01": 1021.34224477475, - "2030-01-01": 1001.53855595414, - "2029-01-01": 981.998916317809, - "2028-01-01": 962.723325865752, - "2027-01-01": 943.183686229421, - "2026-01-01": 920.501861300219, - "2025-01-01": 906.642359699611, - "2024-01-01": 886.966294651404, - "2023-01-01": 839, - "2015-01-01": 839 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1255.91170665258, - "2034-01-01": 1231.59211587112, - "2033-01-01": 1207.57276695115, - "2032-01-01": 1184.15390175419, - "2031-01-01": 1161.33552028023, - "2030-01-01": 1138.81738066776, - "2029-01-01": 1116.59948291679, - "2028-01-01": 1094.68182702733, - "2027-01-01": 1072.46392927636, - "2026-01-01": 1046.67315337355, - "2025-01-01": 1030.91395846654, - "2024-01-01": 1008.5409357538, - "2023-01-01": 954, - "2015-01-01": 954 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1382.29275889435, - "2034-01-01": 1355.52591369463, - "2033-01-01": 1329.08952337391, - "2032-01-01": 1303.31404281122, - "2031-01-01": 1278.19947200654, - "2030-01-01": 1253.41535608087, - "2029-01-01": 1228.96169503421, - "2028-01-01": 1204.83848886656, - "2027-01-01": 1180.38482781989, - "2026-01-01": 1151.99875371303, - "2025-01-01": 1134.65372787198, - "2024-01-01": 1110.0293318045, - "2023-01-01": 1050, - "2015-01-01": 1050 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1494.19264890008, - "2034-01-01": 1465.25896385086, - "2033-01-01": 1436.6824847899, - "2032-01-01": 1408.82041770546, - "2031-01-01": 1381.67276259754, - "2030-01-01": 1354.88231347789, - "2029-01-01": 1328.4490703465, - "2028-01-01": 1302.37303320337, - "2027-01-01": 1275.93979007198, - "2026-01-01": 1245.25579568027, - "2025-01-01": 1226.50664869971, - "2024-01-01": 1199.88884914105, - "2023-01-01": 1135, - "2015-01-01": 1135 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1592.92784596397, - "2034-01-01": 1562.08224340047, - "2033-01-01": 1531.61745074518, - "2032-01-01": 1501.91427790626, - "2031-01-01": 1472.97272488372, - "2030-01-01": 1444.41198176938, - "2029-01-01": 1416.23204856323, - "2028-01-01": 1388.43292526527, - "2027-01-01": 1360.25299205912, - "2026-01-01": 1327.54142094549, - "2025-01-01": 1307.55334354771, - "2024-01-01": 1279.17665855566, - "2023-01-01": 1210, - "2015-01-01": 1210 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1682.44775796855, - "2034-01-01": 1649.86868352546, - "2033-01-01": 1617.69181987796, - "2032-01-01": 1586.31937782165, - "2031-01-01": 1555.75135735653, - "2030-01-01": 1525.585547687, - "2029-01-01": 1495.82194881306, - "2028-01-01": 1466.46056073472, - "2027-01-01": 1436.69696186079, - "2026-01-01": 1402.14705451929, - "2025-01-01": 1381.0356802099, - "2024-01-01": 1351.0642724249, - "2023-01-01": 1278, - "2015-01-01": 1278 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1765.38532350221, - "2034-01-01": 1731.20023834714, - "2033-01-01": 1697.4371912804, - "2032-01-01": 1664.51822039032, - "2031-01-01": 1632.44332567692, - "2030-01-01": 1600.79046905185, - "2029-01-01": 1569.55965051512, - "2028-01-01": 1538.75087006671, - "2027-01-01": 1507.52005152998, - "2026-01-01": 1471.26697974207, - "2025-01-01": 1449.11490388222, - "2024-01-01": 1417.66603233317, - "2023-01-01": 1341, - "2015-01-01": 1341 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1843.05701185913, - "2034-01-01": 1807.36788492617, - "2033-01-01": 1772.11936449855, - "2032-01-01": 1737.75205708162, - "2031-01-01": 1704.26596267538, - "2030-01-01": 1671.22047477449, - "2029-01-01": 1638.61559337894, - "2028-01-01": 1606.45131848874, - "2027-01-01": 1573.84643709319, - "2026-01-01": 1535.99833828404, - "2025-01-01": 1512.87163716264, - "2024-01-01": 1480.03910907266, - "2023-01-01": 1400, - "2015-01-01": 1400 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1944.42514751139, - "2034-01-01": 1906.77311859711, - "2033-01-01": 1869.58592954597, - "2032-01-01": 1833.32842022111, - "2031-01-01": 1798.00059062253, - "2030-01-01": 1763.13760088709, - "2029-01-01": 1728.73945101478, - "2028-01-01": 1694.80614100562, - "2027-01-01": 1660.40799113332, - "2026-01-01": 1620.47824688966, - "2025-01-01": 1596.07957720659, - "2024-01-01": 1561.44126007166, - "2023-01-01": 1477, - "2015-01-01": 1477 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2074.75560763571, - "2034-01-01": 2034.5798476026, - "2033-01-01": 1994.90008460694, - "2032-01-01": 1956.21231568617, - "2031-01-01": 1918.51654084029, - "2030-01-01": 1881.31676303186, - "2029-01-01": 1844.61298226087, - "2028-01-01": 1808.40519852732, - "2027-01-01": 1771.70141775634, - "2026-01-01": 1729.09527223974, - "2025-01-01": 1703.06121440594, - "2024-01-01": 1666.10116849894, - "2023-01-01": 1576, - "2015-01-01": 1576 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2194.55431340655, - "2034-01-01": 2152.0587601228, - "2033-01-01": 2110.08784329934, - "2032-01-01": 2069.16619939647, - "2031-01-01": 2029.29382841419, - "2030-01-01": 1989.9460938922, - "2029-01-01": 1951.1229958305, - "2028-01-01": 1912.82453422909, - "2027-01-01": 1874.00143616739, - "2026-01-01": 1828.93516422821, - "2025-01-01": 1801.39787082152, - "2024-01-01": 1762.30371058867, - "2023-01-01": 1667, - "2015-01-01": 1667 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2303.82126482392, - "2034-01-01": 2259.20985615771, - "2033-01-01": 2215.14920562319, - "2032-01-01": 2172.19007135203, - "2031-01-01": 2130.33245334423, - "2030-01-01": 2089.02559346811, - "2029-01-01": 2048.26949172368, - "2028-01-01": 2008.06414811093, - "2027-01-01": 1967.30804636649, - "2026-01-01": 1919.99792285505, - "2025-01-01": 1891.0895464533, - "2024-01-01": 1850.04888634083, - "2023-01-01": 1750, - "2015-01-01": 1750 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2406.50586977035, - "2034-01-01": 2359.90606688931, - "2033-01-01": 2313.88157021668, - "2032-01-01": 2269.00768596086, - "2031-01-01": 2225.28441412186, - "2030-01-01": 2182.13644849126, - "2029-01-01": 2139.56378906908, - "2028-01-01": 2097.5664358553, - "2027-01-01": 2054.99377643311, - "2026-01-01": 2005.57497313087, - "2025-01-01": 1975.37810909522, - "2024-01-01": 1932.50820813202, - "2023-01-01": 1828, - "2015-01-01": 1828 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2511.82341330516, - "2034-01-01": 2463.18423174224, - "2033-01-01": 2415.14553390231, - "2032-01-01": 2368.30780350838, - "2031-01-01": 2322.67104056045, - "2030-01-01": 2277.63476133552, - "2029-01-01": 2233.19896583359, - "2028-01-01": 2189.36365405465, - "2027-01-01": 2144.92785855272, - "2026-01-01": 2093.3463067471, - "2025-01-01": 2061.82791693309, - "2024-01-01": 2017.0818715076, - "2023-01-01": 1908, - "2015-01-01": 1908 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2625.03977260508, - "2034-01-01": 2574.20825895913, - "2033-01-01": 2524.00429486436, - "2032-01-01": 2475.05542987197, - "2031-01-01": 2427.36166398194, - "2030-01-01": 2380.2954476431, - "2029-01-01": 2333.85678085544, - "2028-01-01": 2288.04566361896, - "2027-01-01": 2241.6069968313, - "2026-01-01": 2187.70049038455, - "2025-01-01": 2154.76146035879, - "2024-01-01": 2107.99855963635, - "2023-01-01": 1994, - "2015-01-01": 1994 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2730.35731613989, - "2034-01-01": 2677.48642381205, - "2033-01-01": 2625.26825854999, - "2032-01-01": 2574.35554741949, - "2031-01-01": 2524.74829042053, - "2030-01-01": 2475.79376048735, - "2029-01-01": 2427.49195761995, - "2028-01-01": 2379.84288181832, - "2027-01-01": 2331.54107895092, - "2026-01-01": 2275.47182400078, - "2025-01-01": 2241.21126819666, - "2024-01-01": 2192.57222301193, - "2023-01-01": 2074, - "2015-01-01": 2074 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2829.09251320377, - "2034-01-01": 2774.30970336167, - "2033-01-01": 2720.20322450527, - "2032-01-01": 2667.44940762029, - "2031-01-01": 2616.04825270671, - "2030-01-01": 2565.32342877884, - "2029-01-01": 2515.27493583668, - "2028-01-01": 2465.90277388022, - "2027-01-01": 2415.85428093805, - "2026-01-01": 2357.757449266, - "2025-01-01": 2322.25796304465, - "2024-01-01": 2271.86003242654, - "2023-01-01": 2149, - "2015-01-01": 2149 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3405.70606405684, - "2034-01-01": 3339.75765593143, - "2033-01-01": 3274.62342568411, - "2032-01-01": 3211.11755119297, - "2031-01-01": 3149.24003245801, - "2030-01-01": 3088.17669160115, - "2029-01-01": 3027.92752862237, - "2028-01-01": 2968.49254352169, - "2027-01-01": 2908.24338054292, - "2026-01-01": 2838.30550081486, - "2025-01-01": 2795.57066095697, - "2024-01-01": 2734.90083940785, - "2023-01-01": 2587, - "2015-01-01": 2587 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 846.489756161016, - "2034-01-01": 830.098250005376, - "2033-01-01": 813.909108123262, - "2032-01-01": 798.124694788202, - "2031-01-01": 782.745010000194, - "2030-01-01": 767.567689485713, - "2029-01-01": 752.592733244757, - "2028-01-01": 737.820141277329, - "2027-01-01": 722.845185036374, - "2026-01-01": 705.462093940454, - "2025-01-01": 694.840330496842, - "2024-01-01": 679.760819381231, - "2023-01-01": 643, - "2015-01-01": 643 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1167.70826394218, - "2034-01-01": 1145.09665280679, - "2033-01-01": 1122.76419736444, - "2032-01-01": 1100.99005330814, - "2031-01-01": 1079.7742206379, - "2030-01-01": 1058.8375436607, - "2029-01-01": 1038.18002237652, - "2028-01-01": 1017.80165678537, - "2027-01-01": 997.144135501187, - "2026-01-01": 973.164661469958, - "2025-01-01": 958.512244402331, - "2024-01-01": 937.710492676752, - "2023-01-01": 887, - "2015-01-01": 887 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1327.00104853858, - "2034-01-01": 1301.30487714684, - "2033-01-01": 1275.92594243896, - "2032-01-01": 1251.18148109877, - "2031-01-01": 1227.07149312628, - "2030-01-01": 1203.27874183763, - "2029-01-01": 1179.80322723284, - "2028-01-01": 1156.64494931189, - "2027-01-01": 1133.1694347071, - "2026-01-01": 1105.91880356451, - "2025-01-01": 1089.2675787571, - "2024-01-01": 1065.62815853232, - "2023-01-01": 1008, - "2015-01-01": 1008 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1461.28091654546, - "2034-01-01": 1432.98453733432, - "2033-01-01": 1405.03749613814, - "2032-01-01": 1377.78913097186, - "2031-01-01": 1351.23944183548, - "2030-01-01": 1325.03909071406, - "2029-01-01": 1299.18807760759, - "2028-01-01": 1273.68640251607, - "2027-01-01": 1247.8353894096, - "2026-01-01": 1217.8272539252, - "2025-01-01": 1199.49108375038, - "2024-01-01": 1173.45957933618, - "2023-01-01": 1110, - "2015-01-01": 1110 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1578.44668372793, - "2034-01-01": 1547.8814957332, - "2033-01-01": 1517.6936557384, - "2032-01-01": 1488.26051174347, - "2031-01-01": 1459.58206374842, - "2030-01-01": 1431.2809637533, - "2029-01-01": 1403.35721175811, - "2028-01-01": 1375.81080776286, - "2027-01-01": 1347.88705576767, - "2026-01-01": 1315.47286257326, - "2025-01-01": 1295.66649497, - "2024-01-01": 1267.54777984152, - "2023-01-01": 1199, - "2015-01-01": 1199 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1682.44775796855, - "2034-01-01": 1649.86868352546, - "2033-01-01": 1617.69181987796, - "2032-01-01": 1586.31937782165, - "2031-01-01": 1555.75135735653, - "2030-01-01": 1525.585547687, - "2029-01-01": 1495.82194881306, - "2028-01-01": 1466.46056073472, - "2027-01-01": 1436.69696186079, - "2026-01-01": 1402.14705451929, - "2025-01-01": 1381.0356802099, - "2024-01-01": 1351.0642724249, - "2023-01-01": 1278, - "2015-01-01": 1278 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1777.23354714988, - "2034-01-01": 1742.81903189309, - "2033-01-01": 1708.82938719503, - "2032-01-01": 1675.68948361442, - "2031-01-01": 1643.39932115126, - "2030-01-01": 1611.53402924683, - "2029-01-01": 1580.09360790112, - "2028-01-01": 1549.07805711414, - "2027-01-01": 1517.63763576844, - "2026-01-01": 1481.14125477389, - "2025-01-01": 1458.84050726398, - "2024-01-01": 1427.18056946293, - "2023-01-01": 1350, - "2015-01-01": 1350 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1864.1205205661, - "2034-01-01": 1828.02351789675, - "2033-01-01": 1792.37215723568, - "2032-01-01": 1757.61208059113, - "2031-01-01": 1723.7432879631, - "2030-01-01": 1690.32013734334, - "2029-01-01": 1657.34262873184, - "2028-01-01": 1624.81076212861, - "2027-01-01": 1591.83325351712, - "2026-01-01": 1553.55260500728, - "2025-01-01": 1530.16159873021, - "2024-01-01": 1496.95384174778, - "2023-01-01": 1416, - "2015-01-01": 1416 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1945.74161680557, - "2034-01-01": 1908.06409565777, - "2033-01-01": 1870.85172909204, - "2032-01-01": 1834.56967169045, - "2031-01-01": 1799.21792345301, - "2030-01-01": 1764.33132979764, - "2029-01-01": 1729.90989072434, - "2028-01-01": 1695.95360623311, - "2027-01-01": 1661.53216715981, - "2026-01-01": 1621.57538855986, - "2025-01-01": 1597.16019980456, - "2024-01-01": 1562.49843086386, - "2023-01-01": 1478, - "2015-01-01": 1478 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2052.37562963456, - "2034-01-01": 2012.63323757136, - "2033-01-01": 1973.38149232374, - "2032-01-01": 1935.11104070732, - "2031-01-01": 1897.82188272209, - "2030-01-01": 1861.02337155245, - "2029-01-01": 1824.71550719841, - "2028-01-01": 1788.89828965996, - "2027-01-01": 1752.59042530592, - "2026-01-01": 1710.4438638463, - "2025-01-01": 1684.6906302404, - "2024-01-01": 1648.12926503163, - "2023-01-01": 1559, - "2015-01-01": 1559 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2189.28843622981, - "2034-01-01": 2146.89485188016, - "2033-01-01": 2105.02464511506, - "2032-01-01": 2064.2011935191, - "2031-01-01": 2024.42449709226, - "2030-01-01": 1985.17117824998, - "2029-01-01": 1946.44123699227, - "2028-01-01": 1908.23467331912, - "2027-01-01": 1869.50473206141, - "2026-01-01": 1824.5465975474, - "2025-01-01": 1797.07538042962, - "2024-01-01": 1758.07502741989, - "2023-01-01": 1663, - "2015-01-01": 1663 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2315.66948847158, - "2034-01-01": 2270.82864970367, - "2033-01-01": 2226.54140153782, - "2032-01-01": 2183.36133457612, - "2031-01-01": 2141.28844881857, - "2030-01-01": 2099.76915366309, - "2029-01-01": 2058.80344910969, - "2028-01-01": 2018.39133515835, - "2027-01-01": 1977.42563060495, - "2026-01-01": 1929.87219788687, - "2025-01-01": 1900.81514983506, - "2024-01-01": 1859.56342347058, - "2023-01-01": 1759, - "2015-01-01": 1759 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2430.20231706569, - "2034-01-01": 2383.14365398122, - "2033-01-01": 2336.66596204594, - "2032-01-01": 2291.35021240905, - "2031-01-01": 2247.19640507054, - "2030-01-01": 2203.62356888122, - "2029-01-01": 2160.63170384109, - "2028-01-01": 2118.22080995015, - "2027-01-01": 2075.22894491002, - "2026-01-01": 2025.32352319452, - "2025-01-01": 1994.82931585874, - "2024-01-01": 1951.53728239153, - "2023-01-01": 1846, - "2015-01-01": 1846 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2538.15279918886, - "2034-01-01": 2489.00377295547, - "2033-01-01": 2440.46152482372, - "2032-01-01": 2393.13283289526, - "2031-01-01": 2347.0176971701, - "2030-01-01": 2301.50933954658, - "2029-01-01": 2256.60776002472, - "2028-01-01": 2212.31295860449, - "2027-01-01": 2167.41137908263, - "2026-01-01": 2115.28914015116, - "2025-01-01": 2083.44036889255, - "2024-01-01": 2038.2252873515, - "2023-01-01": 1928, - "2015-01-01": 1928 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2650.0526891946, - "2034-01-01": 2598.7368231117, - "2033-01-01": 2548.0544862397, - "2032-01-01": 2498.6392077895, - "2031-01-01": 2450.49098776111, - "2030-01-01": 2402.97629694361, - "2029-01-01": 2356.09513533701, - "2028-01-01": 2309.84750294131, - "2027-01-01": 2262.96634133471, - "2026-01-01": 2208.5461821184, - "2025-01-01": 2175.29328972028, - "2024-01-01": 2128.08480468805, - "2023-01-01": 2013, - "2015-01-01": 2013 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2767.21845637707, - "2034-01-01": 2713.63378151058, - "2033-01-01": 2660.71064583997, - "2032-01-01": 2609.11058856112, - "2031-01-01": 2558.83360967404, - "2030-01-01": 2509.21816998284, - "2029-01-01": 2460.26426948753, - "2028-01-01": 2411.97190818809, - "2027-01-01": 2363.01800769278, - "2026-01-01": 2306.19179076646, - "2025-01-01": 2271.46870093991, - "2024-01-01": 2222.17300519339, - "2023-01-01": 2102, - "2015-01-01": 2102 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2877.80187708862, - "2034-01-01": 2822.07585460615, - "2033-01-01": 2767.03780770988, - "2032-01-01": 2713.37571198602, - "2031-01-01": 2661.08956743456, - "2030-01-01": 2609.49139846931, - "2029-01-01": 2558.58120509026, - "2028-01-01": 2508.35898729742, - "2027-01-01": 2457.44879391837, - "2026-01-01": 2398.3516910635, - "2025-01-01": 2362.24099916967, - "2024-01-01": 2310.97535173775, - "2023-01-01": 2186, - "2015-01-01": 2186 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2983.11942062343, - "2034-01-01": 2925.35401945907, - "2033-01-01": 2868.30177139551, - "2032-01-01": 2812.67582953354, - "2031-01-01": 2758.47619387316, - "2030-01-01": 2704.98971131357, - "2029-01-01": 2652.21638185477, - "2028-01-01": 2600.15620549678, - "2027-01-01": 2547.38287603798, - "2026-01-01": 2486.12302467973, - "2025-01-01": 2448.69080700753, - "2024-01-01": 2395.54901511333, - "2023-01-01": 2266, - "2015-01-01": 2266 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3588.69529594857, - "2034-01-01": 3519.20346736338, - "2033-01-01": 3450.56956258789, - "2032-01-01": 3383.65150543179, - "2031-01-01": 3318.44929589507, - "2030-01-01": 3254.10501016804, - "2029-01-01": 3190.61864825071, - "2028-01-01": 3127.99021014308, - "2027-01-01": 3064.50384822575, - "2026-01-01": 2990.80819297306, - "2025-01-01": 2945.77720207526, - "2024-01-01": 2881.84757952292, - "2023-01-01": 2726, - "2015-01-01": 2726 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 884.667365692384, - "2034-01-01": 867.536584764561, - "2033-01-01": 850.617294959304, - "2032-01-01": 834.120987399178, - "2031-01-01": 818.047662084184, - "2030-01-01": 802.185827891756, - "2029-01-01": 786.535484821892, - "2028-01-01": 771.096632874595, - "2027-01-01": 755.446289804733, - "2026-01-01": 737.279202376338, - "2025-01-01": 726.178385838068, - "2024-01-01": 710.418772354879, - "2023-01-01": 672, - "2015-01-01": 672 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1219.0505664154, - "2034-01-01": 1195.44475817259, - "2033-01-01": 1172.13037966118, - "2032-01-01": 1149.39886061256, - "2031-01-01": 1127.25020102672, - "2030-01-01": 1105.39297117227, - "2029-01-01": 1083.82717104921, - "2028-01-01": 1062.55280065755, - "2027-01-01": 1040.9870005345, - "2026-01-01": 1015.95318660787, - "2025-01-01": 1000.65652572329, - "2024-01-01": 978.940153572348, - "2023-01-01": 926, - "2015-01-01": 926 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1386.24216677691, - "2034-01-01": 1359.39884487661, - "2033-01-01": 1332.88692201212, - "2032-01-01": 1307.03779721925, - "2031-01-01": 1281.85147049798, - "2030-01-01": 1256.99654281253, - "2029-01-01": 1232.47301416288, - "2028-01-01": 1208.28088454903, - "2027-01-01": 1183.75735589938, - "2026-01-01": 1155.29017872364, - "2025-01-01": 1137.8955956659, - "2024-01-01": 1113.20084418108, - "2023-01-01": 1053, - "2015-01-01": 1053 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1524.47144266634, - "2034-01-01": 1494.95143624607, - "2033-01-01": 1465.79587434951, - "2032-01-01": 1437.36920150037, - "2031-01-01": 1409.67141769864, - "2030-01-01": 1382.33807842061, - "2029-01-01": 1355.3691836663, - "2028-01-01": 1328.76473343569, - "2027-01-01": 1301.79583868137, - "2026-01-01": 1270.49005409494, - "2025-01-01": 1251.3609684531, - "2024-01-01": 1224.20377736153, - "2023-01-01": 1158, - "2015-01-01": 1158 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1646.90308702555, - "2034-01-01": 1615.0123028876, - "2033-01-01": 1583.51523213406, - "2032-01-01": 1552.80558814936, - "2031-01-01": 1522.8833709335, - "2030-01-01": 1493.35486710206, - "2029-01-01": 1464.22007665504, - "2028-01-01": 1435.47899959244, - "2027-01-01": 1406.34420914542, - "2026-01-01": 1372.52422942381, - "2025-01-01": 1351.85887006462, - "2024-01-01": 1322.52066103565, - "2023-01-01": 1251, - "2015-01-01": 1251 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1756.17003844292, - "2034-01-01": 1722.16339892251, - "2033-01-01": 1688.5765944579, - "2032-01-01": 1655.82946010492, - "2031-01-01": 1623.92199586354, - "2030-01-01": 1592.43436667798, - "2029-01-01": 1561.36657254822, - "2028-01-01": 1530.71861347427, - "2027-01-01": 1499.65081934451, - "2026-01-01": 1463.58698805065, - "2025-01-01": 1441.5505456964, - "2024-01-01": 1410.26583678781, - "2023-01-01": 1334, - "2015-01-01": 1334 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1853.58876621261, - "2034-01-01": 1817.69570141146, - "2033-01-01": 1782.24576086711, - "2032-01-01": 1747.68206883637, - "2031-01-01": 1714.00462531924, - "2030-01-01": 1680.77030605892, - "2029-01-01": 1647.97911105539, - "2028-01-01": 1615.63104030868, - "2027-01-01": 1582.83984530515, - "2026-01-01": 1544.77547164566, - "2025-01-01": 1521.51661794643, - "2024-01-01": 1488.49647541022, - "2023-01-01": 1408, - "2015-01-01": 1408 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1944.42514751139, - "2034-01-01": 1906.77311859711, - "2033-01-01": 1869.58592954597, - "2032-01-01": 1833.32842022111, - "2031-01-01": 1798.00059062253, - "2030-01-01": 1763.13760088709, - "2029-01-01": 1728.73945101478, - "2028-01-01": 1694.80614100562, - "2027-01-01": 1660.40799113332, - "2026-01-01": 1620.47824688966, - "2025-01-01": 1596.07957720659, - "2024-01-01": 1561.44126007166, - "2023-01-01": 1477, - "2015-01-01": 1477 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2028.67918233923, - "2034-01-01": 1989.39565047945, - "2033-01-01": 1950.59710049448, - "2032-01-01": 1912.76851425913, - "2031-01-01": 1875.9098917734, - "2030-01-01": 1839.53625116249, - "2029-01-01": 1803.64759242639, - "2028-01-01": 1768.24391556511, - "2027-01-01": 1732.35525682901, - "2026-01-01": 1690.69531378264, - "2025-01-01": 1665.23942347688, - "2024-01-01": 1629.10019077213, - "2023-01-01": 1541, - "2015-01-01": 1541 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2140.57907234497, - "2034-01-01": 2099.12870063568, - "2033-01-01": 2058.19006191046, - "2032-01-01": 2018.27488915337, - "2031-01-01": 1979.38318236441, - "2030-01-01": 1941.00320855952, - "2029-01-01": 1903.13496773869, - "2028-01-01": 1865.77845990192, - "2027-01-01": 1827.91021908109, - "2026-01-01": 1783.95235574989, - "2025-01-01": 1757.09234430461, - "2024-01-01": 1718.95970810868, - "2023-01-01": 1626, - "2015-01-01": 1626 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2282.75775611696, - "2034-01-01": 2238.55422318713, - "2033-01-01": 2194.89641288606, - "2032-01-01": 2152.33004784252, - "2031-01-01": 2110.85512805651, - "2030-01-01": 2069.92593089926, - "2029-01-01": 2029.54245637078, - "2028-01-01": 1989.70470447105, - "2027-01-01": 1949.32122994257, - "2026-01-01": 1902.4436561318, - "2025-01-01": 1873.79958488573, - "2024-01-01": 1833.13415366571, - "2023-01-01": 1734, - "2015-01-01": 1734 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2414.40468553547, - "2034-01-01": 2367.65192925328, - "2033-01-01": 2321.4763674931, - "2032-01-01": 2276.45519477692, - "2031-01-01": 2232.58841110475, - "2030-01-01": 2189.29882195458, - "2029-01-01": 2146.58642732641, - "2028-01-01": 2104.45122722025, - "2027-01-01": 2061.73883259208, - "2026-01-01": 2012.15782315209, - "2025-01-01": 1981.86184468306, - "2024-01-01": 1938.85123288519, - "2023-01-01": 1834, - "2015-01-01": 1834 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2534.20339130631, - "2034-01-01": 2485.13084177348, - "2033-01-01": 2436.66412618551, - "2032-01-01": 2389.40907848723, - "2031-01-01": 2343.36569867865, - "2030-01-01": 2297.92815281492, - "2029-01-01": 2253.09644089605, - "2028-01-01": 2208.87056292202, - "2027-01-01": 2164.03885100314, - "2026-01-01": 2111.99771514055, - "2025-01-01": 2080.19850109863, - "2024-01-01": 2035.05377497491, - "2023-01-01": 1925, - "2015-01-01": 1925 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2646.10328131204, - "2034-01-01": 2594.86389192971, - "2033-01-01": 2544.25708760149, - "2032-01-01": 2494.91545338147, - "2031-01-01": 2446.83898926966, - "2030-01-01": 2399.39511021195, - "2029-01-01": 2352.58381620834, - "2028-01-01": 2306.40510725883, - "2027-01-01": 2259.59381325523, - "2026-01-01": 2205.2547571078, - "2025-01-01": 2172.05142192636, - "2024-01-01": 2124.91329231147, - "2023-01-01": 2010, - "2015-01-01": 2010 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2761.95257920033, - "2034-01-01": 2708.46987326793, - "2033-01-01": 2655.64744765568, - "2032-01-01": 2604.14558268374, - "2031-01-01": 2553.96427835211, - "2030-01-01": 2504.44325434063, - "2029-01-01": 2455.5825106493, - "2028-01-01": 2407.38204727813, - "2027-01-01": 2358.5213035868, - "2026-01-01": 2301.80322408565, - "2025-01-01": 2267.14621054802, - "2024-01-01": 2217.94432202461, - "2023-01-01": 2098, - "2015-01-01": 2098 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2884.38422355954, - "2034-01-01": 2828.53073990945, - "2033-01-01": 2773.36680544023, - "2032-01-01": 2719.58196933274, - "2031-01-01": 2667.17623158698, - "2030-01-01": 2615.46004302208, - "2029-01-01": 2564.43340363804, - "2028-01-01": 2514.09631343488, - "2027-01-01": 2463.06967405085, - "2026-01-01": 2403.83739941452, - "2025-01-01": 2367.64411215953, - "2024-01-01": 2316.26120569872, - "2023-01-01": 2191, - "2015-01-01": 2191 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2998.91705215365, - "2034-01-01": 2940.84574418701, - "2033-01-01": 2883.49136594835, - "2032-01-01": 2827.57084716567, - "2031-01-01": 2773.08418783895, - "2030-01-01": 2719.31445824021, - "2029-01-01": 2666.26165836945, - "2028-01-01": 2613.92578822668, - "2027-01-01": 2560.87298835592, - "2026-01-01": 2499.28872472217, - "2025-01-01": 2461.65827818321, - "2024-01-01": 2408.23506461966, - "2023-01-01": 2278, - "2015-01-01": 2278 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3108.18400357101, - "2034-01-01": 3047.99684022192, - "2033-01-01": 2988.5527282722, - "2032-01-01": 2930.59471912122, - "2031-01-01": 2874.12281276899, - "2030-01-01": 2818.39395781612, - "2029-01-01": 2763.40815426263, - "2028-01-01": 2709.16540210851, - "2027-01-01": 2654.17959855502, - "2026-01-01": 2590.35148334901, - "2025-01-01": 2551.349953815, - "2024-01-01": 2495.98024037183, - "2023-01-01": 2361, - "2015-01-01": 2361 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3737.45632619149, - "2034-01-01": 3665.08387521814, - "2033-01-01": 3593.60491129384, - "2032-01-01": 3523.91292146766, - "2031-01-01": 3456.00790573958, - "2030-01-01": 3388.99637706056, - "2029-01-01": 3322.87833543058, - "2028-01-01": 3257.65378084967, - "2027-01-01": 3191.5357392197, - "2026-01-01": 3114.78520170599, - "2025-01-01": 3067.88755564624, - "2024-01-01": 3001.30787904093, - "2023-01-01": 2839, - "2015-01-01": 2839 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 937.326137459788, - "2034-01-01": 919.175667191023, - "2033-01-01": 901.24927680212, - "2032-01-01": 883.771046172939, - "2031-01-01": 866.740975303481, - "2030-01-01": 849.934984313884, - "2029-01-01": 833.353073204148, - "2028-01-01": 816.995241974274, - "2027-01-01": 800.413330864538, - "2026-01-01": 781.164869184453, - "2025-01-01": 769.403289757, - "2024-01-01": 752.705604042669, - "2023-01-01": 712, - "2015-01-01": 712 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1291.45637759558, - "2034-01-01": 1266.44849650898, - "2033-01-01": 1241.74935469506, - "2032-01-01": 1217.66769142648, - "2031-01-01": 1194.20350670325, - "2030-01-01": 1171.0480612527, - "2029-01-01": 1148.20135507482, - "2028-01-01": 1125.66338816961, - "2027-01-01": 1102.81668199173, - "2026-01-01": 1076.29597846903, - "2025-01-01": 1060.09076861182, - "2024-01-01": 1037.08454714306, - "2023-01-01": 981, - "2015-01-01": 981 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1466.5467937222, - "2034-01-01": 1438.14844557697, - "2033-01-01": 1410.10069432242, - "2032-01-01": 1382.75413684923, - "2031-01-01": 1356.10877315741, - "2030-01-01": 1329.81400635627, - "2029-01-01": 1303.86983644582, - "2028-01-01": 1278.27626342604, - "2027-01-01": 1252.33209351558, - "2026-01-01": 1222.21582060601, - "2025-01-01": 1203.81357414227, - "2024-01-01": 1177.68826250496, - "2023-01-01": 1114, - "2015-01-01": 1114 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1613.99135467093, - "2034-01-01": 1582.73787637106, - "2033-01-01": 1551.8702434823, - "2032-01-01": 1521.77430141576, - "2031-01-01": 1492.45005017144, - "2030-01-01": 1463.51164433823, - "2029-01-01": 1434.95908391613, - "2028-01-01": 1406.79236890514, - "2027-01-01": 1378.23980848304, - "2026-01-01": 1345.09568766874, - "2025-01-01": 1324.84330511528, - "2024-01-01": 1296.09139123078, - "2023-01-01": 1226, - "2015-01-01": 1226 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1743.00534550107, - "2034-01-01": 1709.25362831589, - "2033-01-01": 1675.9185989972, - "2032-01-01": 1643.41694541148, - "2031-01-01": 1611.74866755872, - "2030-01-01": 1580.49707757245, - "2029-01-01": 1549.66217545266, - "2028-01-01": 1519.24396119935, - "2027-01-01": 1488.40905907956, - "2026-01-01": 1452.61557134862, - "2025-01-01": 1430.74431971667, - "2024-01-01": 1399.69412886586, - "2023-01-01": 1324, - "2015-01-01": 1324 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1856.22170480098, - "2034-01-01": 1820.27765553278, - "2033-01-01": 1784.77735995925, - "2032-01-01": 1750.16457177506, - "2031-01-01": 1716.43929098021, - "2030-01-01": 1683.15776388002, - "2029-01-01": 1650.31999047451, - "2028-01-01": 1617.92597076366, - "2027-01-01": 1585.08819735814, - "2026-01-01": 1546.96975498607, - "2025-01-01": 1523.67786314237, - "2024-01-01": 1490.61081699461, - "2023-01-01": 1410, - "2015-01-01": 1410 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1960.22277904161, - "2034-01-01": 1922.26484332505, - "2033-01-01": 1884.77552409881, - "2032-01-01": 1848.22343785324, - "2031-01-01": 1812.60858458832, - "2030-01-01": 1777.46234781373, - "2029-01-01": 1742.78472752946, - "2028-01-01": 1708.57572373552, - "2027-01-01": 1673.89810345126, - "2026-01-01": 1633.64394693209, - "2025-01-01": 1609.04704838227, - "2024-01-01": 1574.127309578, - "2023-01-01": 1489, - "2015-01-01": 1489 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2056.32503751712, - "2034-01-01": 2016.50616875334, - "2033-01-01": 1977.17889096195, - "2032-01-01": 1938.83479511535, - "2031-01-01": 1901.47388121354, - "2030-01-01": 1864.60455828411, - "2029-01-01": 1828.22682632708, - "2028-01-01": 1792.34068534244, - "2027-01-01": 1755.96295338541, - "2026-01-01": 1713.7352888569, - "2025-01-01": 1687.93249803432, - "2024-01-01": 1651.30077740822, - "2023-01-01": 1562, - "2015-01-01": 1562 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2145.84494952171, - "2034-01-01": 2104.29260887833, - "2033-01-01": 2063.25326009474, - "2032-01-01": 2023.23989503074, - "2031-01-01": 1984.25251368634, - "2030-01-01": 1945.77812420173, - "2029-01-01": 1907.81672657691, - "2028-01-01": 1870.36832081189, - "2027-01-01": 1832.40692318707, - "2026-01-01": 1788.3409224307, - "2025-01-01": 1761.4148346965, - "2024-01-01": 1723.18839127746, - "2023-01-01": 1630, - "2015-01-01": 1630 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2261.69424740999, - "2034-01-01": 2217.89859021654, - "2033-01-01": 2174.64362014893, - "2032-01-01": 2132.47002433302, - "2031-01-01": 2091.37780276879, - "2030-01-01": 2050.82626833041, - "2029-01-01": 2010.81542101787, - "2028-01-01": 1971.34526083118, - "2027-01-01": 1931.33441351865, - "2026-01-01": 1884.88938940855, - "2025-01-01": 1856.50962331816, - "2024-01-01": 1816.2194209906, - "2023-01-01": 1718, - "2015-01-01": 1718 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2413.08821624128, - "2034-01-01": 2366.36095219262, - "2033-01-01": 2320.21056794703, - "2032-01-01": 2275.21394330758, - "2031-01-01": 2231.37107827427, - "2030-01-01": 2188.10509304403, - "2029-01-01": 2145.41598761686, - "2028-01-01": 2103.30376199276, - "2027-01-01": 2060.61465656559, - "2026-01-01": 2011.06068148189, - "2025-01-01": 1980.78122208509, - "2024-01-01": 1937.794062093, - "2023-01-01": 1833, - "2015-01-01": 1833 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2551.31749213071, - "2034-01-01": 2501.91354356208, - "2033-01-01": 2453.11952028442, - "2032-01-01": 2405.5453475887, - "2031-01-01": 2359.19102547492, - "2030-01-01": 2313.44662865212, - "2029-01-01": 2268.31215712028, - "2028-01-01": 2223.78761087941, - "2027-01-01": 2178.65313934758, - "2026-01-01": 2126.26055685319, - "2025-01-01": 2094.24659487228, - "2024-01-01": 2048.79699527345, - "2023-01-01": 1938, - "2015-01-01": 1938 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2676.3820750783, - "2034-01-01": 2624.55636432493, - "2033-01-01": 2573.37047716111, - "2032-01-01": 2523.46423717638, - "2031-01-01": 2474.83764437075, - "2030-01-01": 2426.85087515467, - "2029-01-01": 2379.50392952814, - "2028-01-01": 2332.79680749115, - "2027-01-01": 2285.44986186462, - "2026-01-01": 2230.48901552246, - "2025-01-01": 2196.90574167975, - "2024-01-01": 2149.22822053195, - "2023-01-01": 2033, - "2015-01-01": 2033 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2794.86431155496, - "2034-01-01": 2740.74429978447, - "2033-01-01": 2687.29243630744, - "2032-01-01": 2635.17686941734, - "2031-01-01": 2584.39759911417, - "2030-01-01": 2534.28647710446, - "2029-01-01": 2484.84350338821, - "2028-01-01": 2436.06867796543, - "2027-01-01": 2386.62570424918, - "2026-01-01": 2329.23176584072, - "2025-01-01": 2294.16177549735, - "2024-01-01": 2244.37359182948, - "2023-01-01": 2123, - "2015-01-01": 2123 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2915.97948661999, - "2034-01-01": 2859.51418936533, - "2033-01-01": 2803.74599454592, - "2032-01-01": 2749.37200459699, - "2031-01-01": 2696.39221951855, - "2030-01-01": 2644.10953687536, - "2029-01-01": 2592.5239566674, - "2028-01-01": 2541.63547889469, - "2027-01-01": 2490.04989868673, - "2026-01-01": 2430.16879949939, - "2025-01-01": 2393.57905451089, - "2024-01-01": 2341.63330471139, - "2023-01-01": 2215, - "2015-01-01": 2215 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3044.99347745013, - "2034-01-01": 2986.02994131016, - "2033-01-01": 2927.79435006082, - "2032-01-01": 2871.01464859271, - "2031-01-01": 2815.69083690583, - "2030-01-01": 2761.09497010957, - "2029-01-01": 2707.22704820392, - "2028-01-01": 2654.0870711889, - "2027-01-01": 2600.21914928325, - "2026-01-01": 2537.68868317927, - "2025-01-01": 2499.48006911228, - "2024-01-01": 2445.23604234648, - "2023-01-01": 2313, - "2015-01-01": 2313 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3166.10865251515, - "2034-01-01": 3104.79983089103, - "2033-01-01": 3044.24790829929, - "2032-01-01": 2985.20978377236, - "2031-01-01": 2927.68545731021, - "2030-01-01": 2870.91802988046, - "2029-01-01": 2814.90750148311, - "2028-01-01": 2759.65387211816, - "2027-01-01": 2703.64334372081, - "2026-01-01": 2638.62571683793, - "2025-01-01": 2598.89734812582, - "2024-01-01": 2542.4957552284, - "2023-01-01": 2405, - "2015-01-01": 2405 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3280.64148110926, - "2034-01-01": 3217.11483516858, - "2033-01-01": 3154.37246880742, - "2032-01-01": 3093.19866160529, - "2031-01-01": 3033.59341356218, - "2030-01-01": 2974.77244509859, - "2029-01-01": 2916.73575621452, - "2028-01-01": 2859.48334690996, - "2027-01-01": 2801.44665802588, - "2026-01-01": 2734.07704214559, - "2025-01-01": 2692.9115141495, - "2024-01-01": 2634.46961414934, - "2023-01-01": 2492, - "2015-01-01": 2492 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CA.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3942.82553608436, - "2034-01-01": 3866.47629668134, - "2033-01-01": 3791.06964048083, - "2032-01-01": 3717.54815068533, - "2031-01-01": 3645.91182729484, - "2030-01-01": 3575.21808710686, - "2029-01-01": 3505.46693012138, - "2028-01-01": 3436.65835633841, - "2027-01-01": 3366.90719935294, - "2026-01-01": 3285.93930225764, - "2025-01-01": 3236.46468093008, - "2024-01-01": 3166.22652262331, - "2023-01-01": 2995, - "2015-01-01": 2995 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO", - "description": null, - "label": "CO", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 846.489756161016, - "2034-01-01": 830.098250005376, - "2033-01-01": 813.909108123262, - "2032-01-01": 798.124694788202, - "2031-01-01": 782.745010000194, - "2030-01-01": 767.567689485713, - "2029-01-01": 752.592733244757, - "2028-01-01": 737.820141277329, - "2027-01-01": 722.845185036374, - "2026-01-01": 705.462093940454, - "2025-01-01": 694.840330496842, - "2024-01-01": 679.760819381231, - "2023-01-01": 643, - "2015-01-01": 643 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1167.70826394218, - "2034-01-01": 1145.09665280679, - "2033-01-01": 1122.76419736444, - "2032-01-01": 1100.99005330814, - "2031-01-01": 1079.7742206379, - "2030-01-01": 1058.8375436607, - "2029-01-01": 1038.18002237652, - "2028-01-01": 1017.80165678537, - "2027-01-01": 997.144135501187, - "2026-01-01": 973.164661469958, - "2025-01-01": 958.512244402331, - "2024-01-01": 937.710492676752, - "2023-01-01": 887, - "2015-01-01": 887 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1327.00104853858, - "2034-01-01": 1301.30487714684, - "2033-01-01": 1275.92594243896, - "2032-01-01": 1251.18148109877, - "2031-01-01": 1227.07149312628, - "2030-01-01": 1203.27874183763, - "2029-01-01": 1179.80322723284, - "2028-01-01": 1156.64494931189, - "2027-01-01": 1133.1694347071, - "2026-01-01": 1105.91880356451, - "2025-01-01": 1089.2675787571, - "2024-01-01": 1065.62815853232, - "2023-01-01": 1008, - "2015-01-01": 1008 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1461.28091654546, - "2034-01-01": 1432.98453733432, - "2033-01-01": 1405.03749613814, - "2032-01-01": 1377.78913097186, - "2031-01-01": 1351.23944183548, - "2030-01-01": 1325.03909071406, - "2029-01-01": 1299.18807760759, - "2028-01-01": 1273.68640251607, - "2027-01-01": 1247.8353894096, - "2026-01-01": 1217.8272539252, - "2025-01-01": 1199.49108375038, - "2024-01-01": 1173.45957933618, - "2023-01-01": 1110, - "2015-01-01": 1110 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1578.44668372793, - "2034-01-01": 1547.8814957332, - "2033-01-01": 1517.6936557384, - "2032-01-01": 1488.26051174347, - "2031-01-01": 1459.58206374842, - "2030-01-01": 1431.2809637533, - "2029-01-01": 1403.35721175811, - "2028-01-01": 1375.81080776286, - "2027-01-01": 1347.88705576767, - "2026-01-01": 1315.47286257326, - "2025-01-01": 1295.66649497, - "2024-01-01": 1267.54777984152, - "2023-01-01": 1199, - "2015-01-01": 1199 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1682.44775796855, - "2034-01-01": 1649.86868352546, - "2033-01-01": 1617.69181987796, - "2032-01-01": 1586.31937782165, - "2031-01-01": 1555.75135735653, - "2030-01-01": 1525.585547687, - "2029-01-01": 1495.82194881306, - "2028-01-01": 1466.46056073472, - "2027-01-01": 1436.69696186079, - "2026-01-01": 1402.14705451929, - "2025-01-01": 1381.0356802099, - "2024-01-01": 1351.0642724249, - "2023-01-01": 1278, - "2015-01-01": 1278 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1777.23354714988, - "2034-01-01": 1742.81903189309, - "2033-01-01": 1708.82938719503, - "2032-01-01": 1675.68948361442, - "2031-01-01": 1643.39932115126, - "2030-01-01": 1611.53402924683, - "2029-01-01": 1580.09360790112, - "2028-01-01": 1549.07805711414, - "2027-01-01": 1517.63763576844, - "2026-01-01": 1481.14125477389, - "2025-01-01": 1458.84050726398, - "2024-01-01": 1427.18056946293, - "2023-01-01": 1350, - "2015-01-01": 1350 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1864.1205205661, - "2034-01-01": 1828.02351789675, - "2033-01-01": 1792.37215723568, - "2032-01-01": 1757.61208059113, - "2031-01-01": 1723.7432879631, - "2030-01-01": 1690.32013734334, - "2029-01-01": 1657.34262873184, - "2028-01-01": 1624.81076212861, - "2027-01-01": 1591.83325351712, - "2026-01-01": 1553.55260500728, - "2025-01-01": 1530.16159873021, - "2024-01-01": 1496.95384174778, - "2023-01-01": 1416, - "2015-01-01": 1416 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1945.74161680557, - "2034-01-01": 1908.06409565777, - "2033-01-01": 1870.85172909204, - "2032-01-01": 1834.56967169045, - "2031-01-01": 1799.21792345301, - "2030-01-01": 1764.33132979764, - "2029-01-01": 1729.90989072434, - "2028-01-01": 1695.95360623311, - "2027-01-01": 1661.53216715981, - "2026-01-01": 1621.57538855986, - "2025-01-01": 1597.16019980456, - "2024-01-01": 1562.49843086386, - "2023-01-01": 1478, - "2015-01-01": 1478 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2052.37562963456, - "2034-01-01": 2012.63323757136, - "2033-01-01": 1973.38149232374, - "2032-01-01": 1935.11104070732, - "2031-01-01": 1897.82188272209, - "2030-01-01": 1861.02337155245, - "2029-01-01": 1824.71550719841, - "2028-01-01": 1788.89828965996, - "2027-01-01": 1752.59042530592, - "2026-01-01": 1710.4438638463, - "2025-01-01": 1684.6906302404, - "2024-01-01": 1648.12926503163, - "2023-01-01": 1559, - "2015-01-01": 1559 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2189.28843622981, - "2034-01-01": 2146.89485188016, - "2033-01-01": 2105.02464511506, - "2032-01-01": 2064.2011935191, - "2031-01-01": 2024.42449709226, - "2030-01-01": 1985.17117824998, - "2029-01-01": 1946.44123699227, - "2028-01-01": 1908.23467331912, - "2027-01-01": 1869.50473206141, - "2026-01-01": 1824.5465975474, - "2025-01-01": 1797.07538042962, - "2024-01-01": 1758.07502741989, - "2023-01-01": 1663, - "2015-01-01": 1663 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2315.66948847158, - "2034-01-01": 2270.82864970367, - "2033-01-01": 2226.54140153782, - "2032-01-01": 2183.36133457612, - "2031-01-01": 2141.28844881857, - "2030-01-01": 2099.76915366309, - "2029-01-01": 2058.80344910969, - "2028-01-01": 2018.39133515835, - "2027-01-01": 1977.42563060495, - "2026-01-01": 1929.87219788687, - "2025-01-01": 1900.81514983506, - "2024-01-01": 1859.56342347058, - "2023-01-01": 1759, - "2015-01-01": 1759 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2430.20231706569, - "2034-01-01": 2383.14365398122, - "2033-01-01": 2336.66596204594, - "2032-01-01": 2291.35021240905, - "2031-01-01": 2247.19640507054, - "2030-01-01": 2203.62356888122, - "2029-01-01": 2160.63170384109, - "2028-01-01": 2118.22080995015, - "2027-01-01": 2075.22894491002, - "2026-01-01": 2025.32352319452, - "2025-01-01": 1994.82931585874, - "2024-01-01": 1951.53728239153, - "2023-01-01": 1846, - "2015-01-01": 1846 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2538.15279918886, - "2034-01-01": 2489.00377295547, - "2033-01-01": 2440.46152482372, - "2032-01-01": 2393.13283289526, - "2031-01-01": 2347.0176971701, - "2030-01-01": 2301.50933954658, - "2029-01-01": 2256.60776002472, - "2028-01-01": 2212.31295860449, - "2027-01-01": 2167.41137908263, - "2026-01-01": 2115.28914015116, - "2025-01-01": 2083.44036889255, - "2024-01-01": 2038.2252873515, - "2023-01-01": 1928, - "2015-01-01": 1928 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2650.0526891946, - "2034-01-01": 2598.7368231117, - "2033-01-01": 2548.0544862397, - "2032-01-01": 2498.6392077895, - "2031-01-01": 2450.49098776111, - "2030-01-01": 2402.97629694361, - "2029-01-01": 2356.09513533701, - "2028-01-01": 2309.84750294131, - "2027-01-01": 2262.96634133471, - "2026-01-01": 2208.5461821184, - "2025-01-01": 2175.29328972028, - "2024-01-01": 2128.08480468805, - "2023-01-01": 2013, - "2015-01-01": 2013 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2767.21845637707, - "2034-01-01": 2713.63378151058, - "2033-01-01": 2660.71064583997, - "2032-01-01": 2609.11058856112, - "2031-01-01": 2558.83360967404, - "2030-01-01": 2509.21816998284, - "2029-01-01": 2460.26426948753, - "2028-01-01": 2411.97190818809, - "2027-01-01": 2363.01800769278, - "2026-01-01": 2306.19179076646, - "2025-01-01": 2271.46870093991, - "2024-01-01": 2222.17300519339, - "2023-01-01": 2102, - "2015-01-01": 2102 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2877.80187708862, - "2034-01-01": 2822.07585460615, - "2033-01-01": 2767.03780770988, - "2032-01-01": 2713.37571198602, - "2031-01-01": 2661.08956743456, - "2030-01-01": 2609.49139846931, - "2029-01-01": 2558.58120509026, - "2028-01-01": 2508.35898729742, - "2027-01-01": 2457.44879391837, - "2026-01-01": 2398.3516910635, - "2025-01-01": 2362.24099916967, - "2024-01-01": 2310.97535173775, - "2023-01-01": 2186, - "2015-01-01": 2186 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2983.11942062343, - "2034-01-01": 2925.35401945907, - "2033-01-01": 2868.30177139551, - "2032-01-01": 2812.67582953354, - "2031-01-01": 2758.47619387316, - "2030-01-01": 2704.98971131357, - "2029-01-01": 2652.21638185477, - "2028-01-01": 2600.15620549678, - "2027-01-01": 2547.38287603798, - "2026-01-01": 2486.12302467973, - "2025-01-01": 2448.69080700753, - "2024-01-01": 2395.54901511333, - "2023-01-01": 2266, - "2015-01-01": 2266 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3588.69529594857, - "2034-01-01": 3519.20346736338, - "2033-01-01": 3450.56956258789, - "2032-01-01": 3383.65150543179, - "2031-01-01": 3318.44929589507, - "2030-01-01": 3254.10501016804, - "2029-01-01": 3190.61864825071, - "2028-01-01": 3127.99021014308, - "2027-01-01": 3064.50384822575, - "2026-01-01": 2990.80819297306, - "2025-01-01": 2945.77720207526, - "2024-01-01": 2881.84757952292, - "2023-01-01": 2726, - "2015-01-01": 2726 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 884.667365692384, - "2034-01-01": 867.536584764561, - "2033-01-01": 850.617294959304, - "2032-01-01": 834.120987399178, - "2031-01-01": 818.047662084184, - "2030-01-01": 802.185827891756, - "2029-01-01": 786.535484821892, - "2028-01-01": 771.096632874595, - "2027-01-01": 755.446289804733, - "2026-01-01": 737.279202376338, - "2025-01-01": 726.178385838068, - "2024-01-01": 710.418772354879, - "2023-01-01": 672, - "2015-01-01": 672 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1219.0505664154, - "2034-01-01": 1195.44475817259, - "2033-01-01": 1172.13037966118, - "2032-01-01": 1149.39886061256, - "2031-01-01": 1127.25020102672, - "2030-01-01": 1105.39297117227, - "2029-01-01": 1083.82717104921, - "2028-01-01": 1062.55280065755, - "2027-01-01": 1040.9870005345, - "2026-01-01": 1015.95318660787, - "2025-01-01": 1000.65652572329, - "2024-01-01": 978.940153572348, - "2023-01-01": 926, - "2015-01-01": 926 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1386.24216677691, - "2034-01-01": 1359.39884487661, - "2033-01-01": 1332.88692201212, - "2032-01-01": 1307.03779721925, - "2031-01-01": 1281.85147049798, - "2030-01-01": 1256.99654281253, - "2029-01-01": 1232.47301416288, - "2028-01-01": 1208.28088454903, - "2027-01-01": 1183.75735589938, - "2026-01-01": 1155.29017872364, - "2025-01-01": 1137.8955956659, - "2024-01-01": 1113.20084418108, - "2023-01-01": 1053, - "2015-01-01": 1053 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1524.47144266634, - "2034-01-01": 1494.95143624607, - "2033-01-01": 1465.79587434951, - "2032-01-01": 1437.36920150037, - "2031-01-01": 1409.67141769864, - "2030-01-01": 1382.33807842061, - "2029-01-01": 1355.3691836663, - "2028-01-01": 1328.76473343569, - "2027-01-01": 1301.79583868137, - "2026-01-01": 1270.49005409494, - "2025-01-01": 1251.3609684531, - "2024-01-01": 1224.20377736153, - "2023-01-01": 1158, - "2015-01-01": 1158 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1646.90308702555, - "2034-01-01": 1615.0123028876, - "2033-01-01": 1583.51523213406, - "2032-01-01": 1552.80558814936, - "2031-01-01": 1522.8833709335, - "2030-01-01": 1493.35486710206, - "2029-01-01": 1464.22007665504, - "2028-01-01": 1435.47899959244, - "2027-01-01": 1406.34420914542, - "2026-01-01": 1372.52422942381, - "2025-01-01": 1351.85887006462, - "2024-01-01": 1322.52066103565, - "2023-01-01": 1251, - "2015-01-01": 1251 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1756.17003844292, - "2034-01-01": 1722.16339892251, - "2033-01-01": 1688.5765944579, - "2032-01-01": 1655.82946010492, - "2031-01-01": 1623.92199586354, - "2030-01-01": 1592.43436667798, - "2029-01-01": 1561.36657254822, - "2028-01-01": 1530.71861347427, - "2027-01-01": 1499.65081934451, - "2026-01-01": 1463.58698805065, - "2025-01-01": 1441.5505456964, - "2024-01-01": 1410.26583678781, - "2023-01-01": 1334, - "2015-01-01": 1334 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1853.58876621261, - "2034-01-01": 1817.69570141146, - "2033-01-01": 1782.24576086711, - "2032-01-01": 1747.68206883637, - "2031-01-01": 1714.00462531924, - "2030-01-01": 1680.77030605892, - "2029-01-01": 1647.97911105539, - "2028-01-01": 1615.63104030868, - "2027-01-01": 1582.83984530515, - "2026-01-01": 1544.77547164566, - "2025-01-01": 1521.51661794643, - "2024-01-01": 1488.49647541022, - "2023-01-01": 1408, - "2015-01-01": 1408 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1944.42514751139, - "2034-01-01": 1906.77311859711, - "2033-01-01": 1869.58592954597, - "2032-01-01": 1833.32842022111, - "2031-01-01": 1798.00059062253, - "2030-01-01": 1763.13760088709, - "2029-01-01": 1728.73945101478, - "2028-01-01": 1694.80614100562, - "2027-01-01": 1660.40799113332, - "2026-01-01": 1620.47824688966, - "2025-01-01": 1596.07957720659, - "2024-01-01": 1561.44126007166, - "2023-01-01": 1477, - "2015-01-01": 1477 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2028.67918233923, - "2034-01-01": 1989.39565047945, - "2033-01-01": 1950.59710049448, - "2032-01-01": 1912.76851425913, - "2031-01-01": 1875.9098917734, - "2030-01-01": 1839.53625116249, - "2029-01-01": 1803.64759242639, - "2028-01-01": 1768.24391556511, - "2027-01-01": 1732.35525682901, - "2026-01-01": 1690.69531378264, - "2025-01-01": 1665.23942347688, - "2024-01-01": 1629.10019077213, - "2023-01-01": 1541, - "2015-01-01": 1541 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2140.57907234497, - "2034-01-01": 2099.12870063568, - "2033-01-01": 2058.19006191046, - "2032-01-01": 2018.27488915337, - "2031-01-01": 1979.38318236441, - "2030-01-01": 1941.00320855952, - "2029-01-01": 1903.13496773869, - "2028-01-01": 1865.77845990192, - "2027-01-01": 1827.91021908109, - "2026-01-01": 1783.95235574989, - "2025-01-01": 1757.09234430461, - "2024-01-01": 1718.95970810868, - "2023-01-01": 1626, - "2015-01-01": 1626 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2282.75775611696, - "2034-01-01": 2238.55422318713, - "2033-01-01": 2194.89641288606, - "2032-01-01": 2152.33004784252, - "2031-01-01": 2110.85512805651, - "2030-01-01": 2069.92593089926, - "2029-01-01": 2029.54245637078, - "2028-01-01": 1989.70470447105, - "2027-01-01": 1949.32122994257, - "2026-01-01": 1902.4436561318, - "2025-01-01": 1873.79958488573, - "2024-01-01": 1833.13415366571, - "2023-01-01": 1734, - "2015-01-01": 1734 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2414.40468553547, - "2034-01-01": 2367.65192925328, - "2033-01-01": 2321.4763674931, - "2032-01-01": 2276.45519477692, - "2031-01-01": 2232.58841110475, - "2030-01-01": 2189.29882195458, - "2029-01-01": 2146.58642732641, - "2028-01-01": 2104.45122722025, - "2027-01-01": 2061.73883259208, - "2026-01-01": 2012.15782315209, - "2025-01-01": 1981.86184468306, - "2024-01-01": 1938.85123288519, - "2023-01-01": 1834, - "2015-01-01": 1834 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2534.20339130631, - "2034-01-01": 2485.13084177348, - "2033-01-01": 2436.66412618551, - "2032-01-01": 2389.40907848723, - "2031-01-01": 2343.36569867865, - "2030-01-01": 2297.92815281492, - "2029-01-01": 2253.09644089605, - "2028-01-01": 2208.87056292202, - "2027-01-01": 2164.03885100314, - "2026-01-01": 2111.99771514055, - "2025-01-01": 2080.19850109863, - "2024-01-01": 2035.05377497491, - "2023-01-01": 1925, - "2015-01-01": 1925 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2646.10328131204, - "2034-01-01": 2594.86389192971, - "2033-01-01": 2544.25708760149, - "2032-01-01": 2494.91545338147, - "2031-01-01": 2446.83898926966, - "2030-01-01": 2399.39511021195, - "2029-01-01": 2352.58381620834, - "2028-01-01": 2306.40510725883, - "2027-01-01": 2259.59381325523, - "2026-01-01": 2205.2547571078, - "2025-01-01": 2172.05142192636, - "2024-01-01": 2124.91329231147, - "2023-01-01": 2010, - "2015-01-01": 2010 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2761.95257920033, - "2034-01-01": 2708.46987326793, - "2033-01-01": 2655.64744765568, - "2032-01-01": 2604.14558268374, - "2031-01-01": 2553.96427835211, - "2030-01-01": 2504.44325434063, - "2029-01-01": 2455.5825106493, - "2028-01-01": 2407.38204727813, - "2027-01-01": 2358.5213035868, - "2026-01-01": 2301.80322408565, - "2025-01-01": 2267.14621054802, - "2024-01-01": 2217.94432202461, - "2023-01-01": 2098, - "2015-01-01": 2098 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2884.38422355954, - "2034-01-01": 2828.53073990945, - "2033-01-01": 2773.36680544023, - "2032-01-01": 2719.58196933274, - "2031-01-01": 2667.17623158698, - "2030-01-01": 2615.46004302208, - "2029-01-01": 2564.43340363804, - "2028-01-01": 2514.09631343488, - "2027-01-01": 2463.06967405085, - "2026-01-01": 2403.83739941452, - "2025-01-01": 2367.64411215953, - "2024-01-01": 2316.26120569872, - "2023-01-01": 2191, - "2015-01-01": 2191 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2998.91705215365, - "2034-01-01": 2940.84574418701, - "2033-01-01": 2883.49136594835, - "2032-01-01": 2827.57084716567, - "2031-01-01": 2773.08418783895, - "2030-01-01": 2719.31445824021, - "2029-01-01": 2666.26165836945, - "2028-01-01": 2613.92578822668, - "2027-01-01": 2560.87298835592, - "2026-01-01": 2499.28872472217, - "2025-01-01": 2461.65827818321, - "2024-01-01": 2408.23506461966, - "2023-01-01": 2278, - "2015-01-01": 2278 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3108.18400357101, - "2034-01-01": 3047.99684022192, - "2033-01-01": 2988.5527282722, - "2032-01-01": 2930.59471912122, - "2031-01-01": 2874.12281276899, - "2030-01-01": 2818.39395781612, - "2029-01-01": 2763.40815426263, - "2028-01-01": 2709.16540210851, - "2027-01-01": 2654.17959855502, - "2026-01-01": 2590.35148334901, - "2025-01-01": 2551.349953815, - "2024-01-01": 2495.98024037183, - "2023-01-01": 2361, - "2015-01-01": 2361 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3737.45632619149, - "2034-01-01": 3665.08387521814, - "2033-01-01": 3593.60491129384, - "2032-01-01": 3523.91292146766, - "2031-01-01": 3456.00790573958, - "2030-01-01": 3388.99637706056, - "2029-01-01": 3322.87833543058, - "2028-01-01": 3257.65378084967, - "2027-01-01": 3191.5357392197, - "2026-01-01": 3114.78520170599, - "2025-01-01": 3067.88755564624, - "2024-01-01": 3001.30787904093, - "2023-01-01": 2839, - "2015-01-01": 2839 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 937.326137459788, - "2034-01-01": 919.175667191023, - "2033-01-01": 901.24927680212, - "2032-01-01": 883.771046172939, - "2031-01-01": 866.740975303481, - "2030-01-01": 849.934984313884, - "2029-01-01": 833.353073204148, - "2028-01-01": 816.995241974274, - "2027-01-01": 800.413330864538, - "2026-01-01": 781.164869184453, - "2025-01-01": 769.403289757, - "2024-01-01": 752.705604042669, - "2023-01-01": 712, - "2015-01-01": 712 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1291.45637759558, - "2034-01-01": 1266.44849650898, - "2033-01-01": 1241.74935469506, - "2032-01-01": 1217.66769142648, - "2031-01-01": 1194.20350670325, - "2030-01-01": 1171.0480612527, - "2029-01-01": 1148.20135507482, - "2028-01-01": 1125.66338816961, - "2027-01-01": 1102.81668199173, - "2026-01-01": 1076.29597846903, - "2025-01-01": 1060.09076861182, - "2024-01-01": 1037.08454714306, - "2023-01-01": 981, - "2015-01-01": 981 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1466.5467937222, - "2034-01-01": 1438.14844557697, - "2033-01-01": 1410.10069432242, - "2032-01-01": 1382.75413684923, - "2031-01-01": 1356.10877315741, - "2030-01-01": 1329.81400635627, - "2029-01-01": 1303.86983644582, - "2028-01-01": 1278.27626342604, - "2027-01-01": 1252.33209351558, - "2026-01-01": 1222.21582060601, - "2025-01-01": 1203.81357414227, - "2024-01-01": 1177.68826250496, - "2023-01-01": 1114, - "2015-01-01": 1114 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1613.99135467093, - "2034-01-01": 1582.73787637106, - "2033-01-01": 1551.8702434823, - "2032-01-01": 1521.77430141576, - "2031-01-01": 1492.45005017144, - "2030-01-01": 1463.51164433823, - "2029-01-01": 1434.95908391613, - "2028-01-01": 1406.79236890514, - "2027-01-01": 1378.23980848304, - "2026-01-01": 1345.09568766874, - "2025-01-01": 1324.84330511528, - "2024-01-01": 1296.09139123078, - "2023-01-01": 1226, - "2015-01-01": 1226 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1743.00534550107, - "2034-01-01": 1709.25362831589, - "2033-01-01": 1675.9185989972, - "2032-01-01": 1643.41694541148, - "2031-01-01": 1611.74866755872, - "2030-01-01": 1580.49707757245, - "2029-01-01": 1549.66217545266, - "2028-01-01": 1519.24396119935, - "2027-01-01": 1488.40905907956, - "2026-01-01": 1452.61557134862, - "2025-01-01": 1430.74431971667, - "2024-01-01": 1399.69412886586, - "2023-01-01": 1324, - "2015-01-01": 1324 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1856.22170480098, - "2034-01-01": 1820.27765553278, - "2033-01-01": 1784.77735995925, - "2032-01-01": 1750.16457177506, - "2031-01-01": 1716.43929098021, - "2030-01-01": 1683.15776388002, - "2029-01-01": 1650.31999047451, - "2028-01-01": 1617.92597076366, - "2027-01-01": 1585.08819735814, - "2026-01-01": 1546.96975498607, - "2025-01-01": 1523.67786314237, - "2024-01-01": 1490.61081699461, - "2023-01-01": 1410, - "2015-01-01": 1410 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1960.22277904161, - "2034-01-01": 1922.26484332505, - "2033-01-01": 1884.77552409881, - "2032-01-01": 1848.22343785324, - "2031-01-01": 1812.60858458832, - "2030-01-01": 1777.46234781373, - "2029-01-01": 1742.78472752946, - "2028-01-01": 1708.57572373552, - "2027-01-01": 1673.89810345126, - "2026-01-01": 1633.64394693209, - "2025-01-01": 1609.04704838227, - "2024-01-01": 1574.127309578, - "2023-01-01": 1489, - "2015-01-01": 1489 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2056.32503751712, - "2034-01-01": 2016.50616875334, - "2033-01-01": 1977.17889096195, - "2032-01-01": 1938.83479511535, - "2031-01-01": 1901.47388121354, - "2030-01-01": 1864.60455828411, - "2029-01-01": 1828.22682632708, - "2028-01-01": 1792.34068534244, - "2027-01-01": 1755.96295338541, - "2026-01-01": 1713.7352888569, - "2025-01-01": 1687.93249803432, - "2024-01-01": 1651.30077740822, - "2023-01-01": 1562, - "2015-01-01": 1562 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2145.84494952171, - "2034-01-01": 2104.29260887833, - "2033-01-01": 2063.25326009474, - "2032-01-01": 2023.23989503074, - "2031-01-01": 1984.25251368634, - "2030-01-01": 1945.77812420173, - "2029-01-01": 1907.81672657691, - "2028-01-01": 1870.36832081189, - "2027-01-01": 1832.40692318707, - "2026-01-01": 1788.3409224307, - "2025-01-01": 1761.4148346965, - "2024-01-01": 1723.18839127746, - "2023-01-01": 1630, - "2015-01-01": 1630 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2261.69424740999, - "2034-01-01": 2217.89859021654, - "2033-01-01": 2174.64362014893, - "2032-01-01": 2132.47002433302, - "2031-01-01": 2091.37780276879, - "2030-01-01": 2050.82626833041, - "2029-01-01": 2010.81542101787, - "2028-01-01": 1971.34526083118, - "2027-01-01": 1931.33441351865, - "2026-01-01": 1884.88938940855, - "2025-01-01": 1856.50962331816, - "2024-01-01": 1816.2194209906, - "2023-01-01": 1718, - "2015-01-01": 1718 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2413.08821624128, - "2034-01-01": 2366.36095219262, - "2033-01-01": 2320.21056794703, - "2032-01-01": 2275.21394330758, - "2031-01-01": 2231.37107827427, - "2030-01-01": 2188.10509304403, - "2029-01-01": 2145.41598761686, - "2028-01-01": 2103.30376199276, - "2027-01-01": 2060.61465656559, - "2026-01-01": 2011.06068148189, - "2025-01-01": 1980.78122208509, - "2024-01-01": 1937.794062093, - "2023-01-01": 1833, - "2015-01-01": 1833 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2551.31749213071, - "2034-01-01": 2501.91354356208, - "2033-01-01": 2453.11952028442, - "2032-01-01": 2405.5453475887, - "2031-01-01": 2359.19102547492, - "2030-01-01": 2313.44662865212, - "2029-01-01": 2268.31215712028, - "2028-01-01": 2223.78761087941, - "2027-01-01": 2178.65313934758, - "2026-01-01": 2126.26055685319, - "2025-01-01": 2094.24659487228, - "2024-01-01": 2048.79699527345, - "2023-01-01": 1938, - "2015-01-01": 1938 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2676.3820750783, - "2034-01-01": 2624.55636432493, - "2033-01-01": 2573.37047716111, - "2032-01-01": 2523.46423717638, - "2031-01-01": 2474.83764437075, - "2030-01-01": 2426.85087515467, - "2029-01-01": 2379.50392952814, - "2028-01-01": 2332.79680749115, - "2027-01-01": 2285.44986186462, - "2026-01-01": 2230.48901552246, - "2025-01-01": 2196.90574167975, - "2024-01-01": 2149.22822053195, - "2023-01-01": 2033, - "2015-01-01": 2033 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2794.86431155496, - "2034-01-01": 2740.74429978447, - "2033-01-01": 2687.29243630744, - "2032-01-01": 2635.17686941734, - "2031-01-01": 2584.39759911417, - "2030-01-01": 2534.28647710446, - "2029-01-01": 2484.84350338821, - "2028-01-01": 2436.06867796543, - "2027-01-01": 2386.62570424918, - "2026-01-01": 2329.23176584072, - "2025-01-01": 2294.16177549735, - "2024-01-01": 2244.37359182948, - "2023-01-01": 2123, - "2015-01-01": 2123 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2915.97948661999, - "2034-01-01": 2859.51418936533, - "2033-01-01": 2803.74599454592, - "2032-01-01": 2749.37200459699, - "2031-01-01": 2696.39221951855, - "2030-01-01": 2644.10953687536, - "2029-01-01": 2592.5239566674, - "2028-01-01": 2541.63547889469, - "2027-01-01": 2490.04989868673, - "2026-01-01": 2430.16879949939, - "2025-01-01": 2393.57905451089, - "2024-01-01": 2341.63330471139, - "2023-01-01": 2215, - "2015-01-01": 2215 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3044.99347745013, - "2034-01-01": 2986.02994131016, - "2033-01-01": 2927.79435006082, - "2032-01-01": 2871.01464859271, - "2031-01-01": 2815.69083690583, - "2030-01-01": 2761.09497010957, - "2029-01-01": 2707.22704820392, - "2028-01-01": 2654.0870711889, - "2027-01-01": 2600.21914928325, - "2026-01-01": 2537.68868317927, - "2025-01-01": 2499.48006911228, - "2024-01-01": 2445.23604234648, - "2023-01-01": 2313, - "2015-01-01": 2313 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3166.10865251515, - "2034-01-01": 3104.79983089103, - "2033-01-01": 3044.24790829929, - "2032-01-01": 2985.20978377236, - "2031-01-01": 2927.68545731021, - "2030-01-01": 2870.91802988046, - "2029-01-01": 2814.90750148311, - "2028-01-01": 2759.65387211816, - "2027-01-01": 2703.64334372081, - "2026-01-01": 2638.62571683793, - "2025-01-01": 2598.89734812582, - "2024-01-01": 2542.4957552284, - "2023-01-01": 2405, - "2015-01-01": 2405 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3280.64148110926, - "2034-01-01": 3217.11483516858, - "2033-01-01": 3154.37246880742, - "2032-01-01": 3093.19866160529, - "2031-01-01": 3033.59341356218, - "2030-01-01": 2974.77244509859, - "2029-01-01": 2916.73575621452, - "2028-01-01": 2859.48334690996, - "2027-01-01": 2801.44665802588, - "2026-01-01": 2734.07704214559, - "2025-01-01": 2692.9115141495, - "2024-01-01": 2634.46961414934, - "2023-01-01": 2492, - "2015-01-01": 2492 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3942.82553608436, - "2034-01-01": 3866.47629668134, - "2033-01-01": 3791.06964048083, - "2032-01-01": 3717.54815068533, - "2031-01-01": 3645.91182729484, - "2030-01-01": 3575.21808710686, - "2029-01-01": 3505.46693012138, - "2028-01-01": 3436.65835633841, - "2027-01-01": 3366.90719935294, - "2026-01-01": 3285.93930225764, - "2025-01-01": 3236.46468093008, - "2024-01-01": 3166.22652262331, - "2023-01-01": 2995, - "2015-01-01": 2995 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 259.344450954464, - "2034-01-01": 254.322480950325, - "2033-01-01": 249.362510575867, - "2032-01-01": 244.526539460771, - "2031-01-01": 239.814567605036, - "2030-01-01": 235.164595378982, - "2029-01-01": 230.576622782608, - "2028-01-01": 226.050649815916, - "2027-01-01": 221.462677219542, - "2026-01-01": 216.136909029968, - "2025-01-01": 212.882651800743, - "2024-01-01": 208.262646062368, - "2023-01-01": 197, - "2015-01-01": 197 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 362.029055900901, - "2034-01-01": 355.018691681926, - "2033-01-01": 348.094875169358, - "2032-01-01": 341.344154069604, - "2031-01-01": 334.766528382665, - "2030-01-01": 328.275450402132, - "2029-01-01": 321.870920128007, - "2028-01-01": 315.552937560288, - "2027-01-01": 309.148407286163, - "2026-01-01": 301.713959305793, - "2025-01-01": 297.171214442662, - "2024-01-01": 290.721967853559, - "2023-01-01": 275, - "2015-01-01": 275 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 413.37135837412, - "2034-01-01": 405.366797047726, - "2033-01-01": 397.461057466103, - "2032-01-01": 389.752961374021, - "2031-01-01": 382.242508771479, - "2030-01-01": 374.830877913707, - "2029-01-01": 367.518068800706, - "2028-01-01": 360.304081432475, - "2027-01-01": 352.991272319473, - "2026-01-01": 344.502484443705, - "2025-01-01": 339.315495763621, - "2024-01-01": 331.951628749155, - "2023-01-01": 314, - "2015-01-01": 314 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 456.814845082228, - "2034-01-01": 447.969040049558, - "2033-01-01": 439.232442486426, - "2032-01-01": 430.714259862373, - "2031-01-01": 422.414492177399, - "2030-01-01": 414.223931961963, - "2029-01-01": 406.142579216066, - "2028-01-01": 398.170433939709, - "2027-01-01": 390.089081193813, - "2026-01-01": 380.708159560401, - "2025-01-01": 374.97604149674, - "2024-01-01": 366.838264891582, - "2023-01-01": 347, - "2015-01-01": 347 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 494.992454613596, - "2034-01-01": 485.407374808743, - "2033-01-01": 475.940629322468, - "2032-01-01": 466.71055247335, - "2031-01-01": 457.717144261389, - "2030-01-01": 448.842070368006, - "2029-01-01": 440.085330793202, - "2028-01-01": 431.446925536976, - "2027-01-01": 422.690185962172, - "2026-01-01": 412.525267996284, - "2025-01-01": 406.314096837967, - "2024-01-01": 397.49621786523, - "2023-01-01": 376, - "2015-01-01": 376 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 529.220656262408, - "2034-01-01": 518.972778385943, - "2033-01-01": 508.851417520298, - "2032-01-01": 498.983090676294, - "2031-01-01": 489.367797853932, - "2030-01-01": 479.879022042389, - "2029-01-01": 470.516763241668, - "2028-01-01": 461.281021451767, - "2027-01-01": 451.918762651045, - "2026-01-01": 441.050951421559, - "2025-01-01": 434.410284385273, - "2024-01-01": 424.982658462294, - "2023-01-01": 402, - "2015-01-01": 402 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 559.499450028666, - "2034-01-01": 548.665250781158, - "2033-01-01": 537.964807079917, - "2032-01-01": 527.531874471206, - "2031-01-01": 517.366452955027, - "2030-01-01": 507.334786985113, - "2029-01-01": 497.436876561465, - "2028-01-01": 487.672721684082, - "2027-01-01": 477.774811260434, - "2026-01-01": 466.285209836226, - "2025-01-01": 459.264604138659, - "2024-01-01": 449.297586682773, - "2023-01-01": 425, - "2015-01-01": 425 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 588.461774500738, - "2034-01-01": 577.066746115713, - "2033-01-01": 565.812397093466, - "2032-01-01": 554.839406796775, - "2031-01-01": 544.14777522564, - "2030-01-01": 533.596823017284, - "2029-01-01": 523.186550171705, - "2028-01-01": 512.916956688905, - "2027-01-01": 502.506683843327, - "2026-01-01": 490.422326580689, - "2025-01-01": 483.038301294072, - "2024-01-01": 472.555344111058, - "2023-01-01": 447, - "2015-01-01": 447 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 614.79116038444, - "2034-01-01": 602.886287328944, - "2033-01-01": 591.128388014873, - "2032-01-01": 579.664436183655, - "2031-01-01": 568.494431835289, - "2030-01-01": 557.471401228348, - "2029-01-01": 546.595344362833, - "2028-01-01": 535.866261238744, - "2027-01-01": 524.990204373229, - "2026-01-01": 512.365159984747, - "2025-01-01": 504.650753253538, - "2024-01-01": 493.698759954953, - "2023-01-01": 467, - "2015-01-01": 467 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 649.019362033252, - "2034-01-01": 636.451690906144, - "2033-01-01": 624.039176212704, - "2032-01-01": 611.936974386599, - "2031-01-01": 600.145085427831, - "2030-01-01": 588.508352902731, - "2029-01-01": 577.026776811299, - "2028-01-01": 565.700357153535, - "2027-01-01": 554.218781062103, - "2026-01-01": 540.890843410022, - "2025-01-01": 532.746940800844, - "2024-01-01": 521.185200552017, - "2023-01-01": 493, - "2015-01-01": 493 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 693.779318035545, - "2034-01-01": 680.344910968636, - "2033-01-01": 667.076360779097, - "2032-01-01": 654.139524344296, - "2031-01-01": 641.534401664234, - "2030-01-01": 629.09513586154, - "2029-01-01": 616.821726936216, - "2028-01-01": 604.714174888262, - "2027-01-01": 592.440765962938, - "2026-01-01": 578.19366019692, - "2025-01-01": 569.488109131937, - "2024-01-01": 557.129007486639, - "2023-01-01": 527, - "2015-01-01": 527 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 734.589866155283, - "2034-01-01": 720.365199849145, - "2033-01-01": 706.316146707279, - "2032-01-01": 692.618319893961, - "2031-01-01": 679.271719409189, - "2030-01-01": 666.10073208869, - "2029-01-01": 653.105357932464, - "2028-01-01": 640.285596940512, - "2027-01-01": 627.290222784287, - "2026-01-01": 612.205051973209, - "2025-01-01": 602.98740966911, - "2024-01-01": 589.901302044676, - "2023-01-01": 558, - "2015-01-01": 558 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 772.767475686651, - "2034-01-01": 757.803534608329, - "2033-01-01": 743.024333543321, - "2032-01-01": 728.614612504937, - "2031-01-01": 714.574371493179, - "2030-01-01": 700.718870494733, - "2029-01-01": 687.048109509599, - "2028-01-01": 673.562088537779, - "2027-01-01": 659.891327552646, - "2026-01-01": 644.022160409093, - "2025-01-01": 634.325465010336, - "2024-01-01": 620.559255018324, - "2023-01-01": 587, - "2015-01-01": 587 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 808.312146629649, - "2034-01-01": 792.659915246191, - "2033-01-01": 777.200921287221, - "2032-01-01": 762.128402177225, - "2031-01-01": 747.442357916204, - "2030-01-01": 732.94955107967, - "2029-01-01": 718.649981667622, - "2028-01-01": 704.543649680062, - "2027-01-01": 690.244080268015, - "2026-01-01": 673.644985504571, - "2025-01-01": 663.502275155615, - "2024-01-01": 649.102866407583, - "2023-01-01": 614, - "2015-01-01": 614 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 845.173286866831, - "2034-01-01": 828.807272944715, - "2033-01-01": 812.643308577192, - "2032-01-01": 796.883443318858, - "2031-01-01": 781.527677169712, - "2030-01-01": 766.373960575159, - "2029-01-01": 751.422293535201, - "2028-01-01": 736.672676049837, - "2027-01-01": 721.721009009879, - "2026-01-01": 704.364952270251, - "2025-01-01": 693.759707898868, - "2024-01-01": 678.703648589036, - "2023-01-01": 642, - "2015-01-01": 642 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 883.350896398199, - "2034-01-01": 866.2456077039, - "2033-01-01": 849.351495413234, - "2032-01-01": 832.879735929834, - "2031-01-01": 816.830329253702, - "2030-01-01": 800.992098981202, - "2029-01-01": 785.365045112336, - "2028-01-01": 769.949167647103, - "2027-01-01": 754.322113778237, - "2026-01-01": 736.182060706135, - "2025-01-01": 725.097763240094, - "2024-01-01": 709.361601562684, - "2023-01-01": 671, - "2015-01-01": 671 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 920.212036635382, - "2034-01-01": 902.392965402423, - "2033-01-01": 884.793882703204, - "2032-01-01": 867.634777071467, - "2031-01-01": 850.915648507209, - "2030-01-01": 834.416508476692, - "2029-01-01": 818.137356979915, - "2028-01-01": 802.078194016878, - "2027-01-01": 785.799042520101, - "2026-01-01": 766.902027471816, - "2025-01-01": 755.355195983347, - "2024-01-01": 738.962383744138, - "2023-01-01": 699, - "2015-01-01": 699 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 954.440238284194, - "2034-01-01": 935.958368979623, - "2033-01-01": 917.704670901035, - "2032-01-01": 899.907315274411, - "2031-01-01": 882.566302099752, - "2030-01-01": 865.453460151076, - "2029-01-01": 848.568789428381, - "2028-01-01": 831.912289931669, - "2027-01-01": 815.027619208975, - "2026-01-01": 795.427710897091, - "2025-01-01": 783.451383530653, - "2024-01-01": 766.448824341201, - "2023-01-01": 725, - "2015-01-01": 725 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1153.22710170614, - "2034-01-01": 1130.89590513952, - "2033-01-01": 1108.84040235766, - "2032-01-01": 1087.33628714536, - "2031-01-01": 1066.3835595026, - "2030-01-01": 1045.70652564461, - "2029-01-01": 1025.3051855714, - "2028-01-01": 1005.17953928295, - "2027-01-01": 984.778199209741, - "2026-01-01": 961.096103097726, - "2025-01-01": 946.625395824624, - "2024-01-01": 926.08161396261, - "2023-01-01": 876, - "2015-01-01": 876 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 300.154999074202, - "2034-01-01": 294.342769830833, - "2033-01-01": 288.60229650405, - "2032-01-01": 283.005335010435, - "2031-01-01": 277.551885349991, - "2030-01-01": 272.170191606131, - "2029-01-01": 266.860253778856, - "2028-01-01": 261.622071868166, - "2027-01-01": 256.312134040891, - "2026-01-01": 250.148300806257, - "2025-01-01": 246.381952337916, - "2024-01-01": 241.034940620405, - "2023-01-01": 228, - "2015-01-01": 228 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 417.320766256675, - "2034-01-01": 409.239728229711, - "2033-01-01": 401.258456104314, - "2032-01-01": 393.476715782053, - "2031-01-01": 385.894507262926, - "2030-01-01": 378.412064645367, - "2029-01-01": 371.029387929375, - "2028-01-01": 363.74647711495, - "2027-01-01": 356.363800398959, - "2026-01-01": 347.793909454314, - "2025-01-01": 342.557363557541, - "2024-01-01": 335.123141125739, - "2023-01-01": 317, - "2015-01-01": 317 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 476.561884495005, - "2034-01-01": 467.333695959481, - "2033-01-01": 458.219435677482, - "2032-01-01": 449.333031902533, - "2031-01-01": 440.674484634635, - "2030-01-01": 432.129865620261, - "2029-01-01": 423.699174859412, - "2028-01-01": 415.382412352089, - "2027-01-01": 406.95172159124, - "2026-01-01": 397.165284613444, - "2025-01-01": 391.18538046634, - "2024-01-01": 382.695826774503, - "2023-01-01": 362, - "2015-01-01": 362 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 525.271248379853, - "2034-01-01": 515.099847203958, - "2033-01-01": 505.054018882087, - "2032-01-01": 495.259336268262, - "2031-01-01": 485.715799362484, - "2030-01-01": 476.29783531073, - "2029-01-01": 467.005444112999, - "2028-01-01": 457.838625769291, - "2027-01-01": 448.54623457156, - "2026-01-01": 437.759526410951, - "2025-01-01": 431.168416591353, - "2024-01-01": 421.811146085709, - "2023-01-01": 399, - "2015-01-01": 399 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 568.714735087961, - "2034-01-01": 557.702090205789, - "2033-01-01": 546.82540390241, - "2032-01-01": 536.220634756615, - "2031-01-01": 525.887782768404, - "2030-01-01": 515.690889358986, - "2029-01-01": 505.629954528359, - "2028-01-01": 495.704978276526, - "2027-01-01": 485.6440434459, - "2026-01-01": 473.965201527646, - "2025-01-01": 466.828962324472, - "2024-01-01": 456.697782228137, - "2023-01-01": 432, - "2015-01-01": 432 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 606.892344619329, - "2034-01-01": 595.140424964974, - "2033-01-01": 583.533590738451, - "2032-01-01": 572.216927367591, - "2031-01-01": 561.190434852394, - "2030-01-01": 550.309027765029, - "2029-01-01": 539.572706105495, - "2028-01-01": 528.981469873792, - "2027-01-01": 518.245148214259, - "2026-01-01": 505.782309963529, - "2025-01-01": 498.167017665698, - "2024-01-01": 487.355735201785, - "2023-01-01": 461, - "2015-01-01": 461 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 642.437015562327, - "2034-01-01": 629.996805602836, - "2033-01-01": 617.710178482352, - "2032-01-01": 605.730717039879, - "2031-01-01": 594.058421275419, - "2030-01-01": 582.539708349965, - "2029-01-01": 571.174578263517, - "2028-01-01": 559.963031016075, - "2027-01-01": 548.597900929627, - "2026-01-01": 535.405135059007, - "2025-01-01": 527.343827810978, - "2024-01-01": 515.899346591043, - "2023-01-01": 488, - "2015-01-01": 488 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 675.348747916954, - "2034-01-01": 662.271232119375, - "2033-01-01": 649.355167134111, - "2032-01-01": 636.76200377348, - "2031-01-01": 624.49174203748, - "2030-01-01": 612.382931113796, - "2029-01-01": 600.435571002427, - "2028-01-01": 588.649661703374, - "2027-01-01": 576.702301592006, - "2026-01-01": 562.833676814079, - "2025-01-01": 554.359392760311, - "2024-01-01": 542.328616395912, - "2023-01-01": 513, - "2015-01-01": 513 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 704.311072389026, - "2034-01-01": 690.672727453929, - "2033-01-01": 677.20275714766, - "2032-01-01": 664.069536099048, - "2031-01-01": 651.273064308093, - "2030-01-01": 638.644967145966, - "2029-01-01": 626.185244612667, - "2028-01-01": 613.893896708197, - "2027-01-01": 601.434174174899, - "2026-01-01": 586.970793558543, - "2025-01-01": 578.133089915724, - "2024-01-01": 565.586373824197, - "2023-01-01": 535, - "2015-01-01": 535 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 745.121620508764, - "2034-01-01": 730.693016334437, - "2033-01-01": 716.442543075842, - "2032-01-01": 702.548331648713, - "2031-01-01": 689.010382053048, - "2030-01-01": 675.650563373116, - "2029-01-01": 662.468875608915, - "2028-01-01": 649.465318760448, - "2027-01-01": 636.283630996248, - "2026-01-01": 620.982185334832, - "2025-01-01": 611.632390452896, - "2024-01-01": 598.358668382234, - "2023-01-01": 566, - "2015-01-01": 566 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 795.147453687798, - "2034-01-01": 779.750144639576, - "2033-01-01": 764.542925826517, - "2032-01-01": 749.715887483785, - "2031-01-01": 735.26902961138, - "2030-01-01": 721.012261974138, - "2029-01-01": 706.945584572058, - "2028-01-01": 693.068997405142, - "2027-01-01": 679.002320003063, - "2026-01-01": 662.673568802542, - "2025-01-01": 652.696049175882, - "2024-01-01": 638.531158485635, - "2023-01-01": 604, - "2015-01-01": 604 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 842.540348278461, - "2034-01-01": 826.225318823392, - "2033-01-01": 810.111709485051, - "2032-01-01": 794.40094038017, - "2031-01-01": 779.093011508747, - "2030-01-01": 763.986502754053, - "2029-01-01": 749.081414116088, - "2028-01-01": 734.377745594853, - "2027-01-01": 719.472656956888, - "2026-01-01": 702.170668929846, - "2025-01-01": 691.598462702922, - "2024-01-01": 676.589307004647, - "2023-01-01": 640, - "2015-01-01": 640 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 884.667365692384, - "2034-01-01": 867.536584764561, - "2033-01-01": 850.617294959304, - "2032-01-01": 834.120987399178, - "2031-01-01": 818.047662084184, - "2030-01-01": 802.185827891756, - "2029-01-01": 786.535484821892, - "2028-01-01": 771.096632874595, - "2027-01-01": 755.446289804733, - "2026-01-01": 737.279202376338, - "2025-01-01": 726.178385838068, - "2024-01-01": 710.418772354879, - "2023-01-01": 672, - "2015-01-01": 672 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 925.477913812122, - "2034-01-01": 907.556873645069, - "2033-01-01": 889.857080887486, - "2032-01-01": 872.599782948843, - "2031-01-01": 855.784979829139, - "2030-01-01": 839.191424118905, - "2029-01-01": 822.81911581814, - "2028-01-01": 806.668054926846, - "2027-01-01": 790.295746626082, - "2026-01-01": 771.290594152627, - "2025-01-01": 759.677686375241, - "2024-01-01": 743.191066912917, - "2023-01-01": 703, - "2015-01-01": 703 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 966.28846193186, - "2034-01-01": 947.577162525577, - "2033-01-01": 929.096866815668, - "2032-01-01": 911.078578498507, - "2031-01-01": 893.522297574094, - "2030-01-01": 876.197020346054, - "2029-01-01": 859.102746814388, - "2028-01-01": 842.239476979097, - "2027-01-01": 825.145203447431, - "2026-01-01": 805.301985928917, - "2025-01-01": 793.176986912413, - "2024-01-01": 775.963361470954, - "2023-01-01": 734, - "2015-01-01": 734 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1011.04841793415, - "2034-01-01": 991.47038258807, - "2033-01-01": 972.134051382061, - "2032-01-01": 953.281128456204, - "2031-01-01": 934.911613810496, - "2030-01-01": 916.783803304864, - "2029-01-01": 898.897696939306, - "2028-01-01": 881.253294713823, - "2027-01-01": 863.367188348266, - "2026-01-01": 842.604802715815, - "2025-01-01": 829.918155243506, - "2024-01-01": 811.907168405576, - "2023-01-01": 768, - "2015-01-01": 768 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1051.85896605389, - "2034-01-01": 1031.49067146858, - "2033-01-01": 1011.37383731024, - "2032-01-01": 991.759924005868, - "2031-01-01": 972.648931555451, - "2030-01-01": 953.789399532013, - "2029-01-01": 935.181327935554, - "2028-01-01": 916.824716766074, - "2027-01-01": 898.216645169615, - "2026-01-01": 876.616194492104, - "2025-01-01": 863.417455780679, - "2024-01-01": 844.679462963614, - "2023-01-01": 799, - "2015-01-01": 799 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1091.35304487944, - "2034-01-01": 1070.21998328842, - "2033-01-01": 1049.34782369236, - "2032-01-01": 1028.99746808619, - "2031-01-01": 1009.16891646992, - "2030-01-01": 989.601266848609, - "2029-01-01": 970.294519222245, - "2028-01-01": 951.248673590833, - "2027-01-01": 931.941925964469, - "2026-01-01": 909.530444598191, - "2025-01-01": 895.836133719878, - "2024-01-01": 876.394586729456, - "2023-01-01": 829, - "2015-01-01": 829 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1316.4692941851, - "2034-01-01": 1290.97706066155, - "2033-01-01": 1265.79954607039, - "2032-01-01": 1241.25146934402, - "2031-01-01": 1217.33283048242, - "2030-01-01": 1193.72891055321, - "2029-01-01": 1170.43970955639, - "2028-01-01": 1147.46522749196, - "2027-01-01": 1124.17602649514, - "2026-01-01": 1097.14167020288, - "2025-01-01": 1080.62259797332, - "2024-01-01": 1057.17079219476, - "2023-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 326.484384957904, - "2034-01-01": 320.162311044064, - "2033-01-01": 313.918287425457, - "2032-01-01": 307.830364397316, - "2031-01-01": 301.898541959639, - "2030-01-01": 296.044769817196, - "2029-01-01": 290.269047969984, - "2028-01-01": 284.571376418005, - "2027-01-01": 278.795654570794, - "2026-01-01": 272.091134210315, - "2025-01-01": 267.994404297382, - "2024-01-01": 262.178356464301, - "2023-01-01": 248, - "2015-01-01": 248 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 454.181906493858, - "2034-01-01": 445.387085928234, - "2033-01-01": 436.700843394285, - "2032-01-01": 428.231756923685, - "2031-01-01": 419.979826516434, - "2030-01-01": 411.836474140857, - "2029-01-01": 403.801699796954, - "2028-01-01": 395.875503484725, - "2027-01-01": 387.840729140823, - "2026-01-01": 378.513876219995, - "2025-01-01": 372.814796300794, - "2024-01-01": 364.723923307192, - "2023-01-01": 345, - "2015-01-01": 345 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 517.372432614743, - "2034-01-01": 507.353984839989, - "2033-01-01": 497.459221605664, - "2032-01-01": 487.811827452198, - "2031-01-01": 478.41180237959, - "2030-01-01": 469.135461847411, - "2029-01-01": 459.98280585566, - "2028-01-01": 450.953834404339, - "2027-01-01": 441.801178412589, - "2026-01-01": 431.176676389733, - "2025-01-01": 424.684681003513, - "2024-01-01": 415.468121332541, - "2023-01-01": 393, - "2015-01-01": 393 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 571.347673676331, - "2034-01-01": 560.284044327112, - "2033-01-01": 549.35700299455, - "2032-01-01": 538.703137695303, - "2031-01-01": 528.322448429369, - "2030-01-01": 518.078347180092, - "2029-01-01": 507.970833947472, - "2028-01-01": 497.999908731509, - "2027-01-01": 487.89239549889, - "2026-01-01": 476.159484868051, - "2025-01-01": 468.990207520419, - "2024-01-01": 458.812123812526, - "2023-01-01": 434, - "2015-01-01": 434 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 617.42409897281, - "2034-01-01": 605.468241450267, - "2033-01-01": 593.659987107014, - "2032-01-01": 582.146939122343, - "2031-01-01": 570.929097496254, - "2030-01-01": 559.858859049454, - "2029-01-01": 548.936223781946, - "2028-01-01": 538.161191693728, - "2027-01-01": 527.23855642622, - "2026-01-01": 514.559443325152, - "2025-01-01": 506.811998449485, - "2024-01-01": 495.813101539343, - "2023-01-01": 469, - "2015-01-01": 469 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 659.551116386733, - "2034-01-01": 646.779507391436, - "2033-01-01": 634.165572581267, - "2032-01-01": 621.866986141352, - "2031-01-01": 609.883748071691, - "2030-01-01": 598.058184187157, - "2029-01-01": 586.39029448775, - "2028-01-01": 574.880078973471, - "2027-01-01": 563.212189274064, - "2026-01-01": 549.667976771645, - "2025-01-01": 541.391921584631, - "2024-01-01": 529.642566889575, - "2023-01-01": 501, - "2015-01-01": 501 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 697.728725918101, - "2034-01-01": 684.217842150621, - "2033-01-01": 670.873759417308, - "2032-01-01": 657.863278752328, - "2031-01-01": 645.186400155681, - "2030-01-01": 632.6763225932, - "2029-01-01": 620.333046064885, - "2028-01-01": 608.156570570737, - "2027-01-01": 595.813294042423, - "2026-01-01": 581.485085207528, - "2025-01-01": 572.729976925857, - "2024-01-01": 560.300519863223, - "2023-01-01": 530, - "2015-01-01": 530 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 731.956927566913, - "2034-01-01": 717.783245727821, - "2033-01-01": 703.784547615138, - "2032-01-01": 690.135816955272, - "2031-01-01": 676.837053748224, - "2030-01-01": 663.713274267583, - "2029-01-01": 650.764478513351, - "2028-01-01": 637.990666485528, - "2027-01-01": 625.041870731297, - "2026-01-01": 610.010768632803, - "2025-01-01": 600.826164473163, - "2024-01-01": 587.786960460287, - "2023-01-01": 556, - "2015-01-01": 556 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 764.86865992154, - "2034-01-01": 750.05767224436, - "2033-01-01": 735.429536266898, - "2032-01-01": 721.167103688873, - "2031-01-01": 707.270374510284, - "2030-01-01": 693.556497031414, - "2029-01-01": 680.025471252261, - "2028-01-01": 666.677297172827, - "2027-01-01": 653.146271393675, - "2026-01-01": 637.439310387875, - "2025-01-01": 627.841729422496, - "2024-01-01": 614.216230265156, - "2023-01-01": 581, - "2015-01-01": 581 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 806.995677335463, - "2034-01-01": 791.36893818553, - "2033-01-01": 775.935121741151, - "2032-01-01": 760.887150707881, - "2031-01-01": 746.225025085721, - "2030-01-01": 731.755822169116, - "2029-01-01": 717.479541958066, - "2028-01-01": 703.39618445257, - "2027-01-01": 689.119904241519, - "2026-01-01": 672.547843834368, - "2025-01-01": 662.421652557642, - "2024-01-01": 648.045695615388, - "2023-01-01": 613, - "2015-01-01": 613 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 862.287387691237, - "2034-01-01": 845.589974733315, - "2033-01-01": 829.098702676107, - "2032-01-01": 813.01971242033, - "2031-01-01": 797.353003965983, - "2030-01-01": 781.892436412351, - "2029-01-01": 766.638009759434, - "2028-01-01": 751.589724007232, - "2027-01-01": 736.335297354315, - "2026-01-01": 718.627793982889, - "2025-01-01": 707.807801672521, - "2024-01-01": 692.446868887568, - "2023-01-01": 655, - "2015-01-01": 655 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 913.629690164456, - "2034-01-01": 895.938080099115, - "2033-01-01": 878.464884972853, - "2032-01-01": 861.428519724747, - "2031-01-01": 844.828984354797, - "2030-01-01": 828.447863923926, - "2029-01-01": 812.285158432133, - "2028-01-01": 796.340867879418, - "2027-01-01": 780.178162387626, - "2026-01-01": 761.416319120801, - "2025-01-01": 749.952082993481, - "2024-01-01": 733.676529783164, - "2023-01-01": 694, - "2015-01-01": 694 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 959.706115460935, - "2034-01-01": 941.122277222269, - "2033-01-01": 922.767869085316, - "2032-01-01": 904.872321151787, - "2031-01-01": 887.435633421682, - "2030-01-01": 870.228375793288, - "2029-01-01": 853.250548266606, - "2028-01-01": 836.502150841637, - "2027-01-01": 819.524323314955, - "2026-01-01": 799.816277577902, - "2025-01-01": 787.773873922547, - "2024-01-01": 770.67750750998, - "2023-01-01": 729, - "2015-01-01": 729 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1003.14960216904, - "2034-01-01": 983.724520224101, - "2033-01-01": 964.539254105639, - "2032-01-01": 945.83361964014, - "2031-01-01": 927.607616827602, - "2030-01-01": 909.621429841544, - "2029-01-01": 891.875058681967, - "2028-01-01": 874.368503348871, - "2027-01-01": 856.622132189295, - "2026-01-01": 836.021952694597, - "2025-01-01": 823.434419655666, - "2024-01-01": 805.564143652407, - "2023-01-01": 762, - "2015-01-01": 762 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1046.59308887715, - "2034-01-01": 1026.32676322593, - "2033-01-01": 1006.31063912596, - "2032-01-01": 986.794918128492, - "2031-01-01": 967.779600233521, - "2030-01-01": 949.0144838898, - "2029-01-01": 930.499569097328, - "2028-01-01": 912.234855856106, - "2027-01-01": 893.719941063635, - "2026-01-01": 872.227627811293, - "2025-01-01": 859.094965388786, - "2024-01-01": 840.450779794835, - "2023-01-01": 795, - "2015-01-01": 795 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1093.98598346781, - "2034-01-01": 1072.80193740975, - "2033-01-01": 1051.8794227845, - "2032-01-01": 1031.47997102488, - "2031-01-01": 1011.60358213089, - "2030-01-01": 991.988724669716, - "2029-01-01": 972.635398641358, - "2028-01-01": 953.543604045816, - "2027-01-01": 934.190278017459, - "2026-01-01": 911.724727938596, - "2025-01-01": 897.997378915825, - "2024-01-01": 878.508928313846, - "2023-01-01": 831, - "2015-01-01": 831 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1138.74593947011, - "2034-01-01": 1116.69515747224, - "2033-01-01": 1094.91660735089, - "2032-01-01": 1073.68252098257, - "2031-01-01": 1052.99289836729, - "2030-01-01": 1032.57550762852, - "2029-01-01": 1012.43034876628, - "2028-01-01": 992.557421780543, - "2027-01-01": 972.412262918294, - "2026-01-01": 949.027544725494, - "2025-01-01": 934.738547246918, - "2024-01-01": 914.452735248468, - "2023-01-01": 865, - "2015-01-01": 865 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1180.87295688403, - "2034-01-01": 1158.00642341341, - "2033-01-01": 1135.42219282514, - "2032-01-01": 1113.40256800158, - "2031-01-01": 1091.94754894273, - "2030-01-01": 1070.77483276623, - "2029-01-01": 1049.88441947208, - "2028-01-01": 1029.27630906029, - "2027-01-01": 1008.38589576614, - "2026-01-01": 984.136078171987, - "2025-01-01": 969.318470382064, - "2024-01-01": 948.2822005987, - "2023-01-01": 897, - "2015-01-01": 897 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CO.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1424.41977630827, - "2034-01-01": 1396.8371796358, - "2033-01-01": 1369.59510884816, - "2032-01-01": 1343.03408983022, - "2031-01-01": 1317.15412258198, - "2030-01-01": 1291.61468121857, - "2029-01-01": 1266.41576574001, - "2028-01-01": 1241.5573761463, - "2027-01-01": 1216.35846066774, - "2026-01-01": 1187.10728715952, - "2025-01-01": 1169.23365100713, - "2024-01-01": 1143.85879715473, - "2023-01-01": 1082, - "2015-01-01": 1082 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT", - "description": null, - "label": "CT", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 259.344450954464, - "2034-01-01": 254.322480950325, - "2033-01-01": 249.362510575867, - "2032-01-01": 244.526539460771, - "2031-01-01": 239.814567605036, - "2030-01-01": 235.164595378982, - "2029-01-01": 230.576622782608, - "2028-01-01": 226.050649815916, - "2027-01-01": 221.462677219542, - "2026-01-01": 216.136909029968, - "2025-01-01": 212.882651800743, - "2024-01-01": 208.262646062368, - "2023-01-01": 197, - "2015-01-01": 197 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 362.029055900901, - "2034-01-01": 355.018691681926, - "2033-01-01": 348.094875169358, - "2032-01-01": 341.344154069604, - "2031-01-01": 334.766528382665, - "2030-01-01": 328.275450402132, - "2029-01-01": 321.870920128007, - "2028-01-01": 315.552937560288, - "2027-01-01": 309.148407286163, - "2026-01-01": 301.713959305793, - "2025-01-01": 297.171214442662, - "2024-01-01": 290.721967853559, - "2023-01-01": 275, - "2015-01-01": 275 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 413.37135837412, - "2034-01-01": 405.366797047726, - "2033-01-01": 397.461057466103, - "2032-01-01": 389.752961374021, - "2031-01-01": 382.242508771479, - "2030-01-01": 374.830877913707, - "2029-01-01": 367.518068800706, - "2028-01-01": 360.304081432475, - "2027-01-01": 352.991272319473, - "2026-01-01": 344.502484443705, - "2025-01-01": 339.315495763621, - "2024-01-01": 331.951628749155, - "2023-01-01": 314, - "2015-01-01": 314 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 456.814845082228, - "2034-01-01": 447.969040049558, - "2033-01-01": 439.232442486426, - "2032-01-01": 430.714259862373, - "2031-01-01": 422.414492177399, - "2030-01-01": 414.223931961963, - "2029-01-01": 406.142579216066, - "2028-01-01": 398.170433939709, - "2027-01-01": 390.089081193813, - "2026-01-01": 380.708159560401, - "2025-01-01": 374.97604149674, - "2024-01-01": 366.838264891582, - "2023-01-01": 347, - "2015-01-01": 347 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 494.992454613596, - "2034-01-01": 485.407374808743, - "2033-01-01": 475.940629322468, - "2032-01-01": 466.71055247335, - "2031-01-01": 457.717144261389, - "2030-01-01": 448.842070368006, - "2029-01-01": 440.085330793202, - "2028-01-01": 431.446925536976, - "2027-01-01": 422.690185962172, - "2026-01-01": 412.525267996284, - "2025-01-01": 406.314096837967, - "2024-01-01": 397.49621786523, - "2023-01-01": 376, - "2015-01-01": 376 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 529.220656262408, - "2034-01-01": 518.972778385943, - "2033-01-01": 508.851417520298, - "2032-01-01": 498.983090676294, - "2031-01-01": 489.367797853932, - "2030-01-01": 479.879022042389, - "2029-01-01": 470.516763241668, - "2028-01-01": 461.281021451767, - "2027-01-01": 451.918762651045, - "2026-01-01": 441.050951421559, - "2025-01-01": 434.410284385273, - "2024-01-01": 424.982658462294, - "2023-01-01": 402, - "2015-01-01": 402 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 559.499450028666, - "2034-01-01": 548.665250781158, - "2033-01-01": 537.964807079917, - "2032-01-01": 527.531874471206, - "2031-01-01": 517.366452955027, - "2030-01-01": 507.334786985113, - "2029-01-01": 497.436876561465, - "2028-01-01": 487.672721684082, - "2027-01-01": 477.774811260434, - "2026-01-01": 466.285209836226, - "2025-01-01": 459.264604138659, - "2024-01-01": 449.297586682773, - "2023-01-01": 425, - "2015-01-01": 425 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 588.461774500738, - "2034-01-01": 577.066746115713, - "2033-01-01": 565.812397093466, - "2032-01-01": 554.839406796775, - "2031-01-01": 544.14777522564, - "2030-01-01": 533.596823017284, - "2029-01-01": 523.186550171705, - "2028-01-01": 512.916956688905, - "2027-01-01": 502.506683843327, - "2026-01-01": 490.422326580689, - "2025-01-01": 483.038301294072, - "2024-01-01": 472.555344111058, - "2023-01-01": 447, - "2015-01-01": 447 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 614.79116038444, - "2034-01-01": 602.886287328944, - "2033-01-01": 591.128388014873, - "2032-01-01": 579.664436183655, - "2031-01-01": 568.494431835289, - "2030-01-01": 557.471401228348, - "2029-01-01": 546.595344362833, - "2028-01-01": 535.866261238744, - "2027-01-01": 524.990204373229, - "2026-01-01": 512.365159984747, - "2025-01-01": 504.650753253538, - "2024-01-01": 493.698759954953, - "2023-01-01": 467, - "2015-01-01": 467 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 649.019362033252, - "2034-01-01": 636.451690906144, - "2033-01-01": 624.039176212704, - "2032-01-01": 611.936974386599, - "2031-01-01": 600.145085427831, - "2030-01-01": 588.508352902731, - "2029-01-01": 577.026776811299, - "2028-01-01": 565.700357153535, - "2027-01-01": 554.218781062103, - "2026-01-01": 540.890843410022, - "2025-01-01": 532.746940800844, - "2024-01-01": 521.185200552017, - "2023-01-01": 493, - "2015-01-01": 493 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 693.779318035545, - "2034-01-01": 680.344910968636, - "2033-01-01": 667.076360779097, - "2032-01-01": 654.139524344296, - "2031-01-01": 641.534401664234, - "2030-01-01": 629.09513586154, - "2029-01-01": 616.821726936216, - "2028-01-01": 604.714174888262, - "2027-01-01": 592.440765962938, - "2026-01-01": 578.19366019692, - "2025-01-01": 569.488109131937, - "2024-01-01": 557.129007486639, - "2023-01-01": 527, - "2015-01-01": 527 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 734.589866155283, - "2034-01-01": 720.365199849145, - "2033-01-01": 706.316146707279, - "2032-01-01": 692.618319893961, - "2031-01-01": 679.271719409189, - "2030-01-01": 666.10073208869, - "2029-01-01": 653.105357932464, - "2028-01-01": 640.285596940512, - "2027-01-01": 627.290222784287, - "2026-01-01": 612.205051973209, - "2025-01-01": 602.98740966911, - "2024-01-01": 589.901302044676, - "2023-01-01": 558, - "2015-01-01": 558 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 772.767475686651, - "2034-01-01": 757.803534608329, - "2033-01-01": 743.024333543321, - "2032-01-01": 728.614612504937, - "2031-01-01": 714.574371493179, - "2030-01-01": 700.718870494733, - "2029-01-01": 687.048109509599, - "2028-01-01": 673.562088537779, - "2027-01-01": 659.891327552646, - "2026-01-01": 644.022160409093, - "2025-01-01": 634.325465010336, - "2024-01-01": 620.559255018324, - "2023-01-01": 587, - "2015-01-01": 587 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 808.312146629649, - "2034-01-01": 792.659915246191, - "2033-01-01": 777.200921287221, - "2032-01-01": 762.128402177225, - "2031-01-01": 747.442357916204, - "2030-01-01": 732.94955107967, - "2029-01-01": 718.649981667622, - "2028-01-01": 704.543649680062, - "2027-01-01": 690.244080268015, - "2026-01-01": 673.644985504571, - "2025-01-01": 663.502275155615, - "2024-01-01": 649.102866407583, - "2023-01-01": 614, - "2015-01-01": 614 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 845.173286866831, - "2034-01-01": 828.807272944715, - "2033-01-01": 812.643308577192, - "2032-01-01": 796.883443318858, - "2031-01-01": 781.527677169712, - "2030-01-01": 766.373960575159, - "2029-01-01": 751.422293535201, - "2028-01-01": 736.672676049837, - "2027-01-01": 721.721009009879, - "2026-01-01": 704.364952270251, - "2025-01-01": 693.759707898868, - "2024-01-01": 678.703648589036, - "2023-01-01": 642, - "2015-01-01": 642 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 883.350896398199, - "2034-01-01": 866.2456077039, - "2033-01-01": 849.351495413234, - "2032-01-01": 832.879735929834, - "2031-01-01": 816.830329253702, - "2030-01-01": 800.992098981202, - "2029-01-01": 785.365045112336, - "2028-01-01": 769.949167647103, - "2027-01-01": 754.322113778237, - "2026-01-01": 736.182060706135, - "2025-01-01": 725.097763240094, - "2024-01-01": 709.361601562684, - "2023-01-01": 671, - "2015-01-01": 671 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 920.212036635382, - "2034-01-01": 902.392965402423, - "2033-01-01": 884.793882703204, - "2032-01-01": 867.634777071467, - "2031-01-01": 850.915648507209, - "2030-01-01": 834.416508476692, - "2029-01-01": 818.137356979915, - "2028-01-01": 802.078194016878, - "2027-01-01": 785.799042520101, - "2026-01-01": 766.902027471816, - "2025-01-01": 755.355195983347, - "2024-01-01": 738.962383744138, - "2023-01-01": 699, - "2015-01-01": 699 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 954.440238284194, - "2034-01-01": 935.958368979623, - "2033-01-01": 917.704670901035, - "2032-01-01": 899.907315274411, - "2031-01-01": 882.566302099752, - "2030-01-01": 865.453460151076, - "2029-01-01": 848.568789428381, - "2028-01-01": 831.912289931669, - "2027-01-01": 815.027619208975, - "2026-01-01": 795.427710897091, - "2025-01-01": 783.451383530653, - "2024-01-01": 766.448824341201, - "2023-01-01": 725, - "2015-01-01": 725 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1153.22710170614, - "2034-01-01": 1130.89590513952, - "2033-01-01": 1108.84040235766, - "2032-01-01": 1087.33628714536, - "2031-01-01": 1066.3835595026, - "2030-01-01": 1045.70652564461, - "2029-01-01": 1025.3051855714, - "2028-01-01": 1005.17953928295, - "2027-01-01": 984.778199209741, - "2026-01-01": 961.096103097726, - "2025-01-01": 946.625395824624, - "2024-01-01": 926.08161396261, - "2023-01-01": 876, - "2015-01-01": 876 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 300.154999074202, - "2034-01-01": 294.342769830833, - "2033-01-01": 288.60229650405, - "2032-01-01": 283.005335010435, - "2031-01-01": 277.551885349991, - "2030-01-01": 272.170191606131, - "2029-01-01": 266.860253778856, - "2028-01-01": 261.622071868166, - "2027-01-01": 256.312134040891, - "2026-01-01": 250.148300806257, - "2025-01-01": 246.381952337916, - "2024-01-01": 241.034940620405, - "2023-01-01": 228, - "2015-01-01": 228 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 417.320766256675, - "2034-01-01": 409.239728229711, - "2033-01-01": 401.258456104314, - "2032-01-01": 393.476715782053, - "2031-01-01": 385.894507262926, - "2030-01-01": 378.412064645367, - "2029-01-01": 371.029387929375, - "2028-01-01": 363.74647711495, - "2027-01-01": 356.363800398959, - "2026-01-01": 347.793909454314, - "2025-01-01": 342.557363557541, - "2024-01-01": 335.123141125739, - "2023-01-01": 317, - "2015-01-01": 317 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 476.561884495005, - "2034-01-01": 467.333695959481, - "2033-01-01": 458.219435677482, - "2032-01-01": 449.333031902533, - "2031-01-01": 440.674484634635, - "2030-01-01": 432.129865620261, - "2029-01-01": 423.699174859412, - "2028-01-01": 415.382412352089, - "2027-01-01": 406.95172159124, - "2026-01-01": 397.165284613444, - "2025-01-01": 391.18538046634, - "2024-01-01": 382.695826774503, - "2023-01-01": 362, - "2015-01-01": 362 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 525.271248379853, - "2034-01-01": 515.099847203958, - "2033-01-01": 505.054018882087, - "2032-01-01": 495.259336268262, - "2031-01-01": 485.715799362484, - "2030-01-01": 476.29783531073, - "2029-01-01": 467.005444112999, - "2028-01-01": 457.838625769291, - "2027-01-01": 448.54623457156, - "2026-01-01": 437.759526410951, - "2025-01-01": 431.168416591353, - "2024-01-01": 421.811146085709, - "2023-01-01": 399, - "2015-01-01": 399 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 568.714735087961, - "2034-01-01": 557.702090205789, - "2033-01-01": 546.82540390241, - "2032-01-01": 536.220634756615, - "2031-01-01": 525.887782768404, - "2030-01-01": 515.690889358986, - "2029-01-01": 505.629954528359, - "2028-01-01": 495.704978276526, - "2027-01-01": 485.6440434459, - "2026-01-01": 473.965201527646, - "2025-01-01": 466.828962324472, - "2024-01-01": 456.697782228137, - "2023-01-01": 432, - "2015-01-01": 432 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 606.892344619329, - "2034-01-01": 595.140424964974, - "2033-01-01": 583.533590738451, - "2032-01-01": 572.216927367591, - "2031-01-01": 561.190434852394, - "2030-01-01": 550.309027765029, - "2029-01-01": 539.572706105495, - "2028-01-01": 528.981469873792, - "2027-01-01": 518.245148214259, - "2026-01-01": 505.782309963529, - "2025-01-01": 498.167017665698, - "2024-01-01": 487.355735201785, - "2023-01-01": 461, - "2015-01-01": 461 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 642.437015562327, - "2034-01-01": 629.996805602836, - "2033-01-01": 617.710178482352, - "2032-01-01": 605.730717039879, - "2031-01-01": 594.058421275419, - "2030-01-01": 582.539708349965, - "2029-01-01": 571.174578263517, - "2028-01-01": 559.963031016075, - "2027-01-01": 548.597900929627, - "2026-01-01": 535.405135059007, - "2025-01-01": 527.343827810978, - "2024-01-01": 515.899346591043, - "2023-01-01": 488, - "2015-01-01": 488 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 675.348747916954, - "2034-01-01": 662.271232119375, - "2033-01-01": 649.355167134111, - "2032-01-01": 636.76200377348, - "2031-01-01": 624.49174203748, - "2030-01-01": 612.382931113796, - "2029-01-01": 600.435571002427, - "2028-01-01": 588.649661703374, - "2027-01-01": 576.702301592006, - "2026-01-01": 562.833676814079, - "2025-01-01": 554.359392760311, - "2024-01-01": 542.328616395912, - "2023-01-01": 513, - "2015-01-01": 513 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 704.311072389026, - "2034-01-01": 690.672727453929, - "2033-01-01": 677.20275714766, - "2032-01-01": 664.069536099048, - "2031-01-01": 651.273064308093, - "2030-01-01": 638.644967145966, - "2029-01-01": 626.185244612667, - "2028-01-01": 613.893896708197, - "2027-01-01": 601.434174174899, - "2026-01-01": 586.970793558543, - "2025-01-01": 578.133089915724, - "2024-01-01": 565.586373824197, - "2023-01-01": 535, - "2015-01-01": 535 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 745.121620508764, - "2034-01-01": 730.693016334437, - "2033-01-01": 716.442543075842, - "2032-01-01": 702.548331648713, - "2031-01-01": 689.010382053048, - "2030-01-01": 675.650563373116, - "2029-01-01": 662.468875608915, - "2028-01-01": 649.465318760448, - "2027-01-01": 636.283630996248, - "2026-01-01": 620.982185334832, - "2025-01-01": 611.632390452896, - "2024-01-01": 598.358668382234, - "2023-01-01": 566, - "2015-01-01": 566 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 795.147453687798, - "2034-01-01": 779.750144639576, - "2033-01-01": 764.542925826517, - "2032-01-01": 749.715887483785, - "2031-01-01": 735.26902961138, - "2030-01-01": 721.012261974138, - "2029-01-01": 706.945584572058, - "2028-01-01": 693.068997405142, - "2027-01-01": 679.002320003063, - "2026-01-01": 662.673568802542, - "2025-01-01": 652.696049175882, - "2024-01-01": 638.531158485635, - "2023-01-01": 604, - "2015-01-01": 604 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 842.540348278461, - "2034-01-01": 826.225318823392, - "2033-01-01": 810.111709485051, - "2032-01-01": 794.40094038017, - "2031-01-01": 779.093011508747, - "2030-01-01": 763.986502754053, - "2029-01-01": 749.081414116088, - "2028-01-01": 734.377745594853, - "2027-01-01": 719.472656956888, - "2026-01-01": 702.170668929846, - "2025-01-01": 691.598462702922, - "2024-01-01": 676.589307004647, - "2023-01-01": 640, - "2015-01-01": 640 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 884.667365692384, - "2034-01-01": 867.536584764561, - "2033-01-01": 850.617294959304, - "2032-01-01": 834.120987399178, - "2031-01-01": 818.047662084184, - "2030-01-01": 802.185827891756, - "2029-01-01": 786.535484821892, - "2028-01-01": 771.096632874595, - "2027-01-01": 755.446289804733, - "2026-01-01": 737.279202376338, - "2025-01-01": 726.178385838068, - "2024-01-01": 710.418772354879, - "2023-01-01": 672, - "2015-01-01": 672 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 925.477913812122, - "2034-01-01": 907.556873645069, - "2033-01-01": 889.857080887486, - "2032-01-01": 872.599782948843, - "2031-01-01": 855.784979829139, - "2030-01-01": 839.191424118905, - "2029-01-01": 822.81911581814, - "2028-01-01": 806.668054926846, - "2027-01-01": 790.295746626082, - "2026-01-01": 771.290594152627, - "2025-01-01": 759.677686375241, - "2024-01-01": 743.191066912917, - "2023-01-01": 703, - "2015-01-01": 703 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 966.28846193186, - "2034-01-01": 947.577162525577, - "2033-01-01": 929.096866815668, - "2032-01-01": 911.078578498507, - "2031-01-01": 893.522297574094, - "2030-01-01": 876.197020346054, - "2029-01-01": 859.102746814388, - "2028-01-01": 842.239476979097, - "2027-01-01": 825.145203447431, - "2026-01-01": 805.301985928917, - "2025-01-01": 793.176986912413, - "2024-01-01": 775.963361470954, - "2023-01-01": 734, - "2015-01-01": 734 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1011.04841793415, - "2034-01-01": 991.47038258807, - "2033-01-01": 972.134051382061, - "2032-01-01": 953.281128456204, - "2031-01-01": 934.911613810496, - "2030-01-01": 916.783803304864, - "2029-01-01": 898.897696939306, - "2028-01-01": 881.253294713823, - "2027-01-01": 863.367188348266, - "2026-01-01": 842.604802715815, - "2025-01-01": 829.918155243506, - "2024-01-01": 811.907168405576, - "2023-01-01": 768, - "2015-01-01": 768 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1051.85896605389, - "2034-01-01": 1031.49067146858, - "2033-01-01": 1011.37383731024, - "2032-01-01": 991.759924005868, - "2031-01-01": 972.648931555451, - "2030-01-01": 953.789399532013, - "2029-01-01": 935.181327935554, - "2028-01-01": 916.824716766074, - "2027-01-01": 898.216645169615, - "2026-01-01": 876.616194492104, - "2025-01-01": 863.417455780679, - "2024-01-01": 844.679462963614, - "2023-01-01": 799, - "2015-01-01": 799 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1091.35304487944, - "2034-01-01": 1070.21998328842, - "2033-01-01": 1049.34782369236, - "2032-01-01": 1028.99746808619, - "2031-01-01": 1009.16891646992, - "2030-01-01": 989.601266848609, - "2029-01-01": 970.294519222245, - "2028-01-01": 951.248673590833, - "2027-01-01": 931.941925964469, - "2026-01-01": 909.530444598191, - "2025-01-01": 895.836133719878, - "2024-01-01": 876.394586729456, - "2023-01-01": 829, - "2015-01-01": 829 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1316.4692941851, - "2034-01-01": 1290.97706066155, - "2033-01-01": 1265.79954607039, - "2032-01-01": 1241.25146934402, - "2031-01-01": 1217.33283048242, - "2030-01-01": 1193.72891055321, - "2029-01-01": 1170.43970955639, - "2028-01-01": 1147.46522749196, - "2027-01-01": 1124.17602649514, - "2026-01-01": 1097.14167020288, - "2025-01-01": 1080.62259797332, - "2024-01-01": 1057.17079219476, - "2023-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 326.484384957904, - "2034-01-01": 320.162311044064, - "2033-01-01": 313.918287425457, - "2032-01-01": 307.830364397316, - "2031-01-01": 301.898541959639, - "2030-01-01": 296.044769817196, - "2029-01-01": 290.269047969984, - "2028-01-01": 284.571376418005, - "2027-01-01": 278.795654570794, - "2026-01-01": 272.091134210315, - "2025-01-01": 267.994404297382, - "2024-01-01": 262.178356464301, - "2023-01-01": 248, - "2015-01-01": 248 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 454.181906493858, - "2034-01-01": 445.387085928234, - "2033-01-01": 436.700843394285, - "2032-01-01": 428.231756923685, - "2031-01-01": 419.979826516434, - "2030-01-01": 411.836474140857, - "2029-01-01": 403.801699796954, - "2028-01-01": 395.875503484725, - "2027-01-01": 387.840729140823, - "2026-01-01": 378.513876219995, - "2025-01-01": 372.814796300794, - "2024-01-01": 364.723923307192, - "2023-01-01": 345, - "2015-01-01": 345 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 517.372432614743, - "2034-01-01": 507.353984839989, - "2033-01-01": 497.459221605664, - "2032-01-01": 487.811827452198, - "2031-01-01": 478.41180237959, - "2030-01-01": 469.135461847411, - "2029-01-01": 459.98280585566, - "2028-01-01": 450.953834404339, - "2027-01-01": 441.801178412589, - "2026-01-01": 431.176676389733, - "2025-01-01": 424.684681003513, - "2024-01-01": 415.468121332541, - "2023-01-01": 393, - "2015-01-01": 393 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 571.347673676331, - "2034-01-01": 560.284044327112, - "2033-01-01": 549.35700299455, - "2032-01-01": 538.703137695303, - "2031-01-01": 528.322448429369, - "2030-01-01": 518.078347180092, - "2029-01-01": 507.970833947472, - "2028-01-01": 497.999908731509, - "2027-01-01": 487.89239549889, - "2026-01-01": 476.159484868051, - "2025-01-01": 468.990207520419, - "2024-01-01": 458.812123812526, - "2023-01-01": 434, - "2015-01-01": 434 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 617.42409897281, - "2034-01-01": 605.468241450267, - "2033-01-01": 593.659987107014, - "2032-01-01": 582.146939122343, - "2031-01-01": 570.929097496254, - "2030-01-01": 559.858859049454, - "2029-01-01": 548.936223781946, - "2028-01-01": 538.161191693728, - "2027-01-01": 527.23855642622, - "2026-01-01": 514.559443325152, - "2025-01-01": 506.811998449485, - "2024-01-01": 495.813101539343, - "2023-01-01": 469, - "2015-01-01": 469 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 659.551116386733, - "2034-01-01": 646.779507391436, - "2033-01-01": 634.165572581267, - "2032-01-01": 621.866986141352, - "2031-01-01": 609.883748071691, - "2030-01-01": 598.058184187157, - "2029-01-01": 586.39029448775, - "2028-01-01": 574.880078973471, - "2027-01-01": 563.212189274064, - "2026-01-01": 549.667976771645, - "2025-01-01": 541.391921584631, - "2024-01-01": 529.642566889575, - "2023-01-01": 501, - "2015-01-01": 501 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 697.728725918101, - "2034-01-01": 684.217842150621, - "2033-01-01": 670.873759417308, - "2032-01-01": 657.863278752328, - "2031-01-01": 645.186400155681, - "2030-01-01": 632.6763225932, - "2029-01-01": 620.333046064885, - "2028-01-01": 608.156570570737, - "2027-01-01": 595.813294042423, - "2026-01-01": 581.485085207528, - "2025-01-01": 572.729976925857, - "2024-01-01": 560.300519863223, - "2023-01-01": 530, - "2015-01-01": 530 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 731.956927566913, - "2034-01-01": 717.783245727821, - "2033-01-01": 703.784547615138, - "2032-01-01": 690.135816955272, - "2031-01-01": 676.837053748224, - "2030-01-01": 663.713274267583, - "2029-01-01": 650.764478513351, - "2028-01-01": 637.990666485528, - "2027-01-01": 625.041870731297, - "2026-01-01": 610.010768632803, - "2025-01-01": 600.826164473163, - "2024-01-01": 587.786960460287, - "2023-01-01": 556, - "2015-01-01": 556 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 764.86865992154, - "2034-01-01": 750.05767224436, - "2033-01-01": 735.429536266898, - "2032-01-01": 721.167103688873, - "2031-01-01": 707.270374510284, - "2030-01-01": 693.556497031414, - "2029-01-01": 680.025471252261, - "2028-01-01": 666.677297172827, - "2027-01-01": 653.146271393675, - "2026-01-01": 637.439310387875, - "2025-01-01": 627.841729422496, - "2024-01-01": 614.216230265156, - "2023-01-01": 581, - "2015-01-01": 581 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 806.995677335463, - "2034-01-01": 791.36893818553, - "2033-01-01": 775.935121741151, - "2032-01-01": 760.887150707881, - "2031-01-01": 746.225025085721, - "2030-01-01": 731.755822169116, - "2029-01-01": 717.479541958066, - "2028-01-01": 703.39618445257, - "2027-01-01": 689.119904241519, - "2026-01-01": 672.547843834368, - "2025-01-01": 662.421652557642, - "2024-01-01": 648.045695615388, - "2023-01-01": 613, - "2015-01-01": 613 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 862.287387691237, - "2034-01-01": 845.589974733315, - "2033-01-01": 829.098702676107, - "2032-01-01": 813.01971242033, - "2031-01-01": 797.353003965983, - "2030-01-01": 781.892436412351, - "2029-01-01": 766.638009759434, - "2028-01-01": 751.589724007232, - "2027-01-01": 736.335297354315, - "2026-01-01": 718.627793982889, - "2025-01-01": 707.807801672521, - "2024-01-01": 692.446868887568, - "2023-01-01": 655, - "2015-01-01": 655 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 913.629690164456, - "2034-01-01": 895.938080099115, - "2033-01-01": 878.464884972853, - "2032-01-01": 861.428519724747, - "2031-01-01": 844.828984354797, - "2030-01-01": 828.447863923926, - "2029-01-01": 812.285158432133, - "2028-01-01": 796.340867879418, - "2027-01-01": 780.178162387626, - "2026-01-01": 761.416319120801, - "2025-01-01": 749.952082993481, - "2024-01-01": 733.676529783164, - "2023-01-01": 694, - "2015-01-01": 694 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 959.706115460935, - "2034-01-01": 941.122277222269, - "2033-01-01": 922.767869085316, - "2032-01-01": 904.872321151787, - "2031-01-01": 887.435633421682, - "2030-01-01": 870.228375793288, - "2029-01-01": 853.250548266606, - "2028-01-01": 836.502150841637, - "2027-01-01": 819.524323314955, - "2026-01-01": 799.816277577902, - "2025-01-01": 787.773873922547, - "2024-01-01": 770.67750750998, - "2023-01-01": 729, - "2015-01-01": 729 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1003.14960216904, - "2034-01-01": 983.724520224101, - "2033-01-01": 964.539254105639, - "2032-01-01": 945.83361964014, - "2031-01-01": 927.607616827602, - "2030-01-01": 909.621429841544, - "2029-01-01": 891.875058681967, - "2028-01-01": 874.368503348871, - "2027-01-01": 856.622132189295, - "2026-01-01": 836.021952694597, - "2025-01-01": 823.434419655666, - "2024-01-01": 805.564143652407, - "2023-01-01": 762, - "2015-01-01": 762 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1046.59308887715, - "2034-01-01": 1026.32676322593, - "2033-01-01": 1006.31063912596, - "2032-01-01": 986.794918128492, - "2031-01-01": 967.779600233521, - "2030-01-01": 949.0144838898, - "2029-01-01": 930.499569097328, - "2028-01-01": 912.234855856106, - "2027-01-01": 893.719941063635, - "2026-01-01": 872.227627811293, - "2025-01-01": 859.094965388786, - "2024-01-01": 840.450779794835, - "2023-01-01": 795, - "2015-01-01": 795 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1093.98598346781, - "2034-01-01": 1072.80193740975, - "2033-01-01": 1051.8794227845, - "2032-01-01": 1031.47997102488, - "2031-01-01": 1011.60358213089, - "2030-01-01": 991.988724669716, - "2029-01-01": 972.635398641358, - "2028-01-01": 953.543604045816, - "2027-01-01": 934.190278017459, - "2026-01-01": 911.724727938596, - "2025-01-01": 897.997378915825, - "2024-01-01": 878.508928313846, - "2023-01-01": 831, - "2015-01-01": 831 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1138.74593947011, - "2034-01-01": 1116.69515747224, - "2033-01-01": 1094.91660735089, - "2032-01-01": 1073.68252098257, - "2031-01-01": 1052.99289836729, - "2030-01-01": 1032.57550762852, - "2029-01-01": 1012.43034876628, - "2028-01-01": 992.557421780543, - "2027-01-01": 972.412262918294, - "2026-01-01": 949.027544725494, - "2025-01-01": 934.738547246918, - "2024-01-01": 914.452735248468, - "2023-01-01": 865, - "2015-01-01": 865 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1180.87295688403, - "2034-01-01": 1158.00642341341, - "2033-01-01": 1135.42219282514, - "2032-01-01": 1113.40256800158, - "2031-01-01": 1091.94754894273, - "2030-01-01": 1070.77483276623, - "2029-01-01": 1049.88441947208, - "2028-01-01": 1029.27630906029, - "2027-01-01": 1008.38589576614, - "2026-01-01": 984.136078171987, - "2025-01-01": 969.318470382064, - "2024-01-01": 948.2822005987, - "2023-01-01": 897, - "2015-01-01": 897 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1424.41977630827, - "2034-01-01": 1396.8371796358, - "2033-01-01": 1369.59510884816, - "2032-01-01": 1343.03408983022, - "2031-01-01": 1317.15412258198, - "2030-01-01": 1291.61468121857, - "2029-01-01": 1266.41576574001, - "2028-01-01": 1241.5573761463, - "2027-01-01": 1216.35846066774, - "2026-01-01": 1187.10728715952, - "2025-01-01": 1169.23365100713, - "2024-01-01": 1143.85879715473, - "2023-01-01": 1082, - "2015-01-01": 1082 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 347.547893664865, - "2034-01-01": 340.817944014649, - "2033-01-01": 334.171080162584, - "2032-01-01": 327.69038790682, - "2031-01-01": 321.375867247358, - "2030-01-01": 315.144432386047, - "2029-01-01": 308.996083322886, - "2028-01-01": 302.930820057877, - "2027-01-01": 296.782470994716, - "2026-01-01": 289.645400933561, - "2025-01-01": 285.284365864955, - "2024-01-01": 279.093089139417, - "2023-01-01": 264, - "2015-01-01": 264 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 481.827761671745, - "2034-01-01": 472.497604202127, - "2033-01-01": 463.282633861764, - "2032-01-01": 454.29803777991, - "2031-01-01": 445.543815956565, - "2030-01-01": 436.904781262474, - "2029-01-01": 428.380933697638, - "2028-01-01": 419.972273262056, - "2027-01-01": 411.44842569722, - "2026-01-01": 401.553851294255, - "2025-01-01": 395.507870858233, - "2024-01-01": 386.924509943282, - "2023-01-01": 366, - "2015-01-01": 366 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 548.967695675185, - "2034-01-01": 538.337434295866, - "2033-01-01": 527.838410711354, - "2032-01-01": 517.601862716454, - "2031-01-01": 507.627790311168, - "2030-01-01": 497.784955700688, - "2029-01-01": 488.073358885014, - "2028-01-01": 478.492999864146, - "2027-01-01": 468.781403048472, - "2026-01-01": 457.508076474602, - "2025-01-01": 450.619623354872, - "2024-01-01": 440.840220345215, - "2023-01-01": 417, - "2015-01-01": 417 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 605.575875325144, - "2034-01-01": 593.849447904313, - "2033-01-01": 582.267791192381, - "2032-01-01": 570.975675898247, - "2031-01-01": 559.973102021912, - "2030-01-01": 549.115298854476, - "2029-01-01": 538.402266395938, - "2028-01-01": 527.8340046463, - "2027-01-01": 517.120972187763, - "2026-01-01": 504.685168293326, - "2025-01-01": 497.086395067725, - "2024-01-01": 486.29856440959, - "2023-01-01": 460, - "2015-01-01": 460 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 655.601708504177, - "2034-01-01": 642.906576209452, - "2033-01-01": 630.368173943056, - "2032-01-01": 618.14323173332, - "2031-01-01": 606.231749580244, - "2030-01-01": 594.476997455497, - "2029-01-01": 582.878975359081, - "2028-01-01": 571.437683290995, - "2027-01-01": 559.839661194579, - "2026-01-01": 546.376551761036, - "2025-01-01": 538.150053790711, - "2024-01-01": 526.471054512991, - "2023-01-01": 498, - "2015-01-01": 498 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 699.045195212286, - "2034-01-01": 685.508819211283, - "2033-01-01": 672.139558963379, - "2032-01-01": 659.104530221672, - "2031-01-01": 646.403732986163, - "2030-01-01": 633.870051503753, - "2029-01-01": 621.503485774442, - "2028-01-01": 609.304035798229, - "2027-01-01": 596.937470068918, - "2026-01-01": 582.582226877731, - "2025-01-01": 573.81059952383, - "2024-01-01": 561.357690655418, - "2023-01-01": 531, - "2015-01-01": 531 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 739.855743332024, - "2034-01-01": 725.529108091791, - "2033-01-01": 711.379344891561, - "2032-01-01": 697.583325771337, - "2031-01-01": 684.141050731118, - "2030-01-01": 670.875647730903, - "2029-01-01": 657.78711677069, - "2028-01-01": 644.87545785048, - "2027-01-01": 631.786926890267, - "2026-01-01": 616.593618654021, - "2025-01-01": 607.309900061003, - "2024-01-01": 594.129985213455, - "2023-01-01": 562, - "2015-01-01": 562 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 776.716883569206, - "2034-01-01": 761.676465790314, - "2033-01-01": 746.821732181532, - "2032-01-01": 732.338366912969, - "2031-01-01": 718.226369984626, - "2030-01-01": 704.300057226393, - "2029-01-01": 690.559428638269, - "2028-01-01": 677.004484220255, - "2027-01-01": 663.263855632131, - "2026-01-01": 647.313585419701, - "2025-01-01": 637.567332804256, - "2024-01-01": 623.730767394909, - "2023-01-01": 590, - "2015-01-01": 590 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 810.945085218019, - "2034-01-01": 795.241869367514, - "2033-01-01": 779.732520379362, - "2032-01-01": 764.610905115913, - "2031-01-01": 749.877023577169, - "2030-01-01": 735.337008900776, - "2029-01-01": 720.990861086735, - "2028-01-01": 706.838580135046, - "2027-01-01": 692.492432321005, - "2026-01-01": 675.839268844976, - "2025-01-01": 665.663520351562, - "2024-01-01": 651.217207991972, - "2023-01-01": 616, - "2015-01-01": 616 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 855.705041220312, - "2034-01-01": 839.135089430007, - "2033-01-01": 822.769704945755, - "2032-01-01": 806.81345507361, - "2031-01-01": 791.266339813571, - "2030-01-01": 775.923791859585, - "2029-01-01": 760.785811211652, - "2028-01-01": 745.852397869772, - "2027-01-01": 730.71441722184, - "2026-01-01": 713.142085631874, - "2025-01-01": 702.404688682655, - "2024-01-01": 687.161014926594, - "2023-01-01": 650, - "2015-01-01": 650 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 913.629690164456, - "2034-01-01": 895.938080099115, - "2033-01-01": 878.464884972853, - "2032-01-01": 861.428519724747, - "2031-01-01": 844.828984354797, - "2030-01-01": 828.447863923926, - "2029-01-01": 812.285158432133, - "2028-01-01": 796.340867879418, - "2027-01-01": 780.178162387626, - "2026-01-01": 761.416319120801, - "2025-01-01": 749.952082993481, - "2024-01-01": 733.676529783164, - "2023-01-01": 694, - "2015-01-01": 694 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 967.604931226045, - "2034-01-01": 948.868139586239, - "2033-01-01": 930.362666361739, - "2032-01-01": 912.319829967851, - "2031-01-01": 894.739630404576, - "2030-01-01": 877.390749256608, - "2029-01-01": 860.273186523945, - "2028-01-01": 843.386942206589, - "2027-01-01": 826.269379473926, - "2026-01-01": 806.399127599119, - "2025-01-01": 794.257609510387, - "2024-01-01": 777.020532263149, - "2023-01-01": 735, - "2015-01-01": 735 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1016.31429511089, - "2034-01-01": 996.634290830716, - "2033-01-01": 977.197249566343, - "2032-01-01": 958.24613433358, - "2031-01-01": 939.780945132426, - "2030-01-01": 921.558718947076, - "2029-01-01": 903.579455777531, - "2028-01-01": 885.843155623791, - "2027-01-01": 867.863892454246, - "2026-01-01": 846.993369396626, - "2025-01-01": 834.240645635399, - "2024-01-01": 816.135851574355, - "2023-01-01": 772, - "2015-01-01": 772 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1062.39072040737, - "2034-01-01": 1041.81848795387, - "2033-01-01": 1021.50023367881, - "2032-01-01": 1001.68993576062, - "2031-01-01": 982.38759419931, - "2030-01-01": 963.339230816439, - "2029-01-01": 944.544845612005, - "2028-01-01": 926.004438586009, - "2027-01-01": 907.210053381576, - "2026-01-01": 885.393327853727, - "2025-01-01": 872.062436564465, - "2024-01-01": 853.136829301172, - "2023-01-01": 807, - "2015-01-01": 807 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1108.46714570385, - "2034-01-01": 1087.00268507702, - "2033-01-01": 1065.80321779127, - "2032-01-01": 1045.13373718766, - "2031-01-01": 1024.99424326619, - "2030-01-01": 1005.1197426858, - "2029-01-01": 985.510235446478, - "2028-01-01": 966.165721548228, - "2027-01-01": 946.556214308906, - "2026-01-01": 923.793286310828, - "2025-01-01": 909.884227493531, - "2024-01-01": 890.137807027988, - "2023-01-01": 842, - "2015-01-01": 842 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1158.49297888288, - "2034-01-01": 1136.05981338216, - "2033-01-01": 1113.90360054195, - "2032-01-01": 1092.30129302273, - "2031-01-01": 1071.25289082453, - "2030-01-01": 1050.48144128682, - "2029-01-01": 1029.98694440962, - "2028-01-01": 1009.76940019292, - "2027-01-01": 989.274903315721, - "2026-01-01": 965.484669778538, - "2025-01-01": 950.947886216517, - "2024-01-01": 930.310297131389, - "2023-01-01": 880, - "2015-01-01": 880 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1205.88587347355, - "2034-01-01": 1182.53498756598, - "2033-01-01": 1159.47238420048, - "2032-01-01": 1136.98634591912, - "2031-01-01": 1115.07687272189, - "2030-01-01": 1093.45568206674, - "2029-01-01": 1072.12277395365, - "2028-01-01": 1051.07814838263, - "2027-01-01": 1029.74524026955, - "2026-01-01": 1004.98176990584, - "2025-01-01": 989.850299743557, - "2024-01-01": 968.368445650401, - "2023-01-01": 916, - "2015-01-01": 916 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1250.64582947584, - "2034-01-01": 1226.42820762847, - "2033-01-01": 1202.50956876687, - "2032-01-01": 1179.18889587681, - "2031-01-01": 1156.4661889583, - "2030-01-01": 1134.04246502555, - "2029-01-01": 1111.91772407857, - "2028-01-01": 1090.09196611736, - "2027-01-01": 1067.96722517038, - "2026-01-01": 1042.28458669274, - "2025-01-01": 1026.59146807465, - "2024-01-01": 1004.31225258502, - "2023-01-01": 950, - "2015-01-01": 950 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1507.35734184193, - "2034-01-01": 1478.16873445747, - "2033-01-01": 1449.3404802506, - "2032-01-01": 1421.2329323989, - "2031-01-01": 1393.84609090237, - "2030-01-01": 1366.81960258342, - "2029-01-01": 1340.15346744206, - "2028-01-01": 1313.84768547829, - "2027-01-01": 1287.18155033693, - "2026-01-01": 1256.2272123823, - "2025-01-01": 1237.31287467945, - "2024-01-01": 1210.460557063, - "2023-01-01": 1145, - "2015-01-01": 1145 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 364.661994489271, - "2034-01-01": 357.600645803249, - "2033-01-01": 350.626474261499, - "2032-01-01": 343.826657008292, - "2031-01-01": 337.201194043629, - "2030-01-01": 330.662908223239, - "2029-01-01": 324.211799547119, - "2028-01-01": 317.847868015272, - "2027-01-01": 311.396759339153, - "2026-01-01": 303.908242646199, - "2025-01-01": 299.332459638608, - "2024-01-01": 292.836309437949, - "2023-01-01": 277, - "2015-01-01": 277 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 505.524208967077, - "2034-01-01": 495.735191294035, - "2033-01-01": 486.067025691031, - "2032-01-01": 476.640564228102, - "2031-01-01": 467.455806905248, - "2030-01-01": 458.391901652432, - "2029-01-01": 449.448848469653, - "2028-01-01": 440.626647356912, - "2027-01-01": 431.683594174133, - "2026-01-01": 421.302401357907, - "2025-01-01": 414.959077621753, - "2024-01-01": 405.953584202788, - "2023-01-01": 384, - "2015-01-01": 384 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 575.297081558887, - "2034-01-01": 564.156975509097, - "2033-01-01": 553.154401632762, - "2032-01-01": 542.426892103335, - "2031-01-01": 531.974446920816, - "2030-01-01": 521.659533911752, - "2029-01-01": 511.482153076141, - "2028-01-01": 501.442304413985, - "2027-01-01": 491.264923578375, - "2026-01-01": 479.45090987866, - "2025-01-01": 472.232075314339, - "2024-01-01": 461.98363618911, - "2023-01-01": 437, - "2015-01-01": 437 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 634.538199797216, - "2034-01-01": 622.250943238867, - "2033-01-01": 610.115381205929, - "2032-01-01": 598.283208223815, - "2031-01-01": 586.754424292525, - "2030-01-01": 575.377334886646, - "2029-01-01": 564.151940006179, - "2028-01-01": 553.078239651123, - "2027-01-01": 541.852844770656, - "2026-01-01": 528.82228503779, - "2025-01-01": 520.860092223138, - "2024-01-01": 509.556321837875, - "2023-01-01": 482, - "2015-01-01": 482 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 685.880502270435, - "2034-01-01": 672.599048604667, - "2033-01-01": 659.481563502675, - "2032-01-01": 646.692015528232, - "2031-01-01": 634.230404681339, - "2030-01-01": 621.932762398221, - "2029-01-01": 609.799088678878, - "2028-01-01": 597.82938352331, - "2027-01-01": 585.695709803967, - "2026-01-01": 571.610810175702, - "2025-01-01": 563.004373544097, - "2024-01-01": 550.78598273347, - "2023-01-01": 521, - "2015-01-01": 521 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 731.956927566913, - "2034-01-01": 717.783245727821, - "2033-01-01": 703.784547615138, - "2032-01-01": 690.135816955272, - "2031-01-01": 676.837053748224, - "2030-01-01": 663.713274267583, - "2029-01-01": 650.764478513351, - "2028-01-01": 637.990666485528, - "2027-01-01": 625.041870731297, - "2026-01-01": 610.010768632803, - "2025-01-01": 600.826164473163, - "2024-01-01": 587.786960460287, - "2023-01-01": 556, - "2015-01-01": 556 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 774.083944980836, - "2034-01-01": 759.094511668991, - "2033-01-01": 744.290133089391, - "2032-01-01": 729.855863974281, - "2031-01-01": 715.791704323661, - "2030-01-01": 701.912599405286, - "2029-01-01": 688.218549219156, - "2028-01-01": 674.709553765271, - "2027-01-01": 661.015503579141, - "2026-01-01": 645.119302079296, - "2025-01-01": 635.406087608309, - "2024-01-01": 621.616425810519, - "2023-01-01": 588, - "2015-01-01": 588 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 812.261554512204, - "2034-01-01": 796.532846428176, - "2033-01-01": 780.998319925432, - "2032-01-01": 765.852156585257, - "2031-01-01": 751.094356407651, - "2030-01-01": 736.530737811329, - "2029-01-01": 722.161300796291, - "2028-01-01": 707.986045362538, - "2027-01-01": 693.6166083475, - "2026-01-01": 676.936410515179, - "2025-01-01": 666.744142949535, - "2024-01-01": 652.274378784167, - "2023-01-01": 617, - "2015-01-01": 617 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 849.122694749387, - "2034-01-01": 832.680204126699, - "2033-01-01": 816.440707215403, - "2032-01-01": 800.60719772689, - "2031-01-01": 785.179675661159, - "2030-01-01": 769.955147306819, - "2029-01-01": 754.93361266387, - "2028-01-01": 740.115071732313, - "2027-01-01": 725.093537089364, - "2026-01-01": 707.65637728086, - "2025-01-01": 697.001575692788, - "2024-01-01": 681.875160965621, - "2023-01-01": 645, - "2015-01-01": 645 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 895.199120045865, - "2034-01-01": 877.864401249854, - "2033-01-01": 860.743691327867, - "2032-01-01": 844.05099915393, - "2031-01-01": 827.786324728043, - "2030-01-01": 811.735659176181, - "2029-01-01": 795.899002498343, - "2028-01-01": 780.276354694531, - "2027-01-01": 764.439698016694, - "2026-01-01": 746.056335737961, - "2025-01-01": 734.823366621854, - "2024-01-01": 718.876138692437, - "2023-01-01": 680, - "2015-01-01": 680 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 955.756707578379, - "2034-01-01": 937.249346040285, - "2033-01-01": 918.970470447105, - "2032-01-01": 901.148566743755, - "2031-01-01": 883.783634930235, - "2030-01-01": 866.647189061629, - "2029-01-01": 849.739229137937, - "2028-01-01": 833.059755159161, - "2027-01-01": 816.15179523547, - "2026-01-01": 796.524852567294, - "2025-01-01": 784.532006128627, - "2024-01-01": 767.505995133396, - "2023-01-01": 726, - "2015-01-01": 726 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1012.36488722834, - "2034-01-01": 992.761359648731, - "2033-01-01": 973.399850928132, - "2032-01-01": 954.522379925548, - "2031-01-01": 936.128946640979, - "2030-01-01": 917.977532215417, - "2029-01-01": 900.068136648862, - "2028-01-01": 882.400759941315, - "2027-01-01": 864.491364374761, - "2026-01-01": 843.701944386017, - "2025-01-01": 830.998777841479, - "2024-01-01": 812.964339197771, - "2023-01-01": 769, - "2015-01-01": 769 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1062.39072040737, - "2034-01-01": 1041.81848795387, - "2033-01-01": 1021.50023367881, - "2032-01-01": 1001.68993576062, - "2031-01-01": 982.38759419931, - "2030-01-01": 963.339230816439, - "2029-01-01": 944.544845612005, - "2028-01-01": 926.004438586009, - "2027-01-01": 907.210053381576, - "2026-01-01": 885.393327853727, - "2025-01-01": 872.062436564465, - "2024-01-01": 853.136829301172, - "2023-01-01": 807, - "2015-01-01": 807 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1111.10008429222, - "2034-01-01": 1089.58463919835, - "2033-01-01": 1068.33481688341, - "2032-01-01": 1047.61624012635, - "2031-01-01": 1027.42890892716, - "2030-01-01": 1007.50720050691, - "2029-01-01": 987.851114865591, - "2028-01-01": 968.460652003212, - "2027-01-01": 948.804566361896, - "2026-01-01": 925.987569651234, - "2025-01-01": 912.045472689478, - "2024-01-01": 892.252148612378, - "2023-01-01": 844, - "2015-01-01": 844 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1159.80944817707, - "2034-01-01": 1137.35079044282, - "2033-01-01": 1115.16940008802, - "2032-01-01": 1093.54254449208, - "2031-01-01": 1072.47022365501, - "2030-01-01": 1051.67517019738, - "2029-01-01": 1031.15738411918, - "2028-01-01": 1010.91686542041, - "2027-01-01": 990.399079342216, - "2026-01-01": 966.58181144874, - "2025-01-01": 952.028508814491, - "2024-01-01": 931.367467923584, - "2023-01-01": 881, - "2015-01-01": 881 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1211.15175065029, - "2034-01-01": 1187.69889580863, - "2033-01-01": 1164.53558238476, - "2032-01-01": 1141.95135179649, - "2031-01-01": 1119.94620404382, - "2030-01-01": 1098.23059770895, - "2029-01-01": 1076.80453279188, - "2028-01-01": 1055.6680092926, - "2027-01-01": 1034.24194437553, - "2026-01-01": 1009.37033658665, - "2025-01-01": 994.17279013545, - "2024-01-01": 972.59712881918, - "2023-01-01": 920, - "2015-01-01": 920 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1261.17758382932, - "2034-01-01": 1236.75602411376, - "2033-01-01": 1212.63596513544, - "2032-01-01": 1189.11890763157, - "2031-01-01": 1166.20485160216, - "2030-01-01": 1143.59229630997, - "2029-01-01": 1121.28124175502, - "2028-01-01": 1099.2716879373, - "2027-01-01": 1076.96063338234, - "2026-01-01": 1051.06172005436, - "2025-01-01": 1035.23644885844, - "2024-01-01": 1012.76961892258, - "2023-01-01": 958, - "2015-01-01": 958 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1307.2540091258, - "2034-01-01": 1281.94022123692, - "2033-01-01": 1256.9389492479, - "2032-01-01": 1232.56270905861, - "2031-01-01": 1208.81150066904, - "2030-01-01": 1185.37280817934, - "2029-01-01": 1162.24663158949, - "2028-01-01": 1139.43297089951, - "2027-01-01": 1116.30679430967, - "2026-01-01": 1089.46167851146, - "2025-01-01": 1073.0582397875, - "2024-01-01": 1049.7705966494, - "2023-01-01": 993, - "2015-01-01": 993 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1574.49727584537, - "2034-01-01": 1544.00856455121, - "2033-01-01": 1513.89625710019, - "2032-01-01": 1484.53675733544, - "2031-01-01": 1455.93006525697, - "2030-01-01": 1427.69977702164, - "2029-01-01": 1399.84589262944, - "2028-01-01": 1372.36841208038, - "2027-01-01": 1344.51452768818, - "2026-01-01": 1312.18143756265, - "2025-01-01": 1292.42462717608, - "2024-01-01": 1264.37626746493, - "2023-01-01": 1196, - "2015-01-01": 1196 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 388.358441784603, - "2034-01-01": 380.838232895157, - "2033-01-01": 373.410866090766, - "2032-01-01": 366.169183456484, - "2031-01-01": 359.113184992313, - "2030-01-01": 352.150028613196, - "2029-01-01": 345.279714319134, - "2028-01-01": 338.502242110127, - "2027-01-01": 331.631927816066, - "2026-01-01": 323.656792709851, - "2025-01-01": 318.783666402128, - "2024-01-01": 311.865383697454, - "2023-01-01": 295, - "2015-01-01": 295 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 538.435941321704, - "2034-01-01": 528.009617810574, - "2033-01-01": 517.712014342791, - "2032-01-01": 507.671850961702, - "2031-01-01": 497.889127667308, - "2030-01-01": 488.235124416262, - "2029-01-01": 478.709841208562, - "2028-01-01": 469.313278044211, - "2027-01-01": 459.787994836511, - "2026-01-01": 448.730943112979, - "2025-01-01": 441.974642571086, - "2024-01-01": 432.382854007657, - "2023-01-01": 409, - "2015-01-01": 409 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 612.158221796069, - "2034-01-01": 600.30433320762, - "2033-01-01": 588.596788922733, - "2032-01-01": 577.181933244967, - "2031-01-01": 566.059766174324, - "2030-01-01": 555.083943407242, - "2029-01-01": 544.25446494372, - "2028-01-01": 533.57133078376, - "2027-01-01": 522.741852320239, - "2026-01-01": 510.170876644341, - "2025-01-01": 502.489508057592, - "2024-01-01": 491.584418370564, - "2023-01-01": 465, - "2015-01-01": 465 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 675.348747916954, - "2034-01-01": 662.271232119375, - "2033-01-01": 649.355167134111, - "2032-01-01": 636.76200377348, - "2031-01-01": 624.49174203748, - "2030-01-01": 612.382931113796, - "2029-01-01": 600.435571002427, - "2028-01-01": 588.649661703374, - "2027-01-01": 576.702301592006, - "2026-01-01": 562.833676814079, - "2025-01-01": 554.359392760311, - "2024-01-01": 542.328616395912, - "2023-01-01": 513, - "2015-01-01": 513 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 729.323988978543, - "2034-01-01": 715.201291606498, - "2033-01-01": 701.252948522998, - "2032-01-01": 687.653314016584, - "2031-01-01": 674.402388087259, - "2030-01-01": 661.325816446477, - "2029-01-01": 648.423599094239, - "2028-01-01": 635.695736030544, - "2027-01-01": 622.793518678306, - "2026-01-01": 607.816485292398, - "2025-01-01": 598.664919277217, - "2024-01-01": 585.672618875897, - "2023-01-01": 554, - "2015-01-01": 554 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 778.033352863391, - "2034-01-01": 762.967442850976, - "2033-01-01": 748.087531727602, - "2032-01-01": 733.579618382313, - "2031-01-01": 719.443702815108, - "2030-01-01": 705.493786136946, - "2029-01-01": 691.729868347825, - "2028-01-01": 678.151949447747, - "2027-01-01": 664.388031658626, - "2026-01-01": 648.410727089904, - "2025-01-01": 638.647955402229, - "2024-01-01": 624.787938187103, - "2023-01-01": 591, - "2015-01-01": 591 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 822.793308865685, - "2034-01-01": 806.860662913468, - "2033-01-01": 791.124716293995, - "2032-01-01": 775.782168340009, - "2031-01-01": 760.83301905151, - "2030-01-01": 746.080569095755, - "2029-01-01": 731.524818472742, - "2028-01-01": 717.165767182473, - "2027-01-01": 702.610016559461, - "2026-01-01": 685.713543876802, - "2025-01-01": 675.389123733322, - "2024-01-01": 660.731745121725, - "2023-01-01": 625, - "2015-01-01": 625 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 863.603856985423, - "2034-01-01": 846.880951793976, - "2033-01-01": 830.364502222178, - "2032-01-01": 814.260963889674, - "2031-01-01": 798.570336796465, - "2030-01-01": 783.086165322904, - "2029-01-01": 767.80844946899, - "2028-01-01": 752.737189234724, - "2027-01-01": 737.45947338081, - "2026-01-01": 719.724935653092, - "2025-01-01": 708.888424270495, - "2024-01-01": 693.504039679763, - "2023-01-01": 656, - "2015-01-01": 656 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 901.78146651679, - "2034-01-01": 884.319286553161, - "2033-01-01": 867.072689058219, - "2032-01-01": 850.25725650065, - "2031-01-01": 833.872988880455, - "2030-01-01": 817.704303728947, - "2029-01-01": 801.751201046125, - "2028-01-01": 786.013680831991, - "2027-01-01": 770.060578149169, - "2026-01-01": 751.542044088975, - "2025-01-01": 740.226479611721, - "2024-01-01": 724.161992653411, - "2023-01-01": 685, - "2015-01-01": 685 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 950.490830401639, - "2034-01-01": 932.085437797639, - "2033-01-01": 913.907272262823, - "2032-01-01": 896.183560866379, - "2031-01-01": 878.914303608305, - "2030-01-01": 861.872273419416, - "2029-01-01": 845.057470299712, - "2028-01-01": 828.469894249193, - "2027-01-01": 811.655091129489, - "2026-01-01": 792.136285886482, - "2025-01-01": 780.209515736734, - "2024-01-01": 763.277311964617, - "2023-01-01": 722, - "2015-01-01": 722 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1014.99782581671, - "2034-01-01": 995.343313770054, - "2033-01-01": 975.931450020273, - "2032-01-01": 957.004882864236, - "2031-01-01": 938.563612301943, - "2030-01-01": 920.364990036523, - "2029-01-01": 902.409016067975, - "2028-01-01": 884.695690396299, - "2027-01-01": 866.739716427751, - "2026-01-01": 845.896227726423, - "2025-01-01": 833.160023037426, - "2024-01-01": 815.07868078216, - "2023-01-01": 771, - "2015-01-01": 771 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1074.23894405504, - "2034-01-01": 1053.43728149982, - "2033-01-01": 1032.89242959344, - "2032-01-01": 1012.86119898472, - "2031-01-01": 993.343589673652, - "2030-01-01": 974.082791011417, - "2029-01-01": 955.078802998012, - "2028-01-01": 936.331625633437, - "2027-01-01": 917.327637620032, - "2026-01-01": 895.267602885553, - "2025-01-01": 881.788039946225, - "2024-01-01": 862.651366430924, - "2023-01-01": 816, - "2015-01-01": 816 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1128.21418511663, - "2034-01-01": 1106.36734098695, - "2033-01-01": 1084.79021098233, - "2032-01-01": 1063.75250922782, - "2031-01-01": 1043.25423572343, - "2030-01-01": 1023.0256763441, - "2029-01-01": 1003.06683108982, - "2028-01-01": 983.377699960607, - "2027-01-01": 963.418854706333, - "2026-01-01": 940.250411363871, - "2025-01-01": 926.093566463131, - "2024-01-01": 905.99536891091, - "2023-01-01": 857, - "2015-01-01": 857 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1178.24001829566, - "2034-01-01": 1155.42446929209, - "2033-01-01": 1132.890593733, - "2032-01-01": 1110.92006506289, - "2031-01-01": 1089.51288328176, - "2030-01-01": 1068.38737494512, - "2029-01-01": 1047.54354005297, - "2028-01-01": 1026.9813786053, - "2027-01-01": 1006.13754371315, - "2026-01-01": 981.941794831581, - "2025-01-01": 967.157225186117, - "2024-01-01": 946.167859014311, - "2023-01-01": 895, - "2015-01-01": 895 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1229.58232076888, - "2034-01-01": 1205.77257465789, - "2033-01-01": 1182.25677602975, - "2032-01-01": 1159.32887236731, - "2031-01-01": 1136.98886367058, - "2030-01-01": 1114.9428024567, - "2029-01-01": 1093.19068872567, - "2028-01-01": 1071.73252247749, - "2027-01-01": 1049.98040874646, - "2026-01-01": 1024.73031996949, - "2025-01-01": 1009.30150650708, - "2024-01-01": 987.397519909906, - "2023-01-01": 934, - "2015-01-01": 934 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1284.87403112465, - "2034-01-01": 1259.99361120567, - "2033-01-01": 1235.4203569647, - "2032-01-01": 1211.46143407976, - "2031-01-01": 1188.11684255084, - "2030-01-01": 1165.07941669993, - "2029-01-01": 1142.34915652703, - "2028-01-01": 1119.92606203215, - "2027-01-01": 1097.19580185925, - "2026-01-01": 1070.81027011801, - "2025-01-01": 1054.68765562196, - "2024-01-01": 1031.79869318209, - "2023-01-01": 976, - "2015-01-01": 976 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1336.21633359787, - "2034-01-01": 1310.34171657147, - "2033-01-01": 1284.78653926145, - "2032-01-01": 1259.87024138418, - "2031-01-01": 1235.59282293965, - "2030-01-01": 1211.63484421151, - "2029-01-01": 1187.99630519973, - "2028-01-01": 1164.67720590434, - "2027-01-01": 1141.03866689256, - "2026-01-01": 1113.59879525593, - "2025-01-01": 1096.83193694291, - "2024-01-01": 1073.02835407768, - "2023-01-01": 1015, - "2015-01-01": 1015 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1386.24216677691, - "2034-01-01": 1359.39884487661, - "2033-01-01": 1332.88692201212, - "2032-01-01": 1307.03779721925, - "2031-01-01": 1281.85147049798, - "2030-01-01": 1256.99654281253, - "2029-01-01": 1232.47301416288, - "2028-01-01": 1208.28088454903, - "2027-01-01": 1183.75735589938, - "2026-01-01": 1155.29017872364, - "2025-01-01": 1137.8955956659, - "2024-01-01": 1113.20084418108, - "2023-01-01": 1053, - "2015-01-01": 1053 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.CT.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1667.96659573252, - "2034-01-01": 1635.66793585818, - "2033-01-01": 1603.76802487119, - "2032-01-01": 1572.66561165887, - "2031-01-01": 1542.36069622122, - "2030-01-01": 1512.45452967091, - "2029-01-01": 1482.94711200794, - "2028-01-01": 1453.83844323231, - "2027-01-01": 1424.33102556934, - "2026-01-01": 1390.07849614705, - "2025-01-01": 1369.14883163219, - "2024-01-01": 1339.43539371076, - "2023-01-01": 1267, - "2015-01-01": 1267 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL", - "description": null, - "label": "FL", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 597.677059560033, - "2034-01-01": 586.103585540343, - "2033-01-01": 574.672993915958, - "2032-01-01": 563.528167082183, - "2031-01-01": 552.669105039017, - "2030-01-01": 541.952925391156, - "2029-01-01": 531.3796281386, - "2028-01-01": 520.949213281349, - "2027-01-01": 510.375916028793, - "2026-01-01": 498.102318272109, - "2025-01-01": 490.602659479885, - "2024-01-01": 479.955539656421, - "2023-01-01": 454, - "2015-01-01": 454 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 857.021510514497, - "2034-01-01": 840.426066490669, - "2033-01-01": 824.035504491826, - "2032-01-01": 808.054706542954, - "2031-01-01": 792.483672644053, - "2030-01-01": 777.117520770138, - "2029-01-01": 761.956250921208, - "2028-01-01": 746.999863097264, - "2027-01-01": 731.838593248335, - "2026-01-01": 714.239227302077, - "2025-01-01": 703.485311280628, - "2024-01-01": 688.218185718789, - "2023-01-01": 651, - "2015-01-01": 651 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 987.351970638822, - "2034-01-01": 968.232795496162, - "2033-01-01": 949.349659552794, - "2032-01-01": 930.938602008011, - "2031-01-01": 912.999622861813, - "2030-01-01": 895.296682914906, - "2029-01-01": 877.829782167291, - "2028-01-01": 860.598920618968, - "2027-01-01": 843.132019871353, - "2026-01-01": 822.856252652163, - "2025-01-01": 810.466948479986, - "2024-01-01": 792.87809414607, - "2023-01-01": 750, - "2015-01-01": 750 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1097.93539135037, - "2034-01-01": 1076.67486859173, - "2033-01-01": 1055.67682142271, - "2032-01-01": 1035.20372543291, - "2031-01-01": 1015.25558062234, - "2030-01-01": 995.569911401375, - "2029-01-01": 976.146717770027, - "2028-01-01": 956.985999728292, - "2027-01-01": 937.562806096945, - "2026-01-01": 915.016152949205, - "2025-01-01": 901.239246709745, - "2024-01-01": 881.68044069043, - "2023-01-01": 834, - "2015-01-01": 834 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1195.35411912007, - "2034-01-01": 1172.20717108069, - "2033-01-01": 1149.34598783192, - "2032-01-01": 1127.05633416437, - "2031-01-01": 1105.33821007803, - "2030-01-01": 1083.90585078231, - "2029-01-01": 1062.7592562772, - "2028-01-01": 1041.8984265627, - "2027-01-01": 1020.75183205759, - "2026-01-01": 996.204636544218, - "2025-01-01": 981.20531895977, - "2024-01-01": 959.911079312842, - "2023-01-01": 908, - "2015-01-01": 908 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1282.24109253628, - "2034-01-01": 1257.41165708435, - "2033-01-01": 1232.88875787256, - "2032-01-01": 1208.97893114107, - "2031-01-01": 1185.68217688987, - "2030-01-01": 1162.69195887882, - "2029-01-01": 1140.00827710792, - "2028-01-01": 1117.63113157717, - "2027-01-01": 1094.94744980626, - "2026-01-01": 1068.61598677761, - "2025-01-01": 1052.52641042601, - "2024-01-01": 1029.6843515977, - "2023-01-01": 974, - "2015-01-01": 974 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1361.22925018739, - "2034-01-01": 1334.87028072404, - "2033-01-01": 1308.83673063679, - "2032-01-01": 1283.45401930171, - "2031-01-01": 1258.72214671882, - "2030-01-01": 1234.31569351202, - "2029-01-01": 1210.2346596813, - "2028-01-01": 1186.47904522668, - "2027-01-01": 1162.39801139597, - "2026-01-01": 1134.44448698978, - "2025-01-01": 1117.36376630441, - "2024-01-01": 1093.11459912938, - "2023-01-01": 1034, - "2015-01-01": 1034 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1434.95153066175, - "2034-01-01": 1407.16499612109, - "2033-01-01": 1379.72150521673, - "2032-01-01": 1352.96410158498, - "2031-01-01": 1326.89278522583, - "2030-01-01": 1301.164512503, - "2029-01-01": 1275.77928341646, - "2028-01-01": 1250.73709796623, - "2027-01-01": 1225.3518688797, - "2026-01-01": 1195.88442052114, - "2025-01-01": 1177.87863179091, - "2024-01-01": 1152.31616349229, - "2023-01-01": 1090, - "2015-01-01": 1090 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1503.40793395938, - "2034-01-01": 1474.29580327549, - "2033-01-01": 1445.54308161239, - "2032-01-01": 1417.50917799087, - "2031-01-01": 1390.19409241092, - "2030-01-01": 1363.23841585176, - "2029-01-01": 1336.64214831339, - "2028-01-01": 1310.40528979582, - "2027-01-01": 1283.80902225745, - "2026-01-01": 1252.93578737169, - "2025-01-01": 1234.07100688553, - "2024-01-01": 1207.28904468642, - "2023-01-01": 1142, - "2015-01-01": 1142 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1594.24431525815, - "2034-01-01": 1563.37322046114, - "2033-01-01": 1532.88325029125, - "2032-01-01": 1503.1555293756, - "2031-01-01": 1474.19005771421, - "2030-01-01": 1445.60571067993, - "2029-01-01": 1417.40248827279, - "2028-01-01": 1389.58039049276, - "2027-01-01": 1361.37716808561, - "2026-01-01": 1328.63856261569, - "2025-01-01": 1308.63396614568, - "2024-01-01": 1280.23382934786, - "2023-01-01": 1211, - "2015-01-01": 1211 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1710.09361314644, - "2034-01-01": 1676.97920179935, - "2033-01-01": 1644.27361034544, - "2032-01-01": 1612.38565867788, - "2031-01-01": 1581.31534679666, - "2030-01-01": 1550.65385480862, - "2029-01-01": 1520.40118271375, - "2028-01-01": 1490.55733051205, - "2027-01-01": 1460.30465841718, - "2026-01-01": 1425.18702959355, - "2025-01-01": 1403.72875476734, - "2024-01-01": 1373.26485906099, - "2023-01-01": 1299, - "2015-01-01": 1299 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1818.04409526962, - "2034-01-01": 1782.8393207736, - "2033-01-01": 1748.06917312321, - "2032-01-01": 1714.16827916408, - "2031-01-01": 1681.13663889622, - "2030-01-01": 1648.53962547398, - "2029-01-01": 1616.37723889737, - "2028-01-01": 1584.64947916639, - "2027-01-01": 1552.48709258979, - "2026-01-01": 1515.15264655018, - "2025-01-01": 1492.33980780115, - "2024-01-01": 1459.95286402096, - "2023-01-01": 1381, - "2015-01-01": 1381 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1915.46282303931, - "2034-01-01": 1878.37162326255, - "2033-01-01": 1841.73833953242, - "2032-01-01": 1806.02088789554, - "2031-01-01": 1771.21926835192, - "2030-01-01": 1736.87556485492, - "2029-01-01": 1702.98977740454, - "2028-01-01": 1669.5619060008, - "2027-01-01": 1635.67611855043, - "2026-01-01": 1596.3411301452, - "2025-01-01": 1572.30588005117, - "2024-01-01": 1538.18350264338, - "2023-01-01": 1455, - "2015-01-01": 1455 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2007.61567363227, - "2034-01-01": 1968.74001750886, - "2033-01-01": 1930.34430775735, - "2032-01-01": 1892.90849074962, - "2031-01-01": 1856.43256648569, - "2030-01-01": 1820.43658859364, - "2029-01-01": 1784.92055707349, - "2028-01-01": 1749.88447192523, - "2027-01-01": 1714.36844040509, - "2026-01-01": 1673.1410470594, - "2025-01-01": 1647.94946190931, - "2024-01-01": 1612.18545809701, - "2023-01-01": 1525, - "2015-01-01": 1525 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2103.71793210778, - "2034-01-01": 2062.98134293716, - "2033-01-01": 2022.74767462049, - "2032-01-01": 1983.51984801174, - "2031-01-01": 1945.2978631109, - "2030-01-01": 1907.57879906403, - "2029-01-01": 1870.36265587111, - "2028-01-01": 1833.64943353215, - "2027-01-01": 1796.43329033923, - "2026-01-01": 1753.23238898421, - "2025-01-01": 1726.83491156136, - "2024-01-01": 1689.35892592723, - "2023-01-01": 1598, - "2015-01-01": 1598 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2205.08606776003, - "2034-01-01": 2162.3865766081, - "2033-01-01": 2120.21423966791, - "2032-01-01": 2079.09621115123, - "2031-01-01": 2039.03249105805, - "2030-01-01": 1999.49592517662, - "2029-01-01": 1960.48651350695, - "2028-01-01": 1922.00425604903, - "2027-01-01": 1882.99484437936, - "2026-01-01": 1837.71229758983, - "2025-01-01": 1810.0428516053, - "2024-01-01": 1770.76107692622, - "2023-01-01": 1675, - "2015-01-01": 1675 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2299.87185694136, - "2034-01-01": 2255.33692497573, - "2033-01-01": 2211.35180698498, - "2032-01-01": 2168.46631694399, - "2031-01-01": 2126.68045485278, - "2030-01-01": 2085.44440673645, - "2029-01-01": 2044.75817259501, - "2028-01-01": 2004.62175242845, - "2027-01-01": 1963.93551828701, - "2026-01-01": 1916.70649784444, - "2025-01-01": 1887.84767865938, - "2024-01-01": 1846.87737396425, - "2023-01-01": 1747, - "2015-01-01": 1747 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2390.70823824013, - "2034-01-01": 2344.41434216137, - "2033-01-01": 2298.69197566383, - "2032-01-01": 2254.11266832873, - "2031-01-01": 2210.67642015607, - "2030-01-01": 2167.81170156463, - "2029-01-01": 2125.5185125544, - "2028-01-01": 2083.79685312539, - "2027-01-01": 2041.50366411517, - "2026-01-01": 1992.40927308844, - "2025-01-01": 1962.41063791954, - "2024-01-01": 1919.82215862568, - "2023-01-01": 1816, - "2015-01-01": 1816 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2915.97948661999, - "2034-01-01": 2859.51418936533, - "2033-01-01": 2803.74599454592, - "2032-01-01": 2749.37200459699, - "2031-01-01": 2696.39221951855, - "2030-01-01": 2644.10953687536, - "2029-01-01": 2592.5239566674, - "2028-01-01": 2541.63547889469, - "2027-01-01": 2490.04989868673, - "2026-01-01": 2430.16879949939, - "2025-01-01": 2393.57905451089, - "2024-01-01": 2341.63330471139, - "2023-01-01": 2215, - "2015-01-01": 2215 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 613.474691090254, - "2034-01-01": 601.595310268282, - "2033-01-01": 589.862588468803, - "2032-01-01": 578.423184714311, - "2031-01-01": 567.277099004806, - "2030-01-01": 556.277672317795, - "2029-01-01": 545.424904653277, - "2028-01-01": 534.718796011252, - "2027-01-01": 523.866028346734, - "2026-01-01": 511.268018314544, - "2025-01-01": 503.570130655565, - "2024-01-01": 492.641589162758, - "2023-01-01": 466, - "2015-01-01": 466 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 879.401488515644, - "2034-01-01": 862.372676521915, - "2033-01-01": 845.554096775022, - "2032-01-01": 829.155981521802, - "2031-01-01": 813.178330762254, - "2030-01-01": 797.410912249543, - "2029-01-01": 781.853725983667, - "2028-01-01": 766.506771964627, - "2027-01-01": 750.949585698752, - "2026-01-01": 732.890635695526, - "2025-01-01": 721.855895446175, - "2024-01-01": 706.1900891861, - "2023-01-01": 668, - "2015-01-01": 668 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1012.36488722834, - "2034-01-01": 992.761359648731, - "2033-01-01": 973.399850928132, - "2032-01-01": 954.522379925548, - "2031-01-01": 936.128946640979, - "2030-01-01": 917.977532215417, - "2029-01-01": 900.068136648862, - "2028-01-01": 882.400759941315, - "2027-01-01": 864.491364374761, - "2026-01-01": 843.701944386017, - "2025-01-01": 830.998777841479, - "2024-01-01": 812.964339197771, - "2023-01-01": 769, - "2015-01-01": 769 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1125.58124652826, - "2034-01-01": 1103.78538686562, - "2033-01-01": 1082.25861189019, - "2032-01-01": 1061.27000628913, - "2031-01-01": 1040.81957006247, - "2030-01-01": 1020.63821852299, - "2029-01-01": 1000.72595167071, - "2028-01-01": 981.082769505623, - "2027-01-01": 961.170502653343, - "2026-01-01": 938.056128023466, - "2025-01-01": 923.932321267184, - "2024-01-01": 903.88102732652, - "2023-01-01": 855, - "2015-01-01": 855 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1225.63291288632, - "2034-01-01": 1201.8996434759, - "2033-01-01": 1178.45937739154, - "2032-01-01": 1155.60511795928, - "2031-01-01": 1133.33686517913, - "2030-01-01": 1111.36161572504, - "2029-01-01": 1089.679369597, - "2028-01-01": 1068.29012679501, - "2027-01-01": 1046.60788066697, - "2026-01-01": 1021.43889495888, - "2025-01-01": 1006.05963871316, - "2024-01-01": 984.226007533322, - "2023-01-01": 931, - "2015-01-01": 931 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1315.15282489091, - "2034-01-01": 1289.68608360089, - "2033-01-01": 1264.53374652432, - "2032-01-01": 1240.01021787467, - "2031-01-01": 1216.11549765193, - "2030-01-01": 1192.53518164265, - "2029-01-01": 1169.26926984683, - "2028-01-01": 1146.31776226447, - "2027-01-01": 1123.05185046864, - "2026-01-01": 1096.04452853268, - "2025-01-01": 1079.54197537534, - "2024-01-01": 1056.11362140257, - "2023-01-01": 999, - "2015-01-01": 999 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1396.77392113039, - "2034-01-01": 1369.7266613619, - "2033-01-01": 1343.01331838069, - "2032-01-01": 1316.967808974, - "2031-01-01": 1291.59013314184, - "2030-01-01": 1266.54637409695, - "2029-01-01": 1241.83653183933, - "2028-01-01": 1217.46060636897, - "2027-01-01": 1192.75076411134, - "2026-01-01": 1164.06731208526, - "2025-01-01": 1146.54057644969, - "2024-01-01": 1121.65821051864, - "2023-01-01": 1061, - "2015-01-01": 1061 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1471.81267089894, - "2034-01-01": 1443.31235381961, - "2033-01-01": 1415.1638925067, - "2032-01-01": 1387.71914272661, - "2031-01-01": 1360.97810447934, - "2030-01-01": 1334.58892199849, - "2029-01-01": 1308.55159528404, - "2028-01-01": 1282.86612433601, - "2027-01-01": 1256.82879762156, - "2026-01-01": 1226.60438728682, - "2025-01-01": 1208.13606453417, - "2024-01-01": 1181.91694567374, - "2023-01-01": 1118, - "2015-01-01": 1118 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1541.58554349075, - "2034-01-01": 1511.73413803467, - "2033-01-01": 1482.25126844843, - "2032-01-01": 1453.50547060184, - "2031-01-01": 1425.49674449491, - "2030-01-01": 1397.85655425781, - "2029-01-01": 1370.58489989053, - "2028-01-01": 1343.68178139308, - "2027-01-01": 1316.41012702581, - "2026-01-01": 1284.75289580758, - "2025-01-01": 1265.40906222675, - "2024-01-01": 1237.94699766006, - "2023-01-01": 1171, - "2015-01-01": 1171 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1635.05486337789, - "2034-01-01": 1603.39350934164, - "2033-01-01": 1572.12303621943, - "2032-01-01": 1541.63432492527, - "2031-01-01": 1511.92737545916, - "2030-01-01": 1482.61130690708, - "2029-01-01": 1453.68611926903, - "2028-01-01": 1425.15181254501, - "2027-01-01": 1396.22662490696, - "2026-01-01": 1362.64995439198, - "2025-01-01": 1342.13326668286, - "2024-01-01": 1313.00612390589, - "2023-01-01": 1242, - "2015-01-01": 1242 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1753.53709985455, - "2034-01-01": 1719.58144480118, - "2033-01-01": 1686.04499536576, - "2032-01-01": 1653.34695716623, - "2031-01-01": 1621.48733020258, - "2030-01-01": 1590.04690885687, - "2029-01-01": 1559.02569312911, - "2028-01-01": 1528.42368301929, - "2027-01-01": 1497.40246729152, - "2026-01-01": 1461.39270471024, - "2025-01-01": 1439.38930050046, - "2024-01-01": 1408.15149520342, - "2023-01-01": 1332, - "2015-01-01": 1332 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1864.1205205661, - "2034-01-01": 1828.02351789675, - "2033-01-01": 1792.37215723568, - "2032-01-01": 1757.61208059113, - "2031-01-01": 1723.7432879631, - "2030-01-01": 1690.32013734334, - "2029-01-01": 1657.34262873184, - "2028-01-01": 1624.81076212861, - "2027-01-01": 1591.83325351712, - "2026-01-01": 1553.55260500728, - "2025-01-01": 1530.16159873021, - "2024-01-01": 1496.95384174778, - "2023-01-01": 1416, - "2015-01-01": 1416 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1965.48865621835, - "2034-01-01": 1927.42875156769, - "2033-01-01": 1889.8387222831, - "2032-01-01": 1853.18844373061, - "2031-01-01": 1817.47791591025, - "2030-01-01": 1782.23726345594, - "2029-01-01": 1747.46648636769, - "2028-01-01": 1713.16558464549, - "2027-01-01": 1678.39480755724, - "2026-01-01": 1638.03251361291, - "2025-01-01": 1613.36953877416, - "2024-01-01": 1578.35599274678, - "2023-01-01": 1493, - "2015-01-01": 1493 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2060.27444539967, - "2034-01-01": 2020.37909993532, - "2033-01-01": 1980.97628960016, - "2032-01-01": 1942.55854952338, - "2031-01-01": 1905.12587970498, - "2030-01-01": 1868.18574501577, - "2029-01-01": 1831.73814545575, - "2028-01-01": 1795.78308102491, - "2027-01-01": 1759.33548146489, - "2026-01-01": 1717.02671386751, - "2025-01-01": 1691.17436582824, - "2024-01-01": 1654.4722897848, - "2023-01-01": 1565, - "2015-01-01": 1565 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2157.69317316937, - "2034-01-01": 2115.91140242428, - "2033-01-01": 2074.64545600937, - "2032-01-01": 2034.41115825484, - "2031-01-01": 1995.20850916068, - "2030-01-01": 1956.52168439671, - "2029-01-01": 1918.35068396292, - "2028-01-01": 1880.69550785932, - "2027-01-01": 1842.52450742553, - "2026-01-01": 1798.21519746253, - "2025-01-01": 1771.14043807826, - "2024-01-01": 1732.70292840721, - "2023-01-01": 1639, - "2015-01-01": 1639 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2261.69424740999, - "2034-01-01": 2217.89859021654, - "2033-01-01": 2174.64362014893, - "2032-01-01": 2132.47002433302, - "2031-01-01": 2091.37780276879, - "2030-01-01": 2050.82626833041, - "2029-01-01": 2010.81542101787, - "2028-01-01": 1971.34526083118, - "2027-01-01": 1931.33441351865, - "2026-01-01": 1884.88938940855, - "2025-01-01": 1856.50962331816, - "2024-01-01": 1816.2194209906, - "2023-01-01": 1718, - "2015-01-01": 1718 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2359.11297517969, - "2034-01-01": 2313.4308927055, - "2033-01-01": 2268.31278655814, - "2032-01-01": 2224.32263306448, - "2031-01-01": 2181.46043222449, - "2030-01-01": 2139.16220771135, - "2029-01-01": 2097.42795952505, - "2028-01-01": 2056.25768766559, - "2027-01-01": 2014.52343947929, - "2026-01-01": 1966.07787300357, - "2025-01-01": 1936.47569556818, - "2024-01-01": 1894.45005961301, - "2023-01-01": 1792, - "2015-01-01": 1792 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2452.58229506683, - "2034-01-01": 2405.09026401247, - "2033-01-01": 2358.18455432914, - "2032-01-01": 2312.4514873879, - "2031-01-01": 2267.89106318874, - "2030-01-01": 2223.91696036063, - "2029-01-01": 2180.52917890355, - "2028-01-01": 2137.72771881752, - "2027-01-01": 2094.33993736044, - "2026-01-01": 2043.97493158797, - "2025-01-01": 2013.19990002429, - "2024-01-01": 1969.50918585884, - "2023-01-01": 1863, - "2015-01-01": 1863 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2992.33470568272, - "2034-01-01": 2934.3908588837, - "2033-01-01": 2877.162368218, - "2032-01-01": 2821.36458981895, - "2031-01-01": 2766.99752368653, - "2030-01-01": 2713.34581368744, - "2029-01-01": 2660.40945982167, - "2028-01-01": 2608.18846208922, - "2027-01-01": 2555.25210822345, - "2026-01-01": 2493.80301637115, - "2025-01-01": 2456.25516519335, - "2024-01-01": 2402.94921065869, - "2023-01-01": 2273, - "2015-01-01": 2273 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 634.538199797216, - "2034-01-01": 622.250943238867, - "2033-01-01": 610.115381205929, - "2032-01-01": 598.283208223815, - "2031-01-01": 586.754424292525, - "2030-01-01": 575.377334886646, - "2029-01-01": 564.151940006179, - "2028-01-01": 553.078239651123, - "2027-01-01": 541.852844770656, - "2026-01-01": 528.82228503779, - "2025-01-01": 520.860092223138, - "2024-01-01": 509.556321837875, - "2023-01-01": 482, - "2015-01-01": 482 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 908.363812987716, - "2034-01-01": 890.774171856469, - "2033-01-01": 873.401686788571, - "2032-01-01": 856.463513847371, - "2031-01-01": 839.959653032868, - "2030-01-01": 823.672948281713, - "2029-01-01": 807.603399593907, - "2028-01-01": 791.751006969451, - "2027-01-01": 775.681458281645, - "2026-01-01": 757.02775243999, - "2025-01-01": 745.629592601587, - "2024-01-01": 729.447846614385, - "2023-01-01": 690, - "2015-01-01": 690 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1046.59308887715, - "2034-01-01": 1026.32676322593, - "2033-01-01": 1006.31063912596, - "2032-01-01": 986.794918128492, - "2031-01-01": 967.779600233521, - "2030-01-01": 949.0144838898, - "2029-01-01": 930.499569097328, - "2028-01-01": 912.234855856106, - "2027-01-01": 893.719941063635, - "2026-01-01": 872.227627811293, - "2025-01-01": 859.094965388786, - "2024-01-01": 840.450779794835, - "2023-01-01": 795, - "2015-01-01": 795 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1163.75885605962, - "2034-01-01": 1141.22372162481, - "2033-01-01": 1118.96679872623, - "2032-01-01": 1097.26629890011, - "2031-01-01": 1076.12222214646, - "2030-01-01": 1055.25635692904, - "2029-01-01": 1034.66870324785, - "2028-01-01": 1014.35926110289, - "2027-01-01": 993.771607421702, - "2026-01-01": 969.873236459349, - "2025-01-01": 955.270376608411, - "2024-01-01": 934.538980300168, - "2023-01-01": 884, - "2015-01-01": 884 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1267.75993030025, - "2034-01-01": 1243.21090941707, - "2033-01-01": 1218.96496286579, - "2032-01-01": 1195.32516497829, - "2031-01-01": 1172.29151575457, - "2030-01-01": 1149.56094086274, - "2029-01-01": 1127.1334403028, - "2028-01-01": 1105.00901407475, - "2027-01-01": 1082.58151351482, - "2026-01-01": 1056.54742840538, - "2025-01-01": 1040.6395618483, - "2024-01-01": 1018.05547288355, - "2023-01-01": 963, - "2015-01-01": 963 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1359.9127808932, - "2034-01-01": 1333.57930366338, - "2033-01-01": 1307.57093109072, - "2032-01-01": 1282.21276783237, - "2031-01-01": 1257.50481388834, - "2030-01-01": 1233.12196460146, - "2029-01-01": 1209.06421997175, - "2028-01-01": 1185.33157999919, - "2027-01-01": 1161.27383536948, - "2026-01-01": 1133.34734531958, - "2025-01-01": 1116.28314370643, - "2024-01-01": 1092.05742833719, - "2023-01-01": 1033, - "2015-01-01": 1033 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1444.16681572105, - "2034-01-01": 1416.20183554572, - "2033-01-01": 1388.58210203922, - "2032-01-01": 1361.65286187038, - "2031-01-01": 1335.41411503921, - "2030-01-01": 1309.52061487687, - "2029-01-01": 1283.97236138336, - "2028-01-01": 1258.76935455868, - "2027-01-01": 1233.22110106517, - "2026-01-01": 1203.56441221256, - "2025-01-01": 1185.44298997673, - "2024-01-01": 1159.71635903765, - "2023-01-01": 1097, - "2015-01-01": 1097 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1521.83850407797, - "2034-01-01": 1492.36948212475, - "2033-01-01": 1463.26427525737, - "2032-01-01": 1434.88669856168, - "2031-01-01": 1407.23675203767, - "2030-01-01": 1379.95062059951, - "2029-01-01": 1353.02830424718, - "2028-01-01": 1326.4698029807, - "2027-01-01": 1299.54748662838, - "2026-01-01": 1268.29577075453, - "2025-01-01": 1249.19972325715, - "2024-01-01": 1222.08943577714, - "2023-01-01": 1156, - "2015-01-01": 1156 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1594.24431525815, - "2034-01-01": 1563.37322046114, - "2033-01-01": 1532.88325029125, - "2032-01-01": 1503.1555293756, - "2031-01-01": 1474.19005771421, - "2030-01-01": 1445.60571067993, - "2029-01-01": 1417.40248827279, - "2028-01-01": 1389.58039049276, - "2027-01-01": 1361.37716808561, - "2026-01-01": 1328.63856261569, - "2025-01-01": 1308.63396614568, - "2024-01-01": 1280.23382934786, - "2023-01-01": 1211, - "2015-01-01": 1211 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1690.34657373366, - "2034-01-01": 1657.61454588943, - "2033-01-01": 1625.28661715438, - "2032-01-01": 1593.76688663772, - "2031-01-01": 1563.05535433942, - "2030-01-01": 1532.74792115032, - "2029-01-01": 1502.8445870704, - "2028-01-01": 1473.34535209967, - "2027-01-01": 1443.44201801976, - "2026-01-01": 1408.7299045405, - "2025-01-01": 1387.51941579774, - "2024-01-01": 1357.40729717807, - "2023-01-01": 1284, - "2015-01-01": 1284 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1814.09468738706, - "2034-01-01": 1778.96638959161, - "2033-01-01": 1744.271774485, - "2032-01-01": 1710.44452475605, - "2031-01-01": 1677.48464040477, - "2030-01-01": 1644.95843874232, - "2029-01-01": 1612.8659197687, - "2028-01-01": 1581.20708348392, - "2027-01-01": 1549.1145645103, - "2026-01-01": 1511.86122153957, - "2025-01-01": 1489.09794000723, - "2024-01-01": 1456.78135164438, - "2023-01-01": 1378, - "2015-01-01": 1378 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1927.31104668698, - "2034-01-01": 1889.99041680851, - "2033-01-01": 1853.13053544705, - "2032-01-01": 1817.19215111964, - "2031-01-01": 1782.17526382626, - "2030-01-01": 1747.6191250499, - "2029-01-01": 1713.52373479055, - "2028-01-01": 1679.88909304823, - "2027-01-01": 1645.79370278888, - "2026-01-01": 1606.21540517702, - "2025-01-01": 1582.03148343293, - "2024-01-01": 1547.69803977313, - "2023-01-01": 1464, - "2015-01-01": 1464 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2031.3121209276, - "2034-01-01": 1991.97760460077, - "2033-01-01": 1953.12869958662, - "2032-01-01": 1915.25101719782, - "2031-01-01": 1878.34455743437, - "2030-01-01": 1841.9237089836, - "2029-01-01": 1805.98847184551, - "2028-01-01": 1770.53884602009, - "2027-01-01": 1734.603608882, - "2026-01-01": 1692.88959712305, - "2025-01-01": 1667.40066867283, - "2024-01-01": 1631.21453235652, - "2023-01-01": 1543, - "2015-01-01": 1543 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2130.04731799148, - "2034-01-01": 2088.80088415039, - "2033-01-01": 2048.0636655419, - "2032-01-01": 2008.34487739862, - "2031-01-01": 1969.64451972055, - "2030-01-01": 1931.45337727509, - "2029-01-01": 1893.77145006223, - "2028-01-01": 1856.59873808199, - "2027-01-01": 1818.91681086913, - "2026-01-01": 1775.17522238827, - "2025-01-01": 1748.44736352082, - "2024-01-01": 1710.50234177112, - "2023-01-01": 1618, - "2015-01-01": 1618 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2231.41545364374, - "2034-01-01": 2188.20611782133, - "2033-01-01": 2145.53023058932, - "2032-01-01": 2103.92124053811, - "2031-01-01": 2063.3791476677, - "2030-01-01": 2023.37050338769, - "2029-01-01": 1983.89530769808, - "2028-01-01": 1944.95356059887, - "2027-01-01": 1905.47836490926, - "2026-01-01": 1859.65513099389, - "2025-01-01": 1831.65530356477, - "2024-01-01": 1791.90449277012, - "2023-01-01": 1695, - "2015-01-01": 1695 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2339.36593576691, - "2034-01-01": 2294.06623679557, - "2033-01-01": 2249.32579336709, - "2032-01-01": 2205.70386102432, - "2031-01-01": 2163.20043976725, - "2030-01-01": 2121.25627405305, - "2029-01-01": 2079.8713638817, - "2028-01-01": 2039.04570925321, - "2027-01-01": 1997.66079908186, - "2026-01-01": 1949.62074795052, - "2025-01-01": 1920.26635659858, - "2024-01-01": 1878.59249773009, - "2023-01-01": 1777, - "2015-01-01": 1777 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2439.41760212498, - "2034-01-01": 2392.18049340585, - "2033-01-01": 2345.52655886844, - "2032-01-01": 2300.03897269446, - "2031-01-01": 2255.71773488392, - "2030-01-01": 2211.97967125509, - "2029-01-01": 2168.82478180799, - "2028-01-01": 2126.2530665426, - "2027-01-01": 2083.09817709549, - "2026-01-01": 2033.00351488594, - "2025-01-01": 2002.39367404455, - "2024-01-01": 1958.93747793689, - "2023-01-01": 1853, - "2015-01-01": 1853 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2535.51986060049, - "2034-01-01": 2486.42181883414, - "2033-01-01": 2437.92992573158, - "2032-01-01": 2390.65032995657, - "2031-01-01": 2344.58303150913, - "2030-01-01": 2299.12188172548, - "2029-01-01": 2254.2668806056, - "2028-01-01": 2210.01802814951, - "2027-01-01": 2165.16302702964, - "2026-01-01": 2113.09485681075, - "2025-01-01": 2081.27912369661, - "2024-01-01": 2036.11094576711, - "2023-01-01": 1926, - "2015-01-01": 1926 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3093.70284133497, - "2034-01-01": 3033.79609255464, - "2033-01-01": 2974.62893326542, - "2032-01-01": 2916.94095295844, - "2031-01-01": 2860.73215163368, - "2030-01-01": 2805.26293980004, - "2029-01-01": 2750.53331745751, - "2028-01-01": 2696.5432846061, - "2027-01-01": 2641.81366226357, - "2026-01-01": 2578.28292497678, - "2025-01-01": 2539.46310523729, - "2024-01-01": 2484.35136165769, - "2023-01-01": 2350, - "2015-01-01": 2350 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 560.815919322851, - "2034-01-01": 549.95622784182, - "2033-01-01": 539.230606625987, - "2032-01-01": 528.773125940551, - "2031-01-01": 518.58378578551, - "2030-01-01": 508.528515895666, - "2029-01-01": 498.607316271021, - "2028-01-01": 488.820186911574, - "2027-01-01": 478.898987286929, - "2026-01-01": 467.382351506428, - "2025-01-01": 460.345226736632, - "2024-01-01": 450.354757474968, - "2023-01-01": 426, - "2015-01-01": 426 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 795.147453687798, - "2034-01-01": 779.750144639576, - "2033-01-01": 764.542925826517, - "2032-01-01": 749.715887483785, - "2031-01-01": 735.26902961138, - "2030-01-01": 721.012261974138, - "2029-01-01": 706.945584572058, - "2028-01-01": 693.068997405142, - "2027-01-01": 679.002320003063, - "2026-01-01": 662.673568802542, - "2025-01-01": 652.696049175882, - "2024-01-01": 638.531158485635, - "2023-01-01": 604, - "2015-01-01": 604 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 912.313220870271, - "2034-01-01": 894.647103038454, - "2033-01-01": 877.199085426782, - "2032-01-01": 860.187268255403, - "2031-01-01": 843.611651524315, - "2030-01-01": 827.254135013373, - "2029-01-01": 811.114718722577, - "2028-01-01": 795.193402651926, - "2027-01-01": 779.053986361131, - "2026-01-01": 760.319177450598, - "2025-01-01": 748.871460395507, - "2024-01-01": 732.619358990969, - "2023-01-01": 693, - "2015-01-01": 693 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1012.36488722834, - "2034-01-01": 992.761359648731, - "2033-01-01": 973.399850928132, - "2032-01-01": 954.522379925548, - "2031-01-01": 936.128946640979, - "2030-01-01": 917.977532215417, - "2029-01-01": 900.068136648862, - "2028-01-01": 882.400759941315, - "2027-01-01": 864.491364374761, - "2026-01-01": 843.701944386017, - "2025-01-01": 830.998777841479, - "2024-01-01": 812.964339197771, - "2023-01-01": 769, - "2015-01-01": 769 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1099.25186064455, - "2034-01-01": 1077.96584565239, - "2033-01-01": 1056.94262096878, - "2032-01-01": 1036.44497690225, - "2031-01-01": 1016.47291345282, - "2030-01-01": 996.763640311928, - "2029-01-01": 977.317157479584, - "2028-01-01": 958.133464955784, - "2027-01-01": 938.68698212344, - "2026-01-01": 916.113294619408, - "2025-01-01": 902.319869307718, - "2024-01-01": 882.737611482625, - "2023-01-01": 835, - "2015-01-01": 835 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1176.92354900148, - "2034-01-01": 1154.13349223143, - "2033-01-01": 1131.62479418693, - "2032-01-01": 1109.67881359355, - "2031-01-01": 1088.29555045128, - "2030-01-01": 1067.19364603457, - "2029-01-01": 1046.37310034341, - "2028-01-01": 1025.83391337781, - "2027-01-01": 1005.01336768665, - "2026-01-01": 980.844653161378, - "2025-01-01": 966.076602588144, - "2024-01-01": 945.110688222116, - "2023-01-01": 894, - "2015-01-01": 894 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1248.01289088747, - "2034-01-01": 1223.84625350715, - "2033-01-01": 1199.97796967473, - "2032-01-01": 1176.70639293813, - "2031-01-01": 1154.03152329733, - "2030-01-01": 1131.65500720444, - "2029-01-01": 1109.57684465946, - "2028-01-01": 1087.79703566238, - "2027-01-01": 1065.71887311739, - "2026-01-01": 1040.09030335233, - "2025-01-01": 1024.4302228787, - "2024-01-01": 1002.19791100063, - "2023-01-01": 948, - "2015-01-01": 948 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1313.83635559673, - "2034-01-01": 1288.39510654023, - "2033-01-01": 1263.26794697825, - "2032-01-01": 1238.76896640533, - "2031-01-01": 1214.89816482145, - "2030-01-01": 1191.3414527321, - "2029-01-01": 1168.09883013727, - "2028-01-01": 1145.17029703697, - "2027-01-01": 1121.92767444215, - "2026-01-01": 1094.94738686248, - "2025-01-01": 1078.46135277737, - "2024-01-01": 1055.05645061037, - "2023-01-01": 998, - "2015-01-01": 998 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1374.39394312924, - "2034-01-01": 1347.78005133066, - "2033-01-01": 1321.49472609749, - "2032-01-01": 1295.86653399515, - "2031-01-01": 1270.89547502364, - "2030-01-01": 1246.25298261755, - "2029-01-01": 1221.93905677687, - "2028-01-01": 1197.9536975016, - "2027-01-01": 1173.63977166092, - "2026-01-01": 1145.41590369181, - "2025-01-01": 1128.16999228414, - "2024-01-01": 1103.68630705133, - "2023-01-01": 1044, - "2015-01-01": 1044 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1454.69857007453, - "2034-01-01": 1426.52965203101, - "2033-01-01": 1398.70849840778, - "2032-01-01": 1371.58287362514, - "2031-01-01": 1345.15277768307, - "2030-01-01": 1319.07044616129, - "2029-01-01": 1293.33587905981, - "2028-01-01": 1267.94907637861, - "2027-01-01": 1242.21450927713, - "2026-01-01": 1212.34154557419, - "2025-01-01": 1194.08797076051, - "2024-01-01": 1168.17372537521, - "2023-01-01": 1105, - "2015-01-01": 1105 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1558.69964431515, - "2034-01-01": 1528.51683982327, - "2033-01-01": 1498.70666254734, - "2032-01-01": 1469.64173970331, - "2031-01-01": 1441.32207129118, - "2030-01-01": 1413.375030095, - "2029-01-01": 1385.80061611476, - "2028-01-01": 1358.59882935048, - "2027-01-01": 1331.02441537024, - "2026-01-01": 1299.01573752021, - "2025-01-01": 1279.45715600041, - "2024-01-01": 1251.6902179586, - "2023-01-01": 1184, - "2015-01-01": 1184 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1653.48543349648, - "2034-01-01": 1621.46718819091, - "2033-01-01": 1589.84422986441, - "2032-01-01": 1559.01184549608, - "2031-01-01": 1528.97003508592, - "2030-01-01": 1499.32351165483, - "2029-01-01": 1470.07227520282, - "2028-01-01": 1441.2163257299, - "2027-01-01": 1411.96508927789, - "2026-01-01": 1378.00993777482, - "2025-01-01": 1357.26198305448, - "2024-01-01": 1327.80651499662, - "2023-01-01": 1256, - "2015-01-01": 1256 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1740.3724069127, - "2034-01-01": 1706.67167419457, - "2033-01-01": 1673.38699990506, - "2032-01-01": 1640.93444247279, - "2031-01-01": 1609.31400189776, - "2030-01-01": 1578.10961975134, - "2029-01-01": 1547.32129603354, - "2028-01-01": 1516.94903074437, - "2027-01-01": 1486.16070702657, - "2026-01-01": 1450.42128800821, - "2025-01-01": 1428.58307452072, - "2024-01-01": 1397.57978728147, - "2023-01-01": 1322, - "2015-01-01": 1322 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1821.99350315217, - "2034-01-01": 1786.71225195558, - "2033-01-01": 1751.86657176142, - "2032-01-01": 1717.89203357212, - "2031-01-01": 1684.78863738766, - "2030-01-01": 1652.12081220564, - "2029-01-01": 1619.88855802604, - "2028-01-01": 1588.09187484887, - "2027-01-01": 1555.85962066927, - "2026-01-01": 1518.44407156079, - "2025-01-01": 1495.58167559507, - "2024-01-01": 1463.12437639755, - "2023-01-01": 1384, - "2015-01-01": 1384 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1906.24753798002, - "2034-01-01": 1869.33478383792, - "2033-01-01": 1832.87774270993, - "2032-01-01": 1797.33212761013, - "2031-01-01": 1762.69793853854, - "2030-01-01": 1728.51946248104, - "2029-01-01": 1694.79669943765, - "2028-01-01": 1661.52964940835, - "2027-01-01": 1627.80688636496, - "2026-01-01": 1588.66113845378, - "2025-01-01": 1564.74152186536, - "2024-01-01": 1530.78330709801, - "2023-01-01": 1448, - "2015-01-01": 1448 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1997.08391927879, - "2034-01-01": 1958.41220102357, - "2033-01-01": 1920.21791138879, - "2032-01-01": 1882.97847899487, - "2031-01-01": 1846.69390384183, - "2030-01-01": 1810.88675730922, - "2029-01-01": 1775.55703939704, - "2028-01-01": 1740.7047501053, - "2027-01-01": 1705.37503219312, - "2026-01-01": 1664.36391369777, - "2025-01-01": 1639.30448112552, - "2024-01-01": 1603.72809175945, - "2023-01-01": 1517, - "2015-01-01": 1517 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2081.33795410664, - "2034-01-01": 2041.03473290591, - "2033-01-01": 2001.22908233729, - "2032-01-01": 1962.41857303289, - "2031-01-01": 1924.6032049927, - "2030-01-01": 1887.28540758462, - "2029-01-01": 1850.46518080865, - "2028-01-01": 1814.14252466478, - "2027-01-01": 1777.32229788881, - "2026-01-01": 1734.58098059076, - "2025-01-01": 1708.46432739581, - "2024-01-01": 1671.38702245992, - "2023-01-01": 1581, - "2015-01-01": 1581 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2160.32611175774, - "2034-01-01": 2118.4933565456, - "2033-01-01": 2077.17705510151, - "2032-01-01": 2036.89366119353, - "2031-01-01": 1997.64317482165, - "2030-01-01": 1958.90914221781, - "2029-01-01": 1920.69156338203, - "2028-01-01": 1882.9904383143, - "2027-01-01": 1844.77285947852, - "2026-01-01": 1800.40948080293, - "2025-01-01": 1773.30168327421, - "2024-01-01": 1734.8172699916, - "2023-01-01": 1641, - "2015-01-01": 1641 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2623.7233033109, - "2034-01-01": 2572.91728189847, - "2033-01-01": 2522.73849531829, - "2032-01-01": 2473.81417840262, - "2031-01-01": 2426.14433115146, - "2030-01-01": 2379.10171873254, - "2029-01-01": 2332.68634114588, - "2028-01-01": 2286.89819839147, - "2027-01-01": 2240.48282080481, - "2026-01-01": 2186.60334871435, - "2025-01-01": 2153.68083776082, - "2024-01-01": 2106.94138884416, - "2023-01-01": 1993, - "2015-01-01": 1993 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 629.272322620476, - "2034-01-01": 617.087034996221, - "2033-01-01": 605.052183021648, - "2032-01-01": 593.318202346439, - "2031-01-01": 581.885092970595, - "2030-01-01": 570.602419244433, - "2029-01-01": 559.470181167953, - "2028-01-01": 548.488378741156, - "2027-01-01": 537.356140664676, - "2026-01-01": 524.433718356978, - "2025-01-01": 516.537601831245, - "2024-01-01": 505.327638669095, - "2023-01-01": 478, - "2015-01-01": 478 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 891.24971216331, - "2034-01-01": 873.991470067869, - "2033-01-01": 856.946292689656, - "2032-01-01": 840.327244745898, - "2031-01-01": 824.134326236596, - "2030-01-01": 808.154472444522, - "2029-01-01": 792.387683369674, - "2028-01-01": 776.833959012055, - "2027-01-01": 761.067169937208, - "2026-01-01": 742.764910727352, - "2025-01-01": 731.581498827934, - "2024-01-01": 715.704626315853, - "2023-01-01": 677, - "2015-01-01": 677 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1022.89664158182, - "2034-01-01": 1003.08917613402, - "2033-01-01": 983.526247296695, - "2032-01-01": 964.4523916803, - "2031-01-01": 945.867609284838, - "2030-01-01": 927.527363499842, - "2029-01-01": 909.431654325313, - "2028-01-01": 891.580481761251, - "2027-01-01": 873.484772586722, - "2026-01-01": 852.479077747641, - "2025-01-01": 839.643758625266, - "2024-01-01": 821.421705535329, - "2023-01-01": 777, - "2015-01-01": 777 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1133.48006229337, - "2034-01-01": 1111.53124922959, - "2033-01-01": 1089.85340916661, - "2032-01-01": 1068.7175151052, - "2031-01-01": 1048.12356704536, - "2030-01-01": 1027.80059198631, - "2029-01-01": 1007.74858992805, - "2028-01-01": 987.967560870575, - "2027-01-01": 967.915558812314, - "2026-01-01": 944.638978044683, - "2025-01-01": 930.416056855024, - "2024-01-01": 910.224052079689, - "2023-01-01": 861, - "2015-01-01": 861 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1230.89879006306, - "2034-01-01": 1207.06355171855, - "2033-01-01": 1183.52257557582, - "2032-01-01": 1160.57012383665, - "2031-01-01": 1138.20619650106, - "2030-01-01": 1116.13653136725, - "2029-01-01": 1094.36112843522, - "2028-01-01": 1072.87998770498, - "2027-01-01": 1051.10458477295, - "2026-01-01": 1025.8274616397, - "2025-01-01": 1010.38212910505, - "2024-01-01": 988.454690702101, - "2023-01-01": 935, - "2015-01-01": 935 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1317.78576347928, - "2034-01-01": 1292.26803772221, - "2033-01-01": 1267.06534561646, - "2032-01-01": 1242.49272081336, - "2031-01-01": 1218.5501633129, - "2030-01-01": 1194.92263946376, - "2029-01-01": 1171.61014926594, - "2028-01-01": 1148.61269271945, - "2027-01-01": 1125.30020252163, - "2026-01-01": 1098.23881187309, - "2025-01-01": 1081.70322057129, - "2024-01-01": 1058.22796298696, - "2023-01-01": 1001, - "2015-01-01": 1001 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1396.77392113039, - "2034-01-01": 1369.7266613619, - "2033-01-01": 1343.01331838069, - "2032-01-01": 1316.967808974, - "2031-01-01": 1291.59013314184, - "2030-01-01": 1266.54637409695, - "2029-01-01": 1241.83653183933, - "2028-01-01": 1217.46060636897, - "2027-01-01": 1192.75076411134, - "2026-01-01": 1164.06731208526, - "2025-01-01": 1146.54057644969, - "2024-01-01": 1121.65821051864, - "2023-01-01": 1061, - "2015-01-01": 1061 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1469.17973231057, - "2034-01-01": 1440.73039969829, - "2033-01-01": 1412.63229341456, - "2032-01-01": 1385.23663978792, - "2031-01-01": 1358.54343881838, - "2030-01-01": 1332.20146417738, - "2029-01-01": 1306.21071586493, - "2028-01-01": 1280.57119388102, - "2027-01-01": 1254.58044556857, - "2026-01-01": 1224.41010394642, - "2025-01-01": 1205.97481933822, - "2024-01-01": 1179.80260408935, - "2023-01-01": 1116, - "2015-01-01": 1116 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1537.63613560819, - "2034-01-01": 1507.86120685269, - "2033-01-01": 1478.45386981022, - "2032-01-01": 1449.78171619381, - "2031-01-01": 1421.84474600346, - "2030-01-01": 1394.27536752615, - "2029-01-01": 1367.07358076186, - "2028-01-01": 1340.23938571061, - "2027-01-01": 1313.03759894632, - "2026-01-01": 1281.46147079697, - "2025-01-01": 1262.16719443283, - "2024-01-01": 1234.77548528348, - "2023-01-01": 1168, - "2015-01-01": 1168 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1627.15604761278, - "2034-01-01": 1595.64764697767, - "2033-01-01": 1564.52823894301, - "2032-01-01": 1534.1868161092, - "2031-01-01": 1504.62337847627, - "2030-01-01": 1475.44893344376, - "2029-01-01": 1446.66348101169, - "2028-01-01": 1418.26702118006, - "2027-01-01": 1389.48156874799, - "2026-01-01": 1356.06710437076, - "2025-01-01": 1335.64953109502, - "2024-01-01": 1306.66309915272, - "2023-01-01": 1236, - "2015-01-01": 1236 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1743.00534550107, - "2034-01-01": 1709.25362831589, - "2033-01-01": 1675.9185989972, - "2032-01-01": 1643.41694541148, - "2031-01-01": 1611.74866755872, - "2030-01-01": 1580.49707757245, - "2029-01-01": 1549.66217545266, - "2028-01-01": 1519.24396119935, - "2027-01-01": 1488.40905907956, - "2026-01-01": 1452.61557134862, - "2025-01-01": 1430.74431971667, - "2024-01-01": 1399.69412886586, - "2023-01-01": 1324, - "2015-01-01": 1324 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1848.32288903587, - "2034-01-01": 1812.53179316882, - "2033-01-01": 1777.18256268283, - "2032-01-01": 1742.717062959, - "2031-01-01": 1709.13529399731, - "2030-01-01": 1675.9953904167, - "2029-01-01": 1643.29735221717, - "2028-01-01": 1611.04117939871, - "2027-01-01": 1578.34314119917, - "2026-01-01": 1540.38690496485, - "2025-01-01": 1517.19412755453, - "2024-01-01": 1484.26779224144, - "2023-01-01": 1404, - "2015-01-01": 1404 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1945.74161680557, - "2034-01-01": 1908.06409565777, - "2033-01-01": 1870.85172909204, - "2032-01-01": 1834.56967169045, - "2031-01-01": 1799.21792345301, - "2030-01-01": 1764.33132979764, - "2029-01-01": 1729.90989072434, - "2028-01-01": 1695.95360623311, - "2027-01-01": 1661.53216715981, - "2026-01-01": 1621.57538855986, - "2025-01-01": 1597.16019980456, - "2024-01-01": 1562.49843086386, - "2023-01-01": 1478, - "2015-01-01": 1478 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2036.57799810434, - "2034-01-01": 1997.14151284342, - "2033-01-01": 1958.1918977709, - "2032-01-01": 1920.21602307519, - "2031-01-01": 1883.2138887563, - "2030-01-01": 1846.69862462581, - "2029-01-01": 1810.67023068373, - "2028-01-01": 1775.12870693006, - "2027-01-01": 1739.10031298798, - "2026-01-01": 1697.27816380386, - "2025-01-01": 1671.72315906472, - "2024-01-01": 1635.44321552529, - "2023-01-01": 1547, - "2015-01-01": 1547 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2131.36378728567, - "2034-01-01": 2090.09186121105, - "2033-01-01": 2049.32946508797, - "2032-01-01": 2009.58612886796, - "2031-01-01": 1970.86185255103, - "2030-01-01": 1932.64710618564, - "2029-01-01": 1894.94188977179, - "2028-01-01": 1857.74620330948, - "2027-01-01": 1820.04098689563, - "2026-01-01": 1776.27236405847, - "2025-01-01": 1749.5279861188, - "2024-01-01": 1711.55951256332, - "2023-01-01": 1619, - "2015-01-01": 1619 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2231.41545364374, - "2034-01-01": 2188.20611782133, - "2033-01-01": 2145.53023058932, - "2032-01-01": 2103.92124053811, - "2031-01-01": 2063.3791476677, - "2030-01-01": 2023.37050338769, - "2029-01-01": 1983.89530769808, - "2028-01-01": 1944.95356059887, - "2027-01-01": 1905.47836490926, - "2026-01-01": 1859.65513099389, - "2025-01-01": 1831.65530356477, - "2024-01-01": 1791.90449277012, - "2023-01-01": 1695, - "2015-01-01": 1695 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2324.88477353088, - "2034-01-01": 2279.8654891283, - "2033-01-01": 2235.40199836031, - "2032-01-01": 2192.05009486153, - "2031-01-01": 2149.80977863195, - "2030-01-01": 2108.12525603697, - "2029-01-01": 2066.99652707658, - "2028-01-01": 2026.4235917508, - "2027-01-01": 1985.29486279041, - "2026-01-01": 1937.55218957829, - "2025-01-01": 1908.37950802087, - "2024-01-01": 1866.96361901595, - "2023-01-01": 1766, - "2015-01-01": 1766 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2414.40468553547, - "2034-01-01": 2367.65192925328, - "2033-01-01": 2321.4763674931, - "2032-01-01": 2276.45519477692, - "2031-01-01": 2232.58841110475, - "2030-01-01": 2189.29882195458, - "2029-01-01": 2146.58642732641, - "2028-01-01": 2104.45122722025, - "2027-01-01": 2061.73883259208, - "2026-01-01": 2012.15782315209, - "2025-01-01": 1981.86184468306, - "2024-01-01": 1938.85123288519, - "2023-01-01": 1834, - "2015-01-01": 1834 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2929.14417956184, - "2034-01-01": 2872.42395997195, - "2033-01-01": 2816.40399000662, - "2032-01-01": 2761.78451929043, - "2031-01-01": 2708.56554782338, - "2030-01-01": 2656.04682598089, - "2029-01-01": 2604.22835376296, - "2028-01-01": 2553.1101311696, - "2027-01-01": 2501.29165895168, - "2026-01-01": 2441.14021620142, - "2025-01-01": 2404.38528049063, - "2024-01-01": 2352.20501263334, - "2023-01-01": 2225, - "2015-01-01": 2225 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 672.715809328584, - "2034-01-01": 659.689277998052, - "2033-01-01": 646.823568041971, - "2032-01-01": 634.279500834792, - "2031-01-01": 622.057076376515, - "2030-01-01": 609.995473292689, - "2029-01-01": 598.094691583314, - "2028-01-01": 586.35473124839, - "2027-01-01": 574.453949539015, - "2026-01-01": 560.639393473674, - "2025-01-01": 552.198147564364, - "2024-01-01": 540.214274811523, - "2023-01-01": 511, - "2015-01-01": 511 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 951.807299695824, - "2034-01-01": 933.3764148583, - "2033-01-01": 915.173071808894, - "2032-01-01": 897.424812335723, - "2031-01-01": 880.131636438787, - "2030-01-01": 863.066002329969, - "2029-01-01": 846.227910009268, - "2028-01-01": 829.617359476685, - "2027-01-01": 812.779267155985, - "2026-01-01": 793.233427556685, - "2025-01-01": 781.290138334707, - "2024-01-01": 764.334482756812, - "2023-01-01": 723, - "2015-01-01": 723 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1092.66951417363, - "2034-01-01": 1071.51096034909, - "2033-01-01": 1050.61362323843, - "2032-01-01": 1030.23871955553, - "2031-01-01": 1010.38624930041, - "2030-01-01": 990.794995759162, - "2029-01-01": 971.464958931802, - "2028-01-01": 952.396138818325, - "2027-01-01": 933.066101990964, - "2026-01-01": 910.627586268393, - "2025-01-01": 896.916756317852, - "2024-01-01": 877.451757521651, - "2023-01-01": 830, - "2015-01-01": 830 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1211.15175065029, - "2034-01-01": 1187.69889580863, - "2033-01-01": 1164.53558238476, - "2032-01-01": 1141.95135179649, - "2031-01-01": 1119.94620404382, - "2030-01-01": 1098.23059770895, - "2029-01-01": 1076.80453279188, - "2028-01-01": 1055.6680092926, - "2027-01-01": 1034.24194437553, - "2026-01-01": 1009.37033658665, - "2025-01-01": 994.17279013545, - "2024-01-01": 972.59712881918, - "2023-01-01": 920, - "2015-01-01": 920 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1315.15282489091, - "2034-01-01": 1289.68608360089, - "2033-01-01": 1264.53374652432, - "2032-01-01": 1240.01021787467, - "2031-01-01": 1216.11549765193, - "2030-01-01": 1192.53518164265, - "2029-01-01": 1169.26926984683, - "2028-01-01": 1146.31776226447, - "2027-01-01": 1123.05185046864, - "2026-01-01": 1096.04452853268, - "2025-01-01": 1079.54197537534, - "2024-01-01": 1056.11362140257, - "2023-01-01": 999, - "2015-01-01": 999 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1407.30567548387, - "2034-01-01": 1380.0544778472, - "2033-01-01": 1353.13971474925, - "2032-01-01": 1326.89782072875, - "2031-01-01": 1301.3287957857, - "2030-01-01": 1276.09620538138, - "2029-01-01": 1251.20004951578, - "2028-01-01": 1226.6403281889, - "2027-01-01": 1201.7441723233, - "2026-01-01": 1172.84444544688, - "2025-01-01": 1155.18555723347, - "2024-01-01": 1130.1155768562, - "2023-01-01": 1069, - "2015-01-01": 1069 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1491.55971031171, - "2034-01-01": 1462.67700972954, - "2033-01-01": 1434.15088569775, - "2032-01-01": 1406.33791476677, - "2031-01-01": 1379.23809693658, - "2030-01-01": 1352.49485565678, - "2029-01-01": 1326.10819092739, - "2028-01-01": 1300.07810274839, - "2027-01-01": 1273.69143801899, - "2026-01-01": 1243.06151233987, - "2025-01-01": 1224.34540350377, - "2024-01-01": 1197.77450755666, - "2023-01-01": 1133, - "2015-01-01": 1133 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1569.23139866863, - "2034-01-01": 1538.84465630857, - "2033-01-01": 1508.83305891591, - "2032-01-01": 1479.57175145807, - "2031-01-01": 1451.06073393504, - "2030-01-01": 1422.92486137942, - "2029-01-01": 1395.16413379121, - "2028-01-01": 1367.77855117041, - "2027-01-01": 1340.0178235822, - "2026-01-01": 1307.79287088184, - "2025-01-01": 1288.10213678419, - "2024-01-01": 1260.14758429615, - "2023-01-01": 1192, - "2015-01-01": 1192 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1641.63720984881, - "2034-01-01": 1609.84839464495, - "2033-01-01": 1578.45203394978, - "2032-01-01": 1547.84058227199, - "2031-01-01": 1518.01403961157, - "2030-01-01": 1488.57995145985, - "2029-01-01": 1459.53831781682, - "2028-01-01": 1430.88913868247, - "2027-01-01": 1401.84750503944, - "2026-01-01": 1368.135662743, - "2025-01-01": 1347.53637967272, - "2024-01-01": 1318.29197786687, - "2023-01-01": 1247, - "2015-01-01": 1247 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1737.73946832433, - "2034-01-01": 1704.08972007325, - "2033-01-01": 1670.85540081292, - "2032-01-01": 1638.4519395341, - "2031-01-01": 1606.87933623679, - "2030-01-01": 1575.72216193023, - "2029-01-01": 1544.98041661443, - "2028-01-01": 1514.65410028938, - "2027-01-01": 1483.91235497358, - "2026-01-01": 1448.22700466781, - "2025-01-01": 1426.42182932478, - "2024-01-01": 1395.46544569708, - "2023-01-01": 1320, - "2015-01-01": 1320 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1860.17111268354, - "2034-01-01": 1824.15058671477, - "2033-01-01": 1788.57475859746, - "2032-01-01": 1753.88832618309, - "2031-01-01": 1720.09128947165, - "2030-01-01": 1686.73895061168, - "2029-01-01": 1653.83130960318, - "2028-01-01": 1621.36836644614, - "2027-01-01": 1588.46072543763, - "2026-01-01": 1550.26117999667, - "2025-01-01": 1526.91973093629, - "2024-01-01": 1493.7823293712, - "2023-01-01": 1413, - "2015-01-01": 1413 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1974.70394127764, - "2034-01-01": 1936.46559099232, - "2033-01-01": 1898.69931910559, - "2032-01-01": 1861.87720401602, - "2031-01-01": 1825.99924572363, - "2030-01-01": 1790.59336582981, - "2029-01-01": 1755.65956433458, - "2028-01-01": 1721.19784123794, - "2027-01-01": 1686.26403974271, - "2026-01-01": 1645.71250530433, - "2025-01-01": 1620.93389695997, - "2024-01-01": 1585.75618829214, - "2023-01-01": 1500, - "2015-01-01": 1500 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2077.38854622408, - "2034-01-01": 2037.16180172392, - "2033-01-01": 1997.43168369908, - "2032-01-01": 1958.69481862486, - "2031-01-01": 1920.95120650125, - "2030-01-01": 1883.70422085296, - "2029-01-01": 1846.95386167998, - "2028-01-01": 1810.70012898231, - "2027-01-01": 1773.94976980933, - "2026-01-01": 1731.28955558015, - "2025-01-01": 1705.22245960189, - "2024-01-01": 1668.21551008333, - "2023-01-01": 1578, - "2015-01-01": 1578 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2174.80727399378, - "2034-01-01": 2132.69410421288, - "2033-01-01": 2091.10085010829, - "2032-01-01": 2050.54742735631, - "2031-01-01": 2011.03383595695, - "2030-01-01": 1972.0401602339, - "2029-01-01": 1933.56640018715, - "2028-01-01": 1895.61255581671, - "2027-01-01": 1857.13879576997, - "2026-01-01": 1812.47803917516, - "2025-01-01": 1785.18853185192, - "2024-01-01": 1746.44614870574, - "2023-01-01": 1652, - "2015-01-01": 1652 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2274.85894035184, - "2034-01-01": 2230.80836082316, - "2033-01-01": 2187.30161560964, - "2032-01-01": 2144.88253902646, - "2031-01-01": 2103.55113107362, - "2030-01-01": 2062.76355743594, - "2029-01-01": 2022.51981811344, - "2028-01-01": 1982.8199131061, - "2027-01-01": 1942.5761737836, - "2026-01-01": 1895.86080611058, - "2025-01-01": 1867.31584929789, - "2024-01-01": 1826.79112891255, - "2023-01-01": 1728, - "2015-01-01": 1728 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2381.49295318084, - "2034-01-01": 2335.37750273674, - "2033-01-01": 2289.83137884134, - "2032-01-01": 2245.42390804332, - "2031-01-01": 2202.15509034269, - "2030-01-01": 2159.45559919075, - "2029-01-01": 2117.32543458751, - "2028-01-01": 2075.76459653295, - "2027-01-01": 2033.6344319297, - "2026-01-01": 1984.72928139702, - "2025-01-01": 1954.84627973373, - "2024-01-01": 1912.42196308032, - "2023-01-01": 1809, - "2015-01-01": 1809 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2481.5446195389, - "2034-01-01": 2433.49175934702, - "2033-01-01": 2386.03214434269, - "2032-01-01": 2339.75901971347, - "2031-01-01": 2294.67238545936, - "2030-01-01": 2250.1789963928, - "2029-01-01": 2206.27885251379, - "2028-01-01": 2162.97195382234, - "2027-01-01": 2119.07180994333, - "2026-01-01": 2068.11204833244, - "2025-01-01": 2036.9735971797, - "2024-01-01": 1992.76694328712, - "2023-01-01": 1885, - "2015-01-01": 1885 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2576.33040872023, - "2034-01-01": 2526.44210771465, - "2033-01-01": 2477.16971165976, - "2032-01-01": 2429.12912550624, - "2031-01-01": 2382.32034925409, - "2030-01-01": 2336.12747795263, - "2029-01-01": 2290.55051160185, - "2028-01-01": 2245.58945020176, - "2027-01-01": 2200.01248385098, - "2026-01-01": 2147.10624858704, - "2025-01-01": 2114.77842423378, - "2024-01-01": 2068.88324032515, - "2023-01-01": 1957, - "2015-01-01": 1957 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.FL.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3126.6145736896, - "2034-01-01": 3066.07051907118, - "2033-01-01": 3006.27392191718, - "2032-01-01": 2947.97223969204, - "2031-01-01": 2891.16547239574, - "2030-01-01": 2835.10616256387, - "2029-01-01": 2779.79431019642, - "2028-01-01": 2725.2299152934, - "2027-01-01": 2669.91806292595, - "2026-01-01": 2605.71146673185, - "2025-01-01": 2566.47867018662, - "2024-01-01": 2510.78063146256, - "2023-01-01": 2375, - "2015-01-01": 2375 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA", - "description": null, - "label": "GA", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 560.815919322851, - "2034-01-01": 549.95622784182, - "2033-01-01": 539.230606625987, - "2032-01-01": 528.773125940551, - "2031-01-01": 518.58378578551, - "2030-01-01": 508.528515895666, - "2029-01-01": 498.607316271021, - "2028-01-01": 488.820186911574, - "2027-01-01": 478.898987286929, - "2026-01-01": 467.382351506428, - "2025-01-01": 460.345226736632, - "2024-01-01": 450.354757474968, - "2023-01-01": 426, - "2015-01-01": 426 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 795.147453687798, - "2034-01-01": 779.750144639576, - "2033-01-01": 764.542925826517, - "2032-01-01": 749.715887483785, - "2031-01-01": 735.26902961138, - "2030-01-01": 721.012261974138, - "2029-01-01": 706.945584572058, - "2028-01-01": 693.068997405142, - "2027-01-01": 679.002320003063, - "2026-01-01": 662.673568802542, - "2025-01-01": 652.696049175882, - "2024-01-01": 638.531158485635, - "2023-01-01": 604, - "2015-01-01": 604 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 912.313220870271, - "2034-01-01": 894.647103038454, - "2033-01-01": 877.199085426782, - "2032-01-01": 860.187268255403, - "2031-01-01": 843.611651524315, - "2030-01-01": 827.254135013373, - "2029-01-01": 811.114718722577, - "2028-01-01": 795.193402651926, - "2027-01-01": 779.053986361131, - "2026-01-01": 760.319177450598, - "2025-01-01": 748.871460395507, - "2024-01-01": 732.619358990969, - "2023-01-01": 693, - "2015-01-01": 693 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1012.36488722834, - "2034-01-01": 992.761359648731, - "2033-01-01": 973.399850928132, - "2032-01-01": 954.522379925548, - "2031-01-01": 936.128946640979, - "2030-01-01": 917.977532215417, - "2029-01-01": 900.068136648862, - "2028-01-01": 882.400759941315, - "2027-01-01": 864.491364374761, - "2026-01-01": 843.701944386017, - "2025-01-01": 830.998777841479, - "2024-01-01": 812.964339197771, - "2023-01-01": 769, - "2015-01-01": 769 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1099.25186064455, - "2034-01-01": 1077.96584565239, - "2033-01-01": 1056.94262096878, - "2032-01-01": 1036.44497690225, - "2031-01-01": 1016.47291345282, - "2030-01-01": 996.763640311928, - "2029-01-01": 977.317157479584, - "2028-01-01": 958.133464955784, - "2027-01-01": 938.68698212344, - "2026-01-01": 916.113294619408, - "2025-01-01": 902.319869307718, - "2024-01-01": 882.737611482625, - "2023-01-01": 835, - "2015-01-01": 835 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1176.92354900148, - "2034-01-01": 1154.13349223143, - "2033-01-01": 1131.62479418693, - "2032-01-01": 1109.67881359355, - "2031-01-01": 1088.29555045128, - "2030-01-01": 1067.19364603457, - "2029-01-01": 1046.37310034341, - "2028-01-01": 1025.83391337781, - "2027-01-01": 1005.01336768665, - "2026-01-01": 980.844653161378, - "2025-01-01": 966.076602588144, - "2024-01-01": 945.110688222116, - "2023-01-01": 894, - "2015-01-01": 894 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1248.01289088747, - "2034-01-01": 1223.84625350715, - "2033-01-01": 1199.97796967473, - "2032-01-01": 1176.70639293813, - "2031-01-01": 1154.03152329733, - "2030-01-01": 1131.65500720444, - "2029-01-01": 1109.57684465946, - "2028-01-01": 1087.79703566238, - "2027-01-01": 1065.71887311739, - "2026-01-01": 1040.09030335233, - "2025-01-01": 1024.4302228787, - "2024-01-01": 1002.19791100063, - "2023-01-01": 948, - "2015-01-01": 948 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1313.83635559673, - "2034-01-01": 1288.39510654023, - "2033-01-01": 1263.26794697825, - "2032-01-01": 1238.76896640533, - "2031-01-01": 1214.89816482145, - "2030-01-01": 1191.3414527321, - "2029-01-01": 1168.09883013727, - "2028-01-01": 1145.17029703697, - "2027-01-01": 1121.92767444215, - "2026-01-01": 1094.94738686248, - "2025-01-01": 1078.46135277737, - "2024-01-01": 1055.05645061037, - "2023-01-01": 998, - "2015-01-01": 998 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1374.39394312924, - "2034-01-01": 1347.78005133066, - "2033-01-01": 1321.49472609749, - "2032-01-01": 1295.86653399515, - "2031-01-01": 1270.89547502364, - "2030-01-01": 1246.25298261755, - "2029-01-01": 1221.93905677687, - "2028-01-01": 1197.9536975016, - "2027-01-01": 1173.63977166092, - "2026-01-01": 1145.41590369181, - "2025-01-01": 1128.16999228414, - "2024-01-01": 1103.68630705133, - "2023-01-01": 1044, - "2015-01-01": 1044 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1454.69857007453, - "2034-01-01": 1426.52965203101, - "2033-01-01": 1398.70849840778, - "2032-01-01": 1371.58287362514, - "2031-01-01": 1345.15277768307, - "2030-01-01": 1319.07044616129, - "2029-01-01": 1293.33587905981, - "2028-01-01": 1267.94907637861, - "2027-01-01": 1242.21450927713, - "2026-01-01": 1212.34154557419, - "2025-01-01": 1194.08797076051, - "2024-01-01": 1168.17372537521, - "2023-01-01": 1105, - "2015-01-01": 1105 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1558.69964431515, - "2034-01-01": 1528.51683982327, - "2033-01-01": 1498.70666254734, - "2032-01-01": 1469.64173970331, - "2031-01-01": 1441.32207129118, - "2030-01-01": 1413.375030095, - "2029-01-01": 1385.80061611476, - "2028-01-01": 1358.59882935048, - "2027-01-01": 1331.02441537024, - "2026-01-01": 1299.01573752021, - "2025-01-01": 1279.45715600041, - "2024-01-01": 1251.6902179586, - "2023-01-01": 1184, - "2015-01-01": 1184 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1653.48543349648, - "2034-01-01": 1621.46718819091, - "2033-01-01": 1589.84422986441, - "2032-01-01": 1559.01184549608, - "2031-01-01": 1528.97003508592, - "2030-01-01": 1499.32351165483, - "2029-01-01": 1470.07227520282, - "2028-01-01": 1441.2163257299, - "2027-01-01": 1411.96508927789, - "2026-01-01": 1378.00993777482, - "2025-01-01": 1357.26198305448, - "2024-01-01": 1327.80651499662, - "2023-01-01": 1256, - "2015-01-01": 1256 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1740.3724069127, - "2034-01-01": 1706.67167419457, - "2033-01-01": 1673.38699990506, - "2032-01-01": 1640.93444247279, - "2031-01-01": 1609.31400189776, - "2030-01-01": 1578.10961975134, - "2029-01-01": 1547.32129603354, - "2028-01-01": 1516.94903074437, - "2027-01-01": 1486.16070702657, - "2026-01-01": 1450.42128800821, - "2025-01-01": 1428.58307452072, - "2024-01-01": 1397.57978728147, - "2023-01-01": 1322, - "2015-01-01": 1322 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1821.99350315217, - "2034-01-01": 1786.71225195558, - "2033-01-01": 1751.86657176142, - "2032-01-01": 1717.89203357212, - "2031-01-01": 1684.78863738766, - "2030-01-01": 1652.12081220564, - "2029-01-01": 1619.88855802604, - "2028-01-01": 1588.09187484887, - "2027-01-01": 1555.85962066927, - "2026-01-01": 1518.44407156079, - "2025-01-01": 1495.58167559507, - "2024-01-01": 1463.12437639755, - "2023-01-01": 1384, - "2015-01-01": 1384 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1906.24753798002, - "2034-01-01": 1869.33478383792, - "2033-01-01": 1832.87774270993, - "2032-01-01": 1797.33212761013, - "2031-01-01": 1762.69793853854, - "2030-01-01": 1728.51946248104, - "2029-01-01": 1694.79669943765, - "2028-01-01": 1661.52964940835, - "2027-01-01": 1627.80688636496, - "2026-01-01": 1588.66113845378, - "2025-01-01": 1564.74152186536, - "2024-01-01": 1530.78330709801, - "2023-01-01": 1448, - "2015-01-01": 1448 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1997.08391927879, - "2034-01-01": 1958.41220102357, - "2033-01-01": 1920.21791138879, - "2032-01-01": 1882.97847899487, - "2031-01-01": 1846.69390384183, - "2030-01-01": 1810.88675730922, - "2029-01-01": 1775.55703939704, - "2028-01-01": 1740.7047501053, - "2027-01-01": 1705.37503219312, - "2026-01-01": 1664.36391369777, - "2025-01-01": 1639.30448112552, - "2024-01-01": 1603.72809175945, - "2023-01-01": 1517, - "2015-01-01": 1517 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2081.33795410664, - "2034-01-01": 2041.03473290591, - "2033-01-01": 2001.22908233729, - "2032-01-01": 1962.41857303289, - "2031-01-01": 1924.6032049927, - "2030-01-01": 1887.28540758462, - "2029-01-01": 1850.46518080865, - "2028-01-01": 1814.14252466478, - "2027-01-01": 1777.32229788881, - "2026-01-01": 1734.58098059076, - "2025-01-01": 1708.46432739581, - "2024-01-01": 1671.38702245992, - "2023-01-01": 1581, - "2015-01-01": 1581 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2160.32611175774, - "2034-01-01": 2118.4933565456, - "2033-01-01": 2077.17705510151, - "2032-01-01": 2036.89366119353, - "2031-01-01": 1997.64317482165, - "2030-01-01": 1958.90914221781, - "2029-01-01": 1920.69156338203, - "2028-01-01": 1882.9904383143, - "2027-01-01": 1844.77285947852, - "2026-01-01": 1800.40948080293, - "2025-01-01": 1773.30168327421, - "2024-01-01": 1734.8172699916, - "2023-01-01": 1641, - "2015-01-01": 1641 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2623.7233033109, - "2034-01-01": 2572.91728189847, - "2033-01-01": 2522.73849531829, - "2032-01-01": 2473.81417840262, - "2031-01-01": 2426.14433115146, - "2030-01-01": 2379.10171873254, - "2029-01-01": 2332.68634114588, - "2028-01-01": 2286.89819839147, - "2027-01-01": 2240.48282080481, - "2026-01-01": 2186.60334871435, - "2025-01-01": 2153.68083776082, - "2024-01-01": 2106.94138884416, - "2023-01-01": 1993, - "2015-01-01": 1993 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 629.272322620476, - "2034-01-01": 617.087034996221, - "2033-01-01": 605.052183021648, - "2032-01-01": 593.318202346439, - "2031-01-01": 581.885092970595, - "2030-01-01": 570.602419244433, - "2029-01-01": 559.470181167953, - "2028-01-01": 548.488378741156, - "2027-01-01": 537.356140664676, - "2026-01-01": 524.433718356978, - "2025-01-01": 516.537601831245, - "2024-01-01": 505.327638669095, - "2023-01-01": 478, - "2015-01-01": 478 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 891.24971216331, - "2034-01-01": 873.991470067869, - "2033-01-01": 856.946292689656, - "2032-01-01": 840.327244745898, - "2031-01-01": 824.134326236596, - "2030-01-01": 808.154472444522, - "2029-01-01": 792.387683369674, - "2028-01-01": 776.833959012055, - "2027-01-01": 761.067169937208, - "2026-01-01": 742.764910727352, - "2025-01-01": 731.581498827934, - "2024-01-01": 715.704626315853, - "2023-01-01": 677, - "2015-01-01": 677 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1022.89664158182, - "2034-01-01": 1003.08917613402, - "2033-01-01": 983.526247296695, - "2032-01-01": 964.4523916803, - "2031-01-01": 945.867609284838, - "2030-01-01": 927.527363499842, - "2029-01-01": 909.431654325313, - "2028-01-01": 891.580481761251, - "2027-01-01": 873.484772586722, - "2026-01-01": 852.479077747641, - "2025-01-01": 839.643758625266, - "2024-01-01": 821.421705535329, - "2023-01-01": 777, - "2015-01-01": 777 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1133.48006229337, - "2034-01-01": 1111.53124922959, - "2033-01-01": 1089.85340916661, - "2032-01-01": 1068.7175151052, - "2031-01-01": 1048.12356704536, - "2030-01-01": 1027.80059198631, - "2029-01-01": 1007.74858992805, - "2028-01-01": 987.967560870575, - "2027-01-01": 967.915558812314, - "2026-01-01": 944.638978044683, - "2025-01-01": 930.416056855024, - "2024-01-01": 910.224052079689, - "2023-01-01": 861, - "2015-01-01": 861 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1230.89879006306, - "2034-01-01": 1207.06355171855, - "2033-01-01": 1183.52257557582, - "2032-01-01": 1160.57012383665, - "2031-01-01": 1138.20619650106, - "2030-01-01": 1116.13653136725, - "2029-01-01": 1094.36112843522, - "2028-01-01": 1072.87998770498, - "2027-01-01": 1051.10458477295, - "2026-01-01": 1025.8274616397, - "2025-01-01": 1010.38212910505, - "2024-01-01": 988.454690702101, - "2023-01-01": 935, - "2015-01-01": 935 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1317.78576347928, - "2034-01-01": 1292.26803772221, - "2033-01-01": 1267.06534561646, - "2032-01-01": 1242.49272081336, - "2031-01-01": 1218.5501633129, - "2030-01-01": 1194.92263946376, - "2029-01-01": 1171.61014926594, - "2028-01-01": 1148.61269271945, - "2027-01-01": 1125.30020252163, - "2026-01-01": 1098.23881187309, - "2025-01-01": 1081.70322057129, - "2024-01-01": 1058.22796298696, - "2023-01-01": 1001, - "2015-01-01": 1001 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1396.77392113039, - "2034-01-01": 1369.7266613619, - "2033-01-01": 1343.01331838069, - "2032-01-01": 1316.967808974, - "2031-01-01": 1291.59013314184, - "2030-01-01": 1266.54637409695, - "2029-01-01": 1241.83653183933, - "2028-01-01": 1217.46060636897, - "2027-01-01": 1192.75076411134, - "2026-01-01": 1164.06731208526, - "2025-01-01": 1146.54057644969, - "2024-01-01": 1121.65821051864, - "2023-01-01": 1061, - "2015-01-01": 1061 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1469.17973231057, - "2034-01-01": 1440.73039969829, - "2033-01-01": 1412.63229341456, - "2032-01-01": 1385.23663978792, - "2031-01-01": 1358.54343881838, - "2030-01-01": 1332.20146417738, - "2029-01-01": 1306.21071586493, - "2028-01-01": 1280.57119388102, - "2027-01-01": 1254.58044556857, - "2026-01-01": 1224.41010394642, - "2025-01-01": 1205.97481933822, - "2024-01-01": 1179.80260408935, - "2023-01-01": 1116, - "2015-01-01": 1116 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1537.63613560819, - "2034-01-01": 1507.86120685269, - "2033-01-01": 1478.45386981022, - "2032-01-01": 1449.78171619381, - "2031-01-01": 1421.84474600346, - "2030-01-01": 1394.27536752615, - "2029-01-01": 1367.07358076186, - "2028-01-01": 1340.23938571061, - "2027-01-01": 1313.03759894632, - "2026-01-01": 1281.46147079697, - "2025-01-01": 1262.16719443283, - "2024-01-01": 1234.77548528348, - "2023-01-01": 1168, - "2015-01-01": 1168 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1627.15604761278, - "2034-01-01": 1595.64764697767, - "2033-01-01": 1564.52823894301, - "2032-01-01": 1534.1868161092, - "2031-01-01": 1504.62337847627, - "2030-01-01": 1475.44893344376, - "2029-01-01": 1446.66348101169, - "2028-01-01": 1418.26702118006, - "2027-01-01": 1389.48156874799, - "2026-01-01": 1356.06710437076, - "2025-01-01": 1335.64953109502, - "2024-01-01": 1306.66309915272, - "2023-01-01": 1236, - "2015-01-01": 1236 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1743.00534550107, - "2034-01-01": 1709.25362831589, - "2033-01-01": 1675.9185989972, - "2032-01-01": 1643.41694541148, - "2031-01-01": 1611.74866755872, - "2030-01-01": 1580.49707757245, - "2029-01-01": 1549.66217545266, - "2028-01-01": 1519.24396119935, - "2027-01-01": 1488.40905907956, - "2026-01-01": 1452.61557134862, - "2025-01-01": 1430.74431971667, - "2024-01-01": 1399.69412886586, - "2023-01-01": 1324, - "2015-01-01": 1324 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1848.32288903587, - "2034-01-01": 1812.53179316882, - "2033-01-01": 1777.18256268283, - "2032-01-01": 1742.717062959, - "2031-01-01": 1709.13529399731, - "2030-01-01": 1675.9953904167, - "2029-01-01": 1643.29735221717, - "2028-01-01": 1611.04117939871, - "2027-01-01": 1578.34314119917, - "2026-01-01": 1540.38690496485, - "2025-01-01": 1517.19412755453, - "2024-01-01": 1484.26779224144, - "2023-01-01": 1404, - "2015-01-01": 1404 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1945.74161680557, - "2034-01-01": 1908.06409565777, - "2033-01-01": 1870.85172909204, - "2032-01-01": 1834.56967169045, - "2031-01-01": 1799.21792345301, - "2030-01-01": 1764.33132979764, - "2029-01-01": 1729.90989072434, - "2028-01-01": 1695.95360623311, - "2027-01-01": 1661.53216715981, - "2026-01-01": 1621.57538855986, - "2025-01-01": 1597.16019980456, - "2024-01-01": 1562.49843086386, - "2023-01-01": 1478, - "2015-01-01": 1478 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2036.57799810434, - "2034-01-01": 1997.14151284342, - "2033-01-01": 1958.1918977709, - "2032-01-01": 1920.21602307519, - "2031-01-01": 1883.2138887563, - "2030-01-01": 1846.69862462581, - "2029-01-01": 1810.67023068373, - "2028-01-01": 1775.12870693006, - "2027-01-01": 1739.10031298798, - "2026-01-01": 1697.27816380386, - "2025-01-01": 1671.72315906472, - "2024-01-01": 1635.44321552529, - "2023-01-01": 1547, - "2015-01-01": 1547 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2131.36378728567, - "2034-01-01": 2090.09186121105, - "2033-01-01": 2049.32946508797, - "2032-01-01": 2009.58612886796, - "2031-01-01": 1970.86185255103, - "2030-01-01": 1932.64710618564, - "2029-01-01": 1894.94188977179, - "2028-01-01": 1857.74620330948, - "2027-01-01": 1820.04098689563, - "2026-01-01": 1776.27236405847, - "2025-01-01": 1749.5279861188, - "2024-01-01": 1711.55951256332, - "2023-01-01": 1619, - "2015-01-01": 1619 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2231.41545364374, - "2034-01-01": 2188.20611782133, - "2033-01-01": 2145.53023058932, - "2032-01-01": 2103.92124053811, - "2031-01-01": 2063.3791476677, - "2030-01-01": 2023.37050338769, - "2029-01-01": 1983.89530769808, - "2028-01-01": 1944.95356059887, - "2027-01-01": 1905.47836490926, - "2026-01-01": 1859.65513099389, - "2025-01-01": 1831.65530356477, - "2024-01-01": 1791.90449277012, - "2023-01-01": 1695, - "2015-01-01": 1695 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2324.88477353088, - "2034-01-01": 2279.8654891283, - "2033-01-01": 2235.40199836031, - "2032-01-01": 2192.05009486153, - "2031-01-01": 2149.80977863195, - "2030-01-01": 2108.12525603697, - "2029-01-01": 2066.99652707658, - "2028-01-01": 2026.4235917508, - "2027-01-01": 1985.29486279041, - "2026-01-01": 1937.55218957829, - "2025-01-01": 1908.37950802087, - "2024-01-01": 1866.96361901595, - "2023-01-01": 1766, - "2015-01-01": 1766 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2414.40468553547, - "2034-01-01": 2367.65192925328, - "2033-01-01": 2321.4763674931, - "2032-01-01": 2276.45519477692, - "2031-01-01": 2232.58841110475, - "2030-01-01": 2189.29882195458, - "2029-01-01": 2146.58642732641, - "2028-01-01": 2104.45122722025, - "2027-01-01": 2061.73883259208, - "2026-01-01": 2012.15782315209, - "2025-01-01": 1981.86184468306, - "2024-01-01": 1938.85123288519, - "2023-01-01": 1834, - "2015-01-01": 1834 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2929.14417956184, - "2034-01-01": 2872.42395997195, - "2033-01-01": 2816.40399000662, - "2032-01-01": 2761.78451929043, - "2031-01-01": 2708.56554782338, - "2030-01-01": 2656.04682598089, - "2029-01-01": 2604.22835376296, - "2028-01-01": 2553.1101311696, - "2027-01-01": 2501.29165895168, - "2026-01-01": 2441.14021620142, - "2025-01-01": 2404.38528049063, - "2024-01-01": 2352.20501263334, - "2023-01-01": 2225, - "2015-01-01": 2225 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 672.715809328584, - "2034-01-01": 659.689277998052, - "2033-01-01": 646.823568041971, - "2032-01-01": 634.279500834792, - "2031-01-01": 622.057076376515, - "2030-01-01": 609.995473292689, - "2029-01-01": 598.094691583314, - "2028-01-01": 586.35473124839, - "2027-01-01": 574.453949539015, - "2026-01-01": 560.639393473674, - "2025-01-01": 552.198147564364, - "2024-01-01": 540.214274811523, - "2023-01-01": 511, - "2015-01-01": 511 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 951.807299695824, - "2034-01-01": 933.3764148583, - "2033-01-01": 915.173071808894, - "2032-01-01": 897.424812335723, - "2031-01-01": 880.131636438787, - "2030-01-01": 863.066002329969, - "2029-01-01": 846.227910009268, - "2028-01-01": 829.617359476685, - "2027-01-01": 812.779267155985, - "2026-01-01": 793.233427556685, - "2025-01-01": 781.290138334707, - "2024-01-01": 764.334482756812, - "2023-01-01": 723, - "2015-01-01": 723 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1092.66951417363, - "2034-01-01": 1071.51096034909, - "2033-01-01": 1050.61362323843, - "2032-01-01": 1030.23871955553, - "2031-01-01": 1010.38624930041, - "2030-01-01": 990.794995759162, - "2029-01-01": 971.464958931802, - "2028-01-01": 952.396138818325, - "2027-01-01": 933.066101990964, - "2026-01-01": 910.627586268393, - "2025-01-01": 896.916756317852, - "2024-01-01": 877.451757521651, - "2023-01-01": 830, - "2015-01-01": 830 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1211.15175065029, - "2034-01-01": 1187.69889580863, - "2033-01-01": 1164.53558238476, - "2032-01-01": 1141.95135179649, - "2031-01-01": 1119.94620404382, - "2030-01-01": 1098.23059770895, - "2029-01-01": 1076.80453279188, - "2028-01-01": 1055.6680092926, - "2027-01-01": 1034.24194437553, - "2026-01-01": 1009.37033658665, - "2025-01-01": 994.17279013545, - "2024-01-01": 972.59712881918, - "2023-01-01": 920, - "2015-01-01": 920 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1315.15282489091, - "2034-01-01": 1289.68608360089, - "2033-01-01": 1264.53374652432, - "2032-01-01": 1240.01021787467, - "2031-01-01": 1216.11549765193, - "2030-01-01": 1192.53518164265, - "2029-01-01": 1169.26926984683, - "2028-01-01": 1146.31776226447, - "2027-01-01": 1123.05185046864, - "2026-01-01": 1096.04452853268, - "2025-01-01": 1079.54197537534, - "2024-01-01": 1056.11362140257, - "2023-01-01": 999, - "2015-01-01": 999 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1407.30567548387, - "2034-01-01": 1380.0544778472, - "2033-01-01": 1353.13971474925, - "2032-01-01": 1326.89782072875, - "2031-01-01": 1301.3287957857, - "2030-01-01": 1276.09620538138, - "2029-01-01": 1251.20004951578, - "2028-01-01": 1226.6403281889, - "2027-01-01": 1201.7441723233, - "2026-01-01": 1172.84444544688, - "2025-01-01": 1155.18555723347, - "2024-01-01": 1130.1155768562, - "2023-01-01": 1069, - "2015-01-01": 1069 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1491.55971031171, - "2034-01-01": 1462.67700972954, - "2033-01-01": 1434.15088569775, - "2032-01-01": 1406.33791476677, - "2031-01-01": 1379.23809693658, - "2030-01-01": 1352.49485565678, - "2029-01-01": 1326.10819092739, - "2028-01-01": 1300.07810274839, - "2027-01-01": 1273.69143801899, - "2026-01-01": 1243.06151233987, - "2025-01-01": 1224.34540350377, - "2024-01-01": 1197.77450755666, - "2023-01-01": 1133, - "2015-01-01": 1133 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1569.23139866863, - "2034-01-01": 1538.84465630857, - "2033-01-01": 1508.83305891591, - "2032-01-01": 1479.57175145807, - "2031-01-01": 1451.06073393504, - "2030-01-01": 1422.92486137942, - "2029-01-01": 1395.16413379121, - "2028-01-01": 1367.77855117041, - "2027-01-01": 1340.0178235822, - "2026-01-01": 1307.79287088184, - "2025-01-01": 1288.10213678419, - "2024-01-01": 1260.14758429615, - "2023-01-01": 1192, - "2015-01-01": 1192 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1641.63720984881, - "2034-01-01": 1609.84839464495, - "2033-01-01": 1578.45203394978, - "2032-01-01": 1547.84058227199, - "2031-01-01": 1518.01403961157, - "2030-01-01": 1488.57995145985, - "2029-01-01": 1459.53831781682, - "2028-01-01": 1430.88913868247, - "2027-01-01": 1401.84750503944, - "2026-01-01": 1368.135662743, - "2025-01-01": 1347.53637967272, - "2024-01-01": 1318.29197786687, - "2023-01-01": 1247, - "2015-01-01": 1247 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1737.73946832433, - "2034-01-01": 1704.08972007325, - "2033-01-01": 1670.85540081292, - "2032-01-01": 1638.4519395341, - "2031-01-01": 1606.87933623679, - "2030-01-01": 1575.72216193023, - "2029-01-01": 1544.98041661443, - "2028-01-01": 1514.65410028938, - "2027-01-01": 1483.91235497358, - "2026-01-01": 1448.22700466781, - "2025-01-01": 1426.42182932478, - "2024-01-01": 1395.46544569708, - "2023-01-01": 1320, - "2015-01-01": 1320 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1860.17111268354, - "2034-01-01": 1824.15058671477, - "2033-01-01": 1788.57475859746, - "2032-01-01": 1753.88832618309, - "2031-01-01": 1720.09128947165, - "2030-01-01": 1686.73895061168, - "2029-01-01": 1653.83130960318, - "2028-01-01": 1621.36836644614, - "2027-01-01": 1588.46072543763, - "2026-01-01": 1550.26117999667, - "2025-01-01": 1526.91973093629, - "2024-01-01": 1493.7823293712, - "2023-01-01": 1413, - "2015-01-01": 1413 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1974.70394127764, - "2034-01-01": 1936.46559099232, - "2033-01-01": 1898.69931910559, - "2032-01-01": 1861.87720401602, - "2031-01-01": 1825.99924572363, - "2030-01-01": 1790.59336582981, - "2029-01-01": 1755.65956433458, - "2028-01-01": 1721.19784123794, - "2027-01-01": 1686.26403974271, - "2026-01-01": 1645.71250530433, - "2025-01-01": 1620.93389695997, - "2024-01-01": 1585.75618829214, - "2023-01-01": 1500, - "2015-01-01": 1500 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2077.38854622408, - "2034-01-01": 2037.16180172392, - "2033-01-01": 1997.43168369908, - "2032-01-01": 1958.69481862486, - "2031-01-01": 1920.95120650125, - "2030-01-01": 1883.70422085296, - "2029-01-01": 1846.95386167998, - "2028-01-01": 1810.70012898231, - "2027-01-01": 1773.94976980933, - "2026-01-01": 1731.28955558015, - "2025-01-01": 1705.22245960189, - "2024-01-01": 1668.21551008333, - "2023-01-01": 1578, - "2015-01-01": 1578 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2174.80727399378, - "2034-01-01": 2132.69410421288, - "2033-01-01": 2091.10085010829, - "2032-01-01": 2050.54742735631, - "2031-01-01": 2011.03383595695, - "2030-01-01": 1972.0401602339, - "2029-01-01": 1933.56640018715, - "2028-01-01": 1895.61255581671, - "2027-01-01": 1857.13879576997, - "2026-01-01": 1812.47803917516, - "2025-01-01": 1785.18853185192, - "2024-01-01": 1746.44614870574, - "2023-01-01": 1652, - "2015-01-01": 1652 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2274.85894035184, - "2034-01-01": 2230.80836082316, - "2033-01-01": 2187.30161560964, - "2032-01-01": 2144.88253902646, - "2031-01-01": 2103.55113107362, - "2030-01-01": 2062.76355743594, - "2029-01-01": 2022.51981811344, - "2028-01-01": 1982.8199131061, - "2027-01-01": 1942.5761737836, - "2026-01-01": 1895.86080611058, - "2025-01-01": 1867.31584929789, - "2024-01-01": 1826.79112891255, - "2023-01-01": 1728, - "2015-01-01": 1728 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2381.49295318084, - "2034-01-01": 2335.37750273674, - "2033-01-01": 2289.83137884134, - "2032-01-01": 2245.42390804332, - "2031-01-01": 2202.15509034269, - "2030-01-01": 2159.45559919075, - "2029-01-01": 2117.32543458751, - "2028-01-01": 2075.76459653295, - "2027-01-01": 2033.6344319297, - "2026-01-01": 1984.72928139702, - "2025-01-01": 1954.84627973373, - "2024-01-01": 1912.42196308032, - "2023-01-01": 1809, - "2015-01-01": 1809 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2481.5446195389, - "2034-01-01": 2433.49175934702, - "2033-01-01": 2386.03214434269, - "2032-01-01": 2339.75901971347, - "2031-01-01": 2294.67238545936, - "2030-01-01": 2250.1789963928, - "2029-01-01": 2206.27885251379, - "2028-01-01": 2162.97195382234, - "2027-01-01": 2119.07180994333, - "2026-01-01": 2068.11204833244, - "2025-01-01": 2036.9735971797, - "2024-01-01": 1992.76694328712, - "2023-01-01": 1885, - "2015-01-01": 1885 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2576.33040872023, - "2034-01-01": 2526.44210771465, - "2033-01-01": 2477.16971165976, - "2032-01-01": 2429.12912550624, - "2031-01-01": 2382.32034925409, - "2030-01-01": 2336.12747795263, - "2029-01-01": 2290.55051160185, - "2028-01-01": 2245.58945020176, - "2027-01-01": 2200.01248385098, - "2026-01-01": 2147.10624858704, - "2025-01-01": 2114.77842423378, - "2024-01-01": 2068.88324032515, - "2023-01-01": 1957, - "2015-01-01": 1957 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3126.6145736896, - "2034-01-01": 3066.07051907118, - "2033-01-01": 3006.27392191718, - "2032-01-01": 2947.97223969204, - "2031-01-01": 2891.16547239574, - "2030-01-01": 2835.10616256387, - "2029-01-01": 2779.79431019642, - "2028-01-01": 2725.2299152934, - "2027-01-01": 2669.91806292595, - "2026-01-01": 2605.71146673185, - "2025-01-01": 2566.47867018662, - "2024-01-01": 2510.78063146256, - "2023-01-01": 2375, - "2015-01-01": 2375 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 705.627541683211, - "2034-01-01": 691.96370451459, - "2033-01-01": 678.46855669373, - "2032-01-01": 665.310787568392, - "2031-01-01": 652.490397138575, - "2030-01-01": 639.838696056519, - "2029-01-01": 627.355684322224, - "2028-01-01": 615.041361935689, - "2027-01-01": 602.558350201394, - "2026-01-01": 588.067935228746, - "2025-01-01": 579.213712513697, - "2024-01-01": 566.643544616392, - "2023-01-01": 536, - "2015-01-01": 536 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 999.200194286487, - "2034-01-01": 979.851589042116, - "2033-01-01": 960.741855467428, - "2032-01-01": 942.109865232108, - "2031-01-01": 923.955618336154, - "2030-01-01": 906.040243109885, - "2029-01-01": 888.363739553298, - "2028-01-01": 870.926107666396, - "2027-01-01": 853.24960410981, - "2026-01-01": 832.730527683989, - "2025-01-01": 820.192551861746, - "2024-01-01": 802.392631275823, - "2023-01-01": 759, - "2015-01-01": 759 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1145.32828594103, - "2034-01-01": 1123.15004277555, - "2033-01-01": 1101.24560508124, - "2032-01-01": 1079.88877832929, - "2031-01-01": 1059.0795625197, - "2030-01-01": 1038.54415218129, - "2029-01-01": 1018.28254731406, - "2028-01-01": 998.294747918003, - "2027-01-01": 978.03314305077, - "2026-01-01": 954.513253076509, - "2025-01-01": 940.141660236784, - "2024-01-01": 919.738589209442, - "2023-01-01": 870, - "2015-01-01": 870 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1269.07639959443, - "2034-01-01": 1244.50188647773, - "2033-01-01": 1220.23076241186, - "2032-01-01": 1196.56641644763, - "2031-01-01": 1173.50884858505, - "2030-01-01": 1150.75466977329, - "2029-01-01": 1128.30388001236, - "2028-01-01": 1106.15647930225, - "2027-01-01": 1083.70568954131, - "2026-01-01": 1057.64457007558, - "2025-01-01": 1041.72018444628, - "2024-01-01": 1019.11264367575, - "2023-01-01": 964, - "2015-01-01": 964 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1378.34335101179, - "2034-01-01": 1351.65298251264, - "2033-01-01": 1325.2921247357, - "2032-01-01": 1299.59028840318, - "2031-01-01": 1274.54747351509, - "2030-01-01": 1249.83416934921, - "2029-01-01": 1225.45037590554, - "2028-01-01": 1201.39609318408, - "2027-01-01": 1177.01229974041, - "2026-01-01": 1148.70732870242, - "2025-01-01": 1131.41186007806, - "2024-01-01": 1106.85781942791, - "2023-01-01": 1047, - "2015-01-01": 1047 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1474.44560948731, - "2034-01-01": 1445.89430794094, - "2033-01-01": 1417.69549159884, - "2032-01-01": 1390.2016456653, - "2031-01-01": 1363.41277014031, - "2030-01-01": 1336.97637981959, - "2029-01-01": 1310.89247470315, - "2028-01-01": 1285.16105479099, - "2027-01-01": 1259.07714967455, - "2026-01-01": 1228.79867062723, - "2025-01-01": 1210.29730973011, - "2024-01-01": 1184.03128725813, - "2023-01-01": 1120, - "2015-01-01": 1120 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1563.96552149189, - "2034-01-01": 1533.68074806592, - "2033-01-01": 1503.76986073163, - "2032-01-01": 1474.60674558069, - "2031-01-01": 1446.19140261311, - "2030-01-01": 1418.14994573721, - "2029-01-01": 1390.48237495299, - "2028-01-01": 1363.18869026045, - "2027-01-01": 1335.52111947622, - "2026-01-01": 1303.40430420103, - "2025-01-01": 1283.7796463923, - "2024-01-01": 1255.91890112738, - "2023-01-01": 1188, - "2015-01-01": 1188 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1644.27014843718, - "2034-01-01": 1612.43034876627, - "2033-01-01": 1580.98363304192, - "2032-01-01": 1550.32308521068, - "2031-01-01": 1520.44870527254, - "2030-01-01": 1490.96740928096, - "2029-01-01": 1461.87919723593, - "2028-01-01": 1433.18406913745, - "2027-01-01": 1404.09585709243, - "2026-01-01": 1370.3299460834, - "2025-01-01": 1349.69762486867, - "2024-01-01": 1320.40631945126, - "2023-01-01": 1249, - "2015-01-01": 1249 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1720.62536749992, - "2034-01-01": 1687.30701828464, - "2033-01-01": 1654.400006714, - "2032-01-01": 1622.31567043263, - "2031-01-01": 1591.05400944052, - "2030-01-01": 1560.20368609304, - "2029-01-01": 1529.7647003902, - "2028-01-01": 1499.73705233199, - "2027-01-01": 1469.29806662915, - "2026-01-01": 1433.96416295517, - "2025-01-01": 1412.37373555112, - "2024-01-01": 1381.72222539855, - "2023-01-01": 1307, - "2015-01-01": 1307 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1820.67703385799, - "2034-01-01": 1785.42127489492, - "2033-01-01": 1750.60077221535, - "2032-01-01": 1716.65078210277, - "2031-01-01": 1683.57130455718, - "2030-01-01": 1650.92708329509, - "2029-01-01": 1618.71811831648, - "2028-01-01": 1586.94440962138, - "2027-01-01": 1554.73544464278, - "2026-01-01": 1517.34692989059, - "2025-01-01": 1494.50105299709, - "2024-01-01": 1462.06720560535, - "2023-01-01": 1383, - "2015-01-01": 1383 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1949.69102468813, - "2034-01-01": 1911.93702683975, - "2033-01-01": 1874.64912773025, - "2032-01-01": 1838.29342609849, - "2031-01-01": 1802.86992194446, - "2030-01-01": 1767.9125165293, - "2029-01-01": 1733.42120985301, - "2028-01-01": 1699.39600191559, - "2027-01-01": 1664.9046952393, - "2026-01-01": 1624.86681357047, - "2025-01-01": 1600.40206759848, - "2024-01-01": 1565.66994324044, - "2023-01-01": 1481, - "2015-01-01": 1481 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2068.17326116479, - "2034-01-01": 2028.12496229929, - "2033-01-01": 1988.57108687659, - "2032-01-01": 1950.00605833945, - "2031-01-01": 1912.42987668788, - "2030-01-01": 1875.34811847909, - "2029-01-01": 1838.76078371308, - "2028-01-01": 1802.66787238987, - "2027-01-01": 1766.08053762386, - "2026-01-01": 1723.60956388873, - "2025-01-01": 1697.65810141608, - "2024-01-01": 1660.81531453797, - "2023-01-01": 1571, - "2015-01-01": 1571 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2177.44021258215, - "2034-01-01": 2135.2760583342, - "2033-01-01": 2093.63244920043, - "2032-01-01": 2053.029930295, - "2031-01-01": 2013.46850161792, - "2030-01-01": 1974.42761805501, - "2029-01-01": 1935.90727960626, - "2028-01-01": 1897.9074862717, - "2027-01-01": 1859.38714782296, - "2026-01-01": 1814.67232251557, - "2025-01-01": 1787.34977704786, - "2024-01-01": 1748.56049029013, - "2023-01-01": 1654, - "2015-01-01": 1654 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2278.8083482344, - "2034-01-01": 2234.68129200514, - "2033-01-01": 2191.09901424785, - "2032-01-01": 2148.60629343449, - "2031-01-01": 2107.20312956506, - "2030-01-01": 2066.3447441676, - "2029-01-01": 2026.03113724211, - "2028-01-01": 1986.26230878858, - "2027-01-01": 1945.94870186308, - "2026-01-01": 1899.15223112119, - "2025-01-01": 1870.55771709181, - "2024-01-01": 1829.96264128913, - "2023-01-01": 1731, - "2015-01-01": 1731 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2384.12589176921, - "2034-01-01": 2337.95945685807, - "2033-01-01": 2292.36297793348, - "2032-01-01": 2247.90641098201, - "2031-01-01": 2204.58975600366, - "2030-01-01": 2161.84305701186, - "2029-01-01": 2119.66631400662, - "2028-01-01": 2078.05952698793, - "2027-01-01": 2035.88278398269, - "2026-01-01": 1986.92356473742, - "2025-01-01": 1957.00752492967, - "2024-01-01": 1914.53630466471, - "2023-01-01": 1811, - "2015-01-01": 1811 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2494.70931248076, - "2034-01-01": 2446.40152995364, - "2033-01-01": 2398.69013980339, - "2032-01-01": 2352.17153440691, - "2031-01-01": 2306.84571376418, - "2030-01-01": 2262.11628549833, - "2029-01-01": 2217.98324960935, - "2028-01-01": 2174.44660609726, - "2027-01-01": 2130.31357020829, - "2026-01-01": 2079.08346503446, - "2025-01-01": 2047.77982315943, - "2024-01-01": 2003.33865120907, - "2023-01-01": 1895, - "2015-01-01": 1895 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2600.02685601556, - "2034-01-01": 2549.67969480656, - "2033-01-01": 2499.95410348903, - "2032-01-01": 2451.47165195443, - "2031-01-01": 2404.23234020277, - "2030-01-01": 2357.61459834259, - "2029-01-01": 2311.61842637387, - "2028-01-01": 2266.24382429662, - "2027-01-01": 2220.2476523279, - "2026-01-01": 2166.8547986507, - "2025-01-01": 2134.2296309973, - "2024-01-01": 2087.91231458465, - "2023-01-01": 1975, - "2015-01-01": 1975 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2698.76205307945, - "2034-01-01": 2646.50297435618, - "2033-01-01": 2594.88906944431, - "2032-01-01": 2544.56551215523, - "2031-01-01": 2495.53230248895, - "2030-01-01": 2447.14426663408, - "2029-01-01": 2399.40140459059, - "2028-01-01": 2352.30371635851, - "2027-01-01": 2304.56085431503, - "2026-01-01": 2249.14042391591, - "2025-01-01": 2215.2763258453, - "2024-01-01": 2167.20012399926, - "2023-01-01": 2050, - "2015-01-01": 2050 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3274.05913463833, - "2034-01-01": 3210.65994986527, - "2033-01-01": 3148.04347107707, - "2032-01-01": 3086.99240425857, - "2031-01-01": 3027.50674940977, - "2030-01-01": 2968.80380054583, - "2029-01-01": 2910.88355766674, - "2028-01-01": 2853.7460207725, - "2027-01-01": 2795.82577789341, - "2026-01-01": 2728.59133379457, - "2025-01-01": 2687.50840115963, - "2024-01-01": 2629.18376018837, - "2023-01-01": 2487, - "2015-01-01": 2487 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 731.956927566913, - "2034-01-01": 717.783245727821, - "2033-01-01": 703.784547615138, - "2032-01-01": 690.135816955272, - "2031-01-01": 676.837053748224, - "2030-01-01": 663.713274267583, - "2029-01-01": 650.764478513351, - "2028-01-01": 637.990666485528, - "2027-01-01": 625.041870731297, - "2026-01-01": 610.010768632803, - "2025-01-01": 600.826164473163, - "2024-01-01": 587.786960460287, - "2023-01-01": 556, - "2015-01-01": 556 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1036.06133452367, - "2034-01-01": 1015.99894674064, - "2033-01-01": 996.184242757399, - "2032-01-01": 976.86490637374, - "2031-01-01": 958.040937589662, - "2030-01-01": 939.464652605375, - "2029-01-01": 921.136051420877, - "2028-01-01": 903.05513403617, - "2027-01-01": 884.726532851673, - "2026-01-01": 863.450494449669, - "2025-01-01": 850.449984604999, - "2024-01-01": 831.993413457277, - "2023-01-01": 787, - "2015-01-01": 787 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1188.77177264914, - "2034-01-01": 1165.75228577738, - "2033-01-01": 1143.01699010156, - "2032-01-01": 1120.85007681765, - "2031-01-01": 1099.25154592562, - "2030-01-01": 1077.93720622955, - "2029-01-01": 1056.90705772942, - "2028-01-01": 1036.16110042524, - "2027-01-01": 1015.13095192511, - "2026-01-01": 990.718928193204, - "2025-01-01": 975.802205969904, - "2024-01-01": 954.625225351869, - "2023-01-01": 903, - "2015-01-01": 903 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1316.4692941851, - "2034-01-01": 1290.97706066155, - "2033-01-01": 1265.79954607039, - "2032-01-01": 1241.25146934402, - "2031-01-01": 1217.33283048242, - "2030-01-01": 1193.72891055321, - "2029-01-01": 1170.43970955639, - "2028-01-01": 1147.46522749196, - "2027-01-01": 1124.17602649514, - "2026-01-01": 1097.14167020288, - "2025-01-01": 1080.62259797332, - "2024-01-01": 1057.17079219476, - "2023-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1429.68565348501, - "2034-01-01": 1402.00108787844, - "2033-01-01": 1374.65830703245, - "2032-01-01": 1347.9990957076, - "2031-01-01": 1322.0234539039, - "2030-01-01": 1296.38959686078, - "2029-01-01": 1271.09752457824, - "2028-01-01": 1246.14723705627, - "2027-01-01": 1220.85516477372, - "2026-01-01": 1191.49585384033, - "2025-01-01": 1173.55614139902, - "2024-01-01": 1148.08748032351, - "2023-01-01": 1086, - "2015-01-01": 1086 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1529.73731984308, - "2034-01-01": 1500.11534448872, - "2033-01-01": 1470.8590725338, - "2032-01-01": 1442.33420737775, - "2031-01-01": 1414.54074902057, - "2030-01-01": 1387.11299406283, - "2029-01-01": 1360.05094250452, - "2028-01-01": 1333.35459434565, - "2027-01-01": 1306.29254278735, - "2026-01-01": 1274.87862077575, - "2025-01-01": 1255.68345884499, - "2024-01-01": 1228.43246053031, - "2023-01-01": 1162, - "2015-01-01": 1162 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1621.89017043604, - "2034-01-01": 1590.48373873503, - "2033-01-01": 1559.46504075872, - "2032-01-01": 1529.22181023183, - "2031-01-01": 1499.75404715434, - "2030-01-01": 1470.67401780155, - "2029-01-01": 1441.98172217347, - "2028-01-01": 1413.67716027009, - "2027-01-01": 1384.98486464201, - "2026-01-01": 1351.67853768995, - "2025-01-01": 1331.32704070312, - "2024-01-01": 1302.43441598394, - "2023-01-01": 1232, - "2015-01-01": 1232 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1706.14420526388, - "2034-01-01": 1673.10627061737, - "2033-01-01": 1640.47621170723, - "2032-01-01": 1608.66190426984, - "2031-01-01": 1577.66334830521, - "2030-01-01": 1547.07266807696, - "2029-01-01": 1516.88986358508, - "2028-01-01": 1487.11493482958, - "2027-01-01": 1456.9321303377, - "2026-01-01": 1421.89560458294, - "2025-01-01": 1400.48688697342, - "2024-01-01": 1370.09334668441, - "2023-01-01": 1296, - "2015-01-01": 1296 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1785.13236291499, - "2034-01-01": 1750.56489425706, - "2033-01-01": 1716.42418447145, - "2032-01-01": 1683.13699243048, - "2031-01-01": 1650.70331813416, - "2030-01-01": 1618.69640271015, - "2029-01-01": 1587.11624615846, - "2028-01-01": 1555.96284847909, - "2027-01-01": 1524.38269192741, - "2026-01-01": 1487.72410479511, - "2025-01-01": 1465.32424285182, - "2024-01-01": 1433.5235942161, - "2023-01-01": 1356, - "2015-01-01": 1356 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1887.81696786143, - "2034-01-01": 1851.26110498866, - "2033-01-01": 1815.15654906494, - "2032-01-01": 1779.95460703932, - "2031-01-01": 1745.65527891179, - "2030-01-01": 1711.8072577333, - "2029-01-01": 1678.41054350386, - "2028-01-01": 1645.46513622347, - "2027-01-01": 1612.06842199403, - "2026-01-01": 1573.30115507094, - "2025-01-01": 1549.61280549373, - "2024-01-01": 1515.98291600729, - "2023-01-01": 1434, - "2015-01-01": 1434 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2022.09683586831, - "2034-01-01": 1982.94076517614, - "2033-01-01": 1944.26810276412, - "2032-01-01": 1906.56225691241, - "2031-01-01": 1869.82322762099, - "2030-01-01": 1833.56760660973, - "2029-01-01": 1797.79539387861, - "2028-01-01": 1762.50658942765, - "2027-01-01": 1726.73437669653, - "2026-01-01": 1685.20960543163, - "2025-01-01": 1659.83631048701, - "2024-01-01": 1623.81433681115, - "2023-01-01": 1536, - "2015-01-01": 1536 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2144.52848022752, - "2034-01-01": 2103.00163181766, - "2033-01-01": 2061.98746054867, - "2032-01-01": 2021.9986435614, - "2031-01-01": 1983.03518085586, - "2030-01-01": 1944.58439529118, - "2029-01-01": 1906.64628686736, - "2028-01-01": 1869.2208555844, - "2027-01-01": 1831.28274716058, - "2026-01-01": 1787.2437807605, - "2025-01-01": 1760.33421209853, - "2024-01-01": 1722.13122048526, - "2023-01-01": 1629, - "2015-01-01": 1629 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2257.74483952744, - "2034-01-01": 2214.02565903456, - "2033-01-01": 2170.84622151072, - "2032-01-01": 2128.74626992499, - "2031-01-01": 2087.72580427734, - "2030-01-01": 2047.24508159875, - "2029-01-01": 2007.3041018892, - "2028-01-01": 1967.90286514871, - "2027-01-01": 1927.96188543916, - "2026-01-01": 1881.59796439795, - "2025-01-01": 1853.26775552424, - "2024-01-01": 1813.04790861401, - "2023-01-01": 1715, - "2015-01-01": 1715 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2363.06238306225, - "2034-01-01": 2317.30382388748, - "2033-01-01": 2272.11018519636, - "2032-01-01": 2228.04638747251, - "2031-01-01": 2185.11243071594, - "2030-01-01": 2142.74339444301, - "2029-01-01": 2100.93927865372, - "2028-01-01": 2059.70008334806, - "2027-01-01": 2017.89596755877, - "2026-01-01": 1969.36929801418, - "2025-01-01": 1939.7175633621, - "2024-01-01": 1897.6215719896, - "2023-01-01": 1795, - "2015-01-01": 1795 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2471.01286518542, - "2034-01-01": 2423.16394286173, - "2033-01-01": 2375.90574797413, - "2032-01-01": 2329.82900795872, - "2031-01-01": 2284.9337228155, - "2030-01-01": 2240.62916510837, - "2029-01-01": 2196.91533483734, - "2028-01-01": 2153.7922320024, - "2027-01-01": 2110.07840173137, - "2026-01-01": 2059.33491497081, - "2025-01-01": 2028.32861639591, - "2024-01-01": 1984.30957694957, - "2023-01-01": 1877, - "2015-01-01": 1877 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2586.86216307371, - "2034-01-01": 2536.76992419994, - "2033-01-01": 2487.29610802832, - "2032-01-01": 2439.05913726099, - "2031-01-01": 2392.05901189795, - "2030-01-01": 2345.67730923705, - "2029-01-01": 2299.9140292783, - "2028-01-01": 2254.7691720217, - "2027-01-01": 2209.00589206295, - "2026-01-01": 2155.88338194867, - "2025-01-01": 2123.42340501756, - "2024-01-01": 2077.3406066627, - "2023-01-01": 1965, - "2015-01-01": 1965 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2694.81264519689, - "2034-01-01": 2642.63004317419, - "2033-01-01": 2591.09167080609, - "2032-01-01": 2540.8417577472, - "2031-01-01": 2491.88030399751, - "2030-01-01": 2443.56307990242, - "2029-01-01": 2395.89008546193, - "2028-01-01": 2348.86132067604, - "2027-01-01": 2301.18832623555, - "2026-01-01": 2245.8489989053, - "2025-01-01": 2212.03445805138, - "2024-01-01": 2164.02861162267, - "2023-01-01": 2047, - "2015-01-01": 2047 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2797.49725014333, - "2034-01-01": 2743.32625390579, - "2033-01-01": 2689.82403539958, - "2032-01-01": 2637.65937235603, - "2031-01-01": 2586.83226477514, - "2030-01-01": 2536.67393492557, - "2029-01-01": 2487.18438280732, - "2028-01-01": 2438.36360842041, - "2027-01-01": 2388.87405630217, - "2026-01-01": 2331.42604918113, - "2025-01-01": 2296.32302069329, - "2024-01-01": 2246.48793341387, - "2023-01-01": 2125, - "2015-01-01": 2125 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3393.85784040918, - "2034-01-01": 3328.13886238547, - "2033-01-01": 3263.23122976947, - "2032-01-01": 3199.94628796887, - "2031-01-01": 3138.28403698367, - "2030-01-01": 3077.43313140617, - "2029-01-01": 3017.39357123637, - "2028-01-01": 2958.16535647427, - "2027-01-01": 2898.12579630447, - "2026-01-01": 2828.43122578303, - "2025-01-01": 2785.84505757521, - "2024-01-01": 2725.38630227809, - "2023-01-01": 2578, - "2015-01-01": 2578 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 768.818067804096, - "2034-01-01": 753.930603426345, - "2033-01-01": 739.226934905109, - "2032-01-01": 724.890858096905, - "2031-01-01": 710.922373001731, - "2030-01-01": 697.137683763073, - "2029-01-01": 683.53679038093, - "2028-01-01": 670.119692855303, - "2027-01-01": 656.518799473161, - "2026-01-01": 640.730735398484, - "2025-01-01": 631.083597216416, - "2024-01-01": 617.38774264174, - "2023-01-01": 584, - "2015-01-01": 584 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1087.40363699689, - "2034-01-01": 1066.34705210644, - "2033-01-01": 1045.55042505414, - "2032-01-01": 1025.27371367816, - "2031-01-01": 1005.51691797848, - "2030-01-01": 986.02008011695, - "2029-01-01": 966.783200093576, - "2028-01-01": 947.806277908357, - "2027-01-01": 928.569397884984, - "2026-01-01": 906.239019587582, - "2025-01-01": 892.594265925958, - "2024-01-01": 873.223074352872, - "2023-01-01": 826, - "2015-01-01": 826 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1246.69642159329, - "2034-01-01": 1222.55527644649, - "2033-01-01": 1198.71217012866, - "2032-01-01": 1175.46514146878, - "2031-01-01": 1152.81419046685, - "2030-01-01": 1130.46127829389, - "2029-01-01": 1108.4064049499, - "2028-01-01": 1086.64957043488, - "2027-01-01": 1064.5946970909, - "2026-01-01": 1038.99316168213, - "2025-01-01": 1023.34960028073, - "2024-01-01": 1001.14074020844, - "2023-01-01": 947, - "2015-01-01": 947 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1382.29275889435, - "2034-01-01": 1355.52591369463, - "2033-01-01": 1329.08952337391, - "2032-01-01": 1303.31404281122, - "2031-01-01": 1278.19947200654, - "2030-01-01": 1253.41535608087, - "2029-01-01": 1228.96169503421, - "2028-01-01": 1204.83848886656, - "2027-01-01": 1180.38482781989, - "2026-01-01": 1151.99875371303, - "2025-01-01": 1134.65372787198, - "2024-01-01": 1110.0293318045, - "2023-01-01": 1050, - "2015-01-01": 1050 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1499.45852607682, - "2034-01-01": 1470.4228720935, - "2033-01-01": 1441.74568297418, - "2032-01-01": 1413.78542358283, - "2031-01-01": 1386.54209391947, - "2030-01-01": 1359.6572291201, - "2029-01-01": 1333.13082918473, - "2028-01-01": 1306.96289411334, - "2027-01-01": 1280.43649417796, - "2026-01-01": 1249.64436236108, - "2025-01-01": 1230.82913909161, - "2024-01-01": 1204.11753230983, - "2023-01-01": 1139, - "2015-01-01": 1139 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1604.77606961163, - "2034-01-01": 1573.70103694643, - "2033-01-01": 1543.00964665981, - "2032-01-01": 1513.08554113035, - "2031-01-01": 1483.92872035807, - "2030-01-01": 1455.15554196436, - "2029-01-01": 1426.76600594924, - "2028-01-01": 1398.7601123127, - "2027-01-01": 1370.37057629757, - "2026-01-01": 1337.41569597732, - "2025-01-01": 1317.27894692947, - "2024-01-01": 1288.69119568541, - "2023-01-01": 1219, - "2015-01-01": 1219 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1700.87832808714, - "2034-01-01": 1667.94236237472, - "2033-01-01": 1635.41301352295, - "2032-01-01": 1603.69689839247, - "2031-01-01": 1572.79401698328, - "2030-01-01": 1542.29775243474, - "2029-01-01": 1512.20810474685, - "2028-01-01": 1482.52507391961, - "2027-01-01": 1452.43542623172, - "2026-01-01": 1417.50703790213, - "2025-01-01": 1396.16439658152, - "2024-01-01": 1365.86466351563, - "2023-01-01": 1292, - "2015-01-01": 1292 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1790.39824009173, - "2034-01-01": 1755.72880249971, - "2033-01-01": 1721.48738265573, - "2032-01-01": 1688.10199830786, - "2031-01-01": 1655.57264945609, - "2030-01-01": 1623.47131835236, - "2029-01-01": 1591.79800499669, - "2028-01-01": 1560.55270938906, - "2027-01-01": 1528.87939603339, - "2026-01-01": 1492.11267147592, - "2025-01-01": 1469.64673324371, - "2024-01-01": 1437.75227738487, - "2023-01-01": 1360, - "2015-01-01": 1360 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1872.01933633121, - "2034-01-01": 1835.76938026072, - "2033-01-01": 1799.9669545121, - "2032-01-01": 1765.05958940719, - "2031-01-01": 1731.047284946, - "2030-01-01": 1697.48251080666, - "2029-01-01": 1664.36526698918, - "2028-01-01": 1631.69555349356, - "2027-01-01": 1598.57830967609, - "2026-01-01": 1560.1354550285, - "2025-01-01": 1536.64533431805, - "2024-01-01": 1503.29686650095, - "2023-01-01": 1422, - "2015-01-01": 1422 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1981.28628774857, - "2034-01-01": 1942.92047629563, - "2033-01-01": 1905.02831683594, - "2032-01-01": 1868.08346136274, - "2031-01-01": 1832.08590987604, - "2030-01-01": 1796.56201038258, - "2029-01-01": 1761.51176288236, - "2028-01-01": 1726.9351673754, - "2027-01-01": 1691.88491987518, - "2026-01-01": 1651.19821365534, - "2025-01-01": 1626.33700994984, - "2024-01-01": 1591.04204225311, - "2023-01-01": 1505, - "2015-01-01": 1505 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2120.83203293219, - "2034-01-01": 2079.76404472576, - "2033-01-01": 2039.2030687194, - "2032-01-01": 1999.65611711321, - "2031-01-01": 1961.12318990717, - "2030-01-01": 1923.09727490122, - "2029-01-01": 1885.57837209534, - "2028-01-01": 1848.56648148954, - "2027-01-01": 1811.04757868367, - "2026-01-01": 1767.49523069685, - "2025-01-01": 1740.88300533501, - "2024-01-01": 1703.10214622576, - "2023-01-01": 1611, - "2015-01-01": 1611 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2249.84602376233, - "2034-01-01": 2206.27979667059, - "2033-01-01": 2163.2514242343, - "2032-01-01": 2121.29876110892, - "2031-01-01": 2080.42180729445, - "2030-01-01": 2040.08270813543, - "2029-01-01": 2000.28146363187, - "2028-01-01": 1961.01807378376, - "2027-01-01": 1921.21682928019, - "2026-01-01": 1875.01511437673, - "2025-01-01": 1846.7840199364, - "2024-01-01": 1806.70488386085, - "2023-01-01": 1709, - "2015-01-01": 1709 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2367.0117909448, - "2034-01-01": 2321.17675506947, - "2033-01-01": 2275.90758383457, - "2032-01-01": 2231.77014188054, - "2031-01-01": 2188.76442920739, - "2030-01-01": 2146.32458117467, - "2029-01-01": 2104.45059778238, - "2028-01-01": 2063.14247903054, - "2027-01-01": 2021.26849563826, - "2026-01-01": 1972.66072302478, - "2025-01-01": 1942.95943115602, - "2024-01-01": 1900.79308436618, - "2023-01-01": 1798, - "2015-01-01": 1798 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2477.59521165635, - "2034-01-01": 2429.61882816504, - "2033-01-01": 2382.23474570448, - "2032-01-01": 2336.03526530544, - "2031-01-01": 2291.02038696791, - "2030-01-01": 2246.59780966114, - "2029-01-01": 2202.76753338512, - "2028-01-01": 2159.52955813986, - "2027-01-01": 2115.69928186385, - "2026-01-01": 2064.82062332183, - "2025-01-01": 2033.73172938578, - "2024-01-01": 1989.59543091054, - "2023-01-01": 1882, - "2015-01-01": 1882 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2590.81157095627, - "2034-01-01": 2540.64285538193, - "2033-01-01": 2491.09350666653, - "2032-01-01": 2442.78289166902, - "2031-01-01": 2395.7110103894, - "2030-01-01": 2349.25849596871, - "2029-01-01": 2303.42534840697, - "2028-01-01": 2258.21156770417, - "2027-01-01": 2212.37842014243, - "2026-01-01": 2159.17480695928, - "2025-01-01": 2126.66527281148, - "2024-01-01": 2080.51211903929, - "2023-01-01": 1968, - "2015-01-01": 1968 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2713.24321531548, - "2034-01-01": 2660.70372202345, - "2033-01-01": 2608.81286445108, - "2032-01-01": 2558.21927831802, - "2031-01-01": 2508.92296362426, - "2030-01-01": 2460.27528465016, - "2029-01-01": 2412.27624139571, - "2028-01-01": 2364.92583386092, - "2027-01-01": 2316.92679060648, - "2026-01-01": 2261.20898228814, - "2025-01-01": 2227.163174423, - "2024-01-01": 2178.8290027134, - "2023-01-01": 2061, - "2015-01-01": 2061 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2826.4595746154, - "2034-01-01": 2771.72774924035, - "2033-01-01": 2717.67162541313, - "2032-01-01": 2664.9669046816, - "2031-01-01": 2613.61358704575, - "2030-01-01": 2562.93597095774, - "2029-01-01": 2512.93405641756, - "2028-01-01": 2463.60784342523, - "2027-01-01": 2413.60592888506, - "2026-01-01": 2355.56316592559, - "2025-01-01": 2320.09671784871, - "2024-01-01": 2269.74569084215, - "2023-01-01": 2147, - "2015-01-01": 2147 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2933.09358744439, - "2034-01-01": 2876.29689115393, - "2033-01-01": 2820.20138864484, - "2032-01-01": 2765.50827369847, - "2031-01-01": 2712.21754631482, - "2030-01-01": 2659.62801271255, - "2029-01-01": 2607.73967289163, - "2028-01-01": 2556.55252685208, - "2027-01-01": 2504.66418703117, - "2026-01-01": 2444.43164121202, - "2025-01-01": 2407.62714828455, - "2024-01-01": 2355.37652500993, - "2023-01-01": 2228, - "2015-01-01": 2228 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GA.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3557.10003288813, - "2034-01-01": 3488.22001790751, - "2033-01-01": 3420.1903734822, - "2032-01-01": 3353.86147016753, - "2031-01-01": 3289.23330796349, - "2030-01-01": 3225.45551631477, - "2029-01-01": 3162.52809522136, - "2028-01-01": 3100.45104468327, - "2027-01-01": 3037.52362358986, - "2026-01-01": 2964.47679288819, - "2025-01-01": 2919.8422597239, - "2024-01-01": 2856.47548051024, - "2023-01-01": 2702, - "2015-01-01": 2702 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI", - "description": null, - "label": "HI", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 550.28416496937, - "2034-01-01": 539.628411356528, - "2033-01-01": 529.104210257424, - "2032-01-01": 518.843114185798, - "2031-01-01": 508.84512314165, - "2030-01-01": 498.978684611241, - "2029-01-01": 489.24379859457, - "2028-01-01": 479.640465091638, - "2027-01-01": 469.905579074968, - "2026-01-01": 458.605218144805, - "2025-01-01": 451.700245952846, - "2024-01-01": 441.89739113741, - "2023-01-01": 418, - "2015-01-01": 418 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 758.286313450615, - "2034-01-01": 743.602786941052, - "2033-01-01": 729.100538536546, - "2032-01-01": 714.960846342153, - "2031-01-01": 701.183710357872, - "2030-01-01": 687.587852478648, - "2029-01-01": 674.173272704479, - "2028-01-01": 660.939971035367, - "2027-01-01": 647.525391261199, - "2026-01-01": 631.953602036861, - "2025-01-01": 622.43861643263, - "2024-01-01": 608.930376304182, - "2023-01-01": 576, - "2015-01-01": 576 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 860.970918397052, - "2034-01-01": 844.298997672653, - "2033-01-01": 827.832903130037, - "2032-01-01": 811.778460950986, - "2031-01-01": 796.135671135501, - "2030-01-01": 780.698707501798, - "2029-01-01": 765.467570049877, - "2028-01-01": 750.44225877974, - "2027-01-01": 735.21112132782, - "2026-01-01": 717.530652312686, - "2025-01-01": 706.727179074548, - "2024-01-01": 691.389698095373, - "2023-01-01": 654, - "2015-01-01": 654 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 946.541422519084, - "2034-01-01": 928.212506615654, - "2033-01-01": 910.109873624612, - "2032-01-01": 892.459806458347, - "2031-01-01": 875.262305116858, - "2030-01-01": 858.291086687756, - "2029-01-01": 841.546151171043, - "2028-01-01": 825.027498566717, - "2027-01-01": 808.282563050004, - "2026-01-01": 788.844860875873, - "2025-01-01": 776.967647942814, - "2024-01-01": 760.105799588033, - "2023-01-01": 719, - "2015-01-01": 719 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1021.58017228763, - "2034-01-01": 1001.79819907336, - "2033-01-01": 982.260447750625, - "2032-01-01": 963.211140210956, - "2031-01-01": 944.650276454355, - "2030-01-01": 926.333634589289, - "2029-01-01": 908.261214615757, - "2028-01-01": 890.433016533759, - "2027-01-01": 872.360596560227, - "2026-01-01": 851.381936077438, - "2025-01-01": 838.563136027292, - "2024-01-01": 820.364534743134, - "2023-01-01": 776, - "2015-01-01": 776 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1088.72010629107, - "2034-01-01": 1067.6380291671, - "2033-01-01": 1046.81622460021, - "2032-01-01": 1026.5149651475, - "2031-01-01": 1006.73425080896, - "2030-01-01": 987.213809027503, - "2029-01-01": 967.953639803132, - "2028-01-01": 948.953743135849, - "2027-01-01": 929.693573911479, - "2026-01-01": 907.336161257785, - "2025-01-01": 893.674888523932, - "2024-01-01": 874.280245145067, - "2023-01-01": 827, - "2015-01-01": 827 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1147.9612245294, - "2034-01-01": 1125.73199689687, - "2033-01-01": 1103.77720417338, - "2032-01-01": 1082.37128126798, - "2031-01-01": 1061.51422818067, - "2030-01-01": 1040.9316100024, - "2029-01-01": 1020.62342673317, - "2028-01-01": 1000.58967837299, - "2027-01-01": 980.28149510376, - "2026-01-01": 956.707536416914, - "2025-01-01": 942.302905432731, - "2024-01-01": 921.852930793831, - "2023-01-01": 872, - "2015-01-01": 872 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1204.56940417936, - "2034-01-01": 1181.24401050532, - "2033-01-01": 1158.20658465441, - "2032-01-01": 1135.74509444977, - "2031-01-01": 1113.85953989141, - "2030-01-01": 1092.26195315619, - "2029-01-01": 1070.95233424409, - "2028-01-01": 1049.93068315514, - "2027-01-01": 1028.62106424305, - "2026-01-01": 1003.88462823564, - "2025-01-01": 988.769677145583, - "2024-01-01": 967.311274858206, - "2023-01-01": 915, - "2015-01-01": 915 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1255.91170665258, - "2034-01-01": 1231.59211587112, - "2033-01-01": 1207.57276695115, - "2032-01-01": 1184.15390175419, - "2031-01-01": 1161.33552028023, - "2030-01-01": 1138.81738066776, - "2029-01-01": 1116.59948291679, - "2028-01-01": 1094.68182702733, - "2027-01-01": 1072.46392927636, - "2026-01-01": 1046.67315337355, - "2025-01-01": 1030.91395846654, - "2024-01-01": 1008.5409357538, - "2023-01-01": 954, - "2015-01-01": 954 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1323.05164065602, - "2034-01-01": 1297.43194596486, - "2033-01-01": 1272.12854380074, - "2032-01-01": 1247.45772669074, - "2031-01-01": 1223.41949463483, - "2030-01-01": 1199.69755510597, - "2029-01-01": 1176.29190810417, - "2028-01-01": 1153.20255362942, - "2027-01-01": 1129.79690662761, - "2026-01-01": 1102.6273785539, - "2025-01-01": 1086.02571096318, - "2024-01-01": 1062.45664615573, - "2023-01-01": 1005, - "2015-01-01": 1005 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1409.93861407224, - "2034-01-01": 1382.63643196852, - "2033-01-01": 1355.67131384139, - "2032-01-01": 1329.38032366744, - "2031-01-01": 1303.76346144667, - "2030-01-01": 1278.48366320249, - "2029-01-01": 1253.54092893489, - "2028-01-01": 1228.93525864389, - "2027-01-01": 1203.99252437629, - "2026-01-01": 1175.03872878729, - "2025-01-01": 1157.34680242942, - "2024-01-01": 1132.22991844059, - "2023-01-01": 1071, - "2015-01-01": 1071 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1490.24324101753, - "2034-01-01": 1461.38603266887, - "2033-01-01": 1432.88508615168, - "2032-01-01": 1405.09666329743, - "2031-01-01": 1378.0207641061, - "2030-01-01": 1351.30112674623, - "2029-01-01": 1324.93775121783, - "2028-01-01": 1298.9306375209, - "2027-01-01": 1272.5672619925, - "2026-01-01": 1241.96437066966, - "2025-01-01": 1223.26478090579, - "2024-01-01": 1196.71733676447, - "2023-01-01": 1132, - "2015-01-01": 1132 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1562.64905219771, - "2034-01-01": 1532.38977100526, - "2033-01-01": 1502.50406118556, - "2032-01-01": 1473.36549411135, - "2031-01-01": 1444.97406978263, - "2030-01-01": 1416.95621682666, - "2029-01-01": 1389.31193524343, - "2028-01-01": 1362.04122503295, - "2027-01-01": 1334.39694344973, - "2026-01-01": 1302.30716253082, - "2025-01-01": 1282.69902379433, - "2024-01-01": 1254.86173033518, - "2023-01-01": 1187, - "2015-01-01": 1187 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1631.10545549533, - "2034-01-01": 1599.52057815966, - "2033-01-01": 1568.32563758122, - "2032-01-01": 1537.91057051723, - "2031-01-01": 1508.27537696771, - "2030-01-01": 1479.03012017542, - "2029-01-01": 1450.17480014036, - "2028-01-01": 1421.70941686254, - "2027-01-01": 1392.85409682748, - "2026-01-01": 1359.35852938137, - "2025-01-01": 1338.89139888894, - "2024-01-01": 1309.83461152931, - "2023-01-01": 1239, - "2015-01-01": 1239 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1700.87832808714, - "2034-01-01": 1667.94236237472, - "2033-01-01": 1635.41301352295, - "2032-01-01": 1603.69689839247, - "2031-01-01": 1572.79401698328, - "2030-01-01": 1542.29775243474, - "2029-01-01": 1512.20810474685, - "2028-01-01": 1482.52507391961, - "2027-01-01": 1452.43542623172, - "2026-01-01": 1417.50703790213, - "2025-01-01": 1396.16439658152, - "2024-01-01": 1365.86466351563, - "2023-01-01": 1292, - "2015-01-01": 1292 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1774.60060856151, - "2034-01-01": 1740.23707777177, - "2033-01-01": 1706.29778810289, - "2032-01-01": 1673.20698067573, - "2031-01-01": 1640.9646554903, - "2030-01-01": 1609.14657142572, - "2029-01-01": 1577.75272848201, - "2028-01-01": 1546.78312665916, - "2027-01-01": 1515.38928371545, - "2026-01-01": 1478.94697143349, - "2025-01-01": 1456.67926206803, - "2024-01-01": 1425.06622787854, - "2023-01-01": 1348, - "2015-01-01": 1348 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1844.37348115332, - "2034-01-01": 1808.65886198683, - "2033-01-01": 1773.38516404462, - "2032-01-01": 1738.99330855097, - "2031-01-01": 1705.48329550587, - "2030-01-01": 1672.41420368504, - "2029-01-01": 1639.7860330885, - "2028-01-01": 1607.59878371623, - "2027-01-01": 1574.97061311969, - "2026-01-01": 1537.09547995424, - "2025-01-01": 1513.95225976061, - "2024-01-01": 1481.09627986486, - "2023-01-01": 1401, - "2015-01-01": 1401 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1910.19694586257, - "2034-01-01": 1873.20771501991, - "2033-01-01": 1836.67514134814, - "2032-01-01": 1801.05588201817, - "2031-01-01": 1766.34993702999, - "2030-01-01": 1732.1006492127, - "2029-01-01": 1698.30801856632, - "2028-01-01": 1664.97204509083, - "2027-01-01": 1631.17941444444, - "2026-01-01": 1591.95256346438, - "2025-01-01": 1567.98338965928, - "2024-01-01": 1533.9548194746, - "2023-01-01": 1451, - "2015-01-01": 1451 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2288.0236332937, - "2034-01-01": 2243.71813142977, - "2033-01-01": 2199.95961107034, - "2032-01-01": 2157.2950537199, - "2031-01-01": 2115.72445937844, - "2030-01-01": 2074.70084654147, - "2029-01-01": 2034.224215209, - "2028-01-01": 1994.29456538102, - "2027-01-01": 1953.81793404855, - "2026-01-01": 1906.83222281261, - "2025-01-01": 1878.12207527762, - "2024-01-01": 1837.36283683449, - "2023-01-01": 1738, - "2015-01-01": 1738 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 651.652300621622, - "2034-01-01": 639.033645027467, - "2033-01-01": 626.570775304844, - "2032-01-01": 614.419477325288, - "2031-01-01": 602.579751088796, - "2030-01-01": 590.895810723838, - "2029-01-01": 579.367656230412, - "2028-01-01": 567.995287608519, - "2027-01-01": 556.467133115093, - "2026-01-01": 543.085126750427, - "2025-01-01": 534.908185996791, - "2024-01-01": 523.299542136406, - "2023-01-01": 495, - "2015-01-01": 495 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 895.199120045865, - "2034-01-01": 877.864401249854, - "2033-01-01": 860.743691327867, - "2032-01-01": 844.05099915393, - "2031-01-01": 827.786324728043, - "2030-01-01": 811.735659176181, - "2029-01-01": 795.899002498343, - "2028-01-01": 780.276354694531, - "2027-01-01": 764.439698016694, - "2026-01-01": 746.056335737961, - "2025-01-01": 734.823366621854, - "2024-01-01": 718.876138692437, - "2023-01-01": 680, - "2015-01-01": 680 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1016.31429511089, - "2034-01-01": 996.634290830716, - "2033-01-01": 977.197249566343, - "2032-01-01": 958.24613433358, - "2031-01-01": 939.780945132426, - "2030-01-01": 921.558718947076, - "2029-01-01": 903.579455777531, - "2028-01-01": 885.843155623791, - "2027-01-01": 867.863892454246, - "2026-01-01": 846.993369396626, - "2025-01-01": 834.240645635399, - "2024-01-01": 816.135851574355, - "2023-01-01": 772, - "2015-01-01": 772 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1116.36596146896, - "2034-01-01": 1094.74854744099, - "2033-01-01": 1073.39801506769, - "2032-01-01": 1052.58124600372, - "2031-01-01": 1032.29824024909, - "2030-01-01": 1012.28211614912, - "2029-01-01": 992.532873703817, - "2028-01-01": 973.05051291318, - "2027-01-01": 953.301270467877, - "2026-01-01": 930.376136332045, - "2025-01-01": 916.367963081371, - "2024-01-01": 896.480831781157, - "2023-01-01": 848, - "2015-01-01": 848 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1204.56940417936, - "2034-01-01": 1181.24401050532, - "2033-01-01": 1158.20658465441, - "2032-01-01": 1135.74509444977, - "2031-01-01": 1113.85953989141, - "2030-01-01": 1092.26195315619, - "2029-01-01": 1070.95233424409, - "2028-01-01": 1049.93068315514, - "2027-01-01": 1028.62106424305, - "2026-01-01": 1003.88462823564, - "2025-01-01": 988.769677145583, - "2024-01-01": 967.311274858206, - "2023-01-01": 915, - "2015-01-01": 915 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1282.24109253628, - "2034-01-01": 1257.41165708435, - "2033-01-01": 1232.88875787256, - "2032-01-01": 1208.97893114107, - "2031-01-01": 1185.68217688987, - "2030-01-01": 1162.69195887882, - "2029-01-01": 1140.00827710792, - "2028-01-01": 1117.63113157717, - "2027-01-01": 1094.94744980626, - "2026-01-01": 1068.61598677761, - "2025-01-01": 1052.52641042601, - "2024-01-01": 1029.6843515977, - "2023-01-01": 974, - "2015-01-01": 974 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1353.33043442228, - "2034-01-01": 1327.12441836007, - "2033-01-01": 1301.24193336036, - "2032-01-01": 1276.00651048565, - "2031-01-01": 1251.41814973592, - "2030-01-01": 1227.1533200487, - "2029-01-01": 1203.21202142397, - "2028-01-01": 1179.59425386173, - "2027-01-01": 1155.652955237, - "2026-01-01": 1127.86163696856, - "2025-01-01": 1110.88003071657, - "2024-01-01": 1086.77157437621, - "2023-01-01": 1028, - "2015-01-01": 1028 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1417.83742983735, - "2034-01-01": 1390.38229433249, - "2033-01-01": 1363.26611111781, - "2032-01-01": 1336.8278324835, - "2031-01-01": 1311.06745842956, - "2030-01-01": 1285.6460366658, - "2029-01-01": 1260.56356719223, - "2028-01-01": 1235.82005000884, - "2027-01-01": 1210.73758053526, - "2026-01-01": 1181.62157880851, - "2025-01-01": 1163.83053801726, - "2024-01-01": 1138.57294319376, - "2023-01-01": 1077, - "2015-01-01": 1077 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1478.39501736986, - "2034-01-01": 1449.76723912292, - "2033-01-01": 1421.49289023705, - "2032-01-01": 1393.92540007333, - "2031-01-01": 1367.06476863175, - "2030-01-01": 1340.55756655125, - "2029-01-01": 1314.40379383182, - "2028-01-01": 1288.60345047347, - "2027-01-01": 1262.44967775404, - "2026-01-01": 1232.09009563784, - "2025-01-01": 1213.53917752403, - "2024-01-01": 1187.20279963472, - "2023-01-01": 1123, - "2015-01-01": 1123 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1557.38317502097, - "2034-01-01": 1527.22586276261, - "2033-01-01": 1497.44086300127, - "2032-01-01": 1468.40048823397, - "2031-01-01": 1440.1047384607, - "2030-01-01": 1412.18130118444, - "2029-01-01": 1384.63017640521, - "2028-01-01": 1357.45136412299, - "2027-01-01": 1329.90023934375, - "2026-01-01": 1297.91859585001, - "2025-01-01": 1278.37653340243, - "2024-01-01": 1250.6330471664, - "2023-01-01": 1183, - "2015-01-01": 1183 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1658.75131067322, - "2034-01-01": 1626.63109643355, - "2033-01-01": 1594.90742804869, - "2032-01-01": 1563.97685137346, - "2031-01-01": 1533.83936640785, - "2030-01-01": 1504.09842729704, - "2029-01-01": 1474.75403404105, - "2028-01-01": 1445.80618663987, - "2027-01-01": 1416.46179338387, - "2026-01-01": 1382.39850445563, - "2025-01-01": 1361.58447344638, - "2024-01-01": 1332.0351981654, - "2023-01-01": 1260, - "2015-01-01": 1260 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1752.22063056036, - "2034-01-01": 1718.29046774052, - "2033-01-01": 1684.77919581969, - "2032-01-01": 1652.10570569688, - "2031-01-01": 1620.2699973721, - "2030-01-01": 1588.85317994632, - "2029-01-01": 1557.85525341955, - "2028-01-01": 1527.2762177918, - "2027-01-01": 1496.27829126503, - "2026-01-01": 1460.29556304004, - "2025-01-01": 1438.30867790248, - "2024-01-01": 1407.09432441123, - "2023-01-01": 1331, - "2015-01-01": 1331 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1836.47466538821, - "2034-01-01": 1800.91299962286, - "2033-01-01": 1765.7903667682, - "2032-01-01": 1731.5457997349, - "2031-01-01": 1698.17929852297, - "2030-01-01": 1665.25183022172, - "2029-01-01": 1632.76339483116, - "2028-01-01": 1600.71399235128, - "2027-01-01": 1568.22555696072, - "2026-01-01": 1530.51262993302, - "2025-01-01": 1507.46852417277, - "2024-01-01": 1474.75325511169, - "2023-01-01": 1395, - "2015-01-01": 1395 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1916.7792923335, - "2034-01-01": 1879.66260032322, - "2033-01-01": 1843.00413907849, - "2032-01-01": 1807.26213936489, - "2031-01-01": 1772.4366011824, - "2030-01-01": 1738.06929376547, - "2029-01-01": 1704.1602171141, - "2028-01-01": 1670.70937122829, - "2027-01-01": 1636.80029457692, - "2026-01-01": 1597.4382718154, - "2025-01-01": 1573.38650264915, - "2024-01-01": 1539.24067343557, - "2023-01-01": 1456, - "2015-01-01": 1456 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1998.40038857297, - "2034-01-01": 1959.70317808423, - "2033-01-01": 1921.48371093486, - "2032-01-01": 1884.21973046422, - "2031-01-01": 1847.91123667231, - "2030-01-01": 1812.08048621977, - "2029-01-01": 1776.7274791066, - "2028-01-01": 1741.85221533279, - "2027-01-01": 1706.49920821962, - "2026-01-01": 1665.46105536798, - "2025-01-01": 1640.38510372349, - "2024-01-01": 1604.78526255165, - "2023-01-01": 1518, - "2015-01-01": 1518 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2083.97089269501, - "2034-01-01": 2043.61668702723, - "2033-01-01": 2003.76068142943, - "2032-01-01": 1964.90107597158, - "2031-01-01": 1927.03787065367, - "2030-01-01": 1889.67286540573, - "2029-01-01": 1852.80606022776, - "2028-01-01": 1816.43745511977, - "2027-01-01": 1779.5706499418, - "2026-01-01": 1736.77526393116, - "2025-01-01": 1710.62557259176, - "2024-01-01": 1673.50136404431, - "2023-01-01": 1583, - "2015-01-01": 1583 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2165.59198893448, - "2034-01-01": 2123.65726478825, - "2033-01-01": 2082.2402532858, - "2032-01-01": 2041.8586670709, - "2031-01-01": 2002.51250614358, - "2030-01-01": 1963.68405786003, - "2029-01-01": 1925.37332222026, - "2028-01-01": 1887.58029922427, - "2027-01-01": 1849.2695635845, - "2026-01-01": 1804.79804748374, - "2025-01-01": 1777.6241736661, - "2024-01-01": 1739.04595316038, - "2023-01-01": 1645, - "2015-01-01": 1645 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2241.94720799722, - "2034-01-01": 2198.53393430662, - "2033-01-01": 2155.65662695788, - "2032-01-01": 2113.85125229286, - "2031-01-01": 2073.11781031156, - "2030-01-01": 2032.92033467211, - "2029-01-01": 1993.25882537453, - "2028-01-01": 1954.1332824188, - "2027-01-01": 1914.47177312122, - "2026-01-01": 1868.43226435551, - "2025-01-01": 1840.30028434856, - "2024-01-01": 1800.36185910768, - "2023-01-01": 1703, - "2015-01-01": 1703 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2681.64795225504, - "2034-01-01": 2629.72027256758, - "2033-01-01": 2578.43367534539, - "2032-01-01": 2528.42924305376, - "2031-01-01": 2479.70697569268, - "2030-01-01": 2431.62579079688, - "2029-01-01": 2384.18568836636, - "2028-01-01": 2337.38666840112, - "2027-01-01": 2289.9465659706, - "2026-01-01": 2234.87758220327, - "2025-01-01": 2201.22823207164, - "2024-01-01": 2153.45690370073, - "2023-01-01": 2037, - "2015-01-01": 2037 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 718.792234625062, - "2034-01-01": 704.873475121206, - "2033-01-01": 691.126552154434, - "2032-01-01": 677.723302261832, - "2031-01-01": 664.6637254434, - "2030-01-01": 651.775985162051, - "2029-01-01": 639.060081417788, - "2028-01-01": 626.516014210609, - "2027-01-01": 613.800110466345, - "2026-01-01": 599.039351930774, - "2025-01-01": 590.01993849343, - "2024-01-01": 577.215252538339, - "2023-01-01": 546, - "2015-01-01": 546 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 987.351970638822, - "2034-01-01": 968.232795496162, - "2033-01-01": 949.349659552794, - "2032-01-01": 930.938602008011, - "2031-01-01": 912.999622861813, - "2030-01-01": 895.296682914906, - "2029-01-01": 877.829782167291, - "2028-01-01": 860.598920618968, - "2027-01-01": 843.132019871353, - "2026-01-01": 822.856252652163, - "2025-01-01": 810.466948479986, - "2024-01-01": 792.87809414607, - "2023-01-01": 750, - "2015-01-01": 750 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1120.31536935152, - "2034-01-01": 1098.62147862298, - "2033-01-01": 1077.1954137059, - "2032-01-01": 1056.30500041176, - "2031-01-01": 1035.95023874054, - "2030-01-01": 1015.86330288078, - "2029-01-01": 996.044192832486, - "2028-01-01": 976.492908595656, - "2027-01-01": 956.673798547362, - "2026-01-01": 933.667561342654, - "2025-01-01": 919.609830875291, - "2024-01-01": 899.652344157741, - "2023-01-01": 851, - "2015-01-01": 851 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1230.89879006306, - "2034-01-01": 1207.06355171855, - "2033-01-01": 1183.52257557582, - "2032-01-01": 1160.57012383665, - "2031-01-01": 1138.20619650106, - "2030-01-01": 1116.13653136725, - "2029-01-01": 1094.36112843522, - "2028-01-01": 1072.87998770498, - "2027-01-01": 1051.10458477295, - "2026-01-01": 1025.8274616397, - "2025-01-01": 1010.38212910505, - "2024-01-01": 988.454690702101, - "2023-01-01": 935, - "2015-01-01": 935 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1327.00104853858, - "2034-01-01": 1301.30487714684, - "2033-01-01": 1275.92594243896, - "2032-01-01": 1251.18148109877, - "2031-01-01": 1227.07149312628, - "2030-01-01": 1203.27874183763, - "2029-01-01": 1179.80322723284, - "2028-01-01": 1156.64494931189, - "2027-01-01": 1133.1694347071, - "2026-01-01": 1105.91880356451, - "2025-01-01": 1089.2675787571, - "2024-01-01": 1065.62815853232, - "2023-01-01": 1008, - "2015-01-01": 1008 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1412.57155266061, - "2034-01-01": 1385.21838608984, - "2033-01-01": 1358.20291293353, - "2032-01-01": 1331.86282660613, - "2031-01-01": 1306.19812710763, - "2030-01-01": 1280.87112102359, - "2029-01-01": 1255.881808354, - "2028-01-01": 1231.23018909887, - "2027-01-01": 1206.24087642928, - "2026-01-01": 1177.23301212769, - "2025-01-01": 1159.50804762537, - "2024-01-01": 1134.34426002498, - "2023-01-01": 1073, - "2015-01-01": 1073 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1490.24324101753, - "2034-01-01": 1461.38603266887, - "2033-01-01": 1432.88508615168, - "2032-01-01": 1405.09666329743, - "2031-01-01": 1378.0207641061, - "2030-01-01": 1351.30112674623, - "2029-01-01": 1324.93775121783, - "2028-01-01": 1298.9306375209, - "2027-01-01": 1272.5672619925, - "2026-01-01": 1241.96437066966, - "2025-01-01": 1223.26478090579, - "2024-01-01": 1196.71733676447, - "2023-01-01": 1132, - "2015-01-01": 1132 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1561.33258290352, - "2034-01-01": 1531.0987939446, - "2033-01-01": 1501.23826163949, - "2032-01-01": 1472.124242642, - "2031-01-01": 1443.75673695215, - "2030-01-01": 1415.7624879161, - "2029-01-01": 1388.14149553388, - "2028-01-01": 1360.89375980546, - "2027-01-01": 1333.27276742323, - "2026-01-01": 1301.21002086062, - "2025-01-01": 1281.61840119635, - "2024-01-01": 1253.80455954299, - "2023-01-01": 1186, - "2015-01-01": 1186 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1627.15604761278, - "2034-01-01": 1595.64764697767, - "2033-01-01": 1564.52823894301, - "2032-01-01": 1534.1868161092, - "2031-01-01": 1504.62337847627, - "2030-01-01": 1475.44893344376, - "2029-01-01": 1446.66348101169, - "2028-01-01": 1418.26702118006, - "2027-01-01": 1389.48156874799, - "2026-01-01": 1356.06710437076, - "2025-01-01": 1335.64953109502, - "2024-01-01": 1306.66309915272, - "2023-01-01": 1236, - "2015-01-01": 1236 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1714.04302102899, - "2034-01-01": 1680.85213298134, - "2033-01-01": 1648.07100898365, - "2032-01-01": 1616.10941308591, - "2031-01-01": 1584.96734528811, - "2030-01-01": 1554.23504154028, - "2029-01-01": 1523.91250184242, - "2028-01-01": 1493.99972619453, - "2027-01-01": 1463.67718649667, - "2026-01-01": 1428.47845460415, - "2025-01-01": 1406.97062256126, - "2024-01-01": 1376.43637143758, - "2023-01-01": 1302, - "2015-01-01": 1302 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1825.94291103473, - "2034-01-01": 1790.58518313757, - "2033-01-01": 1755.66397039963, - "2032-01-01": 1721.61578798015, - "2031-01-01": 1688.44063587911, - "2030-01-01": 1655.7019989373, - "2029-01-01": 1623.39987715471, - "2028-01-01": 1591.53427053134, - "2027-01-01": 1559.23214874876, - "2026-01-01": 1521.7354965714, - "2025-01-01": 1498.82354338899, - "2024-01-01": 1466.29588877413, - "2023-01-01": 1387, - "2015-01-01": 1387 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1928.62751598116, - "2034-01-01": 1891.28139386917, - "2033-01-01": 1854.39633499313, - "2032-01-01": 1818.43340258898, - "2031-01-01": 1783.39259665674, - "2030-01-01": 1748.81285396045, - "2029-01-01": 1714.69417450011, - "2028-01-01": 1681.03655827572, - "2027-01-01": 1646.91787881538, - "2026-01-01": 1607.31254684722, - "2025-01-01": 1583.11210603091, - "2024-01-01": 1548.75521056532, - "2023-01-01": 1465, - "2015-01-01": 1465 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2020.78036657412, - "2034-01-01": 1981.64978811548, - "2033-01-01": 1943.00230321805, - "2032-01-01": 1905.32100544306, - "2031-01-01": 1868.60589479051, - "2030-01-01": 1832.37387769917, - "2029-01-01": 1796.62495416905, - "2028-01-01": 1761.35912420015, - "2027-01-01": 1725.61020067004, - "2026-01-01": 1684.11246376143, - "2025-01-01": 1658.75568788904, - "2024-01-01": 1622.75716601896, - "2023-01-01": 1535, - "2015-01-01": 1535 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2107.66733999034, - "2034-01-01": 2066.85427411914, - "2033-01-01": 2026.5450732587, - "2032-01-01": 1987.24360241977, - "2031-01-01": 1948.94986160235, - "2030-01-01": 1911.15998579569, - "2029-01-01": 1873.87397499978, - "2028-01-01": 1837.09182921462, - "2027-01-01": 1799.80581841872, - "2026-01-01": 1756.52381399482, - "2025-01-01": 1730.07677935528, - "2024-01-01": 1692.53043830381, - "2023-01-01": 1601, - "2015-01-01": 1601 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2197.18725199492, - "2034-01-01": 2154.64071424413, - "2033-01-01": 2112.61944239149, - "2032-01-01": 2071.64870233516, - "2031-01-01": 2031.72849407515, - "2030-01-01": 1992.3335517133, - "2029-01-01": 1953.46387524961, - "2028-01-01": 1915.11946468408, - "2027-01-01": 1876.24978822038, - "2026-01-01": 1831.12944756861, - "2025-01-01": 1803.55911601746, - "2024-01-01": 1764.41805217306, - "2023-01-01": 1669, - "2015-01-01": 1669 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2291.97304117625, - "2034-01-01": 2247.59106261176, - "2033-01-01": 2203.75700970855, - "2032-01-01": 2161.01880812793, - "2031-01-01": 2119.37645786989, - "2030-01-01": 2078.28203327313, - "2029-01-01": 2037.73553433767, - "2028-01-01": 1997.7369610635, - "2027-01-01": 1957.19046212803, - "2026-01-01": 1910.12364782322, - "2025-01-01": 1881.36394307154, - "2024-01-01": 1840.53434921108, - "2023-01-01": 1741, - "2015-01-01": 1741 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2380.17648388665, - "2034-01-01": 2334.08652567608, - "2033-01-01": 2288.56557929527, - "2032-01-01": 2244.18265657398, - "2031-01-01": 2200.93775751221, - "2030-01-01": 2158.2618702802, - "2029-01-01": 2116.15499487795, - "2028-01-01": 2074.61713130546, - "2027-01-01": 2032.51025590321, - "2026-01-01": 1983.63213972681, - "2025-01-01": 1953.76565713575, - "2024-01-01": 1911.36479228813, - "2023-01-01": 1808, - "2015-01-01": 1808 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2464.4305187145, - "2034-01-01": 2416.70905755842, - "2033-01-01": 2369.57675024377, - "2032-01-01": 2323.622750612, - "2031-01-01": 2278.84705866308, - "2030-01-01": 2234.6605205556, - "2029-01-01": 2191.06313628956, - "2028-01-01": 2148.05490586494, - "2027-01-01": 2104.4575215989, - "2026-01-01": 2053.8492066198, - "2025-01-01": 2022.92550340605, - "2024-01-01": 1979.02372298859, - "2023-01-01": 1872, - "2015-01-01": 1872 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2946.25828038624, - "2034-01-01": 2889.20666176055, - "2033-01-01": 2832.85938410554, - "2032-01-01": 2777.92078839191, - "2031-01-01": 2724.39087461965, - "2030-01-01": 2671.56530181808, - "2029-01-01": 2619.4440699872, - "2028-01-01": 2568.027179127, - "2027-01-01": 2515.90594729612, - "2026-01-01": 2455.40305791405, - "2025-01-01": 2418.43337426428, - "2024-01-01": 2365.94823293187, - "2023-01-01": 2238, - "2015-01-01": 2238 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 772.767475686651, - "2034-01-01": 757.803534608329, - "2033-01-01": 743.024333543321, - "2032-01-01": 728.614612504937, - "2031-01-01": 714.574371493179, - "2030-01-01": 700.718870494733, - "2029-01-01": 687.048109509599, - "2028-01-01": 673.562088537779, - "2027-01-01": 659.891327552646, - "2026-01-01": 644.022160409093, - "2025-01-01": 634.325465010336, - "2024-01-01": 620.559255018324, - "2023-01-01": 587, - "2015-01-01": 587 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1059.757781819, - "2034-01-01": 1039.23653383255, - "2033-01-01": 1018.96863458667, - "2032-01-01": 999.207432821932, - "2031-01-01": 979.952928538345, - "2030-01-01": 960.951772995332, - "2029-01-01": 942.203966192892, - "2028-01-01": 923.709508131026, - "2027-01-01": 904.961701328586, - "2026-01-01": 883.199044513321, - "2025-01-01": 869.901191368519, - "2024-01-01": 851.022487716782, - "2023-01-01": 805, - "2015-01-01": 805 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1200.61999629681, - "2034-01-01": 1177.37107932333, - "2033-01-01": 1154.4091860162, - "2032-01-01": 1132.02134004174, - "2031-01-01": 1110.20754139996, - "2030-01-01": 1088.68076642453, - "2029-01-01": 1067.44101511543, - "2028-01-01": 1046.48828747267, - "2027-01-01": 1025.24853616357, - "2026-01-01": 1000.59320322503, - "2025-01-01": 985.527809351663, - "2024-01-01": 964.139762481622, - "2023-01-01": 912, - "2015-01-01": 912 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1319.10223277347, - "2034-01-01": 1293.55901478287, - "2033-01-01": 1268.33114516253, - "2032-01-01": 1243.7339722827, - "2031-01-01": 1219.76749614338, - "2030-01-01": 1196.11636837431, - "2029-01-01": 1172.7805889755, - "2028-01-01": 1149.76015794694, - "2027-01-01": 1126.42437854813, - "2026-01-01": 1099.33595354329, - "2025-01-01": 1082.78384316926, - "2024-01-01": 1059.28513377915, - "2023-01-01": 1002, - "2015-01-01": 1002 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1423.10330701409, - "2034-01-01": 1395.54620257513, - "2033-01-01": 1368.32930930209, - "2032-01-01": 1341.79283836088, - "2031-01-01": 1315.93678975149, - "2030-01-01": 1290.42095230802, - "2029-01-01": 1265.24532603045, - "2028-01-01": 1240.40991091881, - "2027-01-01": 1215.23428464124, - "2026-01-01": 1186.01014548932, - "2025-01-01": 1168.15302840915, - "2024-01-01": 1142.80162636254, - "2023-01-01": 1081, - "2015-01-01": 1081 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1513.93968831286, - "2034-01-01": 1484.62361976078, - "2033-01-01": 1455.66947798095, - "2032-01-01": 1427.43918974562, - "2031-01-01": 1399.93275505478, - "2030-01-01": 1372.78824713619, - "2029-01-01": 1346.00566598985, - "2028-01-01": 1319.58501161575, - "2027-01-01": 1292.80243046941, - "2026-01-01": 1261.71292073332, - "2025-01-01": 1242.71598766931, - "2024-01-01": 1215.74641102397, - "2023-01-01": 1150, - "2015-01-01": 1150 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1596.87725384652, - "2034-01-01": 1565.95517458246, - "2033-01-01": 1535.41484938339, - "2032-01-01": 1505.63803231429, - "2031-01-01": 1476.62472337517, - "2030-01-01": 1447.99316850104, - "2029-01-01": 1419.7433676919, - "2028-01-01": 1391.87532094774, - "2027-01-01": 1363.6255201386, - "2026-01-01": 1330.8328459561, - "2025-01-01": 1310.79521134163, - "2024-01-01": 1282.34817093224, - "2023-01-01": 1213, - "2015-01-01": 1213 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1673.23247290926, - "2034-01-01": 1640.83184410083, - "2033-01-01": 1608.83122305547, - "2032-01-01": 1577.63061753624, - "2031-01-01": 1547.23002754315, - "2030-01-01": 1517.22944531313, - "2029-01-01": 1487.62887084617, - "2028-01-01": 1458.42830414228, - "2027-01-01": 1428.82772967532, - "2026-01-01": 1394.46706282787, - "2025-01-01": 1373.47132202408, - "2024-01-01": 1343.66407687954, - "2023-01-01": 1271, - "2015-01-01": 1271 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1743.00534550107, - "2034-01-01": 1709.25362831589, - "2033-01-01": 1675.9185989972, - "2032-01-01": 1643.41694541148, - "2031-01-01": 1611.74866755872, - "2030-01-01": 1580.49707757245, - "2029-01-01": 1549.66217545266, - "2028-01-01": 1519.24396119935, - "2027-01-01": 1488.40905907956, - "2026-01-01": 1452.61557134862, - "2025-01-01": 1430.74431971667, - "2024-01-01": 1399.69412886586, - "2023-01-01": 1324, - "2015-01-01": 1324 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1836.47466538821, - "2034-01-01": 1800.91299962286, - "2033-01-01": 1765.7903667682, - "2032-01-01": 1731.5457997349, - "2031-01-01": 1698.17929852297, - "2030-01-01": 1665.25183022172, - "2029-01-01": 1632.76339483116, - "2028-01-01": 1600.71399235128, - "2027-01-01": 1568.22555696072, - "2026-01-01": 1530.51262993302, - "2025-01-01": 1507.46852417277, - "2024-01-01": 1474.75325511169, - "2023-01-01": 1395, - "2015-01-01": 1395 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1954.95690186487, - "2034-01-01": 1917.1009350824, - "2033-01-01": 1879.71232591453, - "2032-01-01": 1843.25843197586, - "2031-01-01": 1807.73925326639, - "2030-01-01": 1772.68743217151, - "2029-01-01": 1738.10296869124, - "2028-01-01": 1703.98586282556, - "2027-01-01": 1669.40139934528, - "2026-01-01": 1629.25538025128, - "2025-01-01": 1604.72455799037, - "2024-01-01": 1569.89862640922, - "2023-01-01": 1485, - "2015-01-01": 1485 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2064.22385328223, - "2034-01-01": 2024.25203111731, - "2033-01-01": 1984.77368823838, - "2032-01-01": 1946.28230393142, - "2031-01-01": 1908.77787819643, - "2030-01-01": 1871.76693174743, - "2029-01-01": 1835.24946458442, - "2028-01-01": 1799.22547670739, - "2027-01-01": 1762.70800954438, - "2026-01-01": 1720.31813887812, - "2025-01-01": 1694.41623362216, - "2024-01-01": 1657.64380216138, - "2023-01-01": 1568, - "2015-01-01": 1568 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2164.2755196403, - "2034-01-01": 2122.36628772759, - "2033-01-01": 2080.97445373973, - "2032-01-01": 2040.61741560156, - "2031-01-01": 2001.29517331309, - "2030-01-01": 1962.49032894947, - "2029-01-01": 1924.2028825107, - "2028-01-01": 1886.43283399678, - "2027-01-01": 1848.14538755801, - "2026-01-01": 1803.70090581354, - "2025-01-01": 1776.54355106813, - "2024-01-01": 1737.98878236819, - "2023-01-01": 1644, - "2015-01-01": 1644 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2256.42837023325, - "2034-01-01": 2212.7346819739, - "2033-01-01": 2169.58042196465, - "2032-01-01": 2127.50501845564, - "2031-01-01": 2086.50847144686, - "2030-01-01": 2046.0513526882, - "2029-01-01": 2006.13366217965, - "2028-01-01": 1966.75539992121, - "2027-01-01": 1926.83770941267, - "2026-01-01": 1880.50082272774, - "2025-01-01": 1852.18713292626, - "2024-01-01": 1811.99073782182, - "2023-01-01": 1714, - "2015-01-01": 1714 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2351.21415941458, - "2034-01-01": 2305.68503034153, - "2033-01-01": 2260.71798928172, - "2032-01-01": 2216.87512424841, - "2031-01-01": 2174.1564352416, - "2030-01-01": 2131.99983424803, - "2029-01-01": 2090.40532126771, - "2028-01-01": 2049.37289630064, - "2027-01-01": 2007.77838332032, - "2026-01-01": 1959.49502298235, - "2025-01-01": 1929.99195998034, - "2024-01-01": 1888.10703485984, - "2023-01-01": 1786, - "2015-01-01": 1786 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2452.58229506683, - "2034-01-01": 2405.09026401247, - "2033-01-01": 2358.18455432914, - "2032-01-01": 2312.4514873879, - "2031-01-01": 2267.89106318874, - "2030-01-01": 2223.91696036063, - "2029-01-01": 2180.52917890355, - "2028-01-01": 2137.72771881752, - "2027-01-01": 2094.33993736044, - "2026-01-01": 2043.97493158797, - "2025-01-01": 2013.19990002429, - "2024-01-01": 1969.50918585884, - "2023-01-01": 1863, - "2015-01-01": 1863 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2547.36808424816, - "2034-01-01": 2498.0406123801, - "2033-01-01": 2449.32212164621, - "2032-01-01": 2401.82159318067, - "2031-01-01": 2355.53902698348, - "2030-01-01": 2309.86544192046, - "2029-01-01": 2264.80083799161, - "2028-01-01": 2220.34521519694, - "2027-01-01": 2175.28061126809, - "2026-01-01": 2122.96913184258, - "2025-01-01": 2091.00472707837, - "2024-01-01": 2045.62548289686, - "2023-01-01": 1935, - "2015-01-01": 1935 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2636.88799625275, - "2034-01-01": 2585.82705250508, - "2033-01-01": 2535.396490779, - "2032-01-01": 2486.22669309606, - "2031-01-01": 2438.31765945628, - "2030-01-01": 2391.03900783807, - "2029-01-01": 2344.39073824144, - "2028-01-01": 2298.37285066639, - "2027-01-01": 2251.72458106976, - "2026-01-01": 2197.57476541638, - "2025-01-01": 2164.48706374055, - "2024-01-01": 2117.51309676611, - "2023-01-01": 2003, - "2015-01-01": 2003 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3150.31102098493, - "2034-01-01": 3089.30810616309, - "2033-01-01": 3029.05831374645, - "2032-01-01": 2970.31476614023, - "2031-01-01": 2913.07746334442, - "2030-01-01": 2856.59328295383, - "2029-01-01": 2800.86222496844, - "2028-01-01": 2745.88428938825, - "2027-01-01": 2690.15323140286, - "2026-01-01": 2625.4600167955, - "2025-01-01": 2585.92987695014, - "2024-01-01": 2529.80970572206, - "2023-01-01": 2393, - "2015-01-01": 2393 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 816.210962394759, - "2034-01-01": 800.405777610161, - "2033-01-01": 784.795718563643, - "2032-01-01": 769.575910993289, - "2031-01-01": 754.746354899098, - "2030-01-01": 740.111924542989, - "2029-01-01": 725.67261992496, - "2028-01-01": 711.428441045014, - "2027-01-01": 696.989136426985, - "2026-01-01": 680.227835525788, - "2025-01-01": 669.986010743455, - "2024-01-01": 655.445891160751, - "2023-01-01": 620, - "2015-01-01": 620 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1118.99890005733, - "2034-01-01": 1097.33050156232, - "2033-01-01": 1075.92961415983, - "2032-01-01": 1055.06374894241, - "2031-01-01": 1034.73290591005, - "2030-01-01": 1014.66957397023, - "2029-01-01": 994.873753122929, - "2028-01-01": 975.345443368164, - "2027-01-01": 955.549622520867, - "2026-01-01": 932.570419672451, - "2025-01-01": 918.529208277318, - "2024-01-01": 898.595173365546, - "2023-01-01": 850, - "2015-01-01": 850 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1269.07639959443, - "2034-01-01": 1244.50188647773, - "2033-01-01": 1220.23076241186, - "2032-01-01": 1196.56641644763, - "2031-01-01": 1173.50884858505, - "2030-01-01": 1150.75466977329, - "2029-01-01": 1128.30388001236, - "2028-01-01": 1106.15647930225, - "2027-01-01": 1083.70568954131, - "2026-01-01": 1057.64457007558, - "2025-01-01": 1041.72018444628, - "2024-01-01": 1019.11264367575, - "2023-01-01": 964, - "2015-01-01": 964 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1392.82451324783, - "2034-01-01": 1365.85373017992, - "2033-01-01": 1339.21591974248, - "2032-01-01": 1313.24405456597, - "2031-01-01": 1287.9381346504, - "2030-01-01": 1262.96518736529, - "2029-01-01": 1238.32521271066, - "2028-01-01": 1214.01821068649, - "2027-01-01": 1189.37823603186, - "2026-01-01": 1160.77588707465, - "2025-01-01": 1143.29870865577, - "2024-01-01": 1118.48669814206, - "2023-01-01": 1058, - "2015-01-01": 1058 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1502.09146466519, - "2034-01-01": 1473.00482621483, - "2033-01-01": 1444.27728206632, - "2032-01-01": 1416.26792652152, - "2031-01-01": 1388.97675958044, - "2030-01-01": 1362.04468694121, - "2029-01-01": 1335.47170860384, - "2028-01-01": 1309.25782456832, - "2027-01-01": 1282.68484623095, - "2026-01-01": 1251.83864570149, - "2025-01-01": 1232.99038428755, - "2024-01-01": 1206.23187389422, - "2023-01-01": 1141, - "2015-01-01": 1141 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1598.19372314071, - "2034-01-01": 1567.24615164312, - "2033-01-01": 1536.68064892946, - "2032-01-01": 1506.87928378363, - "2031-01-01": 1477.84205620565, - "2030-01-01": 1449.18689741159, - "2029-01-01": 1420.91380740145, - "2028-01-01": 1393.02278617524, - "2027-01-01": 1364.7496961651, - "2026-01-01": 1331.9299876263, - "2025-01-01": 1311.8758339396, - "2024-01-01": 1283.40534172444, - "2023-01-01": 1214, - "2015-01-01": 1214 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1685.08069655692, - "2034-01-01": 1652.45063764678, - "2033-01-01": 1620.2234189701, - "2032-01-01": 1588.80188076034, - "2031-01-01": 1558.18602301749, - "2030-01-01": 1527.97300550811, - "2029-01-01": 1498.16282823218, - "2028-01-01": 1468.75549118971, - "2027-01-01": 1438.94531391378, - "2026-01-01": 1404.34133785969, - "2025-01-01": 1383.19692540584, - "2024-01-01": 1353.17861400929, - "2023-01-01": 1280, - "2015-01-01": 1280 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1765.38532350221, - "2034-01-01": 1731.20023834714, - "2033-01-01": 1697.4371912804, - "2032-01-01": 1664.51822039032, - "2031-01-01": 1632.44332567692, - "2030-01-01": 1600.79046905185, - "2029-01-01": 1569.55965051512, - "2028-01-01": 1538.75087006671, - "2027-01-01": 1507.52005152998, - "2026-01-01": 1471.26697974207, - "2025-01-01": 1449.11490388222, - "2024-01-01": 1417.66603233317, - "2023-01-01": 1341, - "2015-01-01": 1341 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1839.10760397658, - "2034-01-01": 1803.49495374418, - "2033-01-01": 1768.32196586034, - "2032-01-01": 1734.02830267359, - "2031-01-01": 1700.61396418394, - "2030-01-01": 1667.63928804283, - "2029-01-01": 1635.10427425027, - "2028-01-01": 1603.00892280626, - "2027-01-01": 1570.47390901371, - "2026-01-01": 1532.70691327343, - "2025-01-01": 1509.62976936872, - "2024-01-01": 1476.86759669608, - "2023-01-01": 1397, - "2015-01-01": 1397 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1937.84280104046, - "2034-01-01": 1900.3182332938, - "2033-01-01": 1863.25693181562, - "2032-01-01": 1827.12216287439, - "2031-01-01": 1791.91392647012, - "2030-01-01": 1757.16895633432, - "2029-01-01": 1722.887252467, - "2028-01-01": 1689.06881486816, - "2027-01-01": 1654.78711100084, - "2026-01-01": 1614.99253853864, - "2025-01-01": 1590.67646421672, - "2024-01-01": 1556.15540611069, - "2023-01-01": 1472, - "2015-01-01": 1472 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2062.90738398804, - "2034-01-01": 2022.96105405665, - "2033-01-01": 1983.50788869231, - "2032-01-01": 1945.04105246207, - "2031-01-01": 1907.56054536595, - "2030-01-01": 1870.57320283688, - "2029-01-01": 1834.07902487486, - "2028-01-01": 1798.0780114799, - "2027-01-01": 1761.58383351788, - "2026-01-01": 1719.22099720792, - "2025-01-01": 1693.33561102418, - "2024-01-01": 1656.58663136919, - "2023-01-01": 1567, - "2015-01-01": 1567 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2177.44021258215, - "2034-01-01": 2135.2760583342, - "2033-01-01": 2093.63244920043, - "2032-01-01": 2053.029930295, - "2031-01-01": 2013.46850161792, - "2030-01-01": 1974.42761805501, - "2029-01-01": 1935.90727960626, - "2028-01-01": 1897.9074862717, - "2027-01-01": 1859.38714782296, - "2026-01-01": 1814.67232251557, - "2025-01-01": 1787.34977704786, - "2024-01-01": 1748.56049029013, - "2023-01-01": 1654, - "2015-01-01": 1654 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2281.44128682277, - "2034-01-01": 2237.26324612646, - "2033-01-01": 2193.63061333999, - "2032-01-01": 2151.08879637318, - "2031-01-01": 2109.63779522603, - "2030-01-01": 2068.73220198871, - "2029-01-01": 2028.37201666122, - "2028-01-01": 1988.55723924356, - "2027-01-01": 1948.19705391607, - "2026-01-01": 1901.3465144616, - "2025-01-01": 1872.71896228776, - "2024-01-01": 1832.07698287352, - "2023-01-01": 1733, - "2015-01-01": 1733 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2378.86001459247, - "2034-01-01": 2332.79554861542, - "2033-01-01": 2287.2997797492, - "2032-01-01": 2242.94140510464, - "2031-01-01": 2199.72042468173, - "2030-01-01": 2157.06814136965, - "2029-01-01": 2114.98455516839, - "2028-01-01": 2073.46966607797, - "2027-01-01": 2031.38607987671, - "2026-01-01": 1982.53499805661, - "2025-01-01": 1952.68503453778, - "2024-01-01": 1910.30762149593, - "2023-01-01": 1807, - "2015-01-01": 1807 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2480.22815024472, - "2034-01-01": 2432.20078228636, - "2033-01-01": 2384.76634479662, - "2032-01-01": 2338.51776824412, - "2031-01-01": 2293.45505262887, - "2030-01-01": 2248.98526748224, - "2029-01-01": 2205.10841280423, - "2028-01-01": 2161.82448859485, - "2027-01-01": 2117.94763391684, - "2026-01-01": 2067.01490666223, - "2025-01-01": 2035.89297458173, - "2024-01-01": 1991.70977249493, - "2023-01-01": 1884, - "2015-01-01": 1884 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2585.54569377953, - "2034-01-01": 2535.47894713928, - "2033-01-01": 2486.03030848225, - "2032-01-01": 2437.81788579165, - "2031-01-01": 2390.84167906747, - "2030-01-01": 2344.4835803265, - "2029-01-01": 2298.74358956875, - "2028-01-01": 2253.6217067942, - "2027-01-01": 2207.88171603645, - "2026-01-01": 2154.78624027846, - "2025-01-01": 2122.34278241959, - "2024-01-01": 2076.28343587051, - "2023-01-01": 1964, - "2015-01-01": 1964 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2685.59736013759, - "2034-01-01": 2633.59320374956, - "2033-01-01": 2582.2310739836, - "2032-01-01": 2532.15299746179, - "2031-01-01": 2483.35897418413, - "2030-01-01": 2435.20697752854, - "2029-01-01": 2387.69700749503, - "2028-01-01": 2340.82906408359, - "2027-01-01": 2293.31909405008, - "2026-01-01": 2238.16900721388, - "2025-01-01": 2204.47009986556, - "2024-01-01": 2156.62841607731, - "2023-01-01": 2040, - "2015-01-01": 2040 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2779.06668002474, - "2034-01-01": 2725.25257505653, - "2033-01-01": 2672.1028417546, - "2032-01-01": 2620.28185178522, - "2031-01-01": 2569.78960514838, - "2030-01-01": 2519.96173017782, - "2029-01-01": 2470.79822687353, - "2028-01-01": 2422.29909523552, - "2027-01-01": 2373.13559193124, - "2026-01-01": 2316.06606579829, - "2025-01-01": 2281.19430432167, - "2024-01-01": 2231.68754232314, - "2023-01-01": 2111, - "2015-01-01": 2111 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3320.13555993481, - "2034-01-01": 3255.84414698843, - "2033-01-01": 3192.34645518953, - "2032-01-01": 3130.43620568561, - "2031-01-01": 3070.11339847665, - "2030-01-01": 3010.58431241519, - "2029-01-01": 2951.84894750121, - "2028-01-01": 2893.90730373472, - "2027-01-01": 2835.17193882074, - "2026-01-01": 2766.99129225167, - "2025-01-01": 2725.3301920887, - "2024-01-01": 2666.18473791519, - "2023-01-01": 2522, - "2015-01-01": 2522 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 878.085019221459, - "2034-01-01": 861.081699461253, - "2033-01-01": 844.288297228952, - "2032-01-01": 827.914730052458, - "2031-01-01": 811.960997931772, - "2030-01-01": 796.21718333899, - "2029-01-01": 780.68328627411, - "2028-01-01": 765.359306737136, - "2027-01-01": 749.825409672257, - "2026-01-01": 731.793494025323, - "2025-01-01": 720.775272848201, - "2024-01-01": 705.132918393905, - "2023-01-01": 667, - "2015-01-01": 667 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1203.25293488518, - "2034-01-01": 1179.95303344466, - "2033-01-01": 1156.94078510834, - "2032-01-01": 1134.50384298043, - "2031-01-01": 1112.64220706093, - "2030-01-01": 1091.06822424563, - "2029-01-01": 1069.78189453454, - "2028-01-01": 1048.78321792765, - "2027-01-01": 1027.49688821656, - "2026-01-01": 1002.78748656544, - "2025-01-01": 987.68905454761, - "2024-01-01": 966.254104066011, - "2023-01-01": 914, - "2015-01-01": 914 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1362.54571948157, - "2034-01-01": 1336.1612577847, - "2033-01-01": 1310.10253018286, - "2032-01-01": 1284.69527077106, - "2031-01-01": 1259.9394795493, - "2030-01-01": 1235.50942242257, - "2029-01-01": 1211.40509939086, - "2028-01-01": 1187.62651045418, - "2027-01-01": 1163.52218742247, - "2026-01-01": 1135.54162865998, - "2025-01-01": 1118.44438890238, - "2024-01-01": 1094.17176992158, - "2023-01-01": 1035, - "2015-01-01": 1035 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1495.50911819427, - "2034-01-01": 1466.54994091152, - "2033-01-01": 1437.94828433597, - "2032-01-01": 1410.0616691748, - "2031-01-01": 1382.89009542803, - "2030-01-01": 1356.07604238844, - "2029-01-01": 1329.61951005606, - "2028-01-01": 1303.52049843086, - "2027-01-01": 1277.06396609848, - "2026-01-01": 1246.35293735048, - "2025-01-01": 1227.58727129769, - "2024-01-01": 1200.94601993325, - "2023-01-01": 1136, - "2015-01-01": 1136 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1612.67488537674, - "2034-01-01": 1581.4468993104, - "2033-01-01": 1550.60444393623, - "2032-01-01": 1520.53304994642, - "2031-01-01": 1491.23271734096, - "2030-01-01": 1462.31791542768, - "2029-01-01": 1433.78864420657, - "2028-01-01": 1405.64490367765, - "2027-01-01": 1377.11563245654, - "2026-01-01": 1343.99854599853, - "2025-01-01": 1323.76268251731, - "2024-01-01": 1295.03422043858, - "2023-01-01": 1225, - "2015-01-01": 1225 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1715.35949032318, - "2034-01-01": 1682.143110042, - "2033-01-01": 1649.33680852972, - "2032-01-01": 1617.35066455525, - "2031-01-01": 1586.18467811859, - "2030-01-01": 1555.42877045083, - "2029-01-01": 1525.08294155197, - "2028-01-01": 1495.14719142202, - "2027-01-01": 1464.80136252316, - "2026-01-01": 1429.57559627436, - "2025-01-01": 1408.05124515923, - "2024-01-01": 1377.49354222977, - "2023-01-01": 1303, - "2015-01-01": 1303 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1808.82881021032, - "2034-01-01": 1773.80248134897, - "2033-01-01": 1739.20857630072, - "2032-01-01": 1705.47951887868, - "2031-01-01": 1672.61530908284, - "2030-01-01": 1640.18352310011, - "2029-01-01": 1608.18416093048, - "2028-01-01": 1576.61722257395, - "2027-01-01": 1544.61786040432, - "2026-01-01": 1507.47265485876, - "2025-01-01": 1484.77544961534, - "2024-01-01": 1452.5526684756, - "2023-01-01": 1374, - "2015-01-01": 1374 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1894.39931433235, - "2034-01-01": 1857.71599029197, - "2033-01-01": 1821.4855467953, - "2032-01-01": 1786.16086438604, - "2031-01-01": 1751.7419430642, - "2030-01-01": 1717.77590228607, - "2029-01-01": 1684.26274205164, - "2028-01-01": 1651.20246236093, - "2027-01-01": 1617.6893021265, - "2026-01-01": 1578.78686342195, - "2025-01-01": 1555.0159184836, - "2024-01-01": 1521.26876996826, - "2023-01-01": 1439, - "2015-01-01": 1439 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1974.70394127764, - "2034-01-01": 1936.46559099232, - "2033-01-01": 1898.69931910559, - "2032-01-01": 1861.87720401602, - "2031-01-01": 1825.99924572363, - "2030-01-01": 1790.59336582981, - "2029-01-01": 1755.65956433458, - "2028-01-01": 1721.19784123794, - "2027-01-01": 1686.26403974271, - "2026-01-01": 1645.71250530433, - "2025-01-01": 1620.93389695997, - "2024-01-01": 1585.75618829214, - "2023-01-01": 1500, - "2015-01-01": 1500 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2078.70501551827, - "2034-01-01": 2038.45277878459, - "2033-01-01": 1998.69748324515, - "2032-01-01": 1959.9360700942, - "2031-01-01": 1922.16853933174, - "2030-01-01": 1884.89794976351, - "2029-01-01": 1848.12430138954, - "2028-01-01": 1811.8475942098, - "2027-01-01": 1775.07394583582, - "2026-01-01": 1732.38669725035, - "2025-01-01": 1706.30308219986, - "2024-01-01": 1669.27268087553, - "2023-01-01": 1579, - "2015-01-01": 1579 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2212.98488352515, - "2034-01-01": 2170.13243897206, - "2033-01-01": 2127.80903694433, - "2032-01-01": 2086.54371996729, - "2031-01-01": 2046.33648804094, - "2030-01-01": 2006.65829863994, - "2029-01-01": 1967.50915176429, - "2028-01-01": 1928.88904741398, - "2027-01-01": 1889.73990053833, - "2026-01-01": 1844.29514761105, - "2025-01-01": 1816.52658719314, - "2024-01-01": 1777.10410167939, - "2023-01-01": 1681, - "2015-01-01": 1681 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2335.41652788436, - "2034-01-01": 2290.19330561359, - "2033-01-01": 2245.52839472888, - "2032-01-01": 2201.98010661628, - "2031-01-01": 2159.54844127581, - "2030-01-01": 2117.67508732139, - "2029-01-01": 2076.36004475303, - "2028-01-01": 2035.60331357073, - "2027-01-01": 1994.28827100237, - "2026-01-01": 1946.32932293992, - "2025-01-01": 1917.02448880466, - "2024-01-01": 1875.4209853535, - "2023-01-01": 1774, - "2015-01-01": 1774 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2447.31641789009, - "2034-01-01": 2399.92635576982, - "2033-01-01": 2353.12135614486, - "2032-01-01": 2307.48648151052, - "2031-01-01": 2263.02173186681, - "2030-01-01": 2219.14204471841, - "2029-01-01": 2175.84742006532, - "2028-01-01": 2133.13785790755, - "2027-01-01": 2089.84323325446, - "2026-01-01": 2039.58636490716, - "2025-01-01": 2008.87740963239, - "2024-01-01": 1965.28050269006, - "2023-01-01": 1859, - "2015-01-01": 1859 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2551.31749213071, - "2034-01-01": 2501.91354356208, - "2033-01-01": 2453.11952028442, - "2032-01-01": 2405.5453475887, - "2031-01-01": 2359.19102547492, - "2030-01-01": 2313.44662865212, - "2029-01-01": 2268.31215712028, - "2028-01-01": 2223.78761087941, - "2027-01-01": 2178.65313934758, - "2026-01-01": 2126.26055685319, - "2025-01-01": 2094.24659487228, - "2024-01-01": 2048.79699527345, - "2023-01-01": 1938, - "2015-01-01": 1938 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2659.26797425389, - "2034-01-01": 2607.77366253633, - "2033-01-01": 2556.91508306219, - "2032-01-01": 2507.32796807491, - "2031-01-01": 2459.01231757448, - "2030-01-01": 2411.33239931748, - "2029-01-01": 2364.2882133039, - "2028-01-01": 2317.87975953375, - "2027-01-01": 2270.83557352018, - "2026-01-01": 2216.22617380982, - "2025-01-01": 2182.8576479061, - "2024-01-01": 2135.48500023342, - "2023-01-01": 2020, - "2015-01-01": 2020 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2772.48433355381, - "2034-01-01": 2718.79768975322, - "2033-01-01": 2665.77384402425, - "2032-01-01": 2614.0755944385, - "2031-01-01": 2563.70294099597, - "2030-01-01": 2513.99308562506, - "2029-01-01": 2464.94602832575, - "2028-01-01": 2416.56176909806, - "2027-01-01": 2367.51471179876, - "2026-01-01": 2310.58035744727, - "2025-01-01": 2275.7911913318, - "2024-01-01": 2226.40168836217, - "2023-01-01": 2106, - "2015-01-01": 2106 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2879.1183463828, - "2034-01-01": 2823.36683166681, - "2033-01-01": 2768.30360725595, - "2032-01-01": 2714.61696345536, - "2031-01-01": 2662.30690026505, - "2030-01-01": 2610.68512737987, - "2029-01-01": 2559.75164479982, - "2028-01-01": 2509.50645252491, - "2027-01-01": 2458.57296994487, - "2026-01-01": 2399.44883273371, - "2025-01-01": 2363.32162176764, - "2024-01-01": 2312.03252252994, - "2023-01-01": 2187, - "2015-01-01": 2187 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2979.17001274087, - "2034-01-01": 2921.48108827709, - "2033-01-01": 2864.5043727573, - "2032-01-01": 2808.95207512551, - "2031-01-01": 2754.82419538171, - "2030-01-01": 2701.40852458191, - "2029-01-01": 2648.7050627261, - "2028-01-01": 2596.7138098143, - "2027-01-01": 2544.0103479585, - "2026-01-01": 2482.83159966913, - "2025-01-01": 2445.44893921361, - "2024-01-01": 2392.37750273674, - "2023-01-01": 2263, - "2015-01-01": 2263 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.HI.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3557.10003288813, - "2034-01-01": 3488.22001790751, - "2033-01-01": 3420.1903734822, - "2032-01-01": 3353.86147016753, - "2031-01-01": 3289.23330796349, - "2030-01-01": 3225.45551631477, - "2029-01-01": 3162.52809522136, - "2028-01-01": 3100.45104468327, - "2027-01-01": 3037.52362358986, - "2026-01-01": 2964.47679288819, - "2025-01-01": 2919.8422597239, - "2024-01-01": 2856.47548051024, - "2023-01-01": 2702, - "2015-01-01": 2702 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID", - "description": null, - "label": "ID", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 772.767475686651, - "2034-01-01": 757.803534608329, - "2033-01-01": 743.024333543321, - "2032-01-01": 728.614612504937, - "2031-01-01": 714.574371493179, - "2030-01-01": 700.718870494733, - "2029-01-01": 687.048109509599, - "2028-01-01": 673.562088537779, - "2027-01-01": 659.891327552646, - "2026-01-01": 644.022160409093, - "2025-01-01": 634.325465010336, - "2024-01-01": 620.559255018324, - "2023-01-01": 587, - "2015-01-01": 587 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1059.757781819, - "2034-01-01": 1039.23653383255, - "2033-01-01": 1018.96863458667, - "2032-01-01": 999.207432821932, - "2031-01-01": 979.952928538345, - "2030-01-01": 960.951772995332, - "2029-01-01": 942.203966192892, - "2028-01-01": 923.709508131026, - "2027-01-01": 904.961701328586, - "2026-01-01": 883.199044513321, - "2025-01-01": 869.901191368519, - "2024-01-01": 851.022487716782, - "2023-01-01": 805, - "2015-01-01": 805 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1200.61999629681, - "2034-01-01": 1177.37107932333, - "2033-01-01": 1154.4091860162, - "2032-01-01": 1132.02134004174, - "2031-01-01": 1110.20754139996, - "2030-01-01": 1088.68076642453, - "2029-01-01": 1067.44101511543, - "2028-01-01": 1046.48828747267, - "2027-01-01": 1025.24853616357, - "2026-01-01": 1000.59320322503, - "2025-01-01": 985.527809351663, - "2024-01-01": 964.139762481622, - "2023-01-01": 912, - "2015-01-01": 912 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1319.10223277347, - "2034-01-01": 1293.55901478287, - "2033-01-01": 1268.33114516253, - "2032-01-01": 1243.7339722827, - "2031-01-01": 1219.76749614338, - "2030-01-01": 1196.11636837431, - "2029-01-01": 1172.7805889755, - "2028-01-01": 1149.76015794694, - "2027-01-01": 1126.42437854813, - "2026-01-01": 1099.33595354329, - "2025-01-01": 1082.78384316926, - "2024-01-01": 1059.28513377915, - "2023-01-01": 1002, - "2015-01-01": 1002 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1423.10330701409, - "2034-01-01": 1395.54620257513, - "2033-01-01": 1368.32930930209, - "2032-01-01": 1341.79283836088, - "2031-01-01": 1315.93678975149, - "2030-01-01": 1290.42095230802, - "2029-01-01": 1265.24532603045, - "2028-01-01": 1240.40991091881, - "2027-01-01": 1215.23428464124, - "2026-01-01": 1186.01014548932, - "2025-01-01": 1168.15302840915, - "2024-01-01": 1142.80162636254, - "2023-01-01": 1081, - "2015-01-01": 1081 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1513.93968831286, - "2034-01-01": 1484.62361976078, - "2033-01-01": 1455.66947798095, - "2032-01-01": 1427.43918974562, - "2031-01-01": 1399.93275505478, - "2030-01-01": 1372.78824713619, - "2029-01-01": 1346.00566598985, - "2028-01-01": 1319.58501161575, - "2027-01-01": 1292.80243046941, - "2026-01-01": 1261.71292073332, - "2025-01-01": 1242.71598766931, - "2024-01-01": 1215.74641102397, - "2023-01-01": 1150, - "2015-01-01": 1150 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1596.87725384652, - "2034-01-01": 1565.95517458246, - "2033-01-01": 1535.41484938339, - "2032-01-01": 1505.63803231429, - "2031-01-01": 1476.62472337517, - "2030-01-01": 1447.99316850104, - "2029-01-01": 1419.7433676919, - "2028-01-01": 1391.87532094774, - "2027-01-01": 1363.6255201386, - "2026-01-01": 1330.8328459561, - "2025-01-01": 1310.79521134163, - "2024-01-01": 1282.34817093224, - "2023-01-01": 1213, - "2015-01-01": 1213 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1673.23247290926, - "2034-01-01": 1640.83184410083, - "2033-01-01": 1608.83122305547, - "2032-01-01": 1577.63061753624, - "2031-01-01": 1547.23002754315, - "2030-01-01": 1517.22944531313, - "2029-01-01": 1487.62887084617, - "2028-01-01": 1458.42830414228, - "2027-01-01": 1428.82772967532, - "2026-01-01": 1394.46706282787, - "2025-01-01": 1373.47132202408, - "2024-01-01": 1343.66407687954, - "2023-01-01": 1271, - "2015-01-01": 1271 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1743.00534550107, - "2034-01-01": 1709.25362831589, - "2033-01-01": 1675.9185989972, - "2032-01-01": 1643.41694541148, - "2031-01-01": 1611.74866755872, - "2030-01-01": 1580.49707757245, - "2029-01-01": 1549.66217545266, - "2028-01-01": 1519.24396119935, - "2027-01-01": 1488.40905907956, - "2026-01-01": 1452.61557134862, - "2025-01-01": 1430.74431971667, - "2024-01-01": 1399.69412886586, - "2023-01-01": 1324, - "2015-01-01": 1324 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1836.47466538821, - "2034-01-01": 1800.91299962286, - "2033-01-01": 1765.7903667682, - "2032-01-01": 1731.5457997349, - "2031-01-01": 1698.17929852297, - "2030-01-01": 1665.25183022172, - "2029-01-01": 1632.76339483116, - "2028-01-01": 1600.71399235128, - "2027-01-01": 1568.22555696072, - "2026-01-01": 1530.51262993302, - "2025-01-01": 1507.46852417277, - "2024-01-01": 1474.75325511169, - "2023-01-01": 1395, - "2015-01-01": 1395 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1954.95690186487, - "2034-01-01": 1917.1009350824, - "2033-01-01": 1879.71232591453, - "2032-01-01": 1843.25843197586, - "2031-01-01": 1807.73925326639, - "2030-01-01": 1772.68743217151, - "2029-01-01": 1738.10296869124, - "2028-01-01": 1703.98586282556, - "2027-01-01": 1669.40139934528, - "2026-01-01": 1629.25538025128, - "2025-01-01": 1604.72455799037, - "2024-01-01": 1569.89862640922, - "2023-01-01": 1485, - "2015-01-01": 1485 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2064.22385328223, - "2034-01-01": 2024.25203111731, - "2033-01-01": 1984.77368823838, - "2032-01-01": 1946.28230393142, - "2031-01-01": 1908.77787819643, - "2030-01-01": 1871.76693174743, - "2029-01-01": 1835.24946458442, - "2028-01-01": 1799.22547670739, - "2027-01-01": 1762.70800954438, - "2026-01-01": 1720.31813887812, - "2025-01-01": 1694.41623362216, - "2024-01-01": 1657.64380216138, - "2023-01-01": 1568, - "2015-01-01": 1568 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2164.2755196403, - "2034-01-01": 2122.36628772759, - "2033-01-01": 2080.97445373973, - "2032-01-01": 2040.61741560156, - "2031-01-01": 2001.29517331309, - "2030-01-01": 1962.49032894947, - "2029-01-01": 1924.2028825107, - "2028-01-01": 1886.43283399678, - "2027-01-01": 1848.14538755801, - "2026-01-01": 1803.70090581354, - "2025-01-01": 1776.54355106813, - "2024-01-01": 1737.98878236819, - "2023-01-01": 1644, - "2015-01-01": 1644 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2256.42837023325, - "2034-01-01": 2212.7346819739, - "2033-01-01": 2169.58042196465, - "2032-01-01": 2127.50501845564, - "2031-01-01": 2086.50847144686, - "2030-01-01": 2046.0513526882, - "2029-01-01": 2006.13366217965, - "2028-01-01": 1966.75539992121, - "2027-01-01": 1926.83770941267, - "2026-01-01": 1880.50082272774, - "2025-01-01": 1852.18713292626, - "2024-01-01": 1811.99073782182, - "2023-01-01": 1714, - "2015-01-01": 1714 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2351.21415941458, - "2034-01-01": 2305.68503034153, - "2033-01-01": 2260.71798928172, - "2032-01-01": 2216.87512424841, - "2031-01-01": 2174.1564352416, - "2030-01-01": 2131.99983424803, - "2029-01-01": 2090.40532126771, - "2028-01-01": 2049.37289630064, - "2027-01-01": 2007.77838332032, - "2026-01-01": 1959.49502298235, - "2025-01-01": 1929.99195998034, - "2024-01-01": 1888.10703485984, - "2023-01-01": 1786, - "2015-01-01": 1786 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2452.58229506683, - "2034-01-01": 2405.09026401247, - "2033-01-01": 2358.18455432914, - "2032-01-01": 2312.4514873879, - "2031-01-01": 2267.89106318874, - "2030-01-01": 2223.91696036063, - "2029-01-01": 2180.52917890355, - "2028-01-01": 2137.72771881752, - "2027-01-01": 2094.33993736044, - "2026-01-01": 2043.97493158797, - "2025-01-01": 2013.19990002429, - "2024-01-01": 1969.50918585884, - "2023-01-01": 1863, - "2015-01-01": 1863 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2547.36808424816, - "2034-01-01": 2498.0406123801, - "2033-01-01": 2449.32212164621, - "2032-01-01": 2401.82159318067, - "2031-01-01": 2355.53902698348, - "2030-01-01": 2309.86544192046, - "2029-01-01": 2264.80083799161, - "2028-01-01": 2220.34521519694, - "2027-01-01": 2175.28061126809, - "2026-01-01": 2122.96913184258, - "2025-01-01": 2091.00472707837, - "2024-01-01": 2045.62548289686, - "2023-01-01": 1935, - "2015-01-01": 1935 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2636.88799625275, - "2034-01-01": 2585.82705250508, - "2033-01-01": 2535.396490779, - "2032-01-01": 2486.22669309606, - "2031-01-01": 2438.31765945628, - "2030-01-01": 2391.03900783807, - "2029-01-01": 2344.39073824144, - "2028-01-01": 2298.37285066639, - "2027-01-01": 2251.72458106976, - "2026-01-01": 2197.57476541638, - "2025-01-01": 2164.48706374055, - "2024-01-01": 2117.51309676611, - "2023-01-01": 2003, - "2015-01-01": 2003 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3150.31102098493, - "2034-01-01": 3089.30810616309, - "2033-01-01": 3029.05831374645, - "2032-01-01": 2970.31476614023, - "2031-01-01": 2913.07746334442, - "2030-01-01": 2856.59328295383, - "2029-01-01": 2800.86222496844, - "2028-01-01": 2745.88428938825, - "2027-01-01": 2690.15323140286, - "2026-01-01": 2625.4600167955, - "2025-01-01": 2585.92987695014, - "2024-01-01": 2529.80970572206, - "2023-01-01": 2393, - "2015-01-01": 2393 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 816.210962394759, - "2034-01-01": 800.405777610161, - "2033-01-01": 784.795718563643, - "2032-01-01": 769.575910993289, - "2031-01-01": 754.746354899098, - "2030-01-01": 740.111924542989, - "2029-01-01": 725.67261992496, - "2028-01-01": 711.428441045014, - "2027-01-01": 696.989136426985, - "2026-01-01": 680.227835525788, - "2025-01-01": 669.986010743455, - "2024-01-01": 655.445891160751, - "2023-01-01": 620, - "2015-01-01": 620 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1118.99890005733, - "2034-01-01": 1097.33050156232, - "2033-01-01": 1075.92961415983, - "2032-01-01": 1055.06374894241, - "2031-01-01": 1034.73290591005, - "2030-01-01": 1014.66957397023, - "2029-01-01": 994.873753122929, - "2028-01-01": 975.345443368164, - "2027-01-01": 955.549622520867, - "2026-01-01": 932.570419672451, - "2025-01-01": 918.529208277318, - "2024-01-01": 898.595173365546, - "2023-01-01": 850, - "2015-01-01": 850 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1269.07639959443, - "2034-01-01": 1244.50188647773, - "2033-01-01": 1220.23076241186, - "2032-01-01": 1196.56641644763, - "2031-01-01": 1173.50884858505, - "2030-01-01": 1150.75466977329, - "2029-01-01": 1128.30388001236, - "2028-01-01": 1106.15647930225, - "2027-01-01": 1083.70568954131, - "2026-01-01": 1057.64457007558, - "2025-01-01": 1041.72018444628, - "2024-01-01": 1019.11264367575, - "2023-01-01": 964, - "2015-01-01": 964 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1392.82451324783, - "2034-01-01": 1365.85373017992, - "2033-01-01": 1339.21591974248, - "2032-01-01": 1313.24405456597, - "2031-01-01": 1287.9381346504, - "2030-01-01": 1262.96518736529, - "2029-01-01": 1238.32521271066, - "2028-01-01": 1214.01821068649, - "2027-01-01": 1189.37823603186, - "2026-01-01": 1160.77588707465, - "2025-01-01": 1143.29870865577, - "2024-01-01": 1118.48669814206, - "2023-01-01": 1058, - "2015-01-01": 1058 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1502.09146466519, - "2034-01-01": 1473.00482621483, - "2033-01-01": 1444.27728206632, - "2032-01-01": 1416.26792652152, - "2031-01-01": 1388.97675958044, - "2030-01-01": 1362.04468694121, - "2029-01-01": 1335.47170860384, - "2028-01-01": 1309.25782456832, - "2027-01-01": 1282.68484623095, - "2026-01-01": 1251.83864570149, - "2025-01-01": 1232.99038428755, - "2024-01-01": 1206.23187389422, - "2023-01-01": 1141, - "2015-01-01": 1141 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1598.19372314071, - "2034-01-01": 1567.24615164312, - "2033-01-01": 1536.68064892946, - "2032-01-01": 1506.87928378363, - "2031-01-01": 1477.84205620565, - "2030-01-01": 1449.18689741159, - "2029-01-01": 1420.91380740145, - "2028-01-01": 1393.02278617524, - "2027-01-01": 1364.7496961651, - "2026-01-01": 1331.9299876263, - "2025-01-01": 1311.8758339396, - "2024-01-01": 1283.40534172444, - "2023-01-01": 1214, - "2015-01-01": 1214 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1685.08069655692, - "2034-01-01": 1652.45063764678, - "2033-01-01": 1620.2234189701, - "2032-01-01": 1588.80188076034, - "2031-01-01": 1558.18602301749, - "2030-01-01": 1527.97300550811, - "2029-01-01": 1498.16282823218, - "2028-01-01": 1468.75549118971, - "2027-01-01": 1438.94531391378, - "2026-01-01": 1404.34133785969, - "2025-01-01": 1383.19692540584, - "2024-01-01": 1353.17861400929, - "2023-01-01": 1280, - "2015-01-01": 1280 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1765.38532350221, - "2034-01-01": 1731.20023834714, - "2033-01-01": 1697.4371912804, - "2032-01-01": 1664.51822039032, - "2031-01-01": 1632.44332567692, - "2030-01-01": 1600.79046905185, - "2029-01-01": 1569.55965051512, - "2028-01-01": 1538.75087006671, - "2027-01-01": 1507.52005152998, - "2026-01-01": 1471.26697974207, - "2025-01-01": 1449.11490388222, - "2024-01-01": 1417.66603233317, - "2023-01-01": 1341, - "2015-01-01": 1341 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1839.10760397658, - "2034-01-01": 1803.49495374418, - "2033-01-01": 1768.32196586034, - "2032-01-01": 1734.02830267359, - "2031-01-01": 1700.61396418394, - "2030-01-01": 1667.63928804283, - "2029-01-01": 1635.10427425027, - "2028-01-01": 1603.00892280626, - "2027-01-01": 1570.47390901371, - "2026-01-01": 1532.70691327343, - "2025-01-01": 1509.62976936872, - "2024-01-01": 1476.86759669608, - "2023-01-01": 1397, - "2015-01-01": 1397 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1937.84280104046, - "2034-01-01": 1900.3182332938, - "2033-01-01": 1863.25693181562, - "2032-01-01": 1827.12216287439, - "2031-01-01": 1791.91392647012, - "2030-01-01": 1757.16895633432, - "2029-01-01": 1722.887252467, - "2028-01-01": 1689.06881486816, - "2027-01-01": 1654.78711100084, - "2026-01-01": 1614.99253853864, - "2025-01-01": 1590.67646421672, - "2024-01-01": 1556.15540611069, - "2023-01-01": 1472, - "2015-01-01": 1472 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2062.90738398804, - "2034-01-01": 2022.96105405665, - "2033-01-01": 1983.50788869231, - "2032-01-01": 1945.04105246207, - "2031-01-01": 1907.56054536595, - "2030-01-01": 1870.57320283688, - "2029-01-01": 1834.07902487486, - "2028-01-01": 1798.0780114799, - "2027-01-01": 1761.58383351788, - "2026-01-01": 1719.22099720792, - "2025-01-01": 1693.33561102418, - "2024-01-01": 1656.58663136919, - "2023-01-01": 1567, - "2015-01-01": 1567 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2177.44021258215, - "2034-01-01": 2135.2760583342, - "2033-01-01": 2093.63244920043, - "2032-01-01": 2053.029930295, - "2031-01-01": 2013.46850161792, - "2030-01-01": 1974.42761805501, - "2029-01-01": 1935.90727960626, - "2028-01-01": 1897.9074862717, - "2027-01-01": 1859.38714782296, - "2026-01-01": 1814.67232251557, - "2025-01-01": 1787.34977704786, - "2024-01-01": 1748.56049029013, - "2023-01-01": 1654, - "2015-01-01": 1654 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2281.44128682277, - "2034-01-01": 2237.26324612646, - "2033-01-01": 2193.63061333999, - "2032-01-01": 2151.08879637318, - "2031-01-01": 2109.63779522603, - "2030-01-01": 2068.73220198871, - "2029-01-01": 2028.37201666122, - "2028-01-01": 1988.55723924356, - "2027-01-01": 1948.19705391607, - "2026-01-01": 1901.3465144616, - "2025-01-01": 1872.71896228776, - "2024-01-01": 1832.07698287352, - "2023-01-01": 1733, - "2015-01-01": 1733 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2378.86001459247, - "2034-01-01": 2332.79554861542, - "2033-01-01": 2287.2997797492, - "2032-01-01": 2242.94140510464, - "2031-01-01": 2199.72042468173, - "2030-01-01": 2157.06814136965, - "2029-01-01": 2114.98455516839, - "2028-01-01": 2073.46966607797, - "2027-01-01": 2031.38607987671, - "2026-01-01": 1982.53499805661, - "2025-01-01": 1952.68503453778, - "2024-01-01": 1910.30762149593, - "2023-01-01": 1807, - "2015-01-01": 1807 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2480.22815024472, - "2034-01-01": 2432.20078228636, - "2033-01-01": 2384.76634479662, - "2032-01-01": 2338.51776824412, - "2031-01-01": 2293.45505262887, - "2030-01-01": 2248.98526748224, - "2029-01-01": 2205.10841280423, - "2028-01-01": 2161.82448859485, - "2027-01-01": 2117.94763391684, - "2026-01-01": 2067.01490666223, - "2025-01-01": 2035.89297458173, - "2024-01-01": 1991.70977249493, - "2023-01-01": 1884, - "2015-01-01": 1884 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2585.54569377953, - "2034-01-01": 2535.47894713928, - "2033-01-01": 2486.03030848225, - "2032-01-01": 2437.81788579165, - "2031-01-01": 2390.84167906747, - "2030-01-01": 2344.4835803265, - "2029-01-01": 2298.74358956875, - "2028-01-01": 2253.6217067942, - "2027-01-01": 2207.88171603645, - "2026-01-01": 2154.78624027846, - "2025-01-01": 2122.34278241959, - "2024-01-01": 2076.28343587051, - "2023-01-01": 1964, - "2015-01-01": 1964 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2685.59736013759, - "2034-01-01": 2633.59320374956, - "2033-01-01": 2582.2310739836, - "2032-01-01": 2532.15299746179, - "2031-01-01": 2483.35897418413, - "2030-01-01": 2435.20697752854, - "2029-01-01": 2387.69700749503, - "2028-01-01": 2340.82906408359, - "2027-01-01": 2293.31909405008, - "2026-01-01": 2238.16900721388, - "2025-01-01": 2204.47009986556, - "2024-01-01": 2156.62841607731, - "2023-01-01": 2040, - "2015-01-01": 2040 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2779.06668002474, - "2034-01-01": 2725.25257505653, - "2033-01-01": 2672.1028417546, - "2032-01-01": 2620.28185178522, - "2031-01-01": 2569.78960514838, - "2030-01-01": 2519.96173017782, - "2029-01-01": 2470.79822687353, - "2028-01-01": 2422.29909523552, - "2027-01-01": 2373.13559193124, - "2026-01-01": 2316.06606579829, - "2025-01-01": 2281.19430432167, - "2024-01-01": 2231.68754232314, - "2023-01-01": 2111, - "2015-01-01": 2111 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3320.13555993481, - "2034-01-01": 3255.84414698843, - "2033-01-01": 3192.34645518953, - "2032-01-01": 3130.43620568561, - "2031-01-01": 3070.11339847665, - "2030-01-01": 3010.58431241519, - "2029-01-01": 2951.84894750121, - "2028-01-01": 2893.90730373472, - "2027-01-01": 2835.17193882074, - "2026-01-01": 2766.99129225167, - "2025-01-01": 2725.3301920887, - "2024-01-01": 2666.18473791519, - "2023-01-01": 2522, - "2015-01-01": 2522 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 878.085019221459, - "2034-01-01": 861.081699461253, - "2033-01-01": 844.288297228952, - "2032-01-01": 827.914730052458, - "2031-01-01": 811.960997931772, - "2030-01-01": 796.21718333899, - "2029-01-01": 780.68328627411, - "2028-01-01": 765.359306737136, - "2027-01-01": 749.825409672257, - "2026-01-01": 731.793494025323, - "2025-01-01": 720.775272848201, - "2024-01-01": 705.132918393905, - "2023-01-01": 667, - "2015-01-01": 667 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1203.25293488518, - "2034-01-01": 1179.95303344466, - "2033-01-01": 1156.94078510834, - "2032-01-01": 1134.50384298043, - "2031-01-01": 1112.64220706093, - "2030-01-01": 1091.06822424563, - "2029-01-01": 1069.78189453454, - "2028-01-01": 1048.78321792765, - "2027-01-01": 1027.49688821656, - "2026-01-01": 1002.78748656544, - "2025-01-01": 987.68905454761, - "2024-01-01": 966.254104066011, - "2023-01-01": 914, - "2015-01-01": 914 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1362.54571948157, - "2034-01-01": 1336.1612577847, - "2033-01-01": 1310.10253018286, - "2032-01-01": 1284.69527077106, - "2031-01-01": 1259.9394795493, - "2030-01-01": 1235.50942242257, - "2029-01-01": 1211.40509939086, - "2028-01-01": 1187.62651045418, - "2027-01-01": 1163.52218742247, - "2026-01-01": 1135.54162865998, - "2025-01-01": 1118.44438890238, - "2024-01-01": 1094.17176992158, - "2023-01-01": 1035, - "2015-01-01": 1035 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1495.50911819427, - "2034-01-01": 1466.54994091152, - "2033-01-01": 1437.94828433597, - "2032-01-01": 1410.0616691748, - "2031-01-01": 1382.89009542803, - "2030-01-01": 1356.07604238844, - "2029-01-01": 1329.61951005606, - "2028-01-01": 1303.52049843086, - "2027-01-01": 1277.06396609848, - "2026-01-01": 1246.35293735048, - "2025-01-01": 1227.58727129769, - "2024-01-01": 1200.94601993325, - "2023-01-01": 1136, - "2015-01-01": 1136 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1612.67488537674, - "2034-01-01": 1581.4468993104, - "2033-01-01": 1550.60444393623, - "2032-01-01": 1520.53304994642, - "2031-01-01": 1491.23271734096, - "2030-01-01": 1462.31791542768, - "2029-01-01": 1433.78864420657, - "2028-01-01": 1405.64490367765, - "2027-01-01": 1377.11563245654, - "2026-01-01": 1343.99854599853, - "2025-01-01": 1323.76268251731, - "2024-01-01": 1295.03422043858, - "2023-01-01": 1225, - "2015-01-01": 1225 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1715.35949032318, - "2034-01-01": 1682.143110042, - "2033-01-01": 1649.33680852972, - "2032-01-01": 1617.35066455525, - "2031-01-01": 1586.18467811859, - "2030-01-01": 1555.42877045083, - "2029-01-01": 1525.08294155197, - "2028-01-01": 1495.14719142202, - "2027-01-01": 1464.80136252316, - "2026-01-01": 1429.57559627436, - "2025-01-01": 1408.05124515923, - "2024-01-01": 1377.49354222977, - "2023-01-01": 1303, - "2015-01-01": 1303 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1808.82881021032, - "2034-01-01": 1773.80248134897, - "2033-01-01": 1739.20857630072, - "2032-01-01": 1705.47951887868, - "2031-01-01": 1672.61530908284, - "2030-01-01": 1640.18352310011, - "2029-01-01": 1608.18416093048, - "2028-01-01": 1576.61722257395, - "2027-01-01": 1544.61786040432, - "2026-01-01": 1507.47265485876, - "2025-01-01": 1484.77544961534, - "2024-01-01": 1452.5526684756, - "2023-01-01": 1374, - "2015-01-01": 1374 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1894.39931433235, - "2034-01-01": 1857.71599029197, - "2033-01-01": 1821.4855467953, - "2032-01-01": 1786.16086438604, - "2031-01-01": 1751.7419430642, - "2030-01-01": 1717.77590228607, - "2029-01-01": 1684.26274205164, - "2028-01-01": 1651.20246236093, - "2027-01-01": 1617.6893021265, - "2026-01-01": 1578.78686342195, - "2025-01-01": 1555.0159184836, - "2024-01-01": 1521.26876996826, - "2023-01-01": 1439, - "2015-01-01": 1439 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1974.70394127764, - "2034-01-01": 1936.46559099232, - "2033-01-01": 1898.69931910559, - "2032-01-01": 1861.87720401602, - "2031-01-01": 1825.99924572363, - "2030-01-01": 1790.59336582981, - "2029-01-01": 1755.65956433458, - "2028-01-01": 1721.19784123794, - "2027-01-01": 1686.26403974271, - "2026-01-01": 1645.71250530433, - "2025-01-01": 1620.93389695997, - "2024-01-01": 1585.75618829214, - "2023-01-01": 1500, - "2015-01-01": 1500 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2078.70501551827, - "2034-01-01": 2038.45277878459, - "2033-01-01": 1998.69748324515, - "2032-01-01": 1959.9360700942, - "2031-01-01": 1922.16853933174, - "2030-01-01": 1884.89794976351, - "2029-01-01": 1848.12430138954, - "2028-01-01": 1811.8475942098, - "2027-01-01": 1775.07394583582, - "2026-01-01": 1732.38669725035, - "2025-01-01": 1706.30308219986, - "2024-01-01": 1669.27268087553, - "2023-01-01": 1579, - "2015-01-01": 1579 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2212.98488352515, - "2034-01-01": 2170.13243897206, - "2033-01-01": 2127.80903694433, - "2032-01-01": 2086.54371996729, - "2031-01-01": 2046.33648804094, - "2030-01-01": 2006.65829863994, - "2029-01-01": 1967.50915176429, - "2028-01-01": 1928.88904741398, - "2027-01-01": 1889.73990053833, - "2026-01-01": 1844.29514761105, - "2025-01-01": 1816.52658719314, - "2024-01-01": 1777.10410167939, - "2023-01-01": 1681, - "2015-01-01": 1681 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2335.41652788436, - "2034-01-01": 2290.19330561359, - "2033-01-01": 2245.52839472888, - "2032-01-01": 2201.98010661628, - "2031-01-01": 2159.54844127581, - "2030-01-01": 2117.67508732139, - "2029-01-01": 2076.36004475303, - "2028-01-01": 2035.60331357073, - "2027-01-01": 1994.28827100237, - "2026-01-01": 1946.32932293992, - "2025-01-01": 1917.02448880466, - "2024-01-01": 1875.4209853535, - "2023-01-01": 1774, - "2015-01-01": 1774 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2447.31641789009, - "2034-01-01": 2399.92635576982, - "2033-01-01": 2353.12135614486, - "2032-01-01": 2307.48648151052, - "2031-01-01": 2263.02173186681, - "2030-01-01": 2219.14204471841, - "2029-01-01": 2175.84742006532, - "2028-01-01": 2133.13785790755, - "2027-01-01": 2089.84323325446, - "2026-01-01": 2039.58636490716, - "2025-01-01": 2008.87740963239, - "2024-01-01": 1965.28050269006, - "2023-01-01": 1859, - "2015-01-01": 1859 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2551.31749213071, - "2034-01-01": 2501.91354356208, - "2033-01-01": 2453.11952028442, - "2032-01-01": 2405.5453475887, - "2031-01-01": 2359.19102547492, - "2030-01-01": 2313.44662865212, - "2029-01-01": 2268.31215712028, - "2028-01-01": 2223.78761087941, - "2027-01-01": 2178.65313934758, - "2026-01-01": 2126.26055685319, - "2025-01-01": 2094.24659487228, - "2024-01-01": 2048.79699527345, - "2023-01-01": 1938, - "2015-01-01": 1938 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2659.26797425389, - "2034-01-01": 2607.77366253633, - "2033-01-01": 2556.91508306219, - "2032-01-01": 2507.32796807491, - "2031-01-01": 2459.01231757448, - "2030-01-01": 2411.33239931748, - "2029-01-01": 2364.2882133039, - "2028-01-01": 2317.87975953375, - "2027-01-01": 2270.83557352018, - "2026-01-01": 2216.22617380982, - "2025-01-01": 2182.8576479061, - "2024-01-01": 2135.48500023342, - "2023-01-01": 2020, - "2015-01-01": 2020 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2772.48433355381, - "2034-01-01": 2718.79768975322, - "2033-01-01": 2665.77384402425, - "2032-01-01": 2614.0755944385, - "2031-01-01": 2563.70294099597, - "2030-01-01": 2513.99308562506, - "2029-01-01": 2464.94602832575, - "2028-01-01": 2416.56176909806, - "2027-01-01": 2367.51471179876, - "2026-01-01": 2310.58035744727, - "2025-01-01": 2275.7911913318, - "2024-01-01": 2226.40168836217, - "2023-01-01": 2106, - "2015-01-01": 2106 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2879.1183463828, - "2034-01-01": 2823.36683166681, - "2033-01-01": 2768.30360725595, - "2032-01-01": 2714.61696345536, - "2031-01-01": 2662.30690026505, - "2030-01-01": 2610.68512737987, - "2029-01-01": 2559.75164479982, - "2028-01-01": 2509.50645252491, - "2027-01-01": 2458.57296994487, - "2026-01-01": 2399.44883273371, - "2025-01-01": 2363.32162176764, - "2024-01-01": 2312.03252252994, - "2023-01-01": 2187, - "2015-01-01": 2187 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2979.17001274087, - "2034-01-01": 2921.48108827709, - "2033-01-01": 2864.5043727573, - "2032-01-01": 2808.95207512551, - "2031-01-01": 2754.82419538171, - "2030-01-01": 2701.40852458191, - "2029-01-01": 2648.7050627261, - "2028-01-01": 2596.7138098143, - "2027-01-01": 2544.0103479585, - "2026-01-01": 2482.83159966913, - "2025-01-01": 2445.44893921361, - "2024-01-01": 2392.37750273674, - "2023-01-01": 2263, - "2015-01-01": 2263 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3557.10003288813, - "2034-01-01": 3488.22001790751, - "2033-01-01": 3420.1903734822, - "2032-01-01": 3353.86147016753, - "2031-01-01": 3289.23330796349, - "2030-01-01": 3225.45551631477, - "2029-01-01": 3162.52809522136, - "2028-01-01": 3100.45104468327, - "2027-01-01": 3037.52362358986, - "2026-01-01": 2964.47679288819, - "2025-01-01": 2919.8422597239, - "2024-01-01": 2856.47548051024, - "2023-01-01": 2702, - "2015-01-01": 2702 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 750.387497685504, - "2034-01-01": 735.856924577083, - "2033-01-01": 721.505741260124, - "2032-01-01": 707.513337526089, - "2031-01-01": 693.879713374978, - "2030-01-01": 680.425479015328, - "2029-01-01": 667.150634447141, - "2028-01-01": 654.055179670416, - "2027-01-01": 640.780335102229, - "2026-01-01": 625.370752015644, - "2025-01-01": 615.95488084479, - "2024-01-01": 602.587351551013, - "2023-01-01": 570, - "2015-01-01": 570 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1012.36488722834, - "2034-01-01": 992.761359648731, - "2033-01-01": 973.399850928132, - "2032-01-01": 954.522379925548, - "2031-01-01": 936.128946640979, - "2030-01-01": 917.977532215417, - "2029-01-01": 900.068136648862, - "2028-01-01": 882.400759941315, - "2027-01-01": 864.491364374761, - "2026-01-01": 843.701944386017, - "2025-01-01": 830.998777841479, - "2024-01-01": 812.964339197771, - "2023-01-01": 769, - "2015-01-01": 769 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1140.06240876429, - "2034-01-01": 1117.9861345329, - "2033-01-01": 1096.18240689696, - "2032-01-01": 1074.92377245192, - "2031-01-01": 1054.21023119777, - "2030-01-01": 1033.76923653908, - "2029-01-01": 1013.60078847583, - "2028-01-01": 993.704887008035, - "2027-01-01": 973.536438944789, - "2026-01-01": 950.124686395697, - "2025-01-01": 935.819169844891, - "2024-01-01": 915.509906040663, - "2023-01-01": 866, - "2015-01-01": 866 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1246.69642159329, - "2034-01-01": 1222.55527644649, - "2033-01-01": 1198.71217012866, - "2032-01-01": 1175.46514146878, - "2031-01-01": 1152.81419046685, - "2030-01-01": 1130.46127829389, - "2029-01-01": 1108.4064049499, - "2028-01-01": 1086.64957043488, - "2027-01-01": 1064.5946970909, - "2026-01-01": 1038.99316168213, - "2025-01-01": 1023.34960028073, - "2024-01-01": 1001.14074020844, - "2023-01-01": 947, - "2015-01-01": 947 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1340.16574148043, - "2034-01-01": 1314.21464775346, - "2033-01-01": 1288.58393789966, - "2032-01-01": 1263.59399579221, - "2031-01-01": 1239.2448214311, - "2030-01-01": 1215.21603094317, - "2029-01-01": 1191.5076243284, - "2028-01-01": 1168.11960158681, - "2027-01-01": 1144.41119497205, - "2026-01-01": 1116.89022026654, - "2025-01-01": 1100.07380473683, - "2024-01-01": 1076.19986645427, - "2023-01-01": 1018, - "2015-01-01": 1018 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1421.7868377199, - "2034-01-01": 1394.25522551447, - "2033-01-01": 1367.06350975602, - "2032-01-01": 1340.55158689154, - "2031-01-01": 1314.71945692101, - "2030-01-01": 1289.22722339746, - "2029-01-01": 1264.0748863209, - "2028-01-01": 1239.26244569131, - "2027-01-01": 1214.11010861475, - "2026-01-01": 1184.91300381911, - "2025-01-01": 1167.07240581118, - "2024-01-01": 1141.74445557034, - "2023-01-01": 1080, - "2015-01-01": 1080 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1496.82558748845, - "2034-01-01": 1467.84091797218, - "2033-01-01": 1439.21408388204, - "2032-01-01": 1411.30292064415, - "2031-01-01": 1384.10742825851, - "2030-01-01": 1357.269771299, - "2029-01-01": 1330.78994976561, - "2028-01-01": 1304.66796365836, - "2027-01-01": 1278.18814212497, - "2026-01-01": 1247.45007902068, - "2025-01-01": 1228.66789389566, - "2024-01-01": 1202.00319072544, - "2023-01-01": 1137, - "2015-01-01": 1137 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1565.28199078608, - "2034-01-01": 1534.97172512658, - "2033-01-01": 1505.0356602777, - "2032-01-01": 1475.84799705003, - "2031-01-01": 1447.40873544359, - "2030-01-01": 1419.34367464776, - "2029-01-01": 1391.65281466254, - "2028-01-01": 1364.33615548794, - "2027-01-01": 1336.64529550272, - "2026-01-01": 1304.50144587123, - "2025-01-01": 1284.86026899027, - "2024-01-01": 1256.97607191957, - "2023-01-01": 1189, - "2015-01-01": 1189 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1628.47251690696, - "2034-01-01": 1596.93862403834, - "2033-01-01": 1565.79403848908, - "2032-01-01": 1535.42806757855, - "2031-01-01": 1505.84071130675, - "2030-01-01": 1476.64266235432, - "2029-01-01": 1447.83392072125, - "2028-01-01": 1419.41448640755, - "2027-01-01": 1390.60574477449, - "2026-01-01": 1357.16424604097, - "2025-01-01": 1336.73015369299, - "2024-01-01": 1307.72026994492, - "2023-01-01": 1237, - "2015-01-01": 1237 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1711.41008244062, - "2034-01-01": 1678.27017886001, - "2033-01-01": 1645.53940989151, - "2032-01-01": 1613.62691014722, - "2031-01-01": 1582.53267962714, - "2030-01-01": 1551.84758371917, - "2029-01-01": 1521.5716224233, - "2028-01-01": 1491.70479573954, - "2027-01-01": 1461.42883444368, - "2026-01-01": 1426.28417126375, - "2025-01-01": 1404.80937736531, - "2024-01-01": 1374.32202985319, - "2023-01-01": 1300, - "2015-01-01": 1300 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1818.04409526962, - "2034-01-01": 1782.8393207736, - "2033-01-01": 1748.06917312321, - "2032-01-01": 1714.16827916408, - "2031-01-01": 1681.13663889622, - "2030-01-01": 1648.53962547398, - "2029-01-01": 1616.37723889737, - "2028-01-01": 1584.64947916639, - "2027-01-01": 1552.48709258979, - "2026-01-01": 1515.15264655018, - "2025-01-01": 1492.33980780115, - "2024-01-01": 1459.95286402096, - "2023-01-01": 1381, - "2015-01-01": 1381 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1915.46282303931, - "2034-01-01": 1878.37162326255, - "2033-01-01": 1841.73833953242, - "2032-01-01": 1806.02088789554, - "2031-01-01": 1771.21926835192, - "2030-01-01": 1736.87556485492, - "2029-01-01": 1702.98977740454, - "2028-01-01": 1669.5619060008, - "2027-01-01": 1635.67611855043, - "2026-01-01": 1596.3411301452, - "2025-01-01": 1572.30588005117, - "2024-01-01": 1538.18350264338, - "2023-01-01": 1455, - "2015-01-01": 1455 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2004.9827350439, - "2034-01-01": 1966.15806338754, - "2033-01-01": 1927.81270866521, - "2032-01-01": 1890.42598781093, - "2031-01-01": 1853.99790082472, - "2030-01-01": 1818.04913077254, - "2029-01-01": 1782.57967765438, - "2028-01-01": 1747.58954147025, - "2027-01-01": 1712.12008835209, - "2026-01-01": 1670.94676371899, - "2025-01-01": 1645.78821671336, - "2024-01-01": 1610.07111651262, - "2023-01-01": 1523, - "2015-01-01": 1523 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2087.92030057756, - "2034-01-01": 2047.48961820922, - "2033-01-01": 2007.55808006764, - "2032-01-01": 1968.62483037961, - "2031-01-01": 1930.68986914511, - "2030-01-01": 1893.25405213739, - "2029-01-01": 1856.31737935643, - "2028-01-01": 1819.87985080224, - "2027-01-01": 1782.94317802129, - "2026-01-01": 1740.06668894177, - "2025-01-01": 1713.86744038568, - "2024-01-01": 1676.67287642089, - "2023-01-01": 1586, - "2015-01-01": 1586 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2173.49080469959, - "2034-01-01": 2131.40312715222, - "2033-01-01": 2089.83505056222, - "2032-01-01": 2049.30617588697, - "2031-01-01": 2009.81650312647, - "2030-01-01": 1970.84643132335, - "2029-01-01": 1932.3959604776, - "2028-01-01": 1894.46509058922, - "2027-01-01": 1856.01461974347, - "2026-01-01": 1811.38089750496, - "2025-01-01": 1784.10790925394, - "2024-01-01": 1745.38897791355, - "2023-01-01": 1651, - "2015-01-01": 1651 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2264.32718599836, - "2034-01-01": 2220.48054433786, - "2033-01-01": 2177.17521924108, - "2032-01-01": 2134.95252727171, - "2031-01-01": 2093.81246842976, - "2030-01-01": 2053.21372615152, - "2029-01-01": 2013.15630043699, - "2028-01-01": 1973.64019128617, - "2027-01-01": 1933.58276557164, - "2026-01-01": 1887.08367274896, - "2025-01-01": 1858.6708685141, - "2024-01-01": 1818.33376257499, - "2023-01-01": 1720, - "2015-01-01": 1720 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2349.8976901204, - "2034-01-01": 2304.39405328087, - "2033-01-01": 2259.45218973565, - "2032-01-01": 2215.63387277907, - "2031-01-01": 2172.93910241111, - "2030-01-01": 2130.80610533748, - "2029-01-01": 2089.23488155815, - "2028-01-01": 2048.22543107314, - "2027-01-01": 2006.65420729382, - "2026-01-01": 1958.39788131215, - "2025-01-01": 1928.91133738237, - "2024-01-01": 1887.04986406765, - "2023-01-01": 1785, - "2015-01-01": 1785 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2428.8858477715, - "2034-01-01": 2381.85267692056, - "2033-01-01": 2335.40016249987, - "2032-01-01": 2290.10896093971, - "2031-01-01": 2245.97907224006, - "2030-01-01": 2202.42983997067, - "2029-01-01": 2159.46126413154, - "2028-01-01": 2117.07334472266, - "2027-01-01": 2074.10476888353, - "2026-01-01": 2024.22638152432, - "2025-01-01": 1993.74869326077, - "2024-01-01": 1950.48011159933, - "2023-01-01": 1845, - "2015-01-01": 1845 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2890.96657003047, - "2034-01-01": 2834.98562521276, - "2033-01-01": 2779.69580317058, - "2032-01-01": 2725.78822667946, - "2031-01-01": 2673.26289573939, - "2030-01-01": 2621.42868757484, - "2029-01-01": 2570.28560218583, - "2028-01-01": 2519.83363957234, - "2027-01-01": 2468.69055418332, - "2026-01-01": 2409.32310776553, - "2025-01-01": 2373.0472251494, - "2024-01-01": 2321.54705965969, - "2023-01-01": 2196, - "2015-01-01": 2196 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 895.199120045865, - "2034-01-01": 877.864401249854, - "2033-01-01": 860.743691327867, - "2032-01-01": 844.05099915393, - "2031-01-01": 827.786324728043, - "2030-01-01": 811.735659176181, - "2029-01-01": 795.899002498343, - "2028-01-01": 780.276354694531, - "2027-01-01": 764.439698016694, - "2026-01-01": 746.056335737961, - "2025-01-01": 734.823366621854, - "2024-01-01": 718.876138692437, - "2023-01-01": 680, - "2015-01-01": 680 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1201.93646559099, - "2034-01-01": 1178.66205638399, - "2033-01-01": 1155.67498556227, - "2032-01-01": 1133.26259151109, - "2031-01-01": 1111.42487423045, - "2030-01-01": 1089.87449533508, - "2029-01-01": 1068.61145482498, - "2028-01-01": 1047.63575270016, - "2027-01-01": 1026.37271219006, - "2026-01-01": 1001.69034489523, - "2025-01-01": 986.608431949637, - "2024-01-01": 965.196933273816, - "2023-01-01": 913, - "2015-01-01": 913 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1350.69749583391, - "2034-01-01": 1324.54246423875, - "2033-01-01": 1298.71033426822, - "2032-01-01": 1273.52400754696, - "2031-01-01": 1248.98348407496, - "2030-01-01": 1224.76586222759, - "2029-01-01": 1200.87114200485, - "2028-01-01": 1177.29932340675, - "2027-01-01": 1153.40460318401, - "2026-01-01": 1125.66735362816, - "2025-01-01": 1108.71878552062, - "2024-01-01": 1084.65723279182, - "2023-01-01": 1026, - "2015-01-01": 1026 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1475.76207878149, - "2034-01-01": 1447.1852850016, - "2033-01-01": 1418.96129114491, - "2032-01-01": 1391.44289713464, - "2031-01-01": 1364.63010297079, - "2030-01-01": 1338.17010873015, - "2029-01-01": 1312.06291441271, - "2028-01-01": 1286.30852001848, - "2027-01-01": 1260.20132570105, - "2026-01-01": 1229.89581229743, - "2025-01-01": 1211.37793232809, - "2024-01-01": 1185.08845805033, - "2023-01-01": 1121, - "2015-01-01": 1121 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1583.71256090467, - "2034-01-01": 1553.04540397584, - "2033-01-01": 1522.75685392268, - "2032-01-01": 1493.22551762085, - "2031-01-01": 1464.45139507035, - "2030-01-01": 1436.05587939551, - "2029-01-01": 1408.03897059633, - "2028-01-01": 1380.40066867282, - "2027-01-01": 1352.38375987365, - "2026-01-01": 1319.86142925407, - "2025-01-01": 1299.9889853619, - "2024-01-01": 1271.7764630103, - "2023-01-01": 1203, - "2015-01-01": 1203 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1679.81481938018, - "2034-01-01": 1647.28672940414, - "2033-01-01": 1615.16022078582, - "2032-01-01": 1583.83687488296, - "2031-01-01": 1553.31669169556, - "2030-01-01": 1523.19808986589, - "2029-01-01": 1493.48106939395, - "2028-01-01": 1464.16563027974, - "2027-01-01": 1434.4486098078, - "2026-01-01": 1399.95277117888, - "2025-01-01": 1378.87443501395, - "2024-01-01": 1348.94993084051, - "2023-01-01": 1276, - "2015-01-01": 1276 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1766.7017927964, - "2034-01-01": 1732.4912154078, - "2033-01-01": 1698.70299082647, - "2032-01-01": 1665.75947185967, - "2031-01-01": 1633.6606585074, - "2030-01-01": 1601.9841979624, - "2029-01-01": 1570.73009022467, - "2028-01-01": 1539.89833529421, - "2027-01-01": 1508.64422755647, - "2026-01-01": 1472.36412141227, - "2025-01-01": 1450.19552648019, - "2024-01-01": 1418.72320312537, - "2023-01-01": 1342, - "2015-01-01": 1342 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1845.6899504475, - "2034-01-01": 1809.94983904749, - "2033-01-01": 1774.65096359069, - "2032-01-01": 1740.23456002031, - "2031-01-01": 1706.70062833635, - "2030-01-01": 1673.6079325956, - "2029-01-01": 1640.95647279806, - "2028-01-01": 1608.74624894372, - "2027-01-01": 1576.09478914618, - "2026-01-01": 1538.19262162444, - "2025-01-01": 1515.03288235859, - "2024-01-01": 1482.15345065705, - "2023-01-01": 1402, - "2015-01-01": 1402 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1919.41223092187, - "2034-01-01": 1882.24455444454, - "2033-01-01": 1845.53573817063, - "2032-01-01": 1809.74464230357, - "2031-01-01": 1774.87126684336, - "2030-01-01": 1740.45675158658, - "2029-01-01": 1706.50109653321, - "2028-01-01": 1673.00430168327, - "2027-01-01": 1639.04864662991, - "2026-01-01": 1599.6325551558, - "2025-01-01": 1575.54774784509, - "2024-01-01": 1541.35501501996, - "2023-01-01": 1458, - "2015-01-01": 1458 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2016.83095869157, - "2034-01-01": 1977.77685693349, - "2033-01-01": 1939.20490457984, - "2032-01-01": 1901.59725103503, - "2031-01-01": 1864.95389629906, - "2030-01-01": 1828.79269096751, - "2029-01-01": 1793.11363504039, - "2028-01-01": 1757.91672851768, - "2027-01-01": 1722.23767259055, - "2026-01-01": 1680.82103875082, - "2025-01-01": 1655.51382009512, - "2024-01-01": 1619.58565364237, - "2023-01-01": 1532, - "2015-01-01": 1532 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2140.57907234497, - "2034-01-01": 2099.12870063568, - "2033-01-01": 2058.19006191046, - "2032-01-01": 2018.27488915337, - "2031-01-01": 1979.38318236441, - "2030-01-01": 1941.00320855952, - "2029-01-01": 1903.13496773869, - "2028-01-01": 1865.77845990192, - "2027-01-01": 1827.91021908109, - "2026-01-01": 1783.95235574989, - "2025-01-01": 1757.09234430461, - "2024-01-01": 1718.95970810868, - "2023-01-01": 1626, - "2015-01-01": 1626 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2253.79543164488, - "2034-01-01": 2210.15272785257, - "2033-01-01": 2167.04882287251, - "2032-01-01": 2125.02251551695, - "2031-01-01": 2084.0738057859, - "2030-01-01": 2043.66389486709, - "2029-01-01": 2003.79278276054, - "2028-01-01": 1964.46046946623, - "2027-01-01": 1924.58935735968, - "2026-01-01": 1878.30653938734, - "2025-01-01": 1850.02588773032, - "2024-01-01": 1809.87639623743, - "2023-01-01": 1712, - "2015-01-01": 1712 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2357.79650588551, - "2034-01-01": 2312.13991564483, - "2033-01-01": 2267.04698701207, - "2032-01-01": 2223.08138159513, - "2031-01-01": 2180.24309939401, - "2030-01-01": 2137.9684788008, - "2029-01-01": 2096.25751981549, - "2028-01-01": 2055.1102224381, - "2027-01-01": 2013.39926345279, - "2026-01-01": 1964.98073133336, - "2025-01-01": 1935.39507297021, - "2024-01-01": 1893.39288882082, - "2023-01-01": 1791, - "2015-01-01": 1791 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2453.89876436102, - "2034-01-01": 2406.38124107313, - "2033-01-01": 2359.45035387521, - "2032-01-01": 2313.69273885724, - "2031-01-01": 2269.10839601922, - "2030-01-01": 2225.11068927118, - "2029-01-01": 2181.69961861311, - "2028-01-01": 2138.87518404501, - "2027-01-01": 2095.46411338694, - "2026-01-01": 2045.07207325818, - "2025-01-01": 2014.28052262226, - "2024-01-01": 1970.56635665103, - "2023-01-01": 1864, - "2015-01-01": 1864 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2552.6339614249, - "2034-01-01": 2503.20452062274, - "2033-01-01": 2454.38531983049, - "2032-01-01": 2406.78659905805, - "2031-01-01": 2360.40835830541, - "2030-01-01": 2314.64035756267, - "2029-01-01": 2269.48259682984, - "2028-01-01": 2224.93507610691, - "2027-01-01": 2179.77731537407, - "2026-01-01": 2127.35769852339, - "2025-01-01": 2095.32721747026, - "2024-01-01": 2049.85416606564, - "2023-01-01": 1939, - "2015-01-01": 1939 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2657.95150495971, - "2034-01-01": 2606.48268547567, - "2033-01-01": 2555.64928351612, - "2032-01-01": 2506.08671660557, - "2031-01-01": 2457.794984744, - "2030-01-01": 2410.13867040693, - "2029-01-01": 2363.11777359435, - "2028-01-01": 2316.73229430626, - "2027-01-01": 2269.71139749368, - "2026-01-01": 2215.12903213962, - "2025-01-01": 2181.77702530812, - "2024-01-01": 2134.42782944122, - "2023-01-01": 2019, - "2015-01-01": 2019 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2756.68670202359, - "2034-01-01": 2703.30596502528, - "2033-01-01": 2650.5842494714, - "2032-01-01": 2599.18057680637, - "2031-01-01": 2549.09494703018, - "2030-01-01": 2499.66833869842, - "2029-01-01": 2450.90075181108, - "2028-01-01": 2402.79218636816, - "2027-01-01": 2354.02459948082, - "2026-01-01": 2297.41465740484, - "2025-01-01": 2262.82372015612, - "2024-01-01": 2213.71563885583, - "2023-01-01": 2094, - "2015-01-01": 2094 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2848.83955261655, - "2034-01-01": 2793.67435927159, - "2033-01-01": 2739.19021769633, - "2032-01-01": 2686.06817966045, - "2031-01-01": 2634.30824516395, - "2030-01-01": 2583.22936243714, - "2029-01-01": 2532.83153148002, - "2028-01-01": 2483.1147522926, - "2027-01-01": 2432.71692133548, - "2026-01-01": 2374.21457431904, - "2025-01-01": 2338.46730201425, - "2024-01-01": 2287.71759430946, - "2023-01-01": 2164, - "2015-01-01": 2164 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3382.00961676151, - "2034-01-01": 3316.52006883952, - "2033-01-01": 3251.83903385484, - "2032-01-01": 3188.77502474478, - "2031-01-01": 3127.32804150933, - "2030-01-01": 3066.68957121119, - "2029-01-01": 3006.85961385036, - "2028-01-01": 2947.83816942684, - "2027-01-01": 2888.00821206601, - "2026-01-01": 2818.55695075121, - "2025-01-01": 2776.11945419345, - "2024-01-01": 2715.87176514834, - "2023-01-01": 2569, - "2015-01-01": 2569 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 992.617847815562, - "2034-01-01": 973.396703738808, - "2033-01-01": 954.412857737076, - "2032-01-01": 935.903607885387, - "2031-01-01": 917.868954183742, - "2030-01-01": 900.071598557119, - "2029-01-01": 882.511541005516, - "2028-01-01": 865.188781528936, - "2027-01-01": 847.628723977334, - "2026-01-01": 827.244819332974, - "2025-01-01": 814.78943887188, - "2024-01-01": 797.106777314849, - "2023-01-01": 754, - "2015-01-01": 754 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1329.63398712695, - "2034-01-01": 1303.88683126816, - "2033-01-01": 1278.4575415311, - "2032-01-01": 1253.66398403746, - "2031-01-01": 1229.50615878724, - "2030-01-01": 1205.66619965874, - "2029-01-01": 1182.14410665195, - "2028-01-01": 1158.93987976688, - "2027-01-01": 1135.41778676009, - "2026-01-01": 1108.11308690491, - "2025-01-01": 1091.42882395305, - "2024-01-01": 1067.74250011671, - "2023-01-01": 1010, - "2015-01-01": 1010 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1494.19264890008, - "2034-01-01": 1465.25896385086, - "2033-01-01": 1436.6824847899, - "2032-01-01": 1408.82041770546, - "2031-01-01": 1381.67276259754, - "2030-01-01": 1354.88231347789, - "2029-01-01": 1328.4490703465, - "2028-01-01": 1302.37303320337, - "2027-01-01": 1275.93979007198, - "2026-01-01": 1245.25579568027, - "2025-01-01": 1226.50664869971, - "2024-01-01": 1199.88884914105, - "2023-01-01": 1135, - "2015-01-01": 1135 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1631.10545549533, - "2034-01-01": 1599.52057815966, - "2033-01-01": 1568.32563758122, - "2032-01-01": 1537.91057051723, - "2031-01-01": 1508.27537696771, - "2030-01-01": 1479.03012017542, - "2029-01-01": 1450.17480014036, - "2028-01-01": 1421.70941686254, - "2027-01-01": 1392.85409682748, - "2026-01-01": 1359.35852938137, - "2025-01-01": 1338.89139888894, - "2024-01-01": 1309.83461152931, - "2023-01-01": 1239, - "2015-01-01": 1239 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1749.58769197199, - "2034-01-01": 1715.7085136192, - "2033-01-01": 1682.24759672755, - "2032-01-01": 1649.6232027582, - "2031-01-01": 1617.83533171113, - "2030-01-01": 1586.46572212521, - "2029-01-01": 1555.51437400044, - "2028-01-01": 1524.98128733681, - "2027-01-01": 1494.02993921204, - "2026-01-01": 1458.10127969963, - "2025-01-01": 1436.14743270654, - "2024-01-01": 1404.97998282684, - "2023-01-01": 1329, - "2015-01-01": 1329 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1854.9052355068, - "2034-01-01": 1818.98667847212, - "2033-01-01": 1783.51156041318, - "2032-01-01": 1748.92332030572, - "2031-01-01": 1715.22195814973, - "2030-01-01": 1681.96403496947, - "2029-01-01": 1649.14955076495, - "2028-01-01": 1616.77850553617, - "2027-01-01": 1583.96402133165, - "2026-01-01": 1545.87261331586, - "2025-01-01": 1522.5972405444, - "2024-01-01": 1489.55364620242, - "2023-01-01": 1409, - "2015-01-01": 1409 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1949.69102468813, - "2034-01-01": 1911.93702683975, - "2033-01-01": 1874.64912773025, - "2032-01-01": 1838.29342609849, - "2031-01-01": 1802.86992194446, - "2030-01-01": 1767.9125165293, - "2029-01-01": 1733.42120985301, - "2028-01-01": 1699.39600191559, - "2027-01-01": 1664.9046952393, - "2026-01-01": 1624.86681357047, - "2025-01-01": 1600.40206759848, - "2024-01-01": 1565.66994324044, - "2023-01-01": 1481, - "2015-01-01": 1481 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2036.57799810434, - "2034-01-01": 1997.14151284342, - "2033-01-01": 1958.1918977709, - "2032-01-01": 1920.21602307519, - "2031-01-01": 1883.2138887563, - "2030-01-01": 1846.69862462581, - "2029-01-01": 1810.67023068373, - "2028-01-01": 1775.12870693006, - "2027-01-01": 1739.10031298798, - "2026-01-01": 1697.27816380386, - "2025-01-01": 1671.72315906472, - "2024-01-01": 1635.44321552529, - "2023-01-01": 1547, - "2015-01-01": 1547 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2118.19909434382, - "2034-01-01": 2077.18209060443, - "2033-01-01": 2036.67146962726, - "2032-01-01": 1997.17361417452, - "2031-01-01": 1958.68852424621, - "2030-01-01": 1920.70981708011, - "2029-01-01": 1883.23749267623, - "2028-01-01": 1846.27155103456, - "2027-01-01": 1808.79922663068, - "2026-01-01": 1765.30094735644, - "2025-01-01": 1738.72176013906, - "2024-01-01": 1700.98780464137, - "2023-01-01": 1609, - "2015-01-01": 1609 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2223.51663787863, - "2034-01-01": 2180.46025545736, - "2033-01-01": 2137.93543331289, - "2032-01-01": 2096.47373172204, - "2031-01-01": 2056.0751506848, - "2030-01-01": 2016.20812992437, - "2029-01-01": 1976.87266944074, - "2028-01-01": 1938.06876923392, - "2027-01-01": 1898.73330875029, - "2026-01-01": 1853.07228097267, - "2025-01-01": 1825.17156797693, - "2024-01-01": 1785.56146801695, - "2023-01-01": 1689, - "2015-01-01": 1689 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2359.11297517969, - "2034-01-01": 2313.4308927055, - "2033-01-01": 2268.31278655814, - "2032-01-01": 2224.32263306448, - "2031-01-01": 2181.46043222449, - "2030-01-01": 2139.16220771135, - "2029-01-01": 2097.42795952505, - "2028-01-01": 2056.25768766559, - "2027-01-01": 2014.52343947929, - "2026-01-01": 1966.07787300357, - "2025-01-01": 1936.47569556818, - "2024-01-01": 1894.45005961301, - "2023-01-01": 1792, - "2015-01-01": 1792 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2482.86108883309, - "2034-01-01": 2434.78273640768, - "2033-01-01": 2387.29794388876, - "2032-01-01": 2341.00027118281, - "2031-01-01": 2295.88971828984, - "2030-01-01": 2251.37272530335, - "2029-01-01": 2207.44929222335, - "2028-01-01": 2164.11941904983, - "2027-01-01": 2120.19598596983, - "2026-01-01": 2069.20919000264, - "2025-01-01": 2038.05421977767, - "2024-01-01": 1993.82411407932, - "2023-01-01": 1886, - "2015-01-01": 1886 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2596.07744813301, - "2034-01-01": 2545.80676362458, - "2033-01-01": 2496.15670485081, - "2032-01-01": 2447.7478975464, - "2031-01-01": 2400.58034171133, - "2030-01-01": 2354.03341161093, - "2029-01-01": 2308.1071072452, - "2028-01-01": 2262.80142861414, - "2027-01-01": 2216.87512424841, - "2026-01-01": 2163.56337364009, - "2025-01-01": 2130.98776320338, - "2024-01-01": 2084.74080220807, - "2023-01-01": 1972, - "2015-01-01": 1972 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2701.39499166782, - "2034-01-01": 2649.0849284775, - "2033-01-01": 2597.42066853645, - "2032-01-01": 2547.04801509392, - "2031-01-01": 2497.96696814992, - "2030-01-01": 2449.53172445518, - "2029-01-01": 2401.74228400971, - "2028-01-01": 2354.5986468135, - "2027-01-01": 2306.80920636802, - "2026-01-01": 2251.33470725632, - "2025-01-01": 2217.43757104124, - "2024-01-01": 2169.31446558365, - "2023-01-01": 2052, - "2015-01-01": 2052 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2809.34547379099, - "2034-01-01": 2754.94504745175, - "2033-01-01": 2701.21623131422, - "2032-01-01": 2648.83063558013, - "2031-01-01": 2597.78826024948, - "2030-01-01": 2547.41749512055, - "2029-01-01": 2497.71834019333, - "2028-01-01": 2448.69079546784, - "2027-01-01": 2398.99164054062, - "2026-01-01": 2341.30032421295, - "2025-01-01": 2306.04862407505, - "2024-01-01": 2256.00247054362, - "2023-01-01": 2134, - "2015-01-01": 2134 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2923.8783023851, - "2034-01-01": 2867.2600517293, - "2033-01-01": 2811.34079182234, - "2032-01-01": 2756.81951341306, - "2031-01-01": 2703.69621650145, - "2030-01-01": 2651.27191033867, - "2029-01-01": 2599.54659492474, - "2028-01-01": 2548.52027025964, - "2027-01-01": 2496.7949548457, - "2026-01-01": 2436.7516495206, - "2025-01-01": 2400.06279009873, - "2024-01-01": 2347.97632946456, - "2023-01-01": 2221, - "2015-01-01": 2221 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3031.82878450827, - "2034-01-01": 2973.12017070355, - "2033-01-01": 2915.13635460011, - "2032-01-01": 2858.60213389927, - "2031-01-01": 2803.51750860101, - "2030-01-01": 2749.15768100404, - "2029-01-01": 2695.52265110836, - "2028-01-01": 2642.61241891398, - "2027-01-01": 2588.9773890183, - "2026-01-01": 2526.71726647724, - "2025-01-01": 2488.67384313255, - "2024-01-01": 2434.66433442453, - "2023-01-01": 2303, - "2015-01-01": 2303 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3131.88045086634, - "2034-01-01": 3071.23442731383, - "2033-01-01": 3011.33712010146, - "2032-01-01": 2952.93724556941, - "2031-01-01": 2896.03480371767, - "2030-01-01": 2839.88107820608, - "2029-01-01": 2784.47606903465, - "2028-01-01": 2729.81977620337, - "2027-01-01": 2674.41476703193, - "2026-01-01": 2610.10003341266, - "2025-01-01": 2570.80116057852, - "2024-01-01": 2515.00931463134, - "2023-01-01": 2379, - "2015-01-01": 2379 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ID.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3712.44340960197, - "2034-01-01": 3640.55531106557, - "2033-01-01": 3569.55471991851, - "2032-01-01": 3500.32914355012, - "2031-01-01": 3432.87858196042, - "2030-01-01": 3366.31552776005, - "2029-01-01": 3300.63998094901, - "2028-01-01": 3235.85194152732, - "2027-01-01": 3170.17639471629, - "2026-01-01": 3093.93950997213, - "2025-01-01": 3047.35572628475, - "2024-01-01": 2981.22163398922, - "2023-01-01": 2820, - "2015-01-01": 2820 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL", - "description": null, - "label": "IL", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 750.387497685504, - "2034-01-01": 735.856924577083, - "2033-01-01": 721.505741260124, - "2032-01-01": 707.513337526089, - "2031-01-01": 693.879713374978, - "2030-01-01": 680.425479015328, - "2029-01-01": 667.150634447141, - "2028-01-01": 654.055179670416, - "2027-01-01": 640.780335102229, - "2026-01-01": 625.370752015644, - "2025-01-01": 615.95488084479, - "2024-01-01": 602.587351551013, - "2023-01-01": 570, - "2015-01-01": 570 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1012.36488722834, - "2034-01-01": 992.761359648731, - "2033-01-01": 973.399850928132, - "2032-01-01": 954.522379925548, - "2031-01-01": 936.128946640979, - "2030-01-01": 917.977532215417, - "2029-01-01": 900.068136648862, - "2028-01-01": 882.400759941315, - "2027-01-01": 864.491364374761, - "2026-01-01": 843.701944386017, - "2025-01-01": 830.998777841479, - "2024-01-01": 812.964339197771, - "2023-01-01": 769, - "2015-01-01": 769 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1140.06240876429, - "2034-01-01": 1117.9861345329, - "2033-01-01": 1096.18240689696, - "2032-01-01": 1074.92377245192, - "2031-01-01": 1054.21023119777, - "2030-01-01": 1033.76923653908, - "2029-01-01": 1013.60078847583, - "2028-01-01": 993.704887008035, - "2027-01-01": 973.536438944789, - "2026-01-01": 950.124686395697, - "2025-01-01": 935.819169844891, - "2024-01-01": 915.509906040663, - "2023-01-01": 866, - "2015-01-01": 866 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1246.69642159329, - "2034-01-01": 1222.55527644649, - "2033-01-01": 1198.71217012866, - "2032-01-01": 1175.46514146878, - "2031-01-01": 1152.81419046685, - "2030-01-01": 1130.46127829389, - "2029-01-01": 1108.4064049499, - "2028-01-01": 1086.64957043488, - "2027-01-01": 1064.5946970909, - "2026-01-01": 1038.99316168213, - "2025-01-01": 1023.34960028073, - "2024-01-01": 1001.14074020844, - "2023-01-01": 947, - "2015-01-01": 947 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1340.16574148043, - "2034-01-01": 1314.21464775346, - "2033-01-01": 1288.58393789966, - "2032-01-01": 1263.59399579221, - "2031-01-01": 1239.2448214311, - "2030-01-01": 1215.21603094317, - "2029-01-01": 1191.5076243284, - "2028-01-01": 1168.11960158681, - "2027-01-01": 1144.41119497205, - "2026-01-01": 1116.89022026654, - "2025-01-01": 1100.07380473683, - "2024-01-01": 1076.19986645427, - "2023-01-01": 1018, - "2015-01-01": 1018 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1421.7868377199, - "2034-01-01": 1394.25522551447, - "2033-01-01": 1367.06350975602, - "2032-01-01": 1340.55158689154, - "2031-01-01": 1314.71945692101, - "2030-01-01": 1289.22722339746, - "2029-01-01": 1264.0748863209, - "2028-01-01": 1239.26244569131, - "2027-01-01": 1214.11010861475, - "2026-01-01": 1184.91300381911, - "2025-01-01": 1167.07240581118, - "2024-01-01": 1141.74445557034, - "2023-01-01": 1080, - "2015-01-01": 1080 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1496.82558748845, - "2034-01-01": 1467.84091797218, - "2033-01-01": 1439.21408388204, - "2032-01-01": 1411.30292064415, - "2031-01-01": 1384.10742825851, - "2030-01-01": 1357.269771299, - "2029-01-01": 1330.78994976561, - "2028-01-01": 1304.66796365836, - "2027-01-01": 1278.18814212497, - "2026-01-01": 1247.45007902068, - "2025-01-01": 1228.66789389566, - "2024-01-01": 1202.00319072544, - "2023-01-01": 1137, - "2015-01-01": 1137 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1565.28199078608, - "2034-01-01": 1534.97172512658, - "2033-01-01": 1505.0356602777, - "2032-01-01": 1475.84799705003, - "2031-01-01": 1447.40873544359, - "2030-01-01": 1419.34367464776, - "2029-01-01": 1391.65281466254, - "2028-01-01": 1364.33615548794, - "2027-01-01": 1336.64529550272, - "2026-01-01": 1304.50144587123, - "2025-01-01": 1284.86026899027, - "2024-01-01": 1256.97607191957, - "2023-01-01": 1189, - "2015-01-01": 1189 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1628.47251690696, - "2034-01-01": 1596.93862403834, - "2033-01-01": 1565.79403848908, - "2032-01-01": 1535.42806757855, - "2031-01-01": 1505.84071130675, - "2030-01-01": 1476.64266235432, - "2029-01-01": 1447.83392072125, - "2028-01-01": 1419.41448640755, - "2027-01-01": 1390.60574477449, - "2026-01-01": 1357.16424604097, - "2025-01-01": 1336.73015369299, - "2024-01-01": 1307.72026994492, - "2023-01-01": 1237, - "2015-01-01": 1237 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1711.41008244062, - "2034-01-01": 1678.27017886001, - "2033-01-01": 1645.53940989151, - "2032-01-01": 1613.62691014722, - "2031-01-01": 1582.53267962714, - "2030-01-01": 1551.84758371917, - "2029-01-01": 1521.5716224233, - "2028-01-01": 1491.70479573954, - "2027-01-01": 1461.42883444368, - "2026-01-01": 1426.28417126375, - "2025-01-01": 1404.80937736531, - "2024-01-01": 1374.32202985319, - "2023-01-01": 1300, - "2015-01-01": 1300 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1818.04409526962, - "2034-01-01": 1782.8393207736, - "2033-01-01": 1748.06917312321, - "2032-01-01": 1714.16827916408, - "2031-01-01": 1681.13663889622, - "2030-01-01": 1648.53962547398, - "2029-01-01": 1616.37723889737, - "2028-01-01": 1584.64947916639, - "2027-01-01": 1552.48709258979, - "2026-01-01": 1515.15264655018, - "2025-01-01": 1492.33980780115, - "2024-01-01": 1459.95286402096, - "2023-01-01": 1381, - "2015-01-01": 1381 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1915.46282303931, - "2034-01-01": 1878.37162326255, - "2033-01-01": 1841.73833953242, - "2032-01-01": 1806.02088789554, - "2031-01-01": 1771.21926835192, - "2030-01-01": 1736.87556485492, - "2029-01-01": 1702.98977740454, - "2028-01-01": 1669.5619060008, - "2027-01-01": 1635.67611855043, - "2026-01-01": 1596.3411301452, - "2025-01-01": 1572.30588005117, - "2024-01-01": 1538.18350264338, - "2023-01-01": 1455, - "2015-01-01": 1455 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2004.9827350439, - "2034-01-01": 1966.15806338754, - "2033-01-01": 1927.81270866521, - "2032-01-01": 1890.42598781093, - "2031-01-01": 1853.99790082472, - "2030-01-01": 1818.04913077254, - "2029-01-01": 1782.57967765438, - "2028-01-01": 1747.58954147025, - "2027-01-01": 1712.12008835209, - "2026-01-01": 1670.94676371899, - "2025-01-01": 1645.78821671336, - "2024-01-01": 1610.07111651262, - "2023-01-01": 1523, - "2015-01-01": 1523 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2087.92030057756, - "2034-01-01": 2047.48961820922, - "2033-01-01": 2007.55808006764, - "2032-01-01": 1968.62483037961, - "2031-01-01": 1930.68986914511, - "2030-01-01": 1893.25405213739, - "2029-01-01": 1856.31737935643, - "2028-01-01": 1819.87985080224, - "2027-01-01": 1782.94317802129, - "2026-01-01": 1740.06668894177, - "2025-01-01": 1713.86744038568, - "2024-01-01": 1676.67287642089, - "2023-01-01": 1586, - "2015-01-01": 1586 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2173.49080469959, - "2034-01-01": 2131.40312715222, - "2033-01-01": 2089.83505056222, - "2032-01-01": 2049.30617588697, - "2031-01-01": 2009.81650312647, - "2030-01-01": 1970.84643132335, - "2029-01-01": 1932.3959604776, - "2028-01-01": 1894.46509058922, - "2027-01-01": 1856.01461974347, - "2026-01-01": 1811.38089750496, - "2025-01-01": 1784.10790925394, - "2024-01-01": 1745.38897791355, - "2023-01-01": 1651, - "2015-01-01": 1651 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2264.32718599836, - "2034-01-01": 2220.48054433786, - "2033-01-01": 2177.17521924108, - "2032-01-01": 2134.95252727171, - "2031-01-01": 2093.81246842976, - "2030-01-01": 2053.21372615152, - "2029-01-01": 2013.15630043699, - "2028-01-01": 1973.64019128617, - "2027-01-01": 1933.58276557164, - "2026-01-01": 1887.08367274896, - "2025-01-01": 1858.6708685141, - "2024-01-01": 1818.33376257499, - "2023-01-01": 1720, - "2015-01-01": 1720 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2349.8976901204, - "2034-01-01": 2304.39405328087, - "2033-01-01": 2259.45218973565, - "2032-01-01": 2215.63387277907, - "2031-01-01": 2172.93910241111, - "2030-01-01": 2130.80610533748, - "2029-01-01": 2089.23488155815, - "2028-01-01": 2048.22543107314, - "2027-01-01": 2006.65420729382, - "2026-01-01": 1958.39788131215, - "2025-01-01": 1928.91133738237, - "2024-01-01": 1887.04986406765, - "2023-01-01": 1785, - "2015-01-01": 1785 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2428.8858477715, - "2034-01-01": 2381.85267692056, - "2033-01-01": 2335.40016249987, - "2032-01-01": 2290.10896093971, - "2031-01-01": 2245.97907224006, - "2030-01-01": 2202.42983997067, - "2029-01-01": 2159.46126413154, - "2028-01-01": 2117.07334472266, - "2027-01-01": 2074.10476888353, - "2026-01-01": 2024.22638152432, - "2025-01-01": 1993.74869326077, - "2024-01-01": 1950.48011159933, - "2023-01-01": 1845, - "2015-01-01": 1845 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2890.96657003047, - "2034-01-01": 2834.98562521276, - "2033-01-01": 2779.69580317058, - "2032-01-01": 2725.78822667946, - "2031-01-01": 2673.26289573939, - "2030-01-01": 2621.42868757484, - "2029-01-01": 2570.28560218583, - "2028-01-01": 2519.83363957234, - "2027-01-01": 2468.69055418332, - "2026-01-01": 2409.32310776553, - "2025-01-01": 2373.0472251494, - "2024-01-01": 2321.54705965969, - "2023-01-01": 2196, - "2015-01-01": 2196 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 895.199120045865, - "2034-01-01": 877.864401249854, - "2033-01-01": 860.743691327867, - "2032-01-01": 844.05099915393, - "2031-01-01": 827.786324728043, - "2030-01-01": 811.735659176181, - "2029-01-01": 795.899002498343, - "2028-01-01": 780.276354694531, - "2027-01-01": 764.439698016694, - "2026-01-01": 746.056335737961, - "2025-01-01": 734.823366621854, - "2024-01-01": 718.876138692437, - "2023-01-01": 680, - "2015-01-01": 680 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1201.93646559099, - "2034-01-01": 1178.66205638399, - "2033-01-01": 1155.67498556227, - "2032-01-01": 1133.26259151109, - "2031-01-01": 1111.42487423045, - "2030-01-01": 1089.87449533508, - "2029-01-01": 1068.61145482498, - "2028-01-01": 1047.63575270016, - "2027-01-01": 1026.37271219006, - "2026-01-01": 1001.69034489523, - "2025-01-01": 986.608431949637, - "2024-01-01": 965.196933273816, - "2023-01-01": 913, - "2015-01-01": 913 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1350.69749583391, - "2034-01-01": 1324.54246423875, - "2033-01-01": 1298.71033426822, - "2032-01-01": 1273.52400754696, - "2031-01-01": 1248.98348407496, - "2030-01-01": 1224.76586222759, - "2029-01-01": 1200.87114200485, - "2028-01-01": 1177.29932340675, - "2027-01-01": 1153.40460318401, - "2026-01-01": 1125.66735362816, - "2025-01-01": 1108.71878552062, - "2024-01-01": 1084.65723279182, - "2023-01-01": 1026, - "2015-01-01": 1026 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1475.76207878149, - "2034-01-01": 1447.1852850016, - "2033-01-01": 1418.96129114491, - "2032-01-01": 1391.44289713464, - "2031-01-01": 1364.63010297079, - "2030-01-01": 1338.17010873015, - "2029-01-01": 1312.06291441271, - "2028-01-01": 1286.30852001848, - "2027-01-01": 1260.20132570105, - "2026-01-01": 1229.89581229743, - "2025-01-01": 1211.37793232809, - "2024-01-01": 1185.08845805033, - "2023-01-01": 1121, - "2015-01-01": 1121 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1583.71256090467, - "2034-01-01": 1553.04540397584, - "2033-01-01": 1522.75685392268, - "2032-01-01": 1493.22551762085, - "2031-01-01": 1464.45139507035, - "2030-01-01": 1436.05587939551, - "2029-01-01": 1408.03897059633, - "2028-01-01": 1380.40066867282, - "2027-01-01": 1352.38375987365, - "2026-01-01": 1319.86142925407, - "2025-01-01": 1299.9889853619, - "2024-01-01": 1271.7764630103, - "2023-01-01": 1203, - "2015-01-01": 1203 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1679.81481938018, - "2034-01-01": 1647.28672940414, - "2033-01-01": 1615.16022078582, - "2032-01-01": 1583.83687488296, - "2031-01-01": 1553.31669169556, - "2030-01-01": 1523.19808986589, - "2029-01-01": 1493.48106939395, - "2028-01-01": 1464.16563027974, - "2027-01-01": 1434.4486098078, - "2026-01-01": 1399.95277117888, - "2025-01-01": 1378.87443501395, - "2024-01-01": 1348.94993084051, - "2023-01-01": 1276, - "2015-01-01": 1276 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1766.7017927964, - "2034-01-01": 1732.4912154078, - "2033-01-01": 1698.70299082647, - "2032-01-01": 1665.75947185967, - "2031-01-01": 1633.6606585074, - "2030-01-01": 1601.9841979624, - "2029-01-01": 1570.73009022467, - "2028-01-01": 1539.89833529421, - "2027-01-01": 1508.64422755647, - "2026-01-01": 1472.36412141227, - "2025-01-01": 1450.19552648019, - "2024-01-01": 1418.72320312537, - "2023-01-01": 1342, - "2015-01-01": 1342 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1845.6899504475, - "2034-01-01": 1809.94983904749, - "2033-01-01": 1774.65096359069, - "2032-01-01": 1740.23456002031, - "2031-01-01": 1706.70062833635, - "2030-01-01": 1673.6079325956, - "2029-01-01": 1640.95647279806, - "2028-01-01": 1608.74624894372, - "2027-01-01": 1576.09478914618, - "2026-01-01": 1538.19262162444, - "2025-01-01": 1515.03288235859, - "2024-01-01": 1482.15345065705, - "2023-01-01": 1402, - "2015-01-01": 1402 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1919.41223092187, - "2034-01-01": 1882.24455444454, - "2033-01-01": 1845.53573817063, - "2032-01-01": 1809.74464230357, - "2031-01-01": 1774.87126684336, - "2030-01-01": 1740.45675158658, - "2029-01-01": 1706.50109653321, - "2028-01-01": 1673.00430168327, - "2027-01-01": 1639.04864662991, - "2026-01-01": 1599.6325551558, - "2025-01-01": 1575.54774784509, - "2024-01-01": 1541.35501501996, - "2023-01-01": 1458, - "2015-01-01": 1458 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2016.83095869157, - "2034-01-01": 1977.77685693349, - "2033-01-01": 1939.20490457984, - "2032-01-01": 1901.59725103503, - "2031-01-01": 1864.95389629906, - "2030-01-01": 1828.79269096751, - "2029-01-01": 1793.11363504039, - "2028-01-01": 1757.91672851768, - "2027-01-01": 1722.23767259055, - "2026-01-01": 1680.82103875082, - "2025-01-01": 1655.51382009512, - "2024-01-01": 1619.58565364237, - "2023-01-01": 1532, - "2015-01-01": 1532 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2140.57907234497, - "2034-01-01": 2099.12870063568, - "2033-01-01": 2058.19006191046, - "2032-01-01": 2018.27488915337, - "2031-01-01": 1979.38318236441, - "2030-01-01": 1941.00320855952, - "2029-01-01": 1903.13496773869, - "2028-01-01": 1865.77845990192, - "2027-01-01": 1827.91021908109, - "2026-01-01": 1783.95235574989, - "2025-01-01": 1757.09234430461, - "2024-01-01": 1718.95970810868, - "2023-01-01": 1626, - "2015-01-01": 1626 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2253.79543164488, - "2034-01-01": 2210.15272785257, - "2033-01-01": 2167.04882287251, - "2032-01-01": 2125.02251551695, - "2031-01-01": 2084.0738057859, - "2030-01-01": 2043.66389486709, - "2029-01-01": 2003.79278276054, - "2028-01-01": 1964.46046946623, - "2027-01-01": 1924.58935735968, - "2026-01-01": 1878.30653938734, - "2025-01-01": 1850.02588773032, - "2024-01-01": 1809.87639623743, - "2023-01-01": 1712, - "2015-01-01": 1712 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2357.79650588551, - "2034-01-01": 2312.13991564483, - "2033-01-01": 2267.04698701207, - "2032-01-01": 2223.08138159513, - "2031-01-01": 2180.24309939401, - "2030-01-01": 2137.9684788008, - "2029-01-01": 2096.25751981549, - "2028-01-01": 2055.1102224381, - "2027-01-01": 2013.39926345279, - "2026-01-01": 1964.98073133336, - "2025-01-01": 1935.39507297021, - "2024-01-01": 1893.39288882082, - "2023-01-01": 1791, - "2015-01-01": 1791 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2453.89876436102, - "2034-01-01": 2406.38124107313, - "2033-01-01": 2359.45035387521, - "2032-01-01": 2313.69273885724, - "2031-01-01": 2269.10839601922, - "2030-01-01": 2225.11068927118, - "2029-01-01": 2181.69961861311, - "2028-01-01": 2138.87518404501, - "2027-01-01": 2095.46411338694, - "2026-01-01": 2045.07207325818, - "2025-01-01": 2014.28052262226, - "2024-01-01": 1970.56635665103, - "2023-01-01": 1864, - "2015-01-01": 1864 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2552.6339614249, - "2034-01-01": 2503.20452062274, - "2033-01-01": 2454.38531983049, - "2032-01-01": 2406.78659905805, - "2031-01-01": 2360.40835830541, - "2030-01-01": 2314.64035756267, - "2029-01-01": 2269.48259682984, - "2028-01-01": 2224.93507610691, - "2027-01-01": 2179.77731537407, - "2026-01-01": 2127.35769852339, - "2025-01-01": 2095.32721747026, - "2024-01-01": 2049.85416606564, - "2023-01-01": 1939, - "2015-01-01": 1939 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2657.95150495971, - "2034-01-01": 2606.48268547567, - "2033-01-01": 2555.64928351612, - "2032-01-01": 2506.08671660557, - "2031-01-01": 2457.794984744, - "2030-01-01": 2410.13867040693, - "2029-01-01": 2363.11777359435, - "2028-01-01": 2316.73229430626, - "2027-01-01": 2269.71139749368, - "2026-01-01": 2215.12903213962, - "2025-01-01": 2181.77702530812, - "2024-01-01": 2134.42782944122, - "2023-01-01": 2019, - "2015-01-01": 2019 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2756.68670202359, - "2034-01-01": 2703.30596502528, - "2033-01-01": 2650.5842494714, - "2032-01-01": 2599.18057680637, - "2031-01-01": 2549.09494703018, - "2030-01-01": 2499.66833869842, - "2029-01-01": 2450.90075181108, - "2028-01-01": 2402.79218636816, - "2027-01-01": 2354.02459948082, - "2026-01-01": 2297.41465740484, - "2025-01-01": 2262.82372015612, - "2024-01-01": 2213.71563885583, - "2023-01-01": 2094, - "2015-01-01": 2094 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2848.83955261655, - "2034-01-01": 2793.67435927159, - "2033-01-01": 2739.19021769633, - "2032-01-01": 2686.06817966045, - "2031-01-01": 2634.30824516395, - "2030-01-01": 2583.22936243714, - "2029-01-01": 2532.83153148002, - "2028-01-01": 2483.1147522926, - "2027-01-01": 2432.71692133548, - "2026-01-01": 2374.21457431904, - "2025-01-01": 2338.46730201425, - "2024-01-01": 2287.71759430946, - "2023-01-01": 2164, - "2015-01-01": 2164 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3382.00961676151, - "2034-01-01": 3316.52006883952, - "2033-01-01": 3251.83903385484, - "2032-01-01": 3188.77502474478, - "2031-01-01": 3127.32804150933, - "2030-01-01": 3066.68957121119, - "2029-01-01": 3006.85961385036, - "2028-01-01": 2947.83816942684, - "2027-01-01": 2888.00821206601, - "2026-01-01": 2818.55695075121, - "2025-01-01": 2776.11945419345, - "2024-01-01": 2715.87176514834, - "2023-01-01": 2569, - "2015-01-01": 2569 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 992.617847815562, - "2034-01-01": 973.396703738808, - "2033-01-01": 954.412857737076, - "2032-01-01": 935.903607885387, - "2031-01-01": 917.868954183742, - "2030-01-01": 900.071598557119, - "2029-01-01": 882.511541005516, - "2028-01-01": 865.188781528936, - "2027-01-01": 847.628723977334, - "2026-01-01": 827.244819332974, - "2025-01-01": 814.78943887188, - "2024-01-01": 797.106777314849, - "2023-01-01": 754, - "2015-01-01": 754 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1329.63398712695, - "2034-01-01": 1303.88683126816, - "2033-01-01": 1278.4575415311, - "2032-01-01": 1253.66398403746, - "2031-01-01": 1229.50615878724, - "2030-01-01": 1205.66619965874, - "2029-01-01": 1182.14410665195, - "2028-01-01": 1158.93987976688, - "2027-01-01": 1135.41778676009, - "2026-01-01": 1108.11308690491, - "2025-01-01": 1091.42882395305, - "2024-01-01": 1067.74250011671, - "2023-01-01": 1010, - "2015-01-01": 1010 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1494.19264890008, - "2034-01-01": 1465.25896385086, - "2033-01-01": 1436.6824847899, - "2032-01-01": 1408.82041770546, - "2031-01-01": 1381.67276259754, - "2030-01-01": 1354.88231347789, - "2029-01-01": 1328.4490703465, - "2028-01-01": 1302.37303320337, - "2027-01-01": 1275.93979007198, - "2026-01-01": 1245.25579568027, - "2025-01-01": 1226.50664869971, - "2024-01-01": 1199.88884914105, - "2023-01-01": 1135, - "2015-01-01": 1135 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1631.10545549533, - "2034-01-01": 1599.52057815966, - "2033-01-01": 1568.32563758122, - "2032-01-01": 1537.91057051723, - "2031-01-01": 1508.27537696771, - "2030-01-01": 1479.03012017542, - "2029-01-01": 1450.17480014036, - "2028-01-01": 1421.70941686254, - "2027-01-01": 1392.85409682748, - "2026-01-01": 1359.35852938137, - "2025-01-01": 1338.89139888894, - "2024-01-01": 1309.83461152931, - "2023-01-01": 1239, - "2015-01-01": 1239 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1749.58769197199, - "2034-01-01": 1715.7085136192, - "2033-01-01": 1682.24759672755, - "2032-01-01": 1649.6232027582, - "2031-01-01": 1617.83533171113, - "2030-01-01": 1586.46572212521, - "2029-01-01": 1555.51437400044, - "2028-01-01": 1524.98128733681, - "2027-01-01": 1494.02993921204, - "2026-01-01": 1458.10127969963, - "2025-01-01": 1436.14743270654, - "2024-01-01": 1404.97998282684, - "2023-01-01": 1329, - "2015-01-01": 1329 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1854.9052355068, - "2034-01-01": 1818.98667847212, - "2033-01-01": 1783.51156041318, - "2032-01-01": 1748.92332030572, - "2031-01-01": 1715.22195814973, - "2030-01-01": 1681.96403496947, - "2029-01-01": 1649.14955076495, - "2028-01-01": 1616.77850553617, - "2027-01-01": 1583.96402133165, - "2026-01-01": 1545.87261331586, - "2025-01-01": 1522.5972405444, - "2024-01-01": 1489.55364620242, - "2023-01-01": 1409, - "2015-01-01": 1409 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1949.69102468813, - "2034-01-01": 1911.93702683975, - "2033-01-01": 1874.64912773025, - "2032-01-01": 1838.29342609849, - "2031-01-01": 1802.86992194446, - "2030-01-01": 1767.9125165293, - "2029-01-01": 1733.42120985301, - "2028-01-01": 1699.39600191559, - "2027-01-01": 1664.9046952393, - "2026-01-01": 1624.86681357047, - "2025-01-01": 1600.40206759848, - "2024-01-01": 1565.66994324044, - "2023-01-01": 1481, - "2015-01-01": 1481 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2036.57799810434, - "2034-01-01": 1997.14151284342, - "2033-01-01": 1958.1918977709, - "2032-01-01": 1920.21602307519, - "2031-01-01": 1883.2138887563, - "2030-01-01": 1846.69862462581, - "2029-01-01": 1810.67023068373, - "2028-01-01": 1775.12870693006, - "2027-01-01": 1739.10031298798, - "2026-01-01": 1697.27816380386, - "2025-01-01": 1671.72315906472, - "2024-01-01": 1635.44321552529, - "2023-01-01": 1547, - "2015-01-01": 1547 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2118.19909434382, - "2034-01-01": 2077.18209060443, - "2033-01-01": 2036.67146962726, - "2032-01-01": 1997.17361417452, - "2031-01-01": 1958.68852424621, - "2030-01-01": 1920.70981708011, - "2029-01-01": 1883.23749267623, - "2028-01-01": 1846.27155103456, - "2027-01-01": 1808.79922663068, - "2026-01-01": 1765.30094735644, - "2025-01-01": 1738.72176013906, - "2024-01-01": 1700.98780464137, - "2023-01-01": 1609, - "2015-01-01": 1609 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2223.51663787863, - "2034-01-01": 2180.46025545736, - "2033-01-01": 2137.93543331289, - "2032-01-01": 2096.47373172204, - "2031-01-01": 2056.0751506848, - "2030-01-01": 2016.20812992437, - "2029-01-01": 1976.87266944074, - "2028-01-01": 1938.06876923392, - "2027-01-01": 1898.73330875029, - "2026-01-01": 1853.07228097267, - "2025-01-01": 1825.17156797693, - "2024-01-01": 1785.56146801695, - "2023-01-01": 1689, - "2015-01-01": 1689 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2359.11297517969, - "2034-01-01": 2313.4308927055, - "2033-01-01": 2268.31278655814, - "2032-01-01": 2224.32263306448, - "2031-01-01": 2181.46043222449, - "2030-01-01": 2139.16220771135, - "2029-01-01": 2097.42795952505, - "2028-01-01": 2056.25768766559, - "2027-01-01": 2014.52343947929, - "2026-01-01": 1966.07787300357, - "2025-01-01": 1936.47569556818, - "2024-01-01": 1894.45005961301, - "2023-01-01": 1792, - "2015-01-01": 1792 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2482.86108883309, - "2034-01-01": 2434.78273640768, - "2033-01-01": 2387.29794388876, - "2032-01-01": 2341.00027118281, - "2031-01-01": 2295.88971828984, - "2030-01-01": 2251.37272530335, - "2029-01-01": 2207.44929222335, - "2028-01-01": 2164.11941904983, - "2027-01-01": 2120.19598596983, - "2026-01-01": 2069.20919000264, - "2025-01-01": 2038.05421977767, - "2024-01-01": 1993.82411407932, - "2023-01-01": 1886, - "2015-01-01": 1886 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2596.07744813301, - "2034-01-01": 2545.80676362458, - "2033-01-01": 2496.15670485081, - "2032-01-01": 2447.7478975464, - "2031-01-01": 2400.58034171133, - "2030-01-01": 2354.03341161093, - "2029-01-01": 2308.1071072452, - "2028-01-01": 2262.80142861414, - "2027-01-01": 2216.87512424841, - "2026-01-01": 2163.56337364009, - "2025-01-01": 2130.98776320338, - "2024-01-01": 2084.74080220807, - "2023-01-01": 1972, - "2015-01-01": 1972 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2701.39499166782, - "2034-01-01": 2649.0849284775, - "2033-01-01": 2597.42066853645, - "2032-01-01": 2547.04801509392, - "2031-01-01": 2497.96696814992, - "2030-01-01": 2449.53172445518, - "2029-01-01": 2401.74228400971, - "2028-01-01": 2354.5986468135, - "2027-01-01": 2306.80920636802, - "2026-01-01": 2251.33470725632, - "2025-01-01": 2217.43757104124, - "2024-01-01": 2169.31446558365, - "2023-01-01": 2052, - "2015-01-01": 2052 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2809.34547379099, - "2034-01-01": 2754.94504745175, - "2033-01-01": 2701.21623131422, - "2032-01-01": 2648.83063558013, - "2031-01-01": 2597.78826024948, - "2030-01-01": 2547.41749512055, - "2029-01-01": 2497.71834019333, - "2028-01-01": 2448.69079546784, - "2027-01-01": 2398.99164054062, - "2026-01-01": 2341.30032421295, - "2025-01-01": 2306.04862407505, - "2024-01-01": 2256.00247054362, - "2023-01-01": 2134, - "2015-01-01": 2134 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2923.8783023851, - "2034-01-01": 2867.2600517293, - "2033-01-01": 2811.34079182234, - "2032-01-01": 2756.81951341306, - "2031-01-01": 2703.69621650145, - "2030-01-01": 2651.27191033867, - "2029-01-01": 2599.54659492474, - "2028-01-01": 2548.52027025964, - "2027-01-01": 2496.7949548457, - "2026-01-01": 2436.7516495206, - "2025-01-01": 2400.06279009873, - "2024-01-01": 2347.97632946456, - "2023-01-01": 2221, - "2015-01-01": 2221 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3031.82878450827, - "2034-01-01": 2973.12017070355, - "2033-01-01": 2915.13635460011, - "2032-01-01": 2858.60213389927, - "2031-01-01": 2803.51750860101, - "2030-01-01": 2749.15768100404, - "2029-01-01": 2695.52265110836, - "2028-01-01": 2642.61241891398, - "2027-01-01": 2588.9773890183, - "2026-01-01": 2526.71726647724, - "2025-01-01": 2488.67384313255, - "2024-01-01": 2434.66433442453, - "2023-01-01": 2303, - "2015-01-01": 2303 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3131.88045086634, - "2034-01-01": 3071.23442731383, - "2033-01-01": 3011.33712010146, - "2032-01-01": 2952.93724556941, - "2031-01-01": 2896.03480371767, - "2030-01-01": 2839.88107820608, - "2029-01-01": 2784.47606903465, - "2028-01-01": 2729.81977620337, - "2027-01-01": 2674.41476703193, - "2026-01-01": 2610.10003341266, - "2025-01-01": 2570.80116057852, - "2024-01-01": 2515.00931463134, - "2023-01-01": 2379, - "2015-01-01": 2379 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3712.44340960197, - "2034-01-01": 3640.55531106557, - "2033-01-01": 3569.55471991851, - "2032-01-01": 3500.32914355012, - "2031-01-01": 3432.87858196042, - "2030-01-01": 3366.31552776005, - "2029-01-01": 3300.63998094901, - "2028-01-01": 3235.85194152732, - "2027-01-01": 3170.17639471629, - "2026-01-01": 3093.93950997213, - "2025-01-01": 3047.35572628475, - "2024-01-01": 2981.22163398922, - "2023-01-01": 2820, - "2015-01-01": 2820 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1068.9730668783, - "2034-01-01": 1048.27337325718, - "2033-01-01": 1027.82923140916, - "2032-01-01": 1007.89619310734, - "2031-01-01": 988.474258351722, - "2030-01-01": 969.307875369205, - "2029-01-01": 950.397044159787, - "2028-01-01": 931.741764723469, - "2027-01-01": 912.830933514052, - "2026-01-01": 890.879036204741, - "2025-01-01": 877.465549554332, - "2024-01-01": 858.422683262146, - "2023-01-01": 812, - "2015-01-01": 812 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1431.0021227792, - "2034-01-01": 1403.2920649391, - "2033-01-01": 1375.92410657852, - "2032-01-01": 1349.24034717694, - "2031-01-01": 1323.24078673439, - "2030-01-01": 1297.58332577134, - "2029-01-01": 1272.26796428779, - "2028-01-01": 1247.29470228376, - "2027-01-01": 1221.97934080021, - "2026-01-01": 1192.59299551053, - "2025-01-01": 1174.63676399699, - "2024-01-01": 1149.1446511157, - "2023-01-01": 1087, - "2015-01-01": 1087 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1606.09253890582, - "2034-01-01": 1574.99201400709, - "2033-01-01": 1544.27544620588, - "2032-01-01": 1514.3267925997, - "2031-01-01": 1485.14605318855, - "2030-01-01": 1456.34927087491, - "2029-01-01": 1427.93644565879, - "2028-01-01": 1399.90757754019, - "2027-01-01": 1371.49475232407, - "2026-01-01": 1338.51283764752, - "2025-01-01": 1318.35956952744, - "2024-01-01": 1289.74836647761, - "2023-01-01": 1220, - "2015-01-01": 1220 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1752.22063056036, - "2034-01-01": 1718.29046774052, - "2033-01-01": 1684.77919581969, - "2032-01-01": 1652.10570569688, - "2031-01-01": 1620.2699973721, - "2030-01-01": 1588.85317994632, - "2029-01-01": 1557.85525341955, - "2028-01-01": 1527.2762177918, - "2027-01-01": 1496.27829126503, - "2026-01-01": 1460.29556304004, - "2025-01-01": 1438.30867790248, - "2024-01-01": 1407.09432441123, - "2023-01-01": 1331, - "2015-01-01": 1331 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1878.60168280213, - "2034-01-01": 1842.22426556403, - "2033-01-01": 1806.29595224245, - "2032-01-01": 1771.26584675391, - "2031-01-01": 1737.13394909841, - "2030-01-01": 1703.45115535943, - "2029-01-01": 1670.21746553697, - "2028-01-01": 1637.43287963102, - "2027-01-01": 1604.19918980856, - "2026-01-01": 1565.62116337951, - "2025-01-01": 1542.04844730792, - "2024-01-01": 1508.58272046192, - "2023-01-01": 1427, - "2015-01-01": 1427 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1991.81804210205, - "2034-01-01": 1953.24829278092, - "2033-01-01": 1915.1547132045, - "2032-01-01": 1878.01347311749, - "2031-01-01": 1841.8245725199, - "2030-01-01": 1806.111841667, - "2029-01-01": 1770.87528055881, - "2028-01-01": 1736.11488919533, - "2027-01-01": 1700.87832808714, - "2026-01-01": 1659.97534701696, - "2025-01-01": 1634.98199073363, - "2024-01-01": 1599.49940859067, - "2023-01-01": 1513, - "2015-01-01": 1513 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2093.1861777543, - "2034-01-01": 2052.65352645186, - "2033-01-01": 2012.62127825192, - "2032-01-01": 1973.58983625698, - "2031-01-01": 1935.55920046704, - "2030-01-01": 1898.0289677796, - "2029-01-01": 1860.99913819466, - "2028-01-01": 1824.46971171221, - "2027-01-01": 1787.43988212727, - "2026-01-01": 1744.45525562259, - "2025-01-01": 1718.18993077757, - "2024-01-01": 1680.90155958967, - "2023-01-01": 1590, - "2015-01-01": 1590 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2185.33902834726, - "2034-01-01": 2143.02192069817, - "2033-01-01": 2101.22724647685, - "2032-01-01": 2060.47743911107, - "2031-01-01": 2020.77249860081, - "2030-01-01": 1981.58999151832, - "2029-01-01": 1942.9299178636, - "2028-01-01": 1904.79227763665, - "2027-01-01": 1866.13220398193, - "2026-01-01": 1821.25517253679, - "2025-01-01": 1793.8335126357, - "2024-01-01": 1754.9035150433, - "2023-01-01": 1660, - "2015-01-01": 1660 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2272.22600176347, - "2034-01-01": 2228.22640670183, - "2033-01-01": 2184.7700165175, - "2032-01-01": 2142.40003608777, - "2031-01-01": 2101.11646541265, - "2030-01-01": 2060.37609961484, - "2029-01-01": 2020.17893869432, - "2028-01-01": 1980.52498265112, - "2027-01-01": 1940.32782173061, - "2026-01-01": 1893.66652277018, - "2025-01-01": 1865.15460410194, - "2024-01-01": 1824.67678732816, - "2023-01-01": 1726, - "2015-01-01": 1726 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2385.44236106339, - "2034-01-01": 2339.25043391873, - "2033-01-01": 2293.62877747955, - "2032-01-01": 2249.14766245136, - "2031-01-01": 2205.80708883414, - "2030-01-01": 2163.03678592241, - "2029-01-01": 2120.83675371617, - "2028-01-01": 2079.20699221543, - "2027-01-01": 2037.00696000919, - "2026-01-01": 1988.02070640763, - "2025-01-01": 1958.08814752765, - "2024-01-01": 1915.59347545691, - "2023-01-01": 1812, - "2015-01-01": 1812 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2530.25398342375, - "2034-01-01": 2481.2579105915, - "2033-01-01": 2432.86672754729, - "2032-01-01": 2385.6853240792, - "2031-01-01": 2339.7137001872, - "2030-01-01": 2294.34696608327, - "2029-01-01": 2249.58512176738, - "2028-01-01": 2205.42816723954, - "2027-01-01": 2160.66632292365, - "2026-01-01": 2108.70629012994, - "2025-01-01": 2076.95663330471, - "2024-01-01": 2031.88226259833, - "2023-01-01": 1922, - "2015-01-01": 1922 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2661.90091284226, - "2034-01-01": 2610.35561665765, - "2033-01-01": 2559.44668215433, - "2032-01-01": 2509.8104710136, - "2031-01-01": 2461.44698323545, - "2030-01-01": 2413.71985713859, - "2029-01-01": 2366.62909272302, - "2028-01-01": 2320.17468998874, - "2027-01-01": 2273.08392557317, - "2026-01-01": 2218.42045715023, - "2025-01-01": 2185.01889310204, - "2024-01-01": 2137.59934181781, - "2023-01-01": 2022, - "2015-01-01": 2022 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2781.69961861311, - "2034-01-01": 2727.83452917785, - "2033-01-01": 2674.63444084674, - "2032-01-01": 2622.7643547239, - "2031-01-01": 2572.22427080935, - "2030-01-01": 2522.34918799893, - "2029-01-01": 2473.13910629265, - "2028-01-01": 2424.59402569051, - "2027-01-01": 2375.38394398423, - "2026-01-01": 2318.26034913869, - "2025-01-01": 2283.35554951761, - "2024-01-01": 2233.80188390753, - "2023-01-01": 2113, - "2015-01-01": 2113 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2893.59950861884, - "2034-01-01": 2837.56757933409, - "2033-01-01": 2782.22740226272, - "2032-01-01": 2728.27072961815, - "2031-01-01": 2675.69756140035, - "2030-01-01": 2623.81614539595, - "2029-01-01": 2572.62648160494, - "2028-01-01": 2522.12857002732, - "2027-01-01": 2470.93890623631, - "2026-01-01": 2411.51739110594, - "2025-01-01": 2375.20847034535, - "2024-01-01": 2323.66140124408, - "2023-01-01": 2198, - "2015-01-01": 2198 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3009.44880650713, - "2034-01-01": 2951.1735606723, - "2033-01-01": 2893.61776231692, - "2032-01-01": 2837.50085892042, - "2031-01-01": 2782.8228504828, - "2030-01-01": 2728.86428952463, - "2029-01-01": 2675.6251760459, - "2028-01-01": 2623.10551004661, - "2027-01-01": 2569.86639656788, - "2026-01-01": 2508.06585808379, - "2025-01-01": 2470.303258967, - "2024-01-01": 2416.69243095722, - "2023-01-01": 2286, - "2015-01-01": 2286 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3131.88045086634, - "2034-01-01": 3071.23442731383, - "2033-01-01": 3011.33712010146, - "2032-01-01": 2952.93724556941, - "2031-01-01": 2896.03480371767, - "2030-01-01": 2839.88107820608, - "2029-01-01": 2784.47606903465, - "2028-01-01": 2729.81977620337, - "2027-01-01": 2674.41476703193, - "2026-01-01": 2610.10003341266, - "2025-01-01": 2570.80116057852, - "2024-01-01": 2515.00931463134, - "2023-01-01": 2379, - "2015-01-01": 2379 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3245.09681016626, - "2034-01-01": 3182.25845453072, - "2033-01-01": 3120.19588106352, - "2032-01-01": 3059.684871933, - "2031-01-01": 3000.72542713916, - "2030-01-01": 2942.54176451366, - "2029-01-01": 2885.1338840565, - "2028-01-01": 2828.50178576767, - "2027-01-01": 2771.09390531051, - "2026-01-01": 2704.45421705011, - "2025-01-01": 2663.73470400422, - "2024-01-01": 2605.92600276008, - "2023-01-01": 2465, - "2015-01-01": 2465 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3353.04729228944, - "2034-01-01": 3288.11857350497, - "2033-01-01": 3223.99144384129, - "2032-01-01": 3161.46749241921, - "2031-01-01": 3100.54671923872, - "2030-01-01": 3040.42753517902, - "2029-01-01": 2981.10994024012, - "2028-01-01": 2922.59393442202, - "2027-01-01": 2863.27633948312, - "2026-01-01": 2794.41983400674, - "2025-01-01": 2752.34575703803, - "2024-01-01": 2692.61400772006, - "2023-01-01": 2547, - "2015-01-01": 2547 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3970.47139126225, - "2034-01-01": 3893.58681495523, - "2033-01-01": 3817.6514309483, - "2032-01-01": 3743.61443154155, - "2031-01-01": 3671.47581673497, - "2030-01-01": 3600.28639422847, - "2029-01-01": 3530.04616402206, - "2028-01-01": 3460.75512611574, - "2027-01-01": 3390.51489590934, - "2026-01-01": 3308.9792773319, - "2025-01-01": 3259.15775548752, - "2024-01-01": 3188.4271092594, - "2023-01-01": 3016, - "2015-01-01": 3016 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1133.48006229337, - "2034-01-01": 1111.53124922959, - "2033-01-01": 1089.85340916661, - "2032-01-01": 1068.7175151052, - "2031-01-01": 1048.12356704536, - "2030-01-01": 1027.80059198631, - "2029-01-01": 1007.74858992805, - "2028-01-01": 987.967560870575, - "2027-01-01": 967.915558812314, - "2026-01-01": 944.638978044683, - "2025-01-01": 930.416056855024, - "2024-01-01": 910.224052079689, - "2023-01-01": 861, - "2015-01-01": 861 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1513.93968831286, - "2034-01-01": 1484.62361976078, - "2033-01-01": 1455.66947798095, - "2032-01-01": 1427.43918974562, - "2031-01-01": 1399.93275505478, - "2030-01-01": 1372.78824713619, - "2029-01-01": 1346.00566598985, - "2028-01-01": 1319.58501161575, - "2027-01-01": 1292.80243046941, - "2026-01-01": 1261.71292073332, - "2025-01-01": 1242.71598766931, - "2024-01-01": 1215.74641102397, - "2023-01-01": 1150, - "2015-01-01": 1150 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1699.56185879296, - "2034-01-01": 1666.65138531406, - "2033-01-01": 1634.14721397688, - "2032-01-01": 1602.45564692312, - "2031-01-01": 1571.5766841528, - "2030-01-01": 1541.10402352419, - "2029-01-01": 1511.0376650373, - "2028-01-01": 1481.37760869212, - "2027-01-01": 1451.31125020522, - "2026-01-01": 1416.40989623192, - "2025-01-01": 1395.08377398355, - "2024-01-01": 1364.80749272344, - "2023-01-01": 1291, - "2015-01-01": 1291 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1853.58876621261, - "2034-01-01": 1817.69570141146, - "2033-01-01": 1782.24576086711, - "2032-01-01": 1747.68206883637, - "2031-01-01": 1714.00462531924, - "2030-01-01": 1680.77030605892, - "2029-01-01": 1647.97911105539, - "2028-01-01": 1615.63104030868, - "2027-01-01": 1582.83984530515, - "2026-01-01": 1544.77547164566, - "2025-01-01": 1521.51661794643, - "2024-01-01": 1488.49647541022, - "2023-01-01": 1408, - "2015-01-01": 1408 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1986.55216492531, - "2034-01-01": 1948.08438453828, - "2033-01-01": 1910.09151502022, - "2032-01-01": 1873.04846724012, - "2031-01-01": 1836.95524119797, - "2030-01-01": 1801.33692602479, - "2029-01-01": 1766.19352172059, - "2028-01-01": 1731.52502828536, - "2027-01-01": 1696.38162398116, - "2026-01-01": 1655.58678033615, - "2025-01-01": 1630.65950034173, - "2024-01-01": 1595.27072542189, - "2023-01-01": 1509, - "2015-01-01": 1509 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2105.03440140197, - "2034-01-01": 2064.27231999782, - "2033-01-01": 2024.01347416656, - "2032-01-01": 1984.76109948108, - "2031-01-01": 1946.51519594138, - "2030-01-01": 1908.77252797458, - "2029-01-01": 1871.53309558066, - "2028-01-01": 1834.79689875964, - "2027-01-01": 1797.55746636573, - "2026-01-01": 1754.32953065441, - "2025-01-01": 1727.91553415933, - "2024-01-01": 1690.41609671942, - "2023-01-01": 1599, - "2015-01-01": 1599 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2211.66841423096, - "2034-01-01": 2168.8414619114, - "2033-01-01": 2126.54323739826, - "2032-01-01": 2085.30246849795, - "2031-01-01": 2045.11915521046, - "2030-01-01": 2005.46456972939, - "2029-01-01": 1966.33871205473, - "2028-01-01": 1927.74158218649, - "2027-01-01": 1888.61572451183, - "2026-01-01": 1843.19800594084, - "2025-01-01": 1815.44596459517, - "2024-01-01": 1776.0469308872, - "2023-01-01": 1680, - "2015-01-01": 1680 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2309.08714200066, - "2034-01-01": 2264.37376440036, - "2033-01-01": 2220.21240380747, - "2032-01-01": 2177.1550772294, - "2031-01-01": 2135.20178466616, - "2030-01-01": 2093.80050911033, - "2029-01-01": 2052.9512505619, - "2028-01-01": 2012.65400902089, - "2027-01-01": 1971.80475047247, - "2026-01-01": 1924.38648953586, - "2025-01-01": 1895.41203684519, - "2024-01-01": 1854.27756950961, - "2023-01-01": 1754, - "2015-01-01": 1754 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2399.92352329943, - "2034-01-01": 2353.451181586, - "2033-01-01": 2307.55257248633, - "2032-01-01": 2262.80142861414, - "2031-01-01": 2219.19774996945, - "2030-01-01": 2176.1678039385, - "2029-01-01": 2133.71159052129, - "2028-01-01": 2091.82910971784, - "2027-01-01": 2049.37289630064, - "2026-01-01": 2000.08926477986, - "2025-01-01": 1969.97499610535, - "2024-01-01": 1927.22235417105, - "2023-01-01": 1823, - "2015-01-01": 1823 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2519.72222907027, - "2034-01-01": 2470.93009410621, - "2033-01-01": 2422.74033117873, - "2032-01-01": 2375.75531232444, - "2031-01-01": 2329.97503754335, - "2030-01-01": 2284.79713479884, - "2029-01-01": 2240.22160409093, - "2028-01-01": 2196.24844541961, - "2027-01-01": 2151.67291471169, - "2026-01-01": 2099.92915676832, - "2025-01-01": 2068.31165252093, - "2024-01-01": 2023.42489626077, - "2023-01-01": 1914, - "2015-01-01": 1914 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2671.11619790156, - "2034-01-01": 2619.39245608228, - "2033-01-01": 2568.30727897683, - "2032-01-01": 2518.49923129901, - "2031-01-01": 2469.96831304882, - "2030-01-01": 2422.07595951246, - "2029-01-01": 2374.82217068991, - "2028-01-01": 2328.20694658118, - "2027-01-01": 2280.95315775863, - "2026-01-01": 2226.10044884165, - "2025-01-01": 2192.58325128786, - "2024-01-01": 2144.99953736317, - "2023-01-01": 2029, - "2015-01-01": 2029 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2810.66194308518, - "2034-01-01": 2756.23602451241, - "2033-01-01": 2702.48203086029, - "2032-01-01": 2650.07188704947, - "2031-01-01": 2599.00559307996, - "2030-01-01": 2548.6112240311, - "2029-01-01": 2498.88877990289, - "2028-01-01": 2449.83826069533, - "2027-01-01": 2400.11581656712, - "2026-01-01": 2342.39746588316, - "2025-01-01": 2307.12924667303, - "2024-01-01": 2257.05964133581, - "2023-01-01": 2135, - "2015-01-01": 2135 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2937.04299532695, - "2034-01-01": 2880.16982233592, - "2033-01-01": 2823.99878728305, - "2032-01-01": 2769.2320281065, - "2031-01-01": 2715.86954480627, - "2030-01-01": 2663.20919944421, - "2029-01-01": 2611.2509920203, - "2028-01-01": 2559.99492253456, - "2027-01-01": 2508.03671511065, - "2026-01-01": 2447.72306622263, - "2025-01-01": 2410.86901607847, - "2024-01-01": 2358.54803738651, - "2023-01-01": 2231, - "2015-01-01": 2231 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3054.20876250942, - "2034-01-01": 2995.06678073479, - "2033-01-01": 2936.65494688331, - "2032-01-01": 2879.70340887812, - "2031-01-01": 2824.21216671921, - "2030-01-01": 2769.45107248344, - "2029-01-01": 2715.42012617082, - "2028-01-01": 2662.11932778134, - "2027-01-01": 2608.08838146872, - "2026-01-01": 2545.36867487069, - "2025-01-01": 2507.04442729809, - "2024-01-01": 2452.63623789184, - "2023-01-01": 2320, - "2015-01-01": 2320 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3175.32393757445, - "2034-01-01": 3113.83667031566, - "2033-01-01": 3053.10850512179, - "2032-01-01": 2993.89854405776, - "2031-01-01": 2936.20678712359, - "2030-01-01": 2879.27413225434, - "2029-01-01": 2823.10057945001, - "2028-01-01": 2767.6861287106, - "2027-01-01": 2711.51257590627, - "2026-01-01": 2646.30570852936, - "2025-01-01": 2606.46170631164, - "2024-01-01": 2549.89595077376, - "2023-01-01": 2412, - "2015-01-01": 2412 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3304.33792840459, - "2034-01-01": 3240.35242226049, - "2033-01-01": 3177.15686063669, - "2032-01-01": 3115.54118805348, - "2031-01-01": 3055.50540451087, - "2030-01-01": 2996.25956548855, - "2029-01-01": 2937.80367098653, - "2028-01-01": 2880.13772100481, - "2027-01-01": 2821.6818265028, - "2026-01-01": 2753.82559220924, - "2025-01-01": 2712.36272091302, - "2024-01-01": 2653.49868840885, - "2023-01-01": 2510, - "2015-01-01": 2510 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3422.82016488125, - "2034-01-01": 3356.54035772003, - "2033-01-01": 3291.07881978302, - "2032-01-01": 3227.25382029444, - "2031-01-01": 3165.06535925428, - "2030-01-01": 3103.69516743834, - "2029-01-01": 3043.14324484661, - "2028-01-01": 2983.40959147909, - "2027-01-01": 2922.85766888736, - "2026-01-01": 2852.5683425275, - "2025-01-01": 2809.61875473062, - "2024-01-01": 2748.64405970638, - "2023-01-01": 2600, - "2015-01-01": 2600 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3536.03652418117, - "2034-01-01": 3467.56438493692, - "2033-01-01": 3399.93758074507, - "2032-01-01": 3334.00144665802, - "2031-01-01": 3269.75598267577, - "2030-01-01": 3206.35585374592, - "2029-01-01": 3143.80105986846, - "2028-01-01": 3082.0916010434, - "2027-01-01": 3019.53680716594, - "2026-01-01": 2946.92252616495, - "2025-01-01": 2902.55229815632, - "2024-01-01": 2839.56074783513, - "2023-01-01": 2686, - "2015-01-01": 2686 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 4183.73941692023, - "2034-01-01": 4102.7250987824, - "2033-01-01": 4022.71095741171, - "2032-01-01": 3944.69716957528, - "2031-01-01": 3868.68373527312, - "2030-01-01": 3793.67047773809, - "2029-01-01": 3719.6573969702, - "2028-01-01": 3646.64449296944, - "2027-01-01": 3572.63141220155, - "2026-01-01": 3486.71622790476, - "2025-01-01": 3434.2186163592, - "2024-01-01": 3359.68877759495, - "2023-01-01": 3178, - "2015-01-01": 3178 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1222.99997429795, - "2034-01-01": 1199.31768935458, - "2033-01-01": 1175.92777829939, - "2032-01-01": 1153.12261502059, - "2031-01-01": 1130.90219951817, - "2030-01-01": 1108.97415790393, - "2029-01-01": 1087.33849017788, - "2028-01-01": 1065.99519634003, - "2027-01-01": 1044.35952861398, - "2026-01-01": 1019.24461161848, - "2025-01-01": 1003.89839351721, - "2024-01-01": 982.111665948933, - "2023-01-01": 929, - "2015-01-01": 929 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1632.42192478952, - "2034-01-01": 1600.81155522032, - "2033-01-01": 1569.59143712729, - "2032-01-01": 1539.15182198658, - "2031-01-01": 1509.4927097982, - "2030-01-01": 1480.22384908598, - "2029-01-01": 1451.34523984992, - "2028-01-01": 1422.85688209003, - "2027-01-01": 1393.97827285397, - "2026-01-01": 1360.45567105158, - "2025-01-01": 1339.97202148691, - "2024-01-01": 1310.8917823215, - "2023-01-01": 1240, - "2015-01-01": 1240 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1831.20878821147, - "2034-01-01": 1795.74909138021, - "2033-01-01": 1760.72716858392, - "2032-01-01": 1726.58079385753, - "2031-01-01": 1693.30996720104, - "2030-01-01": 1660.47691457951, - "2029-01-01": 1628.08163599294, - "2028-01-01": 1596.12413144131, - "2027-01-01": 1563.72885285474, - "2026-01-01": 1526.12406325221, - "2025-01-01": 1503.14603378088, - "2024-01-01": 1470.52457194291, - "2023-01-01": 1391, - "2015-01-01": 1391 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1995.7674499846, - "2034-01-01": 1957.12122396291, - "2033-01-01": 1918.95211184272, - "2032-01-01": 1881.73722752553, - "2031-01-01": 1845.47657101134, - "2030-01-01": 1809.69302839866, - "2029-01-01": 1774.38659968748, - "2028-01-01": 1739.55728487781, - "2027-01-01": 1704.25085616663, - "2026-01-01": 1663.26677202757, - "2025-01-01": 1638.22385852755, - "2024-01-01": 1602.67092096726, - "2023-01-01": 1516, - "2015-01-01": 1516 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2139.26260305078, - "2034-01-01": 2097.83772357502, - "2033-01-01": 2056.92426236439, - "2032-01-01": 2017.03363768402, - "2031-01-01": 1978.16584953393, - "2030-01-01": 1939.80947964896, - "2029-01-01": 1901.96452802913, - "2028-01-01": 1864.63099467443, - "2027-01-01": 1826.7860430546, - "2026-01-01": 1782.85521407969, - "2025-01-01": 1756.01172170664, - "2024-01-01": 1717.90253731649, - "2023-01-01": 1625, - "2015-01-01": 1625 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2265.64365529255, - "2034-01-01": 2221.77152139853, - "2033-01-01": 2178.44101878715, - "2032-01-01": 2136.19377874105, - "2031-01-01": 2095.02980126024, - "2030-01-01": 2054.40745506207, - "2029-01-01": 2014.32674014654, - "2028-01-01": 1974.78765651366, - "2027-01-01": 1934.70694159813, - "2026-01-01": 1888.18081441916, - "2025-01-01": 1859.75149111208, - "2024-01-01": 1819.39093336718, - "2023-01-01": 1721, - "2015-01-01": 1721 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2378.86001459247, - "2034-01-01": 2332.79554861542, - "2033-01-01": 2287.2997797492, - "2032-01-01": 2242.94140510464, - "2031-01-01": 2199.72042468173, - "2030-01-01": 2157.06814136965, - "2029-01-01": 2114.98455516839, - "2028-01-01": 2073.46966607797, - "2027-01-01": 2031.38607987671, - "2026-01-01": 1982.53499805661, - "2025-01-01": 1952.68503453778, - "2024-01-01": 1910.30762149593, - "2023-01-01": 1807, - "2015-01-01": 1807 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2484.17755812728, - "2034-01-01": 2436.07371346834, - "2033-01-01": 2388.56374343483, - "2032-01-01": 2342.24152265216, - "2031-01-01": 2297.10705112032, - "2030-01-01": 2252.5664542139, - "2029-01-01": 2208.6197319329, - "2028-01-01": 2165.26688427732, - "2027-01-01": 2121.32016199632, - "2026-01-01": 2070.30633167284, - "2025-01-01": 2039.13484237565, - "2024-01-01": 1994.88128487151, - "2023-01-01": 1887, - "2015-01-01": 1887 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2580.27981660279, - "2034-01-01": 2530.31503889664, - "2033-01-01": 2480.96711029797, - "2032-01-01": 2432.85287991427, - "2031-01-01": 2385.97234774554, - "2030-01-01": 2339.70866468429, - "2029-01-01": 2294.06183073052, - "2028-01-01": 2249.03184588424, - "2027-01-01": 2203.38501193047, - "2026-01-01": 2150.39767359765, - "2025-01-01": 2118.0202920277, - "2024-01-01": 2072.05475270173, - "2023-01-01": 1960, - "2015-01-01": 1960 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2707.97733813874, - "2034-01-01": 2655.53981378081, - "2033-01-01": 2603.7496662668, - "2032-01-01": 2553.25427244064, - "2031-01-01": 2504.05363230233, - "2030-01-01": 2455.50036900795, - "2029-01-01": 2407.59448255749, - "2028-01-01": 2360.33597295096, - "2027-01-01": 2312.4300865005, - "2026-01-01": 2256.82041560733, - "2025-01-01": 2222.84068403111, - "2024-01-01": 2174.60031954462, - "2023-01-01": 2057, - "2015-01-01": 2057 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2871.21953061769, - "2034-01-01": 2815.62096930284, - "2033-01-01": 2760.70880997953, - "2032-01-01": 2707.1694546393, - "2031-01-01": 2655.00290328215, - "2030-01-01": 2603.52275391655, - "2029-01-01": 2552.72900654248, - "2028-01-01": 2502.62166115996, - "2027-01-01": 2451.8279137859, - "2026-01-01": 2392.86598271249, - "2025-01-01": 2356.8378861798, - "2024-01-01": 2305.68949777677, - "2023-01-01": 2181, - "2015-01-01": 2181 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3018.66409156642, - "2034-01-01": 2960.21040009693, - "2033-01-01": 2902.47835913941, - "2032-01-01": 2846.18961920583, - "2031-01-01": 2791.34418029618, - "2030-01-01": 2737.22039189851, - "2029-01-01": 2683.8182540128, - "2028-01-01": 2631.13776663906, - "2027-01-01": 2577.73562875335, - "2026-01-01": 2515.74584977521, - "2025-01-01": 2477.86761715281, - "2024-01-01": 2424.09262650259, - "2023-01-01": 2293, - "2015-01-01": 2293 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3154.26042886749, - "2034-01-01": 3093.18103734507, - "2033-01-01": 3032.85571238466, - "2032-01-01": 2974.03852054826, - "2031-01-01": 2916.72946183587, - "2030-01-01": 2860.17446968549, - "2029-01-01": 2804.3735440971, - "2028-01-01": 2749.32668507073, - "2027-01-01": 2693.52575948235, - "2026-01-01": 2628.75144180611, - "2025-01-01": 2589.17174474406, - "2024-01-01": 2532.98121809865, - "2023-01-01": 2396, - "2015-01-01": 2396 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3279.32501181507, - "2034-01-01": 3215.82385810792, - "2033-01-01": 3153.10666926135, - "2032-01-01": 3091.95741013594, - "2031-01-01": 3032.3760807317, - "2030-01-01": 2973.57871618804, - "2029-01-01": 2915.56531650496, - "2028-01-01": 2858.33588168247, - "2027-01-01": 2800.32248199939, - "2026-01-01": 2732.97990047538, - "2025-01-01": 2691.83089155153, - "2024-01-01": 2633.41244335715, - "2023-01-01": 2491, - "2015-01-01": 2491 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3409.6554719394, - "2034-01-01": 3343.63058711341, - "2033-01-01": 3278.42082432232, - "2032-01-01": 3214.841305601, - "2031-01-01": 3152.89203094946, - "2030-01-01": 3091.75787833281, - "2029-01-01": 3031.43884775104, - "2028-01-01": 2971.93493920417, - "2027-01-01": 2911.61590862241, - "2026-01-01": 2841.59692582547, - "2025-01-01": 2798.81252875089, - "2024-01-01": 2738.07235178443, - "2023-01-01": 2590, - "2015-01-01": 2590 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3546.56827853465, - "2034-01-01": 3477.89220142221, - "2033-01-01": 3410.06397711364, - "2032-01-01": 3343.93145841278, - "2031-01-01": 3279.49464531963, - "2030-01-01": 3215.90568503034, - "2029-01-01": 3153.16457754491, - "2028-01-01": 3091.27132286333, - "2027-01-01": 3028.5302153779, - "2026-01-01": 2955.69965952657, - "2025-01-01": 2911.19727894011, - "2024-01-01": 2848.01811417268, - "2023-01-01": 2694, - "2015-01-01": 2694 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3672.94933077642, - "2034-01-01": 3601.82599924572, - "2033-01-01": 3531.5807335364, - "2032-01-01": 3463.0915994698, - "2031-01-01": 3396.35859704594, - "2030-01-01": 3330.50366044345, - "2029-01-01": 3265.52678966232, - "2028-01-01": 3201.42798470256, - "2027-01-01": 3136.45111392143, - "2026-01-01": 3061.02525986605, - "2025-01-01": 3014.93704834555, - "2024-01-01": 2949.50651022338, - "2023-01-01": 2790, - "2015-01-01": 2790 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3794.06450584144, - "2034-01-01": 3720.59588882658, - "2033-01-01": 3648.03429177487, - "2032-01-01": 3577.28673464945, - "2031-01-01": 3508.35321745033, - "2030-01-01": 3440.32672021434, - "2029-01-01": 3373.20724294151, - "2028-01-01": 3306.99478563182, - "2027-01-01": 3239.87530835899, - "2026-01-01": 3161.96229352471, - "2025-01-01": 3114.35432735909, - "2024-01-01": 3046.7662231053, - "2023-01-01": 2882, - "2015-01-01": 2882 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IL.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 4485.21088528862, - "2034-01-01": 4398.3588456739, - "2033-01-01": 4312.57905346183, - "2032-01-01": 4228.94375605506, - "2031-01-01": 4147.45295345359, - "2030-01-01": 4067.03439825478, - "2029-01-01": 3987.68809045861, - "2028-01-01": 3909.4140300651, - "2027-01-01": 3830.06772226893, - "2026-01-01": 3737.96167038122, - "2025-01-01": 3681.68119129508, - "2024-01-01": 3601.78088900755, - "2023-01-01": 3407, - "2015-01-01": 3407 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN", - "description": null, - "label": "IN", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 630.588791914661, - "2034-01-01": 618.378012056882, - "2033-01-01": 606.317982567718, - "2032-01-01": 594.559453815783, - "2031-01-01": 583.102425801078, - "2030-01-01": 571.796148154986, - "2029-01-01": 560.64062087751, - "2028-01-01": 549.635843968648, - "2027-01-01": 538.480316691171, - "2026-01-01": 525.530860027181, - "2025-01-01": 517.618224429218, - "2024-01-01": 506.38480946129, - "2023-01-01": 479, - "2015-01-01": 479 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 879.401488515644, - "2034-01-01": 862.372676521915, - "2033-01-01": 845.554096775022, - "2032-01-01": 829.155981521802, - "2031-01-01": 813.178330762254, - "2030-01-01": 797.410912249543, - "2029-01-01": 781.853725983667, - "2028-01-01": 766.506771964627, - "2027-01-01": 750.949585698752, - "2026-01-01": 732.890635695526, - "2025-01-01": 721.855895446175, - "2024-01-01": 706.1900891861, - "2023-01-01": 668, - "2015-01-01": 668 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1004.46607146323, - "2034-01-01": 985.015497284762, - "2033-01-01": 965.80505365171, - "2032-01-01": 947.074871109484, - "2031-01-01": 928.824949658084, - "2030-01-01": 910.815158752097, - "2029-01-01": 893.045498391524, - "2028-01-01": 875.515968576363, - "2027-01-01": 857.74630821579, - "2026-01-01": 837.1190943648, - "2025-01-01": 824.515042253639, - "2024-01-01": 806.621314444602, - "2023-01-01": 763, - "2015-01-01": 763 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1108.46714570385, - "2034-01-01": 1087.00268507702, - "2033-01-01": 1065.80321779127, - "2032-01-01": 1045.13373718766, - "2031-01-01": 1024.99424326619, - "2030-01-01": 1005.1197426858, - "2029-01-01": 985.510235446478, - "2028-01-01": 966.165721548228, - "2027-01-01": 946.556214308906, - "2026-01-01": 923.793286310828, - "2025-01-01": 909.884227493531, - "2024-01-01": 890.137807027988, - "2023-01-01": 842, - "2015-01-01": 842 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1200.61999629681, - "2034-01-01": 1177.37107932333, - "2033-01-01": 1154.4091860162, - "2032-01-01": 1132.02134004174, - "2031-01-01": 1110.20754139996, - "2030-01-01": 1088.68076642453, - "2029-01-01": 1067.44101511543, - "2028-01-01": 1046.48828747267, - "2027-01-01": 1025.24853616357, - "2026-01-01": 1000.59320322503, - "2025-01-01": 985.527809351663, - "2024-01-01": 964.139762481622, - "2023-01-01": 912, - "2015-01-01": 912 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1282.24109253628, - "2034-01-01": 1257.41165708435, - "2033-01-01": 1232.88875787256, - "2032-01-01": 1208.97893114107, - "2031-01-01": 1185.68217688987, - "2030-01-01": 1162.69195887882, - "2029-01-01": 1140.00827710792, - "2028-01-01": 1117.63113157717, - "2027-01-01": 1094.94744980626, - "2026-01-01": 1068.61598677761, - "2025-01-01": 1052.52641042601, - "2024-01-01": 1029.6843515977, - "2023-01-01": 974, - "2015-01-01": 974 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1357.27984230483, - "2034-01-01": 1330.99734954206, - "2033-01-01": 1305.03933199857, - "2032-01-01": 1279.73026489368, - "2031-01-01": 1255.07014822737, - "2030-01-01": 1230.73450678036, - "2029-01-01": 1206.72334055264, - "2028-01-01": 1183.03664954421, - "2027-01-01": 1159.02548331649, - "2026-01-01": 1131.15306197917, - "2025-01-01": 1114.12189851049, - "2024-01-01": 1089.9430867528, - "2023-01-01": 1031, - "2015-01-01": 1031 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1425.73624560246, - "2034-01-01": 1398.12815669646, - "2033-01-01": 1370.86090839424, - "2032-01-01": 1344.27534129957, - "2031-01-01": 1318.37145541246, - "2030-01-01": 1292.80841012912, - "2029-01-01": 1267.58620544957, - "2028-01-01": 1242.70484137379, - "2027-01-01": 1217.48263669423, - "2026-01-01": 1188.20442882972, - "2025-01-01": 1170.3142736051, - "2024-01-01": 1144.91596794693, - "2023-01-01": 1083, - "2015-01-01": 1083 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1488.92677172334, - "2034-01-01": 1460.09505560821, - "2033-01-01": 1431.61928660561, - "2032-01-01": 1403.85541182808, - "2031-01-01": 1376.80343127561, - "2030-01-01": 1350.10739783568, - "2029-01-01": 1323.76731150827, - "2028-01-01": 1297.7831722934, - "2027-01-01": 1271.443085966, - "2026-01-01": 1240.86722899946, - "2025-01-01": 1222.18415830782, - "2024-01-01": 1195.66016597227, - "2023-01-01": 1131, - "2015-01-01": 1131 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1573.18080655119, - "2034-01-01": 1542.71758749055, - "2033-01-01": 1512.63045755412, - "2032-01-01": 1483.2955058661, - "2031-01-01": 1454.71273242649, - "2030-01-01": 1426.50604811108, - "2029-01-01": 1398.67545291988, - "2028-01-01": 1371.22094685289, - "2027-01-01": 1343.39035166169, - "2026-01-01": 1311.08429589245, - "2025-01-01": 1291.34400457811, - "2024-01-01": 1263.31909667274, - "2023-01-01": 1195, - "2015-01-01": 1195 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1682.44775796855, - "2034-01-01": 1649.86868352546, - "2033-01-01": 1617.69181987796, - "2032-01-01": 1586.31937782165, - "2031-01-01": 1555.75135735653, - "2030-01-01": 1525.585547687, - "2029-01-01": 1495.82194881306, - "2028-01-01": 1466.46056073472, - "2027-01-01": 1436.69696186079, - "2026-01-01": 1402.14705451929, - "2025-01-01": 1381.0356802099, - "2024-01-01": 1351.0642724249, - "2023-01-01": 1278, - "2015-01-01": 1278 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1781.18295503243, - "2034-01-01": 1746.69196307508, - "2033-01-01": 1712.62678583324, - "2032-01-01": 1679.41323802245, - "2031-01-01": 1647.05131964271, - "2030-01-01": 1615.11521597849, - "2029-01-01": 1583.60492702979, - "2028-01-01": 1552.52045279662, - "2027-01-01": 1521.01016384792, - "2026-01-01": 1484.4326797845, - "2025-01-01": 1462.0823750579, - "2024-01-01": 1430.35208183951, - "2023-01-01": 1353, - "2015-01-01": 1353 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1873.33580562539, - "2034-01-01": 1837.06035732138, - "2033-01-01": 1801.23275405817, - "2032-01-01": 1766.30084087653, - "2031-01-01": 1732.26461777648, - "2030-01-01": 1698.67623971721, - "2029-01-01": 1665.53570669874, - "2028-01-01": 1632.84301872106, - "2027-01-01": 1599.70248570258, - "2026-01-01": 1561.2325966987, - "2025-01-01": 1537.72595691603, - "2024-01-01": 1504.35403729314, - "2023-01-01": 1423, - "2015-01-01": 1423 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1957.58984045324, - "2034-01-01": 1919.68288920372, - "2033-01-01": 1882.24392500667, - "2032-01-01": 1845.74093491455, - "2031-01-01": 1810.17391892735, - "2030-01-01": 1775.07488999262, - "2029-01-01": 1740.44384811035, - "2028-01-01": 1706.28079328054, - "2027-01-01": 1671.64975139827, - "2026-01-01": 1631.44966359169, - "2025-01-01": 1606.88580318632, - "2024-01-01": 1572.01296799361, - "2023-01-01": 1487, - "2015-01-01": 1487 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2045.79328316364, - "2034-01-01": 2006.17835226805, - "2033-01-01": 1967.05249459339, - "2032-01-01": 1928.9047833606, - "2031-01-01": 1891.73521856968, - "2030-01-01": 1855.05472699968, - "2029-01-01": 1818.86330865063, - "2028-01-01": 1783.1609635225, - "2027-01-01": 1746.96954517344, - "2026-01-01": 1704.95815549528, - "2025-01-01": 1679.28751725053, - "2024-01-01": 1642.84341107066, - "2023-01-01": 1554, - "2015-01-01": 1554 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2139.26260305078, - "2034-01-01": 2097.83772357502, - "2033-01-01": 2056.92426236439, - "2032-01-01": 2017.03363768402, - "2031-01-01": 1978.16584953393, - "2030-01-01": 1939.80947964896, - "2029-01-01": 1901.96452802913, - "2028-01-01": 1864.63099467443, - "2027-01-01": 1826.7860430546, - "2026-01-01": 1782.85521407969, - "2025-01-01": 1756.01172170664, - "2024-01-01": 1717.90253731649, - "2023-01-01": 1625, - "2015-01-01": 1625 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2227.46604576118, - "2034-01-01": 2184.33318663934, - "2033-01-01": 2141.7328319511, - "2032-01-01": 2100.19748613007, - "2031-01-01": 2059.72714917625, - "2030-01-01": 2019.78931665603, - "2029-01-01": 1980.38398856941, - "2028-01-01": 1941.51116491639, - "2027-01-01": 1902.10583682977, - "2026-01-01": 1856.36370598328, - "2025-01-01": 1828.41343577085, - "2024-01-01": 1788.73298039353, - "2023-01-01": 1692, - "2015-01-01": 1692 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2310.40361129484, - "2034-01-01": 2265.66474146102, - "2033-01-01": 2221.47820335354, - "2032-01-01": 2178.39632869875, - "2031-01-01": 2136.41911749664, - "2030-01-01": 2094.99423802088, - "2029-01-01": 2054.12169027146, - "2028-01-01": 2013.80147424839, - "2027-01-01": 1972.92892649897, - "2026-01-01": 1925.48363120606, - "2025-01-01": 1896.49265944317, - "2024-01-01": 1855.3347403018, - "2023-01-01": 1755, - "2015-01-01": 1755 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2792.23137296659, - "2034-01-01": 2738.16234566315, - "2033-01-01": 2684.7608372153, - "2032-01-01": 2632.69436647866, - "2031-01-01": 2581.96293345321, - "2030-01-01": 2531.89901928335, - "2029-01-01": 2482.5026239691, - "2028-01-01": 2433.77374751044, - "2027-01-01": 2384.37735219619, - "2026-01-01": 2327.03748250032, - "2025-01-01": 2292.0005303014, - "2024-01-01": 2242.25925024509, - "2023-01-01": 2121, - "2015-01-01": 2121 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 725.374581095988, - "2034-01-01": 711.328360424514, - "2033-01-01": 697.455549884786, - "2032-01-01": 683.929559608552, - "2031-01-01": 670.750389595812, - "2030-01-01": 657.744629714817, - "2029-01-01": 644.91227996557, - "2028-01-01": 632.253340348068, - "2027-01-01": 619.420990598821, - "2026-01-01": 604.525060281789, - "2025-01-01": 595.423051483297, - "2024-01-01": 582.501106499313, - "2023-01-01": 551, - "2015-01-01": 551 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1009.73194863997, - "2034-01-01": 990.179405527408, - "2033-01-01": 970.868251835991, - "2032-01-01": 952.03987698686, - "2031-01-01": 933.694280980014, - "2030-01-01": 915.59007439431, - "2029-01-01": 897.727257229749, - "2028-01-01": 880.105829486331, - "2027-01-01": 862.243012321771, - "2026-01-01": 841.507661045612, - "2025-01-01": 828.837532645533, - "2024-01-01": 810.849997613381, - "2023-01-01": 767, - "2015-01-01": 767 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1151.91063241196, - "2034-01-01": 1129.60492807886, - "2033-01-01": 1107.57460281159, - "2032-01-01": 1086.09503567601, - "2031-01-01": 1065.16622667211, - "2030-01-01": 1044.51279673406, - "2029-01-01": 1024.13474586184, - "2028-01-01": 1004.03207405546, - "2027-01-01": 983.654023183246, - "2026-01-01": 959.998961427523, - "2025-01-01": 945.544773226651, - "2024-01-01": 925.024443170415, - "2023-01-01": 875, - "2015-01-01": 875 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1271.7093381828, - "2034-01-01": 1247.08384059906, - "2033-01-01": 1222.762361504, - "2032-01-01": 1199.04891938632, - "2031-01-01": 1175.94351424601, - "2030-01-01": 1153.1421275944, - "2029-01-01": 1130.64475943147, - "2028-01-01": 1108.45140975723, - "2027-01-01": 1085.9540415943, - "2026-01-01": 1059.83885341599, - "2025-01-01": 1043.88142964222, - "2024-01-01": 1021.22698526014, - "2023-01-01": 966, - "2015-01-01": 966 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1377.02688171761, - "2034-01-01": 1350.36200545198, - "2033-01-01": 1324.02632518963, - "2032-01-01": 1298.34903693384, - "2031-01-01": 1273.33014068461, - "2030-01-01": 1248.64044043866, - "2029-01-01": 1224.27993619598, - "2028-01-01": 1200.24862795659, - "2027-01-01": 1175.88812371391, - "2026-01-01": 1147.61018703222, - "2025-01-01": 1130.33123748009, - "2024-01-01": 1105.80064863572, - "2023-01-01": 1046, - "2015-01-01": 1046 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1470.49620160475, - "2034-01-01": 1442.02137675895, - "2033-01-01": 1413.89809296063, - "2032-01-01": 1386.47789125727, - "2031-01-01": 1359.76077164886, - "2030-01-01": 1333.39519308793, - "2029-01-01": 1307.38115557448, - "2028-01-01": 1281.71865910852, - "2027-01-01": 1255.70462159507, - "2026-01-01": 1225.50724561662, - "2025-01-01": 1207.05544193619, - "2024-01-01": 1180.85977488155, - "2023-01-01": 1117, - "2015-01-01": 1117 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1554.7502364326, - "2034-01-01": 1524.64390864129, - "2033-01-01": 1494.90926390913, - "2032-01-01": 1465.91798529528, - "2031-01-01": 1437.67007279973, - "2030-01-01": 1409.79384336334, - "2029-01-01": 1382.28929698609, - "2028-01-01": 1355.156433668, - "2027-01-01": 1327.65188729076, - "2026-01-01": 1295.72431250961, - "2025-01-01": 1276.21528820649, - "2024-01-01": 1248.51870558201, - "2023-01-01": 1181, - "2015-01-01": 1181 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1633.7383940837, - "2034-01-01": 1602.10253228098, - "2033-01-01": 1570.85723667336, - "2032-01-01": 1540.39307345592, - "2031-01-01": 1510.71004262868, - "2030-01-01": 1481.41757799653, - "2029-01-01": 1452.51567955948, - "2028-01-01": 1424.00434731752, - "2027-01-01": 1395.10244888047, - "2026-01-01": 1361.55281272178, - "2025-01-01": 1341.05264408488, - "2024-01-01": 1311.9489531137, - "2023-01-01": 1241, - "2015-01-01": 1241 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1706.14420526388, - "2034-01-01": 1673.10627061737, - "2033-01-01": 1640.47621170723, - "2032-01-01": 1608.66190426984, - "2031-01-01": 1577.66334830521, - "2030-01-01": 1547.07266807696, - "2029-01-01": 1516.88986358508, - "2028-01-01": 1487.11493482958, - "2027-01-01": 1456.9321303377, - "2026-01-01": 1421.89560458294, - "2025-01-01": 1400.48688697342, - "2024-01-01": 1370.09334668441, - "2023-01-01": 1296, - "2015-01-01": 1296 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1802.2464637394, - "2034-01-01": 1767.34759604566, - "2033-01-01": 1732.87957857037, - "2032-01-01": 1699.27326153196, - "2031-01-01": 1666.52864493043, - "2030-01-01": 1634.21487854734, - "2029-01-01": 1602.33196238269, - "2028-01-01": 1570.87989643649, - "2027-01-01": 1538.99698027184, - "2026-01-01": 1501.98694650775, - "2025-01-01": 1479.37233662547, - "2024-01-01": 1447.26681451463, - "2023-01-01": 1369, - "2015-01-01": 1369 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1924.67810809861, - "2034-01-01": 1887.40846268719, - "2033-01-01": 1850.59893635491, - "2032-01-01": 1814.70964818095, - "2031-01-01": 1779.74059816529, - "2030-01-01": 1745.23166722879, - "2029-01-01": 1711.18285537144, - "2028-01-01": 1677.59416259324, - "2027-01-01": 1643.54535073589, - "2026-01-01": 1604.02112183662, - "2025-01-01": 1579.87023823699, - "2024-01-01": 1545.58369818874, - "2023-01-01": 1462, - "2015-01-01": 1462 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2037.89446739853, - "2034-01-01": 1998.43248990408, - "2033-01-01": 1959.45769731697, - "2032-01-01": 1921.45727454454, - "2031-01-01": 1884.43122158678, - "2030-01-01": 1847.89235353637, - "2029-01-01": 1811.84067039329, - "2028-01-01": 1776.27617215755, - "2027-01-01": 1740.22448901447, - "2026-01-01": 1698.37530547406, - "2025-01-01": 1672.80378166269, - "2024-01-01": 1636.50038631749, - "2023-01-01": 1548, - "2015-01-01": 1548 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2141.89554163915, - "2034-01-01": 2100.41967769634, - "2033-01-01": 2059.45586145653, - "2032-01-01": 2019.51614062271, - "2031-01-01": 1980.60051519489, - "2030-01-01": 1942.19693747007, - "2029-01-01": 1904.30540744824, - "2028-01-01": 1866.92592512941, - "2027-01-01": 1829.03439510759, - "2026-01-01": 1785.04949742009, - "2025-01-01": 1758.17296690258, - "2024-01-01": 1720.01687890088, - "2023-01-01": 1627, - "2015-01-01": 1627 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2239.31426940885, - "2034-01-01": 2195.9519801853, - "2033-01-01": 2153.12502786574, - "2032-01-01": 2111.36874935417, - "2031-01-01": 2070.68314465059, - "2030-01-01": 2030.53287685101, - "2029-01-01": 1990.91794595542, - "2028-01-01": 1951.83835196382, - "2027-01-01": 1912.22342106823, - "2026-01-01": 1866.2379810151, - "2025-01-01": 1838.13903915261, - "2024-01-01": 1798.24751752329, - "2023-01-01": 1701, - "2015-01-01": 1701 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2339.36593576691, - "2034-01-01": 2294.06623679557, - "2033-01-01": 2249.32579336709, - "2032-01-01": 2205.70386102432, - "2031-01-01": 2163.20043976725, - "2030-01-01": 2121.25627405305, - "2029-01-01": 2079.8713638817, - "2028-01-01": 2039.04570925321, - "2027-01-01": 1997.66079908186, - "2026-01-01": 1949.62074795052, - "2025-01-01": 1920.26635659858, - "2024-01-01": 1878.59249773009, - "2023-01-01": 1777, - "2015-01-01": 1777 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2445.99994859591, - "2034-01-01": 2398.63537870916, - "2033-01-01": 2351.85555659879, - "2032-01-01": 2306.24523004118, - "2031-01-01": 2261.80439903633, - "2030-01-01": 2217.94831580786, - "2029-01-01": 2174.67698035577, - "2028-01-01": 2131.99039268006, - "2027-01-01": 2088.71905722797, - "2026-01-01": 2038.48922323696, - "2025-01-01": 2007.79678703442, - "2024-01-01": 1964.22333189787, - "2023-01-01": 1858, - "2015-01-01": 1858 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2544.73514565979, - "2034-01-01": 2495.45865825877, - "2033-01-01": 2446.79052255407, - "2032-01-01": 2399.33909024198, - "2031-01-01": 2353.10436132251, - "2030-01-01": 2307.47798409935, - "2029-01-01": 2262.4599585725, - "2028-01-01": 2218.05028474195, - "2027-01-01": 2173.0322592151, - "2026-01-01": 2120.77484850217, - "2025-01-01": 2088.84348188242, - "2024-01-01": 2043.51114131247, - "2023-01-01": 1933, - "2015-01-01": 1933 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2639.52093484112, - "2034-01-01": 2588.40900662641, - "2033-01-01": 2537.92808987114, - "2032-01-01": 2488.70919603475, - "2031-01-01": 2440.75232511725, - "2030-01-01": 2393.42646565918, - "2029-01-01": 2346.73161766056, - "2028-01-01": 2300.66778112137, - "2027-01-01": 2253.97293312275, - "2026-01-01": 2199.76904875678, - "2025-01-01": 2166.6483089365, - "2024-01-01": 2119.62743835049, - "2023-01-01": 2005, - "2015-01-01": 2005 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3185.85569192793, - "2034-01-01": 3124.16448680095, - "2033-01-01": 3063.23490149035, - "2032-01-01": 3003.82855581252, - "2031-01-01": 2945.94544976745, - "2030-01-01": 2888.82396353876, - "2029-01-01": 2832.46409712646, - "2028-01-01": 2776.86585053054, - "2027-01-01": 2720.50598411823, - "2026-01-01": 2655.08284189098, - "2025-01-01": 2615.10668709542, - "2024-01-01": 2558.35331711132, - "2023-01-01": 2420, - "2015-01-01": 2420 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 787.248637922687, - "2034-01-01": 772.004282275606, - "2033-01-01": 756.948128550095, - "2032-01-01": 742.268378667721, - "2031-01-01": 727.965032628485, - "2030-01-01": 713.849888510818, - "2029-01-01": 699.92294631472, - "2028-01-01": 686.184206040191, - "2027-01-01": 672.257263844092, - "2026-01-01": 656.090718781324, - "2025-01-01": 646.212313588042, - "2024-01-01": 632.188133732467, - "2023-01-01": 598, - "2015-01-01": 598 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1096.61892205618, - "2034-01-01": 1075.38389153107, - "2033-01-01": 1054.41102187664, - "2032-01-01": 1033.96247396356, - "2031-01-01": 1014.03824779185, - "2030-01-01": 994.376182490822, - "2029-01-01": 974.976278060471, - "2028-01-01": 955.8385345008, - "2027-01-01": 936.43863007045, - "2026-01-01": 913.919011279002, - "2025-01-01": 900.158624111772, - "2024-01-01": 880.623269898235, - "2023-01-01": 833, - "2015-01-01": 833 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1249.32936018166, - "2034-01-01": 1225.13723056781, - "2033-01-01": 1201.2437692208, - "2032-01-01": 1177.94764440747, - "2031-01-01": 1155.24885612781, - "2030-01-01": 1132.84873611499, - "2029-01-01": 1110.74728436901, - "2028-01-01": 1088.94450088987, - "2027-01-01": 1066.84304914389, - "2026-01-01": 1041.18744502254, - "2025-01-01": 1025.51084547668, - "2024-01-01": 1003.25508179283, - "2023-01-01": 949, - "2015-01-01": 949 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1379.65982030598, - "2034-01-01": 1352.9439595733, - "2033-01-01": 1326.55792428177, - "2032-01-01": 1300.83153987253, - "2031-01-01": 1275.76480634557, - "2030-01-01": 1251.02789825976, - "2029-01-01": 1226.62081561509, - "2028-01-01": 1202.54355841157, - "2027-01-01": 1178.1364757669, - "2026-01-01": 1149.80447037262, - "2025-01-01": 1132.49248267603, - "2024-01-01": 1107.91499022011, - "2023-01-01": 1048, - "2015-01-01": 1048 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1492.8761796059, - "2034-01-01": 1463.9679867902, - "2033-01-01": 1435.41668524383, - "2032-01-01": 1407.57916623611, - "2031-01-01": 1380.45542976706, - "2030-01-01": 1353.68858456734, - "2029-01-01": 1327.27863063694, - "2028-01-01": 1301.22556797588, - "2027-01-01": 1274.81561404549, - "2026-01-01": 1244.15865401007, - "2025-01-01": 1225.42602610174, - "2024-01-01": 1198.83167834886, - "2023-01-01": 1134, - "2015-01-01": 1134 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1592.92784596397, - "2034-01-01": 1562.08224340047, - "2033-01-01": 1531.61745074518, - "2032-01-01": 1501.91427790626, - "2031-01-01": 1472.97272488372, - "2030-01-01": 1444.41198176938, - "2029-01-01": 1416.23204856323, - "2028-01-01": 1388.43292526527, - "2027-01-01": 1360.25299205912, - "2026-01-01": 1327.54142094549, - "2025-01-01": 1307.55334354771, - "2024-01-01": 1279.17665855566, - "2023-01-01": 1210, - "2015-01-01": 1210 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1685.08069655692, - "2034-01-01": 1652.45063764678, - "2033-01-01": 1620.2234189701, - "2032-01-01": 1588.80188076034, - "2031-01-01": 1558.18602301749, - "2030-01-01": 1527.97300550811, - "2029-01-01": 1498.16282823218, - "2028-01-01": 1468.75549118971, - "2027-01-01": 1438.94531391378, - "2026-01-01": 1404.34133785969, - "2025-01-01": 1383.19692540584, - "2024-01-01": 1353.17861400929, - "2023-01-01": 1280, - "2015-01-01": 1280 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1769.33473138477, - "2034-01-01": 1735.07316952912, - "2033-01-01": 1701.23458991861, - "2032-01-01": 1668.24197479836, - "2031-01-01": 1636.09532416837, - "2030-01-01": 1604.37165578351, - "2029-01-01": 1573.07096964378, - "2028-01-01": 1542.19326574919, - "2027-01-01": 1510.89257960947, - "2026-01-01": 1474.55840475268, - "2025-01-01": 1452.35677167614, - "2024-01-01": 1420.83754470976, - "2023-01-01": 1344, - "2015-01-01": 1344 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1848.32288903587, - "2034-01-01": 1812.53179316882, - "2033-01-01": 1777.18256268283, - "2032-01-01": 1742.717062959, - "2031-01-01": 1709.13529399731, - "2030-01-01": 1675.9953904167, - "2029-01-01": 1643.29735221717, - "2028-01-01": 1611.04117939871, - "2027-01-01": 1578.34314119917, - "2026-01-01": 1540.38690496485, - "2025-01-01": 1517.19412755453, - "2024-01-01": 1484.26779224144, - "2023-01-01": 1404, - "2015-01-01": 1404 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1951.00749398231, - "2034-01-01": 1913.22800390042, - "2033-01-01": 1875.91492727632, - "2032-01-01": 1839.53467756783, - "2031-01-01": 1804.08725477494, - "2030-01-01": 1769.10624543985, - "2029-01-01": 1734.59164956257, - "2028-01-01": 1700.54346714308, - "2027-01-01": 1666.02887126579, - "2026-01-01": 1625.96395524067, - "2025-01-01": 1601.48269019645, - "2024-01-01": 1566.72711403264, - "2023-01-01": 1482, - "2015-01-01": 1482 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2083.97089269501, - "2034-01-01": 2043.61668702723, - "2033-01-01": 2003.76068142943, - "2032-01-01": 1964.90107597158, - "2031-01-01": 1927.03787065367, - "2030-01-01": 1889.67286540573, - "2029-01-01": 1852.80606022776, - "2028-01-01": 1816.43745511977, - "2027-01-01": 1779.5706499418, - "2026-01-01": 1736.77526393116, - "2025-01-01": 1710.62557259176, - "2024-01-01": 1673.50136404431, - "2023-01-01": 1583, - "2015-01-01": 1583 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2206.40253705422, - "2034-01-01": 2163.67755366876, - "2033-01-01": 2121.48003921398, - "2032-01-01": 2080.33746262057, - "2031-01-01": 2040.24982388853, - "2030-01-01": 2000.68965408718, - "2029-01-01": 1961.65695321651, - "2028-01-01": 1923.15172127652, - "2027-01-01": 1884.11902040585, - "2026-01-01": 1838.80943926003, - "2025-01-01": 1811.12347420328, - "2024-01-01": 1771.81824771842, - "2023-01-01": 1676, - "2015-01-01": 1676 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2318.30242705995, - "2034-01-01": 2273.41060382499, - "2033-01-01": 2229.07300062996, - "2032-01-01": 2185.84383751481, - "2031-01-01": 2143.72311447954, - "2030-01-01": 2102.1566114842, - "2029-01-01": 2061.1443285288, - "2028-01-01": 2020.68626561334, - "2027-01-01": 1979.67398265794, - "2026-01-01": 1932.06648122728, - "2025-01-01": 1902.97639503101, - "2024-01-01": 1861.67776505497, - "2023-01-01": 1761, - "2015-01-01": 1761 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2423.61997059476, - "2034-01-01": 2376.68876867791, - "2033-01-01": 2330.33696431559, - "2032-01-01": 2285.14395506233, - "2031-01-01": 2241.10974091813, - "2030-01-01": 2197.65492432846, - "2029-01-01": 2154.77950529331, - "2028-01-01": 2112.48348381269, - "2027-01-01": 2069.60806477755, - "2026-01-01": 2019.83781484351, - "2025-01-01": 1989.42620286887, - "2024-01-01": 1946.25142843055, - "2023-01-01": 1841, - "2015-01-01": 1841 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2531.57045271794, - "2034-01-01": 2482.54888765216, - "2033-01-01": 2434.13252709337, - "2032-01-01": 2386.92657554854, - "2031-01-01": 2340.93103301769, - "2030-01-01": 2295.54069499382, - "2029-01-01": 2250.75556147693, - "2028-01-01": 2206.57563246703, - "2027-01-01": 2161.79049895015, - "2026-01-01": 2109.80343180015, - "2025-01-01": 2078.03725590269, - "2024-01-01": 2032.93943339052, - "2023-01-01": 1923, - "2015-01-01": 1923 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2646.10328131204, - "2034-01-01": 2594.86389192971, - "2033-01-01": 2544.25708760149, - "2032-01-01": 2494.91545338147, - "2031-01-01": 2446.83898926966, - "2030-01-01": 2399.39511021195, - "2029-01-01": 2352.58381620834, - "2028-01-01": 2306.40510725883, - "2027-01-01": 2259.59381325523, - "2026-01-01": 2205.2547571078, - "2025-01-01": 2172.05142192636, - "2024-01-01": 2124.91329231147, - "2023-01-01": 2010, - "2015-01-01": 2010 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2752.73729414103, - "2034-01-01": 2699.4330338433, - "2033-01-01": 2646.78685083319, - "2032-01-01": 2595.45682239834, - "2031-01-01": 2545.44294853873, - "2030-01-01": 2496.08715196676, - "2029-01-01": 2447.38943268241, - "2028-01-01": 2399.34979068568, - "2027-01-01": 2350.65207140133, - "2026-01-01": 2294.12323239423, - "2025-01-01": 2259.5818523622, - "2024-01-01": 2210.54412647924, - "2023-01-01": 2091, - "2015-01-01": 2091 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2855.42189908747, - "2034-01-01": 2800.1292445749, - "2033-01-01": 2745.51921542668, - "2032-01-01": 2692.27443700717, - "2031-01-01": 2640.39490931636, - "2030-01-01": 2589.19800698991, - "2029-01-01": 2538.6837300278, - "2028-01-01": 2488.85207843006, - "2027-01-01": 2438.33780146795, - "2026-01-01": 2379.70028267005, - "2025-01-01": 2343.87041500412, - "2024-01-01": 2293.00344827044, - "2023-01-01": 2169, - "2015-01-01": 2169 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3443.88367358821, - "2034-01-01": 3377.19599069061, - "2033-01-01": 3311.33161252015, - "2032-01-01": 3247.11384380394, - "2031-01-01": 3184.542684542, - "2030-01-01": 3122.79483000719, - "2029-01-01": 3061.87028019951, - "2028-01-01": 3001.76903511896, - "2027-01-01": 2940.84448531128, - "2026-01-01": 2870.12260925074, - "2025-01-01": 2826.90871629819, - "2024-01-01": 2765.55879238149, - "2023-01-01": 2616, - "2015-01-01": 2616 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 834.64153251335, - "2034-01-01": 818.479456459422, - "2033-01-01": 802.516912208629, - "2032-01-01": 786.953431564106, - "2031-01-01": 771.789014525852, - "2030-01-01": 756.824129290734, - "2029-01-01": 742.05877585875, - "2028-01-01": 727.492954229901, - "2027-01-01": 712.727600797917, - "2026-01-01": 695.587818908628, - "2025-01-01": 685.114727115082, - "2024-01-01": 670.246282251478, - "2023-01-01": 634, - "2015-01-01": 634 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1161.12591747125, - "2034-01-01": 1138.64176750349, - "2033-01-01": 1116.43519963409, - "2032-01-01": 1094.78379596142, - "2031-01-01": 1073.68755648549, - "2030-01-01": 1052.86889910793, - "2029-01-01": 1032.32782382873, - "2028-01-01": 1012.06433064791, - "2027-01-01": 991.523255368712, - "2026-01-01": 967.678953118943, - "2025-01-01": 953.109131412464, - "2024-01-01": 932.424638715779, - "2023-01-01": 882, - "2015-01-01": 882 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1324.36810995021, - "2034-01-01": 1298.72292302552, - "2033-01-01": 1273.39434334681, - "2032-01-01": 1248.69897816008, - "2031-01-01": 1224.63682746531, - "2030-01-01": 1200.89128401653, - "2029-01-01": 1177.46234781373, - "2028-01-01": 1154.35001885691, - "2027-01-01": 1130.92108265411, - "2026-01-01": 1103.7245202241, - "2025-01-01": 1087.10633356116, - "2024-01-01": 1063.51381694793, - "2023-01-01": 1006, - "2015-01-01": 1006 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1461.28091654546, - "2034-01-01": 1432.98453733432, - "2033-01-01": 1405.03749613814, - "2032-01-01": 1377.78913097186, - "2031-01-01": 1351.23944183548, - "2030-01-01": 1325.03909071406, - "2029-01-01": 1299.18807760759, - "2028-01-01": 1273.68640251607, - "2027-01-01": 1247.8353894096, - "2026-01-01": 1217.8272539252, - "2025-01-01": 1199.49108375038, - "2024-01-01": 1173.45957933618, - "2023-01-01": 1110, - "2015-01-01": 1110 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1581.0796223163, - "2034-01-01": 1550.46344985452, - "2033-01-01": 1520.22525483054, - "2032-01-01": 1490.74301468216, - "2031-01-01": 1462.01672940938, - "2030-01-01": 1433.6684215744, - "2029-01-01": 1405.69809117722, - "2028-01-01": 1378.10573821784, - "2027-01-01": 1350.13540782066, - "2026-01-01": 1317.66714591366, - "2025-01-01": 1297.82774016595, - "2024-01-01": 1269.66212142591, - "2023-01-01": 1201, - "2015-01-01": 1201 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1686.39716585111, - "2034-01-01": 1653.74161470744, - "2033-01-01": 1621.48921851617, - "2032-01-01": 1590.04313222968, - "2031-01-01": 1559.40335584798, - "2030-01-01": 1529.16673441866, - "2029-01-01": 1499.33326794173, - "2028-01-01": 1469.9029564172, - "2027-01-01": 1440.06948994027, - "2026-01-01": 1405.43847952989, - "2025-01-01": 1384.27754800382, - "2024-01-01": 1354.23578480149, - "2023-01-01": 1281, - "2015-01-01": 1281 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1783.8158936208, - "2034-01-01": 1749.2739171964, - "2033-01-01": 1715.15838492538, - "2032-01-01": 1681.89574096114, - "2031-01-01": 1649.48598530367, - "2030-01-01": 1617.5026737996, - "2029-01-01": 1585.94580644891, - "2028-01-01": 1554.8153832516, - "2027-01-01": 1523.25851590091, - "2026-01-01": 1486.62696312491, - "2025-01-01": 1464.24362025384, - "2024-01-01": 1432.4664234239, - "2023-01-01": 1355, - "2015-01-01": 1355 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1873.33580562539, - "2034-01-01": 1837.06035732138, - "2033-01-01": 1801.23275405817, - "2032-01-01": 1766.30084087653, - "2031-01-01": 1732.26461777648, - "2030-01-01": 1698.67623971721, - "2029-01-01": 1665.53570669874, - "2028-01-01": 1632.84301872106, - "2027-01-01": 1599.70248570258, - "2026-01-01": 1561.2325966987, - "2025-01-01": 1537.72595691603, - "2024-01-01": 1504.35403729314, - "2023-01-01": 1423, - "2015-01-01": 1423 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1956.27337115905, - "2034-01-01": 1918.39191214306, - "2033-01-01": 1880.9781254606, - "2032-01-01": 1844.49968344521, - "2031-01-01": 1808.95658609687, - "2030-01-01": 1773.88116108207, - "2029-01-01": 1739.27340840079, - "2028-01-01": 1705.13332805305, - "2027-01-01": 1670.52557537177, - "2026-01-01": 1630.35252192149, - "2025-01-01": 1605.80518058835, - "2024-01-01": 1570.95579720141, - "2023-01-01": 1486, - "2015-01-01": 1486 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2065.54032257641, - "2034-01-01": 2025.54300817797, - "2033-01-01": 1986.03948778445, - "2032-01-01": 1947.52355540076, - "2031-01-01": 1909.99521102691, - "2030-01-01": 1872.96066065798, - "2029-01-01": 1836.41990429397, - "2028-01-01": 1800.37294193488, - "2027-01-01": 1763.83218557087, - "2026-01-01": 1721.41528054832, - "2025-01-01": 1695.49685622013, - "2024-01-01": 1658.70097295358, - "2023-01-01": 1569, - "2015-01-01": 1569 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2206.40253705422, - "2034-01-01": 2163.67755366876, - "2033-01-01": 2121.48003921398, - "2032-01-01": 2080.33746262057, - "2031-01-01": 2040.24982388853, - "2030-01-01": 2000.68965408718, - "2029-01-01": 1961.65695321651, - "2028-01-01": 1923.15172127652, - "2027-01-01": 1884.11902040585, - "2026-01-01": 1838.80943926003, - "2025-01-01": 1811.12347420328, - "2024-01-01": 1771.81824771842, - "2023-01-01": 1676, - "2015-01-01": 1676 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2335.41652788436, - "2034-01-01": 2290.19330561359, - "2033-01-01": 2245.52839472888, - "2032-01-01": 2201.98010661628, - "2031-01-01": 2159.54844127581, - "2030-01-01": 2117.67508732139, - "2029-01-01": 2076.36004475303, - "2028-01-01": 2035.60331357073, - "2027-01-01": 1994.28827100237, - "2026-01-01": 1946.32932293992, - "2025-01-01": 1917.02448880466, - "2024-01-01": 1875.4209853535, - "2023-01-01": 1774, - "2015-01-01": 1774 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2452.58229506683, - "2034-01-01": 2405.09026401247, - "2033-01-01": 2358.18455432914, - "2032-01-01": 2312.4514873879, - "2031-01-01": 2267.89106318874, - "2030-01-01": 2223.91696036063, - "2029-01-01": 2180.52917890355, - "2028-01-01": 2137.72771881752, - "2027-01-01": 2094.33993736044, - "2026-01-01": 2043.97493158797, - "2025-01-01": 2013.19990002429, - "2024-01-01": 1969.50918585884, - "2023-01-01": 1863, - "2015-01-01": 1863 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2563.16571577838, - "2034-01-01": 2513.53233710804, - "2033-01-01": 2464.51171619905, - "2032-01-01": 2416.7166108128, - "2031-01-01": 2370.14702094927, - "2030-01-01": 2324.1901888471, - "2029-01-01": 2278.84611450629, - "2028-01-01": 2234.11479792684, - "2027-01-01": 2188.77072358603, - "2026-01-01": 2136.13483188501, - "2025-01-01": 2103.97219825404, - "2024-01-01": 2058.3115324032, - "2023-01-01": 1947, - "2015-01-01": 1947 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2677.69854437248, - "2034-01-01": 2625.84734138559, - "2033-01-01": 2574.63627670718, - "2032-01-01": 2524.70548864573, - "2031-01-01": 2476.05497720124, - "2030-01-01": 2428.04460406522, - "2029-01-01": 2380.67436923769, - "2028-01-01": 2333.94427271864, - "2027-01-01": 2286.57403789111, - "2026-01-01": 2231.58615719267, - "2025-01-01": 2197.98636427772, - "2024-01-01": 2150.28539132414, - "2023-01-01": 2034, - "2015-01-01": 2034 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2798.81371943751, - "2034-01-01": 2744.61723096645, - "2033-01-01": 2691.08983494565, - "2032-01-01": 2638.90062382538, - "2031-01-01": 2588.04959760562, - "2030-01-01": 2537.86766383612, - "2029-01-01": 2488.35482251688, - "2028-01-01": 2439.5110736479, - "2027-01-01": 2389.99823232866, - "2026-01-01": 2332.52319085133, - "2025-01-01": 2297.40364329127, - "2024-01-01": 2247.54510420606, - "2023-01-01": 2126, - "2015-01-01": 2126 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2912.03007873743, - "2034-01-01": 2855.64125818335, - "2033-01-01": 2799.94859590771, - "2032-01-01": 2745.64825018896, - "2031-01-01": 2692.74022102711, - "2030-01-01": 2640.5283501437, - "2029-01-01": 2589.01263753873, - "2028-01-01": 2538.19308321221, - "2027-01-01": 2486.67737060724, - "2026-01-01": 2426.87737448878, - "2025-01-01": 2390.33718671697, - "2024-01-01": 2338.46179233481, - "2023-01-01": 2212, - "2015-01-01": 2212 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3018.66409156642, - "2034-01-01": 2960.21040009693, - "2033-01-01": 2902.47835913941, - "2032-01-01": 2846.18961920583, - "2031-01-01": 2791.34418029618, - "2030-01-01": 2737.22039189851, - "2029-01-01": 2683.8182540128, - "2028-01-01": 2631.13776663906, - "2027-01-01": 2577.73562875335, - "2026-01-01": 2515.74584977521, - "2025-01-01": 2477.86761715281, - "2024-01-01": 2424.09262650259, - "2023-01-01": 2293, - "2015-01-01": 2293 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3641.35406771597, - "2034-01-01": 3570.84254978985, - "2033-01-01": 3501.20154443071, - "2032-01-01": 3433.30156420555, - "2031-01-01": 3367.14260911436, - "2030-01-01": 3301.85416659017, - "2029-01-01": 3237.43623663297, - "2028-01-01": 3173.88881924275, - "2027-01-01": 3109.47088928555, - "2026-01-01": 3034.69385978118, - "2025-01-01": 2989.00210599419, - "2024-01-01": 2924.13441121071, - "2023-01-01": 2766, - "2015-01-01": 2766 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 874.135611338903, - "2034-01-01": 857.208768279269, - "2033-01-01": 840.490898590741, - "2032-01-01": 824.190975644426, - "2031-01-01": 808.308999440325, - "2030-01-01": 792.63599660733, - "2029-01-01": 777.171967145441, - "2028-01-01": 761.91691105466, - "2027-01-01": 746.452881592771, - "2026-01-01": 728.502069014715, - "2025-01-01": 717.533405054281, - "2024-01-01": 701.961406017321, - "2023-01-01": 664, - "2015-01-01": 664 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1215.10115853284, - "2034-01-01": 1191.57182699061, - "2033-01-01": 1168.33298102297, - "2032-01-01": 1145.67510620453, - "2031-01-01": 1123.59820253527, - "2030-01-01": 1101.81178444061, - "2029-01-01": 1080.31585192055, - "2028-01-01": 1059.11040497508, - "2027-01-01": 1037.61447245501, - "2026-01-01": 1012.66176159726, - "2025-01-01": 997.41465792937, - "2024-01-01": 975.768641195764, - "2023-01-01": 923, - "2015-01-01": 923 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1384.92569748272, - "2034-01-01": 1358.10786781595, - "2033-01-01": 1331.62112246605, - "2032-01-01": 1305.7965457499, - "2031-01-01": 1280.6341376675, - "2030-01-01": 1255.80281390197, - "2029-01-01": 1231.30257445332, - "2028-01-01": 1207.13341932154, - "2027-01-01": 1182.63317987289, - "2026-01-01": 1154.19303705343, - "2025-01-01": 1136.81497306793, - "2024-01-01": 1112.14367338889, - "2023-01-01": 1052, - "2015-01-01": 1052 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1528.4208505489, - "2034-01-01": 1498.82436742806, - "2033-01-01": 1469.59327298773, - "2032-01-01": 1441.0929559084, - "2031-01-01": 1413.32341619009, - "2030-01-01": 1385.91926515227, - "2029-01-01": 1358.88050279497, - "2028-01-01": 1332.20712911816, - "2027-01-01": 1305.16836676086, - "2026-01-01": 1273.78147910555, - "2025-01-01": 1254.60283624702, - "2024-01-01": 1227.37528973812, - "2023-01-01": 1161, - "2015-01-01": 1161 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1652.16896420229, - "2034-01-01": 1620.17621113024, - "2033-01-01": 1588.57843031834, - "2032-01-01": 1557.77059402674, - "2031-01-01": 1527.75270225543, - "2030-01-01": 1498.12978274428, - "2029-01-01": 1468.90183549327, - "2028-01-01": 1440.06886050241, - "2027-01-01": 1410.8409132514, - "2026-01-01": 1376.91279610462, - "2025-01-01": 1356.18136045651, - "2024-01-01": 1326.74934420442, - "2023-01-01": 1255, - "2015-01-01": 1255 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1764.06885420803, - "2034-01-01": 1729.90926128648, - "2033-01-01": 1696.17139173433, - "2032-01-01": 1663.27696892098, - "2031-01-01": 1631.22599284644, - "2030-01-01": 1599.5967401413, - "2029-01-01": 1568.38921080556, - "2028-01-01": 1537.60340483922, - "2027-01-01": 1506.39587550348, - "2026-01-01": 1470.16983807186, - "2025-01-01": 1448.03428128424, - "2024-01-01": 1416.60886154098, - "2023-01-01": 1340, - "2015-01-01": 1340 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1865.43698986028, - "2034-01-01": 1829.31449495742, - "2033-01-01": 1793.63795678175, - "2032-01-01": 1758.85333206047, - "2031-01-01": 1724.96062079358, - "2030-01-01": 1691.5138662539, - "2029-01-01": 1658.5130684414, - "2028-01-01": 1625.9582273561, - "2027-01-01": 1592.95742954361, - "2026-01-01": 1554.64974667749, - "2025-01-01": 1531.24222132819, - "2024-01-01": 1498.01101253998, - "2023-01-01": 1417, - "2015-01-01": 1417 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1957.58984045324, - "2034-01-01": 1919.68288920372, - "2033-01-01": 1882.24392500667, - "2032-01-01": 1845.74093491455, - "2031-01-01": 1810.17391892735, - "2030-01-01": 1775.07488999262, - "2029-01-01": 1740.44384811035, - "2028-01-01": 1706.28079328054, - "2027-01-01": 1671.64975139827, - "2026-01-01": 1631.44966359169, - "2025-01-01": 1606.88580318632, - "2024-01-01": 1572.01296799361, - "2023-01-01": 1487, - "2015-01-01": 1487 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2044.47681386945, - "2034-01-01": 2004.88737520739, - "2033-01-01": 1965.78669504732, - "2032-01-01": 1927.66353189126, - "2031-01-01": 1890.51788573919, - "2030-01-01": 1853.86099808913, - "2029-01-01": 1817.69286894107, - "2028-01-01": 1782.01349829501, - "2027-01-01": 1745.84536914695, - "2026-01-01": 1703.86101382508, - "2025-01-01": 1678.20689465256, - "2024-01-01": 1641.78624027846, - "2023-01-01": 1553, - "2015-01-01": 1553 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2159.00964246356, - "2034-01-01": 2117.20237948494, - "2033-01-01": 2075.91125555544, - "2032-01-01": 2035.65240972418, - "2031-01-01": 1996.42584199116, - "2030-01-01": 1957.71541330726, - "2029-01-01": 1919.52112367248, - "2028-01-01": 1881.84297308681, - "2027-01-01": 1843.64868345203, - "2026-01-01": 1799.31233913273, - "2025-01-01": 1772.22106067624, - "2024-01-01": 1733.76009919941, - "2023-01-01": 1640, - "2015-01-01": 1640 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2305.1377341181, - "2034-01-01": 2260.50083321837, - "2033-01-01": 2216.41500516926, - "2032-01-01": 2173.43132282137, - "2031-01-01": 2131.54978617471, - "2030-01-01": 2090.21932237867, - "2029-01-01": 2049.43993143323, - "2028-01-01": 2009.21161333842, - "2027-01-01": 1968.43222239299, - "2026-01-01": 1921.09506452525, - "2025-01-01": 1892.17016905127, - "2024-01-01": 1851.10605713303, - "2023-01-01": 1751, - "2015-01-01": 1751 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2439.41760212498, - "2034-01-01": 2392.18049340585, - "2033-01-01": 2345.52655886844, - "2032-01-01": 2300.03897269446, - "2031-01-01": 2255.71773488392, - "2030-01-01": 2211.97967125509, - "2029-01-01": 2168.82478180799, - "2028-01-01": 2126.2530665426, - "2027-01-01": 2083.09817709549, - "2026-01-01": 2033.00351488594, - "2025-01-01": 2002.39367404455, - "2024-01-01": 1958.93747793689, - "2023-01-01": 1853, - "2015-01-01": 1853 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2563.16571577838, - "2034-01-01": 2513.53233710804, - "2033-01-01": 2464.51171619905, - "2032-01-01": 2416.7166108128, - "2031-01-01": 2370.14702094927, - "2030-01-01": 2324.1901888471, - "2029-01-01": 2278.84611450629, - "2028-01-01": 2234.11479792684, - "2027-01-01": 2188.77072358603, - "2026-01-01": 2136.13483188501, - "2025-01-01": 2103.97219825404, - "2024-01-01": 2058.3115324032, - "2023-01-01": 1947, - "2015-01-01": 1947 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2677.69854437248, - "2034-01-01": 2625.84734138559, - "2033-01-01": 2574.63627670718, - "2032-01-01": 2524.70548864573, - "2031-01-01": 2476.05497720124, - "2030-01-01": 2428.04460406522, - "2029-01-01": 2380.67436923769, - "2028-01-01": 2333.94427271864, - "2027-01-01": 2286.57403789111, - "2026-01-01": 2231.58615719267, - "2025-01-01": 2197.98636427772, - "2024-01-01": 2150.28539132414, - "2023-01-01": 2034, - "2015-01-01": 2034 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2797.49725014333, - "2034-01-01": 2743.32625390579, - "2033-01-01": 2689.82403539958, - "2032-01-01": 2637.65937235603, - "2031-01-01": 2586.83226477514, - "2030-01-01": 2536.67393492557, - "2029-01-01": 2487.18438280732, - "2028-01-01": 2438.36360842041, - "2027-01-01": 2388.87405630217, - "2026-01-01": 2331.42604918113, - "2025-01-01": 2296.32302069329, - "2024-01-01": 2246.48793341387, - "2023-01-01": 2125, - "2015-01-01": 2125 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2923.8783023851, - "2034-01-01": 2867.2600517293, - "2033-01-01": 2811.34079182234, - "2032-01-01": 2756.81951341306, - "2031-01-01": 2703.69621650145, - "2030-01-01": 2651.27191033867, - "2029-01-01": 2599.54659492474, - "2028-01-01": 2548.52027025964, - "2027-01-01": 2496.7949548457, - "2026-01-01": 2436.7516495206, - "2025-01-01": 2400.06279009873, - "2024-01-01": 2347.97632946456, - "2023-01-01": 2221, - "2015-01-01": 2221 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3041.04406956757, - "2034-01-01": 2982.15701012818, - "2033-01-01": 2923.99695142261, - "2032-01-01": 2867.29089418468, - "2031-01-01": 2812.03883841438, - "2030-01-01": 2757.51378337791, - "2029-01-01": 2703.71572907526, - "2028-01-01": 2650.64467550642, - "2027-01-01": 2596.84662120377, - "2026-01-01": 2534.39725816866, - "2025-01-01": 2496.23820131836, - "2024-01-01": 2442.0645299699, - "2023-01-01": 2310, - "2015-01-01": 2310 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3152.9439595733, - "2034-01-01": 3091.89006028441, - "2033-01-01": 3031.58991283859, - "2032-01-01": 2972.79726907892, - "2031-01-01": 2915.51212900539, - "2030-01-01": 2858.98074077493, - "2029-01-01": 2803.20310438755, - "2028-01-01": 2748.17921984324, - "2027-01-01": 2692.40158345586, - "2026-01-01": 2627.65430013591, - "2025-01-01": 2588.09112214609, - "2024-01-01": 2531.92404730645, - "2023-01-01": 2395, - "2015-01-01": 2395 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3801.96332160656, - "2034-01-01": 3728.34175119055, - "2033-01-01": 3655.62908905129, - "2032-01-01": 3584.73424346552, - "2031-01-01": 3515.65721443322, - "2030-01-01": 3447.48909367766, - "2029-01-01": 3380.22988119885, - "2028-01-01": 3313.87957699677, - "2027-01-01": 3246.62036451796, - "2026-01-01": 3168.54514354593, - "2025-01-01": 3120.83806294693, - "2024-01-01": 3053.10924785847, - "2023-01-01": 2888, - "2015-01-01": 2888 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 928.110852400492, - "2034-01-01": 910.138827766392, - "2033-01-01": 892.388679979627, - "2032-01-01": 875.082285887531, - "2031-01-01": 858.219645490104, - "2030-01-01": 841.578881940011, - "2029-01-01": 825.159995237253, - "2028-01-01": 808.96298538183, - "2027-01-01": 792.544098679072, - "2026-01-01": 773.484877493033, - "2025-01-01": 761.838931571187, - "2024-01-01": 745.305408497306, - "2023-01-01": 705, - "2015-01-01": 705 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1290.13990830139, - "2034-01-01": 1265.15751944832, - "2033-01-01": 1240.48355514898, - "2032-01-01": 1216.42643995713, - "2031-01-01": 1192.98617387277, - "2030-01-01": 1169.85433234214, - "2029-01-01": 1147.03091536526, - "2028-01-01": 1124.51592294212, - "2027-01-01": 1101.69250596524, - "2026-01-01": 1075.19883679883, - "2025-01-01": 1059.01014601385, - "2024-01-01": 1036.02737635087, - "2023-01-01": 980, - "2015-01-01": 980 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1469.17973231057, - "2034-01-01": 1440.73039969829, - "2033-01-01": 1412.63229341456, - "2032-01-01": 1385.23663978792, - "2031-01-01": 1358.54343881838, - "2030-01-01": 1332.20146417738, - "2029-01-01": 1306.21071586493, - "2028-01-01": 1280.57119388102, - "2027-01-01": 1254.58044556857, - "2026-01-01": 1224.41010394642, - "2025-01-01": 1205.97481933822, - "2024-01-01": 1179.80260408935, - "2023-01-01": 1116, - "2015-01-01": 1116 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1620.57370114185, - "2034-01-01": 1589.19276167437, - "2033-01-01": 1558.19924121265, - "2032-01-01": 1527.98055876248, - "2031-01-01": 1498.53671432386, - "2030-01-01": 1469.480288891, - "2029-01-01": 1440.81128246391, - "2028-01-01": 1412.5296950426, - "2027-01-01": 1383.86068861551, - "2026-01-01": 1350.58139601975, - "2025-01-01": 1330.24641810515, - "2024-01-01": 1301.37724519175, - "2023-01-01": 1231, - "2015-01-01": 1231 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1752.22063056036, - "2034-01-01": 1718.29046774052, - "2033-01-01": 1684.77919581969, - "2032-01-01": 1652.10570569688, - "2031-01-01": 1620.2699973721, - "2030-01-01": 1588.85317994632, - "2029-01-01": 1557.85525341955, - "2028-01-01": 1527.2762177918, - "2027-01-01": 1496.27829126503, - "2026-01-01": 1460.29556304004, - "2025-01-01": 1438.30867790248, - "2024-01-01": 1407.09432441123, - "2023-01-01": 1331, - "2015-01-01": 1331 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1870.70286703702, - "2034-01-01": 1834.47840320006, - "2033-01-01": 1798.70115496603, - "2032-01-01": 1763.81833793785, - "2031-01-01": 1729.82995211551, - "2030-01-01": 1696.28878189611, - "2029-01-01": 1663.19482727963, - "2028-01-01": 1630.54808826607, - "2027-01-01": 1597.45413364959, - "2026-01-01": 1559.0383133583, - "2025-01-01": 1535.56471172008, - "2024-01-01": 1502.23969570875, - "2023-01-01": 1421, - "2015-01-01": 1421 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1977.33687986601, - "2034-01-01": 1939.04754511365, - "2033-01-01": 1901.23091819773, - "2032-01-01": 1864.35970695471, - "2031-01-01": 1828.43391138459, - "2030-01-01": 1792.98082365092, - "2029-01-01": 1758.00044375369, - "2028-01-01": 1723.49277169292, - "2027-01-01": 1688.5123917957, - "2026-01-01": 1647.90678864473, - "2025-01-01": 1623.09514215592, - "2024-01-01": 1587.87052987653, - "2023-01-01": 1502, - "2015-01-01": 1502 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2076.0720769299, - "2034-01-01": 2035.87082466326, - "2033-01-01": 1996.16588415301, - "2032-01-01": 1957.45356715551, - "2031-01-01": 1919.73387367077, - "2030-01-01": 1882.51049194241, - "2029-01-01": 1845.78342197042, - "2028-01-01": 1809.55266375482, - "2027-01-01": 1772.82559378283, - "2026-01-01": 1730.19241390995, - "2025-01-01": 1704.14183700392, - "2024-01-01": 1667.15833929114, - "2023-01-01": 1577, - "2015-01-01": 1577 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2166.90845822867, - "2034-01-01": 2124.94824184891, - "2033-01-01": 2083.50605283187, - "2032-01-01": 2043.09991854025, - "2031-01-01": 2003.72983897406, - "2030-01-01": 1964.87778677058, - "2029-01-01": 1926.54376192981, - "2028-01-01": 1888.72776445176, - "2027-01-01": 1850.393739611, - "2026-01-01": 1805.89518915395, - "2025-01-01": 1778.70479626408, - "2024-01-01": 1740.10312395258, - "2023-01-01": 1646, - "2015-01-01": 1646 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2288.0236332937, - "2034-01-01": 2243.71813142977, - "2033-01-01": 2199.95961107034, - "2032-01-01": 2157.2950537199, - "2031-01-01": 2115.72445937844, - "2030-01-01": 2074.70084654147, - "2029-01-01": 2034.224215209, - "2028-01-01": 1994.29456538102, - "2027-01-01": 1953.81793404855, - "2026-01-01": 1906.83222281261, - "2025-01-01": 1878.12207527762, - "2024-01-01": 1837.36283683449, - "2023-01-01": 1738, - "2015-01-01": 1738 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2443.36701000754, - "2034-01-01": 2396.05342458784, - "2033-01-01": 2349.32395750665, - "2032-01-01": 2303.76272710249, - "2031-01-01": 2259.36973337537, - "2030-01-01": 2215.56085798675, - "2029-01-01": 2172.33610093666, - "2028-01-01": 2129.69546222507, - "2027-01-01": 2086.47070517498, - "2026-01-01": 2036.29493989655, - "2025-01-01": 2005.63554183847, - "2024-01-01": 1962.10899031348, - "2023-01-01": 1856, - "2015-01-01": 1856 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2585.54569377953, - "2034-01-01": 2535.47894713928, - "2033-01-01": 2486.03030848225, - "2032-01-01": 2437.81788579165, - "2031-01-01": 2390.84167906747, - "2030-01-01": 2344.4835803265, - "2029-01-01": 2298.74358956875, - "2028-01-01": 2253.6217067942, - "2027-01-01": 2207.88171603645, - "2026-01-01": 2154.78624027846, - "2025-01-01": 2122.34278241959, - "2024-01-01": 2076.28343587051, - "2023-01-01": 1964, - "2015-01-01": 1964 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2715.87615390385, - "2034-01-01": 2663.28567614478, - "2033-01-01": 2611.34446354322, - "2032-01-01": 2560.7017812567, - "2031-01-01": 2511.35762928523, - "2030-01-01": 2462.66274247127, - "2029-01-01": 2414.61712081483, - "2028-01-01": 2367.22076431591, - "2027-01-01": 2319.17514265947, - "2026-01-01": 2263.40326562855, - "2025-01-01": 2229.32441961895, - "2024-01-01": 2180.94334429779, - "2023-01-01": 2063, - "2015-01-01": 2063 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2836.99132896888, - "2034-01-01": 2782.05556572564, - "2033-01-01": 2727.7980217817, - "2032-01-01": 2674.89691643635, - "2031-01-01": 2623.35224968961, - "2030-01-01": 2572.48580224216, - "2029-01-01": 2522.29757409402, - "2028-01-01": 2472.78756524517, - "2027-01-01": 2422.59933709702, - "2026-01-01": 2364.34029928721, - "2025-01-01": 2328.74169863249, - "2024-01-01": 2278.20305717971, - "2023-01-01": 2155, - "2015-01-01": 2155 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2962.05591191646, - "2034-01-01": 2904.69838648849, - "2033-01-01": 2848.04897865838, - "2032-01-01": 2792.81580602403, - "2031-01-01": 2738.99886858544, - "2030-01-01": 2685.89004874472, - "2029-01-01": 2633.48934650187, - "2028-01-01": 2581.7967618569, - "2027-01-01": 2529.39605961406, - "2026-01-01": 2468.56875795649, - "2025-01-01": 2431.40084543996, - "2024-01-01": 2378.63428243821, - "2023-01-01": 2250, - "2015-01-01": 2250 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3096.33577992334, - "2034-01-01": 3036.37804667596, - "2033-01-01": 2977.16053235756, - "2032-01-01": 2919.42345589712, - "2031-01-01": 2863.16681729464, - "2030-01-01": 2807.65039762114, - "2029-01-01": 2752.87419687662, - "2028-01-01": 2698.83821506108, - "2027-01-01": 2644.06201431656, - "2026-01-01": 2580.47720831718, - "2025-01-01": 2541.62435043324, - "2024-01-01": 2486.46570324208, - "2023-01-01": 2352, - "2015-01-01": 2352 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3221.40036287093, - "2034-01-01": 3159.02086743881, - "2033-01-01": 3097.41148923425, - "2032-01-01": 3037.34234548481, - "2031-01-01": 2978.81343619047, - "2030-01-01": 2921.0546441237, - "2029-01-01": 2864.06596928448, - "2028-01-01": 2807.84741167282, - "2027-01-01": 2750.8587368336, - "2026-01-01": 2684.70566698646, - "2025-01-01": 2644.2834972407, - "2024-01-01": 2586.89692850058, - "2023-01-01": 2447, - "2015-01-01": 2447 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3338.5661300534, - "2034-01-01": 3273.91782583769, - "2033-01-01": 3210.06764883452, - "2032-01-01": 3147.81372625642, - "2031-01-01": 3087.15605810341, - "2030-01-01": 3027.29651716293, - "2029-01-01": 2968.235103435, - "2028-01-01": 2909.9718169196, - "2027-01-01": 2850.91040319167, - "2026-01-01": 2782.35127563451, - "2025-01-01": 2740.45890846033, - "2024-01-01": 2680.98512900591, - "2023-01-01": 2536, - "2015-01-01": 2536 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IN.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 4023.13016302965, - "2034-01-01": 3945.22589738169, - "2033-01-01": 3868.28341279112, - "2032-01-01": 3793.26449031531, - "2031-01-01": 3720.16912995427, - "2030-01-01": 3648.0355506506, - "2029-01-01": 3576.86375240432, - "2028-01-01": 3506.65373521542, - "2027-01-01": 3435.48193696914, - "2026-01-01": 3352.86494414001, - "2025-01-01": 3302.38265940645, - "2024-01-01": 3230.71394094719, - "2023-01-01": 3056, - "2015-01-01": 3056 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA", - "description": null, - "label": "IA", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 834.64153251335, - "2034-01-01": 818.479456459422, - "2033-01-01": 802.516912208629, - "2032-01-01": 786.953431564106, - "2031-01-01": 771.789014525852, - "2030-01-01": 756.824129290734, - "2029-01-01": 742.05877585875, - "2028-01-01": 727.492954229901, - "2027-01-01": 712.727600797917, - "2026-01-01": 695.587818908628, - "2025-01-01": 685.114727115082, - "2024-01-01": 670.246282251478, - "2023-01-01": 634, - "2015-01-01": 634 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1161.12591747125, - "2034-01-01": 1138.64176750349, - "2033-01-01": 1116.43519963409, - "2032-01-01": 1094.78379596142, - "2031-01-01": 1073.68755648549, - "2030-01-01": 1052.86889910793, - "2029-01-01": 1032.32782382873, - "2028-01-01": 1012.06433064791, - "2027-01-01": 991.523255368712, - "2026-01-01": 967.678953118943, - "2025-01-01": 953.109131412464, - "2024-01-01": 932.424638715779, - "2023-01-01": 882, - "2015-01-01": 882 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1324.36810995021, - "2034-01-01": 1298.72292302552, - "2033-01-01": 1273.39434334681, - "2032-01-01": 1248.69897816008, - "2031-01-01": 1224.63682746531, - "2030-01-01": 1200.89128401653, - "2029-01-01": 1177.46234781373, - "2028-01-01": 1154.35001885691, - "2027-01-01": 1130.92108265411, - "2026-01-01": 1103.7245202241, - "2025-01-01": 1087.10633356116, - "2024-01-01": 1063.51381694793, - "2023-01-01": 1006, - "2015-01-01": 1006 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1461.28091654546, - "2034-01-01": 1432.98453733432, - "2033-01-01": 1405.03749613814, - "2032-01-01": 1377.78913097186, - "2031-01-01": 1351.23944183548, - "2030-01-01": 1325.03909071406, - "2029-01-01": 1299.18807760759, - "2028-01-01": 1273.68640251607, - "2027-01-01": 1247.8353894096, - "2026-01-01": 1217.8272539252, - "2025-01-01": 1199.49108375038, - "2024-01-01": 1173.45957933618, - "2023-01-01": 1110, - "2015-01-01": 1110 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1581.0796223163, - "2034-01-01": 1550.46344985452, - "2033-01-01": 1520.22525483054, - "2032-01-01": 1490.74301468216, - "2031-01-01": 1462.01672940938, - "2030-01-01": 1433.6684215744, - "2029-01-01": 1405.69809117722, - "2028-01-01": 1378.10573821784, - "2027-01-01": 1350.13540782066, - "2026-01-01": 1317.66714591366, - "2025-01-01": 1297.82774016595, - "2024-01-01": 1269.66212142591, - "2023-01-01": 1201, - "2015-01-01": 1201 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1686.39716585111, - "2034-01-01": 1653.74161470744, - "2033-01-01": 1621.48921851617, - "2032-01-01": 1590.04313222968, - "2031-01-01": 1559.40335584798, - "2030-01-01": 1529.16673441866, - "2029-01-01": 1499.33326794173, - "2028-01-01": 1469.9029564172, - "2027-01-01": 1440.06948994027, - "2026-01-01": 1405.43847952989, - "2025-01-01": 1384.27754800382, - "2024-01-01": 1354.23578480149, - "2023-01-01": 1281, - "2015-01-01": 1281 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1783.8158936208, - "2034-01-01": 1749.2739171964, - "2033-01-01": 1715.15838492538, - "2032-01-01": 1681.89574096114, - "2031-01-01": 1649.48598530367, - "2030-01-01": 1617.5026737996, - "2029-01-01": 1585.94580644891, - "2028-01-01": 1554.8153832516, - "2027-01-01": 1523.25851590091, - "2026-01-01": 1486.62696312491, - "2025-01-01": 1464.24362025384, - "2024-01-01": 1432.4664234239, - "2023-01-01": 1355, - "2015-01-01": 1355 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1873.33580562539, - "2034-01-01": 1837.06035732138, - "2033-01-01": 1801.23275405817, - "2032-01-01": 1766.30084087653, - "2031-01-01": 1732.26461777648, - "2030-01-01": 1698.67623971721, - "2029-01-01": 1665.53570669874, - "2028-01-01": 1632.84301872106, - "2027-01-01": 1599.70248570258, - "2026-01-01": 1561.2325966987, - "2025-01-01": 1537.72595691603, - "2024-01-01": 1504.35403729314, - "2023-01-01": 1423, - "2015-01-01": 1423 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1956.27337115905, - "2034-01-01": 1918.39191214306, - "2033-01-01": 1880.9781254606, - "2032-01-01": 1844.49968344521, - "2031-01-01": 1808.95658609687, - "2030-01-01": 1773.88116108207, - "2029-01-01": 1739.27340840079, - "2028-01-01": 1705.13332805305, - "2027-01-01": 1670.52557537177, - "2026-01-01": 1630.35252192149, - "2025-01-01": 1605.80518058835, - "2024-01-01": 1570.95579720141, - "2023-01-01": 1486, - "2015-01-01": 1486 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2065.54032257641, - "2034-01-01": 2025.54300817797, - "2033-01-01": 1986.03948778445, - "2032-01-01": 1947.52355540076, - "2031-01-01": 1909.99521102691, - "2030-01-01": 1872.96066065798, - "2029-01-01": 1836.41990429397, - "2028-01-01": 1800.37294193488, - "2027-01-01": 1763.83218557087, - "2026-01-01": 1721.41528054832, - "2025-01-01": 1695.49685622013, - "2024-01-01": 1658.70097295358, - "2023-01-01": 1569, - "2015-01-01": 1569 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2206.40253705422, - "2034-01-01": 2163.67755366876, - "2033-01-01": 2121.48003921398, - "2032-01-01": 2080.33746262057, - "2031-01-01": 2040.24982388853, - "2030-01-01": 2000.68965408718, - "2029-01-01": 1961.65695321651, - "2028-01-01": 1923.15172127652, - "2027-01-01": 1884.11902040585, - "2026-01-01": 1838.80943926003, - "2025-01-01": 1811.12347420328, - "2024-01-01": 1771.81824771842, - "2023-01-01": 1676, - "2015-01-01": 1676 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2335.41652788436, - "2034-01-01": 2290.19330561359, - "2033-01-01": 2245.52839472888, - "2032-01-01": 2201.98010661628, - "2031-01-01": 2159.54844127581, - "2030-01-01": 2117.67508732139, - "2029-01-01": 2076.36004475303, - "2028-01-01": 2035.60331357073, - "2027-01-01": 1994.28827100237, - "2026-01-01": 1946.32932293992, - "2025-01-01": 1917.02448880466, - "2024-01-01": 1875.4209853535, - "2023-01-01": 1774, - "2015-01-01": 1774 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2452.58229506683, - "2034-01-01": 2405.09026401247, - "2033-01-01": 2358.18455432914, - "2032-01-01": 2312.4514873879, - "2031-01-01": 2267.89106318874, - "2030-01-01": 2223.91696036063, - "2029-01-01": 2180.52917890355, - "2028-01-01": 2137.72771881752, - "2027-01-01": 2094.33993736044, - "2026-01-01": 2043.97493158797, - "2025-01-01": 2013.19990002429, - "2024-01-01": 1969.50918585884, - "2023-01-01": 1863, - "2015-01-01": 1863 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2563.16571577838, - "2034-01-01": 2513.53233710804, - "2033-01-01": 2464.51171619905, - "2032-01-01": 2416.7166108128, - "2031-01-01": 2370.14702094927, - "2030-01-01": 2324.1901888471, - "2029-01-01": 2278.84611450629, - "2028-01-01": 2234.11479792684, - "2027-01-01": 2188.77072358603, - "2026-01-01": 2136.13483188501, - "2025-01-01": 2103.97219825404, - "2024-01-01": 2058.3115324032, - "2023-01-01": 1947, - "2015-01-01": 1947 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2677.69854437248, - "2034-01-01": 2625.84734138559, - "2033-01-01": 2574.63627670718, - "2032-01-01": 2524.70548864573, - "2031-01-01": 2476.05497720124, - "2030-01-01": 2428.04460406522, - "2029-01-01": 2380.67436923769, - "2028-01-01": 2333.94427271864, - "2027-01-01": 2286.57403789111, - "2026-01-01": 2231.58615719267, - "2025-01-01": 2197.98636427772, - "2024-01-01": 2150.28539132414, - "2023-01-01": 2034, - "2015-01-01": 2034 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2798.81371943751, - "2034-01-01": 2744.61723096645, - "2033-01-01": 2691.08983494565, - "2032-01-01": 2638.90062382538, - "2031-01-01": 2588.04959760562, - "2030-01-01": 2537.86766383612, - "2029-01-01": 2488.35482251688, - "2028-01-01": 2439.5110736479, - "2027-01-01": 2389.99823232866, - "2026-01-01": 2332.52319085133, - "2025-01-01": 2297.40364329127, - "2024-01-01": 2247.54510420606, - "2023-01-01": 2126, - "2015-01-01": 2126 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2912.03007873743, - "2034-01-01": 2855.64125818335, - "2033-01-01": 2799.94859590771, - "2032-01-01": 2745.64825018896, - "2031-01-01": 2692.74022102711, - "2030-01-01": 2640.5283501437, - "2029-01-01": 2589.01263753873, - "2028-01-01": 2538.19308321221, - "2027-01-01": 2486.67737060724, - "2026-01-01": 2426.87737448878, - "2025-01-01": 2390.33718671697, - "2024-01-01": 2338.46179233481, - "2023-01-01": 2212, - "2015-01-01": 2212 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3018.66409156642, - "2034-01-01": 2960.21040009693, - "2033-01-01": 2902.47835913941, - "2032-01-01": 2846.18961920583, - "2031-01-01": 2791.34418029618, - "2030-01-01": 2737.22039189851, - "2029-01-01": 2683.8182540128, - "2028-01-01": 2631.13776663906, - "2027-01-01": 2577.73562875335, - "2026-01-01": 2515.74584977521, - "2025-01-01": 2477.86761715281, - "2024-01-01": 2424.09262650259, - "2023-01-01": 2293, - "2015-01-01": 2293 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3641.35406771597, - "2034-01-01": 3570.84254978985, - "2033-01-01": 3501.20154443071, - "2032-01-01": 3433.30156420555, - "2031-01-01": 3367.14260911436, - "2030-01-01": 3301.85416659017, - "2029-01-01": 3237.43623663297, - "2028-01-01": 3173.88881924275, - "2027-01-01": 3109.47088928555, - "2026-01-01": 3034.69385978118, - "2025-01-01": 2989.00210599419, - "2024-01-01": 2924.13441121071, - "2023-01-01": 2766, - "2015-01-01": 2766 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 874.135611338903, - "2034-01-01": 857.208768279269, - "2033-01-01": 840.490898590741, - "2032-01-01": 824.190975644426, - "2031-01-01": 808.308999440325, - "2030-01-01": 792.63599660733, - "2029-01-01": 777.171967145441, - "2028-01-01": 761.91691105466, - "2027-01-01": 746.452881592771, - "2026-01-01": 728.502069014715, - "2025-01-01": 717.533405054281, - "2024-01-01": 701.961406017321, - "2023-01-01": 664, - "2015-01-01": 664 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1215.10115853284, - "2034-01-01": 1191.57182699061, - "2033-01-01": 1168.33298102297, - "2032-01-01": 1145.67510620453, - "2031-01-01": 1123.59820253527, - "2030-01-01": 1101.81178444061, - "2029-01-01": 1080.31585192055, - "2028-01-01": 1059.11040497508, - "2027-01-01": 1037.61447245501, - "2026-01-01": 1012.66176159726, - "2025-01-01": 997.41465792937, - "2024-01-01": 975.768641195764, - "2023-01-01": 923, - "2015-01-01": 923 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1384.92569748272, - "2034-01-01": 1358.10786781595, - "2033-01-01": 1331.62112246605, - "2032-01-01": 1305.7965457499, - "2031-01-01": 1280.6341376675, - "2030-01-01": 1255.80281390197, - "2029-01-01": 1231.30257445332, - "2028-01-01": 1207.13341932154, - "2027-01-01": 1182.63317987289, - "2026-01-01": 1154.19303705343, - "2025-01-01": 1136.81497306793, - "2024-01-01": 1112.14367338889, - "2023-01-01": 1052, - "2015-01-01": 1052 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1528.4208505489, - "2034-01-01": 1498.82436742806, - "2033-01-01": 1469.59327298773, - "2032-01-01": 1441.0929559084, - "2031-01-01": 1413.32341619009, - "2030-01-01": 1385.91926515227, - "2029-01-01": 1358.88050279497, - "2028-01-01": 1332.20712911816, - "2027-01-01": 1305.16836676086, - "2026-01-01": 1273.78147910555, - "2025-01-01": 1254.60283624702, - "2024-01-01": 1227.37528973812, - "2023-01-01": 1161, - "2015-01-01": 1161 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1652.16896420229, - "2034-01-01": 1620.17621113024, - "2033-01-01": 1588.57843031834, - "2032-01-01": 1557.77059402674, - "2031-01-01": 1527.75270225543, - "2030-01-01": 1498.12978274428, - "2029-01-01": 1468.90183549327, - "2028-01-01": 1440.06886050241, - "2027-01-01": 1410.8409132514, - "2026-01-01": 1376.91279610462, - "2025-01-01": 1356.18136045651, - "2024-01-01": 1326.74934420442, - "2023-01-01": 1255, - "2015-01-01": 1255 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1764.06885420803, - "2034-01-01": 1729.90926128648, - "2033-01-01": 1696.17139173433, - "2032-01-01": 1663.27696892098, - "2031-01-01": 1631.22599284644, - "2030-01-01": 1599.5967401413, - "2029-01-01": 1568.38921080556, - "2028-01-01": 1537.60340483922, - "2027-01-01": 1506.39587550348, - "2026-01-01": 1470.16983807186, - "2025-01-01": 1448.03428128424, - "2024-01-01": 1416.60886154098, - "2023-01-01": 1340, - "2015-01-01": 1340 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1865.43698986028, - "2034-01-01": 1829.31449495742, - "2033-01-01": 1793.63795678175, - "2032-01-01": 1758.85333206047, - "2031-01-01": 1724.96062079358, - "2030-01-01": 1691.5138662539, - "2029-01-01": 1658.5130684414, - "2028-01-01": 1625.9582273561, - "2027-01-01": 1592.95742954361, - "2026-01-01": 1554.64974667749, - "2025-01-01": 1531.24222132819, - "2024-01-01": 1498.01101253998, - "2023-01-01": 1417, - "2015-01-01": 1417 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1957.58984045324, - "2034-01-01": 1919.68288920372, - "2033-01-01": 1882.24392500667, - "2032-01-01": 1845.74093491455, - "2031-01-01": 1810.17391892735, - "2030-01-01": 1775.07488999262, - "2029-01-01": 1740.44384811035, - "2028-01-01": 1706.28079328054, - "2027-01-01": 1671.64975139827, - "2026-01-01": 1631.44966359169, - "2025-01-01": 1606.88580318632, - "2024-01-01": 1572.01296799361, - "2023-01-01": 1487, - "2015-01-01": 1487 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2044.47681386945, - "2034-01-01": 2004.88737520739, - "2033-01-01": 1965.78669504732, - "2032-01-01": 1927.66353189126, - "2031-01-01": 1890.51788573919, - "2030-01-01": 1853.86099808913, - "2029-01-01": 1817.69286894107, - "2028-01-01": 1782.01349829501, - "2027-01-01": 1745.84536914695, - "2026-01-01": 1703.86101382508, - "2025-01-01": 1678.20689465256, - "2024-01-01": 1641.78624027846, - "2023-01-01": 1553, - "2015-01-01": 1553 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2159.00964246356, - "2034-01-01": 2117.20237948494, - "2033-01-01": 2075.91125555544, - "2032-01-01": 2035.65240972418, - "2031-01-01": 1996.42584199116, - "2030-01-01": 1957.71541330726, - "2029-01-01": 1919.52112367248, - "2028-01-01": 1881.84297308681, - "2027-01-01": 1843.64868345203, - "2026-01-01": 1799.31233913273, - "2025-01-01": 1772.22106067624, - "2024-01-01": 1733.76009919941, - "2023-01-01": 1640, - "2015-01-01": 1640 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2305.1377341181, - "2034-01-01": 2260.50083321837, - "2033-01-01": 2216.41500516926, - "2032-01-01": 2173.43132282137, - "2031-01-01": 2131.54978617471, - "2030-01-01": 2090.21932237867, - "2029-01-01": 2049.43993143323, - "2028-01-01": 2009.21161333842, - "2027-01-01": 1968.43222239299, - "2026-01-01": 1921.09506452525, - "2025-01-01": 1892.17016905127, - "2024-01-01": 1851.10605713303, - "2023-01-01": 1751, - "2015-01-01": 1751 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2439.41760212498, - "2034-01-01": 2392.18049340585, - "2033-01-01": 2345.52655886844, - "2032-01-01": 2300.03897269446, - "2031-01-01": 2255.71773488392, - "2030-01-01": 2211.97967125509, - "2029-01-01": 2168.82478180799, - "2028-01-01": 2126.2530665426, - "2027-01-01": 2083.09817709549, - "2026-01-01": 2033.00351488594, - "2025-01-01": 2002.39367404455, - "2024-01-01": 1958.93747793689, - "2023-01-01": 1853, - "2015-01-01": 1853 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2563.16571577838, - "2034-01-01": 2513.53233710804, - "2033-01-01": 2464.51171619905, - "2032-01-01": 2416.7166108128, - "2031-01-01": 2370.14702094927, - "2030-01-01": 2324.1901888471, - "2029-01-01": 2278.84611450629, - "2028-01-01": 2234.11479792684, - "2027-01-01": 2188.77072358603, - "2026-01-01": 2136.13483188501, - "2025-01-01": 2103.97219825404, - "2024-01-01": 2058.3115324032, - "2023-01-01": 1947, - "2015-01-01": 1947 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2677.69854437248, - "2034-01-01": 2625.84734138559, - "2033-01-01": 2574.63627670718, - "2032-01-01": 2524.70548864573, - "2031-01-01": 2476.05497720124, - "2030-01-01": 2428.04460406522, - "2029-01-01": 2380.67436923769, - "2028-01-01": 2333.94427271864, - "2027-01-01": 2286.57403789111, - "2026-01-01": 2231.58615719267, - "2025-01-01": 2197.98636427772, - "2024-01-01": 2150.28539132414, - "2023-01-01": 2034, - "2015-01-01": 2034 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2797.49725014333, - "2034-01-01": 2743.32625390579, - "2033-01-01": 2689.82403539958, - "2032-01-01": 2637.65937235603, - "2031-01-01": 2586.83226477514, - "2030-01-01": 2536.67393492557, - "2029-01-01": 2487.18438280732, - "2028-01-01": 2438.36360842041, - "2027-01-01": 2388.87405630217, - "2026-01-01": 2331.42604918113, - "2025-01-01": 2296.32302069329, - "2024-01-01": 2246.48793341387, - "2023-01-01": 2125, - "2015-01-01": 2125 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2923.8783023851, - "2034-01-01": 2867.2600517293, - "2033-01-01": 2811.34079182234, - "2032-01-01": 2756.81951341306, - "2031-01-01": 2703.69621650145, - "2030-01-01": 2651.27191033867, - "2029-01-01": 2599.54659492474, - "2028-01-01": 2548.52027025964, - "2027-01-01": 2496.7949548457, - "2026-01-01": 2436.7516495206, - "2025-01-01": 2400.06279009873, - "2024-01-01": 2347.97632946456, - "2023-01-01": 2221, - "2015-01-01": 2221 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3041.04406956757, - "2034-01-01": 2982.15701012818, - "2033-01-01": 2923.99695142261, - "2032-01-01": 2867.29089418468, - "2031-01-01": 2812.03883841438, - "2030-01-01": 2757.51378337791, - "2029-01-01": 2703.71572907526, - "2028-01-01": 2650.64467550642, - "2027-01-01": 2596.84662120377, - "2026-01-01": 2534.39725816866, - "2025-01-01": 2496.23820131836, - "2024-01-01": 2442.0645299699, - "2023-01-01": 2310, - "2015-01-01": 2310 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3152.9439595733, - "2034-01-01": 3091.89006028441, - "2033-01-01": 3031.58991283859, - "2032-01-01": 2972.79726907892, - "2031-01-01": 2915.51212900539, - "2030-01-01": 2858.98074077493, - "2029-01-01": 2803.20310438755, - "2028-01-01": 2748.17921984324, - "2027-01-01": 2692.40158345586, - "2026-01-01": 2627.65430013591, - "2025-01-01": 2588.09112214609, - "2024-01-01": 2531.92404730645, - "2023-01-01": 2395, - "2015-01-01": 2395 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3801.96332160656, - "2034-01-01": 3728.34175119055, - "2033-01-01": 3655.62908905129, - "2032-01-01": 3584.73424346552, - "2031-01-01": 3515.65721443322, - "2030-01-01": 3447.48909367766, - "2029-01-01": 3380.22988119885, - "2028-01-01": 3313.87957699677, - "2027-01-01": 3246.62036451796, - "2026-01-01": 3168.54514354593, - "2025-01-01": 3120.83806294693, - "2024-01-01": 3053.10924785847, - "2023-01-01": 2888, - "2015-01-01": 2888 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 928.110852400492, - "2034-01-01": 910.138827766392, - "2033-01-01": 892.388679979627, - "2032-01-01": 875.082285887531, - "2031-01-01": 858.219645490104, - "2030-01-01": 841.578881940011, - "2029-01-01": 825.159995237253, - "2028-01-01": 808.96298538183, - "2027-01-01": 792.544098679072, - "2026-01-01": 773.484877493033, - "2025-01-01": 761.838931571187, - "2024-01-01": 745.305408497306, - "2023-01-01": 705, - "2015-01-01": 705 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1290.13990830139, - "2034-01-01": 1265.15751944832, - "2033-01-01": 1240.48355514898, - "2032-01-01": 1216.42643995713, - "2031-01-01": 1192.98617387277, - "2030-01-01": 1169.85433234214, - "2029-01-01": 1147.03091536526, - "2028-01-01": 1124.51592294212, - "2027-01-01": 1101.69250596524, - "2026-01-01": 1075.19883679883, - "2025-01-01": 1059.01014601385, - "2024-01-01": 1036.02737635087, - "2023-01-01": 980, - "2015-01-01": 980 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1469.17973231057, - "2034-01-01": 1440.73039969829, - "2033-01-01": 1412.63229341456, - "2032-01-01": 1385.23663978792, - "2031-01-01": 1358.54343881838, - "2030-01-01": 1332.20146417738, - "2029-01-01": 1306.21071586493, - "2028-01-01": 1280.57119388102, - "2027-01-01": 1254.58044556857, - "2026-01-01": 1224.41010394642, - "2025-01-01": 1205.97481933822, - "2024-01-01": 1179.80260408935, - "2023-01-01": 1116, - "2015-01-01": 1116 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1620.57370114185, - "2034-01-01": 1589.19276167437, - "2033-01-01": 1558.19924121265, - "2032-01-01": 1527.98055876248, - "2031-01-01": 1498.53671432386, - "2030-01-01": 1469.480288891, - "2029-01-01": 1440.81128246391, - "2028-01-01": 1412.5296950426, - "2027-01-01": 1383.86068861551, - "2026-01-01": 1350.58139601975, - "2025-01-01": 1330.24641810515, - "2024-01-01": 1301.37724519175, - "2023-01-01": 1231, - "2015-01-01": 1231 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1752.22063056036, - "2034-01-01": 1718.29046774052, - "2033-01-01": 1684.77919581969, - "2032-01-01": 1652.10570569688, - "2031-01-01": 1620.2699973721, - "2030-01-01": 1588.85317994632, - "2029-01-01": 1557.85525341955, - "2028-01-01": 1527.2762177918, - "2027-01-01": 1496.27829126503, - "2026-01-01": 1460.29556304004, - "2025-01-01": 1438.30867790248, - "2024-01-01": 1407.09432441123, - "2023-01-01": 1331, - "2015-01-01": 1331 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1870.70286703702, - "2034-01-01": 1834.47840320006, - "2033-01-01": 1798.70115496603, - "2032-01-01": 1763.81833793785, - "2031-01-01": 1729.82995211551, - "2030-01-01": 1696.28878189611, - "2029-01-01": 1663.19482727963, - "2028-01-01": 1630.54808826607, - "2027-01-01": 1597.45413364959, - "2026-01-01": 1559.0383133583, - "2025-01-01": 1535.56471172008, - "2024-01-01": 1502.23969570875, - "2023-01-01": 1421, - "2015-01-01": 1421 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1977.33687986601, - "2034-01-01": 1939.04754511365, - "2033-01-01": 1901.23091819773, - "2032-01-01": 1864.35970695471, - "2031-01-01": 1828.43391138459, - "2030-01-01": 1792.98082365092, - "2029-01-01": 1758.00044375369, - "2028-01-01": 1723.49277169292, - "2027-01-01": 1688.5123917957, - "2026-01-01": 1647.90678864473, - "2025-01-01": 1623.09514215592, - "2024-01-01": 1587.87052987653, - "2023-01-01": 1502, - "2015-01-01": 1502 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2076.0720769299, - "2034-01-01": 2035.87082466326, - "2033-01-01": 1996.16588415301, - "2032-01-01": 1957.45356715551, - "2031-01-01": 1919.73387367077, - "2030-01-01": 1882.51049194241, - "2029-01-01": 1845.78342197042, - "2028-01-01": 1809.55266375482, - "2027-01-01": 1772.82559378283, - "2026-01-01": 1730.19241390995, - "2025-01-01": 1704.14183700392, - "2024-01-01": 1667.15833929114, - "2023-01-01": 1577, - "2015-01-01": 1577 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2166.90845822867, - "2034-01-01": 2124.94824184891, - "2033-01-01": 2083.50605283187, - "2032-01-01": 2043.09991854025, - "2031-01-01": 2003.72983897406, - "2030-01-01": 1964.87778677058, - "2029-01-01": 1926.54376192981, - "2028-01-01": 1888.72776445176, - "2027-01-01": 1850.393739611, - "2026-01-01": 1805.89518915395, - "2025-01-01": 1778.70479626408, - "2024-01-01": 1740.10312395258, - "2023-01-01": 1646, - "2015-01-01": 1646 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2288.0236332937, - "2034-01-01": 2243.71813142977, - "2033-01-01": 2199.95961107034, - "2032-01-01": 2157.2950537199, - "2031-01-01": 2115.72445937844, - "2030-01-01": 2074.70084654147, - "2029-01-01": 2034.224215209, - "2028-01-01": 1994.29456538102, - "2027-01-01": 1953.81793404855, - "2026-01-01": 1906.83222281261, - "2025-01-01": 1878.12207527762, - "2024-01-01": 1837.36283683449, - "2023-01-01": 1738, - "2015-01-01": 1738 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2443.36701000754, - "2034-01-01": 2396.05342458784, - "2033-01-01": 2349.32395750665, - "2032-01-01": 2303.76272710249, - "2031-01-01": 2259.36973337537, - "2030-01-01": 2215.56085798675, - "2029-01-01": 2172.33610093666, - "2028-01-01": 2129.69546222507, - "2027-01-01": 2086.47070517498, - "2026-01-01": 2036.29493989655, - "2025-01-01": 2005.63554183847, - "2024-01-01": 1962.10899031348, - "2023-01-01": 1856, - "2015-01-01": 1856 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2585.54569377953, - "2034-01-01": 2535.47894713928, - "2033-01-01": 2486.03030848225, - "2032-01-01": 2437.81788579165, - "2031-01-01": 2390.84167906747, - "2030-01-01": 2344.4835803265, - "2029-01-01": 2298.74358956875, - "2028-01-01": 2253.6217067942, - "2027-01-01": 2207.88171603645, - "2026-01-01": 2154.78624027846, - "2025-01-01": 2122.34278241959, - "2024-01-01": 2076.28343587051, - "2023-01-01": 1964, - "2015-01-01": 1964 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2715.87615390385, - "2034-01-01": 2663.28567614478, - "2033-01-01": 2611.34446354322, - "2032-01-01": 2560.7017812567, - "2031-01-01": 2511.35762928523, - "2030-01-01": 2462.66274247127, - "2029-01-01": 2414.61712081483, - "2028-01-01": 2367.22076431591, - "2027-01-01": 2319.17514265947, - "2026-01-01": 2263.40326562855, - "2025-01-01": 2229.32441961895, - "2024-01-01": 2180.94334429779, - "2023-01-01": 2063, - "2015-01-01": 2063 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2836.99132896888, - "2034-01-01": 2782.05556572564, - "2033-01-01": 2727.7980217817, - "2032-01-01": 2674.89691643635, - "2031-01-01": 2623.35224968961, - "2030-01-01": 2572.48580224216, - "2029-01-01": 2522.29757409402, - "2028-01-01": 2472.78756524517, - "2027-01-01": 2422.59933709702, - "2026-01-01": 2364.34029928721, - "2025-01-01": 2328.74169863249, - "2024-01-01": 2278.20305717971, - "2023-01-01": 2155, - "2015-01-01": 2155 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2962.05591191646, - "2034-01-01": 2904.69838648849, - "2033-01-01": 2848.04897865838, - "2032-01-01": 2792.81580602403, - "2031-01-01": 2738.99886858544, - "2030-01-01": 2685.89004874472, - "2029-01-01": 2633.48934650187, - "2028-01-01": 2581.7967618569, - "2027-01-01": 2529.39605961406, - "2026-01-01": 2468.56875795649, - "2025-01-01": 2431.40084543996, - "2024-01-01": 2378.63428243821, - "2023-01-01": 2250, - "2015-01-01": 2250 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3096.33577992334, - "2034-01-01": 3036.37804667596, - "2033-01-01": 2977.16053235756, - "2032-01-01": 2919.42345589712, - "2031-01-01": 2863.16681729464, - "2030-01-01": 2807.65039762114, - "2029-01-01": 2752.87419687662, - "2028-01-01": 2698.83821506108, - "2027-01-01": 2644.06201431656, - "2026-01-01": 2580.47720831718, - "2025-01-01": 2541.62435043324, - "2024-01-01": 2486.46570324208, - "2023-01-01": 2352, - "2015-01-01": 2352 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3221.40036287093, - "2034-01-01": 3159.02086743881, - "2033-01-01": 3097.41148923425, - "2032-01-01": 3037.34234548481, - "2031-01-01": 2978.81343619047, - "2030-01-01": 2921.0546441237, - "2029-01-01": 2864.06596928448, - "2028-01-01": 2807.84741167282, - "2027-01-01": 2750.8587368336, - "2026-01-01": 2684.70566698646, - "2025-01-01": 2644.2834972407, - "2024-01-01": 2586.89692850058, - "2023-01-01": 2447, - "2015-01-01": 2447 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3338.5661300534, - "2034-01-01": 3273.91782583769, - "2033-01-01": 3210.06764883452, - "2032-01-01": 3147.81372625642, - "2031-01-01": 3087.15605810341, - "2030-01-01": 3027.29651716293, - "2029-01-01": 2968.235103435, - "2028-01-01": 2909.9718169196, - "2027-01-01": 2850.91040319167, - "2026-01-01": 2782.35127563451, - "2025-01-01": 2740.45890846033, - "2024-01-01": 2680.98512900591, - "2023-01-01": 2536, - "2015-01-01": 2536 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 4023.13016302965, - "2034-01-01": 3945.22589738169, - "2033-01-01": 3868.28341279112, - "2032-01-01": 3793.26449031531, - "2031-01-01": 3720.16912995427, - "2030-01-01": 3648.0355506506, - "2029-01-01": 3576.86375240432, - "2028-01-01": 3506.65373521542, - "2027-01-01": 3435.48193696914, - "2026-01-01": 3352.86494414001, - "2025-01-01": 3302.38265940645, - "2024-01-01": 3230.71394094719, - "2023-01-01": 3056, - "2015-01-01": 3056 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 566.081796499591, - "2034-01-01": 555.120136084466, - "2033-01-01": 544.293804810269, - "2032-01-01": 533.738131817927, - "2031-01-01": 523.453117107439, - "2030-01-01": 513.303431537879, - "2029-01-01": 503.289075109247, - "2028-01-01": 493.410047821542, - "2027-01-01": 483.395691392909, - "2026-01-01": 471.77091818724, - "2025-01-01": 464.667717128525, - "2024-01-01": 454.583440643747, - "2023-01-01": 430, - "2015-01-01": 430 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 804.362738747093, - "2034-01-01": 788.786984064207, - "2033-01-01": 773.40352264901, - "2032-01-01": 758.404647769193, - "2031-01-01": 743.790359424757, - "2030-01-01": 729.36836434801, - "2029-01-01": 715.138662538953, - "2028-01-01": 701.101253997586, - "2027-01-01": 686.871552188529, - "2026-01-01": 670.353560493962, - "2025-01-01": 660.260407361696, - "2024-01-01": 645.931354030999, - "2023-01-01": 611, - "2015-01-01": 611 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 922.844975223752, - "2034-01-01": 904.974919523746, - "2033-01-01": 887.325481795345, - "2032-01-01": 870.117280010155, - "2031-01-01": 853.350314168174, - "2030-01-01": 836.803966297799, - "2029-01-01": 820.478236399028, - "2028-01-01": 804.373124471862, - "2027-01-01": 788.047394573092, - "2026-01-01": 769.096310812221, - "2025-01-01": 757.516441179294, - "2024-01-01": 741.076725328527, - "2023-01-01": 701, - "2015-01-01": 701 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1024.213110876, - "2034-01-01": 1004.38015319469, - "2033-01-01": 984.792046842765, - "2032-01-01": 965.693643149644, - "2031-01-01": 947.08494211532, - "2030-01-01": 928.721092410396, - "2029-01-01": 910.602094034869, - "2028-01-01": 892.727946988743, - "2027-01-01": 874.608948613217, - "2026-01-01": 853.576219417843, - "2025-01-01": 840.724381223239, - "2024-01-01": 822.478876327524, - "2023-01-01": 778, - "2015-01-01": 778 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1112.41655358641, - "2034-01-01": 1090.87561625901, - "2033-01-01": 1069.60061642948, - "2032-01-01": 1048.85749159569, - "2031-01-01": 1028.64624175764, - "2030-01-01": 1008.70092941746, - "2029-01-01": 989.021554575147, - "2028-01-01": 969.608117230704, - "2027-01-01": 949.928742388391, - "2026-01-01": 927.084711321437, - "2025-01-01": 913.126095287451, - "2024-01-01": 893.309319404573, - "2023-01-01": 845, - "2015-01-01": 845 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1191.40471123751, - "2034-01-01": 1168.3342398987, - "2033-01-01": 1145.54858919371, - "2032-01-01": 1123.33257975633, - "2031-01-01": 1101.68621158659, - "2030-01-01": 1080.32466405065, - "2029-01-01": 1059.24793714853, - "2028-01-01": 1038.45603088022, - "2027-01-01": 1017.3793039781, - "2026-01-01": 992.91321153361, - "2025-01-01": 977.96345116585, - "2024-01-01": 956.739566936258, - "2023-01-01": 905, - "2015-01-01": 905 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1262.49405312351, - "2034-01-01": 1238.04700117443, - "2033-01-01": 1213.90176468151, - "2032-01-01": 1190.36015910091, - "2031-01-01": 1167.42218443264, - "2030-01-01": 1144.78602522053, - "2029-01-01": 1122.45168146458, - "2028-01-01": 1100.41915316479, - "2027-01-01": 1078.08480940884, - "2026-01-01": 1052.15886172457, - "2025-01-01": 1036.31707145641, - "2024-01-01": 1013.82678971478, - "2023-01-01": 959, - "2015-01-01": 959 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1329.63398712695, - "2034-01-01": 1303.88683126816, - "2033-01-01": 1278.4575415311, - "2032-01-01": 1253.66398403746, - "2031-01-01": 1229.50615878724, - "2030-01-01": 1205.66619965874, - "2029-01-01": 1182.14410665195, - "2028-01-01": 1158.93987976688, - "2027-01-01": 1135.41778676009, - "2026-01-01": 1108.11308690491, - "2025-01-01": 1091.42882395305, - "2024-01-01": 1067.74250011671, - "2023-01-01": 1010, - "2015-01-01": 1010 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1391.50804395365, - "2034-01-01": 1364.56275311926, - "2033-01-01": 1337.95012019641, - "2032-01-01": 1312.00280309662, - "2031-01-01": 1286.72080181991, - "2030-01-01": 1261.77145845474, - "2029-01-01": 1237.1547730011, - "2028-01-01": 1212.870745459, - "2027-01-01": 1188.25406000536, - "2026-01-01": 1159.67874540445, - "2025-01-01": 1142.21808605779, - "2024-01-01": 1117.42952734986, - "2023-01-01": 1057, - "2015-01-01": 1057 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1473.12914019312, - "2034-01-01": 1444.60333088027, - "2033-01-01": 1416.42969205277, - "2032-01-01": 1388.96039419595, - "2031-01-01": 1362.19543730982, - "2030-01-01": 1335.78265090904, - "2029-01-01": 1309.7220349936, - "2028-01-01": 1284.0135895635, - "2027-01-01": 1257.95297364806, - "2026-01-01": 1227.70152895703, - "2025-01-01": 1209.21668713214, - "2024-01-01": 1182.97411646594, - "2023-01-01": 1119, - "2015-01-01": 1119 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1577.13021443374, - "2034-01-01": 1546.59051867254, - "2033-01-01": 1516.42785619233, - "2032-01-01": 1487.01926027413, - "2031-01-01": 1458.36473091794, - "2030-01-01": 1430.08723484274, - "2029-01-01": 1402.18677204855, - "2028-01-01": 1374.66334253536, - "2027-01-01": 1346.76287974117, - "2026-01-01": 1314.37572090305, - "2025-01-01": 1294.58587237203, - "2024-01-01": 1266.49060904932, - "2023-01-01": 1198, - "2015-01-01": 1198 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1674.54894220344, - "2034-01-01": 1642.12282116149, - "2033-01-01": 1610.09702260154, - "2032-01-01": 1578.87186900559, - "2031-01-01": 1548.44736037363, - "2030-01-01": 1518.42317422368, - "2029-01-01": 1488.79931055572, - "2028-01-01": 1459.57576936977, - "2027-01-01": 1429.95190570182, - "2026-01-01": 1395.56420449807, - "2025-01-01": 1374.55194462206, - "2024-01-01": 1344.72124767174, - "2023-01-01": 1272, - "2015-01-01": 1272 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1762.75238491384, - "2034-01-01": 1728.61828422581, - "2033-01-01": 1694.90559218826, - "2032-01-01": 1662.03571745164, - "2031-01-01": 1630.00866001596, - "2030-01-01": 1598.40301123075, - "2029-01-01": 1567.218771096, - "2028-01-01": 1536.45593961173, - "2027-01-01": 1505.27169947699, - "2026-01-01": 1469.07269640166, - "2025-01-01": 1446.95365868627, - "2024-01-01": 1415.55169074878, - "2023-01-01": 1339, - "2015-01-01": 1339 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1845.6899504475, - "2034-01-01": 1809.94983904749, - "2033-01-01": 1774.65096359069, - "2032-01-01": 1740.23456002031, - "2031-01-01": 1706.70062833635, - "2030-01-01": 1673.6079325956, - "2029-01-01": 1640.95647279806, - "2028-01-01": 1608.74624894372, - "2027-01-01": 1576.09478914618, - "2026-01-01": 1538.19262162444, - "2025-01-01": 1515.03288235859, - "2024-01-01": 1482.15345065705, - "2023-01-01": 1402, - "2015-01-01": 1402 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1931.26045456953, - "2034-01-01": 1893.86334799049, - "2033-01-01": 1856.92793408527, - "2032-01-01": 1820.91590552767, - "2031-01-01": 1785.82726231771, - "2030-01-01": 1751.20031178156, - "2029-01-01": 1717.03505391922, - "2028-01-01": 1683.3314887307, - "2027-01-01": 1649.16623086837, - "2026-01-01": 1609.50683018763, - "2025-01-01": 1585.27335122685, - "2024-01-01": 1550.86955214971, - "2023-01-01": 1467, - "2015-01-01": 1467 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2022.09683586831, - "2034-01-01": 1982.94076517614, - "2033-01-01": 1944.26810276412, - "2032-01-01": 1906.56225691241, - "2031-01-01": 1869.82322762099, - "2030-01-01": 1833.56760660973, - "2029-01-01": 1797.79539387861, - "2028-01-01": 1762.50658942765, - "2027-01-01": 1726.73437669653, - "2026-01-01": 1685.20960543163, - "2025-01-01": 1659.83631048701, - "2024-01-01": 1623.81433681115, - "2023-01-01": 1536, - "2015-01-01": 1536 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2107.66733999034, - "2034-01-01": 2066.85427411914, - "2033-01-01": 2026.5450732587, - "2032-01-01": 1987.24360241977, - "2031-01-01": 1948.94986160235, - "2030-01-01": 1911.15998579569, - "2029-01-01": 1873.87397499978, - "2028-01-01": 1837.09182921462, - "2027-01-01": 1799.80581841872, - "2026-01-01": 1756.52381399482, - "2025-01-01": 1730.07677935528, - "2024-01-01": 1692.53043830381, - "2023-01-01": 1601, - "2015-01-01": 1601 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2187.97196693563, - "2034-01-01": 2145.60387481949, - "2033-01-01": 2103.75884556899, - "2032-01-01": 2062.95994204975, - "2031-01-01": 2023.20716426178, - "2030-01-01": 1983.97744933943, - "2029-01-01": 1945.27079728272, - "2028-01-01": 1907.08720809163, - "2027-01-01": 1868.38055603492, - "2026-01-01": 1823.44945587719, - "2025-01-01": 1795.99475783165, - "2024-01-01": 1757.01785662769, - "2023-01-01": 1662, - "2015-01-01": 1662 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2657.95150495971, - "2034-01-01": 2606.48268547567, - "2033-01-01": 2555.64928351612, - "2032-01-01": 2506.08671660557, - "2031-01-01": 2457.794984744, - "2030-01-01": 2410.13867040693, - "2029-01-01": 2363.11777359435, - "2028-01-01": 2316.73229430626, - "2027-01-01": 2269.71139749368, - "2026-01-01": 2215.12903213962, - "2025-01-01": 2181.77702530812, - "2024-01-01": 2134.42782944122, - "2023-01-01": 2019, - "2015-01-01": 2019 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 643.753484856512, - "2034-01-01": 631.287782663498, - "2033-01-01": 618.975978028422, - "2032-01-01": 606.971968509223, - "2031-01-01": 595.275754105902, - "2030-01-01": 583.733437260519, - "2029-01-01": 572.345017973074, - "2028-01-01": 561.110496243567, - "2027-01-01": 549.722076956122, - "2026-01-01": 536.50227672921, - "2025-01-01": 528.424450408951, - "2024-01-01": 516.956517383238, - "2023-01-01": 489, - "2015-01-01": 489 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 912.313220870271, - "2034-01-01": 894.647103038454, - "2033-01-01": 877.199085426782, - "2032-01-01": 860.187268255403, - "2031-01-01": 843.611651524315, - "2030-01-01": 827.254135013373, - "2029-01-01": 811.114718722577, - "2028-01-01": 795.193402651926, - "2027-01-01": 779.053986361131, - "2026-01-01": 760.319177450598, - "2025-01-01": 748.871460395507, - "2024-01-01": 732.619358990969, - "2023-01-01": 693, - "2015-01-01": 693 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1047.90955817134, - "2034-01-01": 1027.61774028659, - "2033-01-01": 1007.57643867203, - "2032-01-01": 988.036169597836, - "2031-01-01": 968.996933064004, - "2030-01-01": 950.208212800353, - "2029-01-01": 931.670008806884, - "2028-01-01": 913.382321083598, - "2027-01-01": 894.84411709013, - "2026-01-01": 873.324769481495, - "2025-01-01": 860.175587986759, - "2024-01-01": 841.507950587029, - "2023-01-01": 796, - "2015-01-01": 796 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1161.12591747125, - "2034-01-01": 1138.64176750349, - "2033-01-01": 1116.43519963409, - "2032-01-01": 1094.78379596142, - "2031-01-01": 1073.68755648549, - "2030-01-01": 1052.86889910793, - "2029-01-01": 1032.32782382873, - "2028-01-01": 1012.06433064791, - "2027-01-01": 991.523255368712, - "2026-01-01": 967.678953118943, - "2025-01-01": 953.109131412464, - "2024-01-01": 932.424638715779, - "2023-01-01": 882, - "2015-01-01": 882 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1261.17758382932, - "2034-01-01": 1236.75602411376, - "2033-01-01": 1212.63596513544, - "2032-01-01": 1189.11890763157, - "2031-01-01": 1166.20485160216, - "2030-01-01": 1143.59229630997, - "2029-01-01": 1121.28124175502, - "2028-01-01": 1099.2716879373, - "2027-01-01": 1076.96063338234, - "2026-01-01": 1051.06172005436, - "2025-01-01": 1035.23644885844, - "2024-01-01": 1012.76961892258, - "2023-01-01": 958, - "2015-01-01": 958 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1350.69749583391, - "2034-01-01": 1324.54246423875, - "2033-01-01": 1298.71033426822, - "2032-01-01": 1273.52400754696, - "2031-01-01": 1248.98348407496, - "2030-01-01": 1224.76586222759, - "2029-01-01": 1200.87114200485, - "2028-01-01": 1177.29932340675, - "2027-01-01": 1153.40460318401, - "2026-01-01": 1125.66735362816, - "2025-01-01": 1108.71878552062, - "2024-01-01": 1084.65723279182, - "2023-01-01": 1026, - "2015-01-01": 1026 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1432.31859207338, - "2034-01-01": 1404.58304199977, - "2033-01-01": 1377.18990612459, - "2032-01-01": 1350.48159864629, - "2031-01-01": 1324.45811956487, - "2030-01-01": 1298.77705468189, - "2029-01-01": 1273.43840399735, - "2028-01-01": 1248.44216751125, - "2027-01-01": 1223.10351682671, - "2026-01-01": 1193.69013718074, - "2025-01-01": 1175.71738659497, - "2024-01-01": 1150.2018219079, - "2023-01-01": 1088, - "2015-01-01": 1088 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1507.35734184193, - "2034-01-01": 1478.16873445747, - "2033-01-01": 1449.3404802506, - "2032-01-01": 1421.2329323989, - "2031-01-01": 1393.84609090237, - "2030-01-01": 1366.81960258342, - "2029-01-01": 1340.15346744206, - "2028-01-01": 1313.84768547829, - "2027-01-01": 1287.18155033693, - "2026-01-01": 1256.2272123823, - "2025-01-01": 1237.31287467945, - "2024-01-01": 1210.460557063, - "2023-01-01": 1145, - "2015-01-01": 1145 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1577.13021443374, - "2034-01-01": 1546.59051867254, - "2033-01-01": 1516.42785619233, - "2032-01-01": 1487.01926027413, - "2031-01-01": 1458.36473091794, - "2030-01-01": 1430.08723484274, - "2029-01-01": 1402.18677204855, - "2028-01-01": 1374.66334253536, - "2027-01-01": 1346.76287974117, - "2026-01-01": 1314.37572090305, - "2025-01-01": 1294.58587237203, - "2024-01-01": 1266.49060904932, - "2023-01-01": 1198, - "2015-01-01": 1198 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1669.2830650267, - "2034-01-01": 1636.95891291884, - "2033-01-01": 1605.03382441726, - "2032-01-01": 1573.90686312821, - "2031-01-01": 1543.5780290517, - "2030-01-01": 1513.64825858147, - "2029-01-01": 1484.1175517175, - "2028-01-01": 1454.9859084598, - "2027-01-01": 1425.45520159583, - "2026-01-01": 1391.17563781726, - "2025-01-01": 1370.22945423016, - "2024-01-01": 1340.49256450296, - "2023-01-01": 1268, - "2015-01-01": 1268 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1787.76530150336, - "2034-01-01": 1753.14684837838, - "2033-01-01": 1718.95578356359, - "2032-01-01": 1685.61949536917, - "2031-01-01": 1653.13798379512, - "2030-01-01": 1621.08386053126, - "2029-01-01": 1589.45712557757, - "2028-01-01": 1558.25777893408, - "2027-01-01": 1526.6310439804, - "2026-01-01": 1489.91838813552, - "2025-01-01": 1467.48548804776, - "2024-01-01": 1435.63793580048, - "2023-01-01": 1358, - "2015-01-01": 1358 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1897.03225292072, - "2034-01-01": 1860.29794441329, - "2033-01-01": 1824.01714588744, - "2032-01-01": 1788.64336732473, - "2031-01-01": 1754.17660872516, - "2030-01-01": 1720.16336010717, - "2029-01-01": 1686.60362147075, - "2028-01-01": 1653.49739281591, - "2027-01-01": 1619.93765417949, - "2026-01-01": 1580.98114676236, - "2025-01-01": 1557.17716367955, - "2024-01-01": 1523.38311155265, - "2023-01-01": 1441, - "2015-01-01": 1441 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1997.08391927879, - "2034-01-01": 1958.41220102357, - "2033-01-01": 1920.21791138879, - "2032-01-01": 1882.97847899487, - "2031-01-01": 1846.69390384183, - "2030-01-01": 1810.88675730922, - "2029-01-01": 1775.55703939704, - "2028-01-01": 1740.7047501053, - "2027-01-01": 1705.37503219312, - "2026-01-01": 1664.36391369777, - "2025-01-01": 1639.30448112552, - "2024-01-01": 1603.72809175945, - "2023-01-01": 1517, - "2015-01-01": 1517 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2090.55323916593, - "2034-01-01": 2050.07157233054, - "2033-01-01": 2010.08967915978, - "2032-01-01": 1971.1073333183, - "2031-01-01": 1933.12453480608, - "2030-01-01": 1895.64150995849, - "2029-01-01": 1858.65825877554, - "2028-01-01": 1822.17478125723, - "2027-01-01": 1785.19153007428, - "2026-01-01": 1742.26097228218, - "2025-01-01": 1716.02868558162, - "2024-01-01": 1678.78721800528, - "2023-01-01": 1588, - "2015-01-01": 1588 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2186.65549764144, - "2034-01-01": 2144.31289775883, - "2033-01-01": 2102.49304602292, - "2032-01-01": 2061.71869058041, - "2031-01-01": 2021.98983143129, - "2030-01-01": 1982.78372042888, - "2029-01-01": 1944.10035757316, - "2028-01-01": 1905.93974286414, - "2027-01-01": 1867.25638000842, - "2026-01-01": 1822.35231420699, - "2025-01-01": 1794.91413523368, - "2024-01-01": 1755.9606858355, - "2023-01-01": 1661, - "2015-01-01": 1661 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2289.34010258788, - "2034-01-01": 2245.00910849043, - "2033-01-01": 2201.22541061641, - "2032-01-01": 2158.53630518924, - "2031-01-01": 2116.94179220892, - "2030-01-01": 2075.89457545203, - "2029-01-01": 2035.39465491856, - "2028-01-01": 1995.44203060851, - "2027-01-01": 1954.94211007504, - "2026-01-01": 1907.92936448281, - "2025-01-01": 1879.20269787559, - "2024-01-01": 1838.42000762669, - "2023-01-01": 1739, - "2015-01-01": 1739 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2386.75883035758, - "2034-01-01": 2340.54141097939, - "2033-01-01": 2294.89457702562, - "2032-01-01": 2250.3889139207, - "2031-01-01": 2207.02442166462, - "2030-01-01": 2164.23051483297, - "2029-01-01": 2122.00719342573, - "2028-01-01": 2080.35445744292, - "2027-01-01": 2038.13113603568, - "2026-01-01": 1989.11784807783, - "2025-01-01": 1959.16877012562, - "2024-01-01": 1916.6506462491, - "2023-01-01": 1813, - "2015-01-01": 1813 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2477.59521165635, - "2034-01-01": 2429.61882816504, - "2033-01-01": 2382.23474570448, - "2032-01-01": 2336.03526530544, - "2031-01-01": 2291.02038696791, - "2030-01-01": 2246.59780966114, - "2029-01-01": 2202.76753338512, - "2028-01-01": 2159.52955813986, - "2027-01-01": 2115.69928186385, - "2026-01-01": 2064.82062332183, - "2025-01-01": 2033.73172938578, - "2024-01-01": 1989.59543091054, - "2023-01-01": 1882, - "2015-01-01": 1882 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3008.13233721294, - "2034-01-01": 2949.88258361164, - "2033-01-01": 2892.35196277085, - "2032-01-01": 2836.25960745107, - "2031-01-01": 2781.60551765232, - "2030-01-01": 2727.67056061408, - "2029-01-01": 2674.45473633635, - "2028-01-01": 2621.95804481912, - "2027-01-01": 2568.74222054139, - "2026-01-01": 2506.96871641359, - "2025-01-01": 2469.22263636902, - "2024-01-01": 2415.63526016503, - "2023-01-01": 2285, - "2015-01-01": 2285 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 693.779318035545, - "2034-01-01": 680.344910968636, - "2033-01-01": 667.076360779097, - "2032-01-01": 654.139524344296, - "2031-01-01": 641.534401664234, - "2030-01-01": 629.09513586154, - "2029-01-01": 616.821726936216, - "2028-01-01": 604.714174888262, - "2027-01-01": 592.440765962938, - "2026-01-01": 578.19366019692, - "2025-01-01": 569.488109131937, - "2024-01-01": 557.129007486639, - "2023-01-01": 527, - "2015-01-01": 527 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 983.402562756266, - "2034-01-01": 964.359864314177, - "2033-01-01": 945.552260914583, - "2032-01-01": 927.214847599979, - "2031-01-01": 909.347624370365, - "2030-01-01": 891.715496183246, - "2029-01-01": 874.318463038621, - "2028-01-01": 857.156524936492, - "2027-01-01": 839.759491791868, - "2026-01-01": 819.564827641554, - "2025-01-01": 807.225080686066, - "2024-01-01": 789.706581769486, - "2023-01-01": 747, - "2015-01-01": 747 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1128.21418511663, - "2034-01-01": 1106.36734098695, - "2033-01-01": 1084.79021098233, - "2032-01-01": 1063.75250922782, - "2031-01-01": 1043.25423572343, - "2030-01-01": 1023.0256763441, - "2029-01-01": 1003.06683108982, - "2028-01-01": 983.377699960607, - "2027-01-01": 963.418854706333, - "2026-01-01": 940.250411363871, - "2025-01-01": 926.093566463131, - "2024-01-01": 905.99536891091, - "2023-01-01": 857, - "2015-01-01": 857 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1250.64582947584, - "2034-01-01": 1226.42820762847, - "2033-01-01": 1202.50956876687, - "2032-01-01": 1179.18889587681, - "2031-01-01": 1156.4661889583, - "2030-01-01": 1134.04246502555, - "2029-01-01": 1111.91772407857, - "2028-01-01": 1090.09196611736, - "2027-01-01": 1067.96722517038, - "2026-01-01": 1042.28458669274, - "2025-01-01": 1026.59146807465, - "2024-01-01": 1004.31225258502, - "2023-01-01": 950, - "2015-01-01": 950 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1358.59631159902, - "2034-01-01": 1332.28832660272, - "2033-01-01": 1306.30513154465, - "2032-01-01": 1280.97151636302, - "2031-01-01": 1256.28748105785, - "2030-01-01": 1231.92823569091, - "2029-01-01": 1207.89378026219, - "2028-01-01": 1184.1841147717, - "2027-01-01": 1160.14965934298, - "2026-01-01": 1132.25020364938, - "2025-01-01": 1115.20252110846, - "2024-01-01": 1091.00025754499, - "2023-01-01": 1032, - "2015-01-01": 1032 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1454.69857007453, - "2034-01-01": 1426.52965203101, - "2033-01-01": 1398.70849840778, - "2032-01-01": 1371.58287362514, - "2031-01-01": 1345.15277768307, - "2030-01-01": 1319.07044616129, - "2029-01-01": 1293.33587905981, - "2028-01-01": 1267.94907637861, - "2027-01-01": 1242.21450927713, - "2026-01-01": 1212.34154557419, - "2025-01-01": 1194.08797076051, - "2024-01-01": 1168.17372537521, - "2023-01-01": 1105, - "2015-01-01": 1105 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1541.58554349075, - "2034-01-01": 1511.73413803467, - "2033-01-01": 1482.25126844843, - "2032-01-01": 1453.50547060184, - "2031-01-01": 1425.49674449491, - "2030-01-01": 1397.85655425781, - "2029-01-01": 1370.58489989053, - "2028-01-01": 1343.68178139308, - "2027-01-01": 1316.41012702581, - "2026-01-01": 1284.75289580758, - "2025-01-01": 1265.40906222675, - "2024-01-01": 1237.94699766006, - "2023-01-01": 1171, - "2015-01-01": 1171 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1621.89017043604, - "2034-01-01": 1590.48373873503, - "2033-01-01": 1559.46504075872, - "2032-01-01": 1529.22181023183, - "2031-01-01": 1499.75404715434, - "2030-01-01": 1470.67401780155, - "2029-01-01": 1441.98172217347, - "2028-01-01": 1413.67716027009, - "2027-01-01": 1384.98486464201, - "2026-01-01": 1351.67853768995, - "2025-01-01": 1331.32704070312, - "2024-01-01": 1302.43441598394, - "2023-01-01": 1232, - "2015-01-01": 1232 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1696.92892020459, - "2034-01-01": 1664.06943119274, - "2033-01-01": 1631.61561488474, - "2032-01-01": 1599.97314398444, - "2031-01-01": 1569.14201849184, - "2030-01-01": 1538.71656570308, - "2029-01-01": 1508.69678561818, - "2028-01-01": 1479.08267823713, - "2027-01-01": 1449.06289815223, - "2026-01-01": 1414.21561289152, - "2025-01-01": 1392.9225287876, - "2024-01-01": 1362.69315113905, - "2023-01-01": 1289, - "2015-01-01": 1289 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1796.98058656266, - "2034-01-01": 1762.18368780301, - "2033-01-01": 1727.81638038609, - "2032-01-01": 1694.30825565458, - "2031-01-01": 1661.6593136085, - "2030-01-01": 1629.43996290513, - "2029-01-01": 1597.65020354447, - "2028-01-01": 1566.29003552652, - "2027-01-01": 1534.50027616586, - "2026-01-01": 1497.59837982694, - "2025-01-01": 1475.04984623358, - "2024-01-01": 1443.03813134585, - "2023-01-01": 1365, - "2015-01-01": 1365 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1923.36163880442, - "2034-01-01": 1886.11748562652, - "2033-01-01": 1849.33313680884, - "2032-01-01": 1813.46839671161, - "2031-01-01": 1778.52326533481, - "2030-01-01": 1744.03793831824, - "2029-01-01": 1710.01241566188, - "2028-01-01": 1676.44669736575, - "2027-01-01": 1642.4211747094, - "2026-01-01": 1602.92398016641, - "2025-01-01": 1578.78961563901, - "2024-01-01": 1544.52652739655, - "2023-01-01": 1461, - "2015-01-01": 1461 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2041.84387528108, - "2034-01-01": 2002.30542108606, - "2033-01-01": 1963.25509595518, - "2032-01-01": 1925.18102895257, - "2031-01-01": 1888.08322007823, - "2030-01-01": 1851.47354026803, - "2029-01-01": 1815.35198952196, - "2028-01-01": 1779.71856784003, - "2027-01-01": 1743.59701709396, - "2026-01-01": 1701.66673048467, - "2025-01-01": 1676.04564945661, - "2024-01-01": 1639.67189869407, - "2023-01-01": 1551, - "2015-01-01": 1551 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2148.47788811008, - "2034-01-01": 2106.87456299965, - "2033-01-01": 2065.78485918688, - "2032-01-01": 2025.72239796943, - "2031-01-01": 1986.6871793473, - "2030-01-01": 1948.16558202283, - "2029-01-01": 1910.15760599602, - "2028-01-01": 1872.66325126687, - "2027-01-01": 1834.65527524006, - "2026-01-01": 1790.53520577111, - "2025-01-01": 1763.57607989245, - "2024-01-01": 1725.30273286185, - "2023-01-01": 1632, - "2015-01-01": 1632 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2249.84602376233, - "2034-01-01": 2206.27979667059, - "2033-01-01": 2163.2514242343, - "2032-01-01": 2121.29876110892, - "2031-01-01": 2080.42180729445, - "2030-01-01": 2040.08270813543, - "2029-01-01": 2000.28146363187, - "2028-01-01": 1961.01807378376, - "2027-01-01": 1921.21682928019, - "2026-01-01": 1875.01511437673, - "2025-01-01": 1846.7840199364, - "2024-01-01": 1806.70488386085, - "2023-01-01": 1709, - "2015-01-01": 1709 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2352.53062870877, - "2034-01-01": 2306.97600740219, - "2033-01-01": 2261.98378882779, - "2032-01-01": 2218.11637571776, - "2031-01-01": 2175.37376807208, - "2030-01-01": 2133.19356315858, - "2029-01-01": 2091.57576097726, - "2028-01-01": 2050.52036152813, - "2027-01-01": 2008.90255934681, - "2026-01-01": 1960.59216465255, - "2025-01-01": 1931.07258257831, - "2024-01-01": 1889.16420565204, - "2023-01-01": 1787, - "2015-01-01": 1787 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2463.11404942031, - "2034-01-01": 2415.41808049776, - "2033-01-01": 2368.3109506977, - "2032-01-01": 2322.38149914265, - "2031-01-01": 2277.6297258326, - "2030-01-01": 2233.46679164505, - "2029-01-01": 2189.89269658, - "2028-01-01": 2146.90744063745, - "2027-01-01": 2103.3333455724, - "2026-01-01": 2052.7520649496, - "2025-01-01": 2021.84488080807, - "2024-01-01": 1977.9665521964, - "2023-01-01": 1871, - "2015-01-01": 1871 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2567.11512366094, - "2034-01-01": 2517.40526829002, - "2033-01-01": 2468.30911483727, - "2032-01-01": 2420.44036522083, - "2031-01-01": 2373.79901944071, - "2030-01-01": 2327.77137557876, - "2029-01-01": 2282.35743363496, - "2028-01-01": 2237.55719360932, - "2027-01-01": 2192.14325166552, - "2026-01-01": 2139.42625689562, - "2025-01-01": 2107.21406604796, - "2024-01-01": 2061.48304477978, - "2023-01-01": 1950, - "2015-01-01": 1950 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2664.53385143063, - "2034-01-01": 2612.93757077898, - "2033-01-01": 2561.97828124647, - "2032-01-01": 2512.29297395229, - "2031-01-01": 2463.88164889641, - "2030-01-01": 2416.10731495969, - "2029-01-01": 2368.96997214213, - "2028-01-01": 2322.46962044372, - "2027-01-01": 2275.33227762616, - "2026-01-01": 2220.61474049064, - "2025-01-01": 2187.18013829799, - "2024-01-01": 2139.7136834022, - "2023-01-01": 2024, - "2015-01-01": 2024 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.IA.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3234.56505581278, - "2034-01-01": 3171.93063804543, - "2033-01-01": 3110.06948469495, - "2032-01-01": 3049.75486017825, - "2031-01-01": 2990.9867644953, - "2030-01-01": 2932.99193322923, - "2029-01-01": 2875.77036638004, - "2028-01-01": 2819.32206394774, - "2027-01-01": 2762.10049709855, - "2026-01-01": 2695.67708368849, - "2025-01-01": 2655.08972322044, - "2024-01-01": 2597.46863642253, - "2023-01-01": 2457, - "2015-01-01": 2457 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS", - "description": null, - "label": "KS", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 566.081796499591, - "2034-01-01": 555.120136084466, - "2033-01-01": 544.293804810269, - "2032-01-01": 533.738131817927, - "2031-01-01": 523.453117107439, - "2030-01-01": 513.303431537879, - "2029-01-01": 503.289075109247, - "2028-01-01": 493.410047821542, - "2027-01-01": 483.395691392909, - "2026-01-01": 471.77091818724, - "2025-01-01": 464.667717128525, - "2024-01-01": 454.583440643747, - "2023-01-01": 430, - "2015-01-01": 430 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 804.362738747093, - "2034-01-01": 788.786984064207, - "2033-01-01": 773.40352264901, - "2032-01-01": 758.404647769193, - "2031-01-01": 743.790359424757, - "2030-01-01": 729.36836434801, - "2029-01-01": 715.138662538953, - "2028-01-01": 701.101253997586, - "2027-01-01": 686.871552188529, - "2026-01-01": 670.353560493962, - "2025-01-01": 660.260407361696, - "2024-01-01": 645.931354030999, - "2023-01-01": 611, - "2015-01-01": 611 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 922.844975223752, - "2034-01-01": 904.974919523746, - "2033-01-01": 887.325481795345, - "2032-01-01": 870.117280010155, - "2031-01-01": 853.350314168174, - "2030-01-01": 836.803966297799, - "2029-01-01": 820.478236399028, - "2028-01-01": 804.373124471862, - "2027-01-01": 788.047394573092, - "2026-01-01": 769.096310812221, - "2025-01-01": 757.516441179294, - "2024-01-01": 741.076725328527, - "2023-01-01": 701, - "2015-01-01": 701 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1024.213110876, - "2034-01-01": 1004.38015319469, - "2033-01-01": 984.792046842765, - "2032-01-01": 965.693643149644, - "2031-01-01": 947.08494211532, - "2030-01-01": 928.721092410396, - "2029-01-01": 910.602094034869, - "2028-01-01": 892.727946988743, - "2027-01-01": 874.608948613217, - "2026-01-01": 853.576219417843, - "2025-01-01": 840.724381223239, - "2024-01-01": 822.478876327524, - "2023-01-01": 778, - "2015-01-01": 778 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1112.41655358641, - "2034-01-01": 1090.87561625901, - "2033-01-01": 1069.60061642948, - "2032-01-01": 1048.85749159569, - "2031-01-01": 1028.64624175764, - "2030-01-01": 1008.70092941746, - "2029-01-01": 989.021554575147, - "2028-01-01": 969.608117230704, - "2027-01-01": 949.928742388391, - "2026-01-01": 927.084711321437, - "2025-01-01": 913.126095287451, - "2024-01-01": 893.309319404573, - "2023-01-01": 845, - "2015-01-01": 845 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1191.40471123751, - "2034-01-01": 1168.3342398987, - "2033-01-01": 1145.54858919371, - "2032-01-01": 1123.33257975633, - "2031-01-01": 1101.68621158659, - "2030-01-01": 1080.32466405065, - "2029-01-01": 1059.24793714853, - "2028-01-01": 1038.45603088022, - "2027-01-01": 1017.3793039781, - "2026-01-01": 992.91321153361, - "2025-01-01": 977.96345116585, - "2024-01-01": 956.739566936258, - "2023-01-01": 905, - "2015-01-01": 905 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1262.49405312351, - "2034-01-01": 1238.04700117443, - "2033-01-01": 1213.90176468151, - "2032-01-01": 1190.36015910091, - "2031-01-01": 1167.42218443264, - "2030-01-01": 1144.78602522053, - "2029-01-01": 1122.45168146458, - "2028-01-01": 1100.41915316479, - "2027-01-01": 1078.08480940884, - "2026-01-01": 1052.15886172457, - "2025-01-01": 1036.31707145641, - "2024-01-01": 1013.82678971478, - "2023-01-01": 959, - "2015-01-01": 959 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1329.63398712695, - "2034-01-01": 1303.88683126816, - "2033-01-01": 1278.4575415311, - "2032-01-01": 1253.66398403746, - "2031-01-01": 1229.50615878724, - "2030-01-01": 1205.66619965874, - "2029-01-01": 1182.14410665195, - "2028-01-01": 1158.93987976688, - "2027-01-01": 1135.41778676009, - "2026-01-01": 1108.11308690491, - "2025-01-01": 1091.42882395305, - "2024-01-01": 1067.74250011671, - "2023-01-01": 1010, - "2015-01-01": 1010 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1391.50804395365, - "2034-01-01": 1364.56275311926, - "2033-01-01": 1337.95012019641, - "2032-01-01": 1312.00280309662, - "2031-01-01": 1286.72080181991, - "2030-01-01": 1261.77145845474, - "2029-01-01": 1237.1547730011, - "2028-01-01": 1212.870745459, - "2027-01-01": 1188.25406000536, - "2026-01-01": 1159.67874540445, - "2025-01-01": 1142.21808605779, - "2024-01-01": 1117.42952734986, - "2023-01-01": 1057, - "2015-01-01": 1057 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1473.12914019312, - "2034-01-01": 1444.60333088027, - "2033-01-01": 1416.42969205277, - "2032-01-01": 1388.96039419595, - "2031-01-01": 1362.19543730982, - "2030-01-01": 1335.78265090904, - "2029-01-01": 1309.7220349936, - "2028-01-01": 1284.0135895635, - "2027-01-01": 1257.95297364806, - "2026-01-01": 1227.70152895703, - "2025-01-01": 1209.21668713214, - "2024-01-01": 1182.97411646594, - "2023-01-01": 1119, - "2015-01-01": 1119 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1577.13021443374, - "2034-01-01": 1546.59051867254, - "2033-01-01": 1516.42785619233, - "2032-01-01": 1487.01926027413, - "2031-01-01": 1458.36473091794, - "2030-01-01": 1430.08723484274, - "2029-01-01": 1402.18677204855, - "2028-01-01": 1374.66334253536, - "2027-01-01": 1346.76287974117, - "2026-01-01": 1314.37572090305, - "2025-01-01": 1294.58587237203, - "2024-01-01": 1266.49060904932, - "2023-01-01": 1198, - "2015-01-01": 1198 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1674.54894220344, - "2034-01-01": 1642.12282116149, - "2033-01-01": 1610.09702260154, - "2032-01-01": 1578.87186900559, - "2031-01-01": 1548.44736037363, - "2030-01-01": 1518.42317422368, - "2029-01-01": 1488.79931055572, - "2028-01-01": 1459.57576936977, - "2027-01-01": 1429.95190570182, - "2026-01-01": 1395.56420449807, - "2025-01-01": 1374.55194462206, - "2024-01-01": 1344.72124767174, - "2023-01-01": 1272, - "2015-01-01": 1272 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1762.75238491384, - "2034-01-01": 1728.61828422581, - "2033-01-01": 1694.90559218826, - "2032-01-01": 1662.03571745164, - "2031-01-01": 1630.00866001596, - "2030-01-01": 1598.40301123075, - "2029-01-01": 1567.218771096, - "2028-01-01": 1536.45593961173, - "2027-01-01": 1505.27169947699, - "2026-01-01": 1469.07269640166, - "2025-01-01": 1446.95365868627, - "2024-01-01": 1415.55169074878, - "2023-01-01": 1339, - "2015-01-01": 1339 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1845.6899504475, - "2034-01-01": 1809.94983904749, - "2033-01-01": 1774.65096359069, - "2032-01-01": 1740.23456002031, - "2031-01-01": 1706.70062833635, - "2030-01-01": 1673.6079325956, - "2029-01-01": 1640.95647279806, - "2028-01-01": 1608.74624894372, - "2027-01-01": 1576.09478914618, - "2026-01-01": 1538.19262162444, - "2025-01-01": 1515.03288235859, - "2024-01-01": 1482.15345065705, - "2023-01-01": 1402, - "2015-01-01": 1402 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1931.26045456953, - "2034-01-01": 1893.86334799049, - "2033-01-01": 1856.92793408527, - "2032-01-01": 1820.91590552767, - "2031-01-01": 1785.82726231771, - "2030-01-01": 1751.20031178156, - "2029-01-01": 1717.03505391922, - "2028-01-01": 1683.3314887307, - "2027-01-01": 1649.16623086837, - "2026-01-01": 1609.50683018763, - "2025-01-01": 1585.27335122685, - "2024-01-01": 1550.86955214971, - "2023-01-01": 1467, - "2015-01-01": 1467 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2022.09683586831, - "2034-01-01": 1982.94076517614, - "2033-01-01": 1944.26810276412, - "2032-01-01": 1906.56225691241, - "2031-01-01": 1869.82322762099, - "2030-01-01": 1833.56760660973, - "2029-01-01": 1797.79539387861, - "2028-01-01": 1762.50658942765, - "2027-01-01": 1726.73437669653, - "2026-01-01": 1685.20960543163, - "2025-01-01": 1659.83631048701, - "2024-01-01": 1623.81433681115, - "2023-01-01": 1536, - "2015-01-01": 1536 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2107.66733999034, - "2034-01-01": 2066.85427411914, - "2033-01-01": 2026.5450732587, - "2032-01-01": 1987.24360241977, - "2031-01-01": 1948.94986160235, - "2030-01-01": 1911.15998579569, - "2029-01-01": 1873.87397499978, - "2028-01-01": 1837.09182921462, - "2027-01-01": 1799.80581841872, - "2026-01-01": 1756.52381399482, - "2025-01-01": 1730.07677935528, - "2024-01-01": 1692.53043830381, - "2023-01-01": 1601, - "2015-01-01": 1601 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2187.97196693563, - "2034-01-01": 2145.60387481949, - "2033-01-01": 2103.75884556899, - "2032-01-01": 2062.95994204975, - "2031-01-01": 2023.20716426178, - "2030-01-01": 1983.97744933943, - "2029-01-01": 1945.27079728272, - "2028-01-01": 1907.08720809163, - "2027-01-01": 1868.38055603492, - "2026-01-01": 1823.44945587719, - "2025-01-01": 1795.99475783165, - "2024-01-01": 1757.01785662769, - "2023-01-01": 1662, - "2015-01-01": 1662 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2657.95150495971, - "2034-01-01": 2606.48268547567, - "2033-01-01": 2555.64928351612, - "2032-01-01": 2506.08671660557, - "2031-01-01": 2457.794984744, - "2030-01-01": 2410.13867040693, - "2029-01-01": 2363.11777359435, - "2028-01-01": 2316.73229430626, - "2027-01-01": 2269.71139749368, - "2026-01-01": 2215.12903213962, - "2025-01-01": 2181.77702530812, - "2024-01-01": 2134.42782944122, - "2023-01-01": 2019, - "2015-01-01": 2019 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 643.753484856512, - "2034-01-01": 631.287782663498, - "2033-01-01": 618.975978028422, - "2032-01-01": 606.971968509223, - "2031-01-01": 595.275754105902, - "2030-01-01": 583.733437260519, - "2029-01-01": 572.345017973074, - "2028-01-01": 561.110496243567, - "2027-01-01": 549.722076956122, - "2026-01-01": 536.50227672921, - "2025-01-01": 528.424450408951, - "2024-01-01": 516.956517383238, - "2023-01-01": 489, - "2015-01-01": 489 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 912.313220870271, - "2034-01-01": 894.647103038454, - "2033-01-01": 877.199085426782, - "2032-01-01": 860.187268255403, - "2031-01-01": 843.611651524315, - "2030-01-01": 827.254135013373, - "2029-01-01": 811.114718722577, - "2028-01-01": 795.193402651926, - "2027-01-01": 779.053986361131, - "2026-01-01": 760.319177450598, - "2025-01-01": 748.871460395507, - "2024-01-01": 732.619358990969, - "2023-01-01": 693, - "2015-01-01": 693 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1047.90955817134, - "2034-01-01": 1027.61774028659, - "2033-01-01": 1007.57643867203, - "2032-01-01": 988.036169597836, - "2031-01-01": 968.996933064004, - "2030-01-01": 950.208212800353, - "2029-01-01": 931.670008806884, - "2028-01-01": 913.382321083598, - "2027-01-01": 894.84411709013, - "2026-01-01": 873.324769481495, - "2025-01-01": 860.175587986759, - "2024-01-01": 841.507950587029, - "2023-01-01": 796, - "2015-01-01": 796 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1161.12591747125, - "2034-01-01": 1138.64176750349, - "2033-01-01": 1116.43519963409, - "2032-01-01": 1094.78379596142, - "2031-01-01": 1073.68755648549, - "2030-01-01": 1052.86889910793, - "2029-01-01": 1032.32782382873, - "2028-01-01": 1012.06433064791, - "2027-01-01": 991.523255368712, - "2026-01-01": 967.678953118943, - "2025-01-01": 953.109131412464, - "2024-01-01": 932.424638715779, - "2023-01-01": 882, - "2015-01-01": 882 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1261.17758382932, - "2034-01-01": 1236.75602411376, - "2033-01-01": 1212.63596513544, - "2032-01-01": 1189.11890763157, - "2031-01-01": 1166.20485160216, - "2030-01-01": 1143.59229630997, - "2029-01-01": 1121.28124175502, - "2028-01-01": 1099.2716879373, - "2027-01-01": 1076.96063338234, - "2026-01-01": 1051.06172005436, - "2025-01-01": 1035.23644885844, - "2024-01-01": 1012.76961892258, - "2023-01-01": 958, - "2015-01-01": 958 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1350.69749583391, - "2034-01-01": 1324.54246423875, - "2033-01-01": 1298.71033426822, - "2032-01-01": 1273.52400754696, - "2031-01-01": 1248.98348407496, - "2030-01-01": 1224.76586222759, - "2029-01-01": 1200.87114200485, - "2028-01-01": 1177.29932340675, - "2027-01-01": 1153.40460318401, - "2026-01-01": 1125.66735362816, - "2025-01-01": 1108.71878552062, - "2024-01-01": 1084.65723279182, - "2023-01-01": 1026, - "2015-01-01": 1026 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1432.31859207338, - "2034-01-01": 1404.58304199977, - "2033-01-01": 1377.18990612459, - "2032-01-01": 1350.48159864629, - "2031-01-01": 1324.45811956487, - "2030-01-01": 1298.77705468189, - "2029-01-01": 1273.43840399735, - "2028-01-01": 1248.44216751125, - "2027-01-01": 1223.10351682671, - "2026-01-01": 1193.69013718074, - "2025-01-01": 1175.71738659497, - "2024-01-01": 1150.2018219079, - "2023-01-01": 1088, - "2015-01-01": 1088 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1507.35734184193, - "2034-01-01": 1478.16873445747, - "2033-01-01": 1449.3404802506, - "2032-01-01": 1421.2329323989, - "2031-01-01": 1393.84609090237, - "2030-01-01": 1366.81960258342, - "2029-01-01": 1340.15346744206, - "2028-01-01": 1313.84768547829, - "2027-01-01": 1287.18155033693, - "2026-01-01": 1256.2272123823, - "2025-01-01": 1237.31287467945, - "2024-01-01": 1210.460557063, - "2023-01-01": 1145, - "2015-01-01": 1145 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1577.13021443374, - "2034-01-01": 1546.59051867254, - "2033-01-01": 1516.42785619233, - "2032-01-01": 1487.01926027413, - "2031-01-01": 1458.36473091794, - "2030-01-01": 1430.08723484274, - "2029-01-01": 1402.18677204855, - "2028-01-01": 1374.66334253536, - "2027-01-01": 1346.76287974117, - "2026-01-01": 1314.37572090305, - "2025-01-01": 1294.58587237203, - "2024-01-01": 1266.49060904932, - "2023-01-01": 1198, - "2015-01-01": 1198 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1669.2830650267, - "2034-01-01": 1636.95891291884, - "2033-01-01": 1605.03382441726, - "2032-01-01": 1573.90686312821, - "2031-01-01": 1543.5780290517, - "2030-01-01": 1513.64825858147, - "2029-01-01": 1484.1175517175, - "2028-01-01": 1454.9859084598, - "2027-01-01": 1425.45520159583, - "2026-01-01": 1391.17563781726, - "2025-01-01": 1370.22945423016, - "2024-01-01": 1340.49256450296, - "2023-01-01": 1268, - "2015-01-01": 1268 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1787.76530150336, - "2034-01-01": 1753.14684837838, - "2033-01-01": 1718.95578356359, - "2032-01-01": 1685.61949536917, - "2031-01-01": 1653.13798379512, - "2030-01-01": 1621.08386053126, - "2029-01-01": 1589.45712557757, - "2028-01-01": 1558.25777893408, - "2027-01-01": 1526.6310439804, - "2026-01-01": 1489.91838813552, - "2025-01-01": 1467.48548804776, - "2024-01-01": 1435.63793580048, - "2023-01-01": 1358, - "2015-01-01": 1358 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1897.03225292072, - "2034-01-01": 1860.29794441329, - "2033-01-01": 1824.01714588744, - "2032-01-01": 1788.64336732473, - "2031-01-01": 1754.17660872516, - "2030-01-01": 1720.16336010717, - "2029-01-01": 1686.60362147075, - "2028-01-01": 1653.49739281591, - "2027-01-01": 1619.93765417949, - "2026-01-01": 1580.98114676236, - "2025-01-01": 1557.17716367955, - "2024-01-01": 1523.38311155265, - "2023-01-01": 1441, - "2015-01-01": 1441 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1997.08391927879, - "2034-01-01": 1958.41220102357, - "2033-01-01": 1920.21791138879, - "2032-01-01": 1882.97847899487, - "2031-01-01": 1846.69390384183, - "2030-01-01": 1810.88675730922, - "2029-01-01": 1775.55703939704, - "2028-01-01": 1740.7047501053, - "2027-01-01": 1705.37503219312, - "2026-01-01": 1664.36391369777, - "2025-01-01": 1639.30448112552, - "2024-01-01": 1603.72809175945, - "2023-01-01": 1517, - "2015-01-01": 1517 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2090.55323916593, - "2034-01-01": 2050.07157233054, - "2033-01-01": 2010.08967915978, - "2032-01-01": 1971.1073333183, - "2031-01-01": 1933.12453480608, - "2030-01-01": 1895.64150995849, - "2029-01-01": 1858.65825877554, - "2028-01-01": 1822.17478125723, - "2027-01-01": 1785.19153007428, - "2026-01-01": 1742.26097228218, - "2025-01-01": 1716.02868558162, - "2024-01-01": 1678.78721800528, - "2023-01-01": 1588, - "2015-01-01": 1588 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2186.65549764144, - "2034-01-01": 2144.31289775883, - "2033-01-01": 2102.49304602292, - "2032-01-01": 2061.71869058041, - "2031-01-01": 2021.98983143129, - "2030-01-01": 1982.78372042888, - "2029-01-01": 1944.10035757316, - "2028-01-01": 1905.93974286414, - "2027-01-01": 1867.25638000842, - "2026-01-01": 1822.35231420699, - "2025-01-01": 1794.91413523368, - "2024-01-01": 1755.9606858355, - "2023-01-01": 1661, - "2015-01-01": 1661 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2289.34010258788, - "2034-01-01": 2245.00910849043, - "2033-01-01": 2201.22541061641, - "2032-01-01": 2158.53630518924, - "2031-01-01": 2116.94179220892, - "2030-01-01": 2075.89457545203, - "2029-01-01": 2035.39465491856, - "2028-01-01": 1995.44203060851, - "2027-01-01": 1954.94211007504, - "2026-01-01": 1907.92936448281, - "2025-01-01": 1879.20269787559, - "2024-01-01": 1838.42000762669, - "2023-01-01": 1739, - "2015-01-01": 1739 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2386.75883035758, - "2034-01-01": 2340.54141097939, - "2033-01-01": 2294.89457702562, - "2032-01-01": 2250.3889139207, - "2031-01-01": 2207.02442166462, - "2030-01-01": 2164.23051483297, - "2029-01-01": 2122.00719342573, - "2028-01-01": 2080.35445744292, - "2027-01-01": 2038.13113603568, - "2026-01-01": 1989.11784807783, - "2025-01-01": 1959.16877012562, - "2024-01-01": 1916.6506462491, - "2023-01-01": 1813, - "2015-01-01": 1813 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2477.59521165635, - "2034-01-01": 2429.61882816504, - "2033-01-01": 2382.23474570448, - "2032-01-01": 2336.03526530544, - "2031-01-01": 2291.02038696791, - "2030-01-01": 2246.59780966114, - "2029-01-01": 2202.76753338512, - "2028-01-01": 2159.52955813986, - "2027-01-01": 2115.69928186385, - "2026-01-01": 2064.82062332183, - "2025-01-01": 2033.73172938578, - "2024-01-01": 1989.59543091054, - "2023-01-01": 1882, - "2015-01-01": 1882 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3008.13233721294, - "2034-01-01": 2949.88258361164, - "2033-01-01": 2892.35196277085, - "2032-01-01": 2836.25960745107, - "2031-01-01": 2781.60551765232, - "2030-01-01": 2727.67056061408, - "2029-01-01": 2674.45473633635, - "2028-01-01": 2621.95804481912, - "2027-01-01": 2568.74222054139, - "2026-01-01": 2506.96871641359, - "2025-01-01": 2469.22263636902, - "2024-01-01": 2415.63526016503, - "2023-01-01": 2285, - "2015-01-01": 2285 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 693.779318035545, - "2034-01-01": 680.344910968636, - "2033-01-01": 667.076360779097, - "2032-01-01": 654.139524344296, - "2031-01-01": 641.534401664234, - "2030-01-01": 629.09513586154, - "2029-01-01": 616.821726936216, - "2028-01-01": 604.714174888262, - "2027-01-01": 592.440765962938, - "2026-01-01": 578.19366019692, - "2025-01-01": 569.488109131937, - "2024-01-01": 557.129007486639, - "2023-01-01": 527, - "2015-01-01": 527 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 983.402562756266, - "2034-01-01": 964.359864314177, - "2033-01-01": 945.552260914583, - "2032-01-01": 927.214847599979, - "2031-01-01": 909.347624370365, - "2030-01-01": 891.715496183246, - "2029-01-01": 874.318463038621, - "2028-01-01": 857.156524936492, - "2027-01-01": 839.759491791868, - "2026-01-01": 819.564827641554, - "2025-01-01": 807.225080686066, - "2024-01-01": 789.706581769486, - "2023-01-01": 747, - "2015-01-01": 747 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1128.21418511663, - "2034-01-01": 1106.36734098695, - "2033-01-01": 1084.79021098233, - "2032-01-01": 1063.75250922782, - "2031-01-01": 1043.25423572343, - "2030-01-01": 1023.0256763441, - "2029-01-01": 1003.06683108982, - "2028-01-01": 983.377699960607, - "2027-01-01": 963.418854706333, - "2026-01-01": 940.250411363871, - "2025-01-01": 926.093566463131, - "2024-01-01": 905.99536891091, - "2023-01-01": 857, - "2015-01-01": 857 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1250.64582947584, - "2034-01-01": 1226.42820762847, - "2033-01-01": 1202.50956876687, - "2032-01-01": 1179.18889587681, - "2031-01-01": 1156.4661889583, - "2030-01-01": 1134.04246502555, - "2029-01-01": 1111.91772407857, - "2028-01-01": 1090.09196611736, - "2027-01-01": 1067.96722517038, - "2026-01-01": 1042.28458669274, - "2025-01-01": 1026.59146807465, - "2024-01-01": 1004.31225258502, - "2023-01-01": 950, - "2015-01-01": 950 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1358.59631159902, - "2034-01-01": 1332.28832660272, - "2033-01-01": 1306.30513154465, - "2032-01-01": 1280.97151636302, - "2031-01-01": 1256.28748105785, - "2030-01-01": 1231.92823569091, - "2029-01-01": 1207.89378026219, - "2028-01-01": 1184.1841147717, - "2027-01-01": 1160.14965934298, - "2026-01-01": 1132.25020364938, - "2025-01-01": 1115.20252110846, - "2024-01-01": 1091.00025754499, - "2023-01-01": 1032, - "2015-01-01": 1032 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1454.69857007453, - "2034-01-01": 1426.52965203101, - "2033-01-01": 1398.70849840778, - "2032-01-01": 1371.58287362514, - "2031-01-01": 1345.15277768307, - "2030-01-01": 1319.07044616129, - "2029-01-01": 1293.33587905981, - "2028-01-01": 1267.94907637861, - "2027-01-01": 1242.21450927713, - "2026-01-01": 1212.34154557419, - "2025-01-01": 1194.08797076051, - "2024-01-01": 1168.17372537521, - "2023-01-01": 1105, - "2015-01-01": 1105 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1541.58554349075, - "2034-01-01": 1511.73413803467, - "2033-01-01": 1482.25126844843, - "2032-01-01": 1453.50547060184, - "2031-01-01": 1425.49674449491, - "2030-01-01": 1397.85655425781, - "2029-01-01": 1370.58489989053, - "2028-01-01": 1343.68178139308, - "2027-01-01": 1316.41012702581, - "2026-01-01": 1284.75289580758, - "2025-01-01": 1265.40906222675, - "2024-01-01": 1237.94699766006, - "2023-01-01": 1171, - "2015-01-01": 1171 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1621.89017043604, - "2034-01-01": 1590.48373873503, - "2033-01-01": 1559.46504075872, - "2032-01-01": 1529.22181023183, - "2031-01-01": 1499.75404715434, - "2030-01-01": 1470.67401780155, - "2029-01-01": 1441.98172217347, - "2028-01-01": 1413.67716027009, - "2027-01-01": 1384.98486464201, - "2026-01-01": 1351.67853768995, - "2025-01-01": 1331.32704070312, - "2024-01-01": 1302.43441598394, - "2023-01-01": 1232, - "2015-01-01": 1232 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1696.92892020459, - "2034-01-01": 1664.06943119274, - "2033-01-01": 1631.61561488474, - "2032-01-01": 1599.97314398444, - "2031-01-01": 1569.14201849184, - "2030-01-01": 1538.71656570308, - "2029-01-01": 1508.69678561818, - "2028-01-01": 1479.08267823713, - "2027-01-01": 1449.06289815223, - "2026-01-01": 1414.21561289152, - "2025-01-01": 1392.9225287876, - "2024-01-01": 1362.69315113905, - "2023-01-01": 1289, - "2015-01-01": 1289 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1796.98058656266, - "2034-01-01": 1762.18368780301, - "2033-01-01": 1727.81638038609, - "2032-01-01": 1694.30825565458, - "2031-01-01": 1661.6593136085, - "2030-01-01": 1629.43996290513, - "2029-01-01": 1597.65020354447, - "2028-01-01": 1566.29003552652, - "2027-01-01": 1534.50027616586, - "2026-01-01": 1497.59837982694, - "2025-01-01": 1475.04984623358, - "2024-01-01": 1443.03813134585, - "2023-01-01": 1365, - "2015-01-01": 1365 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1923.36163880442, - "2034-01-01": 1886.11748562652, - "2033-01-01": 1849.33313680884, - "2032-01-01": 1813.46839671161, - "2031-01-01": 1778.52326533481, - "2030-01-01": 1744.03793831824, - "2029-01-01": 1710.01241566188, - "2028-01-01": 1676.44669736575, - "2027-01-01": 1642.4211747094, - "2026-01-01": 1602.92398016641, - "2025-01-01": 1578.78961563901, - "2024-01-01": 1544.52652739655, - "2023-01-01": 1461, - "2015-01-01": 1461 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2041.84387528108, - "2034-01-01": 2002.30542108606, - "2033-01-01": 1963.25509595518, - "2032-01-01": 1925.18102895257, - "2031-01-01": 1888.08322007823, - "2030-01-01": 1851.47354026803, - "2029-01-01": 1815.35198952196, - "2028-01-01": 1779.71856784003, - "2027-01-01": 1743.59701709396, - "2026-01-01": 1701.66673048467, - "2025-01-01": 1676.04564945661, - "2024-01-01": 1639.67189869407, - "2023-01-01": 1551, - "2015-01-01": 1551 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2148.47788811008, - "2034-01-01": 2106.87456299965, - "2033-01-01": 2065.78485918688, - "2032-01-01": 2025.72239796943, - "2031-01-01": 1986.6871793473, - "2030-01-01": 1948.16558202283, - "2029-01-01": 1910.15760599602, - "2028-01-01": 1872.66325126687, - "2027-01-01": 1834.65527524006, - "2026-01-01": 1790.53520577111, - "2025-01-01": 1763.57607989245, - "2024-01-01": 1725.30273286185, - "2023-01-01": 1632, - "2015-01-01": 1632 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2249.84602376233, - "2034-01-01": 2206.27979667059, - "2033-01-01": 2163.2514242343, - "2032-01-01": 2121.29876110892, - "2031-01-01": 2080.42180729445, - "2030-01-01": 2040.08270813543, - "2029-01-01": 2000.28146363187, - "2028-01-01": 1961.01807378376, - "2027-01-01": 1921.21682928019, - "2026-01-01": 1875.01511437673, - "2025-01-01": 1846.7840199364, - "2024-01-01": 1806.70488386085, - "2023-01-01": 1709, - "2015-01-01": 1709 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2352.53062870877, - "2034-01-01": 2306.97600740219, - "2033-01-01": 2261.98378882779, - "2032-01-01": 2218.11637571776, - "2031-01-01": 2175.37376807208, - "2030-01-01": 2133.19356315858, - "2029-01-01": 2091.57576097726, - "2028-01-01": 2050.52036152813, - "2027-01-01": 2008.90255934681, - "2026-01-01": 1960.59216465255, - "2025-01-01": 1931.07258257831, - "2024-01-01": 1889.16420565204, - "2023-01-01": 1787, - "2015-01-01": 1787 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2463.11404942031, - "2034-01-01": 2415.41808049776, - "2033-01-01": 2368.3109506977, - "2032-01-01": 2322.38149914265, - "2031-01-01": 2277.6297258326, - "2030-01-01": 2233.46679164505, - "2029-01-01": 2189.89269658, - "2028-01-01": 2146.90744063745, - "2027-01-01": 2103.3333455724, - "2026-01-01": 2052.7520649496, - "2025-01-01": 2021.84488080807, - "2024-01-01": 1977.9665521964, - "2023-01-01": 1871, - "2015-01-01": 1871 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2567.11512366094, - "2034-01-01": 2517.40526829002, - "2033-01-01": 2468.30911483727, - "2032-01-01": 2420.44036522083, - "2031-01-01": 2373.79901944071, - "2030-01-01": 2327.77137557876, - "2029-01-01": 2282.35743363496, - "2028-01-01": 2237.55719360932, - "2027-01-01": 2192.14325166552, - "2026-01-01": 2139.42625689562, - "2025-01-01": 2107.21406604796, - "2024-01-01": 2061.48304477978, - "2023-01-01": 1950, - "2015-01-01": 1950 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2664.53385143063, - "2034-01-01": 2612.93757077898, - "2033-01-01": 2561.97828124647, - "2032-01-01": 2512.29297395229, - "2031-01-01": 2463.88164889641, - "2030-01-01": 2416.10731495969, - "2029-01-01": 2368.96997214213, - "2028-01-01": 2322.46962044372, - "2027-01-01": 2275.33227762616, - "2026-01-01": 2220.61474049064, - "2025-01-01": 2187.18013829799, - "2024-01-01": 2139.7136834022, - "2023-01-01": 2024, - "2015-01-01": 2024 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3234.56505581278, - "2034-01-01": 3171.93063804543, - "2033-01-01": 3110.06948469495, - "2032-01-01": 3049.75486017825, - "2031-01-01": 2990.9867644953, - "2030-01-01": 2932.99193322923, - "2029-01-01": 2875.77036638004, - "2028-01-01": 2819.32206394774, - "2027-01-01": 2762.10049709855, - "2026-01-01": 2695.67708368849, - "2025-01-01": 2655.08972322044, - "2024-01-01": 2597.46863642253, - "2023-01-01": 2457, - "2015-01-01": 2457 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 731.956927566913, - "2034-01-01": 717.783245727821, - "2033-01-01": 703.784547615138, - "2032-01-01": 690.135816955272, - "2031-01-01": 676.837053748224, - "2030-01-01": 663.713274267583, - "2029-01-01": 650.764478513351, - "2028-01-01": 637.990666485528, - "2027-01-01": 625.041870731297, - "2026-01-01": 610.010768632803, - "2025-01-01": 600.826164473163, - "2024-01-01": 587.786960460287, - "2023-01-01": 556, - "2015-01-01": 556 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1036.06133452367, - "2034-01-01": 1015.99894674064, - "2033-01-01": 996.184242757399, - "2032-01-01": 976.86490637374, - "2031-01-01": 958.040937589662, - "2030-01-01": 939.464652605375, - "2029-01-01": 921.136051420877, - "2028-01-01": 903.05513403617, - "2027-01-01": 884.726532851673, - "2026-01-01": 863.450494449669, - "2025-01-01": 850.449984604999, - "2024-01-01": 831.993413457277, - "2023-01-01": 787, - "2015-01-01": 787 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1190.08824194333, - "2034-01-01": 1167.04326283804, - "2033-01-01": 1144.28278964764, - "2032-01-01": 1122.09132828699, - "2031-01-01": 1100.4688787561, - "2030-01-01": 1079.1309351401, - "2029-01-01": 1058.07749743897, - "2028-01-01": 1037.30856565273, - "2027-01-01": 1016.2551279516, - "2026-01-01": 991.816069863407, - "2025-01-01": 976.882828567877, - "2024-01-01": 955.682396144063, - "2023-01-01": 904, - "2015-01-01": 904 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1319.10223277347, - "2034-01-01": 1293.55901478287, - "2033-01-01": 1268.33114516253, - "2032-01-01": 1243.7339722827, - "2031-01-01": 1219.76749614338, - "2030-01-01": 1196.11636837431, - "2029-01-01": 1172.7805889755, - "2028-01-01": 1149.76015794694, - "2027-01-01": 1126.42437854813, - "2026-01-01": 1099.33595354329, - "2025-01-01": 1082.78384316926, - "2024-01-01": 1059.28513377915, - "2023-01-01": 1002, - "2015-01-01": 1002 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1432.31859207338, - "2034-01-01": 1404.58304199977, - "2033-01-01": 1377.18990612459, - "2032-01-01": 1350.48159864629, - "2031-01-01": 1324.45811956487, - "2030-01-01": 1298.77705468189, - "2029-01-01": 1273.43840399735, - "2028-01-01": 1248.44216751125, - "2027-01-01": 1223.10351682671, - "2026-01-01": 1193.69013718074, - "2025-01-01": 1175.71738659497, - "2024-01-01": 1150.2018219079, - "2023-01-01": 1088, - "2015-01-01": 1088 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1532.37025843145, - "2034-01-01": 1502.69729861004, - "2033-01-01": 1473.39067162594, - "2032-01-01": 1444.81671031643, - "2031-01-01": 1416.97541468153, - "2030-01-01": 1389.50045188393, - "2029-01-01": 1362.39182192364, - "2028-01-01": 1335.64952480064, - "2027-01-01": 1308.54089484034, - "2026-01-01": 1277.07290411616, - "2025-01-01": 1257.84470404094, - "2024-01-01": 1230.5468021147, - "2023-01-01": 1164, - "2015-01-01": 1164 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1624.52310902441, - "2034-01-01": 1593.06569285635, - "2033-01-01": 1561.99663985086, - "2032-01-01": 1531.70431317051, - "2031-01-01": 1502.1887128153, - "2030-01-01": 1473.06147562266, - "2029-01-01": 1444.32260159258, - "2028-01-01": 1415.97209072508, - "2027-01-01": 1387.233216695, - "2026-01-01": 1353.87282103036, - "2025-01-01": 1333.48828589907, - "2024-01-01": 1304.54875756833, - "2023-01-01": 1234, - "2015-01-01": 1234 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1710.09361314644, - "2034-01-01": 1676.97920179935, - "2033-01-01": 1644.27361034544, - "2032-01-01": 1612.38565867788, - "2031-01-01": 1581.31534679666, - "2030-01-01": 1550.65385480862, - "2029-01-01": 1520.40118271375, - "2028-01-01": 1490.55733051205, - "2027-01-01": 1460.30465841718, - "2026-01-01": 1425.18702959355, - "2025-01-01": 1403.72875476734, - "2024-01-01": 1373.26485906099, - "2023-01-01": 1299, - "2015-01-01": 1299 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1789.08177079754, - "2034-01-01": 1754.43782543905, - "2033-01-01": 1720.22158310966, - "2032-01-01": 1686.86074683852, - "2031-01-01": 1654.3553166256, - "2030-01-01": 1622.27758944181, - "2029-01-01": 1590.62756528713, - "2028-01-01": 1559.40524416157, - "2027-01-01": 1527.75522000689, - "2026-01-01": 1491.01552980572, - "2025-01-01": 1468.56611064574, - "2024-01-01": 1436.69510659268, - "2023-01-01": 1359, - "2015-01-01": 1359 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1893.08284503817, - "2034-01-01": 1856.42501323131, - "2033-01-01": 1820.21974724922, - "2032-01-01": 1784.91961291669, - "2031-01-01": 1750.52461023372, - "2030-01-01": 1716.58217337551, - "2029-01-01": 1683.09230234209, - "2028-01-01": 1650.05499713343, - "2027-01-01": 1616.56512610001, - "2026-01-01": 1577.68972175175, - "2025-01-01": 1553.93529588563, - "2024-01-01": 1520.21159917607, - "2023-01-01": 1438, - "2015-01-01": 1438 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2027.36271304505, - "2034-01-01": 1988.10467341879, - "2033-01-01": 1949.3313009484, - "2032-01-01": 1911.52726278978, - "2031-01-01": 1874.69255894292, - "2030-01-01": 1838.34252225194, - "2029-01-01": 1802.47715271684, - "2028-01-01": 1767.09645033761, - "2027-01-01": 1731.23108080251, - "2026-01-01": 1689.59817211244, - "2025-01-01": 1664.15880087891, - "2024-01-01": 1628.04301997993, - "2023-01-01": 1540, - "2015-01-01": 1540 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2151.11082669845, - "2034-01-01": 2109.45651712097, - "2033-01-01": 2068.31645827902, - "2032-01-01": 2028.20490090812, - "2031-01-01": 1989.12184500827, - "2030-01-01": 1950.55303984394, - "2029-01-01": 1912.49848541514, - "2028-01-01": 1874.95818172186, - "2027-01-01": 1836.90362729306, - "2026-01-01": 1792.72948911151, - "2025-01-01": 1765.7373250884, - "2024-01-01": 1727.41707444624, - "2023-01-01": 1634, - "2015-01-01": 1634 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2263.01071670418, - "2034-01-01": 2219.1895672772, - "2033-01-01": 2175.90941969501, - "2032-01-01": 2133.71127580236, - "2031-01-01": 2092.59513559927, - "2030-01-01": 2052.01999724096, - "2029-01-01": 2011.98586072743, - "2028-01-01": 1972.49272605867, - "2027-01-01": 1932.45858954514, - "2026-01-01": 1885.98653107876, - "2025-01-01": 1857.59024591613, - "2024-01-01": 1817.27659178279, - "2023-01-01": 1719, - "2015-01-01": 1719 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2369.64472953317, - "2034-01-01": 2323.75870919079, - "2033-01-01": 2278.43918292671, - "2032-01-01": 2234.25264481923, - "2031-01-01": 2191.19909486835, - "2030-01-01": 2148.71203899577, - "2029-01-01": 2106.7914772015, - "2028-01-01": 2065.43740948552, - "2027-01-01": 2023.51684769125, - "2026-01-01": 1974.85500636519, - "2025-01-01": 1945.12067635197, - "2024-01-01": 1902.90742595057, - "2023-01-01": 1800, - "2015-01-01": 1800 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2478.91168095053, - "2034-01-01": 2430.9098052257, - "2033-01-01": 2383.50054525055, - "2032-01-01": 2337.27651677478, - "2031-01-01": 2292.23771979839, - "2030-01-01": 2247.79153857169, - "2029-01-01": 2203.93797309468, - "2028-01-01": 2160.67702336736, - "2027-01-01": 2116.82345789034, - "2026-01-01": 2065.91776499203, - "2025-01-01": 2034.81235198375, - "2024-01-01": 1990.65260170273, - "2023-01-01": 1883, - "2015-01-01": 1883 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2594.76097883882, - "2034-01-01": 2544.51578656391, - "2033-01-01": 2494.89090530474, - "2032-01-01": 2446.50664607705, - "2031-01-01": 2399.36300888084, - "2030-01-01": 2352.83968270037, - "2029-01-01": 2306.93666753564, - "2028-01-01": 2261.65396338665, - "2027-01-01": 2215.75094822192, - "2026-01-01": 2162.46623196988, - "2025-01-01": 2129.9071406054, - "2024-01-01": 2083.68363141587, - "2023-01-01": 1971, - "2015-01-01": 1971 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2704.02793025619, - "2034-01-01": 2651.66688259882, - "2033-01-01": 2599.95226762859, - "2032-01-01": 2549.53051803261, - "2031-01-01": 2500.40163381088, - "2030-01-01": 2451.91918227629, - "2029-01-01": 2404.08316342882, - "2028-01-01": 2356.89357726848, - "2027-01-01": 2309.05755842101, - "2026-01-01": 2253.52899059672, - "2025-01-01": 2219.59881623719, - "2024-01-01": 2171.42880716804, - "2023-01-01": 2054, - "2015-01-01": 2054 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2806.71253520262, - "2034-01-01": 2752.36309333042, - "2033-01-01": 2698.68463222208, - "2032-01-01": 2646.34813264144, - "2031-01-01": 2595.35359458851, - "2030-01-01": 2545.03003729944, - "2029-01-01": 2495.37746077422, - "2028-01-01": 2446.39586501285, - "2027-01-01": 2396.74328848763, - "2026-01-01": 2339.10604087255, - "2025-01-01": 2303.88737887911, - "2024-01-01": 2253.88812895923, - "2023-01-01": 2132, - "2015-01-01": 2132 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3405.70606405684, - "2034-01-01": 3339.75765593143, - "2033-01-01": 3274.62342568411, - "2032-01-01": 3211.11755119297, - "2031-01-01": 3149.24003245801, - "2030-01-01": 3088.17669160115, - "2029-01-01": 3027.92752862237, - "2028-01-01": 2968.49254352169, - "2027-01-01": 2908.24338054292, - "2026-01-01": 2838.30550081486, - "2025-01-01": 2795.57066095697, - "2024-01-01": 2734.90083940785, - "2023-01-01": 2587, - "2015-01-01": 2587 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 762.23572133317, - "2034-01-01": 747.475718123037, - "2033-01-01": 732.897937174757, - "2032-01-01": 718.684600750185, - "2031-01-01": 704.835708849319, - "2030-01-01": 691.169039210307, - "2029-01-01": 677.684591833148, - "2028-01-01": 664.382366717843, - "2027-01-01": 650.897919340685, - "2026-01-01": 635.24502704747, - "2025-01-01": 625.680484226549, - "2024-01-01": 612.101888680766, - "2023-01-01": 579, - "2015-01-01": 579 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1080.82129052596, - "2034-01-01": 1059.89216680313, - "2033-01-01": 1039.22142732379, - "2032-01-01": 1019.06745633144, - "2031-01-01": 999.430253826064, - "2030-01-01": 980.051435564183, - "2029-01-01": 960.931001545794, - "2028-01-01": 942.068951770897, - "2027-01-01": 922.948517752508, - "2026-01-01": 900.753311236567, - "2025-01-01": 887.191152936092, - "2024-01-01": 867.937220391898, - "2023-01-01": 821, - "2015-01-01": 821 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1240.11407512236, - "2034-01-01": 1216.10039114318, - "2033-01-01": 1192.38317239831, - "2032-01-01": 1169.25888412206, - "2031-01-01": 1146.72752631444, - "2030-01-01": 1124.49263374112, - "2029-01-01": 1102.55420640212, - "2028-01-01": 1080.91224429742, - "2027-01-01": 1058.97381695842, - "2026-01-01": 1033.50745333112, - "2025-01-01": 1017.94648729086, - "2024-01-01": 995.854886247464, - "2023-01-01": 942, - "2015-01-01": 942 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1373.07747383505, - "2034-01-01": 1346.48907427, - "2033-01-01": 1320.22892655142, - "2032-01-01": 1294.62528252581, - "2031-01-01": 1269.67814219316, - "2030-01-01": 1245.059253707, - "2029-01-01": 1220.76861706731, - "2028-01-01": 1196.80623227411, - "2027-01-01": 1172.51559563443, - "2026-01-01": 1144.31876202161, - "2025-01-01": 1127.08936968617, - "2024-01-01": 1102.62913625914, - "2023-01-01": 1043, - "2015-01-01": 1043 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1491.55971031171, - "2034-01-01": 1462.67700972954, - "2033-01-01": 1434.15088569775, - "2032-01-01": 1406.33791476677, - "2031-01-01": 1379.23809693658, - "2030-01-01": 1352.49485565678, - "2029-01-01": 1326.10819092739, - "2028-01-01": 1300.07810274839, - "2027-01-01": 1273.69143801899, - "2026-01-01": 1243.06151233987, - "2025-01-01": 1224.34540350377, - "2024-01-01": 1197.77450755666, - "2023-01-01": 1133, - "2015-01-01": 1133 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1596.87725384652, - "2034-01-01": 1565.95517458246, - "2033-01-01": 1535.41484938339, - "2032-01-01": 1505.63803231429, - "2031-01-01": 1476.62472337517, - "2030-01-01": 1447.99316850104, - "2029-01-01": 1419.7433676919, - "2028-01-01": 1391.87532094774, - "2027-01-01": 1363.6255201386, - "2026-01-01": 1330.8328459561, - "2025-01-01": 1310.79521134163, - "2024-01-01": 1282.34817093224, - "2023-01-01": 1213, - "2015-01-01": 1213 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1692.97951232203, - "2034-01-01": 1660.19650001075, - "2033-01-01": 1627.81821624652, - "2032-01-01": 1596.2493895764, - "2031-01-01": 1565.49002000039, - "2030-01-01": 1535.13537897143, - "2029-01-01": 1505.18546648951, - "2028-01-01": 1475.64028255466, - "2027-01-01": 1445.69037007275, - "2026-01-01": 1410.92418788091, - "2025-01-01": 1389.68066099368, - "2024-01-01": 1359.52163876246, - "2023-01-01": 1286, - "2015-01-01": 1286 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1781.18295503243, - "2034-01-01": 1746.69196307508, - "2033-01-01": 1712.62678583324, - "2032-01-01": 1679.41323802245, - "2031-01-01": 1647.05131964271, - "2030-01-01": 1615.11521597849, - "2029-01-01": 1583.60492702979, - "2028-01-01": 1552.52045279662, - "2027-01-01": 1521.01016384792, - "2026-01-01": 1484.4326797845, - "2025-01-01": 1462.0823750579, - "2024-01-01": 1430.35208183951, - "2023-01-01": 1353, - "2015-01-01": 1353 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1862.80405127191, - "2034-01-01": 1826.73254083609, - "2033-01-01": 1791.10635768961, - "2032-01-01": 1756.37082912178, - "2031-01-01": 1722.52595513262, - "2030-01-01": 1689.12640843279, - "2029-01-01": 1656.17218902229, - "2028-01-01": 1623.66329690112, - "2027-01-01": 1590.70907749062, - "2026-01-01": 1552.45546333708, - "2025-01-01": 1529.08097613224, - "2024-01-01": 1495.89667095559, - "2023-01-01": 1415, - "2015-01-01": 1415 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1972.07100268927, - "2034-01-01": 1933.883636871, - "2033-01-01": 1896.16772001345, - "2032-01-01": 1859.39470107733, - "2031-01-01": 1823.56458006266, - "2030-01-01": 1788.20590800871, - "2029-01-01": 1753.31868491547, - "2028-01-01": 1718.90291078295, - "2027-01-01": 1684.01568768972, - "2026-01-01": 1643.51822196392, - "2025-01-01": 1618.77265176403, - "2024-01-01": 1583.64184670775, - "2023-01-01": 1498, - "2015-01-01": 1498 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2111.61674787289, - "2034-01-01": 2070.72720530112, - "2033-01-01": 2030.34247189691, - "2032-01-01": 1990.9673568278, - "2031-01-01": 1952.6018600938, - "2030-01-01": 1914.74117252735, - "2029-01-01": 1877.38529412845, - "2028-01-01": 1840.5342248971, - "2027-01-01": 1803.1783464982, - "2026-01-01": 1759.81523900543, - "2025-01-01": 1733.3186471492, - "2024-01-01": 1695.7019506804, - "2023-01-01": 1604, - "2015-01-01": 1604 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2239.31426940885, - "2034-01-01": 2195.9519801853, - "2033-01-01": 2153.12502786574, - "2032-01-01": 2111.36874935417, - "2031-01-01": 2070.68314465059, - "2030-01-01": 2030.53287685101, - "2029-01-01": 1990.91794595542, - "2028-01-01": 1951.83835196382, - "2027-01-01": 1912.22342106823, - "2026-01-01": 1866.2379810151, - "2025-01-01": 1838.13903915261, - "2024-01-01": 1798.24751752329, - "2023-01-01": 1701, - "2015-01-01": 1701 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2357.79650588551, - "2034-01-01": 2312.13991564483, - "2033-01-01": 2267.04698701207, - "2032-01-01": 2223.08138159513, - "2031-01-01": 2180.24309939401, - "2030-01-01": 2137.9684788008, - "2029-01-01": 2096.25751981549, - "2028-01-01": 2055.1102224381, - "2027-01-01": 2013.39926345279, - "2026-01-01": 1964.98073133336, - "2025-01-01": 1935.39507297021, - "2024-01-01": 1893.39288882082, - "2023-01-01": 1791, - "2015-01-01": 1791 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2467.06345730287, - "2034-01-01": 2419.29101167974, - "2033-01-01": 2372.10834933592, - "2032-01-01": 2326.10525355068, - "2031-01-01": 2281.28172432405, - "2030-01-01": 2237.04797837671, - "2029-01-01": 2193.40401570867, - "2028-01-01": 2150.34983631993, - "2027-01-01": 2106.70587365189, - "2026-01-01": 2056.0434899602, - "2025-01-01": 2025.08674860199, - "2024-01-01": 1981.13806457298, - "2023-01-01": 1874, - "2015-01-01": 1874 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2581.59628589697, - "2034-01-01": 2531.6060159573, - "2033-01-01": 2482.23290984404, - "2032-01-01": 2434.09413138361, - "2031-01-01": 2387.18968057602, - "2030-01-01": 2340.90239359484, - "2029-01-01": 2295.23227044008, - "2028-01-01": 2250.17931111173, - "2027-01-01": 2204.50918795697, - "2026-01-01": 2151.49481526786, - "2025-01-01": 2119.10091462567, - "2024-01-01": 2073.11192349393, - "2023-01-01": 1961, - "2015-01-01": 1961 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2702.711460962, - "2034-01-01": 2650.37590553816, - "2033-01-01": 2598.68646808252, - "2032-01-01": 2548.28926656326, - "2031-01-01": 2499.1843009804, - "2030-01-01": 2450.72545336574, - "2029-01-01": 2402.91272371926, - "2028-01-01": 2355.74611204099, - "2027-01-01": 2307.93338239452, - "2026-01-01": 2252.43184892652, - "2025-01-01": 2218.51819363922, - "2024-01-01": 2170.37163637584, - "2023-01-01": 2053, - "2015-01-01": 2053 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2815.92782026192, - "2034-01-01": 2761.39993275505, - "2033-01-01": 2707.54522904457, - "2032-01-01": 2655.03689292685, - "2031-01-01": 2603.87492440189, - "2030-01-01": 2553.38613967331, - "2029-01-01": 2503.57053874111, - "2028-01-01": 2454.4281216053, - "2027-01-01": 2404.6125206731, - "2026-01-01": 2346.78603256397, - "2025-01-01": 2311.45173706492, - "2024-01-01": 2261.28832450459, - "2023-01-01": 2139, - "2015-01-01": 2139 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2922.56183309091, - "2034-01-01": 2865.96907466864, - "2033-01-01": 2810.07499227627, - "2032-01-01": 2755.57826194371, - "2031-01-01": 2702.47888367097, - "2030-01-01": 2650.07818142812, - "2029-01-01": 2598.37615521518, - "2028-01-01": 2547.37280503215, - "2027-01-01": 2495.67077881921, - "2026-01-01": 2435.6545078504, - "2025-01-01": 2398.98216750076, - "2024-01-01": 2346.91915867237, - "2023-01-01": 2220, - "2015-01-01": 2220 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3545.25180924046, - "2034-01-01": 3476.60122436155, - "2033-01-01": 3408.79817756757, - "2032-01-01": 3342.69020694343, - "2031-01-01": 3278.27731248915, - "2030-01-01": 3214.71195611979, - "2029-01-01": 3151.99413783535, - "2028-01-01": 3090.12385763584, - "2027-01-01": 3027.40603935141, - "2026-01-01": 2954.60251785637, - "2025-01-01": 2910.11665634214, - "2024-01-01": 2846.96094338049, - "2023-01-01": 2693, - "2015-01-01": 2693 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 805.679208041278, - "2034-01-01": 790.077961124868, - "2033-01-01": 774.66932219508, - "2032-01-01": 759.645899238537, - "2031-01-01": 745.007692255239, - "2030-01-01": 730.562093258563, - "2029-01-01": 716.309102248509, - "2028-01-01": 702.248719225078, - "2027-01-01": 687.995728215024, - "2026-01-01": 671.450702164165, - "2025-01-01": 661.341029959669, - "2024-01-01": 646.988524823193, - "2023-01-01": 612, - "2015-01-01": 612 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1140.06240876429, - "2034-01-01": 1117.9861345329, - "2033-01-01": 1096.18240689696, - "2032-01-01": 1074.92377245192, - "2031-01-01": 1054.21023119777, - "2030-01-01": 1033.76923653908, - "2029-01-01": 1013.60078847583, - "2028-01-01": 993.704887008035, - "2027-01-01": 973.536438944789, - "2026-01-01": 950.124686395697, - "2025-01-01": 935.819169844891, - "2024-01-01": 915.509906040663, - "2023-01-01": 866, - "2015-01-01": 866 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1308.57047841998, - "2034-01-01": 1283.23119829758, - "2033-01-01": 1258.20474879397, - "2032-01-01": 1233.80396052795, - "2031-01-01": 1210.02883349952, - "2030-01-01": 1186.56653708989, - "2029-01-01": 1163.41707129905, - "2028-01-01": 1140.58043612701, - "2027-01-01": 1117.43097033617, - "2026-01-01": 1090.55882018167, - "2025-01-01": 1074.13886238548, - "2024-01-01": 1050.82776744159, - "2023-01-01": 994, - "2015-01-01": 994 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1449.43269289779, - "2034-01-01": 1421.36574378837, - "2033-01-01": 1393.6453002235, - "2032-01-01": 1366.61786774776, - "2031-01-01": 1340.28344636114, - "2030-01-01": 1314.29553051908, - "2029-01-01": 1288.65412022158, - "2028-01-01": 1263.35921546864, - "2027-01-01": 1237.71780517115, - "2026-01-01": 1207.95297889337, - "2025-01-01": 1189.76548036862, - "2024-01-01": 1163.94504220643, - "2023-01-01": 1101, - "2015-01-01": 1101 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1574.49727584537, - "2034-01-01": 1544.00856455121, - "2033-01-01": 1513.89625710019, - "2032-01-01": 1484.53675733544, - "2031-01-01": 1455.93006525697, - "2030-01-01": 1427.69977702164, - "2029-01-01": 1399.84589262944, - "2028-01-01": 1372.36841208038, - "2027-01-01": 1344.51452768818, - "2026-01-01": 1312.18143756265, - "2025-01-01": 1292.42462717608, - "2024-01-01": 1264.37626746493, - "2023-01-01": 1196, - "2015-01-01": 1196 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1685.08069655692, - "2034-01-01": 1652.45063764678, - "2033-01-01": 1620.2234189701, - "2032-01-01": 1588.80188076034, - "2031-01-01": 1558.18602301749, - "2030-01-01": 1527.97300550811, - "2029-01-01": 1498.16282823218, - "2028-01-01": 1468.75549118971, - "2027-01-01": 1438.94531391378, - "2026-01-01": 1404.34133785969, - "2025-01-01": 1383.19692540584, - "2024-01-01": 1353.17861400929, - "2023-01-01": 1280, - "2015-01-01": 1280 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1785.13236291499, - "2034-01-01": 1750.56489425706, - "2033-01-01": 1716.42418447145, - "2032-01-01": 1683.13699243048, - "2031-01-01": 1650.70331813416, - "2030-01-01": 1618.69640271015, - "2029-01-01": 1587.11624615846, - "2028-01-01": 1555.96284847909, - "2027-01-01": 1524.38269192741, - "2026-01-01": 1487.72410479511, - "2025-01-01": 1465.32424285182, - "2024-01-01": 1433.5235942161, - "2023-01-01": 1356, - "2015-01-01": 1356 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1878.60168280213, - "2034-01-01": 1842.22426556403, - "2033-01-01": 1806.29595224245, - "2032-01-01": 1771.26584675391, - "2031-01-01": 1737.13394909841, - "2030-01-01": 1703.45115535943, - "2029-01-01": 1670.21746553697, - "2028-01-01": 1637.43287963102, - "2027-01-01": 1604.19918980856, - "2026-01-01": 1565.62116337951, - "2025-01-01": 1542.04844730792, - "2024-01-01": 1508.58272046192, - "2023-01-01": 1427, - "2015-01-01": 1427 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1965.48865621835, - "2034-01-01": 1927.42875156769, - "2033-01-01": 1889.8387222831, - "2032-01-01": 1853.18844373061, - "2031-01-01": 1817.47791591025, - "2030-01-01": 1782.23726345594, - "2029-01-01": 1747.46648636769, - "2028-01-01": 1713.16558464549, - "2027-01-01": 1678.39480755724, - "2026-01-01": 1638.03251361291, - "2025-01-01": 1613.36953877416, - "2024-01-01": 1578.35599274678, - "2023-01-01": 1493, - "2015-01-01": 1493 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2080.02148481245, - "2034-01-01": 2039.74375584525, - "2033-01-01": 1999.96328279122, - "2032-01-01": 1961.17732156354, - "2031-01-01": 1923.38587216222, - "2030-01-01": 1886.09167867407, - "2029-01-01": 1849.29474109909, - "2028-01-01": 1812.99505943729, - "2027-01-01": 1776.19812186232, - "2026-01-01": 1733.48383892056, - "2025-01-01": 1707.38370479784, - "2024-01-01": 1670.32985166772, - "2023-01-01": 1580, - "2015-01-01": 1580 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2227.46604576118, - "2034-01-01": 2184.33318663934, - "2033-01-01": 2141.7328319511, - "2032-01-01": 2100.19748613007, - "2031-01-01": 2059.72714917625, - "2030-01-01": 2019.78931665603, - "2029-01-01": 1980.38398856941, - "2028-01-01": 1941.51116491639, - "2027-01-01": 1902.10583682977, - "2026-01-01": 1856.36370598328, - "2025-01-01": 1828.41343577085, - "2024-01-01": 1788.73298039353, - "2023-01-01": 1692, - "2015-01-01": 1692 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2363.06238306225, - "2034-01-01": 2317.30382388748, - "2033-01-01": 2272.11018519636, - "2032-01-01": 2228.04638747251, - "2031-01-01": 2185.11243071594, - "2030-01-01": 2142.74339444301, - "2029-01-01": 2100.93927865372, - "2028-01-01": 2059.70008334806, - "2027-01-01": 2017.89596755877, - "2026-01-01": 1969.36929801418, - "2025-01-01": 1939.7175633621, - "2024-01-01": 1897.6215719896, - "2023-01-01": 1795, - "2015-01-01": 1795 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2486.81049671565, - "2034-01-01": 2438.65566758967, - "2033-01-01": 2391.09534252697, - "2032-01-01": 2344.72402559084, - "2031-01-01": 2299.54171678129, - "2030-01-01": 2254.95391203501, - "2029-01-01": 2210.96061135202, - "2028-01-01": 2167.56181473231, - "2027-01-01": 2123.56851404932, - "2026-01-01": 2072.50061501325, - "2025-01-01": 2041.29608757159, - "2024-01-01": 1996.9956264559, - "2023-01-01": 1889, - "2015-01-01": 1889 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2602.65979460393, - "2034-01-01": 2552.26164892788, - "2033-01-01": 2502.48570258117, - "2032-01-01": 2453.95415489312, - "2031-01-01": 2406.66700586374, - "2030-01-01": 2360.00205616369, - "2029-01-01": 2313.95930579298, - "2028-01-01": 2268.5387547516, - "2027-01-01": 2222.49600438089, - "2026-01-01": 2169.0490819911, - "2025-01-01": 2136.39087619324, - "2024-01-01": 2090.02665616904, - "2023-01-01": 1977, - "2015-01-01": 1977 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2722.45850037478, - "2034-01-01": 2669.74056144808, - "2033-01-01": 2617.67346127357, - "2032-01-01": 2566.90803860342, - "2031-01-01": 2517.44429343764, - "2030-01-01": 2468.63138702403, - "2029-01-01": 2420.46931936261, - "2028-01-01": 2372.95809045337, - "2027-01-01": 2324.79602279195, - "2026-01-01": 2268.88897397956, - "2025-01-01": 2234.72753260882, - "2024-01-01": 2186.22919825876, - "2023-01-01": 2068, - "2015-01-01": 2068 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2850.15602191073, - "2034-01-01": 2794.96533633225, - "2033-01-01": 2740.4560172424, - "2032-01-01": 2687.30943112979, - "2031-01-01": 2635.52557799443, - "2030-01-01": 2584.42309134769, - "2029-01-01": 2534.00197118958, - "2028-01-01": 2484.26221752009, - "2027-01-01": 2433.84109736197, - "2026-01-01": 2375.31171598924, - "2025-01-01": 2339.54792461223, - "2024-01-01": 2288.77476510166, - "2023-01-01": 2165, - "2015-01-01": 2165 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2968.63825838739, - "2034-01-01": 2911.15327179179, - "2033-01-01": 2854.37797638874, - "2032-01-01": 2799.02206337075, - "2031-01-01": 2745.08553273785, - "2030-01-01": 2691.85869329748, - "2029-01-01": 2639.34154504965, - "2028-01-01": 2587.53408799436, - "2027-01-01": 2535.01693974654, - "2026-01-01": 2474.0544663075, - "2025-01-01": 2436.80395842983, - "2024-01-01": 2383.92013639918, - "2023-01-01": 2255, - "2015-01-01": 2255 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3081.85461768731, - "2034-01-01": 3022.17729900869, - "2033-01-01": 2963.23673735079, - "2032-01-01": 2905.76968973434, - "2031-01-01": 2849.77615615934, - "2030-01-01": 2794.51937960506, - "2029-01-01": 2739.9993600715, - "2028-01-01": 2686.21609755867, - "2027-01-01": 2631.69607802512, - "2026-01-01": 2568.40864994495, - "2025-01-01": 2529.73750185553, - "2024-01-01": 2474.83682452793, - "2023-01-01": 2341, - "2015-01-01": 2341 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KS.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3737.45632619149, - "2034-01-01": 3665.08387521814, - "2033-01-01": 3593.60491129384, - "2032-01-01": 3523.91292146766, - "2031-01-01": 3456.00790573958, - "2030-01-01": 3388.99637706056, - "2029-01-01": 3322.87833543058, - "2028-01-01": 3257.65378084967, - "2027-01-01": 3191.5357392197, - "2026-01-01": 3114.78520170599, - "2025-01-01": 3067.88755564624, - "2024-01-01": 3001.30787904093, - "2023-01-01": 2839, - "2015-01-01": 2839 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY", - "description": null, - "label": "KY", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 566.081796499591, - "2034-01-01": 555.120136084466, - "2033-01-01": 544.293804810269, - "2032-01-01": 533.738131817927, - "2031-01-01": 523.453117107439, - "2030-01-01": 513.303431537879, - "2029-01-01": 503.289075109247, - "2028-01-01": 493.410047821542, - "2027-01-01": 483.395691392909, - "2026-01-01": 471.77091818724, - "2025-01-01": 464.667717128525, - "2024-01-01": 454.583440643747, - "2023-01-01": 430, - "2015-01-01": 430 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 810.945085218019, - "2034-01-01": 795.241869367514, - "2033-01-01": 779.732520379362, - "2032-01-01": 764.610905115913, - "2031-01-01": 749.877023577169, - "2030-01-01": 735.337008900776, - "2029-01-01": 720.990861086735, - "2028-01-01": 706.838580135046, - "2027-01-01": 692.492432321005, - "2026-01-01": 675.839268844976, - "2025-01-01": 665.663520351562, - "2024-01-01": 651.217207991972, - "2023-01-01": 616, - "2015-01-01": 616 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 934.693198871418, - "2034-01-01": 916.5937130697, - "2033-01-01": 898.717677709979, - "2032-01-01": 881.288543234251, - "2031-01-01": 864.306309642516, - "2030-01-01": 847.547526492777, - "2029-01-01": 831.012193785035, - "2028-01-01": 814.70031151929, - "2027-01-01": 798.164978811548, - "2026-01-01": 778.970585844047, - "2025-01-01": 767.242044561054, - "2024-01-01": 750.59126245828, - "2023-01-01": 710, - "2015-01-01": 710 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1038.69427311204, - "2034-01-01": 1018.58090086196, - "2033-01-01": 998.71584184954, - "2032-01-01": 979.347409312428, - "2031-01-01": 960.475603250627, - "2030-01-01": 941.852110426481, - "2029-01-01": 923.47693083999, - "2028-01-01": 905.350064491154, - "2027-01-01": 886.974884904664, - "2026-01-01": 865.644777790075, - "2025-01-01": 852.611229800946, - "2024-01-01": 834.107755041666, - "2023-01-01": 789, - "2015-01-01": 789 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1132.16359299918, - "2034-01-01": 1110.24027216893, - "2033-01-01": 1088.58760962054, - "2032-01-01": 1067.47626363585, - "2031-01-01": 1046.90623421488, - "2030-01-01": 1026.60686307576, - "2029-01-01": 1006.57815021849, - "2028-01-01": 986.820095643083, - "2027-01-01": 966.791382785818, - "2026-01-01": 943.54183637448, - "2025-01-01": 929.335434257051, - "2024-01-01": 909.166881287494, - "2023-01-01": 860, - "2015-01-01": 860 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1213.78468923866, - "2034-01-01": 1190.28084992995, - "2033-01-01": 1167.0671814769, - "2032-01-01": 1144.43385473518, - "2031-01-01": 1122.38086970479, - "2030-01-01": 1100.61805553006, - "2029-01-01": 1079.14541221099, - "2028-01-01": 1057.96293974758, - "2027-01-01": 1036.49029642852, - "2026-01-01": 1011.56461992706, - "2025-01-01": 996.334035331397, - "2024-01-01": 974.711470403569, - "2023-01-01": 922, - "2015-01-01": 922 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1288.82343900721, - "2034-01-01": 1263.86654238766, - "2033-01-01": 1239.21775560291, - "2032-01-01": 1215.18518848779, - "2031-01-01": 1191.76884104229, - "2030-01-01": 1168.66060343159, - "2029-01-01": 1145.8604756557, - "2028-01-01": 1123.36845771463, - "2027-01-01": 1100.56832993874, - "2026-01-01": 1074.10169512862, - "2025-01-01": 1057.92952341588, - "2024-01-01": 1034.97020555867, - "2023-01-01": 979, - "2015-01-01": 979 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1358.59631159902, - "2034-01-01": 1332.28832660272, - "2033-01-01": 1306.30513154465, - "2032-01-01": 1280.97151636302, - "2031-01-01": 1256.28748105785, - "2030-01-01": 1231.92823569091, - "2029-01-01": 1207.89378026219, - "2028-01-01": 1184.1841147717, - "2027-01-01": 1160.14965934298, - "2026-01-01": 1132.25020364938, - "2025-01-01": 1115.20252110846, - "2024-01-01": 1091.00025754499, - "2023-01-01": 1032, - "2015-01-01": 1032 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1424.41977630827, - "2034-01-01": 1396.8371796358, - "2033-01-01": 1369.59510884816, - "2032-01-01": 1343.03408983022, - "2031-01-01": 1317.15412258198, - "2030-01-01": 1291.61468121857, - "2029-01-01": 1266.41576574001, - "2028-01-01": 1241.5573761463, - "2027-01-01": 1216.35846066774, - "2026-01-01": 1187.10728715952, - "2025-01-01": 1169.23365100713, - "2024-01-01": 1143.85879715473, - "2023-01-01": 1082, - "2015-01-01": 1082 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1509.9902804303, - "2034-01-01": 1480.7506885788, - "2033-01-01": 1451.87207934274, - "2032-01-01": 1423.71543533759, - "2031-01-01": 1396.28075656333, - "2030-01-01": 1369.20706040453, - "2029-01-01": 1342.49434686118, - "2028-01-01": 1316.14261593328, - "2027-01-01": 1289.42990238992, - "2026-01-01": 1258.42149572271, - "2025-01-01": 1239.47411987539, - "2024-01-01": 1212.57489864739, - "2023-01-01": 1147, - "2015-01-01": 1147 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1620.57370114185, - "2034-01-01": 1589.19276167437, - "2033-01-01": 1558.19924121265, - "2032-01-01": 1527.98055876248, - "2031-01-01": 1498.53671432386, - "2030-01-01": 1469.480288891, - "2029-01-01": 1440.81128246391, - "2028-01-01": 1412.5296950426, - "2027-01-01": 1383.86068861551, - "2026-01-01": 1350.58139601975, - "2025-01-01": 1330.24641810515, - "2024-01-01": 1301.37724519175, - "2023-01-01": 1231, - "2015-01-01": 1231 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1721.9418367941, - "2034-01-01": 1688.59799534531, - "2033-01-01": 1655.66580626007, - "2032-01-01": 1623.55692190197, - "2031-01-01": 1592.271342271, - "2030-01-01": 1561.3974150036, - "2029-01-01": 1530.93514009975, - "2028-01-01": 1500.88451755948, - "2027-01-01": 1470.42224265564, - "2026-01-01": 1435.06130462537, - "2025-01-01": 1413.4543581491, - "2024-01-01": 1382.77939619075, - "2023-01-01": 1308, - "2015-01-01": 1308 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1815.41115668125, - "2034-01-01": 1780.25736665228, - "2033-01-01": 1745.53757403107, - "2032-01-01": 1711.6857762254, - "2031-01-01": 1678.70197323525, - "2030-01-01": 1646.15216765287, - "2029-01-01": 1614.03635947826, - "2028-01-01": 1582.35454871141, - "2027-01-01": 1550.2387405368, - "2026-01-01": 1512.95836320978, - "2025-01-01": 1490.1785626052, - "2024-01-01": 1457.83852243657, - "2023-01-01": 1379, - "2015-01-01": 1379 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1903.61459939165, - "2034-01-01": 1866.7528297166, - "2033-01-01": 1830.34614361779, - "2032-01-01": 1794.84962467145, - "2031-01-01": 1760.26327287757, - "2030-01-01": 1726.13200465994, - "2029-01-01": 1692.45582001854, - "2028-01-01": 1659.23471895337, - "2027-01-01": 1625.55853431197, - "2026-01-01": 1586.46685511337, - "2025-01-01": 1562.58027666941, - "2024-01-01": 1528.66896551362, - "2023-01-01": 1446, - "2015-01-01": 1446 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1994.45098069042, - "2034-01-01": 1955.83024690225, - "2033-01-01": 1917.68631229664, - "2032-01-01": 1880.49597605618, - "2031-01-01": 1844.25923818086, - "2030-01-01": 1808.49929948811, - "2029-01-01": 1773.21615997793, - "2028-01-01": 1738.40981965032, - "2027-01-01": 1703.12668014013, - "2026-01-01": 1662.16963035737, - "2025-01-01": 1637.14323592957, - "2024-01-01": 1601.61375017506, - "2023-01-01": 1515, - "2015-01-01": 1515 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2090.55323916593, - "2034-01-01": 2050.07157233054, - "2033-01-01": 2010.08967915978, - "2032-01-01": 1971.1073333183, - "2031-01-01": 1933.12453480608, - "2030-01-01": 1895.64150995849, - "2029-01-01": 1858.65825877554, - "2028-01-01": 1822.17478125723, - "2027-01-01": 1785.19153007428, - "2026-01-01": 1742.26097228218, - "2025-01-01": 1716.02868558162, - "2024-01-01": 1678.78721800528, - "2023-01-01": 1588, - "2015-01-01": 1588 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2181.3896204647, - "2034-01-01": 2139.14898951619, - "2033-01-01": 2097.42984783864, - "2032-01-01": 2056.75368470303, - "2031-01-01": 2017.12050010936, - "2030-01-01": 1978.00880478667, - "2029-01-01": 1939.41859873493, - "2028-01-01": 1901.34988195417, - "2027-01-01": 1862.75967590244, - "2026-01-01": 1817.96374752618, - "2025-01-01": 1790.59164484178, - "2024-01-01": 1751.73200266672, - "2023-01-01": 1657, - "2015-01-01": 1657 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2266.96012458673, - "2034-01-01": 2223.06249845919, - "2033-01-01": 2179.70681833322, - "2032-01-01": 2137.43503021039, - "2031-01-01": 2096.24713409072, - "2030-01-01": 2055.60118397262, - "2029-01-01": 2015.4971798561, - "2028-01-01": 1975.93512174115, - "2027-01-01": 1935.83111762463, - "2026-01-01": 1889.27795608937, - "2025-01-01": 1860.83211371005, - "2024-01-01": 1820.44810415938, - "2023-01-01": 1722, - "2015-01-01": 1722 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2767.21845637707, - "2034-01-01": 2713.63378151058, - "2033-01-01": 2660.71064583997, - "2032-01-01": 2609.11058856112, - "2031-01-01": 2558.83360967404, - "2030-01-01": 2509.21816998284, - "2029-01-01": 2460.26426948753, - "2028-01-01": 2411.97190818809, - "2027-01-01": 2363.01800769278, - "2026-01-01": 2306.19179076646, - "2025-01-01": 2271.46870093991, - "2024-01-01": 2222.17300519339, - "2023-01-01": 2102, - "2015-01-01": 2102 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 635.854669091401, - "2034-01-01": 623.541920299528, - "2033-01-01": 611.381180752, - "2032-01-01": 599.524459693159, - "2031-01-01": 587.971757123007, - "2030-01-01": 576.571063797199, - "2029-01-01": 565.322379715735, - "2028-01-01": 554.225704878615, - "2027-01-01": 542.977020797152, - "2026-01-01": 529.919426707993, - "2025-01-01": 521.940714821111, - "2024-01-01": 510.613492630069, - "2023-01-01": 483, - "2015-01-01": 483 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 910.996751576086, - "2034-01-01": 893.356125977792, - "2033-01-01": 875.933285880712, - "2032-01-01": 858.946016786058, - "2031-01-01": 842.394318693832, - "2030-01-01": 826.06040610282, - "2029-01-01": 809.94427901302, - "2028-01-01": 794.045937424434, - "2027-01-01": 777.929810334635, - "2026-01-01": 759.222035780396, - "2025-01-01": 747.790837797534, - "2024-01-01": 731.562188198774, - "2023-01-01": 692, - "2015-01-01": 692 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1049.22602746552, - "2034-01-01": 1028.90871734725, - "2033-01-01": 1008.8422382181, - "2032-01-01": 989.27742106718, - "2031-01-01": 970.214265894486, - "2030-01-01": 951.401941710907, - "2029-01-01": 932.840448516441, - "2028-01-01": 914.52978631109, - "2027-01-01": 895.968293116625, - "2026-01-01": 874.421911151698, - "2025-01-01": 861.256210584732, - "2024-01-01": 842.565121379224, - "2023-01-01": 797, - "2015-01-01": 797 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1166.39179464799, - "2034-01-01": 1143.80567574613, - "2033-01-01": 1121.49839781837, - "2032-01-01": 1099.7488018388, - "2031-01-01": 1078.55688780742, - "2030-01-01": 1057.64381475014, - "2029-01-01": 1037.00958266696, - "2028-01-01": 1016.65419155787, - "2027-01-01": 996.019959474692, - "2026-01-01": 972.067519799755, - "2025-01-01": 957.431621804357, - "2024-01-01": 936.653321884558, - "2023-01-01": 886, - "2015-01-01": 886 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1270.39286888862, - "2034-01-01": 1245.79286353839, - "2033-01-01": 1221.49656195793, - "2032-01-01": 1197.80766791697, - "2031-01-01": 1174.72618141553, - "2030-01-01": 1151.94839868385, - "2029-01-01": 1129.47431972191, - "2028-01-01": 1107.30394452974, - "2027-01-01": 1084.82986556781, - "2026-01-01": 1058.74171174578, - "2025-01-01": 1042.80080704425, - "2024-01-01": 1020.16981446794, - "2023-01-01": 965, - "2015-01-01": 965 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1362.54571948157, - "2034-01-01": 1336.1612577847, - "2033-01-01": 1310.10253018286, - "2032-01-01": 1284.69527077106, - "2031-01-01": 1259.9394795493, - "2030-01-01": 1235.50942242257, - "2029-01-01": 1211.40509939086, - "2028-01-01": 1187.62651045418, - "2027-01-01": 1163.52218742247, - "2026-01-01": 1135.54162865998, - "2025-01-01": 1118.44438890238, - "2024-01-01": 1094.17176992158, - "2023-01-01": 1035, - "2015-01-01": 1035 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1446.79975430942, - "2034-01-01": 1418.78378966704, - "2033-01-01": 1391.11370113136, - "2032-01-01": 1364.13536480907, - "2031-01-01": 1337.84878070018, - "2030-01-01": 1311.90807269798, - "2029-01-01": 1286.31324080247, - "2028-01-01": 1261.06428501366, - "2027-01-01": 1235.46945311816, - "2026-01-01": 1205.75869555297, - "2025-01-01": 1187.60423517267, - "2024-01-01": 1161.83070062204, - "2023-01-01": 1099, - "2015-01-01": 1099 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1524.47144266634, - "2034-01-01": 1494.95143624607, - "2033-01-01": 1465.79587434951, - "2032-01-01": 1437.36920150037, - "2031-01-01": 1409.67141769864, - "2030-01-01": 1382.33807842061, - "2029-01-01": 1355.3691836663, - "2028-01-01": 1328.76473343569, - "2027-01-01": 1301.79583868137, - "2026-01-01": 1270.49005409494, - "2025-01-01": 1251.3609684531, - "2024-01-01": 1224.20377736153, - "2023-01-01": 1158, - "2015-01-01": 1158 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1596.87725384652, - "2034-01-01": 1565.95517458246, - "2033-01-01": 1535.41484938339, - "2032-01-01": 1505.63803231429, - "2031-01-01": 1476.62472337517, - "2030-01-01": 1447.99316850104, - "2029-01-01": 1419.7433676919, - "2028-01-01": 1391.87532094774, - "2027-01-01": 1363.6255201386, - "2026-01-01": 1330.8328459561, - "2025-01-01": 1310.79521134163, - "2024-01-01": 1282.34817093224, - "2023-01-01": 1213, - "2015-01-01": 1213 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1692.97951232203, - "2034-01-01": 1660.19650001075, - "2033-01-01": 1627.81821624652, - "2032-01-01": 1596.2493895764, - "2031-01-01": 1565.49002000039, - "2030-01-01": 1535.13537897143, - "2029-01-01": 1505.18546648951, - "2028-01-01": 1475.64028255466, - "2027-01-01": 1445.69037007275, - "2026-01-01": 1410.92418788091, - "2025-01-01": 1389.68066099368, - "2024-01-01": 1359.52163876246, - "2023-01-01": 1286, - "2015-01-01": 1286 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1816.72762597543, - "2034-01-01": 1781.54834371294, - "2033-01-01": 1746.80337357714, - "2032-01-01": 1712.92702769474, - "2031-01-01": 1679.91930606574, - "2030-01-01": 1647.34589656343, - "2029-01-01": 1615.20679918781, - "2028-01-01": 1583.5020139389, - "2027-01-01": 1551.36291656329, - "2026-01-01": 1514.05550487998, - "2025-01-01": 1491.25918520317, - "2024-01-01": 1458.89569322877, - "2023-01-01": 1380, - "2015-01-01": 1380 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1931.26045456953, - "2034-01-01": 1893.86334799049, - "2033-01-01": 1856.92793408527, - "2032-01-01": 1820.91590552767, - "2031-01-01": 1785.82726231771, - "2030-01-01": 1751.20031178156, - "2029-01-01": 1717.03505391922, - "2028-01-01": 1683.3314887307, - "2027-01-01": 1649.16623086837, - "2026-01-01": 1609.50683018763, - "2025-01-01": 1585.27335122685, - "2024-01-01": 1550.86955214971, - "2023-01-01": 1467, - "2015-01-01": 1467 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2035.26152881016, - "2034-01-01": 1995.85053578276, - "2033-01-01": 1956.92609822483, - "2032-01-01": 1918.97477160585, - "2031-01-01": 1881.99655592582, - "2030-01-01": 1845.50489571526, - "2029-01-01": 1809.49979097417, - "2028-01-01": 1773.98124170257, - "2027-01-01": 1737.97613696148, - "2026-01-01": 1696.18102213366, - "2025-01-01": 1670.64253646675, - "2024-01-01": 1634.3860447331, - "2023-01-01": 1546, - "2015-01-01": 1546 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2133.99672587404, - "2034-01-01": 2092.67381533237, - "2033-01-01": 2051.86106418011, - "2032-01-01": 2012.06863180665, - "2031-01-01": 1973.296518212, - "2030-01-01": 1935.03456400675, - "2029-01-01": 1897.2827691909, - "2028-01-01": 1860.04113376446, - "2027-01-01": 1822.28933894862, - "2026-01-01": 1778.46664739887, - "2025-01-01": 1751.68923131474, - "2024-01-01": 1713.67385414771, - "2023-01-01": 1621, - "2015-01-01": 1621 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2235.36486152629, - "2034-01-01": 2192.07904900331, - "2033-01-01": 2149.32762922753, - "2032-01-01": 2107.64499494614, - "2031-01-01": 2067.03114615914, - "2030-01-01": 2026.95169011935, - "2029-01-01": 1987.40662682675, - "2028-01-01": 1948.39595628134, - "2027-01-01": 1908.85089298874, - "2026-01-01": 1862.9465560045, - "2025-01-01": 1834.89717135869, - "2024-01-01": 1795.0760051467, - "2023-01-01": 1698, - "2015-01-01": 1698 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2343.31534364947, - "2034-01-01": 2297.93916797756, - "2033-01-01": 2253.1231920053, - "2032-01-01": 2209.42761543235, - "2031-01-01": 2166.8524382587, - "2030-01-01": 2124.83746078471, - "2029-01-01": 2083.38268301037, - "2028-01-01": 2042.48810493568, - "2027-01-01": 2001.03332716135, - "2026-01-01": 1952.91217296113, - "2025-01-01": 1923.5082243925, - "2024-01-01": 1881.76401010667, - "2023-01-01": 1780, - "2015-01-01": 1780 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2444.68347930172, - "2034-01-01": 2397.3444016485, - "2033-01-01": 2350.58975705272, - "2032-01-01": 2305.00397857184, - "2031-01-01": 2260.58706620585, - "2030-01-01": 2216.75458689731, - "2029-01-01": 2173.50654064621, - "2028-01-01": 2130.84292745256, - "2027-01-01": 2087.59488120147, - "2026-01-01": 2037.39208156675, - "2025-01-01": 2006.71616443645, - "2024-01-01": 1963.16616110567, - "2023-01-01": 1857, - "2015-01-01": 1857 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2540.78573777723, - "2034-01-01": 2491.58572707679, - "2033-01-01": 2442.99312391586, - "2032-01-01": 2395.61533583395, - "2031-01-01": 2349.45236283106, - "2030-01-01": 2303.89679736769, - "2029-01-01": 2258.94863944383, - "2028-01-01": 2214.60788905948, - "2027-01-01": 2169.65973113562, - "2026-01-01": 2117.48342349157, - "2025-01-01": 2085.6016140885, - "2024-01-01": 2040.33962893589, - "2023-01-01": 1930, - "2015-01-01": 1930 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3100.2851878059, - "2034-01-01": 3040.25097785795, - "2033-01-01": 2980.95793099577, - "2032-01-01": 2923.14721030516, - "2031-01-01": 2866.81881578609, - "2030-01-01": 2811.2315843528, - "2029-01-01": 2756.38551600529, - "2028-01-01": 2702.28061074356, - "2027-01-01": 2647.43454239605, - "2026-01-01": 2583.76863332779, - "2025-01-01": 2544.86621822716, - "2024-01-01": 2489.63721561866, - "2023-01-01": 2355, - "2015-01-01": 2355 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 681.931094387879, - "2034-01-01": 668.726117422683, - "2033-01-01": 655.684164864463, - "2032-01-01": 642.9682611202, - "2031-01-01": 630.578406189892, - "2030-01-01": 618.351575666562, - "2029-01-01": 606.287769550209, - "2028-01-01": 594.386987840834, - "2027-01-01": 582.323181724481, - "2026-01-01": 568.319385165094, - "2025-01-01": 559.762505750177, - "2024-01-01": 547.614470356886, - "2023-01-01": 518, - "2015-01-01": 518 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 975.503746991156, - "2034-01-01": 956.614001950208, - "2033-01-01": 937.957463638161, - "2032-01-01": 919.767338783915, - "2031-01-01": 902.043627387471, - "2030-01-01": 884.553122719927, - "2029-01-01": 867.295824781283, - "2028-01-01": 850.27173357154, - "2027-01-01": 833.014435632897, - "2026-01-01": 812.981977620337, - "2025-01-01": 800.741345098227, - "2024-01-01": 783.363557016318, - "2023-01-01": 741, - "2015-01-01": 741 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1122.94830793989, - "2034-01-01": 1101.2034327443, - "2033-01-01": 1079.72701279804, - "2032-01-01": 1058.78750335045, - "2031-01-01": 1038.3849044015, - "2030-01-01": 1018.25076070189, - "2029-01-01": 998.385072251598, - "2028-01-01": 978.78783905064, - "2027-01-01": 958.922150600352, - "2026-01-01": 935.86184468306, - "2025-01-01": 921.771076071238, - "2024-01-01": 901.766685742131, - "2023-01-01": 853, - "2015-01-01": 853 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1249.32936018166, - "2034-01-01": 1225.13723056781, - "2033-01-01": 1201.2437692208, - "2032-01-01": 1177.94764440747, - "2031-01-01": 1155.24885612781, - "2030-01-01": 1132.84873611499, - "2029-01-01": 1110.74728436901, - "2028-01-01": 1088.94450088987, - "2027-01-01": 1066.84304914389, - "2026-01-01": 1041.18744502254, - "2025-01-01": 1025.51084547668, - "2024-01-01": 1003.25508179283, - "2023-01-01": 949, - "2015-01-01": 949 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1358.59631159902, - "2034-01-01": 1332.28832660272, - "2033-01-01": 1306.30513154465, - "2032-01-01": 1280.97151636302, - "2031-01-01": 1256.28748105785, - "2030-01-01": 1231.92823569091, - "2029-01-01": 1207.89378026219, - "2028-01-01": 1184.1841147717, - "2027-01-01": 1160.14965934298, - "2026-01-01": 1132.25020364938, - "2025-01-01": 1115.20252110846, - "2024-01-01": 1091.00025754499, - "2023-01-01": 1032, - "2015-01-01": 1032 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1457.3315086629, - "2034-01-01": 1429.11160615233, - "2033-01-01": 1401.24009749992, - "2032-01-01": 1374.06537656382, - "2031-01-01": 1347.58744334404, - "2030-01-01": 1321.4579039824, - "2029-01-01": 1295.67675847892, - "2028-01-01": 1270.2440068336, - "2027-01-01": 1244.46286133012, - "2026-01-01": 1214.53582891459, - "2025-01-01": 1196.24921595646, - "2024-01-01": 1170.2880669596, - "2023-01-01": 1107, - "2015-01-01": 1107 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1548.16788996167, - "2034-01-01": 1518.18902333798, - "2033-01-01": 1488.58026617878, - "2032-01-01": 1459.71172794856, - "2031-01-01": 1431.58340864732, - "2030-01-01": 1403.82519881057, - "2029-01-01": 1376.43709843831, - "2028-01-01": 1349.41910753054, - "2027-01-01": 1322.03100715828, - "2026-01-01": 1290.23860415859, - "2025-01-01": 1270.81217521662, - "2024-01-01": 1243.23285162104, - "2023-01-01": 1176, - "2015-01-01": 1176 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1631.10545549533, - "2034-01-01": 1599.52057815966, - "2033-01-01": 1568.32563758122, - "2032-01-01": 1537.91057051723, - "2031-01-01": 1508.27537696771, - "2030-01-01": 1479.03012017542, - "2029-01-01": 1450.17480014036, - "2028-01-01": 1421.70941686254, - "2027-01-01": 1392.85409682748, - "2026-01-01": 1359.35852938137, - "2025-01-01": 1338.89139888894, - "2024-01-01": 1309.83461152931, - "2023-01-01": 1239, - "2015-01-01": 1239 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1708.77714385225, - "2034-01-01": 1675.68822473869, - "2033-01-01": 1643.00781079937, - "2032-01-01": 1611.14440720853, - "2031-01-01": 1580.09801396618, - "2030-01-01": 1549.46012589806, - "2029-01-01": 1519.23074300419, - "2028-01-01": 1489.40986528456, - "2027-01-01": 1459.18048239069, - "2026-01-01": 1424.08988792334, - "2025-01-01": 1402.64813216936, - "2024-01-01": 1372.2076882688, - "2023-01-01": 1298, - "2015-01-01": 1298 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1811.46174879869, - "2034-01-01": 1776.38443547029, - "2033-01-01": 1741.74017539286, - "2032-01-01": 1707.96202181736, - "2031-01-01": 1675.04997474381, - "2030-01-01": 1642.57098092121, - "2029-01-01": 1610.52504034959, - "2028-01-01": 1578.91215302893, - "2027-01-01": 1546.86621245731, - "2026-01-01": 1509.66693819917, - "2025-01-01": 1486.93669481128, - "2024-01-01": 1454.66701005999, - "2023-01-01": 1376, - "2015-01-01": 1376 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1943.1086782172, - "2034-01-01": 1905.48214153645, - "2033-01-01": 1868.3201299999, - "2032-01-01": 1832.08716875177, - "2031-01-01": 1796.78325779205, - "2030-01-01": 1761.94387197653, - "2029-01-01": 1727.56901130523, - "2028-01-01": 1693.65867577813, - "2027-01-01": 1659.28381510682, - "2026-01-01": 1619.38110521946, - "2025-01-01": 1594.99895460861, - "2024-01-01": 1560.38408927947, - "2023-01-01": 1476, - "2015-01-01": 1476 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2065.54032257641, - "2034-01-01": 2025.54300817797, - "2033-01-01": 1986.03948778445, - "2032-01-01": 1947.52355540076, - "2031-01-01": 1909.99521102691, - "2030-01-01": 1872.96066065798, - "2029-01-01": 1836.41990429397, - "2028-01-01": 1800.37294193488, - "2027-01-01": 1763.83218557087, - "2026-01-01": 1721.41528054832, - "2025-01-01": 1695.49685622013, - "2024-01-01": 1658.70097295358, - "2023-01-01": 1569, - "2015-01-01": 1569 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2177.44021258215, - "2034-01-01": 2135.2760583342, - "2033-01-01": 2093.63244920043, - "2032-01-01": 2053.029930295, - "2031-01-01": 2013.46850161792, - "2030-01-01": 1974.42761805501, - "2029-01-01": 1935.90727960626, - "2028-01-01": 1897.9074862717, - "2027-01-01": 1859.38714782296, - "2026-01-01": 1814.67232251557, - "2025-01-01": 1787.34977704786, - "2024-01-01": 1748.56049029013, - "2023-01-01": 1654, - "2015-01-01": 1654 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2281.44128682277, - "2034-01-01": 2237.26324612646, - "2033-01-01": 2193.63061333999, - "2032-01-01": 2151.08879637318, - "2031-01-01": 2109.63779522603, - "2030-01-01": 2068.73220198871, - "2029-01-01": 2028.37201666122, - "2028-01-01": 1988.55723924356, - "2027-01-01": 1948.19705391607, - "2026-01-01": 1901.3465144616, - "2025-01-01": 1872.71896228776, - "2024-01-01": 1832.07698287352, - "2023-01-01": 1733, - "2015-01-01": 1733 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2390.70823824013, - "2034-01-01": 2344.41434216137, - "2033-01-01": 2298.69197566383, - "2032-01-01": 2254.11266832873, - "2031-01-01": 2210.67642015607, - "2030-01-01": 2167.81170156463, - "2029-01-01": 2125.5185125544, - "2028-01-01": 2083.79685312539, - "2027-01-01": 2041.50366411517, - "2026-01-01": 1992.40927308844, - "2025-01-01": 1962.41063791954, - "2024-01-01": 1919.82215862568, - "2023-01-01": 1816, - "2015-01-01": 1816 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2505.24106683424, - "2034-01-01": 2456.72934643893, - "2033-01-01": 2408.81653617196, - "2032-01-01": 2362.10154616166, - "2031-01-01": 2316.58437640804, - "2030-01-01": 2271.66611678275, - "2029-01-01": 2227.34676728581, - "2028-01-01": 2183.62632791719, - "2027-01-01": 2139.30697842025, - "2026-01-01": 2087.86059839609, - "2025-01-01": 2056.42480394322, - "2024-01-01": 2011.79601754663, - "2023-01-01": 1903, - "2015-01-01": 1903 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2613.19154895741, - "2034-01-01": 2562.58946541318, - "2033-01-01": 2512.61209894973, - "2032-01-01": 2463.88416664787, - "2031-01-01": 2416.4056685076, - "2030-01-01": 2369.55188744812, - "2029-01-01": 2323.32282346943, - "2028-01-01": 2277.71847657154, - "2027-01-01": 2231.48941259285, - "2026-01-01": 2177.82621535272, - "2025-01-01": 2145.03585697703, - "2024-01-01": 2098.4840225066, - "2023-01-01": 1985, - "2015-01-01": 1985 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2715.87615390385, - "2034-01-01": 2663.28567614478, - "2033-01-01": 2611.34446354322, - "2032-01-01": 2560.7017812567, - "2031-01-01": 2511.35762928523, - "2030-01-01": 2462.66274247127, - "2029-01-01": 2414.61712081483, - "2028-01-01": 2367.22076431591, - "2027-01-01": 2319.17514265947, - "2026-01-01": 2263.40326562855, - "2025-01-01": 2229.32441961895, - "2024-01-01": 2180.94334429779, - "2023-01-01": 2063, - "2015-01-01": 2063 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3313.55321346388, - "2034-01-01": 3249.38926168512, - "2033-01-01": 3186.01745745918, - "2032-01-01": 3124.22994833889, - "2031-01-01": 3064.02673432424, - "2030-01-01": 3004.61566786242, - "2029-01-01": 2945.99674895343, - "2028-01-01": 2888.16997759726, - "2027-01-01": 2829.55105868826, - "2026-01-01": 2761.50558390066, - "2025-01-01": 2719.92707909883, - "2024-01-01": 2660.89888395421, - "2023-01-01": 2517, - "2015-01-01": 2517 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 714.842826742507, - "2034-01-01": 701.000543939221, - "2033-01-01": 687.329153516223, - "2032-01-01": 673.9995478538, - "2031-01-01": 661.011726951952, - "2030-01-01": 648.194798430392, - "2029-01-01": 635.548762289118, - "2028-01-01": 623.073618528133, - "2027-01-01": 610.42758238686, - "2026-01-01": 595.747926920166, - "2025-01-01": 586.77807069951, - "2024-01-01": 574.043740161755, - "2023-01-01": 543, - "2015-01-01": 543 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1022.89664158182, - "2034-01-01": 1003.08917613402, - "2033-01-01": 983.526247296695, - "2032-01-01": 964.4523916803, - "2031-01-01": 945.867609284838, - "2030-01-01": 927.527363499842, - "2029-01-01": 909.431654325313, - "2028-01-01": 891.580481761251, - "2027-01-01": 873.484772586722, - "2026-01-01": 852.479077747641, - "2025-01-01": 839.643758625266, - "2024-01-01": 821.421705535329, - "2023-01-01": 777, - "2015-01-01": 777 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1179.55648758985, - "2034-01-01": 1156.71544635275, - "2033-01-01": 1134.15639327907, - "2032-01-01": 1112.16131653224, - "2031-01-01": 1090.73021611225, - "2030-01-01": 1069.58110385567, - "2029-01-01": 1048.71397976252, - "2028-01-01": 1028.12884383279, - "2027-01-01": 1007.26171973964, - "2026-01-01": 983.038936501784, - "2025-01-01": 968.23784778409, - "2024-01-01": 947.225029806505, - "2023-01-01": 896, - "2015-01-01": 896 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1309.88694771417, - "2034-01-01": 1284.52217535824, - "2033-01-01": 1259.47054834004, - "2032-01-01": 1235.0452119973, - "2031-01-01": 1211.24616633, - "2030-01-01": 1187.76026600044, - "2029-01-01": 1164.58751100861, - "2028-01-01": 1141.7279013545, - "2027-01-01": 1118.55514636266, - "2026-01-01": 1091.65596185187, - "2025-01-01": 1075.21948498345, - "2024-01-01": 1051.88493823379, - "2023-01-01": 995, - "2015-01-01": 995 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1427.05271489664, - "2034-01-01": 1399.41913375712, - "2033-01-01": 1372.12670794031, - "2032-01-01": 1345.51659276891, - "2031-01-01": 1319.58878824294, - "2030-01-01": 1294.00213903968, - "2029-01-01": 1268.75664515912, - "2028-01-01": 1243.85230660128, - "2027-01-01": 1218.60681272073, - "2026-01-01": 1189.30157049993, - "2025-01-01": 1171.39489620307, - "2024-01-01": 1145.97313873912, - "2023-01-01": 1084, - "2015-01-01": 1084 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1529.73731984308, - "2034-01-01": 1500.11534448872, - "2033-01-01": 1470.8590725338, - "2032-01-01": 1442.33420737775, - "2031-01-01": 1414.54074902057, - "2030-01-01": 1387.11299406283, - "2029-01-01": 1360.05094250452, - "2028-01-01": 1333.35459434565, - "2027-01-01": 1306.29254278735, - "2026-01-01": 1274.87862077575, - "2025-01-01": 1255.68345884499, - "2024-01-01": 1228.43246053031, - "2023-01-01": 1162, - "2015-01-01": 1162 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1624.52310902441, - "2034-01-01": 1593.06569285635, - "2033-01-01": 1561.99663985086, - "2032-01-01": 1531.70431317051, - "2031-01-01": 1502.1887128153, - "2030-01-01": 1473.06147562266, - "2029-01-01": 1444.32260159258, - "2028-01-01": 1415.97209072508, - "2027-01-01": 1387.233216695, - "2026-01-01": 1353.87282103036, - "2025-01-01": 1333.48828589907, - "2024-01-01": 1304.54875756833, - "2023-01-01": 1234, - "2015-01-01": 1234 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1711.41008244062, - "2034-01-01": 1678.27017886001, - "2033-01-01": 1645.53940989151, - "2032-01-01": 1613.62691014722, - "2031-01-01": 1582.53267962714, - "2030-01-01": 1551.84758371917, - "2029-01-01": 1521.5716224233, - "2028-01-01": 1491.70479573954, - "2027-01-01": 1461.42883444368, - "2026-01-01": 1426.28417126375, - "2025-01-01": 1404.80937736531, - "2024-01-01": 1374.32202985319, - "2023-01-01": 1300, - "2015-01-01": 1300 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1793.0311786801, - "2034-01-01": 1758.31075662103, - "2033-01-01": 1724.01898174787, - "2032-01-01": 1690.58450124655, - "2031-01-01": 1658.00731511705, - "2030-01-01": 1625.85877617347, - "2029-01-01": 1594.1388844158, - "2028-01-01": 1562.84763984405, - "2027-01-01": 1531.12774808638, - "2026-01-01": 1494.30695481633, - "2025-01-01": 1471.80797843966, - "2024-01-01": 1439.86661896926, - "2023-01-01": 1362, - "2015-01-01": 1362 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1900.98166080328, - "2034-01-01": 1864.17087559528, - "2033-01-01": 1827.81454452565, - "2032-01-01": 1792.36712173276, - "2031-01-01": 1757.82860721661, - "2030-01-01": 1723.74454683883, - "2029-01-01": 1690.11494059942, - "2028-01-01": 1656.93978849839, - "2027-01-01": 1623.31018225898, - "2026-01-01": 1584.27257177296, - "2025-01-01": 1560.41903147347, - "2024-01-01": 1526.55462392923, - "2023-01-01": 1444, - "2015-01-01": 1444 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2039.21093669271, - "2034-01-01": 1999.72346696474, - "2033-01-01": 1960.72349686304, - "2032-01-01": 1922.69852601388, - "2031-01-01": 1885.64855441726, - "2030-01-01": 1849.08608244692, - "2029-01-01": 1813.01111010284, - "2028-01-01": 1777.42363738504, - "2027-01-01": 1741.34866504097, - "2026-01-01": 1699.47244714427, - "2025-01-01": 1673.88440426067, - "2024-01-01": 1637.55755710968, - "2023-01-01": 1549, - "2015-01-01": 1549 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2166.90845822867, - "2034-01-01": 2124.94824184891, - "2033-01-01": 2083.50605283187, - "2032-01-01": 2043.09991854025, - "2031-01-01": 2003.72983897406, - "2030-01-01": 1964.87778677058, - "2029-01-01": 1926.54376192981, - "2028-01-01": 1888.72776445176, - "2027-01-01": 1850.393739611, - "2026-01-01": 1805.89518915395, - "2025-01-01": 1778.70479626408, - "2024-01-01": 1740.10312395258, - "2023-01-01": 1646, - "2015-01-01": 1646 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2284.07422541114, - "2034-01-01": 2239.84520024779, - "2033-01-01": 2196.16221243213, - "2032-01-01": 2153.57129931187, - "2031-01-01": 2112.07246088699, - "2030-01-01": 2071.11965980982, - "2029-01-01": 2030.71289608033, - "2028-01-01": 1990.85216969855, - "2027-01-01": 1950.44540596906, - "2026-01-01": 1903.540797802, - "2025-01-01": 1874.8802074837, - "2024-01-01": 1834.19132445791, - "2023-01-01": 1735, - "2015-01-01": 1735 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2393.3411768285, - "2034-01-01": 2346.9962962827, - "2033-01-01": 2301.22357475597, - "2032-01-01": 2256.59517126742, - "2031-01-01": 2213.11108581703, - "2030-01-01": 2170.19915938573, - "2029-01-01": 2127.85939197351, - "2028-01-01": 2086.09178358038, - "2027-01-01": 2043.75201616816, - "2026-01-01": 1994.60355642884, - "2025-01-01": 1964.57188311549, - "2024-01-01": 1921.93650021007, - "2023-01-01": 1818, - "2015-01-01": 1818 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2506.55753612842, - "2034-01-01": 2458.02032349959, - "2033-01-01": 2410.08233571803, - "2032-01-01": 2363.34279763101, - "2031-01-01": 2317.80170923852, - "2030-01-01": 2272.85984569331, - "2029-01-01": 2228.51720699536, - "2028-01-01": 2184.77379314469, - "2027-01-01": 2140.43115444674, - "2026-01-01": 2088.95774006629, - "2025-01-01": 2057.50542654119, - "2024-01-01": 2012.85318833882, - "2023-01-01": 1904, - "2015-01-01": 1904 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2627.67271119345, - "2034-01-01": 2576.79021308045, - "2033-01-01": 2526.5358939565, - "2032-01-01": 2477.53793281065, - "2031-01-01": 2429.7963296429, - "2030-01-01": 2382.6829054642, - "2029-01-01": 2336.19766027455, - "2028-01-01": 2290.34059407395, - "2027-01-01": 2243.8553488843, - "2026-01-01": 2189.89477372496, - "2025-01-01": 2156.92270555474, - "2024-01-01": 2110.11290122074, - "2023-01-01": 1996, - "2015-01-01": 1996 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2740.88907049337, - "2034-01-01": 2687.81424029735, - "2033-01-01": 2635.39465491856, - "2032-01-01": 2584.28555917424, - "2031-01-01": 2534.48695306439, - "2030-01-01": 2485.34359177178, - "2029-01-01": 2436.8554752964, - "2028-01-01": 2389.02260363826, - "2027-01-01": 2340.53448716288, - "2026-01-01": 2284.2489573624, - "2025-01-01": 2249.85624898044, - "2024-01-01": 2201.02958934949, - "2023-01-01": 2082, - "2015-01-01": 2082 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2848.83955261655, - "2034-01-01": 2793.67435927159, - "2033-01-01": 2739.19021769633, - "2032-01-01": 2686.06817966045, - "2031-01-01": 2634.30824516395, - "2030-01-01": 2583.22936243714, - "2029-01-01": 2532.83153148002, - "2028-01-01": 2483.1147522926, - "2027-01-01": 2432.71692133548, - "2026-01-01": 2374.21457431904, - "2025-01-01": 2338.46730201425, - "2024-01-01": 2287.71759430946, - "2023-01-01": 2164, - "2015-01-01": 2164 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3474.16246735447, - "2034-01-01": 3406.88846308583, - "2033-01-01": 3340.44500207977, - "2032-01-01": 3275.66262759886, - "2031-01-01": 3212.5413396431, - "2030-01-01": 3150.25059494992, - "2029-01-01": 3088.79039351931, - "2028-01-01": 3028.16073535128, - "2027-01-01": 2966.70053392067, - "2026-01-01": 2895.35686766541, - "2025-01-01": 2851.76303605158, - "2024-01-01": 2789.87372060197, - "2023-01-01": 2639, - "2015-01-01": 2639 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 743.805151214579, - "2034-01-01": 729.402039273775, - "2033-01-01": 715.176743529772, - "2032-01-01": 701.307080179369, - "2031-01-01": 687.793049222565, - "2030-01-01": 674.456834462562, - "2029-01-01": 661.298435899359, - "2028-01-01": 648.317853532956, - "2027-01-01": 635.159454969753, - "2026-01-01": 619.885043664629, - "2025-01-01": 610.551767854923, - "2024-01-01": 597.30149759004, - "2023-01-01": 565, - "2015-01-01": 565 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1062.39072040737, - "2034-01-01": 1041.81848795387, - "2033-01-01": 1021.50023367881, - "2032-01-01": 1001.68993576062, - "2031-01-01": 982.38759419931, - "2030-01-01": 963.339230816439, - "2029-01-01": 944.544845612005, - "2028-01-01": 926.004438586009, - "2027-01-01": 907.210053381576, - "2026-01-01": 885.393327853727, - "2025-01-01": 872.062436564465, - "2024-01-01": 853.136829301172, - "2023-01-01": 807, - "2015-01-01": 807 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1224.31644359214, - "2034-01-01": 1200.60866641524, - "2033-01-01": 1177.19357784547, - "2032-01-01": 1154.36386648993, - "2031-01-01": 1132.11953234865, - "2030-01-01": 1110.16788681448, - "2029-01-01": 1088.50892988744, - "2028-01-01": 1067.14266156752, - "2027-01-01": 1045.48370464048, - "2026-01-01": 1020.34175328868, - "2025-01-01": 1004.97901611518, - "2024-01-01": 983.168836741127, - "2023-01-01": 930, - "2015-01-01": 930 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1361.22925018739, - "2034-01-01": 1334.87028072404, - "2033-01-01": 1308.83673063679, - "2032-01-01": 1283.45401930171, - "2031-01-01": 1258.72214671882, - "2030-01-01": 1234.31569351202, - "2029-01-01": 1210.2346596813, - "2028-01-01": 1186.47904522668, - "2027-01-01": 1162.39801139597, - "2026-01-01": 1134.44448698978, - "2025-01-01": 1117.36376630441, - "2024-01-01": 1093.11459912938, - "2023-01-01": 1034, - "2015-01-01": 1034 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1481.02795595823, - "2034-01-01": 1452.34919324424, - "2033-01-01": 1424.02448932919, - "2032-01-01": 1396.40790301202, - "2031-01-01": 1369.49943429272, - "2030-01-01": 1342.94502437236, - "2029-01-01": 1316.74467325094, - "2028-01-01": 1290.89838092845, - "2027-01-01": 1264.69802980703, - "2026-01-01": 1234.28437897824, - "2025-01-01": 1215.70042271998, - "2024-01-01": 1189.31714121911, - "2023-01-01": 1125, - "2015-01-01": 1125 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1587.66196878722, - "2034-01-01": 1556.91833515783, - "2033-01-01": 1526.55425256089, - "2032-01-01": 1496.94927202888, - "2031-01-01": 1468.10339356179, - "2030-01-01": 1439.63706612717, - "2029-01-01": 1411.550289725, - "2028-01-01": 1383.8430643553, - "2027-01-01": 1355.75628795314, - "2026-01-01": 1323.15285426468, - "2025-01-01": 1303.23085315582, - "2024-01-01": 1274.94797538688, - "2023-01-01": 1206, - "2015-01-01": 1206 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1686.39716585111, - "2034-01-01": 1653.74161470744, - "2033-01-01": 1621.48921851617, - "2032-01-01": 1590.04313222968, - "2031-01-01": 1559.40335584798, - "2030-01-01": 1529.16673441866, - "2029-01-01": 1499.33326794173, - "2028-01-01": 1469.9029564172, - "2027-01-01": 1440.06948994027, - "2026-01-01": 1405.43847952989, - "2025-01-01": 1384.27754800382, - "2024-01-01": 1354.23578480149, - "2023-01-01": 1281, - "2015-01-01": 1281 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1777.23354714988, - "2034-01-01": 1742.81903189309, - "2033-01-01": 1708.82938719503, - "2032-01-01": 1675.68948361442, - "2031-01-01": 1643.39932115126, - "2030-01-01": 1611.53402924683, - "2029-01-01": 1580.09360790112, - "2028-01-01": 1549.07805711414, - "2027-01-01": 1517.63763576844, - "2026-01-01": 1481.14125477389, - "2025-01-01": 1458.84050726398, - "2024-01-01": 1427.18056946293, - "2023-01-01": 1350, - "2015-01-01": 1350 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1861.48758197772, - "2034-01-01": 1825.44156377543, - "2033-01-01": 1789.84055814354, - "2032-01-01": 1755.12957765244, - "2031-01-01": 1721.30862230214, - "2030-01-01": 1687.93267952224, - "2029-01-01": 1655.00174931273, - "2028-01-01": 1622.51583167363, - "2027-01-01": 1589.58490146412, - "2026-01-01": 1551.35832166688, - "2025-01-01": 1528.00035353427, - "2024-01-01": 1494.83950016339, - "2023-01-01": 1414, - "2015-01-01": 1414 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1972.07100268927, - "2034-01-01": 1933.883636871, - "2033-01-01": 1896.16772001345, - "2032-01-01": 1859.39470107733, - "2031-01-01": 1823.56458006266, - "2030-01-01": 1788.20590800871, - "2029-01-01": 1753.31868491547, - "2028-01-01": 1718.90291078295, - "2027-01-01": 1684.01568768972, - "2026-01-01": 1643.51822196392, - "2025-01-01": 1618.77265176403, - "2024-01-01": 1583.64184670775, - "2023-01-01": 1498, - "2015-01-01": 1498 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2116.88262504963, - "2034-01-01": 2075.89111354377, - "2033-01-01": 2035.40567008119, - "2032-01-01": 1995.93236270518, - "2031-01-01": 1957.47119141573, - "2030-01-01": 1919.51608816956, - "2029-01-01": 1882.06705296667, - "2028-01-01": 1845.12408580707, - "2027-01-01": 1807.67505060418, - "2026-01-01": 1764.20380568624, - "2025-01-01": 1737.64113754109, - "2024-01-01": 1699.93063384917, - "2023-01-01": 1608, - "2015-01-01": 1608 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2248.52955446814, - "2034-01-01": 2204.98881960993, - "2033-01-01": 2161.98562468823, - "2032-01-01": 2120.05750963958, - "2031-01-01": 2079.20447446397, - "2030-01-01": 2038.88897922488, - "2029-01-01": 1999.11102392231, - "2028-01-01": 1959.87060855626, - "2027-01-01": 1920.0926532537, - "2026-01-01": 1873.91797270653, - "2025-01-01": 1845.70339733842, - "2024-01-01": 1805.64771306865, - "2023-01-01": 1708, - "2015-01-01": 1708 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2369.64472953317, - "2034-01-01": 2323.75870919079, - "2033-01-01": 2278.43918292671, - "2032-01-01": 2234.25264481923, - "2031-01-01": 2191.19909486835, - "2030-01-01": 2148.71203899577, - "2029-01-01": 2106.7914772015, - "2028-01-01": 2065.43740948552, - "2027-01-01": 2023.51684769125, - "2026-01-01": 1974.85500636519, - "2025-01-01": 1945.12067635197, - "2024-01-01": 1902.90742595057, - "2023-01-01": 1800, - "2015-01-01": 1800 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2484.17755812728, - "2034-01-01": 2436.07371346834, - "2033-01-01": 2388.56374343483, - "2032-01-01": 2342.24152265216, - "2031-01-01": 2297.10705112032, - "2030-01-01": 2252.5664542139, - "2029-01-01": 2208.6197319329, - "2028-01-01": 2165.26688427732, - "2027-01-01": 2121.32016199632, - "2026-01-01": 2070.30633167284, - "2025-01-01": 2039.13484237565, - "2024-01-01": 1994.88128487151, - "2023-01-01": 1887, - "2015-01-01": 1887 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2601.34332530975, - "2034-01-01": 2550.97067186722, - "2033-01-01": 2501.2199030351, - "2032-01-01": 2452.71290342377, - "2031-01-01": 2405.44967303326, - "2030-01-01": 2358.80832725314, - "2029-01-01": 2312.78886608342, - "2028-01-01": 2267.39128952411, - "2027-01-01": 2221.37182835439, - "2026-01-01": 2167.9519403209, - "2025-01-01": 2135.31025359527, - "2024-01-01": 2088.96948537685, - "2023-01-01": 1976, - "2015-01-01": 1976 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2726.40790825733, - "2034-01-01": 2673.61349263007, - "2033-01-01": 2621.47085991178, - "2032-01-01": 2570.63179301146, - "2031-01-01": 2521.09629192909, - "2030-01-01": 2472.21257375569, - "2029-01-01": 2423.98063849128, - "2028-01-01": 2376.40048613584, - "2027-01-01": 2328.16855087143, - "2026-01-01": 2272.18039899017, - "2025-01-01": 2237.96940040274, - "2024-01-01": 2189.40071063535, - "2023-01-01": 2071, - "2015-01-01": 2071 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2844.89014473399, - "2034-01-01": 2789.80142808961, - "2033-01-01": 2735.39281905812, - "2032-01-01": 2682.34442525242, - "2031-01-01": 2630.6562466725, - "2030-01-01": 2579.64817570548, - "2029-01-01": 2529.32021235135, - "2028-01-01": 2479.67235661012, - "2027-01-01": 2429.34439325599, - "2026-01-01": 2370.92314930843, - "2025-01-01": 2335.22543422033, - "2024-01-01": 2284.54608193288, - "2023-01-01": 2161, - "2015-01-01": 2161 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2955.47356544554, - "2034-01-01": 2898.24350118518, - "2033-01-01": 2841.71998092803, - "2032-01-01": 2786.60954867731, - "2031-01-01": 2732.91220443303, - "2030-01-01": 2679.92140419195, - "2029-01-01": 2627.63714795409, - "2028-01-01": 2576.05943571944, - "2027-01-01": 2523.77517948158, - "2026-01-01": 2463.08304960547, - "2025-01-01": 2425.99773245009, - "2024-01-01": 2373.34842847724, - "2023-01-01": 2245, - "2015-01-01": 2245 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3604.49292747879, - "2034-01-01": 3534.69519209132, - "2033-01-01": 3465.75915714073, - "2032-01-01": 3398.54652306391, - "2031-01-01": 3333.05728986086, - "2030-01-01": 3268.42975709468, - "2029-01-01": 3204.66392476539, - "2028-01-01": 3141.75979287298, - "2027-01-01": 3077.99396054369, - "2026-01-01": 3003.9738930155, - "2025-01-01": 2958.74467325094, - "2024-01-01": 2894.53362902925, - "2023-01-01": 2738, - "2015-01-01": 2738 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 780.666291451762, - "2034-01-01": 765.549396972299, - "2033-01-01": 750.619130819743, - "2032-01-01": 736.062121321001, - "2031-01-01": 721.878368476073, - "2030-01-01": 707.881243958052, - "2029-01-01": 694.070747766938, - "2028-01-01": 680.446879902731, - "2027-01-01": 666.636383711617, - "2026-01-01": 650.60501043031, - "2025-01-01": 640.809200598176, - "2024-01-01": 626.902279771493, - "2023-01-01": 593, - "2015-01-01": 593 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1116.36596146896, - "2034-01-01": 1094.74854744099, - "2033-01-01": 1073.39801506769, - "2032-01-01": 1052.58124600372, - "2031-01-01": 1032.29824024909, - "2030-01-01": 1012.28211614912, - "2029-01-01": 992.532873703817, - "2028-01-01": 973.05051291318, - "2027-01-01": 953.301270467877, - "2026-01-01": 930.376136332045, - "2025-01-01": 916.367963081371, - "2024-01-01": 896.480831781157, - "2023-01-01": 848, - "2015-01-01": 848 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1286.19050041884, - "2034-01-01": 1261.28458826633, - "2033-01-01": 1236.68615651077, - "2032-01-01": 1212.7026855491, - "2031-01-01": 1189.33417538132, - "2030-01-01": 1166.27314561048, - "2029-01-01": 1143.51959623659, - "2028-01-01": 1121.07352725964, - "2027-01-01": 1098.31997788575, - "2026-01-01": 1071.90741178822, - "2025-01-01": 1055.76827821993, - "2024-01-01": 1032.85586397428, - "2023-01-01": 977, - "2015-01-01": 977 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1429.68565348501, - "2034-01-01": 1402.00108787844, - "2033-01-01": 1374.65830703245, - "2032-01-01": 1347.9990957076, - "2031-01-01": 1322.0234539039, - "2030-01-01": 1296.38959686078, - "2029-01-01": 1271.09752457824, - "2028-01-01": 1246.14723705627, - "2027-01-01": 1220.85516477372, - "2026-01-01": 1191.49585384033, - "2025-01-01": 1173.55614139902, - "2024-01-01": 1148.08748032351, - "2023-01-01": 1086, - "2015-01-01": 1086 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1556.06670572678, - "2034-01-01": 1525.93488570195, - "2033-01-01": 1496.1750634552, - "2032-01-01": 1467.15923676463, - "2031-01-01": 1438.88740563022, - "2030-01-01": 1410.98757227389, - "2029-01-01": 1383.45973669565, - "2028-01-01": 1356.30389889549, - "2027-01-01": 1328.77606331725, - "2026-01-01": 1296.82145417981, - "2025-01-01": 1277.29591080446, - "2024-01-01": 1249.57587637421, - "2023-01-01": 1182, - "2015-01-01": 1182 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1667.96659573252, - "2034-01-01": 1635.66793585818, - "2033-01-01": 1603.76802487119, - "2032-01-01": 1572.66561165887, - "2031-01-01": 1542.36069622122, - "2030-01-01": 1512.45452967091, - "2029-01-01": 1482.94711200794, - "2028-01-01": 1453.83844323231, - "2027-01-01": 1424.33102556934, - "2026-01-01": 1390.07849614705, - "2025-01-01": 1369.14883163219, - "2024-01-01": 1339.43539371076, - "2023-01-01": 1267, - "2015-01-01": 1267 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1770.65120067895, - "2034-01-01": 1736.36414658978, - "2033-01-01": 1702.50038946468, - "2032-01-01": 1669.4832262677, - "2031-01-01": 1637.31265699885, - "2030-01-01": 1605.56538469406, - "2029-01-01": 1574.24140935334, - "2028-01-01": 1543.34073097668, - "2027-01-01": 1512.01675563596, - "2026-01-01": 1475.65554642288, - "2025-01-01": 1453.43739427411, - "2024-01-01": 1421.89471550195, - "2023-01-01": 1345, - "2015-01-01": 1345 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1865.43698986028, - "2034-01-01": 1829.31449495742, - "2033-01-01": 1793.63795678175, - "2032-01-01": 1758.85333206047, - "2031-01-01": 1724.96062079358, - "2030-01-01": 1691.5138662539, - "2029-01-01": 1658.5130684414, - "2028-01-01": 1625.9582273561, - "2027-01-01": 1592.95742954361, - "2026-01-01": 1554.64974667749, - "2025-01-01": 1531.24222132819, - "2024-01-01": 1498.01101253998, - "2023-01-01": 1417, - "2015-01-01": 1417 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1954.95690186487, - "2034-01-01": 1917.1009350824, - "2033-01-01": 1879.71232591453, - "2032-01-01": 1843.25843197586, - "2031-01-01": 1807.73925326639, - "2030-01-01": 1772.68743217151, - "2029-01-01": 1738.10296869124, - "2028-01-01": 1703.98586282556, - "2027-01-01": 1669.40139934528, - "2026-01-01": 1629.25538025128, - "2025-01-01": 1604.72455799037, - "2024-01-01": 1569.89862640922, - "2023-01-01": 1485, - "2015-01-01": 1485 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2072.12266904734, - "2034-01-01": 2031.99789348128, - "2033-01-01": 1992.3684855148, - "2032-01-01": 1953.72981274748, - "2031-01-01": 1916.08187517932, - "2030-01-01": 1878.92930521075, - "2029-01-01": 1842.27210284175, - "2028-01-01": 1806.11026807234, - "2027-01-01": 1769.45306570335, - "2026-01-01": 1726.90098889934, - "2025-01-01": 1700.89996921, - "2024-01-01": 1663.98682691455, - "2023-01-01": 1574, - "2015-01-01": 1574 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2222.20016858444, - "2034-01-01": 2179.1692783967, - "2033-01-01": 2136.66963376682, - "2032-01-01": 2095.2324802527, - "2031-01-01": 2054.85781785432, - "2030-01-01": 2015.01440101381, - "2029-01-01": 1975.70222973118, - "2028-01-01": 1936.92130400642, - "2027-01-01": 1897.60913272379, - "2026-01-01": 1851.97513930247, - "2025-01-01": 1824.09094537896, - "2024-01-01": 1784.50429722476, - "2023-01-01": 1688, - "2015-01-01": 1688 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2361.74591376806, - "2034-01-01": 2316.01284682682, - "2033-01-01": 2270.84438565028, - "2032-01-01": 2226.80513600316, - "2031-01-01": 2183.89509788546, - "2030-01-01": 2141.54966553245, - "2029-01-01": 2099.76883894416, - "2028-01-01": 2058.55261812057, - "2027-01-01": 2016.77179153228, - "2026-01-01": 1968.27215634397, - "2025-01-01": 1938.63694076413, - "2024-01-01": 1896.5644011974, - "2023-01-01": 1794, - "2015-01-01": 1794 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2488.12696600983, - "2034-01-01": 2439.94664465033, - "2033-01-01": 2392.36114207304, - "2032-01-01": 2345.96527706019, - "2031-01-01": 2300.75904961177, - "2030-01-01": 2256.14764094556, - "2029-01-01": 2212.13105106157, - "2028-01-01": 2168.7092799598, - "2027-01-01": 2124.69269007581, - "2026-01-01": 2073.59775668345, - "2025-01-01": 2042.37671016957, - "2024-01-01": 1998.0527972481, - "2023-01-01": 1890, - "2015-01-01": 1890 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2607.92567178067, - "2034-01-01": 2557.42555717053, - "2033-01-01": 2507.54890076545, - "2032-01-01": 2458.91916077049, - "2031-01-01": 2411.53633718567, - "2030-01-01": 2364.7769718059, - "2029-01-01": 2318.6410646312, - "2028-01-01": 2273.12861566157, - "2027-01-01": 2226.99270848687, - "2026-01-01": 2173.43764867191, - "2025-01-01": 2140.71336658514, - "2024-01-01": 2094.25533933782, - "2023-01-01": 1981, - "2015-01-01": 1981 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2731.67378543407, - "2034-01-01": 2678.77740087271, - "2033-01-01": 2626.53405809606, - "2032-01-01": 2575.59679888883, - "2031-01-01": 2525.96562325101, - "2030-01-01": 2476.98748939791, - "2029-01-01": 2428.6623973295, - "2028-01-01": 2380.99034704581, - "2027-01-01": 2332.66525497741, - "2026-01-01": 2276.56896567098, - "2025-01-01": 2242.29189079463, - "2024-01-01": 2193.62939380413, - "2023-01-01": 2075, - "2015-01-01": 2075 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2863.32071485258, - "2034-01-01": 2807.87510693887, - "2033-01-01": 2753.1140127031, - "2032-01-01": 2699.72194582323, - "2031-01-01": 2647.69890629926, - "2030-01-01": 2596.36038045323, - "2029-01-01": 2545.70636828514, - "2028-01-01": 2495.73686979501, - "2027-01-01": 2445.08285762692, - "2026-01-01": 2386.28313269127, - "2025-01-01": 2350.35415059196, - "2024-01-01": 2299.3464730236, - "2023-01-01": 2175, - "2015-01-01": 2175 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2985.7523592118, - "2034-01-01": 2927.93597358039, - "2033-01-01": 2870.83337048765, - "2032-01-01": 2815.15833247223, - "2031-01-01": 2760.91085953412, - "2030-01-01": 2707.37716913468, - "2029-01-01": 2654.55726127389, - "2028-01-01": 2602.45113595176, - "2027-01-01": 2549.63122809097, - "2026-01-01": 2488.31730802014, - "2025-01-01": 2450.85205220348, - "2024-01-01": 2397.66335669772, - "2023-01-01": 2268, - "2015-01-01": 2268 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3102.91812639427, - "2034-01-01": 3042.83293197927, - "2033-01-01": 2983.48953008792, - "2032-01-01": 2925.62971324384, - "2031-01-01": 2869.25348144706, - "2030-01-01": 2813.61904217391, - "2029-01-01": 2758.72639542441, - "2028-01-01": 2704.57554119854, - "2027-01-01": 2649.68289444904, - "2026-01-01": 2585.9629166682, - "2025-01-01": 2547.0274634231, - "2024-01-01": 2491.75155720305, - "2023-01-01": 2357, - "2015-01-01": 2357 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.KY.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3783.53275148796, - "2034-01-01": 3710.26807234129, - "2033-01-01": 3637.90789540631, - "2032-01-01": 3567.3567228947, - "2031-01-01": 3498.61455480647, - "2030-01-01": 3430.77688892992, - "2029-01-01": 3363.84372526506, - "2028-01-01": 3297.81506381189, - "2027-01-01": 3230.88190014703, - "2026-01-01": 3153.18516016309, - "2025-01-01": 3105.70934657531, - "2024-01-01": 3038.30885676774, - "2023-01-01": 2874, - "2015-01-01": 2874 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA", - "description": null, - "label": "LA", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 714.842826742507, - "2034-01-01": 701.000543939221, - "2033-01-01": 687.329153516223, - "2032-01-01": 673.9995478538, - "2031-01-01": 661.011726951952, - "2030-01-01": 648.194798430392, - "2029-01-01": 635.548762289118, - "2028-01-01": 623.073618528133, - "2027-01-01": 610.42758238686, - "2026-01-01": 595.747926920166, - "2025-01-01": 586.77807069951, - "2024-01-01": 574.043740161755, - "2023-01-01": 543, - "2015-01-01": 543 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1022.89664158182, - "2034-01-01": 1003.08917613402, - "2033-01-01": 983.526247296695, - "2032-01-01": 964.4523916803, - "2031-01-01": 945.867609284838, - "2030-01-01": 927.527363499842, - "2029-01-01": 909.431654325313, - "2028-01-01": 891.580481761251, - "2027-01-01": 873.484772586722, - "2026-01-01": 852.479077747641, - "2025-01-01": 839.643758625266, - "2024-01-01": 821.421705535329, - "2023-01-01": 777, - "2015-01-01": 777 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1179.55648758985, - "2034-01-01": 1156.71544635275, - "2033-01-01": 1134.15639327907, - "2032-01-01": 1112.16131653224, - "2031-01-01": 1090.73021611225, - "2030-01-01": 1069.58110385567, - "2029-01-01": 1048.71397976252, - "2028-01-01": 1028.12884383279, - "2027-01-01": 1007.26171973964, - "2026-01-01": 983.038936501784, - "2025-01-01": 968.23784778409, - "2024-01-01": 947.225029806505, - "2023-01-01": 896, - "2015-01-01": 896 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1309.88694771417, - "2034-01-01": 1284.52217535824, - "2033-01-01": 1259.47054834004, - "2032-01-01": 1235.0452119973, - "2031-01-01": 1211.24616633, - "2030-01-01": 1187.76026600044, - "2029-01-01": 1164.58751100861, - "2028-01-01": 1141.7279013545, - "2027-01-01": 1118.55514636266, - "2026-01-01": 1091.65596185187, - "2025-01-01": 1075.21948498345, - "2024-01-01": 1051.88493823379, - "2023-01-01": 995, - "2015-01-01": 995 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1427.05271489664, - "2034-01-01": 1399.41913375712, - "2033-01-01": 1372.12670794031, - "2032-01-01": 1345.51659276891, - "2031-01-01": 1319.58878824294, - "2030-01-01": 1294.00213903968, - "2029-01-01": 1268.75664515912, - "2028-01-01": 1243.85230660128, - "2027-01-01": 1218.60681272073, - "2026-01-01": 1189.30157049993, - "2025-01-01": 1171.39489620307, - "2024-01-01": 1145.97313873912, - "2023-01-01": 1084, - "2015-01-01": 1084 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1529.73731984308, - "2034-01-01": 1500.11534448872, - "2033-01-01": 1470.8590725338, - "2032-01-01": 1442.33420737775, - "2031-01-01": 1414.54074902057, - "2030-01-01": 1387.11299406283, - "2029-01-01": 1360.05094250452, - "2028-01-01": 1333.35459434565, - "2027-01-01": 1306.29254278735, - "2026-01-01": 1274.87862077575, - "2025-01-01": 1255.68345884499, - "2024-01-01": 1228.43246053031, - "2023-01-01": 1162, - "2015-01-01": 1162 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1624.52310902441, - "2034-01-01": 1593.06569285635, - "2033-01-01": 1561.99663985086, - "2032-01-01": 1531.70431317051, - "2031-01-01": 1502.1887128153, - "2030-01-01": 1473.06147562266, - "2029-01-01": 1444.32260159258, - "2028-01-01": 1415.97209072508, - "2027-01-01": 1387.233216695, - "2026-01-01": 1353.87282103036, - "2025-01-01": 1333.48828589907, - "2024-01-01": 1304.54875756833, - "2023-01-01": 1234, - "2015-01-01": 1234 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1711.41008244062, - "2034-01-01": 1678.27017886001, - "2033-01-01": 1645.53940989151, - "2032-01-01": 1613.62691014722, - "2031-01-01": 1582.53267962714, - "2030-01-01": 1551.84758371917, - "2029-01-01": 1521.5716224233, - "2028-01-01": 1491.70479573954, - "2027-01-01": 1461.42883444368, - "2026-01-01": 1426.28417126375, - "2025-01-01": 1404.80937736531, - "2024-01-01": 1374.32202985319, - "2023-01-01": 1300, - "2015-01-01": 1300 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1793.0311786801, - "2034-01-01": 1758.31075662103, - "2033-01-01": 1724.01898174787, - "2032-01-01": 1690.58450124655, - "2031-01-01": 1658.00731511705, - "2030-01-01": 1625.85877617347, - "2029-01-01": 1594.1388844158, - "2028-01-01": 1562.84763984405, - "2027-01-01": 1531.12774808638, - "2026-01-01": 1494.30695481633, - "2025-01-01": 1471.80797843966, - "2024-01-01": 1439.86661896926, - "2023-01-01": 1362, - "2015-01-01": 1362 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1900.98166080328, - "2034-01-01": 1864.17087559528, - "2033-01-01": 1827.81454452565, - "2032-01-01": 1792.36712173276, - "2031-01-01": 1757.82860721661, - "2030-01-01": 1723.74454683883, - "2029-01-01": 1690.11494059942, - "2028-01-01": 1656.93978849839, - "2027-01-01": 1623.31018225898, - "2026-01-01": 1584.27257177296, - "2025-01-01": 1560.41903147347, - "2024-01-01": 1526.55462392923, - "2023-01-01": 1444, - "2015-01-01": 1444 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2039.21093669271, - "2034-01-01": 1999.72346696474, - "2033-01-01": 1960.72349686304, - "2032-01-01": 1922.69852601388, - "2031-01-01": 1885.64855441726, - "2030-01-01": 1849.08608244692, - "2029-01-01": 1813.01111010284, - "2028-01-01": 1777.42363738504, - "2027-01-01": 1741.34866504097, - "2026-01-01": 1699.47244714427, - "2025-01-01": 1673.88440426067, - "2024-01-01": 1637.55755710968, - "2023-01-01": 1549, - "2015-01-01": 1549 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2166.90845822867, - "2034-01-01": 2124.94824184891, - "2033-01-01": 2083.50605283187, - "2032-01-01": 2043.09991854025, - "2031-01-01": 2003.72983897406, - "2030-01-01": 1964.87778677058, - "2029-01-01": 1926.54376192981, - "2028-01-01": 1888.72776445176, - "2027-01-01": 1850.393739611, - "2026-01-01": 1805.89518915395, - "2025-01-01": 1778.70479626408, - "2024-01-01": 1740.10312395258, - "2023-01-01": 1646, - "2015-01-01": 1646 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2284.07422541114, - "2034-01-01": 2239.84520024779, - "2033-01-01": 2196.16221243213, - "2032-01-01": 2153.57129931187, - "2031-01-01": 2112.07246088699, - "2030-01-01": 2071.11965980982, - "2029-01-01": 2030.71289608033, - "2028-01-01": 1990.85216969855, - "2027-01-01": 1950.44540596906, - "2026-01-01": 1903.540797802, - "2025-01-01": 1874.8802074837, - "2024-01-01": 1834.19132445791, - "2023-01-01": 1735, - "2015-01-01": 1735 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2393.3411768285, - "2034-01-01": 2346.9962962827, - "2033-01-01": 2301.22357475597, - "2032-01-01": 2256.59517126742, - "2031-01-01": 2213.11108581703, - "2030-01-01": 2170.19915938573, - "2029-01-01": 2127.85939197351, - "2028-01-01": 2086.09178358038, - "2027-01-01": 2043.75201616816, - "2026-01-01": 1994.60355642884, - "2025-01-01": 1964.57188311549, - "2024-01-01": 1921.93650021007, - "2023-01-01": 1818, - "2015-01-01": 1818 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2506.55753612842, - "2034-01-01": 2458.02032349959, - "2033-01-01": 2410.08233571803, - "2032-01-01": 2363.34279763101, - "2031-01-01": 2317.80170923852, - "2030-01-01": 2272.85984569331, - "2029-01-01": 2228.51720699536, - "2028-01-01": 2184.77379314469, - "2027-01-01": 2140.43115444674, - "2026-01-01": 2088.95774006629, - "2025-01-01": 2057.50542654119, - "2024-01-01": 2012.85318833882, - "2023-01-01": 1904, - "2015-01-01": 1904 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2627.67271119345, - "2034-01-01": 2576.79021308045, - "2033-01-01": 2526.5358939565, - "2032-01-01": 2477.53793281065, - "2031-01-01": 2429.7963296429, - "2030-01-01": 2382.6829054642, - "2029-01-01": 2336.19766027455, - "2028-01-01": 2290.34059407395, - "2027-01-01": 2243.8553488843, - "2026-01-01": 2189.89477372496, - "2025-01-01": 2156.92270555474, - "2024-01-01": 2110.11290122074, - "2023-01-01": 1996, - "2015-01-01": 1996 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2740.88907049337, - "2034-01-01": 2687.81424029735, - "2033-01-01": 2635.39465491856, - "2032-01-01": 2584.28555917424, - "2031-01-01": 2534.48695306439, - "2030-01-01": 2485.34359177178, - "2029-01-01": 2436.8554752964, - "2028-01-01": 2389.02260363826, - "2027-01-01": 2340.53448716288, - "2026-01-01": 2284.2489573624, - "2025-01-01": 2249.85624898044, - "2024-01-01": 2201.02958934949, - "2023-01-01": 2082, - "2015-01-01": 2082 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2848.83955261655, - "2034-01-01": 2793.67435927159, - "2033-01-01": 2739.19021769633, - "2032-01-01": 2686.06817966045, - "2031-01-01": 2634.30824516395, - "2030-01-01": 2583.22936243714, - "2029-01-01": 2532.83153148002, - "2028-01-01": 2483.1147522926, - "2027-01-01": 2432.71692133548, - "2026-01-01": 2374.21457431904, - "2025-01-01": 2338.46730201425, - "2024-01-01": 2287.71759430946, - "2023-01-01": 2164, - "2015-01-01": 2164 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3474.16246735447, - "2034-01-01": 3406.88846308583, - "2033-01-01": 3340.44500207977, - "2032-01-01": 3275.66262759886, - "2031-01-01": 3212.5413396431, - "2030-01-01": 3150.25059494992, - "2029-01-01": 3088.79039351931, - "2028-01-01": 3028.16073535128, - "2027-01-01": 2966.70053392067, - "2026-01-01": 2895.35686766541, - "2025-01-01": 2851.76303605158, - "2024-01-01": 2789.87372060197, - "2023-01-01": 2639, - "2015-01-01": 2639 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 743.805151214579, - "2034-01-01": 729.402039273775, - "2033-01-01": 715.176743529772, - "2032-01-01": 701.307080179369, - "2031-01-01": 687.793049222565, - "2030-01-01": 674.456834462562, - "2029-01-01": 661.298435899359, - "2028-01-01": 648.317853532956, - "2027-01-01": 635.159454969753, - "2026-01-01": 619.885043664629, - "2025-01-01": 610.551767854923, - "2024-01-01": 597.30149759004, - "2023-01-01": 565, - "2015-01-01": 565 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1062.39072040737, - "2034-01-01": 1041.81848795387, - "2033-01-01": 1021.50023367881, - "2032-01-01": 1001.68993576062, - "2031-01-01": 982.38759419931, - "2030-01-01": 963.339230816439, - "2029-01-01": 944.544845612005, - "2028-01-01": 926.004438586009, - "2027-01-01": 907.210053381576, - "2026-01-01": 885.393327853727, - "2025-01-01": 872.062436564465, - "2024-01-01": 853.136829301172, - "2023-01-01": 807, - "2015-01-01": 807 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1224.31644359214, - "2034-01-01": 1200.60866641524, - "2033-01-01": 1177.19357784547, - "2032-01-01": 1154.36386648993, - "2031-01-01": 1132.11953234865, - "2030-01-01": 1110.16788681448, - "2029-01-01": 1088.50892988744, - "2028-01-01": 1067.14266156752, - "2027-01-01": 1045.48370464048, - "2026-01-01": 1020.34175328868, - "2025-01-01": 1004.97901611518, - "2024-01-01": 983.168836741127, - "2023-01-01": 930, - "2015-01-01": 930 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1361.22925018739, - "2034-01-01": 1334.87028072404, - "2033-01-01": 1308.83673063679, - "2032-01-01": 1283.45401930171, - "2031-01-01": 1258.72214671882, - "2030-01-01": 1234.31569351202, - "2029-01-01": 1210.2346596813, - "2028-01-01": 1186.47904522668, - "2027-01-01": 1162.39801139597, - "2026-01-01": 1134.44448698978, - "2025-01-01": 1117.36376630441, - "2024-01-01": 1093.11459912938, - "2023-01-01": 1034, - "2015-01-01": 1034 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1481.02795595823, - "2034-01-01": 1452.34919324424, - "2033-01-01": 1424.02448932919, - "2032-01-01": 1396.40790301202, - "2031-01-01": 1369.49943429272, - "2030-01-01": 1342.94502437236, - "2029-01-01": 1316.74467325094, - "2028-01-01": 1290.89838092845, - "2027-01-01": 1264.69802980703, - "2026-01-01": 1234.28437897824, - "2025-01-01": 1215.70042271998, - "2024-01-01": 1189.31714121911, - "2023-01-01": 1125, - "2015-01-01": 1125 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1587.66196878722, - "2034-01-01": 1556.91833515783, - "2033-01-01": 1526.55425256089, - "2032-01-01": 1496.94927202888, - "2031-01-01": 1468.10339356179, - "2030-01-01": 1439.63706612717, - "2029-01-01": 1411.550289725, - "2028-01-01": 1383.8430643553, - "2027-01-01": 1355.75628795314, - "2026-01-01": 1323.15285426468, - "2025-01-01": 1303.23085315582, - "2024-01-01": 1274.94797538688, - "2023-01-01": 1206, - "2015-01-01": 1206 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1686.39716585111, - "2034-01-01": 1653.74161470744, - "2033-01-01": 1621.48921851617, - "2032-01-01": 1590.04313222968, - "2031-01-01": 1559.40335584798, - "2030-01-01": 1529.16673441866, - "2029-01-01": 1499.33326794173, - "2028-01-01": 1469.9029564172, - "2027-01-01": 1440.06948994027, - "2026-01-01": 1405.43847952989, - "2025-01-01": 1384.27754800382, - "2024-01-01": 1354.23578480149, - "2023-01-01": 1281, - "2015-01-01": 1281 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1777.23354714988, - "2034-01-01": 1742.81903189309, - "2033-01-01": 1708.82938719503, - "2032-01-01": 1675.68948361442, - "2031-01-01": 1643.39932115126, - "2030-01-01": 1611.53402924683, - "2029-01-01": 1580.09360790112, - "2028-01-01": 1549.07805711414, - "2027-01-01": 1517.63763576844, - "2026-01-01": 1481.14125477389, - "2025-01-01": 1458.84050726398, - "2024-01-01": 1427.18056946293, - "2023-01-01": 1350, - "2015-01-01": 1350 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1861.48758197772, - "2034-01-01": 1825.44156377543, - "2033-01-01": 1789.84055814354, - "2032-01-01": 1755.12957765244, - "2031-01-01": 1721.30862230214, - "2030-01-01": 1687.93267952224, - "2029-01-01": 1655.00174931273, - "2028-01-01": 1622.51583167363, - "2027-01-01": 1589.58490146412, - "2026-01-01": 1551.35832166688, - "2025-01-01": 1528.00035353427, - "2024-01-01": 1494.83950016339, - "2023-01-01": 1414, - "2015-01-01": 1414 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1972.07100268927, - "2034-01-01": 1933.883636871, - "2033-01-01": 1896.16772001345, - "2032-01-01": 1859.39470107733, - "2031-01-01": 1823.56458006266, - "2030-01-01": 1788.20590800871, - "2029-01-01": 1753.31868491547, - "2028-01-01": 1718.90291078295, - "2027-01-01": 1684.01568768972, - "2026-01-01": 1643.51822196392, - "2025-01-01": 1618.77265176403, - "2024-01-01": 1583.64184670775, - "2023-01-01": 1498, - "2015-01-01": 1498 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2116.88262504963, - "2034-01-01": 2075.89111354377, - "2033-01-01": 2035.40567008119, - "2032-01-01": 1995.93236270518, - "2031-01-01": 1957.47119141573, - "2030-01-01": 1919.51608816956, - "2029-01-01": 1882.06705296667, - "2028-01-01": 1845.12408580707, - "2027-01-01": 1807.67505060418, - "2026-01-01": 1764.20380568624, - "2025-01-01": 1737.64113754109, - "2024-01-01": 1699.93063384917, - "2023-01-01": 1608, - "2015-01-01": 1608 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2248.52955446814, - "2034-01-01": 2204.98881960993, - "2033-01-01": 2161.98562468823, - "2032-01-01": 2120.05750963958, - "2031-01-01": 2079.20447446397, - "2030-01-01": 2038.88897922488, - "2029-01-01": 1999.11102392231, - "2028-01-01": 1959.87060855626, - "2027-01-01": 1920.0926532537, - "2026-01-01": 1873.91797270653, - "2025-01-01": 1845.70339733842, - "2024-01-01": 1805.64771306865, - "2023-01-01": 1708, - "2015-01-01": 1708 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2369.64472953317, - "2034-01-01": 2323.75870919079, - "2033-01-01": 2278.43918292671, - "2032-01-01": 2234.25264481923, - "2031-01-01": 2191.19909486835, - "2030-01-01": 2148.71203899577, - "2029-01-01": 2106.7914772015, - "2028-01-01": 2065.43740948552, - "2027-01-01": 2023.51684769125, - "2026-01-01": 1974.85500636519, - "2025-01-01": 1945.12067635197, - "2024-01-01": 1902.90742595057, - "2023-01-01": 1800, - "2015-01-01": 1800 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2484.17755812728, - "2034-01-01": 2436.07371346834, - "2033-01-01": 2388.56374343483, - "2032-01-01": 2342.24152265216, - "2031-01-01": 2297.10705112032, - "2030-01-01": 2252.5664542139, - "2029-01-01": 2208.6197319329, - "2028-01-01": 2165.26688427732, - "2027-01-01": 2121.32016199632, - "2026-01-01": 2070.30633167284, - "2025-01-01": 2039.13484237565, - "2024-01-01": 1994.88128487151, - "2023-01-01": 1887, - "2015-01-01": 1887 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2601.34332530975, - "2034-01-01": 2550.97067186722, - "2033-01-01": 2501.2199030351, - "2032-01-01": 2452.71290342377, - "2031-01-01": 2405.44967303326, - "2030-01-01": 2358.80832725314, - "2029-01-01": 2312.78886608342, - "2028-01-01": 2267.39128952411, - "2027-01-01": 2221.37182835439, - "2026-01-01": 2167.9519403209, - "2025-01-01": 2135.31025359527, - "2024-01-01": 2088.96948537685, - "2023-01-01": 1976, - "2015-01-01": 1976 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2726.40790825733, - "2034-01-01": 2673.61349263007, - "2033-01-01": 2621.47085991178, - "2032-01-01": 2570.63179301146, - "2031-01-01": 2521.09629192909, - "2030-01-01": 2472.21257375569, - "2029-01-01": 2423.98063849128, - "2028-01-01": 2376.40048613584, - "2027-01-01": 2328.16855087143, - "2026-01-01": 2272.18039899017, - "2025-01-01": 2237.96940040274, - "2024-01-01": 2189.40071063535, - "2023-01-01": 2071, - "2015-01-01": 2071 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2844.89014473399, - "2034-01-01": 2789.80142808961, - "2033-01-01": 2735.39281905812, - "2032-01-01": 2682.34442525242, - "2031-01-01": 2630.6562466725, - "2030-01-01": 2579.64817570548, - "2029-01-01": 2529.32021235135, - "2028-01-01": 2479.67235661012, - "2027-01-01": 2429.34439325599, - "2026-01-01": 2370.92314930843, - "2025-01-01": 2335.22543422033, - "2024-01-01": 2284.54608193288, - "2023-01-01": 2161, - "2015-01-01": 2161 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2955.47356544554, - "2034-01-01": 2898.24350118518, - "2033-01-01": 2841.71998092803, - "2032-01-01": 2786.60954867731, - "2031-01-01": 2732.91220443303, - "2030-01-01": 2679.92140419195, - "2029-01-01": 2627.63714795409, - "2028-01-01": 2576.05943571944, - "2027-01-01": 2523.77517948158, - "2026-01-01": 2463.08304960547, - "2025-01-01": 2425.99773245009, - "2024-01-01": 2373.34842847724, - "2023-01-01": 2245, - "2015-01-01": 2245 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3604.49292747879, - "2034-01-01": 3534.69519209132, - "2033-01-01": 3465.75915714073, - "2032-01-01": 3398.54652306391, - "2031-01-01": 3333.05728986086, - "2030-01-01": 3268.42975709468, - "2029-01-01": 3204.66392476539, - "2028-01-01": 3141.75979287298, - "2027-01-01": 3077.99396054369, - "2026-01-01": 3003.9738930155, - "2025-01-01": 2958.74467325094, - "2024-01-01": 2894.53362902925, - "2023-01-01": 2738, - "2015-01-01": 2738 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 780.666291451762, - "2034-01-01": 765.549396972299, - "2033-01-01": 750.619130819743, - "2032-01-01": 736.062121321001, - "2031-01-01": 721.878368476073, - "2030-01-01": 707.881243958052, - "2029-01-01": 694.070747766938, - "2028-01-01": 680.446879902731, - "2027-01-01": 666.636383711617, - "2026-01-01": 650.60501043031, - "2025-01-01": 640.809200598176, - "2024-01-01": 626.902279771493, - "2023-01-01": 593, - "2015-01-01": 593 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1116.36596146896, - "2034-01-01": 1094.74854744099, - "2033-01-01": 1073.39801506769, - "2032-01-01": 1052.58124600372, - "2031-01-01": 1032.29824024909, - "2030-01-01": 1012.28211614912, - "2029-01-01": 992.532873703817, - "2028-01-01": 973.05051291318, - "2027-01-01": 953.301270467877, - "2026-01-01": 930.376136332045, - "2025-01-01": 916.367963081371, - "2024-01-01": 896.480831781157, - "2023-01-01": 848, - "2015-01-01": 848 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1286.19050041884, - "2034-01-01": 1261.28458826633, - "2033-01-01": 1236.68615651077, - "2032-01-01": 1212.7026855491, - "2031-01-01": 1189.33417538132, - "2030-01-01": 1166.27314561048, - "2029-01-01": 1143.51959623659, - "2028-01-01": 1121.07352725964, - "2027-01-01": 1098.31997788575, - "2026-01-01": 1071.90741178822, - "2025-01-01": 1055.76827821993, - "2024-01-01": 1032.85586397428, - "2023-01-01": 977, - "2015-01-01": 977 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1429.68565348501, - "2034-01-01": 1402.00108787844, - "2033-01-01": 1374.65830703245, - "2032-01-01": 1347.9990957076, - "2031-01-01": 1322.0234539039, - "2030-01-01": 1296.38959686078, - "2029-01-01": 1271.09752457824, - "2028-01-01": 1246.14723705627, - "2027-01-01": 1220.85516477372, - "2026-01-01": 1191.49585384033, - "2025-01-01": 1173.55614139902, - "2024-01-01": 1148.08748032351, - "2023-01-01": 1086, - "2015-01-01": 1086 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1556.06670572678, - "2034-01-01": 1525.93488570195, - "2033-01-01": 1496.1750634552, - "2032-01-01": 1467.15923676463, - "2031-01-01": 1438.88740563022, - "2030-01-01": 1410.98757227389, - "2029-01-01": 1383.45973669565, - "2028-01-01": 1356.30389889549, - "2027-01-01": 1328.77606331725, - "2026-01-01": 1296.82145417981, - "2025-01-01": 1277.29591080446, - "2024-01-01": 1249.57587637421, - "2023-01-01": 1182, - "2015-01-01": 1182 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1667.96659573252, - "2034-01-01": 1635.66793585818, - "2033-01-01": 1603.76802487119, - "2032-01-01": 1572.66561165887, - "2031-01-01": 1542.36069622122, - "2030-01-01": 1512.45452967091, - "2029-01-01": 1482.94711200794, - "2028-01-01": 1453.83844323231, - "2027-01-01": 1424.33102556934, - "2026-01-01": 1390.07849614705, - "2025-01-01": 1369.14883163219, - "2024-01-01": 1339.43539371076, - "2023-01-01": 1267, - "2015-01-01": 1267 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1770.65120067895, - "2034-01-01": 1736.36414658978, - "2033-01-01": 1702.50038946468, - "2032-01-01": 1669.4832262677, - "2031-01-01": 1637.31265699885, - "2030-01-01": 1605.56538469406, - "2029-01-01": 1574.24140935334, - "2028-01-01": 1543.34073097668, - "2027-01-01": 1512.01675563596, - "2026-01-01": 1475.65554642288, - "2025-01-01": 1453.43739427411, - "2024-01-01": 1421.89471550195, - "2023-01-01": 1345, - "2015-01-01": 1345 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1865.43698986028, - "2034-01-01": 1829.31449495742, - "2033-01-01": 1793.63795678175, - "2032-01-01": 1758.85333206047, - "2031-01-01": 1724.96062079358, - "2030-01-01": 1691.5138662539, - "2029-01-01": 1658.5130684414, - "2028-01-01": 1625.9582273561, - "2027-01-01": 1592.95742954361, - "2026-01-01": 1554.64974667749, - "2025-01-01": 1531.24222132819, - "2024-01-01": 1498.01101253998, - "2023-01-01": 1417, - "2015-01-01": 1417 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1954.95690186487, - "2034-01-01": 1917.1009350824, - "2033-01-01": 1879.71232591453, - "2032-01-01": 1843.25843197586, - "2031-01-01": 1807.73925326639, - "2030-01-01": 1772.68743217151, - "2029-01-01": 1738.10296869124, - "2028-01-01": 1703.98586282556, - "2027-01-01": 1669.40139934528, - "2026-01-01": 1629.25538025128, - "2025-01-01": 1604.72455799037, - "2024-01-01": 1569.89862640922, - "2023-01-01": 1485, - "2015-01-01": 1485 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2072.12266904734, - "2034-01-01": 2031.99789348128, - "2033-01-01": 1992.3684855148, - "2032-01-01": 1953.72981274748, - "2031-01-01": 1916.08187517932, - "2030-01-01": 1878.92930521075, - "2029-01-01": 1842.27210284175, - "2028-01-01": 1806.11026807234, - "2027-01-01": 1769.45306570335, - "2026-01-01": 1726.90098889934, - "2025-01-01": 1700.89996921, - "2024-01-01": 1663.98682691455, - "2023-01-01": 1574, - "2015-01-01": 1574 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2222.20016858444, - "2034-01-01": 2179.1692783967, - "2033-01-01": 2136.66963376682, - "2032-01-01": 2095.2324802527, - "2031-01-01": 2054.85781785432, - "2030-01-01": 2015.01440101381, - "2029-01-01": 1975.70222973118, - "2028-01-01": 1936.92130400642, - "2027-01-01": 1897.60913272379, - "2026-01-01": 1851.97513930247, - "2025-01-01": 1824.09094537896, - "2024-01-01": 1784.50429722476, - "2023-01-01": 1688, - "2015-01-01": 1688 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2361.74591376806, - "2034-01-01": 2316.01284682682, - "2033-01-01": 2270.84438565028, - "2032-01-01": 2226.80513600316, - "2031-01-01": 2183.89509788546, - "2030-01-01": 2141.54966553245, - "2029-01-01": 2099.76883894416, - "2028-01-01": 2058.55261812057, - "2027-01-01": 2016.77179153228, - "2026-01-01": 1968.27215634397, - "2025-01-01": 1938.63694076413, - "2024-01-01": 1896.5644011974, - "2023-01-01": 1794, - "2015-01-01": 1794 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2488.12696600983, - "2034-01-01": 2439.94664465033, - "2033-01-01": 2392.36114207304, - "2032-01-01": 2345.96527706019, - "2031-01-01": 2300.75904961177, - "2030-01-01": 2256.14764094556, - "2029-01-01": 2212.13105106157, - "2028-01-01": 2168.7092799598, - "2027-01-01": 2124.69269007581, - "2026-01-01": 2073.59775668345, - "2025-01-01": 2042.37671016957, - "2024-01-01": 1998.0527972481, - "2023-01-01": 1890, - "2015-01-01": 1890 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2607.92567178067, - "2034-01-01": 2557.42555717053, - "2033-01-01": 2507.54890076545, - "2032-01-01": 2458.91916077049, - "2031-01-01": 2411.53633718567, - "2030-01-01": 2364.7769718059, - "2029-01-01": 2318.6410646312, - "2028-01-01": 2273.12861566157, - "2027-01-01": 2226.99270848687, - "2026-01-01": 2173.43764867191, - "2025-01-01": 2140.71336658514, - "2024-01-01": 2094.25533933782, - "2023-01-01": 1981, - "2015-01-01": 1981 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2731.67378543407, - "2034-01-01": 2678.77740087271, - "2033-01-01": 2626.53405809606, - "2032-01-01": 2575.59679888883, - "2031-01-01": 2525.96562325101, - "2030-01-01": 2476.98748939791, - "2029-01-01": 2428.6623973295, - "2028-01-01": 2380.99034704581, - "2027-01-01": 2332.66525497741, - "2026-01-01": 2276.56896567098, - "2025-01-01": 2242.29189079463, - "2024-01-01": 2193.62939380413, - "2023-01-01": 2075, - "2015-01-01": 2075 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2863.32071485258, - "2034-01-01": 2807.87510693887, - "2033-01-01": 2753.1140127031, - "2032-01-01": 2699.72194582323, - "2031-01-01": 2647.69890629926, - "2030-01-01": 2596.36038045323, - "2029-01-01": 2545.70636828514, - "2028-01-01": 2495.73686979501, - "2027-01-01": 2445.08285762692, - "2026-01-01": 2386.28313269127, - "2025-01-01": 2350.35415059196, - "2024-01-01": 2299.3464730236, - "2023-01-01": 2175, - "2015-01-01": 2175 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2985.7523592118, - "2034-01-01": 2927.93597358039, - "2033-01-01": 2870.83337048765, - "2032-01-01": 2815.15833247223, - "2031-01-01": 2760.91085953412, - "2030-01-01": 2707.37716913468, - "2029-01-01": 2654.55726127389, - "2028-01-01": 2602.45113595176, - "2027-01-01": 2549.63122809097, - "2026-01-01": 2488.31730802014, - "2025-01-01": 2450.85205220348, - "2024-01-01": 2397.66335669772, - "2023-01-01": 2268, - "2015-01-01": 2268 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3102.91812639427, - "2034-01-01": 3042.83293197927, - "2033-01-01": 2983.48953008792, - "2032-01-01": 2925.62971324384, - "2031-01-01": 2869.25348144706, - "2030-01-01": 2813.61904217391, - "2029-01-01": 2758.72639542441, - "2028-01-01": 2704.57554119854, - "2027-01-01": 2649.68289444904, - "2026-01-01": 2585.9629166682, - "2025-01-01": 2547.0274634231, - "2024-01-01": 2491.75155720305, - "2023-01-01": 2357, - "2015-01-01": 2357 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3783.53275148796, - "2034-01-01": 3710.26807234129, - "2033-01-01": 3637.90789540631, - "2032-01-01": 3567.3567228947, - "2031-01-01": 3498.61455480647, - "2030-01-01": 3430.77688892992, - "2029-01-01": 3363.84372526506, - "2028-01-01": 3297.81506381189, - "2027-01-01": 3230.88190014703, - "2026-01-01": 3153.18516016309, - "2025-01-01": 3105.70934657531, - "2024-01-01": 3038.30885676774, - "2023-01-01": 2874, - "2015-01-01": 2874 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 421.270174139231, - "2034-01-01": 413.112659411696, - "2033-01-01": 405.055854742526, - "2032-01-01": 397.200470190085, - "2031-01-01": 389.546505754373, - "2030-01-01": 381.993251377026, - "2029-01-01": 374.540707058044, - "2028-01-01": 367.188872797426, - "2027-01-01": 359.736328478444, - "2026-01-01": 351.085334464923, - "2025-01-01": 345.799231351461, - "2024-01-01": 338.294653502323, - "2023-01-01": 320, - "2015-01-01": 320 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 596.360590265848, - "2034-01-01": 584.812608479682, - "2033-01-01": 573.407194369888, - "2032-01-01": 562.286915612839, - "2031-01-01": 551.451772208535, - "2030-01-01": 540.759196480603, - "2029-01-01": 530.209188429044, - "2028-01-01": 519.801748053857, - "2027-01-01": 509.251740002297, - "2026-01-01": 497.005176601906, - "2025-01-01": 489.522036881912, - "2024-01-01": 478.898368864227, - "2023-01-01": 453, - "2015-01-01": 453 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 685.880502270435, - "2034-01-01": 672.599048604667, - "2033-01-01": 659.481563502675, - "2032-01-01": 646.692015528232, - "2031-01-01": 634.230404681339, - "2030-01-01": 621.932762398221, - "2029-01-01": 609.799088678878, - "2028-01-01": 597.82938352331, - "2027-01-01": 585.695709803967, - "2026-01-01": 571.610810175702, - "2025-01-01": 563.004373544097, - "2024-01-01": 550.78598273347, - "2023-01-01": 521, - "2015-01-01": 521 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 759.6027827448, - "2034-01-01": 744.893764001714, - "2033-01-01": 730.366338082617, - "2032-01-01": 716.202097811497, - "2031-01-01": 702.401043188354, - "2030-01-01": 688.781581389201, - "2029-01-01": 675.343712414036, - "2028-01-01": 662.087436262859, - "2027-01-01": 648.649567287695, - "2026-01-01": 633.050743707064, - "2025-01-01": 623.519239030603, - "2024-01-01": 609.987547096377, - "2023-01-01": 577, - "2015-01-01": 577 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 825.426247454055, - "2034-01-01": 809.442617034791, - "2033-01-01": 793.656315386136, - "2032-01-01": 778.264671278698, - "2031-01-01": 763.267684712475, - "2030-01-01": 748.468026916861, - "2029-01-01": 733.865697891855, - "2028-01-01": 719.460697637457, - "2027-01-01": 704.858368612451, - "2026-01-01": 687.907827217208, - "2025-01-01": 677.550368929269, - "2024-01-01": 662.846086706115, - "2023-01-01": 627, - "2015-01-01": 627 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 884.667365692384, - "2034-01-01": 867.536584764561, - "2033-01-01": 850.617294959304, - "2032-01-01": 834.120987399178, - "2031-01-01": 818.047662084184, - "2030-01-01": 802.185827891756, - "2029-01-01": 786.535484821892, - "2028-01-01": 771.096632874595, - "2027-01-01": 755.446289804733, - "2026-01-01": 737.279202376338, - "2025-01-01": 726.178385838068, - "2024-01-01": 710.418772354879, - "2023-01-01": 672, - "2015-01-01": 672 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 937.326137459788, - "2034-01-01": 919.175667191023, - "2033-01-01": 901.24927680212, - "2032-01-01": 883.771046172939, - "2031-01-01": 866.740975303481, - "2030-01-01": 849.934984313884, - "2029-01-01": 833.353073204148, - "2028-01-01": 816.995241974274, - "2027-01-01": 800.413330864538, - "2026-01-01": 781.164869184453, - "2025-01-01": 769.403289757, - "2024-01-01": 752.705604042669, - "2023-01-01": 712, - "2015-01-01": 712 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 987.351970638822, - "2034-01-01": 968.232795496162, - "2033-01-01": 949.349659552794, - "2032-01-01": 930.938602008011, - "2031-01-01": 912.999622861813, - "2030-01-01": 895.296682914906, - "2029-01-01": 877.829782167291, - "2028-01-01": 860.598920618968, - "2027-01-01": 843.132019871353, - "2026-01-01": 822.856252652163, - "2025-01-01": 810.466948479986, - "2024-01-01": 792.87809414607, - "2023-01-01": 750, - "2015-01-01": 750 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1032.11192664111, - "2034-01-01": 1012.12601555865, - "2033-01-01": 992.386844119188, - "2032-01-01": 973.141151965708, - "2031-01-01": 954.388939098215, - "2030-01-01": 935.883465873715, - "2029-01-01": 917.624732292208, - "2028-01-01": 899.612738353695, - "2027-01-01": 881.354004772188, - "2026-01-01": 860.159069439061, - "2025-01-01": 847.208116811079, - "2024-01-01": 828.821901080692, - "2023-01-01": 784, - "2015-01-01": 784 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1092.66951417363, - "2034-01-01": 1071.51096034909, - "2033-01-01": 1050.61362323843, - "2032-01-01": 1030.23871955553, - "2031-01-01": 1010.38624930041, - "2030-01-01": 990.794995759162, - "2029-01-01": 971.464958931802, - "2028-01-01": 952.396138818325, - "2027-01-01": 933.066101990964, - "2026-01-01": 910.627586268393, - "2025-01-01": 896.916756317852, - "2024-01-01": 877.451757521651, - "2023-01-01": 830, - "2015-01-01": 830 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1171.65767182473, - "2034-01-01": 1148.96958398878, - "2033-01-01": 1126.56159600265, - "2032-01-01": 1104.71380771617, - "2031-01-01": 1083.42621912935, - "2030-01-01": 1062.41873039235, - "2029-01-01": 1041.69134150518, - "2028-01-01": 1021.24405246784, - "2027-01-01": 1000.51666358067, - "2026-01-01": 976.456086480566, - "2025-01-01": 961.75411219625, - "2024-01-01": 940.882005053337, - "2023-01-01": 890, - "2015-01-01": 890 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1242.74701371073, - "2034-01-01": 1218.6823452645, - "2033-01-01": 1194.91477149045, - "2032-01-01": 1171.74138706075, - "2031-01-01": 1149.1621919754, - "2030-01-01": 1126.88009156223, - "2029-01-01": 1104.89508582123, - "2028-01-01": 1083.20717475241, - "2027-01-01": 1061.22216901141, - "2026-01-01": 1035.70173667152, - "2025-01-01": 1020.10773248681, - "2024-01-01": 997.969227831854, - "2023-01-01": 944, - "2015-01-01": 944 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1308.57047841998, - "2034-01-01": 1283.23119829758, - "2033-01-01": 1258.20474879397, - "2032-01-01": 1233.80396052795, - "2031-01-01": 1210.02883349952, - "2030-01-01": 1186.56653708989, - "2029-01-01": 1163.41707129905, - "2028-01-01": 1140.58043612701, - "2027-01-01": 1117.43097033617, - "2026-01-01": 1090.55882018167, - "2025-01-01": 1074.13886238548, - "2024-01-01": 1050.82776744159, - "2023-01-01": 994, - "2015-01-01": 994 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1370.44453524668, - "2034-01-01": 1343.90712014867, - "2033-01-01": 1317.69732745928, - "2032-01-01": 1292.14277958712, - "2031-01-01": 1267.2434765322, - "2030-01-01": 1242.67179588589, - "2029-01-01": 1218.4277376482, - "2028-01-01": 1194.51130181913, - "2027-01-01": 1170.26724358144, - "2026-01-01": 1142.1244786812, - "2025-01-01": 1124.92812449022, - "2024-01-01": 1100.51479467475, - "2023-01-01": 1041, - "2015-01-01": 1041 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1433.63506136757, - "2034-01-01": 1405.87401906043, - "2033-01-01": 1378.45570567066, - "2032-01-01": 1351.72285011563, - "2031-01-01": 1325.67545239535, - "2030-01-01": 1299.97078359244, - "2029-01-01": 1274.60884370691, - "2028-01-01": 1249.58963273874, - "2027-01-01": 1224.2276928532, - "2026-01-01": 1194.78727885094, - "2025-01-01": 1176.79800919294, - "2024-01-01": 1151.25899270009, - "2023-01-01": 1089, - "2015-01-01": 1089 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1500.77499537101, - "2034-01-01": 1471.71384915417, - "2033-01-01": 1443.01148252025, - "2032-01-01": 1415.02667505218, - "2031-01-01": 1387.75942674996, - "2030-01-01": 1360.85095803066, - "2029-01-01": 1334.30126889428, - "2028-01-01": 1308.11035934083, - "2027-01-01": 1281.56067020446, - "2026-01-01": 1250.74150403129, - "2025-01-01": 1231.90976168958, - "2024-01-01": 1205.17470310203, - "2023-01-01": 1140, - "2015-01-01": 1140 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1563.96552149189, - "2034-01-01": 1533.68074806592, - "2033-01-01": 1503.76986073163, - "2032-01-01": 1474.60674558069, - "2031-01-01": 1446.19140261311, - "2030-01-01": 1418.14994573721, - "2029-01-01": 1390.48237495299, - "2028-01-01": 1363.18869026045, - "2027-01-01": 1335.52111947622, - "2026-01-01": 1303.40430420103, - "2025-01-01": 1283.7796463923, - "2024-01-01": 1255.91890112738, - "2023-01-01": 1188, - "2015-01-01": 1188 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1624.52310902441, - "2034-01-01": 1593.06569285635, - "2033-01-01": 1561.99663985086, - "2032-01-01": 1531.70431317051, - "2031-01-01": 1502.1887128153, - "2030-01-01": 1473.06147562266, - "2029-01-01": 1444.32260159258, - "2028-01-01": 1415.97209072508, - "2027-01-01": 1387.233216695, - "2026-01-01": 1353.87282103036, - "2025-01-01": 1333.48828589907, - "2024-01-01": 1304.54875756833, - "2023-01-01": 1234, - "2015-01-01": 1234 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1973.38747198346, - "2034-01-01": 1935.17461393166, - "2033-01-01": 1897.43351955952, - "2032-01-01": 1860.63595254668, - "2031-01-01": 1824.78191289314, - "2030-01-01": 1789.39963691926, - "2029-01-01": 1754.48912462502, - "2028-01-01": 1720.05037601044, - "2027-01-01": 1685.13986371621, - "2026-01-01": 1644.61536363412, - "2025-01-01": 1619.853274362, - "2024-01-01": 1584.69901749995, - "2023-01-01": 1499, - "2015-01-01": 1499 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 468.663068729894, - "2034-01-01": 459.587833595512, - "2033-01-01": 450.62463840106, - "2032-01-01": 441.885523086469, - "2031-01-01": 433.37048765174, - "2030-01-01": 424.967492156942, - "2029-01-01": 416.676536602074, - "2028-01-01": 408.497620987137, - "2027-01-01": 400.206665432269, - "2026-01-01": 390.582434592227, - "2025-01-01": 384.7016448785, - "2024-01-01": 376.352802021335, - "2023-01-01": 356, - "2015-01-01": 356 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 663.500524269288, - "2034-01-01": 650.652438573421, - "2033-01-01": 637.962971219478, - "2032-01-01": 625.590740549384, - "2031-01-01": 613.535746563138, - "2030-01-01": 601.639370918817, - "2029-01-01": 589.901613616419, - "2028-01-01": 578.322474655946, - "2027-01-01": 566.584717353549, - "2026-01-01": 552.959401782253, - "2025-01-01": 544.633789378551, - "2024-01-01": 532.814079266159, - "2023-01-01": 504, - "2015-01-01": 504 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 762.23572133317, - "2034-01-01": 747.475718123037, - "2033-01-01": 732.897937174757, - "2032-01-01": 718.684600750185, - "2031-01-01": 704.835708849319, - "2030-01-01": 691.169039210307, - "2029-01-01": 677.684591833148, - "2028-01-01": 664.382366717843, - "2027-01-01": 650.897919340685, - "2026-01-01": 635.24502704747, - "2025-01-01": 625.680484226549, - "2024-01-01": 612.101888680766, - "2023-01-01": 579, - "2015-01-01": 579 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 845.173286866831, - "2034-01-01": 828.807272944715, - "2033-01-01": 812.643308577192, - "2032-01-01": 796.883443318858, - "2031-01-01": 781.527677169712, - "2030-01-01": 766.373960575159, - "2029-01-01": 751.422293535201, - "2028-01-01": 736.672676049837, - "2027-01-01": 721.721009009879, - "2026-01-01": 704.364952270251, - "2025-01-01": 693.759707898868, - "2024-01-01": 678.703648589036, - "2023-01-01": 642, - "2015-01-01": 642 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 917.579098047011, - "2034-01-01": 899.8110112811, - "2033-01-01": 882.262283611064, - "2032-01-01": 865.152274132779, - "2031-01-01": 848.480982846244, - "2030-01-01": 832.029050655586, - "2029-01-01": 815.796477560802, - "2028-01-01": 799.783263561894, - "2027-01-01": 783.550690467111, - "2026-01-01": 764.70774413141, - "2025-01-01": 753.193950787401, - "2024-01-01": 736.848042159748, - "2023-01-01": 697, - "2015-01-01": 697 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 983.402562756266, - "2034-01-01": 964.359864314177, - "2033-01-01": 945.552260914583, - "2032-01-01": 927.214847599979, - "2031-01-01": 909.347624370365, - "2030-01-01": 891.715496183246, - "2029-01-01": 874.318463038621, - "2028-01-01": 857.156524936492, - "2027-01-01": 839.759491791868, - "2026-01-01": 819.564827641554, - "2025-01-01": 807.225080686066, - "2024-01-01": 789.706581769486, - "2023-01-01": 747, - "2015-01-01": 747 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1042.6436809946, - "2034-01-01": 1022.45383204395, - "2033-01-01": 1002.51324048775, - "2032-01-01": 983.07116372046, - "2031-01-01": 964.127601742074, - "2030-01-01": 945.433297158141, - "2029-01-01": 926.988249968659, - "2028-01-01": 908.79246017363, - "2027-01-01": 890.347412984149, - "2026-01-01": 868.936202800684, - "2025-01-01": 855.853097594866, - "2024-01-01": 837.27926741825, - "2023-01-01": 792, - "2015-01-01": 792 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1096.61892205618, - "2034-01-01": 1075.38389153107, - "2033-01-01": 1054.41102187664, - "2032-01-01": 1033.96247396356, - "2031-01-01": 1014.03824779185, - "2030-01-01": 994.376182490822, - "2029-01-01": 974.976278060471, - "2028-01-01": 955.8385345008, - "2027-01-01": 936.43863007045, - "2026-01-01": 913.919011279002, - "2025-01-01": 900.158624111772, - "2024-01-01": 880.623269898235, - "2023-01-01": 833, - "2015-01-01": 833 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1147.9612245294, - "2034-01-01": 1125.73199689687, - "2033-01-01": 1103.77720417338, - "2032-01-01": 1082.37128126798, - "2031-01-01": 1061.51422818067, - "2030-01-01": 1040.9316100024, - "2029-01-01": 1020.62342673317, - "2028-01-01": 1000.58967837299, - "2027-01-01": 980.28149510376, - "2026-01-01": 956.707536416914, - "2025-01-01": 942.302905432731, - "2024-01-01": 921.852930793831, - "2023-01-01": 872, - "2015-01-01": 872 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1215.10115853284, - "2034-01-01": 1191.57182699061, - "2033-01-01": 1168.33298102297, - "2032-01-01": 1145.67510620453, - "2031-01-01": 1123.59820253527, - "2030-01-01": 1101.81178444061, - "2029-01-01": 1080.31585192055, - "2028-01-01": 1059.11040497508, - "2027-01-01": 1037.61447245501, - "2026-01-01": 1012.66176159726, - "2025-01-01": 997.41465792937, - "2024-01-01": 975.768641195764, - "2023-01-01": 923, - "2015-01-01": 923 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1300.67166265487, - "2034-01-01": 1275.48533593361, - "2033-01-01": 1250.60995151755, - "2032-01-01": 1226.35645171189, - "2031-01-01": 1202.72483651663, - "2030-01-01": 1179.40416362657, - "2029-01-01": 1156.39443304171, - "2028-01-01": 1133.69564476205, - "2027-01-01": 1110.6859141772, - "2026-01-01": 1083.97597016045, - "2025-01-01": 1067.65512679764, - "2024-01-01": 1044.48474268842, - "2023-01-01": 988, - "2015-01-01": 988 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1380.97628960017, - "2034-01-01": 1354.23493663397, - "2033-01-01": 1327.82372382784, - "2032-01-01": 1302.07279134187, - "2031-01-01": 1276.98213917606, - "2030-01-01": 1252.22162717031, - "2029-01-01": 1227.79125532465, - "2028-01-01": 1203.69102363906, - "2027-01-01": 1179.2606517934, - "2026-01-01": 1150.90161204282, - "2025-01-01": 1133.57310527401, - "2024-01-01": 1108.9721610123, - "2023-01-01": 1049, - "2015-01-01": 1049 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1453.38210078035, - "2034-01-01": 1425.23867497035, - "2033-01-01": 1397.44269886171, - "2032-01-01": 1370.34162215579, - "2031-01-01": 1343.93544485259, - "2030-01-01": 1317.87671725074, - "2029-01-01": 1292.16543935025, - "2028-01-01": 1266.80161115112, - "2027-01-01": 1241.09033325063, - "2026-01-01": 1211.24440390398, - "2025-01-01": 1193.00734816254, - "2024-01-01": 1167.11655458302, - "2023-01-01": 1104, - "2015-01-01": 1104 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1521.83850407797, - "2034-01-01": 1492.36948212475, - "2033-01-01": 1463.26427525737, - "2032-01-01": 1434.88669856168, - "2031-01-01": 1407.23675203767, - "2030-01-01": 1379.95062059951, - "2029-01-01": 1353.02830424718, - "2028-01-01": 1326.4698029807, - "2027-01-01": 1299.54748662838, - "2026-01-01": 1268.29577075453, - "2025-01-01": 1249.19972325715, - "2024-01-01": 1222.08943577714, - "2023-01-01": 1156, - "2015-01-01": 1156 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1591.61137666978, - "2034-01-01": 1560.79126633981, - "2033-01-01": 1530.3516511991, - "2032-01-01": 1500.67302643691, - "2031-01-01": 1471.75539205324, - "2030-01-01": 1443.21825285883, - "2029-01-01": 1415.06160885367, - "2028-01-01": 1387.28546003778, - "2027-01-01": 1359.12881603262, - "2026-01-01": 1326.44427927529, - "2025-01-01": 1306.47272094974, - "2024-01-01": 1278.11948776347, - "2023-01-01": 1209, - "2015-01-01": 1209 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1666.65012643833, - "2034-01-01": 1634.37695879752, - "2033-01-01": 1602.50222532512, - "2032-01-01": 1571.42436018952, - "2031-01-01": 1541.14336339074, - "2030-01-01": 1511.26080076036, - "2029-01-01": 1481.77667229839, - "2028-01-01": 1452.69097800482, - "2027-01-01": 1423.20684954284, - "2026-01-01": 1388.98135447685, - "2025-01-01": 1368.06820903422, - "2024-01-01": 1338.37822291857, - "2023-01-01": 1266, - "2015-01-01": 1266 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1737.73946832433, - "2034-01-01": 1704.08972007325, - "2033-01-01": 1670.85540081292, - "2032-01-01": 1638.4519395341, - "2031-01-01": 1606.87933623679, - "2030-01-01": 1575.72216193023, - "2029-01-01": 1544.98041661443, - "2028-01-01": 1514.65410028938, - "2027-01-01": 1483.91235497358, - "2026-01-01": 1448.22700466781, - "2025-01-01": 1426.42182932478, - "2024-01-01": 1395.46544569708, - "2023-01-01": 1320, - "2015-01-01": 1320 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1803.56293303358, - "2034-01-01": 1768.63857310632, - "2033-01-01": 1734.14537811644, - "2032-01-01": 1700.5145130013, - "2031-01-01": 1667.74597776091, - "2030-01-01": 1635.40860745789, - "2029-01-01": 1603.50240209225, - "2028-01-01": 1572.02736166398, - "2027-01-01": 1540.12115629834, - "2026-01-01": 1503.08408817795, - "2025-01-01": 1480.45295922344, - "2024-01-01": 1448.32398530682, - "2023-01-01": 1370, - "2015-01-01": 1370 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2189.28843622981, - "2034-01-01": 2146.89485188016, - "2033-01-01": 2105.02464511506, - "2032-01-01": 2064.2011935191, - "2031-01-01": 2024.42449709226, - "2030-01-01": 1985.17117824998, - "2029-01-01": 1946.44123699227, - "2028-01-01": 1908.23467331912, - "2027-01-01": 1869.50473206141, - "2026-01-01": 1824.5465975474, - "2025-01-01": 1797.07538042962, - "2024-01-01": 1758.07502741989, - "2023-01-01": 1663, - "2015-01-01": 1663 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 498.941862496151, - "2034-01-01": 489.280305990727, - "2033-01-01": 479.738027960679, - "2032-01-01": 470.434306881382, - "2031-01-01": 461.369142752836, - "2030-01-01": 452.423257099666, - "2029-01-01": 443.596649921871, - "2028-01-01": 434.889321219452, - "2027-01-01": 426.062714041657, - "2026-01-01": 415.816693006893, - "2025-01-01": 409.555964631886, - "2024-01-01": 400.667730241814, - "2023-01-01": 379, - "2015-01-01": 379 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 706.944010977396, - "2034-01-01": 693.254681575252, - "2033-01-01": 679.734356239801, - "2032-01-01": 666.552039037736, - "2031-01-01": 653.707729969058, - "2030-01-01": 641.032424967073, - "2029-01-01": 628.52612403178, - "2028-01-01": 616.188827163181, - "2027-01-01": 603.682526227889, - "2026-01-01": 589.165076898948, - "2025-01-01": 580.29433511167, - "2024-01-01": 567.700715408586, - "2023-01-01": 537, - "2015-01-01": 537 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 810.945085218019, - "2034-01-01": 795.241869367514, - "2033-01-01": 779.732520379362, - "2032-01-01": 764.610905115913, - "2031-01-01": 749.877023577169, - "2030-01-01": 735.337008900776, - "2029-01-01": 720.990861086735, - "2028-01-01": 706.838580135046, - "2027-01-01": 692.492432321005, - "2026-01-01": 675.839268844976, - "2025-01-01": 665.663520351562, - "2024-01-01": 651.217207991972, - "2023-01-01": 616, - "2015-01-01": 616 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 899.14852792842, - "2034-01-01": 881.737332431838, - "2033-01-01": 864.541089966078, - "2032-01-01": 847.774753561962, - "2031-01-01": 831.438323219491, - "2030-01-01": 815.316845907841, - "2029-01-01": 799.410321627013, - "2028-01-01": 783.718750377007, - "2027-01-01": 767.812226096179, - "2026-01-01": 749.34776074857, - "2025-01-01": 738.065234415774, - "2024-01-01": 722.047651069021, - "2023-01-01": 683, - "2015-01-01": 683 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 976.820216285341, - "2034-01-01": 957.90497901087, - "2033-01-01": 939.223263184231, - "2032-01-01": 921.008590253259, - "2031-01-01": 903.260960217953, - "2030-01-01": 885.74685163048, - "2029-01-01": 868.466264490839, - "2028-01-01": 851.419198799032, - "2027-01-01": 834.138611659392, - "2026-01-01": 814.07911929054, - "2025-01-01": 801.8219676962, - "2024-01-01": 784.420727808512, - "2023-01-01": 742, - "2015-01-01": 742 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1046.59308887715, - "2034-01-01": 1026.32676322593, - "2033-01-01": 1006.31063912596, - "2032-01-01": 986.794918128492, - "2031-01-01": 967.779600233521, - "2030-01-01": 949.0144838898, - "2029-01-01": 930.499569097328, - "2028-01-01": 912.234855856106, - "2027-01-01": 893.719941063635, - "2026-01-01": 872.227627811293, - "2025-01-01": 859.094965388786, - "2024-01-01": 840.450779794835, - "2023-01-01": 795, - "2015-01-01": 795 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1108.46714570385, - "2034-01-01": 1087.00268507702, - "2033-01-01": 1065.80321779127, - "2032-01-01": 1045.13373718766, - "2031-01-01": 1024.99424326619, - "2030-01-01": 1005.1197426858, - "2029-01-01": 985.510235446478, - "2028-01-01": 966.165721548228, - "2027-01-01": 946.556214308906, - "2026-01-01": 923.793286310828, - "2025-01-01": 909.884227493531, - "2024-01-01": 890.137807027988, - "2023-01-01": 842, - "2015-01-01": 842 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1166.39179464799, - "2034-01-01": 1143.80567574613, - "2033-01-01": 1121.49839781837, - "2032-01-01": 1099.7488018388, - "2031-01-01": 1078.55688780742, - "2030-01-01": 1057.64381475014, - "2029-01-01": 1037.00958266696, - "2028-01-01": 1016.65419155787, - "2027-01-01": 996.019959474692, - "2026-01-01": 972.067519799755, - "2025-01-01": 957.431621804357, - "2024-01-01": 936.653321884558, - "2023-01-01": 886, - "2015-01-01": 886 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1220.36703570958, - "2034-01-01": 1196.73573523326, - "2033-01-01": 1173.39617920725, - "2032-01-01": 1150.6401120819, - "2031-01-01": 1128.4675338572, - "2030-01-01": 1106.58670008282, - "2029-01-01": 1084.99761075877, - "2028-01-01": 1063.70026588504, - "2027-01-01": 1042.11117656099, - "2026-01-01": 1017.05032827807, - "2025-01-01": 1001.73714832126, - "2024-01-01": 979.997324364543, - "2023-01-01": 927, - "2015-01-01": 927 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1292.77284688976, - "2034-01-01": 1267.73947356964, - "2033-01-01": 1243.01515424113, - "2032-01-01": 1218.90894289582, - "2031-01-01": 1195.42083953373, - "2030-01-01": 1172.24179016325, - "2029-01-01": 1149.37179478437, - "2028-01-01": 1126.8108533971, - "2027-01-01": 1103.94085801823, - "2026-01-01": 1077.39312013923, - "2025-01-01": 1061.1713912098, - "2024-01-01": 1038.14171793525, - "2023-01-01": 982, - "2015-01-01": 982 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1383.60922818854, - "2034-01-01": 1356.81689075529, - "2033-01-01": 1330.35532291998, - "2032-01-01": 1304.55529428056, - "2031-01-01": 1279.41680483702, - "2030-01-01": 1254.60908499142, - "2029-01-01": 1230.13213474376, - "2028-01-01": 1205.98595409405, - "2027-01-01": 1181.50900384639, - "2026-01-01": 1153.09589538323, - "2025-01-01": 1135.73435046995, - "2024-01-01": 1111.08650259669, - "2023-01-01": 1051, - "2015-01-01": 1051 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1469.17973231057, - "2034-01-01": 1440.73039969829, - "2033-01-01": 1412.63229341456, - "2032-01-01": 1385.23663978792, - "2031-01-01": 1358.54343881838, - "2030-01-01": 1332.20146417738, - "2029-01-01": 1306.21071586493, - "2028-01-01": 1280.57119388102, - "2027-01-01": 1254.58044556857, - "2026-01-01": 1224.41010394642, - "2025-01-01": 1205.97481933822, - "2024-01-01": 1179.80260408935, - "2023-01-01": 1116, - "2015-01-01": 1116 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1545.5349513733, - "2034-01-01": 1515.60706921666, - "2033-01-01": 1486.04866708664, - "2032-01-01": 1457.22922500987, - "2031-01-01": 1429.14874298636, - "2030-01-01": 1401.43774098947, - "2029-01-01": 1374.0962190192, - "2028-01-01": 1347.12417707556, - "2027-01-01": 1319.78265510529, - "2026-01-01": 1288.04432081819, - "2025-01-01": 1268.65093002067, - "2024-01-01": 1241.11851003665, - "2023-01-01": 1174, - "2015-01-01": 1174 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1617.94076255348, - "2034-01-01": 1586.61080755304, - "2033-01-01": 1555.66764212051, - "2032-01-01": 1525.49805582379, - "2031-01-01": 1496.10204866289, - "2030-01-01": 1467.09283106989, - "2029-01-01": 1438.4704030448, - "2028-01-01": 1410.23476458762, - "2027-01-01": 1381.61233656252, - "2026-01-01": 1348.38711267934, - "2025-01-01": 1328.0851729092, - "2024-01-01": 1299.26290360736, - "2023-01-01": 1229, - "2015-01-01": 1229 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1692.97951232203, - "2034-01-01": 1660.19650001075, - "2033-01-01": 1627.81821624652, - "2032-01-01": 1596.2493895764, - "2031-01-01": 1565.49002000039, - "2030-01-01": 1535.13537897143, - "2029-01-01": 1505.18546648951, - "2028-01-01": 1475.64028255466, - "2027-01-01": 1445.69037007275, - "2026-01-01": 1410.92418788091, - "2025-01-01": 1389.68066099368, - "2024-01-01": 1359.52163876246, - "2023-01-01": 1286, - "2015-01-01": 1286 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1773.28413926732, - "2034-01-01": 1738.94610071111, - "2033-01-01": 1705.03198855682, - "2032-01-01": 1671.96572920639, - "2031-01-01": 1639.74732265982, - "2030-01-01": 1607.95284251517, - "2029-01-01": 1576.58228877245, - "2028-01-01": 1545.63566143167, - "2027-01-01": 1514.26510768895, - "2026-01-01": 1477.84982976328, - "2025-01-01": 1455.59863947006, - "2024-01-01": 1424.00905708634, - "2023-01-01": 1347, - "2015-01-01": 1347 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1847.00641974169, - "2034-01-01": 1811.24081610815, - "2033-01-01": 1775.91676313676, - "2032-01-01": 1741.47581148965, - "2031-01-01": 1707.91796116683, - "2030-01-01": 1674.80166150615, - "2029-01-01": 1642.12691250761, - "2028-01-01": 1609.89371417122, - "2027-01-01": 1577.21896517268, - "2026-01-01": 1539.28976329465, - "2025-01-01": 1516.11350495656, - "2024-01-01": 1483.21062144925, - "2023-01-01": 1403, - "2015-01-01": 1403 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1918.09576162768, - "2034-01-01": 1880.95357738388, - "2033-01-01": 1844.26993862456, - "2032-01-01": 1808.50339083423, - "2031-01-01": 1773.65393401288, - "2030-01-01": 1739.26302267602, - "2029-01-01": 1705.33065682366, - "2028-01-01": 1671.85683645578, - "2027-01-01": 1637.92447060342, - "2026-01-01": 1598.5354134856, - "2025-01-01": 1574.46712524712, - "2024-01-01": 1540.29784422777, - "2023-01-01": 1457, - "2015-01-01": 1457 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.LA.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2327.51771211925, - "2034-01-01": 2282.44744324962, - "2033-01-01": 2237.93359745245, - "2032-01-01": 2194.53259780022, - "2031-01-01": 2152.24444429291, - "2030-01-01": 2110.51271385807, - "2029-01-01": 2069.33740649569, - "2028-01-01": 2028.71852220578, - "2027-01-01": 1987.5432148434, - "2026-01-01": 1939.7464729187, - "2025-01-01": 1910.54075321682, - "2024-01-01": 1869.07796060034, - "2023-01-01": 1768, - "2015-01-01": 1768 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME", - "description": null, - "label": "ME", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 421.270174139231, - "2034-01-01": 413.112659411696, - "2033-01-01": 405.055854742526, - "2032-01-01": 397.200470190085, - "2031-01-01": 389.546505754373, - "2030-01-01": 381.993251377026, - "2029-01-01": 374.540707058044, - "2028-01-01": 367.188872797426, - "2027-01-01": 359.736328478444, - "2026-01-01": 351.085334464923, - "2025-01-01": 345.799231351461, - "2024-01-01": 338.294653502323, - "2023-01-01": 320, - "2015-01-01": 320 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 596.360590265848, - "2034-01-01": 584.812608479682, - "2033-01-01": 573.407194369888, - "2032-01-01": 562.286915612839, - "2031-01-01": 551.451772208535, - "2030-01-01": 540.759196480603, - "2029-01-01": 530.209188429044, - "2028-01-01": 519.801748053857, - "2027-01-01": 509.251740002297, - "2026-01-01": 497.005176601906, - "2025-01-01": 489.522036881912, - "2024-01-01": 478.898368864227, - "2023-01-01": 453, - "2015-01-01": 453 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 685.880502270435, - "2034-01-01": 672.599048604667, - "2033-01-01": 659.481563502675, - "2032-01-01": 646.692015528232, - "2031-01-01": 634.230404681339, - "2030-01-01": 621.932762398221, - "2029-01-01": 609.799088678878, - "2028-01-01": 597.82938352331, - "2027-01-01": 585.695709803967, - "2026-01-01": 571.610810175702, - "2025-01-01": 563.004373544097, - "2024-01-01": 550.78598273347, - "2023-01-01": 521, - "2015-01-01": 521 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 759.6027827448, - "2034-01-01": 744.893764001714, - "2033-01-01": 730.366338082617, - "2032-01-01": 716.202097811497, - "2031-01-01": 702.401043188354, - "2030-01-01": 688.781581389201, - "2029-01-01": 675.343712414036, - "2028-01-01": 662.087436262859, - "2027-01-01": 648.649567287695, - "2026-01-01": 633.050743707064, - "2025-01-01": 623.519239030603, - "2024-01-01": 609.987547096377, - "2023-01-01": 577, - "2015-01-01": 577 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 825.426247454055, - "2034-01-01": 809.442617034791, - "2033-01-01": 793.656315386136, - "2032-01-01": 778.264671278698, - "2031-01-01": 763.267684712475, - "2030-01-01": 748.468026916861, - "2029-01-01": 733.865697891855, - "2028-01-01": 719.460697637457, - "2027-01-01": 704.858368612451, - "2026-01-01": 687.907827217208, - "2025-01-01": 677.550368929269, - "2024-01-01": 662.846086706115, - "2023-01-01": 627, - "2015-01-01": 627 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 884.667365692384, - "2034-01-01": 867.536584764561, - "2033-01-01": 850.617294959304, - "2032-01-01": 834.120987399178, - "2031-01-01": 818.047662084184, - "2030-01-01": 802.185827891756, - "2029-01-01": 786.535484821892, - "2028-01-01": 771.096632874595, - "2027-01-01": 755.446289804733, - "2026-01-01": 737.279202376338, - "2025-01-01": 726.178385838068, - "2024-01-01": 710.418772354879, - "2023-01-01": 672, - "2015-01-01": 672 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 937.326137459788, - "2034-01-01": 919.175667191023, - "2033-01-01": 901.24927680212, - "2032-01-01": 883.771046172939, - "2031-01-01": 866.740975303481, - "2030-01-01": 849.934984313884, - "2029-01-01": 833.353073204148, - "2028-01-01": 816.995241974274, - "2027-01-01": 800.413330864538, - "2026-01-01": 781.164869184453, - "2025-01-01": 769.403289757, - "2024-01-01": 752.705604042669, - "2023-01-01": 712, - "2015-01-01": 712 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 987.351970638822, - "2034-01-01": 968.232795496162, - "2033-01-01": 949.349659552794, - "2032-01-01": 930.938602008011, - "2031-01-01": 912.999622861813, - "2030-01-01": 895.296682914906, - "2029-01-01": 877.829782167291, - "2028-01-01": 860.598920618968, - "2027-01-01": 843.132019871353, - "2026-01-01": 822.856252652163, - "2025-01-01": 810.466948479986, - "2024-01-01": 792.87809414607, - "2023-01-01": 750, - "2015-01-01": 750 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1032.11192664111, - "2034-01-01": 1012.12601555865, - "2033-01-01": 992.386844119188, - "2032-01-01": 973.141151965708, - "2031-01-01": 954.388939098215, - "2030-01-01": 935.883465873715, - "2029-01-01": 917.624732292208, - "2028-01-01": 899.612738353695, - "2027-01-01": 881.354004772188, - "2026-01-01": 860.159069439061, - "2025-01-01": 847.208116811079, - "2024-01-01": 828.821901080692, - "2023-01-01": 784, - "2015-01-01": 784 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1092.66951417363, - "2034-01-01": 1071.51096034909, - "2033-01-01": 1050.61362323843, - "2032-01-01": 1030.23871955553, - "2031-01-01": 1010.38624930041, - "2030-01-01": 990.794995759162, - "2029-01-01": 971.464958931802, - "2028-01-01": 952.396138818325, - "2027-01-01": 933.066101990964, - "2026-01-01": 910.627586268393, - "2025-01-01": 896.916756317852, - "2024-01-01": 877.451757521651, - "2023-01-01": 830, - "2015-01-01": 830 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1171.65767182473, - "2034-01-01": 1148.96958398878, - "2033-01-01": 1126.56159600265, - "2032-01-01": 1104.71380771617, - "2031-01-01": 1083.42621912935, - "2030-01-01": 1062.41873039235, - "2029-01-01": 1041.69134150518, - "2028-01-01": 1021.24405246784, - "2027-01-01": 1000.51666358067, - "2026-01-01": 976.456086480566, - "2025-01-01": 961.75411219625, - "2024-01-01": 940.882005053337, - "2023-01-01": 890, - "2015-01-01": 890 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1242.74701371073, - "2034-01-01": 1218.6823452645, - "2033-01-01": 1194.91477149045, - "2032-01-01": 1171.74138706075, - "2031-01-01": 1149.1621919754, - "2030-01-01": 1126.88009156223, - "2029-01-01": 1104.89508582123, - "2028-01-01": 1083.20717475241, - "2027-01-01": 1061.22216901141, - "2026-01-01": 1035.70173667152, - "2025-01-01": 1020.10773248681, - "2024-01-01": 997.969227831854, - "2023-01-01": 944, - "2015-01-01": 944 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1308.57047841998, - "2034-01-01": 1283.23119829758, - "2033-01-01": 1258.20474879397, - "2032-01-01": 1233.80396052795, - "2031-01-01": 1210.02883349952, - "2030-01-01": 1186.56653708989, - "2029-01-01": 1163.41707129905, - "2028-01-01": 1140.58043612701, - "2027-01-01": 1117.43097033617, - "2026-01-01": 1090.55882018167, - "2025-01-01": 1074.13886238548, - "2024-01-01": 1050.82776744159, - "2023-01-01": 994, - "2015-01-01": 994 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1370.44453524668, - "2034-01-01": 1343.90712014867, - "2033-01-01": 1317.69732745928, - "2032-01-01": 1292.14277958712, - "2031-01-01": 1267.2434765322, - "2030-01-01": 1242.67179588589, - "2029-01-01": 1218.4277376482, - "2028-01-01": 1194.51130181913, - "2027-01-01": 1170.26724358144, - "2026-01-01": 1142.1244786812, - "2025-01-01": 1124.92812449022, - "2024-01-01": 1100.51479467475, - "2023-01-01": 1041, - "2015-01-01": 1041 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1433.63506136757, - "2034-01-01": 1405.87401906043, - "2033-01-01": 1378.45570567066, - "2032-01-01": 1351.72285011563, - "2031-01-01": 1325.67545239535, - "2030-01-01": 1299.97078359244, - "2029-01-01": 1274.60884370691, - "2028-01-01": 1249.58963273874, - "2027-01-01": 1224.2276928532, - "2026-01-01": 1194.78727885094, - "2025-01-01": 1176.79800919294, - "2024-01-01": 1151.25899270009, - "2023-01-01": 1089, - "2015-01-01": 1089 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1500.77499537101, - "2034-01-01": 1471.71384915417, - "2033-01-01": 1443.01148252025, - "2032-01-01": 1415.02667505218, - "2031-01-01": 1387.75942674996, - "2030-01-01": 1360.85095803066, - "2029-01-01": 1334.30126889428, - "2028-01-01": 1308.11035934083, - "2027-01-01": 1281.56067020446, - "2026-01-01": 1250.74150403129, - "2025-01-01": 1231.90976168958, - "2024-01-01": 1205.17470310203, - "2023-01-01": 1140, - "2015-01-01": 1140 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1563.96552149189, - "2034-01-01": 1533.68074806592, - "2033-01-01": 1503.76986073163, - "2032-01-01": 1474.60674558069, - "2031-01-01": 1446.19140261311, - "2030-01-01": 1418.14994573721, - "2029-01-01": 1390.48237495299, - "2028-01-01": 1363.18869026045, - "2027-01-01": 1335.52111947622, - "2026-01-01": 1303.40430420103, - "2025-01-01": 1283.7796463923, - "2024-01-01": 1255.91890112738, - "2023-01-01": 1188, - "2015-01-01": 1188 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1624.52310902441, - "2034-01-01": 1593.06569285635, - "2033-01-01": 1561.99663985086, - "2032-01-01": 1531.70431317051, - "2031-01-01": 1502.1887128153, - "2030-01-01": 1473.06147562266, - "2029-01-01": 1444.32260159258, - "2028-01-01": 1415.97209072508, - "2027-01-01": 1387.233216695, - "2026-01-01": 1353.87282103036, - "2025-01-01": 1333.48828589907, - "2024-01-01": 1304.54875756833, - "2023-01-01": 1234, - "2015-01-01": 1234 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1973.38747198346, - "2034-01-01": 1935.17461393166, - "2033-01-01": 1897.43351955952, - "2032-01-01": 1860.63595254668, - "2031-01-01": 1824.78191289314, - "2030-01-01": 1789.39963691926, - "2029-01-01": 1754.48912462502, - "2028-01-01": 1720.05037601044, - "2027-01-01": 1685.13986371621, - "2026-01-01": 1644.61536363412, - "2025-01-01": 1619.853274362, - "2024-01-01": 1584.69901749995, - "2023-01-01": 1499, - "2015-01-01": 1499 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 468.663068729894, - "2034-01-01": 459.587833595512, - "2033-01-01": 450.62463840106, - "2032-01-01": 441.885523086469, - "2031-01-01": 433.37048765174, - "2030-01-01": 424.967492156942, - "2029-01-01": 416.676536602074, - "2028-01-01": 408.497620987137, - "2027-01-01": 400.206665432269, - "2026-01-01": 390.582434592227, - "2025-01-01": 384.7016448785, - "2024-01-01": 376.352802021335, - "2023-01-01": 356, - "2015-01-01": 356 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 663.500524269288, - "2034-01-01": 650.652438573421, - "2033-01-01": 637.962971219478, - "2032-01-01": 625.590740549384, - "2031-01-01": 613.535746563138, - "2030-01-01": 601.639370918817, - "2029-01-01": 589.901613616419, - "2028-01-01": 578.322474655946, - "2027-01-01": 566.584717353549, - "2026-01-01": 552.959401782253, - "2025-01-01": 544.633789378551, - "2024-01-01": 532.814079266159, - "2023-01-01": 504, - "2015-01-01": 504 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 762.23572133317, - "2034-01-01": 747.475718123037, - "2033-01-01": 732.897937174757, - "2032-01-01": 718.684600750185, - "2031-01-01": 704.835708849319, - "2030-01-01": 691.169039210307, - "2029-01-01": 677.684591833148, - "2028-01-01": 664.382366717843, - "2027-01-01": 650.897919340685, - "2026-01-01": 635.24502704747, - "2025-01-01": 625.680484226549, - "2024-01-01": 612.101888680766, - "2023-01-01": 579, - "2015-01-01": 579 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 845.173286866831, - "2034-01-01": 828.807272944715, - "2033-01-01": 812.643308577192, - "2032-01-01": 796.883443318858, - "2031-01-01": 781.527677169712, - "2030-01-01": 766.373960575159, - "2029-01-01": 751.422293535201, - "2028-01-01": 736.672676049837, - "2027-01-01": 721.721009009879, - "2026-01-01": 704.364952270251, - "2025-01-01": 693.759707898868, - "2024-01-01": 678.703648589036, - "2023-01-01": 642, - "2015-01-01": 642 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 917.579098047011, - "2034-01-01": 899.8110112811, - "2033-01-01": 882.262283611064, - "2032-01-01": 865.152274132779, - "2031-01-01": 848.480982846244, - "2030-01-01": 832.029050655586, - "2029-01-01": 815.796477560802, - "2028-01-01": 799.783263561894, - "2027-01-01": 783.550690467111, - "2026-01-01": 764.70774413141, - "2025-01-01": 753.193950787401, - "2024-01-01": 736.848042159748, - "2023-01-01": 697, - "2015-01-01": 697 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 983.402562756266, - "2034-01-01": 964.359864314177, - "2033-01-01": 945.552260914583, - "2032-01-01": 927.214847599979, - "2031-01-01": 909.347624370365, - "2030-01-01": 891.715496183246, - "2029-01-01": 874.318463038621, - "2028-01-01": 857.156524936492, - "2027-01-01": 839.759491791868, - "2026-01-01": 819.564827641554, - "2025-01-01": 807.225080686066, - "2024-01-01": 789.706581769486, - "2023-01-01": 747, - "2015-01-01": 747 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1042.6436809946, - "2034-01-01": 1022.45383204395, - "2033-01-01": 1002.51324048775, - "2032-01-01": 983.07116372046, - "2031-01-01": 964.127601742074, - "2030-01-01": 945.433297158141, - "2029-01-01": 926.988249968659, - "2028-01-01": 908.79246017363, - "2027-01-01": 890.347412984149, - "2026-01-01": 868.936202800684, - "2025-01-01": 855.853097594866, - "2024-01-01": 837.27926741825, - "2023-01-01": 792, - "2015-01-01": 792 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1096.61892205618, - "2034-01-01": 1075.38389153107, - "2033-01-01": 1054.41102187664, - "2032-01-01": 1033.96247396356, - "2031-01-01": 1014.03824779185, - "2030-01-01": 994.376182490822, - "2029-01-01": 974.976278060471, - "2028-01-01": 955.8385345008, - "2027-01-01": 936.43863007045, - "2026-01-01": 913.919011279002, - "2025-01-01": 900.158624111772, - "2024-01-01": 880.623269898235, - "2023-01-01": 833, - "2015-01-01": 833 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1147.9612245294, - "2034-01-01": 1125.73199689687, - "2033-01-01": 1103.77720417338, - "2032-01-01": 1082.37128126798, - "2031-01-01": 1061.51422818067, - "2030-01-01": 1040.9316100024, - "2029-01-01": 1020.62342673317, - "2028-01-01": 1000.58967837299, - "2027-01-01": 980.28149510376, - "2026-01-01": 956.707536416914, - "2025-01-01": 942.302905432731, - "2024-01-01": 921.852930793831, - "2023-01-01": 872, - "2015-01-01": 872 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1215.10115853284, - "2034-01-01": 1191.57182699061, - "2033-01-01": 1168.33298102297, - "2032-01-01": 1145.67510620453, - "2031-01-01": 1123.59820253527, - "2030-01-01": 1101.81178444061, - "2029-01-01": 1080.31585192055, - "2028-01-01": 1059.11040497508, - "2027-01-01": 1037.61447245501, - "2026-01-01": 1012.66176159726, - "2025-01-01": 997.41465792937, - "2024-01-01": 975.768641195764, - "2023-01-01": 923, - "2015-01-01": 923 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1300.67166265487, - "2034-01-01": 1275.48533593361, - "2033-01-01": 1250.60995151755, - "2032-01-01": 1226.35645171189, - "2031-01-01": 1202.72483651663, - "2030-01-01": 1179.40416362657, - "2029-01-01": 1156.39443304171, - "2028-01-01": 1133.69564476205, - "2027-01-01": 1110.6859141772, - "2026-01-01": 1083.97597016045, - "2025-01-01": 1067.65512679764, - "2024-01-01": 1044.48474268842, - "2023-01-01": 988, - "2015-01-01": 988 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1380.97628960017, - "2034-01-01": 1354.23493663397, - "2033-01-01": 1327.82372382784, - "2032-01-01": 1302.07279134187, - "2031-01-01": 1276.98213917606, - "2030-01-01": 1252.22162717031, - "2029-01-01": 1227.79125532465, - "2028-01-01": 1203.69102363906, - "2027-01-01": 1179.2606517934, - "2026-01-01": 1150.90161204282, - "2025-01-01": 1133.57310527401, - "2024-01-01": 1108.9721610123, - "2023-01-01": 1049, - "2015-01-01": 1049 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1453.38210078035, - "2034-01-01": 1425.23867497035, - "2033-01-01": 1397.44269886171, - "2032-01-01": 1370.34162215579, - "2031-01-01": 1343.93544485259, - "2030-01-01": 1317.87671725074, - "2029-01-01": 1292.16543935025, - "2028-01-01": 1266.80161115112, - "2027-01-01": 1241.09033325063, - "2026-01-01": 1211.24440390398, - "2025-01-01": 1193.00734816254, - "2024-01-01": 1167.11655458302, - "2023-01-01": 1104, - "2015-01-01": 1104 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1521.83850407797, - "2034-01-01": 1492.36948212475, - "2033-01-01": 1463.26427525737, - "2032-01-01": 1434.88669856168, - "2031-01-01": 1407.23675203767, - "2030-01-01": 1379.95062059951, - "2029-01-01": 1353.02830424718, - "2028-01-01": 1326.4698029807, - "2027-01-01": 1299.54748662838, - "2026-01-01": 1268.29577075453, - "2025-01-01": 1249.19972325715, - "2024-01-01": 1222.08943577714, - "2023-01-01": 1156, - "2015-01-01": 1156 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1591.61137666978, - "2034-01-01": 1560.79126633981, - "2033-01-01": 1530.3516511991, - "2032-01-01": 1500.67302643691, - "2031-01-01": 1471.75539205324, - "2030-01-01": 1443.21825285883, - "2029-01-01": 1415.06160885367, - "2028-01-01": 1387.28546003778, - "2027-01-01": 1359.12881603262, - "2026-01-01": 1326.44427927529, - "2025-01-01": 1306.47272094974, - "2024-01-01": 1278.11948776347, - "2023-01-01": 1209, - "2015-01-01": 1209 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1666.65012643833, - "2034-01-01": 1634.37695879752, - "2033-01-01": 1602.50222532512, - "2032-01-01": 1571.42436018952, - "2031-01-01": 1541.14336339074, - "2030-01-01": 1511.26080076036, - "2029-01-01": 1481.77667229839, - "2028-01-01": 1452.69097800482, - "2027-01-01": 1423.20684954284, - "2026-01-01": 1388.98135447685, - "2025-01-01": 1368.06820903422, - "2024-01-01": 1338.37822291857, - "2023-01-01": 1266, - "2015-01-01": 1266 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1737.73946832433, - "2034-01-01": 1704.08972007325, - "2033-01-01": 1670.85540081292, - "2032-01-01": 1638.4519395341, - "2031-01-01": 1606.87933623679, - "2030-01-01": 1575.72216193023, - "2029-01-01": 1544.98041661443, - "2028-01-01": 1514.65410028938, - "2027-01-01": 1483.91235497358, - "2026-01-01": 1448.22700466781, - "2025-01-01": 1426.42182932478, - "2024-01-01": 1395.46544569708, - "2023-01-01": 1320, - "2015-01-01": 1320 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1803.56293303358, - "2034-01-01": 1768.63857310632, - "2033-01-01": 1734.14537811644, - "2032-01-01": 1700.5145130013, - "2031-01-01": 1667.74597776091, - "2030-01-01": 1635.40860745789, - "2029-01-01": 1603.50240209225, - "2028-01-01": 1572.02736166398, - "2027-01-01": 1540.12115629834, - "2026-01-01": 1503.08408817795, - "2025-01-01": 1480.45295922344, - "2024-01-01": 1448.32398530682, - "2023-01-01": 1370, - "2015-01-01": 1370 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2189.28843622981, - "2034-01-01": 2146.89485188016, - "2033-01-01": 2105.02464511506, - "2032-01-01": 2064.2011935191, - "2031-01-01": 2024.42449709226, - "2030-01-01": 1985.17117824998, - "2029-01-01": 1946.44123699227, - "2028-01-01": 1908.23467331912, - "2027-01-01": 1869.50473206141, - "2026-01-01": 1824.5465975474, - "2025-01-01": 1797.07538042962, - "2024-01-01": 1758.07502741989, - "2023-01-01": 1663, - "2015-01-01": 1663 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 498.941862496151, - "2034-01-01": 489.280305990727, - "2033-01-01": 479.738027960679, - "2032-01-01": 470.434306881382, - "2031-01-01": 461.369142752836, - "2030-01-01": 452.423257099666, - "2029-01-01": 443.596649921871, - "2028-01-01": 434.889321219452, - "2027-01-01": 426.062714041657, - "2026-01-01": 415.816693006893, - "2025-01-01": 409.555964631886, - "2024-01-01": 400.667730241814, - "2023-01-01": 379, - "2015-01-01": 379 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 706.944010977396, - "2034-01-01": 693.254681575252, - "2033-01-01": 679.734356239801, - "2032-01-01": 666.552039037736, - "2031-01-01": 653.707729969058, - "2030-01-01": 641.032424967073, - "2029-01-01": 628.52612403178, - "2028-01-01": 616.188827163181, - "2027-01-01": 603.682526227889, - "2026-01-01": 589.165076898948, - "2025-01-01": 580.29433511167, - "2024-01-01": 567.700715408586, - "2023-01-01": 537, - "2015-01-01": 537 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 810.945085218019, - "2034-01-01": 795.241869367514, - "2033-01-01": 779.732520379362, - "2032-01-01": 764.610905115913, - "2031-01-01": 749.877023577169, - "2030-01-01": 735.337008900776, - "2029-01-01": 720.990861086735, - "2028-01-01": 706.838580135046, - "2027-01-01": 692.492432321005, - "2026-01-01": 675.839268844976, - "2025-01-01": 665.663520351562, - "2024-01-01": 651.217207991972, - "2023-01-01": 616, - "2015-01-01": 616 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 899.14852792842, - "2034-01-01": 881.737332431838, - "2033-01-01": 864.541089966078, - "2032-01-01": 847.774753561962, - "2031-01-01": 831.438323219491, - "2030-01-01": 815.316845907841, - "2029-01-01": 799.410321627013, - "2028-01-01": 783.718750377007, - "2027-01-01": 767.812226096179, - "2026-01-01": 749.34776074857, - "2025-01-01": 738.065234415774, - "2024-01-01": 722.047651069021, - "2023-01-01": 683, - "2015-01-01": 683 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 976.820216285341, - "2034-01-01": 957.90497901087, - "2033-01-01": 939.223263184231, - "2032-01-01": 921.008590253259, - "2031-01-01": 903.260960217953, - "2030-01-01": 885.74685163048, - "2029-01-01": 868.466264490839, - "2028-01-01": 851.419198799032, - "2027-01-01": 834.138611659392, - "2026-01-01": 814.07911929054, - "2025-01-01": 801.8219676962, - "2024-01-01": 784.420727808512, - "2023-01-01": 742, - "2015-01-01": 742 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1046.59308887715, - "2034-01-01": 1026.32676322593, - "2033-01-01": 1006.31063912596, - "2032-01-01": 986.794918128492, - "2031-01-01": 967.779600233521, - "2030-01-01": 949.0144838898, - "2029-01-01": 930.499569097328, - "2028-01-01": 912.234855856106, - "2027-01-01": 893.719941063635, - "2026-01-01": 872.227627811293, - "2025-01-01": 859.094965388786, - "2024-01-01": 840.450779794835, - "2023-01-01": 795, - "2015-01-01": 795 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1108.46714570385, - "2034-01-01": 1087.00268507702, - "2033-01-01": 1065.80321779127, - "2032-01-01": 1045.13373718766, - "2031-01-01": 1024.99424326619, - "2030-01-01": 1005.1197426858, - "2029-01-01": 985.510235446478, - "2028-01-01": 966.165721548228, - "2027-01-01": 946.556214308906, - "2026-01-01": 923.793286310828, - "2025-01-01": 909.884227493531, - "2024-01-01": 890.137807027988, - "2023-01-01": 842, - "2015-01-01": 842 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1166.39179464799, - "2034-01-01": 1143.80567574613, - "2033-01-01": 1121.49839781837, - "2032-01-01": 1099.7488018388, - "2031-01-01": 1078.55688780742, - "2030-01-01": 1057.64381475014, - "2029-01-01": 1037.00958266696, - "2028-01-01": 1016.65419155787, - "2027-01-01": 996.019959474692, - "2026-01-01": 972.067519799755, - "2025-01-01": 957.431621804357, - "2024-01-01": 936.653321884558, - "2023-01-01": 886, - "2015-01-01": 886 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1220.36703570958, - "2034-01-01": 1196.73573523326, - "2033-01-01": 1173.39617920725, - "2032-01-01": 1150.6401120819, - "2031-01-01": 1128.4675338572, - "2030-01-01": 1106.58670008282, - "2029-01-01": 1084.99761075877, - "2028-01-01": 1063.70026588504, - "2027-01-01": 1042.11117656099, - "2026-01-01": 1017.05032827807, - "2025-01-01": 1001.73714832126, - "2024-01-01": 979.997324364543, - "2023-01-01": 927, - "2015-01-01": 927 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1292.77284688976, - "2034-01-01": 1267.73947356964, - "2033-01-01": 1243.01515424113, - "2032-01-01": 1218.90894289582, - "2031-01-01": 1195.42083953373, - "2030-01-01": 1172.24179016325, - "2029-01-01": 1149.37179478437, - "2028-01-01": 1126.8108533971, - "2027-01-01": 1103.94085801823, - "2026-01-01": 1077.39312013923, - "2025-01-01": 1061.1713912098, - "2024-01-01": 1038.14171793525, - "2023-01-01": 982, - "2015-01-01": 982 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1383.60922818854, - "2034-01-01": 1356.81689075529, - "2033-01-01": 1330.35532291998, - "2032-01-01": 1304.55529428056, - "2031-01-01": 1279.41680483702, - "2030-01-01": 1254.60908499142, - "2029-01-01": 1230.13213474376, - "2028-01-01": 1205.98595409405, - "2027-01-01": 1181.50900384639, - "2026-01-01": 1153.09589538323, - "2025-01-01": 1135.73435046995, - "2024-01-01": 1111.08650259669, - "2023-01-01": 1051, - "2015-01-01": 1051 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1469.17973231057, - "2034-01-01": 1440.73039969829, - "2033-01-01": 1412.63229341456, - "2032-01-01": 1385.23663978792, - "2031-01-01": 1358.54343881838, - "2030-01-01": 1332.20146417738, - "2029-01-01": 1306.21071586493, - "2028-01-01": 1280.57119388102, - "2027-01-01": 1254.58044556857, - "2026-01-01": 1224.41010394642, - "2025-01-01": 1205.97481933822, - "2024-01-01": 1179.80260408935, - "2023-01-01": 1116, - "2015-01-01": 1116 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1545.5349513733, - "2034-01-01": 1515.60706921666, - "2033-01-01": 1486.04866708664, - "2032-01-01": 1457.22922500987, - "2031-01-01": 1429.14874298636, - "2030-01-01": 1401.43774098947, - "2029-01-01": 1374.0962190192, - "2028-01-01": 1347.12417707556, - "2027-01-01": 1319.78265510529, - "2026-01-01": 1288.04432081819, - "2025-01-01": 1268.65093002067, - "2024-01-01": 1241.11851003665, - "2023-01-01": 1174, - "2015-01-01": 1174 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1617.94076255348, - "2034-01-01": 1586.61080755304, - "2033-01-01": 1555.66764212051, - "2032-01-01": 1525.49805582379, - "2031-01-01": 1496.10204866289, - "2030-01-01": 1467.09283106989, - "2029-01-01": 1438.4704030448, - "2028-01-01": 1410.23476458762, - "2027-01-01": 1381.61233656252, - "2026-01-01": 1348.38711267934, - "2025-01-01": 1328.0851729092, - "2024-01-01": 1299.26290360736, - "2023-01-01": 1229, - "2015-01-01": 1229 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1692.97951232203, - "2034-01-01": 1660.19650001075, - "2033-01-01": 1627.81821624652, - "2032-01-01": 1596.2493895764, - "2031-01-01": 1565.49002000039, - "2030-01-01": 1535.13537897143, - "2029-01-01": 1505.18546648951, - "2028-01-01": 1475.64028255466, - "2027-01-01": 1445.69037007275, - "2026-01-01": 1410.92418788091, - "2025-01-01": 1389.68066099368, - "2024-01-01": 1359.52163876246, - "2023-01-01": 1286, - "2015-01-01": 1286 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1773.28413926732, - "2034-01-01": 1738.94610071111, - "2033-01-01": 1705.03198855682, - "2032-01-01": 1671.96572920639, - "2031-01-01": 1639.74732265982, - "2030-01-01": 1607.95284251517, - "2029-01-01": 1576.58228877245, - "2028-01-01": 1545.63566143167, - "2027-01-01": 1514.26510768895, - "2026-01-01": 1477.84982976328, - "2025-01-01": 1455.59863947006, - "2024-01-01": 1424.00905708634, - "2023-01-01": 1347, - "2015-01-01": 1347 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1847.00641974169, - "2034-01-01": 1811.24081610815, - "2033-01-01": 1775.91676313676, - "2032-01-01": 1741.47581148965, - "2031-01-01": 1707.91796116683, - "2030-01-01": 1674.80166150615, - "2029-01-01": 1642.12691250761, - "2028-01-01": 1609.89371417122, - "2027-01-01": 1577.21896517268, - "2026-01-01": 1539.28976329465, - "2025-01-01": 1516.11350495656, - "2024-01-01": 1483.21062144925, - "2023-01-01": 1403, - "2015-01-01": 1403 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1918.09576162768, - "2034-01-01": 1880.95357738388, - "2033-01-01": 1844.26993862456, - "2032-01-01": 1808.50339083423, - "2031-01-01": 1773.65393401288, - "2030-01-01": 1739.26302267602, - "2029-01-01": 1705.33065682366, - "2028-01-01": 1671.85683645578, - "2027-01-01": 1637.92447060342, - "2026-01-01": 1598.5354134856, - "2025-01-01": 1574.46712524712, - "2024-01-01": 1540.29784422777, - "2023-01-01": 1457, - "2015-01-01": 1457 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2327.51771211925, - "2034-01-01": 2282.44744324962, - "2033-01-01": 2237.93359745245, - "2032-01-01": 2194.53259780022, - "2031-01-01": 2152.24444429291, - "2030-01-01": 2110.51271385807, - "2029-01-01": 2069.33740649569, - "2028-01-01": 2028.71852220578, - "2027-01-01": 1987.5432148434, - "2026-01-01": 1939.7464729187, - "2025-01-01": 1910.54075321682, - "2024-01-01": 1869.07796060034, - "2023-01-01": 1768, - "2015-01-01": 1768 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 521.321840497298, - "2034-01-01": 511.226916021973, - "2033-01-01": 501.256620243876, - "2032-01-01": 491.53558186023, - "2031-01-01": 482.063800871037, - "2030-01-01": 472.71664857907, - "2029-01-01": 463.494124984329, - "2028-01-01": 454.396230086815, - "2027-01-01": 445.173706492075, - "2026-01-01": 434.468101400342, - "2025-01-01": 427.926548797433, - "2024-01-01": 418.639633709125, - "2023-01-01": 396, - "2015-01-01": 396 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 738.539274037839, - "2034-01-01": 724.238131031129, - "2033-01-01": 710.11354534549, - "2032-01-01": 696.342074301993, - "2031-01-01": 682.923717900636, - "2030-01-01": 669.681918820349, - "2029-01-01": 656.616677061133, - "2028-01-01": 643.727992622988, - "2027-01-01": 630.662750863772, - "2026-01-01": 615.496476983818, - "2025-01-01": 606.22927746303, - "2024-01-01": 593.072814421261, - "2023-01-01": 561, - "2015-01-01": 561 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 847.806225455201, - "2034-01-01": 831.389227066038, - "2033-01-01": 815.174907669333, - "2032-01-01": 799.365946257546, - "2031-01-01": 783.962342830676, - "2030-01-01": 768.761418396266, - "2029-01-01": 753.763172954314, - "2028-01-01": 738.96760650482, - "2027-01-01": 723.969361062869, - "2026-01-01": 706.559235610657, - "2025-01-01": 695.920953094815, - "2024-01-01": 680.817990173426, - "2023-01-01": 644, - "2015-01-01": 644 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 939.959076048158, - "2034-01-01": 921.757621312346, - "2033-01-01": 903.78087589426, - "2032-01-01": 886.253549111627, - "2031-01-01": 869.175640964446, - "2030-01-01": 852.32244213499, - "2029-01-01": 835.693952623261, - "2028-01-01": 819.290172429258, - "2027-01-01": 802.661682917528, - "2026-01-01": 783.359152524859, - "2025-01-01": 771.564534952947, - "2024-01-01": 754.819945627059, - "2023-01-01": 714, - "2015-01-01": 714 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1021.58017228763, - "2034-01-01": 1001.79819907336, - "2033-01-01": 982.260447750625, - "2032-01-01": 963.211140210956, - "2031-01-01": 944.650276454355, - "2030-01-01": 926.333634589289, - "2029-01-01": 908.261214615757, - "2028-01-01": 890.433016533759, - "2027-01-01": 872.360596560227, - "2026-01-01": 851.381936077438, - "2025-01-01": 838.563136027292, - "2024-01-01": 820.364534743134, - "2023-01-01": 776, - "2015-01-01": 776 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1092.66951417363, - "2034-01-01": 1071.51096034909, - "2033-01-01": 1050.61362323843, - "2032-01-01": 1030.23871955553, - "2031-01-01": 1010.38624930041, - "2030-01-01": 990.794995759162, - "2029-01-01": 971.464958931802, - "2028-01-01": 952.396138818325, - "2027-01-01": 933.066101990964, - "2026-01-01": 910.627586268393, - "2025-01-01": 896.916756317852, - "2024-01-01": 877.451757521651, - "2023-01-01": 830, - "2015-01-01": 830 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1158.49297888288, - "2034-01-01": 1136.05981338216, - "2033-01-01": 1113.90360054195, - "2032-01-01": 1092.30129302273, - "2031-01-01": 1071.25289082453, - "2030-01-01": 1050.48144128682, - "2029-01-01": 1029.98694440962, - "2028-01-01": 1009.76940019292, - "2027-01-01": 989.274903315721, - "2026-01-01": 965.484669778538, - "2025-01-01": 950.947886216517, - "2024-01-01": 930.310297131389, - "2023-01-01": 880, - "2015-01-01": 880 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1219.0505664154, - "2034-01-01": 1195.44475817259, - "2033-01-01": 1172.13037966118, - "2032-01-01": 1149.39886061256, - "2031-01-01": 1127.25020102672, - "2030-01-01": 1105.39297117227, - "2029-01-01": 1083.82717104921, - "2028-01-01": 1062.55280065755, - "2027-01-01": 1040.9870005345, - "2026-01-01": 1015.95318660787, - "2025-01-01": 1000.65652572329, - "2024-01-01": 978.940153572348, - "2023-01-01": 926, - "2015-01-01": 926 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1275.65874606536, - "2034-01-01": 1250.95677178104, - "2033-01-01": 1226.55976014221, - "2032-01-01": 1202.77267379435, - "2031-01-01": 1179.59551273746, - "2030-01-01": 1156.72331432606, - "2029-01-01": 1134.15607856014, - "2028-01-01": 1111.89380543971, - "2027-01-01": 1089.32656967379, - "2026-01-01": 1063.13027842659, - "2025-01-01": 1047.12329743614, - "2024-01-01": 1024.39849763672, - "2023-01-01": 969, - "2015-01-01": 969 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1350.69749583391, - "2034-01-01": 1324.54246423875, - "2033-01-01": 1298.71033426822, - "2032-01-01": 1273.52400754696, - "2031-01-01": 1248.98348407496, - "2030-01-01": 1224.76586222759, - "2029-01-01": 1200.87114200485, - "2028-01-01": 1177.29932340675, - "2027-01-01": 1153.40460318401, - "2026-01-01": 1125.66735362816, - "2025-01-01": 1108.71878552062, - "2024-01-01": 1084.65723279182, - "2023-01-01": 1026, - "2015-01-01": 1026 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1446.79975430942, - "2034-01-01": 1418.78378966704, - "2033-01-01": 1391.11370113136, - "2032-01-01": 1364.13536480907, - "2031-01-01": 1337.84878070018, - "2030-01-01": 1311.90807269798, - "2029-01-01": 1286.31324080247, - "2028-01-01": 1261.06428501366, - "2027-01-01": 1235.46945311816, - "2026-01-01": 1205.75869555297, - "2025-01-01": 1187.60423517267, - "2024-01-01": 1161.83070062204, - "2023-01-01": 1099, - "2015-01-01": 1099 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1535.00319701982, - "2034-01-01": 1505.27925273137, - "2033-01-01": 1475.92227071808, - "2032-01-01": 1447.29921325512, - "2031-01-01": 1419.4100803425, - "2030-01-01": 1391.88790970504, - "2029-01-01": 1364.73270134275, - "2028-01-01": 1337.94445525562, - "2027-01-01": 1310.78924689333, - "2026-01-01": 1279.26718745656, - "2025-01-01": 1260.00594923689, - "2024-01-01": 1232.66114369909, - "2023-01-01": 1166, - "2015-01-01": 1166 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1615.30782396511, - "2034-01-01": 1584.02885343172, - "2033-01-01": 1553.13604302837, - "2032-01-01": 1523.01555288511, - "2031-01-01": 1493.66738300193, - "2030-01-01": 1464.70537324879, - "2029-01-01": 1436.12952362569, - "2028-01-01": 1407.93983413263, - "2027-01-01": 1379.36398450953, - "2026-01-01": 1346.19282933894, - "2025-01-01": 1325.92392771326, - "2024-01-01": 1297.14856202297, - "2023-01-01": 1227, - "2015-01-01": 1227 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1690.34657373366, - "2034-01-01": 1657.61454588943, - "2033-01-01": 1625.28661715438, - "2032-01-01": 1593.76688663772, - "2031-01-01": 1563.05535433942, - "2030-01-01": 1532.74792115032, - "2029-01-01": 1502.8445870704, - "2028-01-01": 1473.34535209967, - "2027-01-01": 1443.44201801976, - "2026-01-01": 1408.7299045405, - "2025-01-01": 1387.51941579774, - "2024-01-01": 1357.40729717807, - "2023-01-01": 1284, - "2015-01-01": 1284 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1769.33473138477, - "2034-01-01": 1735.07316952912, - "2033-01-01": 1701.23458991861, - "2032-01-01": 1668.24197479836, - "2031-01-01": 1636.09532416837, - "2030-01-01": 1604.37165578351, - "2029-01-01": 1573.07096964378, - "2028-01-01": 1542.19326574919, - "2027-01-01": 1510.89257960947, - "2026-01-01": 1474.55840475268, - "2025-01-01": 1452.35677167614, - "2024-01-01": 1420.83754470976, - "2023-01-01": 1344, - "2015-01-01": 1344 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1852.27229691843, - "2034-01-01": 1816.4047243508, - "2033-01-01": 1780.97996132104, - "2032-01-01": 1746.44081736703, - "2031-01-01": 1712.78729248876, - "2030-01-01": 1679.57657714836, - "2029-01-01": 1646.80867134584, - "2028-01-01": 1614.48357508118, - "2027-01-01": 1581.71566927866, - "2026-01-01": 1543.67832997546, - "2025-01-01": 1520.43599534845, - "2024-01-01": 1487.43930461803, - "2023-01-01": 1407, - "2015-01-01": 1407 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1929.94398527535, - "2034-01-01": 1892.57237092983, - "2033-01-01": 1855.6621345392, - "2032-01-01": 1819.67465405833, - "2031-01-01": 1784.60992948722, - "2030-01-01": 1750.006582871, - "2029-01-01": 1715.86461420966, - "2028-01-01": 1682.18402350321, - "2027-01-01": 1648.04205484187, - "2026-01-01": 1608.40968851743, - "2025-01-01": 1584.19272862888, - "2024-01-01": 1549.81238135752, - "2023-01-01": 1466, - "2015-01-01": 1466 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2003.66626574972, - "2034-01-01": 1964.86708632688, - "2033-01-01": 1926.54690911914, - "2032-01-01": 1889.18473634159, - "2031-01-01": 1852.78056799424, - "2030-01-01": 1816.85540186198, - "2029-01-01": 1781.40923794482, - "2028-01-01": 1746.44207624276, - "2027-01-01": 1710.9959123256, - "2026-01-01": 1669.84962204879, - "2025-01-01": 1644.70759411539, - "2024-01-01": 1609.01394572043, - "2023-01-01": 1522, - "2015-01-01": 1522 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2431.51878635987, - "2034-01-01": 2384.43463104188, - "2033-01-01": 2337.93176159202, - "2032-01-01": 2292.5914638784, - "2031-01-01": 2248.41373790102, - "2030-01-01": 2204.81729779177, - "2029-01-01": 2161.80214355065, - "2028-01-01": 2119.36827517765, - "2027-01-01": 2076.35312093652, - "2026-01-01": 2026.42066486473, - "2025-01-01": 1995.90993845671, - "2024-01-01": 1952.59445318372, - "2023-01-01": 1847, - "2015-01-01": 1847 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 539.752410615889, - "2034-01-01": 529.300594871235, - "2033-01-01": 518.977813888861, - "2032-01-01": 508.913102431046, - "2031-01-01": 499.106460497791, - "2030-01-01": 489.428853326815, - "2029-01-01": 479.880280918119, - "2028-01-01": 470.460743271703, - "2027-01-01": 460.912170863006, - "2026-01-01": 449.828084783182, - "2025-01-01": 443.055265169059, - "2024-01-01": 433.440024799852, - "2023-01-01": 410, - "2015-01-01": 410 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 764.86865992154, - "2034-01-01": 750.05767224436, - "2033-01-01": 735.429536266898, - "2032-01-01": 721.167103688873, - "2031-01-01": 707.270374510284, - "2030-01-01": 693.556497031414, - "2029-01-01": 680.025471252261, - "2028-01-01": 666.677297172827, - "2027-01-01": 653.146271393675, - "2026-01-01": 637.439310387875, - "2025-01-01": 627.841729422496, - "2024-01-01": 614.216230265156, - "2023-01-01": 581, - "2015-01-01": 581 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 878.085019221459, - "2034-01-01": 861.081699461253, - "2033-01-01": 844.288297228952, - "2032-01-01": 827.914730052458, - "2031-01-01": 811.960997931772, - "2030-01-01": 796.21718333899, - "2029-01-01": 780.68328627411, - "2028-01-01": 765.359306737136, - "2027-01-01": 749.825409672257, - "2026-01-01": 731.793494025323, - "2025-01-01": 720.775272848201, - "2024-01-01": 705.132918393905, - "2023-01-01": 667, - "2015-01-01": 667 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 972.870808402785, - "2034-01-01": 954.032047828885, - "2033-01-01": 935.42586454602, - "2032-01-01": 917.284835845227, - "2031-01-01": 899.608961726506, - "2030-01-01": 882.16566489882, - "2029-01-01": 864.95494536217, - "2028-01-01": 847.976803116556, - "2027-01-01": 830.766083579907, - "2026-01-01": 810.787694279931, - "2025-01-01": 798.58009990228, - "2024-01-01": 781.249215431928, - "2023-01-01": 739, - "2015-01-01": 739 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1057.12484323063, - "2034-01-01": 1036.65457971122, - "2033-01-01": 1016.43703549453, - "2032-01-01": 996.724929883244, - "2031-01-01": 977.518262877381, - "2030-01-01": 958.564315174226, - "2029-01-01": 939.863086773779, - "2028-01-01": 921.414577676042, - "2027-01-01": 902.713349275596, - "2026-01-01": 881.004761172916, - "2025-01-01": 867.739946172572, - "2024-01-01": 848.908146132393, - "2023-01-01": 803, - "2015-01-01": 803 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1130.847123705, - "2034-01-01": 1108.94929510827, - "2033-01-01": 1087.32181007447, - "2032-01-01": 1066.23501216651, - "2031-01-01": 1045.6889013844, - "2030-01-01": 1025.41313416521, - "2029-01-01": 1005.40771050894, - "2028-01-01": 985.672630415591, - "2027-01-01": 965.667206759323, - "2026-01-01": 942.444694704277, - "2025-01-01": 928.254811659078, - "2024-01-01": 908.109710495299, - "2023-01-01": 859, - "2015-01-01": 859 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1199.30352700262, - "2034-01-01": 1176.08010226267, - "2033-01-01": 1153.14338647013, - "2032-01-01": 1130.7800885724, - "2031-01-01": 1108.99020856948, - "2030-01-01": 1087.48703751397, - "2029-01-01": 1066.27057540587, - "2028-01-01": 1045.34082224517, - "2027-01-01": 1024.12436013707, - "2026-01-01": 999.496061554827, - "2025-01-01": 984.44718675369, - "2024-01-01": 963.082591689427, - "2023-01-01": 911, - "2015-01-01": 911 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1262.49405312351, - "2034-01-01": 1238.04700117443, - "2033-01-01": 1213.90176468151, - "2032-01-01": 1190.36015910091, - "2031-01-01": 1167.42218443264, - "2030-01-01": 1144.78602522053, - "2029-01-01": 1122.45168146458, - "2028-01-01": 1100.41915316479, - "2027-01-01": 1078.08480940884, - "2026-01-01": 1052.15886172457, - "2025-01-01": 1036.31707145641, - "2024-01-01": 1013.82678971478, - "2023-01-01": 959, - "2015-01-01": 959 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1320.41870206765, - "2034-01-01": 1294.84999184353, - "2033-01-01": 1269.5969447086, - "2032-01-01": 1244.97522375205, - "2031-01-01": 1220.98482897386, - "2030-01-01": 1197.31009728487, - "2029-01-01": 1173.95102868506, - "2028-01-01": 1150.90762317443, - "2027-01-01": 1127.54855457462, - "2026-01-01": 1100.43309521349, - "2025-01-01": 1083.86446576724, - "2024-01-01": 1060.34230457134, - "2023-01-01": 1003, - "2015-01-01": 1003 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1396.77392113039, - "2034-01-01": 1369.7266613619, - "2033-01-01": 1343.01331838069, - "2032-01-01": 1316.967808974, - "2031-01-01": 1291.59013314184, - "2030-01-01": 1266.54637409695, - "2029-01-01": 1241.83653183933, - "2028-01-01": 1217.46060636897, - "2027-01-01": 1192.75076411134, - "2026-01-01": 1164.06731208526, - "2025-01-01": 1146.54057644969, - "2024-01-01": 1121.65821051864, - "2023-01-01": 1061, - "2015-01-01": 1061 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1496.82558748845, - "2034-01-01": 1467.84091797218, - "2033-01-01": 1439.21408388204, - "2032-01-01": 1411.30292064415, - "2031-01-01": 1384.10742825851, - "2030-01-01": 1357.269771299, - "2029-01-01": 1330.78994976561, - "2028-01-01": 1304.66796365836, - "2027-01-01": 1278.18814212497, - "2026-01-01": 1247.45007902068, - "2025-01-01": 1228.66789389566, - "2024-01-01": 1202.00319072544, - "2023-01-01": 1137, - "2015-01-01": 1137 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1587.66196878722, - "2034-01-01": 1556.91833515783, - "2033-01-01": 1526.55425256089, - "2032-01-01": 1496.94927202888, - "2031-01-01": 1468.10339356179, - "2030-01-01": 1439.63706612717, - "2029-01-01": 1411.550289725, - "2028-01-01": 1383.8430643553, - "2027-01-01": 1355.75628795314, - "2026-01-01": 1323.15285426468, - "2025-01-01": 1303.23085315582, - "2024-01-01": 1274.94797538688, - "2023-01-01": 1206, - "2015-01-01": 1206 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1670.59953432089, - "2034-01-01": 1638.24988997951, - "2033-01-01": 1606.29962396333, - "2032-01-01": 1575.14811459756, - "2031-01-01": 1544.79536188219, - "2030-01-01": 1514.84198749202, - "2029-01-01": 1485.28799142706, - "2028-01-01": 1456.13337368729, - "2027-01-01": 1426.57937762233, - "2026-01-01": 1392.27277948746, - "2025-01-01": 1371.31007682814, - "2024-01-01": 1341.54973529515, - "2023-01-01": 1269, - "2015-01-01": 1269 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1749.58769197199, - "2034-01-01": 1715.7085136192, - "2033-01-01": 1682.24759672755, - "2032-01-01": 1649.6232027582, - "2031-01-01": 1617.83533171113, - "2030-01-01": 1586.46572212521, - "2029-01-01": 1555.51437400044, - "2028-01-01": 1524.98128733681, - "2027-01-01": 1494.02993921204, - "2026-01-01": 1458.10127969963, - "2025-01-01": 1436.14743270654, - "2024-01-01": 1404.97998282684, - "2023-01-01": 1329, - "2015-01-01": 1329 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1829.89231891728, - "2034-01-01": 1794.45811431955, - "2033-01-01": 1759.46136903785, - "2032-01-01": 1725.33954238818, - "2031-01-01": 1692.09263437056, - "2030-01-01": 1659.28318566896, - "2029-01-01": 1626.91119628338, - "2028-01-01": 1594.97666621382, - "2027-01-01": 1562.60467682824, - "2026-01-01": 1525.02692158201, - "2025-01-01": 1502.06541118291, - "2024-01-01": 1469.46740115072, - "2023-01-01": 1390, - "2015-01-01": 1390 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1915.46282303931, - "2034-01-01": 1878.37162326255, - "2033-01-01": 1841.73833953242, - "2032-01-01": 1806.02088789554, - "2031-01-01": 1771.21926835192, - "2030-01-01": 1736.87556485492, - "2029-01-01": 1702.98977740454, - "2028-01-01": 1669.5619060008, - "2027-01-01": 1635.67611855043, - "2026-01-01": 1596.3411301452, - "2025-01-01": 1572.30588005117, - "2024-01-01": 1538.18350264338, - "2023-01-01": 1455, - "2015-01-01": 1455 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1995.7674499846, - "2034-01-01": 1957.12122396291, - "2033-01-01": 1918.95211184272, - "2032-01-01": 1881.73722752553, - "2031-01-01": 1845.47657101134, - "2030-01-01": 1809.69302839866, - "2029-01-01": 1774.38659968748, - "2028-01-01": 1739.55728487781, - "2027-01-01": 1704.25085616663, - "2026-01-01": 1663.26677202757, - "2025-01-01": 1638.22385852755, - "2024-01-01": 1602.67092096726, - "2023-01-01": 1516, - "2015-01-01": 1516 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2072.12266904734, - "2034-01-01": 2031.99789348128, - "2033-01-01": 1992.3684855148, - "2032-01-01": 1953.72981274748, - "2031-01-01": 1916.08187517932, - "2030-01-01": 1878.92930521075, - "2029-01-01": 1842.27210284175, - "2028-01-01": 1806.11026807234, - "2027-01-01": 1769.45306570335, - "2026-01-01": 1726.90098889934, - "2025-01-01": 1700.89996921, - "2024-01-01": 1663.98682691455, - "2023-01-01": 1574, - "2015-01-01": 1574 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2514.45635189353, - "2034-01-01": 2465.76618586356, - "2033-01-01": 2417.67713299445, - "2032-01-01": 2370.79030644707, - "2031-01-01": 2325.10570622142, - "2030-01-01": 2280.02221915663, - "2029-01-01": 2235.5398452527, - "2028-01-01": 2191.65858450964, - "2027-01-01": 2147.17621060571, - "2026-01-01": 2095.54059008751, - "2025-01-01": 2063.98916212903, - "2024-01-01": 2019.19621309199, - "2023-01-01": 1910, - "2015-01-01": 1910 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 564.765327205406, - "2034-01-01": 553.829159023805, - "2033-01-01": 543.028005264198, - "2032-01-01": 532.496880348583, - "2031-01-01": 522.235784276957, - "2030-01-01": 512.109702627326, - "2029-01-01": 502.11863539969, - "2028-01-01": 492.26258259405, - "2027-01-01": 482.271515366414, - "2026-01-01": 470.673776517037, - "2025-01-01": 463.587094530552, - "2024-01-01": 453.526269851552, - "2023-01-01": 429, - "2015-01-01": 429 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 800.413330864538, - "2034-01-01": 784.914052882222, - "2033-01-01": 769.606124010799, - "2032-01-01": 754.680893361161, - "2031-01-01": 740.138360933309, - "2030-01-01": 725.78717761635, - "2029-01-01": 711.627343410284, - "2028-01-01": 697.65885831511, - "2027-01-01": 683.499024109044, - "2026-01-01": 667.062135483353, - "2025-01-01": 657.018539567776, - "2024-01-01": 642.759841654414, - "2023-01-01": 608, - "2015-01-01": 608 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 918.895567341197, - "2034-01-01": 901.101988341761, - "2033-01-01": 883.528083157134, - "2032-01-01": 866.393525602123, - "2031-01-01": 849.698315676727, - "2030-01-01": 833.222779566139, - "2029-01-01": 816.966917270358, - "2028-01-01": 800.930728789386, - "2027-01-01": 784.674866493606, - "2026-01-01": 765.804885801613, - "2025-01-01": 754.274573385374, - "2024-01-01": 737.905212951943, - "2023-01-01": 698, - "2015-01-01": 698 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1017.63076440508, - "2034-01-01": 997.925267891378, - "2033-01-01": 978.463049112414, - "2032-01-01": 959.487385802924, - "2031-01-01": 940.998277962908, - "2030-01-01": 922.75244785763, - "2029-01-01": 904.749895487087, - "2028-01-01": 886.990620851283, - "2027-01-01": 868.988068480741, - "2026-01-01": 848.090511066829, - "2025-01-01": 835.321268233373, - "2024-01-01": 817.19302236655, - "2023-01-01": 773, - "2015-01-01": 773 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1105.83420711548, - "2034-01-01": 1084.4207309557, - "2033-01-01": 1063.27161869913, - "2032-01-01": 1042.65123424897, - "2031-01-01": 1022.55957760523, - "2030-01-01": 1002.73228486469, - "2029-01-01": 983.169356027365, - "2028-01-01": 963.870791093244, - "2027-01-01": 944.307862255916, - "2026-01-01": 921.599002970422, - "2025-01-01": 907.722982297585, - "2024-01-01": 888.023465443599, - "2023-01-01": 840, - "2015-01-01": 840 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1183.5058954724, - "2034-01-01": 1160.58837753473, - "2033-01-01": 1137.95379191728, - "2032-01-01": 1115.88507094027, - "2031-01-01": 1094.38221460369, - "2030-01-01": 1073.16229058733, - "2029-01-01": 1052.22529889119, - "2028-01-01": 1031.57123951527, - "2027-01-01": 1010.63424781913, - "2026-01-01": 986.330361512392, - "2025-01-01": 971.47971557801, - "2024-01-01": 950.39654218309, - "2023-01-01": 899, - "2015-01-01": 899 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1254.5952373584, - "2034-01-01": 1230.30113881046, - "2033-01-01": 1206.30696740508, - "2032-01-01": 1182.91265028485, - "2031-01-01": 1160.11818744974, - "2030-01-01": 1137.62365175721, - "2029-01-01": 1115.42904320724, - "2028-01-01": 1093.53436179984, - "2027-01-01": 1071.33975324987, - "2026-01-01": 1045.57601170335, - "2025-01-01": 1029.83333586857, - "2024-01-01": 1007.48376496161, - "2023-01-01": 953, - "2015-01-01": 953 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1320.41870206765, - "2034-01-01": 1294.84999184353, - "2033-01-01": 1269.5969447086, - "2032-01-01": 1244.97522375205, - "2031-01-01": 1220.98482897386, - "2030-01-01": 1197.31009728487, - "2029-01-01": 1173.95102868506, - "2028-01-01": 1150.90762317443, - "2027-01-01": 1127.54855457462, - "2026-01-01": 1100.43309521349, - "2025-01-01": 1083.86446576724, - "2024-01-01": 1060.34230457134, - "2023-01-01": 1003, - "2015-01-01": 1003 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1380.97628960017, - "2034-01-01": 1354.23493663397, - "2033-01-01": 1327.82372382784, - "2032-01-01": 1302.07279134187, - "2031-01-01": 1276.98213917606, - "2030-01-01": 1252.22162717031, - "2029-01-01": 1227.79125532465, - "2028-01-01": 1203.69102363906, - "2027-01-01": 1179.2606517934, - "2026-01-01": 1150.90161204282, - "2025-01-01": 1133.57310527401, - "2024-01-01": 1108.9721610123, - "2023-01-01": 1049, - "2015-01-01": 1049 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1461.28091654546, - "2034-01-01": 1432.98453733432, - "2033-01-01": 1405.03749613814, - "2032-01-01": 1377.78913097186, - "2031-01-01": 1351.23944183548, - "2030-01-01": 1325.03909071406, - "2029-01-01": 1299.18807760759, - "2028-01-01": 1273.68640251607, - "2027-01-01": 1247.8353894096, - "2026-01-01": 1217.8272539252, - "2025-01-01": 1199.49108375038, - "2024-01-01": 1173.45957933618, - "2023-01-01": 1110, - "2015-01-01": 1110 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1565.28199078608, - "2034-01-01": 1534.97172512658, - "2033-01-01": 1505.0356602777, - "2032-01-01": 1475.84799705003, - "2031-01-01": 1447.40873544359, - "2030-01-01": 1419.34367464776, - "2029-01-01": 1391.65281466254, - "2028-01-01": 1364.33615548794, - "2027-01-01": 1336.64529550272, - "2026-01-01": 1304.50144587123, - "2025-01-01": 1284.86026899027, - "2024-01-01": 1256.97607191957, - "2023-01-01": 1189, - "2015-01-01": 1189 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1660.06777996741, - "2034-01-01": 1627.92207349421, - "2033-01-01": 1596.17322759477, - "2032-01-01": 1565.2181028428, - "2031-01-01": 1535.05669923833, - "2030-01-01": 1505.29215620759, - "2029-01-01": 1475.9244737506, - "2028-01-01": 1446.95365186736, - "2027-01-01": 1417.58596941037, - "2026-01-01": 1383.49564612584, - "2025-01-01": 1362.66509604435, - "2024-01-01": 1333.09236895759, - "2023-01-01": 1261, - "2015-01-01": 1261 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1746.95475338362, - "2034-01-01": 1713.12655949788, - "2033-01-01": 1679.71599763541, - "2032-01-01": 1647.14069981951, - "2031-01-01": 1615.40066605017, - "2030-01-01": 1584.07826430411, - "2029-01-01": 1553.17349458133, - "2028-01-01": 1522.68635688183, - "2027-01-01": 1491.78158715905, - "2026-01-01": 1455.90699635923, - "2025-01-01": 1433.98618751059, - "2024-01-01": 1402.86564124245, - "2023-01-01": 1327, - "2015-01-01": 1327 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1828.5758496231, - "2034-01-01": 1793.16713725889, - "2033-01-01": 1758.19556949178, - "2032-01-01": 1724.09829091884, - "2031-01-01": 1690.87530154008, - "2030-01-01": 1658.08945675841, - "2029-01-01": 1625.74075657382, - "2028-01-01": 1593.82920098633, - "2027-01-01": 1561.48050080175, - "2026-01-01": 1523.92977991181, - "2025-01-01": 1500.98478858493, - "2024-01-01": 1468.41023035852, - "2023-01-01": 1389, - "2015-01-01": 1389 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1912.82988445094, - "2034-01-01": 1875.78966914123, - "2033-01-01": 1839.20674044028, - "2032-01-01": 1803.53838495685, - "2031-01-01": 1768.78460269095, - "2030-01-01": 1734.48810703381, - "2029-01-01": 1700.64889798543, - "2028-01-01": 1667.26697554581, - "2027-01-01": 1633.42776649744, - "2026-01-01": 1594.14684680479, - "2025-01-01": 1570.14463485523, - "2024-01-01": 1536.06916105899, - "2023-01-01": 1453, - "2015-01-01": 1453 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2003.66626574972, - "2034-01-01": 1964.86708632688, - "2033-01-01": 1926.54690911914, - "2032-01-01": 1889.18473634159, - "2031-01-01": 1852.78056799424, - "2030-01-01": 1816.85540186198, - "2029-01-01": 1781.40923794482, - "2028-01-01": 1746.44207624276, - "2027-01-01": 1710.9959123256, - "2026-01-01": 1669.84962204879, - "2025-01-01": 1644.70759411539, - "2024-01-01": 1609.01394572043, - "2023-01-01": 1522, - "2015-01-01": 1522 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2086.60383128338, - "2034-01-01": 2046.19864114856, - "2033-01-01": 2006.29228052157, - "2032-01-01": 1967.38357891026, - "2031-01-01": 1929.47253631463, - "2030-01-01": 1892.06032322683, - "2029-01-01": 1855.14693964687, - "2028-01-01": 1818.73238557475, - "2027-01-01": 1781.81900199479, - "2026-01-01": 1738.96954727157, - "2025-01-01": 1712.7868177877, - "2024-01-01": 1675.6157056287, - "2023-01-01": 1585, - "2015-01-01": 1585 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2166.90845822867, - "2034-01-01": 2124.94824184891, - "2033-01-01": 2083.50605283187, - "2032-01-01": 2043.09991854025, - "2031-01-01": 2003.72983897406, - "2030-01-01": 1964.87778677058, - "2029-01-01": 1926.54376192981, - "2028-01-01": 1888.72776445176, - "2027-01-01": 1850.393739611, - "2026-01-01": 1805.89518915395, - "2025-01-01": 1778.70479626408, - "2024-01-01": 1740.10312395258, - "2023-01-01": 1646, - "2015-01-01": 1646 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ME.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2628.98918048764, - "2034-01-01": 2578.08119014111, - "2033-01-01": 2527.80169350257, - "2032-01-01": 2478.77918428, - "2031-01-01": 2431.01366247339, - "2030-01-01": 2383.87663437476, - "2029-01-01": 2337.36809998411, - "2028-01-01": 2291.48805930144, - "2027-01-01": 2244.97952491079, - "2026-01-01": 2190.99191539516, - "2025-01-01": 2158.00332815271, - "2024-01-01": 2111.17007201294, - "2023-01-01": 1997, - "2015-01-01": 1997 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD", - "description": null, - "label": "MD", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 455.498375788043, - "2034-01-01": 446.678062988896, - "2033-01-01": 437.966642940356, - "2032-01-01": 429.473008393029, - "2031-01-01": 421.197159346916, - "2030-01-01": 413.03020305141, - "2029-01-01": 404.97213950651, - "2028-01-01": 397.022968712217, - "2027-01-01": 388.964905167318, - "2026-01-01": 379.611017890198, - "2025-01-01": 373.895418898767, - "2024-01-01": 365.781094099387, - "2023-01-01": 346, - "2015-01-01": 346 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 646.386423444882, - "2034-01-01": 633.869736784821, - "2033-01-01": 621.507577120563, - "2032-01-01": 609.454471447911, - "2031-01-01": 597.710419766867, - "2030-01-01": 586.120895081625, - "2029-01-01": 574.685897392186, - "2028-01-01": 563.405426698551, - "2027-01-01": 551.970429009113, - "2026-01-01": 538.696560069616, - "2025-01-01": 530.585695604898, - "2024-01-01": 519.070858967627, - "2023-01-01": 491, - "2015-01-01": 491 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 742.488681920394, - "2034-01-01": 728.111062213114, - "2033-01-01": 713.910943983701, - "2032-01-01": 700.065828710025, - "2031-01-01": 686.575716392083, - "2030-01-01": 673.263105552009, - "2029-01-01": 660.127996189803, - "2028-01-01": 647.170388305464, - "2027-01-01": 634.035278943258, - "2026-01-01": 618.787901994426, - "2025-01-01": 609.47114525695, - "2024-01-01": 596.244326797845, - "2023-01-01": 564, - "2015-01-01": 564 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 824.10977815987, - "2034-01-01": 808.15163997413, - "2033-01-01": 792.390515840066, - "2032-01-01": 777.023419809353, - "2031-01-01": 762.050351881993, - "2030-01-01": 747.274298006308, - "2029-01-01": 732.695258182299, - "2028-01-01": 718.313232409965, - "2027-01-01": 703.734192585956, - "2026-01-01": 686.810685547005, - "2025-01-01": 676.469746331295, - "2024-01-01": 661.78891591392, - "2023-01-01": 626, - "2015-01-01": 626 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 895.199120045865, - "2034-01-01": 877.864401249854, - "2033-01-01": 860.743691327867, - "2032-01-01": 844.05099915393, - "2031-01-01": 827.786324728043, - "2030-01-01": 811.735659176181, - "2029-01-01": 795.899002498343, - "2028-01-01": 780.276354694531, - "2027-01-01": 764.439698016694, - "2026-01-01": 746.056335737961, - "2025-01-01": 734.823366621854, - "2024-01-01": 718.876138692437, - "2023-01-01": 680, - "2015-01-01": 680 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 959.706115460935, - "2034-01-01": 941.122277222269, - "2033-01-01": 922.767869085316, - "2032-01-01": 904.872321151787, - "2031-01-01": 887.435633421682, - "2030-01-01": 870.228375793288, - "2029-01-01": 853.250548266606, - "2028-01-01": 836.502150841637, - "2027-01-01": 819.524323314955, - "2026-01-01": 799.816277577902, - "2025-01-01": 787.773873922547, - "2024-01-01": 770.67750750998, - "2023-01-01": 729, - "2015-01-01": 729 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1018.94723369926, - "2034-01-01": 999.216244952039, - "2033-01-01": 979.728848658484, - "2032-01-01": 960.728637272268, - "2031-01-01": 942.215610793391, - "2030-01-01": 923.946176768183, - "2029-01-01": 905.920335196644, - "2028-01-01": 888.138086078775, - "2027-01-01": 870.112244507237, - "2026-01-01": 849.187652737032, - "2025-01-01": 836.401890831346, - "2024-01-01": 818.250193158745, - "2023-01-01": 774, - "2015-01-01": 774 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1072.92247476085, - "2034-01-01": 1052.14630443916, - "2033-01-01": 1031.62663004737, - "2032-01-01": 1011.61994751537, - "2031-01-01": 992.12625684317, - "2030-01-01": 972.889062100864, - "2029-01-01": 953.908363288456, - "2028-01-01": 935.184160405945, - "2027-01-01": 916.203461593537, - "2026-01-01": 894.17046121535, - "2025-01-01": 880.707417348252, - "2024-01-01": 861.59419563873, - "2023-01-01": 815, - "2015-01-01": 815 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1122.94830793989, - "2034-01-01": 1101.2034327443, - "2033-01-01": 1079.72701279804, - "2032-01-01": 1058.78750335045, - "2031-01-01": 1038.3849044015, - "2030-01-01": 1018.25076070189, - "2029-01-01": 998.385072251598, - "2028-01-01": 978.78783905064, - "2027-01-01": 958.922150600352, - "2026-01-01": 935.86184468306, - "2025-01-01": 921.771076071238, - "2024-01-01": 901.766685742131, - "2023-01-01": 853, - "2015-01-01": 853 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1190.08824194333, - "2034-01-01": 1167.04326283804, - "2033-01-01": 1144.28278964764, - "2032-01-01": 1122.09132828699, - "2031-01-01": 1100.4688787561, - "2030-01-01": 1079.1309351401, - "2029-01-01": 1058.07749743897, - "2028-01-01": 1037.30856565273, - "2027-01-01": 1016.2551279516, - "2026-01-01": 991.816069863407, - "2025-01-01": 976.882828567877, - "2024-01-01": 955.682396144063, - "2023-01-01": 904, - "2015-01-01": 904 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1275.65874606536, - "2034-01-01": 1250.95677178104, - "2033-01-01": 1226.55976014221, - "2032-01-01": 1202.77267379435, - "2031-01-01": 1179.59551273746, - "2030-01-01": 1156.72331432606, - "2029-01-01": 1134.15607856014, - "2028-01-01": 1111.89380543971, - "2027-01-01": 1089.32656967379, - "2026-01-01": 1063.13027842659, - "2025-01-01": 1047.12329743614, - "2024-01-01": 1024.39849763672, - "2023-01-01": 969, - "2015-01-01": 969 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1355.96337301065, - "2034-01-01": 1329.7063724814, - "2033-01-01": 1303.7735324525, - "2032-01-01": 1278.48901342434, - "2031-01-01": 1253.85281539689, - "2030-01-01": 1229.5407778698, - "2029-01-01": 1205.55290084308, - "2028-01-01": 1181.88918431672, - "2027-01-01": 1157.90130728999, - "2026-01-01": 1130.05592030897, - "2025-01-01": 1113.04127591251, - "2024-01-01": 1088.8859159606, - "2023-01-01": 1030, - "2015-01-01": 1030 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1428.36918419083, - "2034-01-01": 1400.71011081778, - "2033-01-01": 1373.39250748638, - "2032-01-01": 1346.75784423826, - "2031-01-01": 1320.80612107342, - "2030-01-01": 1295.19586795023, - "2029-01-01": 1269.92708486868, - "2028-01-01": 1244.99977182877, - "2027-01-01": 1219.73098874722, - "2026-01-01": 1190.39871217013, - "2025-01-01": 1172.47551880105, - "2024-01-01": 1147.03030953132, - "2023-01-01": 1085, - "2015-01-01": 1085 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1496.82558748845, - "2034-01-01": 1467.84091797218, - "2033-01-01": 1439.21408388204, - "2032-01-01": 1411.30292064415, - "2031-01-01": 1384.10742825851, - "2030-01-01": 1357.269771299, - "2029-01-01": 1330.78994976561, - "2028-01-01": 1304.66796365836, - "2027-01-01": 1278.18814212497, - "2026-01-01": 1247.45007902068, - "2025-01-01": 1228.66789389566, - "2024-01-01": 1202.00319072544, - "2023-01-01": 1137, - "2015-01-01": 1137 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1567.91492937445, - "2034-01-01": 1537.55367924791, - "2033-01-01": 1507.56725936984, - "2032-01-01": 1478.33049998872, - "2031-01-01": 1449.84340110456, - "2030-01-01": 1421.73113246887, - "2029-01-01": 1393.99369408166, - "2028-01-01": 1366.63108594292, - "2027-01-01": 1338.89364755571, - "2026-01-01": 1306.69572921163, - "2025-01-01": 1287.02151418622, - "2024-01-01": 1259.09041350396, - "2023-01-01": 1191, - "2015-01-01": 1191 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1642.953679143, - "2034-01-01": 1611.13937170561, - "2033-01-01": 1579.71783349585, - "2032-01-01": 1549.08183374133, - "2031-01-01": 1519.23137244206, - "2030-01-01": 1489.7736803704, - "2029-01-01": 1460.70875752637, - "2028-01-01": 1432.03660390996, - "2027-01-01": 1402.97168106593, - "2026-01-01": 1369.2328044132, - "2025-01-01": 1348.6170022707, - "2024-01-01": 1319.34914865906, - "2023-01-01": 1248, - "2015-01-01": 1248 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1714.04302102899, - "2034-01-01": 1680.85213298134, - "2033-01-01": 1648.07100898365, - "2032-01-01": 1616.10941308591, - "2031-01-01": 1584.96734528811, - "2030-01-01": 1554.23504154028, - "2029-01-01": 1523.91250184242, - "2028-01-01": 1493.99972619453, - "2027-01-01": 1463.67718649667, - "2026-01-01": 1428.47845460415, - "2025-01-01": 1406.97062256126, - "2024-01-01": 1376.43637143758, - "2023-01-01": 1302, - "2015-01-01": 1302 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1781.18295503243, - "2034-01-01": 1746.69196307508, - "2033-01-01": 1712.62678583324, - "2032-01-01": 1679.41323802245, - "2031-01-01": 1647.05131964271, - "2030-01-01": 1615.11521597849, - "2029-01-01": 1583.60492702979, - "2028-01-01": 1552.52045279662, - "2027-01-01": 1521.01016384792, - "2026-01-01": 1484.4326797845, - "2025-01-01": 1462.0823750579, - "2024-01-01": 1430.35208183951, - "2023-01-01": 1353, - "2015-01-01": 1353 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2173.49080469959, - "2034-01-01": 2131.40312715222, - "2033-01-01": 2089.83505056222, - "2032-01-01": 2049.30617588697, - "2031-01-01": 2009.81650312647, - "2030-01-01": 1970.84643132335, - "2029-01-01": 1932.3959604776, - "2028-01-01": 1894.46509058922, - "2027-01-01": 1856.01461974347, - "2026-01-01": 1811.38089750496, - "2025-01-01": 1784.10790925394, - "2024-01-01": 1745.38897791355, - "2023-01-01": 1651, - "2015-01-01": 1651 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 529.220656262408, - "2034-01-01": 518.972778385943, - "2033-01-01": 508.851417520298, - "2032-01-01": 498.983090676294, - "2031-01-01": 489.367797853932, - "2030-01-01": 479.879022042389, - "2029-01-01": 470.516763241668, - "2028-01-01": 461.281021451767, - "2027-01-01": 451.918762651045, - "2026-01-01": 441.050951421559, - "2025-01-01": 434.410284385273, - "2024-01-01": 424.982658462294, - "2023-01-01": 402, - "2015-01-01": 402 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 749.071028391319, - "2034-01-01": 734.565947516422, - "2033-01-01": 720.239941714053, - "2032-01-01": 706.272086056745, - "2031-01-01": 692.662380544495, - "2030-01-01": 679.231750104775, - "2029-01-01": 665.980194737585, - "2028-01-01": 652.907714442924, - "2027-01-01": 639.656159075733, - "2026-01-01": 624.273610345441, - "2025-01-01": 614.874258246816, - "2024-01-01": 601.530180758819, - "2023-01-01": 569, - "2015-01-01": 569 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 858.337979808682, - "2034-01-01": 841.71704355133, - "2033-01-01": 825.301304037896, - "2032-01-01": 809.295958012298, - "2031-01-01": 793.701005474536, - "2030-01-01": 778.311249680691, - "2029-01-01": 763.126690630765, - "2028-01-01": 748.147328324756, - "2027-01-01": 732.96276927483, - "2026-01-01": 715.33636897228, - "2025-01-01": 704.565933878601, - "2024-01-01": 689.275356510984, - "2023-01-01": 652, - "2015-01-01": 652 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 951.807299695824, - "2034-01-01": 933.3764148583, - "2033-01-01": 915.173071808894, - "2032-01-01": 897.424812335723, - "2031-01-01": 880.131636438787, - "2030-01-01": 863.066002329969, - "2029-01-01": 846.227910009268, - "2028-01-01": 829.617359476685, - "2027-01-01": 812.779267155985, - "2026-01-01": 793.233427556685, - "2025-01-01": 781.290138334707, - "2024-01-01": 764.334482756812, - "2023-01-01": 723, - "2015-01-01": 723 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1034.74486522949, - "2034-01-01": 1014.70796967998, - "2033-01-01": 994.918443211329, - "2032-01-01": 975.623654904396, - "2031-01-01": 956.82360475918, - "2030-01-01": 938.270923694821, - "2029-01-01": 919.965611711321, - "2028-01-01": 901.907668808678, - "2027-01-01": 883.602356825178, - "2026-01-01": 862.353352779467, - "2025-01-01": 849.369362007026, - "2024-01-01": 830.936242665082, - "2023-01-01": 786, - "2015-01-01": 786 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1107.15067640967, - "2034-01-01": 1085.71170801636, - "2033-01-01": 1064.5374182452, - "2032-01-01": 1043.89248571832, - "2031-01-01": 1023.77691043571, - "2030-01-01": 1003.92601377525, - "2029-01-01": 984.339795736922, - "2028-01-01": 965.018256320736, - "2027-01-01": 945.432038282411, - "2026-01-01": 922.696144640625, - "2025-01-01": 908.803604895558, - "2024-01-01": 889.080636235794, - "2023-01-01": 841, - "2015-01-01": 841 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1174.29061041311, - "2034-01-01": 1151.5515381101, - "2033-01-01": 1129.09319509479, - "2032-01-01": 1107.19631065486, - "2031-01-01": 1085.86088479032, - "2030-01-01": 1064.80618821346, - "2029-01-01": 1044.0322209243, - "2028-01-01": 1023.53898292283, - "2027-01-01": 1002.76501563366, - "2026-01-01": 978.650369820972, - "2025-01-01": 963.915357392197, - "2024-01-01": 942.996346637726, - "2023-01-01": 892, - "2015-01-01": 892 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1236.1646672398, - "2034-01-01": 1212.22745996119, - "2033-01-01": 1188.5857737601, - "2032-01-01": 1165.53512971403, - "2031-01-01": 1143.07552782299, - "2030-01-01": 1120.91144700946, - "2029-01-01": 1099.04288727345, - "2028-01-01": 1077.46984861495, - "2027-01-01": 1055.60128887893, - "2026-01-01": 1030.21602832051, - "2025-01-01": 1014.70461949694, - "2024-01-01": 992.68337387088, - "2023-01-01": 939, - "2015-01-01": 939 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1294.08931618395, - "2034-01-01": 1269.0304506303, - "2033-01-01": 1244.2809537872, - "2032-01-01": 1220.15019436517, - "2031-01-01": 1196.63817236422, - "2030-01-01": 1173.4355190738, - "2029-01-01": 1150.54223449393, - "2028-01-01": 1127.95831862459, - "2027-01-01": 1105.06503404472, - "2026-01-01": 1078.49026180943, - "2025-01-01": 1062.25201380777, - "2024-01-01": 1039.19888872745, - "2023-01-01": 983, - "2015-01-01": 983 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1370.44453524668, - "2034-01-01": 1343.90712014867, - "2033-01-01": 1317.69732745928, - "2032-01-01": 1292.14277958712, - "2031-01-01": 1267.2434765322, - "2030-01-01": 1242.67179588589, - "2029-01-01": 1218.4277376482, - "2028-01-01": 1194.51130181913, - "2027-01-01": 1170.26724358144, - "2026-01-01": 1142.1244786812, - "2025-01-01": 1124.92812449022, - "2024-01-01": 1100.51479467475, - "2023-01-01": 1041, - "2015-01-01": 1041 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1469.17973231057, - "2034-01-01": 1440.73039969829, - "2033-01-01": 1412.63229341456, - "2032-01-01": 1385.23663978792, - "2031-01-01": 1358.54343881838, - "2030-01-01": 1332.20146417738, - "2029-01-01": 1306.21071586493, - "2028-01-01": 1280.57119388102, - "2027-01-01": 1254.58044556857, - "2026-01-01": 1224.41010394642, - "2025-01-01": 1205.97481933822, - "2024-01-01": 1179.80260408935, - "2023-01-01": 1116, - "2015-01-01": 1116 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1560.01611360934, - "2034-01-01": 1529.80781688394, - "2033-01-01": 1499.97246209342, - "2032-01-01": 1470.88299117266, - "2031-01-01": 1442.53940412166, - "2030-01-01": 1414.56875900555, - "2029-01-01": 1386.97105582432, - "2028-01-01": 1359.74629457797, - "2027-01-01": 1332.14859139674, - "2026-01-01": 1300.11287919042, - "2025-01-01": 1280.53777859838, - "2024-01-01": 1252.74738875079, - "2023-01-01": 1185, - "2015-01-01": 1185 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1642.953679143, - "2034-01-01": 1611.13937170561, - "2033-01-01": 1579.71783349585, - "2032-01-01": 1549.08183374133, - "2031-01-01": 1519.23137244206, - "2030-01-01": 1489.7736803704, - "2029-01-01": 1460.70875752637, - "2028-01-01": 1432.03660390996, - "2027-01-01": 1402.97168106593, - "2026-01-01": 1369.2328044132, - "2025-01-01": 1348.6170022707, - "2024-01-01": 1319.34914865906, - "2023-01-01": 1248, - "2015-01-01": 1248 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1720.62536749992, - "2034-01-01": 1687.30701828464, - "2033-01-01": 1654.400006714, - "2032-01-01": 1622.31567043263, - "2031-01-01": 1591.05400944052, - "2030-01-01": 1560.20368609304, - "2029-01-01": 1529.7647003902, - "2028-01-01": 1499.73705233199, - "2027-01-01": 1469.29806662915, - "2026-01-01": 1433.96416295517, - "2025-01-01": 1412.37373555112, - "2024-01-01": 1381.72222539855, - "2023-01-01": 1307, - "2015-01-01": 1307 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1802.2464637394, - "2034-01-01": 1767.34759604566, - "2033-01-01": 1732.87957857037, - "2032-01-01": 1699.27326153196, - "2031-01-01": 1666.52864493043, - "2030-01-01": 1634.21487854734, - "2029-01-01": 1602.33196238269, - "2028-01-01": 1570.87989643649, - "2027-01-01": 1538.99698027184, - "2026-01-01": 1501.98694650775, - "2025-01-01": 1479.37233662547, - "2024-01-01": 1447.26681451463, - "2023-01-01": 1369, - "2015-01-01": 1369 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1887.81696786143, - "2034-01-01": 1851.26110498866, - "2033-01-01": 1815.15654906494, - "2032-01-01": 1779.95460703932, - "2031-01-01": 1745.65527891179, - "2030-01-01": 1711.8072577333, - "2029-01-01": 1678.41054350386, - "2028-01-01": 1645.46513622347, - "2027-01-01": 1612.06842199403, - "2026-01-01": 1573.30115507094, - "2025-01-01": 1549.61280549373, - "2024-01-01": 1515.98291600729, - "2023-01-01": 1434, - "2015-01-01": 1434 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1968.12159480672, - "2034-01-01": 1930.01070568902, - "2033-01-01": 1892.37032137524, - "2032-01-01": 1855.6709466693, - "2031-01-01": 1819.91258157121, - "2030-01-01": 1784.62472127705, - "2029-01-01": 1749.8073657868, - "2028-01-01": 1715.46051510048, - "2027-01-01": 1680.64315961023, - "2026-01-01": 1640.22679695331, - "2025-01-01": 1615.53078397011, - "2024-01-01": 1580.47033433117, - "2023-01-01": 1495, - "2015-01-01": 1495 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2044.47681386945, - "2034-01-01": 2004.88737520739, - "2033-01-01": 1965.78669504732, - "2032-01-01": 1927.66353189126, - "2031-01-01": 1890.51788573919, - "2030-01-01": 1853.86099808913, - "2029-01-01": 1817.69286894107, - "2028-01-01": 1782.01349829501, - "2027-01-01": 1745.84536914695, - "2026-01-01": 1703.86101382508, - "2025-01-01": 1678.20689465256, - "2024-01-01": 1641.78624027846, - "2023-01-01": 1553, - "2015-01-01": 1553 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2492.07637389239, - "2034-01-01": 2443.81957583231, - "2033-01-01": 2396.15854071125, - "2032-01-01": 2349.68903146822, - "2031-01-01": 2304.41104810322, - "2030-01-01": 2259.72882767722, - "2029-01-01": 2215.64237019024, - "2028-01-01": 2172.15167564228, - "2027-01-01": 2128.0652181553, - "2026-01-01": 2076.88918169406, - "2025-01-01": 2045.61857796349, - "2024-01-01": 2001.22430962468, - "2023-01-01": 1893, - "2015-01-01": 1893 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 577.930020147257, - "2034-01-01": 566.73892963042, - "2033-01-01": 555.686000724902, - "2032-01-01": 544.909395042023, - "2031-01-01": 534.409112581781, - "2030-01-01": 524.046991732858, - "2029-01-01": 513.823032495254, - "2028-01-01": 503.737234868969, - "2027-01-01": 493.513275631365, - "2026-01-01": 481.645193219066, - "2025-01-01": 474.393320510285, - "2024-01-01": 464.0979777735, - "2023-01-01": 439, - "2015-01-01": 439 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 816.210962394759, - "2034-01-01": 800.405777610161, - "2033-01-01": 784.795718563643, - "2032-01-01": 769.575910993289, - "2031-01-01": 754.746354899098, - "2030-01-01": 740.111924542989, - "2029-01-01": 725.67261992496, - "2028-01-01": 711.428441045014, - "2027-01-01": 696.989136426985, - "2026-01-01": 680.227835525788, - "2025-01-01": 669.986010743455, - "2024-01-01": 655.445891160751, - "2023-01-01": 620, - "2015-01-01": 620 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 936.009668165603, - "2034-01-01": 917.884690130362, - "2033-01-01": 899.983477256049, - "2032-01-01": 882.529794703595, - "2031-01-01": 865.523642472998, - "2030-01-01": 848.741255403331, - "2029-01-01": 832.182633494591, - "2028-01-01": 815.847776746782, - "2027-01-01": 799.289154838043, - "2026-01-01": 780.06772751425, - "2025-01-01": 768.322667159027, - "2024-01-01": 751.648433250475, - "2023-01-01": 711, - "2015-01-01": 711 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1037.37780381786, - "2034-01-01": 1017.2899238013, - "2033-01-01": 997.450042303469, - "2032-01-01": 978.106157843084, - "2031-01-01": 959.258270420144, - "2030-01-01": 940.658381515928, - "2029-01-01": 922.306491130433, - "2028-01-01": 904.202599263662, - "2027-01-01": 885.850708878169, - "2026-01-01": 864.547636119872, - "2025-01-01": 851.530607202972, - "2024-01-01": 833.050584249471, - "2023-01-01": 788, - "2015-01-01": 788 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1126.89771582244, - "2034-01-01": 1105.07636392629, - "2033-01-01": 1083.52441143626, - "2032-01-01": 1062.51125775848, - "2031-01-01": 1042.03690289295, - "2030-01-01": 1021.83194743355, - "2029-01-01": 1001.89639138027, - "2028-01-01": 982.230234733115, - "2027-01-01": 962.294678679838, - "2026-01-01": 939.153269693668, - "2025-01-01": 925.012943865158, - "2024-01-01": 904.938198118715, - "2023-01-01": 856, - "2015-01-01": 856 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1205.88587347355, - "2034-01-01": 1182.53498756598, - "2033-01-01": 1159.47238420048, - "2032-01-01": 1136.98634591912, - "2031-01-01": 1115.07687272189, - "2030-01-01": 1093.45568206674, - "2029-01-01": 1072.12277395365, - "2028-01-01": 1051.07814838263, - "2027-01-01": 1029.74524026955, - "2026-01-01": 1004.98176990584, - "2025-01-01": 989.850299743557, - "2024-01-01": 968.368445650401, - "2023-01-01": 916, - "2015-01-01": 916 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1278.29168465373, - "2034-01-01": 1253.53872590236, - "2033-01-01": 1229.09135923435, - "2032-01-01": 1205.25517673304, - "2031-01-01": 1182.03017839843, - "2030-01-01": 1159.11077214716, - "2029-01-01": 1136.49695797925, - "2028-01-01": 1114.18873589469, - "2027-01-01": 1091.57492172678, - "2026-01-01": 1065.324561767, - "2025-01-01": 1049.28454263209, - "2024-01-01": 1026.51283922111, - "2023-01-01": 971, - "2015-01-01": 971 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1345.43161865717, - "2034-01-01": 1319.3785559961, - "2033-01-01": 1293.64713608394, - "2032-01-01": 1268.55900166958, - "2031-01-01": 1244.11415275303, - "2030-01-01": 1219.99094658538, - "2029-01-01": 1196.18938316663, - "2028-01-01": 1172.70946249678, - "2027-01-01": 1148.90789907803, - "2026-01-01": 1121.27878694735, - "2025-01-01": 1104.39629512873, - "2024-01-01": 1080.42854962305, - "2023-01-01": 1022, - "2015-01-01": 1022 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1407.30567548387, - "2034-01-01": 1380.0544778472, - "2033-01-01": 1353.13971474925, - "2032-01-01": 1326.89782072875, - "2031-01-01": 1301.3287957857, - "2030-01-01": 1276.09620538138, - "2029-01-01": 1251.20004951578, - "2028-01-01": 1226.6403281889, - "2027-01-01": 1201.7441723233, - "2026-01-01": 1172.84444544688, - "2025-01-01": 1155.18555723347, - "2024-01-01": 1130.1155768562, - "2023-01-01": 1069, - "2015-01-01": 1069 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1490.24324101753, - "2034-01-01": 1461.38603266887, - "2033-01-01": 1432.88508615168, - "2032-01-01": 1405.09666329743, - "2031-01-01": 1378.0207641061, - "2030-01-01": 1351.30112674623, - "2029-01-01": 1324.93775121783, - "2028-01-01": 1298.9306375209, - "2027-01-01": 1272.5672619925, - "2026-01-01": 1241.96437066966, - "2025-01-01": 1223.26478090579, - "2024-01-01": 1196.71733676447, - "2023-01-01": 1132, - "2015-01-01": 1132 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1596.87725384652, - "2034-01-01": 1565.95517458246, - "2033-01-01": 1535.41484938339, - "2032-01-01": 1505.63803231429, - "2031-01-01": 1476.62472337517, - "2030-01-01": 1447.99316850104, - "2029-01-01": 1419.7433676919, - "2028-01-01": 1391.87532094774, - "2027-01-01": 1363.6255201386, - "2026-01-01": 1330.8328459561, - "2025-01-01": 1310.79521134163, - "2024-01-01": 1282.34817093224, - "2023-01-01": 1213, - "2015-01-01": 1213 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1695.6124509104, - "2034-01-01": 1662.77845413208, - "2033-01-01": 1630.34981533867, - "2032-01-01": 1598.73189251509, - "2031-01-01": 1567.92468566135, - "2030-01-01": 1537.52283679253, - "2029-01-01": 1507.52634590863, - "2028-01-01": 1477.93521300964, - "2027-01-01": 1447.93872212574, - "2026-01-01": 1413.11847122131, - "2025-01-01": 1391.84190618963, - "2024-01-01": 1361.63598034685, - "2023-01-01": 1288, - "2015-01-01": 1288 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1785.13236291499, - "2034-01-01": 1750.56489425706, - "2033-01-01": 1716.42418447145, - "2032-01-01": 1683.13699243048, - "2031-01-01": 1650.70331813416, - "2030-01-01": 1618.69640271015, - "2029-01-01": 1587.11624615846, - "2028-01-01": 1555.96284847909, - "2027-01-01": 1524.38269192741, - "2026-01-01": 1487.72410479511, - "2025-01-01": 1465.32424285182, - "2024-01-01": 1433.5235942161, - "2023-01-01": 1356, - "2015-01-01": 1356 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1869.38639774284, - "2034-01-01": 1833.1874261394, - "2033-01-01": 1797.43535541996, - "2032-01-01": 1762.5770864685, - "2031-01-01": 1728.61261928503, - "2030-01-01": 1695.09505298555, - "2029-01-01": 1662.02438757007, - "2028-01-01": 1629.40062303858, - "2027-01-01": 1596.3299576231, - "2026-01-01": 1557.94117168809, - "2025-01-01": 1534.48408912211, - "2024-01-01": 1501.18252491656, - "2023-01-01": 1420, - "2015-01-01": 1420 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1956.27337115905, - "2034-01-01": 1918.39191214306, - "2033-01-01": 1880.9781254606, - "2032-01-01": 1844.49968344521, - "2031-01-01": 1808.95658609687, - "2030-01-01": 1773.88116108207, - "2029-01-01": 1739.27340840079, - "2028-01-01": 1705.13332805305, - "2027-01-01": 1670.52557537177, - "2026-01-01": 1630.35252192149, - "2025-01-01": 1605.80518058835, - "2024-01-01": 1570.95579720141, - "2023-01-01": 1486, - "2015-01-01": 1486 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2049.74269104619, - "2034-01-01": 2010.05128345003, - "2033-01-01": 1970.8498932316, - "2032-01-01": 1932.62853776863, - "2031-01-01": 1895.38721706112, - "2030-01-01": 1858.63591373134, - "2029-01-01": 1822.3746277793, - "2028-01-01": 1786.60335920498, - "2027-01-01": 1750.34207325293, - "2026-01-01": 1708.24958050589, - "2025-01-01": 1682.52938504445, - "2024-01-01": 1646.01492344724, - "2023-01-01": 1557, - "2015-01-01": 1557 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2136.62966446241, - "2034-01-01": 2095.25576945369, - "2033-01-01": 2054.39266327225, - "2032-01-01": 2014.55113474534, - "2031-01-01": 1975.73118387296, - "2030-01-01": 1937.42202182786, - "2029-01-01": 1899.62364861002, - "2028-01-01": 1862.33606421945, - "2027-01-01": 1824.53769100161, - "2026-01-01": 1780.66093073928, - "2025-01-01": 1753.85047651069, - "2024-01-01": 1715.7881957321, - "2023-01-01": 1623, - "2015-01-01": 1623 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2219.56722999607, - "2034-01-01": 2176.58732427537, - "2033-01-01": 2134.13803467468, - "2032-01-01": 2092.74997731401, - "2031-01-01": 2052.42315219335, - "2030-01-01": 2012.62694319271, - "2029-01-01": 1973.36135031207, - "2028-01-01": 1934.62637355144, - "2027-01-01": 1895.3607806708, - "2026-01-01": 1849.78085596206, - "2025-01-01": 1821.92970018301, - "2024-01-01": 1782.38995564037, - "2023-01-01": 1686, - "2015-01-01": 1686 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2701.39499166782, - "2034-01-01": 2649.0849284775, - "2033-01-01": 2597.42066853645, - "2032-01-01": 2547.04801509392, - "2031-01-01": 2497.96696814992, - "2030-01-01": 2449.53172445518, - "2029-01-01": 2401.74228400971, - "2028-01-01": 2354.5986468135, - "2027-01-01": 2306.80920636802, - "2026-01-01": 2251.33470725632, - "2025-01-01": 2217.43757104124, - "2024-01-01": 2169.31446558365, - "2023-01-01": 2052, - "2015-01-01": 2052 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 616.107629678625, - "2034-01-01": 604.177264389605, - "2033-01-01": 592.394187560944, - "2032-01-01": 580.905687652999, - "2031-01-01": 569.711764665771, - "2030-01-01": 558.665130138901, - "2029-01-01": 547.765784072389, - "2028-01-01": 537.013726466236, - "2027-01-01": 526.114380399725, - "2026-01-01": 513.46230165495, - "2025-01-01": 505.731375851512, - "2024-01-01": 494.755930747148, - "2023-01-01": 468, - "2015-01-01": 468 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 868.869734162163, - "2034-01-01": 852.044860036623, - "2033-01-01": 835.427700406459, - "2032-01-01": 819.22596976705, - "2031-01-01": 803.439668118395, - "2030-01-01": 787.861080965117, - "2029-01-01": 772.490208307216, - "2028-01-01": 757.327050144692, - "2027-01-01": 741.956177486791, - "2026-01-01": 724.113502333903, - "2025-01-01": 713.210914662388, - "2024-01-01": 697.732722848542, - "2023-01-01": 660, - "2015-01-01": 660 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 995.250786403932, - "2034-01-01": 975.978657860131, - "2033-01-01": 956.944456829217, - "2032-01-01": 938.386110824075, - "2031-01-01": 920.303619844707, - "2030-01-01": 902.459056378225, - "2029-01-01": 884.852420424629, - "2028-01-01": 867.48371198392, - "2027-01-01": 849.877076030324, - "2026-01-01": 829.43910267338, - "2025-01-01": 816.950684067826, - "2024-01-01": 799.221118899239, - "2023-01-01": 756, - "2015-01-01": 756 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1103.20126852711, - "2034-01-01": 1081.83877683438, - "2033-01-01": 1060.74001960699, - "2032-01-01": 1040.16873131028, - "2031-01-01": 1020.12491194427, - "2030-01-01": 1000.34482704359, - "2029-01-01": 980.828476608253, - "2028-01-01": 961.57586063826, - "2027-01-01": 942.059510202925, - "2026-01-01": 919.404719630016, - "2025-01-01": 905.561737101638, - "2024-01-01": 885.909123859209, - "2023-01-01": 838, - "2015-01-01": 838 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1196.67058841425, - "2034-01-01": 1173.49814814135, - "2033-01-01": 1150.61178737799, - "2032-01-01": 1128.29758563371, - "2031-01-01": 1106.55554290852, - "2030-01-01": 1085.09957969287, - "2029-01-01": 1063.92969598676, - "2028-01-01": 1043.04589179019, - "2027-01-01": 1021.87600808408, - "2026-01-01": 997.301778214421, - "2025-01-01": 982.285941557743, - "2024-01-01": 960.968250105037, - "2023-01-01": 909, - "2015-01-01": 909 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1280.9246232421, - "2034-01-01": 1256.12068002369, - "2033-01-01": 1231.62295832649, - "2032-01-01": 1207.73767967173, - "2031-01-01": 1184.46484405939, - "2030-01-01": 1161.49822996827, - "2029-01-01": 1138.83783739837, - "2028-01-01": 1116.48366634967, - "2027-01-01": 1093.82327377977, - "2026-01-01": 1067.51884510741, - "2025-01-01": 1051.44578782804, - "2024-01-01": 1028.6271808055, - "2023-01-01": 973, - "2015-01-01": 973 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1358.59631159902, - "2034-01-01": 1332.28832660272, - "2033-01-01": 1306.30513154465, - "2032-01-01": 1280.97151636302, - "2031-01-01": 1256.28748105785, - "2030-01-01": 1231.92823569091, - "2029-01-01": 1207.89378026219, - "2028-01-01": 1184.1841147717, - "2027-01-01": 1160.14965934298, - "2026-01-01": 1132.25020364938, - "2025-01-01": 1115.20252110846, - "2024-01-01": 1091.00025754499, - "2023-01-01": 1032, - "2015-01-01": 1032 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1428.36918419083, - "2034-01-01": 1400.71011081778, - "2033-01-01": 1373.39250748638, - "2032-01-01": 1346.75784423826, - "2031-01-01": 1320.80612107342, - "2030-01-01": 1295.19586795023, - "2029-01-01": 1269.92708486868, - "2028-01-01": 1244.99977182877, - "2027-01-01": 1219.73098874722, - "2026-01-01": 1190.39871217013, - "2025-01-01": 1172.47551880105, - "2024-01-01": 1147.03030953132, - "2023-01-01": 1085, - "2015-01-01": 1085 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1495.50911819427, - "2034-01-01": 1466.54994091152, - "2033-01-01": 1437.94828433597, - "2032-01-01": 1410.0616691748, - "2031-01-01": 1382.89009542803, - "2030-01-01": 1356.07604238844, - "2029-01-01": 1329.61951005606, - "2028-01-01": 1303.52049843086, - "2027-01-01": 1277.06396609848, - "2026-01-01": 1246.35293735048, - "2025-01-01": 1227.58727129769, - "2024-01-01": 1200.94601993325, - "2023-01-01": 1136, - "2015-01-01": 1136 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1582.39609161048, - "2034-01-01": 1551.75442691518, - "2033-01-01": 1521.49105437661, - "2032-01-01": 1491.98426615151, - "2031-01-01": 1463.23406223987, - "2030-01-01": 1434.86215048496, - "2029-01-01": 1406.86853088678, - "2028-01-01": 1379.25320344533, - "2027-01-01": 1351.25958384716, - "2026-01-01": 1318.76428758387, - "2025-01-01": 1298.90836276392, - "2024-01-01": 1270.7192922181, - "2023-01-01": 1202, - "2015-01-01": 1202 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1695.6124509104, - "2034-01-01": 1662.77845413208, - "2033-01-01": 1630.34981533867, - "2032-01-01": 1598.73189251509, - "2031-01-01": 1567.92468566135, - "2030-01-01": 1537.52283679253, - "2029-01-01": 1507.52634590863, - "2028-01-01": 1477.93521300964, - "2027-01-01": 1447.93872212574, - "2026-01-01": 1413.11847122131, - "2025-01-01": 1391.84190618963, - "2024-01-01": 1361.63598034685, - "2023-01-01": 1288, - "2015-01-01": 1288 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1798.29705585684, - "2034-01-01": 1763.47466486368, - "2033-01-01": 1729.08217993216, - "2032-01-01": 1695.54950712392, - "2031-01-01": 1662.87664643898, - "2030-01-01": 1630.63369181568, - "2029-01-01": 1598.82064325403, - "2028-01-01": 1567.43750075401, - "2027-01-01": 1535.62445219236, - "2026-01-01": 1498.69552149714, - "2025-01-01": 1476.13046883155, - "2024-01-01": 1444.09530213804, - "2023-01-01": 1366, - "2015-01-01": 1366 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1894.39931433235, - "2034-01-01": 1857.71599029197, - "2033-01-01": 1821.4855467953, - "2032-01-01": 1786.16086438604, - "2031-01-01": 1751.7419430642, - "2030-01-01": 1717.77590228607, - "2029-01-01": 1684.26274205164, - "2028-01-01": 1651.20246236093, - "2027-01-01": 1617.6893021265, - "2026-01-01": 1578.78686342195, - "2025-01-01": 1555.0159184836, - "2024-01-01": 1521.26876996826, - "2023-01-01": 1439, - "2015-01-01": 1439 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1982.60275704275, - "2034-01-01": 1944.21145335629, - "2033-01-01": 1906.29411638201, - "2032-01-01": 1869.32471283209, - "2031-01-01": 1833.30324270652, - "2030-01-01": 1797.75573929313, - "2029-01-01": 1762.68220259192, - "2028-01-01": 1728.08263260289, - "2027-01-01": 1693.00909590168, - "2026-01-01": 1652.29535532554, - "2025-01-01": 1627.41763254781, - "2024-01-01": 1592.09921304531, - "2023-01-01": 1506, - "2015-01-01": 1506 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2076.0720769299, - "2034-01-01": 2035.87082466326, - "2033-01-01": 1996.16588415301, - "2032-01-01": 1957.45356715551, - "2031-01-01": 1919.73387367077, - "2030-01-01": 1882.51049194241, - "2029-01-01": 1845.78342197042, - "2028-01-01": 1809.55266375482, - "2027-01-01": 1772.82559378283, - "2026-01-01": 1730.19241390995, - "2025-01-01": 1704.14183700392, - "2024-01-01": 1667.15833929114, - "2023-01-01": 1577, - "2015-01-01": 1577 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2173.49080469959, - "2034-01-01": 2131.40312715222, - "2033-01-01": 2089.83505056222, - "2032-01-01": 2049.30617588697, - "2031-01-01": 2009.81650312647, - "2030-01-01": 1970.84643132335, - "2029-01-01": 1932.3959604776, - "2028-01-01": 1894.46509058922, - "2027-01-01": 1856.01461974347, - "2026-01-01": 1811.38089750496, - "2025-01-01": 1784.10790925394, - "2024-01-01": 1745.38897791355, - "2023-01-01": 1651, - "2015-01-01": 1651 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2265.64365529255, - "2034-01-01": 2221.77152139853, - "2033-01-01": 2178.44101878715, - "2032-01-01": 2136.19377874105, - "2031-01-01": 2095.02980126024, - "2030-01-01": 2054.40745506207, - "2029-01-01": 2014.32674014654, - "2028-01-01": 1974.78765651366, - "2027-01-01": 1934.70694159813, - "2026-01-01": 1888.18081441916, - "2025-01-01": 1859.75149111208, - "2024-01-01": 1819.39093336718, - "2023-01-01": 1721, - "2015-01-01": 1721 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2353.84709800295, - "2034-01-01": 2308.26698446285, - "2033-01-01": 2263.24958837386, - "2032-01-01": 2219.3576271871, - "2031-01-01": 2176.59110090256, - "2030-01-01": 2134.38729206914, - "2029-01-01": 2092.74620068682, - "2028-01-01": 2051.66782675562, - "2027-01-01": 2010.02673537331, - "2026-01-01": 1961.68930632276, - "2025-01-01": 1932.15320517629, - "2024-01-01": 1890.22137644423, - "2023-01-01": 1788, - "2015-01-01": 1788 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2863.32071485258, - "2034-01-01": 2807.87510693887, - "2033-01-01": 2753.1140127031, - "2032-01-01": 2699.72194582323, - "2031-01-01": 2647.69890629926, - "2030-01-01": 2596.36038045323, - "2029-01-01": 2545.70636828514, - "2028-01-01": 2495.73686979501, - "2027-01-01": 2445.08285762692, - "2026-01-01": 2386.28313269127, - "2025-01-01": 2350.35415059196, - "2024-01-01": 2299.3464730236, - "2023-01-01": 2175, - "2015-01-01": 2175 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 647.702892739067, - "2034-01-01": 635.160713845482, - "2033-01-01": 622.773376666633, - "2032-01-01": 610.695722917256, - "2031-01-01": 598.927752597349, - "2030-01-01": 587.314623992178, - "2029-01-01": 575.856337101743, - "2028-01-01": 564.552891926043, - "2027-01-01": 553.094605035608, - "2026-01-01": 539.793701739819, - "2025-01-01": 531.666318202871, - "2024-01-01": 520.128029759822, - "2023-01-01": 492, - "2015-01-01": 492 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 912.313220870271, - "2034-01-01": 894.647103038454, - "2033-01-01": 877.199085426782, - "2032-01-01": 860.187268255403, - "2031-01-01": 843.611651524315, - "2030-01-01": 827.254135013373, - "2029-01-01": 811.114718722577, - "2028-01-01": 795.193402651926, - "2027-01-01": 779.053986361131, - "2026-01-01": 760.319177450598, - "2025-01-01": 748.871460395507, - "2024-01-01": 732.619358990969, - "2023-01-01": 693, - "2015-01-01": 693 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1043.96015028878, - "2034-01-01": 1023.74480910461, - "2033-01-01": 1003.77904003382, - "2032-01-01": 984.312415189804, - "2031-01-01": 965.344934572556, - "2030-01-01": 946.627026068694, - "2029-01-01": 928.158689678215, - "2028-01-01": 909.939925401122, - "2027-01-01": 891.471589010644, - "2026-01-01": 870.033344470887, - "2025-01-01": 856.933720192839, - "2024-01-01": 838.336438210445, - "2023-01-01": 793, - "2015-01-01": 793 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1157.1765095887, - "2034-01-01": 1134.7688363215, - "2033-01-01": 1112.63780099588, - "2032-01-01": 1091.06004155339, - "2031-01-01": 1070.03555799404, - "2030-01-01": 1049.28771237627, - "2029-01-01": 1028.81650470006, - "2028-01-01": 1008.62193496543, - "2027-01-01": 988.150727289226, - "2026-01-01": 964.387528108335, - "2025-01-01": 949.867263618544, - "2024-01-01": 929.253126339194, - "2023-01-01": 879, - "2015-01-01": 879 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1255.91170665258, - "2034-01-01": 1231.59211587112, - "2033-01-01": 1207.57276695115, - "2032-01-01": 1184.15390175419, - "2031-01-01": 1161.33552028023, - "2030-01-01": 1138.81738066776, - "2029-01-01": 1116.59948291679, - "2028-01-01": 1094.68182702733, - "2027-01-01": 1072.46392927636, - "2026-01-01": 1046.67315337355, - "2025-01-01": 1030.91395846654, - "2024-01-01": 1008.5409357538, - "2023-01-01": 954, - "2015-01-01": 954 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1342.7986800688, - "2034-01-01": 1316.79660187478, - "2033-01-01": 1291.1155369918, - "2032-01-01": 1266.0764987309, - "2031-01-01": 1241.67948709207, - "2030-01-01": 1217.60348876427, - "2029-01-01": 1193.84850374752, - "2028-01-01": 1170.4145320418, - "2027-01-01": 1146.65954702504, - "2026-01-01": 1119.08450360694, - "2025-01-01": 1102.23504993278, - "2024-01-01": 1078.31420803866, - "2023-01-01": 1020, - "2015-01-01": 1020 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1423.10330701409, - "2034-01-01": 1395.54620257513, - "2033-01-01": 1368.32930930209, - "2032-01-01": 1341.79283836088, - "2031-01-01": 1315.93678975149, - "2030-01-01": 1290.42095230802, - "2029-01-01": 1265.24532603045, - "2028-01-01": 1240.40991091881, - "2027-01-01": 1215.23428464124, - "2026-01-01": 1186.01014548932, - "2025-01-01": 1168.15302840915, - "2024-01-01": 1142.80162636254, - "2023-01-01": 1081, - "2015-01-01": 1081 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1498.14205678264, - "2034-01-01": 1469.13189503284, - "2033-01-01": 1440.47988342811, - "2032-01-01": 1412.54417211349, - "2031-01-01": 1385.32476108899, - "2030-01-01": 1358.46350020955, - "2029-01-01": 1331.96038947517, - "2028-01-01": 1305.81542888585, - "2027-01-01": 1279.31231815147, - "2026-01-01": 1248.54722069088, - "2025-01-01": 1229.74851649363, - "2024-01-01": 1203.06036151764, - "2023-01-01": 1138, - "2015-01-01": 1138 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1566.59846008026, - "2034-01-01": 1536.26270218724, - "2033-01-01": 1506.30145982377, - "2032-01-01": 1477.08924851938, - "2031-01-01": 1448.62606827408, - "2030-01-01": 1420.53740355832, - "2029-01-01": 1392.8232543721, - "2028-01-01": 1365.48362071543, - "2027-01-01": 1337.76947152921, - "2026-01-01": 1305.59858754143, - "2025-01-01": 1285.94089158825, - "2024-01-01": 1258.03324271176, - "2023-01-01": 1190, - "2015-01-01": 1190 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1658.75131067322, - "2034-01-01": 1626.63109643355, - "2033-01-01": 1594.90742804869, - "2032-01-01": 1563.97685137346, - "2031-01-01": 1533.83936640785, - "2030-01-01": 1504.09842729704, - "2029-01-01": 1474.75403404105, - "2028-01-01": 1445.80618663987, - "2027-01-01": 1416.46179338387, - "2026-01-01": 1382.39850445563, - "2025-01-01": 1361.58447344638, - "2024-01-01": 1332.0351981654, - "2023-01-01": 1260, - "2015-01-01": 1260 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1775.91707785569, - "2034-01-01": 1741.52805483243, - "2033-01-01": 1707.56358764896, - "2032-01-01": 1674.44823214508, - "2031-01-01": 1642.18198832078, - "2030-01-01": 1610.34030033628, - "2029-01-01": 1578.92316819157, - "2028-01-01": 1547.93059188665, - "2027-01-01": 1516.51345974194, - "2026-01-01": 1480.04411310369, - "2025-01-01": 1457.759884666, - "2024-01-01": 1426.12339867073, - "2023-01-01": 1349, - "2015-01-01": 1349 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1883.86755997887, - "2034-01-01": 1847.38817380668, - "2033-01-01": 1811.35915042673, - "2032-01-01": 1776.23085263129, - "2031-01-01": 1742.00328042034, - "2030-01-01": 1708.22607100164, - "2029-01-01": 1674.89922437519, - "2028-01-01": 1642.02274054099, - "2027-01-01": 1608.69589391454, - "2026-01-01": 1570.00973006033, - "2025-01-01": 1546.37093769981, - "2024-01-01": 1512.8114036307, - "2023-01-01": 1431, - "2015-01-01": 1431 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1983.91922633694, - "2034-01-01": 1945.50243041695, - "2033-01-01": 1907.55991592808, - "2032-01-01": 1870.56596430143, - "2031-01-01": 1834.520575537, - "2030-01-01": 1798.94946820368, - "2029-01-01": 1763.85264230148, - "2028-01-01": 1729.23009783038, - "2027-01-01": 1694.13327192817, - "2026-01-01": 1653.39249699575, - "2025-01-01": 1628.49825514579, - "2024-01-01": 1593.1563838375, - "2023-01-01": 1507, - "2015-01-01": 1507 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2077.38854622408, - "2034-01-01": 2037.16180172392, - "2033-01-01": 1997.43168369908, - "2032-01-01": 1958.69481862486, - "2031-01-01": 1920.95120650125, - "2030-01-01": 1883.70422085296, - "2029-01-01": 1846.95386167998, - "2028-01-01": 1810.70012898231, - "2027-01-01": 1773.94976980933, - "2026-01-01": 1731.28955558015, - "2025-01-01": 1705.22245960189, - "2024-01-01": 1668.21551008333, - "2023-01-01": 1578, - "2015-01-01": 1578 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2173.49080469959, - "2034-01-01": 2131.40312715222, - "2033-01-01": 2089.83505056222, - "2032-01-01": 2049.30617588697, - "2031-01-01": 2009.81650312647, - "2030-01-01": 1970.84643132335, - "2029-01-01": 1932.3959604776, - "2028-01-01": 1894.46509058922, - "2027-01-01": 1856.01461974347, - "2026-01-01": 1811.38089750496, - "2025-01-01": 1784.10790925394, - "2024-01-01": 1745.38897791355, - "2023-01-01": 1651, - "2015-01-01": 1651 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2276.17540964603, - "2034-01-01": 2232.09933788382, - "2033-01-01": 2188.56741515571, - "2032-01-01": 2146.1237904958, - "2031-01-01": 2104.7684639041, - "2030-01-01": 2063.9572863465, - "2029-01-01": 2023.69025782299, - "2028-01-01": 1983.96737833359, - "2027-01-01": 1943.70034981009, - "2026-01-01": 1896.95794778079, - "2025-01-01": 1868.39647189586, - "2024-01-01": 1827.84829970474, - "2023-01-01": 1729, - "2015-01-01": 1729 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2372.27766812154, - "2034-01-01": 2326.34066331211, - "2033-01-01": 2280.97078201885, - "2032-01-01": 2236.73514775792, - "2031-01-01": 2193.63376052931, - "2030-01-01": 2151.09949681688, - "2029-01-01": 2109.13235662061, - "2028-01-01": 2067.73233994051, - "2027-01-01": 2025.76519974424, - "2026-01-01": 1977.0492897056, - "2025-01-01": 1947.28192154791, - "2024-01-01": 1905.02176753496, - "2023-01-01": 1802, - "2015-01-01": 1802 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2463.11404942031, - "2034-01-01": 2415.41808049776, - "2033-01-01": 2368.3109506977, - "2032-01-01": 2322.38149914265, - "2031-01-01": 2277.6297258326, - "2030-01-01": 2233.46679164505, - "2029-01-01": 2189.89269658, - "2028-01-01": 2146.90744063745, - "2027-01-01": 2103.3333455724, - "2026-01-01": 2052.7520649496, - "2025-01-01": 2021.84488080807, - "2024-01-01": 1977.9665521964, - "2023-01-01": 1871, - "2015-01-01": 1871 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2994.96764427109, - "2034-01-01": 2936.97281300502, - "2033-01-01": 2879.69396731014, - "2032-01-01": 2823.84709275763, - "2031-01-01": 2769.4321893475, - "2030-01-01": 2715.73327150855, - "2029-01-01": 2662.75033924078, - "2028-01-01": 2610.4833925442, - "2027-01-01": 2557.50046027644, - "2026-01-01": 2495.99729971156, - "2025-01-01": 2458.41641038929, - "2024-01-01": 2405.06355224308, - "2023-01-01": 2275, - "2015-01-01": 2275 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 691.146379447175, - "2034-01-01": 677.762956847313, - "2033-01-01": 664.544761686956, - "2032-01-01": 651.657021405608, - "2031-01-01": 639.099736003269, - "2030-01-01": 626.707678040434, - "2029-01-01": 614.480847517103, - "2028-01-01": 602.419244433278, - "2027-01-01": 590.192413909947, - "2026-01-01": 575.999376856514, - "2025-01-01": 567.32686393599, - "2024-01-01": 555.014665902249, - "2023-01-01": 525, - "2015-01-01": 525 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 971.5543391086, - "2034-01-01": 952.741070768223, - "2033-01-01": 934.16006499995, - "2032-01-01": 916.043584375883, - "2031-01-01": 898.391628896024, - "2030-01-01": 880.971935988267, - "2029-01-01": 863.784505652614, - "2028-01-01": 846.829337889064, - "2027-01-01": 829.641907553412, - "2026-01-01": 809.690552609728, - "2025-01-01": 797.499477304307, - "2024-01-01": 780.192044639733, - "2023-01-01": 738, - "2015-01-01": 738 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1112.41655358641, - "2034-01-01": 1090.87561625901, - "2033-01-01": 1069.60061642948, - "2032-01-01": 1048.85749159569, - "2031-01-01": 1028.64624175764, - "2030-01-01": 1008.70092941746, - "2029-01-01": 989.021554575147, - "2028-01-01": 969.608117230704, - "2027-01-01": 949.928742388391, - "2026-01-01": 927.084711321437, - "2025-01-01": 913.126095287451, - "2024-01-01": 893.309319404573, - "2023-01-01": 845, - "2015-01-01": 845 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1232.21525935725, - "2034-01-01": 1208.35452877921, - "2033-01-01": 1184.78837512189, - "2032-01-01": 1161.811375306, - "2031-01-01": 1139.42352933154, - "2030-01-01": 1117.3302602778, - "2029-01-01": 1095.53156814478, - "2028-01-01": 1074.02745293247, - "2027-01-01": 1052.22876079945, - "2026-01-01": 1026.9246033099, - "2025-01-01": 1011.46275170302, - "2024-01-01": 989.511861494296, - "2023-01-01": 936, - "2015-01-01": 936 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1336.21633359787, - "2034-01-01": 1310.34171657147, - "2033-01-01": 1284.78653926145, - "2032-01-01": 1259.87024138418, - "2031-01-01": 1235.59282293965, - "2030-01-01": 1211.63484421151, - "2029-01-01": 1187.99630519973, - "2028-01-01": 1164.67720590434, - "2027-01-01": 1141.03866689256, - "2026-01-01": 1113.59879525593, - "2025-01-01": 1096.83193694291, - "2024-01-01": 1073.02835407768, - "2023-01-01": 1015, - "2015-01-01": 1015 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1429.68565348501, - "2034-01-01": 1402.00108787844, - "2033-01-01": 1374.65830703245, - "2032-01-01": 1347.9990957076, - "2031-01-01": 1322.0234539039, - "2030-01-01": 1296.38959686078, - "2029-01-01": 1271.09752457824, - "2028-01-01": 1246.14723705627, - "2027-01-01": 1220.85516477372, - "2026-01-01": 1191.49585384033, - "2025-01-01": 1173.55614139902, - "2024-01-01": 1148.08748032351, - "2023-01-01": 1086, - "2015-01-01": 1086 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1515.25615760704, - "2034-01-01": 1485.91459682144, - "2033-01-01": 1456.93527752702, - "2032-01-01": 1428.68044121496, - "2031-01-01": 1401.15008788526, - "2030-01-01": 1373.98197604674, - "2029-01-01": 1347.1761056994, - "2028-01-01": 1320.73247684324, - "2027-01-01": 1293.9266064959, - "2026-01-01": 1262.81006240352, - "2025-01-01": 1243.79661026729, - "2024-01-01": 1216.80358181617, - "2023-01-01": 1151, - "2015-01-01": 1151 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1594.24431525815, - "2034-01-01": 1563.37322046114, - "2033-01-01": 1532.88325029125, - "2032-01-01": 1503.1555293756, - "2031-01-01": 1474.19005771421, - "2030-01-01": 1445.60571067993, - "2029-01-01": 1417.40248827279, - "2028-01-01": 1389.58039049276, - "2027-01-01": 1361.37716808561, - "2026-01-01": 1328.63856261569, - "2025-01-01": 1308.63396614568, - "2024-01-01": 1280.23382934786, - "2023-01-01": 1211, - "2015-01-01": 1211 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1666.65012643833, - "2034-01-01": 1634.37695879752, - "2033-01-01": 1602.50222532512, - "2032-01-01": 1571.42436018952, - "2031-01-01": 1541.14336339074, - "2030-01-01": 1511.26080076036, - "2029-01-01": 1481.77667229839, - "2028-01-01": 1452.69097800482, - "2027-01-01": 1423.20684954284, - "2026-01-01": 1388.98135447685, - "2025-01-01": 1368.06820903422, - "2024-01-01": 1338.37822291857, - "2023-01-01": 1266, - "2015-01-01": 1266 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1764.06885420803, - "2034-01-01": 1729.90926128648, - "2033-01-01": 1696.17139173433, - "2032-01-01": 1663.27696892098, - "2031-01-01": 1631.22599284644, - "2030-01-01": 1599.5967401413, - "2029-01-01": 1568.38921080556, - "2028-01-01": 1537.60340483922, - "2027-01-01": 1506.39587550348, - "2026-01-01": 1470.16983807186, - "2025-01-01": 1448.03428128424, - "2024-01-01": 1416.60886154098, - "2023-01-01": 1340, - "2015-01-01": 1340 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1887.81696786143, - "2034-01-01": 1851.26110498866, - "2033-01-01": 1815.15654906494, - "2032-01-01": 1779.95460703932, - "2031-01-01": 1745.65527891179, - "2030-01-01": 1711.8072577333, - "2029-01-01": 1678.41054350386, - "2028-01-01": 1645.46513622347, - "2027-01-01": 1612.06842199403, - "2026-01-01": 1573.30115507094, - "2025-01-01": 1549.61280549373, - "2024-01-01": 1515.98291600729, - "2023-01-01": 1434, - "2015-01-01": 1434 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2003.66626574972, - "2034-01-01": 1964.86708632688, - "2033-01-01": 1926.54690911914, - "2032-01-01": 1889.18473634159, - "2031-01-01": 1852.78056799424, - "2030-01-01": 1816.85540186198, - "2029-01-01": 1781.40923794482, - "2028-01-01": 1746.44207624276, - "2027-01-01": 1710.9959123256, - "2026-01-01": 1669.84962204879, - "2025-01-01": 1644.70759411539, - "2024-01-01": 1609.01394572043, - "2023-01-01": 1522, - "2015-01-01": 1522 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2108.98380928452, - "2034-01-01": 2068.1452511798, - "2033-01-01": 2027.81087280477, - "2032-01-01": 1988.48485388911, - "2031-01-01": 1950.16719443283, - "2030-01-01": 1912.35371470624, - "2029-01-01": 1875.04441470933, - "2028-01-01": 1838.23929444212, - "2027-01-01": 1800.92999444521, - "2026-01-01": 1757.62095566502, - "2025-01-01": 1731.15740195325, - "2024-01-01": 1693.58760909601, - "2023-01-01": 1602, - "2015-01-01": 1602 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2207.71900634841, - "2034-01-01": 2164.96853072942, - "2033-01-01": 2122.74583876005, - "2032-01-01": 2081.57871408991, - "2031-01-01": 2041.46715671901, - "2030-01-01": 2001.88338299773, - "2029-01-01": 1962.82739292606, - "2028-01-01": 1924.29918650401, - "2027-01-01": 1885.24319643235, - "2026-01-01": 1839.90658093024, - "2025-01-01": 1812.20409680125, - "2024-01-01": 1772.87541851061, - "2023-01-01": 1677, - "2015-01-01": 1677 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2309.08714200066, - "2034-01-01": 2264.37376440036, - "2033-01-01": 2220.21240380747, - "2032-01-01": 2177.1550772294, - "2031-01-01": 2135.20178466616, - "2030-01-01": 2093.80050911033, - "2029-01-01": 2052.9512505619, - "2028-01-01": 2012.65400902089, - "2027-01-01": 1971.80475047247, - "2026-01-01": 1924.38648953586, - "2025-01-01": 1895.41203684519, - "2024-01-01": 1854.27756950961, - "2023-01-01": 1754, - "2015-01-01": 1754 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2418.35409341802, - "2034-01-01": 2371.52486043527, - "2033-01-01": 2325.27376613131, - "2032-01-01": 2280.17894918496, - "2031-01-01": 2236.2404095962, - "2030-01-01": 2192.88000868624, - "2029-01-01": 2150.09774645508, - "2028-01-01": 2107.89362290273, - "2027-01-01": 2065.11136067157, - "2026-01-01": 2015.4492481627, - "2025-01-01": 1985.10371247698, - "2024-01-01": 1942.02274526177, - "2023-01-01": 1837, - "2015-01-01": 1837 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2519.72222907027, - "2034-01-01": 2470.93009410621, - "2033-01-01": 2422.74033117873, - "2032-01-01": 2375.75531232444, - "2031-01-01": 2329.97503754335, - "2030-01-01": 2284.79713479884, - "2029-01-01": 2240.22160409093, - "2028-01-01": 2196.24844541961, - "2027-01-01": 2151.67291471169, - "2026-01-01": 2099.92915676832, - "2025-01-01": 2068.31165252093, - "2024-01-01": 2023.42489626077, - "2023-01-01": 1914, - "2015-01-01": 1914 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2615.82448754578, - "2034-01-01": 2565.1714195345, - "2033-01-01": 2515.14369804187, - "2032-01-01": 2466.36666958656, - "2031-01-01": 2418.84033416856, - "2030-01-01": 2371.93934526922, - "2029-01-01": 2325.66370288854, - "2028-01-01": 2280.01340702652, - "2027-01-01": 2233.73776464584, - "2026-01-01": 2180.02049869313, - "2025-01-01": 2147.19710217298, - "2024-01-01": 2100.59836409099, - "2023-01-01": 1987, - "2015-01-01": 1987 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MD.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3179.27334545701, - "2034-01-01": 3117.70960149764, - "2033-01-01": 3056.90590376, - "2032-01-01": 2997.6222984658, - "2031-01-01": 2939.85878561504, - "2030-01-01": 2882.855318986, - "2029-01-01": 2826.61189857868, - "2028-01-01": 2771.12852439308, - "2027-01-01": 2714.88510398576, - "2026-01-01": 2649.59713353996, - "2025-01-01": 2609.70357410556, - "2024-01-01": 2553.06746315035, - "2023-01-01": 2415, - "2015-01-01": 2415 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA", - "description": null, - "label": "MA", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 616.107629678625, - "2034-01-01": 604.177264389605, - "2033-01-01": 592.394187560944, - "2032-01-01": 580.905687652999, - "2031-01-01": 569.711764665771, - "2030-01-01": 558.665130138901, - "2029-01-01": 547.765784072389, - "2028-01-01": 537.013726466236, - "2027-01-01": 526.114380399725, - "2026-01-01": 513.46230165495, - "2025-01-01": 505.731375851512, - "2024-01-01": 494.755930747148, - "2023-01-01": 468, - "2015-01-01": 468 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 868.869734162163, - "2034-01-01": 852.044860036623, - "2033-01-01": 835.427700406459, - "2032-01-01": 819.22596976705, - "2031-01-01": 803.439668118395, - "2030-01-01": 787.861080965117, - "2029-01-01": 772.490208307216, - "2028-01-01": 757.327050144692, - "2027-01-01": 741.956177486791, - "2026-01-01": 724.113502333903, - "2025-01-01": 713.210914662388, - "2024-01-01": 697.732722848542, - "2023-01-01": 660, - "2015-01-01": 660 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 995.250786403932, - "2034-01-01": 975.978657860131, - "2033-01-01": 956.944456829217, - "2032-01-01": 938.386110824075, - "2031-01-01": 920.303619844707, - "2030-01-01": 902.459056378225, - "2029-01-01": 884.852420424629, - "2028-01-01": 867.48371198392, - "2027-01-01": 849.877076030324, - "2026-01-01": 829.43910267338, - "2025-01-01": 816.950684067826, - "2024-01-01": 799.221118899239, - "2023-01-01": 756, - "2015-01-01": 756 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1103.20126852711, - "2034-01-01": 1081.83877683438, - "2033-01-01": 1060.74001960699, - "2032-01-01": 1040.16873131028, - "2031-01-01": 1020.12491194427, - "2030-01-01": 1000.34482704359, - "2029-01-01": 980.828476608253, - "2028-01-01": 961.57586063826, - "2027-01-01": 942.059510202925, - "2026-01-01": 919.404719630016, - "2025-01-01": 905.561737101638, - "2024-01-01": 885.909123859209, - "2023-01-01": 838, - "2015-01-01": 838 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1196.67058841425, - "2034-01-01": 1173.49814814135, - "2033-01-01": 1150.61178737799, - "2032-01-01": 1128.29758563371, - "2031-01-01": 1106.55554290852, - "2030-01-01": 1085.09957969287, - "2029-01-01": 1063.92969598676, - "2028-01-01": 1043.04589179019, - "2027-01-01": 1021.87600808408, - "2026-01-01": 997.301778214421, - "2025-01-01": 982.285941557743, - "2024-01-01": 960.968250105037, - "2023-01-01": 909, - "2015-01-01": 909 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1280.9246232421, - "2034-01-01": 1256.12068002369, - "2033-01-01": 1231.62295832649, - "2032-01-01": 1207.73767967173, - "2031-01-01": 1184.46484405939, - "2030-01-01": 1161.49822996827, - "2029-01-01": 1138.83783739837, - "2028-01-01": 1116.48366634967, - "2027-01-01": 1093.82327377977, - "2026-01-01": 1067.51884510741, - "2025-01-01": 1051.44578782804, - "2024-01-01": 1028.6271808055, - "2023-01-01": 973, - "2015-01-01": 973 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1358.59631159902, - "2034-01-01": 1332.28832660272, - "2033-01-01": 1306.30513154465, - "2032-01-01": 1280.97151636302, - "2031-01-01": 1256.28748105785, - "2030-01-01": 1231.92823569091, - "2029-01-01": 1207.89378026219, - "2028-01-01": 1184.1841147717, - "2027-01-01": 1160.14965934298, - "2026-01-01": 1132.25020364938, - "2025-01-01": 1115.20252110846, - "2024-01-01": 1091.00025754499, - "2023-01-01": 1032, - "2015-01-01": 1032 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1428.36918419083, - "2034-01-01": 1400.71011081778, - "2033-01-01": 1373.39250748638, - "2032-01-01": 1346.75784423826, - "2031-01-01": 1320.80612107342, - "2030-01-01": 1295.19586795023, - "2029-01-01": 1269.92708486868, - "2028-01-01": 1244.99977182877, - "2027-01-01": 1219.73098874722, - "2026-01-01": 1190.39871217013, - "2025-01-01": 1172.47551880105, - "2024-01-01": 1147.03030953132, - "2023-01-01": 1085, - "2015-01-01": 1085 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1495.50911819427, - "2034-01-01": 1466.54994091152, - "2033-01-01": 1437.94828433597, - "2032-01-01": 1410.0616691748, - "2031-01-01": 1382.89009542803, - "2030-01-01": 1356.07604238844, - "2029-01-01": 1329.61951005606, - "2028-01-01": 1303.52049843086, - "2027-01-01": 1277.06396609848, - "2026-01-01": 1246.35293735048, - "2025-01-01": 1227.58727129769, - "2024-01-01": 1200.94601993325, - "2023-01-01": 1136, - "2015-01-01": 1136 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1582.39609161048, - "2034-01-01": 1551.75442691518, - "2033-01-01": 1521.49105437661, - "2032-01-01": 1491.98426615151, - "2031-01-01": 1463.23406223987, - "2030-01-01": 1434.86215048496, - "2029-01-01": 1406.86853088678, - "2028-01-01": 1379.25320344533, - "2027-01-01": 1351.25958384716, - "2026-01-01": 1318.76428758387, - "2025-01-01": 1298.90836276392, - "2024-01-01": 1270.7192922181, - "2023-01-01": 1202, - "2015-01-01": 1202 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1695.6124509104, - "2034-01-01": 1662.77845413208, - "2033-01-01": 1630.34981533867, - "2032-01-01": 1598.73189251509, - "2031-01-01": 1567.92468566135, - "2030-01-01": 1537.52283679253, - "2029-01-01": 1507.52634590863, - "2028-01-01": 1477.93521300964, - "2027-01-01": 1447.93872212574, - "2026-01-01": 1413.11847122131, - "2025-01-01": 1391.84190618963, - "2024-01-01": 1361.63598034685, - "2023-01-01": 1288, - "2015-01-01": 1288 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1798.29705585684, - "2034-01-01": 1763.47466486368, - "2033-01-01": 1729.08217993216, - "2032-01-01": 1695.54950712392, - "2031-01-01": 1662.87664643898, - "2030-01-01": 1630.63369181568, - "2029-01-01": 1598.82064325403, - "2028-01-01": 1567.43750075401, - "2027-01-01": 1535.62445219236, - "2026-01-01": 1498.69552149714, - "2025-01-01": 1476.13046883155, - "2024-01-01": 1444.09530213804, - "2023-01-01": 1366, - "2015-01-01": 1366 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1894.39931433235, - "2034-01-01": 1857.71599029197, - "2033-01-01": 1821.4855467953, - "2032-01-01": 1786.16086438604, - "2031-01-01": 1751.7419430642, - "2030-01-01": 1717.77590228607, - "2029-01-01": 1684.26274205164, - "2028-01-01": 1651.20246236093, - "2027-01-01": 1617.6893021265, - "2026-01-01": 1578.78686342195, - "2025-01-01": 1555.0159184836, - "2024-01-01": 1521.26876996826, - "2023-01-01": 1439, - "2015-01-01": 1439 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1982.60275704275, - "2034-01-01": 1944.21145335629, - "2033-01-01": 1906.29411638201, - "2032-01-01": 1869.32471283209, - "2031-01-01": 1833.30324270652, - "2030-01-01": 1797.75573929313, - "2029-01-01": 1762.68220259192, - "2028-01-01": 1728.08263260289, - "2027-01-01": 1693.00909590168, - "2026-01-01": 1652.29535532554, - "2025-01-01": 1627.41763254781, - "2024-01-01": 1592.09921304531, - "2023-01-01": 1506, - "2015-01-01": 1506 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2076.0720769299, - "2034-01-01": 2035.87082466326, - "2033-01-01": 1996.16588415301, - "2032-01-01": 1957.45356715551, - "2031-01-01": 1919.73387367077, - "2030-01-01": 1882.51049194241, - "2029-01-01": 1845.78342197042, - "2028-01-01": 1809.55266375482, - "2027-01-01": 1772.82559378283, - "2026-01-01": 1730.19241390995, - "2025-01-01": 1704.14183700392, - "2024-01-01": 1667.15833929114, - "2023-01-01": 1577, - "2015-01-01": 1577 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2173.49080469959, - "2034-01-01": 2131.40312715222, - "2033-01-01": 2089.83505056222, - "2032-01-01": 2049.30617588697, - "2031-01-01": 2009.81650312647, - "2030-01-01": 1970.84643132335, - "2029-01-01": 1932.3959604776, - "2028-01-01": 1894.46509058922, - "2027-01-01": 1856.01461974347, - "2026-01-01": 1811.38089750496, - "2025-01-01": 1784.10790925394, - "2024-01-01": 1745.38897791355, - "2023-01-01": 1651, - "2015-01-01": 1651 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2265.64365529255, - "2034-01-01": 2221.77152139853, - "2033-01-01": 2178.44101878715, - "2032-01-01": 2136.19377874105, - "2031-01-01": 2095.02980126024, - "2030-01-01": 2054.40745506207, - "2029-01-01": 2014.32674014654, - "2028-01-01": 1974.78765651366, - "2027-01-01": 1934.70694159813, - "2026-01-01": 1888.18081441916, - "2025-01-01": 1859.75149111208, - "2024-01-01": 1819.39093336718, - "2023-01-01": 1721, - "2015-01-01": 1721 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2353.84709800295, - "2034-01-01": 2308.26698446285, - "2033-01-01": 2263.24958837386, - "2032-01-01": 2219.3576271871, - "2031-01-01": 2176.59110090256, - "2030-01-01": 2134.38729206914, - "2029-01-01": 2092.74620068682, - "2028-01-01": 2051.66782675562, - "2027-01-01": 2010.02673537331, - "2026-01-01": 1961.68930632276, - "2025-01-01": 1932.15320517629, - "2024-01-01": 1890.22137644423, - "2023-01-01": 1788, - "2015-01-01": 1788 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2863.32071485258, - "2034-01-01": 2807.87510693887, - "2033-01-01": 2753.1140127031, - "2032-01-01": 2699.72194582323, - "2031-01-01": 2647.69890629926, - "2030-01-01": 2596.36038045323, - "2029-01-01": 2545.70636828514, - "2028-01-01": 2495.73686979501, - "2027-01-01": 2445.08285762692, - "2026-01-01": 2386.28313269127, - "2025-01-01": 2350.35415059196, - "2024-01-01": 2299.3464730236, - "2023-01-01": 2175, - "2015-01-01": 2175 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 647.702892739067, - "2034-01-01": 635.160713845482, - "2033-01-01": 622.773376666633, - "2032-01-01": 610.695722917256, - "2031-01-01": 598.927752597349, - "2030-01-01": 587.314623992178, - "2029-01-01": 575.856337101743, - "2028-01-01": 564.552891926043, - "2027-01-01": 553.094605035608, - "2026-01-01": 539.793701739819, - "2025-01-01": 531.666318202871, - "2024-01-01": 520.128029759822, - "2023-01-01": 492, - "2015-01-01": 492 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 912.313220870271, - "2034-01-01": 894.647103038454, - "2033-01-01": 877.199085426782, - "2032-01-01": 860.187268255403, - "2031-01-01": 843.611651524315, - "2030-01-01": 827.254135013373, - "2029-01-01": 811.114718722577, - "2028-01-01": 795.193402651926, - "2027-01-01": 779.053986361131, - "2026-01-01": 760.319177450598, - "2025-01-01": 748.871460395507, - "2024-01-01": 732.619358990969, - "2023-01-01": 693, - "2015-01-01": 693 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1043.96015028878, - "2034-01-01": 1023.74480910461, - "2033-01-01": 1003.77904003382, - "2032-01-01": 984.312415189804, - "2031-01-01": 965.344934572556, - "2030-01-01": 946.627026068694, - "2029-01-01": 928.158689678215, - "2028-01-01": 909.939925401122, - "2027-01-01": 891.471589010644, - "2026-01-01": 870.033344470887, - "2025-01-01": 856.933720192839, - "2024-01-01": 838.336438210445, - "2023-01-01": 793, - "2015-01-01": 793 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1157.1765095887, - "2034-01-01": 1134.7688363215, - "2033-01-01": 1112.63780099588, - "2032-01-01": 1091.06004155339, - "2031-01-01": 1070.03555799404, - "2030-01-01": 1049.28771237627, - "2029-01-01": 1028.81650470006, - "2028-01-01": 1008.62193496543, - "2027-01-01": 988.150727289226, - "2026-01-01": 964.387528108335, - "2025-01-01": 949.867263618544, - "2024-01-01": 929.253126339194, - "2023-01-01": 879, - "2015-01-01": 879 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1255.91170665258, - "2034-01-01": 1231.59211587112, - "2033-01-01": 1207.57276695115, - "2032-01-01": 1184.15390175419, - "2031-01-01": 1161.33552028023, - "2030-01-01": 1138.81738066776, - "2029-01-01": 1116.59948291679, - "2028-01-01": 1094.68182702733, - "2027-01-01": 1072.46392927636, - "2026-01-01": 1046.67315337355, - "2025-01-01": 1030.91395846654, - "2024-01-01": 1008.5409357538, - "2023-01-01": 954, - "2015-01-01": 954 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1342.7986800688, - "2034-01-01": 1316.79660187478, - "2033-01-01": 1291.1155369918, - "2032-01-01": 1266.0764987309, - "2031-01-01": 1241.67948709207, - "2030-01-01": 1217.60348876427, - "2029-01-01": 1193.84850374752, - "2028-01-01": 1170.4145320418, - "2027-01-01": 1146.65954702504, - "2026-01-01": 1119.08450360694, - "2025-01-01": 1102.23504993278, - "2024-01-01": 1078.31420803866, - "2023-01-01": 1020, - "2015-01-01": 1020 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1423.10330701409, - "2034-01-01": 1395.54620257513, - "2033-01-01": 1368.32930930209, - "2032-01-01": 1341.79283836088, - "2031-01-01": 1315.93678975149, - "2030-01-01": 1290.42095230802, - "2029-01-01": 1265.24532603045, - "2028-01-01": 1240.40991091881, - "2027-01-01": 1215.23428464124, - "2026-01-01": 1186.01014548932, - "2025-01-01": 1168.15302840915, - "2024-01-01": 1142.80162636254, - "2023-01-01": 1081, - "2015-01-01": 1081 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1498.14205678264, - "2034-01-01": 1469.13189503284, - "2033-01-01": 1440.47988342811, - "2032-01-01": 1412.54417211349, - "2031-01-01": 1385.32476108899, - "2030-01-01": 1358.46350020955, - "2029-01-01": 1331.96038947517, - "2028-01-01": 1305.81542888585, - "2027-01-01": 1279.31231815147, - "2026-01-01": 1248.54722069088, - "2025-01-01": 1229.74851649363, - "2024-01-01": 1203.06036151764, - "2023-01-01": 1138, - "2015-01-01": 1138 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1566.59846008026, - "2034-01-01": 1536.26270218724, - "2033-01-01": 1506.30145982377, - "2032-01-01": 1477.08924851938, - "2031-01-01": 1448.62606827408, - "2030-01-01": 1420.53740355832, - "2029-01-01": 1392.8232543721, - "2028-01-01": 1365.48362071543, - "2027-01-01": 1337.76947152921, - "2026-01-01": 1305.59858754143, - "2025-01-01": 1285.94089158825, - "2024-01-01": 1258.03324271176, - "2023-01-01": 1190, - "2015-01-01": 1190 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1658.75131067322, - "2034-01-01": 1626.63109643355, - "2033-01-01": 1594.90742804869, - "2032-01-01": 1563.97685137346, - "2031-01-01": 1533.83936640785, - "2030-01-01": 1504.09842729704, - "2029-01-01": 1474.75403404105, - "2028-01-01": 1445.80618663987, - "2027-01-01": 1416.46179338387, - "2026-01-01": 1382.39850445563, - "2025-01-01": 1361.58447344638, - "2024-01-01": 1332.0351981654, - "2023-01-01": 1260, - "2015-01-01": 1260 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1775.91707785569, - "2034-01-01": 1741.52805483243, - "2033-01-01": 1707.56358764896, - "2032-01-01": 1674.44823214508, - "2031-01-01": 1642.18198832078, - "2030-01-01": 1610.34030033628, - "2029-01-01": 1578.92316819157, - "2028-01-01": 1547.93059188665, - "2027-01-01": 1516.51345974194, - "2026-01-01": 1480.04411310369, - "2025-01-01": 1457.759884666, - "2024-01-01": 1426.12339867073, - "2023-01-01": 1349, - "2015-01-01": 1349 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1883.86755997887, - "2034-01-01": 1847.38817380668, - "2033-01-01": 1811.35915042673, - "2032-01-01": 1776.23085263129, - "2031-01-01": 1742.00328042034, - "2030-01-01": 1708.22607100164, - "2029-01-01": 1674.89922437519, - "2028-01-01": 1642.02274054099, - "2027-01-01": 1608.69589391454, - "2026-01-01": 1570.00973006033, - "2025-01-01": 1546.37093769981, - "2024-01-01": 1512.8114036307, - "2023-01-01": 1431, - "2015-01-01": 1431 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1983.91922633694, - "2034-01-01": 1945.50243041695, - "2033-01-01": 1907.55991592808, - "2032-01-01": 1870.56596430143, - "2031-01-01": 1834.520575537, - "2030-01-01": 1798.94946820368, - "2029-01-01": 1763.85264230148, - "2028-01-01": 1729.23009783038, - "2027-01-01": 1694.13327192817, - "2026-01-01": 1653.39249699575, - "2025-01-01": 1628.49825514579, - "2024-01-01": 1593.1563838375, - "2023-01-01": 1507, - "2015-01-01": 1507 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2077.38854622408, - "2034-01-01": 2037.16180172392, - "2033-01-01": 1997.43168369908, - "2032-01-01": 1958.69481862486, - "2031-01-01": 1920.95120650125, - "2030-01-01": 1883.70422085296, - "2029-01-01": 1846.95386167998, - "2028-01-01": 1810.70012898231, - "2027-01-01": 1773.94976980933, - "2026-01-01": 1731.28955558015, - "2025-01-01": 1705.22245960189, - "2024-01-01": 1668.21551008333, - "2023-01-01": 1578, - "2015-01-01": 1578 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2173.49080469959, - "2034-01-01": 2131.40312715222, - "2033-01-01": 2089.83505056222, - "2032-01-01": 2049.30617588697, - "2031-01-01": 2009.81650312647, - "2030-01-01": 1970.84643132335, - "2029-01-01": 1932.3959604776, - "2028-01-01": 1894.46509058922, - "2027-01-01": 1856.01461974347, - "2026-01-01": 1811.38089750496, - "2025-01-01": 1784.10790925394, - "2024-01-01": 1745.38897791355, - "2023-01-01": 1651, - "2015-01-01": 1651 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2276.17540964603, - "2034-01-01": 2232.09933788382, - "2033-01-01": 2188.56741515571, - "2032-01-01": 2146.1237904958, - "2031-01-01": 2104.7684639041, - "2030-01-01": 2063.9572863465, - "2029-01-01": 2023.69025782299, - "2028-01-01": 1983.96737833359, - "2027-01-01": 1943.70034981009, - "2026-01-01": 1896.95794778079, - "2025-01-01": 1868.39647189586, - "2024-01-01": 1827.84829970474, - "2023-01-01": 1729, - "2015-01-01": 1729 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2372.27766812154, - "2034-01-01": 2326.34066331211, - "2033-01-01": 2280.97078201885, - "2032-01-01": 2236.73514775792, - "2031-01-01": 2193.63376052931, - "2030-01-01": 2151.09949681688, - "2029-01-01": 2109.13235662061, - "2028-01-01": 2067.73233994051, - "2027-01-01": 2025.76519974424, - "2026-01-01": 1977.0492897056, - "2025-01-01": 1947.28192154791, - "2024-01-01": 1905.02176753496, - "2023-01-01": 1802, - "2015-01-01": 1802 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2463.11404942031, - "2034-01-01": 2415.41808049776, - "2033-01-01": 2368.3109506977, - "2032-01-01": 2322.38149914265, - "2031-01-01": 2277.6297258326, - "2030-01-01": 2233.46679164505, - "2029-01-01": 2189.89269658, - "2028-01-01": 2146.90744063745, - "2027-01-01": 2103.3333455724, - "2026-01-01": 2052.7520649496, - "2025-01-01": 2021.84488080807, - "2024-01-01": 1977.9665521964, - "2023-01-01": 1871, - "2015-01-01": 1871 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2994.96764427109, - "2034-01-01": 2936.97281300502, - "2033-01-01": 2879.69396731014, - "2032-01-01": 2823.84709275763, - "2031-01-01": 2769.4321893475, - "2030-01-01": 2715.73327150855, - "2029-01-01": 2662.75033924078, - "2028-01-01": 2610.4833925442, - "2027-01-01": 2557.50046027644, - "2026-01-01": 2495.99729971156, - "2025-01-01": 2458.41641038929, - "2024-01-01": 2405.06355224308, - "2023-01-01": 2275, - "2015-01-01": 2275 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 691.146379447175, - "2034-01-01": 677.762956847313, - "2033-01-01": 664.544761686956, - "2032-01-01": 651.657021405608, - "2031-01-01": 639.099736003269, - "2030-01-01": 626.707678040434, - "2029-01-01": 614.480847517103, - "2028-01-01": 602.419244433278, - "2027-01-01": 590.192413909947, - "2026-01-01": 575.999376856514, - "2025-01-01": 567.32686393599, - "2024-01-01": 555.014665902249, - "2023-01-01": 525, - "2015-01-01": 525 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 971.5543391086, - "2034-01-01": 952.741070768223, - "2033-01-01": 934.16006499995, - "2032-01-01": 916.043584375883, - "2031-01-01": 898.391628896024, - "2030-01-01": 880.971935988267, - "2029-01-01": 863.784505652614, - "2028-01-01": 846.829337889064, - "2027-01-01": 829.641907553412, - "2026-01-01": 809.690552609728, - "2025-01-01": 797.499477304307, - "2024-01-01": 780.192044639733, - "2023-01-01": 738, - "2015-01-01": 738 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1112.41655358641, - "2034-01-01": 1090.87561625901, - "2033-01-01": 1069.60061642948, - "2032-01-01": 1048.85749159569, - "2031-01-01": 1028.64624175764, - "2030-01-01": 1008.70092941746, - "2029-01-01": 989.021554575147, - "2028-01-01": 969.608117230704, - "2027-01-01": 949.928742388391, - "2026-01-01": 927.084711321437, - "2025-01-01": 913.126095287451, - "2024-01-01": 893.309319404573, - "2023-01-01": 845, - "2015-01-01": 845 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1232.21525935725, - "2034-01-01": 1208.35452877921, - "2033-01-01": 1184.78837512189, - "2032-01-01": 1161.811375306, - "2031-01-01": 1139.42352933154, - "2030-01-01": 1117.3302602778, - "2029-01-01": 1095.53156814478, - "2028-01-01": 1074.02745293247, - "2027-01-01": 1052.22876079945, - "2026-01-01": 1026.9246033099, - "2025-01-01": 1011.46275170302, - "2024-01-01": 989.511861494296, - "2023-01-01": 936, - "2015-01-01": 936 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1336.21633359787, - "2034-01-01": 1310.34171657147, - "2033-01-01": 1284.78653926145, - "2032-01-01": 1259.87024138418, - "2031-01-01": 1235.59282293965, - "2030-01-01": 1211.63484421151, - "2029-01-01": 1187.99630519973, - "2028-01-01": 1164.67720590434, - "2027-01-01": 1141.03866689256, - "2026-01-01": 1113.59879525593, - "2025-01-01": 1096.83193694291, - "2024-01-01": 1073.02835407768, - "2023-01-01": 1015, - "2015-01-01": 1015 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1429.68565348501, - "2034-01-01": 1402.00108787844, - "2033-01-01": 1374.65830703245, - "2032-01-01": 1347.9990957076, - "2031-01-01": 1322.0234539039, - "2030-01-01": 1296.38959686078, - "2029-01-01": 1271.09752457824, - "2028-01-01": 1246.14723705627, - "2027-01-01": 1220.85516477372, - "2026-01-01": 1191.49585384033, - "2025-01-01": 1173.55614139902, - "2024-01-01": 1148.08748032351, - "2023-01-01": 1086, - "2015-01-01": 1086 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1515.25615760704, - "2034-01-01": 1485.91459682144, - "2033-01-01": 1456.93527752702, - "2032-01-01": 1428.68044121496, - "2031-01-01": 1401.15008788526, - "2030-01-01": 1373.98197604674, - "2029-01-01": 1347.1761056994, - "2028-01-01": 1320.73247684324, - "2027-01-01": 1293.9266064959, - "2026-01-01": 1262.81006240352, - "2025-01-01": 1243.79661026729, - "2024-01-01": 1216.80358181617, - "2023-01-01": 1151, - "2015-01-01": 1151 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1594.24431525815, - "2034-01-01": 1563.37322046114, - "2033-01-01": 1532.88325029125, - "2032-01-01": 1503.1555293756, - "2031-01-01": 1474.19005771421, - "2030-01-01": 1445.60571067993, - "2029-01-01": 1417.40248827279, - "2028-01-01": 1389.58039049276, - "2027-01-01": 1361.37716808561, - "2026-01-01": 1328.63856261569, - "2025-01-01": 1308.63396614568, - "2024-01-01": 1280.23382934786, - "2023-01-01": 1211, - "2015-01-01": 1211 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1666.65012643833, - "2034-01-01": 1634.37695879752, - "2033-01-01": 1602.50222532512, - "2032-01-01": 1571.42436018952, - "2031-01-01": 1541.14336339074, - "2030-01-01": 1511.26080076036, - "2029-01-01": 1481.77667229839, - "2028-01-01": 1452.69097800482, - "2027-01-01": 1423.20684954284, - "2026-01-01": 1388.98135447685, - "2025-01-01": 1368.06820903422, - "2024-01-01": 1338.37822291857, - "2023-01-01": 1266, - "2015-01-01": 1266 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1764.06885420803, - "2034-01-01": 1729.90926128648, - "2033-01-01": 1696.17139173433, - "2032-01-01": 1663.27696892098, - "2031-01-01": 1631.22599284644, - "2030-01-01": 1599.5967401413, - "2029-01-01": 1568.38921080556, - "2028-01-01": 1537.60340483922, - "2027-01-01": 1506.39587550348, - "2026-01-01": 1470.16983807186, - "2025-01-01": 1448.03428128424, - "2024-01-01": 1416.60886154098, - "2023-01-01": 1340, - "2015-01-01": 1340 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1887.81696786143, - "2034-01-01": 1851.26110498866, - "2033-01-01": 1815.15654906494, - "2032-01-01": 1779.95460703932, - "2031-01-01": 1745.65527891179, - "2030-01-01": 1711.8072577333, - "2029-01-01": 1678.41054350386, - "2028-01-01": 1645.46513622347, - "2027-01-01": 1612.06842199403, - "2026-01-01": 1573.30115507094, - "2025-01-01": 1549.61280549373, - "2024-01-01": 1515.98291600729, - "2023-01-01": 1434, - "2015-01-01": 1434 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2003.66626574972, - "2034-01-01": 1964.86708632688, - "2033-01-01": 1926.54690911914, - "2032-01-01": 1889.18473634159, - "2031-01-01": 1852.78056799424, - "2030-01-01": 1816.85540186198, - "2029-01-01": 1781.40923794482, - "2028-01-01": 1746.44207624276, - "2027-01-01": 1710.9959123256, - "2026-01-01": 1669.84962204879, - "2025-01-01": 1644.70759411539, - "2024-01-01": 1609.01394572043, - "2023-01-01": 1522, - "2015-01-01": 1522 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2108.98380928452, - "2034-01-01": 2068.1452511798, - "2033-01-01": 2027.81087280477, - "2032-01-01": 1988.48485388911, - "2031-01-01": 1950.16719443283, - "2030-01-01": 1912.35371470624, - "2029-01-01": 1875.04441470933, - "2028-01-01": 1838.23929444212, - "2027-01-01": 1800.92999444521, - "2026-01-01": 1757.62095566502, - "2025-01-01": 1731.15740195325, - "2024-01-01": 1693.58760909601, - "2023-01-01": 1602, - "2015-01-01": 1602 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2207.71900634841, - "2034-01-01": 2164.96853072942, - "2033-01-01": 2122.74583876005, - "2032-01-01": 2081.57871408991, - "2031-01-01": 2041.46715671901, - "2030-01-01": 2001.88338299773, - "2029-01-01": 1962.82739292606, - "2028-01-01": 1924.29918650401, - "2027-01-01": 1885.24319643235, - "2026-01-01": 1839.90658093024, - "2025-01-01": 1812.20409680125, - "2024-01-01": 1772.87541851061, - "2023-01-01": 1677, - "2015-01-01": 1677 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2309.08714200066, - "2034-01-01": 2264.37376440036, - "2033-01-01": 2220.21240380747, - "2032-01-01": 2177.1550772294, - "2031-01-01": 2135.20178466616, - "2030-01-01": 2093.80050911033, - "2029-01-01": 2052.9512505619, - "2028-01-01": 2012.65400902089, - "2027-01-01": 1971.80475047247, - "2026-01-01": 1924.38648953586, - "2025-01-01": 1895.41203684519, - "2024-01-01": 1854.27756950961, - "2023-01-01": 1754, - "2015-01-01": 1754 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2418.35409341802, - "2034-01-01": 2371.52486043527, - "2033-01-01": 2325.27376613131, - "2032-01-01": 2280.17894918496, - "2031-01-01": 2236.2404095962, - "2030-01-01": 2192.88000868624, - "2029-01-01": 2150.09774645508, - "2028-01-01": 2107.89362290273, - "2027-01-01": 2065.11136067157, - "2026-01-01": 2015.4492481627, - "2025-01-01": 1985.10371247698, - "2024-01-01": 1942.02274526177, - "2023-01-01": 1837, - "2015-01-01": 1837 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2519.72222907027, - "2034-01-01": 2470.93009410621, - "2033-01-01": 2422.74033117873, - "2032-01-01": 2375.75531232444, - "2031-01-01": 2329.97503754335, - "2030-01-01": 2284.79713479884, - "2029-01-01": 2240.22160409093, - "2028-01-01": 2196.24844541961, - "2027-01-01": 2151.67291471169, - "2026-01-01": 2099.92915676832, - "2025-01-01": 2068.31165252093, - "2024-01-01": 2023.42489626077, - "2023-01-01": 1914, - "2015-01-01": 1914 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2615.82448754578, - "2034-01-01": 2565.1714195345, - "2033-01-01": 2515.14369804187, - "2032-01-01": 2466.36666958656, - "2031-01-01": 2418.84033416856, - "2030-01-01": 2371.93934526922, - "2029-01-01": 2325.66370288854, - "2028-01-01": 2280.01340702652, - "2027-01-01": 2233.73776464584, - "2026-01-01": 2180.02049869313, - "2025-01-01": 2147.19710217298, - "2024-01-01": 2100.59836409099, - "2023-01-01": 1987, - "2015-01-01": 1987 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3179.27334545701, - "2034-01-01": 3117.70960149764, - "2033-01-01": 3056.90590376, - "2032-01-01": 2997.6222984658, - "2031-01-01": 2939.85878561504, - "2030-01-01": 2882.855318986, - "2029-01-01": 2826.61189857868, - "2028-01-01": 2771.12852439308, - "2027-01-01": 2714.88510398576, - "2026-01-01": 2649.59713353996, - "2025-01-01": 2609.70357410556, - "2024-01-01": 2553.06746315035, - "2023-01-01": 2415, - "2015-01-01": 2415 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 502.891270378706, - "2034-01-01": 493.153237172712, - "2033-01-01": 483.53542659889, - "2032-01-01": 474.158061289414, - "2031-01-01": 465.021141244283, - "2030-01-01": 456.004443831325, - "2029-01-01": 447.10796905054, - "2028-01-01": 438.331716901928, - "2027-01-01": 429.435242121143, - "2026-01-01": 419.108118017502, - "2025-01-01": 412.797832425806, - "2024-01-01": 403.839242618399, - "2023-01-01": 382, - "2015-01-01": 382 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 700.361664506471, - "2034-01-01": 686.799796271944, - "2033-01-01": 673.405358509449, - "2032-01-01": 660.345781691016, - "2031-01-01": 647.621065816646, - "2030-01-01": 635.063780414307, - "2029-01-01": 622.673925483998, - "2028-01-01": 610.451501025721, - "2027-01-01": 598.061646095413, - "2026-01-01": 583.679368547934, - "2025-01-01": 574.891222121804, - "2024-01-01": 562.414861447613, - "2023-01-01": 532, - "2015-01-01": 532 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 799.096861570353, - "2034-01-01": 783.62307582156, - "2033-01-01": 768.340324464728, - "2032-01-01": 753.439641891817, - "2031-01-01": 738.921028102827, - "2030-01-01": 724.593448705797, - "2029-01-01": 710.456903700727, - "2028-01-01": 696.511393087618, - "2027-01-01": 682.374848082549, - "2026-01-01": 665.96499381315, - "2025-01-01": 655.937916969802, - "2024-01-01": 641.70267086222, - "2023-01-01": 607, - "2015-01-01": 607 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 882.034427104014, - "2034-01-01": 864.954630643238, - "2033-01-01": 848.085695867163, - "2032-01-01": 831.63848446049, - "2031-01-01": 815.612996423219, - "2030-01-01": 799.798370070649, - "2029-01-01": 784.19460540278, - "2028-01-01": 768.801702419611, - "2027-01-01": 753.197937751742, - "2026-01-01": 735.084919035932, - "2025-01-01": 724.017140642121, - "2024-01-01": 708.30443077049, - "2023-01-01": 670, - "2015-01-01": 670 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 954.440238284194, - "2034-01-01": 935.958368979623, - "2033-01-01": 917.704670901035, - "2032-01-01": 899.907315274411, - "2031-01-01": 882.566302099752, - "2030-01-01": 865.453460151076, - "2029-01-01": 848.568789428381, - "2028-01-01": 831.912289931669, - "2027-01-01": 815.027619208975, - "2026-01-01": 795.427710897091, - "2025-01-01": 783.451383530653, - "2024-01-01": 766.448824341201, - "2023-01-01": 725, - "2015-01-01": 725 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1018.94723369926, - "2034-01-01": 999.216244952039, - "2033-01-01": 979.728848658484, - "2032-01-01": 960.728637272268, - "2031-01-01": 942.215610793391, - "2030-01-01": 923.946176768183, - "2029-01-01": 905.920335196644, - "2028-01-01": 888.138086078775, - "2027-01-01": 870.112244507237, - "2026-01-01": 849.187652737032, - "2025-01-01": 836.401890831346, - "2024-01-01": 818.250193158745, - "2023-01-01": 774, - "2015-01-01": 774 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1078.18835193759, - "2034-01-01": 1057.31021268181, - "2033-01-01": 1036.68982823165, - "2032-01-01": 1016.58495339275, - "2031-01-01": 996.995588165099, - "2030-01-01": 977.663977743077, - "2029-01-01": 958.590122126681, - "2028-01-01": 939.774021315913, - "2027-01-01": 920.700165699518, - "2026-01-01": 898.559027896162, - "2025-01-01": 885.029907740145, - "2024-01-01": 865.822878807509, - "2023-01-01": 819, - "2015-01-01": 819 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1132.16359299918, - "2034-01-01": 1110.24027216893, - "2033-01-01": 1088.58760962054, - "2032-01-01": 1067.47626363585, - "2031-01-01": 1046.90623421488, - "2030-01-01": 1026.60686307576, - "2029-01-01": 1006.57815021849, - "2028-01-01": 986.820095643083, - "2027-01-01": 966.791382785818, - "2026-01-01": 943.54183637448, - "2025-01-01": 929.335434257051, - "2024-01-01": 909.166881287494, - "2023-01-01": 860, - "2015-01-01": 860 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1182.18942617822, - "2034-01-01": 1159.29740047407, - "2033-01-01": 1136.68799237121, - "2032-01-01": 1114.64381947093, - "2031-01-01": 1093.16488177321, - "2030-01-01": 1071.96856167678, - "2029-01-01": 1051.05485918164, - "2028-01-01": 1030.42377428778, - "2027-01-01": 1009.51007179263, - "2026-01-01": 985.233219842189, - "2025-01-01": 970.399092980037, - "2024-01-01": 949.339371390895, - "2023-01-01": 898, - "2015-01-01": 898 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1249.32936018166, - "2034-01-01": 1225.13723056781, - "2033-01-01": 1201.2437692208, - "2032-01-01": 1177.94764440747, - "2031-01-01": 1155.24885612781, - "2030-01-01": 1132.84873611499, - "2029-01-01": 1110.74728436901, - "2028-01-01": 1088.94450088987, - "2027-01-01": 1066.84304914389, - "2026-01-01": 1041.18744502254, - "2025-01-01": 1025.51084547668, - "2024-01-01": 1003.25508179283, - "2023-01-01": 949, - "2015-01-01": 949 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1334.89986430369, - "2034-01-01": 1309.05073951081, - "2033-01-01": 1283.52073971538, - "2032-01-01": 1258.62898991483, - "2031-01-01": 1234.37549010917, - "2030-01-01": 1210.44111530095, - "2029-01-01": 1186.82586549018, - "2028-01-01": 1163.52974067684, - "2027-01-01": 1139.91449086607, - "2026-01-01": 1112.50165358572, - "2025-01-01": 1095.75131434494, - "2024-01-01": 1071.97118328549, - "2023-01-01": 1014, - "2015-01-01": 1014 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1413.88802195479, - "2034-01-01": 1386.5093631505, - "2033-01-01": 1359.4687124796, - "2032-01-01": 1333.10407807547, - "2031-01-01": 1307.41545993812, - "2030-01-01": 1282.06484993415, - "2029-01-01": 1257.05224806356, - "2028-01-01": 1232.37765432636, - "2027-01-01": 1207.36505245578, - "2026-01-01": 1178.3301537979, - "2025-01-01": 1160.58867022334, - "2024-01-01": 1135.40143081717, - "2023-01-01": 1074, - "2015-01-01": 1074 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1486.29383313497, - "2034-01-01": 1457.51310148689, - "2033-01-01": 1429.08768751347, - "2032-01-01": 1401.37290888939, - "2031-01-01": 1374.36876561465, - "2030-01-01": 1347.71994001457, - "2029-01-01": 1321.42643208916, - "2028-01-01": 1295.48824183842, - "2027-01-01": 1269.19473391301, - "2026-01-01": 1238.67294565906, - "2025-01-01": 1220.02291311187, - "2024-01-01": 1193.54582438788, - "2023-01-01": 1129, - "2015-01-01": 1129 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1553.43376713841, - "2034-01-01": 1523.35293158063, - "2033-01-01": 1493.64346436306, - "2032-01-01": 1464.67673382594, - "2031-01-01": 1436.45273996925, - "2030-01-01": 1408.60011445279, - "2029-01-01": 1381.11885727654, - "2028-01-01": 1354.00896844051, - "2027-01-01": 1326.52771126426, - "2026-01-01": 1294.6271708394, - "2025-01-01": 1275.13466560851, - "2024-01-01": 1247.46153478982, - "2023-01-01": 1180, - "2015-01-01": 1180 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1623.20663973022, - "2034-01-01": 1591.77471579569, - "2033-01-01": 1560.73084030479, - "2032-01-01": 1530.46306170117, - "2031-01-01": 1500.97137998482, - "2030-01-01": 1471.86774671211, - "2029-01-01": 1443.15216188303, - "2028-01-01": 1414.82462549758, - "2027-01-01": 1386.1090406685, - "2026-01-01": 1352.77567936016, - "2025-01-01": 1332.4076633011, - "2024-01-01": 1303.49158677614, - "2023-01-01": 1233, - "2015-01-01": 1233 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1696.92892020459, - "2034-01-01": 1664.06943119274, - "2033-01-01": 1631.61561488474, - "2032-01-01": 1599.97314398444, - "2031-01-01": 1569.14201849184, - "2030-01-01": 1538.71656570308, - "2029-01-01": 1508.69678561818, - "2028-01-01": 1479.08267823713, - "2027-01-01": 1449.06289815223, - "2026-01-01": 1414.21561289152, - "2025-01-01": 1392.9225287876, - "2024-01-01": 1362.69315113905, - "2023-01-01": 1289, - "2015-01-01": 1289 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1766.7017927964, - "2034-01-01": 1732.4912154078, - "2033-01-01": 1698.70299082647, - "2032-01-01": 1665.75947185967, - "2031-01-01": 1633.6606585074, - "2030-01-01": 1601.9841979624, - "2029-01-01": 1570.73009022467, - "2028-01-01": 1539.89833529421, - "2027-01-01": 1508.64422755647, - "2026-01-01": 1472.36412141227, - "2025-01-01": 1450.19552648019, - "2024-01-01": 1418.72320312537, - "2023-01-01": 1342, - "2015-01-01": 1342 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1832.52525750565, - "2034-01-01": 1797.04006844088, - "2033-01-01": 1761.99296812999, - "2032-01-01": 1727.82204532687, - "2031-01-01": 1694.52730003152, - "2030-01-01": 1661.67064349007, - "2029-01-01": 1629.25207570249, - "2028-01-01": 1597.2715966688, - "2027-01-01": 1564.85302888123, - "2026-01-01": 1527.22120492241, - "2025-01-01": 1504.22665637885, - "2024-01-01": 1471.58174273511, - "2023-01-01": 1392, - "2015-01-01": 1392 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2212.98488352515, - "2034-01-01": 2170.13243897206, - "2033-01-01": 2127.80903694433, - "2032-01-01": 2086.54371996729, - "2031-01-01": 2046.33648804094, - "2030-01-01": 2006.65829863994, - "2029-01-01": 1967.50915176429, - "2028-01-01": 1928.88904741398, - "2027-01-01": 1889.73990053833, - "2026-01-01": 1844.29514761105, - "2025-01-01": 1816.52658719314, - "2024-01-01": 1777.10410167939, - "2023-01-01": 1681, - "2015-01-01": 1681 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 563.448857911221, - "2034-01-01": 552.538181963143, - "2033-01-01": 541.762205718128, - "2032-01-01": 531.255628879238, - "2031-01-01": 521.018451446474, - "2030-01-01": 510.915973716773, - "2029-01-01": 500.948195690134, - "2028-01-01": 491.115117366558, - "2027-01-01": 481.147339339919, - "2026-01-01": 469.576634846834, - "2025-01-01": 462.506471932579, - "2024-01-01": 452.469099059357, - "2023-01-01": 428, - "2015-01-01": 428 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 783.299230040132, - "2034-01-01": 768.131351093622, - "2033-01-01": 753.150729911884, - "2032-01-01": 738.544624259689, - "2031-01-01": 724.313034137038, - "2030-01-01": 710.268701779159, - "2029-01-01": 696.411627186051, - "2028-01-01": 682.741810357715, - "2027-01-01": 668.884735764607, - "2026-01-01": 652.799293770716, - "2025-01-01": 642.970445794123, - "2024-01-01": 629.016621355882, - "2023-01-01": 595, - "2015-01-01": 595 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 892.566181457495, - "2034-01-01": 875.28244712853, - "2033-01-01": 858.212092235726, - "2032-01-01": 841.568496215242, - "2031-01-01": 825.351659067079, - "2030-01-01": 809.348201355075, - "2029-01-01": 793.558123079231, - "2028-01-01": 777.981424239547, - "2027-01-01": 762.191345963703, - "2026-01-01": 743.862052397555, - "2025-01-01": 732.662121425908, - "2024-01-01": 716.761797108048, - "2023-01-01": 678, - "2015-01-01": 678 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 984.719032050451, - "2034-01-01": 965.650841374839, - "2033-01-01": 946.818060460654, - "2032-01-01": 928.456099069323, - "2031-01-01": 910.564957200848, - "2030-01-01": 892.909225093799, - "2029-01-01": 875.488902748178, - "2028-01-01": 858.303990163984, - "2027-01-01": 840.883667818363, - "2026-01-01": 820.661969311757, - "2025-01-01": 808.30570328404, - "2024-01-01": 790.763752561681, - "2023-01-01": 748, - "2015-01-01": 748 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1066.34012828993, - "2034-01-01": 1045.69141913585, - "2033-01-01": 1025.29763231702, - "2032-01-01": 1005.41369016865, - "2031-01-01": 986.039592690758, - "2030-01-01": 966.920417548098, - "2029-01-01": 948.056164740674, - "2028-01-01": 929.446834268485, - "2027-01-01": 910.582581461062, - "2026-01-01": 888.684752864336, - "2025-01-01": 875.304304358385, - "2024-01-01": 856.308341677756, - "2023-01-01": 810, - "2015-01-01": 810 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1137.42947017592, - "2034-01-01": 1115.40418041158, - "2033-01-01": 1093.65080780482, - "2032-01-01": 1072.44126951323, - "2031-01-01": 1051.77556553681, - "2030-01-01": 1031.38177871797, - "2029-01-01": 1011.25990905672, - "2028-01-01": 991.409956553051, - "2027-01-01": 971.288086891799, - "2026-01-01": 947.930403055291, - "2025-01-01": 933.657924648944, - "2024-01-01": 913.395564456273, - "2023-01-01": 864, - "2015-01-01": 864 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1203.25293488518, - "2034-01-01": 1179.95303344466, - "2033-01-01": 1156.94078510834, - "2032-01-01": 1134.50384298043, - "2031-01-01": 1112.64220706093, - "2030-01-01": 1091.06822424563, - "2029-01-01": 1069.78189453454, - "2028-01-01": 1048.78321792765, - "2027-01-01": 1027.49688821656, - "2026-01-01": 1002.78748656544, - "2025-01-01": 987.68905454761, - "2024-01-01": 966.254104066011, - "2023-01-01": 914, - "2015-01-01": 914 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1263.81052241769, - "2034-01-01": 1239.33797823509, - "2033-01-01": 1215.16756422758, - "2032-01-01": 1191.60141057025, - "2031-01-01": 1168.63951726312, - "2030-01-01": 1145.97975413108, - "2029-01-01": 1123.62212117413, - "2028-01-01": 1101.56661839228, - "2027-01-01": 1079.20898543533, - "2026-01-01": 1053.25600339477, - "2025-01-01": 1037.39769405438, - "2024-01-01": 1014.88396050697, - "2023-01-01": 960, - "2015-01-01": 960 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1319.10223277347, - "2034-01-01": 1293.55901478287, - "2033-01-01": 1268.33114516253, - "2032-01-01": 1243.7339722827, - "2031-01-01": 1219.76749614338, - "2030-01-01": 1196.11636837431, - "2029-01-01": 1172.7805889755, - "2028-01-01": 1149.76015794694, - "2027-01-01": 1126.42437854813, - "2026-01-01": 1099.33595354329, - "2025-01-01": 1082.78384316926, - "2024-01-01": 1059.28513377915, - "2023-01-01": 1002, - "2015-01-01": 1002 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1392.82451324783, - "2034-01-01": 1365.85373017992, - "2033-01-01": 1339.21591974248, - "2032-01-01": 1313.24405456597, - "2031-01-01": 1287.9381346504, - "2030-01-01": 1262.96518736529, - "2029-01-01": 1238.32521271066, - "2028-01-01": 1214.01821068649, - "2027-01-01": 1189.37823603186, - "2026-01-01": 1160.77588707465, - "2025-01-01": 1143.29870865577, - "2024-01-01": 1118.48669814206, - "2023-01-01": 1058, - "2015-01-01": 1058 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1488.92677172334, - "2034-01-01": 1460.09505560821, - "2033-01-01": 1431.61928660561, - "2032-01-01": 1403.85541182808, - "2031-01-01": 1376.80343127561, - "2030-01-01": 1350.10739783568, - "2029-01-01": 1323.76731150827, - "2028-01-01": 1297.7831722934, - "2027-01-01": 1271.443085966, - "2026-01-01": 1240.86722899946, - "2025-01-01": 1222.18415830782, - "2024-01-01": 1195.66016597227, - "2023-01-01": 1131, - "2015-01-01": 1131 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1575.81374513956, - "2034-01-01": 1545.29954161187, - "2033-01-01": 1515.16205664626, - "2032-01-01": 1485.77800880479, - "2031-01-01": 1457.14739808745, - "2030-01-01": 1428.89350593219, - "2029-01-01": 1401.016332339, - "2028-01-01": 1373.51587730787, - "2027-01-01": 1345.63870371468, - "2026-01-01": 1313.27857923285, - "2025-01-01": 1293.50524977406, - "2024-01-01": 1265.43343825713, - "2023-01-01": 1197, - "2015-01-01": 1197 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1656.11837208485, - "2034-01-01": 1624.04914231223, - "2033-01-01": 1592.37582895655, - "2032-01-01": 1561.49434843477, - "2031-01-01": 1531.40470074688, - "2030-01-01": 1501.71096947594, - "2029-01-01": 1472.41315462194, - "2028-01-01": 1443.51125618488, - "2027-01-01": 1414.21344133088, - "2026-01-01": 1380.20422111523, - "2025-01-01": 1359.42322825043, - "2024-01-01": 1329.92085658101, - "2023-01-01": 1258, - "2015-01-01": 1258 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1731.1571218534, - "2034-01-01": 1697.63483476994, - "2033-01-01": 1664.52640308257, - "2032-01-01": 1632.24568218738, - "2031-01-01": 1600.79267208438, - "2030-01-01": 1569.75351737747, - "2029-01-01": 1539.12821806665, - "2028-01-01": 1508.91677415192, - "2027-01-01": 1478.29147484111, - "2026-01-01": 1442.74129631679, - "2025-01-01": 1421.01871633491, - "2024-01-01": 1390.17959173611, - "2023-01-01": 1315, - "2015-01-01": 1315 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1807.51234091614, - "2034-01-01": 1772.51150428831, - "2033-01-01": 1737.94277675465, - "2032-01-01": 1704.23826740933, - "2031-01-01": 1671.39797625236, - "2030-01-01": 1638.98979418955, - "2029-01-01": 1607.01372122092, - "2028-01-01": 1575.46975734646, - "2027-01-01": 1543.49368437782, - "2026-01-01": 1506.37551318856, - "2025-01-01": 1483.69482701736, - "2024-01-01": 1451.49549768341, - "2023-01-01": 1373, - "2015-01-01": 1373 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1890.4499064498, - "2034-01-01": 1853.84305910998, - "2033-01-01": 1817.68814815708, - "2032-01-01": 1782.43710997801, - "2031-01-01": 1748.08994457275, - "2030-01-01": 1714.19471555441, - "2029-01-01": 1680.75142292297, - "2028-01-01": 1647.76006667845, - "2027-01-01": 1614.31677404702, - "2026-01-01": 1575.49543841134, - "2025-01-01": 1551.77405068968, - "2024-01-01": 1518.09725759168, - "2023-01-01": 1436, - "2015-01-01": 1436 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1966.80512551253, - "2034-01-01": 1928.71972862835, - "2033-01-01": 1891.10452182917, - "2032-01-01": 1854.42969519996, - "2031-01-01": 1818.69524874073, - "2030-01-01": 1783.43099236649, - "2029-01-01": 1748.63692607724, - "2028-01-01": 1714.31304987298, - "2027-01-01": 1679.51898358374, - "2026-01-01": 1639.12965528311, - "2025-01-01": 1614.45016137213, - "2024-01-01": 1579.41316353897, - "2023-01-01": 1494, - "2015-01-01": 1494 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2040.5274059869, - "2034-01-01": 2001.0144440254, - "2033-01-01": 1961.98929640911, - "2032-01-01": 1923.93977748322, - "2031-01-01": 1886.86588724775, - "2030-01-01": 1850.27981135747, - "2029-01-01": 1814.1815498124, - "2028-01-01": 1778.57110261253, - "2027-01-01": 1742.47284106746, - "2026-01-01": 1700.56958881447, - "2025-01-01": 1674.96502685864, - "2024-01-01": 1638.61472790188, - "2023-01-01": 1550, - "2015-01-01": 1550 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2463.11404942031, - "2034-01-01": 2415.41808049776, - "2033-01-01": 2368.3109506977, - "2032-01-01": 2322.38149914265, - "2031-01-01": 2277.6297258326, - "2030-01-01": 2233.46679164505, - "2029-01-01": 2189.89269658, - "2028-01-01": 2146.90744063745, - "2027-01-01": 2103.3333455724, - "2026-01-01": 2052.7520649496, - "2025-01-01": 2021.84488080807, - "2024-01-01": 1977.9665521964, - "2023-01-01": 1871, - "2015-01-01": 1871 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 602.942936736774, - "2034-01-01": 591.26749378299, - "2033-01-01": 579.73619210024, - "2032-01-01": 568.493172959559, - "2031-01-01": 557.538436360947, - "2030-01-01": 546.727841033369, - "2029-01-01": 536.061386976826, - "2028-01-01": 525.539074191316, - "2027-01-01": 514.872620134773, - "2026-01-01": 502.490884952921, - "2025-01-01": 494.925149871778, - "2024-01-01": 484.1842228252, - "2023-01-01": 458, - "2015-01-01": 458 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 835.958001807536, - "2034-01-01": 819.770433520084, - "2033-01-01": 803.782711754699, - "2032-01-01": 788.19468303345, - "2031-01-01": 773.006347356335, - "2030-01-01": 758.017858201287, - "2029-01-01": 743.229215568306, - "2028-01-01": 728.640419457393, - "2027-01-01": 713.851776824413, - "2026-01-01": 696.684960578831, - "2025-01-01": 686.195349713055, - "2024-01-01": 671.303453043673, - "2023-01-01": 635, - "2015-01-01": 635 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 953.123768990009, - "2034-01-01": 934.667391918962, - "2033-01-01": 916.438871354964, - "2032-01-01": 898.666063805067, - "2031-01-01": 881.34896926927, - "2030-01-01": 864.259731240522, - "2029-01-01": 847.398349718825, - "2028-01-01": 830.764824704177, - "2027-01-01": 813.90344318248, - "2026-01-01": 794.330569226888, - "2025-01-01": 782.37076093268, - "2024-01-01": 765.391653549007, - "2023-01-01": 724, - "2015-01-01": 724 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1050.54249675971, - "2034-01-01": 1030.19969440792, - "2033-01-01": 1010.10803776417, - "2032-01-01": 990.518672536524, - "2031-01-01": 971.431598724969, - "2030-01-01": 952.59567062146, - "2029-01-01": 934.010888225997, - "2028-01-01": 915.677251538582, - "2027-01-01": 897.09246914312, - "2026-01-01": 875.519052821901, - "2025-01-01": 862.336833182705, - "2024-01-01": 843.622292171419, - "2023-01-01": 798, - "2015-01-01": 798 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1137.42947017592, - "2034-01-01": 1115.40418041158, - "2033-01-01": 1093.65080780482, - "2032-01-01": 1072.44126951323, - "2031-01-01": 1051.77556553681, - "2030-01-01": 1031.38177871797, - "2029-01-01": 1011.25990905672, - "2028-01-01": 991.409956553051, - "2027-01-01": 971.288086891799, - "2026-01-01": 947.930403055291, - "2025-01-01": 933.657924648944, - "2024-01-01": 913.395564456273, - "2023-01-01": 864, - "2015-01-01": 864 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1213.78468923866, - "2034-01-01": 1190.28084992995, - "2033-01-01": 1167.0671814769, - "2032-01-01": 1144.43385473518, - "2031-01-01": 1122.38086970479, - "2030-01-01": 1100.61805553006, - "2029-01-01": 1079.14541221099, - "2028-01-01": 1057.96293974758, - "2027-01-01": 1036.49029642852, - "2026-01-01": 1011.56461992706, - "2025-01-01": 996.334035331397, - "2024-01-01": 974.711470403569, - "2023-01-01": 922, - "2015-01-01": 922 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1283.55756183047, - "2034-01-01": 1258.70263414501, - "2033-01-01": 1234.15455741863, - "2032-01-01": 1210.22018261041, - "2031-01-01": 1186.89950972036, - "2030-01-01": 1163.88568778938, - "2029-01-01": 1141.17871681748, - "2028-01-01": 1118.77859680466, - "2027-01-01": 1096.07162583276, - "2026-01-01": 1069.71312844781, - "2025-01-01": 1053.60703302398, - "2024-01-01": 1030.74152238989, - "2023-01-01": 975, - "2015-01-01": 975 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1346.74808795135, - "2034-01-01": 1320.66953305676, - "2033-01-01": 1294.91293563001, - "2032-01-01": 1269.80025313893, - "2031-01-01": 1245.33148558351, - "2030-01-01": 1221.18467549593, - "2029-01-01": 1197.35982287618, - "2028-01-01": 1173.85692772427, - "2027-01-01": 1150.03207510453, - "2026-01-01": 1122.37592861755, - "2025-01-01": 1105.4769177267, - "2024-01-01": 1081.48572041524, - "2023-01-01": 1023, - "2015-01-01": 1023 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1407.30567548387, - "2034-01-01": 1380.0544778472, - "2033-01-01": 1353.13971474925, - "2032-01-01": 1326.89782072875, - "2031-01-01": 1301.3287957857, - "2030-01-01": 1276.09620538138, - "2029-01-01": 1251.20004951578, - "2028-01-01": 1226.6403281889, - "2027-01-01": 1201.7441723233, - "2026-01-01": 1172.84444544688, - "2025-01-01": 1155.18555723347, - "2024-01-01": 1130.1155768562, - "2023-01-01": 1069, - "2015-01-01": 1069 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1484.97736384079, - "2034-01-01": 1456.22212442623, - "2033-01-01": 1427.8218879674, - "2032-01-01": 1400.13165742005, - "2031-01-01": 1373.15143278417, - "2030-01-01": 1346.52621110402, - "2029-01-01": 1320.25599237961, - "2028-01-01": 1294.34077661093, - "2027-01-01": 1268.07055788652, - "2026-01-01": 1237.57580398885, - "2025-01-01": 1218.9422905139, - "2024-01-01": 1192.48865359569, - "2023-01-01": 1128, - "2015-01-01": 1128 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1586.34549949304, - "2034-01-01": 1555.62735809717, - "2033-01-01": 1525.28845301482, - "2032-01-01": 1495.70802055954, - "2031-01-01": 1466.88606073131, - "2030-01-01": 1438.44333721662, - "2029-01-01": 1410.37985001545, - "2028-01-01": 1382.69559912781, - "2027-01-01": 1354.63211192664, - "2026-01-01": 1322.05571259447, - "2025-01-01": 1302.15023055784, - "2024-01-01": 1273.89080459469, - "2023-01-01": 1205, - "2015-01-01": 1205 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1679.81481938018, - "2034-01-01": 1647.28672940414, - "2033-01-01": 1615.16022078582, - "2032-01-01": 1583.83687488296, - "2031-01-01": 1553.31669169556, - "2030-01-01": 1523.19808986589, - "2029-01-01": 1493.48106939395, - "2028-01-01": 1464.16563027974, - "2027-01-01": 1434.4486098078, - "2026-01-01": 1399.95277117888, - "2025-01-01": 1378.87443501395, - "2024-01-01": 1348.94993084051, - "2023-01-01": 1276, - "2015-01-01": 1276 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1764.06885420803, - "2034-01-01": 1729.90926128648, - "2033-01-01": 1696.17139173433, - "2032-01-01": 1663.27696892098, - "2031-01-01": 1631.22599284644, - "2030-01-01": 1599.5967401413, - "2029-01-01": 1568.38921080556, - "2028-01-01": 1537.60340483922, - "2027-01-01": 1506.39587550348, - "2026-01-01": 1470.16983807186, - "2025-01-01": 1448.03428128424, - "2024-01-01": 1416.60886154098, - "2023-01-01": 1340, - "2015-01-01": 1340 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1844.37348115332, - "2034-01-01": 1808.65886198683, - "2033-01-01": 1773.38516404462, - "2032-01-01": 1738.99330855097, - "2031-01-01": 1705.48329550587, - "2030-01-01": 1672.41420368504, - "2029-01-01": 1639.7860330885, - "2028-01-01": 1607.59878371623, - "2027-01-01": 1574.97061311969, - "2026-01-01": 1537.09547995424, - "2025-01-01": 1513.95225976061, - "2024-01-01": 1481.09627986486, - "2023-01-01": 1401, - "2015-01-01": 1401 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1925.99457739279, - "2034-01-01": 1888.69943974785, - "2033-01-01": 1851.86473590098, - "2032-01-01": 1815.95089965029, - "2031-01-01": 1780.95793099578, - "2030-01-01": 1746.42539613934, - "2029-01-01": 1712.35329508099, - "2028-01-01": 1678.74162782073, - "2027-01-01": 1644.66952676239, - "2026-01-01": 1605.11826350682, - "2025-01-01": 1580.95086083496, - "2024-01-01": 1546.64086898093, - "2023-01-01": 1463, - "2015-01-01": 1463 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2014.1980201032, - "2034-01-01": 1975.19490281217, - "2033-01-01": 1936.6733054877, - "2032-01-01": 1899.11474809634, - "2031-01-01": 1862.5192306381, - "2030-01-01": 1826.40523314641, - "2029-01-01": 1790.77275562127, - "2028-01-01": 1755.62179806269, - "2027-01-01": 1719.98932053756, - "2026-01-01": 1678.62675541041, - "2025-01-01": 1653.35257489917, - "2024-01-01": 1617.47131205798, - "2023-01-01": 1530, - "2015-01-01": 1530 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2095.81911634267, - "2034-01-01": 2055.23548057319, - "2033-01-01": 2015.15287734407, - "2032-01-01": 1976.07233919567, - "2031-01-01": 1937.99386612801, - "2030-01-01": 1900.41642560071, - "2029-01-01": 1863.34001761377, - "2028-01-01": 1826.7646421672, - "2027-01-01": 1789.68823418026, - "2026-01-01": 1746.64953896299, - "2025-01-01": 1720.35117597352, - "2024-01-01": 1683.01590117406, - "2023-01-01": 1592, - "2015-01-01": 1592 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2173.49080469959, - "2034-01-01": 2131.40312715222, - "2033-01-01": 2089.83505056222, - "2032-01-01": 2049.30617588697, - "2031-01-01": 2009.81650312647, - "2030-01-01": 1970.84643132335, - "2029-01-01": 1932.3959604776, - "2028-01-01": 1894.46509058922, - "2027-01-01": 1856.01461974347, - "2026-01-01": 1811.38089750496, - "2025-01-01": 1784.10790925394, - "2024-01-01": 1745.38897791355, - "2023-01-01": 1651, - "2015-01-01": 1651 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MA.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2622.40683401671, - "2034-01-01": 2571.62630483781, - "2033-01-01": 2521.47269577222, - "2032-01-01": 2472.57292693328, - "2031-01-01": 2424.92699832097, - "2030-01-01": 2377.90798982199, - "2029-01-01": 2331.51590143632, - "2028-01-01": 2285.75073316398, - "2027-01-01": 2239.35864477831, - "2026-01-01": 2185.50620704414, - "2025-01-01": 2152.60021516284, - "2024-01-01": 2105.88421805196, - "2023-01-01": 1992, - "2015-01-01": 1992 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI", - "description": null, - "label": "MI", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 502.891270378706, - "2034-01-01": 493.153237172712, - "2033-01-01": 483.53542659889, - "2032-01-01": 474.158061289414, - "2031-01-01": 465.021141244283, - "2030-01-01": 456.004443831325, - "2029-01-01": 447.10796905054, - "2028-01-01": 438.331716901928, - "2027-01-01": 429.435242121143, - "2026-01-01": 419.108118017502, - "2025-01-01": 412.797832425806, - "2024-01-01": 403.839242618399, - "2023-01-01": 382, - "2015-01-01": 382 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 700.361664506471, - "2034-01-01": 686.799796271944, - "2033-01-01": 673.405358509449, - "2032-01-01": 660.345781691016, - "2031-01-01": 647.621065816646, - "2030-01-01": 635.063780414307, - "2029-01-01": 622.673925483998, - "2028-01-01": 610.451501025721, - "2027-01-01": 598.061646095413, - "2026-01-01": 583.679368547934, - "2025-01-01": 574.891222121804, - "2024-01-01": 562.414861447613, - "2023-01-01": 532, - "2015-01-01": 532 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 799.096861570353, - "2034-01-01": 783.62307582156, - "2033-01-01": 768.340324464728, - "2032-01-01": 753.439641891817, - "2031-01-01": 738.921028102827, - "2030-01-01": 724.593448705797, - "2029-01-01": 710.456903700727, - "2028-01-01": 696.511393087618, - "2027-01-01": 682.374848082549, - "2026-01-01": 665.96499381315, - "2025-01-01": 655.937916969802, - "2024-01-01": 641.70267086222, - "2023-01-01": 607, - "2015-01-01": 607 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 882.034427104014, - "2034-01-01": 864.954630643238, - "2033-01-01": 848.085695867163, - "2032-01-01": 831.63848446049, - "2031-01-01": 815.612996423219, - "2030-01-01": 799.798370070649, - "2029-01-01": 784.19460540278, - "2028-01-01": 768.801702419611, - "2027-01-01": 753.197937751742, - "2026-01-01": 735.084919035932, - "2025-01-01": 724.017140642121, - "2024-01-01": 708.30443077049, - "2023-01-01": 670, - "2015-01-01": 670 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 954.440238284194, - "2034-01-01": 935.958368979623, - "2033-01-01": 917.704670901035, - "2032-01-01": 899.907315274411, - "2031-01-01": 882.566302099752, - "2030-01-01": 865.453460151076, - "2029-01-01": 848.568789428381, - "2028-01-01": 831.912289931669, - "2027-01-01": 815.027619208975, - "2026-01-01": 795.427710897091, - "2025-01-01": 783.451383530653, - "2024-01-01": 766.448824341201, - "2023-01-01": 725, - "2015-01-01": 725 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1018.94723369926, - "2034-01-01": 999.216244952039, - "2033-01-01": 979.728848658484, - "2032-01-01": 960.728637272268, - "2031-01-01": 942.215610793391, - "2030-01-01": 923.946176768183, - "2029-01-01": 905.920335196644, - "2028-01-01": 888.138086078775, - "2027-01-01": 870.112244507237, - "2026-01-01": 849.187652737032, - "2025-01-01": 836.401890831346, - "2024-01-01": 818.250193158745, - "2023-01-01": 774, - "2015-01-01": 774 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1078.18835193759, - "2034-01-01": 1057.31021268181, - "2033-01-01": 1036.68982823165, - "2032-01-01": 1016.58495339275, - "2031-01-01": 996.995588165099, - "2030-01-01": 977.663977743077, - "2029-01-01": 958.590122126681, - "2028-01-01": 939.774021315913, - "2027-01-01": 920.700165699518, - "2026-01-01": 898.559027896162, - "2025-01-01": 885.029907740145, - "2024-01-01": 865.822878807509, - "2023-01-01": 819, - "2015-01-01": 819 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1132.16359299918, - "2034-01-01": 1110.24027216893, - "2033-01-01": 1088.58760962054, - "2032-01-01": 1067.47626363585, - "2031-01-01": 1046.90623421488, - "2030-01-01": 1026.60686307576, - "2029-01-01": 1006.57815021849, - "2028-01-01": 986.820095643083, - "2027-01-01": 966.791382785818, - "2026-01-01": 943.54183637448, - "2025-01-01": 929.335434257051, - "2024-01-01": 909.166881287494, - "2023-01-01": 860, - "2015-01-01": 860 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1182.18942617822, - "2034-01-01": 1159.29740047407, - "2033-01-01": 1136.68799237121, - "2032-01-01": 1114.64381947093, - "2031-01-01": 1093.16488177321, - "2030-01-01": 1071.96856167678, - "2029-01-01": 1051.05485918164, - "2028-01-01": 1030.42377428778, - "2027-01-01": 1009.51007179263, - "2026-01-01": 985.233219842189, - "2025-01-01": 970.399092980037, - "2024-01-01": 949.339371390895, - "2023-01-01": 898, - "2015-01-01": 898 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1249.32936018166, - "2034-01-01": 1225.13723056781, - "2033-01-01": 1201.2437692208, - "2032-01-01": 1177.94764440747, - "2031-01-01": 1155.24885612781, - "2030-01-01": 1132.84873611499, - "2029-01-01": 1110.74728436901, - "2028-01-01": 1088.94450088987, - "2027-01-01": 1066.84304914389, - "2026-01-01": 1041.18744502254, - "2025-01-01": 1025.51084547668, - "2024-01-01": 1003.25508179283, - "2023-01-01": 949, - "2015-01-01": 949 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1334.89986430369, - "2034-01-01": 1309.05073951081, - "2033-01-01": 1283.52073971538, - "2032-01-01": 1258.62898991483, - "2031-01-01": 1234.37549010917, - "2030-01-01": 1210.44111530095, - "2029-01-01": 1186.82586549018, - "2028-01-01": 1163.52974067684, - "2027-01-01": 1139.91449086607, - "2026-01-01": 1112.50165358572, - "2025-01-01": 1095.75131434494, - "2024-01-01": 1071.97118328549, - "2023-01-01": 1014, - "2015-01-01": 1014 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1413.88802195479, - "2034-01-01": 1386.5093631505, - "2033-01-01": 1359.4687124796, - "2032-01-01": 1333.10407807547, - "2031-01-01": 1307.41545993812, - "2030-01-01": 1282.06484993415, - "2029-01-01": 1257.05224806356, - "2028-01-01": 1232.37765432636, - "2027-01-01": 1207.36505245578, - "2026-01-01": 1178.3301537979, - "2025-01-01": 1160.58867022334, - "2024-01-01": 1135.40143081717, - "2023-01-01": 1074, - "2015-01-01": 1074 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1486.29383313497, - "2034-01-01": 1457.51310148689, - "2033-01-01": 1429.08768751347, - "2032-01-01": 1401.37290888939, - "2031-01-01": 1374.36876561465, - "2030-01-01": 1347.71994001457, - "2029-01-01": 1321.42643208916, - "2028-01-01": 1295.48824183842, - "2027-01-01": 1269.19473391301, - "2026-01-01": 1238.67294565906, - "2025-01-01": 1220.02291311187, - "2024-01-01": 1193.54582438788, - "2023-01-01": 1129, - "2015-01-01": 1129 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1553.43376713841, - "2034-01-01": 1523.35293158063, - "2033-01-01": 1493.64346436306, - "2032-01-01": 1464.67673382594, - "2031-01-01": 1436.45273996925, - "2030-01-01": 1408.60011445279, - "2029-01-01": 1381.11885727654, - "2028-01-01": 1354.00896844051, - "2027-01-01": 1326.52771126426, - "2026-01-01": 1294.6271708394, - "2025-01-01": 1275.13466560851, - "2024-01-01": 1247.46153478982, - "2023-01-01": 1180, - "2015-01-01": 1180 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1623.20663973022, - "2034-01-01": 1591.77471579569, - "2033-01-01": 1560.73084030479, - "2032-01-01": 1530.46306170117, - "2031-01-01": 1500.97137998482, - "2030-01-01": 1471.86774671211, - "2029-01-01": 1443.15216188303, - "2028-01-01": 1414.82462549758, - "2027-01-01": 1386.1090406685, - "2026-01-01": 1352.77567936016, - "2025-01-01": 1332.4076633011, - "2024-01-01": 1303.49158677614, - "2023-01-01": 1233, - "2015-01-01": 1233 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1696.92892020459, - "2034-01-01": 1664.06943119274, - "2033-01-01": 1631.61561488474, - "2032-01-01": 1599.97314398444, - "2031-01-01": 1569.14201849184, - "2030-01-01": 1538.71656570308, - "2029-01-01": 1508.69678561818, - "2028-01-01": 1479.08267823713, - "2027-01-01": 1449.06289815223, - "2026-01-01": 1414.21561289152, - "2025-01-01": 1392.9225287876, - "2024-01-01": 1362.69315113905, - "2023-01-01": 1289, - "2015-01-01": 1289 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1766.7017927964, - "2034-01-01": 1732.4912154078, - "2033-01-01": 1698.70299082647, - "2032-01-01": 1665.75947185967, - "2031-01-01": 1633.6606585074, - "2030-01-01": 1601.9841979624, - "2029-01-01": 1570.73009022467, - "2028-01-01": 1539.89833529421, - "2027-01-01": 1508.64422755647, - "2026-01-01": 1472.36412141227, - "2025-01-01": 1450.19552648019, - "2024-01-01": 1418.72320312537, - "2023-01-01": 1342, - "2015-01-01": 1342 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1832.52525750565, - "2034-01-01": 1797.04006844088, - "2033-01-01": 1761.99296812999, - "2032-01-01": 1727.82204532687, - "2031-01-01": 1694.52730003152, - "2030-01-01": 1661.67064349007, - "2029-01-01": 1629.25207570249, - "2028-01-01": 1597.2715966688, - "2027-01-01": 1564.85302888123, - "2026-01-01": 1527.22120492241, - "2025-01-01": 1504.22665637885, - "2024-01-01": 1471.58174273511, - "2023-01-01": 1392, - "2015-01-01": 1392 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2212.98488352515, - "2034-01-01": 2170.13243897206, - "2033-01-01": 2127.80903694433, - "2032-01-01": 2086.54371996729, - "2031-01-01": 2046.33648804094, - "2030-01-01": 2006.65829863994, - "2029-01-01": 1967.50915176429, - "2028-01-01": 1928.88904741398, - "2027-01-01": 1889.73990053833, - "2026-01-01": 1844.29514761105, - "2025-01-01": 1816.52658719314, - "2024-01-01": 1777.10410167939, - "2023-01-01": 1681, - "2015-01-01": 1681 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 563.448857911221, - "2034-01-01": 552.538181963143, - "2033-01-01": 541.762205718128, - "2032-01-01": 531.255628879238, - "2031-01-01": 521.018451446474, - "2030-01-01": 510.915973716773, - "2029-01-01": 500.948195690134, - "2028-01-01": 491.115117366558, - "2027-01-01": 481.147339339919, - "2026-01-01": 469.576634846834, - "2025-01-01": 462.506471932579, - "2024-01-01": 452.469099059357, - "2023-01-01": 428, - "2015-01-01": 428 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 783.299230040132, - "2034-01-01": 768.131351093622, - "2033-01-01": 753.150729911884, - "2032-01-01": 738.544624259689, - "2031-01-01": 724.313034137038, - "2030-01-01": 710.268701779159, - "2029-01-01": 696.411627186051, - "2028-01-01": 682.741810357715, - "2027-01-01": 668.884735764607, - "2026-01-01": 652.799293770716, - "2025-01-01": 642.970445794123, - "2024-01-01": 629.016621355882, - "2023-01-01": 595, - "2015-01-01": 595 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 892.566181457495, - "2034-01-01": 875.28244712853, - "2033-01-01": 858.212092235726, - "2032-01-01": 841.568496215242, - "2031-01-01": 825.351659067079, - "2030-01-01": 809.348201355075, - "2029-01-01": 793.558123079231, - "2028-01-01": 777.981424239547, - "2027-01-01": 762.191345963703, - "2026-01-01": 743.862052397555, - "2025-01-01": 732.662121425908, - "2024-01-01": 716.761797108048, - "2023-01-01": 678, - "2015-01-01": 678 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 984.719032050451, - "2034-01-01": 965.650841374839, - "2033-01-01": 946.818060460654, - "2032-01-01": 928.456099069323, - "2031-01-01": 910.564957200848, - "2030-01-01": 892.909225093799, - "2029-01-01": 875.488902748178, - "2028-01-01": 858.303990163984, - "2027-01-01": 840.883667818363, - "2026-01-01": 820.661969311757, - "2025-01-01": 808.30570328404, - "2024-01-01": 790.763752561681, - "2023-01-01": 748, - "2015-01-01": 748 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1066.34012828993, - "2034-01-01": 1045.69141913585, - "2033-01-01": 1025.29763231702, - "2032-01-01": 1005.41369016865, - "2031-01-01": 986.039592690758, - "2030-01-01": 966.920417548098, - "2029-01-01": 948.056164740674, - "2028-01-01": 929.446834268485, - "2027-01-01": 910.582581461062, - "2026-01-01": 888.684752864336, - "2025-01-01": 875.304304358385, - "2024-01-01": 856.308341677756, - "2023-01-01": 810, - "2015-01-01": 810 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1137.42947017592, - "2034-01-01": 1115.40418041158, - "2033-01-01": 1093.65080780482, - "2032-01-01": 1072.44126951323, - "2031-01-01": 1051.77556553681, - "2030-01-01": 1031.38177871797, - "2029-01-01": 1011.25990905672, - "2028-01-01": 991.409956553051, - "2027-01-01": 971.288086891799, - "2026-01-01": 947.930403055291, - "2025-01-01": 933.657924648944, - "2024-01-01": 913.395564456273, - "2023-01-01": 864, - "2015-01-01": 864 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1203.25293488518, - "2034-01-01": 1179.95303344466, - "2033-01-01": 1156.94078510834, - "2032-01-01": 1134.50384298043, - "2031-01-01": 1112.64220706093, - "2030-01-01": 1091.06822424563, - "2029-01-01": 1069.78189453454, - "2028-01-01": 1048.78321792765, - "2027-01-01": 1027.49688821656, - "2026-01-01": 1002.78748656544, - "2025-01-01": 987.68905454761, - "2024-01-01": 966.254104066011, - "2023-01-01": 914, - "2015-01-01": 914 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1263.81052241769, - "2034-01-01": 1239.33797823509, - "2033-01-01": 1215.16756422758, - "2032-01-01": 1191.60141057025, - "2031-01-01": 1168.63951726312, - "2030-01-01": 1145.97975413108, - "2029-01-01": 1123.62212117413, - "2028-01-01": 1101.56661839228, - "2027-01-01": 1079.20898543533, - "2026-01-01": 1053.25600339477, - "2025-01-01": 1037.39769405438, - "2024-01-01": 1014.88396050697, - "2023-01-01": 960, - "2015-01-01": 960 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1319.10223277347, - "2034-01-01": 1293.55901478287, - "2033-01-01": 1268.33114516253, - "2032-01-01": 1243.7339722827, - "2031-01-01": 1219.76749614338, - "2030-01-01": 1196.11636837431, - "2029-01-01": 1172.7805889755, - "2028-01-01": 1149.76015794694, - "2027-01-01": 1126.42437854813, - "2026-01-01": 1099.33595354329, - "2025-01-01": 1082.78384316926, - "2024-01-01": 1059.28513377915, - "2023-01-01": 1002, - "2015-01-01": 1002 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1392.82451324783, - "2034-01-01": 1365.85373017992, - "2033-01-01": 1339.21591974248, - "2032-01-01": 1313.24405456597, - "2031-01-01": 1287.9381346504, - "2030-01-01": 1262.96518736529, - "2029-01-01": 1238.32521271066, - "2028-01-01": 1214.01821068649, - "2027-01-01": 1189.37823603186, - "2026-01-01": 1160.77588707465, - "2025-01-01": 1143.29870865577, - "2024-01-01": 1118.48669814206, - "2023-01-01": 1058, - "2015-01-01": 1058 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1488.92677172334, - "2034-01-01": 1460.09505560821, - "2033-01-01": 1431.61928660561, - "2032-01-01": 1403.85541182808, - "2031-01-01": 1376.80343127561, - "2030-01-01": 1350.10739783568, - "2029-01-01": 1323.76731150827, - "2028-01-01": 1297.7831722934, - "2027-01-01": 1271.443085966, - "2026-01-01": 1240.86722899946, - "2025-01-01": 1222.18415830782, - "2024-01-01": 1195.66016597227, - "2023-01-01": 1131, - "2015-01-01": 1131 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1575.81374513956, - "2034-01-01": 1545.29954161187, - "2033-01-01": 1515.16205664626, - "2032-01-01": 1485.77800880479, - "2031-01-01": 1457.14739808745, - "2030-01-01": 1428.89350593219, - "2029-01-01": 1401.016332339, - "2028-01-01": 1373.51587730787, - "2027-01-01": 1345.63870371468, - "2026-01-01": 1313.27857923285, - "2025-01-01": 1293.50524977406, - "2024-01-01": 1265.43343825713, - "2023-01-01": 1197, - "2015-01-01": 1197 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1656.11837208485, - "2034-01-01": 1624.04914231223, - "2033-01-01": 1592.37582895655, - "2032-01-01": 1561.49434843477, - "2031-01-01": 1531.40470074688, - "2030-01-01": 1501.71096947594, - "2029-01-01": 1472.41315462194, - "2028-01-01": 1443.51125618488, - "2027-01-01": 1414.21344133088, - "2026-01-01": 1380.20422111523, - "2025-01-01": 1359.42322825043, - "2024-01-01": 1329.92085658101, - "2023-01-01": 1258, - "2015-01-01": 1258 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1731.1571218534, - "2034-01-01": 1697.63483476994, - "2033-01-01": 1664.52640308257, - "2032-01-01": 1632.24568218738, - "2031-01-01": 1600.79267208438, - "2030-01-01": 1569.75351737747, - "2029-01-01": 1539.12821806665, - "2028-01-01": 1508.91677415192, - "2027-01-01": 1478.29147484111, - "2026-01-01": 1442.74129631679, - "2025-01-01": 1421.01871633491, - "2024-01-01": 1390.17959173611, - "2023-01-01": 1315, - "2015-01-01": 1315 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1807.51234091614, - "2034-01-01": 1772.51150428831, - "2033-01-01": 1737.94277675465, - "2032-01-01": 1704.23826740933, - "2031-01-01": 1671.39797625236, - "2030-01-01": 1638.98979418955, - "2029-01-01": 1607.01372122092, - "2028-01-01": 1575.46975734646, - "2027-01-01": 1543.49368437782, - "2026-01-01": 1506.37551318856, - "2025-01-01": 1483.69482701736, - "2024-01-01": 1451.49549768341, - "2023-01-01": 1373, - "2015-01-01": 1373 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1890.4499064498, - "2034-01-01": 1853.84305910998, - "2033-01-01": 1817.68814815708, - "2032-01-01": 1782.43710997801, - "2031-01-01": 1748.08994457275, - "2030-01-01": 1714.19471555441, - "2029-01-01": 1680.75142292297, - "2028-01-01": 1647.76006667845, - "2027-01-01": 1614.31677404702, - "2026-01-01": 1575.49543841134, - "2025-01-01": 1551.77405068968, - "2024-01-01": 1518.09725759168, - "2023-01-01": 1436, - "2015-01-01": 1436 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1966.80512551253, - "2034-01-01": 1928.71972862835, - "2033-01-01": 1891.10452182917, - "2032-01-01": 1854.42969519996, - "2031-01-01": 1818.69524874073, - "2030-01-01": 1783.43099236649, - "2029-01-01": 1748.63692607724, - "2028-01-01": 1714.31304987298, - "2027-01-01": 1679.51898358374, - "2026-01-01": 1639.12965528311, - "2025-01-01": 1614.45016137213, - "2024-01-01": 1579.41316353897, - "2023-01-01": 1494, - "2015-01-01": 1494 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2040.5274059869, - "2034-01-01": 2001.0144440254, - "2033-01-01": 1961.98929640911, - "2032-01-01": 1923.93977748322, - "2031-01-01": 1886.86588724775, - "2030-01-01": 1850.27981135747, - "2029-01-01": 1814.1815498124, - "2028-01-01": 1778.57110261253, - "2027-01-01": 1742.47284106746, - "2026-01-01": 1700.56958881447, - "2025-01-01": 1674.96502685864, - "2024-01-01": 1638.61472790188, - "2023-01-01": 1550, - "2015-01-01": 1550 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2463.11404942031, - "2034-01-01": 2415.41808049776, - "2033-01-01": 2368.3109506977, - "2032-01-01": 2322.38149914265, - "2031-01-01": 2277.6297258326, - "2030-01-01": 2233.46679164505, - "2029-01-01": 2189.89269658, - "2028-01-01": 2146.90744063745, - "2027-01-01": 2103.3333455724, - "2026-01-01": 2052.7520649496, - "2025-01-01": 2021.84488080807, - "2024-01-01": 1977.9665521964, - "2023-01-01": 1871, - "2015-01-01": 1871 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 602.942936736774, - "2034-01-01": 591.26749378299, - "2033-01-01": 579.73619210024, - "2032-01-01": 568.493172959559, - "2031-01-01": 557.538436360947, - "2030-01-01": 546.727841033369, - "2029-01-01": 536.061386976826, - "2028-01-01": 525.539074191316, - "2027-01-01": 514.872620134773, - "2026-01-01": 502.490884952921, - "2025-01-01": 494.925149871778, - "2024-01-01": 484.1842228252, - "2023-01-01": 458, - "2015-01-01": 458 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 835.958001807536, - "2034-01-01": 819.770433520084, - "2033-01-01": 803.782711754699, - "2032-01-01": 788.19468303345, - "2031-01-01": 773.006347356335, - "2030-01-01": 758.017858201287, - "2029-01-01": 743.229215568306, - "2028-01-01": 728.640419457393, - "2027-01-01": 713.851776824413, - "2026-01-01": 696.684960578831, - "2025-01-01": 686.195349713055, - "2024-01-01": 671.303453043673, - "2023-01-01": 635, - "2015-01-01": 635 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 953.123768990009, - "2034-01-01": 934.667391918962, - "2033-01-01": 916.438871354964, - "2032-01-01": 898.666063805067, - "2031-01-01": 881.34896926927, - "2030-01-01": 864.259731240522, - "2029-01-01": 847.398349718825, - "2028-01-01": 830.764824704177, - "2027-01-01": 813.90344318248, - "2026-01-01": 794.330569226888, - "2025-01-01": 782.37076093268, - "2024-01-01": 765.391653549007, - "2023-01-01": 724, - "2015-01-01": 724 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1050.54249675971, - "2034-01-01": 1030.19969440792, - "2033-01-01": 1010.10803776417, - "2032-01-01": 990.518672536524, - "2031-01-01": 971.431598724969, - "2030-01-01": 952.59567062146, - "2029-01-01": 934.010888225997, - "2028-01-01": 915.677251538582, - "2027-01-01": 897.09246914312, - "2026-01-01": 875.519052821901, - "2025-01-01": 862.336833182705, - "2024-01-01": 843.622292171419, - "2023-01-01": 798, - "2015-01-01": 798 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1137.42947017592, - "2034-01-01": 1115.40418041158, - "2033-01-01": 1093.65080780482, - "2032-01-01": 1072.44126951323, - "2031-01-01": 1051.77556553681, - "2030-01-01": 1031.38177871797, - "2029-01-01": 1011.25990905672, - "2028-01-01": 991.409956553051, - "2027-01-01": 971.288086891799, - "2026-01-01": 947.930403055291, - "2025-01-01": 933.657924648944, - "2024-01-01": 913.395564456273, - "2023-01-01": 864, - "2015-01-01": 864 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1213.78468923866, - "2034-01-01": 1190.28084992995, - "2033-01-01": 1167.0671814769, - "2032-01-01": 1144.43385473518, - "2031-01-01": 1122.38086970479, - "2030-01-01": 1100.61805553006, - "2029-01-01": 1079.14541221099, - "2028-01-01": 1057.96293974758, - "2027-01-01": 1036.49029642852, - "2026-01-01": 1011.56461992706, - "2025-01-01": 996.334035331397, - "2024-01-01": 974.711470403569, - "2023-01-01": 922, - "2015-01-01": 922 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1283.55756183047, - "2034-01-01": 1258.70263414501, - "2033-01-01": 1234.15455741863, - "2032-01-01": 1210.22018261041, - "2031-01-01": 1186.89950972036, - "2030-01-01": 1163.88568778938, - "2029-01-01": 1141.17871681748, - "2028-01-01": 1118.77859680466, - "2027-01-01": 1096.07162583276, - "2026-01-01": 1069.71312844781, - "2025-01-01": 1053.60703302398, - "2024-01-01": 1030.74152238989, - "2023-01-01": 975, - "2015-01-01": 975 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1346.74808795135, - "2034-01-01": 1320.66953305676, - "2033-01-01": 1294.91293563001, - "2032-01-01": 1269.80025313893, - "2031-01-01": 1245.33148558351, - "2030-01-01": 1221.18467549593, - "2029-01-01": 1197.35982287618, - "2028-01-01": 1173.85692772427, - "2027-01-01": 1150.03207510453, - "2026-01-01": 1122.37592861755, - "2025-01-01": 1105.4769177267, - "2024-01-01": 1081.48572041524, - "2023-01-01": 1023, - "2015-01-01": 1023 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1407.30567548387, - "2034-01-01": 1380.0544778472, - "2033-01-01": 1353.13971474925, - "2032-01-01": 1326.89782072875, - "2031-01-01": 1301.3287957857, - "2030-01-01": 1276.09620538138, - "2029-01-01": 1251.20004951578, - "2028-01-01": 1226.6403281889, - "2027-01-01": 1201.7441723233, - "2026-01-01": 1172.84444544688, - "2025-01-01": 1155.18555723347, - "2024-01-01": 1130.1155768562, - "2023-01-01": 1069, - "2015-01-01": 1069 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1484.97736384079, - "2034-01-01": 1456.22212442623, - "2033-01-01": 1427.8218879674, - "2032-01-01": 1400.13165742005, - "2031-01-01": 1373.15143278417, - "2030-01-01": 1346.52621110402, - "2029-01-01": 1320.25599237961, - "2028-01-01": 1294.34077661093, - "2027-01-01": 1268.07055788652, - "2026-01-01": 1237.57580398885, - "2025-01-01": 1218.9422905139, - "2024-01-01": 1192.48865359569, - "2023-01-01": 1128, - "2015-01-01": 1128 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1586.34549949304, - "2034-01-01": 1555.62735809717, - "2033-01-01": 1525.28845301482, - "2032-01-01": 1495.70802055954, - "2031-01-01": 1466.88606073131, - "2030-01-01": 1438.44333721662, - "2029-01-01": 1410.37985001545, - "2028-01-01": 1382.69559912781, - "2027-01-01": 1354.63211192664, - "2026-01-01": 1322.05571259447, - "2025-01-01": 1302.15023055784, - "2024-01-01": 1273.89080459469, - "2023-01-01": 1205, - "2015-01-01": 1205 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1679.81481938018, - "2034-01-01": 1647.28672940414, - "2033-01-01": 1615.16022078582, - "2032-01-01": 1583.83687488296, - "2031-01-01": 1553.31669169556, - "2030-01-01": 1523.19808986589, - "2029-01-01": 1493.48106939395, - "2028-01-01": 1464.16563027974, - "2027-01-01": 1434.4486098078, - "2026-01-01": 1399.95277117888, - "2025-01-01": 1378.87443501395, - "2024-01-01": 1348.94993084051, - "2023-01-01": 1276, - "2015-01-01": 1276 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1764.06885420803, - "2034-01-01": 1729.90926128648, - "2033-01-01": 1696.17139173433, - "2032-01-01": 1663.27696892098, - "2031-01-01": 1631.22599284644, - "2030-01-01": 1599.5967401413, - "2029-01-01": 1568.38921080556, - "2028-01-01": 1537.60340483922, - "2027-01-01": 1506.39587550348, - "2026-01-01": 1470.16983807186, - "2025-01-01": 1448.03428128424, - "2024-01-01": 1416.60886154098, - "2023-01-01": 1340, - "2015-01-01": 1340 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1844.37348115332, - "2034-01-01": 1808.65886198683, - "2033-01-01": 1773.38516404462, - "2032-01-01": 1738.99330855097, - "2031-01-01": 1705.48329550587, - "2030-01-01": 1672.41420368504, - "2029-01-01": 1639.7860330885, - "2028-01-01": 1607.59878371623, - "2027-01-01": 1574.97061311969, - "2026-01-01": 1537.09547995424, - "2025-01-01": 1513.95225976061, - "2024-01-01": 1481.09627986486, - "2023-01-01": 1401, - "2015-01-01": 1401 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1925.99457739279, - "2034-01-01": 1888.69943974785, - "2033-01-01": 1851.86473590098, - "2032-01-01": 1815.95089965029, - "2031-01-01": 1780.95793099578, - "2030-01-01": 1746.42539613934, - "2029-01-01": 1712.35329508099, - "2028-01-01": 1678.74162782073, - "2027-01-01": 1644.66952676239, - "2026-01-01": 1605.11826350682, - "2025-01-01": 1580.95086083496, - "2024-01-01": 1546.64086898093, - "2023-01-01": 1463, - "2015-01-01": 1463 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2014.1980201032, - "2034-01-01": 1975.19490281217, - "2033-01-01": 1936.6733054877, - "2032-01-01": 1899.11474809634, - "2031-01-01": 1862.5192306381, - "2030-01-01": 1826.40523314641, - "2029-01-01": 1790.77275562127, - "2028-01-01": 1755.62179806269, - "2027-01-01": 1719.98932053756, - "2026-01-01": 1678.62675541041, - "2025-01-01": 1653.35257489917, - "2024-01-01": 1617.47131205798, - "2023-01-01": 1530, - "2015-01-01": 1530 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2095.81911634267, - "2034-01-01": 2055.23548057319, - "2033-01-01": 2015.15287734407, - "2032-01-01": 1976.07233919567, - "2031-01-01": 1937.99386612801, - "2030-01-01": 1900.41642560071, - "2029-01-01": 1863.34001761377, - "2028-01-01": 1826.7646421672, - "2027-01-01": 1789.68823418026, - "2026-01-01": 1746.64953896299, - "2025-01-01": 1720.35117597352, - "2024-01-01": 1683.01590117406, - "2023-01-01": 1592, - "2015-01-01": 1592 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2173.49080469959, - "2034-01-01": 2131.40312715222, - "2033-01-01": 2089.83505056222, - "2032-01-01": 2049.30617588697, - "2031-01-01": 2009.81650312647, - "2030-01-01": 1970.84643132335, - "2029-01-01": 1932.3959604776, - "2028-01-01": 1894.46509058922, - "2027-01-01": 1856.01461974347, - "2026-01-01": 1811.38089750496, - "2025-01-01": 1784.10790925394, - "2024-01-01": 1745.38897791355, - "2023-01-01": 1651, - "2015-01-01": 1651 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2622.40683401671, - "2034-01-01": 2571.62630483781, - "2033-01-01": 2521.47269577222, - "2032-01-01": 2472.57292693328, - "2031-01-01": 2424.92699832097, - "2030-01-01": 2377.90798982199, - "2029-01-01": 2331.51590143632, - "2028-01-01": 2285.75073316398, - "2027-01-01": 2239.35864477831, - "2026-01-01": 2185.50620704414, - "2025-01-01": 2152.60021516284, - "2024-01-01": 2105.88421805196, - "2023-01-01": 1992, - "2015-01-01": 1992 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 631.905261208846, - "2034-01-01": 619.668989117544, - "2033-01-01": 607.583782113788, - "2032-01-01": 595.800705285127, - "2031-01-01": 584.31975863156, - "2030-01-01": 572.98987706554, - "2029-01-01": 561.811060587066, - "2028-01-01": 550.78330919614, - "2027-01-01": 539.604492717666, - "2026-01-01": 526.628001697384, - "2025-01-01": 518.698847027191, - "2024-01-01": 507.441980253485, - "2023-01-01": 480, - "2015-01-01": 480 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 876.768549927274, - "2034-01-01": 859.790722400592, - "2033-01-01": 843.022497682881, - "2032-01-01": 826.673478583114, - "2031-01-01": 810.74366510129, - "2030-01-01": 795.023454428436, - "2029-01-01": 779.512846564554, - "2028-01-01": 764.211841509644, - "2027-01-01": 748.701233645762, - "2026-01-01": 730.69635235512, - "2025-01-01": 719.694650250228, - "2024-01-01": 704.07574760171, - "2023-01-01": 666, - "2015-01-01": 666 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 997.883724992302, - "2034-01-01": 978.560611981454, - "2033-01-01": 959.476055921358, - "2032-01-01": 940.868613762763, - "2031-01-01": 922.738285505672, - "2030-01-01": 904.846514199331, - "2029-01-01": 887.193299843742, - "2028-01-01": 869.778642438904, - "2027-01-01": 852.125428083314, - "2026-01-01": 831.633386013786, - "2025-01-01": 819.111929263773, - "2024-01-01": 801.335460483628, - "2023-01-01": 758, - "2015-01-01": 758 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1100.56832993874, - "2034-01-01": 1079.25682271306, - "2033-01-01": 1058.20842051485, - "2032-01-01": 1037.6862283716, - "2031-01-01": 1017.6902462833, - "2030-01-01": 997.957369222482, - "2029-01-01": 978.48759718914, - "2028-01-01": 959.280930183276, - "2027-01-01": 939.811158149935, - "2026-01-01": 917.210436289611, - "2025-01-01": 903.400491905691, - "2024-01-01": 883.79478227482, - "2023-01-01": 836, - "2015-01-01": 836 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1191.40471123751, - "2034-01-01": 1168.3342398987, - "2033-01-01": 1145.54858919371, - "2032-01-01": 1123.33257975633, - "2031-01-01": 1101.68621158659, - "2030-01-01": 1080.32466405065, - "2029-01-01": 1059.24793714853, - "2028-01-01": 1038.45603088022, - "2027-01-01": 1017.3793039781, - "2026-01-01": 992.91321153361, - "2025-01-01": 977.96345116585, - "2024-01-01": 956.739566936258, - "2023-01-01": 905, - "2015-01-01": 905 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1270.39286888862, - "2034-01-01": 1245.79286353839, - "2033-01-01": 1221.49656195793, - "2032-01-01": 1197.80766791697, - "2031-01-01": 1174.72618141553, - "2030-01-01": 1151.94839868385, - "2029-01-01": 1129.47431972191, - "2028-01-01": 1107.30394452974, - "2027-01-01": 1084.82986556781, - "2026-01-01": 1058.74171174578, - "2025-01-01": 1042.80080704425, - "2024-01-01": 1020.16981446794, - "2023-01-01": 965, - "2015-01-01": 965 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1342.7986800688, - "2034-01-01": 1316.79660187478, - "2033-01-01": 1291.1155369918, - "2032-01-01": 1266.0764987309, - "2031-01-01": 1241.67948709207, - "2030-01-01": 1217.60348876427, - "2029-01-01": 1193.84850374752, - "2028-01-01": 1170.4145320418, - "2027-01-01": 1146.65954702504, - "2026-01-01": 1119.08450360694, - "2025-01-01": 1102.23504993278, - "2024-01-01": 1078.31420803866, - "2023-01-01": 1020, - "2015-01-01": 1020 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1409.93861407224, - "2034-01-01": 1382.63643196852, - "2033-01-01": 1355.67131384139, - "2032-01-01": 1329.38032366744, - "2031-01-01": 1303.76346144667, - "2030-01-01": 1278.48366320249, - "2029-01-01": 1253.54092893489, - "2028-01-01": 1228.93525864389, - "2027-01-01": 1203.99252437629, - "2026-01-01": 1175.03872878729, - "2025-01-01": 1157.34680242942, - "2024-01-01": 1132.22991844059, - "2023-01-01": 1071, - "2015-01-01": 1071 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1473.12914019312, - "2034-01-01": 1444.60333088027, - "2033-01-01": 1416.42969205277, - "2032-01-01": 1388.96039419595, - "2031-01-01": 1362.19543730982, - "2030-01-01": 1335.78265090904, - "2029-01-01": 1309.7220349936, - "2028-01-01": 1284.0135895635, - "2027-01-01": 1257.95297364806, - "2026-01-01": 1227.70152895703, - "2025-01-01": 1209.21668713214, - "2024-01-01": 1182.97411646594, - "2023-01-01": 1119, - "2015-01-01": 1119 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1554.7502364326, - "2034-01-01": 1524.64390864129, - "2033-01-01": 1494.90926390913, - "2032-01-01": 1465.91798529528, - "2031-01-01": 1437.67007279973, - "2030-01-01": 1409.79384336334, - "2029-01-01": 1382.28929698609, - "2028-01-01": 1355.156433668, - "2027-01-01": 1327.65188729076, - "2026-01-01": 1295.72431250961, - "2025-01-01": 1276.21528820649, - "2024-01-01": 1248.51870558201, - "2023-01-01": 1181, - "2015-01-01": 1181 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1660.06777996741, - "2034-01-01": 1627.92207349421, - "2033-01-01": 1596.17322759477, - "2032-01-01": 1565.2181028428, - "2031-01-01": 1535.05669923833, - "2030-01-01": 1505.29215620759, - "2029-01-01": 1475.9244737506, - "2028-01-01": 1446.95365186736, - "2027-01-01": 1417.58596941037, - "2026-01-01": 1383.49564612584, - "2025-01-01": 1362.66509604435, - "2024-01-01": 1333.09236895759, - "2023-01-01": 1261, - "2015-01-01": 1261 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1757.4865077371, - "2034-01-01": 1723.45437598317, - "2033-01-01": 1689.84239400397, - "2032-01-01": 1657.07071157426, - "2031-01-01": 1625.13932869403, - "2030-01-01": 1593.62809558853, - "2029-01-01": 1562.53701225778, - "2028-01-01": 1531.86607870176, - "2027-01-01": 1500.77499537101, - "2026-01-01": 1464.68412972085, - "2025-01-01": 1442.63116829438, - "2024-01-01": 1411.32300758001, - "2023-01-01": 1335, - "2015-01-01": 1335 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1847.00641974169, - "2034-01-01": 1811.24081610815, - "2033-01-01": 1775.91676313676, - "2032-01-01": 1741.47581148965, - "2031-01-01": 1707.91796116683, - "2030-01-01": 1674.80166150615, - "2029-01-01": 1642.12691250761, - "2028-01-01": 1609.89371417122, - "2027-01-01": 1577.21896517268, - "2026-01-01": 1539.28976329465, - "2025-01-01": 1516.11350495656, - "2024-01-01": 1483.21062144925, - "2023-01-01": 1403, - "2015-01-01": 1403 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1929.94398527535, - "2034-01-01": 1892.57237092983, - "2033-01-01": 1855.6621345392, - "2032-01-01": 1819.67465405833, - "2031-01-01": 1784.60992948722, - "2030-01-01": 1750.006582871, - "2029-01-01": 1715.86461420966, - "2028-01-01": 1682.18402350321, - "2027-01-01": 1648.04205484187, - "2026-01-01": 1608.40968851743, - "2025-01-01": 1584.19272862888, - "2024-01-01": 1549.81238135752, - "2023-01-01": 1466, - "2015-01-01": 1466 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2015.51448939738, - "2034-01-01": 1976.48587987283, - "2033-01-01": 1937.93910503377, - "2032-01-01": 1900.35599956569, - "2031-01-01": 1863.73656346858, - "2030-01-01": 1827.59896205696, - "2029-01-01": 1791.94319533083, - "2028-01-01": 1756.76926329019, - "2027-01-01": 1721.11349656406, - "2026-01-01": 1679.72389708061, - "2025-01-01": 1654.43319749715, - "2024-01-01": 1618.52848285018, - "2023-01-01": 1531, - "2015-01-01": 1531 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2106.35087069615, - "2034-01-01": 2065.56329705848, - "2033-01-01": 2025.27927371263, - "2032-01-01": 1986.00235095042, - "2031-01-01": 1947.73252877187, - "2030-01-01": 1909.96625688513, - "2029-01-01": 1872.70353529022, - "2028-01-01": 1835.94436398713, - "2027-01-01": 1798.68164239222, - "2026-01-01": 1755.42667232461, - "2025-01-01": 1728.9961567573, - "2024-01-01": 1691.47326751162, - "2023-01-01": 1600, - "2015-01-01": 1600 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2191.92137481818, - "2034-01-01": 2149.47680600148, - "2033-01-01": 2107.5562442072, - "2032-01-01": 2066.68369645779, - "2031-01-01": 2026.85916275322, - "2030-01-01": 1987.55863607109, - "2029-01-01": 1948.78211641139, - "2028-01-01": 1910.52960377411, - "2027-01-01": 1871.7530841144, - "2026-01-01": 1826.7408808878, - "2025-01-01": 1799.23662562557, - "2024-01-01": 1760.18936900428, - "2023-01-01": 1665, - "2015-01-01": 1665 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2272.22600176347, - "2034-01-01": 2228.22640670183, - "2033-01-01": 2184.7700165175, - "2032-01-01": 2142.40003608777, - "2031-01-01": 2101.11646541265, - "2030-01-01": 2060.37609961484, - "2029-01-01": 2020.17893869432, - "2028-01-01": 1980.52498265112, - "2027-01-01": 1940.32782173061, - "2026-01-01": 1893.66652277018, - "2025-01-01": 1865.15460410194, - "2024-01-01": 1824.67678732816, - "2023-01-01": 1726, - "2015-01-01": 1726 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2740.88907049337, - "2034-01-01": 2687.81424029735, - "2033-01-01": 2635.39465491856, - "2032-01-01": 2584.28555917424, - "2031-01-01": 2534.48695306439, - "2030-01-01": 2485.34359177178, - "2029-01-01": 2436.8554752964, - "2028-01-01": 2389.02260363826, - "2027-01-01": 2340.53448716288, - "2026-01-01": 2284.2489573624, - "2025-01-01": 2249.85624898044, - "2024-01-01": 2201.02958934949, - "2023-01-01": 2082, - "2015-01-01": 2082 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 655.601708504177, - "2034-01-01": 642.906576209452, - "2033-01-01": 630.368173943056, - "2032-01-01": 618.14323173332, - "2031-01-01": 606.231749580244, - "2030-01-01": 594.476997455497, - "2029-01-01": 582.878975359081, - "2028-01-01": 571.437683290995, - "2027-01-01": 559.839661194579, - "2026-01-01": 546.376551761036, - "2025-01-01": 538.150053790711, - "2024-01-01": 526.471054512991, - "2023-01-01": 498, - "2015-01-01": 498 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 908.363812987716, - "2034-01-01": 890.774171856469, - "2033-01-01": 873.401686788571, - "2032-01-01": 856.463513847371, - "2031-01-01": 839.959653032868, - "2030-01-01": 823.672948281713, - "2029-01-01": 807.603399593907, - "2028-01-01": 791.751006969451, - "2027-01-01": 775.681458281645, - "2026-01-01": 757.02775243999, - "2025-01-01": 745.629592601587, - "2024-01-01": 729.447846614385, - "2023-01-01": 690, - "2015-01-01": 690 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1034.74486522949, - "2034-01-01": 1014.70796967998, - "2033-01-01": 994.918443211329, - "2032-01-01": 975.623654904396, - "2031-01-01": 956.82360475918, - "2030-01-01": 938.270923694821, - "2029-01-01": 919.965611711321, - "2028-01-01": 901.907668808678, - "2027-01-01": 883.602356825178, - "2026-01-01": 862.353352779467, - "2025-01-01": 849.369362007026, - "2024-01-01": 830.936242665082, - "2023-01-01": 786, - "2015-01-01": 786 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1141.37887805848, - "2034-01-01": 1119.27711159356, - "2033-01-01": 1097.44820644303, - "2032-01-01": 1076.16502392126, - "2031-01-01": 1055.42756402826, - "2030-01-01": 1034.96296544963, - "2029-01-01": 1014.77122818539, - "2028-01-01": 994.852352235527, - "2027-01-01": 974.660614971284, - "2026-01-01": 951.2218280659, - "2025-01-01": 936.899792442864, - "2024-01-01": 916.567076832857, - "2023-01-01": 867, - "2015-01-01": 867 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1234.84819794562, - "2034-01-01": 1210.93648290053, - "2033-01-01": 1187.31997421403, - "2032-01-01": 1164.29387824469, - "2031-01-01": 1141.85819499251, - "2030-01-01": 1119.71771809891, - "2029-01-01": 1097.87244756389, - "2028-01-01": 1076.32238338746, - "2027-01-01": 1054.47711285244, - "2026-01-01": 1029.1188866503, - "2025-01-01": 1013.62399689897, - "2024-01-01": 991.626203078685, - "2023-01-01": 938, - "2015-01-01": 938 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1316.4692941851, - "2034-01-01": 1290.97706066155, - "2033-01-01": 1265.79954607039, - "2032-01-01": 1241.25146934402, - "2031-01-01": 1217.33283048242, - "2030-01-01": 1193.72891055321, - "2029-01-01": 1170.43970955639, - "2028-01-01": 1147.46522749196, - "2027-01-01": 1124.17602649514, - "2026-01-01": 1097.14167020288, - "2025-01-01": 1080.62259797332, - "2024-01-01": 1057.17079219476, - "2023-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1392.82451324783, - "2034-01-01": 1365.85373017992, - "2033-01-01": 1339.21591974248, - "2032-01-01": 1313.24405456597, - "2031-01-01": 1287.9381346504, - "2030-01-01": 1262.96518736529, - "2029-01-01": 1238.32521271066, - "2028-01-01": 1214.01821068649, - "2027-01-01": 1189.37823603186, - "2026-01-01": 1160.77588707465, - "2025-01-01": 1143.29870865577, - "2024-01-01": 1118.48669814206, - "2023-01-01": 1058, - "2015-01-01": 1058 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1461.28091654546, - "2034-01-01": 1432.98453733432, - "2033-01-01": 1405.03749613814, - "2032-01-01": 1377.78913097186, - "2031-01-01": 1351.23944183548, - "2030-01-01": 1325.03909071406, - "2029-01-01": 1299.18807760759, - "2028-01-01": 1273.68640251607, - "2027-01-01": 1247.8353894096, - "2026-01-01": 1217.8272539252, - "2025-01-01": 1199.49108375038, - "2024-01-01": 1173.45957933618, - "2023-01-01": 1110, - "2015-01-01": 1110 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1525.78791196053, - "2034-01-01": 1496.24241330674, - "2033-01-01": 1467.06167389559, - "2032-01-01": 1438.61045296971, - "2031-01-01": 1410.88875052912, - "2030-01-01": 1383.53180733117, - "2029-01-01": 1356.53962337585, - "2028-01-01": 1329.91219866318, - "2027-01-01": 1302.92001470786, - "2026-01-01": 1271.58719576514, - "2025-01-01": 1252.44159105107, - "2024-01-01": 1225.26094815373, - "2023-01-01": 1159, - "2015-01-01": 1159 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1611.35841608256, - "2034-01-01": 1580.15592224974, - "2033-01-01": 1549.33864439016, - "2032-01-01": 1519.29179847707, - "2031-01-01": 1490.01538451048, - "2030-01-01": 1461.12418651713, - "2029-01-01": 1432.61820449702, - "2028-01-01": 1404.49743845016, - "2027-01-01": 1375.99145643005, - "2026-01-01": 1342.90140432833, - "2025-01-01": 1322.68205991934, - "2024-01-01": 1293.97704964639, - "2023-01-01": 1224, - "2015-01-01": 1224 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1720.62536749992, - "2034-01-01": 1687.30701828464, - "2033-01-01": 1654.400006714, - "2032-01-01": 1622.31567043263, - "2031-01-01": 1591.05400944052, - "2030-01-01": 1560.20368609304, - "2029-01-01": 1529.7647003902, - "2028-01-01": 1499.73705233199, - "2027-01-01": 1469.29806662915, - "2026-01-01": 1433.96416295517, - "2025-01-01": 1412.37373555112, - "2024-01-01": 1381.72222539855, - "2023-01-01": 1307, - "2015-01-01": 1307 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1820.67703385799, - "2034-01-01": 1785.42127489492, - "2033-01-01": 1750.60077221535, - "2032-01-01": 1716.65078210277, - "2031-01-01": 1683.57130455718, - "2030-01-01": 1650.92708329509, - "2029-01-01": 1618.71811831648, - "2028-01-01": 1586.94440962138, - "2027-01-01": 1554.73544464278, - "2026-01-01": 1517.34692989059, - "2025-01-01": 1494.50105299709, - "2024-01-01": 1462.06720560535, - "2023-01-01": 1383, - "2015-01-01": 1383 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1912.82988445094, - "2034-01-01": 1875.78966914123, - "2033-01-01": 1839.20674044028, - "2032-01-01": 1803.53838495685, - "2031-01-01": 1768.78460269095, - "2030-01-01": 1734.48810703381, - "2029-01-01": 1700.64889798543, - "2028-01-01": 1667.26697554581, - "2027-01-01": 1633.42776649744, - "2026-01-01": 1594.14684680479, - "2025-01-01": 1570.14463485523, - "2024-01-01": 1536.06916105899, - "2023-01-01": 1453, - "2015-01-01": 1453 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1998.40038857297, - "2034-01-01": 1959.70317808423, - "2033-01-01": 1921.48371093486, - "2032-01-01": 1884.21973046422, - "2031-01-01": 1847.91123667231, - "2030-01-01": 1812.08048621977, - "2029-01-01": 1776.7274791066, - "2028-01-01": 1741.85221533279, - "2027-01-01": 1706.49920821962, - "2026-01-01": 1665.46105536798, - "2025-01-01": 1640.38510372349, - "2024-01-01": 1604.78526255165, - "2023-01-01": 1518, - "2015-01-01": 1518 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2087.92030057756, - "2034-01-01": 2047.48961820922, - "2033-01-01": 2007.55808006764, - "2032-01-01": 1968.62483037961, - "2031-01-01": 1930.68986914511, - "2030-01-01": 1893.25405213739, - "2029-01-01": 1856.31737935643, - "2028-01-01": 1819.87985080224, - "2027-01-01": 1782.94317802129, - "2026-01-01": 1740.06668894177, - "2025-01-01": 1713.86744038568, - "2024-01-01": 1676.67287642089, - "2023-01-01": 1586, - "2015-01-01": 1586 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2181.3896204647, - "2034-01-01": 2139.14898951619, - "2033-01-01": 2097.42984783864, - "2032-01-01": 2056.75368470303, - "2031-01-01": 2017.12050010936, - "2030-01-01": 1978.00880478667, - "2029-01-01": 1939.41859873493, - "2028-01-01": 1901.34988195417, - "2027-01-01": 1862.75967590244, - "2026-01-01": 1817.96374752618, - "2025-01-01": 1790.59164484178, - "2024-01-01": 1751.73200266672, - "2023-01-01": 1657, - "2015-01-01": 1657 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2269.5930631751, - "2034-01-01": 2225.64445258051, - "2033-01-01": 2182.23841742536, - "2032-01-01": 2139.91753314908, - "2031-01-01": 2098.68179975169, - "2030-01-01": 2057.98864179373, - "2029-01-01": 2017.83805927521, - "2028-01-01": 1978.23005219613, - "2027-01-01": 1938.07946967762, - "2026-01-01": 1891.47223942977, - "2025-01-01": 1862.993358906, - "2024-01-01": 1822.56244574377, - "2023-01-01": 1724, - "2015-01-01": 1724 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2353.84709800295, - "2034-01-01": 2308.26698446285, - "2033-01-01": 2263.24958837386, - "2032-01-01": 2219.3576271871, - "2031-01-01": 2176.59110090256, - "2030-01-01": 2134.38729206914, - "2029-01-01": 2092.74620068682, - "2028-01-01": 2051.66782675562, - "2027-01-01": 2010.02673537331, - "2026-01-01": 1961.68930632276, - "2025-01-01": 1932.15320517629, - "2024-01-01": 1890.22137644423, - "2023-01-01": 1788, - "2015-01-01": 1788 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2838.30779826307, - "2034-01-01": 2783.3465427863, - "2033-01-01": 2729.06382132777, - "2032-01-01": 2676.1381679057, - "2031-01-01": 2624.56958252009, - "2030-01-01": 2573.67953115272, - "2029-01-01": 2523.46801380357, - "2028-01-01": 2473.93503047266, - "2027-01-01": 2423.72351312352, - "2026-01-01": 2365.43744095742, - "2025-01-01": 2329.82232123047, - "2024-01-01": 2279.2602279719, - "2023-01-01": 2156, - "2015-01-01": 2156 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 687.19697156462, - "2034-01-01": 673.890025665329, - "2033-01-01": 660.747363048745, - "2032-01-01": 647.933266997576, - "2031-01-01": 635.447737511822, - "2030-01-01": 623.126491308774, - "2029-01-01": 610.969528388434, - "2028-01-01": 598.976848750802, - "2027-01-01": 586.819885830462, - "2026-01-01": 572.707951845905, - "2025-01-01": 564.084996142071, - "2024-01-01": 551.843153525665, - "2023-01-01": 522, - "2015-01-01": 522 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 953.123768990009, - "2034-01-01": 934.667391918962, - "2033-01-01": 916.438871354964, - "2032-01-01": 898.666063805067, - "2031-01-01": 881.34896926927, - "2030-01-01": 864.259731240522, - "2029-01-01": 847.398349718825, - "2028-01-01": 830.764824704177, - "2027-01-01": 813.90344318248, - "2026-01-01": 794.330569226888, - "2025-01-01": 782.37076093268, - "2024-01-01": 765.391653549007, - "2023-01-01": 724, - "2015-01-01": 724 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1086.0871677027, - "2034-01-01": 1065.05607504578, - "2033-01-01": 1044.28462550807, - "2032-01-01": 1024.03246220881, - "2031-01-01": 1004.29958514799, - "2030-01-01": 984.826351206396, - "2029-01-01": 965.61276038402, - "2028-01-01": 946.658812680865, - "2027-01-01": 927.445221858489, - "2026-01-01": 905.141877917379, - "2025-01-01": 891.513643327985, - "2024-01-01": 872.165903560677, - "2023-01-01": 825, - "2015-01-01": 825 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1196.67058841425, - "2034-01-01": 1173.49814814135, - "2033-01-01": 1150.61178737799, - "2032-01-01": 1128.29758563371, - "2031-01-01": 1106.55554290852, - "2030-01-01": 1085.09957969287, - "2029-01-01": 1063.92969598676, - "2028-01-01": 1043.04589179019, - "2027-01-01": 1021.87600808408, - "2026-01-01": 997.301778214421, - "2025-01-01": 982.285941557743, - "2024-01-01": 960.968250105037, - "2023-01-01": 909, - "2015-01-01": 909 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1294.08931618395, - "2034-01-01": 1269.0304506303, - "2033-01-01": 1244.2809537872, - "2032-01-01": 1220.15019436517, - "2031-01-01": 1196.63817236422, - "2030-01-01": 1173.4355190738, - "2029-01-01": 1150.54223449393, - "2028-01-01": 1127.95831862459, - "2027-01-01": 1105.06503404472, - "2026-01-01": 1078.49026180943, - "2025-01-01": 1062.25201380777, - "2024-01-01": 1039.19888872745, - "2023-01-01": 983, - "2015-01-01": 983 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1379.65982030598, - "2034-01-01": 1352.9439595733, - "2033-01-01": 1326.55792428177, - "2032-01-01": 1300.83153987253, - "2031-01-01": 1275.76480634557, - "2030-01-01": 1251.02789825976, - "2029-01-01": 1226.62081561509, - "2028-01-01": 1202.54355841157, - "2027-01-01": 1178.1364757669, - "2026-01-01": 1149.80447037262, - "2025-01-01": 1132.49248267603, - "2024-01-01": 1107.91499022011, - "2023-01-01": 1048, - "2015-01-01": 1048 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1458.64797795709, - "2034-01-01": 1430.402583213, - "2033-01-01": 1402.505897046, - "2032-01-01": 1375.30662803317, - "2031-01-01": 1348.80477617452, - "2030-01-01": 1322.65163289295, - "2029-01-01": 1296.84719818848, - "2028-01-01": 1271.39147206109, - "2027-01-01": 1245.58703735661, - "2026-01-01": 1215.6329705848, - "2025-01-01": 1197.32983855443, - "2024-01-01": 1171.34523775179, - "2023-01-01": 1108, - "2015-01-01": 1108 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1531.05378913727, - "2034-01-01": 1501.40632154938, - "2033-01-01": 1472.12487207987, - "2032-01-01": 1443.57545884709, - "2031-01-01": 1415.75808185105, - "2030-01-01": 1388.30672297338, - "2029-01-01": 1361.22138221408, - "2028-01-01": 1334.50205957315, - "2027-01-01": 1307.41671881385, - "2026-01-01": 1275.97576244595, - "2025-01-01": 1256.76408144297, - "2024-01-01": 1229.48963132251, - "2023-01-01": 1163, - "2015-01-01": 1163 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1599.51019243489, - "2034-01-01": 1568.53712870378, - "2033-01-01": 1537.94644847553, - "2032-01-01": 1508.12053525298, - "2031-01-01": 1479.05938903614, - "2030-01-01": 1450.38062632215, - "2029-01-01": 1422.08424711101, - "2028-01-01": 1394.17025140273, - "2027-01-01": 1365.87387219159, - "2026-01-01": 1333.0271292965, - "2025-01-01": 1312.95645653758, - "2024-01-01": 1284.46251251663, - "2023-01-01": 1215, - "2015-01-01": 1215 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1687.71363514529, - "2034-01-01": 1655.03259176811, - "2033-01-01": 1622.75501806224, - "2032-01-01": 1591.28438369903, - "2031-01-01": 1560.62068867846, - "2030-01-01": 1530.36046332921, - "2029-01-01": 1500.50370765129, - "2028-01-01": 1471.05042164469, - "2027-01-01": 1441.19366596677, - "2026-01-01": 1406.5356212001, - "2025-01-01": 1385.35817060179, - "2024-01-01": 1355.29295559368, - "2023-01-01": 1282, - "2015-01-01": 1282 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1802.2464637394, - "2034-01-01": 1767.34759604566, - "2033-01-01": 1732.87957857037, - "2032-01-01": 1699.27326153196, - "2031-01-01": 1666.52864493043, - "2030-01-01": 1634.21487854734, - "2029-01-01": 1602.33196238269, - "2028-01-01": 1570.87989643649, - "2027-01-01": 1538.99698027184, - "2026-01-01": 1501.98694650775, - "2025-01-01": 1479.37233662547, - "2024-01-01": 1447.26681451463, - "2023-01-01": 1369, - "2015-01-01": 1369 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1907.5640072742, - "2034-01-01": 1870.62576089858, - "2033-01-01": 1834.143542256, - "2032-01-01": 1798.57337907948, - "2031-01-01": 1763.91527136902, - "2030-01-01": 1729.7131913916, - "2029-01-01": 1695.96713914721, - "2028-01-01": 1662.67711463585, - "2027-01-01": 1628.93106239145, - "2026-01-01": 1589.75828012398, - "2025-01-01": 1565.82214446333, - "2024-01-01": 1531.84047789021, - "2023-01-01": 1449, - "2015-01-01": 1449 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2003.66626574972, - "2034-01-01": 1964.86708632688, - "2033-01-01": 1926.54690911914, - "2032-01-01": 1889.18473634159, - "2031-01-01": 1852.78056799424, - "2030-01-01": 1816.85540186198, - "2029-01-01": 1781.40923794482, - "2028-01-01": 1746.44207624276, - "2027-01-01": 1710.9959123256, - "2026-01-01": 1669.84962204879, - "2025-01-01": 1644.70759411539, - "2024-01-01": 1609.01394572043, - "2023-01-01": 1522, - "2015-01-01": 1522 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2093.1861777543, - "2034-01-01": 2052.65352645186, - "2033-01-01": 2012.62127825192, - "2032-01-01": 1973.58983625698, - "2031-01-01": 1935.55920046704, - "2030-01-01": 1898.0289677796, - "2029-01-01": 1860.99913819466, - "2028-01-01": 1824.46971171221, - "2027-01-01": 1787.43988212727, - "2026-01-01": 1744.45525562259, - "2025-01-01": 1718.18993077757, - "2024-01-01": 1680.90155958967, - "2023-01-01": 1590, - "2015-01-01": 1590 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2185.33902834726, - "2034-01-01": 2143.02192069817, - "2033-01-01": 2101.22724647685, - "2032-01-01": 2060.47743911107, - "2031-01-01": 2020.77249860081, - "2030-01-01": 1981.58999151832, - "2029-01-01": 1942.9299178636, - "2028-01-01": 1904.79227763665, - "2027-01-01": 1866.13220398193, - "2026-01-01": 1821.25517253679, - "2025-01-01": 1793.8335126357, - "2024-01-01": 1754.9035150433, - "2023-01-01": 1660, - "2015-01-01": 1660 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2284.07422541114, - "2034-01-01": 2239.84520024779, - "2033-01-01": 2196.16221243213, - "2032-01-01": 2153.57129931187, - "2031-01-01": 2112.07246088699, - "2030-01-01": 2071.11965980982, - "2029-01-01": 2030.71289608033, - "2028-01-01": 1990.85216969855, - "2027-01-01": 1950.44540596906, - "2026-01-01": 1903.540797802, - "2025-01-01": 1874.8802074837, - "2024-01-01": 1834.19132445791, - "2023-01-01": 1735, - "2015-01-01": 1735 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2376.2270760041, - "2034-01-01": 2330.2135944941, - "2033-01-01": 2284.76818065706, - "2032-01-01": 2240.45890216595, - "2031-01-01": 2197.28575902076, - "2030-01-01": 2154.68068354854, - "2029-01-01": 2112.64367574928, - "2028-01-01": 2071.17473562298, - "2027-01-01": 2029.13772782372, - "2026-01-01": 1980.3407147162, - "2025-01-01": 1950.52378934183, - "2024-01-01": 1908.19327991154, - "2023-01-01": 1805, - "2015-01-01": 1805 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2464.4305187145, - "2034-01-01": 2416.70905755842, - "2033-01-01": 2369.57675024377, - "2032-01-01": 2323.622750612, - "2031-01-01": 2278.84705866308, - "2030-01-01": 2234.6605205556, - "2029-01-01": 2191.06313628956, - "2028-01-01": 2148.05490586494, - "2027-01-01": 2104.4575215989, - "2026-01-01": 2053.8492066198, - "2025-01-01": 2022.92550340605, - "2024-01-01": 1979.02372298859, - "2023-01-01": 1872, - "2015-01-01": 1872 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MI.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2969.95472768158, - "2034-01-01": 2912.44424885246, - "2033-01-01": 2855.64377593481, - "2032-01-01": 2800.2633148401, - "2031-01-01": 2746.30286556833, - "2030-01-01": 2693.05242220804, - "2029-01-01": 2640.51198475921, - "2028-01-01": 2588.68155322186, - "2027-01-01": 2536.14111577303, - "2026-01-01": 2475.15160797771, - "2025-01-01": 2437.8845810278, - "2024-01-01": 2384.97730719138, - "2023-01-01": 2256, - "2015-01-01": 2256 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN", - "description": null, - "label": "MN", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 570.031204382146, - "2034-01-01": 558.993067266451, - "2033-01-01": 548.09120344848, - "2032-01-01": 537.461886225959, - "2031-01-01": 527.105115598886, - "2030-01-01": 516.884618269539, - "2029-01-01": 506.800394237916, - "2028-01-01": 496.852443504017, - "2027-01-01": 486.768219472395, - "2026-01-01": 475.062343197849, - "2025-01-01": 467.909584922445, - "2024-01-01": 457.754953020331, - "2023-01-01": 433, - "2015-01-01": 433 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 825.426247454055, - "2034-01-01": 809.442617034791, - "2033-01-01": 793.656315386136, - "2032-01-01": 778.264671278698, - "2031-01-01": 763.267684712475, - "2030-01-01": 748.468026916861, - "2029-01-01": 733.865697891855, - "2028-01-01": 719.460697637457, - "2027-01-01": 704.858368612451, - "2026-01-01": 687.907827217208, - "2025-01-01": 677.550368929269, - "2024-01-01": 662.846086706115, - "2023-01-01": 627, - "2015-01-01": 627 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 954.440238284194, - "2034-01-01": 935.958368979623, - "2033-01-01": 917.704670901035, - "2032-01-01": 899.907315274411, - "2031-01-01": 882.566302099752, - "2030-01-01": 865.453460151076, - "2029-01-01": 848.568789428381, - "2028-01-01": 831.912289931669, - "2027-01-01": 815.027619208975, - "2026-01-01": 795.427710897091, - "2025-01-01": 783.451383530653, - "2024-01-01": 766.448824341201, - "2023-01-01": 725, - "2015-01-01": 725 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1063.70718970156, - "2034-01-01": 1043.10946501453, - "2033-01-01": 1022.76603322488, - "2032-01-01": 1002.93118722996, - "2031-01-01": 983.604927029793, - "2030-01-01": 964.532959726992, - "2029-01-01": 945.715285321561, - "2028-01-01": 927.151903813502, - "2027-01-01": 908.334229408071, - "2026-01-01": 886.49046952393, - "2025-01-01": 873.143059162439, - "2024-01-01": 854.194000093366, - "2023-01-01": 808, - "2015-01-01": 808 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1161.12591747125, - "2034-01-01": 1138.64176750349, - "2033-01-01": 1116.43519963409, - "2032-01-01": 1094.78379596142, - "2031-01-01": 1073.68755648549, - "2030-01-01": 1052.86889910793, - "2029-01-01": 1032.32782382873, - "2028-01-01": 1012.06433064791, - "2027-01-01": 991.523255368712, - "2026-01-01": 967.678953118943, - "2025-01-01": 953.109131412464, - "2024-01-01": 932.424638715779, - "2023-01-01": 882, - "2015-01-01": 882 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1248.01289088747, - "2034-01-01": 1223.84625350715, - "2033-01-01": 1199.97796967473, - "2032-01-01": 1176.70639293813, - "2031-01-01": 1154.03152329733, - "2030-01-01": 1131.65500720444, - "2029-01-01": 1109.57684465946, - "2028-01-01": 1087.79703566238, - "2027-01-01": 1065.71887311739, - "2026-01-01": 1040.09030335233, - "2025-01-01": 1024.4302228787, - "2024-01-01": 1002.19791100063, - "2023-01-01": 948, - "2015-01-01": 948 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1327.00104853858, - "2034-01-01": 1301.30487714684, - "2033-01-01": 1275.92594243896, - "2032-01-01": 1251.18148109877, - "2031-01-01": 1227.07149312628, - "2030-01-01": 1203.27874183763, - "2029-01-01": 1179.80322723284, - "2028-01-01": 1156.64494931189, - "2027-01-01": 1133.1694347071, - "2026-01-01": 1105.91880356451, - "2025-01-01": 1089.2675787571, - "2024-01-01": 1065.62815853232, - "2023-01-01": 1008, - "2015-01-01": 1008 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1399.40685971876, - "2034-01-01": 1372.30861548323, - "2033-01-01": 1345.54491747283, - "2032-01-01": 1319.45031191269, - "2031-01-01": 1294.02479880281, - "2030-01-01": 1268.93383191806, - "2029-01-01": 1244.17741125844, - "2028-01-01": 1219.75553682395, - "2027-01-01": 1194.99911616433, - "2026-01-01": 1166.26159542567, - "2025-01-01": 1148.70182164563, - "2024-01-01": 1123.77255210303, - "2023-01-01": 1063, - "2015-01-01": 1063 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1467.86326301638, - "2034-01-01": 1439.43942263763, - "2033-01-01": 1411.36649386849, - "2032-01-01": 1383.99538831858, - "2031-01-01": 1357.32610598789, - "2030-01-01": 1331.00773526683, - "2029-01-01": 1305.04027615537, - "2028-01-01": 1279.42372865353, - "2027-01-01": 1253.45626954208, - "2026-01-01": 1223.31296227622, - "2025-01-01": 1204.89419674025, - "2024-01-01": 1178.74543329716, - "2023-01-01": 1115, - "2015-01-01": 1115 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1558.69964431515, - "2034-01-01": 1528.51683982327, - "2033-01-01": 1498.70666254734, - "2032-01-01": 1469.64173970331, - "2031-01-01": 1441.32207129118, - "2030-01-01": 1413.375030095, - "2029-01-01": 1385.80061611476, - "2028-01-01": 1358.59882935048, - "2027-01-01": 1331.02441537024, - "2026-01-01": 1299.01573752021, - "2025-01-01": 1279.45715600041, - "2024-01-01": 1251.6902179586, - "2023-01-01": 1184, - "2015-01-01": 1184 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1675.86541149763, - "2034-01-01": 1643.41379822215, - "2033-01-01": 1611.36282214761, - "2032-01-01": 1580.11312047493, - "2031-01-01": 1549.66469320412, - "2030-01-01": 1519.61690313423, - "2029-01-01": 1489.96975026528, - "2028-01-01": 1460.72323459726, - "2027-01-01": 1431.07608172831, - "2026-01-01": 1396.66134616827, - "2025-01-01": 1375.63256722003, - "2024-01-01": 1345.77841846393, - "2023-01-01": 1273, - "2015-01-01": 1273 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1783.8158936208, - "2034-01-01": 1749.2739171964, - "2033-01-01": 1715.15838492538, - "2032-01-01": 1681.89574096114, - "2031-01-01": 1649.48598530367, - "2030-01-01": 1617.5026737996, - "2029-01-01": 1585.94580644891, - "2028-01-01": 1554.8153832516, - "2027-01-01": 1523.25851590091, - "2026-01-01": 1486.62696312491, - "2025-01-01": 1464.24362025384, - "2024-01-01": 1432.4664234239, - "2023-01-01": 1355, - "2015-01-01": 1355 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1882.55109068469, - "2034-01-01": 1846.09719674602, - "2033-01-01": 1810.09335088066, - "2032-01-01": 1774.98960116194, - "2031-01-01": 1740.78594758986, - "2030-01-01": 1707.03234209109, - "2029-01-01": 1673.72878466563, - "2028-01-01": 1640.8752753135, - "2027-01-01": 1607.57171788805, - "2026-01-01": 1568.91258839012, - "2025-01-01": 1545.29031510184, - "2024-01-01": 1511.75423283851, - "2023-01-01": 1430, - "2015-01-01": 1430 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1974.70394127764, - "2034-01-01": 1936.46559099232, - "2033-01-01": 1898.69931910559, - "2032-01-01": 1861.87720401602, - "2031-01-01": 1825.99924572363, - "2030-01-01": 1790.59336582981, - "2029-01-01": 1755.65956433458, - "2028-01-01": 1721.19784123794, - "2027-01-01": 1686.26403974271, - "2026-01-01": 1645.71250530433, - "2025-01-01": 1620.93389695997, - "2024-01-01": 1585.75618829214, - "2023-01-01": 1500, - "2015-01-01": 1500 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2070.80619975316, - "2034-01-01": 2030.70691642062, - "2033-01-01": 1991.10268596873, - "2032-01-01": 1952.48856127814, - "2031-01-01": 1914.86454234884, - "2030-01-01": 1877.7355763002, - "2029-01-01": 1841.1016631322, - "2028-01-01": 1804.96280284485, - "2027-01-01": 1768.32888967685, - "2026-01-01": 1725.80384722914, - "2025-01-01": 1699.81934661202, - "2024-01-01": 1662.92965612236, - "2023-01-01": 1573, - "2015-01-01": 1573 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2173.49080469959, - "2034-01-01": 2131.40312715222, - "2033-01-01": 2089.83505056222, - "2032-01-01": 2049.30617588697, - "2031-01-01": 2009.81650312647, - "2030-01-01": 1970.84643132335, - "2029-01-01": 1932.3959604776, - "2028-01-01": 1894.46509058922, - "2027-01-01": 1856.01461974347, - "2026-01-01": 1811.38089750496, - "2025-01-01": 1784.10790925394, - "2024-01-01": 1745.38897791355, - "2023-01-01": 1651, - "2015-01-01": 1651 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2269.5930631751, - "2034-01-01": 2225.64445258051, - "2033-01-01": 2182.23841742536, - "2032-01-01": 2139.91753314908, - "2031-01-01": 2098.68179975169, - "2030-01-01": 2057.98864179373, - "2029-01-01": 2017.83805927521, - "2028-01-01": 1978.23005219613, - "2027-01-01": 1938.07946967762, - "2026-01-01": 1891.47223942977, - "2025-01-01": 1862.993358906, - "2024-01-01": 1822.56244574377, - "2023-01-01": 1724, - "2015-01-01": 1724 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2360.42944447388, - "2034-01-01": 2314.72186976616, - "2033-01-01": 2269.57858610421, - "2032-01-01": 2225.56388453382, - "2031-01-01": 2182.67776505497, - "2030-01-01": 2140.3559366219, - "2029-01-01": 2098.5983992346, - "2028-01-01": 2057.40515289308, - "2027-01-01": 2015.64761550578, - "2026-01-01": 1967.17501467377, - "2025-01-01": 1937.55631816615, - "2024-01-01": 1895.50723040521, - "2023-01-01": 1793, - "2015-01-01": 1793 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2893.59950861884, - "2034-01-01": 2837.56757933409, - "2033-01-01": 2782.22740226272, - "2032-01-01": 2728.27072961815, - "2031-01-01": 2675.69756140035, - "2030-01-01": 2623.81614539595, - "2029-01-01": 2572.62648160494, - "2028-01-01": 2522.12857002732, - "2027-01-01": 2470.93890623631, - "2026-01-01": 2411.51739110594, - "2025-01-01": 2375.20847034535, - "2024-01-01": 2323.66140124408, - "2023-01-01": 2198, - "2015-01-01": 2198 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 622.68997614955, - "2034-01-01": 610.632149692913, - "2033-01-01": 598.723185291296, - "2032-01-01": 587.111944999719, - "2031-01-01": 575.798428818183, - "2030-01-01": 564.633774691667, - "2029-01-01": 553.617982620171, - "2028-01-01": 542.751052603696, - "2027-01-01": 531.7352605322, - "2026-01-01": 518.948010005964, - "2025-01-01": 511.134488841378, - "2024-01-01": 500.041784708122, - "2023-01-01": 473, - "2015-01-01": 473 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 900.464997222605, - "2034-01-01": 883.0283094925, - "2033-01-01": 865.806889512149, - "2032-01-01": 849.016005031306, - "2031-01-01": 832.655656049973, - "2030-01-01": 816.510574818394, - "2029-01-01": 800.580761336569, - "2028-01-01": 784.866215604499, - "2027-01-01": 768.936402122674, - "2026-01-01": 750.444902418772, - "2025-01-01": 739.145857013747, - "2024-01-01": 723.104821861216, - "2023-01-01": 684, - "2015-01-01": 684 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1042.6436809946, - "2034-01-01": 1022.45383204395, - "2033-01-01": 1002.51324048775, - "2032-01-01": 983.07116372046, - "2031-01-01": 964.127601742074, - "2030-01-01": 945.433297158141, - "2029-01-01": 926.988249968659, - "2028-01-01": 908.79246017363, - "2027-01-01": 890.347412984149, - "2026-01-01": 868.936202800684, - "2025-01-01": 855.853097594866, - "2024-01-01": 837.27926741825, - "2023-01-01": 792, - "2015-01-01": 792 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1162.44238676544, - "2034-01-01": 1139.93274456415, - "2033-01-01": 1117.70099918016, - "2032-01-01": 1096.02504743077, - "2031-01-01": 1074.90488931597, - "2030-01-01": 1054.06262801848, - "2029-01-01": 1033.49826353829, - "2028-01-01": 1013.2117958754, - "2027-01-01": 992.647431395207, - "2026-01-01": 968.776094789146, - "2025-01-01": 954.189754010437, - "2024-01-01": 933.481809507974, - "2023-01-01": 883, - "2015-01-01": 883 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1267.75993030025, - "2034-01-01": 1243.21090941707, - "2033-01-01": 1218.96496286579, - "2032-01-01": 1195.32516497829, - "2031-01-01": 1172.29151575457, - "2030-01-01": 1149.56094086274, - "2029-01-01": 1127.1334403028, - "2028-01-01": 1105.00901407475, - "2027-01-01": 1082.58151351482, - "2026-01-01": 1056.54742840538, - "2025-01-01": 1040.6395618483, - "2024-01-01": 1018.05547288355, - "2023-01-01": 963, - "2015-01-01": 963 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1362.54571948157, - "2034-01-01": 1336.1612577847, - "2033-01-01": 1310.10253018286, - "2032-01-01": 1284.69527077106, - "2031-01-01": 1259.9394795493, - "2030-01-01": 1235.50942242257, - "2029-01-01": 1211.40509939086, - "2028-01-01": 1187.62651045418, - "2027-01-01": 1163.52218742247, - "2026-01-01": 1135.54162865998, - "2025-01-01": 1118.44438890238, - "2024-01-01": 1094.17176992158, - "2023-01-01": 1035, - "2015-01-01": 1035 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1449.43269289779, - "2034-01-01": 1421.36574378837, - "2033-01-01": 1393.6453002235, - "2032-01-01": 1366.61786774776, - "2031-01-01": 1340.28344636114, - "2030-01-01": 1314.29553051908, - "2029-01-01": 1288.65412022158, - "2028-01-01": 1263.35921546864, - "2027-01-01": 1237.71780517115, - "2026-01-01": 1207.95297889337, - "2025-01-01": 1189.76548036862, - "2024-01-01": 1163.94504220643, - "2023-01-01": 1101, - "2015-01-01": 1101 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1529.73731984308, - "2034-01-01": 1500.11534448872, - "2033-01-01": 1470.8590725338, - "2032-01-01": 1442.33420737775, - "2031-01-01": 1414.54074902057, - "2030-01-01": 1387.11299406283, - "2029-01-01": 1360.05094250452, - "2028-01-01": 1333.35459434565, - "2027-01-01": 1306.29254278735, - "2026-01-01": 1274.87862077575, - "2025-01-01": 1255.68345884499, - "2024-01-01": 1228.43246053031, - "2023-01-01": 1162, - "2015-01-01": 1162 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1603.45960031745, - "2034-01-01": 1572.41005988577, - "2033-01-01": 1541.74384711374, - "2032-01-01": 1511.84428966101, - "2031-01-01": 1482.71138752758, - "2030-01-01": 1453.96181305381, - "2029-01-01": 1425.59556623968, - "2028-01-01": 1397.6126470852, - "2027-01-01": 1369.24640027108, - "2026-01-01": 1336.31855430711, - "2025-01-01": 1316.1983243315, - "2024-01-01": 1287.63402489322, - "2023-01-01": 1218, - "2015-01-01": 1218 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1702.19479738133, - "2034-01-01": 1669.23333943538, - "2033-01-01": 1636.67881306902, - "2032-01-01": 1604.93814986181, - "2031-01-01": 1574.01134981376, - "2030-01-01": 1543.4914813453, - "2029-01-01": 1513.37854445641, - "2028-01-01": 1483.6725391471, - "2027-01-01": 1453.55960225821, - "2026-01-01": 1418.60417957233, - "2025-01-01": 1397.2450191795, - "2024-01-01": 1366.92183430783, - "2023-01-01": 1293, - "2015-01-01": 1293 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1829.89231891728, - "2034-01-01": 1794.45811431955, - "2033-01-01": 1759.46136903785, - "2032-01-01": 1725.33954238818, - "2031-01-01": 1692.09263437056, - "2030-01-01": 1659.28318566896, - "2029-01-01": 1626.91119628338, - "2028-01-01": 1594.97666621382, - "2027-01-01": 1562.60467682824, - "2026-01-01": 1525.02692158201, - "2025-01-01": 1502.06541118291, - "2024-01-01": 1469.46740115072, - "2023-01-01": 1390, - "2015-01-01": 1390 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1948.37455539394, - "2034-01-01": 1910.64604977909, - "2033-01-01": 1873.38332818418, - "2032-01-01": 1837.05217462914, - "2031-01-01": 1801.65258911398, - "2030-01-01": 1766.71878761875, - "2029-01-01": 1732.25077014345, - "2028-01-01": 1698.2485366881, - "2027-01-01": 1663.7805192128, - "2026-01-01": 1623.76967190027, - "2025-01-01": 1599.32144500051, - "2024-01-01": 1564.61277244825, - "2023-01-01": 1480, - "2015-01-01": 1480 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2056.32503751712, - "2034-01-01": 2016.50616875334, - "2033-01-01": 1977.17889096195, - "2032-01-01": 1938.83479511535, - "2031-01-01": 1901.47388121354, - "2030-01-01": 1864.60455828411, - "2029-01-01": 1828.22682632708, - "2028-01-01": 1792.34068534244, - "2027-01-01": 1755.96295338541, - "2026-01-01": 1713.7352888569, - "2025-01-01": 1687.93249803432, - "2024-01-01": 1651.30077740822, - "2023-01-01": 1562, - "2015-01-01": 1562 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2157.69317316937, - "2034-01-01": 2115.91140242428, - "2033-01-01": 2074.64545600937, - "2032-01-01": 2034.41115825484, - "2031-01-01": 1995.20850916068, - "2030-01-01": 1956.52168439671, - "2029-01-01": 1918.35068396292, - "2028-01-01": 1880.69550785932, - "2027-01-01": 1842.52450742553, - "2026-01-01": 1798.21519746253, - "2025-01-01": 1771.14043807826, - "2024-01-01": 1732.70292840721, - "2023-01-01": 1639, - "2015-01-01": 1639 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2263.01071670418, - "2034-01-01": 2219.1895672772, - "2033-01-01": 2175.90941969501, - "2032-01-01": 2133.71127580236, - "2031-01-01": 2092.59513559927, - "2030-01-01": 2052.01999724096, - "2029-01-01": 2011.98586072743, - "2028-01-01": 1972.49272605867, - "2027-01-01": 1932.45858954514, - "2026-01-01": 1885.98653107876, - "2025-01-01": 1857.59024591613, - "2024-01-01": 1817.27659178279, - "2023-01-01": 1719, - "2015-01-01": 1719 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2374.91060670991, - "2034-01-01": 2328.92261743344, - "2033-01-01": 2283.50238111099, - "2032-01-01": 2239.2176506966, - "2031-01-01": 2196.06842619028, - "2030-01-01": 2153.48695463799, - "2029-01-01": 2111.47323603972, - "2028-01-01": 2070.02727039549, - "2027-01-01": 2028.01355179723, - "2026-01-01": 1979.243573046, - "2025-01-01": 1949.44316674386, - "2024-01-01": 1907.13610911935, - "2023-01-01": 1804, - "2015-01-01": 1804 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2480.22815024472, - "2034-01-01": 2432.20078228636, - "2033-01-01": 2384.76634479662, - "2032-01-01": 2338.51776824412, - "2031-01-01": 2293.45505262887, - "2030-01-01": 2248.98526748224, - "2029-01-01": 2205.10841280423, - "2028-01-01": 2161.82448859485, - "2027-01-01": 2117.94763391684, - "2026-01-01": 2067.01490666223, - "2025-01-01": 2035.89297458173, - "2024-01-01": 1991.70977249493, - "2023-01-01": 1884, - "2015-01-01": 1884 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2580.27981660279, - "2034-01-01": 2530.31503889664, - "2033-01-01": 2480.96711029797, - "2032-01-01": 2432.85287991427, - "2031-01-01": 2385.97234774554, - "2030-01-01": 2339.70866468429, - "2029-01-01": 2294.06183073052, - "2028-01-01": 2249.03184588424, - "2027-01-01": 2203.38501193047, - "2026-01-01": 2150.39767359765, - "2025-01-01": 2118.0202920277, - "2024-01-01": 2072.05475270173, - "2023-01-01": 1960, - "2015-01-01": 1960 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3162.1592446326, - "2034-01-01": 3100.92689970904, - "2033-01-01": 3040.45050966108, - "2032-01-01": 2981.48602936432, - "2031-01-01": 2924.03345881876, - "2030-01-01": 2867.3368431488, - "2029-01-01": 2811.39618235444, - "2028-01-01": 2756.21147643568, - "2027-01-01": 2700.27081564132, - "2026-01-01": 2635.33429182733, - "2025-01-01": 2595.6554803319, - "2024-01-01": 2539.32424285181, - "2023-01-01": 2402, - "2015-01-01": 2402 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 655.601708504177, - "2034-01-01": 642.906576209452, - "2033-01-01": 630.368173943056, - "2032-01-01": 618.14323173332, - "2031-01-01": 606.231749580244, - "2030-01-01": 594.476997455497, - "2029-01-01": 582.878975359081, - "2028-01-01": 571.437683290995, - "2027-01-01": 559.839661194579, - "2026-01-01": 546.376551761036, - "2025-01-01": 538.150053790711, - "2024-01-01": 526.471054512991, - "2023-01-01": 498, - "2015-01-01": 498 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 949.174361107454, - "2034-01-01": 930.794460736977, - "2033-01-01": 912.641472716753, - "2032-01-01": 894.942309397035, - "2031-01-01": 877.696970777823, - "2030-01-01": 860.678544508863, - "2029-01-01": 843.887030590155, - "2028-01-01": 827.322429021701, - "2027-01-01": 810.530915102994, - "2026-01-01": 791.039144216279, - "2025-01-01": 779.12889313876, - "2024-01-01": 762.220141172422, - "2023-01-01": 721, - "2015-01-01": 721 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1097.93539135037, - "2034-01-01": 1076.67486859173, - "2033-01-01": 1055.67682142271, - "2032-01-01": 1035.20372543291, - "2031-01-01": 1015.25558062234, - "2030-01-01": 995.569911401375, - "2029-01-01": 976.146717770027, - "2028-01-01": 956.985999728292, - "2027-01-01": 937.562806096945, - "2026-01-01": 915.016152949205, - "2025-01-01": 901.239246709745, - "2024-01-01": 881.68044069043, - "2023-01-01": 834, - "2015-01-01": 834 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1224.31644359214, - "2034-01-01": 1200.60866641524, - "2033-01-01": 1177.19357784547, - "2032-01-01": 1154.36386648993, - "2031-01-01": 1132.11953234865, - "2030-01-01": 1110.16788681448, - "2029-01-01": 1088.50892988744, - "2028-01-01": 1067.14266156752, - "2027-01-01": 1045.48370464048, - "2026-01-01": 1020.34175328868, - "2025-01-01": 1004.97901611518, - "2024-01-01": 983.168836741127, - "2023-01-01": 930, - "2015-01-01": 930 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1334.89986430369, - "2034-01-01": 1309.05073951081, - "2033-01-01": 1283.52073971538, - "2032-01-01": 1258.62898991483, - "2031-01-01": 1234.37549010917, - "2030-01-01": 1210.44111530095, - "2029-01-01": 1186.82586549018, - "2028-01-01": 1163.52974067684, - "2027-01-01": 1139.91449086607, - "2026-01-01": 1112.50165358572, - "2025-01-01": 1095.75131434494, - "2024-01-01": 1071.97118328549, - "2023-01-01": 1014, - "2015-01-01": 1014 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1434.95153066175, - "2034-01-01": 1407.16499612109, - "2033-01-01": 1379.72150521673, - "2032-01-01": 1352.96410158498, - "2031-01-01": 1326.89278522583, - "2030-01-01": 1301.164512503, - "2029-01-01": 1275.77928341646, - "2028-01-01": 1250.73709796623, - "2027-01-01": 1225.3518688797, - "2026-01-01": 1195.88442052114, - "2025-01-01": 1177.87863179091, - "2024-01-01": 1152.31616349229, - "2023-01-01": 1090, - "2015-01-01": 1090 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1525.78791196053, - "2034-01-01": 1496.24241330674, - "2033-01-01": 1467.06167389559, - "2032-01-01": 1438.61045296971, - "2031-01-01": 1410.88875052912, - "2030-01-01": 1383.53180733117, - "2029-01-01": 1356.53962337585, - "2028-01-01": 1329.91219866318, - "2027-01-01": 1302.92001470786, - "2026-01-01": 1271.58719576514, - "2025-01-01": 1252.44159105107, - "2024-01-01": 1225.26094815373, - "2023-01-01": 1159, - "2015-01-01": 1159 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1610.04194678837, - "2034-01-01": 1578.86494518907, - "2033-01-01": 1548.07284484409, - "2032-01-01": 1518.05054700773, - "2031-01-01": 1488.79805168, - "2030-01-01": 1459.93045760657, - "2029-01-01": 1431.44776478746, - "2028-01-01": 1403.34997322266, - "2027-01-01": 1374.86728040355, - "2026-01-01": 1341.80426265813, - "2025-01-01": 1321.60143732136, - "2024-01-01": 1292.91987885419, - "2023-01-01": 1223, - "2015-01-01": 1223 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1689.03010443948, - "2034-01-01": 1656.32356882877, - "2033-01-01": 1624.02081760831, - "2032-01-01": 1592.52563516837, - "2031-01-01": 1561.83802150894, - "2030-01-01": 1531.55419223977, - "2029-01-01": 1501.67414736085, - "2028-01-01": 1472.19788687218, - "2027-01-01": 1442.31784199326, - "2026-01-01": 1407.6327628703, - "2025-01-01": 1386.43879319976, - "2024-01-01": 1356.35012638588, - "2023-01-01": 1283, - "2015-01-01": 1283 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1793.0311786801, - "2034-01-01": 1758.31075662103, - "2033-01-01": 1724.01898174787, - "2032-01-01": 1690.58450124655, - "2031-01-01": 1658.00731511705, - "2030-01-01": 1625.85877617347, - "2029-01-01": 1594.1388844158, - "2028-01-01": 1562.84763984405, - "2027-01-01": 1531.12774808638, - "2026-01-01": 1494.30695481633, - "2025-01-01": 1471.80797843966, - "2024-01-01": 1439.86661896926, - "2023-01-01": 1362, - "2015-01-01": 1362 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1927.31104668698, - "2034-01-01": 1889.99041680851, - "2033-01-01": 1853.13053544705, - "2032-01-01": 1817.19215111964, - "2031-01-01": 1782.17526382626, - "2030-01-01": 1747.6191250499, - "2029-01-01": 1713.52373479055, - "2028-01-01": 1679.88909304823, - "2027-01-01": 1645.79370278888, - "2026-01-01": 1606.21540517702, - "2025-01-01": 1582.03148343293, - "2024-01-01": 1547.69803977313, - "2023-01-01": 1464, - "2015-01-01": 1464 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2052.37562963456, - "2034-01-01": 2012.63323757136, - "2033-01-01": 1973.38149232374, - "2032-01-01": 1935.11104070732, - "2031-01-01": 1897.82188272209, - "2030-01-01": 1861.02337155245, - "2029-01-01": 1824.71550719841, - "2028-01-01": 1788.89828965996, - "2027-01-01": 1752.59042530592, - "2026-01-01": 1710.4438638463, - "2025-01-01": 1684.6906302404, - "2024-01-01": 1648.12926503163, - "2023-01-01": 1559, - "2015-01-01": 1559 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2165.59198893448, - "2034-01-01": 2123.65726478825, - "2033-01-01": 2082.2402532858, - "2032-01-01": 2041.8586670709, - "2031-01-01": 2002.51250614358, - "2030-01-01": 1963.68405786003, - "2029-01-01": 1925.37332222026, - "2028-01-01": 1887.58029922427, - "2027-01-01": 1849.2695635845, - "2026-01-01": 1804.79804748374, - "2025-01-01": 1777.6241736661, - "2024-01-01": 1739.04595316038, - "2023-01-01": 1645, - "2015-01-01": 1645 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2272.22600176347, - "2034-01-01": 2228.22640670183, - "2033-01-01": 2184.7700165175, - "2032-01-01": 2142.40003608777, - "2031-01-01": 2101.11646541265, - "2030-01-01": 2060.37609961484, - "2029-01-01": 2020.17893869432, - "2028-01-01": 1980.52498265112, - "2027-01-01": 1940.32782173061, - "2026-01-01": 1893.66652277018, - "2025-01-01": 1865.15460410194, - "2024-01-01": 1824.67678732816, - "2023-01-01": 1726, - "2015-01-01": 1726 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2384.12589176921, - "2034-01-01": 2337.95945685807, - "2033-01-01": 2292.36297793348, - "2032-01-01": 2247.90641098201, - "2031-01-01": 2204.58975600366, - "2030-01-01": 2161.84305701186, - "2029-01-01": 2119.66631400662, - "2028-01-01": 2078.05952698793, - "2027-01-01": 2035.88278398269, - "2026-01-01": 1986.92356473742, - "2025-01-01": 1957.00752492967, - "2024-01-01": 1914.53630466471, - "2023-01-01": 1811, - "2015-01-01": 1811 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2501.29165895168, - "2034-01-01": 2452.85641525694, - "2033-01-01": 2405.01913753375, - "2032-01-01": 2358.37779175363, - "2031-01-01": 2312.93237791659, - "2030-01-01": 2268.08493005109, - "2029-01-01": 2223.83544815714, - "2028-01-01": 2180.18393223472, - "2027-01-01": 2135.93445034076, - "2026-01-01": 2084.56917338548, - "2025-01-01": 2053.1829361493, - "2024-01-01": 2008.62450517004, - "2023-01-01": 1900, - "2015-01-01": 1900 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2611.87507966323, - "2034-01-01": 2561.29848835251, - "2033-01-01": 2511.34629940366, - "2032-01-01": 2462.64291517853, - "2031-01-01": 2415.18833567711, - "2030-01-01": 2368.35815853756, - "2029-01-01": 2322.15238375987, - "2028-01-01": 2276.57101134404, - "2027-01-01": 2230.36523656635, - "2026-01-01": 2176.72907368252, - "2025-01-01": 2143.95523437906, - "2024-01-01": 2097.4268517144, - "2023-01-01": 1984, - "2015-01-01": 1984 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2717.19262319804, - "2034-01-01": 2664.57665320544, - "2033-01-01": 2612.61026308929, - "2032-01-01": 2561.94303272605, - "2031-01-01": 2512.57496211571, - "2030-01-01": 2463.85647138182, - "2029-01-01": 2415.78756052438, - "2028-01-01": 2368.3682295434, - "2027-01-01": 2320.29931868596, - "2026-01-01": 2264.50040729875, - "2025-01-01": 2230.40504221692, - "2024-01-01": 2182.00051508999, - "2023-01-01": 2064, - "2015-01-01": 2064 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3330.66731428829, - "2034-01-01": 3266.17196347372, - "2033-01-01": 3202.47285155809, - "2032-01-01": 3140.36621744036, - "2031-01-01": 3079.85206112051, - "2030-01-01": 3020.13414369962, - "2029-01-01": 2961.21246517766, - "2028-01-01": 2903.08702555465, - "2027-01-01": 2844.1653470327, - "2026-01-01": 2775.7684256133, - "2025-01-01": 2733.97517287249, - "2024-01-01": 2674.64210425274, - "2023-01-01": 2530, - "2015-01-01": 2530 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 680.614625093694, - "2034-01-01": 667.435140362021, - "2033-01-01": 654.418365318393, - "2032-01-01": 641.727009650856, - "2031-01-01": 629.361073359409, - "2030-01-01": 617.157846756008, - "2029-01-01": 605.117329840652, - "2028-01-01": 593.239522613342, - "2027-01-01": 581.199005697986, - "2026-01-01": 567.222243494891, - "2025-01-01": 558.681883152204, - "2024-01-01": 546.557299564691, - "2023-01-01": 517, - "2015-01-01": 517 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 983.402562756266, - "2034-01-01": 964.359864314177, - "2033-01-01": 945.552260914583, - "2032-01-01": 927.214847599979, - "2031-01-01": 909.347624370365, - "2030-01-01": 891.715496183246, - "2029-01-01": 874.318463038621, - "2028-01-01": 857.156524936492, - "2027-01-01": 839.759491791868, - "2026-01-01": 819.564827641554, - "2025-01-01": 807.225080686066, - "2024-01-01": 789.706581769486, - "2023-01-01": 747, - "2015-01-01": 747 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1138.74593947011, - "2034-01-01": 1116.69515747224, - "2033-01-01": 1094.91660735089, - "2032-01-01": 1073.68252098257, - "2031-01-01": 1052.99289836729, - "2030-01-01": 1032.57550762852, - "2029-01-01": 1012.43034876628, - "2028-01-01": 992.557421780543, - "2027-01-01": 972.412262918294, - "2026-01-01": 949.027544725494, - "2025-01-01": 934.738547246918, - "2024-01-01": 914.452735248468, - "2023-01-01": 865, - "2015-01-01": 865 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1269.07639959443, - "2034-01-01": 1244.50188647773, - "2033-01-01": 1220.23076241186, - "2032-01-01": 1196.56641644763, - "2031-01-01": 1173.50884858505, - "2030-01-01": 1150.75466977329, - "2029-01-01": 1128.30388001236, - "2028-01-01": 1106.15647930225, - "2027-01-01": 1083.70568954131, - "2026-01-01": 1057.64457007558, - "2025-01-01": 1041.72018444628, - "2024-01-01": 1019.11264367575, - "2023-01-01": 964, - "2015-01-01": 964 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1384.92569748272, - "2034-01-01": 1358.10786781595, - "2033-01-01": 1331.62112246605, - "2032-01-01": 1305.7965457499, - "2031-01-01": 1280.6341376675, - "2030-01-01": 1255.80281390197, - "2029-01-01": 1231.30257445332, - "2028-01-01": 1207.13341932154, - "2027-01-01": 1182.63317987289, - "2026-01-01": 1154.19303705343, - "2025-01-01": 1136.81497306793, - "2024-01-01": 1112.14367338889, - "2023-01-01": 1052, - "2015-01-01": 1052 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1488.92677172334, - "2034-01-01": 1460.09505560821, - "2033-01-01": 1431.61928660561, - "2032-01-01": 1403.85541182808, - "2031-01-01": 1376.80343127561, - "2030-01-01": 1350.10739783568, - "2029-01-01": 1323.76731150827, - "2028-01-01": 1297.7831722934, - "2027-01-01": 1271.443085966, - "2026-01-01": 1240.86722899946, - "2025-01-01": 1222.18415830782, - "2024-01-01": 1195.66016597227, - "2023-01-01": 1131, - "2015-01-01": 1131 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1583.71256090467, - "2034-01-01": 1553.04540397584, - "2033-01-01": 1522.75685392268, - "2032-01-01": 1493.22551762085, - "2031-01-01": 1464.45139507035, - "2030-01-01": 1436.05587939551, - "2029-01-01": 1408.03897059633, - "2028-01-01": 1380.40066867282, - "2027-01-01": 1352.38375987365, - "2026-01-01": 1319.86142925407, - "2025-01-01": 1299.9889853619, - "2024-01-01": 1271.7764630103, - "2023-01-01": 1203, - "2015-01-01": 1203 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1670.59953432089, - "2034-01-01": 1638.24988997951, - "2033-01-01": 1606.29962396333, - "2032-01-01": 1575.14811459756, - "2031-01-01": 1544.79536188219, - "2030-01-01": 1514.84198749202, - "2029-01-01": 1485.28799142706, - "2028-01-01": 1456.13337368729, - "2027-01-01": 1426.57937762233, - "2026-01-01": 1392.27277948746, - "2025-01-01": 1371.31007682814, - "2024-01-01": 1341.54973529515, - "2023-01-01": 1269, - "2015-01-01": 1269 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1752.22063056036, - "2034-01-01": 1718.29046774052, - "2033-01-01": 1684.77919581969, - "2032-01-01": 1652.10570569688, - "2031-01-01": 1620.2699973721, - "2030-01-01": 1588.85317994632, - "2029-01-01": 1557.85525341955, - "2028-01-01": 1527.2762177918, - "2027-01-01": 1496.27829126503, - "2026-01-01": 1460.29556304004, - "2025-01-01": 1438.30867790248, - "2024-01-01": 1407.09432441123, - "2023-01-01": 1331, - "2015-01-01": 1331 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1860.17111268354, - "2034-01-01": 1824.15058671477, - "2033-01-01": 1788.57475859746, - "2032-01-01": 1753.88832618309, - "2031-01-01": 1720.09128947165, - "2030-01-01": 1686.73895061168, - "2029-01-01": 1653.83130960318, - "2028-01-01": 1621.36836644614, - "2027-01-01": 1588.46072543763, - "2026-01-01": 1550.26117999667, - "2025-01-01": 1526.91973093629, - "2024-01-01": 1493.7823293712, - "2023-01-01": 1413, - "2015-01-01": 1413 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1999.71685786716, - "2034-01-01": 1960.99415514489, - "2033-01-01": 1922.74951048093, - "2032-01-01": 1885.46098193356, - "2031-01-01": 1849.12856950279, - "2030-01-01": 1813.27421513032, - "2029-01-01": 1777.89791881615, - "2028-01-01": 1742.99968056028, - "2027-01-01": 1707.62338424611, - "2026-01-01": 1666.55819703818, - "2025-01-01": 1641.46572632147, - "2024-01-01": 1605.84243334384, - "2023-01-01": 1519, - "2015-01-01": 1519 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2128.7308486973, - "2034-01-01": 2087.50990708973, - "2033-01-01": 2046.79786599582, - "2032-01-01": 2007.10362592927, - "2031-01-01": 1968.42718689007, - "2030-01-01": 1930.25964836454, - "2029-01-01": 1892.60101035268, - "2028-01-01": 1855.45127285449, - "2027-01-01": 1817.79263484264, - "2026-01-01": 1774.07808071806, - "2025-01-01": 1747.36674092285, - "2024-01-01": 1709.44517097893, - "2023-01-01": 1617, - "2015-01-01": 1617 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2247.21308517396, - "2034-01-01": 2203.69784254926, - "2033-01-01": 2160.71982514216, - "2032-01-01": 2118.81625817023, - "2031-01-01": 2077.98714163349, - "2030-01-01": 2037.69525031433, - "2029-01-01": 1997.94058421275, - "2028-01-01": 1958.72314332877, - "2027-01-01": 1918.9684772272, - "2026-01-01": 1872.82083103632, - "2025-01-01": 1844.62277474045, - "2024-01-01": 1804.59054227646, - "2023-01-01": 1707, - "2015-01-01": 1707 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2357.79650588551, - "2034-01-01": 2312.13991564483, - "2033-01-01": 2267.04698701207, - "2032-01-01": 2223.08138159513, - "2031-01-01": 2180.24309939401, - "2030-01-01": 2137.9684788008, - "2029-01-01": 2096.25751981549, - "2028-01-01": 2055.1102224381, - "2027-01-01": 2013.39926345279, - "2026-01-01": 1964.98073133336, - "2025-01-01": 1935.39507297021, - "2024-01-01": 1893.39288882082, - "2023-01-01": 1791, - "2015-01-01": 1791 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2473.64580377379, - "2034-01-01": 2425.74589698305, - "2033-01-01": 2378.43734706627, - "2032-01-01": 2332.3115108974, - "2031-01-01": 2287.36838847646, - "2030-01-01": 2243.01662292948, - "2029-01-01": 2199.25621425645, - "2028-01-01": 2156.08716245739, - "2027-01-01": 2112.32675378436, - "2026-01-01": 2061.52919831122, - "2025-01-01": 2030.48986159186, - "2024-01-01": 1986.42391853395, - "2023-01-01": 1879, - "2015-01-01": 1879 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2596.07744813301, - "2034-01-01": 2545.80676362458, - "2033-01-01": 2496.15670485081, - "2032-01-01": 2447.7478975464, - "2031-01-01": 2400.58034171133, - "2030-01-01": 2354.03341161093, - "2029-01-01": 2308.1071072452, - "2028-01-01": 2262.80142861414, - "2027-01-01": 2216.87512424841, - "2026-01-01": 2163.56337364009, - "2025-01-01": 2130.98776320338, - "2024-01-01": 2084.74080220807, - "2023-01-01": 1972, - "2015-01-01": 1972 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2710.61027672711, - "2034-01-01": 2658.12176790213, - "2033-01-01": 2606.28126535894, - "2032-01-01": 2555.73677537933, - "2031-01-01": 2506.4882979633, - "2030-01-01": 2457.88782682905, - "2029-01-01": 2409.9353619766, - "2028-01-01": 2362.63090340594, - "2027-01-01": 2314.67843855349, - "2026-01-01": 2259.01469894774, - "2025-01-01": 2225.00192922706, - "2024-01-01": 2176.71466112901, - "2023-01-01": 2059, - "2015-01-01": 2059 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2819.87722814447, - "2034-01-01": 2765.27286393704, - "2033-01-01": 2711.34262768278, - "2032-01-01": 2658.76064733488, - "2031-01-01": 2607.52692289334, - "2030-01-01": 2556.96732640497, - "2029-01-01": 2507.08185786978, - "2028-01-01": 2457.87051728777, - "2027-01-01": 2407.98504875259, - "2026-01-01": 2350.07745757458, - "2025-01-01": 2314.69360485884, - "2024-01-01": 2264.45983688118, - "2023-01-01": 2142, - "2015-01-01": 2142 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3457.04836653006, - "2034-01-01": 3390.10576129723, - "2033-01-01": 3323.98960798085, - "2032-01-01": 3259.52635849738, - "2031-01-01": 3196.71601284683, - "2030-01-01": 3134.73211911272, - "2029-01-01": 3073.57467729507, - "2028-01-01": 3013.24368739388, - "2027-01-01": 2952.08624557623, - "2026-01-01": 2881.09402595277, - "2025-01-01": 2837.71494227793, - "2024-01-01": 2776.13050030344, - "2023-01-01": 2626, - "2015-01-01": 2626 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 699.045195212286, - "2034-01-01": 685.508819211283, - "2033-01-01": 672.139558963379, - "2032-01-01": 659.104530221672, - "2031-01-01": 646.403732986163, - "2030-01-01": 633.870051503753, - "2029-01-01": 621.503485774442, - "2028-01-01": 609.304035798229, - "2027-01-01": 596.937470068918, - "2026-01-01": 582.582226877731, - "2025-01-01": 573.81059952383, - "2024-01-01": 561.357690655418, - "2023-01-01": 531, - "2015-01-01": 531 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1012.36488722834, - "2034-01-01": 992.761359648731, - "2033-01-01": 973.399850928132, - "2032-01-01": 954.522379925548, - "2031-01-01": 936.128946640979, - "2030-01-01": 917.977532215417, - "2029-01-01": 900.068136648862, - "2028-01-01": 882.400759941315, - "2027-01-01": 864.491364374761, - "2026-01-01": 843.701944386017, - "2025-01-01": 830.998777841479, - "2024-01-01": 812.964339197771, - "2023-01-01": 769, - "2015-01-01": 769 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1171.65767182473, - "2034-01-01": 1148.96958398878, - "2033-01-01": 1126.56159600265, - "2032-01-01": 1104.71380771617, - "2031-01-01": 1083.42621912935, - "2030-01-01": 1062.41873039235, - "2029-01-01": 1041.69134150518, - "2028-01-01": 1021.24405246784, - "2027-01-01": 1000.51666358067, - "2026-01-01": 976.456086480566, - "2025-01-01": 961.75411219625, - "2024-01-01": 940.882005053337, - "2023-01-01": 890, - "2015-01-01": 890 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1305.93753983161, - "2034-01-01": 1280.64924417626, - "2033-01-01": 1255.67314970183, - "2032-01-01": 1231.32145758926, - "2031-01-01": 1207.59416783856, - "2030-01-01": 1184.17907926878, - "2029-01-01": 1161.07619187994, - "2028-01-01": 1138.28550567202, - "2027-01-01": 1115.18261828318, - "2026-01-01": 1088.36453684126, - "2025-01-01": 1071.97761718953, - "2024-01-01": 1048.7134258572, - "2023-01-01": 992, - "2015-01-01": 992 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1424.41977630827, - "2034-01-01": 1396.8371796358, - "2033-01-01": 1369.59510884816, - "2032-01-01": 1343.03408983022, - "2031-01-01": 1317.15412258198, - "2030-01-01": 1291.61468121857, - "2029-01-01": 1266.41576574001, - "2028-01-01": 1241.5573761463, - "2027-01-01": 1216.35846066774, - "2026-01-01": 1187.10728715952, - "2025-01-01": 1169.23365100713, - "2024-01-01": 1143.85879715473, - "2023-01-01": 1082, - "2015-01-01": 1082 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1531.05378913727, - "2034-01-01": 1501.40632154938, - "2033-01-01": 1472.12487207987, - "2032-01-01": 1443.57545884709, - "2031-01-01": 1415.75808185105, - "2030-01-01": 1388.30672297338, - "2029-01-01": 1361.22138221408, - "2028-01-01": 1334.50205957315, - "2027-01-01": 1307.41671881385, - "2026-01-01": 1275.97576244595, - "2025-01-01": 1256.76408144297, - "2024-01-01": 1229.48963132251, - "2023-01-01": 1163, - "2015-01-01": 1163 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1628.47251690696, - "2034-01-01": 1596.93862403834, - "2033-01-01": 1565.79403848908, - "2032-01-01": 1535.42806757855, - "2031-01-01": 1505.84071130675, - "2030-01-01": 1476.64266235432, - "2029-01-01": 1447.83392072125, - "2028-01-01": 1419.41448640755, - "2027-01-01": 1390.60574477449, - "2026-01-01": 1357.16424604097, - "2025-01-01": 1336.73015369299, - "2024-01-01": 1307.72026994492, - "2023-01-01": 1237, - "2015-01-01": 1237 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1719.30889820573, - "2034-01-01": 1686.01604122398, - "2033-01-01": 1653.13420716793, - "2032-01-01": 1621.07441896328, - "2031-01-01": 1589.83667661004, - "2030-01-01": 1559.00995718249, - "2029-01-01": 1528.59426068064, - "2028-01-01": 1498.5895871045, - "2027-01-01": 1468.17389060265, - "2026-01-01": 1432.86702128497, - "2025-01-01": 1411.29311295315, - "2024-01-01": 1380.66505460636, - "2023-01-01": 1306, - "2015-01-01": 1306 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1803.56293303358, - "2034-01-01": 1768.63857310632, - "2033-01-01": 1734.14537811644, - "2032-01-01": 1700.5145130013, - "2031-01-01": 1667.74597776091, - "2030-01-01": 1635.40860745789, - "2029-01-01": 1603.50240209225, - "2028-01-01": 1572.02736166398, - "2027-01-01": 1540.12115629834, - "2026-01-01": 1503.08408817795, - "2025-01-01": 1480.45295922344, - "2024-01-01": 1448.32398530682, - "2023-01-01": 1370, - "2015-01-01": 1370 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1914.14635374513, - "2034-01-01": 1877.08064620189, - "2033-01-01": 1840.47253998635, - "2032-01-01": 1804.7796364262, - "2031-01-01": 1770.00193552143, - "2030-01-01": 1735.68183594436, - "2029-01-01": 1701.81933769499, - "2028-01-01": 1668.41444077331, - "2027-01-01": 1634.55194252393, - "2026-01-01": 1595.24398847499, - "2025-01-01": 1571.2252574532, - "2024-01-01": 1537.12633185118, - "2023-01-01": 1454, - "2015-01-01": 1454 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2057.6415068113, - "2034-01-01": 2017.797145814, - "2033-01-01": 1978.44469050802, - "2032-01-01": 1940.0760465847, - "2031-01-01": 1902.69121404402, - "2030-01-01": 1865.79828719466, - "2029-01-01": 1829.39726603663, - "2028-01-01": 1793.48815056993, - "2027-01-01": 1757.0871294119, - "2026-01-01": 1714.83243052711, - "2025-01-01": 1689.01312063229, - "2024-01-01": 1652.35794820041, - "2023-01-01": 1563, - "2015-01-01": 1563 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2190.604905524, - "2034-01-01": 2148.18582894082, - "2033-01-01": 2106.29044466113, - "2032-01-01": 2065.44244498844, - "2031-01-01": 2025.64182992274, - "2030-01-01": 1986.36490716054, - "2029-01-01": 1947.61167670183, - "2028-01-01": 1909.38213854662, - "2027-01-01": 1870.62890808791, - "2026-01-01": 1825.6437392176, - "2025-01-01": 1798.1560030276, - "2024-01-01": 1759.13219821208, - "2023-01-01": 1664, - "2015-01-01": 1664 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2311.72008058903, - "2034-01-01": 2266.95571852168, - "2033-01-01": 2222.74400289961, - "2032-01-01": 2179.63758016809, - "2031-01-01": 2137.63645032712, - "2030-01-01": 2096.18796693143, - "2029-01-01": 2055.29212998102, - "2028-01-01": 2014.94893947588, - "2027-01-01": 1974.05310252546, - "2026-01-01": 1926.58077287626, - "2025-01-01": 1897.57328204114, - "2024-01-01": 1856.391911094, - "2023-01-01": 1756, - "2015-01-01": 1756 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2426.25290918313, - "2034-01-01": 2379.27072279924, - "2033-01-01": 2332.86856340773, - "2032-01-01": 2287.62645800102, - "2031-01-01": 2243.54440657909, - "2030-01-01": 2200.04238214956, - "2029-01-01": 2157.12038471242, - "2028-01-01": 2114.77841426768, - "2027-01-01": 2071.85641683054, - "2026-01-01": 2022.03209818391, - "2025-01-01": 1991.58744806482, - "2024-01-01": 1948.36577001494, - "2023-01-01": 1843, - "2015-01-01": 1843 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2544.73514565979, - "2034-01-01": 2495.45865825877, - "2033-01-01": 2446.79052255407, - "2032-01-01": 2399.33909024198, - "2031-01-01": 2353.10436132251, - "2030-01-01": 2307.47798409935, - "2029-01-01": 2262.4599585725, - "2028-01-01": 2218.05028474195, - "2027-01-01": 2173.0322592151, - "2026-01-01": 2120.77484850217, - "2025-01-01": 2088.84348188242, - "2024-01-01": 2043.51114131247, - "2023-01-01": 1933, - "2015-01-01": 1933 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2671.11619790156, - "2034-01-01": 2619.39245608228, - "2033-01-01": 2568.30727897683, - "2032-01-01": 2518.49923129901, - "2031-01-01": 2469.96831304882, - "2030-01-01": 2422.07595951246, - "2029-01-01": 2374.82217068991, - "2028-01-01": 2328.20694658118, - "2027-01-01": 2280.95315775863, - "2026-01-01": 2226.10044884165, - "2025-01-01": 2192.58325128786, - "2024-01-01": 2144.99953736317, - "2023-01-01": 2029, - "2015-01-01": 2029 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2789.59843437822, - "2034-01-01": 2735.58039154182, - "2033-01-01": 2682.22923812316, - "2032-01-01": 2630.21186353997, - "2031-01-01": 2579.52826779224, - "2030-01-01": 2529.51156146225, - "2029-01-01": 2480.16174454999, - "2028-01-01": 2431.47881705546, - "2027-01-01": 2382.1290001432, - "2026-01-01": 2324.84319915991, - "2025-01-01": 2289.83928510545, - "2024-01-01": 2240.1449086607, - "2023-01-01": 2119, - "2015-01-01": 2119 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2901.49832438395, - "2034-01-01": 2845.31344169805, - "2033-01-01": 2789.82219953915, - "2032-01-01": 2735.71823843421, - "2031-01-01": 2683.00155838325, - "2030-01-01": 2630.97851885927, - "2029-01-01": 2579.64911986228, - "2028-01-01": 2529.01336139227, - "2027-01-01": 2477.68396239528, - "2026-01-01": 2418.10024112716, - "2025-01-01": 2381.69220593319, - "2024-01-01": 2330.00442599725, - "2023-01-01": 2204, - "2015-01-01": 2204 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3557.10003288813, - "2034-01-01": 3488.22001790751, - "2033-01-01": 3420.1903734822, - "2032-01-01": 3353.86147016753, - "2031-01-01": 3289.23330796349, - "2030-01-01": 3225.45551631477, - "2029-01-01": 3162.52809522136, - "2028-01-01": 3100.45104468327, - "2027-01-01": 3037.52362358986, - "2026-01-01": 2964.47679288819, - "2025-01-01": 2919.8422597239, - "2024-01-01": 2856.47548051024, - "2023-01-01": 2702, - "2015-01-01": 2702 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 726.691050390173, - "2034-01-01": 712.619337485175, - "2033-01-01": 698.721349430857, - "2032-01-01": 685.170811077896, - "2031-01-01": 671.967722426294, - "2030-01-01": 658.938358625371, - "2029-01-01": 646.082719675126, - "2028-01-01": 633.40080557556, - "2027-01-01": 620.545166625316, - "2026-01-01": 605.622201951992, - "2025-01-01": 596.50367408127, - "2024-01-01": 583.558277291508, - "2023-01-01": 552, - "2015-01-01": 552 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1050.54249675971, - "2034-01-01": 1030.19969440792, - "2033-01-01": 1010.10803776417, - "2032-01-01": 990.518672536524, - "2031-01-01": 971.431598724969, - "2030-01-01": 952.59567062146, - "2029-01-01": 934.010888225997, - "2028-01-01": 915.677251538582, - "2027-01-01": 897.09246914312, - "2026-01-01": 875.519052821901, - "2025-01-01": 862.336833182705, - "2024-01-01": 843.622292171419, - "2023-01-01": 798, - "2015-01-01": 798 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1215.10115853284, - "2034-01-01": 1191.57182699061, - "2033-01-01": 1168.33298102297, - "2032-01-01": 1145.67510620453, - "2031-01-01": 1123.59820253527, - "2030-01-01": 1101.81178444061, - "2029-01-01": 1080.31585192055, - "2028-01-01": 1059.11040497508, - "2027-01-01": 1037.61447245501, - "2026-01-01": 1012.66176159726, - "2025-01-01": 997.41465792937, - "2024-01-01": 975.768641195764, - "2023-01-01": 923, - "2015-01-01": 923 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1355.96337301065, - "2034-01-01": 1329.7063724814, - "2033-01-01": 1303.7735324525, - "2032-01-01": 1278.48901342434, - "2031-01-01": 1253.85281539689, - "2030-01-01": 1229.5407778698, - "2029-01-01": 1205.55290084308, - "2028-01-01": 1181.88918431672, - "2027-01-01": 1157.90130728999, - "2026-01-01": 1130.05592030897, - "2025-01-01": 1113.04127591251, - "2024-01-01": 1088.8859159606, - "2023-01-01": 1030, - "2015-01-01": 1030 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1479.71148666405, - "2034-01-01": 1451.05821618358, - "2033-01-01": 1422.75868978312, - "2032-01-01": 1395.16665154267, - "2031-01-01": 1368.28210146224, - "2030-01-01": 1341.75129546181, - "2029-01-01": 1315.57423354138, - "2028-01-01": 1289.75091570096, - "2027-01-01": 1263.57385378053, - "2026-01-01": 1233.18723730804, - "2025-01-01": 1214.61980012201, - "2024-01-01": 1188.25997042691, - "2023-01-01": 1124, - "2015-01-01": 1124 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1590.2949073756, - "2034-01-01": 1559.50028927915, - "2033-01-01": 1529.08585165303, - "2032-01-01": 1499.43177496757, - "2031-01-01": 1470.53805922276, - "2030-01-01": 1442.02452394828, - "2029-01-01": 1413.89116914412, - "2028-01-01": 1386.13799481028, - "2027-01-01": 1358.00464000613, - "2026-01-01": 1325.34713760508, - "2025-01-01": 1305.39209835176, - "2024-01-01": 1277.06231697127, - "2023-01-01": 1208, - "2015-01-01": 1208 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1691.66304302785, - "2034-01-01": 1658.90552295009, - "2033-01-01": 1626.55241670045, - "2032-01-01": 1595.00813810706, - "2031-01-01": 1564.27268716991, - "2030-01-01": 1533.94165006087, - "2029-01-01": 1504.01502677996, - "2028-01-01": 1474.49281732717, - "2027-01-01": 1444.56619404625, - "2026-01-01": 1409.82704621071, - "2025-01-01": 1388.60003839571, - "2024-01-01": 1358.46446797027, - "2023-01-01": 1285, - "2015-01-01": 1285 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1785.13236291499, - "2034-01-01": 1750.56489425706, - "2033-01-01": 1716.42418447145, - "2032-01-01": 1683.13699243048, - "2031-01-01": 1650.70331813416, - "2030-01-01": 1618.69640271015, - "2029-01-01": 1587.11624615846, - "2028-01-01": 1555.96284847909, - "2027-01-01": 1524.38269192741, - "2026-01-01": 1487.72410479511, - "2025-01-01": 1465.32424285182, - "2024-01-01": 1433.5235942161, - "2023-01-01": 1356, - "2015-01-01": 1356 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1872.01933633121, - "2034-01-01": 1835.76938026072, - "2033-01-01": 1799.9669545121, - "2032-01-01": 1765.05958940719, - "2031-01-01": 1731.047284946, - "2030-01-01": 1697.48251080666, - "2029-01-01": 1664.36526698918, - "2028-01-01": 1631.69555349356, - "2027-01-01": 1598.57830967609, - "2026-01-01": 1560.1354550285, - "2025-01-01": 1536.64533431805, - "2024-01-01": 1503.29686650095, - "2023-01-01": 1422, - "2015-01-01": 1422 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1987.86863421949, - "2034-01-01": 1949.37536159894, - "2033-01-01": 1911.35731456629, - "2032-01-01": 1874.28971870946, - "2031-01-01": 1838.17257402845, - "2030-01-01": 1802.53065493534, - "2029-01-01": 1767.36396143015, - "2028-01-01": 1732.67249351286, - "2027-01-01": 1697.50580000766, - "2026-01-01": 1656.68392200635, - "2025-01-01": 1631.74012293971, - "2024-01-01": 1596.32789621409, - "2023-01-01": 1510, - "2015-01-01": 1510 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2136.62966446241, - "2034-01-01": 2095.25576945369, - "2033-01-01": 2054.39266327225, - "2032-01-01": 2014.55113474534, - "2031-01-01": 1975.73118387296, - "2030-01-01": 1937.42202182786, - "2029-01-01": 1899.62364861002, - "2028-01-01": 1862.33606421945, - "2027-01-01": 1824.53769100161, - "2026-01-01": 1780.66093073928, - "2025-01-01": 1753.85047651069, - "2024-01-01": 1715.7881957321, - "2023-01-01": 1623, - "2015-01-01": 1623 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2274.85894035184, - "2034-01-01": 2230.80836082316, - "2033-01-01": 2187.30161560964, - "2032-01-01": 2144.88253902646, - "2031-01-01": 2103.55113107362, - "2030-01-01": 2062.76355743594, - "2029-01-01": 2022.51981811344, - "2028-01-01": 1982.8199131061, - "2027-01-01": 1942.5761737836, - "2026-01-01": 1895.86080611058, - "2025-01-01": 1867.31584929789, - "2024-01-01": 1826.79112891255, - "2023-01-01": 1728, - "2015-01-01": 1728 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2399.92352329943, - "2034-01-01": 2353.451181586, - "2033-01-01": 2307.55257248633, - "2032-01-01": 2262.80142861414, - "2031-01-01": 2219.19774996945, - "2030-01-01": 2176.1678039385, - "2029-01-01": 2133.71159052129, - "2028-01-01": 2091.82910971784, - "2027-01-01": 2049.37289630064, - "2026-01-01": 2000.08926477986, - "2025-01-01": 1969.97499610535, - "2024-01-01": 1927.22235417105, - "2023-01-01": 1823, - "2015-01-01": 1823 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2519.72222907027, - "2034-01-01": 2470.93009410621, - "2033-01-01": 2422.74033117873, - "2032-01-01": 2375.75531232444, - "2031-01-01": 2329.97503754335, - "2030-01-01": 2284.79713479884, - "2029-01-01": 2240.22160409093, - "2028-01-01": 2196.24844541961, - "2027-01-01": 2151.67291471169, - "2026-01-01": 2099.92915676832, - "2025-01-01": 2068.31165252093, - "2024-01-01": 2023.42489626077, - "2023-01-01": 1914, - "2015-01-01": 1914 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2642.15387342949, - "2034-01-01": 2590.99096074773, - "2033-01-01": 2540.45968896328, - "2032-01-01": 2491.19169897344, - "2031-01-01": 2443.18699077821, - "2030-01-01": 2395.81392348029, - "2029-01-01": 2349.07249707967, - "2028-01-01": 2302.96271157636, - "2027-01-01": 2256.22128517574, - "2026-01-01": 2201.96333209719, - "2025-01-01": 2168.80955413244, - "2024-01-01": 2121.74177993488, - "2023-01-01": 2007, - "2015-01-01": 2007 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2772.48433355381, - "2034-01-01": 2718.79768975322, - "2033-01-01": 2665.77384402425, - "2032-01-01": 2614.0755944385, - "2031-01-01": 2563.70294099597, - "2030-01-01": 2513.99308562506, - "2029-01-01": 2464.94602832575, - "2028-01-01": 2416.56176909806, - "2027-01-01": 2367.51471179876, - "2026-01-01": 2310.58035744727, - "2025-01-01": 2275.7911913318, - "2024-01-01": 2226.40168836217, - "2023-01-01": 2106, - "2015-01-01": 2106 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2896.23244720721, - "2034-01-01": 2840.14953345541, - "2033-01-01": 2784.75900135486, - "2032-01-01": 2730.75323255683, - "2031-01-01": 2678.13222706132, - "2030-01-01": 2626.20360321706, - "2029-01-01": 2574.96736102405, - "2028-01-01": 2524.42350048231, - "2027-01-01": 2473.1872582893, - "2026-01-01": 2413.71167444634, - "2025-01-01": 2377.36971554129, - "2024-01-01": 2325.77574282847, - "2023-01-01": 2200, - "2015-01-01": 2200 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3012.0817450955, - "2034-01-01": 2953.75551479362, - "2033-01-01": 2896.14936140906, - "2032-01-01": 2839.98336185911, - "2031-01-01": 2785.25751614377, - "2030-01-01": 2731.25174734574, - "2029-01-01": 2677.96605546501, - "2028-01-01": 2625.4004405016, - "2027-01-01": 2572.11474862088, - "2026-01-01": 2510.2601414242, - "2025-01-01": 2472.46450416294, - "2024-01-01": 2418.80677254161, - "2023-01-01": 2288, - "2015-01-01": 2288 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MN.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3694.01283948338, - "2034-01-01": 3622.48163221631, - "2033-01-01": 3551.83352627352, - "2032-01-01": 3482.95162297931, - "2031-01-01": 3415.83592233366, - "2030-01-01": 3349.6033230123, - "2029-01-01": 3284.25382501522, - "2028-01-01": 3219.78742834243, - "2027-01-01": 3154.43793034536, - "2026-01-01": 3078.57952658929, - "2025-01-01": 3032.22700991312, - "2024-01-01": 2966.4212428985, - "2023-01-01": 2806, - "2015-01-01": 2806 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS", - "description": null, - "label": "MS", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 680.614625093694, - "2034-01-01": 667.435140362021, - "2033-01-01": 654.418365318393, - "2032-01-01": 641.727009650856, - "2031-01-01": 629.361073359409, - "2030-01-01": 617.157846756008, - "2029-01-01": 605.117329840652, - "2028-01-01": 593.239522613342, - "2027-01-01": 581.199005697986, - "2026-01-01": 567.222243494891, - "2025-01-01": 558.681883152204, - "2024-01-01": 546.557299564691, - "2023-01-01": 517, - "2015-01-01": 517 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 983.402562756266, - "2034-01-01": 964.359864314177, - "2033-01-01": 945.552260914583, - "2032-01-01": 927.214847599979, - "2031-01-01": 909.347624370365, - "2030-01-01": 891.715496183246, - "2029-01-01": 874.318463038621, - "2028-01-01": 857.156524936492, - "2027-01-01": 839.759491791868, - "2026-01-01": 819.564827641554, - "2025-01-01": 807.225080686066, - "2024-01-01": 789.706581769486, - "2023-01-01": 747, - "2015-01-01": 747 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1138.74593947011, - "2034-01-01": 1116.69515747224, - "2033-01-01": 1094.91660735089, - "2032-01-01": 1073.68252098257, - "2031-01-01": 1052.99289836729, - "2030-01-01": 1032.57550762852, - "2029-01-01": 1012.43034876628, - "2028-01-01": 992.557421780543, - "2027-01-01": 972.412262918294, - "2026-01-01": 949.027544725494, - "2025-01-01": 934.738547246918, - "2024-01-01": 914.452735248468, - "2023-01-01": 865, - "2015-01-01": 865 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1269.07639959443, - "2034-01-01": 1244.50188647773, - "2033-01-01": 1220.23076241186, - "2032-01-01": 1196.56641644763, - "2031-01-01": 1173.50884858505, - "2030-01-01": 1150.75466977329, - "2029-01-01": 1128.30388001236, - "2028-01-01": 1106.15647930225, - "2027-01-01": 1083.70568954131, - "2026-01-01": 1057.64457007558, - "2025-01-01": 1041.72018444628, - "2024-01-01": 1019.11264367575, - "2023-01-01": 964, - "2015-01-01": 964 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1384.92569748272, - "2034-01-01": 1358.10786781595, - "2033-01-01": 1331.62112246605, - "2032-01-01": 1305.7965457499, - "2031-01-01": 1280.6341376675, - "2030-01-01": 1255.80281390197, - "2029-01-01": 1231.30257445332, - "2028-01-01": 1207.13341932154, - "2027-01-01": 1182.63317987289, - "2026-01-01": 1154.19303705343, - "2025-01-01": 1136.81497306793, - "2024-01-01": 1112.14367338889, - "2023-01-01": 1052, - "2015-01-01": 1052 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1488.92677172334, - "2034-01-01": 1460.09505560821, - "2033-01-01": 1431.61928660561, - "2032-01-01": 1403.85541182808, - "2031-01-01": 1376.80343127561, - "2030-01-01": 1350.10739783568, - "2029-01-01": 1323.76731150827, - "2028-01-01": 1297.7831722934, - "2027-01-01": 1271.443085966, - "2026-01-01": 1240.86722899946, - "2025-01-01": 1222.18415830782, - "2024-01-01": 1195.66016597227, - "2023-01-01": 1131, - "2015-01-01": 1131 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1583.71256090467, - "2034-01-01": 1553.04540397584, - "2033-01-01": 1522.75685392268, - "2032-01-01": 1493.22551762085, - "2031-01-01": 1464.45139507035, - "2030-01-01": 1436.05587939551, - "2029-01-01": 1408.03897059633, - "2028-01-01": 1380.40066867282, - "2027-01-01": 1352.38375987365, - "2026-01-01": 1319.86142925407, - "2025-01-01": 1299.9889853619, - "2024-01-01": 1271.7764630103, - "2023-01-01": 1203, - "2015-01-01": 1203 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1670.59953432089, - "2034-01-01": 1638.24988997951, - "2033-01-01": 1606.29962396333, - "2032-01-01": 1575.14811459756, - "2031-01-01": 1544.79536188219, - "2030-01-01": 1514.84198749202, - "2029-01-01": 1485.28799142706, - "2028-01-01": 1456.13337368729, - "2027-01-01": 1426.57937762233, - "2026-01-01": 1392.27277948746, - "2025-01-01": 1371.31007682814, - "2024-01-01": 1341.54973529515, - "2023-01-01": 1269, - "2015-01-01": 1269 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1752.22063056036, - "2034-01-01": 1718.29046774052, - "2033-01-01": 1684.77919581969, - "2032-01-01": 1652.10570569688, - "2031-01-01": 1620.2699973721, - "2030-01-01": 1588.85317994632, - "2029-01-01": 1557.85525341955, - "2028-01-01": 1527.2762177918, - "2027-01-01": 1496.27829126503, - "2026-01-01": 1460.29556304004, - "2025-01-01": 1438.30867790248, - "2024-01-01": 1407.09432441123, - "2023-01-01": 1331, - "2015-01-01": 1331 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1860.17111268354, - "2034-01-01": 1824.15058671477, - "2033-01-01": 1788.57475859746, - "2032-01-01": 1753.88832618309, - "2031-01-01": 1720.09128947165, - "2030-01-01": 1686.73895061168, - "2029-01-01": 1653.83130960318, - "2028-01-01": 1621.36836644614, - "2027-01-01": 1588.46072543763, - "2026-01-01": 1550.26117999667, - "2025-01-01": 1526.91973093629, - "2024-01-01": 1493.7823293712, - "2023-01-01": 1413, - "2015-01-01": 1413 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1999.71685786716, - "2034-01-01": 1960.99415514489, - "2033-01-01": 1922.74951048093, - "2032-01-01": 1885.46098193356, - "2031-01-01": 1849.12856950279, - "2030-01-01": 1813.27421513032, - "2029-01-01": 1777.89791881615, - "2028-01-01": 1742.99968056028, - "2027-01-01": 1707.62338424611, - "2026-01-01": 1666.55819703818, - "2025-01-01": 1641.46572632147, - "2024-01-01": 1605.84243334384, - "2023-01-01": 1519, - "2015-01-01": 1519 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2128.7308486973, - "2034-01-01": 2087.50990708973, - "2033-01-01": 2046.79786599582, - "2032-01-01": 2007.10362592927, - "2031-01-01": 1968.42718689007, - "2030-01-01": 1930.25964836454, - "2029-01-01": 1892.60101035268, - "2028-01-01": 1855.45127285449, - "2027-01-01": 1817.79263484264, - "2026-01-01": 1774.07808071806, - "2025-01-01": 1747.36674092285, - "2024-01-01": 1709.44517097893, - "2023-01-01": 1617, - "2015-01-01": 1617 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2247.21308517396, - "2034-01-01": 2203.69784254926, - "2033-01-01": 2160.71982514216, - "2032-01-01": 2118.81625817023, - "2031-01-01": 2077.98714163349, - "2030-01-01": 2037.69525031433, - "2029-01-01": 1997.94058421275, - "2028-01-01": 1958.72314332877, - "2027-01-01": 1918.9684772272, - "2026-01-01": 1872.82083103632, - "2025-01-01": 1844.62277474045, - "2024-01-01": 1804.59054227646, - "2023-01-01": 1707, - "2015-01-01": 1707 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2357.79650588551, - "2034-01-01": 2312.13991564483, - "2033-01-01": 2267.04698701207, - "2032-01-01": 2223.08138159513, - "2031-01-01": 2180.24309939401, - "2030-01-01": 2137.9684788008, - "2029-01-01": 2096.25751981549, - "2028-01-01": 2055.1102224381, - "2027-01-01": 2013.39926345279, - "2026-01-01": 1964.98073133336, - "2025-01-01": 1935.39507297021, - "2024-01-01": 1893.39288882082, - "2023-01-01": 1791, - "2015-01-01": 1791 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2473.64580377379, - "2034-01-01": 2425.74589698305, - "2033-01-01": 2378.43734706627, - "2032-01-01": 2332.3115108974, - "2031-01-01": 2287.36838847646, - "2030-01-01": 2243.01662292948, - "2029-01-01": 2199.25621425645, - "2028-01-01": 2156.08716245739, - "2027-01-01": 2112.32675378436, - "2026-01-01": 2061.52919831122, - "2025-01-01": 2030.48986159186, - "2024-01-01": 1986.42391853395, - "2023-01-01": 1879, - "2015-01-01": 1879 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2596.07744813301, - "2034-01-01": 2545.80676362458, - "2033-01-01": 2496.15670485081, - "2032-01-01": 2447.7478975464, - "2031-01-01": 2400.58034171133, - "2030-01-01": 2354.03341161093, - "2029-01-01": 2308.1071072452, - "2028-01-01": 2262.80142861414, - "2027-01-01": 2216.87512424841, - "2026-01-01": 2163.56337364009, - "2025-01-01": 2130.98776320338, - "2024-01-01": 2084.74080220807, - "2023-01-01": 1972, - "2015-01-01": 1972 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2710.61027672711, - "2034-01-01": 2658.12176790213, - "2033-01-01": 2606.28126535894, - "2032-01-01": 2555.73677537933, - "2031-01-01": 2506.4882979633, - "2030-01-01": 2457.88782682905, - "2029-01-01": 2409.9353619766, - "2028-01-01": 2362.63090340594, - "2027-01-01": 2314.67843855349, - "2026-01-01": 2259.01469894774, - "2025-01-01": 2225.00192922706, - "2024-01-01": 2176.71466112901, - "2023-01-01": 2059, - "2015-01-01": 2059 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2819.87722814447, - "2034-01-01": 2765.27286393704, - "2033-01-01": 2711.34262768278, - "2032-01-01": 2658.76064733488, - "2031-01-01": 2607.52692289334, - "2030-01-01": 2556.96732640497, - "2029-01-01": 2507.08185786978, - "2028-01-01": 2457.87051728777, - "2027-01-01": 2407.98504875259, - "2026-01-01": 2350.07745757458, - "2025-01-01": 2314.69360485884, - "2024-01-01": 2264.45983688118, - "2023-01-01": 2142, - "2015-01-01": 2142 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3457.04836653006, - "2034-01-01": 3390.10576129723, - "2033-01-01": 3323.98960798085, - "2032-01-01": 3259.52635849738, - "2031-01-01": 3196.71601284683, - "2030-01-01": 3134.73211911272, - "2029-01-01": 3073.57467729507, - "2028-01-01": 3013.24368739388, - "2027-01-01": 2952.08624557623, - "2026-01-01": 2881.09402595277, - "2025-01-01": 2837.71494227793, - "2024-01-01": 2776.13050030344, - "2023-01-01": 2626, - "2015-01-01": 2626 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 699.045195212286, - "2034-01-01": 685.508819211283, - "2033-01-01": 672.139558963379, - "2032-01-01": 659.104530221672, - "2031-01-01": 646.403732986163, - "2030-01-01": 633.870051503753, - "2029-01-01": 621.503485774442, - "2028-01-01": 609.304035798229, - "2027-01-01": 596.937470068918, - "2026-01-01": 582.582226877731, - "2025-01-01": 573.81059952383, - "2024-01-01": 561.357690655418, - "2023-01-01": 531, - "2015-01-01": 531 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1012.36488722834, - "2034-01-01": 992.761359648731, - "2033-01-01": 973.399850928132, - "2032-01-01": 954.522379925548, - "2031-01-01": 936.128946640979, - "2030-01-01": 917.977532215417, - "2029-01-01": 900.068136648862, - "2028-01-01": 882.400759941315, - "2027-01-01": 864.491364374761, - "2026-01-01": 843.701944386017, - "2025-01-01": 830.998777841479, - "2024-01-01": 812.964339197771, - "2023-01-01": 769, - "2015-01-01": 769 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1171.65767182473, - "2034-01-01": 1148.96958398878, - "2033-01-01": 1126.56159600265, - "2032-01-01": 1104.71380771617, - "2031-01-01": 1083.42621912935, - "2030-01-01": 1062.41873039235, - "2029-01-01": 1041.69134150518, - "2028-01-01": 1021.24405246784, - "2027-01-01": 1000.51666358067, - "2026-01-01": 976.456086480566, - "2025-01-01": 961.75411219625, - "2024-01-01": 940.882005053337, - "2023-01-01": 890, - "2015-01-01": 890 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1305.93753983161, - "2034-01-01": 1280.64924417626, - "2033-01-01": 1255.67314970183, - "2032-01-01": 1231.32145758926, - "2031-01-01": 1207.59416783856, - "2030-01-01": 1184.17907926878, - "2029-01-01": 1161.07619187994, - "2028-01-01": 1138.28550567202, - "2027-01-01": 1115.18261828318, - "2026-01-01": 1088.36453684126, - "2025-01-01": 1071.97761718953, - "2024-01-01": 1048.7134258572, - "2023-01-01": 992, - "2015-01-01": 992 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1424.41977630827, - "2034-01-01": 1396.8371796358, - "2033-01-01": 1369.59510884816, - "2032-01-01": 1343.03408983022, - "2031-01-01": 1317.15412258198, - "2030-01-01": 1291.61468121857, - "2029-01-01": 1266.41576574001, - "2028-01-01": 1241.5573761463, - "2027-01-01": 1216.35846066774, - "2026-01-01": 1187.10728715952, - "2025-01-01": 1169.23365100713, - "2024-01-01": 1143.85879715473, - "2023-01-01": 1082, - "2015-01-01": 1082 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1531.05378913727, - "2034-01-01": 1501.40632154938, - "2033-01-01": 1472.12487207987, - "2032-01-01": 1443.57545884709, - "2031-01-01": 1415.75808185105, - "2030-01-01": 1388.30672297338, - "2029-01-01": 1361.22138221408, - "2028-01-01": 1334.50205957315, - "2027-01-01": 1307.41671881385, - "2026-01-01": 1275.97576244595, - "2025-01-01": 1256.76408144297, - "2024-01-01": 1229.48963132251, - "2023-01-01": 1163, - "2015-01-01": 1163 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1628.47251690696, - "2034-01-01": 1596.93862403834, - "2033-01-01": 1565.79403848908, - "2032-01-01": 1535.42806757855, - "2031-01-01": 1505.84071130675, - "2030-01-01": 1476.64266235432, - "2029-01-01": 1447.83392072125, - "2028-01-01": 1419.41448640755, - "2027-01-01": 1390.60574477449, - "2026-01-01": 1357.16424604097, - "2025-01-01": 1336.73015369299, - "2024-01-01": 1307.72026994492, - "2023-01-01": 1237, - "2015-01-01": 1237 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1719.30889820573, - "2034-01-01": 1686.01604122398, - "2033-01-01": 1653.13420716793, - "2032-01-01": 1621.07441896328, - "2031-01-01": 1589.83667661004, - "2030-01-01": 1559.00995718249, - "2029-01-01": 1528.59426068064, - "2028-01-01": 1498.5895871045, - "2027-01-01": 1468.17389060265, - "2026-01-01": 1432.86702128497, - "2025-01-01": 1411.29311295315, - "2024-01-01": 1380.66505460636, - "2023-01-01": 1306, - "2015-01-01": 1306 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1803.56293303358, - "2034-01-01": 1768.63857310632, - "2033-01-01": 1734.14537811644, - "2032-01-01": 1700.5145130013, - "2031-01-01": 1667.74597776091, - "2030-01-01": 1635.40860745789, - "2029-01-01": 1603.50240209225, - "2028-01-01": 1572.02736166398, - "2027-01-01": 1540.12115629834, - "2026-01-01": 1503.08408817795, - "2025-01-01": 1480.45295922344, - "2024-01-01": 1448.32398530682, - "2023-01-01": 1370, - "2015-01-01": 1370 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1914.14635374513, - "2034-01-01": 1877.08064620189, - "2033-01-01": 1840.47253998635, - "2032-01-01": 1804.7796364262, - "2031-01-01": 1770.00193552143, - "2030-01-01": 1735.68183594436, - "2029-01-01": 1701.81933769499, - "2028-01-01": 1668.41444077331, - "2027-01-01": 1634.55194252393, - "2026-01-01": 1595.24398847499, - "2025-01-01": 1571.2252574532, - "2024-01-01": 1537.12633185118, - "2023-01-01": 1454, - "2015-01-01": 1454 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2057.6415068113, - "2034-01-01": 2017.797145814, - "2033-01-01": 1978.44469050802, - "2032-01-01": 1940.0760465847, - "2031-01-01": 1902.69121404402, - "2030-01-01": 1865.79828719466, - "2029-01-01": 1829.39726603663, - "2028-01-01": 1793.48815056993, - "2027-01-01": 1757.0871294119, - "2026-01-01": 1714.83243052711, - "2025-01-01": 1689.01312063229, - "2024-01-01": 1652.35794820041, - "2023-01-01": 1563, - "2015-01-01": 1563 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2190.604905524, - "2034-01-01": 2148.18582894082, - "2033-01-01": 2106.29044466113, - "2032-01-01": 2065.44244498844, - "2031-01-01": 2025.64182992274, - "2030-01-01": 1986.36490716054, - "2029-01-01": 1947.61167670183, - "2028-01-01": 1909.38213854662, - "2027-01-01": 1870.62890808791, - "2026-01-01": 1825.6437392176, - "2025-01-01": 1798.1560030276, - "2024-01-01": 1759.13219821208, - "2023-01-01": 1664, - "2015-01-01": 1664 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2311.72008058903, - "2034-01-01": 2266.95571852168, - "2033-01-01": 2222.74400289961, - "2032-01-01": 2179.63758016809, - "2031-01-01": 2137.63645032712, - "2030-01-01": 2096.18796693143, - "2029-01-01": 2055.29212998102, - "2028-01-01": 2014.94893947588, - "2027-01-01": 1974.05310252546, - "2026-01-01": 1926.58077287626, - "2025-01-01": 1897.57328204114, - "2024-01-01": 1856.391911094, - "2023-01-01": 1756, - "2015-01-01": 1756 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2426.25290918313, - "2034-01-01": 2379.27072279924, - "2033-01-01": 2332.86856340773, - "2032-01-01": 2287.62645800102, - "2031-01-01": 2243.54440657909, - "2030-01-01": 2200.04238214956, - "2029-01-01": 2157.12038471242, - "2028-01-01": 2114.77841426768, - "2027-01-01": 2071.85641683054, - "2026-01-01": 2022.03209818391, - "2025-01-01": 1991.58744806482, - "2024-01-01": 1948.36577001494, - "2023-01-01": 1843, - "2015-01-01": 1843 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2544.73514565979, - "2034-01-01": 2495.45865825877, - "2033-01-01": 2446.79052255407, - "2032-01-01": 2399.33909024198, - "2031-01-01": 2353.10436132251, - "2030-01-01": 2307.47798409935, - "2029-01-01": 2262.4599585725, - "2028-01-01": 2218.05028474195, - "2027-01-01": 2173.0322592151, - "2026-01-01": 2120.77484850217, - "2025-01-01": 2088.84348188242, - "2024-01-01": 2043.51114131247, - "2023-01-01": 1933, - "2015-01-01": 1933 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2671.11619790156, - "2034-01-01": 2619.39245608228, - "2033-01-01": 2568.30727897683, - "2032-01-01": 2518.49923129901, - "2031-01-01": 2469.96831304882, - "2030-01-01": 2422.07595951246, - "2029-01-01": 2374.82217068991, - "2028-01-01": 2328.20694658118, - "2027-01-01": 2280.95315775863, - "2026-01-01": 2226.10044884165, - "2025-01-01": 2192.58325128786, - "2024-01-01": 2144.99953736317, - "2023-01-01": 2029, - "2015-01-01": 2029 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2789.59843437822, - "2034-01-01": 2735.58039154182, - "2033-01-01": 2682.22923812316, - "2032-01-01": 2630.21186353997, - "2031-01-01": 2579.52826779224, - "2030-01-01": 2529.51156146225, - "2029-01-01": 2480.16174454999, - "2028-01-01": 2431.47881705546, - "2027-01-01": 2382.1290001432, - "2026-01-01": 2324.84319915991, - "2025-01-01": 2289.83928510545, - "2024-01-01": 2240.1449086607, - "2023-01-01": 2119, - "2015-01-01": 2119 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2901.49832438395, - "2034-01-01": 2845.31344169805, - "2033-01-01": 2789.82219953915, - "2032-01-01": 2735.71823843421, - "2031-01-01": 2683.00155838325, - "2030-01-01": 2630.97851885927, - "2029-01-01": 2579.64911986228, - "2028-01-01": 2529.01336139227, - "2027-01-01": 2477.68396239528, - "2026-01-01": 2418.10024112716, - "2025-01-01": 2381.69220593319, - "2024-01-01": 2330.00442599725, - "2023-01-01": 2204, - "2015-01-01": 2204 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3557.10003288813, - "2034-01-01": 3488.22001790751, - "2033-01-01": 3420.1903734822, - "2032-01-01": 3353.86147016753, - "2031-01-01": 3289.23330796349, - "2030-01-01": 3225.45551631477, - "2029-01-01": 3162.52809522136, - "2028-01-01": 3100.45104468327, - "2027-01-01": 3037.52362358986, - "2026-01-01": 2964.47679288819, - "2025-01-01": 2919.8422597239, - "2024-01-01": 2856.47548051024, - "2023-01-01": 2702, - "2015-01-01": 2702 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 726.691050390173, - "2034-01-01": 712.619337485175, - "2033-01-01": 698.721349430857, - "2032-01-01": 685.170811077896, - "2031-01-01": 671.967722426294, - "2030-01-01": 658.938358625371, - "2029-01-01": 646.082719675126, - "2028-01-01": 633.40080557556, - "2027-01-01": 620.545166625316, - "2026-01-01": 605.622201951992, - "2025-01-01": 596.50367408127, - "2024-01-01": 583.558277291508, - "2023-01-01": 552, - "2015-01-01": 552 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1050.54249675971, - "2034-01-01": 1030.19969440792, - "2033-01-01": 1010.10803776417, - "2032-01-01": 990.518672536524, - "2031-01-01": 971.431598724969, - "2030-01-01": 952.59567062146, - "2029-01-01": 934.010888225997, - "2028-01-01": 915.677251538582, - "2027-01-01": 897.09246914312, - "2026-01-01": 875.519052821901, - "2025-01-01": 862.336833182705, - "2024-01-01": 843.622292171419, - "2023-01-01": 798, - "2015-01-01": 798 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1215.10115853284, - "2034-01-01": 1191.57182699061, - "2033-01-01": 1168.33298102297, - "2032-01-01": 1145.67510620453, - "2031-01-01": 1123.59820253527, - "2030-01-01": 1101.81178444061, - "2029-01-01": 1080.31585192055, - "2028-01-01": 1059.11040497508, - "2027-01-01": 1037.61447245501, - "2026-01-01": 1012.66176159726, - "2025-01-01": 997.41465792937, - "2024-01-01": 975.768641195764, - "2023-01-01": 923, - "2015-01-01": 923 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1355.96337301065, - "2034-01-01": 1329.7063724814, - "2033-01-01": 1303.7735324525, - "2032-01-01": 1278.48901342434, - "2031-01-01": 1253.85281539689, - "2030-01-01": 1229.5407778698, - "2029-01-01": 1205.55290084308, - "2028-01-01": 1181.88918431672, - "2027-01-01": 1157.90130728999, - "2026-01-01": 1130.05592030897, - "2025-01-01": 1113.04127591251, - "2024-01-01": 1088.8859159606, - "2023-01-01": 1030, - "2015-01-01": 1030 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1479.71148666405, - "2034-01-01": 1451.05821618358, - "2033-01-01": 1422.75868978312, - "2032-01-01": 1395.16665154267, - "2031-01-01": 1368.28210146224, - "2030-01-01": 1341.75129546181, - "2029-01-01": 1315.57423354138, - "2028-01-01": 1289.75091570096, - "2027-01-01": 1263.57385378053, - "2026-01-01": 1233.18723730804, - "2025-01-01": 1214.61980012201, - "2024-01-01": 1188.25997042691, - "2023-01-01": 1124, - "2015-01-01": 1124 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1590.2949073756, - "2034-01-01": 1559.50028927915, - "2033-01-01": 1529.08585165303, - "2032-01-01": 1499.43177496757, - "2031-01-01": 1470.53805922276, - "2030-01-01": 1442.02452394828, - "2029-01-01": 1413.89116914412, - "2028-01-01": 1386.13799481028, - "2027-01-01": 1358.00464000613, - "2026-01-01": 1325.34713760508, - "2025-01-01": 1305.39209835176, - "2024-01-01": 1277.06231697127, - "2023-01-01": 1208, - "2015-01-01": 1208 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1691.66304302785, - "2034-01-01": 1658.90552295009, - "2033-01-01": 1626.55241670045, - "2032-01-01": 1595.00813810706, - "2031-01-01": 1564.27268716991, - "2030-01-01": 1533.94165006087, - "2029-01-01": 1504.01502677996, - "2028-01-01": 1474.49281732717, - "2027-01-01": 1444.56619404625, - "2026-01-01": 1409.82704621071, - "2025-01-01": 1388.60003839571, - "2024-01-01": 1358.46446797027, - "2023-01-01": 1285, - "2015-01-01": 1285 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1785.13236291499, - "2034-01-01": 1750.56489425706, - "2033-01-01": 1716.42418447145, - "2032-01-01": 1683.13699243048, - "2031-01-01": 1650.70331813416, - "2030-01-01": 1618.69640271015, - "2029-01-01": 1587.11624615846, - "2028-01-01": 1555.96284847909, - "2027-01-01": 1524.38269192741, - "2026-01-01": 1487.72410479511, - "2025-01-01": 1465.32424285182, - "2024-01-01": 1433.5235942161, - "2023-01-01": 1356, - "2015-01-01": 1356 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1872.01933633121, - "2034-01-01": 1835.76938026072, - "2033-01-01": 1799.9669545121, - "2032-01-01": 1765.05958940719, - "2031-01-01": 1731.047284946, - "2030-01-01": 1697.48251080666, - "2029-01-01": 1664.36526698918, - "2028-01-01": 1631.69555349356, - "2027-01-01": 1598.57830967609, - "2026-01-01": 1560.1354550285, - "2025-01-01": 1536.64533431805, - "2024-01-01": 1503.29686650095, - "2023-01-01": 1422, - "2015-01-01": 1422 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1987.86863421949, - "2034-01-01": 1949.37536159894, - "2033-01-01": 1911.35731456629, - "2032-01-01": 1874.28971870946, - "2031-01-01": 1838.17257402845, - "2030-01-01": 1802.53065493534, - "2029-01-01": 1767.36396143015, - "2028-01-01": 1732.67249351286, - "2027-01-01": 1697.50580000766, - "2026-01-01": 1656.68392200635, - "2025-01-01": 1631.74012293971, - "2024-01-01": 1596.32789621409, - "2023-01-01": 1510, - "2015-01-01": 1510 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2136.62966446241, - "2034-01-01": 2095.25576945369, - "2033-01-01": 2054.39266327225, - "2032-01-01": 2014.55113474534, - "2031-01-01": 1975.73118387296, - "2030-01-01": 1937.42202182786, - "2029-01-01": 1899.62364861002, - "2028-01-01": 1862.33606421945, - "2027-01-01": 1824.53769100161, - "2026-01-01": 1780.66093073928, - "2025-01-01": 1753.85047651069, - "2024-01-01": 1715.7881957321, - "2023-01-01": 1623, - "2015-01-01": 1623 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2274.85894035184, - "2034-01-01": 2230.80836082316, - "2033-01-01": 2187.30161560964, - "2032-01-01": 2144.88253902646, - "2031-01-01": 2103.55113107362, - "2030-01-01": 2062.76355743594, - "2029-01-01": 2022.51981811344, - "2028-01-01": 1982.8199131061, - "2027-01-01": 1942.5761737836, - "2026-01-01": 1895.86080611058, - "2025-01-01": 1867.31584929789, - "2024-01-01": 1826.79112891255, - "2023-01-01": 1728, - "2015-01-01": 1728 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2399.92352329943, - "2034-01-01": 2353.451181586, - "2033-01-01": 2307.55257248633, - "2032-01-01": 2262.80142861414, - "2031-01-01": 2219.19774996945, - "2030-01-01": 2176.1678039385, - "2029-01-01": 2133.71159052129, - "2028-01-01": 2091.82910971784, - "2027-01-01": 2049.37289630064, - "2026-01-01": 2000.08926477986, - "2025-01-01": 1969.97499610535, - "2024-01-01": 1927.22235417105, - "2023-01-01": 1823, - "2015-01-01": 1823 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2519.72222907027, - "2034-01-01": 2470.93009410621, - "2033-01-01": 2422.74033117873, - "2032-01-01": 2375.75531232444, - "2031-01-01": 2329.97503754335, - "2030-01-01": 2284.79713479884, - "2029-01-01": 2240.22160409093, - "2028-01-01": 2196.24844541961, - "2027-01-01": 2151.67291471169, - "2026-01-01": 2099.92915676832, - "2025-01-01": 2068.31165252093, - "2024-01-01": 2023.42489626077, - "2023-01-01": 1914, - "2015-01-01": 1914 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2642.15387342949, - "2034-01-01": 2590.99096074773, - "2033-01-01": 2540.45968896328, - "2032-01-01": 2491.19169897344, - "2031-01-01": 2443.18699077821, - "2030-01-01": 2395.81392348029, - "2029-01-01": 2349.07249707967, - "2028-01-01": 2302.96271157636, - "2027-01-01": 2256.22128517574, - "2026-01-01": 2201.96333209719, - "2025-01-01": 2168.80955413244, - "2024-01-01": 2121.74177993488, - "2023-01-01": 2007, - "2015-01-01": 2007 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2772.48433355381, - "2034-01-01": 2718.79768975322, - "2033-01-01": 2665.77384402425, - "2032-01-01": 2614.0755944385, - "2031-01-01": 2563.70294099597, - "2030-01-01": 2513.99308562506, - "2029-01-01": 2464.94602832575, - "2028-01-01": 2416.56176909806, - "2027-01-01": 2367.51471179876, - "2026-01-01": 2310.58035744727, - "2025-01-01": 2275.7911913318, - "2024-01-01": 2226.40168836217, - "2023-01-01": 2106, - "2015-01-01": 2106 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2896.23244720721, - "2034-01-01": 2840.14953345541, - "2033-01-01": 2784.75900135486, - "2032-01-01": 2730.75323255683, - "2031-01-01": 2678.13222706132, - "2030-01-01": 2626.20360321706, - "2029-01-01": 2574.96736102405, - "2028-01-01": 2524.42350048231, - "2027-01-01": 2473.1872582893, - "2026-01-01": 2413.71167444634, - "2025-01-01": 2377.36971554129, - "2024-01-01": 2325.77574282847, - "2023-01-01": 2200, - "2015-01-01": 2200 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3012.0817450955, - "2034-01-01": 2953.75551479362, - "2033-01-01": 2896.14936140906, - "2032-01-01": 2839.98336185911, - "2031-01-01": 2785.25751614377, - "2030-01-01": 2731.25174734574, - "2029-01-01": 2677.96605546501, - "2028-01-01": 2625.4004405016, - "2027-01-01": 2572.11474862088, - "2026-01-01": 2510.2601414242, - "2025-01-01": 2472.46450416294, - "2024-01-01": 2418.80677254161, - "2023-01-01": 2288, - "2015-01-01": 2288 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3694.01283948338, - "2034-01-01": 3622.48163221631, - "2033-01-01": 3551.83352627352, - "2032-01-01": 3482.95162297931, - "2031-01-01": 3415.83592233366, - "2030-01-01": 3349.6033230123, - "2029-01-01": 3284.25382501522, - "2028-01-01": 3219.78742834243, - "2027-01-01": 3154.43793034536, - "2026-01-01": 3078.57952658929, - "2025-01-01": 3032.22700991312, - "2024-01-01": 2966.4212428985, - "2023-01-01": 2806, - "2015-01-01": 2806 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 899.14852792842, - "2034-01-01": 881.737332431838, - "2033-01-01": 864.541089966078, - "2032-01-01": 847.774753561962, - "2031-01-01": 831.438323219491, - "2030-01-01": 815.316845907841, - "2029-01-01": 799.410321627013, - "2028-01-01": 783.718750377007, - "2027-01-01": 767.812226096179, - "2026-01-01": 749.34776074857, - "2025-01-01": 738.065234415774, - "2024-01-01": 722.047651069021, - "2023-01-01": 683, - "2015-01-01": 683 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1208.51881206192, - "2034-01-01": 1185.1169416873, - "2033-01-01": 1162.00398329262, - "2032-01-01": 1139.46884885781, - "2031-01-01": 1117.51153838286, - "2030-01-01": 1095.84313988784, - "2029-01-01": 1074.46365337276, - "2028-01-01": 1053.37307883762, - "2027-01-01": 1031.99359232254, - "2026-01-01": 1007.17605324625, - "2025-01-01": 992.011544939503, - "2024-01-01": 970.48278723479, - "2023-01-01": 918, - "2015-01-01": 918 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1358.59631159902, - "2034-01-01": 1332.28832660272, - "2033-01-01": 1306.30513154465, - "2032-01-01": 1280.97151636302, - "2031-01-01": 1256.28748105785, - "2030-01-01": 1231.92823569091, - "2029-01-01": 1207.89378026219, - "2028-01-01": 1184.1841147717, - "2027-01-01": 1160.14965934298, - "2026-01-01": 1132.25020364938, - "2025-01-01": 1115.20252110846, - "2024-01-01": 1091.00025754499, - "2023-01-01": 1032, - "2015-01-01": 1032 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1483.6608945466, - "2034-01-01": 1454.93114736557, - "2033-01-01": 1426.55608842133, - "2032-01-01": 1398.89040595071, - "2031-01-01": 1371.93409995368, - "2030-01-01": 1345.33248219347, - "2029-01-01": 1319.08555267005, - "2028-01-01": 1293.19331138344, - "2027-01-01": 1266.94638186002, - "2026-01-01": 1236.47866231865, - "2025-01-01": 1217.86166791593, - "2024-01-01": 1191.43148280349, - "2023-01-01": 1127, - "2015-01-01": 1127 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1592.92784596397, - "2034-01-01": 1562.08224340047, - "2033-01-01": 1531.61745074518, - "2032-01-01": 1501.91427790626, - "2031-01-01": 1472.97272488372, - "2030-01-01": 1444.41198176938, - "2029-01-01": 1416.23204856323, - "2028-01-01": 1388.43292526527, - "2027-01-01": 1360.25299205912, - "2026-01-01": 1327.54142094549, - "2025-01-01": 1307.55334354771, - "2024-01-01": 1279.17665855566, - "2023-01-01": 1210, - "2015-01-01": 1210 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1689.03010443948, - "2034-01-01": 1656.32356882877, - "2033-01-01": 1624.02081760831, - "2032-01-01": 1592.52563516837, - "2031-01-01": 1561.83802150894, - "2030-01-01": 1531.55419223977, - "2029-01-01": 1501.67414736085, - "2028-01-01": 1472.19788687218, - "2027-01-01": 1442.31784199326, - "2026-01-01": 1407.6327628703, - "2025-01-01": 1386.43879319976, - "2024-01-01": 1356.35012638588, - "2023-01-01": 1283, - "2015-01-01": 1283 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1777.23354714988, - "2034-01-01": 1742.81903189309, - "2033-01-01": 1708.82938719503, - "2032-01-01": 1675.68948361442, - "2031-01-01": 1643.39932115126, - "2030-01-01": 1611.53402924683, - "2029-01-01": 1580.09360790112, - "2028-01-01": 1549.07805711414, - "2027-01-01": 1517.63763576844, - "2026-01-01": 1481.14125477389, - "2025-01-01": 1458.84050726398, - "2024-01-01": 1427.18056946293, - "2023-01-01": 1350, - "2015-01-01": 1350 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1857.53817409517, - "2034-01-01": 1821.56863259345, - "2033-01-01": 1786.04315950532, - "2032-01-01": 1751.40582324441, - "2031-01-01": 1717.65662381069, - "2030-01-01": 1684.35149279058, - "2029-01-01": 1651.49043018406, - "2028-01-01": 1619.07343599115, - "2027-01-01": 1586.21237338464, - "2026-01-01": 1548.06689665627, - "2025-01-01": 1524.75848574035, - "2024-01-01": 1491.66798778681, - "2023-01-01": 1411, - "2015-01-01": 1411 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1931.26045456953, - "2034-01-01": 1893.86334799049, - "2033-01-01": 1856.92793408527, - "2032-01-01": 1820.91590552767, - "2031-01-01": 1785.82726231771, - "2030-01-01": 1751.20031178156, - "2029-01-01": 1717.03505391922, - "2028-01-01": 1683.3314887307, - "2027-01-01": 1649.16623086837, - "2026-01-01": 1609.50683018763, - "2025-01-01": 1585.27335122685, - "2024-01-01": 1550.86955214971, - "2023-01-01": 1467, - "2015-01-01": 1467 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2028.67918233923, - "2034-01-01": 1989.39565047945, - "2033-01-01": 1950.59710049448, - "2032-01-01": 1912.76851425913, - "2031-01-01": 1875.9098917734, - "2030-01-01": 1839.53625116249, - "2029-01-01": 1803.64759242639, - "2028-01-01": 1768.24391556511, - "2027-01-01": 1732.35525682901, - "2026-01-01": 1690.69531378264, - "2025-01-01": 1665.23942347688, - "2024-01-01": 1629.10019077213, - "2023-01-01": 1541, - "2015-01-01": 1541 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2153.74376528682, - "2034-01-01": 2112.03847124229, - "2033-01-01": 2070.84805737116, - "2032-01-01": 2030.68740384681, - "2031-01-01": 1991.55651066923, - "2030-01-01": 1952.94049766505, - "2029-01-01": 1914.83936483425, - "2028-01-01": 1877.25311217684, - "2027-01-01": 1839.15197934605, - "2026-01-01": 1794.92377245192, - "2025-01-01": 1767.89857028434, - "2024-01-01": 1729.53141603063, - "2023-01-01": 1636, - "2015-01-01": 1636 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2266.96012458673, - "2034-01-01": 2223.06249845919, - "2033-01-01": 2179.70681833322, - "2032-01-01": 2137.43503021039, - "2031-01-01": 2096.24713409072, - "2030-01-01": 2055.60118397262, - "2029-01-01": 2015.4971798561, - "2028-01-01": 1975.93512174115, - "2027-01-01": 1935.83111762463, - "2026-01-01": 1889.27795608937, - "2025-01-01": 1860.83211371005, - "2024-01-01": 1820.44810415938, - "2023-01-01": 1722, - "2015-01-01": 1722 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2370.96119882736, - "2034-01-01": 2325.04968625145, - "2033-01-01": 2279.70498247278, - "2032-01-01": 2235.49389628857, - "2031-01-01": 2192.41642769883, - "2030-01-01": 2149.90576790633, - "2029-01-01": 2107.96191691105, - "2028-01-01": 2066.58487471302, - "2027-01-01": 2024.64102371774, - "2026-01-01": 1975.95214803539, - "2025-01-01": 1946.20129894994, - "2024-01-01": 1903.96459674276, - "2023-01-01": 1801, - "2015-01-01": 1801 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2468.37992659705, - "2034-01-01": 2420.5819887404, - "2033-01-01": 2373.37414888199, - "2032-01-01": 2327.34650502003, - "2031-01-01": 2282.49905715453, - "2030-01-01": 2238.24170728726, - "2029-01-01": 2194.57445541823, - "2028-01-01": 2151.49730154742, - "2027-01-01": 2107.83004967838, - "2026-01-01": 2057.14063163041, - "2025-01-01": 2026.16737119997, - "2024-01-01": 1982.19523536518, - "2023-01-01": 1875, - "2015-01-01": 1875 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2567.11512366094, - "2034-01-01": 2517.40526829002, - "2033-01-01": 2468.30911483727, - "2032-01-01": 2420.44036522083, - "2031-01-01": 2373.79901944071, - "2030-01-01": 2327.77137557876, - "2029-01-01": 2282.35743363496, - "2028-01-01": 2237.55719360932, - "2027-01-01": 2192.14325166552, - "2026-01-01": 2139.42625689562, - "2025-01-01": 2107.21406604796, - "2024-01-01": 2061.48304477978, - "2023-01-01": 1950, - "2015-01-01": 1950 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2672.43266719574, - "2034-01-01": 2620.68343314295, - "2033-01-01": 2569.5730785229, - "2032-01-01": 2519.74048276835, - "2031-01-01": 2471.18564587931, - "2030-01-01": 2423.26968842301, - "2029-01-01": 2375.99261039947, - "2028-01-01": 2329.35441180867, - "2027-01-01": 2282.07733378513, - "2026-01-01": 2227.19759051185, - "2025-01-01": 2193.66387388583, - "2024-01-01": 2146.05670815536, - "2023-01-01": 2030, - "2015-01-01": 2030 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2771.16786425963, - "2034-01-01": 2717.50671269256, - "2033-01-01": 2664.50804447818, - "2032-01-01": 2612.83434296915, - "2031-01-01": 2562.48560816549, - "2030-01-01": 2512.7993567145, - "2029-01-01": 2463.7755886162, - "2028-01-01": 2415.41430387057, - "2027-01-01": 2366.39053577226, - "2026-01-01": 2309.48321577707, - "2025-01-01": 2274.71056873383, - "2024-01-01": 2225.34451756997, - "2023-01-01": 2105, - "2015-01-01": 2105 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2864.63718414677, - "2034-01-01": 2809.16608399953, - "2033-01-01": 2754.37981224917, - "2032-01-01": 2700.96319729258, - "2031-01-01": 2648.91623912974, - "2030-01-01": 2597.55410936378, - "2029-01-01": 2546.8768079947, - "2028-01-01": 2496.8843350225, - "2027-01-01": 2446.20703365342, - "2026-01-01": 2387.38027436147, - "2025-01-01": 2351.43477318993, - "2024-01-01": 2300.4036438158, - "2023-01-01": 2176, - "2015-01-01": 2176 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3397.80724829173, - "2034-01-01": 3332.01179356746, - "2033-01-01": 3267.02862840768, - "2032-01-01": 3203.6700423769, - "2031-01-01": 3141.93603547512, - "2030-01-01": 3081.01431813783, - "2029-01-01": 3020.90489036504, - "2028-01-01": 2961.60775215674, - "2027-01-01": 2901.49832438395, - "2026-01-01": 2831.72265079364, - "2025-01-01": 2789.08692536913, - "2024-01-01": 2728.55781465468, - "2023-01-01": 2581, - "2015-01-01": 2581 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1070.28953617248, - "2034-01-01": 1049.56435031784, - "2033-01-01": 1029.09503095523, - "2032-01-01": 1009.13744457668, - "2031-01-01": 989.691591182205, - "2030-01-01": 970.501604279758, - "2029-01-01": 951.567483869343, - "2028-01-01": 932.889229950961, - "2027-01-01": 913.955109540547, - "2026-01-01": 891.976177874944, - "2025-01-01": 878.546172152305, - "2024-01-01": 859.47985405434, - "2023-01-01": 813, - "2015-01-01": 813 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1433.63506136757, - "2034-01-01": 1405.87401906043, - "2033-01-01": 1378.45570567066, - "2032-01-01": 1351.72285011563, - "2031-01-01": 1325.67545239535, - "2030-01-01": 1299.97078359244, - "2029-01-01": 1274.60884370691, - "2028-01-01": 1249.58963273874, - "2027-01-01": 1224.2276928532, - "2026-01-01": 1194.78727885094, - "2025-01-01": 1176.79800919294, - "2024-01-01": 1151.25899270009, - "2023-01-01": 1089, - "2015-01-01": 1089 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1610.04194678837, - "2034-01-01": 1578.86494518907, - "2033-01-01": 1548.07284484409, - "2032-01-01": 1518.05054700773, - "2031-01-01": 1488.79805168, - "2030-01-01": 1459.93045760657, - "2029-01-01": 1431.44776478746, - "2028-01-01": 1403.34997322266, - "2027-01-01": 1374.86728040355, - "2026-01-01": 1341.80426265813, - "2025-01-01": 1321.60143732136, - "2024-01-01": 1292.91987885419, - "2023-01-01": 1223, - "2015-01-01": 1223 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1757.4865077371, - "2034-01-01": 1723.45437598317, - "2033-01-01": 1689.84239400397, - "2032-01-01": 1657.07071157426, - "2031-01-01": 1625.13932869403, - "2030-01-01": 1593.62809558853, - "2029-01-01": 1562.53701225778, - "2028-01-01": 1531.86607870176, - "2027-01-01": 1500.77499537101, - "2026-01-01": 1464.68412972085, - "2025-01-01": 1442.63116829438, - "2024-01-01": 1411.32300758001, - "2023-01-01": 1335, - "2015-01-01": 1335 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1885.18402927306, - "2034-01-01": 1848.67915086734, - "2033-01-01": 1812.6249499728, - "2032-01-01": 1777.47210410063, - "2031-01-01": 1743.22061325082, - "2030-01-01": 1709.41979991219, - "2029-01-01": 1676.06966408475, - "2028-01-01": 1643.17020576848, - "2027-01-01": 1609.82006994104, - "2026-01-01": 1571.10687173053, - "2025-01-01": 1547.45156029779, - "2024-01-01": 1513.8685744229, - "2023-01-01": 1432, - "2015-01-01": 1432 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1997.08391927879, - "2034-01-01": 1958.41220102357, - "2033-01-01": 1920.21791138879, - "2032-01-01": 1882.97847899487, - "2031-01-01": 1846.69390384183, - "2030-01-01": 1810.88675730922, - "2029-01-01": 1775.55703939704, - "2028-01-01": 1740.7047501053, - "2027-01-01": 1705.37503219312, - "2026-01-01": 1664.36391369777, - "2025-01-01": 1639.30448112552, - "2024-01-01": 1603.72809175945, - "2023-01-01": 1517, - "2015-01-01": 1517 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2099.76852422523, - "2034-01-01": 2059.10841175517, - "2033-01-01": 2018.95027598228, - "2032-01-01": 1979.7960936037, - "2031-01-01": 1941.64586461945, - "2030-01-01": 1903.99761233237, - "2029-01-01": 1866.85133674244, - "2028-01-01": 1830.20703784967, - "2027-01-01": 1793.06076225974, - "2026-01-01": 1749.9409639736, - "2025-01-01": 1723.59304376744, - "2024-01-01": 1686.18741355064, - "2023-01-01": 1595, - "2015-01-01": 1595 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2193.23784411237, - "2034-01-01": 2150.76778306214, - "2033-01-01": 2108.82204375327, - "2032-01-01": 2067.92494792713, - "2031-01-01": 2028.07649558371, - "2030-01-01": 1988.75236498164, - "2029-01-01": 1949.95255612094, - "2028-01-01": 1911.6770690016, - "2027-01-01": 1872.8772601409, - "2026-01-01": 1827.838022558, - "2025-01-01": 1800.31724822354, - "2024-01-01": 1761.24653979647, - "2023-01-01": 1666, - "2015-01-01": 1666 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2278.8083482344, - "2034-01-01": 2234.68129200514, - "2033-01-01": 2191.09901424785, - "2032-01-01": 2148.60629343449, - "2031-01-01": 2107.20312956506, - "2030-01-01": 2066.3447441676, - "2029-01-01": 2026.03113724211, - "2028-01-01": 1986.26230878858, - "2027-01-01": 1945.94870186308, - "2026-01-01": 1899.15223112119, - "2025-01-01": 1870.55771709181, - "2024-01-01": 1829.96264128913, - "2023-01-01": 1731, - "2015-01-01": 1731 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2393.3411768285, - "2034-01-01": 2346.9962962827, - "2033-01-01": 2301.22357475597, - "2032-01-01": 2256.59517126742, - "2031-01-01": 2213.11108581703, - "2030-01-01": 2170.19915938573, - "2029-01-01": 2127.85939197351, - "2028-01-01": 2086.09178358038, - "2027-01-01": 2043.75201616816, - "2026-01-01": 1994.60355642884, - "2025-01-01": 1964.57188311549, - "2024-01-01": 1921.93650021007, - "2023-01-01": 1818, - "2015-01-01": 1818 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2538.15279918886, - "2034-01-01": 2489.00377295547, - "2033-01-01": 2440.46152482372, - "2032-01-01": 2393.13283289526, - "2031-01-01": 2347.0176971701, - "2030-01-01": 2301.50933954658, - "2029-01-01": 2256.60776002472, - "2028-01-01": 2212.31295860449, - "2027-01-01": 2167.41137908263, - "2026-01-01": 2115.28914015116, - "2025-01-01": 2083.44036889255, - "2024-01-01": 2038.2252873515, - "2023-01-01": 1928, - "2015-01-01": 1928 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2671.11619790156, - "2034-01-01": 2619.39245608228, - "2033-01-01": 2568.30727897683, - "2032-01-01": 2518.49923129901, - "2031-01-01": 2469.96831304882, - "2030-01-01": 2422.07595951246, - "2029-01-01": 2374.82217068991, - "2028-01-01": 2328.20694658118, - "2027-01-01": 2280.95315775863, - "2026-01-01": 2226.10044884165, - "2025-01-01": 2192.58325128786, - "2024-01-01": 2144.99953736317, - "2023-01-01": 2029, - "2015-01-01": 2029 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2792.23137296659, - "2034-01-01": 2738.16234566315, - "2033-01-01": 2684.7608372153, - "2032-01-01": 2632.69436647866, - "2031-01-01": 2581.96293345321, - "2030-01-01": 2531.89901928335, - "2029-01-01": 2482.5026239691, - "2028-01-01": 2433.77374751044, - "2027-01-01": 2384.37735219619, - "2026-01-01": 2327.03748250032, - "2025-01-01": 2292.0005303014, - "2024-01-01": 2242.25925024509, - "2023-01-01": 2121, - "2015-01-01": 2121 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2904.13126297232, - "2034-01-01": 2847.89539581938, - "2033-01-01": 2792.35379863129, - "2032-01-01": 2738.2007413729, - "2031-01-01": 2685.43622404421, - "2030-01-01": 2633.36597668038, - "2029-01-01": 2581.98999928139, - "2028-01-01": 2531.30829184726, - "2027-01-01": 2479.93231444827, - "2026-01-01": 2420.29452446756, - "2025-01-01": 2383.85345112913, - "2024-01-01": 2332.11876758164, - "2023-01-01": 2206, - "2015-01-01": 2206 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3019.98056086061, - "2034-01-01": 2961.50137715759, - "2033-01-01": 2903.74415868548, - "2032-01-01": 2847.43087067517, - "2031-01-01": 2792.56151312666, - "2030-01-01": 2738.41412080906, - "2029-01-01": 2684.98869372235, - "2028-01-01": 2632.28523186655, - "2027-01-01": 2578.85980477985, - "2026-01-01": 2516.84299144542, - "2025-01-01": 2478.94823975078, - "2024-01-01": 2425.14979729478, - "2023-01-01": 2294, - "2015-01-01": 2294 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3142.41220521982, - "2034-01-01": 3081.56224379912, - "2033-01-01": 3021.46351647003, - "2032-01-01": 2962.86725732416, - "2031-01-01": 2905.77346636153, - "2030-01-01": 2849.43090949051, - "2029-01-01": 2793.8395867111, - "2028-01-01": 2738.9994980233, - "2027-01-01": 2683.40817524389, - "2026-01-01": 2618.87716677428, - "2025-01-01": 2579.4461413623, - "2024-01-01": 2523.46668096889, - "2023-01-01": 2387, - "2015-01-01": 2387 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3256.94503381393, - "2034-01-01": 3193.87724807667, - "2033-01-01": 3131.58807697815, - "2032-01-01": 3070.85613515709, - "2031-01-01": 3011.6814226135, - "2030-01-01": 2953.28532470864, - "2029-01-01": 2895.6678414425, - "2028-01-01": 2838.8289728151, - "2027-01-01": 2781.21148954897, - "2026-01-01": 2714.32849208193, - "2025-01-01": 2673.46030738598, - "2024-01-01": 2615.44053988984, - "2023-01-01": 2474, - "2015-01-01": 2474 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3364.8955159371, - "2034-01-01": 3299.73736705092, - "2033-01-01": 3235.38363975592, - "2032-01-01": 3172.6387556433, - "2031-01-01": 3111.50271471306, - "2030-01-01": 3051.171095374, - "2029-01-01": 2991.64389762613, - "2028-01-01": 2932.92112146944, - "2027-01-01": 2873.39392372157, - "2026-01-01": 2804.29410903857, - "2025-01-01": 2762.07136041979, - "2024-01-01": 2702.12854484981, - "2023-01-01": 2556, - "2015-01-01": 2556 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3983.6360842041, - "2034-01-01": 3906.49658556185, - "2033-01-01": 3830.30942640901, - "2032-01-01": 3756.02694623499, - "2031-01-01": 3683.64914503979, - "2030-01-01": 3612.22368333401, - "2029-01-01": 3541.75056111763, - "2028-01-01": 3472.22977839066, - "2027-01-01": 3401.75665617429, - "2026-01-01": 3319.95069403393, - "2025-01-01": 3269.96398146725, - "2024-01-01": 3198.99881718134, - "2023-01-01": 3026, - "2015-01-01": 3026 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1186.13883406077, - "2034-01-01": 1163.17033165606, - "2033-01-01": 1140.48539100942, - "2032-01-01": 1118.36757387896, - "2031-01-01": 1096.81688026466, - "2030-01-01": 1075.54974840844, - "2029-01-01": 1054.56617831031, - "2028-01-01": 1033.86616997025, - "2027-01-01": 1012.88259987212, - "2026-01-01": 988.524644852798, - "2025-01-01": 973.640960773957, - "2024-01-01": 952.510883767479, - "2023-01-01": 901, - "2015-01-01": 901 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1586.34549949304, - "2034-01-01": 1555.62735809717, - "2033-01-01": 1525.28845301482, - "2032-01-01": 1495.70802055954, - "2031-01-01": 1466.88606073131, - "2030-01-01": 1438.44333721662, - "2029-01-01": 1410.37985001545, - "2028-01-01": 1382.69559912781, - "2027-01-01": 1354.63211192664, - "2026-01-01": 1322.05571259447, - "2025-01-01": 1302.15023055784, - "2024-01-01": 1273.89080459469, - "2023-01-01": 1205, - "2015-01-01": 1205 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1779.86648573825, - "2034-01-01": 1745.40098601441, - "2033-01-01": 1711.36098628717, - "2032-01-01": 1678.17198655311, - "2031-01-01": 1645.83398681223, - "2030-01-01": 1613.92148706794, - "2029-01-01": 1582.43448732024, - "2028-01-01": 1551.37298756913, - "2027-01-01": 1519.88598782143, - "2026-01-01": 1483.3355381143, - "2025-01-01": 1461.00175245992, - "2024-01-01": 1429.29491104732, - "2023-01-01": 1352, - "2015-01-01": 1352 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1941.79220892302, - "2034-01-01": 1904.19116447579, - "2033-01-01": 1867.05433045383, - "2032-01-01": 1830.84591728242, - "2031-01-01": 1795.56592496156, - "2030-01-01": 1760.75014306598, - "2029-01-01": 1726.39857159567, - "2028-01-01": 1692.51121055064, - "2027-01-01": 1658.15963908033, - "2026-01-01": 1618.28396354925, - "2025-01-01": 1593.91833201064, - "2024-01-01": 1559.32691848727, - "2023-01-01": 1475, - "2015-01-01": 1475 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2081.33795410664, - "2034-01-01": 2041.03473290591, - "2033-01-01": 2001.22908233729, - "2032-01-01": 1962.41857303289, - "2031-01-01": 1924.6032049927, - "2030-01-01": 1887.28540758462, - "2029-01-01": 1850.46518080865, - "2028-01-01": 1814.14252466478, - "2027-01-01": 1777.32229788881, - "2026-01-01": 1734.58098059076, - "2025-01-01": 1708.46432739581, - "2024-01-01": 1671.38702245992, - "2023-01-01": 1581, - "2015-01-01": 1581 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2205.08606776003, - "2034-01-01": 2162.3865766081, - "2033-01-01": 2120.21423966791, - "2032-01-01": 2079.09621115123, - "2031-01-01": 2039.03249105805, - "2030-01-01": 1999.49592517662, - "2029-01-01": 1960.48651350695, - "2028-01-01": 1922.00425604903, - "2027-01-01": 1882.99484437936, - "2026-01-01": 1837.71229758983, - "2025-01-01": 1810.0428516053, - "2024-01-01": 1770.76107692622, - "2023-01-01": 1675, - "2015-01-01": 1675 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2316.98595776577, - "2034-01-01": 2272.11962676433, - "2033-01-01": 2227.80720108389, - "2032-01-01": 2184.60258604547, - "2031-01-01": 2142.50578164905, - "2030-01-01": 2100.96288257365, - "2029-01-01": 2059.97388881924, - "2028-01-01": 2019.53880038584, - "2027-01-01": 1978.54980663144, - "2026-01-01": 1930.96933955708, - "2025-01-01": 1901.89577243303, - "2024-01-01": 1860.62059426278, - "2023-01-01": 1760, - "2015-01-01": 1760 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2419.67056271221, - "2034-01-01": 2372.81583749593, - "2033-01-01": 2326.53956567738, - "2032-01-01": 2281.4202006543, - "2031-01-01": 2237.45774242668, - "2030-01-01": 2194.0737375968, - "2029-01-01": 2151.26818616464, - "2028-01-01": 2109.04108813022, - "2027-01-01": 2066.23553669806, - "2026-01-01": 2016.5463898329, - "2025-01-01": 1986.18433507495, - "2024-01-01": 1943.07991605397, - "2023-01-01": 1838, - "2015-01-01": 1838 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2514.45635189353, - "2034-01-01": 2465.76618586356, - "2033-01-01": 2417.67713299445, - "2032-01-01": 2370.79030644707, - "2031-01-01": 2325.10570622142, - "2030-01-01": 2280.02221915663, - "2029-01-01": 2235.5398452527, - "2028-01-01": 2191.65858450964, - "2027-01-01": 2147.17621060571, - "2026-01-01": 2095.54059008751, - "2025-01-01": 2063.98916212903, - "2024-01-01": 2019.19621309199, - "2023-01-01": 1910, - "2015-01-01": 1910 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2639.52093484112, - "2034-01-01": 2588.40900662641, - "2033-01-01": 2537.92808987114, - "2032-01-01": 2488.70919603475, - "2031-01-01": 2440.75232511725, - "2030-01-01": 2393.42646565918, - "2029-01-01": 2346.73161766056, - "2028-01-01": 2300.66778112137, - "2027-01-01": 2253.97293312275, - "2026-01-01": 2199.76904875678, - "2025-01-01": 2166.6483089365, - "2024-01-01": 2119.62743835049, - "2023-01-01": 2005, - "2015-01-01": 2005 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2798.81371943751, - "2034-01-01": 2744.61723096645, - "2033-01-01": 2691.08983494565, - "2032-01-01": 2638.90062382538, - "2031-01-01": 2588.04959760562, - "2030-01-01": 2537.86766383612, - "2029-01-01": 2488.35482251688, - "2028-01-01": 2439.5110736479, - "2027-01-01": 2389.99823232866, - "2026-01-01": 2332.52319085133, - "2025-01-01": 2297.40364329127, - "2024-01-01": 2247.54510420606, - "2023-01-01": 2126, - "2015-01-01": 2126 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2943.62534179787, - "2034-01-01": 2886.62470763922, - "2033-01-01": 2830.3277850134, - "2032-01-01": 2775.43828545322, - "2031-01-01": 2721.95620895868, - "2030-01-01": 2669.17784399697, - "2029-01-01": 2617.10319056808, - "2028-01-01": 2565.73224867202, - "2027-01-01": 2513.65759524313, - "2026-01-01": 2453.20877457365, - "2025-01-01": 2416.27212906833, - "2024-01-01": 2363.83389134748, - "2023-01-01": 2236, - "2015-01-01": 2236 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3075.27227121638, - "2034-01-01": 3015.72241370538, - "2033-01-01": 2956.90773962044, - "2032-01-01": 2899.56343238762, - "2031-01-01": 2843.68949200693, - "2030-01-01": 2788.55073505229, - "2029-01-01": 2734.14716152372, - "2028-01-01": 2680.47877142121, - "2027-01-01": 2626.07519789264, - "2026-01-01": 2562.92294159394, - "2025-01-01": 2524.33438886566, - "2024-01-01": 2469.55097056696, - "2023-01-01": 2336, - "2015-01-01": 2336 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3199.02038486978, - "2034-01-01": 3137.07425740756, - "2033-01-01": 3075.89289695105, - "2032-01-01": 3016.24107050596, - "2031-01-01": 2958.11877807227, - "2030-01-01": 2900.76125264429, - "2029-01-01": 2844.16849422202, - "2028-01-01": 2788.34050280546, - "2027-01-01": 2731.74774438318, - "2026-01-01": 2666.05425859301, - "2025-01-01": 2625.91291307516, - "2024-01-01": 2568.92502503327, - "2023-01-01": 2430, - "2015-01-01": 2430 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3325.40143711155, - "2034-01-01": 3261.00805523107, - "2033-01-01": 3197.40965337381, - "2032-01-01": 3135.40121156298, - "2031-01-01": 3074.98272979858, - "2030-01-01": 3015.3592280574, - "2029-01-01": 2956.53070633944, - "2028-01-01": 2898.49716464468, - "2027-01-01": 2839.66864292672, - "2026-01-01": 2771.37985893248, - "2025-01-01": 2729.65268248059, - "2024-01-01": 2670.41342108396, - "2023-01-01": 2526, - "2015-01-01": 2526 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3459.68130511843, - "2034-01-01": 3392.68771541855, - "2033-01-01": 3326.52120707299, - "2032-01-01": 3262.00886143607, - "2031-01-01": 3199.15067850779, - "2030-01-01": 3137.11957693383, - "2029-01-01": 3075.91555671419, - "2028-01-01": 3015.53861784886, - "2027-01-01": 2954.33459762922, - "2026-01-01": 2883.28830929318, - "2025-01-01": 2839.87618747387, - "2024-01-01": 2778.24484188783, - "2023-01-01": 2628, - "2015-01-01": 2628 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3584.74588806601, - "2034-01-01": 3515.3305361814, - "2033-01-01": 3446.77216394968, - "2032-01-01": 3379.92775102375, - "2031-01-01": 3314.79729740362, - "2030-01-01": 3250.52382343638, - "2029-01-01": 3187.10732912204, - "2028-01-01": 3124.5478144606, - "2027-01-01": 3061.13132014626, - "2026-01-01": 2987.51676796245, - "2025-01-01": 2942.53533428134, - "2024-01-01": 2878.67606714633, - "2023-01-01": 2723, - "2015-01-01": 2723 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3701.91165524849, - "2034-01-01": 3630.22749458028, - "2033-01-01": 3559.42832354994, - "2032-01-01": 3490.39913179537, - "2031-01-01": 3423.13991931656, - "2030-01-01": 3356.76569647562, - "2029-01-01": 3291.27646327256, - "2028-01-01": 3226.67221970738, - "2027-01-01": 3161.18298650433, - "2026-01-01": 3085.16237661051, - "2025-01-01": 3038.71074550096, - "2024-01-01": 2972.76426765167, - "2023-01-01": 2812, - "2015-01-01": 2812 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MS.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 4378.57687245963, - "2034-01-01": 4293.78970376031, - "2033-01-01": 4210.04929023013, - "2032-01-01": 4128.40238703819, - "2031-01-01": 4048.84899418452, - "2030-01-01": 3970.34235649997, - "2029-01-01": 3892.88247398454, - "2028-01-01": 3816.46934663825, - "2027-01-01": 3739.00946412283, - "2026-01-01": 3649.09319509479, - "2025-01-01": 3594.15076085925, - "2024-01-01": 3516.15005483977, - "2023-01-01": 3326, - "2015-01-01": 3326 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO", - "description": null, - "label": "MO", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 899.14852792842, - "2034-01-01": 881.737332431838, - "2033-01-01": 864.541089966078, - "2032-01-01": 847.774753561962, - "2031-01-01": 831.438323219491, - "2030-01-01": 815.316845907841, - "2029-01-01": 799.410321627013, - "2028-01-01": 783.718750377007, - "2027-01-01": 767.812226096179, - "2026-01-01": 749.34776074857, - "2025-01-01": 738.065234415774, - "2024-01-01": 722.047651069021, - "2023-01-01": 683, - "2015-01-01": 683 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1208.51881206192, - "2034-01-01": 1185.1169416873, - "2033-01-01": 1162.00398329262, - "2032-01-01": 1139.46884885781, - "2031-01-01": 1117.51153838286, - "2030-01-01": 1095.84313988784, - "2029-01-01": 1074.46365337276, - "2028-01-01": 1053.37307883762, - "2027-01-01": 1031.99359232254, - "2026-01-01": 1007.17605324625, - "2025-01-01": 992.011544939503, - "2024-01-01": 970.48278723479, - "2023-01-01": 918, - "2015-01-01": 918 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1358.59631159902, - "2034-01-01": 1332.28832660272, - "2033-01-01": 1306.30513154465, - "2032-01-01": 1280.97151636302, - "2031-01-01": 1256.28748105785, - "2030-01-01": 1231.92823569091, - "2029-01-01": 1207.89378026219, - "2028-01-01": 1184.1841147717, - "2027-01-01": 1160.14965934298, - "2026-01-01": 1132.25020364938, - "2025-01-01": 1115.20252110846, - "2024-01-01": 1091.00025754499, - "2023-01-01": 1032, - "2015-01-01": 1032 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1483.6608945466, - "2034-01-01": 1454.93114736557, - "2033-01-01": 1426.55608842133, - "2032-01-01": 1398.89040595071, - "2031-01-01": 1371.93409995368, - "2030-01-01": 1345.33248219347, - "2029-01-01": 1319.08555267005, - "2028-01-01": 1293.19331138344, - "2027-01-01": 1266.94638186002, - "2026-01-01": 1236.47866231865, - "2025-01-01": 1217.86166791593, - "2024-01-01": 1191.43148280349, - "2023-01-01": 1127, - "2015-01-01": 1127 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1592.92784596397, - "2034-01-01": 1562.08224340047, - "2033-01-01": 1531.61745074518, - "2032-01-01": 1501.91427790626, - "2031-01-01": 1472.97272488372, - "2030-01-01": 1444.41198176938, - "2029-01-01": 1416.23204856323, - "2028-01-01": 1388.43292526527, - "2027-01-01": 1360.25299205912, - "2026-01-01": 1327.54142094549, - "2025-01-01": 1307.55334354771, - "2024-01-01": 1279.17665855566, - "2023-01-01": 1210, - "2015-01-01": 1210 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1689.03010443948, - "2034-01-01": 1656.32356882877, - "2033-01-01": 1624.02081760831, - "2032-01-01": 1592.52563516837, - "2031-01-01": 1561.83802150894, - "2030-01-01": 1531.55419223977, - "2029-01-01": 1501.67414736085, - "2028-01-01": 1472.19788687218, - "2027-01-01": 1442.31784199326, - "2026-01-01": 1407.6327628703, - "2025-01-01": 1386.43879319976, - "2024-01-01": 1356.35012638588, - "2023-01-01": 1283, - "2015-01-01": 1283 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1777.23354714988, - "2034-01-01": 1742.81903189309, - "2033-01-01": 1708.82938719503, - "2032-01-01": 1675.68948361442, - "2031-01-01": 1643.39932115126, - "2030-01-01": 1611.53402924683, - "2029-01-01": 1580.09360790112, - "2028-01-01": 1549.07805711414, - "2027-01-01": 1517.63763576844, - "2026-01-01": 1481.14125477389, - "2025-01-01": 1458.84050726398, - "2024-01-01": 1427.18056946293, - "2023-01-01": 1350, - "2015-01-01": 1350 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1857.53817409517, - "2034-01-01": 1821.56863259345, - "2033-01-01": 1786.04315950532, - "2032-01-01": 1751.40582324441, - "2031-01-01": 1717.65662381069, - "2030-01-01": 1684.35149279058, - "2029-01-01": 1651.49043018406, - "2028-01-01": 1619.07343599115, - "2027-01-01": 1586.21237338464, - "2026-01-01": 1548.06689665627, - "2025-01-01": 1524.75848574035, - "2024-01-01": 1491.66798778681, - "2023-01-01": 1411, - "2015-01-01": 1411 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1931.26045456953, - "2034-01-01": 1893.86334799049, - "2033-01-01": 1856.92793408527, - "2032-01-01": 1820.91590552767, - "2031-01-01": 1785.82726231771, - "2030-01-01": 1751.20031178156, - "2029-01-01": 1717.03505391922, - "2028-01-01": 1683.3314887307, - "2027-01-01": 1649.16623086837, - "2026-01-01": 1609.50683018763, - "2025-01-01": 1585.27335122685, - "2024-01-01": 1550.86955214971, - "2023-01-01": 1467, - "2015-01-01": 1467 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2028.67918233923, - "2034-01-01": 1989.39565047945, - "2033-01-01": 1950.59710049448, - "2032-01-01": 1912.76851425913, - "2031-01-01": 1875.9098917734, - "2030-01-01": 1839.53625116249, - "2029-01-01": 1803.64759242639, - "2028-01-01": 1768.24391556511, - "2027-01-01": 1732.35525682901, - "2026-01-01": 1690.69531378264, - "2025-01-01": 1665.23942347688, - "2024-01-01": 1629.10019077213, - "2023-01-01": 1541, - "2015-01-01": 1541 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2153.74376528682, - "2034-01-01": 2112.03847124229, - "2033-01-01": 2070.84805737116, - "2032-01-01": 2030.68740384681, - "2031-01-01": 1991.55651066923, - "2030-01-01": 1952.94049766505, - "2029-01-01": 1914.83936483425, - "2028-01-01": 1877.25311217684, - "2027-01-01": 1839.15197934605, - "2026-01-01": 1794.92377245192, - "2025-01-01": 1767.89857028434, - "2024-01-01": 1729.53141603063, - "2023-01-01": 1636, - "2015-01-01": 1636 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2266.96012458673, - "2034-01-01": 2223.06249845919, - "2033-01-01": 2179.70681833322, - "2032-01-01": 2137.43503021039, - "2031-01-01": 2096.24713409072, - "2030-01-01": 2055.60118397262, - "2029-01-01": 2015.4971798561, - "2028-01-01": 1975.93512174115, - "2027-01-01": 1935.83111762463, - "2026-01-01": 1889.27795608937, - "2025-01-01": 1860.83211371005, - "2024-01-01": 1820.44810415938, - "2023-01-01": 1722, - "2015-01-01": 1722 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2370.96119882736, - "2034-01-01": 2325.04968625145, - "2033-01-01": 2279.70498247278, - "2032-01-01": 2235.49389628857, - "2031-01-01": 2192.41642769883, - "2030-01-01": 2149.90576790633, - "2029-01-01": 2107.96191691105, - "2028-01-01": 2066.58487471302, - "2027-01-01": 2024.64102371774, - "2026-01-01": 1975.95214803539, - "2025-01-01": 1946.20129894994, - "2024-01-01": 1903.96459674276, - "2023-01-01": 1801, - "2015-01-01": 1801 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2468.37992659705, - "2034-01-01": 2420.5819887404, - "2033-01-01": 2373.37414888199, - "2032-01-01": 2327.34650502003, - "2031-01-01": 2282.49905715453, - "2030-01-01": 2238.24170728726, - "2029-01-01": 2194.57445541823, - "2028-01-01": 2151.49730154742, - "2027-01-01": 2107.83004967838, - "2026-01-01": 2057.14063163041, - "2025-01-01": 2026.16737119997, - "2024-01-01": 1982.19523536518, - "2023-01-01": 1875, - "2015-01-01": 1875 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2567.11512366094, - "2034-01-01": 2517.40526829002, - "2033-01-01": 2468.30911483727, - "2032-01-01": 2420.44036522083, - "2031-01-01": 2373.79901944071, - "2030-01-01": 2327.77137557876, - "2029-01-01": 2282.35743363496, - "2028-01-01": 2237.55719360932, - "2027-01-01": 2192.14325166552, - "2026-01-01": 2139.42625689562, - "2025-01-01": 2107.21406604796, - "2024-01-01": 2061.48304477978, - "2023-01-01": 1950, - "2015-01-01": 1950 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2672.43266719574, - "2034-01-01": 2620.68343314295, - "2033-01-01": 2569.5730785229, - "2032-01-01": 2519.74048276835, - "2031-01-01": 2471.18564587931, - "2030-01-01": 2423.26968842301, - "2029-01-01": 2375.99261039947, - "2028-01-01": 2329.35441180867, - "2027-01-01": 2282.07733378513, - "2026-01-01": 2227.19759051185, - "2025-01-01": 2193.66387388583, - "2024-01-01": 2146.05670815536, - "2023-01-01": 2030, - "2015-01-01": 2030 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2771.16786425963, - "2034-01-01": 2717.50671269256, - "2033-01-01": 2664.50804447818, - "2032-01-01": 2612.83434296915, - "2031-01-01": 2562.48560816549, - "2030-01-01": 2512.7993567145, - "2029-01-01": 2463.7755886162, - "2028-01-01": 2415.41430387057, - "2027-01-01": 2366.39053577226, - "2026-01-01": 2309.48321577707, - "2025-01-01": 2274.71056873383, - "2024-01-01": 2225.34451756997, - "2023-01-01": 2105, - "2015-01-01": 2105 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2864.63718414677, - "2034-01-01": 2809.16608399953, - "2033-01-01": 2754.37981224917, - "2032-01-01": 2700.96319729258, - "2031-01-01": 2648.91623912974, - "2030-01-01": 2597.55410936378, - "2029-01-01": 2546.8768079947, - "2028-01-01": 2496.8843350225, - "2027-01-01": 2446.20703365342, - "2026-01-01": 2387.38027436147, - "2025-01-01": 2351.43477318993, - "2024-01-01": 2300.4036438158, - "2023-01-01": 2176, - "2015-01-01": 2176 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3397.80724829173, - "2034-01-01": 3332.01179356746, - "2033-01-01": 3267.02862840768, - "2032-01-01": 3203.6700423769, - "2031-01-01": 3141.93603547512, - "2030-01-01": 3081.01431813783, - "2029-01-01": 3020.90489036504, - "2028-01-01": 2961.60775215674, - "2027-01-01": 2901.49832438395, - "2026-01-01": 2831.72265079364, - "2025-01-01": 2789.08692536913, - "2024-01-01": 2728.55781465468, - "2023-01-01": 2581, - "2015-01-01": 2581 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1070.28953617248, - "2034-01-01": 1049.56435031784, - "2033-01-01": 1029.09503095523, - "2032-01-01": 1009.13744457668, - "2031-01-01": 989.691591182205, - "2030-01-01": 970.501604279758, - "2029-01-01": 951.567483869343, - "2028-01-01": 932.889229950961, - "2027-01-01": 913.955109540547, - "2026-01-01": 891.976177874944, - "2025-01-01": 878.546172152305, - "2024-01-01": 859.47985405434, - "2023-01-01": 813, - "2015-01-01": 813 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1433.63506136757, - "2034-01-01": 1405.87401906043, - "2033-01-01": 1378.45570567066, - "2032-01-01": 1351.72285011563, - "2031-01-01": 1325.67545239535, - "2030-01-01": 1299.97078359244, - "2029-01-01": 1274.60884370691, - "2028-01-01": 1249.58963273874, - "2027-01-01": 1224.2276928532, - "2026-01-01": 1194.78727885094, - "2025-01-01": 1176.79800919294, - "2024-01-01": 1151.25899270009, - "2023-01-01": 1089, - "2015-01-01": 1089 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1610.04194678837, - "2034-01-01": 1578.86494518907, - "2033-01-01": 1548.07284484409, - "2032-01-01": 1518.05054700773, - "2031-01-01": 1488.79805168, - "2030-01-01": 1459.93045760657, - "2029-01-01": 1431.44776478746, - "2028-01-01": 1403.34997322266, - "2027-01-01": 1374.86728040355, - "2026-01-01": 1341.80426265813, - "2025-01-01": 1321.60143732136, - "2024-01-01": 1292.91987885419, - "2023-01-01": 1223, - "2015-01-01": 1223 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1757.4865077371, - "2034-01-01": 1723.45437598317, - "2033-01-01": 1689.84239400397, - "2032-01-01": 1657.07071157426, - "2031-01-01": 1625.13932869403, - "2030-01-01": 1593.62809558853, - "2029-01-01": 1562.53701225778, - "2028-01-01": 1531.86607870176, - "2027-01-01": 1500.77499537101, - "2026-01-01": 1464.68412972085, - "2025-01-01": 1442.63116829438, - "2024-01-01": 1411.32300758001, - "2023-01-01": 1335, - "2015-01-01": 1335 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1885.18402927306, - "2034-01-01": 1848.67915086734, - "2033-01-01": 1812.6249499728, - "2032-01-01": 1777.47210410063, - "2031-01-01": 1743.22061325082, - "2030-01-01": 1709.41979991219, - "2029-01-01": 1676.06966408475, - "2028-01-01": 1643.17020576848, - "2027-01-01": 1609.82006994104, - "2026-01-01": 1571.10687173053, - "2025-01-01": 1547.45156029779, - "2024-01-01": 1513.8685744229, - "2023-01-01": 1432, - "2015-01-01": 1432 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1997.08391927879, - "2034-01-01": 1958.41220102357, - "2033-01-01": 1920.21791138879, - "2032-01-01": 1882.97847899487, - "2031-01-01": 1846.69390384183, - "2030-01-01": 1810.88675730922, - "2029-01-01": 1775.55703939704, - "2028-01-01": 1740.7047501053, - "2027-01-01": 1705.37503219312, - "2026-01-01": 1664.36391369777, - "2025-01-01": 1639.30448112552, - "2024-01-01": 1603.72809175945, - "2023-01-01": 1517, - "2015-01-01": 1517 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2099.76852422523, - "2034-01-01": 2059.10841175517, - "2033-01-01": 2018.95027598228, - "2032-01-01": 1979.7960936037, - "2031-01-01": 1941.64586461945, - "2030-01-01": 1903.99761233237, - "2029-01-01": 1866.85133674244, - "2028-01-01": 1830.20703784967, - "2027-01-01": 1793.06076225974, - "2026-01-01": 1749.9409639736, - "2025-01-01": 1723.59304376744, - "2024-01-01": 1686.18741355064, - "2023-01-01": 1595, - "2015-01-01": 1595 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2193.23784411237, - "2034-01-01": 2150.76778306214, - "2033-01-01": 2108.82204375327, - "2032-01-01": 2067.92494792713, - "2031-01-01": 2028.07649558371, - "2030-01-01": 1988.75236498164, - "2029-01-01": 1949.95255612094, - "2028-01-01": 1911.6770690016, - "2027-01-01": 1872.8772601409, - "2026-01-01": 1827.838022558, - "2025-01-01": 1800.31724822354, - "2024-01-01": 1761.24653979647, - "2023-01-01": 1666, - "2015-01-01": 1666 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2278.8083482344, - "2034-01-01": 2234.68129200514, - "2033-01-01": 2191.09901424785, - "2032-01-01": 2148.60629343449, - "2031-01-01": 2107.20312956506, - "2030-01-01": 2066.3447441676, - "2029-01-01": 2026.03113724211, - "2028-01-01": 1986.26230878858, - "2027-01-01": 1945.94870186308, - "2026-01-01": 1899.15223112119, - "2025-01-01": 1870.55771709181, - "2024-01-01": 1829.96264128913, - "2023-01-01": 1731, - "2015-01-01": 1731 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2393.3411768285, - "2034-01-01": 2346.9962962827, - "2033-01-01": 2301.22357475597, - "2032-01-01": 2256.59517126742, - "2031-01-01": 2213.11108581703, - "2030-01-01": 2170.19915938573, - "2029-01-01": 2127.85939197351, - "2028-01-01": 2086.09178358038, - "2027-01-01": 2043.75201616816, - "2026-01-01": 1994.60355642884, - "2025-01-01": 1964.57188311549, - "2024-01-01": 1921.93650021007, - "2023-01-01": 1818, - "2015-01-01": 1818 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2538.15279918886, - "2034-01-01": 2489.00377295547, - "2033-01-01": 2440.46152482372, - "2032-01-01": 2393.13283289526, - "2031-01-01": 2347.0176971701, - "2030-01-01": 2301.50933954658, - "2029-01-01": 2256.60776002472, - "2028-01-01": 2212.31295860449, - "2027-01-01": 2167.41137908263, - "2026-01-01": 2115.28914015116, - "2025-01-01": 2083.44036889255, - "2024-01-01": 2038.2252873515, - "2023-01-01": 1928, - "2015-01-01": 1928 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2671.11619790156, - "2034-01-01": 2619.39245608228, - "2033-01-01": 2568.30727897683, - "2032-01-01": 2518.49923129901, - "2031-01-01": 2469.96831304882, - "2030-01-01": 2422.07595951246, - "2029-01-01": 2374.82217068991, - "2028-01-01": 2328.20694658118, - "2027-01-01": 2280.95315775863, - "2026-01-01": 2226.10044884165, - "2025-01-01": 2192.58325128786, - "2024-01-01": 2144.99953736317, - "2023-01-01": 2029, - "2015-01-01": 2029 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2792.23137296659, - "2034-01-01": 2738.16234566315, - "2033-01-01": 2684.7608372153, - "2032-01-01": 2632.69436647866, - "2031-01-01": 2581.96293345321, - "2030-01-01": 2531.89901928335, - "2029-01-01": 2482.5026239691, - "2028-01-01": 2433.77374751044, - "2027-01-01": 2384.37735219619, - "2026-01-01": 2327.03748250032, - "2025-01-01": 2292.0005303014, - "2024-01-01": 2242.25925024509, - "2023-01-01": 2121, - "2015-01-01": 2121 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2904.13126297232, - "2034-01-01": 2847.89539581938, - "2033-01-01": 2792.35379863129, - "2032-01-01": 2738.2007413729, - "2031-01-01": 2685.43622404421, - "2030-01-01": 2633.36597668038, - "2029-01-01": 2581.98999928139, - "2028-01-01": 2531.30829184726, - "2027-01-01": 2479.93231444827, - "2026-01-01": 2420.29452446756, - "2025-01-01": 2383.85345112913, - "2024-01-01": 2332.11876758164, - "2023-01-01": 2206, - "2015-01-01": 2206 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3019.98056086061, - "2034-01-01": 2961.50137715759, - "2033-01-01": 2903.74415868548, - "2032-01-01": 2847.43087067517, - "2031-01-01": 2792.56151312666, - "2030-01-01": 2738.41412080906, - "2029-01-01": 2684.98869372235, - "2028-01-01": 2632.28523186655, - "2027-01-01": 2578.85980477985, - "2026-01-01": 2516.84299144542, - "2025-01-01": 2478.94823975078, - "2024-01-01": 2425.14979729478, - "2023-01-01": 2294, - "2015-01-01": 2294 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3142.41220521982, - "2034-01-01": 3081.56224379912, - "2033-01-01": 3021.46351647003, - "2032-01-01": 2962.86725732416, - "2031-01-01": 2905.77346636153, - "2030-01-01": 2849.43090949051, - "2029-01-01": 2793.8395867111, - "2028-01-01": 2738.9994980233, - "2027-01-01": 2683.40817524389, - "2026-01-01": 2618.87716677428, - "2025-01-01": 2579.4461413623, - "2024-01-01": 2523.46668096889, - "2023-01-01": 2387, - "2015-01-01": 2387 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3256.94503381393, - "2034-01-01": 3193.87724807667, - "2033-01-01": 3131.58807697815, - "2032-01-01": 3070.85613515709, - "2031-01-01": 3011.6814226135, - "2030-01-01": 2953.28532470864, - "2029-01-01": 2895.6678414425, - "2028-01-01": 2838.8289728151, - "2027-01-01": 2781.21148954897, - "2026-01-01": 2714.32849208193, - "2025-01-01": 2673.46030738598, - "2024-01-01": 2615.44053988984, - "2023-01-01": 2474, - "2015-01-01": 2474 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3364.8955159371, - "2034-01-01": 3299.73736705092, - "2033-01-01": 3235.38363975592, - "2032-01-01": 3172.6387556433, - "2031-01-01": 3111.50271471306, - "2030-01-01": 3051.171095374, - "2029-01-01": 2991.64389762613, - "2028-01-01": 2932.92112146944, - "2027-01-01": 2873.39392372157, - "2026-01-01": 2804.29410903857, - "2025-01-01": 2762.07136041979, - "2024-01-01": 2702.12854484981, - "2023-01-01": 2556, - "2015-01-01": 2556 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3983.6360842041, - "2034-01-01": 3906.49658556185, - "2033-01-01": 3830.30942640901, - "2032-01-01": 3756.02694623499, - "2031-01-01": 3683.64914503979, - "2030-01-01": 3612.22368333401, - "2029-01-01": 3541.75056111763, - "2028-01-01": 3472.22977839066, - "2027-01-01": 3401.75665617429, - "2026-01-01": 3319.95069403393, - "2025-01-01": 3269.96398146725, - "2024-01-01": 3198.99881718134, - "2023-01-01": 3026, - "2015-01-01": 3026 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1186.13883406077, - "2034-01-01": 1163.17033165606, - "2033-01-01": 1140.48539100942, - "2032-01-01": 1118.36757387896, - "2031-01-01": 1096.81688026466, - "2030-01-01": 1075.54974840844, - "2029-01-01": 1054.56617831031, - "2028-01-01": 1033.86616997025, - "2027-01-01": 1012.88259987212, - "2026-01-01": 988.524644852798, - "2025-01-01": 973.640960773957, - "2024-01-01": 952.510883767479, - "2023-01-01": 901, - "2015-01-01": 901 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1586.34549949304, - "2034-01-01": 1555.62735809717, - "2033-01-01": 1525.28845301482, - "2032-01-01": 1495.70802055954, - "2031-01-01": 1466.88606073131, - "2030-01-01": 1438.44333721662, - "2029-01-01": 1410.37985001545, - "2028-01-01": 1382.69559912781, - "2027-01-01": 1354.63211192664, - "2026-01-01": 1322.05571259447, - "2025-01-01": 1302.15023055784, - "2024-01-01": 1273.89080459469, - "2023-01-01": 1205, - "2015-01-01": 1205 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1779.86648573825, - "2034-01-01": 1745.40098601441, - "2033-01-01": 1711.36098628717, - "2032-01-01": 1678.17198655311, - "2031-01-01": 1645.83398681223, - "2030-01-01": 1613.92148706794, - "2029-01-01": 1582.43448732024, - "2028-01-01": 1551.37298756913, - "2027-01-01": 1519.88598782143, - "2026-01-01": 1483.3355381143, - "2025-01-01": 1461.00175245992, - "2024-01-01": 1429.29491104732, - "2023-01-01": 1352, - "2015-01-01": 1352 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1941.79220892302, - "2034-01-01": 1904.19116447579, - "2033-01-01": 1867.05433045383, - "2032-01-01": 1830.84591728242, - "2031-01-01": 1795.56592496156, - "2030-01-01": 1760.75014306598, - "2029-01-01": 1726.39857159567, - "2028-01-01": 1692.51121055064, - "2027-01-01": 1658.15963908033, - "2026-01-01": 1618.28396354925, - "2025-01-01": 1593.91833201064, - "2024-01-01": 1559.32691848727, - "2023-01-01": 1475, - "2015-01-01": 1475 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2081.33795410664, - "2034-01-01": 2041.03473290591, - "2033-01-01": 2001.22908233729, - "2032-01-01": 1962.41857303289, - "2031-01-01": 1924.6032049927, - "2030-01-01": 1887.28540758462, - "2029-01-01": 1850.46518080865, - "2028-01-01": 1814.14252466478, - "2027-01-01": 1777.32229788881, - "2026-01-01": 1734.58098059076, - "2025-01-01": 1708.46432739581, - "2024-01-01": 1671.38702245992, - "2023-01-01": 1581, - "2015-01-01": 1581 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2205.08606776003, - "2034-01-01": 2162.3865766081, - "2033-01-01": 2120.21423966791, - "2032-01-01": 2079.09621115123, - "2031-01-01": 2039.03249105805, - "2030-01-01": 1999.49592517662, - "2029-01-01": 1960.48651350695, - "2028-01-01": 1922.00425604903, - "2027-01-01": 1882.99484437936, - "2026-01-01": 1837.71229758983, - "2025-01-01": 1810.0428516053, - "2024-01-01": 1770.76107692622, - "2023-01-01": 1675, - "2015-01-01": 1675 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2316.98595776577, - "2034-01-01": 2272.11962676433, - "2033-01-01": 2227.80720108389, - "2032-01-01": 2184.60258604547, - "2031-01-01": 2142.50578164905, - "2030-01-01": 2100.96288257365, - "2029-01-01": 2059.97388881924, - "2028-01-01": 2019.53880038584, - "2027-01-01": 1978.54980663144, - "2026-01-01": 1930.96933955708, - "2025-01-01": 1901.89577243303, - "2024-01-01": 1860.62059426278, - "2023-01-01": 1760, - "2015-01-01": 1760 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2419.67056271221, - "2034-01-01": 2372.81583749593, - "2033-01-01": 2326.53956567738, - "2032-01-01": 2281.4202006543, - "2031-01-01": 2237.45774242668, - "2030-01-01": 2194.0737375968, - "2029-01-01": 2151.26818616464, - "2028-01-01": 2109.04108813022, - "2027-01-01": 2066.23553669806, - "2026-01-01": 2016.5463898329, - "2025-01-01": 1986.18433507495, - "2024-01-01": 1943.07991605397, - "2023-01-01": 1838, - "2015-01-01": 1838 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2514.45635189353, - "2034-01-01": 2465.76618586356, - "2033-01-01": 2417.67713299445, - "2032-01-01": 2370.79030644707, - "2031-01-01": 2325.10570622142, - "2030-01-01": 2280.02221915663, - "2029-01-01": 2235.5398452527, - "2028-01-01": 2191.65858450964, - "2027-01-01": 2147.17621060571, - "2026-01-01": 2095.54059008751, - "2025-01-01": 2063.98916212903, - "2024-01-01": 2019.19621309199, - "2023-01-01": 1910, - "2015-01-01": 1910 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2639.52093484112, - "2034-01-01": 2588.40900662641, - "2033-01-01": 2537.92808987114, - "2032-01-01": 2488.70919603475, - "2031-01-01": 2440.75232511725, - "2030-01-01": 2393.42646565918, - "2029-01-01": 2346.73161766056, - "2028-01-01": 2300.66778112137, - "2027-01-01": 2253.97293312275, - "2026-01-01": 2199.76904875678, - "2025-01-01": 2166.6483089365, - "2024-01-01": 2119.62743835049, - "2023-01-01": 2005, - "2015-01-01": 2005 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2798.81371943751, - "2034-01-01": 2744.61723096645, - "2033-01-01": 2691.08983494565, - "2032-01-01": 2638.90062382538, - "2031-01-01": 2588.04959760562, - "2030-01-01": 2537.86766383612, - "2029-01-01": 2488.35482251688, - "2028-01-01": 2439.5110736479, - "2027-01-01": 2389.99823232866, - "2026-01-01": 2332.52319085133, - "2025-01-01": 2297.40364329127, - "2024-01-01": 2247.54510420606, - "2023-01-01": 2126, - "2015-01-01": 2126 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2943.62534179787, - "2034-01-01": 2886.62470763922, - "2033-01-01": 2830.3277850134, - "2032-01-01": 2775.43828545322, - "2031-01-01": 2721.95620895868, - "2030-01-01": 2669.17784399697, - "2029-01-01": 2617.10319056808, - "2028-01-01": 2565.73224867202, - "2027-01-01": 2513.65759524313, - "2026-01-01": 2453.20877457365, - "2025-01-01": 2416.27212906833, - "2024-01-01": 2363.83389134748, - "2023-01-01": 2236, - "2015-01-01": 2236 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3075.27227121638, - "2034-01-01": 3015.72241370538, - "2033-01-01": 2956.90773962044, - "2032-01-01": 2899.56343238762, - "2031-01-01": 2843.68949200693, - "2030-01-01": 2788.55073505229, - "2029-01-01": 2734.14716152372, - "2028-01-01": 2680.47877142121, - "2027-01-01": 2626.07519789264, - "2026-01-01": 2562.92294159394, - "2025-01-01": 2524.33438886566, - "2024-01-01": 2469.55097056696, - "2023-01-01": 2336, - "2015-01-01": 2336 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3199.02038486978, - "2034-01-01": 3137.07425740756, - "2033-01-01": 3075.89289695105, - "2032-01-01": 3016.24107050596, - "2031-01-01": 2958.11877807227, - "2030-01-01": 2900.76125264429, - "2029-01-01": 2844.16849422202, - "2028-01-01": 2788.34050280546, - "2027-01-01": 2731.74774438318, - "2026-01-01": 2666.05425859301, - "2025-01-01": 2625.91291307516, - "2024-01-01": 2568.92502503327, - "2023-01-01": 2430, - "2015-01-01": 2430 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3325.40143711155, - "2034-01-01": 3261.00805523107, - "2033-01-01": 3197.40965337381, - "2032-01-01": 3135.40121156298, - "2031-01-01": 3074.98272979858, - "2030-01-01": 3015.3592280574, - "2029-01-01": 2956.53070633944, - "2028-01-01": 2898.49716464468, - "2027-01-01": 2839.66864292672, - "2026-01-01": 2771.37985893248, - "2025-01-01": 2729.65268248059, - "2024-01-01": 2670.41342108396, - "2023-01-01": 2526, - "2015-01-01": 2526 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3459.68130511843, - "2034-01-01": 3392.68771541855, - "2033-01-01": 3326.52120707299, - "2032-01-01": 3262.00886143607, - "2031-01-01": 3199.15067850779, - "2030-01-01": 3137.11957693383, - "2029-01-01": 3075.91555671419, - "2028-01-01": 3015.53861784886, - "2027-01-01": 2954.33459762922, - "2026-01-01": 2883.28830929318, - "2025-01-01": 2839.87618747387, - "2024-01-01": 2778.24484188783, - "2023-01-01": 2628, - "2015-01-01": 2628 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3584.74588806601, - "2034-01-01": 3515.3305361814, - "2033-01-01": 3446.77216394968, - "2032-01-01": 3379.92775102375, - "2031-01-01": 3314.79729740362, - "2030-01-01": 3250.52382343638, - "2029-01-01": 3187.10732912204, - "2028-01-01": 3124.5478144606, - "2027-01-01": 3061.13132014626, - "2026-01-01": 2987.51676796245, - "2025-01-01": 2942.53533428134, - "2024-01-01": 2878.67606714633, - "2023-01-01": 2723, - "2015-01-01": 2723 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3701.91165524849, - "2034-01-01": 3630.22749458028, - "2033-01-01": 3559.42832354994, - "2032-01-01": 3490.39913179537, - "2031-01-01": 3423.13991931656, - "2030-01-01": 3356.76569647562, - "2029-01-01": 3291.27646327256, - "2028-01-01": 3226.67221970738, - "2027-01-01": 3161.18298650433, - "2026-01-01": 3085.16237661051, - "2025-01-01": 3038.71074550096, - "2024-01-01": 2972.76426765167, - "2023-01-01": 2812, - "2015-01-01": 2812 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 4378.57687245963, - "2034-01-01": 4293.78970376031, - "2033-01-01": 4210.04929023013, - "2032-01-01": 4128.40238703819, - "2031-01-01": 4048.84899418452, - "2030-01-01": 3970.34235649997, - "2029-01-01": 3892.88247398454, - "2028-01-01": 3816.46934663825, - "2027-01-01": 3739.00946412283, - "2026-01-01": 3649.09319509479, - "2025-01-01": 3594.15076085925, - "2024-01-01": 3516.15005483977, - "2023-01-01": 3326, - "2015-01-01": 3326 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1276.97521535954, - "2034-01-01": 1252.2477488417, - "2033-01-01": 1227.82555968828, - "2032-01-01": 1204.01392526369, - "2031-01-01": 1180.81284556794, - "2030-01-01": 1157.91704323661, - "2029-01-01": 1135.3265182697, - "2028-01-01": 1113.0412706672, - "2027-01-01": 1090.45074570028, - "2026-01-01": 1064.2274200968, - "2025-01-01": 1048.20392003412, - "2024-01-01": 1025.45566842892, - "2023-01-01": 970, - "2015-01-01": 970 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1704.8277359697, - "2034-01-01": 1671.81529355671, - "2033-01-01": 1639.21041216116, - "2032-01-01": 1607.4206528005, - "2031-01-01": 1576.44601547473, - "2030-01-01": 1545.8789391664, - "2029-01-01": 1515.71942387552, - "2028-01-01": 1485.96746960208, - "2027-01-01": 1455.8079543112, - "2026-01-01": 1420.79846291273, - "2025-01-01": 1399.40626437544, - "2024-01-01": 1369.03617589221, - "2023-01-01": 1295, - "2015-01-01": 1295 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1912.82988445094, - "2034-01-01": 1875.78966914123, - "2033-01-01": 1839.20674044028, - "2032-01-01": 1803.53838495685, - "2031-01-01": 1768.78460269095, - "2030-01-01": 1734.48810703381, - "2029-01-01": 1700.64889798543, - "2028-01-01": 1667.26697554581, - "2027-01-01": 1633.42776649744, - "2026-01-01": 1594.14684680479, - "2025-01-01": 1570.14463485523, - "2024-01-01": 1536.06916105899, - "2023-01-01": 1453, - "2015-01-01": 1453 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2085.28736198919, - "2034-01-01": 2044.90766408789, - "2033-01-01": 2005.0264809755, - "2032-01-01": 1966.14232744092, - "2031-01-01": 1928.25520348415, - "2030-01-01": 1890.86659431628, - "2029-01-01": 1853.97649993732, - "2028-01-01": 1817.58492034726, - "2027-01-01": 1780.6948259683, - "2026-01-01": 1737.87240560137, - "2025-01-01": 1711.70619518973, - "2024-01-01": 1674.5585348365, - "2023-01-01": 1584, - "2015-01-01": 1584 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2235.36486152629, - "2034-01-01": 2192.07904900331, - "2033-01-01": 2149.32762922753, - "2032-01-01": 2107.64499494614, - "2031-01-01": 2067.03114615914, - "2030-01-01": 2026.95169011935, - "2029-01-01": 1987.40662682675, - "2028-01-01": 1948.39595628134, - "2027-01-01": 1908.85089298874, - "2026-01-01": 1862.9465560045, - "2025-01-01": 1834.89717135869, - "2024-01-01": 1795.0760051467, - "2023-01-01": 1698, - "2015-01-01": 1698 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2367.0117909448, - "2034-01-01": 2321.17675506947, - "2033-01-01": 2275.90758383457, - "2032-01-01": 2231.77014188054, - "2031-01-01": 2188.76442920739, - "2030-01-01": 2146.32458117467, - "2029-01-01": 2104.45059778238, - "2028-01-01": 2063.14247903054, - "2027-01-01": 2021.26849563826, - "2026-01-01": 1972.66072302478, - "2025-01-01": 1942.95943115602, - "2024-01-01": 1900.79308436618, - "2023-01-01": 1798, - "2015-01-01": 1798 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2486.81049671565, - "2034-01-01": 2438.65566758967, - "2033-01-01": 2391.09534252697, - "2032-01-01": 2344.72402559084, - "2031-01-01": 2299.54171678129, - "2030-01-01": 2254.95391203501, - "2029-01-01": 2210.96061135202, - "2028-01-01": 2167.56181473231, - "2027-01-01": 2123.56851404932, - "2026-01-01": 2072.50061501325, - "2025-01-01": 2041.29608757159, - "2024-01-01": 1996.9956264559, - "2023-01-01": 1889, - "2015-01-01": 1889 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2596.07744813301, - "2034-01-01": 2545.80676362458, - "2033-01-01": 2496.15670485081, - "2032-01-01": 2447.7478975464, - "2031-01-01": 2400.58034171133, - "2030-01-01": 2354.03341161093, - "2029-01-01": 2308.1071072452, - "2028-01-01": 2262.80142861414, - "2027-01-01": 2216.87512424841, - "2026-01-01": 2163.56337364009, - "2025-01-01": 2130.98776320338, - "2024-01-01": 2084.74080220807, - "2023-01-01": 1972, - "2015-01-01": 1972 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2697.44558378526, - "2034-01-01": 2645.21199729551, - "2033-01-01": 2593.62326989823, - "2032-01-01": 2543.32426068589, - "2031-01-01": 2494.31496965847, - "2030-01-01": 2445.95053772352, - "2029-01-01": 2398.23096488104, - "2028-01-01": 2351.15625113102, - "2027-01-01": 2303.43667828854, - "2026-01-01": 2248.04328224571, - "2025-01-01": 2214.19570324732, - "2024-01-01": 2166.14295320706, - "2023-01-01": 2049, - "2015-01-01": 2049 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2830.40898249795, - "2034-01-01": 2775.60068042233, - "2033-01-01": 2721.46902405134, - "2032-01-01": 2668.69065908963, - "2031-01-01": 2617.2655855372, - "2030-01-01": 2566.5171576894, - "2029-01-01": 2516.44537554623, - "2028-01-01": 2467.05023910771, - "2027-01-01": 2416.97845696455, - "2026-01-01": 2358.8545909362, - "2025-01-01": 2323.33858564263, - "2024-01-01": 2272.91720321874, - "2023-01-01": 2150, - "2015-01-01": 2150 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3000.23352144783, - "2034-01-01": 2942.13672124767, - "2033-01-01": 2884.75716549442, - "2032-01-01": 2828.81209863501, - "2031-01-01": 2774.30152066943, - "2030-01-01": 2720.50818715076, - "2029-01-01": 2667.43209807901, - "2028-01-01": 2615.07325345417, - "2027-01-01": 2561.99716438242, - "2026-01-01": 2500.38586639237, - "2025-01-01": 2462.73890078119, - "2024-01-01": 2409.29223541186, - "2023-01-01": 2279, - "2015-01-01": 2279 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3155.57689816167, - "2034-01-01": 3094.47201440573, - "2033-01-01": 3034.12151193073, - "2032-01-01": 2975.2797720176, - "2031-01-01": 2917.94679466635, - "2030-01-01": 2861.36819859604, - "2029-01-01": 2805.54398380666, - "2028-01-01": 2750.47415029822, - "2027-01-01": 2694.64993550885, - "2026-01-01": 2629.84858347631, - "2025-01-01": 2590.25236734204, - "2024-01-01": 2534.03838889084, - "2023-01-01": 2397, - "2015-01-01": 2397 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3296.43911263948, - "2034-01-01": 3232.60655989652, - "2033-01-01": 3169.56206336026, - "2032-01-01": 3108.09367923741, - "2031-01-01": 3048.20140752797, - "2030-01-01": 2989.09719202523, - "2029-01-01": 2930.78103272919, - "2028-01-01": 2873.25292963986, - "2027-01-01": 2814.93677034382, - "2026-01-01": 2747.24274218802, - "2025-01-01": 2705.87898532518, - "2024-01-01": 2647.15566365568, - "2023-01-01": 2504, - "2015-01-01": 2504 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3428.08604205799, - "2034-01-01": 3361.70426596267, - "2033-01-01": 3296.1420179673, - "2032-01-01": 3232.21882617182, - "2031-01-01": 3169.93469057621, - "2030-01-01": 3108.47008308055, - "2029-01-01": 3047.82500368483, - "2028-01-01": 2987.99945238906, - "2027-01-01": 2927.35437299334, - "2026-01-01": 2856.95690920831, - "2025-01-01": 2813.94124512251, - "2024-01-01": 2752.87274287516, - "2023-01-01": 2604, - "2015-01-01": 2604 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3562.36591006487, - "2034-01-01": 3493.38392615015, - "2033-01-01": 3425.25357166648, - "2032-01-01": 3358.8264760449, - "2031-01-01": 3294.10263928542, - "2030-01-01": 3230.23043195698, - "2029-01-01": 3167.20985405958, - "2028-01-01": 3105.04090559324, - "2027-01-01": 3042.02032769584, - "2026-01-01": 2968.865359569, - "2025-01-01": 2924.16475011579, - "2024-01-01": 2860.70416367902, - "2023-01-01": 2706, - "2015-01-01": 2706 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3705.86106313104, - "2034-01-01": 3634.10042576226, - "2033-01-01": 3563.22572218816, - "2032-01-01": 3494.1228862034, - "2031-01-01": 3426.791917808, - "2030-01-01": 3360.34688320728, - "2029-01-01": 3294.78778240123, - "2028-01-01": 3230.11461538986, - "2027-01-01": 3164.55551458381, - "2026-01-01": 3088.45380162112, - "2025-01-01": 3041.95261329488, - "2024-01-01": 2975.93578002825, - "2023-01-01": 2815, - "2015-01-01": 2815 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3838.82446184374, - "2034-01-01": 3764.48910888908, - "2033-01-01": 3691.07147634126, - "2032-01-01": 3619.48928460715, - "2031-01-01": 3549.74253368673, - "2030-01-01": 3480.91350317315, - "2029-01-01": 3413.00219306643, - "2028-01-01": 3346.00860336655, - "2027-01-01": 3278.09729325982, - "2026-01-01": 3199.26511031161, - "2025-01-01": 3151.09549569019, - "2024-01-01": 3082.71003003992, - "2023-01-01": 2916, - "2015-01-01": 2916 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3963.88904479132, - "2034-01-01": 3887.13192965192, - "2033-01-01": 3811.32243321795, - "2032-01-01": 3737.40817419483, - "2031-01-01": 3665.38915258256, - "2030-01-01": 3594.31774967571, - "2029-01-01": 3524.19396547428, - "2028-01-01": 3455.01779997828, - "2027-01-01": 3384.89401577686, - "2026-01-01": 3303.49356898088, - "2025-01-01": 3253.75464249765, - "2024-01-01": 3183.14125529842, - "2023-01-01": 3011, - "2015-01-01": 3011 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 4683.99774871057, - "2034-01-01": 4593.29638183379, - "2033-01-01": 4503.71478491846, - "2032-01-01": 4416.37272792601, - "2031-01-01": 4331.27021085644, - "2030-01-01": 4247.28746374831, - "2029-01-01": 4164.42448660163, - "2028-01-01": 4082.68127941638, - "2027-01-01": 3999.8183022697, - "2026-01-01": 3903.63006258186, - "2025-01-01": 3844.85520358906, - "2024-01-01": 3761.41367862896, - "2023-01-01": 3558, - "2015-01-01": 3558 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1353.33043442228, - "2034-01-01": 1327.12441836007, - "2033-01-01": 1301.24193336036, - "2032-01-01": 1276.00651048565, - "2031-01-01": 1251.41814973592, - "2030-01-01": 1227.1533200487, - "2029-01-01": 1203.21202142397, - "2028-01-01": 1179.59425386173, - "2027-01-01": 1155.652955237, - "2026-01-01": 1127.86163696856, - "2025-01-01": 1110.88003071657, - "2024-01-01": 1086.77157437621, - "2023-01-01": 1028, - "2015-01-01": 1028 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1804.87940232777, - "2034-01-01": 1769.92955016698, - "2033-01-01": 1735.41117766251, - "2032-01-01": 1701.75576447064, - "2031-01-01": 1668.96331059139, - "2030-01-01": 1636.60233636845, - "2029-01-01": 1604.67284180181, - "2028-01-01": 1573.17482689147, - "2027-01-01": 1541.24533232483, - "2026-01-01": 1504.18122984815, - "2025-01-01": 1481.53358182142, - "2024-01-01": 1449.38115609902, - "2023-01-01": 1371, - "2015-01-01": 1371 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2023.41330516249, - "2034-01-01": 1984.2317422368, - "2033-01-01": 1945.53390231019, - "2032-01-01": 1907.80350838175, - "2031-01-01": 1871.04056045147, - "2030-01-01": 1834.76133552028, - "2029-01-01": 1798.96583358817, - "2028-01-01": 1763.65405465514, - "2027-01-01": 1727.85855272303, - "2026-01-01": 1686.30674710183, - "2025-01-01": 1660.91693308499, - "2024-01-01": 1624.87150760335, - "2023-01-01": 1537, - "2015-01-01": 1537 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2205.08606776003, - "2034-01-01": 2162.3865766081, - "2033-01-01": 2120.21423966791, - "2032-01-01": 2079.09621115123, - "2031-01-01": 2039.03249105805, - "2030-01-01": 1999.49592517662, - "2029-01-01": 1960.48651350695, - "2028-01-01": 1922.00425604903, - "2027-01-01": 1882.99484437936, - "2026-01-01": 1837.71229758983, - "2025-01-01": 1810.0428516053, - "2024-01-01": 1770.76107692622, - "2023-01-01": 1675, - "2015-01-01": 1675 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2363.06238306225, - "2034-01-01": 2317.30382388748, - "2033-01-01": 2272.11018519636, - "2032-01-01": 2228.04638747251, - "2031-01-01": 2185.11243071594, - "2030-01-01": 2142.74339444301, - "2029-01-01": 2100.93927865372, - "2028-01-01": 2059.70008334806, - "2027-01-01": 2017.89596755877, - "2026-01-01": 1969.36929801418, - "2025-01-01": 1939.7175633621, - "2024-01-01": 1897.6215719896, - "2023-01-01": 1795, - "2015-01-01": 1795 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2502.60812824587, - "2034-01-01": 2454.14739231761, - "2033-01-01": 2406.28493707982, - "2032-01-01": 2359.61904322297, - "2031-01-01": 2314.14971074707, - "2030-01-01": 2269.27865896165, - "2029-01-01": 2225.00588786669, - "2028-01-01": 2181.33139746221, - "2027-01-01": 2137.05862636726, - "2026-01-01": 2085.66631505568, - "2025-01-01": 2054.26355874727, - "2024-01-01": 2009.68167596224, - "2023-01-01": 1901, - "2015-01-01": 1901 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2627.67271119345, - "2034-01-01": 2576.79021308045, - "2033-01-01": 2526.5358939565, - "2032-01-01": 2477.53793281065, - "2031-01-01": 2429.7963296429, - "2030-01-01": 2382.6829054642, - "2029-01-01": 2336.19766027455, - "2028-01-01": 2290.34059407395, - "2027-01-01": 2243.8553488843, - "2026-01-01": 2189.89477372496, - "2025-01-01": 2156.92270555474, - "2024-01-01": 2110.11290122074, - "2023-01-01": 1996, - "2015-01-01": 1996 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2743.52200908174, - "2034-01-01": 2690.39619441867, - "2033-01-01": 2637.9262540107, - "2032-01-01": 2586.76806211293, - "2031-01-01": 2536.92161872536, - "2030-01-01": 2487.73104959288, - "2029-01-01": 2439.19635471551, - "2028-01-01": 2391.31753409324, - "2027-01-01": 2342.78283921587, - "2026-01-01": 2286.44324070281, - "2025-01-01": 2252.01749417639, - "2024-01-01": 2203.14393093388, - "2023-01-01": 2084, - "2015-01-01": 2084 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2850.15602191073, - "2034-01-01": 2794.96533633225, - "2033-01-01": 2740.4560172424, - "2032-01-01": 2687.30943112979, - "2031-01-01": 2635.52557799443, - "2030-01-01": 2584.42309134769, - "2029-01-01": 2534.00197118958, - "2028-01-01": 2484.26221752009, - "2027-01-01": 2433.84109736197, - "2026-01-01": 2375.31171598924, - "2025-01-01": 2339.54792461223, - "2024-01-01": 2288.77476510166, - "2023-01-01": 2165, - "2015-01-01": 2165 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2989.70176709435, - "2034-01-01": 2931.80890476238, - "2033-01-01": 2874.63076912586, - "2032-01-01": 2818.88208688026, - "2031-01-01": 2764.56285802557, - "2030-01-01": 2710.95835586633, - "2029-01-01": 2658.06858040256, - "2028-01-01": 2605.89353163424, - "2027-01-01": 2553.00375617046, - "2026-01-01": 2491.60873303075, - "2025-01-01": 2454.0939199974, - "2024-01-01": 2400.8348690743, - "2023-01-01": 2271, - "2015-01-01": 2271 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3168.74159110352, - "2034-01-01": 3107.38178501235, - "2033-01-01": 3046.77950739144, - "2032-01-01": 2987.69228671104, - "2031-01-01": 2930.12012297118, - "2030-01-01": 2873.30548770157, - "2029-01-01": 2817.24838090222, - "2028-01-01": 2761.94880257314, - "2027-01-01": 2705.8916957738, - "2026-01-01": 2640.82000017834, - "2025-01-01": 2601.05859332177, - "2024-01-01": 2544.61009681279, - "2023-01-01": 2407, - "2015-01-01": 2407 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3331.98378358248, - "2034-01-01": 3267.46294053438, - "2033-01-01": 3203.73865110416, - "2032-01-01": 3141.6074689097, - "2031-01-01": 3081.069393951, - "2030-01-01": 3021.32787261017, - "2029-01-01": 2962.38290488722, - "2028-01-01": 2904.23449078214, - "2027-01-01": 2845.28952305919, - "2026-01-01": 2776.8655672835, - "2025-01-01": 2735.05579547046, - "2024-01-01": 2675.69927504494, - "2023-01-01": 2531, - "2015-01-01": 2531 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3479.42834453121, - "2034-01-01": 3412.05237132847, - "2033-01-01": 3345.50820026405, - "2032-01-01": 3280.62763347623, - "2031-01-01": 3217.41067096503, - "2030-01-01": 3155.02551059213, - "2029-01-01": 3093.47215235753, - "2028-01-01": 3032.75059626124, - "2027-01-01": 2971.19723802665, - "2026-01-01": 2899.74543434622, - "2025-01-01": 2856.08552644347, - "2024-01-01": 2794.10240377075, - "2023-01-01": 2643, - "2015-01-01": 2643 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3617.65762042064, - "2034-01-01": 3547.60496269794, - "2033-01-01": 3478.41715260144, - "2032-01-01": 3410.95903775735, - "2031-01-01": 3345.23061816568, - "2030-01-01": 3280.36704620021, - "2029-01-01": 3216.36832186095, - "2028-01-01": 3153.2344451479, - "2027-01-01": 3089.23572080864, - "2026-01-01": 3014.94530971752, - "2025-01-01": 2969.55089923067, - "2024-01-01": 2905.1053369512, - "2023-01-01": 2748, - "2015-01-01": 2748 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3759.83630419263, - "2034-01-01": 3687.03048524938, - "2033-01-01": 3615.12350357704, - "2032-01-01": 3545.01419644651, - "2031-01-01": 3476.70256385778, - "2030-01-01": 3409.28976853996, - "2029-01-01": 3342.77581049304, - "2028-01-01": 3277.16068971703, - "2027-01-01": 3210.64673167011, - "2026-01-01": 3133.43661009944, - "2025-01-01": 3086.25813981179, - "2024-01-01": 3019.27978250824, - "2023-01-01": 2856, - "2015-01-01": 2856 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3909.91380372973, - "2034-01-01": 3834.2018701648, - "2033-01-01": 3759.42465182907, - "2032-01-01": 3686.51686395172, - "2031-01-01": 3615.47850653278, - "2030-01-01": 3545.37486434303, - "2029-01-01": 3476.20593738247, - "2028-01-01": 3407.97172565111, - "2027-01-01": 3338.80279869056, - "2026-01-01": 3258.51076050256, - "2025-01-01": 3209.44911598075, - "2024-01-01": 3139.79725281844, - "2023-01-01": 2970, - "2015-01-01": 2970 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 4049.45954891335, - "2034-01-01": 3971.04543859493, - "2033-01-01": 3893.59940371253, - "2032-01-01": 3818.08951970219, - "2031-01-01": 3744.51578656391, - "2030-01-01": 3671.91012886167, - "2029-01-01": 3600.27254659545, - "2028-01-01": 3529.60303976526, - "2027-01-01": 3457.96545749904, - "2026-01-01": 3374.80777754407, - "2025-01-01": 3323.99511136592, - "2024-01-01": 3251.85735679108, - "2023-01-01": 3076, - "2015-01-01": 3076 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 4181.10647833186, - "2034-01-01": 4100.14314466108, - "2033-01-01": 4020.17935831957, - "2032-01-01": 3942.21466663659, - "2031-01-01": 3866.24906961216, - "2030-01-01": 3791.28301991699, - "2029-01-01": 3717.31651755109, - "2028-01-01": 3644.34956251446, - "2027-01-01": 3570.38306014856, - "2026-01-01": 3484.52194456436, - "2025-01-01": 3432.05737116325, - "2024-01-01": 3357.57443601056, - "2023-01-01": 3176, - "2015-01-01": 3176 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 4938.07632248829, - "2034-01-01": 4842.45495454147, - "2033-01-01": 4748.01409731004, - "2032-01-01": 4655.9342615094, - "2031-01-01": 4566.21544713955, - "2030-01-01": 4477.67714348508, - "2029-01-01": 4390.31935054601, - "2028-01-01": 4304.14206832233, - "2027-01-01": 4216.78427538326, - "2026-01-01": 4115.37840493102, - "2025-01-01": 4053.41536499791, - "2024-01-01": 3965.44764152255, - "2023-01-01": 3751, - "2015-01-01": 3751 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1458.64797795709, - "2034-01-01": 1430.402583213, - "2033-01-01": 1402.505897046, - "2032-01-01": 1375.30662803317, - "2031-01-01": 1348.80477617452, - "2030-01-01": 1322.65163289295, - "2029-01-01": 1296.84719818848, - "2028-01-01": 1271.39147206109, - "2027-01-01": 1245.58703735661, - "2026-01-01": 1215.6329705848, - "2025-01-01": 1197.32983855443, - "2024-01-01": 1171.34523775179, - "2023-01-01": 1108, - "2015-01-01": 1108 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1944.42514751139, - "2034-01-01": 1906.77311859711, - "2033-01-01": 1869.58592954597, - "2032-01-01": 1833.32842022111, - "2031-01-01": 1798.00059062253, - "2030-01-01": 1763.13760088709, - "2029-01-01": 1728.73945101478, - "2028-01-01": 1694.80614100562, - "2027-01-01": 1660.40799113332, - "2026-01-01": 1620.47824688966, - "2025-01-01": 1596.07957720659, - "2024-01-01": 1561.44126007166, - "2023-01-01": 1477, - "2015-01-01": 1477 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2178.75668187633, - "2034-01-01": 2136.56703539486, - "2033-01-01": 2094.8982487465, - "2032-01-01": 2054.27118176435, - "2031-01-01": 2014.6858344484, - "2030-01-01": 1975.62134696556, - "2029-01-01": 1937.07771931582, - "2028-01-01": 1899.05495149919, - "2027-01-01": 1860.51132384945, - "2026-01-01": 1815.76946418577, - "2025-01-01": 1788.43039964584, - "2024-01-01": 1749.61766108233, - "2023-01-01": 1655, - "2015-01-01": 1655 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2373.59413741573, - "2034-01-01": 2327.63164037277, - "2033-01-01": 2282.23658156492, - "2032-01-01": 2237.97639922726, - "2031-01-01": 2194.8510933598, - "2030-01-01": 2152.29322572743, - "2029-01-01": 2110.30279633017, - "2028-01-01": 2068.879805168, - "2027-01-01": 2026.88937577073, - "2026-01-01": 1978.1464313758, - "2025-01-01": 1948.36254414589, - "2024-01-01": 1906.07893832715, - "2023-01-01": 1803, - "2015-01-01": 1803 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2542.10220707142, - "2034-01-01": 2492.87670413745, - "2033-01-01": 2444.25892346193, - "2032-01-01": 2396.85658730329, - "2031-01-01": 2350.66969566155, - "2030-01-01": 2305.09052627824, - "2029-01-01": 2260.11907915338, - "2028-01-01": 2215.75535428697, - "2027-01-01": 2170.78390716211, - "2026-01-01": 2118.58056516177, - "2025-01-01": 2086.68223668647, - "2024-01-01": 2041.39679972808, - "2023-01-01": 1931, - "2015-01-01": 1931 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2690.86323731433, - "2034-01-01": 2638.75711199221, - "2033-01-01": 2587.29427216788, - "2032-01-01": 2537.11800333917, - "2031-01-01": 2488.22830550606, - "2030-01-01": 2439.98189317076, - "2029-01-01": 2392.37876633326, - "2028-01-01": 2345.41892499356, - "2027-01-01": 2297.81579815606, - "2026-01-01": 2242.55757389469, - "2025-01-01": 2208.79259025746, - "2024-01-01": 2160.85709924609, - "2023-01-01": 2044, - "2015-01-01": 2044 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2826.4595746154, - "2034-01-01": 2771.72774924035, - "2033-01-01": 2717.67162541313, - "2032-01-01": 2664.9669046816, - "2031-01-01": 2613.61358704575, - "2030-01-01": 2562.93597095774, - "2029-01-01": 2512.93405641756, - "2028-01-01": 2463.60784342523, - "2027-01-01": 2413.60592888506, - "2026-01-01": 2355.56316592559, - "2025-01-01": 2320.09671784871, - "2024-01-01": 2269.74569084215, - "2023-01-01": 2147, - "2015-01-01": 2147 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2948.89121897461, - "2034-01-01": 2891.78861588187, - "2033-01-01": 2835.39098319768, - "2032-01-01": 2780.40329133059, - "2031-01-01": 2726.82554028061, - "2030-01-01": 2673.95275963919, - "2029-01-01": 2621.78494940631, - "2028-01-01": 2570.32210958198, - "2027-01-01": 2518.15429934911, - "2026-01-01": 2457.59734125446, - "2025-01-01": 2420.59461946023, - "2024-01-01": 2368.06257451626, - "2023-01-01": 2240, - "2015-01-01": 2240 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3063.42404756872, - "2034-01-01": 3004.10362015942, - "2033-01-01": 2945.5155437058, - "2032-01-01": 2888.39216916352, - "2031-01-01": 2832.73349653258, - "2030-01-01": 2777.80717485731, - "2029-01-01": 2723.61320413771, - "2028-01-01": 2670.15158437378, - "2027-01-01": 2615.95761365419, - "2026-01-01": 2553.04866656211, - "2025-01-01": 2514.6087854839, - "2024-01-01": 2460.03643343721, - "2023-01-01": 2327, - "2015-01-01": 2327 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3213.50154710582, - "2034-01-01": 3151.27500507484, - "2033-01-01": 3089.81669195783, - "2032-01-01": 3029.89483666874, - "2031-01-01": 2971.50943920758, - "2030-01-01": 2913.89227066038, - "2029-01-01": 2857.04333102714, - "2028-01-01": 2800.96262030787, - "2027-01-01": 2744.11368067463, - "2026-01-01": 2678.12281696524, - "2025-01-01": 2637.79976165286, - "2024-01-01": 2580.55390374741, - "2023-01-01": 2441, - "2015-01-01": 2441 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3404.38959476266, - "2034-01-01": 3338.46667887077, - "2033-01-01": 3273.35762613804, - "2032-01-01": 3209.87629972362, - "2031-01-01": 3148.02269962753, - "2030-01-01": 3086.9829626906, - "2029-01-01": 3026.75708891282, - "2028-01-01": 2967.3450782942, - "2027-01-01": 2907.11920451643, - "2026-01-01": 2837.20835914466, - "2025-01-01": 2794.49003835899, - "2024-01-01": 2733.84366861565, - "2023-01-01": 2586, - "2015-01-01": 2586 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3578.16354159509, - "2034-01-01": 3508.87565087809, - "2033-01-01": 3440.44316621933, - "2032-01-01": 3373.72149367703, - "2031-01-01": 3308.71063325121, - "2030-01-01": 3244.55517888362, - "2029-01-01": 3181.25513057426, - "2028-01-01": 3118.81048832314, - "2027-01-01": 3055.51044001378, - "2026-01-01": 2982.03105961144, - "2025-01-01": 2937.13222129147, - "2024-01-01": 2873.39021318536, - "2023-01-01": 2718, - "2015-01-01": 2718 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3737.45632619149, - "2034-01-01": 3665.08387521814, - "2033-01-01": 3593.60491129384, - "2032-01-01": 3523.91292146766, - "2031-01-01": 3456.00790573958, - "2030-01-01": 3388.99637706056, - "2029-01-01": 3322.87833543058, - "2028-01-01": 3257.65378084967, - "2027-01-01": 3191.5357392197, - "2026-01-01": 3114.78520170599, - "2025-01-01": 3067.88755564624, - "2024-01-01": 3001.30787904093, - "2023-01-01": 2839, - "2015-01-01": 2839 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3884.90088714022, - "2034-01-01": 3809.67330601223, - "2033-01-01": 3735.37446045373, - "2032-01-01": 3662.93308603419, - "2031-01-01": 3592.34918275361, - "2030-01-01": 3522.69401504252, - "2029-01-01": 3453.9675829009, - "2028-01-01": 3386.16988632877, - "2027-01-01": 3317.44345418715, - "2026-01-01": 3237.66506876871, - "2025-01-01": 3188.91728661925, - "2024-01-01": 3119.71100776674, - "2023-01-01": 2951, - "2015-01-01": 2951 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 4036.2948559715, - "2034-01-01": 3958.13566798831, - "2033-01-01": 3880.94140825182, - "2032-01-01": 3805.67700500875, - "2031-01-01": 3732.34245825909, - "2030-01-01": 3659.97283975613, - "2029-01-01": 3588.56814949988, - "2028-01-01": 3518.12838749034, - "2027-01-01": 3446.72369723409, - "2026-01-01": 3363.83636084204, - "2025-01-01": 3313.18888538618, - "2024-01-01": 3241.28564886914, - "2023-01-01": 3066, - "2015-01-01": 3066 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 4196.90410986208, - "2034-01-01": 4115.63486938902, - "2033-01-01": 4035.36895287241, - "2032-01-01": 3957.10968426872, - "2031-01-01": 3880.85706357794, - "2030-01-01": 3805.60776684363, - "2029-01-01": 3731.36179406576, - "2028-01-01": 3658.11914524436, - "2027-01-01": 3583.8731724665, - "2026-01-01": 3497.68764460679, - "2025-01-01": 3445.02484233893, - "2024-01-01": 3370.2604855169, - "2023-01-01": 3188, - "2015-01-01": 3188 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 4345.665140105, - "2034-01-01": 4261.51527724377, - "2033-01-01": 4178.40430157837, - "2032-01-01": 4097.37110030459, - "2031-01-01": 4018.41567342246, - "2030-01-01": 3940.49913373614, - "2029-01-01": 3863.62148124564, - "2028-01-01": 3787.78271595095, - "2027-01-01": 3710.90506346045, - "2026-01-01": 3621.66465333972, - "2025-01-01": 3567.13519590991, - "2024-01-01": 3489.7207850349, - "2023-01-01": 3301, - "2015-01-01": 3301 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 4486.52735458281, - "2034-01-01": 4399.64982273456, - "2033-01-01": 4313.8448530079, - "2032-01-01": 4230.1850075244, - "2031-01-01": 4148.67028628408, - "2030-01-01": 4068.22812716533, - "2029-01-01": 3988.85853016817, - "2028-01-01": 3910.56149529259, - "2027-01-01": 3831.19189829543, - "2026-01-01": 3739.05881205143, - "2025-01-01": 3682.76181389306, - "2024-01-01": 3602.83805979974, - "2023-01-01": 3408, - "2015-01-01": 3408 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MO.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 5293.52303191827, - "2034-01-01": 5191.01876092009, - "2033-01-01": 5089.77997474905, - "2032-01-01": 4991.07215823229, - "2031-01-01": 4894.8953113698, - "2030-01-01": 4799.98394933445, - "2029-01-01": 4706.33807212623, - "2028-01-01": 4613.95767974516, - "2027-01-01": 4520.31180253695, - "2026-01-01": 4411.6066558858, - "2025-01-01": 4345.1834664507, - "2024-01-01": 4250.88375541513, - "2023-01-01": 4021, - "2015-01-01": 4021 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE", - "description": null, - "label": "NE", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 505.524208967077, - "2034-01-01": 495.735191294035, - "2033-01-01": 486.067025691031, - "2032-01-01": 476.640564228102, - "2031-01-01": 467.455806905248, - "2030-01-01": 458.391901652432, - "2029-01-01": 449.448848469653, - "2028-01-01": 440.626647356912, - "2027-01-01": 431.683594174133, - "2026-01-01": 421.302401357907, - "2025-01-01": 414.959077621753, - "2024-01-01": 405.953584202788, - "2023-01-01": 384, - "2015-01-01": 384 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 724.058111801802, - "2034-01-01": 710.037383363852, - "2033-01-01": 696.189750338716, - "2032-01-01": 682.688308139208, - "2031-01-01": 669.533056765329, - "2030-01-01": 656.550900804264, - "2029-01-01": 643.741840256013, - "2028-01-01": 631.105875120577, - "2027-01-01": 618.296814572326, - "2026-01-01": 603.427918611586, - "2025-01-01": 594.342428885323, - "2024-01-01": 581.443935707118, - "2023-01-01": 550, - "2015-01-01": 550 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 833.325063219165, - "2034-01-01": 817.188479398761, - "2033-01-01": 801.251112662559, - "2032-01-01": 785.712180094762, - "2031-01-01": 770.57168169537, - "2030-01-01": 755.63040038018, - "2029-01-01": 740.888336149193, - "2028-01-01": 726.345489002409, - "2027-01-01": 711.603424771422, - "2026-01-01": 694.490677238425, - "2025-01-01": 684.034104517108, - "2024-01-01": 669.189111459283, - "2023-01-01": 633, - "2015-01-01": 633 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 926.794383106307, - "2034-01-01": 908.847850705731, - "2033-01-01": 891.122880433556, - "2032-01-01": 873.841034418187, - "2031-01-01": 857.002312659621, - "2030-01-01": 840.385153029458, - "2029-01-01": 823.989555527697, - "2028-01-01": 807.815520154338, - "2027-01-01": 791.419922652577, - "2026-01-01": 772.38773582283, - "2025-01-01": 760.758308973214, - "2024-01-01": 744.248237705111, - "2023-01-01": 704, - "2015-01-01": 704 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1008.41547934578, - "2034-01-01": 988.888428466747, - "2033-01-01": 969.602452289921, - "2032-01-01": 950.798625517516, - "2031-01-01": 932.476948149531, - "2030-01-01": 914.396345483757, - "2029-01-01": 896.556817520193, - "2028-01-01": 878.958364258839, - "2027-01-01": 861.118836295276, - "2026-01-01": 840.410519375409, - "2025-01-01": 827.756910047559, - "2024-01-01": 809.792826821187, - "2023-01-01": 766, - "2015-01-01": 766 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1080.82129052596, - "2034-01-01": 1059.89216680313, - "2033-01-01": 1039.22142732379, - "2032-01-01": 1019.06745633144, - "2031-01-01": 999.430253826064, - "2030-01-01": 980.051435564183, - "2029-01-01": 960.931001545794, - "2028-01-01": 942.068951770897, - "2027-01-01": 922.948517752508, - "2026-01-01": 900.753311236567, - "2025-01-01": 887.191152936092, - "2024-01-01": 867.937220391898, - "2023-01-01": 821, - "2015-01-01": 821 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1147.9612245294, - "2034-01-01": 1125.73199689687, - "2033-01-01": 1103.77720417338, - "2032-01-01": 1082.37128126798, - "2031-01-01": 1061.51422818067, - "2030-01-01": 1040.9316100024, - "2029-01-01": 1020.62342673317, - "2028-01-01": 1000.58967837299, - "2027-01-01": 980.28149510376, - "2026-01-01": 956.707536416914, - "2025-01-01": 942.302905432731, - "2024-01-01": 921.852930793831, - "2023-01-01": 872, - "2015-01-01": 872 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1209.8352813561, - "2034-01-01": 1186.40791874796, - "2033-01-01": 1163.26978283869, - "2032-01-01": 1140.71010032715, - "2031-01-01": 1118.72887121334, - "2030-01-01": 1097.0368687984, - "2029-01-01": 1075.63409308232, - "2028-01-01": 1054.52054406511, - "2027-01-01": 1033.11776834903, - "2026-01-01": 1008.27319491645, - "2025-01-01": 993.092167537477, - "2024-01-01": 971.539958026985, - "2023-01-01": 919, - "2015-01-01": 919 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1266.44346100606, - "2034-01-01": 1241.91993235641, - "2033-01-01": 1217.69916331972, - "2032-01-01": 1194.08391350894, - "2031-01-01": 1171.07418292408, - "2030-01-01": 1148.36721195219, - "2029-01-01": 1125.96300059324, - "2028-01-01": 1103.86154884726, - "2027-01-01": 1081.45733748832, - "2026-01-01": 1055.45028673517, - "2025-01-01": 1039.55893925033, - "2024-01-01": 1016.99830209136, - "2023-01-01": 962, - "2015-01-01": 962 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1342.7986800688, - "2034-01-01": 1316.79660187478, - "2033-01-01": 1291.1155369918, - "2032-01-01": 1266.0764987309, - "2031-01-01": 1241.67948709207, - "2030-01-01": 1217.60348876427, - "2029-01-01": 1193.84850374752, - "2028-01-01": 1170.4145320418, - "2027-01-01": 1146.65954702504, - "2026-01-01": 1119.08450360694, - "2025-01-01": 1102.23504993278, - "2024-01-01": 1078.31420803866, - "2023-01-01": 1020, - "2015-01-01": 1020 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1440.21740783849, - "2034-01-01": 1412.32890436373, - "2033-01-01": 1384.78470340101, - "2032-01-01": 1357.92910746235, - "2031-01-01": 1331.76211654776, - "2030-01-01": 1305.93942814521, - "2029-01-01": 1280.46104225469, - "2028-01-01": 1255.3269588762, - "2027-01-01": 1229.84857298568, - "2026-01-01": 1200.27298720195, - "2025-01-01": 1182.20112218281, - "2024-01-01": 1156.54484666107, - "2023-01-01": 1094, - "2015-01-01": 1094 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1529.73731984308, - "2034-01-01": 1500.11534448872, - "2033-01-01": 1470.8590725338, - "2032-01-01": 1442.33420737775, - "2031-01-01": 1414.54074902057, - "2030-01-01": 1387.11299406283, - "2029-01-01": 1360.05094250452, - "2028-01-01": 1333.35459434565, - "2027-01-01": 1306.29254278735, - "2026-01-01": 1274.87862077575, - "2025-01-01": 1255.68345884499, - "2024-01-01": 1228.43246053031, - "2023-01-01": 1162, - "2015-01-01": 1162 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1612.67488537674, - "2034-01-01": 1581.4468993104, - "2033-01-01": 1550.60444393623, - "2032-01-01": 1520.53304994642, - "2031-01-01": 1491.23271734096, - "2030-01-01": 1462.31791542768, - "2029-01-01": 1433.78864420657, - "2028-01-01": 1405.64490367765, - "2027-01-01": 1377.11563245654, - "2026-01-01": 1343.99854599853, - "2025-01-01": 1323.76268251731, - "2024-01-01": 1295.03422043858, - "2023-01-01": 1225, - "2015-01-01": 1225 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1689.03010443948, - "2034-01-01": 1656.32356882877, - "2033-01-01": 1624.02081760831, - "2032-01-01": 1592.52563516837, - "2031-01-01": 1561.83802150894, - "2030-01-01": 1531.55419223977, - "2029-01-01": 1501.67414736085, - "2028-01-01": 1472.19788687218, - "2027-01-01": 1442.31784199326, - "2026-01-01": 1407.6327628703, - "2025-01-01": 1386.43879319976, - "2024-01-01": 1356.35012638588, - "2023-01-01": 1283, - "2015-01-01": 1283 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1769.33473138477, - "2034-01-01": 1735.07316952912, - "2033-01-01": 1701.23458991861, - "2032-01-01": 1668.24197479836, - "2031-01-01": 1636.09532416837, - "2030-01-01": 1604.37165578351, - "2029-01-01": 1573.07096964378, - "2028-01-01": 1542.19326574919, - "2027-01-01": 1510.89257960947, - "2026-01-01": 1474.55840475268, - "2025-01-01": 1452.35677167614, - "2024-01-01": 1420.83754470976, - "2023-01-01": 1344, - "2015-01-01": 1344 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1854.9052355068, - "2034-01-01": 1818.98667847212, - "2033-01-01": 1783.51156041318, - "2032-01-01": 1748.92332030572, - "2031-01-01": 1715.22195814973, - "2030-01-01": 1681.96403496947, - "2029-01-01": 1649.14955076495, - "2028-01-01": 1616.77850553617, - "2027-01-01": 1583.96402133165, - "2026-01-01": 1545.87261331586, - "2025-01-01": 1522.5972405444, - "2024-01-01": 1489.55364620242, - "2023-01-01": 1409, - "2015-01-01": 1409 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1933.89339315791, - "2034-01-01": 1896.44530211182, - "2033-01-01": 1859.45953317741, - "2032-01-01": 1823.39840846636, - "2031-01-01": 1788.26192797867, - "2030-01-01": 1753.58776960266, - "2029-01-01": 1719.37593333833, - "2028-01-01": 1685.62641918569, - "2027-01-01": 1651.41458292136, - "2026-01-01": 1611.70111352804, - "2025-01-01": 1587.4345964228, - "2024-01-01": 1552.9838937341, - "2023-01-01": 1469, - "2015-01-01": 1469 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2010.24861222064, - "2034-01-01": 1971.32197163019, - "2033-01-01": 1932.87590684949, - "2032-01-01": 1895.39099368831, - "2031-01-01": 1858.86723214665, - "2030-01-01": 1822.82404641475, - "2029-01-01": 1787.2614364926, - "2028-01-01": 1752.17940238022, - "2027-01-01": 1716.61679245808, - "2026-01-01": 1675.3353303998, - "2025-01-01": 1650.11070710525, - "2024-01-01": 1614.2997996814, - "2023-01-01": 1527, - "2015-01-01": 1527 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2449.94935647846, - "2034-01-01": 2402.50830989114, - "2033-01-01": 2355.652955237, - "2032-01-01": 2309.96898444921, - "2031-01-01": 2265.45639752778, - "2030-01-01": 2221.52950253952, - "2029-01-01": 2178.18829948444, - "2028-01-01": 2135.43278836253, - "2027-01-01": 2092.09158530745, - "2026-01-01": 2041.78064824757, - "2025-01-01": 2011.03865482834, - "2024-01-01": 1967.39484427445, - "2023-01-01": 1861, - "2015-01-01": 1861 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 566.081796499591, - "2034-01-01": 555.120136084466, - "2033-01-01": 544.293804810269, - "2032-01-01": 533.738131817927, - "2031-01-01": 523.453117107439, - "2030-01-01": 513.303431537879, - "2029-01-01": 503.289075109247, - "2028-01-01": 493.410047821542, - "2027-01-01": 483.395691392909, - "2026-01-01": 471.77091818724, - "2025-01-01": 464.667717128525, - "2024-01-01": 454.583440643747, - "2023-01-01": 430, - "2015-01-01": 430 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 809.628615923834, - "2034-01-01": 793.950892306853, - "2033-01-01": 778.466720833291, - "2032-01-01": 763.369653646569, - "2031-01-01": 748.659690746686, - "2030-01-01": 734.143279990223, - "2029-01-01": 719.820421377178, - "2028-01-01": 705.691114907554, - "2027-01-01": 691.36825629451, - "2026-01-01": 674.742127174773, - "2025-01-01": 664.582897753589, - "2024-01-01": 650.160037199778, - "2023-01-01": 615, - "2015-01-01": 615 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 932.060260283048, - "2034-01-01": 914.011758948377, - "2033-01-01": 896.186078617838, - "2032-01-01": 878.806040295563, - "2031-01-01": 861.871643981551, - "2030-01-01": 845.160068671671, - "2029-01-01": 828.671314365922, - "2028-01-01": 812.405381064306, - "2027-01-01": 795.916626758558, - "2026-01-01": 776.776302503642, - "2025-01-01": 765.080799365107, - "2024-01-01": 748.47692087389, - "2023-01-01": 708, - "2015-01-01": 708 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1036.06133452367, - "2034-01-01": 1015.99894674064, - "2033-01-01": 996.184242757399, - "2032-01-01": 976.86490637374, - "2031-01-01": 958.040937589662, - "2030-01-01": 939.464652605375, - "2029-01-01": 921.136051420877, - "2028-01-01": 903.05513403617, - "2027-01-01": 884.726532851673, - "2026-01-01": 863.450494449669, - "2025-01-01": 850.449984604999, - "2024-01-01": 831.993413457277, - "2023-01-01": 787, - "2015-01-01": 787 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1128.21418511663, - "2034-01-01": 1106.36734098695, - "2033-01-01": 1084.79021098233, - "2032-01-01": 1063.75250922782, - "2031-01-01": 1043.25423572343, - "2030-01-01": 1023.0256763441, - "2029-01-01": 1003.06683108982, - "2028-01-01": 983.377699960607, - "2027-01-01": 963.418854706333, - "2026-01-01": 940.250411363871, - "2025-01-01": 926.093566463131, - "2024-01-01": 905.99536891091, - "2023-01-01": 857, - "2015-01-01": 857 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1208.51881206192, - "2034-01-01": 1185.1169416873, - "2033-01-01": 1162.00398329262, - "2032-01-01": 1139.46884885781, - "2031-01-01": 1117.51153838286, - "2030-01-01": 1095.84313988784, - "2029-01-01": 1074.46365337276, - "2028-01-01": 1053.37307883762, - "2027-01-01": 1031.99359232254, - "2026-01-01": 1007.17605324625, - "2025-01-01": 992.011544939503, - "2024-01-01": 970.48278723479, - "2023-01-01": 918, - "2015-01-01": 918 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1283.55756183047, - "2034-01-01": 1258.70263414501, - "2033-01-01": 1234.15455741863, - "2032-01-01": 1210.22018261041, - "2031-01-01": 1186.89950972036, - "2030-01-01": 1163.88568778938, - "2029-01-01": 1141.17871681748, - "2028-01-01": 1118.77859680466, - "2027-01-01": 1096.07162583276, - "2026-01-01": 1069.71312844781, - "2025-01-01": 1053.60703302398, - "2024-01-01": 1030.74152238989, - "2023-01-01": 975, - "2015-01-01": 975 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1352.01396512809, - "2034-01-01": 1325.83344129941, - "2033-01-01": 1299.97613381429, - "2032-01-01": 1274.7652590163, - "2031-01-01": 1250.20081690544, - "2030-01-01": 1225.95959113814, - "2029-01-01": 1202.04158171441, - "2028-01-01": 1178.44678863424, - "2027-01-01": 1154.52877921051, - "2026-01-01": 1126.76449529836, - "2025-01-01": 1109.79940811859, - "2024-01-01": 1085.71440358402, - "2023-01-01": 1027, - "2015-01-01": 1027 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1416.52096054316, - "2034-01-01": 1389.09131727183, - "2033-01-01": 1362.00031157174, - "2032-01-01": 1335.58658101416, - "2031-01-01": 1309.85012559908, - "2030-01-01": 1284.45230775525, - "2029-01-01": 1259.39312748267, - "2028-01-01": 1234.67258478135, - "2027-01-01": 1209.61340450877, - "2026-01-01": 1180.5244371383, - "2025-01-01": 1162.74991541929, - "2024-01-01": 1137.51577240156, - "2023-01-01": 1076, - "2015-01-01": 1076 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1500.77499537101, - "2034-01-01": 1471.71384915417, - "2033-01-01": 1443.01148252025, - "2032-01-01": 1415.02667505218, - "2031-01-01": 1387.75942674996, - "2030-01-01": 1360.85095803066, - "2029-01-01": 1334.30126889428, - "2028-01-01": 1308.11035934083, - "2027-01-01": 1281.56067020446, - "2026-01-01": 1250.74150403129, - "2025-01-01": 1231.90976168958, - "2024-01-01": 1205.17470310203, - "2023-01-01": 1140, - "2015-01-01": 1140 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1610.04194678837, - "2034-01-01": 1578.86494518907, - "2033-01-01": 1548.07284484409, - "2032-01-01": 1518.05054700773, - "2031-01-01": 1488.79805168, - "2030-01-01": 1459.93045760657, - "2029-01-01": 1431.44776478746, - "2028-01-01": 1403.34997322266, - "2027-01-01": 1374.86728040355, - "2026-01-01": 1341.80426265813, - "2025-01-01": 1321.60143732136, - "2024-01-01": 1292.91987885419, - "2023-01-01": 1223, - "2015-01-01": 1223 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1710.09361314644, - "2034-01-01": 1676.97920179935, - "2033-01-01": 1644.27361034544, - "2032-01-01": 1612.38565867788, - "2031-01-01": 1581.31534679666, - "2030-01-01": 1550.65385480862, - "2029-01-01": 1520.40118271375, - "2028-01-01": 1490.55733051205, - "2027-01-01": 1460.30465841718, - "2026-01-01": 1425.18702959355, - "2025-01-01": 1403.72875476734, - "2024-01-01": 1373.26485906099, - "2023-01-01": 1299, - "2015-01-01": 1299 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1802.2464637394, - "2034-01-01": 1767.34759604566, - "2033-01-01": 1732.87957857037, - "2032-01-01": 1699.27326153196, - "2031-01-01": 1666.52864493043, - "2030-01-01": 1634.21487854734, - "2029-01-01": 1602.33196238269, - "2028-01-01": 1570.87989643649, - "2027-01-01": 1538.99698027184, - "2026-01-01": 1501.98694650775, - "2025-01-01": 1479.37233662547, - "2024-01-01": 1447.26681451463, - "2023-01-01": 1369, - "2015-01-01": 1369 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1889.13343715561, - "2034-01-01": 1852.55208204932, - "2033-01-01": 1816.42234861101, - "2032-01-01": 1781.19585850866, - "2031-01-01": 1746.87261174227, - "2030-01-01": 1713.00098664385, - "2029-01-01": 1679.58098321342, - "2028-01-01": 1646.61260145096, - "2027-01-01": 1613.19259802052, - "2026-01-01": 1574.39829674114, - "2025-01-01": 1550.69342809171, - "2024-01-01": 1517.04008679948, - "2023-01-01": 1435, - "2015-01-01": 1435 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1977.33687986601, - "2034-01-01": 1939.04754511365, - "2033-01-01": 1901.23091819773, - "2032-01-01": 1864.35970695471, - "2031-01-01": 1828.43391138459, - "2030-01-01": 1792.98082365092, - "2029-01-01": 1758.00044375369, - "2028-01-01": 1723.49277169292, - "2027-01-01": 1688.5123917957, - "2026-01-01": 1647.90678864473, - "2025-01-01": 1623.09514215592, - "2024-01-01": 1587.87052987653, - "2023-01-01": 1502, - "2015-01-01": 1502 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2072.12266904734, - "2034-01-01": 2031.99789348128, - "2033-01-01": 1992.3684855148, - "2032-01-01": 1953.72981274748, - "2031-01-01": 1916.08187517932, - "2030-01-01": 1878.92930521075, - "2029-01-01": 1842.27210284175, - "2028-01-01": 1806.11026807234, - "2027-01-01": 1769.45306570335, - "2026-01-01": 1726.90098889934, - "2025-01-01": 1700.89996921, - "2024-01-01": 1663.98682691455, - "2023-01-01": 1574, - "2015-01-01": 1574 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2161.64258105193, - "2034-01-01": 2119.78433360626, - "2033-01-01": 2078.44285464758, - "2032-01-01": 2038.13491266287, - "2031-01-01": 1998.86050765213, - "2030-01-01": 1960.10287112837, - "2029-01-01": 1921.86200309159, - "2028-01-01": 1884.13790354179, - "2027-01-01": 1845.89703550502, - "2026-01-01": 1801.50662247313, - "2025-01-01": 1774.38230587218, - "2024-01-01": 1735.8744407838, - "2023-01-01": 1642, - "2015-01-01": 1642 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2245.89661587977, - "2034-01-01": 2202.4068654886, - "2033-01-01": 2159.45402559609, - "2032-01-01": 2117.57500670089, - "2031-01-01": 2076.769808803, - "2030-01-01": 2036.50152140377, - "2029-01-01": 1996.7701445032, - "2028-01-01": 1957.57567810128, - "2027-01-01": 1917.8443012007, - "2026-01-01": 1871.72368936612, - "2025-01-01": 1843.54215214248, - "2024-01-01": 1803.53337148426, - "2023-01-01": 1706, - "2015-01-01": 1706 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2736.93966261081, - "2034-01-01": 2683.94130911536, - "2033-01-01": 2631.59725628035, - "2032-01-01": 2580.56180476621, - "2031-01-01": 2530.83495457294, - "2030-01-01": 2481.76240504012, - "2029-01-01": 2433.34415616773, - "2028-01-01": 2385.58020795578, - "2027-01-01": 2337.16195908339, - "2026-01-01": 2280.95753235179, - "2025-01-01": 2246.61438118652, - "2024-01-01": 2197.85807697291, - "2023-01-01": 2079, - "2015-01-01": 2079 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 605.575875325144, - "2034-01-01": 593.849447904313, - "2033-01-01": 582.267791192381, - "2032-01-01": 570.975675898247, - "2031-01-01": 559.973102021912, - "2030-01-01": 549.115298854476, - "2029-01-01": 538.402266395938, - "2028-01-01": 527.8340046463, - "2027-01-01": 517.120972187763, - "2026-01-01": 504.685168293326, - "2025-01-01": 497.086395067725, - "2024-01-01": 486.29856440959, - "2023-01-01": 460, - "2015-01-01": 460 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 864.920326279608, - "2034-01-01": 848.171928854638, - "2033-01-01": 831.630301768248, - "2032-01-01": 815.502215359018, - "2031-01-01": 799.787669626948, - "2030-01-01": 784.279894233457, - "2029-01-01": 768.978889178547, - "2028-01-01": 753.884654462216, - "2027-01-01": 738.583649407305, - "2026-01-01": 720.822077323295, - "2025-01-01": 709.969046868468, - "2024-01-01": 694.561210471958, - "2023-01-01": 657, - "2015-01-01": 657 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 995.250786403932, - "2034-01-01": 975.978657860131, - "2033-01-01": 956.944456829217, - "2032-01-01": 938.386110824075, - "2031-01-01": 920.303619844707, - "2030-01-01": 902.459056378225, - "2029-01-01": 884.852420424629, - "2028-01-01": 867.48371198392, - "2027-01-01": 849.877076030324, - "2026-01-01": 829.43910267338, - "2025-01-01": 816.950684067826, - "2024-01-01": 799.221118899239, - "2023-01-01": 756, - "2015-01-01": 756 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1105.83420711548, - "2034-01-01": 1084.4207309557, - "2033-01-01": 1063.27161869913, - "2032-01-01": 1042.65123424897, - "2031-01-01": 1022.55957760523, - "2030-01-01": 1002.73228486469, - "2029-01-01": 983.169356027365, - "2028-01-01": 963.870791093244, - "2027-01-01": 944.307862255916, - "2026-01-01": 921.599002970422, - "2025-01-01": 907.722982297585, - "2024-01-01": 888.023465443599, - "2023-01-01": 840, - "2015-01-01": 840 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1204.56940417936, - "2034-01-01": 1181.24401050532, - "2033-01-01": 1158.20658465441, - "2032-01-01": 1135.74509444977, - "2031-01-01": 1113.85953989141, - "2030-01-01": 1092.26195315619, - "2029-01-01": 1070.95233424409, - "2028-01-01": 1049.93068315514, - "2027-01-01": 1028.62106424305, - "2026-01-01": 1003.88462823564, - "2025-01-01": 988.769677145583, - "2024-01-01": 967.311274858206, - "2023-01-01": 915, - "2015-01-01": 915 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1291.45637759558, - "2034-01-01": 1266.44849650898, - "2033-01-01": 1241.74935469506, - "2032-01-01": 1217.66769142648, - "2031-01-01": 1194.20350670325, - "2030-01-01": 1171.0480612527, - "2029-01-01": 1148.20135507482, - "2028-01-01": 1125.66338816961, - "2027-01-01": 1102.81668199173, - "2026-01-01": 1076.29597846903, - "2025-01-01": 1060.09076861182, - "2024-01-01": 1037.08454714306, - "2023-01-01": 981, - "2015-01-01": 981 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1370.44453524668, - "2034-01-01": 1343.90712014867, - "2033-01-01": 1317.69732745928, - "2032-01-01": 1292.14277958712, - "2031-01-01": 1267.2434765322, - "2030-01-01": 1242.67179588589, - "2029-01-01": 1218.4277376482, - "2028-01-01": 1194.51130181913, - "2027-01-01": 1170.26724358144, - "2026-01-01": 1142.1244786812, - "2025-01-01": 1124.92812449022, - "2024-01-01": 1100.51479467475, - "2023-01-01": 1041, - "2015-01-01": 1041 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1444.16681572105, - "2034-01-01": 1416.20183554572, - "2033-01-01": 1388.58210203922, - "2032-01-01": 1361.65286187038, - "2031-01-01": 1335.41411503921, - "2030-01-01": 1309.52061487687, - "2029-01-01": 1283.97236138336, - "2028-01-01": 1258.76935455868, - "2027-01-01": 1233.22110106517, - "2026-01-01": 1203.56441221256, - "2025-01-01": 1185.44298997673, - "2024-01-01": 1159.71635903765, - "2023-01-01": 1097, - "2015-01-01": 1097 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1511.30674972449, - "2034-01-01": 1482.04166563946, - "2033-01-01": 1453.13787888881, - "2032-01-01": 1424.95668680693, - "2031-01-01": 1397.49808939381, - "2030-01-01": 1370.40078931508, - "2029-01-01": 1343.66478657073, - "2028-01-01": 1317.29008116077, - "2027-01-01": 1290.55407841642, - "2026-01-01": 1259.51863739291, - "2025-01-01": 1240.55474247337, - "2024-01-01": 1213.63206943959, - "2023-01-01": 1148, - "2015-01-01": 1148 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1602.14313102326, - "2034-01-01": 1571.11908282511, - "2033-01-01": 1540.47804756767, - "2032-01-01": 1510.60303819167, - "2031-01-01": 1481.4940546971, - "2030-01-01": 1452.76808414325, - "2029-01-01": 1424.42512653012, - "2028-01-01": 1396.46518185771, - "2027-01-01": 1368.12222424458, - "2026-01-01": 1335.22141263691, - "2025-01-01": 1315.11770173352, - "2024-01-01": 1286.57685410102, - "2023-01-01": 1217, - "2015-01-01": 1217 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1717.99242891155, - "2034-01-01": 1684.72506416332, - "2033-01-01": 1651.86840762186, - "2032-01-01": 1619.83316749394, - "2031-01-01": 1588.61934377955, - "2030-01-01": 1557.81622827194, - "2029-01-01": 1527.42382097109, - "2028-01-01": 1497.442121877, - "2027-01-01": 1467.04971457615, - "2026-01-01": 1431.76987961476, - "2025-01-01": 1410.21249035518, - "2024-01-01": 1379.60788381416, - "2023-01-01": 1305, - "2015-01-01": 1305 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1825.94291103473, - "2034-01-01": 1790.58518313757, - "2033-01-01": 1755.66397039963, - "2032-01-01": 1721.61578798015, - "2031-01-01": 1688.44063587911, - "2030-01-01": 1655.7019989373, - "2029-01-01": 1623.39987715471, - "2028-01-01": 1591.53427053134, - "2027-01-01": 1559.23214874876, - "2026-01-01": 1521.7354965714, - "2025-01-01": 1498.82354338899, - "2024-01-01": 1466.29588877413, - "2023-01-01": 1387, - "2015-01-01": 1387 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1923.36163880442, - "2034-01-01": 1886.11748562652, - "2033-01-01": 1849.33313680884, - "2032-01-01": 1813.46839671161, - "2031-01-01": 1778.52326533481, - "2030-01-01": 1744.03793831824, - "2029-01-01": 1710.01241566188, - "2028-01-01": 1676.44669736575, - "2027-01-01": 1642.4211747094, - "2026-01-01": 1602.92398016641, - "2025-01-01": 1578.78961563901, - "2024-01-01": 1544.52652739655, - "2023-01-01": 1461, - "2015-01-01": 1461 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2015.51448939738, - "2034-01-01": 1976.48587987283, - "2033-01-01": 1937.93910503377, - "2032-01-01": 1900.35599956569, - "2031-01-01": 1863.73656346858, - "2030-01-01": 1827.59896205696, - "2029-01-01": 1791.94319533083, - "2028-01-01": 1756.76926329019, - "2027-01-01": 1721.11349656406, - "2026-01-01": 1679.72389708061, - "2025-01-01": 1654.43319749715, - "2024-01-01": 1618.52848285018, - "2023-01-01": 1531, - "2015-01-01": 1531 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2111.61674787289, - "2034-01-01": 2070.72720530112, - "2033-01-01": 2030.34247189691, - "2032-01-01": 1990.9673568278, - "2031-01-01": 1952.6018600938, - "2030-01-01": 1914.74117252735, - "2029-01-01": 1877.38529412845, - "2028-01-01": 1840.5342248971, - "2027-01-01": 1803.1783464982, - "2026-01-01": 1759.81523900543, - "2025-01-01": 1733.3186471492, - "2024-01-01": 1695.7019506804, - "2023-01-01": 1604, - "2015-01-01": 1604 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2211.66841423096, - "2034-01-01": 2168.8414619114, - "2033-01-01": 2126.54323739826, - "2032-01-01": 2085.30246849795, - "2031-01-01": 2045.11915521046, - "2030-01-01": 2005.46456972939, - "2029-01-01": 1966.33871205473, - "2028-01-01": 1927.74158218649, - "2027-01-01": 1888.61572451183, - "2026-01-01": 1843.19800594084, - "2025-01-01": 1815.44596459517, - "2024-01-01": 1776.0469308872, - "2023-01-01": 1680, - "2015-01-01": 1680 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2306.45420341229, - "2034-01-01": 2261.79181027903, - "2033-01-01": 2217.68080471533, - "2032-01-01": 2174.67257429071, - "2031-01-01": 2132.76711900519, - "2030-01-01": 2091.41305128922, - "2029-01-01": 2050.61037114279, - "2028-01-01": 2010.35907856591, - "2027-01-01": 1969.55639841948, - "2026-01-01": 1922.19220619545, - "2025-01-01": 1893.25079164925, - "2024-01-01": 1852.16322792522, - "2023-01-01": 1752, - "2015-01-01": 1752 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2397.29058471106, - "2034-01-01": 2350.86922746468, - "2033-01-01": 2305.02097339418, - "2032-01-01": 2260.31892567545, - "2031-01-01": 2216.76308430848, - "2030-01-01": 2173.78034611739, - "2029-01-01": 2131.37071110218, - "2028-01-01": 2089.53417926285, - "2027-01-01": 2047.12454424765, - "2026-01-01": 1997.89498143945, - "2025-01-01": 1967.81375090941, - "2024-01-01": 1925.10801258666, - "2023-01-01": 1821, - "2015-01-01": 1821 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2919.92889450254, - "2034-01-01": 2863.38712054732, - "2033-01-01": 2807.54339318413, - "2032-01-01": 2753.09575900503, - "2031-01-01": 2700.04421801, - "2030-01-01": 2647.69072360701, - "2029-01-01": 2596.03527579607, - "2028-01-01": 2545.07787457716, - "2027-01-01": 2493.42242676622, - "2026-01-01": 2433.46022451, - "2025-01-01": 2396.82092230481, - "2024-01-01": 2344.80481708798, - "2023-01-01": 2218, - "2015-01-01": 2218 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 634.538199797216, - "2034-01-01": 622.250943238867, - "2033-01-01": 610.115381205929, - "2032-01-01": 598.283208223815, - "2031-01-01": 586.754424292525, - "2030-01-01": 575.377334886646, - "2029-01-01": 564.151940006179, - "2028-01-01": 553.078239651123, - "2027-01-01": 541.852844770656, - "2026-01-01": 528.82228503779, - "2025-01-01": 520.860092223138, - "2024-01-01": 509.556321837875, - "2023-01-01": 482, - "2015-01-01": 482 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 905.730874399346, - "2034-01-01": 888.192217735146, - "2033-01-01": 870.87008769643, - "2032-01-01": 853.981010908682, - "2031-01-01": 837.524987371903, - "2030-01-01": 821.285490460607, - "2029-01-01": 805.262520174795, - "2028-01-01": 789.456076514467, - "2027-01-01": 773.433106228655, - "2026-01-01": 754.833469099584, - "2025-01-01": 743.468347405641, - "2024-01-01": 727.333505029995, - "2023-01-01": 688, - "2015-01-01": 688 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1043.96015028878, - "2034-01-01": 1023.74480910461, - "2033-01-01": 1003.77904003382, - "2032-01-01": 984.312415189804, - "2031-01-01": 965.344934572556, - "2030-01-01": 946.627026068694, - "2029-01-01": 928.158689678215, - "2028-01-01": 909.939925401122, - "2027-01-01": 891.471589010644, - "2026-01-01": 870.033344470887, - "2025-01-01": 856.933720192839, - "2024-01-01": 838.336438210445, - "2023-01-01": 793, - "2015-01-01": 793 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1159.80944817707, - "2034-01-01": 1137.35079044282, - "2033-01-01": 1115.16940008802, - "2032-01-01": 1093.54254449208, - "2031-01-01": 1072.47022365501, - "2030-01-01": 1051.67517019738, - "2029-01-01": 1031.15738411918, - "2028-01-01": 1010.91686542041, - "2027-01-01": 990.399079342216, - "2026-01-01": 966.58181144874, - "2025-01-01": 952.028508814491, - "2024-01-01": 931.367467923584, - "2023-01-01": 881, - "2015-01-01": 881 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1261.17758382932, - "2034-01-01": 1236.75602411376, - "2033-01-01": 1212.63596513544, - "2032-01-01": 1189.11890763157, - "2031-01-01": 1166.20485160216, - "2030-01-01": 1143.59229630997, - "2029-01-01": 1121.28124175502, - "2028-01-01": 1099.2716879373, - "2027-01-01": 1076.96063338234, - "2026-01-01": 1051.06172005436, - "2025-01-01": 1035.23644885844, - "2024-01-01": 1012.76961892258, - "2023-01-01": 958, - "2015-01-01": 958 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1352.01396512809, - "2034-01-01": 1325.83344129941, - "2033-01-01": 1299.97613381429, - "2032-01-01": 1274.7652590163, - "2031-01-01": 1250.20081690544, - "2030-01-01": 1225.95959113814, - "2029-01-01": 1202.04158171441, - "2028-01-01": 1178.44678863424, - "2027-01-01": 1154.52877921051, - "2026-01-01": 1126.76449529836, - "2025-01-01": 1109.79940811859, - "2024-01-01": 1085.71440358402, - "2023-01-01": 1027, - "2015-01-01": 1027 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1434.95153066175, - "2034-01-01": 1407.16499612109, - "2033-01-01": 1379.72150521673, - "2032-01-01": 1352.96410158498, - "2031-01-01": 1326.89278522583, - "2030-01-01": 1301.164512503, - "2029-01-01": 1275.77928341646, - "2028-01-01": 1250.73709796623, - "2027-01-01": 1225.3518688797, - "2026-01-01": 1195.88442052114, - "2025-01-01": 1177.87863179091, - "2024-01-01": 1152.31616349229, - "2023-01-01": 1090, - "2015-01-01": 1090 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1512.62321901867, - "2034-01-01": 1483.33264270012, - "2033-01-01": 1454.40367843488, - "2032-01-01": 1426.19793827627, - "2031-01-01": 1398.7154222243, - "2030-01-01": 1371.59451822564, - "2029-01-01": 1344.83522628029, - "2028-01-01": 1318.43754638826, - "2027-01-01": 1291.67825444291, - "2026-01-01": 1260.61577906311, - "2025-01-01": 1241.63536507134, - "2024-01-01": 1214.68924023178, - "2023-01-01": 1149, - "2015-01-01": 1149 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1583.71256090467, - "2034-01-01": 1553.04540397584, - "2033-01-01": 1522.75685392268, - "2032-01-01": 1493.22551762085, - "2031-01-01": 1464.45139507035, - "2030-01-01": 1436.05587939551, - "2029-01-01": 1408.03897059633, - "2028-01-01": 1380.40066867282, - "2027-01-01": 1352.38375987365, - "2026-01-01": 1319.86142925407, - "2025-01-01": 1299.9889853619, - "2024-01-01": 1271.7764630103, - "2023-01-01": 1203, - "2015-01-01": 1203 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1678.498350086, - "2034-01-01": 1645.99575234348, - "2033-01-01": 1613.89442123975, - "2032-01-01": 1582.59562341362, - "2031-01-01": 1552.09935886508, - "2030-01-01": 1522.00436095534, - "2029-01-01": 1492.31062968439, - "2028-01-01": 1463.01816505225, - "2027-01-01": 1433.3244337813, - "2026-01-01": 1398.85562950868, - "2025-01-01": 1377.79381241598, - "2024-01-01": 1347.89276004832, - "2023-01-01": 1275, - "2015-01-01": 1275 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1799.61352515103, - "2034-01-01": 1764.76564192434, - "2033-01-01": 1730.34797947823, - "2032-01-01": 1696.79075859327, - "2031-01-01": 1664.09397926946, - "2030-01-01": 1631.82742072623, - "2029-01-01": 1599.99108296358, - "2028-01-01": 1568.58496598151, - "2027-01-01": 1536.74862821885, - "2026-01-01": 1499.79266316734, - "2025-01-01": 1477.21109142952, - "2024-01-01": 1445.15247293024, - "2023-01-01": 1367, - "2015-01-01": 1367 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1912.82988445094, - "2034-01-01": 1875.78966914123, - "2033-01-01": 1839.20674044028, - "2032-01-01": 1803.53838495685, - "2031-01-01": 1768.78460269095, - "2030-01-01": 1734.48810703381, - "2029-01-01": 1700.64889798543, - "2028-01-01": 1667.26697554581, - "2027-01-01": 1633.42776649744, - "2026-01-01": 1594.14684680479, - "2025-01-01": 1570.14463485523, - "2024-01-01": 1536.06916105899, - "2023-01-01": 1453, - "2015-01-01": 1453 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2015.51448939738, - "2034-01-01": 1976.48587987283, - "2033-01-01": 1937.93910503377, - "2032-01-01": 1900.35599956569, - "2031-01-01": 1863.73656346858, - "2030-01-01": 1827.59896205696, - "2029-01-01": 1791.94319533083, - "2028-01-01": 1756.76926329019, - "2027-01-01": 1721.11349656406, - "2026-01-01": 1679.72389708061, - "2025-01-01": 1654.43319749715, - "2024-01-01": 1618.52848285018, - "2023-01-01": 1531, - "2015-01-01": 1531 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2111.61674787289, - "2034-01-01": 2070.72720530112, - "2033-01-01": 2030.34247189691, - "2032-01-01": 1990.9673568278, - "2031-01-01": 1952.6018600938, - "2030-01-01": 1914.74117252735, - "2029-01-01": 1877.38529412845, - "2028-01-01": 1840.5342248971, - "2027-01-01": 1803.1783464982, - "2026-01-01": 1759.81523900543, - "2025-01-01": 1733.3186471492, - "2024-01-01": 1695.7019506804, - "2023-01-01": 1604, - "2015-01-01": 1604 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2210.35194493678, - "2034-01-01": 2167.55048485074, - "2033-01-01": 2125.27743785219, - "2032-01-01": 2084.0612170286, - "2031-01-01": 2043.90182237998, - "2030-01-01": 2004.27084081884, - "2029-01-01": 1965.16827234517, - "2028-01-01": 1926.594116959, - "2027-01-01": 1887.49154848534, - "2026-01-01": 1842.10086427064, - "2025-01-01": 1814.3653419972, - "2024-01-01": 1774.989760095, - "2023-01-01": 1679, - "2015-01-01": 1679 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2316.98595776577, - "2034-01-01": 2272.11962676433, - "2033-01-01": 2227.80720108389, - "2032-01-01": 2184.60258604547, - "2031-01-01": 2142.50578164905, - "2030-01-01": 2100.96288257365, - "2029-01-01": 2059.97388881924, - "2028-01-01": 2019.53880038584, - "2027-01-01": 1978.54980663144, - "2026-01-01": 1930.96933955708, - "2025-01-01": 1901.89577243303, - "2024-01-01": 1860.62059426278, - "2023-01-01": 1760, - "2015-01-01": 1760 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2415.72115482965, - "2034-01-01": 2368.94290631394, - "2033-01-01": 2322.74216703917, - "2032-01-01": 2277.69644624627, - "2031-01-01": 2233.80574393523, - "2030-01-01": 2190.49255086514, - "2029-01-01": 2147.75686703597, - "2028-01-01": 2105.59869244774, - "2027-01-01": 2062.86300861858, - "2026-01-01": 2013.25496482229, - "2025-01-01": 1982.94246728103, - "2024-01-01": 1939.90840367739, - "2023-01-01": 1835, - "2015-01-01": 1835 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2510.50694401098, - "2034-01-01": 2461.89325468157, - "2033-01-01": 2413.87973435624, - "2032-01-01": 2367.06655203904, - "2031-01-01": 2321.45370772997, - "2030-01-01": 2276.44103242497, - "2029-01-01": 2232.02852612403, - "2028-01-01": 2188.21618882716, - "2027-01-01": 2143.80368252623, - "2026-01-01": 2092.2491650769, - "2025-01-01": 2060.74729433511, - "2024-01-01": 2016.02470071541, - "2023-01-01": 1907, - "2015-01-01": 1907 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3058.15817039198, - "2034-01-01": 2998.93971191678, - "2033-01-01": 2940.45234552152, - "2032-01-01": 2883.42716328615, - "2031-01-01": 2827.86416521065, - "2030-01-01": 2773.0322592151, - "2029-01-01": 2718.93144529949, - "2028-01-01": 2665.56172346382, - "2027-01-01": 2611.46090954821, - "2026-01-01": 2548.6600998813, - "2025-01-01": 2510.28629509201, - "2024-01-01": 2455.80775026843, - "2023-01-01": 2323, - "2015-01-01": 2323 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 656.918177798363, - "2034-01-01": 644.197553270113, - "2033-01-01": 631.633973489126, - "2032-01-01": 619.384483202664, - "2031-01-01": 607.449082410726, - "2030-01-01": 595.670726366051, - "2029-01-01": 584.049415068637, - "2028-01-01": 572.585148518487, - "2027-01-01": 560.963837221074, - "2026-01-01": 547.473693431239, - "2025-01-01": 539.230676388684, - "2024-01-01": 527.528225305185, - "2023-01-01": 499, - "2015-01-01": 499 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 939.959076048158, - "2034-01-01": 921.757621312346, - "2033-01-01": 903.78087589426, - "2032-01-01": 886.253549111627, - "2031-01-01": 869.175640964446, - "2030-01-01": 852.32244213499, - "2029-01-01": 835.693952623261, - "2028-01-01": 819.290172429258, - "2027-01-01": 802.661682917528, - "2026-01-01": 783.359152524859, - "2025-01-01": 771.564534952947, - "2024-01-01": 754.819945627059, - "2023-01-01": 714, - "2015-01-01": 714 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1082.13775982015, - "2034-01-01": 1061.18314386379, - "2033-01-01": 1040.48722686986, - "2032-01-01": 1020.30870780078, - "2031-01-01": 1000.64758665655, - "2030-01-01": 981.245164474737, - "2029-01-01": 962.10144125535, - "2028-01-01": 943.216416998389, - "2027-01-01": 924.072693779003, - "2026-01-01": 901.85045290677, - "2025-01-01": 888.271775534065, - "2024-01-01": 868.994391184093, - "2023-01-01": 822, - "2015-01-01": 822 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1201.93646559099, - "2034-01-01": 1178.66205638399, - "2033-01-01": 1155.67498556227, - "2032-01-01": 1133.26259151109, - "2031-01-01": 1111.42487423045, - "2030-01-01": 1089.87449533508, - "2029-01-01": 1068.61145482498, - "2028-01-01": 1047.63575270016, - "2027-01-01": 1026.37271219006, - "2026-01-01": 1001.69034489523, - "2025-01-01": 986.608431949637, - "2024-01-01": 965.196933273816, - "2023-01-01": 913, - "2015-01-01": 913 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1307.2540091258, - "2034-01-01": 1281.94022123692, - "2033-01-01": 1256.9389492479, - "2032-01-01": 1232.56270905861, - "2031-01-01": 1208.81150066904, - "2030-01-01": 1185.37280817934, - "2029-01-01": 1162.24663158949, - "2028-01-01": 1139.43297089951, - "2027-01-01": 1116.30679430967, - "2026-01-01": 1089.46167851146, - "2025-01-01": 1073.0582397875, - "2024-01-01": 1049.7705966494, - "2023-01-01": 993, - "2015-01-01": 993 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1402.03979830713, - "2034-01-01": 1374.89056960455, - "2033-01-01": 1348.07651656497, - "2032-01-01": 1321.93281485138, - "2031-01-01": 1296.45946446377, - "2030-01-01": 1271.32128973917, - "2029-01-01": 1246.51829067755, - "2028-01-01": 1222.05046727893, - "2027-01-01": 1197.24746821732, - "2026-01-01": 1168.45587876607, - "2025-01-01": 1150.86306684158, - "2024-01-01": 1125.88689368742, - "2023-01-01": 1065, - "2015-01-01": 1065 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1488.92677172334, - "2034-01-01": 1460.09505560821, - "2033-01-01": 1431.61928660561, - "2032-01-01": 1403.85541182808, - "2031-01-01": 1376.80343127561, - "2030-01-01": 1350.10739783568, - "2029-01-01": 1323.76731150827, - "2028-01-01": 1297.7831722934, - "2027-01-01": 1271.443085966, - "2026-01-01": 1240.86722899946, - "2025-01-01": 1222.18415830782, - "2024-01-01": 1195.66016597227, - "2023-01-01": 1131, - "2015-01-01": 1131 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1567.91492937445, - "2034-01-01": 1537.55367924791, - "2033-01-01": 1507.56725936984, - "2032-01-01": 1478.33049998872, - "2031-01-01": 1449.84340110456, - "2030-01-01": 1421.73113246887, - "2029-01-01": 1393.99369408166, - "2028-01-01": 1366.63108594292, - "2027-01-01": 1338.89364755571, - "2026-01-01": 1306.69572921163, - "2025-01-01": 1287.02151418622, - "2024-01-01": 1259.09041350396, - "2023-01-01": 1191, - "2015-01-01": 1191 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1641.63720984881, - "2034-01-01": 1609.84839464495, - "2033-01-01": 1578.45203394978, - "2032-01-01": 1547.84058227199, - "2031-01-01": 1518.01403961157, - "2030-01-01": 1488.57995145985, - "2029-01-01": 1459.53831781682, - "2028-01-01": 1430.88913868247, - "2027-01-01": 1401.84750503944, - "2026-01-01": 1368.135662743, - "2025-01-01": 1347.53637967272, - "2024-01-01": 1318.29197786687, - "2023-01-01": 1247, - "2015-01-01": 1247 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1740.3724069127, - "2034-01-01": 1706.67167419457, - "2033-01-01": 1673.38699990506, - "2032-01-01": 1640.93444247279, - "2031-01-01": 1609.31400189776, - "2030-01-01": 1578.10961975134, - "2029-01-01": 1547.32129603354, - "2028-01-01": 1516.94903074437, - "2027-01-01": 1486.16070702657, - "2026-01-01": 1450.42128800821, - "2025-01-01": 1428.58307452072, - "2024-01-01": 1397.57978728147, - "2023-01-01": 1322, - "2015-01-01": 1322 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1866.75345915447, - "2034-01-01": 1830.60547201808, - "2033-01-01": 1794.90375632782, - "2032-01-01": 1760.09458352981, - "2031-01-01": 1726.17795362407, - "2030-01-01": 1692.70759516445, - "2029-01-01": 1659.68350815096, - "2028-01-01": 1627.1056925836, - "2027-01-01": 1594.08160557011, - "2026-01-01": 1555.74688834769, - "2025-01-01": 1532.32284392616, - "2024-01-01": 1499.06818333217, - "2023-01-01": 1418, - "2015-01-01": 1418 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1982.60275704275, - "2034-01-01": 1944.21145335629, - "2033-01-01": 1906.29411638201, - "2032-01-01": 1869.32471283209, - "2031-01-01": 1833.30324270652, - "2030-01-01": 1797.75573929313, - "2029-01-01": 1762.68220259192, - "2028-01-01": 1728.08263260289, - "2027-01-01": 1693.00909590168, - "2026-01-01": 1652.29535532554, - "2025-01-01": 1627.41763254781, - "2024-01-01": 1592.09921304531, - "2023-01-01": 1506, - "2015-01-01": 1506 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2089.23676987175, - "2034-01-01": 2048.78059526988, - "2033-01-01": 2008.82387961371, - "2032-01-01": 1969.86608184895, - "2031-01-01": 1931.9072019756, - "2030-01-01": 1894.44778104794, - "2029-01-01": 1857.48781906599, - "2028-01-01": 1821.02731602974, - "2027-01-01": 1784.06735404778, - "2026-01-01": 1741.16383061198, - "2025-01-01": 1714.94806298365, - "2024-01-01": 1677.73004721308, - "2023-01-01": 1587, - "2015-01-01": 1587 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2189.28843622981, - "2034-01-01": 2146.89485188016, - "2033-01-01": 2105.02464511506, - "2032-01-01": 2064.2011935191, - "2031-01-01": 2024.42449709226, - "2030-01-01": 1985.17117824998, - "2029-01-01": 1946.44123699227, - "2028-01-01": 1908.23467331912, - "2027-01-01": 1869.50473206141, - "2026-01-01": 1824.5465975474, - "2025-01-01": 1797.07538042962, - "2024-01-01": 1758.07502741989, - "2023-01-01": 1663, - "2015-01-01": 1663 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2291.97304117625, - "2034-01-01": 2247.59106261176, - "2033-01-01": 2203.75700970855, - "2032-01-01": 2161.01880812793, - "2031-01-01": 2119.37645786989, - "2030-01-01": 2078.28203327313, - "2029-01-01": 2037.73553433767, - "2028-01-01": 1997.7369610635, - "2027-01-01": 1957.19046212803, - "2026-01-01": 1910.12364782322, - "2025-01-01": 1881.36394307154, - "2024-01-01": 1840.53434921108, - "2023-01-01": 1741, - "2015-01-01": 1741 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2401.23999259361, - "2034-01-01": 2354.74215864667, - "2033-01-01": 2308.8183720324, - "2032-01-01": 2264.04268008348, - "2031-01-01": 2220.41508279993, - "2030-01-01": 2177.36153284905, - "2029-01-01": 2134.88203023085, - "2028-01-01": 2092.97657494533, - "2027-01-01": 2050.49707232713, - "2026-01-01": 2001.18640645006, - "2025-01-01": 1971.05561870333, - "2024-01-01": 1928.27952496324, - "2023-01-01": 1824, - "2015-01-01": 1824 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2505.24106683424, - "2034-01-01": 2456.72934643893, - "2033-01-01": 2408.81653617196, - "2032-01-01": 2362.10154616166, - "2031-01-01": 2316.58437640804, - "2030-01-01": 2271.66611678275, - "2029-01-01": 2227.34676728581, - "2028-01-01": 2183.62632791719, - "2027-01-01": 2139.30697842025, - "2026-01-01": 2087.86059839609, - "2025-01-01": 2056.42480394322, - "2024-01-01": 2011.79601754663, - "2023-01-01": 1903, - "2015-01-01": 1903 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2602.65979460393, - "2034-01-01": 2552.26164892788, - "2033-01-01": 2502.48570258117, - "2032-01-01": 2453.95415489312, - "2031-01-01": 2406.66700586374, - "2030-01-01": 2360.00205616369, - "2029-01-01": 2313.95930579298, - "2028-01-01": 2268.5387547516, - "2027-01-01": 2222.49600438089, - "2026-01-01": 2169.0490819911, - "2025-01-01": 2136.39087619324, - "2024-01-01": 2090.02665616904, - "2023-01-01": 1977, - "2015-01-01": 1977 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3170.05806039771, - "2034-01-01": 3108.67276207301, - "2033-01-01": 3048.04530693751, - "2032-01-01": 2988.93353818039, - "2031-01-01": 2931.33745580166, - "2030-01-01": 2874.49921661212, - "2029-01-01": 2818.41882061178, - "2028-01-01": 2763.09626780063, - "2027-01-01": 2707.01587180029, - "2026-01-01": 2641.91714184854, - "2025-01-01": 2602.13921591974, - "2024-01-01": 2545.66726760498, - "2023-01-01": 2408, - "2015-01-01": 2408 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 689.82991015299, - "2034-01-01": 676.471979786652, - "2033-01-01": 663.278962140886, - "2032-01-01": 650.415769936264, - "2031-01-01": 637.882403172786, - "2030-01-01": 625.513949129881, - "2029-01-01": 613.310407807547, - "2028-01-01": 601.271779205786, - "2027-01-01": 589.068237883452, - "2026-01-01": 574.902235186311, - "2025-01-01": 566.246241338017, - "2024-01-01": 553.957495110054, - "2023-01-01": 524, - "2015-01-01": 524 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 986.035501344636, - "2034-01-01": 966.9418184355, - "2033-01-01": 948.083860006724, - "2032-01-01": 929.697350538667, - "2031-01-01": 911.78229003133, - "2030-01-01": 894.102954004353, - "2029-01-01": 876.659342457734, - "2028-01-01": 859.451455391476, - "2027-01-01": 842.007843844858, - "2026-01-01": 821.75911098196, - "2025-01-01": 809.386325882013, - "2024-01-01": 791.820923353876, - "2023-01-01": 749, - "2015-01-01": 749 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1134.79653158755, - "2034-01-01": 1112.82222629026, - "2033-01-01": 1091.11920871268, - "2032-01-01": 1069.95876657454, - "2031-01-01": 1049.34089987584, - "2030-01-01": 1028.99432089687, - "2029-01-01": 1008.91902963761, - "2028-01-01": 989.115026098067, - "2027-01-01": 969.039734838809, - "2026-01-01": 945.736119714886, - "2025-01-01": 931.496679452998, - "2024-01-01": 911.281222871883, - "2023-01-01": 862, - "2015-01-01": 862 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1259.86111453514, - "2034-01-01": 1235.4650470531, - "2033-01-01": 1211.37016558937, - "2032-01-01": 1187.87765616222, - "2031-01-01": 1164.98751877167, - "2030-01-01": 1142.39856739942, - "2029-01-01": 1120.11080204546, - "2028-01-01": 1098.1242227098, - "2027-01-01": 1075.83645735585, - "2026-01-01": 1049.96457838416, - "2025-01-01": 1034.15582626046, - "2024-01-01": 1011.71244813039, - "2023-01-01": 957, - "2015-01-01": 957 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1371.76100454087, - "2034-01-01": 1345.19809720933, - "2033-01-01": 1318.96312700535, - "2032-01-01": 1293.38403105646, - "2031-01-01": 1268.46080936268, - "2030-01-01": 1243.86552479644, - "2029-01-01": 1219.59817735776, - "2028-01-01": 1195.65876704662, - "2027-01-01": 1171.39141960793, - "2026-01-01": 1143.2216203514, - "2025-01-01": 1126.00874708819, - "2024-01-01": 1101.57196546694, - "2023-01-01": 1042, - "2015-01-01": 1042 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1470.49620160475, - "2034-01-01": 1442.02137675895, - "2033-01-01": 1413.89809296063, - "2032-01-01": 1386.47789125727, - "2031-01-01": 1359.76077164886, - "2030-01-01": 1333.39519308793, - "2029-01-01": 1307.38115557448, - "2028-01-01": 1281.71865910852, - "2027-01-01": 1255.70462159507, - "2026-01-01": 1225.50724561662, - "2025-01-01": 1207.05544193619, - "2024-01-01": 1180.85977488155, - "2023-01-01": 1117, - "2015-01-01": 1117 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1560.01611360934, - "2034-01-01": 1529.80781688394, - "2033-01-01": 1499.97246209342, - "2032-01-01": 1470.88299117266, - "2031-01-01": 1442.53940412166, - "2030-01-01": 1414.56875900555, - "2029-01-01": 1386.97105582432, - "2028-01-01": 1359.74629457797, - "2027-01-01": 1332.14859139674, - "2026-01-01": 1300.11287919042, - "2025-01-01": 1280.53777859838, - "2024-01-01": 1252.74738875079, - "2023-01-01": 1185, - "2015-01-01": 1185 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1644.27014843718, - "2034-01-01": 1612.43034876627, - "2033-01-01": 1580.98363304192, - "2032-01-01": 1550.32308521068, - "2031-01-01": 1520.44870527254, - "2030-01-01": 1490.96740928096, - "2029-01-01": 1461.87919723593, - "2028-01-01": 1433.18406913745, - "2027-01-01": 1404.09585709243, - "2026-01-01": 1370.3299460834, - "2025-01-01": 1349.69762486867, - "2024-01-01": 1320.40631945126, - "2023-01-01": 1249, - "2015-01-01": 1249 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1721.9418367941, - "2034-01-01": 1688.59799534531, - "2033-01-01": 1655.66580626007, - "2032-01-01": 1623.55692190197, - "2031-01-01": 1592.271342271, - "2030-01-01": 1561.3974150036, - "2029-01-01": 1530.93514009975, - "2028-01-01": 1500.88451755948, - "2027-01-01": 1470.42224265564, - "2026-01-01": 1435.06130462537, - "2025-01-01": 1413.4543581491, - "2024-01-01": 1382.77939619075, - "2023-01-01": 1308, - "2015-01-01": 1308 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1824.62644174054, - "2034-01-01": 1789.29420607691, - "2033-01-01": 1754.39817085356, - "2032-01-01": 1720.37453651081, - "2031-01-01": 1687.22330304863, - "2030-01-01": 1654.50827002675, - "2029-01-01": 1622.22943744515, - "2028-01-01": 1590.38680530385, - "2027-01-01": 1558.10797272226, - "2026-01-01": 1520.6383549012, - "2025-01-01": 1497.74292079101, - "2024-01-01": 1465.23871798194, - "2023-01-01": 1386, - "2015-01-01": 1386 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1956.27337115905, - "2034-01-01": 1918.39191214306, - "2033-01-01": 1880.9781254606, - "2032-01-01": 1844.49968344521, - "2031-01-01": 1808.95658609687, - "2030-01-01": 1773.88116108207, - "2029-01-01": 1739.27340840079, - "2028-01-01": 1705.13332805305, - "2027-01-01": 1670.52557537177, - "2026-01-01": 1630.35252192149, - "2025-01-01": 1605.80518058835, - "2024-01-01": 1570.95579720141, - "2023-01-01": 1486, - "2015-01-01": 1486 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2078.70501551827, - "2034-01-01": 2038.45277878459, - "2033-01-01": 1998.69748324515, - "2032-01-01": 1959.9360700942, - "2031-01-01": 1922.16853933174, - "2030-01-01": 1884.89794976351, - "2029-01-01": 1848.12430138954, - "2028-01-01": 1811.8475942098, - "2027-01-01": 1775.07394583582, - "2026-01-01": 1732.38669725035, - "2025-01-01": 1706.30308219986, - "2024-01-01": 1669.27268087553, - "2023-01-01": 1579, - "2015-01-01": 1579 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2189.28843622981, - "2034-01-01": 2146.89485188016, - "2033-01-01": 2105.02464511506, - "2032-01-01": 2064.2011935191, - "2031-01-01": 2024.42449709226, - "2030-01-01": 1985.17117824998, - "2029-01-01": 1946.44123699227, - "2028-01-01": 1908.23467331912, - "2027-01-01": 1869.50473206141, - "2026-01-01": 1824.5465975474, - "2025-01-01": 1797.07538042962, - "2024-01-01": 1758.07502741989, - "2023-01-01": 1663, - "2015-01-01": 1663 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2294.60597976462, - "2034-01-01": 2250.17301673308, - "2033-01-01": 2206.28860880069, - "2032-01-01": 2163.50131106662, - "2031-01-01": 2121.81112353085, - "2030-01-01": 2080.66949109424, - "2029-01-01": 2040.07641375678, - "2028-01-01": 2000.03189151848, - "2027-01-01": 1959.43881418103, - "2026-01-01": 1912.31793116363, - "2025-01-01": 1883.52518826749, - "2024-01-01": 1842.64869079547, - "2023-01-01": 1743, - "2015-01-01": 1743 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2402.5564618878, - "2034-01-01": 2356.03313570733, - "2033-01-01": 2310.08417157847, - "2032-01-01": 2265.28393155283, - "2031-01-01": 2221.63241563041, - "2030-01-01": 2178.5552617596, - "2029-01-01": 2136.05246994041, - "2028-01-01": 2094.12404017282, - "2027-01-01": 2051.62124835363, - "2026-01-01": 2002.28354812026, - "2025-01-01": 1972.1362413013, - "2024-01-01": 1929.33669575544, - "2023-01-01": 1825, - "2015-01-01": 1825 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2517.0892904819, - "2034-01-01": 2468.34813998488, - "2033-01-01": 2420.20873208659, - "2032-01-01": 2373.27280938576, - "2031-01-01": 2327.54037188238, - "2030-01-01": 2282.40967697773, - "2029-01-01": 2237.88072467181, - "2028-01-01": 2193.95351496462, - "2027-01-01": 2149.4245626587, - "2026-01-01": 2097.73487342791, - "2025-01-01": 2066.15040732498, - "2024-01-01": 2021.31055467638, - "2023-01-01": 1912, - "2015-01-01": 1912 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2625.03977260508, - "2034-01-01": 2574.20825895913, - "2033-01-01": 2524.00429486436, - "2032-01-01": 2475.05542987197, - "2031-01-01": 2427.36166398194, - "2030-01-01": 2380.2954476431, - "2029-01-01": 2333.85678085544, - "2028-01-01": 2288.04566361896, - "2027-01-01": 2241.6069968313, - "2026-01-01": 2187.70049038455, - "2025-01-01": 2154.76146035879, - "2024-01-01": 2107.99855963635, - "2023-01-01": 1994, - "2015-01-01": 1994 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2727.72437755152, - "2034-01-01": 2674.90446969073, - "2033-01-01": 2622.73665945785, - "2032-01-01": 2571.8730444808, - "2031-01-01": 2522.31362475957, - "2030-01-01": 2473.40630266625, - "2029-01-01": 2425.15107820084, - "2028-01-01": 2377.54795136334, - "2027-01-01": 2329.29272689793, - "2026-01-01": 2273.27754066037, - "2025-01-01": 2239.05002300071, - "2024-01-01": 2190.45788142754, - "2023-01-01": 2072, - "2015-01-01": 2072 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NE.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3322.76849852318, - "2034-01-01": 3258.42610110975, - "2033-01-01": 3194.87805428167, - "2032-01-01": 3132.91870862429, - "2031-01-01": 3072.54806413762, - "2030-01-01": 3012.9717702363, - "2029-01-01": 2954.18982692032, - "2028-01-01": 2896.2022341897, - "2027-01-01": 2837.42029087373, - "2026-01-01": 2769.18557559208, - "2025-01-01": 2727.49143728465, - "2024-01-01": 2668.29907949958, - "2023-01-01": 2524, - "2015-01-01": 2524 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV", - "description": null, - "label": "NV", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 634.538199797216, - "2034-01-01": 622.250943238867, - "2033-01-01": 610.115381205929, - "2032-01-01": 598.283208223815, - "2031-01-01": 586.754424292525, - "2030-01-01": 575.377334886646, - "2029-01-01": 564.151940006179, - "2028-01-01": 553.078239651123, - "2027-01-01": 541.852844770656, - "2026-01-01": 528.82228503779, - "2025-01-01": 520.860092223138, - "2024-01-01": 509.556321837875, - "2023-01-01": 482, - "2015-01-01": 482 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 905.730874399346, - "2034-01-01": 888.192217735146, - "2033-01-01": 870.87008769643, - "2032-01-01": 853.981010908682, - "2031-01-01": 837.524987371903, - "2030-01-01": 821.285490460607, - "2029-01-01": 805.262520174795, - "2028-01-01": 789.456076514467, - "2027-01-01": 773.433106228655, - "2026-01-01": 754.833469099584, - "2025-01-01": 743.468347405641, - "2024-01-01": 727.333505029995, - "2023-01-01": 688, - "2015-01-01": 688 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1043.96015028878, - "2034-01-01": 1023.74480910461, - "2033-01-01": 1003.77904003382, - "2032-01-01": 984.312415189804, - "2031-01-01": 965.344934572556, - "2030-01-01": 946.627026068694, - "2029-01-01": 928.158689678215, - "2028-01-01": 909.939925401122, - "2027-01-01": 891.471589010644, - "2026-01-01": 870.033344470887, - "2025-01-01": 856.933720192839, - "2024-01-01": 838.336438210445, - "2023-01-01": 793, - "2015-01-01": 793 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1159.80944817707, - "2034-01-01": 1137.35079044282, - "2033-01-01": 1115.16940008802, - "2032-01-01": 1093.54254449208, - "2031-01-01": 1072.47022365501, - "2030-01-01": 1051.67517019738, - "2029-01-01": 1031.15738411918, - "2028-01-01": 1010.91686542041, - "2027-01-01": 990.399079342216, - "2026-01-01": 966.58181144874, - "2025-01-01": 952.028508814491, - "2024-01-01": 931.367467923584, - "2023-01-01": 881, - "2015-01-01": 881 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1261.17758382932, - "2034-01-01": 1236.75602411376, - "2033-01-01": 1212.63596513544, - "2032-01-01": 1189.11890763157, - "2031-01-01": 1166.20485160216, - "2030-01-01": 1143.59229630997, - "2029-01-01": 1121.28124175502, - "2028-01-01": 1099.2716879373, - "2027-01-01": 1076.96063338234, - "2026-01-01": 1051.06172005436, - "2025-01-01": 1035.23644885844, - "2024-01-01": 1012.76961892258, - "2023-01-01": 958, - "2015-01-01": 958 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1352.01396512809, - "2034-01-01": 1325.83344129941, - "2033-01-01": 1299.97613381429, - "2032-01-01": 1274.7652590163, - "2031-01-01": 1250.20081690544, - "2030-01-01": 1225.95959113814, - "2029-01-01": 1202.04158171441, - "2028-01-01": 1178.44678863424, - "2027-01-01": 1154.52877921051, - "2026-01-01": 1126.76449529836, - "2025-01-01": 1109.79940811859, - "2024-01-01": 1085.71440358402, - "2023-01-01": 1027, - "2015-01-01": 1027 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1434.95153066175, - "2034-01-01": 1407.16499612109, - "2033-01-01": 1379.72150521673, - "2032-01-01": 1352.96410158498, - "2031-01-01": 1326.89278522583, - "2030-01-01": 1301.164512503, - "2029-01-01": 1275.77928341646, - "2028-01-01": 1250.73709796623, - "2027-01-01": 1225.3518688797, - "2026-01-01": 1195.88442052114, - "2025-01-01": 1177.87863179091, - "2024-01-01": 1152.31616349229, - "2023-01-01": 1090, - "2015-01-01": 1090 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1512.62321901867, - "2034-01-01": 1483.33264270012, - "2033-01-01": 1454.40367843488, - "2032-01-01": 1426.19793827627, - "2031-01-01": 1398.7154222243, - "2030-01-01": 1371.59451822564, - "2029-01-01": 1344.83522628029, - "2028-01-01": 1318.43754638826, - "2027-01-01": 1291.67825444291, - "2026-01-01": 1260.61577906311, - "2025-01-01": 1241.63536507134, - "2024-01-01": 1214.68924023178, - "2023-01-01": 1149, - "2015-01-01": 1149 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1583.71256090467, - "2034-01-01": 1553.04540397584, - "2033-01-01": 1522.75685392268, - "2032-01-01": 1493.22551762085, - "2031-01-01": 1464.45139507035, - "2030-01-01": 1436.05587939551, - "2029-01-01": 1408.03897059633, - "2028-01-01": 1380.40066867282, - "2027-01-01": 1352.38375987365, - "2026-01-01": 1319.86142925407, - "2025-01-01": 1299.9889853619, - "2024-01-01": 1271.7764630103, - "2023-01-01": 1203, - "2015-01-01": 1203 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1678.498350086, - "2034-01-01": 1645.99575234348, - "2033-01-01": 1613.89442123975, - "2032-01-01": 1582.59562341362, - "2031-01-01": 1552.09935886508, - "2030-01-01": 1522.00436095534, - "2029-01-01": 1492.31062968439, - "2028-01-01": 1463.01816505225, - "2027-01-01": 1433.3244337813, - "2026-01-01": 1398.85562950868, - "2025-01-01": 1377.79381241598, - "2024-01-01": 1347.89276004832, - "2023-01-01": 1275, - "2015-01-01": 1275 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1799.61352515103, - "2034-01-01": 1764.76564192434, - "2033-01-01": 1730.34797947823, - "2032-01-01": 1696.79075859327, - "2031-01-01": 1664.09397926946, - "2030-01-01": 1631.82742072623, - "2029-01-01": 1599.99108296358, - "2028-01-01": 1568.58496598151, - "2027-01-01": 1536.74862821885, - "2026-01-01": 1499.79266316734, - "2025-01-01": 1477.21109142952, - "2024-01-01": 1445.15247293024, - "2023-01-01": 1367, - "2015-01-01": 1367 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1912.82988445094, - "2034-01-01": 1875.78966914123, - "2033-01-01": 1839.20674044028, - "2032-01-01": 1803.53838495685, - "2031-01-01": 1768.78460269095, - "2030-01-01": 1734.48810703381, - "2029-01-01": 1700.64889798543, - "2028-01-01": 1667.26697554581, - "2027-01-01": 1633.42776649744, - "2026-01-01": 1594.14684680479, - "2025-01-01": 1570.14463485523, - "2024-01-01": 1536.06916105899, - "2023-01-01": 1453, - "2015-01-01": 1453 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2015.51448939738, - "2034-01-01": 1976.48587987283, - "2033-01-01": 1937.93910503377, - "2032-01-01": 1900.35599956569, - "2031-01-01": 1863.73656346858, - "2030-01-01": 1827.59896205696, - "2029-01-01": 1791.94319533083, - "2028-01-01": 1756.76926329019, - "2027-01-01": 1721.11349656406, - "2026-01-01": 1679.72389708061, - "2025-01-01": 1654.43319749715, - "2024-01-01": 1618.52848285018, - "2023-01-01": 1531, - "2015-01-01": 1531 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2111.61674787289, - "2034-01-01": 2070.72720530112, - "2033-01-01": 2030.34247189691, - "2032-01-01": 1990.9673568278, - "2031-01-01": 1952.6018600938, - "2030-01-01": 1914.74117252735, - "2029-01-01": 1877.38529412845, - "2028-01-01": 1840.5342248971, - "2027-01-01": 1803.1783464982, - "2026-01-01": 1759.81523900543, - "2025-01-01": 1733.3186471492, - "2024-01-01": 1695.7019506804, - "2023-01-01": 1604, - "2015-01-01": 1604 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2210.35194493678, - "2034-01-01": 2167.55048485074, - "2033-01-01": 2125.27743785219, - "2032-01-01": 2084.0612170286, - "2031-01-01": 2043.90182237998, - "2030-01-01": 2004.27084081884, - "2029-01-01": 1965.16827234517, - "2028-01-01": 1926.594116959, - "2027-01-01": 1887.49154848534, - "2026-01-01": 1842.10086427064, - "2025-01-01": 1814.3653419972, - "2024-01-01": 1774.989760095, - "2023-01-01": 1679, - "2015-01-01": 1679 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2316.98595776577, - "2034-01-01": 2272.11962676433, - "2033-01-01": 2227.80720108389, - "2032-01-01": 2184.60258604547, - "2031-01-01": 2142.50578164905, - "2030-01-01": 2100.96288257365, - "2029-01-01": 2059.97388881924, - "2028-01-01": 2019.53880038584, - "2027-01-01": 1978.54980663144, - "2026-01-01": 1930.96933955708, - "2025-01-01": 1901.89577243303, - "2024-01-01": 1860.62059426278, - "2023-01-01": 1760, - "2015-01-01": 1760 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2415.72115482965, - "2034-01-01": 2368.94290631394, - "2033-01-01": 2322.74216703917, - "2032-01-01": 2277.69644624627, - "2031-01-01": 2233.80574393523, - "2030-01-01": 2190.49255086514, - "2029-01-01": 2147.75686703597, - "2028-01-01": 2105.59869244774, - "2027-01-01": 2062.86300861858, - "2026-01-01": 2013.25496482229, - "2025-01-01": 1982.94246728103, - "2024-01-01": 1939.90840367739, - "2023-01-01": 1835, - "2015-01-01": 1835 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2510.50694401098, - "2034-01-01": 2461.89325468157, - "2033-01-01": 2413.87973435624, - "2032-01-01": 2367.06655203904, - "2031-01-01": 2321.45370772997, - "2030-01-01": 2276.44103242497, - "2029-01-01": 2232.02852612403, - "2028-01-01": 2188.21618882716, - "2027-01-01": 2143.80368252623, - "2026-01-01": 2092.2491650769, - "2025-01-01": 2060.74729433511, - "2024-01-01": 2016.02470071541, - "2023-01-01": 1907, - "2015-01-01": 1907 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3058.15817039198, - "2034-01-01": 2998.93971191678, - "2033-01-01": 2940.45234552152, - "2032-01-01": 2883.42716328615, - "2031-01-01": 2827.86416521065, - "2030-01-01": 2773.0322592151, - "2029-01-01": 2718.93144529949, - "2028-01-01": 2665.56172346382, - "2027-01-01": 2611.46090954821, - "2026-01-01": 2548.6600998813, - "2025-01-01": 2510.28629509201, - "2024-01-01": 2455.80775026843, - "2023-01-01": 2323, - "2015-01-01": 2323 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 656.918177798363, - "2034-01-01": 644.197553270113, - "2033-01-01": 631.633973489126, - "2032-01-01": 619.384483202664, - "2031-01-01": 607.449082410726, - "2030-01-01": 595.670726366051, - "2029-01-01": 584.049415068637, - "2028-01-01": 572.585148518487, - "2027-01-01": 560.963837221074, - "2026-01-01": 547.473693431239, - "2025-01-01": 539.230676388684, - "2024-01-01": 527.528225305185, - "2023-01-01": 499, - "2015-01-01": 499 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 939.959076048158, - "2034-01-01": 921.757621312346, - "2033-01-01": 903.78087589426, - "2032-01-01": 886.253549111627, - "2031-01-01": 869.175640964446, - "2030-01-01": 852.32244213499, - "2029-01-01": 835.693952623261, - "2028-01-01": 819.290172429258, - "2027-01-01": 802.661682917528, - "2026-01-01": 783.359152524859, - "2025-01-01": 771.564534952947, - "2024-01-01": 754.819945627059, - "2023-01-01": 714, - "2015-01-01": 714 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1082.13775982015, - "2034-01-01": 1061.18314386379, - "2033-01-01": 1040.48722686986, - "2032-01-01": 1020.30870780078, - "2031-01-01": 1000.64758665655, - "2030-01-01": 981.245164474737, - "2029-01-01": 962.10144125535, - "2028-01-01": 943.216416998389, - "2027-01-01": 924.072693779003, - "2026-01-01": 901.85045290677, - "2025-01-01": 888.271775534065, - "2024-01-01": 868.994391184093, - "2023-01-01": 822, - "2015-01-01": 822 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1201.93646559099, - "2034-01-01": 1178.66205638399, - "2033-01-01": 1155.67498556227, - "2032-01-01": 1133.26259151109, - "2031-01-01": 1111.42487423045, - "2030-01-01": 1089.87449533508, - "2029-01-01": 1068.61145482498, - "2028-01-01": 1047.63575270016, - "2027-01-01": 1026.37271219006, - "2026-01-01": 1001.69034489523, - "2025-01-01": 986.608431949637, - "2024-01-01": 965.196933273816, - "2023-01-01": 913, - "2015-01-01": 913 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1307.2540091258, - "2034-01-01": 1281.94022123692, - "2033-01-01": 1256.9389492479, - "2032-01-01": 1232.56270905861, - "2031-01-01": 1208.81150066904, - "2030-01-01": 1185.37280817934, - "2029-01-01": 1162.24663158949, - "2028-01-01": 1139.43297089951, - "2027-01-01": 1116.30679430967, - "2026-01-01": 1089.46167851146, - "2025-01-01": 1073.0582397875, - "2024-01-01": 1049.7705966494, - "2023-01-01": 993, - "2015-01-01": 993 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1402.03979830713, - "2034-01-01": 1374.89056960455, - "2033-01-01": 1348.07651656497, - "2032-01-01": 1321.93281485138, - "2031-01-01": 1296.45946446377, - "2030-01-01": 1271.32128973917, - "2029-01-01": 1246.51829067755, - "2028-01-01": 1222.05046727893, - "2027-01-01": 1197.24746821732, - "2026-01-01": 1168.45587876607, - "2025-01-01": 1150.86306684158, - "2024-01-01": 1125.88689368742, - "2023-01-01": 1065, - "2015-01-01": 1065 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1488.92677172334, - "2034-01-01": 1460.09505560821, - "2033-01-01": 1431.61928660561, - "2032-01-01": 1403.85541182808, - "2031-01-01": 1376.80343127561, - "2030-01-01": 1350.10739783568, - "2029-01-01": 1323.76731150827, - "2028-01-01": 1297.7831722934, - "2027-01-01": 1271.443085966, - "2026-01-01": 1240.86722899946, - "2025-01-01": 1222.18415830782, - "2024-01-01": 1195.66016597227, - "2023-01-01": 1131, - "2015-01-01": 1131 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1567.91492937445, - "2034-01-01": 1537.55367924791, - "2033-01-01": 1507.56725936984, - "2032-01-01": 1478.33049998872, - "2031-01-01": 1449.84340110456, - "2030-01-01": 1421.73113246887, - "2029-01-01": 1393.99369408166, - "2028-01-01": 1366.63108594292, - "2027-01-01": 1338.89364755571, - "2026-01-01": 1306.69572921163, - "2025-01-01": 1287.02151418622, - "2024-01-01": 1259.09041350396, - "2023-01-01": 1191, - "2015-01-01": 1191 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1641.63720984881, - "2034-01-01": 1609.84839464495, - "2033-01-01": 1578.45203394978, - "2032-01-01": 1547.84058227199, - "2031-01-01": 1518.01403961157, - "2030-01-01": 1488.57995145985, - "2029-01-01": 1459.53831781682, - "2028-01-01": 1430.88913868247, - "2027-01-01": 1401.84750503944, - "2026-01-01": 1368.135662743, - "2025-01-01": 1347.53637967272, - "2024-01-01": 1318.29197786687, - "2023-01-01": 1247, - "2015-01-01": 1247 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1740.3724069127, - "2034-01-01": 1706.67167419457, - "2033-01-01": 1673.38699990506, - "2032-01-01": 1640.93444247279, - "2031-01-01": 1609.31400189776, - "2030-01-01": 1578.10961975134, - "2029-01-01": 1547.32129603354, - "2028-01-01": 1516.94903074437, - "2027-01-01": 1486.16070702657, - "2026-01-01": 1450.42128800821, - "2025-01-01": 1428.58307452072, - "2024-01-01": 1397.57978728147, - "2023-01-01": 1322, - "2015-01-01": 1322 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1866.75345915447, - "2034-01-01": 1830.60547201808, - "2033-01-01": 1794.90375632782, - "2032-01-01": 1760.09458352981, - "2031-01-01": 1726.17795362407, - "2030-01-01": 1692.70759516445, - "2029-01-01": 1659.68350815096, - "2028-01-01": 1627.1056925836, - "2027-01-01": 1594.08160557011, - "2026-01-01": 1555.74688834769, - "2025-01-01": 1532.32284392616, - "2024-01-01": 1499.06818333217, - "2023-01-01": 1418, - "2015-01-01": 1418 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1982.60275704275, - "2034-01-01": 1944.21145335629, - "2033-01-01": 1906.29411638201, - "2032-01-01": 1869.32471283209, - "2031-01-01": 1833.30324270652, - "2030-01-01": 1797.75573929313, - "2029-01-01": 1762.68220259192, - "2028-01-01": 1728.08263260289, - "2027-01-01": 1693.00909590168, - "2026-01-01": 1652.29535532554, - "2025-01-01": 1627.41763254781, - "2024-01-01": 1592.09921304531, - "2023-01-01": 1506, - "2015-01-01": 1506 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2089.23676987175, - "2034-01-01": 2048.78059526988, - "2033-01-01": 2008.82387961371, - "2032-01-01": 1969.86608184895, - "2031-01-01": 1931.9072019756, - "2030-01-01": 1894.44778104794, - "2029-01-01": 1857.48781906599, - "2028-01-01": 1821.02731602974, - "2027-01-01": 1784.06735404778, - "2026-01-01": 1741.16383061198, - "2025-01-01": 1714.94806298365, - "2024-01-01": 1677.73004721308, - "2023-01-01": 1587, - "2015-01-01": 1587 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2189.28843622981, - "2034-01-01": 2146.89485188016, - "2033-01-01": 2105.02464511506, - "2032-01-01": 2064.2011935191, - "2031-01-01": 2024.42449709226, - "2030-01-01": 1985.17117824998, - "2029-01-01": 1946.44123699227, - "2028-01-01": 1908.23467331912, - "2027-01-01": 1869.50473206141, - "2026-01-01": 1824.5465975474, - "2025-01-01": 1797.07538042962, - "2024-01-01": 1758.07502741989, - "2023-01-01": 1663, - "2015-01-01": 1663 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2291.97304117625, - "2034-01-01": 2247.59106261176, - "2033-01-01": 2203.75700970855, - "2032-01-01": 2161.01880812793, - "2031-01-01": 2119.37645786989, - "2030-01-01": 2078.28203327313, - "2029-01-01": 2037.73553433767, - "2028-01-01": 1997.7369610635, - "2027-01-01": 1957.19046212803, - "2026-01-01": 1910.12364782322, - "2025-01-01": 1881.36394307154, - "2024-01-01": 1840.53434921108, - "2023-01-01": 1741, - "2015-01-01": 1741 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2401.23999259361, - "2034-01-01": 2354.74215864667, - "2033-01-01": 2308.8183720324, - "2032-01-01": 2264.04268008348, - "2031-01-01": 2220.41508279993, - "2030-01-01": 2177.36153284905, - "2029-01-01": 2134.88203023085, - "2028-01-01": 2092.97657494533, - "2027-01-01": 2050.49707232713, - "2026-01-01": 2001.18640645006, - "2025-01-01": 1971.05561870333, - "2024-01-01": 1928.27952496324, - "2023-01-01": 1824, - "2015-01-01": 1824 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2505.24106683424, - "2034-01-01": 2456.72934643893, - "2033-01-01": 2408.81653617196, - "2032-01-01": 2362.10154616166, - "2031-01-01": 2316.58437640804, - "2030-01-01": 2271.66611678275, - "2029-01-01": 2227.34676728581, - "2028-01-01": 2183.62632791719, - "2027-01-01": 2139.30697842025, - "2026-01-01": 2087.86059839609, - "2025-01-01": 2056.42480394322, - "2024-01-01": 2011.79601754663, - "2023-01-01": 1903, - "2015-01-01": 1903 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2602.65979460393, - "2034-01-01": 2552.26164892788, - "2033-01-01": 2502.48570258117, - "2032-01-01": 2453.95415489312, - "2031-01-01": 2406.66700586374, - "2030-01-01": 2360.00205616369, - "2029-01-01": 2313.95930579298, - "2028-01-01": 2268.5387547516, - "2027-01-01": 2222.49600438089, - "2026-01-01": 2169.0490819911, - "2025-01-01": 2136.39087619324, - "2024-01-01": 2090.02665616904, - "2023-01-01": 1977, - "2015-01-01": 1977 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3170.05806039771, - "2034-01-01": 3108.67276207301, - "2033-01-01": 3048.04530693751, - "2032-01-01": 2988.93353818039, - "2031-01-01": 2931.33745580166, - "2030-01-01": 2874.49921661212, - "2029-01-01": 2818.41882061178, - "2028-01-01": 2763.09626780063, - "2027-01-01": 2707.01587180029, - "2026-01-01": 2641.91714184854, - "2025-01-01": 2602.13921591974, - "2024-01-01": 2545.66726760498, - "2023-01-01": 2408, - "2015-01-01": 2408 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 689.82991015299, - "2034-01-01": 676.471979786652, - "2033-01-01": 663.278962140886, - "2032-01-01": 650.415769936264, - "2031-01-01": 637.882403172786, - "2030-01-01": 625.513949129881, - "2029-01-01": 613.310407807547, - "2028-01-01": 601.271779205786, - "2027-01-01": 589.068237883452, - "2026-01-01": 574.902235186311, - "2025-01-01": 566.246241338017, - "2024-01-01": 553.957495110054, - "2023-01-01": 524, - "2015-01-01": 524 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 986.035501344636, - "2034-01-01": 966.9418184355, - "2033-01-01": 948.083860006724, - "2032-01-01": 929.697350538667, - "2031-01-01": 911.78229003133, - "2030-01-01": 894.102954004353, - "2029-01-01": 876.659342457734, - "2028-01-01": 859.451455391476, - "2027-01-01": 842.007843844858, - "2026-01-01": 821.75911098196, - "2025-01-01": 809.386325882013, - "2024-01-01": 791.820923353876, - "2023-01-01": 749, - "2015-01-01": 749 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1134.79653158755, - "2034-01-01": 1112.82222629026, - "2033-01-01": 1091.11920871268, - "2032-01-01": 1069.95876657454, - "2031-01-01": 1049.34089987584, - "2030-01-01": 1028.99432089687, - "2029-01-01": 1008.91902963761, - "2028-01-01": 989.115026098067, - "2027-01-01": 969.039734838809, - "2026-01-01": 945.736119714886, - "2025-01-01": 931.496679452998, - "2024-01-01": 911.281222871883, - "2023-01-01": 862, - "2015-01-01": 862 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1259.86111453514, - "2034-01-01": 1235.4650470531, - "2033-01-01": 1211.37016558937, - "2032-01-01": 1187.87765616222, - "2031-01-01": 1164.98751877167, - "2030-01-01": 1142.39856739942, - "2029-01-01": 1120.11080204546, - "2028-01-01": 1098.1242227098, - "2027-01-01": 1075.83645735585, - "2026-01-01": 1049.96457838416, - "2025-01-01": 1034.15582626046, - "2024-01-01": 1011.71244813039, - "2023-01-01": 957, - "2015-01-01": 957 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1371.76100454087, - "2034-01-01": 1345.19809720933, - "2033-01-01": 1318.96312700535, - "2032-01-01": 1293.38403105646, - "2031-01-01": 1268.46080936268, - "2030-01-01": 1243.86552479644, - "2029-01-01": 1219.59817735776, - "2028-01-01": 1195.65876704662, - "2027-01-01": 1171.39141960793, - "2026-01-01": 1143.2216203514, - "2025-01-01": 1126.00874708819, - "2024-01-01": 1101.57196546694, - "2023-01-01": 1042, - "2015-01-01": 1042 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1470.49620160475, - "2034-01-01": 1442.02137675895, - "2033-01-01": 1413.89809296063, - "2032-01-01": 1386.47789125727, - "2031-01-01": 1359.76077164886, - "2030-01-01": 1333.39519308793, - "2029-01-01": 1307.38115557448, - "2028-01-01": 1281.71865910852, - "2027-01-01": 1255.70462159507, - "2026-01-01": 1225.50724561662, - "2025-01-01": 1207.05544193619, - "2024-01-01": 1180.85977488155, - "2023-01-01": 1117, - "2015-01-01": 1117 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1560.01611360934, - "2034-01-01": 1529.80781688394, - "2033-01-01": 1499.97246209342, - "2032-01-01": 1470.88299117266, - "2031-01-01": 1442.53940412166, - "2030-01-01": 1414.56875900555, - "2029-01-01": 1386.97105582432, - "2028-01-01": 1359.74629457797, - "2027-01-01": 1332.14859139674, - "2026-01-01": 1300.11287919042, - "2025-01-01": 1280.53777859838, - "2024-01-01": 1252.74738875079, - "2023-01-01": 1185, - "2015-01-01": 1185 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1644.27014843718, - "2034-01-01": 1612.43034876627, - "2033-01-01": 1580.98363304192, - "2032-01-01": 1550.32308521068, - "2031-01-01": 1520.44870527254, - "2030-01-01": 1490.96740928096, - "2029-01-01": 1461.87919723593, - "2028-01-01": 1433.18406913745, - "2027-01-01": 1404.09585709243, - "2026-01-01": 1370.3299460834, - "2025-01-01": 1349.69762486867, - "2024-01-01": 1320.40631945126, - "2023-01-01": 1249, - "2015-01-01": 1249 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1721.9418367941, - "2034-01-01": 1688.59799534531, - "2033-01-01": 1655.66580626007, - "2032-01-01": 1623.55692190197, - "2031-01-01": 1592.271342271, - "2030-01-01": 1561.3974150036, - "2029-01-01": 1530.93514009975, - "2028-01-01": 1500.88451755948, - "2027-01-01": 1470.42224265564, - "2026-01-01": 1435.06130462537, - "2025-01-01": 1413.4543581491, - "2024-01-01": 1382.77939619075, - "2023-01-01": 1308, - "2015-01-01": 1308 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1824.62644174054, - "2034-01-01": 1789.29420607691, - "2033-01-01": 1754.39817085356, - "2032-01-01": 1720.37453651081, - "2031-01-01": 1687.22330304863, - "2030-01-01": 1654.50827002675, - "2029-01-01": 1622.22943744515, - "2028-01-01": 1590.38680530385, - "2027-01-01": 1558.10797272226, - "2026-01-01": 1520.6383549012, - "2025-01-01": 1497.74292079101, - "2024-01-01": 1465.23871798194, - "2023-01-01": 1386, - "2015-01-01": 1386 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1956.27337115905, - "2034-01-01": 1918.39191214306, - "2033-01-01": 1880.9781254606, - "2032-01-01": 1844.49968344521, - "2031-01-01": 1808.95658609687, - "2030-01-01": 1773.88116108207, - "2029-01-01": 1739.27340840079, - "2028-01-01": 1705.13332805305, - "2027-01-01": 1670.52557537177, - "2026-01-01": 1630.35252192149, - "2025-01-01": 1605.80518058835, - "2024-01-01": 1570.95579720141, - "2023-01-01": 1486, - "2015-01-01": 1486 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2078.70501551827, - "2034-01-01": 2038.45277878459, - "2033-01-01": 1998.69748324515, - "2032-01-01": 1959.9360700942, - "2031-01-01": 1922.16853933174, - "2030-01-01": 1884.89794976351, - "2029-01-01": 1848.12430138954, - "2028-01-01": 1811.8475942098, - "2027-01-01": 1775.07394583582, - "2026-01-01": 1732.38669725035, - "2025-01-01": 1706.30308219986, - "2024-01-01": 1669.27268087553, - "2023-01-01": 1579, - "2015-01-01": 1579 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2189.28843622981, - "2034-01-01": 2146.89485188016, - "2033-01-01": 2105.02464511506, - "2032-01-01": 2064.2011935191, - "2031-01-01": 2024.42449709226, - "2030-01-01": 1985.17117824998, - "2029-01-01": 1946.44123699227, - "2028-01-01": 1908.23467331912, - "2027-01-01": 1869.50473206141, - "2026-01-01": 1824.5465975474, - "2025-01-01": 1797.07538042962, - "2024-01-01": 1758.07502741989, - "2023-01-01": 1663, - "2015-01-01": 1663 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2294.60597976462, - "2034-01-01": 2250.17301673308, - "2033-01-01": 2206.28860880069, - "2032-01-01": 2163.50131106662, - "2031-01-01": 2121.81112353085, - "2030-01-01": 2080.66949109424, - "2029-01-01": 2040.07641375678, - "2028-01-01": 2000.03189151848, - "2027-01-01": 1959.43881418103, - "2026-01-01": 1912.31793116363, - "2025-01-01": 1883.52518826749, - "2024-01-01": 1842.64869079547, - "2023-01-01": 1743, - "2015-01-01": 1743 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2402.5564618878, - "2034-01-01": 2356.03313570733, - "2033-01-01": 2310.08417157847, - "2032-01-01": 2265.28393155283, - "2031-01-01": 2221.63241563041, - "2030-01-01": 2178.5552617596, - "2029-01-01": 2136.05246994041, - "2028-01-01": 2094.12404017282, - "2027-01-01": 2051.62124835363, - "2026-01-01": 2002.28354812026, - "2025-01-01": 1972.1362413013, - "2024-01-01": 1929.33669575544, - "2023-01-01": 1825, - "2015-01-01": 1825 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2517.0892904819, - "2034-01-01": 2468.34813998488, - "2033-01-01": 2420.20873208659, - "2032-01-01": 2373.27280938576, - "2031-01-01": 2327.54037188238, - "2030-01-01": 2282.40967697773, - "2029-01-01": 2237.88072467181, - "2028-01-01": 2193.95351496462, - "2027-01-01": 2149.4245626587, - "2026-01-01": 2097.73487342791, - "2025-01-01": 2066.15040732498, - "2024-01-01": 2021.31055467638, - "2023-01-01": 1912, - "2015-01-01": 1912 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2625.03977260508, - "2034-01-01": 2574.20825895913, - "2033-01-01": 2524.00429486436, - "2032-01-01": 2475.05542987197, - "2031-01-01": 2427.36166398194, - "2030-01-01": 2380.2954476431, - "2029-01-01": 2333.85678085544, - "2028-01-01": 2288.04566361896, - "2027-01-01": 2241.6069968313, - "2026-01-01": 2187.70049038455, - "2025-01-01": 2154.76146035879, - "2024-01-01": 2107.99855963635, - "2023-01-01": 1994, - "2015-01-01": 1994 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2727.72437755152, - "2034-01-01": 2674.90446969073, - "2033-01-01": 2622.73665945785, - "2032-01-01": 2571.8730444808, - "2031-01-01": 2522.31362475957, - "2030-01-01": 2473.40630266625, - "2029-01-01": 2425.15107820084, - "2028-01-01": 2377.54795136334, - "2027-01-01": 2329.29272689793, - "2026-01-01": 2273.27754066037, - "2025-01-01": 2239.05002300071, - "2024-01-01": 2190.45788142754, - "2023-01-01": 2072, - "2015-01-01": 2072 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3322.76849852318, - "2034-01-01": 3258.42610110975, - "2033-01-01": 3194.87805428167, - "2032-01-01": 3132.91870862429, - "2031-01-01": 3072.54806413762, - "2030-01-01": 3012.9717702363, - "2029-01-01": 2954.18982692032, - "2028-01-01": 2896.2022341897, - "2027-01-01": 2837.42029087373, - "2026-01-01": 2769.18557559208, - "2025-01-01": 2727.49143728465, - "2024-01-01": 2668.29907949958, - "2023-01-01": 2524, - "2015-01-01": 2524 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 613.474691090254, - "2034-01-01": 601.595310268282, - "2033-01-01": 589.862588468803, - "2032-01-01": 578.423184714311, - "2031-01-01": 567.277099004806, - "2030-01-01": 556.277672317795, - "2029-01-01": 545.424904653277, - "2028-01-01": 534.718796011252, - "2027-01-01": 523.866028346734, - "2026-01-01": 511.268018314544, - "2025-01-01": 503.570130655565, - "2024-01-01": 492.641589162758, - "2023-01-01": 466, - "2015-01-01": 466 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 851.755633337757, - "2034-01-01": 835.262158248022, - "2033-01-01": 818.972306307544, - "2032-01-01": 803.089700665578, - "2031-01-01": 787.614341322124, - "2030-01-01": 772.342605127925, - "2029-01-01": 757.274492082983, - "2028-01-01": 742.410002187296, - "2027-01-01": 727.341889142354, - "2026-01-01": 709.850660621266, - "2025-01-01": 699.162820888735, - "2024-01-01": 683.98950255001, - "2023-01-01": 647, - "2015-01-01": 647 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 970.237869814415, - "2034-01-01": 951.450093707562, - "2033-01-01": 932.894265453879, - "2032-01-01": 914.802332906539, - "2031-01-01": 897.174296065541, - "2030-01-01": 879.778207077714, - "2029-01-01": 862.614065943058, - "2028-01-01": 845.681872661573, - "2027-01-01": 828.517731526917, - "2026-01-01": 808.593410939525, - "2025-01-01": 796.418854706333, - "2024-01-01": 779.134873847538, - "2023-01-01": 737, - "2015-01-01": 737 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1070.28953617248, - "2034-01-01": 1049.56435031784, - "2033-01-01": 1029.09503095523, - "2032-01-01": 1009.13744457668, - "2031-01-01": 989.691591182205, - "2030-01-01": 970.501604279758, - "2029-01-01": 951.567483869343, - "2028-01-01": 932.889229950961, - "2027-01-01": 913.955109540547, - "2026-01-01": 891.976177874944, - "2025-01-01": 878.546172152305, - "2024-01-01": 859.47985405434, - "2023-01-01": 813, - "2015-01-01": 813 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1158.49297888288, - "2034-01-01": 1136.05981338216, - "2033-01-01": 1113.90360054195, - "2032-01-01": 1092.30129302273, - "2031-01-01": 1071.25289082453, - "2030-01-01": 1050.48144128682, - "2029-01-01": 1029.98694440962, - "2028-01-01": 1009.76940019292, - "2027-01-01": 989.274903315721, - "2026-01-01": 965.484669778538, - "2025-01-01": 950.947886216517, - "2024-01-01": 930.310297131389, - "2023-01-01": 880, - "2015-01-01": 880 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1236.1646672398, - "2034-01-01": 1212.22745996119, - "2033-01-01": 1188.5857737601, - "2032-01-01": 1165.53512971403, - "2031-01-01": 1143.07552782299, - "2030-01-01": 1120.91144700946, - "2029-01-01": 1099.04288727345, - "2028-01-01": 1077.46984861495, - "2027-01-01": 1055.60128887893, - "2026-01-01": 1030.21602832051, - "2025-01-01": 1014.70461949694, - "2024-01-01": 992.68337387088, - "2023-01-01": 939, - "2015-01-01": 939 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1307.2540091258, - "2034-01-01": 1281.94022123692, - "2033-01-01": 1256.9389492479, - "2032-01-01": 1232.56270905861, - "2031-01-01": 1208.81150066904, - "2030-01-01": 1185.37280817934, - "2029-01-01": 1162.24663158949, - "2028-01-01": 1139.43297089951, - "2027-01-01": 1116.30679430967, - "2026-01-01": 1089.46167851146, - "2025-01-01": 1073.0582397875, - "2024-01-01": 1049.7705966494, - "2023-01-01": 993, - "2015-01-01": 993 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1373.07747383505, - "2034-01-01": 1346.48907427, - "2033-01-01": 1320.22892655142, - "2032-01-01": 1294.62528252581, - "2031-01-01": 1269.67814219316, - "2030-01-01": 1245.059253707, - "2029-01-01": 1220.76861706731, - "2028-01-01": 1196.80623227411, - "2027-01-01": 1172.51559563443, - "2026-01-01": 1144.31876202161, - "2025-01-01": 1127.08936968617, - "2024-01-01": 1102.62913625914, - "2023-01-01": 1043, - "2015-01-01": 1043 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1433.63506136757, - "2034-01-01": 1405.87401906043, - "2033-01-01": 1378.45570567066, - "2032-01-01": 1351.72285011563, - "2031-01-01": 1325.67545239535, - "2030-01-01": 1299.97078359244, - "2029-01-01": 1274.60884370691, - "2028-01-01": 1249.58963273874, - "2027-01-01": 1224.2276928532, - "2026-01-01": 1194.78727885094, - "2025-01-01": 1176.79800919294, - "2024-01-01": 1151.25899270009, - "2023-01-01": 1089, - "2015-01-01": 1089 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1513.93968831286, - "2034-01-01": 1484.62361976078, - "2033-01-01": 1455.66947798095, - "2032-01-01": 1427.43918974562, - "2031-01-01": 1399.93275505478, - "2030-01-01": 1372.78824713619, - "2029-01-01": 1346.00566598985, - "2028-01-01": 1319.58501161575, - "2027-01-01": 1292.80243046941, - "2026-01-01": 1261.71292073332, - "2025-01-01": 1242.71598766931, - "2024-01-01": 1215.74641102397, - "2023-01-01": 1150, - "2015-01-01": 1150 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1617.94076255348, - "2034-01-01": 1586.61080755304, - "2033-01-01": 1555.66764212051, - "2032-01-01": 1525.49805582379, - "2031-01-01": 1496.10204866289, - "2030-01-01": 1467.09283106989, - "2029-01-01": 1438.4704030448, - "2028-01-01": 1410.23476458762, - "2027-01-01": 1381.61233656252, - "2026-01-01": 1348.38711267934, - "2025-01-01": 1328.0851729092, - "2024-01-01": 1299.26290360736, - "2023-01-01": 1229, - "2015-01-01": 1229 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1712.72655173481, - "2034-01-01": 1679.56115592068, - "2033-01-01": 1646.80520943758, - "2032-01-01": 1614.86816161656, - "2031-01-01": 1583.75001245762, - "2030-01-01": 1553.04131262972, - "2029-01-01": 1522.74206213286, - "2028-01-01": 1492.85226096704, - "2027-01-01": 1462.55301047017, - "2026-01-01": 1427.38131293395, - "2025-01-01": 1405.88999996328, - "2024-01-01": 1375.37920064538, - "2023-01-01": 1301, - "2015-01-01": 1301 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1799.61352515103, - "2034-01-01": 1764.76564192434, - "2033-01-01": 1730.34797947823, - "2032-01-01": 1696.79075859327, - "2031-01-01": 1664.09397926946, - "2030-01-01": 1631.82742072623, - "2029-01-01": 1599.99108296358, - "2028-01-01": 1568.58496598151, - "2027-01-01": 1536.74862821885, - "2026-01-01": 1499.79266316734, - "2025-01-01": 1477.21109142952, - "2024-01-01": 1445.15247293024, - "2023-01-01": 1367, - "2015-01-01": 1367 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1881.2346213905, - "2034-01-01": 1844.80621968535, - "2033-01-01": 1808.82755133459, - "2032-01-01": 1773.7483496926, - "2031-01-01": 1739.56861475937, - "2030-01-01": 1705.83861318053, - "2029-01-01": 1672.55834495608, - "2028-01-01": 1639.72781008601, - "2027-01-01": 1606.44754186155, - "2026-01-01": 1567.81544671992, - "2025-01-01": 1544.20969250387, - "2024-01-01": 1510.69706204631, - "2023-01-01": 1429, - "2015-01-01": 1429 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1965.48865621835, - "2034-01-01": 1927.42875156769, - "2033-01-01": 1889.8387222831, - "2032-01-01": 1853.18844373061, - "2031-01-01": 1817.47791591025, - "2030-01-01": 1782.23726345594, - "2029-01-01": 1747.46648636769, - "2028-01-01": 1713.16558464549, - "2027-01-01": 1678.39480755724, - "2026-01-01": 1638.03251361291, - "2025-01-01": 1613.36953877416, - "2024-01-01": 1578.35599274678, - "2023-01-01": 1493, - "2015-01-01": 1493 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2053.69209892875, - "2034-01-01": 2013.92421463202, - "2033-01-01": 1974.64729186981, - "2032-01-01": 1936.35229217666, - "2031-01-01": 1899.03921555257, - "2030-01-01": 1862.217100463, - "2029-01-01": 1825.88594690796, - "2028-01-01": 1790.04575488745, - "2027-01-01": 1753.71460133241, - "2026-01-01": 1711.5410055165, - "2025-01-01": 1685.77125283837, - "2024-01-01": 1649.18643582383, - "2023-01-01": 1560, - "2015-01-01": 1560 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2137.9461337566, - "2034-01-01": 2096.54674651436, - "2033-01-01": 2055.65846281832, - "2032-01-01": 2015.79238621468, - "2031-01-01": 1976.94851670344, - "2030-01-01": 1938.61575073841, - "2029-01-01": 1900.79408831957, - "2028-01-01": 1863.48352944694, - "2027-01-01": 1825.6618670281, - "2026-01-01": 1781.75807240948, - "2025-01-01": 1754.93109910866, - "2024-01-01": 1716.84536652429, - "2023-01-01": 1624, - "2015-01-01": 1624 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2216.9342914077, - "2034-01-01": 2174.00537015405, - "2033-01-01": 2131.60643558254, - "2032-01-01": 2090.26747437532, - "2031-01-01": 2049.98848653239, - "2030-01-01": 2010.2394853716, - "2029-01-01": 1971.02047089296, - "2028-01-01": 1932.33144309646, - "2027-01-01": 1893.11242861781, - "2026-01-01": 1847.58657262166, - "2025-01-01": 1819.76845498706, - "2024-01-01": 1780.27561405598, - "2023-01-01": 1684, - "2015-01-01": 1684 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2676.3820750783, - "2034-01-01": 2624.55636432493, - "2033-01-01": 2573.37047716111, - "2032-01-01": 2523.46423717638, - "2031-01-01": 2474.83764437075, - "2030-01-01": 2426.85087515467, - "2029-01-01": 2379.50392952814, - "2028-01-01": 2332.79680749115, - "2027-01-01": 2285.44986186462, - "2026-01-01": 2230.48901552246, - "2025-01-01": 2196.90574167975, - "2024-01-01": 2149.22822053195, - "2023-01-01": 2033, - "2015-01-01": 2033 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 701.678133800656, - "2034-01-01": 688.090773332606, - "2033-01-01": 674.671158055519, - "2032-01-01": 661.58703316036, - "2031-01-01": 648.838398647128, - "2030-01-01": 636.25750932486, - "2029-01-01": 623.844365193555, - "2028-01-01": 611.598966253213, - "2027-01-01": 599.185822121908, - "2026-01-01": 584.776510218137, - "2025-01-01": 575.971844719777, - "2024-01-01": 563.472032239807, - "2023-01-01": 533, - "2015-01-01": 533 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 972.870808402785, - "2034-01-01": 954.032047828885, - "2033-01-01": 935.42586454602, - "2032-01-01": 917.284835845227, - "2031-01-01": 899.608961726506, - "2030-01-01": 882.16566489882, - "2029-01-01": 864.95494536217, - "2028-01-01": 847.976803116556, - "2027-01-01": 830.766083579907, - "2026-01-01": 810.787694279931, - "2025-01-01": 798.58009990228, - "2024-01-01": 781.249215431928, - "2023-01-01": 739, - "2015-01-01": 739 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1107.15067640967, - "2034-01-01": 1085.71170801636, - "2033-01-01": 1064.5374182452, - "2032-01-01": 1043.89248571832, - "2031-01-01": 1023.77691043571, - "2030-01-01": 1003.92601377525, - "2029-01-01": 984.339795736922, - "2028-01-01": 965.018256320736, - "2027-01-01": 945.432038282411, - "2026-01-01": 922.696144640625, - "2025-01-01": 908.803604895558, - "2024-01-01": 889.080636235794, - "2023-01-01": 841, - "2015-01-01": 841 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1220.36703570958, - "2034-01-01": 1196.73573523326, - "2033-01-01": 1173.39617920725, - "2032-01-01": 1150.6401120819, - "2031-01-01": 1128.4675338572, - "2030-01-01": 1106.58670008282, - "2029-01-01": 1084.99761075877, - "2028-01-01": 1063.70026588504, - "2027-01-01": 1042.11117656099, - "2026-01-01": 1017.05032827807, - "2025-01-01": 1001.73714832126, - "2024-01-01": 979.997324364543, - "2023-01-01": 927, - "2015-01-01": 927 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1319.10223277347, - "2034-01-01": 1293.55901478287, - "2033-01-01": 1268.33114516253, - "2032-01-01": 1243.7339722827, - "2031-01-01": 1219.76749614338, - "2030-01-01": 1196.11636837431, - "2029-01-01": 1172.7805889755, - "2028-01-01": 1149.76015794694, - "2027-01-01": 1126.42437854813, - "2026-01-01": 1099.33595354329, - "2025-01-01": 1082.78384316926, - "2024-01-01": 1059.28513377915, - "2023-01-01": 1002, - "2015-01-01": 1002 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1407.30567548387, - "2034-01-01": 1380.0544778472, - "2033-01-01": 1353.13971474925, - "2032-01-01": 1326.89782072875, - "2031-01-01": 1301.3287957857, - "2030-01-01": 1276.09620538138, - "2029-01-01": 1251.20004951578, - "2028-01-01": 1226.6403281889, - "2027-01-01": 1201.7441723233, - "2026-01-01": 1172.84444544688, - "2025-01-01": 1155.18555723347, - "2024-01-01": 1130.1155768562, - "2023-01-01": 1069, - "2015-01-01": 1069 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1487.61030242916, - "2034-01-01": 1458.80407854755, - "2033-01-01": 1430.35348705954, - "2032-01-01": 1402.61416035874, - "2031-01-01": 1375.58609844513, - "2030-01-01": 1348.91366892512, - "2029-01-01": 1322.59687179872, - "2028-01-01": 1296.63570706591, - "2027-01-01": 1270.31890993951, - "2026-01-01": 1239.77008732926, - "2025-01-01": 1221.10353570985, - "2024-01-01": 1194.60299518008, - "2023-01-01": 1130, - "2015-01-01": 1130 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1562.64905219771, - "2034-01-01": 1532.38977100526, - "2033-01-01": 1502.50406118556, - "2032-01-01": 1473.36549411135, - "2031-01-01": 1444.97406978263, - "2030-01-01": 1416.95621682666, - "2029-01-01": 1389.31193524343, - "2028-01-01": 1362.04122503295, - "2027-01-01": 1334.39694344973, - "2026-01-01": 1302.30716253082, - "2025-01-01": 1282.69902379433, - "2024-01-01": 1254.86173033518, - "2023-01-01": 1187, - "2015-01-01": 1187 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1631.10545549533, - "2034-01-01": 1599.52057815966, - "2033-01-01": 1568.32563758122, - "2032-01-01": 1537.91057051723, - "2031-01-01": 1508.27537696771, - "2030-01-01": 1479.03012017542, - "2029-01-01": 1450.17480014036, - "2028-01-01": 1421.70941686254, - "2027-01-01": 1392.85409682748, - "2026-01-01": 1359.35852938137, - "2025-01-01": 1338.89139888894, - "2024-01-01": 1309.83461152931, - "2023-01-01": 1239, - "2015-01-01": 1239 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1721.9418367941, - "2034-01-01": 1688.59799534531, - "2033-01-01": 1655.66580626007, - "2032-01-01": 1623.55692190197, - "2031-01-01": 1592.271342271, - "2030-01-01": 1561.3974150036, - "2029-01-01": 1530.93514009975, - "2028-01-01": 1500.88451755948, - "2027-01-01": 1470.42224265564, - "2026-01-01": 1435.06130462537, - "2025-01-01": 1413.4543581491, - "2024-01-01": 1382.77939619075, - "2023-01-01": 1308, - "2015-01-01": 1308 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1837.79113468239, - "2034-01-01": 1802.20397668352, - "2033-01-01": 1767.05616631427, - "2032-01-01": 1732.78705120425, - "2031-01-01": 1699.39663135345, - "2030-01-01": 1666.44555913228, - "2029-01-01": 1633.93383454072, - "2028-01-01": 1601.86145757877, - "2027-01-01": 1569.34973298721, - "2026-01-01": 1531.60977160323, - "2025-01-01": 1508.54914677075, - "2024-01-01": 1475.81042590389, - "2023-01-01": 1396, - "2015-01-01": 1396 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1945.74161680557, - "2034-01-01": 1908.06409565777, - "2033-01-01": 1870.85172909204, - "2032-01-01": 1834.56967169045, - "2031-01-01": 1799.21792345301, - "2030-01-01": 1764.33132979764, - "2029-01-01": 1729.90989072434, - "2028-01-01": 1695.95360623311, - "2027-01-01": 1661.53216715981, - "2026-01-01": 1621.57538855986, - "2025-01-01": 1597.16019980456, - "2024-01-01": 1562.49843086386, - "2023-01-01": 1478, - "2015-01-01": 1478 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2043.16034457527, - "2034-01-01": 2003.59639814672, - "2033-01-01": 1964.52089550125, - "2032-01-01": 1926.42228042191, - "2031-01-01": 1889.30055290871, - "2030-01-01": 1852.66726917858, - "2029-01-01": 1816.52242923151, - "2028-01-01": 1780.86603306752, - "2027-01-01": 1744.72119312045, - "2026-01-01": 1702.76387215488, - "2025-01-01": 1677.12627205459, - "2024-01-01": 1640.72906948627, - "2023-01-01": 1552, - "2015-01-01": 1552 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2133.99672587404, - "2034-01-01": 2092.67381533237, - "2033-01-01": 2051.86106418011, - "2032-01-01": 2012.06863180665, - "2031-01-01": 1973.296518212, - "2030-01-01": 1935.03456400675, - "2029-01-01": 1897.2827691909, - "2028-01-01": 1860.04113376446, - "2027-01-01": 1822.28933894862, - "2026-01-01": 1778.46664739887, - "2025-01-01": 1751.68923131474, - "2024-01-01": 1713.67385414771, - "2023-01-01": 1621, - "2015-01-01": 1621 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2228.78251505537, - "2034-01-01": 2185.6241637, - "2033-01-01": 2142.99863149717, - "2032-01-01": 2101.43873759942, - "2031-01-01": 2060.94448200673, - "2030-01-01": 2020.98304556658, - "2029-01-01": 1981.55442827896, - "2028-01-01": 1942.65863014388, - "2027-01-01": 1903.23001285627, - "2026-01-01": 1857.46084765348, - "2025-01-01": 1829.49405836882, - "2024-01-01": 1789.79015118573, - "2023-01-01": 1693, - "2015-01-01": 1693 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2330.15065070762, - "2034-01-01": 2285.02939737094, - "2033-01-01": 2240.4651965446, - "2032-01-01": 2197.01510073891, - "2031-01-01": 2154.67910995388, - "2030-01-01": 2112.90017167918, - "2029-01-01": 2071.67828591481, - "2028-01-01": 2031.01345266076, - "2027-01-01": 1989.79156689639, - "2026-01-01": 1941.9407562591, - "2025-01-01": 1912.70199841277, - "2024-01-01": 1871.19230218473, - "2023-01-01": 1770, - "2015-01-01": 1770 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2423.61997059476, - "2034-01-01": 2376.68876867791, - "2033-01-01": 2330.33696431559, - "2032-01-01": 2285.14395506233, - "2031-01-01": 2241.10974091813, - "2030-01-01": 2197.65492432846, - "2029-01-01": 2154.77950529331, - "2028-01-01": 2112.48348381269, - "2027-01-01": 2069.60806477755, - "2026-01-01": 2019.83781484351, - "2025-01-01": 1989.42620286887, - "2024-01-01": 1946.25142843055, - "2023-01-01": 1841, - "2015-01-01": 1841 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2513.13988259935, - "2034-01-01": 2464.4752088029, - "2033-01-01": 2416.41133344838, - "2032-01-01": 2369.54905497772, - "2031-01-01": 2323.88837339093, - "2030-01-01": 2278.82849024607, - "2029-01-01": 2234.36940554314, - "2028-01-01": 2190.51111928215, - "2027-01-01": 2146.05203457922, - "2026-01-01": 2094.44344841731, - "2025-01-01": 2062.90853953106, - "2024-01-01": 2018.1390422998, - "2023-01-01": 1909, - "2015-01-01": 1909 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3029.1958459199, - "2034-01-01": 2970.53821658223, - "2033-01-01": 2912.60475550797, - "2032-01-01": 2856.11963096058, - "2031-01-01": 2801.08284294004, - "2030-01-01": 2746.77022318293, - "2029-01-01": 2693.18177168925, - "2028-01-01": 2640.31748845899, - "2027-01-01": 2586.72903696531, - "2026-01-01": 2524.52298313684, - "2025-01-01": 2486.5125979366, - "2024-01-01": 2432.54999284014, - "2023-01-01": 2301, - "2015-01-01": 2301 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 759.6027827448, - "2034-01-01": 744.893764001714, - "2033-01-01": 730.366338082617, - "2032-01-01": 716.202097811497, - "2031-01-01": 702.401043188354, - "2030-01-01": 688.781581389201, - "2029-01-01": 675.343712414036, - "2028-01-01": 662.087436262859, - "2027-01-01": 648.649567287695, - "2026-01-01": 633.050743707064, - "2025-01-01": 623.519239030603, - "2024-01-01": 609.987547096377, - "2023-01-01": 577, - "2015-01-01": 577 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1051.85896605389, - "2034-01-01": 1031.49067146858, - "2033-01-01": 1011.37383731024, - "2032-01-01": 991.759924005868, - "2031-01-01": 972.648931555451, - "2030-01-01": 953.789399532013, - "2029-01-01": 935.181327935554, - "2028-01-01": 916.824716766074, - "2027-01-01": 898.216645169615, - "2026-01-01": 876.616194492104, - "2025-01-01": 863.417455780679, - "2024-01-01": 844.679462963614, - "2023-01-01": 799, - "2015-01-01": 799 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1196.67058841425, - "2034-01-01": 1173.49814814135, - "2033-01-01": 1150.61178737799, - "2032-01-01": 1128.29758563371, - "2031-01-01": 1106.55554290852, - "2030-01-01": 1085.09957969287, - "2029-01-01": 1063.92969598676, - "2028-01-01": 1043.04589179019, - "2027-01-01": 1021.87600808408, - "2026-01-01": 997.301778214421, - "2025-01-01": 982.285941557743, - "2024-01-01": 960.968250105037, - "2023-01-01": 909, - "2015-01-01": 909 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1319.10223277347, - "2034-01-01": 1293.55901478287, - "2033-01-01": 1268.33114516253, - "2032-01-01": 1243.7339722827, - "2031-01-01": 1219.76749614338, - "2030-01-01": 1196.11636837431, - "2029-01-01": 1172.7805889755, - "2028-01-01": 1149.76015794694, - "2027-01-01": 1126.42437854813, - "2026-01-01": 1099.33595354329, - "2025-01-01": 1082.78384316926, - "2024-01-01": 1059.28513377915, - "2023-01-01": 1002, - "2015-01-01": 1002 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1425.73624560246, - "2034-01-01": 1398.12815669646, - "2033-01-01": 1370.86090839424, - "2032-01-01": 1344.27534129957, - "2031-01-01": 1318.37145541246, - "2030-01-01": 1292.80841012912, - "2029-01-01": 1267.58620544957, - "2028-01-01": 1242.70484137379, - "2027-01-01": 1217.48263669423, - "2026-01-01": 1188.20442882972, - "2025-01-01": 1170.3142736051, - "2024-01-01": 1144.91596794693, - "2023-01-01": 1083, - "2015-01-01": 1083 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1520.52203478379, - "2034-01-01": 1491.07850506409, - "2033-01-01": 1461.9984757113, - "2032-01-01": 1433.64544709234, - "2031-01-01": 1406.01941920719, - "2030-01-01": 1378.75689168895, - "2029-01-01": 1351.85786453763, - "2028-01-01": 1325.32233775321, - "2027-01-01": 1298.42331060188, - "2026-01-01": 1267.19862908433, - "2025-01-01": 1248.11910065918, - "2024-01-01": 1221.03226498495, - "2023-01-01": 1155, - "2015-01-01": 1155 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1606.09253890582, - "2034-01-01": 1574.99201400709, - "2033-01-01": 1544.27544620588, - "2032-01-01": 1514.3267925997, - "2031-01-01": 1485.14605318855, - "2030-01-01": 1456.34927087491, - "2029-01-01": 1427.93644565879, - "2028-01-01": 1399.90757754019, - "2027-01-01": 1371.49475232407, - "2026-01-01": 1338.51283764752, - "2025-01-01": 1318.35956952744, - "2024-01-01": 1289.74836647761, - "2023-01-01": 1220, - "2015-01-01": 1220 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1686.39716585111, - "2034-01-01": 1653.74161470744, - "2033-01-01": 1621.48921851617, - "2032-01-01": 1590.04313222968, - "2031-01-01": 1559.40335584798, - "2030-01-01": 1529.16673441866, - "2029-01-01": 1499.33326794173, - "2028-01-01": 1469.9029564172, - "2027-01-01": 1440.06948994027, - "2026-01-01": 1405.43847952989, - "2025-01-01": 1384.27754800382, - "2024-01-01": 1354.23578480149, - "2023-01-01": 1281, - "2015-01-01": 1281 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1760.11944632547, - "2034-01-01": 1726.03633010449, - "2033-01-01": 1692.37399309611, - "2032-01-01": 1659.55321451295, - "2031-01-01": 1627.57399435499, - "2030-01-01": 1596.01555340964, - "2029-01-01": 1564.87789167689, - "2028-01-01": 1534.16100915675, - "2027-01-01": 1503.023347424, - "2026-01-01": 1466.87841306126, - "2025-01-01": 1444.79241349032, - "2024-01-01": 1413.43734916439, - "2023-01-01": 1337, - "2015-01-01": 1337 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1857.53817409517, - "2034-01-01": 1821.56863259345, - "2033-01-01": 1786.04315950532, - "2032-01-01": 1751.40582324441, - "2031-01-01": 1717.65662381069, - "2030-01-01": 1684.35149279058, - "2029-01-01": 1651.49043018406, - "2028-01-01": 1619.07343599115, - "2027-01-01": 1586.21237338464, - "2026-01-01": 1548.06689665627, - "2025-01-01": 1524.75848574035, - "2024-01-01": 1491.66798778681, - "2023-01-01": 1411, - "2015-01-01": 1411 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1982.60275704275, - "2034-01-01": 1944.21145335629, - "2033-01-01": 1906.29411638201, - "2032-01-01": 1869.32471283209, - "2031-01-01": 1833.30324270652, - "2030-01-01": 1797.75573929313, - "2029-01-01": 1762.68220259192, - "2028-01-01": 1728.08263260289, - "2027-01-01": 1693.00909590168, - "2026-01-01": 1652.29535532554, - "2025-01-01": 1627.41763254781, - "2024-01-01": 1592.09921304531, - "2023-01-01": 1506, - "2015-01-01": 1506 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2097.13558563686, - "2034-01-01": 2056.52645763385, - "2033-01-01": 2016.41867689014, - "2032-01-01": 1977.31359066502, - "2031-01-01": 1939.21119895849, - "2030-01-01": 1901.61015451126, - "2029-01-01": 1864.51045732333, - "2028-01-01": 1827.91210739469, - "2027-01-01": 1790.81241020675, - "2026-01-01": 1747.74668063319, - "2025-01-01": 1721.43179857149, - "2024-01-01": 1684.07307196625, - "2023-01-01": 1593, - "2015-01-01": 1593 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2202.45312917166, - "2034-01-01": 2159.80462248677, - "2033-01-01": 2117.68264057577, - "2032-01-01": 2076.61370821254, - "2031-01-01": 2036.59782539708, - "2030-01-01": 1997.10846735552, - "2029-01-01": 1958.14563408784, - "2028-01-01": 1919.70932559404, - "2027-01-01": 1880.74649232637, - "2026-01-01": 1835.51801424942, - "2025-01-01": 1807.88160640936, - "2024-01-01": 1768.64673534183, - "2023-01-01": 1673, - "2015-01-01": 1673 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2299.87185694136, - "2034-01-01": 2255.33692497573, - "2033-01-01": 2211.35180698498, - "2032-01-01": 2168.46631694399, - "2031-01-01": 2126.68045485278, - "2030-01-01": 2085.44440673645, - "2029-01-01": 2044.75817259501, - "2028-01-01": 2004.62175242845, - "2027-01-01": 1963.93551828701, - "2026-01-01": 1916.70649784444, - "2025-01-01": 1887.84767865938, - "2024-01-01": 1846.87737396425, - "2023-01-01": 1747, - "2015-01-01": 1747 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2401.23999259361, - "2034-01-01": 2354.74215864667, - "2033-01-01": 2308.8183720324, - "2032-01-01": 2264.04268008348, - "2031-01-01": 2220.41508279993, - "2030-01-01": 2177.36153284905, - "2029-01-01": 2134.88203023085, - "2028-01-01": 2092.97657494533, - "2027-01-01": 2050.49707232713, - "2026-01-01": 2001.18640645006, - "2025-01-01": 1971.05561870333, - "2024-01-01": 1928.27952496324, - "2023-01-01": 1824, - "2015-01-01": 1824 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2509.19047471679, - "2034-01-01": 2460.60227762091, - "2033-01-01": 2412.61393481017, - "2032-01-01": 2365.82530056969, - "2031-01-01": 2320.23637489949, - "2030-01-01": 2275.24730351441, - "2029-01-01": 2230.85808641447, - "2028-01-01": 2187.06872359967, - "2027-01-01": 2142.67950649973, - "2026-01-01": 2091.1520234067, - "2025-01-01": 2059.66667173714, - "2024-01-01": 2014.96752992321, - "2023-01-01": 1906, - "2015-01-01": 1906 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2610.55861036904, - "2034-01-01": 2560.00751129185, - "2033-01-01": 2510.08049985759, - "2032-01-01": 2461.40166370918, - "2031-01-01": 2413.97100284663, - "2030-01-01": 2367.16442962701, - "2029-01-01": 2320.98194405032, - "2028-01-01": 2275.42354611655, - "2027-01-01": 2229.24106053986, - "2026-01-01": 2175.63193201232, - "2025-01-01": 2142.87461178108, - "2024-01-01": 2096.36968092221, - "2023-01-01": 1983, - "2015-01-01": 1983 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2705.34439955037, - "2034-01-01": 2652.95785965948, - "2033-01-01": 2601.21806717466, - "2032-01-01": 2550.77176950195, - "2031-01-01": 2501.61896664137, - "2030-01-01": 2453.11291118684, - "2029-01-01": 2405.25360313838, - "2028-01-01": 2358.04104249597, - "2027-01-01": 2310.18173444751, - "2026-01-01": 2254.62613226693, - "2025-01-01": 2220.67943883516, - "2024-01-01": 2172.48597796023, - "2023-01-01": 2055, - "2015-01-01": 2055 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NV.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3259.5779724023, - "2034-01-01": 3196.459202198, - "2033-01-01": 3134.11967607029, - "2032-01-01": 3073.33863809578, - "2031-01-01": 3014.11608827446, - "2030-01-01": 2955.67278252974, - "2029-01-01": 2898.00872086162, - "2028-01-01": 2841.12390327009, - "2027-01-01": 2783.45984160196, - "2026-01-01": 2716.52277542234, - "2025-01-01": 2675.62155258193, - "2024-01-01": 2617.55488147423, - "2023-01-01": 2476, - "2015-01-01": 2476 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ", - "description": null, - "label": "NJ", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 613.474691090254, - "2034-01-01": 601.595310268282, - "2033-01-01": 589.862588468803, - "2032-01-01": 578.423184714311, - "2031-01-01": 567.277099004806, - "2030-01-01": 556.277672317795, - "2029-01-01": 545.424904653277, - "2028-01-01": 534.718796011252, - "2027-01-01": 523.866028346734, - "2026-01-01": 511.268018314544, - "2025-01-01": 503.570130655565, - "2024-01-01": 492.641589162758, - "2023-01-01": 466, - "2015-01-01": 466 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 851.755633337757, - "2034-01-01": 835.262158248022, - "2033-01-01": 818.972306307544, - "2032-01-01": 803.089700665578, - "2031-01-01": 787.614341322124, - "2030-01-01": 772.342605127925, - "2029-01-01": 757.274492082983, - "2028-01-01": 742.410002187296, - "2027-01-01": 727.341889142354, - "2026-01-01": 709.850660621266, - "2025-01-01": 699.162820888735, - "2024-01-01": 683.98950255001, - "2023-01-01": 647, - "2015-01-01": 647 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 970.237869814415, - "2034-01-01": 951.450093707562, - "2033-01-01": 932.894265453879, - "2032-01-01": 914.802332906539, - "2031-01-01": 897.174296065541, - "2030-01-01": 879.778207077714, - "2029-01-01": 862.614065943058, - "2028-01-01": 845.681872661573, - "2027-01-01": 828.517731526917, - "2026-01-01": 808.593410939525, - "2025-01-01": 796.418854706333, - "2024-01-01": 779.134873847538, - "2023-01-01": 737, - "2015-01-01": 737 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1070.28953617248, - "2034-01-01": 1049.56435031784, - "2033-01-01": 1029.09503095523, - "2032-01-01": 1009.13744457668, - "2031-01-01": 989.691591182205, - "2030-01-01": 970.501604279758, - "2029-01-01": 951.567483869343, - "2028-01-01": 932.889229950961, - "2027-01-01": 913.955109540547, - "2026-01-01": 891.976177874944, - "2025-01-01": 878.546172152305, - "2024-01-01": 859.47985405434, - "2023-01-01": 813, - "2015-01-01": 813 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1158.49297888288, - "2034-01-01": 1136.05981338216, - "2033-01-01": 1113.90360054195, - "2032-01-01": 1092.30129302273, - "2031-01-01": 1071.25289082453, - "2030-01-01": 1050.48144128682, - "2029-01-01": 1029.98694440962, - "2028-01-01": 1009.76940019292, - "2027-01-01": 989.274903315721, - "2026-01-01": 965.484669778538, - "2025-01-01": 950.947886216517, - "2024-01-01": 930.310297131389, - "2023-01-01": 880, - "2015-01-01": 880 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1236.1646672398, - "2034-01-01": 1212.22745996119, - "2033-01-01": 1188.5857737601, - "2032-01-01": 1165.53512971403, - "2031-01-01": 1143.07552782299, - "2030-01-01": 1120.91144700946, - "2029-01-01": 1099.04288727345, - "2028-01-01": 1077.46984861495, - "2027-01-01": 1055.60128887893, - "2026-01-01": 1030.21602832051, - "2025-01-01": 1014.70461949694, - "2024-01-01": 992.68337387088, - "2023-01-01": 939, - "2015-01-01": 939 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1307.2540091258, - "2034-01-01": 1281.94022123692, - "2033-01-01": 1256.9389492479, - "2032-01-01": 1232.56270905861, - "2031-01-01": 1208.81150066904, - "2030-01-01": 1185.37280817934, - "2029-01-01": 1162.24663158949, - "2028-01-01": 1139.43297089951, - "2027-01-01": 1116.30679430967, - "2026-01-01": 1089.46167851146, - "2025-01-01": 1073.0582397875, - "2024-01-01": 1049.7705966494, - "2023-01-01": 993, - "2015-01-01": 993 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1373.07747383505, - "2034-01-01": 1346.48907427, - "2033-01-01": 1320.22892655142, - "2032-01-01": 1294.62528252581, - "2031-01-01": 1269.67814219316, - "2030-01-01": 1245.059253707, - "2029-01-01": 1220.76861706731, - "2028-01-01": 1196.80623227411, - "2027-01-01": 1172.51559563443, - "2026-01-01": 1144.31876202161, - "2025-01-01": 1127.08936968617, - "2024-01-01": 1102.62913625914, - "2023-01-01": 1043, - "2015-01-01": 1043 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1433.63506136757, - "2034-01-01": 1405.87401906043, - "2033-01-01": 1378.45570567066, - "2032-01-01": 1351.72285011563, - "2031-01-01": 1325.67545239535, - "2030-01-01": 1299.97078359244, - "2029-01-01": 1274.60884370691, - "2028-01-01": 1249.58963273874, - "2027-01-01": 1224.2276928532, - "2026-01-01": 1194.78727885094, - "2025-01-01": 1176.79800919294, - "2024-01-01": 1151.25899270009, - "2023-01-01": 1089, - "2015-01-01": 1089 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1513.93968831286, - "2034-01-01": 1484.62361976078, - "2033-01-01": 1455.66947798095, - "2032-01-01": 1427.43918974562, - "2031-01-01": 1399.93275505478, - "2030-01-01": 1372.78824713619, - "2029-01-01": 1346.00566598985, - "2028-01-01": 1319.58501161575, - "2027-01-01": 1292.80243046941, - "2026-01-01": 1261.71292073332, - "2025-01-01": 1242.71598766931, - "2024-01-01": 1215.74641102397, - "2023-01-01": 1150, - "2015-01-01": 1150 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1617.94076255348, - "2034-01-01": 1586.61080755304, - "2033-01-01": 1555.66764212051, - "2032-01-01": 1525.49805582379, - "2031-01-01": 1496.10204866289, - "2030-01-01": 1467.09283106989, - "2029-01-01": 1438.4704030448, - "2028-01-01": 1410.23476458762, - "2027-01-01": 1381.61233656252, - "2026-01-01": 1348.38711267934, - "2025-01-01": 1328.0851729092, - "2024-01-01": 1299.26290360736, - "2023-01-01": 1229, - "2015-01-01": 1229 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1712.72655173481, - "2034-01-01": 1679.56115592068, - "2033-01-01": 1646.80520943758, - "2032-01-01": 1614.86816161656, - "2031-01-01": 1583.75001245762, - "2030-01-01": 1553.04131262972, - "2029-01-01": 1522.74206213286, - "2028-01-01": 1492.85226096704, - "2027-01-01": 1462.55301047017, - "2026-01-01": 1427.38131293395, - "2025-01-01": 1405.88999996328, - "2024-01-01": 1375.37920064538, - "2023-01-01": 1301, - "2015-01-01": 1301 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1799.61352515103, - "2034-01-01": 1764.76564192434, - "2033-01-01": 1730.34797947823, - "2032-01-01": 1696.79075859327, - "2031-01-01": 1664.09397926946, - "2030-01-01": 1631.82742072623, - "2029-01-01": 1599.99108296358, - "2028-01-01": 1568.58496598151, - "2027-01-01": 1536.74862821885, - "2026-01-01": 1499.79266316734, - "2025-01-01": 1477.21109142952, - "2024-01-01": 1445.15247293024, - "2023-01-01": 1367, - "2015-01-01": 1367 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1881.2346213905, - "2034-01-01": 1844.80621968535, - "2033-01-01": 1808.82755133459, - "2032-01-01": 1773.7483496926, - "2031-01-01": 1739.56861475937, - "2030-01-01": 1705.83861318053, - "2029-01-01": 1672.55834495608, - "2028-01-01": 1639.72781008601, - "2027-01-01": 1606.44754186155, - "2026-01-01": 1567.81544671992, - "2025-01-01": 1544.20969250387, - "2024-01-01": 1510.69706204631, - "2023-01-01": 1429, - "2015-01-01": 1429 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1965.48865621835, - "2034-01-01": 1927.42875156769, - "2033-01-01": 1889.8387222831, - "2032-01-01": 1853.18844373061, - "2031-01-01": 1817.47791591025, - "2030-01-01": 1782.23726345594, - "2029-01-01": 1747.46648636769, - "2028-01-01": 1713.16558464549, - "2027-01-01": 1678.39480755724, - "2026-01-01": 1638.03251361291, - "2025-01-01": 1613.36953877416, - "2024-01-01": 1578.35599274678, - "2023-01-01": 1493, - "2015-01-01": 1493 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2053.69209892875, - "2034-01-01": 2013.92421463202, - "2033-01-01": 1974.64729186981, - "2032-01-01": 1936.35229217666, - "2031-01-01": 1899.03921555257, - "2030-01-01": 1862.217100463, - "2029-01-01": 1825.88594690796, - "2028-01-01": 1790.04575488745, - "2027-01-01": 1753.71460133241, - "2026-01-01": 1711.5410055165, - "2025-01-01": 1685.77125283837, - "2024-01-01": 1649.18643582383, - "2023-01-01": 1560, - "2015-01-01": 1560 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2137.9461337566, - "2034-01-01": 2096.54674651436, - "2033-01-01": 2055.65846281832, - "2032-01-01": 2015.79238621468, - "2031-01-01": 1976.94851670344, - "2030-01-01": 1938.61575073841, - "2029-01-01": 1900.79408831957, - "2028-01-01": 1863.48352944694, - "2027-01-01": 1825.6618670281, - "2026-01-01": 1781.75807240948, - "2025-01-01": 1754.93109910866, - "2024-01-01": 1716.84536652429, - "2023-01-01": 1624, - "2015-01-01": 1624 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2216.9342914077, - "2034-01-01": 2174.00537015405, - "2033-01-01": 2131.60643558254, - "2032-01-01": 2090.26747437532, - "2031-01-01": 2049.98848653239, - "2030-01-01": 2010.2394853716, - "2029-01-01": 1971.02047089296, - "2028-01-01": 1932.33144309646, - "2027-01-01": 1893.11242861781, - "2026-01-01": 1847.58657262166, - "2025-01-01": 1819.76845498706, - "2024-01-01": 1780.27561405598, - "2023-01-01": 1684, - "2015-01-01": 1684 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2676.3820750783, - "2034-01-01": 2624.55636432493, - "2033-01-01": 2573.37047716111, - "2032-01-01": 2523.46423717638, - "2031-01-01": 2474.83764437075, - "2030-01-01": 2426.85087515467, - "2029-01-01": 2379.50392952814, - "2028-01-01": 2332.79680749115, - "2027-01-01": 2285.44986186462, - "2026-01-01": 2230.48901552246, - "2025-01-01": 2196.90574167975, - "2024-01-01": 2149.22822053195, - "2023-01-01": 2033, - "2015-01-01": 2033 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 701.678133800656, - "2034-01-01": 688.090773332606, - "2033-01-01": 674.671158055519, - "2032-01-01": 661.58703316036, - "2031-01-01": 648.838398647128, - "2030-01-01": 636.25750932486, - "2029-01-01": 623.844365193555, - "2028-01-01": 611.598966253213, - "2027-01-01": 599.185822121908, - "2026-01-01": 584.776510218137, - "2025-01-01": 575.971844719777, - "2024-01-01": 563.472032239807, - "2023-01-01": 533, - "2015-01-01": 533 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 972.870808402785, - "2034-01-01": 954.032047828885, - "2033-01-01": 935.42586454602, - "2032-01-01": 917.284835845227, - "2031-01-01": 899.608961726506, - "2030-01-01": 882.16566489882, - "2029-01-01": 864.95494536217, - "2028-01-01": 847.976803116556, - "2027-01-01": 830.766083579907, - "2026-01-01": 810.787694279931, - "2025-01-01": 798.58009990228, - "2024-01-01": 781.249215431928, - "2023-01-01": 739, - "2015-01-01": 739 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1107.15067640967, - "2034-01-01": 1085.71170801636, - "2033-01-01": 1064.5374182452, - "2032-01-01": 1043.89248571832, - "2031-01-01": 1023.77691043571, - "2030-01-01": 1003.92601377525, - "2029-01-01": 984.339795736922, - "2028-01-01": 965.018256320736, - "2027-01-01": 945.432038282411, - "2026-01-01": 922.696144640625, - "2025-01-01": 908.803604895558, - "2024-01-01": 889.080636235794, - "2023-01-01": 841, - "2015-01-01": 841 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1220.36703570958, - "2034-01-01": 1196.73573523326, - "2033-01-01": 1173.39617920725, - "2032-01-01": 1150.6401120819, - "2031-01-01": 1128.4675338572, - "2030-01-01": 1106.58670008282, - "2029-01-01": 1084.99761075877, - "2028-01-01": 1063.70026588504, - "2027-01-01": 1042.11117656099, - "2026-01-01": 1017.05032827807, - "2025-01-01": 1001.73714832126, - "2024-01-01": 979.997324364543, - "2023-01-01": 927, - "2015-01-01": 927 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1319.10223277347, - "2034-01-01": 1293.55901478287, - "2033-01-01": 1268.33114516253, - "2032-01-01": 1243.7339722827, - "2031-01-01": 1219.76749614338, - "2030-01-01": 1196.11636837431, - "2029-01-01": 1172.7805889755, - "2028-01-01": 1149.76015794694, - "2027-01-01": 1126.42437854813, - "2026-01-01": 1099.33595354329, - "2025-01-01": 1082.78384316926, - "2024-01-01": 1059.28513377915, - "2023-01-01": 1002, - "2015-01-01": 1002 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1407.30567548387, - "2034-01-01": 1380.0544778472, - "2033-01-01": 1353.13971474925, - "2032-01-01": 1326.89782072875, - "2031-01-01": 1301.3287957857, - "2030-01-01": 1276.09620538138, - "2029-01-01": 1251.20004951578, - "2028-01-01": 1226.6403281889, - "2027-01-01": 1201.7441723233, - "2026-01-01": 1172.84444544688, - "2025-01-01": 1155.18555723347, - "2024-01-01": 1130.1155768562, - "2023-01-01": 1069, - "2015-01-01": 1069 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1487.61030242916, - "2034-01-01": 1458.80407854755, - "2033-01-01": 1430.35348705954, - "2032-01-01": 1402.61416035874, - "2031-01-01": 1375.58609844513, - "2030-01-01": 1348.91366892512, - "2029-01-01": 1322.59687179872, - "2028-01-01": 1296.63570706591, - "2027-01-01": 1270.31890993951, - "2026-01-01": 1239.77008732926, - "2025-01-01": 1221.10353570985, - "2024-01-01": 1194.60299518008, - "2023-01-01": 1130, - "2015-01-01": 1130 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1562.64905219771, - "2034-01-01": 1532.38977100526, - "2033-01-01": 1502.50406118556, - "2032-01-01": 1473.36549411135, - "2031-01-01": 1444.97406978263, - "2030-01-01": 1416.95621682666, - "2029-01-01": 1389.31193524343, - "2028-01-01": 1362.04122503295, - "2027-01-01": 1334.39694344973, - "2026-01-01": 1302.30716253082, - "2025-01-01": 1282.69902379433, - "2024-01-01": 1254.86173033518, - "2023-01-01": 1187, - "2015-01-01": 1187 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1631.10545549533, - "2034-01-01": 1599.52057815966, - "2033-01-01": 1568.32563758122, - "2032-01-01": 1537.91057051723, - "2031-01-01": 1508.27537696771, - "2030-01-01": 1479.03012017542, - "2029-01-01": 1450.17480014036, - "2028-01-01": 1421.70941686254, - "2027-01-01": 1392.85409682748, - "2026-01-01": 1359.35852938137, - "2025-01-01": 1338.89139888894, - "2024-01-01": 1309.83461152931, - "2023-01-01": 1239, - "2015-01-01": 1239 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1721.9418367941, - "2034-01-01": 1688.59799534531, - "2033-01-01": 1655.66580626007, - "2032-01-01": 1623.55692190197, - "2031-01-01": 1592.271342271, - "2030-01-01": 1561.3974150036, - "2029-01-01": 1530.93514009975, - "2028-01-01": 1500.88451755948, - "2027-01-01": 1470.42224265564, - "2026-01-01": 1435.06130462537, - "2025-01-01": 1413.4543581491, - "2024-01-01": 1382.77939619075, - "2023-01-01": 1308, - "2015-01-01": 1308 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1837.79113468239, - "2034-01-01": 1802.20397668352, - "2033-01-01": 1767.05616631427, - "2032-01-01": 1732.78705120425, - "2031-01-01": 1699.39663135345, - "2030-01-01": 1666.44555913228, - "2029-01-01": 1633.93383454072, - "2028-01-01": 1601.86145757877, - "2027-01-01": 1569.34973298721, - "2026-01-01": 1531.60977160323, - "2025-01-01": 1508.54914677075, - "2024-01-01": 1475.81042590389, - "2023-01-01": 1396, - "2015-01-01": 1396 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1945.74161680557, - "2034-01-01": 1908.06409565777, - "2033-01-01": 1870.85172909204, - "2032-01-01": 1834.56967169045, - "2031-01-01": 1799.21792345301, - "2030-01-01": 1764.33132979764, - "2029-01-01": 1729.90989072434, - "2028-01-01": 1695.95360623311, - "2027-01-01": 1661.53216715981, - "2026-01-01": 1621.57538855986, - "2025-01-01": 1597.16019980456, - "2024-01-01": 1562.49843086386, - "2023-01-01": 1478, - "2015-01-01": 1478 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2043.16034457527, - "2034-01-01": 2003.59639814672, - "2033-01-01": 1964.52089550125, - "2032-01-01": 1926.42228042191, - "2031-01-01": 1889.30055290871, - "2030-01-01": 1852.66726917858, - "2029-01-01": 1816.52242923151, - "2028-01-01": 1780.86603306752, - "2027-01-01": 1744.72119312045, - "2026-01-01": 1702.76387215488, - "2025-01-01": 1677.12627205459, - "2024-01-01": 1640.72906948627, - "2023-01-01": 1552, - "2015-01-01": 1552 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2133.99672587404, - "2034-01-01": 2092.67381533237, - "2033-01-01": 2051.86106418011, - "2032-01-01": 2012.06863180665, - "2031-01-01": 1973.296518212, - "2030-01-01": 1935.03456400675, - "2029-01-01": 1897.2827691909, - "2028-01-01": 1860.04113376446, - "2027-01-01": 1822.28933894862, - "2026-01-01": 1778.46664739887, - "2025-01-01": 1751.68923131474, - "2024-01-01": 1713.67385414771, - "2023-01-01": 1621, - "2015-01-01": 1621 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2228.78251505537, - "2034-01-01": 2185.6241637, - "2033-01-01": 2142.99863149717, - "2032-01-01": 2101.43873759942, - "2031-01-01": 2060.94448200673, - "2030-01-01": 2020.98304556658, - "2029-01-01": 1981.55442827896, - "2028-01-01": 1942.65863014388, - "2027-01-01": 1903.23001285627, - "2026-01-01": 1857.46084765348, - "2025-01-01": 1829.49405836882, - "2024-01-01": 1789.79015118573, - "2023-01-01": 1693, - "2015-01-01": 1693 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2330.15065070762, - "2034-01-01": 2285.02939737094, - "2033-01-01": 2240.4651965446, - "2032-01-01": 2197.01510073891, - "2031-01-01": 2154.67910995388, - "2030-01-01": 2112.90017167918, - "2029-01-01": 2071.67828591481, - "2028-01-01": 2031.01345266076, - "2027-01-01": 1989.79156689639, - "2026-01-01": 1941.9407562591, - "2025-01-01": 1912.70199841277, - "2024-01-01": 1871.19230218473, - "2023-01-01": 1770, - "2015-01-01": 1770 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2423.61997059476, - "2034-01-01": 2376.68876867791, - "2033-01-01": 2330.33696431559, - "2032-01-01": 2285.14395506233, - "2031-01-01": 2241.10974091813, - "2030-01-01": 2197.65492432846, - "2029-01-01": 2154.77950529331, - "2028-01-01": 2112.48348381269, - "2027-01-01": 2069.60806477755, - "2026-01-01": 2019.83781484351, - "2025-01-01": 1989.42620286887, - "2024-01-01": 1946.25142843055, - "2023-01-01": 1841, - "2015-01-01": 1841 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2513.13988259935, - "2034-01-01": 2464.4752088029, - "2033-01-01": 2416.41133344838, - "2032-01-01": 2369.54905497772, - "2031-01-01": 2323.88837339093, - "2030-01-01": 2278.82849024607, - "2029-01-01": 2234.36940554314, - "2028-01-01": 2190.51111928215, - "2027-01-01": 2146.05203457922, - "2026-01-01": 2094.44344841731, - "2025-01-01": 2062.90853953106, - "2024-01-01": 2018.1390422998, - "2023-01-01": 1909, - "2015-01-01": 1909 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3029.1958459199, - "2034-01-01": 2970.53821658223, - "2033-01-01": 2912.60475550797, - "2032-01-01": 2856.11963096058, - "2031-01-01": 2801.08284294004, - "2030-01-01": 2746.77022318293, - "2029-01-01": 2693.18177168925, - "2028-01-01": 2640.31748845899, - "2027-01-01": 2586.72903696531, - "2026-01-01": 2524.52298313684, - "2025-01-01": 2486.5125979366, - "2024-01-01": 2432.54999284014, - "2023-01-01": 2301, - "2015-01-01": 2301 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 759.6027827448, - "2034-01-01": 744.893764001714, - "2033-01-01": 730.366338082617, - "2032-01-01": 716.202097811497, - "2031-01-01": 702.401043188354, - "2030-01-01": 688.781581389201, - "2029-01-01": 675.343712414036, - "2028-01-01": 662.087436262859, - "2027-01-01": 648.649567287695, - "2026-01-01": 633.050743707064, - "2025-01-01": 623.519239030603, - "2024-01-01": 609.987547096377, - "2023-01-01": 577, - "2015-01-01": 577 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1051.85896605389, - "2034-01-01": 1031.49067146858, - "2033-01-01": 1011.37383731024, - "2032-01-01": 991.759924005868, - "2031-01-01": 972.648931555451, - "2030-01-01": 953.789399532013, - "2029-01-01": 935.181327935554, - "2028-01-01": 916.824716766074, - "2027-01-01": 898.216645169615, - "2026-01-01": 876.616194492104, - "2025-01-01": 863.417455780679, - "2024-01-01": 844.679462963614, - "2023-01-01": 799, - "2015-01-01": 799 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1196.67058841425, - "2034-01-01": 1173.49814814135, - "2033-01-01": 1150.61178737799, - "2032-01-01": 1128.29758563371, - "2031-01-01": 1106.55554290852, - "2030-01-01": 1085.09957969287, - "2029-01-01": 1063.92969598676, - "2028-01-01": 1043.04589179019, - "2027-01-01": 1021.87600808408, - "2026-01-01": 997.301778214421, - "2025-01-01": 982.285941557743, - "2024-01-01": 960.968250105037, - "2023-01-01": 909, - "2015-01-01": 909 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1319.10223277347, - "2034-01-01": 1293.55901478287, - "2033-01-01": 1268.33114516253, - "2032-01-01": 1243.7339722827, - "2031-01-01": 1219.76749614338, - "2030-01-01": 1196.11636837431, - "2029-01-01": 1172.7805889755, - "2028-01-01": 1149.76015794694, - "2027-01-01": 1126.42437854813, - "2026-01-01": 1099.33595354329, - "2025-01-01": 1082.78384316926, - "2024-01-01": 1059.28513377915, - "2023-01-01": 1002, - "2015-01-01": 1002 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1425.73624560246, - "2034-01-01": 1398.12815669646, - "2033-01-01": 1370.86090839424, - "2032-01-01": 1344.27534129957, - "2031-01-01": 1318.37145541246, - "2030-01-01": 1292.80841012912, - "2029-01-01": 1267.58620544957, - "2028-01-01": 1242.70484137379, - "2027-01-01": 1217.48263669423, - "2026-01-01": 1188.20442882972, - "2025-01-01": 1170.3142736051, - "2024-01-01": 1144.91596794693, - "2023-01-01": 1083, - "2015-01-01": 1083 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1520.52203478379, - "2034-01-01": 1491.07850506409, - "2033-01-01": 1461.9984757113, - "2032-01-01": 1433.64544709234, - "2031-01-01": 1406.01941920719, - "2030-01-01": 1378.75689168895, - "2029-01-01": 1351.85786453763, - "2028-01-01": 1325.32233775321, - "2027-01-01": 1298.42331060188, - "2026-01-01": 1267.19862908433, - "2025-01-01": 1248.11910065918, - "2024-01-01": 1221.03226498495, - "2023-01-01": 1155, - "2015-01-01": 1155 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1606.09253890582, - "2034-01-01": 1574.99201400709, - "2033-01-01": 1544.27544620588, - "2032-01-01": 1514.3267925997, - "2031-01-01": 1485.14605318855, - "2030-01-01": 1456.34927087491, - "2029-01-01": 1427.93644565879, - "2028-01-01": 1399.90757754019, - "2027-01-01": 1371.49475232407, - "2026-01-01": 1338.51283764752, - "2025-01-01": 1318.35956952744, - "2024-01-01": 1289.74836647761, - "2023-01-01": 1220, - "2015-01-01": 1220 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1686.39716585111, - "2034-01-01": 1653.74161470744, - "2033-01-01": 1621.48921851617, - "2032-01-01": 1590.04313222968, - "2031-01-01": 1559.40335584798, - "2030-01-01": 1529.16673441866, - "2029-01-01": 1499.33326794173, - "2028-01-01": 1469.9029564172, - "2027-01-01": 1440.06948994027, - "2026-01-01": 1405.43847952989, - "2025-01-01": 1384.27754800382, - "2024-01-01": 1354.23578480149, - "2023-01-01": 1281, - "2015-01-01": 1281 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1760.11944632547, - "2034-01-01": 1726.03633010449, - "2033-01-01": 1692.37399309611, - "2032-01-01": 1659.55321451295, - "2031-01-01": 1627.57399435499, - "2030-01-01": 1596.01555340964, - "2029-01-01": 1564.87789167689, - "2028-01-01": 1534.16100915675, - "2027-01-01": 1503.023347424, - "2026-01-01": 1466.87841306126, - "2025-01-01": 1444.79241349032, - "2024-01-01": 1413.43734916439, - "2023-01-01": 1337, - "2015-01-01": 1337 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1857.53817409517, - "2034-01-01": 1821.56863259345, - "2033-01-01": 1786.04315950532, - "2032-01-01": 1751.40582324441, - "2031-01-01": 1717.65662381069, - "2030-01-01": 1684.35149279058, - "2029-01-01": 1651.49043018406, - "2028-01-01": 1619.07343599115, - "2027-01-01": 1586.21237338464, - "2026-01-01": 1548.06689665627, - "2025-01-01": 1524.75848574035, - "2024-01-01": 1491.66798778681, - "2023-01-01": 1411, - "2015-01-01": 1411 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1982.60275704275, - "2034-01-01": 1944.21145335629, - "2033-01-01": 1906.29411638201, - "2032-01-01": 1869.32471283209, - "2031-01-01": 1833.30324270652, - "2030-01-01": 1797.75573929313, - "2029-01-01": 1762.68220259192, - "2028-01-01": 1728.08263260289, - "2027-01-01": 1693.00909590168, - "2026-01-01": 1652.29535532554, - "2025-01-01": 1627.41763254781, - "2024-01-01": 1592.09921304531, - "2023-01-01": 1506, - "2015-01-01": 1506 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2097.13558563686, - "2034-01-01": 2056.52645763385, - "2033-01-01": 2016.41867689014, - "2032-01-01": 1977.31359066502, - "2031-01-01": 1939.21119895849, - "2030-01-01": 1901.61015451126, - "2029-01-01": 1864.51045732333, - "2028-01-01": 1827.91210739469, - "2027-01-01": 1790.81241020675, - "2026-01-01": 1747.74668063319, - "2025-01-01": 1721.43179857149, - "2024-01-01": 1684.07307196625, - "2023-01-01": 1593, - "2015-01-01": 1593 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2202.45312917166, - "2034-01-01": 2159.80462248677, - "2033-01-01": 2117.68264057577, - "2032-01-01": 2076.61370821254, - "2031-01-01": 2036.59782539708, - "2030-01-01": 1997.10846735552, - "2029-01-01": 1958.14563408784, - "2028-01-01": 1919.70932559404, - "2027-01-01": 1880.74649232637, - "2026-01-01": 1835.51801424942, - "2025-01-01": 1807.88160640936, - "2024-01-01": 1768.64673534183, - "2023-01-01": 1673, - "2015-01-01": 1673 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2299.87185694136, - "2034-01-01": 2255.33692497573, - "2033-01-01": 2211.35180698498, - "2032-01-01": 2168.46631694399, - "2031-01-01": 2126.68045485278, - "2030-01-01": 2085.44440673645, - "2029-01-01": 2044.75817259501, - "2028-01-01": 2004.62175242845, - "2027-01-01": 1963.93551828701, - "2026-01-01": 1916.70649784444, - "2025-01-01": 1887.84767865938, - "2024-01-01": 1846.87737396425, - "2023-01-01": 1747, - "2015-01-01": 1747 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2401.23999259361, - "2034-01-01": 2354.74215864667, - "2033-01-01": 2308.8183720324, - "2032-01-01": 2264.04268008348, - "2031-01-01": 2220.41508279993, - "2030-01-01": 2177.36153284905, - "2029-01-01": 2134.88203023085, - "2028-01-01": 2092.97657494533, - "2027-01-01": 2050.49707232713, - "2026-01-01": 2001.18640645006, - "2025-01-01": 1971.05561870333, - "2024-01-01": 1928.27952496324, - "2023-01-01": 1824, - "2015-01-01": 1824 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2509.19047471679, - "2034-01-01": 2460.60227762091, - "2033-01-01": 2412.61393481017, - "2032-01-01": 2365.82530056969, - "2031-01-01": 2320.23637489949, - "2030-01-01": 2275.24730351441, - "2029-01-01": 2230.85808641447, - "2028-01-01": 2187.06872359967, - "2027-01-01": 2142.67950649973, - "2026-01-01": 2091.1520234067, - "2025-01-01": 2059.66667173714, - "2024-01-01": 2014.96752992321, - "2023-01-01": 1906, - "2015-01-01": 1906 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2610.55861036904, - "2034-01-01": 2560.00751129185, - "2033-01-01": 2510.08049985759, - "2032-01-01": 2461.40166370918, - "2031-01-01": 2413.97100284663, - "2030-01-01": 2367.16442962701, - "2029-01-01": 2320.98194405032, - "2028-01-01": 2275.42354611655, - "2027-01-01": 2229.24106053986, - "2026-01-01": 2175.63193201232, - "2025-01-01": 2142.87461178108, - "2024-01-01": 2096.36968092221, - "2023-01-01": 1983, - "2015-01-01": 1983 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2705.34439955037, - "2034-01-01": 2652.95785965948, - "2033-01-01": 2601.21806717466, - "2032-01-01": 2550.77176950195, - "2031-01-01": 2501.61896664137, - "2030-01-01": 2453.11291118684, - "2029-01-01": 2405.25360313838, - "2028-01-01": 2358.04104249597, - "2027-01-01": 2310.18173444751, - "2026-01-01": 2254.62613226693, - "2025-01-01": 2220.67943883516, - "2024-01-01": 2172.48597796023, - "2023-01-01": 2055, - "2015-01-01": 2055 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3259.5779724023, - "2034-01-01": 3196.459202198, - "2033-01-01": 3134.11967607029, - "2032-01-01": 3073.33863809578, - "2031-01-01": 3014.11608827446, - "2030-01-01": 2955.67278252974, - "2029-01-01": 2898.00872086162, - "2028-01-01": 2841.12390327009, - "2027-01-01": 2783.45984160196, - "2026-01-01": 2716.52277542234, - "2025-01-01": 2675.62155258193, - "2024-01-01": 2617.55488147423, - "2023-01-01": 2476, - "2015-01-01": 2476 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 804.362738747093, - "2034-01-01": 788.786984064207, - "2033-01-01": 773.40352264901, - "2032-01-01": 758.404647769193, - "2031-01-01": 743.790359424757, - "2030-01-01": 729.36836434801, - "2029-01-01": 715.138662538953, - "2028-01-01": 701.101253997586, - "2027-01-01": 686.871552188529, - "2026-01-01": 670.353560493962, - "2025-01-01": 660.260407361696, - "2024-01-01": 645.931354030999, - "2023-01-01": 611, - "2015-01-01": 611 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1112.41655358641, - "2034-01-01": 1090.87561625901, - "2033-01-01": 1069.60061642948, - "2032-01-01": 1048.85749159569, - "2031-01-01": 1028.64624175764, - "2030-01-01": 1008.70092941746, - "2029-01-01": 989.021554575147, - "2028-01-01": 969.608117230704, - "2027-01-01": 949.928742388391, - "2026-01-01": 927.084711321437, - "2025-01-01": 913.126095287451, - "2024-01-01": 893.309319404573, - "2023-01-01": 845, - "2015-01-01": 845 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1265.12699171188, - "2034-01-01": 1240.62895529575, - "2033-01-01": 1216.43336377365, - "2032-01-01": 1192.8426620396, - "2031-01-01": 1169.8568500936, - "2030-01-01": 1147.17348304163, - "2029-01-01": 1124.79256088369, - "2028-01-01": 1102.71408361977, - "2027-01-01": 1080.33316146183, - "2026-01-01": 1054.35314506497, - "2025-01-01": 1038.47831665236, - "2024-01-01": 1015.94113129916, - "2023-01-01": 961, - "2015-01-01": 961 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1392.82451324783, - "2034-01-01": 1365.85373017992, - "2033-01-01": 1339.21591974248, - "2032-01-01": 1313.24405456597, - "2031-01-01": 1287.9381346504, - "2030-01-01": 1262.96518736529, - "2029-01-01": 1238.32521271066, - "2028-01-01": 1214.01821068649, - "2027-01-01": 1189.37823603186, - "2026-01-01": 1160.77588707465, - "2025-01-01": 1143.29870865577, - "2024-01-01": 1118.48669814206, - "2023-01-01": 1058, - "2015-01-01": 1058 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1506.04087254775, - "2034-01-01": 1476.87775739681, - "2033-01-01": 1448.07468070453, - "2032-01-01": 1419.99168092955, - "2031-01-01": 1392.62875807188, - "2030-01-01": 1365.62587367287, - "2029-01-01": 1338.98302773251, - "2028-01-01": 1312.7002202508, - "2027-01-01": 1286.05737431044, - "2026-01-01": 1255.1300707121, - "2025-01-01": 1236.23225208147, - "2024-01-01": 1209.40338627081, - "2023-01-01": 1144, - "2015-01-01": 1144 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1606.09253890582, - "2034-01-01": 1574.99201400709, - "2033-01-01": 1544.27544620588, - "2032-01-01": 1514.3267925997, - "2031-01-01": 1485.14605318855, - "2030-01-01": 1456.34927087491, - "2029-01-01": 1427.93644565879, - "2028-01-01": 1399.90757754019, - "2027-01-01": 1371.49475232407, - "2026-01-01": 1338.51283764752, - "2025-01-01": 1318.35956952744, - "2024-01-01": 1289.74836647761, - "2023-01-01": 1220, - "2015-01-01": 1220 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1696.92892020459, - "2034-01-01": 1664.06943119274, - "2033-01-01": 1631.61561488474, - "2032-01-01": 1599.97314398444, - "2031-01-01": 1569.14201849184, - "2030-01-01": 1538.71656570308, - "2029-01-01": 1508.69678561818, - "2028-01-01": 1479.08267823713, - "2027-01-01": 1449.06289815223, - "2026-01-01": 1414.21561289152, - "2025-01-01": 1392.9225287876, - "2024-01-01": 1362.69315113905, - "2023-01-01": 1289, - "2015-01-01": 1289 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1779.86648573825, - "2034-01-01": 1745.40098601441, - "2033-01-01": 1711.36098628717, - "2032-01-01": 1678.17198655311, - "2031-01-01": 1645.83398681223, - "2030-01-01": 1613.92148706794, - "2029-01-01": 1582.43448732024, - "2028-01-01": 1551.37298756913, - "2027-01-01": 1519.88598782143, - "2026-01-01": 1483.3355381143, - "2025-01-01": 1461.00175245992, - "2024-01-01": 1429.29491104732, - "2023-01-01": 1352, - "2015-01-01": 1352 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1857.53817409517, - "2034-01-01": 1821.56863259345, - "2033-01-01": 1786.04315950532, - "2032-01-01": 1751.40582324441, - "2031-01-01": 1717.65662381069, - "2030-01-01": 1684.35149279058, - "2029-01-01": 1651.49043018406, - "2028-01-01": 1619.07343599115, - "2027-01-01": 1586.21237338464, - "2026-01-01": 1548.06689665627, - "2025-01-01": 1524.75848574035, - "2024-01-01": 1491.66798778681, - "2023-01-01": 1411, - "2015-01-01": 1411 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1960.22277904161, - "2034-01-01": 1922.26484332505, - "2033-01-01": 1884.77552409881, - "2032-01-01": 1848.22343785324, - "2031-01-01": 1812.60858458832, - "2030-01-01": 1777.46234781373, - "2029-01-01": 1742.78472752946, - "2028-01-01": 1708.57572373552, - "2027-01-01": 1673.89810345126, - "2026-01-01": 1633.64394693209, - "2025-01-01": 1609.04704838227, - "2024-01-01": 1574.127309578, - "2023-01-01": 1489, - "2015-01-01": 1489 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2091.86970846012, - "2034-01-01": 2051.3625493912, - "2033-01-01": 2011.35547870585, - "2032-01-01": 1972.34858478764, - "2031-01-01": 1934.34186763656, - "2030-01-01": 1896.83523886905, - "2029-01-01": 1859.8286984851, - "2028-01-01": 1823.32224648472, - "2027-01-01": 1786.31570610077, - "2026-01-01": 1743.35811395238, - "2025-01-01": 1717.1093081796, - "2024-01-01": 1679.84438879747, - "2023-01-01": 1589, - "2015-01-01": 1589 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2212.98488352515, - "2034-01-01": 2170.13243897206, - "2033-01-01": 2127.80903694433, - "2032-01-01": 2086.54371996729, - "2031-01-01": 2046.33648804094, - "2030-01-01": 2006.65829863994, - "2029-01-01": 1967.50915176429, - "2028-01-01": 1928.88904741398, - "2027-01-01": 1889.73990053833, - "2026-01-01": 1844.29514761105, - "2025-01-01": 1816.52658719314, - "2024-01-01": 1777.10410167939, - "2023-01-01": 1681, - "2015-01-01": 1681 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2323.56830423669, - "2034-01-01": 2278.57451206763, - "2033-01-01": 2234.13619881424, - "2032-01-01": 2190.80884339219, - "2031-01-01": 2148.59244580147, - "2030-01-01": 2106.93152712641, - "2029-01-01": 2065.82608736702, - "2028-01-01": 2025.2761265233, - "2027-01-01": 1984.17068676392, - "2026-01-01": 1936.45504790809, - "2025-01-01": 1907.2988854229, - "2024-01-01": 1865.90644822375, - "2023-01-01": 1765, - "2015-01-01": 1765 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2426.25290918313, - "2034-01-01": 2379.27072279924, - "2033-01-01": 2332.86856340773, - "2032-01-01": 2287.62645800102, - "2031-01-01": 2243.54440657909, - "2030-01-01": 2200.04238214956, - "2029-01-01": 2157.12038471242, - "2028-01-01": 2114.77841426768, - "2027-01-01": 2071.85641683054, - "2026-01-01": 2022.03209818391, - "2025-01-01": 1991.58744806482, - "2024-01-01": 1948.36577001494, - "2023-01-01": 1843, - "2015-01-01": 1843 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2532.88692201212, - "2034-01-01": 2483.83986471282, - "2033-01-01": 2435.39832663944, - "2032-01-01": 2388.16782701789, - "2031-01-01": 2342.14836584817, - "2030-01-01": 2296.73442390437, - "2029-01-01": 2251.92600118649, - "2028-01-01": 2207.72309769453, - "2027-01-01": 2162.91467497665, - "2026-01-01": 2110.90057347035, - "2025-01-01": 2079.11787850066, - "2024-01-01": 2033.99660418272, - "2023-01-01": 1924, - "2015-01-01": 1924 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2646.10328131204, - "2034-01-01": 2594.86389192971, - "2033-01-01": 2544.25708760149, - "2032-01-01": 2494.91545338147, - "2031-01-01": 2446.83898926966, - "2030-01-01": 2399.39511021195, - "2029-01-01": 2352.58381620834, - "2028-01-01": 2306.40510725883, - "2027-01-01": 2259.59381325523, - "2026-01-01": 2205.2547571078, - "2025-01-01": 2172.05142192636, - "2024-01-01": 2124.91329231147, - "2023-01-01": 2010, - "2015-01-01": 2010 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2752.73729414103, - "2034-01-01": 2699.4330338433, - "2033-01-01": 2646.78685083319, - "2032-01-01": 2595.45682239834, - "2031-01-01": 2545.44294853873, - "2030-01-01": 2496.08715196676, - "2029-01-01": 2447.38943268241, - "2028-01-01": 2399.34979068568, - "2027-01-01": 2350.65207140133, - "2026-01-01": 2294.12323239423, - "2025-01-01": 2259.5818523622, - "2024-01-01": 2210.54412647924, - "2023-01-01": 2091, - "2015-01-01": 2091 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2852.7889604991, - "2034-01-01": 2797.54729045358, - "2033-01-01": 2742.98761633454, - "2032-01-01": 2689.79193406848, - "2031-01-01": 2637.9602436554, - "2030-01-01": 2586.8105491688, - "2029-01-01": 2536.34285060869, - "2028-01-01": 2486.55714797507, - "2027-01-01": 2436.08944941496, - "2026-01-01": 2377.50599932965, - "2025-01-01": 2341.70916980817, - "2024-01-01": 2290.88910668605, - "2023-01-01": 2167, - "2015-01-01": 2167 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3434.66838852891, - "2034-01-01": 3368.15915126598, - "2033-01-01": 3302.47101569765, - "2032-01-01": 3238.42508351854, - "2031-01-01": 3176.02135472863, - "2030-01-01": 3114.43872763332, - "2029-01-01": 3053.67720223262, - "2028-01-01": 2993.73677852652, - "2027-01-01": 2932.97525312581, - "2026-01-01": 2862.44261755932, - "2025-01-01": 2819.34435811238, - "2024-01-01": 2758.15859683613, - "2023-01-01": 2609, - "2015-01-01": 2609 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 841.223878984276, - "2034-01-01": 824.93434176273, - "2033-01-01": 808.845909938981, - "2032-01-01": 793.159688910826, - "2031-01-01": 777.875678678264, - "2030-01-01": 762.7927738435, - "2029-01-01": 747.910974406532, - "2028-01-01": 733.230280367361, - "2027-01-01": 718.348480930393, - "2026-01-01": 701.073527259643, - "2025-01-01": 690.517840104948, - "2024-01-01": 675.532136212452, - "2023-01-01": 639, - "2015-01-01": 639 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1161.12591747125, - "2034-01-01": 1138.64176750349, - "2033-01-01": 1116.43519963409, - "2032-01-01": 1094.78379596142, - "2031-01-01": 1073.68755648549, - "2030-01-01": 1052.86889910793, - "2029-01-01": 1032.32782382873, - "2028-01-01": 1012.06433064791, - "2027-01-01": 991.523255368712, - "2026-01-01": 967.678953118943, - "2025-01-01": 953.109131412464, - "2024-01-01": 932.424638715779, - "2023-01-01": 882, - "2015-01-01": 882 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1320.41870206765, - "2034-01-01": 1294.84999184353, - "2033-01-01": 1269.5969447086, - "2032-01-01": 1244.97522375205, - "2031-01-01": 1220.98482897386, - "2030-01-01": 1197.31009728487, - "2029-01-01": 1173.95102868506, - "2028-01-01": 1150.90762317443, - "2027-01-01": 1127.54855457462, - "2026-01-01": 1100.43309521349, - "2025-01-01": 1083.86446576724, - "2024-01-01": 1060.34230457134, - "2023-01-01": 1003, - "2015-01-01": 1003 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1454.69857007453, - "2034-01-01": 1426.52965203101, - "2033-01-01": 1398.70849840778, - "2032-01-01": 1371.58287362514, - "2031-01-01": 1345.15277768307, - "2030-01-01": 1319.07044616129, - "2029-01-01": 1293.33587905981, - "2028-01-01": 1267.94907637861, - "2027-01-01": 1242.21450927713, - "2026-01-01": 1212.34154557419, - "2025-01-01": 1194.08797076051, - "2024-01-01": 1168.17372537521, - "2023-01-01": 1105, - "2015-01-01": 1105 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1571.864337257, - "2034-01-01": 1541.42661042989, - "2033-01-01": 1511.36465800805, - "2032-01-01": 1482.05425439675, - "2031-01-01": 1453.49539959601, - "2030-01-01": 1425.31231920053, - "2029-01-01": 1397.50501321033, - "2028-01-01": 1370.0734816254, - "2027-01-01": 1342.26617563519, - "2026-01-01": 1309.98715422224, - "2025-01-01": 1290.26338198014, - "2024-01-01": 1262.26192588054, - "2023-01-01": 1194, - "2015-01-01": 1194 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1675.86541149763, - "2034-01-01": 1643.41379822215, - "2033-01-01": 1611.36282214761, - "2032-01-01": 1580.11312047493, - "2031-01-01": 1549.66469320412, - "2030-01-01": 1519.61690313423, - "2029-01-01": 1489.96975026528, - "2028-01-01": 1460.72323459726, - "2027-01-01": 1431.07608172831, - "2026-01-01": 1396.66134616827, - "2025-01-01": 1375.63256722003, - "2024-01-01": 1345.77841846393, - "2023-01-01": 1273, - "2015-01-01": 1273 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1769.33473138477, - "2034-01-01": 1735.07316952912, - "2033-01-01": 1701.23458991861, - "2032-01-01": 1668.24197479836, - "2031-01-01": 1636.09532416837, - "2030-01-01": 1604.37165578351, - "2029-01-01": 1573.07096964378, - "2028-01-01": 1542.19326574919, - "2027-01-01": 1510.89257960947, - "2026-01-01": 1474.55840475268, - "2025-01-01": 1452.35677167614, - "2024-01-01": 1420.83754470976, - "2023-01-01": 1344, - "2015-01-01": 1344 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1857.53817409517, - "2034-01-01": 1821.56863259345, - "2033-01-01": 1786.04315950532, - "2032-01-01": 1751.40582324441, - "2031-01-01": 1717.65662381069, - "2030-01-01": 1684.35149279058, - "2029-01-01": 1651.49043018406, - "2028-01-01": 1619.07343599115, - "2027-01-01": 1586.21237338464, - "2026-01-01": 1548.06689665627, - "2025-01-01": 1524.75848574035, - "2024-01-01": 1491.66798778681, - "2023-01-01": 1411, - "2015-01-01": 1411 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1937.84280104046, - "2034-01-01": 1900.3182332938, - "2033-01-01": 1863.25693181562, - "2032-01-01": 1827.12216287439, - "2031-01-01": 1791.91392647012, - "2030-01-01": 1757.16895633432, - "2029-01-01": 1722.887252467, - "2028-01-01": 1689.06881486816, - "2027-01-01": 1654.78711100084, - "2026-01-01": 1614.99253853864, - "2025-01-01": 1590.67646421672, - "2024-01-01": 1556.15540611069, - "2023-01-01": 1472, - "2015-01-01": 1472 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2044.47681386945, - "2034-01-01": 2004.88737520739, - "2033-01-01": 1965.78669504732, - "2032-01-01": 1927.66353189126, - "2031-01-01": 1890.51788573919, - "2030-01-01": 1853.86099808913, - "2029-01-01": 1817.69286894107, - "2028-01-01": 1782.01349829501, - "2027-01-01": 1745.84536914695, - "2026-01-01": 1703.86101382508, - "2025-01-01": 1678.20689465256, - "2024-01-01": 1641.78624027846, - "2023-01-01": 1553, - "2015-01-01": 1553 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2181.3896204647, - "2034-01-01": 2139.14898951619, - "2033-01-01": 2097.42984783864, - "2032-01-01": 2056.75368470303, - "2031-01-01": 2017.12050010936, - "2030-01-01": 1978.00880478667, - "2029-01-01": 1939.41859873493, - "2028-01-01": 1901.34988195417, - "2027-01-01": 1862.75967590244, - "2026-01-01": 1817.96374752618, - "2025-01-01": 1790.59164484178, - "2024-01-01": 1751.73200266672, - "2023-01-01": 1657, - "2015-01-01": 1657 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2307.77067270647, - "2034-01-01": 2263.0827873397, - "2033-01-01": 2218.9466042614, - "2032-01-01": 2175.91382576006, - "2031-01-01": 2133.98445183568, - "2030-01-01": 2092.60678019977, - "2029-01-01": 2051.78081085235, - "2028-01-01": 2011.5065437934, - "2027-01-01": 1970.68057444598, - "2026-01-01": 1923.28934786566, - "2025-01-01": 1894.33141424722, - "2024-01-01": 1853.22039871742, - "2023-01-01": 1753, - "2015-01-01": 1753 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2422.30350130058, - "2034-01-01": 2375.39779161725, - "2033-01-01": 2329.07116476952, - "2032-01-01": 2283.90270359299, - "2031-01-01": 2239.89240808765, - "2030-01-01": 2196.4611954179, - "2029-01-01": 2153.60906558375, - "2028-01-01": 2111.3360185852, - "2027-01-01": 2068.48388875105, - "2026-01-01": 2018.74067317331, - "2025-01-01": 1988.3455802709, - "2024-01-01": 1945.19425763836, - "2023-01-01": 1840, - "2015-01-01": 1840 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2528.93751412957, - "2034-01-01": 2479.96693353084, - "2033-01-01": 2431.60092800122, - "2032-01-01": 2384.44407260985, - "2031-01-01": 2338.49636735672, - "2030-01-01": 2293.15323717271, - "2029-01-01": 2248.41468205782, - "2028-01-01": 2204.28070201205, - "2027-01-01": 2159.54214689716, - "2026-01-01": 2107.60914845974, - "2025-01-01": 2075.87601070674, - "2024-01-01": 2030.82509180613, - "2023-01-01": 1921, - "2015-01-01": 1921 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2640.8374041353, - "2034-01-01": 2589.69998368707, - "2033-01-01": 2539.19388941721, - "2032-01-01": 2489.95044750409, - "2031-01-01": 2441.96965794773, - "2030-01-01": 2394.62019456973, - "2029-01-01": 2347.90205737011, - "2028-01-01": 2301.81524634887, - "2027-01-01": 2255.09710914925, - "2026-01-01": 2200.86619042698, - "2025-01-01": 2167.72893153447, - "2024-01-01": 2120.68460914269, - "2023-01-01": 2006, - "2015-01-01": 2006 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2758.00317131777, - "2034-01-01": 2704.59694208595, - "2033-01-01": 2651.85004901747, - "2032-01-01": 2600.42182827571, - "2031-01-01": 2550.31227986066, - "2030-01-01": 2500.86206760897, - "2029-01-01": 2452.07119152063, - "2028-01-01": 2403.93965159565, - "2027-01-01": 2355.14877550731, - "2026-01-01": 2298.51179907504, - "2025-01-01": 2263.9043427541, - "2024-01-01": 2214.77280964802, - "2023-01-01": 2095, - "2015-01-01": 2095 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2868.58659202932, - "2034-01-01": 2813.03901518152, - "2033-01-01": 2758.17721088739, - "2032-01-01": 2704.68695170061, - "2031-01-01": 2652.56823762119, - "2030-01-01": 2601.13529609544, - "2029-01-01": 2550.38812712337, - "2028-01-01": 2500.32673070497, - "2027-01-01": 2449.57956173291, - "2026-01-01": 2390.67169937208, - "2025-01-01": 2354.67664098385, - "2024-01-01": 2303.57515619238, - "2023-01-01": 2179, - "2015-01-01": 2179 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2972.58766626995, - "2034-01-01": 2915.02620297378, - "2033-01-01": 2858.17537502695, - "2032-01-01": 2802.74581777879, - "2031-01-01": 2748.7375312293, - "2030-01-01": 2695.43988002914, - "2029-01-01": 2642.85286417832, - "2028-01-01": 2590.97648367684, - "2027-01-01": 2538.38946782602, - "2026-01-01": 2477.34589131811, - "2025-01-01": 2440.04582622375, - "2024-01-01": 2387.09164877577, - "2023-01-01": 2258, - "2015-01-01": 2258 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3576.8470723009, - "2034-01-01": 3507.58467381743, - "2033-01-01": 3439.17736667326, - "2032-01-01": 3372.48024220769, - "2031-01-01": 3307.49330042073, - "2030-01-01": 3243.36144997307, - "2029-01-01": 3180.0846908647, - "2028-01-01": 3117.66302309565, - "2027-01-01": 3054.38626398729, - "2026-01-01": 2980.93391794123, - "2025-01-01": 2936.0515986935, - "2024-01-01": 2872.33304239316, - "2023-01-01": 2717, - "2015-01-01": 2717 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 891.24971216331, - "2034-01-01": 873.991470067869, - "2033-01-01": 856.946292689656, - "2032-01-01": 840.327244745898, - "2031-01-01": 824.134326236596, - "2030-01-01": 808.154472444522, - "2029-01-01": 792.387683369674, - "2028-01-01": 776.833959012055, - "2027-01-01": 761.067169937208, - "2026-01-01": 742.764910727352, - "2025-01-01": 731.581498827934, - "2024-01-01": 715.704626315853, - "2023-01-01": 677, - "2015-01-01": 677 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1229.58232076888, - "2034-01-01": 1205.77257465789, - "2033-01-01": 1182.25677602975, - "2032-01-01": 1159.32887236731, - "2031-01-01": 1136.98886367058, - "2030-01-01": 1114.9428024567, - "2029-01-01": 1093.19068872567, - "2028-01-01": 1071.73252247749, - "2027-01-01": 1049.98040874646, - "2026-01-01": 1024.73031996949, - "2025-01-01": 1009.30150650708, - "2024-01-01": 987.397519909906, - "2023-01-01": 934, - "2015-01-01": 934 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1398.09039042457, - "2034-01-01": 1371.01763842257, - "2033-01-01": 1344.27911792676, - "2032-01-01": 1318.20906044334, - "2031-01-01": 1292.80746597233, - "2030-01-01": 1267.74010300751, - "2029-01-01": 1243.00697154888, - "2028-01-01": 1218.60807159646, - "2027-01-01": 1193.87494013784, - "2026-01-01": 1165.16445375546, - "2025-01-01": 1147.62119904766, - "2024-01-01": 1122.71538131084, - "2023-01-01": 1062, - "2015-01-01": 1062 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1538.95260490238, - "2034-01-01": 1509.15218391335, - "2033-01-01": 1479.71966935629, - "2032-01-01": 1451.02296766315, - "2031-01-01": 1423.06207883395, - "2030-01-01": 1395.4690964367, - "2029-01-01": 1368.24402047142, - "2028-01-01": 1341.3868509381, - "2027-01-01": 1314.16177497282, - "2026-01-01": 1282.55861246717, - "2025-01-01": 1263.24781703081, - "2024-01-01": 1235.83265607568, - "2023-01-01": 1169, - "2015-01-01": 1169 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1662.70071855578, - "2034-01-01": 1630.50402761554, - "2033-01-01": 1598.70482668691, - "2032-01-01": 1567.70060578149, - "2031-01-01": 1537.49136489929, - "2030-01-01": 1507.6796140287, - "2029-01-01": 1478.26535316972, - "2028-01-01": 1449.24858232234, - "2027-01-01": 1419.83432146336, - "2026-01-01": 1385.68992946624, - "2025-01-01": 1364.8263412403, - "2024-01-01": 1335.20671054198, - "2023-01-01": 1263, - "2015-01-01": 1263 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1771.96766997314, - "2034-01-01": 1737.65512365045, - "2033-01-01": 1703.76618901075, - "2032-01-01": 1670.72447773704, - "2031-01-01": 1638.52998982933, - "2030-01-01": 1606.75911360462, - "2029-01-01": 1575.4118490629, - "2028-01-01": 1544.48819620417, - "2027-01-01": 1513.14093166246, - "2026-01-01": 1476.75268809308, - "2025-01-01": 1454.51801687208, - "2024-01-01": 1422.95188629415, - "2023-01-01": 1346, - "2015-01-01": 1346 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1872.01933633121, - "2034-01-01": 1835.76938026072, - "2033-01-01": 1799.9669545121, - "2032-01-01": 1765.05958940719, - "2031-01-01": 1731.047284946, - "2030-01-01": 1697.48251080666, - "2029-01-01": 1664.36526698918, - "2028-01-01": 1631.69555349356, - "2027-01-01": 1598.57830967609, - "2026-01-01": 1560.1354550285, - "2025-01-01": 1536.64533431805, - "2024-01-01": 1503.29686650095, - "2023-01-01": 1422, - "2015-01-01": 1422 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1964.17218692416, - "2034-01-01": 1926.13777450703, - "2033-01-01": 1888.57292273703, - "2032-01-01": 1851.94719226127, - "2031-01-01": 1816.26058307977, - "2030-01-01": 1781.04353454539, - "2029-01-01": 1746.29604665813, - "2028-01-01": 1712.018119418, - "2027-01-01": 1677.27063153075, - "2026-01-01": 1636.9353719427, - "2025-01-01": 1612.28891617619, - "2024-01-01": 1577.29882195458, - "2023-01-01": 1492, - "2015-01-01": 1492 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2048.42622175201, - "2034-01-01": 2008.76030638937, - "2033-01-01": 1969.58409368553, - "2032-01-01": 1931.38728629929, - "2031-01-01": 1894.16988423064, - "2030-01-01": 1857.44218482079, - "2029-01-01": 1821.20418806974, - "2028-01-01": 1785.45589397749, - "2027-01-01": 1749.21789722643, - "2026-01-01": 1707.15243883569, - "2025-01-01": 1681.44876244648, - "2024-01-01": 1644.95775265505, - "2023-01-01": 1556, - "2015-01-01": 1556 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2161.64258105193, - "2034-01-01": 2119.78433360626, - "2033-01-01": 2078.44285464758, - "2032-01-01": 2038.13491266287, - "2031-01-01": 1998.86050765213, - "2030-01-01": 1960.10287112837, - "2029-01-01": 1921.86200309159, - "2028-01-01": 1884.13790354179, - "2027-01-01": 1845.89703550502, - "2026-01-01": 1801.50662247313, - "2025-01-01": 1774.38230587218, - "2024-01-01": 1735.8744407838, - "2023-01-01": 1642, - "2015-01-01": 1642 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2305.1377341181, - "2034-01-01": 2260.50083321837, - "2033-01-01": 2216.41500516926, - "2032-01-01": 2173.43132282137, - "2031-01-01": 2131.54978617471, - "2030-01-01": 2090.21932237867, - "2029-01-01": 2049.43993143323, - "2028-01-01": 2009.21161333842, - "2027-01-01": 1968.43222239299, - "2026-01-01": 1921.09506452525, - "2025-01-01": 1892.17016905127, - "2024-01-01": 1851.10605713303, - "2023-01-01": 1751, - "2015-01-01": 1751 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2438.1011328308, - "2034-01-01": 2390.88951634519, - "2033-01-01": 2344.26075932237, - "2032-01-01": 2298.79772122512, - "2031-01-01": 2254.50040205344, - "2030-01-01": 2210.78594234454, - "2029-01-01": 2167.65434209843, - "2028-01-01": 2125.1056013151, - "2027-01-01": 2081.974001069, - "2026-01-01": 2031.90637321574, - "2025-01-01": 2001.31305144658, - "2024-01-01": 1957.8803071447, - "2023-01-01": 1852, - "2015-01-01": 1852 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2559.21630789583, - "2034-01-01": 2509.65940592605, - "2033-01-01": 2460.71431756084, - "2032-01-01": 2412.99285640477, - "2031-01-01": 2366.49502245782, - "2030-01-01": 2320.60900211544, - "2029-01-01": 2275.33479537762, - "2028-01-01": 2230.67240224437, - "2027-01-01": 2185.39819550655, - "2026-01-01": 2132.84340687441, - "2025-01-01": 2100.73033046012, - "2024-01-01": 2055.14002002661, - "2023-01-01": 1944, - "2015-01-01": 1944 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2672.43266719574, - "2034-01-01": 2620.68343314295, - "2033-01-01": 2569.5730785229, - "2032-01-01": 2519.74048276835, - "2031-01-01": 2471.18564587931, - "2030-01-01": 2423.26968842301, - "2029-01-01": 2375.99261039947, - "2028-01-01": 2329.35441180867, - "2027-01-01": 2282.07733378513, - "2026-01-01": 2227.19759051185, - "2025-01-01": 2193.66387388583, - "2024-01-01": 2146.05670815536, - "2023-01-01": 2030, - "2015-01-01": 2030 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2789.59843437822, - "2034-01-01": 2735.58039154182, - "2033-01-01": 2682.22923812316, - "2032-01-01": 2630.21186353997, - "2031-01-01": 2579.52826779224, - "2030-01-01": 2529.51156146225, - "2029-01-01": 2480.16174454999, - "2028-01-01": 2431.47881705546, - "2027-01-01": 2382.1290001432, - "2026-01-01": 2324.84319915991, - "2025-01-01": 2289.83928510545, - "2024-01-01": 2240.1449086607, - "2023-01-01": 2119, - "2015-01-01": 2119 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2913.34654803162, - "2034-01-01": 2856.93223524401, - "2033-01-01": 2801.21439545378, - "2032-01-01": 2746.88950165831, - "2031-01-01": 2693.95755385759, - "2030-01-01": 2641.72207905425, - "2029-01-01": 2590.18307724829, - "2028-01-01": 2539.3405484397, - "2027-01-01": 2487.80154663374, - "2026-01-01": 2427.97451615898, - "2025-01-01": 2391.41780931495, - "2024-01-01": 2339.518963127, - "2023-01-01": 2213, - "2015-01-01": 2213 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3029.1958459199, - "2034-01-01": 2970.53821658223, - "2033-01-01": 2912.60475550797, - "2032-01-01": 2856.11963096058, - "2031-01-01": 2801.08284294004, - "2030-01-01": 2746.77022318293, - "2029-01-01": 2693.18177168925, - "2028-01-01": 2640.31748845899, - "2027-01-01": 2586.72903696531, - "2026-01-01": 2524.52298313684, - "2025-01-01": 2486.5125979366, - "2024-01-01": 2432.54999284014, - "2023-01-01": 2301, - "2015-01-01": 2301 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3138.46279733727, - "2034-01-01": 3077.68931261713, - "2033-01-01": 3017.66611783182, - "2032-01-01": 2959.14350291613, - "2031-01-01": 2902.12146787008, - "2030-01-01": 2845.84972275885, - "2029-01-01": 2790.32826758243, - "2028-01-01": 2735.55710234083, - "2027-01-01": 2680.03564716441, - "2026-01-01": 2615.58574176367, - "2025-01-01": 2576.20427356838, - "2024-01-01": 2520.29516859231, - "2023-01-01": 2384, - "2015-01-01": 2384 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NJ.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3774.31746642867, - "2034-01-01": 3701.23123291666, - "2033-01-01": 3629.04729858382, - "2032-01-01": 3558.66796260929, - "2031-01-01": 3490.09322499309, - "2030-01-01": 3422.42078655605, - "2029-01-01": 3355.65064729816, - "2028-01-01": 3289.78280721944, - "2027-01-01": 3223.01266796156, - "2026-01-01": 3145.50516847167, - "2025-01-01": 3098.14498838949, - "2024-01-01": 3030.90866122238, - "2023-01-01": 2867, - "2015-01-01": 2867 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM", - "description": null, - "label": "NM", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 527.904186968223, - "2034-01-01": 517.681801325281, - "2033-01-01": 507.585617974227, - "2032-01-01": 497.74183920695, - "2031-01-01": 488.150465023449, - "2030-01-01": 478.685293131836, - "2029-01-01": 469.346323532111, - "2028-01-01": 460.133556224275, - "2027-01-01": 450.79458662455, - "2026-01-01": 439.953809751356, - "2025-01-01": 433.329661787299, - "2024-01-01": 423.925487670099, - "2023-01-01": 401, - "2015-01-01": 401 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 758.286313450615, - "2034-01-01": 743.602786941052, - "2033-01-01": 729.100538536546, - "2032-01-01": 714.960846342153, - "2031-01-01": 701.183710357872, - "2030-01-01": 687.587852478648, - "2029-01-01": 674.173272704479, - "2028-01-01": 660.939971035367, - "2027-01-01": 647.525391261199, - "2026-01-01": 631.953602036861, - "2025-01-01": 622.43861643263, - "2024-01-01": 608.930376304182, - "2023-01-01": 576, - "2015-01-01": 576 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 874.135611338903, - "2034-01-01": 857.208768279269, - "2033-01-01": 840.490898590741, - "2032-01-01": 824.190975644426, - "2031-01-01": 808.308999440325, - "2030-01-01": 792.63599660733, - "2029-01-01": 777.171967145441, - "2028-01-01": 761.91691105466, - "2027-01-01": 746.452881592771, - "2026-01-01": 728.502069014715, - "2025-01-01": 717.533405054281, - "2024-01-01": 701.961406017321, - "2023-01-01": 664, - "2015-01-01": 664 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 971.5543391086, - "2034-01-01": 952.741070768223, - "2033-01-01": 934.16006499995, - "2032-01-01": 916.043584375883, - "2031-01-01": 898.391628896024, - "2030-01-01": 880.971935988267, - "2029-01-01": 863.784505652614, - "2028-01-01": 846.829337889064, - "2027-01-01": 829.641907553412, - "2026-01-01": 809.690552609728, - "2025-01-01": 797.499477304307, - "2024-01-01": 780.192044639733, - "2023-01-01": 738, - "2015-01-01": 738 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1058.44131252482, - "2034-01-01": 1037.94555677189, - "2033-01-01": 1017.7028350406, - "2032-01-01": 997.966181352588, - "2031-01-01": 978.735595707863, - "2030-01-01": 959.758044084779, - "2029-01-01": 941.033526483336, - "2028-01-01": 922.562042903534, - "2027-01-01": 903.837525302091, - "2026-01-01": 882.101902843118, - "2025-01-01": 868.820568770545, - "2024-01-01": 849.965316924587, - "2023-01-01": 804, - "2015-01-01": 804 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1134.79653158755, - "2034-01-01": 1112.82222629026, - "2033-01-01": 1091.11920871268, - "2032-01-01": 1069.95876657454, - "2031-01-01": 1049.34089987584, - "2030-01-01": 1028.99432089687, - "2029-01-01": 1008.91902963761, - "2028-01-01": 989.115026098067, - "2027-01-01": 969.039734838809, - "2026-01-01": 945.736119714886, - "2025-01-01": 931.496679452998, - "2024-01-01": 911.281222871883, - "2023-01-01": 862, - "2015-01-01": 862 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1205.88587347355, - "2034-01-01": 1182.53498756598, - "2033-01-01": 1159.47238420048, - "2032-01-01": 1136.98634591912, - "2031-01-01": 1115.07687272189, - "2030-01-01": 1093.45568206674, - "2029-01-01": 1072.12277395365, - "2028-01-01": 1051.07814838263, - "2027-01-01": 1029.74524026955, - "2026-01-01": 1004.98176990584, - "2025-01-01": 989.850299743557, - "2024-01-01": 968.368445650401, - "2023-01-01": 916, - "2015-01-01": 916 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1270.39286888862, - "2034-01-01": 1245.79286353839, - "2033-01-01": 1221.49656195793, - "2032-01-01": 1197.80766791697, - "2031-01-01": 1174.72618141553, - "2030-01-01": 1151.94839868385, - "2029-01-01": 1129.47431972191, - "2028-01-01": 1107.30394452974, - "2027-01-01": 1084.82986556781, - "2026-01-01": 1058.74171174578, - "2025-01-01": 1042.80080704425, - "2024-01-01": 1020.16981446794, - "2023-01-01": 965, - "2015-01-01": 965 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1332.26692571532, - "2034-01-01": 1306.46878538949, - "2033-01-01": 1280.98914062324, - "2032-01-01": 1256.14648697614, - "2031-01-01": 1231.94082444821, - "2030-01-01": 1208.05365747985, - "2029-01-01": 1184.48498607106, - "2028-01-01": 1161.23481022186, - "2027-01-01": 1137.66613881308, - "2026-01-01": 1110.30737024532, - "2025-01-01": 1093.59006914899, - "2024-01-01": 1069.8568417011, - "2023-01-01": 1012, - "2015-01-01": 1012 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1412.57155266061, - "2034-01-01": 1385.21838608984, - "2033-01-01": 1358.20291293353, - "2032-01-01": 1331.86282660613, - "2031-01-01": 1306.19812710763, - "2030-01-01": 1280.87112102359, - "2029-01-01": 1255.881808354, - "2028-01-01": 1231.23018909887, - "2027-01-01": 1206.24087642928, - "2026-01-01": 1177.23301212769, - "2025-01-01": 1159.50804762537, - "2024-01-01": 1134.34426002498, - "2023-01-01": 1073, - "2015-01-01": 1073 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1515.25615760704, - "2034-01-01": 1485.91459682144, - "2033-01-01": 1456.93527752702, - "2032-01-01": 1428.68044121496, - "2031-01-01": 1401.15008788526, - "2030-01-01": 1373.98197604674, - "2029-01-01": 1347.1761056994, - "2028-01-01": 1320.73247684324, - "2027-01-01": 1293.9266064959, - "2026-01-01": 1262.81006240352, - "2025-01-01": 1243.79661026729, - "2024-01-01": 1216.80358181617, - "2023-01-01": 1151, - "2015-01-01": 1151 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1611.35841608256, - "2034-01-01": 1580.15592224974, - "2033-01-01": 1549.33864439016, - "2032-01-01": 1519.29179847707, - "2031-01-01": 1490.01538451048, - "2030-01-01": 1461.12418651713, - "2029-01-01": 1432.61820449702, - "2028-01-01": 1404.49743845016, - "2027-01-01": 1375.99145643005, - "2026-01-01": 1342.90140432833, - "2025-01-01": 1322.68205991934, - "2024-01-01": 1293.97704964639, - "2023-01-01": 1224, - "2015-01-01": 1224 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1698.24538949877, - "2034-01-01": 1665.3604082534, - "2033-01-01": 1632.88141443081, - "2032-01-01": 1601.21439545378, - "2031-01-01": 1570.35935132232, - "2030-01-01": 1539.91029461364, - "2029-01-01": 1509.86722532774, - "2028-01-01": 1480.23014346463, - "2027-01-01": 1450.18707417873, - "2026-01-01": 1415.31275456172, - "2025-01-01": 1394.00315138558, - "2024-01-01": 1363.75032193124, - "2023-01-01": 1290, - "2015-01-01": 1290 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1779.86648573825, - "2034-01-01": 1745.40098601441, - "2033-01-01": 1711.36098628717, - "2032-01-01": 1678.17198655311, - "2031-01-01": 1645.83398681223, - "2030-01-01": 1613.92148706794, - "2029-01-01": 1582.43448732024, - "2028-01-01": 1551.37298756913, - "2027-01-01": 1519.88598782143, - "2026-01-01": 1483.3355381143, - "2025-01-01": 1461.00175245992, - "2024-01-01": 1429.29491104732, - "2023-01-01": 1352, - "2015-01-01": 1352 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1865.43698986028, - "2034-01-01": 1829.31449495742, - "2033-01-01": 1793.63795678175, - "2032-01-01": 1758.85333206047, - "2031-01-01": 1724.96062079358, - "2030-01-01": 1691.5138662539, - "2029-01-01": 1658.5130684414, - "2028-01-01": 1625.9582273561, - "2027-01-01": 1592.95742954361, - "2026-01-01": 1554.64974667749, - "2025-01-01": 1531.24222132819, - "2024-01-01": 1498.01101253998, - "2023-01-01": 1417, - "2015-01-01": 1417 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1954.95690186487, - "2034-01-01": 1917.1009350824, - "2033-01-01": 1879.71232591453, - "2032-01-01": 1843.25843197586, - "2031-01-01": 1807.73925326639, - "2030-01-01": 1772.68743217151, - "2029-01-01": 1738.10296869124, - "2028-01-01": 1703.98586282556, - "2027-01-01": 1669.40139934528, - "2026-01-01": 1629.25538025128, - "2025-01-01": 1604.72455799037, - "2024-01-01": 1569.89862640922, - "2023-01-01": 1485, - "2015-01-01": 1485 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2039.21093669271, - "2034-01-01": 1999.72346696474, - "2033-01-01": 1960.72349686304, - "2032-01-01": 1922.69852601388, - "2031-01-01": 1885.64855441726, - "2030-01-01": 1849.08608244692, - "2029-01-01": 1813.01111010284, - "2028-01-01": 1777.42363738504, - "2027-01-01": 1741.34866504097, - "2026-01-01": 1699.47244714427, - "2025-01-01": 1673.88440426067, - "2024-01-01": 1637.55755710968, - "2023-01-01": 1549, - "2015-01-01": 1549 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2119.515563638, - "2034-01-01": 2078.47306766509, - "2033-01-01": 2037.93726917333, - "2032-01-01": 1998.41486564386, - "2031-01-01": 1959.90585707669, - "2030-01-01": 1921.90354599066, - "2029-01-01": 1884.40793238578, - "2028-01-01": 1847.41901626205, - "2027-01-01": 1809.92340265717, - "2026-01-01": 1766.39808902664, - "2025-01-01": 1739.80238273704, - "2024-01-01": 1702.04497543356, - "2023-01-01": 1610, - "2015-01-01": 1610 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2586.86216307371, - "2034-01-01": 2536.76992419994, - "2033-01-01": 2487.29610802832, - "2032-01-01": 2439.05913726099, - "2031-01-01": 2392.05901189795, - "2030-01-01": 2345.67730923705, - "2029-01-01": 2299.9140292783, - "2028-01-01": 2254.7691720217, - "2027-01-01": 2209.00589206295, - "2026-01-01": 2155.88338194867, - "2025-01-01": 2123.42340501756, - "2024-01-01": 2077.3406066627, - "2023-01-01": 1965, - "2015-01-01": 1965 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 588.461774500738, - "2034-01-01": 577.066746115713, - "2033-01-01": 565.812397093466, - "2032-01-01": 554.839406796775, - "2031-01-01": 544.14777522564, - "2030-01-01": 533.596823017284, - "2029-01-01": 523.186550171705, - "2028-01-01": 512.916956688905, - "2027-01-01": 502.506683843327, - "2026-01-01": 490.422326580689, - "2025-01-01": 483.038301294072, - "2024-01-01": 472.555344111058, - "2023-01-01": 447, - "2015-01-01": 447 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 845.173286866831, - "2034-01-01": 828.807272944715, - "2033-01-01": 812.643308577192, - "2032-01-01": 796.883443318858, - "2031-01-01": 781.527677169712, - "2030-01-01": 766.373960575159, - "2029-01-01": 751.422293535201, - "2028-01-01": 736.672676049837, - "2027-01-01": 721.721009009879, - "2026-01-01": 704.364952270251, - "2025-01-01": 693.759707898868, - "2024-01-01": 678.703648589036, - "2023-01-01": 642, - "2015-01-01": 642 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 974.187277696971, - "2034-01-01": 955.323024889546, - "2033-01-01": 936.691664092091, - "2032-01-01": 918.526087314571, - "2031-01-01": 900.826294556988, - "2030-01-01": 883.359393809374, - "2029-01-01": 866.125385071727, - "2028-01-01": 849.124268344048, - "2027-01-01": 831.890259606402, - "2026-01-01": 811.884835950134, - "2025-01-01": 799.660722500253, - "2024-01-01": 782.306386224123, - "2023-01-01": 740, - "2015-01-01": 740 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1083.45422911433, - "2034-01-01": 1062.47412092446, - "2033-01-01": 1041.75302641593, - "2032-01-01": 1021.54995927012, - "2031-01-01": 1001.86491948703, - "2030-01-01": 982.43889338529, - "2029-01-01": 963.271880964907, - "2028-01-01": 944.363882225881, - "2027-01-01": 925.196869805498, - "2026-01-01": 902.947594576973, - "2025-01-01": 889.352398132038, - "2024-01-01": 870.051561976288, - "2023-01-01": 823, - "2015-01-01": 823 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1179.55648758985, - "2034-01-01": 1156.71544635275, - "2033-01-01": 1134.15639327907, - "2032-01-01": 1112.16131653224, - "2031-01-01": 1090.73021611225, - "2030-01-01": 1069.58110385567, - "2029-01-01": 1048.71397976252, - "2028-01-01": 1028.12884383279, - "2027-01-01": 1007.26171973964, - "2026-01-01": 983.038936501784, - "2025-01-01": 968.23784778409, - "2024-01-01": 947.225029806505, - "2023-01-01": 896, - "2015-01-01": 896 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1265.12699171188, - "2034-01-01": 1240.62895529575, - "2033-01-01": 1216.43336377365, - "2032-01-01": 1192.8426620396, - "2031-01-01": 1169.8568500936, - "2030-01-01": 1147.17348304163, - "2029-01-01": 1124.79256088369, - "2028-01-01": 1102.71408361977, - "2027-01-01": 1080.33316146183, - "2026-01-01": 1054.35314506497, - "2025-01-01": 1038.47831665236, - "2024-01-01": 1015.94113129916, - "2023-01-01": 961, - "2015-01-01": 961 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1344.11514936298, - "2034-01-01": 1318.08757893544, - "2033-01-01": 1292.38133653787, - "2032-01-01": 1267.31775020024, - "2031-01-01": 1242.89681992255, - "2030-01-01": 1218.79721767482, - "2029-01-01": 1195.01894345707, - "2028-01-01": 1171.56199726929, - "2027-01-01": 1147.78372305154, - "2026-01-01": 1120.18164527714, - "2025-01-01": 1103.31567253075, - "2024-01-01": 1079.37137883085, - "2023-01-01": 1021, - "2015-01-01": 1021 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1416.52096054316, - "2034-01-01": 1389.09131727183, - "2033-01-01": 1362.00031157174, - "2032-01-01": 1335.58658101416, - "2031-01-01": 1309.85012559908, - "2030-01-01": 1284.45230775525, - "2029-01-01": 1259.39312748267, - "2028-01-01": 1234.67258478135, - "2027-01-01": 1209.61340450877, - "2026-01-01": 1180.5244371383, - "2025-01-01": 1162.74991541929, - "2024-01-01": 1137.51577240156, - "2023-01-01": 1076, - "2015-01-01": 1076 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1483.6608945466, - "2034-01-01": 1454.93114736557, - "2033-01-01": 1426.55608842133, - "2032-01-01": 1398.89040595071, - "2031-01-01": 1371.93409995368, - "2030-01-01": 1345.33248219347, - "2029-01-01": 1319.08555267005, - "2028-01-01": 1293.19331138344, - "2027-01-01": 1266.94638186002, - "2026-01-01": 1236.47866231865, - "2025-01-01": 1217.86166791593, - "2024-01-01": 1191.43148280349, - "2023-01-01": 1127, - "2015-01-01": 1127 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1573.18080655119, - "2034-01-01": 1542.71758749055, - "2033-01-01": 1512.63045755412, - "2032-01-01": 1483.2955058661, - "2031-01-01": 1454.71273242649, - "2030-01-01": 1426.50604811108, - "2029-01-01": 1398.67545291988, - "2028-01-01": 1371.22094685289, - "2027-01-01": 1343.39035166169, - "2026-01-01": 1311.08429589245, - "2025-01-01": 1291.34400457811, - "2024-01-01": 1263.31909667274, - "2023-01-01": 1195, - "2015-01-01": 1195 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1689.03010443948, - "2034-01-01": 1656.32356882877, - "2033-01-01": 1624.02081760831, - "2032-01-01": 1592.52563516837, - "2031-01-01": 1561.83802150894, - "2030-01-01": 1531.55419223977, - "2029-01-01": 1501.67414736085, - "2028-01-01": 1472.19788687218, - "2027-01-01": 1442.31784199326, - "2026-01-01": 1407.6327628703, - "2025-01-01": 1386.43879319976, - "2024-01-01": 1356.35012638588, - "2023-01-01": 1283, - "2015-01-01": 1283 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1794.34764797428, - "2034-01-01": 1759.60173368169, - "2033-01-01": 1725.28478129395, - "2032-01-01": 1691.82575271589, - "2031-01-01": 1659.22464794753, - "2030-01-01": 1627.05250508402, - "2029-01-01": 1595.30932412536, - "2028-01-01": 1563.99510507154, - "2027-01-01": 1532.25192411287, - "2026-01-01": 1495.40409648653, - "2025-01-01": 1472.88860103763, - "2024-01-01": 1440.92378976146, - "2023-01-01": 1363, - "2015-01-01": 1363 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1891.76637574398, - "2034-01-01": 1855.13403617065, - "2033-01-01": 1818.95394770315, - "2032-01-01": 1783.67836144735, - "2031-01-01": 1749.30727740323, - "2030-01-01": 1715.38844446496, - "2029-01-01": 1681.92186263253, - "2028-01-01": 1648.90753190594, - "2027-01-01": 1615.44095007351, - "2026-01-01": 1576.59258008154, - "2025-01-01": 1552.85467328765, - "2024-01-01": 1519.15442838387, - "2023-01-01": 1437, - "2015-01-01": 1437 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1982.60275704275, - "2034-01-01": 1944.21145335629, - "2033-01-01": 1906.29411638201, - "2032-01-01": 1869.32471283209, - "2031-01-01": 1833.30324270652, - "2030-01-01": 1797.75573929313, - "2029-01-01": 1762.68220259192, - "2028-01-01": 1728.08263260289, - "2027-01-01": 1693.00909590168, - "2026-01-01": 1652.29535532554, - "2025-01-01": 1627.41763254781, - "2024-01-01": 1592.09921304531, - "2023-01-01": 1506, - "2015-01-01": 1506 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2077.38854622408, - "2034-01-01": 2037.16180172392, - "2033-01-01": 1997.43168369908, - "2032-01-01": 1958.69481862486, - "2031-01-01": 1920.95120650125, - "2030-01-01": 1883.70422085296, - "2029-01-01": 1846.95386167998, - "2028-01-01": 1810.70012898231, - "2027-01-01": 1773.94976980933, - "2026-01-01": 1731.28955558015, - "2025-01-01": 1705.22245960189, - "2024-01-01": 1668.21551008333, - "2023-01-01": 1578, - "2015-01-01": 1578 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2177.44021258215, - "2034-01-01": 2135.2760583342, - "2033-01-01": 2093.63244920043, - "2032-01-01": 2053.029930295, - "2031-01-01": 2013.46850161792, - "2030-01-01": 1974.42761805501, - "2029-01-01": 1935.90727960626, - "2028-01-01": 1897.9074862717, - "2027-01-01": 1859.38714782296, - "2026-01-01": 1814.67232251557, - "2025-01-01": 1787.34977704786, - "2024-01-01": 1748.56049029013, - "2023-01-01": 1654, - "2015-01-01": 1654 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2272.22600176347, - "2034-01-01": 2228.22640670183, - "2033-01-01": 2184.7700165175, - "2032-01-01": 2142.40003608777, - "2031-01-01": 2101.11646541265, - "2030-01-01": 2060.37609961484, - "2029-01-01": 2020.17893869432, - "2028-01-01": 1980.52498265112, - "2027-01-01": 1940.32782173061, - "2026-01-01": 1893.66652277018, - "2025-01-01": 1865.15460410194, - "2024-01-01": 1824.67678732816, - "2023-01-01": 1726, - "2015-01-01": 1726 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2361.74591376806, - "2034-01-01": 2316.01284682682, - "2033-01-01": 2270.84438565028, - "2032-01-01": 2226.80513600316, - "2031-01-01": 2183.89509788546, - "2030-01-01": 2141.54966553245, - "2029-01-01": 2099.76883894416, - "2028-01-01": 2058.55261812057, - "2027-01-01": 2016.77179153228, - "2026-01-01": 1968.27215634397, - "2025-01-01": 1938.63694076413, - "2024-01-01": 1896.5644011974, - "2023-01-01": 1794, - "2015-01-01": 1794 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2881.75128497117, - "2034-01-01": 2825.94878578813, - "2033-01-01": 2770.83520634809, - "2032-01-01": 2717.09946639405, - "2031-01-01": 2664.74156592601, - "2030-01-01": 2613.07258520097, - "2029-01-01": 2562.09252421893, - "2028-01-01": 2511.80138297989, - "2027-01-01": 2460.82132199786, - "2026-01-01": 2401.64311607411, - "2025-01-01": 2365.48286696359, - "2024-01-01": 2314.14686411433, - "2023-01-01": 2189, - "2015-01-01": 2189 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 627.955853326291, - "2034-01-01": 615.796057935559, - "2033-01-01": 603.786383475577, - "2032-01-01": 592.076950877095, - "2031-01-01": 580.667760140113, - "2030-01-01": 569.40869033388, - "2029-01-01": 558.299741458397, - "2028-01-01": 547.340913513664, - "2027-01-01": 536.231964638181, - "2026-01-01": 523.336576686775, - "2025-01-01": 515.456979233271, - "2024-01-01": 504.270467876901, - "2023-01-01": 477, - "2015-01-01": 477 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 900.464997222605, - "2034-01-01": 883.0283094925, - "2033-01-01": 865.806889512149, - "2032-01-01": 849.016005031306, - "2031-01-01": 832.655656049973, - "2030-01-01": 816.510574818394, - "2029-01-01": 800.580761336569, - "2028-01-01": 784.866215604499, - "2027-01-01": 768.936402122674, - "2026-01-01": 750.444902418772, - "2025-01-01": 739.145857013747, - "2024-01-01": 723.104821861216, - "2023-01-01": 684, - "2015-01-01": 684 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1037.37780381786, - "2034-01-01": 1017.2899238013, - "2033-01-01": 997.450042303469, - "2032-01-01": 978.106157843084, - "2031-01-01": 959.258270420144, - "2030-01-01": 940.658381515928, - "2029-01-01": 922.306491130433, - "2028-01-01": 904.202599263662, - "2027-01-01": 885.850708878169, - "2026-01-01": 864.547636119872, - "2025-01-01": 851.530607202972, - "2024-01-01": 833.050584249471, - "2023-01-01": 788, - "2015-01-01": 788 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1154.54357100033, - "2034-01-01": 1132.18688220018, - "2033-01-01": 1110.10620190373, - "2032-01-01": 1088.5775386147, - "2031-01-01": 1067.60089233308, - "2030-01-01": 1046.90025455516, - "2029-01-01": 1026.47562528095, - "2028-01-01": 1006.32700451045, - "2027-01-01": 985.902375236236, - "2026-01-01": 962.193244767929, - "2025-01-01": 947.706018422597, - "2024-01-01": 927.138784754805, - "2023-01-01": 877, - "2015-01-01": 877 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1255.91170665258, - "2034-01-01": 1231.59211587112, - "2033-01-01": 1207.57276695115, - "2032-01-01": 1184.15390175419, - "2031-01-01": 1161.33552028023, - "2030-01-01": 1138.81738066776, - "2029-01-01": 1116.59948291679, - "2028-01-01": 1094.68182702733, - "2027-01-01": 1072.46392927636, - "2026-01-01": 1046.67315337355, - "2025-01-01": 1030.91395846654, - "2024-01-01": 1008.5409357538, - "2023-01-01": 954, - "2015-01-01": 954 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1348.06455724554, - "2034-01-01": 1321.96051011743, - "2033-01-01": 1296.17873517608, - "2032-01-01": 1271.04150460827, - "2031-01-01": 1246.54881841399, - "2030-01-01": 1222.37840440648, - "2029-01-01": 1198.53026258574, - "2028-01-01": 1175.00439295176, - "2027-01-01": 1151.15625113102, - "2026-01-01": 1123.47307028775, - "2025-01-01": 1106.55754032467, - "2024-01-01": 1082.54289120743, - "2023-01-01": 1024, - "2015-01-01": 1024 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1432.31859207338, - "2034-01-01": 1404.58304199977, - "2033-01-01": 1377.18990612459, - "2032-01-01": 1350.48159864629, - "2031-01-01": 1324.45811956487, - "2030-01-01": 1298.77705468189, - "2029-01-01": 1273.43840399735, - "2028-01-01": 1248.44216751125, - "2027-01-01": 1223.10351682671, - "2026-01-01": 1193.69013718074, - "2025-01-01": 1175.71738659497, - "2024-01-01": 1150.2018219079, - "2023-01-01": 1088, - "2015-01-01": 1088 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1508.67381113612, - "2034-01-01": 1479.45971151814, - "2033-01-01": 1450.60627979667, - "2032-01-01": 1422.47418386824, - "2031-01-01": 1395.06342373285, - "2030-01-01": 1368.01333149398, - "2029-01-01": 1341.32390715162, - "2028-01-01": 1314.99515070578, - "2027-01-01": 1288.30572636343, - "2026-01-01": 1257.3243540525, - "2025-01-01": 1238.39349727742, - "2024-01-01": 1211.5177278552, - "2023-01-01": 1146, - "2015-01-01": 1146 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1581.0796223163, - "2034-01-01": 1550.46344985452, - "2033-01-01": 1520.22525483054, - "2032-01-01": 1490.74301468216, - "2031-01-01": 1462.01672940938, - "2030-01-01": 1433.6684215744, - "2029-01-01": 1405.69809117722, - "2028-01-01": 1378.10573821784, - "2027-01-01": 1350.13540782066, - "2026-01-01": 1317.66714591366, - "2025-01-01": 1297.82774016595, - "2024-01-01": 1269.66212142591, - "2023-01-01": 1201, - "2015-01-01": 1201 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1675.86541149763, - "2034-01-01": 1643.41379822215, - "2033-01-01": 1611.36282214761, - "2032-01-01": 1580.11312047493, - "2031-01-01": 1549.66469320412, - "2030-01-01": 1519.61690313423, - "2029-01-01": 1489.96975026528, - "2028-01-01": 1460.72323459726, - "2027-01-01": 1431.07608172831, - "2026-01-01": 1396.66134616827, - "2025-01-01": 1375.63256722003, - "2024-01-01": 1345.77841846393, - "2023-01-01": 1273, - "2015-01-01": 1273 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1798.29705585684, - "2034-01-01": 1763.47466486368, - "2033-01-01": 1729.08217993216, - "2032-01-01": 1695.54950712392, - "2031-01-01": 1662.87664643898, - "2030-01-01": 1630.63369181568, - "2029-01-01": 1598.82064325403, - "2028-01-01": 1567.43750075401, - "2027-01-01": 1535.62445219236, - "2026-01-01": 1498.69552149714, - "2025-01-01": 1476.13046883155, - "2024-01-01": 1444.09530213804, - "2023-01-01": 1366, - "2015-01-01": 1366 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1911.51341515676, - "2034-01-01": 1874.49869208057, - "2033-01-01": 1837.94094089421, - "2032-01-01": 1802.29713348751, - "2031-01-01": 1767.56726986047, - "2030-01-01": 1733.29437812326, - "2029-01-01": 1699.47845827587, - "2028-01-01": 1666.11951031832, - "2027-01-01": 1632.30359047094, - "2026-01-01": 1593.04970513459, - "2025-01-01": 1569.06401225725, - "2024-01-01": 1535.01199026679, - "2023-01-01": 1452, - "2015-01-01": 1452 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2015.51448939738, - "2034-01-01": 1976.48587987283, - "2033-01-01": 1937.93910503377, - "2032-01-01": 1900.35599956569, - "2031-01-01": 1863.73656346858, - "2030-01-01": 1827.59896205696, - "2029-01-01": 1791.94319533083, - "2028-01-01": 1756.76926329019, - "2027-01-01": 1721.11349656406, - "2026-01-01": 1679.72389708061, - "2025-01-01": 1654.43319749715, - "2024-01-01": 1618.52848285018, - "2023-01-01": 1531, - "2015-01-01": 1531 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2112.93321716708, - "2034-01-01": 2072.01818236179, - "2033-01-01": 2031.60827144298, - "2032-01-01": 1992.20860829714, - "2031-01-01": 1953.81919292428, - "2030-01-01": 1915.9349014379, - "2029-01-01": 1878.555733838, - "2028-01-01": 1841.68169012459, - "2027-01-01": 1804.3025225247, - "2026-01-01": 1760.91238067563, - "2025-01-01": 1734.39926974717, - "2024-01-01": 1696.75912147259, - "2023-01-01": 1605, - "2015-01-01": 1605 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2212.98488352515, - "2034-01-01": 2170.13243897206, - "2033-01-01": 2127.80903694433, - "2032-01-01": 2086.54371996729, - "2031-01-01": 2046.33648804094, - "2030-01-01": 2006.65829863994, - "2029-01-01": 1967.50915176429, - "2028-01-01": 1928.88904741398, - "2027-01-01": 1889.73990053833, - "2026-01-01": 1844.29514761105, - "2025-01-01": 1816.52658719314, - "2024-01-01": 1777.10410167939, - "2023-01-01": 1681, - "2015-01-01": 1681 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2319.61889635414, - "2034-01-01": 2274.70158088565, - "2033-01-01": 2230.33880017603, - "2032-01-01": 2187.08508898415, - "2031-01-01": 2144.94044731002, - "2030-01-01": 2103.35034039475, - "2029-01-01": 2062.31476823835, - "2028-01-01": 2021.83373084083, - "2027-01-01": 1980.79815868443, - "2026-01-01": 1933.16362289748, - "2025-01-01": 1904.05701762898, - "2024-01-01": 1862.73493584717, - "2023-01-01": 1762, - "2015-01-01": 1762 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2419.67056271221, - "2034-01-01": 2372.81583749593, - "2033-01-01": 2326.53956567738, - "2032-01-01": 2281.4202006543, - "2031-01-01": 2237.45774242668, - "2030-01-01": 2194.0737375968, - "2029-01-01": 2151.26818616464, - "2028-01-01": 2109.04108813022, - "2027-01-01": 2066.23553669806, - "2026-01-01": 2016.5463898329, - "2025-01-01": 1986.18433507495, - "2024-01-01": 1943.07991605397, - "2023-01-01": 1838, - "2015-01-01": 1838 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2515.77282118772, - "2034-01-01": 2467.05716292422, - "2033-01-01": 2418.94293254052, - "2032-01-01": 2372.03155791641, - "2031-01-01": 2326.3230390519, - "2030-01-01": 2281.21594806718, - "2029-01-01": 2236.71028496226, - "2028-01-01": 2192.80604973713, - "2027-01-01": 2148.30038663221, - "2026-01-01": 2096.63773175771, - "2025-01-01": 2065.06978472701, - "2024-01-01": 2020.25338388419, - "2023-01-01": 1911, - "2015-01-01": 1911 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3068.68992474546, - "2034-01-01": 3009.26752840207, - "2033-01-01": 2950.57874189009, - "2032-01-01": 2893.3571750409, - "2031-01-01": 2837.60282785451, - "2030-01-01": 2782.58209049953, - "2029-01-01": 2728.29496297594, - "2028-01-01": 2674.74144528375, - "2027-01-01": 2620.45431776017, - "2026-01-01": 2557.43723324292, - "2025-01-01": 2518.9312758758, - "2024-01-01": 2464.26511660599, - "2023-01-01": 2331, - "2015-01-01": 2331 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 656.918177798363, - "2034-01-01": 644.197553270113, - "2033-01-01": 631.633973489126, - "2032-01-01": 619.384483202664, - "2031-01-01": 607.449082410726, - "2030-01-01": 595.670726366051, - "2029-01-01": 584.049415068637, - "2028-01-01": 572.585148518487, - "2027-01-01": 560.963837221074, - "2026-01-01": 547.473693431239, - "2025-01-01": 539.230676388684, - "2024-01-01": 527.528225305185, - "2023-01-01": 499, - "2015-01-01": 499 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 941.275545342343, - "2034-01-01": 923.048598373008, - "2033-01-01": 905.046675440331, - "2032-01-01": 887.494800580971, - "2031-01-01": 870.392973794928, - "2030-01-01": 853.516171045544, - "2029-01-01": 836.864392332817, - "2028-01-01": 820.437637656749, - "2027-01-01": 803.785858944023, - "2026-01-01": 784.456294195062, - "2025-01-01": 772.64515755092, - "2024-01-01": 755.877116419254, - "2023-01-01": 715, - "2015-01-01": 715 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1086.0871677027, - "2034-01-01": 1065.05607504578, - "2033-01-01": 1044.28462550807, - "2032-01-01": 1024.03246220881, - "2031-01-01": 1004.29958514799, - "2030-01-01": 984.826351206396, - "2029-01-01": 965.61276038402, - "2028-01-01": 946.658812680865, - "2027-01-01": 927.445221858489, - "2026-01-01": 905.141877917379, - "2025-01-01": 891.513643327985, - "2024-01-01": 872.165903560677, - "2023-01-01": 825, - "2015-01-01": 825 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1207.20234276773, - "2034-01-01": 1183.82596462664, - "2033-01-01": 1160.73818374655, - "2032-01-01": 1138.22759738846, - "2031-01-01": 1116.29420555238, - "2030-01-01": 1094.64941097729, - "2029-01-01": 1073.29321366321, - "2028-01-01": 1052.22561361012, - "2027-01-01": 1030.86941629604, - "2026-01-01": 1006.07891157604, - "2025-01-01": 990.93092234153, - "2024-01-01": 969.425616442595, - "2023-01-01": 917, - "2015-01-01": 917 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1313.83635559673, - "2034-01-01": 1288.39510654023, - "2033-01-01": 1263.26794697825, - "2032-01-01": 1238.76896640533, - "2031-01-01": 1214.89816482145, - "2030-01-01": 1191.3414527321, - "2029-01-01": 1168.09883013727, - "2028-01-01": 1145.17029703697, - "2027-01-01": 1121.92767444215, - "2026-01-01": 1094.94738686248, - "2025-01-01": 1078.46135277737, - "2024-01-01": 1055.05645061037, - "2023-01-01": 998, - "2015-01-01": 998 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1409.93861407224, - "2034-01-01": 1382.63643196852, - "2033-01-01": 1355.67131384139, - "2032-01-01": 1329.38032366744, - "2031-01-01": 1303.76346144667, - "2030-01-01": 1278.48366320249, - "2029-01-01": 1253.54092893489, - "2028-01-01": 1228.93525864389, - "2027-01-01": 1203.99252437629, - "2026-01-01": 1175.03872878729, - "2025-01-01": 1157.34680242942, - "2024-01-01": 1132.22991844059, - "2023-01-01": 1071, - "2015-01-01": 1071 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1498.14205678264, - "2034-01-01": 1469.13189503284, - "2033-01-01": 1440.47988342811, - "2032-01-01": 1412.54417211349, - "2031-01-01": 1385.32476108899, - "2030-01-01": 1358.46350020955, - "2029-01-01": 1331.96038947517, - "2028-01-01": 1305.81542888585, - "2027-01-01": 1279.31231815147, - "2026-01-01": 1248.54722069088, - "2025-01-01": 1229.74851649363, - "2024-01-01": 1203.06036151764, - "2023-01-01": 1138, - "2015-01-01": 1138 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1578.44668372793, - "2034-01-01": 1547.8814957332, - "2033-01-01": 1517.6936557384, - "2032-01-01": 1488.26051174347, - "2031-01-01": 1459.58206374842, - "2030-01-01": 1431.2809637533, - "2029-01-01": 1403.35721175811, - "2028-01-01": 1375.81080776286, - "2027-01-01": 1347.88705576767, - "2026-01-01": 1315.47286257326, - "2025-01-01": 1295.66649497, - "2024-01-01": 1267.54777984152, - "2023-01-01": 1199, - "2015-01-01": 1199 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1653.48543349648, - "2034-01-01": 1621.46718819091, - "2033-01-01": 1589.84422986441, - "2032-01-01": 1559.01184549608, - "2031-01-01": 1528.97003508592, - "2030-01-01": 1499.32351165483, - "2029-01-01": 1470.07227520282, - "2028-01-01": 1441.2163257299, - "2027-01-01": 1411.96508927789, - "2026-01-01": 1378.00993777482, - "2025-01-01": 1357.26198305448, - "2024-01-01": 1327.80651499662, - "2023-01-01": 1256, - "2015-01-01": 1256 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1753.53709985455, - "2034-01-01": 1719.58144480118, - "2033-01-01": 1686.04499536576, - "2032-01-01": 1653.34695716623, - "2031-01-01": 1621.48733020258, - "2030-01-01": 1590.04690885687, - "2029-01-01": 1559.02569312911, - "2028-01-01": 1528.42368301929, - "2027-01-01": 1497.40246729152, - "2026-01-01": 1461.39270471024, - "2025-01-01": 1439.38930050046, - "2024-01-01": 1408.15149520342, - "2023-01-01": 1332, - "2015-01-01": 1332 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1881.2346213905, - "2034-01-01": 1844.80621968535, - "2033-01-01": 1808.82755133459, - "2032-01-01": 1773.7483496926, - "2031-01-01": 1739.56861475937, - "2030-01-01": 1705.83861318053, - "2029-01-01": 1672.55834495608, - "2028-01-01": 1639.72781008601, - "2027-01-01": 1606.44754186155, - "2026-01-01": 1567.81544671992, - "2025-01-01": 1544.20969250387, - "2024-01-01": 1510.69706204631, - "2023-01-01": 1429, - "2015-01-01": 1429 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1999.71685786716, - "2034-01-01": 1960.99415514489, - "2033-01-01": 1922.74951048093, - "2032-01-01": 1885.46098193356, - "2031-01-01": 1849.12856950279, - "2030-01-01": 1813.27421513032, - "2029-01-01": 1777.89791881615, - "2028-01-01": 1742.99968056028, - "2027-01-01": 1707.62338424611, - "2026-01-01": 1666.55819703818, - "2025-01-01": 1641.46572632147, - "2024-01-01": 1605.84243334384, - "2023-01-01": 1519, - "2015-01-01": 1519 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2107.66733999034, - "2034-01-01": 2066.85427411914, - "2033-01-01": 2026.5450732587, - "2032-01-01": 1987.24360241977, - "2031-01-01": 1948.94986160235, - "2030-01-01": 1911.15998579569, - "2029-01-01": 1873.87397499978, - "2028-01-01": 1837.09182921462, - "2027-01-01": 1799.80581841872, - "2026-01-01": 1756.52381399482, - "2025-01-01": 1730.07677935528, - "2024-01-01": 1692.53043830381, - "2023-01-01": 1601, - "2015-01-01": 1601 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2209.03547564259, - "2034-01-01": 2166.25950779008, - "2033-01-01": 2124.01163830612, - "2032-01-01": 2082.81996555926, - "2031-01-01": 2042.6844895495, - "2030-01-01": 2003.07711190828, - "2029-01-01": 1963.99783263562, - "2028-01-01": 1925.4466517315, - "2027-01-01": 1886.36737245884, - "2026-01-01": 1841.00372260044, - "2025-01-01": 1813.28471939922, - "2024-01-01": 1773.93258930281, - "2023-01-01": 1678, - "2015-01-01": 1678 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2314.3530191774, - "2034-01-01": 2269.537672643, - "2033-01-01": 2225.27560199175, - "2032-01-01": 2182.12008310678, - "2031-01-01": 2140.07111598809, - "2030-01-01": 2098.57542475254, - "2029-01-01": 2057.63300940013, - "2028-01-01": 2017.24386993086, - "2027-01-01": 1976.30145457845, - "2026-01-01": 1928.77505621667, - "2025-01-01": 1899.73452723709, - "2024-01-01": 1858.50625267839, - "2023-01-01": 1758, - "2015-01-01": 1758 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2426.25290918313, - "2034-01-01": 2379.27072279924, - "2033-01-01": 2332.86856340773, - "2032-01-01": 2287.62645800102, - "2031-01-01": 2243.54440657909, - "2030-01-01": 2200.04238214956, - "2029-01-01": 2157.12038471242, - "2028-01-01": 2114.77841426768, - "2027-01-01": 2071.85641683054, - "2026-01-01": 2022.03209818391, - "2025-01-01": 1991.58744806482, - "2024-01-01": 1948.36577001494, - "2023-01-01": 1843, - "2015-01-01": 1843 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2531.57045271794, - "2034-01-01": 2482.54888765216, - "2033-01-01": 2434.13252709337, - "2032-01-01": 2386.92657554854, - "2031-01-01": 2340.93103301769, - "2030-01-01": 2295.54069499382, - "2029-01-01": 2250.75556147693, - "2028-01-01": 2206.57563246703, - "2027-01-01": 2161.79049895015, - "2026-01-01": 2109.80343180015, - "2025-01-01": 2078.03725590269, - "2024-01-01": 2032.93943339052, - "2023-01-01": 1923, - "2015-01-01": 1923 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2630.30564978182, - "2034-01-01": 2579.37216720178, - "2033-01-01": 2529.06749304864, - "2032-01-01": 2480.02043574934, - "2031-01-01": 2432.23099530387, - "2030-01-01": 2385.07036328531, - "2029-01-01": 2338.53853969366, - "2028-01-01": 2292.63552452893, - "2027-01-01": 2246.10370093729, - "2026-01-01": 2192.08905706536, - "2025-01-01": 2159.08395075068, - "2024-01-01": 2112.22724280513, - "2023-01-01": 1998, - "2015-01-01": 1998 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3209.55213922326, - "2034-01-01": 3147.40207389286, - "2033-01-01": 3086.01929331962, - "2032-01-01": 3026.17108226071, - "2031-01-01": 2967.85744071613, - "2030-01-01": 2910.31108392872, - "2029-01-01": 2853.53201189847, - "2028-01-01": 2797.52022462539, - "2027-01-01": 2740.74115259515, - "2026-01-01": 2674.83139195463, - "2025-01-01": 2634.55789385894, - "2024-01-01": 2577.38239137083, - "2023-01-01": 2438, - "2015-01-01": 2438 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 680.614625093694, - "2034-01-01": 667.435140362021, - "2033-01-01": 654.418365318393, - "2032-01-01": 641.727009650856, - "2031-01-01": 629.361073359409, - "2030-01-01": 617.157846756008, - "2029-01-01": 605.117329840652, - "2028-01-01": 593.239522613342, - "2027-01-01": 581.199005697986, - "2026-01-01": 567.222243494891, - "2025-01-01": 558.681883152204, - "2024-01-01": 546.557299564691, - "2023-01-01": 517, - "2015-01-01": 517 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 975.503746991156, - "2034-01-01": 956.614001950208, - "2033-01-01": 937.957463638161, - "2032-01-01": 919.767338783915, - "2031-01-01": 902.043627387471, - "2030-01-01": 884.553122719927, - "2029-01-01": 867.295824781283, - "2028-01-01": 850.27173357154, - "2027-01-01": 833.014435632897, - "2026-01-01": 812.981977620337, - "2025-01-01": 800.741345098227, - "2024-01-01": 783.363557016318, - "2023-01-01": 741, - "2015-01-01": 741 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1124.26477723407, - "2034-01-01": 1102.49440980496, - "2033-01-01": 1080.99281234412, - "2032-01-01": 1060.02875481979, - "2031-01-01": 1039.60223723198, - "2030-01-01": 1019.44448961244, - "2029-01-01": 999.555511961155, - "2028-01-01": 979.935304278132, - "2027-01-01": 960.046326626848, - "2026-01-01": 936.958986353263, - "2025-01-01": 922.851698669211, - "2024-01-01": 902.823856534325, - "2023-01-01": 854, - "2015-01-01": 854 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1250.64582947584, - "2034-01-01": 1226.42820762847, - "2033-01-01": 1202.50956876687, - "2032-01-01": 1179.18889587681, - "2031-01-01": 1156.4661889583, - "2030-01-01": 1134.04246502555, - "2029-01-01": 1111.91772407857, - "2028-01-01": 1090.09196611736, - "2027-01-01": 1067.96722517038, - "2026-01-01": 1042.28458669274, - "2025-01-01": 1026.59146807465, - "2024-01-01": 1004.31225258502, - "2023-01-01": 950, - "2015-01-01": 950 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1361.22925018739, - "2034-01-01": 1334.87028072404, - "2033-01-01": 1308.83673063679, - "2032-01-01": 1283.45401930171, - "2031-01-01": 1258.72214671882, - "2030-01-01": 1234.31569351202, - "2029-01-01": 1210.2346596813, - "2028-01-01": 1186.47904522668, - "2027-01-01": 1162.39801139597, - "2026-01-01": 1134.44448698978, - "2025-01-01": 1117.36376630441, - "2024-01-01": 1093.11459912938, - "2023-01-01": 1034, - "2015-01-01": 1034 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1459.96444725127, - "2034-01-01": 1431.69356027366, - "2033-01-01": 1403.77169659207, - "2032-01-01": 1376.54787950251, - "2031-01-01": 1350.022109005, - "2030-01-01": 1323.84536180351, - "2029-01-01": 1298.01763789803, - "2028-01-01": 1272.53893728858, - "2027-01-01": 1246.71121338311, - "2026-01-01": 1216.730112255, - "2025-01-01": 1198.41046115241, - "2024-01-01": 1172.40240854399, - "2023-01-01": 1109, - "2015-01-01": 1109 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1550.80082855004, - "2034-01-01": 1520.77097745931, - "2033-01-01": 1491.11186527092, - "2032-01-01": 1462.19423088725, - "2031-01-01": 1434.01807430829, - "2030-01-01": 1406.21265663168, - "2029-01-01": 1378.77797785742, - "2028-01-01": 1351.71403798553, - "2027-01-01": 1324.27935921127, - "2026-01-01": 1292.432887499, - "2025-01-01": 1272.97342041257, - "2024-01-01": 1245.34719320543, - "2023-01-01": 1178, - "2015-01-01": 1178 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1635.05486337789, - "2034-01-01": 1603.39350934164, - "2033-01-01": 1572.12303621943, - "2032-01-01": 1541.63432492527, - "2031-01-01": 1511.92737545916, - "2030-01-01": 1482.61130690708, - "2029-01-01": 1453.68611926903, - "2028-01-01": 1425.15181254501, - "2027-01-01": 1396.22662490696, - "2026-01-01": 1362.64995439198, - "2025-01-01": 1342.13326668286, - "2024-01-01": 1313.00612390589, - "2023-01-01": 1242, - "2015-01-01": 1242 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1712.72655173481, - "2034-01-01": 1679.56115592068, - "2033-01-01": 1646.80520943758, - "2032-01-01": 1614.86816161656, - "2031-01-01": 1583.75001245762, - "2030-01-01": 1553.04131262972, - "2029-01-01": 1522.74206213286, - "2028-01-01": 1492.85226096704, - "2027-01-01": 1462.55301047017, - "2026-01-01": 1427.38131293395, - "2025-01-01": 1405.88999996328, - "2024-01-01": 1375.37920064538, - "2023-01-01": 1301, - "2015-01-01": 1301 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1815.41115668125, - "2034-01-01": 1780.25736665228, - "2033-01-01": 1745.53757403107, - "2032-01-01": 1711.6857762254, - "2031-01-01": 1678.70197323525, - "2030-01-01": 1646.15216765287, - "2029-01-01": 1614.03635947826, - "2028-01-01": 1582.35454871141, - "2027-01-01": 1550.2387405368, - "2026-01-01": 1512.95836320978, - "2025-01-01": 1490.1785626052, - "2024-01-01": 1457.83852243657, - "2023-01-01": 1379, - "2015-01-01": 1379 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1948.37455539394, - "2034-01-01": 1910.64604977909, - "2033-01-01": 1873.38332818418, - "2032-01-01": 1837.05217462914, - "2031-01-01": 1801.65258911398, - "2030-01-01": 1766.71878761875, - "2029-01-01": 1732.25077014345, - "2028-01-01": 1698.2485366881, - "2027-01-01": 1663.7805192128, - "2026-01-01": 1623.76967190027, - "2025-01-01": 1599.32144500051, - "2024-01-01": 1564.61277244825, - "2023-01-01": 1480, - "2015-01-01": 1480 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2070.80619975316, - "2034-01-01": 2030.70691642062, - "2033-01-01": 1991.10268596873, - "2032-01-01": 1952.48856127814, - "2031-01-01": 1914.86454234884, - "2030-01-01": 1877.7355763002, - "2029-01-01": 1841.1016631322, - "2028-01-01": 1804.96280284485, - "2027-01-01": 1768.32888967685, - "2026-01-01": 1725.80384722914, - "2025-01-01": 1699.81934661202, - "2024-01-01": 1662.92965612236, - "2023-01-01": 1573, - "2015-01-01": 1573 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2182.70608975889, - "2034-01-01": 2140.43996657685, - "2033-01-01": 2098.69564738471, - "2032-01-01": 2057.99493617238, - "2031-01-01": 2018.33783293985, - "2030-01-01": 1979.20253369722, - "2029-01-01": 1940.58903844449, - "2028-01-01": 1902.49734718167, - "2027-01-01": 1863.88385192894, - "2026-01-01": 1819.06088919638, - "2025-01-01": 1791.67226743976, - "2024-01-01": 1752.78917345891, - "2023-01-01": 1658, - "2015-01-01": 1658 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2288.0236332937, - "2034-01-01": 2243.71813142977, - "2033-01-01": 2199.95961107034, - "2032-01-01": 2157.2950537199, - "2031-01-01": 2115.72445937844, - "2030-01-01": 2074.70084654147, - "2029-01-01": 2034.224215209, - "2028-01-01": 1994.29456538102, - "2027-01-01": 1953.81793404855, - "2026-01-01": 1906.83222281261, - "2025-01-01": 1878.12207527762, - "2024-01-01": 1837.36283683449, - "2023-01-01": 1738, - "2015-01-01": 1738 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2395.97411541687, - "2034-01-01": 2349.57825040402, - "2033-01-01": 2303.75517384811, - "2032-01-01": 2259.07767420611, - "2031-01-01": 2215.545751478, - "2030-01-01": 2172.58661720684, - "2029-01-01": 2130.20027139263, - "2028-01-01": 2088.38671403536, - "2027-01-01": 2046.00036822115, - "2026-01-01": 1996.79783976925, - "2025-01-01": 1966.73312831143, - "2024-01-01": 1924.05084179446, - "2023-01-01": 1820, - "2015-01-01": 1820 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2511.82341330516, - "2034-01-01": 2463.18423174224, - "2033-01-01": 2415.14553390231, - "2032-01-01": 2368.30780350838, - "2031-01-01": 2322.67104056045, - "2030-01-01": 2277.63476133552, - "2029-01-01": 2233.19896583359, - "2028-01-01": 2189.36365405465, - "2027-01-01": 2144.92785855272, - "2026-01-01": 2093.3463067471, - "2025-01-01": 2061.82791693309, - "2024-01-01": 2017.0818715076, - "2023-01-01": 1908, - "2015-01-01": 1908 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2621.09036472252, - "2034-01-01": 2570.33532777714, - "2033-01-01": 2520.20689622615, - "2032-01-01": 2471.33167546393, - "2031-01-01": 2423.70966549049, - "2030-01-01": 2376.71426091144, - "2029-01-01": 2330.34546172677, - "2028-01-01": 2284.60326793649, - "2027-01-01": 2238.23446875182, - "2026-01-01": 2184.40906537394, - "2025-01-01": 2151.51959256487, - "2024-01-01": 2104.82704725977, - "2023-01-01": 1991, - "2015-01-01": 1991 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2723.77496966896, - "2034-01-01": 2671.03153850875, - "2033-01-01": 2618.93926081964, - "2032-01-01": 2568.14929007277, - "2031-01-01": 2518.66162626812, - "2030-01-01": 2469.82511593459, - "2029-01-01": 2421.63975907217, - "2028-01-01": 2374.10555568086, - "2027-01-01": 2325.92019881844, - "2026-01-01": 2269.98611564977, - "2025-01-01": 2235.80815520679, - "2024-01-01": 2187.28636905096, - "2023-01-01": 2069, - "2015-01-01": 2069 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3322.76849852318, - "2034-01-01": 3258.42610110975, - "2033-01-01": 3194.87805428167, - "2032-01-01": 3132.91870862429, - "2031-01-01": 3072.54806413762, - "2030-01-01": 3012.9717702363, - "2029-01-01": 2954.18982692032, - "2028-01-01": 2896.2022341897, - "2027-01-01": 2837.42029087373, - "2026-01-01": 2769.18557559208, - "2025-01-01": 2727.49143728465, - "2024-01-01": 2668.29907949958, - "2023-01-01": 2524, - "2015-01-01": 2524 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 712.209888154137, - "2034-01-01": 698.418589817898, - "2033-01-01": 684.797554424082, - "2032-01-01": 671.517044915112, - "2031-01-01": 658.577061290987, - "2030-01-01": 645.807340609285, - "2029-01-01": 633.207882870006, - "2028-01-01": 620.778688073149, - "2027-01-01": 608.179230333869, - "2026-01-01": 593.55364357976, - "2025-01-01": 584.616825503563, - "2024-01-01": 571.929398577365, - "2023-01-01": 541, - "2015-01-01": 541 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1021.58017228763, - "2034-01-01": 1001.79819907336, - "2033-01-01": 982.260447750625, - "2032-01-01": 963.211140210956, - "2031-01-01": 944.650276454355, - "2030-01-01": 926.333634589289, - "2029-01-01": 908.261214615757, - "2028-01-01": 890.433016533759, - "2027-01-01": 872.360596560227, - "2026-01-01": 851.381936077438, - "2025-01-01": 838.563136027292, - "2024-01-01": 820.364534743134, - "2023-01-01": 776, - "2015-01-01": 776 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1176.92354900148, - "2034-01-01": 1154.13349223143, - "2033-01-01": 1131.62479418693, - "2032-01-01": 1109.67881359355, - "2031-01-01": 1088.29555045128, - "2030-01-01": 1067.19364603457, - "2029-01-01": 1046.37310034341, - "2028-01-01": 1025.83391337781, - "2027-01-01": 1005.01336768665, - "2026-01-01": 980.844653161378, - "2025-01-01": 966.076602588144, - "2024-01-01": 945.110688222116, - "2023-01-01": 894, - "2015-01-01": 894 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1308.57047841998, - "2034-01-01": 1283.23119829758, - "2033-01-01": 1258.20474879397, - "2032-01-01": 1233.80396052795, - "2031-01-01": 1210.02883349952, - "2030-01-01": 1186.56653708989, - "2029-01-01": 1163.41707129905, - "2028-01-01": 1140.58043612701, - "2027-01-01": 1117.43097033617, - "2026-01-01": 1090.55882018167, - "2025-01-01": 1074.13886238548, - "2024-01-01": 1050.82776744159, - "2023-01-01": 994, - "2015-01-01": 994 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1424.41977630827, - "2034-01-01": 1396.8371796358, - "2033-01-01": 1369.59510884816, - "2032-01-01": 1343.03408983022, - "2031-01-01": 1317.15412258198, - "2030-01-01": 1291.61468121857, - "2029-01-01": 1266.41576574001, - "2028-01-01": 1241.5573761463, - "2027-01-01": 1216.35846066774, - "2026-01-01": 1187.10728715952, - "2025-01-01": 1169.23365100713, - "2024-01-01": 1143.85879715473, - "2023-01-01": 1082, - "2015-01-01": 1082 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1528.4208505489, - "2034-01-01": 1498.82436742806, - "2033-01-01": 1469.59327298773, - "2032-01-01": 1441.0929559084, - "2031-01-01": 1413.32341619009, - "2030-01-01": 1385.91926515227, - "2029-01-01": 1358.88050279497, - "2028-01-01": 1332.20712911816, - "2027-01-01": 1305.16836676086, - "2026-01-01": 1273.78147910555, - "2025-01-01": 1254.60283624702, - "2024-01-01": 1227.37528973812, - "2023-01-01": 1161, - "2015-01-01": 1161 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1623.20663973022, - "2034-01-01": 1591.77471579569, - "2033-01-01": 1560.73084030479, - "2032-01-01": 1530.46306170117, - "2031-01-01": 1500.97137998482, - "2030-01-01": 1471.86774671211, - "2029-01-01": 1443.15216188303, - "2028-01-01": 1414.82462549758, - "2027-01-01": 1386.1090406685, - "2026-01-01": 1352.77567936016, - "2025-01-01": 1332.4076633011, - "2024-01-01": 1303.49158677614, - "2023-01-01": 1233, - "2015-01-01": 1233 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1711.41008244062, - "2034-01-01": 1678.27017886001, - "2033-01-01": 1645.53940989151, - "2032-01-01": 1613.62691014722, - "2031-01-01": 1582.53267962714, - "2030-01-01": 1551.84758371917, - "2029-01-01": 1521.5716224233, - "2028-01-01": 1491.70479573954, - "2027-01-01": 1461.42883444368, - "2026-01-01": 1426.28417126375, - "2025-01-01": 1404.80937736531, - "2024-01-01": 1374.32202985319, - "2023-01-01": 1300, - "2015-01-01": 1300 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1793.0311786801, - "2034-01-01": 1758.31075662103, - "2033-01-01": 1724.01898174787, - "2032-01-01": 1690.58450124655, - "2031-01-01": 1658.00731511705, - "2030-01-01": 1625.85877617347, - "2029-01-01": 1594.1388844158, - "2028-01-01": 1562.84763984405, - "2027-01-01": 1531.12774808638, - "2026-01-01": 1494.30695481633, - "2025-01-01": 1471.80797843966, - "2024-01-01": 1439.86661896926, - "2023-01-01": 1362, - "2015-01-01": 1362 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1899.66519150909, - "2034-01-01": 1862.87989853462, - "2033-01-01": 1826.54874497958, - "2032-01-01": 1791.12587026341, - "2031-01-01": 1756.61127438613, - "2030-01-01": 1722.55081792828, - "2029-01-01": 1688.94450088987, - "2028-01-01": 1655.79232327089, - "2027-01-01": 1622.18600623248, - "2026-01-01": 1583.17543010276, - "2025-01-01": 1559.33840887549, - "2024-01-01": 1525.49745313704, - "2023-01-01": 1443, - "2015-01-01": 1443 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2039.21093669271, - "2034-01-01": 1999.72346696474, - "2033-01-01": 1960.72349686304, - "2032-01-01": 1922.69852601388, - "2031-01-01": 1885.64855441726, - "2030-01-01": 1849.08608244692, - "2029-01-01": 1813.01111010284, - "2028-01-01": 1777.42363738504, - "2027-01-01": 1741.34866504097, - "2026-01-01": 1699.47244714427, - "2025-01-01": 1673.88440426067, - "2024-01-01": 1637.55755710968, - "2023-01-01": 1549, - "2015-01-01": 1549 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2166.90845822867, - "2034-01-01": 2124.94824184891, - "2033-01-01": 2083.50605283187, - "2032-01-01": 2043.09991854025, - "2031-01-01": 2003.72983897406, - "2030-01-01": 1964.87778677058, - "2029-01-01": 1926.54376192981, - "2028-01-01": 1888.72776445176, - "2027-01-01": 1850.393739611, - "2026-01-01": 1805.89518915395, - "2025-01-01": 1778.70479626408, - "2024-01-01": 1740.10312395258, - "2023-01-01": 1646, - "2015-01-01": 1646 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2284.07422541114, - "2034-01-01": 2239.84520024779, - "2033-01-01": 2196.16221243213, - "2032-01-01": 2153.57129931187, - "2031-01-01": 2112.07246088699, - "2030-01-01": 2071.11965980982, - "2029-01-01": 2030.71289608033, - "2028-01-01": 1990.85216969855, - "2027-01-01": 1950.44540596906, - "2026-01-01": 1903.540797802, - "2025-01-01": 1874.8802074837, - "2024-01-01": 1834.19132445791, - "2023-01-01": 1735, - "2015-01-01": 1735 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2394.65764612269, - "2034-01-01": 2348.28727334336, - "2033-01-01": 2302.48937430204, - "2032-01-01": 2257.83642273676, - "2031-01-01": 2214.32841864752, - "2030-01-01": 2171.39288829628, - "2029-01-01": 2129.02983168307, - "2028-01-01": 2087.23924880787, - "2027-01-01": 2044.87619219466, - "2026-01-01": 1995.70069809905, - "2025-01-01": 1965.65250571346, - "2024-01-01": 1922.99367100227, - "2023-01-01": 1819, - "2015-01-01": 1819 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2509.19047471679, - "2034-01-01": 2460.60227762091, - "2033-01-01": 2412.61393481017, - "2032-01-01": 2365.82530056969, - "2031-01-01": 2320.23637489949, - "2030-01-01": 2275.24730351441, - "2029-01-01": 2230.85808641447, - "2028-01-01": 2187.06872359967, - "2027-01-01": 2142.67950649973, - "2026-01-01": 2091.1520234067, - "2025-01-01": 2059.66667173714, - "2024-01-01": 2014.96752992321, - "2023-01-01": 1906, - "2015-01-01": 1906 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2630.30564978182, - "2034-01-01": 2579.37216720178, - "2033-01-01": 2529.06749304864, - "2032-01-01": 2480.02043574934, - "2031-01-01": 2432.23099530387, - "2030-01-01": 2385.07036328531, - "2029-01-01": 2338.53853969366, - "2028-01-01": 2292.63552452893, - "2027-01-01": 2246.10370093729, - "2026-01-01": 2192.08905706536, - "2025-01-01": 2159.08395075068, - "2024-01-01": 2112.22724280513, - "2023-01-01": 1998, - "2015-01-01": 1998 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2743.52200908174, - "2034-01-01": 2690.39619441867, - "2033-01-01": 2637.9262540107, - "2032-01-01": 2586.76806211293, - "2031-01-01": 2536.92161872536, - "2030-01-01": 2487.73104959288, - "2029-01-01": 2439.19635471551, - "2028-01-01": 2391.31753409324, - "2027-01-01": 2342.78283921587, - "2026-01-01": 2286.44324070281, - "2025-01-01": 2252.01749417639, - "2024-01-01": 2203.14393093388, - "2023-01-01": 2084, - "2015-01-01": 2084 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2851.47249120492, - "2034-01-01": 2796.25631339292, - "2033-01-01": 2741.72181678847, - "2032-01-01": 2688.55068259914, - "2031-01-01": 2636.74291082491, - "2030-01-01": 2585.61682025825, - "2029-01-01": 2535.17241089914, - "2028-01-01": 2485.40968274758, - "2027-01-01": 2434.96527338847, - "2026-01-01": 2376.40885765945, - "2025-01-01": 2340.6285472102, - "2024-01-01": 2289.83193589385, - "2023-01-01": 2166, - "2015-01-01": 2166 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NM.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3478.11187523702, - "2034-01-01": 3410.76139426781, - "2033-01-01": 3344.24240071798, - "2032-01-01": 3279.38638200689, - "2031-01-01": 3216.19333813455, - "2030-01-01": 3153.83178168157, - "2029-01-01": 3092.30171264798, - "2028-01-01": 3031.60313103375, - "2027-01-01": 2970.07306200015, - "2026-01-01": 2898.64829267602, - "2025-01-01": 2855.0049038455, - "2024-01-01": 2793.04523297856, - "2023-01-01": 2642, - "2015-01-01": 2642 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY", - "description": null, - "label": "NY", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 656.918177798363, - "2034-01-01": 644.197553270113, - "2033-01-01": 631.633973489126, - "2032-01-01": 619.384483202664, - "2031-01-01": 607.449082410726, - "2030-01-01": 595.670726366051, - "2029-01-01": 584.049415068637, - "2028-01-01": 572.585148518487, - "2027-01-01": 560.963837221074, - "2026-01-01": 547.473693431239, - "2025-01-01": 539.230676388684, - "2024-01-01": 527.528225305185, - "2023-01-01": 499, - "2015-01-01": 499 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 941.275545342343, - "2034-01-01": 923.048598373008, - "2033-01-01": 905.046675440331, - "2032-01-01": 887.494800580971, - "2031-01-01": 870.392973794928, - "2030-01-01": 853.516171045544, - "2029-01-01": 836.864392332817, - "2028-01-01": 820.437637656749, - "2027-01-01": 803.785858944023, - "2026-01-01": 784.456294195062, - "2025-01-01": 772.64515755092, - "2024-01-01": 755.877116419254, - "2023-01-01": 715, - "2015-01-01": 715 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1086.0871677027, - "2034-01-01": 1065.05607504578, - "2033-01-01": 1044.28462550807, - "2032-01-01": 1024.03246220881, - "2031-01-01": 1004.29958514799, - "2030-01-01": 984.826351206396, - "2029-01-01": 965.61276038402, - "2028-01-01": 946.658812680865, - "2027-01-01": 927.445221858489, - "2026-01-01": 905.141877917379, - "2025-01-01": 891.513643327985, - "2024-01-01": 872.165903560677, - "2023-01-01": 825, - "2015-01-01": 825 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1207.20234276773, - "2034-01-01": 1183.82596462664, - "2033-01-01": 1160.73818374655, - "2032-01-01": 1138.22759738846, - "2031-01-01": 1116.29420555238, - "2030-01-01": 1094.64941097729, - "2029-01-01": 1073.29321366321, - "2028-01-01": 1052.22561361012, - "2027-01-01": 1030.86941629604, - "2026-01-01": 1006.07891157604, - "2025-01-01": 990.93092234153, - "2024-01-01": 969.425616442595, - "2023-01-01": 917, - "2015-01-01": 917 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1313.83635559673, - "2034-01-01": 1288.39510654023, - "2033-01-01": 1263.26794697825, - "2032-01-01": 1238.76896640533, - "2031-01-01": 1214.89816482145, - "2030-01-01": 1191.3414527321, - "2029-01-01": 1168.09883013727, - "2028-01-01": 1145.17029703697, - "2027-01-01": 1121.92767444215, - "2026-01-01": 1094.94738686248, - "2025-01-01": 1078.46135277737, - "2024-01-01": 1055.05645061037, - "2023-01-01": 998, - "2015-01-01": 998 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1409.93861407224, - "2034-01-01": 1382.63643196852, - "2033-01-01": 1355.67131384139, - "2032-01-01": 1329.38032366744, - "2031-01-01": 1303.76346144667, - "2030-01-01": 1278.48366320249, - "2029-01-01": 1253.54092893489, - "2028-01-01": 1228.93525864389, - "2027-01-01": 1203.99252437629, - "2026-01-01": 1175.03872878729, - "2025-01-01": 1157.34680242942, - "2024-01-01": 1132.22991844059, - "2023-01-01": 1071, - "2015-01-01": 1071 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1498.14205678264, - "2034-01-01": 1469.13189503284, - "2033-01-01": 1440.47988342811, - "2032-01-01": 1412.54417211349, - "2031-01-01": 1385.32476108899, - "2030-01-01": 1358.46350020955, - "2029-01-01": 1331.96038947517, - "2028-01-01": 1305.81542888585, - "2027-01-01": 1279.31231815147, - "2026-01-01": 1248.54722069088, - "2025-01-01": 1229.74851649363, - "2024-01-01": 1203.06036151764, - "2023-01-01": 1138, - "2015-01-01": 1138 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1578.44668372793, - "2034-01-01": 1547.8814957332, - "2033-01-01": 1517.6936557384, - "2032-01-01": 1488.26051174347, - "2031-01-01": 1459.58206374842, - "2030-01-01": 1431.2809637533, - "2029-01-01": 1403.35721175811, - "2028-01-01": 1375.81080776286, - "2027-01-01": 1347.88705576767, - "2026-01-01": 1315.47286257326, - "2025-01-01": 1295.66649497, - "2024-01-01": 1267.54777984152, - "2023-01-01": 1199, - "2015-01-01": 1199 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1653.48543349648, - "2034-01-01": 1621.46718819091, - "2033-01-01": 1589.84422986441, - "2032-01-01": 1559.01184549608, - "2031-01-01": 1528.97003508592, - "2030-01-01": 1499.32351165483, - "2029-01-01": 1470.07227520282, - "2028-01-01": 1441.2163257299, - "2027-01-01": 1411.96508927789, - "2026-01-01": 1378.00993777482, - "2025-01-01": 1357.26198305448, - "2024-01-01": 1327.80651499662, - "2023-01-01": 1256, - "2015-01-01": 1256 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1753.53709985455, - "2034-01-01": 1719.58144480118, - "2033-01-01": 1686.04499536576, - "2032-01-01": 1653.34695716623, - "2031-01-01": 1621.48733020258, - "2030-01-01": 1590.04690885687, - "2029-01-01": 1559.02569312911, - "2028-01-01": 1528.42368301929, - "2027-01-01": 1497.40246729152, - "2026-01-01": 1461.39270471024, - "2025-01-01": 1439.38930050046, - "2024-01-01": 1408.15149520342, - "2023-01-01": 1332, - "2015-01-01": 1332 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1881.2346213905, - "2034-01-01": 1844.80621968535, - "2033-01-01": 1808.82755133459, - "2032-01-01": 1773.7483496926, - "2031-01-01": 1739.56861475937, - "2030-01-01": 1705.83861318053, - "2029-01-01": 1672.55834495608, - "2028-01-01": 1639.72781008601, - "2027-01-01": 1606.44754186155, - "2026-01-01": 1567.81544671992, - "2025-01-01": 1544.20969250387, - "2024-01-01": 1510.69706204631, - "2023-01-01": 1429, - "2015-01-01": 1429 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1999.71685786716, - "2034-01-01": 1960.99415514489, - "2033-01-01": 1922.74951048093, - "2032-01-01": 1885.46098193356, - "2031-01-01": 1849.12856950279, - "2030-01-01": 1813.27421513032, - "2029-01-01": 1777.89791881615, - "2028-01-01": 1742.99968056028, - "2027-01-01": 1707.62338424611, - "2026-01-01": 1666.55819703818, - "2025-01-01": 1641.46572632147, - "2024-01-01": 1605.84243334384, - "2023-01-01": 1519, - "2015-01-01": 1519 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2107.66733999034, - "2034-01-01": 2066.85427411914, - "2033-01-01": 2026.5450732587, - "2032-01-01": 1987.24360241977, - "2031-01-01": 1948.94986160235, - "2030-01-01": 1911.15998579569, - "2029-01-01": 1873.87397499978, - "2028-01-01": 1837.09182921462, - "2027-01-01": 1799.80581841872, - "2026-01-01": 1756.52381399482, - "2025-01-01": 1730.07677935528, - "2024-01-01": 1692.53043830381, - "2023-01-01": 1601, - "2015-01-01": 1601 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2209.03547564259, - "2034-01-01": 2166.25950779008, - "2033-01-01": 2124.01163830612, - "2032-01-01": 2082.81996555926, - "2031-01-01": 2042.6844895495, - "2030-01-01": 2003.07711190828, - "2029-01-01": 1963.99783263562, - "2028-01-01": 1925.4466517315, - "2027-01-01": 1886.36737245884, - "2026-01-01": 1841.00372260044, - "2025-01-01": 1813.28471939922, - "2024-01-01": 1773.93258930281, - "2023-01-01": 1678, - "2015-01-01": 1678 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2314.3530191774, - "2034-01-01": 2269.537672643, - "2033-01-01": 2225.27560199175, - "2032-01-01": 2182.12008310678, - "2031-01-01": 2140.07111598809, - "2030-01-01": 2098.57542475254, - "2029-01-01": 2057.63300940013, - "2028-01-01": 2017.24386993086, - "2027-01-01": 1976.30145457845, - "2026-01-01": 1928.77505621667, - "2025-01-01": 1899.73452723709, - "2024-01-01": 1858.50625267839, - "2023-01-01": 1758, - "2015-01-01": 1758 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2426.25290918313, - "2034-01-01": 2379.27072279924, - "2033-01-01": 2332.86856340773, - "2032-01-01": 2287.62645800102, - "2031-01-01": 2243.54440657909, - "2030-01-01": 2200.04238214956, - "2029-01-01": 2157.12038471242, - "2028-01-01": 2114.77841426768, - "2027-01-01": 2071.85641683054, - "2026-01-01": 2022.03209818391, - "2025-01-01": 1991.58744806482, - "2024-01-01": 1948.36577001494, - "2023-01-01": 1843, - "2015-01-01": 1843 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2531.57045271794, - "2034-01-01": 2482.54888765216, - "2033-01-01": 2434.13252709337, - "2032-01-01": 2386.92657554854, - "2031-01-01": 2340.93103301769, - "2030-01-01": 2295.54069499382, - "2029-01-01": 2250.75556147693, - "2028-01-01": 2206.57563246703, - "2027-01-01": 2161.79049895015, - "2026-01-01": 2109.80343180015, - "2025-01-01": 2078.03725590269, - "2024-01-01": 2032.93943339052, - "2023-01-01": 1923, - "2015-01-01": 1923 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2630.30564978182, - "2034-01-01": 2579.37216720178, - "2033-01-01": 2529.06749304864, - "2032-01-01": 2480.02043574934, - "2031-01-01": 2432.23099530387, - "2030-01-01": 2385.07036328531, - "2029-01-01": 2338.53853969366, - "2028-01-01": 2292.63552452893, - "2027-01-01": 2246.10370093729, - "2026-01-01": 2192.08905706536, - "2025-01-01": 2159.08395075068, - "2024-01-01": 2112.22724280513, - "2023-01-01": 1998, - "2015-01-01": 1998 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3209.55213922326, - "2034-01-01": 3147.40207389286, - "2033-01-01": 3086.01929331962, - "2032-01-01": 3026.17108226071, - "2031-01-01": 2967.85744071613, - "2030-01-01": 2910.31108392872, - "2029-01-01": 2853.53201189847, - "2028-01-01": 2797.52022462539, - "2027-01-01": 2740.74115259515, - "2026-01-01": 2674.83139195463, - "2025-01-01": 2634.55789385894, - "2024-01-01": 2577.38239137083, - "2023-01-01": 2438, - "2015-01-01": 2438 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 680.614625093694, - "2034-01-01": 667.435140362021, - "2033-01-01": 654.418365318393, - "2032-01-01": 641.727009650856, - "2031-01-01": 629.361073359409, - "2030-01-01": 617.157846756008, - "2029-01-01": 605.117329840652, - "2028-01-01": 593.239522613342, - "2027-01-01": 581.199005697986, - "2026-01-01": 567.222243494891, - "2025-01-01": 558.681883152204, - "2024-01-01": 546.557299564691, - "2023-01-01": 517, - "2015-01-01": 517 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 975.503746991156, - "2034-01-01": 956.614001950208, - "2033-01-01": 937.957463638161, - "2032-01-01": 919.767338783915, - "2031-01-01": 902.043627387471, - "2030-01-01": 884.553122719927, - "2029-01-01": 867.295824781283, - "2028-01-01": 850.27173357154, - "2027-01-01": 833.014435632897, - "2026-01-01": 812.981977620337, - "2025-01-01": 800.741345098227, - "2024-01-01": 783.363557016318, - "2023-01-01": 741, - "2015-01-01": 741 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1124.26477723407, - "2034-01-01": 1102.49440980496, - "2033-01-01": 1080.99281234412, - "2032-01-01": 1060.02875481979, - "2031-01-01": 1039.60223723198, - "2030-01-01": 1019.44448961244, - "2029-01-01": 999.555511961155, - "2028-01-01": 979.935304278132, - "2027-01-01": 960.046326626848, - "2026-01-01": 936.958986353263, - "2025-01-01": 922.851698669211, - "2024-01-01": 902.823856534325, - "2023-01-01": 854, - "2015-01-01": 854 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1250.64582947584, - "2034-01-01": 1226.42820762847, - "2033-01-01": 1202.50956876687, - "2032-01-01": 1179.18889587681, - "2031-01-01": 1156.4661889583, - "2030-01-01": 1134.04246502555, - "2029-01-01": 1111.91772407857, - "2028-01-01": 1090.09196611736, - "2027-01-01": 1067.96722517038, - "2026-01-01": 1042.28458669274, - "2025-01-01": 1026.59146807465, - "2024-01-01": 1004.31225258502, - "2023-01-01": 950, - "2015-01-01": 950 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1361.22925018739, - "2034-01-01": 1334.87028072404, - "2033-01-01": 1308.83673063679, - "2032-01-01": 1283.45401930171, - "2031-01-01": 1258.72214671882, - "2030-01-01": 1234.31569351202, - "2029-01-01": 1210.2346596813, - "2028-01-01": 1186.47904522668, - "2027-01-01": 1162.39801139597, - "2026-01-01": 1134.44448698978, - "2025-01-01": 1117.36376630441, - "2024-01-01": 1093.11459912938, - "2023-01-01": 1034, - "2015-01-01": 1034 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1459.96444725127, - "2034-01-01": 1431.69356027366, - "2033-01-01": 1403.77169659207, - "2032-01-01": 1376.54787950251, - "2031-01-01": 1350.022109005, - "2030-01-01": 1323.84536180351, - "2029-01-01": 1298.01763789803, - "2028-01-01": 1272.53893728858, - "2027-01-01": 1246.71121338311, - "2026-01-01": 1216.730112255, - "2025-01-01": 1198.41046115241, - "2024-01-01": 1172.40240854399, - "2023-01-01": 1109, - "2015-01-01": 1109 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1550.80082855004, - "2034-01-01": 1520.77097745931, - "2033-01-01": 1491.11186527092, - "2032-01-01": 1462.19423088725, - "2031-01-01": 1434.01807430829, - "2030-01-01": 1406.21265663168, - "2029-01-01": 1378.77797785742, - "2028-01-01": 1351.71403798553, - "2027-01-01": 1324.27935921127, - "2026-01-01": 1292.432887499, - "2025-01-01": 1272.97342041257, - "2024-01-01": 1245.34719320543, - "2023-01-01": 1178, - "2015-01-01": 1178 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1635.05486337789, - "2034-01-01": 1603.39350934164, - "2033-01-01": 1572.12303621943, - "2032-01-01": 1541.63432492527, - "2031-01-01": 1511.92737545916, - "2030-01-01": 1482.61130690708, - "2029-01-01": 1453.68611926903, - "2028-01-01": 1425.15181254501, - "2027-01-01": 1396.22662490696, - "2026-01-01": 1362.64995439198, - "2025-01-01": 1342.13326668286, - "2024-01-01": 1313.00612390589, - "2023-01-01": 1242, - "2015-01-01": 1242 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1712.72655173481, - "2034-01-01": 1679.56115592068, - "2033-01-01": 1646.80520943758, - "2032-01-01": 1614.86816161656, - "2031-01-01": 1583.75001245762, - "2030-01-01": 1553.04131262972, - "2029-01-01": 1522.74206213286, - "2028-01-01": 1492.85226096704, - "2027-01-01": 1462.55301047017, - "2026-01-01": 1427.38131293395, - "2025-01-01": 1405.88999996328, - "2024-01-01": 1375.37920064538, - "2023-01-01": 1301, - "2015-01-01": 1301 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1815.41115668125, - "2034-01-01": 1780.25736665228, - "2033-01-01": 1745.53757403107, - "2032-01-01": 1711.6857762254, - "2031-01-01": 1678.70197323525, - "2030-01-01": 1646.15216765287, - "2029-01-01": 1614.03635947826, - "2028-01-01": 1582.35454871141, - "2027-01-01": 1550.2387405368, - "2026-01-01": 1512.95836320978, - "2025-01-01": 1490.1785626052, - "2024-01-01": 1457.83852243657, - "2023-01-01": 1379, - "2015-01-01": 1379 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1948.37455539394, - "2034-01-01": 1910.64604977909, - "2033-01-01": 1873.38332818418, - "2032-01-01": 1837.05217462914, - "2031-01-01": 1801.65258911398, - "2030-01-01": 1766.71878761875, - "2029-01-01": 1732.25077014345, - "2028-01-01": 1698.2485366881, - "2027-01-01": 1663.7805192128, - "2026-01-01": 1623.76967190027, - "2025-01-01": 1599.32144500051, - "2024-01-01": 1564.61277244825, - "2023-01-01": 1480, - "2015-01-01": 1480 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2070.80619975316, - "2034-01-01": 2030.70691642062, - "2033-01-01": 1991.10268596873, - "2032-01-01": 1952.48856127814, - "2031-01-01": 1914.86454234884, - "2030-01-01": 1877.7355763002, - "2029-01-01": 1841.1016631322, - "2028-01-01": 1804.96280284485, - "2027-01-01": 1768.32888967685, - "2026-01-01": 1725.80384722914, - "2025-01-01": 1699.81934661202, - "2024-01-01": 1662.92965612236, - "2023-01-01": 1573, - "2015-01-01": 1573 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2182.70608975889, - "2034-01-01": 2140.43996657685, - "2033-01-01": 2098.69564738471, - "2032-01-01": 2057.99493617238, - "2031-01-01": 2018.33783293985, - "2030-01-01": 1979.20253369722, - "2029-01-01": 1940.58903844449, - "2028-01-01": 1902.49734718167, - "2027-01-01": 1863.88385192894, - "2026-01-01": 1819.06088919638, - "2025-01-01": 1791.67226743976, - "2024-01-01": 1752.78917345891, - "2023-01-01": 1658, - "2015-01-01": 1658 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2288.0236332937, - "2034-01-01": 2243.71813142977, - "2033-01-01": 2199.95961107034, - "2032-01-01": 2157.2950537199, - "2031-01-01": 2115.72445937844, - "2030-01-01": 2074.70084654147, - "2029-01-01": 2034.224215209, - "2028-01-01": 1994.29456538102, - "2027-01-01": 1953.81793404855, - "2026-01-01": 1906.83222281261, - "2025-01-01": 1878.12207527762, - "2024-01-01": 1837.36283683449, - "2023-01-01": 1738, - "2015-01-01": 1738 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2395.97411541687, - "2034-01-01": 2349.57825040402, - "2033-01-01": 2303.75517384811, - "2032-01-01": 2259.07767420611, - "2031-01-01": 2215.545751478, - "2030-01-01": 2172.58661720684, - "2029-01-01": 2130.20027139263, - "2028-01-01": 2088.38671403536, - "2027-01-01": 2046.00036822115, - "2026-01-01": 1996.79783976925, - "2025-01-01": 1966.73312831143, - "2024-01-01": 1924.05084179446, - "2023-01-01": 1820, - "2015-01-01": 1820 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2511.82341330516, - "2034-01-01": 2463.18423174224, - "2033-01-01": 2415.14553390231, - "2032-01-01": 2368.30780350838, - "2031-01-01": 2322.67104056045, - "2030-01-01": 2277.63476133552, - "2029-01-01": 2233.19896583359, - "2028-01-01": 2189.36365405465, - "2027-01-01": 2144.92785855272, - "2026-01-01": 2093.3463067471, - "2025-01-01": 2061.82791693309, - "2024-01-01": 2017.0818715076, - "2023-01-01": 1908, - "2015-01-01": 1908 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2621.09036472252, - "2034-01-01": 2570.33532777714, - "2033-01-01": 2520.20689622615, - "2032-01-01": 2471.33167546393, - "2031-01-01": 2423.70966549049, - "2030-01-01": 2376.71426091144, - "2029-01-01": 2330.34546172677, - "2028-01-01": 2284.60326793649, - "2027-01-01": 2238.23446875182, - "2026-01-01": 2184.40906537394, - "2025-01-01": 2151.51959256487, - "2024-01-01": 2104.82704725977, - "2023-01-01": 1991, - "2015-01-01": 1991 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2723.77496966896, - "2034-01-01": 2671.03153850875, - "2033-01-01": 2618.93926081964, - "2032-01-01": 2568.14929007277, - "2031-01-01": 2518.66162626812, - "2030-01-01": 2469.82511593459, - "2029-01-01": 2421.63975907217, - "2028-01-01": 2374.10555568086, - "2027-01-01": 2325.92019881844, - "2026-01-01": 2269.98611564977, - "2025-01-01": 2235.80815520679, - "2024-01-01": 2187.28636905096, - "2023-01-01": 2069, - "2015-01-01": 2069 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3322.76849852318, - "2034-01-01": 3258.42610110975, - "2033-01-01": 3194.87805428167, - "2032-01-01": 3132.91870862429, - "2031-01-01": 3072.54806413762, - "2030-01-01": 3012.9717702363, - "2029-01-01": 2954.18982692032, - "2028-01-01": 2896.2022341897, - "2027-01-01": 2837.42029087373, - "2026-01-01": 2769.18557559208, - "2025-01-01": 2727.49143728465, - "2024-01-01": 2668.29907949958, - "2023-01-01": 2524, - "2015-01-01": 2524 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 712.209888154137, - "2034-01-01": 698.418589817898, - "2033-01-01": 684.797554424082, - "2032-01-01": 671.517044915112, - "2031-01-01": 658.577061290987, - "2030-01-01": 645.807340609285, - "2029-01-01": 633.207882870006, - "2028-01-01": 620.778688073149, - "2027-01-01": 608.179230333869, - "2026-01-01": 593.55364357976, - "2025-01-01": 584.616825503563, - "2024-01-01": 571.929398577365, - "2023-01-01": 541, - "2015-01-01": 541 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1021.58017228763, - "2034-01-01": 1001.79819907336, - "2033-01-01": 982.260447750625, - "2032-01-01": 963.211140210956, - "2031-01-01": 944.650276454355, - "2030-01-01": 926.333634589289, - "2029-01-01": 908.261214615757, - "2028-01-01": 890.433016533759, - "2027-01-01": 872.360596560227, - "2026-01-01": 851.381936077438, - "2025-01-01": 838.563136027292, - "2024-01-01": 820.364534743134, - "2023-01-01": 776, - "2015-01-01": 776 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1176.92354900148, - "2034-01-01": 1154.13349223143, - "2033-01-01": 1131.62479418693, - "2032-01-01": 1109.67881359355, - "2031-01-01": 1088.29555045128, - "2030-01-01": 1067.19364603457, - "2029-01-01": 1046.37310034341, - "2028-01-01": 1025.83391337781, - "2027-01-01": 1005.01336768665, - "2026-01-01": 980.844653161378, - "2025-01-01": 966.076602588144, - "2024-01-01": 945.110688222116, - "2023-01-01": 894, - "2015-01-01": 894 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1308.57047841998, - "2034-01-01": 1283.23119829758, - "2033-01-01": 1258.20474879397, - "2032-01-01": 1233.80396052795, - "2031-01-01": 1210.02883349952, - "2030-01-01": 1186.56653708989, - "2029-01-01": 1163.41707129905, - "2028-01-01": 1140.58043612701, - "2027-01-01": 1117.43097033617, - "2026-01-01": 1090.55882018167, - "2025-01-01": 1074.13886238548, - "2024-01-01": 1050.82776744159, - "2023-01-01": 994, - "2015-01-01": 994 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1424.41977630827, - "2034-01-01": 1396.8371796358, - "2033-01-01": 1369.59510884816, - "2032-01-01": 1343.03408983022, - "2031-01-01": 1317.15412258198, - "2030-01-01": 1291.61468121857, - "2029-01-01": 1266.41576574001, - "2028-01-01": 1241.5573761463, - "2027-01-01": 1216.35846066774, - "2026-01-01": 1187.10728715952, - "2025-01-01": 1169.23365100713, - "2024-01-01": 1143.85879715473, - "2023-01-01": 1082, - "2015-01-01": 1082 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1528.4208505489, - "2034-01-01": 1498.82436742806, - "2033-01-01": 1469.59327298773, - "2032-01-01": 1441.0929559084, - "2031-01-01": 1413.32341619009, - "2030-01-01": 1385.91926515227, - "2029-01-01": 1358.88050279497, - "2028-01-01": 1332.20712911816, - "2027-01-01": 1305.16836676086, - "2026-01-01": 1273.78147910555, - "2025-01-01": 1254.60283624702, - "2024-01-01": 1227.37528973812, - "2023-01-01": 1161, - "2015-01-01": 1161 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1623.20663973022, - "2034-01-01": 1591.77471579569, - "2033-01-01": 1560.73084030479, - "2032-01-01": 1530.46306170117, - "2031-01-01": 1500.97137998482, - "2030-01-01": 1471.86774671211, - "2029-01-01": 1443.15216188303, - "2028-01-01": 1414.82462549758, - "2027-01-01": 1386.1090406685, - "2026-01-01": 1352.77567936016, - "2025-01-01": 1332.4076633011, - "2024-01-01": 1303.49158677614, - "2023-01-01": 1233, - "2015-01-01": 1233 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1711.41008244062, - "2034-01-01": 1678.27017886001, - "2033-01-01": 1645.53940989151, - "2032-01-01": 1613.62691014722, - "2031-01-01": 1582.53267962714, - "2030-01-01": 1551.84758371917, - "2029-01-01": 1521.5716224233, - "2028-01-01": 1491.70479573954, - "2027-01-01": 1461.42883444368, - "2026-01-01": 1426.28417126375, - "2025-01-01": 1404.80937736531, - "2024-01-01": 1374.32202985319, - "2023-01-01": 1300, - "2015-01-01": 1300 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1793.0311786801, - "2034-01-01": 1758.31075662103, - "2033-01-01": 1724.01898174787, - "2032-01-01": 1690.58450124655, - "2031-01-01": 1658.00731511705, - "2030-01-01": 1625.85877617347, - "2029-01-01": 1594.1388844158, - "2028-01-01": 1562.84763984405, - "2027-01-01": 1531.12774808638, - "2026-01-01": 1494.30695481633, - "2025-01-01": 1471.80797843966, - "2024-01-01": 1439.86661896926, - "2023-01-01": 1362, - "2015-01-01": 1362 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1899.66519150909, - "2034-01-01": 1862.87989853462, - "2033-01-01": 1826.54874497958, - "2032-01-01": 1791.12587026341, - "2031-01-01": 1756.61127438613, - "2030-01-01": 1722.55081792828, - "2029-01-01": 1688.94450088987, - "2028-01-01": 1655.79232327089, - "2027-01-01": 1622.18600623248, - "2026-01-01": 1583.17543010276, - "2025-01-01": 1559.33840887549, - "2024-01-01": 1525.49745313704, - "2023-01-01": 1443, - "2015-01-01": 1443 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2039.21093669271, - "2034-01-01": 1999.72346696474, - "2033-01-01": 1960.72349686304, - "2032-01-01": 1922.69852601388, - "2031-01-01": 1885.64855441726, - "2030-01-01": 1849.08608244692, - "2029-01-01": 1813.01111010284, - "2028-01-01": 1777.42363738504, - "2027-01-01": 1741.34866504097, - "2026-01-01": 1699.47244714427, - "2025-01-01": 1673.88440426067, - "2024-01-01": 1637.55755710968, - "2023-01-01": 1549, - "2015-01-01": 1549 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2166.90845822867, - "2034-01-01": 2124.94824184891, - "2033-01-01": 2083.50605283187, - "2032-01-01": 2043.09991854025, - "2031-01-01": 2003.72983897406, - "2030-01-01": 1964.87778677058, - "2029-01-01": 1926.54376192981, - "2028-01-01": 1888.72776445176, - "2027-01-01": 1850.393739611, - "2026-01-01": 1805.89518915395, - "2025-01-01": 1778.70479626408, - "2024-01-01": 1740.10312395258, - "2023-01-01": 1646, - "2015-01-01": 1646 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2284.07422541114, - "2034-01-01": 2239.84520024779, - "2033-01-01": 2196.16221243213, - "2032-01-01": 2153.57129931187, - "2031-01-01": 2112.07246088699, - "2030-01-01": 2071.11965980982, - "2029-01-01": 2030.71289608033, - "2028-01-01": 1990.85216969855, - "2027-01-01": 1950.44540596906, - "2026-01-01": 1903.540797802, - "2025-01-01": 1874.8802074837, - "2024-01-01": 1834.19132445791, - "2023-01-01": 1735, - "2015-01-01": 1735 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2394.65764612269, - "2034-01-01": 2348.28727334336, - "2033-01-01": 2302.48937430204, - "2032-01-01": 2257.83642273676, - "2031-01-01": 2214.32841864752, - "2030-01-01": 2171.39288829628, - "2029-01-01": 2129.02983168307, - "2028-01-01": 2087.23924880787, - "2027-01-01": 2044.87619219466, - "2026-01-01": 1995.70069809905, - "2025-01-01": 1965.65250571346, - "2024-01-01": 1922.99367100227, - "2023-01-01": 1819, - "2015-01-01": 1819 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2509.19047471679, - "2034-01-01": 2460.60227762091, - "2033-01-01": 2412.61393481017, - "2032-01-01": 2365.82530056969, - "2031-01-01": 2320.23637489949, - "2030-01-01": 2275.24730351441, - "2029-01-01": 2230.85808641447, - "2028-01-01": 2187.06872359967, - "2027-01-01": 2142.67950649973, - "2026-01-01": 2091.1520234067, - "2025-01-01": 2059.66667173714, - "2024-01-01": 2014.96752992321, - "2023-01-01": 1906, - "2015-01-01": 1906 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2630.30564978182, - "2034-01-01": 2579.37216720178, - "2033-01-01": 2529.06749304864, - "2032-01-01": 2480.02043574934, - "2031-01-01": 2432.23099530387, - "2030-01-01": 2385.07036328531, - "2029-01-01": 2338.53853969366, - "2028-01-01": 2292.63552452893, - "2027-01-01": 2246.10370093729, - "2026-01-01": 2192.08905706536, - "2025-01-01": 2159.08395075068, - "2024-01-01": 2112.22724280513, - "2023-01-01": 1998, - "2015-01-01": 1998 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2743.52200908174, - "2034-01-01": 2690.39619441867, - "2033-01-01": 2637.9262540107, - "2032-01-01": 2586.76806211293, - "2031-01-01": 2536.92161872536, - "2030-01-01": 2487.73104959288, - "2029-01-01": 2439.19635471551, - "2028-01-01": 2391.31753409324, - "2027-01-01": 2342.78283921587, - "2026-01-01": 2286.44324070281, - "2025-01-01": 2252.01749417639, - "2024-01-01": 2203.14393093388, - "2023-01-01": 2084, - "2015-01-01": 2084 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2851.47249120492, - "2034-01-01": 2796.25631339292, - "2033-01-01": 2741.72181678847, - "2032-01-01": 2688.55068259914, - "2031-01-01": 2636.74291082491, - "2030-01-01": 2585.61682025825, - "2029-01-01": 2535.17241089914, - "2028-01-01": 2485.40968274758, - "2027-01-01": 2434.96527338847, - "2026-01-01": 2376.40885765945, - "2025-01-01": 2340.6285472102, - "2024-01-01": 2289.83193589385, - "2023-01-01": 2166, - "2015-01-01": 2166 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3478.11187523702, - "2034-01-01": 3410.76139426781, - "2033-01-01": 3344.24240071798, - "2032-01-01": 3279.38638200689, - "2031-01-01": 3216.19333813455, - "2030-01-01": 3153.83178168157, - "2029-01-01": 3092.30171264798, - "2028-01-01": 3031.60313103375, - "2027-01-01": 2970.07306200015, - "2026-01-01": 2898.64829267602, - "2025-01-01": 2855.0049038455, - "2024-01-01": 2793.04523297856, - "2023-01-01": 2642, - "2015-01-01": 2642 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 359.396117312531, - "2034-01-01": 352.436737560603, - "2033-01-01": 345.563276077217, - "2032-01-01": 338.861651130916, - "2031-01-01": 332.3318627217, - "2030-01-01": 325.887992581026, - "2029-01-01": 319.530040708894, - "2028-01-01": 313.258007105304, - "2027-01-01": 306.900055233173, - "2026-01-01": 299.519675965387, - "2025-01-01": 295.009969246715, - "2024-01-01": 288.60762626917, - "2023-01-01": 273, - "2015-01-01": 273 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 516.055963320557, - "2034-01-01": 506.063007779327, - "2033-01-01": 496.193422059594, - "2032-01-01": 486.570575982854, - "2031-01-01": 477.194469549107, - "2030-01-01": 467.941732936857, - "2029-01-01": 458.812366146104, - "2028-01-01": 449.806369176847, - "2027-01-01": 440.677002386094, - "2026-01-01": 430.07953471953, - "2025-01-01": 423.60405840554, - "2024-01-01": 414.410950540346, - "2023-01-01": 392, - "2015-01-01": 392 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 596.360590265848, - "2034-01-01": 584.812608479682, - "2033-01-01": 573.407194369888, - "2032-01-01": 562.286915612839, - "2031-01-01": 551.451772208535, - "2030-01-01": 540.759196480603, - "2029-01-01": 530.209188429044, - "2028-01-01": 519.801748053857, - "2027-01-01": 509.251740002297, - "2026-01-01": 497.005176601906, - "2025-01-01": 489.522036881912, - "2024-01-01": 478.898368864227, - "2023-01-01": 453, - "2015-01-01": 453 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 663.500524269288, - "2034-01-01": 650.652438573421, - "2033-01-01": 637.962971219478, - "2032-01-01": 625.590740549384, - "2031-01-01": 613.535746563138, - "2030-01-01": 601.639370918817, - "2029-01-01": 589.901613616419, - "2028-01-01": 578.322474655946, - "2027-01-01": 566.584717353549, - "2026-01-01": 552.959401782253, - "2025-01-01": 544.633789378551, - "2024-01-01": 532.814079266159, - "2023-01-01": 504, - "2015-01-01": 504 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 722.741642507617, - "2034-01-01": 708.746406303191, - "2033-01-01": 694.923950792646, - "2032-01-01": 681.447056669864, - "2031-01-01": 668.315723934847, - "2030-01-01": 655.357171893711, - "2029-01-01": 642.571400546457, - "2028-01-01": 629.958409893085, - "2027-01-01": 617.172638545831, - "2026-01-01": 602.330776941383, - "2025-01-01": 593.26180628735, - "2024-01-01": 580.386764914923, - "2023-01-01": 549, - "2015-01-01": 549 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 775.400414275021, - "2034-01-01": 760.385488729653, - "2033-01-01": 745.555932635461, - "2032-01-01": 731.097115443625, - "2031-01-01": 717.009037154144, - "2030-01-01": 703.106328315839, - "2029-01-01": 689.388988928712, - "2028-01-01": 675.857018992763, - "2027-01-01": 662.139679605636, - "2026-01-01": 646.216443749499, - "2025-01-01": 636.486710206283, - "2024-01-01": 622.673596602714, - "2023-01-01": 589, - "2015-01-01": 589 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 824.10977815987, - "2034-01-01": 808.15163997413, - "2033-01-01": 792.390515840066, - "2032-01-01": 777.023419809353, - "2031-01-01": 762.050351881993, - "2030-01-01": 747.274298006308, - "2029-01-01": 732.695258182299, - "2028-01-01": 718.313232409965, - "2027-01-01": 703.734192585956, - "2026-01-01": 686.810685547005, - "2025-01-01": 676.469746331295, - "2024-01-01": 661.78891591392, - "2023-01-01": 626, - "2015-01-01": 626 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 868.869734162163, - "2034-01-01": 852.044860036623, - "2033-01-01": 835.427700406459, - "2032-01-01": 819.22596976705, - "2031-01-01": 803.439668118395, - "2030-01-01": 787.861080965117, - "2029-01-01": 772.490208307216, - "2028-01-01": 757.327050144692, - "2027-01-01": 741.956177486791, - "2026-01-01": 724.113502333903, - "2025-01-01": 713.210914662388, - "2024-01-01": 697.732722848542, - "2023-01-01": 660, - "2015-01-01": 660 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 909.680282281901, - "2034-01-01": 892.065148917131, - "2033-01-01": 874.667486334641, - "2032-01-01": 857.704765316714, - "2031-01-01": 841.17698586335, - "2030-01-01": 824.866677192267, - "2029-01-01": 808.773839303464, - "2028-01-01": 792.898472196942, - "2027-01-01": 776.80563430814, - "2026-01-01": 758.124894110193, - "2025-01-01": 746.710215199561, - "2024-01-01": 730.505017406579, - "2023-01-01": 691, - "2015-01-01": 691 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 964.971992637675, - "2034-01-01": 946.286185464916, - "2033-01-01": 927.831067269598, - "2032-01-01": 909.837327029163, - "2031-01-01": 892.304964743611, - "2030-01-01": 875.003291435501, - "2029-01-01": 857.932307104832, - "2028-01-01": 841.092011751605, - "2027-01-01": 824.021027420936, - "2026-01-01": 804.204844258714, - "2025-01-01": 792.09636431444, - "2024-01-01": 774.906190678759, - "2023-01-01": 733, - "2015-01-01": 733 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1036.06133452367, - "2034-01-01": 1015.99894674064, - "2033-01-01": 996.184242757399, - "2032-01-01": 976.86490637374, - "2031-01-01": 958.040937589662, - "2030-01-01": 939.464652605375, - "2029-01-01": 921.136051420877, - "2028-01-01": 903.05513403617, - "2027-01-01": 884.726532851673, - "2026-01-01": 863.450494449669, - "2025-01-01": 850.449984604999, - "2024-01-01": 831.993413457277, - "2023-01-01": 787, - "2015-01-01": 787 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1101.88479923292, - "2034-01-01": 1080.54779977372, - "2033-01-01": 1059.47422006092, - "2032-01-01": 1038.92747984094, - "2031-01-01": 1018.90757911378, - "2030-01-01": 999.151098133035, - "2029-01-01": 979.658036898696, - "2028-01-01": 960.428395410768, - "2027-01-01": 940.93533417643, - "2026-01-01": 918.307577959814, - "2025-01-01": 904.481114503665, - "2024-01-01": 884.851953067015, - "2023-01-01": 837, - "2015-01-01": 837 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1161.12591747125, - "2034-01-01": 1138.64176750349, - "2033-01-01": 1116.43519963409, - "2032-01-01": 1094.78379596142, - "2031-01-01": 1073.68755648549, - "2030-01-01": 1052.86889910793, - "2029-01-01": 1032.32782382873, - "2028-01-01": 1012.06433064791, - "2027-01-01": 991.523255368712, - "2026-01-01": 967.678953118943, - "2025-01-01": 953.109131412464, - "2024-01-01": 932.424638715779, - "2023-01-01": 882, - "2015-01-01": 882 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1217.73409712121, - "2034-01-01": 1194.15378111193, - "2033-01-01": 1170.86458011511, - "2032-01-01": 1148.15760914321, - "2031-01-01": 1126.03286819624, - "2030-01-01": 1104.19924226172, - "2029-01-01": 1082.65673133966, - "2028-01-01": 1061.40533543006, - "2027-01-01": 1039.862824508, - "2026-01-01": 1014.85604493767, - "2025-01-01": 999.575903125317, - "2024-01-01": 977.882982780153, - "2023-01-01": 925, - "2015-01-01": 925 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1275.65874606536, - "2034-01-01": 1250.95677178104, - "2033-01-01": 1226.55976014221, - "2032-01-01": 1202.77267379435, - "2031-01-01": 1179.59551273746, - "2030-01-01": 1156.72331432606, - "2029-01-01": 1134.15607856014, - "2028-01-01": 1111.89380543971, - "2027-01-01": 1089.32656967379, - "2026-01-01": 1063.13027842659, - "2025-01-01": 1047.12329743614, - "2024-01-01": 1024.39849763672, - "2023-01-01": 969, - "2015-01-01": 969 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1338.84927218624, - "2034-01-01": 1312.9236706928, - "2033-01-01": 1287.31813835359, - "2032-01-01": 1262.35274432286, - "2031-01-01": 1238.02748860062, - "2030-01-01": 1214.02230203261, - "2029-01-01": 1190.33718461885, - "2028-01-01": 1166.97213635932, - "2027-01-01": 1143.28701894556, - "2026-01-01": 1115.79307859633, - "2025-01-01": 1098.99318213886, - "2024-01-01": 1075.14269566207, - "2023-01-01": 1017, - "2015-01-01": 1017 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1396.77392113039, - "2034-01-01": 1369.7266613619, - "2033-01-01": 1343.01331838069, - "2032-01-01": 1316.967808974, - "2031-01-01": 1291.59013314184, - "2030-01-01": 1266.54637409695, - "2029-01-01": 1241.83653183933, - "2028-01-01": 1217.46060636897, - "2027-01-01": 1192.75076411134, - "2026-01-01": 1164.06731208526, - "2025-01-01": 1146.54057644969, - "2024-01-01": 1121.65821051864, - "2023-01-01": 1061, - "2015-01-01": 1061 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1452.06563148616, - "2034-01-01": 1423.94769790969, - "2033-01-01": 1396.17689931564, - "2032-01-01": 1369.10037068645, - "2031-01-01": 1342.71811202211, - "2030-01-01": 1316.68298834019, - "2029-01-01": 1290.9949996407, - "2028-01-01": 1265.65414592363, - "2027-01-01": 1239.96615722414, - "2026-01-01": 1210.14726223378, - "2025-01-01": 1191.92672556457, - "2024-01-01": 1166.05938379082, - "2023-01-01": 1103, - "2015-01-01": 1103 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1773.28413926732, - "2034-01-01": 1738.94610071111, - "2033-01-01": 1705.03198855682, - "2032-01-01": 1671.96572920639, - "2031-01-01": 1639.74732265982, - "2030-01-01": 1607.95284251517, - "2029-01-01": 1576.58228877245, - "2028-01-01": 1545.63566143167, - "2027-01-01": 1514.26510768895, - "2026-01-01": 1477.84982976328, - "2025-01-01": 1455.59863947006, - "2024-01-01": 1424.00905708634, - "2023-01-01": 1347, - "2015-01-01": 1347 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 389.674911078788, - "2034-01-01": 382.129209955819, - "2033-01-01": 374.676665636836, - "2032-01-01": 367.410434925828, - "2031-01-01": 360.330517822795, - "2030-01-01": 353.343757523749, - "2029-01-01": 346.450154028691, - "2028-01-01": 339.649707337619, - "2027-01-01": 332.756103842561, - "2026-01-01": 324.753934380054, - "2025-01-01": 319.864289000101, - "2024-01-01": 312.922554489649, - "2023-01-01": 296, - "2015-01-01": 296 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 560.815919322851, - "2034-01-01": 549.95622784182, - "2033-01-01": 539.230606625987, - "2032-01-01": 528.773125940551, - "2031-01-01": 518.58378578551, - "2030-01-01": 508.528515895666, - "2029-01-01": 498.607316271021, - "2028-01-01": 488.820186911574, - "2027-01-01": 478.898987286929, - "2026-01-01": 467.382351506428, - "2025-01-01": 460.345226736632, - "2024-01-01": 450.354757474968, - "2023-01-01": 426, - "2015-01-01": 426 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 646.386423444882, - "2034-01-01": 633.869736784821, - "2033-01-01": 621.507577120563, - "2032-01-01": 609.454471447911, - "2031-01-01": 597.710419766867, - "2030-01-01": 586.120895081625, - "2029-01-01": 574.685897392186, - "2028-01-01": 563.405426698551, - "2027-01-01": 551.970429009113, - "2026-01-01": 538.696560069616, - "2025-01-01": 530.585695604898, - "2024-01-01": 519.070858967627, - "2023-01-01": 491, - "2015-01-01": 491 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 720.108703919247, - "2034-01-01": 706.164452181867, - "2033-01-01": 692.392351700505, - "2032-01-01": 678.964553731176, - "2031-01-01": 665.881058273882, - "2030-01-01": 652.969714072605, - "2029-01-01": 640.230521127344, - "2028-01-01": 627.663479438101, - "2027-01-01": 614.92428649284, - "2026-01-01": 600.136493600977, - "2025-01-01": 591.100561091403, - "2024-01-01": 578.272423330534, - "2023-01-01": 547, - "2015-01-01": 547 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 784.615699334317, - "2034-01-01": 769.422328154283, - "2033-01-01": 754.416529457954, - "2032-01-01": 739.785875729033, - "2031-01-01": 725.53036696752, - "2030-01-01": 711.462430689712, - "2029-01-01": 697.582066895607, - "2028-01-01": 683.889275585207, - "2027-01-01": 670.008911791102, - "2026-01-01": 653.896435440919, - "2025-01-01": 644.051068392096, - "2024-01-01": 630.073792148077, - "2023-01-01": 596, - "2015-01-01": 596 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 841.223878984276, - "2034-01-01": 824.93434176273, - "2033-01-01": 808.845909938981, - "2032-01-01": 793.159688910826, - "2031-01-01": 777.875678678264, - "2030-01-01": 762.7927738435, - "2029-01-01": 747.910974406532, - "2028-01-01": 733.230280367361, - "2027-01-01": 718.348480930393, - "2026-01-01": 701.073527259643, - "2025-01-01": 690.517840104948, - "2024-01-01": 675.532136212452, - "2023-01-01": 639, - "2015-01-01": 639 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 893.88265075168, - "2034-01-01": 876.573424189192, - "2033-01-01": 859.477891781797, - "2032-01-01": 842.809747684586, - "2031-01-01": 826.568991897561, - "2030-01-01": 810.541930265628, - "2029-01-01": 794.728562788787, - "2028-01-01": 779.128889467039, - "2027-01-01": 763.315521990199, - "2026-01-01": 744.959194067758, - "2025-01-01": 733.742744023881, - "2024-01-01": 717.818967900242, - "2023-01-01": 679, - "2015-01-01": 679 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 942.592014636528, - "2034-01-01": 924.339575433669, - "2033-01-01": 906.312474986401, - "2032-01-01": 888.736052050315, - "2031-01-01": 871.61030662541, - "2030-01-01": 854.709899956097, - "2029-01-01": 838.034832042373, - "2028-01-01": 821.585102884241, - "2027-01-01": 804.910034970519, - "2026-01-01": 785.553435865265, - "2025-01-01": 773.725780148894, - "2024-01-01": 756.934287211449, - "2023-01-01": 716, - "2015-01-01": 716 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 987.351970638822, - "2034-01-01": 968.232795496162, - "2033-01-01": 949.349659552794, - "2032-01-01": 930.938602008011, - "2031-01-01": 912.999622861813, - "2030-01-01": 895.296682914906, - "2029-01-01": 877.829782167291, - "2028-01-01": 860.598920618968, - "2027-01-01": 843.132019871353, - "2026-01-01": 822.856252652163, - "2025-01-01": 810.466948479986, - "2024-01-01": 792.87809414607, - "2023-01-01": 750, - "2015-01-01": 750 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1047.90955817134, - "2034-01-01": 1027.61774028659, - "2033-01-01": 1007.57643867203, - "2032-01-01": 988.036169597836, - "2031-01-01": 968.996933064004, - "2030-01-01": 950.208212800353, - "2029-01-01": 931.670008806884, - "2028-01-01": 913.382321083598, - "2027-01-01": 894.84411709013, - "2026-01-01": 873.324769481495, - "2025-01-01": 860.175587986759, - "2024-01-01": 841.507950587029, - "2023-01-01": 796, - "2015-01-01": 796 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1124.26477723407, - "2034-01-01": 1102.49440980496, - "2033-01-01": 1080.99281234412, - "2032-01-01": 1060.02875481979, - "2031-01-01": 1039.60223723198, - "2030-01-01": 1019.44448961244, - "2029-01-01": 999.555511961155, - "2028-01-01": 979.935304278132, - "2027-01-01": 960.046326626848, - "2026-01-01": 936.958986353263, - "2025-01-01": 922.851698669211, - "2024-01-01": 902.823856534325, - "2023-01-01": 854, - "2015-01-01": 854 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1195.35411912007, - "2034-01-01": 1172.20717108069, - "2033-01-01": 1149.34598783192, - "2032-01-01": 1127.05633416437, - "2031-01-01": 1105.33821007803, - "2030-01-01": 1083.90585078231, - "2029-01-01": 1062.7592562772, - "2028-01-01": 1041.8984265627, - "2027-01-01": 1020.75183205759, - "2026-01-01": 996.204636544218, - "2025-01-01": 981.20531895977, - "2024-01-01": 959.911079312842, - "2023-01-01": 908, - "2015-01-01": 908 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1261.17758382932, - "2034-01-01": 1236.75602411376, - "2033-01-01": 1212.63596513544, - "2032-01-01": 1189.11890763157, - "2031-01-01": 1166.20485160216, - "2030-01-01": 1143.59229630997, - "2029-01-01": 1121.28124175502, - "2028-01-01": 1099.2716879373, - "2027-01-01": 1076.96063338234, - "2026-01-01": 1051.06172005436, - "2025-01-01": 1035.23644885844, - "2024-01-01": 1012.76961892258, - "2023-01-01": 958, - "2015-01-01": 958 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1321.73517136184, - "2034-01-01": 1296.1409689042, - "2033-01-01": 1270.86274425467, - "2032-01-01": 1246.21647522139, - "2031-01-01": 1222.20216180435, - "2030-01-01": 1198.50382619542, - "2029-01-01": 1175.12146839461, - "2028-01-01": 1152.05508840193, - "2027-01-01": 1128.67273060112, - "2026-01-01": 1101.5302368837, - "2025-01-01": 1084.94508836521, - "2024-01-01": 1061.39947536354, - "2023-01-01": 1004, - "2015-01-01": 1004 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1384.92569748272, - "2034-01-01": 1358.10786781595, - "2033-01-01": 1331.62112246605, - "2032-01-01": 1305.7965457499, - "2031-01-01": 1280.6341376675, - "2030-01-01": 1255.80281390197, - "2029-01-01": 1231.30257445332, - "2028-01-01": 1207.13341932154, - "2027-01-01": 1182.63317987289, - "2026-01-01": 1154.19303705343, - "2025-01-01": 1136.81497306793, - "2024-01-01": 1112.14367338889, - "2023-01-01": 1052, - "2015-01-01": 1052 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1453.38210078035, - "2034-01-01": 1425.23867497035, - "2033-01-01": 1397.44269886171, - "2032-01-01": 1370.34162215579, - "2031-01-01": 1343.93544485259, - "2030-01-01": 1317.87671725074, - "2029-01-01": 1292.16543935025, - "2028-01-01": 1266.80161115112, - "2027-01-01": 1241.09033325063, - "2026-01-01": 1211.24440390398, - "2025-01-01": 1193.00734816254, - "2024-01-01": 1167.11655458302, - "2023-01-01": 1104, - "2015-01-01": 1104 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1516.57262690123, - "2034-01-01": 1487.2055738821, - "2033-01-01": 1458.20107707309, - "2032-01-01": 1429.92169268431, - "2031-01-01": 1402.36742071574, - "2030-01-01": 1375.1757049573, - "2029-01-01": 1348.34654540896, - "2028-01-01": 1321.87994207073, - "2027-01-01": 1295.0507825224, - "2026-01-01": 1263.90720407372, - "2025-01-01": 1244.87723286526, - "2024-01-01": 1217.86075260836, - "2023-01-01": 1152, - "2015-01-01": 1152 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1575.81374513956, - "2034-01-01": 1545.29954161187, - "2033-01-01": 1515.16205664626, - "2032-01-01": 1485.77800880479, - "2031-01-01": 1457.14739808745, - "2030-01-01": 1428.89350593219, - "2029-01-01": 1401.016332339, - "2028-01-01": 1373.51587730787, - "2027-01-01": 1345.63870371468, - "2026-01-01": 1313.27857923285, - "2025-01-01": 1293.50524977406, - "2024-01-01": 1265.43343825713, - "2023-01-01": 1197, - "2015-01-01": 1197 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1924.67810809861, - "2034-01-01": 1887.40846268719, - "2033-01-01": 1850.59893635491, - "2032-01-01": 1814.70964818095, - "2031-01-01": 1779.74059816529, - "2030-01-01": 1745.23166722879, - "2029-01-01": 1711.18285537144, - "2028-01-01": 1677.59416259324, - "2027-01-01": 1643.54535073589, - "2026-01-01": 1604.02112183662, - "2025-01-01": 1579.87023823699, - "2024-01-01": 1545.58369818874, - "2023-01-01": 1462, - "2015-01-01": 1462 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 409.421950491565, - "2034-01-01": 401.493865865742, - "2033-01-01": 393.663658827892, - "2032-01-01": 386.029206965989, - "2031-01-01": 378.590510280032, - "2030-01-01": 371.249691182048, - "2029-01-01": 364.006749672037, - "2028-01-01": 356.861685749999, - "2027-01-01": 349.618744239988, - "2026-01-01": 341.211059433097, - "2025-01-01": 336.073627969701, - "2024-01-01": 328.780116372571, - "2023-01-01": 311, - "2015-01-01": 311 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 588.461774500738, - "2034-01-01": 577.066746115713, - "2033-01-01": 565.812397093466, - "2032-01-01": 554.839406796775, - "2031-01-01": 544.14777522564, - "2030-01-01": 533.596823017284, - "2029-01-01": 523.186550171705, - "2028-01-01": 512.916956688905, - "2027-01-01": 502.506683843327, - "2026-01-01": 490.422326580689, - "2025-01-01": 483.038301294072, - "2024-01-01": 472.555344111058, - "2023-01-01": 447, - "2015-01-01": 447 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 677.981686505324, - "2034-01-01": 664.853186240698, - "2033-01-01": 651.886766226252, - "2032-01-01": 639.244506712168, - "2031-01-01": 626.926407698445, - "2030-01-01": 614.770388934902, - "2029-01-01": 602.77645042154, - "2028-01-01": 590.944592158358, - "2027-01-01": 578.950653644996, - "2026-01-01": 565.027960154485, - "2025-01-01": 556.520637956257, - "2024-01-01": 544.442957980302, - "2023-01-01": 515, - "2015-01-01": 515 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 755.653374862245, - "2034-01-01": 741.020832819729, - "2033-01-01": 726.568939444405, - "2032-01-01": 712.478343403465, - "2031-01-01": 698.749044696907, - "2030-01-01": 685.200394657541, - "2029-01-01": 671.832393285366, - "2028-01-01": 658.645040580384, - "2027-01-01": 645.277039208209, - "2026-01-01": 629.759318696455, - "2025-01-01": 620.277371236683, - "2024-01-01": 606.816034719793, - "2023-01-01": 574, - "2015-01-01": 574 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 822.793308865685, - "2034-01-01": 806.860662913468, - "2033-01-01": 791.124716293995, - "2032-01-01": 775.782168340009, - "2031-01-01": 760.83301905151, - "2030-01-01": 746.080569095755, - "2029-01-01": 731.524818472742, - "2028-01-01": 717.165767182473, - "2027-01-01": 702.610016559461, - "2026-01-01": 685.713543876802, - "2025-01-01": 675.389123733322, - "2024-01-01": 660.731745121725, - "2023-01-01": 625, - "2015-01-01": 625 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 883.350896398199, - "2034-01-01": 866.2456077039, - "2033-01-01": 849.351495413234, - "2032-01-01": 832.879735929834, - "2031-01-01": 816.830329253702, - "2030-01-01": 800.992098981202, - "2029-01-01": 785.365045112336, - "2028-01-01": 769.949167647103, - "2027-01-01": 754.322113778237, - "2026-01-01": 736.182060706135, - "2025-01-01": 725.097763240094, - "2024-01-01": 709.361601562684, - "2023-01-01": 671, - "2015-01-01": 671 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 938.642606753973, - "2034-01-01": 920.466644251685, - "2033-01-01": 902.51507634819, - "2032-01-01": 885.012297642283, - "2031-01-01": 867.958308133963, - "2030-01-01": 851.128713224437, - "2029-01-01": 834.523512913704, - "2028-01-01": 818.142707201766, - "2027-01-01": 801.537506891033, - "2026-01-01": 782.262010854656, - "2025-01-01": 770.483912354974, - "2024-01-01": 753.762774834864, - "2023-01-01": 713, - "2015-01-01": 713 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 988.668439933007, - "2034-01-01": 969.523772556824, - "2033-01-01": 950.615459098865, - "2032-01-01": 932.179853477355, - "2031-01-01": 914.216955692295, - "2030-01-01": 896.490411825459, - "2029-01-01": 879.000221876847, - "2028-01-01": 861.74638584646, - "2027-01-01": 844.256195897848, - "2026-01-01": 823.953394322366, - "2025-01-01": 811.54757107796, - "2024-01-01": 793.935264938265, - "2023-01-01": 751, - "2015-01-01": 751 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1036.06133452367, - "2034-01-01": 1015.99894674064, - "2033-01-01": 996.184242757399, - "2032-01-01": 976.86490637374, - "2031-01-01": 958.040937589662, - "2030-01-01": 939.464652605375, - "2029-01-01": 921.136051420877, - "2028-01-01": 903.05513403617, - "2027-01-01": 884.726532851673, - "2026-01-01": 863.450494449669, - "2025-01-01": 850.449984604999, - "2024-01-01": 831.993413457277, - "2023-01-01": 787, - "2015-01-01": 787 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1099.25186064455, - "2034-01-01": 1077.96584565239, - "2033-01-01": 1056.94262096878, - "2032-01-01": 1036.44497690225, - "2031-01-01": 1016.47291345282, - "2030-01-01": 996.763640311928, - "2029-01-01": 977.317157479584, - "2028-01-01": 958.133464955784, - "2027-01-01": 938.68698212344, - "2026-01-01": 916.113294619408, - "2025-01-01": 902.319869307718, - "2024-01-01": 882.737611482625, - "2023-01-01": 835, - "2015-01-01": 835 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1179.55648758985, - "2034-01-01": 1156.71544635275, - "2033-01-01": 1134.15639327907, - "2032-01-01": 1112.16131653224, - "2031-01-01": 1090.73021611225, - "2030-01-01": 1069.58110385567, - "2029-01-01": 1048.71397976252, - "2028-01-01": 1028.12884383279, - "2027-01-01": 1007.26171973964, - "2026-01-01": 983.038936501784, - "2025-01-01": 968.23784778409, - "2024-01-01": 947.225029806505, - "2023-01-01": 896, - "2015-01-01": 896 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1254.5952373584, - "2034-01-01": 1230.30113881046, - "2033-01-01": 1206.30696740508, - "2032-01-01": 1182.91265028485, - "2031-01-01": 1160.11818744974, - "2030-01-01": 1137.62365175721, - "2029-01-01": 1115.42904320724, - "2028-01-01": 1093.53436179984, - "2027-01-01": 1071.33975324987, - "2026-01-01": 1045.57601170335, - "2025-01-01": 1029.83333586857, - "2024-01-01": 1007.48376496161, - "2023-01-01": 953, - "2015-01-01": 953 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1323.05164065602, - "2034-01-01": 1297.43194596486, - "2033-01-01": 1272.12854380074, - "2032-01-01": 1247.45772669074, - "2031-01-01": 1223.41949463483, - "2030-01-01": 1199.69755510597, - "2029-01-01": 1176.29190810417, - "2028-01-01": 1153.20255362942, - "2027-01-01": 1129.79690662761, - "2026-01-01": 1102.6273785539, - "2025-01-01": 1086.02571096318, - "2024-01-01": 1062.45664615573, - "2023-01-01": 1005, - "2015-01-01": 1005 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1387.55863607109, - "2034-01-01": 1360.68982193727, - "2033-01-01": 1334.15272155819, - "2032-01-01": 1308.27904868859, - "2031-01-01": 1283.06880332847, - "2030-01-01": 1258.19027172308, - "2029-01-01": 1233.64345387243, - "2028-01-01": 1209.42834977652, - "2027-01-01": 1184.88153192588, - "2026-01-01": 1156.38732039384, - "2025-01-01": 1138.97621826387, - "2024-01-01": 1114.25801497328, - "2023-01-01": 1054, - "2015-01-01": 1054 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1453.38210078035, - "2034-01-01": 1425.23867497035, - "2033-01-01": 1397.44269886171, - "2032-01-01": 1370.34162215579, - "2031-01-01": 1343.93544485259, - "2030-01-01": 1317.87671725074, - "2029-01-01": 1292.16543935025, - "2028-01-01": 1266.80161115112, - "2027-01-01": 1241.09033325063, - "2026-01-01": 1211.24440390398, - "2025-01-01": 1193.00734816254, - "2024-01-01": 1167.11655458302, - "2023-01-01": 1104, - "2015-01-01": 1104 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1524.47144266634, - "2034-01-01": 1494.95143624607, - "2033-01-01": 1465.79587434951, - "2032-01-01": 1437.36920150037, - "2031-01-01": 1409.67141769864, - "2030-01-01": 1382.33807842061, - "2029-01-01": 1355.3691836663, - "2028-01-01": 1328.76473343569, - "2027-01-01": 1301.79583868137, - "2026-01-01": 1270.49005409494, - "2025-01-01": 1251.3609684531, - "2024-01-01": 1224.20377736153, - "2023-01-01": 1158, - "2015-01-01": 1158 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1590.2949073756, - "2034-01-01": 1559.50028927915, - "2033-01-01": 1529.08585165303, - "2032-01-01": 1499.43177496757, - "2031-01-01": 1470.53805922276, - "2030-01-01": 1442.02452394828, - "2029-01-01": 1413.89116914412, - "2028-01-01": 1386.13799481028, - "2027-01-01": 1358.00464000613, - "2026-01-01": 1325.34713760508, - "2025-01-01": 1305.39209835176, - "2024-01-01": 1277.06231697127, - "2023-01-01": 1208, - "2015-01-01": 1208 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1653.48543349648, - "2034-01-01": 1621.46718819091, - "2033-01-01": 1589.84422986441, - "2032-01-01": 1559.01184549608, - "2031-01-01": 1528.97003508592, - "2030-01-01": 1499.32351165483, - "2029-01-01": 1470.07227520282, - "2028-01-01": 1441.2163257299, - "2027-01-01": 1411.96508927789, - "2026-01-01": 1378.00993777482, - "2025-01-01": 1357.26198305448, - "2024-01-01": 1327.80651499662, - "2023-01-01": 1256, - "2015-01-01": 1256 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NY.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2020.78036657412, - "2034-01-01": 1981.64978811548, - "2033-01-01": 1943.00230321805, - "2032-01-01": 1905.32100544306, - "2031-01-01": 1868.60589479051, - "2030-01-01": 1832.37387769917, - "2029-01-01": 1796.62495416905, - "2028-01-01": 1761.35912420015, - "2027-01-01": 1725.61020067004, - "2026-01-01": 1684.11246376143, - "2025-01-01": 1658.75568788904, - "2024-01-01": 1622.75716601896, - "2023-01-01": 1535, - "2015-01-01": 1535 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC", - "description": null, - "label": "NC", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 359.396117312531, - "2034-01-01": 352.436737560603, - "2033-01-01": 345.563276077217, - "2032-01-01": 338.861651130916, - "2031-01-01": 332.3318627217, - "2030-01-01": 325.887992581026, - "2029-01-01": 319.530040708894, - "2028-01-01": 313.258007105304, - "2027-01-01": 306.900055233173, - "2026-01-01": 299.519675965387, - "2025-01-01": 295.009969246715, - "2024-01-01": 288.60762626917, - "2023-01-01": 273, - "2015-01-01": 273 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 516.055963320557, - "2034-01-01": 506.063007779327, - "2033-01-01": 496.193422059594, - "2032-01-01": 486.570575982854, - "2031-01-01": 477.194469549107, - "2030-01-01": 467.941732936857, - "2029-01-01": 458.812366146104, - "2028-01-01": 449.806369176847, - "2027-01-01": 440.677002386094, - "2026-01-01": 430.07953471953, - "2025-01-01": 423.60405840554, - "2024-01-01": 414.410950540346, - "2023-01-01": 392, - "2015-01-01": 392 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 596.360590265848, - "2034-01-01": 584.812608479682, - "2033-01-01": 573.407194369888, - "2032-01-01": 562.286915612839, - "2031-01-01": 551.451772208535, - "2030-01-01": 540.759196480603, - "2029-01-01": 530.209188429044, - "2028-01-01": 519.801748053857, - "2027-01-01": 509.251740002297, - "2026-01-01": 497.005176601906, - "2025-01-01": 489.522036881912, - "2024-01-01": 478.898368864227, - "2023-01-01": 453, - "2015-01-01": 453 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 663.500524269288, - "2034-01-01": 650.652438573421, - "2033-01-01": 637.962971219478, - "2032-01-01": 625.590740549384, - "2031-01-01": 613.535746563138, - "2030-01-01": 601.639370918817, - "2029-01-01": 589.901613616419, - "2028-01-01": 578.322474655946, - "2027-01-01": 566.584717353549, - "2026-01-01": 552.959401782253, - "2025-01-01": 544.633789378551, - "2024-01-01": 532.814079266159, - "2023-01-01": 504, - "2015-01-01": 504 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 722.741642507617, - "2034-01-01": 708.746406303191, - "2033-01-01": 694.923950792646, - "2032-01-01": 681.447056669864, - "2031-01-01": 668.315723934847, - "2030-01-01": 655.357171893711, - "2029-01-01": 642.571400546457, - "2028-01-01": 629.958409893085, - "2027-01-01": 617.172638545831, - "2026-01-01": 602.330776941383, - "2025-01-01": 593.26180628735, - "2024-01-01": 580.386764914923, - "2023-01-01": 549, - "2015-01-01": 549 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 775.400414275021, - "2034-01-01": 760.385488729653, - "2033-01-01": 745.555932635461, - "2032-01-01": 731.097115443625, - "2031-01-01": 717.009037154144, - "2030-01-01": 703.106328315839, - "2029-01-01": 689.388988928712, - "2028-01-01": 675.857018992763, - "2027-01-01": 662.139679605636, - "2026-01-01": 646.216443749499, - "2025-01-01": 636.486710206283, - "2024-01-01": 622.673596602714, - "2023-01-01": 589, - "2015-01-01": 589 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 824.10977815987, - "2034-01-01": 808.15163997413, - "2033-01-01": 792.390515840066, - "2032-01-01": 777.023419809353, - "2031-01-01": 762.050351881993, - "2030-01-01": 747.274298006308, - "2029-01-01": 732.695258182299, - "2028-01-01": 718.313232409965, - "2027-01-01": 703.734192585956, - "2026-01-01": 686.810685547005, - "2025-01-01": 676.469746331295, - "2024-01-01": 661.78891591392, - "2023-01-01": 626, - "2015-01-01": 626 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 868.869734162163, - "2034-01-01": 852.044860036623, - "2033-01-01": 835.427700406459, - "2032-01-01": 819.22596976705, - "2031-01-01": 803.439668118395, - "2030-01-01": 787.861080965117, - "2029-01-01": 772.490208307216, - "2028-01-01": 757.327050144692, - "2027-01-01": 741.956177486791, - "2026-01-01": 724.113502333903, - "2025-01-01": 713.210914662388, - "2024-01-01": 697.732722848542, - "2023-01-01": 660, - "2015-01-01": 660 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 909.680282281901, - "2034-01-01": 892.065148917131, - "2033-01-01": 874.667486334641, - "2032-01-01": 857.704765316714, - "2031-01-01": 841.17698586335, - "2030-01-01": 824.866677192267, - "2029-01-01": 808.773839303464, - "2028-01-01": 792.898472196942, - "2027-01-01": 776.80563430814, - "2026-01-01": 758.124894110193, - "2025-01-01": 746.710215199561, - "2024-01-01": 730.505017406579, - "2023-01-01": 691, - "2015-01-01": 691 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 964.971992637675, - "2034-01-01": 946.286185464916, - "2033-01-01": 927.831067269598, - "2032-01-01": 909.837327029163, - "2031-01-01": 892.304964743611, - "2030-01-01": 875.003291435501, - "2029-01-01": 857.932307104832, - "2028-01-01": 841.092011751605, - "2027-01-01": 824.021027420936, - "2026-01-01": 804.204844258714, - "2025-01-01": 792.09636431444, - "2024-01-01": 774.906190678759, - "2023-01-01": 733, - "2015-01-01": 733 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1036.06133452367, - "2034-01-01": 1015.99894674064, - "2033-01-01": 996.184242757399, - "2032-01-01": 976.86490637374, - "2031-01-01": 958.040937589662, - "2030-01-01": 939.464652605375, - "2029-01-01": 921.136051420877, - "2028-01-01": 903.05513403617, - "2027-01-01": 884.726532851673, - "2026-01-01": 863.450494449669, - "2025-01-01": 850.449984604999, - "2024-01-01": 831.993413457277, - "2023-01-01": 787, - "2015-01-01": 787 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1101.88479923292, - "2034-01-01": 1080.54779977372, - "2033-01-01": 1059.47422006092, - "2032-01-01": 1038.92747984094, - "2031-01-01": 1018.90757911378, - "2030-01-01": 999.151098133035, - "2029-01-01": 979.658036898696, - "2028-01-01": 960.428395410768, - "2027-01-01": 940.93533417643, - "2026-01-01": 918.307577959814, - "2025-01-01": 904.481114503665, - "2024-01-01": 884.851953067015, - "2023-01-01": 837, - "2015-01-01": 837 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1161.12591747125, - "2034-01-01": 1138.64176750349, - "2033-01-01": 1116.43519963409, - "2032-01-01": 1094.78379596142, - "2031-01-01": 1073.68755648549, - "2030-01-01": 1052.86889910793, - "2029-01-01": 1032.32782382873, - "2028-01-01": 1012.06433064791, - "2027-01-01": 991.523255368712, - "2026-01-01": 967.678953118943, - "2025-01-01": 953.109131412464, - "2024-01-01": 932.424638715779, - "2023-01-01": 882, - "2015-01-01": 882 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1217.73409712121, - "2034-01-01": 1194.15378111193, - "2033-01-01": 1170.86458011511, - "2032-01-01": 1148.15760914321, - "2031-01-01": 1126.03286819624, - "2030-01-01": 1104.19924226172, - "2029-01-01": 1082.65673133966, - "2028-01-01": 1061.40533543006, - "2027-01-01": 1039.862824508, - "2026-01-01": 1014.85604493767, - "2025-01-01": 999.575903125317, - "2024-01-01": 977.882982780153, - "2023-01-01": 925, - "2015-01-01": 925 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1275.65874606536, - "2034-01-01": 1250.95677178104, - "2033-01-01": 1226.55976014221, - "2032-01-01": 1202.77267379435, - "2031-01-01": 1179.59551273746, - "2030-01-01": 1156.72331432606, - "2029-01-01": 1134.15607856014, - "2028-01-01": 1111.89380543971, - "2027-01-01": 1089.32656967379, - "2026-01-01": 1063.13027842659, - "2025-01-01": 1047.12329743614, - "2024-01-01": 1024.39849763672, - "2023-01-01": 969, - "2015-01-01": 969 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1338.84927218624, - "2034-01-01": 1312.9236706928, - "2033-01-01": 1287.31813835359, - "2032-01-01": 1262.35274432286, - "2031-01-01": 1238.02748860062, - "2030-01-01": 1214.02230203261, - "2029-01-01": 1190.33718461885, - "2028-01-01": 1166.97213635932, - "2027-01-01": 1143.28701894556, - "2026-01-01": 1115.79307859633, - "2025-01-01": 1098.99318213886, - "2024-01-01": 1075.14269566207, - "2023-01-01": 1017, - "2015-01-01": 1017 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1396.77392113039, - "2034-01-01": 1369.7266613619, - "2033-01-01": 1343.01331838069, - "2032-01-01": 1316.967808974, - "2031-01-01": 1291.59013314184, - "2030-01-01": 1266.54637409695, - "2029-01-01": 1241.83653183933, - "2028-01-01": 1217.46060636897, - "2027-01-01": 1192.75076411134, - "2026-01-01": 1164.06731208526, - "2025-01-01": 1146.54057644969, - "2024-01-01": 1121.65821051864, - "2023-01-01": 1061, - "2015-01-01": 1061 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1452.06563148616, - "2034-01-01": 1423.94769790969, - "2033-01-01": 1396.17689931564, - "2032-01-01": 1369.10037068645, - "2031-01-01": 1342.71811202211, - "2030-01-01": 1316.68298834019, - "2029-01-01": 1290.9949996407, - "2028-01-01": 1265.65414592363, - "2027-01-01": 1239.96615722414, - "2026-01-01": 1210.14726223378, - "2025-01-01": 1191.92672556457, - "2024-01-01": 1166.05938379082, - "2023-01-01": 1103, - "2015-01-01": 1103 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1773.28413926732, - "2034-01-01": 1738.94610071111, - "2033-01-01": 1705.03198855682, - "2032-01-01": 1671.96572920639, - "2031-01-01": 1639.74732265982, - "2030-01-01": 1607.95284251517, - "2029-01-01": 1576.58228877245, - "2028-01-01": 1545.63566143167, - "2027-01-01": 1514.26510768895, - "2026-01-01": 1477.84982976328, - "2025-01-01": 1455.59863947006, - "2024-01-01": 1424.00905708634, - "2023-01-01": 1347, - "2015-01-01": 1347 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 389.674911078788, - "2034-01-01": 382.129209955819, - "2033-01-01": 374.676665636836, - "2032-01-01": 367.410434925828, - "2031-01-01": 360.330517822795, - "2030-01-01": 353.343757523749, - "2029-01-01": 346.450154028691, - "2028-01-01": 339.649707337619, - "2027-01-01": 332.756103842561, - "2026-01-01": 324.753934380054, - "2025-01-01": 319.864289000101, - "2024-01-01": 312.922554489649, - "2023-01-01": 296, - "2015-01-01": 296 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 560.815919322851, - "2034-01-01": 549.95622784182, - "2033-01-01": 539.230606625987, - "2032-01-01": 528.773125940551, - "2031-01-01": 518.58378578551, - "2030-01-01": 508.528515895666, - "2029-01-01": 498.607316271021, - "2028-01-01": 488.820186911574, - "2027-01-01": 478.898987286929, - "2026-01-01": 467.382351506428, - "2025-01-01": 460.345226736632, - "2024-01-01": 450.354757474968, - "2023-01-01": 426, - "2015-01-01": 426 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 646.386423444882, - "2034-01-01": 633.869736784821, - "2033-01-01": 621.507577120563, - "2032-01-01": 609.454471447911, - "2031-01-01": 597.710419766867, - "2030-01-01": 586.120895081625, - "2029-01-01": 574.685897392186, - "2028-01-01": 563.405426698551, - "2027-01-01": 551.970429009113, - "2026-01-01": 538.696560069616, - "2025-01-01": 530.585695604898, - "2024-01-01": 519.070858967627, - "2023-01-01": 491, - "2015-01-01": 491 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 720.108703919247, - "2034-01-01": 706.164452181867, - "2033-01-01": 692.392351700505, - "2032-01-01": 678.964553731176, - "2031-01-01": 665.881058273882, - "2030-01-01": 652.969714072605, - "2029-01-01": 640.230521127344, - "2028-01-01": 627.663479438101, - "2027-01-01": 614.92428649284, - "2026-01-01": 600.136493600977, - "2025-01-01": 591.100561091403, - "2024-01-01": 578.272423330534, - "2023-01-01": 547, - "2015-01-01": 547 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 784.615699334317, - "2034-01-01": 769.422328154283, - "2033-01-01": 754.416529457954, - "2032-01-01": 739.785875729033, - "2031-01-01": 725.53036696752, - "2030-01-01": 711.462430689712, - "2029-01-01": 697.582066895607, - "2028-01-01": 683.889275585207, - "2027-01-01": 670.008911791102, - "2026-01-01": 653.896435440919, - "2025-01-01": 644.051068392096, - "2024-01-01": 630.073792148077, - "2023-01-01": 596, - "2015-01-01": 596 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 841.223878984276, - "2034-01-01": 824.93434176273, - "2033-01-01": 808.845909938981, - "2032-01-01": 793.159688910826, - "2031-01-01": 777.875678678264, - "2030-01-01": 762.7927738435, - "2029-01-01": 747.910974406532, - "2028-01-01": 733.230280367361, - "2027-01-01": 718.348480930393, - "2026-01-01": 701.073527259643, - "2025-01-01": 690.517840104948, - "2024-01-01": 675.532136212452, - "2023-01-01": 639, - "2015-01-01": 639 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 893.88265075168, - "2034-01-01": 876.573424189192, - "2033-01-01": 859.477891781797, - "2032-01-01": 842.809747684586, - "2031-01-01": 826.568991897561, - "2030-01-01": 810.541930265628, - "2029-01-01": 794.728562788787, - "2028-01-01": 779.128889467039, - "2027-01-01": 763.315521990199, - "2026-01-01": 744.959194067758, - "2025-01-01": 733.742744023881, - "2024-01-01": 717.818967900242, - "2023-01-01": 679, - "2015-01-01": 679 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 942.592014636528, - "2034-01-01": 924.339575433669, - "2033-01-01": 906.312474986401, - "2032-01-01": 888.736052050315, - "2031-01-01": 871.61030662541, - "2030-01-01": 854.709899956097, - "2029-01-01": 838.034832042373, - "2028-01-01": 821.585102884241, - "2027-01-01": 804.910034970519, - "2026-01-01": 785.553435865265, - "2025-01-01": 773.725780148894, - "2024-01-01": 756.934287211449, - "2023-01-01": 716, - "2015-01-01": 716 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 987.351970638822, - "2034-01-01": 968.232795496162, - "2033-01-01": 949.349659552794, - "2032-01-01": 930.938602008011, - "2031-01-01": 912.999622861813, - "2030-01-01": 895.296682914906, - "2029-01-01": 877.829782167291, - "2028-01-01": 860.598920618968, - "2027-01-01": 843.132019871353, - "2026-01-01": 822.856252652163, - "2025-01-01": 810.466948479986, - "2024-01-01": 792.87809414607, - "2023-01-01": 750, - "2015-01-01": 750 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1047.90955817134, - "2034-01-01": 1027.61774028659, - "2033-01-01": 1007.57643867203, - "2032-01-01": 988.036169597836, - "2031-01-01": 968.996933064004, - "2030-01-01": 950.208212800353, - "2029-01-01": 931.670008806884, - "2028-01-01": 913.382321083598, - "2027-01-01": 894.84411709013, - "2026-01-01": 873.324769481495, - "2025-01-01": 860.175587986759, - "2024-01-01": 841.507950587029, - "2023-01-01": 796, - "2015-01-01": 796 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1124.26477723407, - "2034-01-01": 1102.49440980496, - "2033-01-01": 1080.99281234412, - "2032-01-01": 1060.02875481979, - "2031-01-01": 1039.60223723198, - "2030-01-01": 1019.44448961244, - "2029-01-01": 999.555511961155, - "2028-01-01": 979.935304278132, - "2027-01-01": 960.046326626848, - "2026-01-01": 936.958986353263, - "2025-01-01": 922.851698669211, - "2024-01-01": 902.823856534325, - "2023-01-01": 854, - "2015-01-01": 854 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1195.35411912007, - "2034-01-01": 1172.20717108069, - "2033-01-01": 1149.34598783192, - "2032-01-01": 1127.05633416437, - "2031-01-01": 1105.33821007803, - "2030-01-01": 1083.90585078231, - "2029-01-01": 1062.7592562772, - "2028-01-01": 1041.8984265627, - "2027-01-01": 1020.75183205759, - "2026-01-01": 996.204636544218, - "2025-01-01": 981.20531895977, - "2024-01-01": 959.911079312842, - "2023-01-01": 908, - "2015-01-01": 908 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1261.17758382932, - "2034-01-01": 1236.75602411376, - "2033-01-01": 1212.63596513544, - "2032-01-01": 1189.11890763157, - "2031-01-01": 1166.20485160216, - "2030-01-01": 1143.59229630997, - "2029-01-01": 1121.28124175502, - "2028-01-01": 1099.2716879373, - "2027-01-01": 1076.96063338234, - "2026-01-01": 1051.06172005436, - "2025-01-01": 1035.23644885844, - "2024-01-01": 1012.76961892258, - "2023-01-01": 958, - "2015-01-01": 958 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1321.73517136184, - "2034-01-01": 1296.1409689042, - "2033-01-01": 1270.86274425467, - "2032-01-01": 1246.21647522139, - "2031-01-01": 1222.20216180435, - "2030-01-01": 1198.50382619542, - "2029-01-01": 1175.12146839461, - "2028-01-01": 1152.05508840193, - "2027-01-01": 1128.67273060112, - "2026-01-01": 1101.5302368837, - "2025-01-01": 1084.94508836521, - "2024-01-01": 1061.39947536354, - "2023-01-01": 1004, - "2015-01-01": 1004 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1384.92569748272, - "2034-01-01": 1358.10786781595, - "2033-01-01": 1331.62112246605, - "2032-01-01": 1305.7965457499, - "2031-01-01": 1280.6341376675, - "2030-01-01": 1255.80281390197, - "2029-01-01": 1231.30257445332, - "2028-01-01": 1207.13341932154, - "2027-01-01": 1182.63317987289, - "2026-01-01": 1154.19303705343, - "2025-01-01": 1136.81497306793, - "2024-01-01": 1112.14367338889, - "2023-01-01": 1052, - "2015-01-01": 1052 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1453.38210078035, - "2034-01-01": 1425.23867497035, - "2033-01-01": 1397.44269886171, - "2032-01-01": 1370.34162215579, - "2031-01-01": 1343.93544485259, - "2030-01-01": 1317.87671725074, - "2029-01-01": 1292.16543935025, - "2028-01-01": 1266.80161115112, - "2027-01-01": 1241.09033325063, - "2026-01-01": 1211.24440390398, - "2025-01-01": 1193.00734816254, - "2024-01-01": 1167.11655458302, - "2023-01-01": 1104, - "2015-01-01": 1104 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1516.57262690123, - "2034-01-01": 1487.2055738821, - "2033-01-01": 1458.20107707309, - "2032-01-01": 1429.92169268431, - "2031-01-01": 1402.36742071574, - "2030-01-01": 1375.1757049573, - "2029-01-01": 1348.34654540896, - "2028-01-01": 1321.87994207073, - "2027-01-01": 1295.0507825224, - "2026-01-01": 1263.90720407372, - "2025-01-01": 1244.87723286526, - "2024-01-01": 1217.86075260836, - "2023-01-01": 1152, - "2015-01-01": 1152 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1575.81374513956, - "2034-01-01": 1545.29954161187, - "2033-01-01": 1515.16205664626, - "2032-01-01": 1485.77800880479, - "2031-01-01": 1457.14739808745, - "2030-01-01": 1428.89350593219, - "2029-01-01": 1401.016332339, - "2028-01-01": 1373.51587730787, - "2027-01-01": 1345.63870371468, - "2026-01-01": 1313.27857923285, - "2025-01-01": 1293.50524977406, - "2024-01-01": 1265.43343825713, - "2023-01-01": 1197, - "2015-01-01": 1197 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1924.67810809861, - "2034-01-01": 1887.40846268719, - "2033-01-01": 1850.59893635491, - "2032-01-01": 1814.70964818095, - "2031-01-01": 1779.74059816529, - "2030-01-01": 1745.23166722879, - "2029-01-01": 1711.18285537144, - "2028-01-01": 1677.59416259324, - "2027-01-01": 1643.54535073589, - "2026-01-01": 1604.02112183662, - "2025-01-01": 1579.87023823699, - "2024-01-01": 1545.58369818874, - "2023-01-01": 1462, - "2015-01-01": 1462 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 409.421950491565, - "2034-01-01": 401.493865865742, - "2033-01-01": 393.663658827892, - "2032-01-01": 386.029206965989, - "2031-01-01": 378.590510280032, - "2030-01-01": 371.249691182048, - "2029-01-01": 364.006749672037, - "2028-01-01": 356.861685749999, - "2027-01-01": 349.618744239988, - "2026-01-01": 341.211059433097, - "2025-01-01": 336.073627969701, - "2024-01-01": 328.780116372571, - "2023-01-01": 311, - "2015-01-01": 311 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 588.461774500738, - "2034-01-01": 577.066746115713, - "2033-01-01": 565.812397093466, - "2032-01-01": 554.839406796775, - "2031-01-01": 544.14777522564, - "2030-01-01": 533.596823017284, - "2029-01-01": 523.186550171705, - "2028-01-01": 512.916956688905, - "2027-01-01": 502.506683843327, - "2026-01-01": 490.422326580689, - "2025-01-01": 483.038301294072, - "2024-01-01": 472.555344111058, - "2023-01-01": 447, - "2015-01-01": 447 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 677.981686505324, - "2034-01-01": 664.853186240698, - "2033-01-01": 651.886766226252, - "2032-01-01": 639.244506712168, - "2031-01-01": 626.926407698445, - "2030-01-01": 614.770388934902, - "2029-01-01": 602.77645042154, - "2028-01-01": 590.944592158358, - "2027-01-01": 578.950653644996, - "2026-01-01": 565.027960154485, - "2025-01-01": 556.520637956257, - "2024-01-01": 544.442957980302, - "2023-01-01": 515, - "2015-01-01": 515 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 755.653374862245, - "2034-01-01": 741.020832819729, - "2033-01-01": 726.568939444405, - "2032-01-01": 712.478343403465, - "2031-01-01": 698.749044696907, - "2030-01-01": 685.200394657541, - "2029-01-01": 671.832393285366, - "2028-01-01": 658.645040580384, - "2027-01-01": 645.277039208209, - "2026-01-01": 629.759318696455, - "2025-01-01": 620.277371236683, - "2024-01-01": 606.816034719793, - "2023-01-01": 574, - "2015-01-01": 574 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 822.793308865685, - "2034-01-01": 806.860662913468, - "2033-01-01": 791.124716293995, - "2032-01-01": 775.782168340009, - "2031-01-01": 760.83301905151, - "2030-01-01": 746.080569095755, - "2029-01-01": 731.524818472742, - "2028-01-01": 717.165767182473, - "2027-01-01": 702.610016559461, - "2026-01-01": 685.713543876802, - "2025-01-01": 675.389123733322, - "2024-01-01": 660.731745121725, - "2023-01-01": 625, - "2015-01-01": 625 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 883.350896398199, - "2034-01-01": 866.2456077039, - "2033-01-01": 849.351495413234, - "2032-01-01": 832.879735929834, - "2031-01-01": 816.830329253702, - "2030-01-01": 800.992098981202, - "2029-01-01": 785.365045112336, - "2028-01-01": 769.949167647103, - "2027-01-01": 754.322113778237, - "2026-01-01": 736.182060706135, - "2025-01-01": 725.097763240094, - "2024-01-01": 709.361601562684, - "2023-01-01": 671, - "2015-01-01": 671 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 938.642606753973, - "2034-01-01": 920.466644251685, - "2033-01-01": 902.51507634819, - "2032-01-01": 885.012297642283, - "2031-01-01": 867.958308133963, - "2030-01-01": 851.128713224437, - "2029-01-01": 834.523512913704, - "2028-01-01": 818.142707201766, - "2027-01-01": 801.537506891033, - "2026-01-01": 782.262010854656, - "2025-01-01": 770.483912354974, - "2024-01-01": 753.762774834864, - "2023-01-01": 713, - "2015-01-01": 713 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 988.668439933007, - "2034-01-01": 969.523772556824, - "2033-01-01": 950.615459098865, - "2032-01-01": 932.179853477355, - "2031-01-01": 914.216955692295, - "2030-01-01": 896.490411825459, - "2029-01-01": 879.000221876847, - "2028-01-01": 861.74638584646, - "2027-01-01": 844.256195897848, - "2026-01-01": 823.953394322366, - "2025-01-01": 811.54757107796, - "2024-01-01": 793.935264938265, - "2023-01-01": 751, - "2015-01-01": 751 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1036.06133452367, - "2034-01-01": 1015.99894674064, - "2033-01-01": 996.184242757399, - "2032-01-01": 976.86490637374, - "2031-01-01": 958.040937589662, - "2030-01-01": 939.464652605375, - "2029-01-01": 921.136051420877, - "2028-01-01": 903.05513403617, - "2027-01-01": 884.726532851673, - "2026-01-01": 863.450494449669, - "2025-01-01": 850.449984604999, - "2024-01-01": 831.993413457277, - "2023-01-01": 787, - "2015-01-01": 787 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1099.25186064455, - "2034-01-01": 1077.96584565239, - "2033-01-01": 1056.94262096878, - "2032-01-01": 1036.44497690225, - "2031-01-01": 1016.47291345282, - "2030-01-01": 996.763640311928, - "2029-01-01": 977.317157479584, - "2028-01-01": 958.133464955784, - "2027-01-01": 938.68698212344, - "2026-01-01": 916.113294619408, - "2025-01-01": 902.319869307718, - "2024-01-01": 882.737611482625, - "2023-01-01": 835, - "2015-01-01": 835 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1179.55648758985, - "2034-01-01": 1156.71544635275, - "2033-01-01": 1134.15639327907, - "2032-01-01": 1112.16131653224, - "2031-01-01": 1090.73021611225, - "2030-01-01": 1069.58110385567, - "2029-01-01": 1048.71397976252, - "2028-01-01": 1028.12884383279, - "2027-01-01": 1007.26171973964, - "2026-01-01": 983.038936501784, - "2025-01-01": 968.23784778409, - "2024-01-01": 947.225029806505, - "2023-01-01": 896, - "2015-01-01": 896 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1254.5952373584, - "2034-01-01": 1230.30113881046, - "2033-01-01": 1206.30696740508, - "2032-01-01": 1182.91265028485, - "2031-01-01": 1160.11818744974, - "2030-01-01": 1137.62365175721, - "2029-01-01": 1115.42904320724, - "2028-01-01": 1093.53436179984, - "2027-01-01": 1071.33975324987, - "2026-01-01": 1045.57601170335, - "2025-01-01": 1029.83333586857, - "2024-01-01": 1007.48376496161, - "2023-01-01": 953, - "2015-01-01": 953 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1323.05164065602, - "2034-01-01": 1297.43194596486, - "2033-01-01": 1272.12854380074, - "2032-01-01": 1247.45772669074, - "2031-01-01": 1223.41949463483, - "2030-01-01": 1199.69755510597, - "2029-01-01": 1176.29190810417, - "2028-01-01": 1153.20255362942, - "2027-01-01": 1129.79690662761, - "2026-01-01": 1102.6273785539, - "2025-01-01": 1086.02571096318, - "2024-01-01": 1062.45664615573, - "2023-01-01": 1005, - "2015-01-01": 1005 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1387.55863607109, - "2034-01-01": 1360.68982193727, - "2033-01-01": 1334.15272155819, - "2032-01-01": 1308.27904868859, - "2031-01-01": 1283.06880332847, - "2030-01-01": 1258.19027172308, - "2029-01-01": 1233.64345387243, - "2028-01-01": 1209.42834977652, - "2027-01-01": 1184.88153192588, - "2026-01-01": 1156.38732039384, - "2025-01-01": 1138.97621826387, - "2024-01-01": 1114.25801497328, - "2023-01-01": 1054, - "2015-01-01": 1054 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1453.38210078035, - "2034-01-01": 1425.23867497035, - "2033-01-01": 1397.44269886171, - "2032-01-01": 1370.34162215579, - "2031-01-01": 1343.93544485259, - "2030-01-01": 1317.87671725074, - "2029-01-01": 1292.16543935025, - "2028-01-01": 1266.80161115112, - "2027-01-01": 1241.09033325063, - "2026-01-01": 1211.24440390398, - "2025-01-01": 1193.00734816254, - "2024-01-01": 1167.11655458302, - "2023-01-01": 1104, - "2015-01-01": 1104 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1524.47144266634, - "2034-01-01": 1494.95143624607, - "2033-01-01": 1465.79587434951, - "2032-01-01": 1437.36920150037, - "2031-01-01": 1409.67141769864, - "2030-01-01": 1382.33807842061, - "2029-01-01": 1355.3691836663, - "2028-01-01": 1328.76473343569, - "2027-01-01": 1301.79583868137, - "2026-01-01": 1270.49005409494, - "2025-01-01": 1251.3609684531, - "2024-01-01": 1224.20377736153, - "2023-01-01": 1158, - "2015-01-01": 1158 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1590.2949073756, - "2034-01-01": 1559.50028927915, - "2033-01-01": 1529.08585165303, - "2032-01-01": 1499.43177496757, - "2031-01-01": 1470.53805922276, - "2030-01-01": 1442.02452394828, - "2029-01-01": 1413.89116914412, - "2028-01-01": 1386.13799481028, - "2027-01-01": 1358.00464000613, - "2026-01-01": 1325.34713760508, - "2025-01-01": 1305.39209835176, - "2024-01-01": 1277.06231697127, - "2023-01-01": 1208, - "2015-01-01": 1208 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1653.48543349648, - "2034-01-01": 1621.46718819091, - "2033-01-01": 1589.84422986441, - "2032-01-01": 1559.01184549608, - "2031-01-01": 1528.97003508592, - "2030-01-01": 1499.32351165483, - "2029-01-01": 1470.07227520282, - "2028-01-01": 1441.2163257299, - "2027-01-01": 1411.96508927789, - "2026-01-01": 1378.00993777482, - "2025-01-01": 1357.26198305448, - "2024-01-01": 1327.80651499662, - "2023-01-01": 1256, - "2015-01-01": 1256 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2020.78036657412, - "2034-01-01": 1981.64978811548, - "2033-01-01": 1943.00230321805, - "2032-01-01": 1905.32100544306, - "2031-01-01": 1868.60589479051, - "2030-01-01": 1832.37387769917, - "2029-01-01": 1796.62495416905, - "2028-01-01": 1761.35912420015, - "2027-01-01": 1725.61020067004, - "2026-01-01": 1684.11246376143, - "2025-01-01": 1658.75568788904, - "2024-01-01": 1622.75716601896, - "2023-01-01": 1535, - "2015-01-01": 1535 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 423.903112727601, - "2034-01-01": 415.694613533019, - "2033-01-01": 407.587453834666, - "2032-01-01": 399.682973128773, - "2031-01-01": 391.981171415338, - "2030-01-01": 384.380709198133, - "2029-01-01": 376.881586477157, - "2028-01-01": 369.48380325241, - "2027-01-01": 361.984680531434, - "2026-01-01": 353.279617805329, - "2025-01-01": 347.960476547407, - "2024-01-01": 340.408995086713, - "2023-01-01": 322, - "2015-01-01": 322 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 608.208813913514, - "2034-01-01": 596.431402025636, - "2033-01-01": 584.799390284521, - "2032-01-01": 573.458178836935, - "2031-01-01": 562.407767682877, - "2030-01-01": 551.502756675582, - "2029-01-01": 540.743145815051, - "2028-01-01": 530.128935101284, - "2027-01-01": 519.369324240754, - "2026-01-01": 506.879451633732, - "2025-01-01": 499.247640263672, - "2024-01-01": 488.412905993979, - "2023-01-01": 462, - "2015-01-01": 462 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 701.678133800656, - "2034-01-01": 688.090773332606, - "2033-01-01": 674.671158055519, - "2032-01-01": 661.58703316036, - "2031-01-01": 648.838398647128, - "2030-01-01": 636.25750932486, - "2029-01-01": 623.844365193555, - "2028-01-01": 611.598966253213, - "2027-01-01": 599.185822121908, - "2026-01-01": 584.776510218137, - "2025-01-01": 575.971844719777, - "2024-01-01": 563.472032239807, - "2023-01-01": 533, - "2015-01-01": 533 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 780.666291451762, - "2034-01-01": 765.549396972299, - "2033-01-01": 750.619130819743, - "2032-01-01": 736.062121321001, - "2031-01-01": 721.878368476073, - "2030-01-01": 707.881243958052, - "2029-01-01": 694.070747766938, - "2028-01-01": 680.446879902731, - "2027-01-01": 666.636383711617, - "2026-01-01": 650.60501043031, - "2025-01-01": 640.809200598176, - "2024-01-01": 626.902279771493, - "2023-01-01": 593, - "2015-01-01": 593 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 850.439164043572, - "2034-01-01": 833.971181187361, - "2033-01-01": 817.706506761474, - "2032-01-01": 801.848449196234, - "2031-01-01": 786.397008491641, - "2030-01-01": 771.148876217372, - "2029-01-01": 756.104052373426, - "2028-01-01": 741.262536959804, - "2027-01-01": 726.217713115859, - "2026-01-01": 708.753518951063, - "2025-01-01": 698.082198290762, - "2024-01-01": 682.932331757815, - "2023-01-01": 646, - "2015-01-01": 646 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 913.629690164456, - "2034-01-01": 895.938080099115, - "2033-01-01": 878.464884972853, - "2032-01-01": 861.428519724747, - "2031-01-01": 844.828984354797, - "2030-01-01": 828.447863923926, - "2029-01-01": 812.285158432133, - "2028-01-01": 796.340867879418, - "2027-01-01": 780.178162387626, - "2026-01-01": 761.416319120801, - "2025-01-01": 749.952082993481, - "2024-01-01": 733.676529783164, - "2023-01-01": 694, - "2015-01-01": 694 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 970.237869814415, - "2034-01-01": 951.450093707562, - "2033-01-01": 932.894265453879, - "2032-01-01": 914.802332906539, - "2031-01-01": 897.174296065541, - "2030-01-01": 879.778207077714, - "2029-01-01": 862.614065943058, - "2028-01-01": 845.681872661573, - "2027-01-01": 828.517731526917, - "2026-01-01": 808.593410939525, - "2025-01-01": 796.418854706333, - "2024-01-01": 779.134873847538, - "2023-01-01": 737, - "2015-01-01": 737 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1022.89664158182, - "2034-01-01": 1003.08917613402, - "2033-01-01": 983.526247296695, - "2032-01-01": 964.4523916803, - "2031-01-01": 945.867609284838, - "2030-01-01": 927.527363499842, - "2029-01-01": 909.431654325313, - "2028-01-01": 891.580481761251, - "2027-01-01": 873.484772586722, - "2026-01-01": 852.479077747641, - "2025-01-01": 839.643758625266, - "2024-01-01": 821.421705535329, - "2023-01-01": 777, - "2015-01-01": 777 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1072.92247476085, - "2034-01-01": 1052.14630443916, - "2033-01-01": 1031.62663004737, - "2032-01-01": 1011.61994751537, - "2031-01-01": 992.12625684317, - "2030-01-01": 972.889062100864, - "2029-01-01": 953.908363288456, - "2028-01-01": 935.184160405945, - "2027-01-01": 916.203461593537, - "2026-01-01": 894.17046121535, - "2025-01-01": 880.707417348252, - "2024-01-01": 861.59419563873, - "2023-01-01": 815, - "2015-01-01": 815 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1137.42947017592, - "2034-01-01": 1115.40418041158, - "2033-01-01": 1093.65080780482, - "2032-01-01": 1072.44126951323, - "2031-01-01": 1051.77556553681, - "2030-01-01": 1031.38177871797, - "2029-01-01": 1011.25990905672, - "2028-01-01": 991.409956553051, - "2027-01-01": 971.288086891799, - "2026-01-01": 947.930403055291, - "2025-01-01": 933.657924648944, - "2024-01-01": 913.395564456273, - "2023-01-01": 864, - "2015-01-01": 864 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1220.36703570958, - "2034-01-01": 1196.73573523326, - "2033-01-01": 1173.39617920725, - "2032-01-01": 1150.6401120819, - "2031-01-01": 1128.4675338572, - "2030-01-01": 1106.58670008282, - "2029-01-01": 1084.99761075877, - "2028-01-01": 1063.70026588504, - "2027-01-01": 1042.11117656099, - "2026-01-01": 1017.05032827807, - "2025-01-01": 1001.73714832126, - "2024-01-01": 979.997324364543, - "2023-01-01": 927, - "2015-01-01": 927 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1298.0387240665, - "2034-01-01": 1272.90338181229, - "2033-01-01": 1248.07835242541, - "2032-01-01": 1223.8739487732, - "2031-01-01": 1200.29017085566, - "2030-01-01": 1177.01670580546, - "2029-01-01": 1154.0535536226, - "2028-01-01": 1131.40071430707, - "2027-01-01": 1108.43756212421, - "2026-01-01": 1081.78168682004, - "2025-01-01": 1065.49388160169, - "2024-01-01": 1042.37040110403, - "2023-01-01": 986, - "2015-01-01": 986 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1369.1280659525, - "2034-01-01": 1342.61614308801, - "2033-01-01": 1316.43152791321, - "2032-01-01": 1290.90152811778, - "2031-01-01": 1266.02614370171, - "2030-01-01": 1241.47806697534, - "2029-01-01": 1217.25729793864, - "2028-01-01": 1193.36383659164, - "2027-01-01": 1169.14306755494, - "2026-01-01": 1141.027337011, - "2025-01-01": 1123.84750189225, - "2024-01-01": 1099.45762388255, - "2023-01-01": 1040, - "2015-01-01": 1040 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1434.95153066175, - "2034-01-01": 1407.16499612109, - "2033-01-01": 1379.72150521673, - "2032-01-01": 1352.96410158498, - "2031-01-01": 1326.89278522583, - "2030-01-01": 1301.164512503, - "2029-01-01": 1275.77928341646, - "2028-01-01": 1250.73709796623, - "2027-01-01": 1225.3518688797, - "2026-01-01": 1195.88442052114, - "2025-01-01": 1177.87863179091, - "2024-01-01": 1152.31616349229, - "2023-01-01": 1090, - "2015-01-01": 1090 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1504.72440325356, - "2034-01-01": 1475.58678033615, - "2033-01-01": 1446.80888115846, - "2032-01-01": 1418.75042946021, - "2031-01-01": 1391.4114252414, - "2030-01-01": 1364.43214476232, - "2029-01-01": 1337.81258802295, - "2028-01-01": 1311.55275502331, - "2027-01-01": 1284.93319828394, - "2026-01-01": 1254.0329290419, - "2025-01-01": 1235.1516294835, - "2024-01-01": 1208.34621547861, - "2023-01-01": 1143, - "2015-01-01": 1143 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1577.13021443374, - "2034-01-01": 1546.59051867254, - "2033-01-01": 1516.42785619233, - "2032-01-01": 1487.01926027413, - "2031-01-01": 1458.36473091794, - "2030-01-01": 1430.08723484274, - "2029-01-01": 1402.18677204855, - "2028-01-01": 1374.66334253536, - "2027-01-01": 1346.76287974117, - "2026-01-01": 1314.37572090305, - "2025-01-01": 1294.58587237203, - "2024-01-01": 1266.49060904932, - "2023-01-01": 1198, - "2015-01-01": 1198 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1645.58661773137, - "2034-01-01": 1613.72132582694, - "2033-01-01": 1582.24943258799, - "2032-01-01": 1551.56433668002, - "2031-01-01": 1521.66603810302, - "2030-01-01": 1492.16113819151, - "2029-01-01": 1463.04963694548, - "2028-01-01": 1434.33153436495, - "2027-01-01": 1405.22003311892, - "2026-01-01": 1371.4270877536, - "2025-01-01": 1350.77824746664, - "2024-01-01": 1321.46349024345, - "2023-01-01": 1250, - "2015-01-01": 1250 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1711.41008244062, - "2034-01-01": 1678.27017886001, - "2033-01-01": 1645.53940989151, - "2032-01-01": 1613.62691014722, - "2031-01-01": 1582.53267962714, - "2030-01-01": 1551.84758371917, - "2029-01-01": 1521.5716224233, - "2028-01-01": 1491.70479573954, - "2027-01-01": 1461.42883444368, - "2026-01-01": 1426.28417126375, - "2025-01-01": 1404.80937736531, - "2024-01-01": 1374.32202985319, - "2023-01-01": 1300, - "2015-01-01": 1300 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2090.55323916593, - "2034-01-01": 2050.07157233054, - "2033-01-01": 2010.08967915978, - "2032-01-01": 1971.1073333183, - "2031-01-01": 1933.12453480608, - "2030-01-01": 1895.64150995849, - "2029-01-01": 1858.65825877554, - "2028-01-01": 1822.17478125723, - "2027-01-01": 1785.19153007428, - "2026-01-01": 1742.26097228218, - "2025-01-01": 1716.02868558162, - "2024-01-01": 1678.78721800528, - "2023-01-01": 1588, - "2015-01-01": 1588 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 434.434867081081, - "2034-01-01": 426.022430018311, - "2033-01-01": 417.71385020323, - "2032-01-01": 409.612984883525, - "2031-01-01": 401.719834059198, - "2030-01-01": 393.930540482559, - "2029-01-01": 386.245104153608, - "2028-01-01": 378.663525072346, - "2027-01-01": 370.978088743395, - "2026-01-01": 362.056751166952, - "2025-01-01": 356.605457331194, - "2024-01-01": 348.866361424271, - "2023-01-01": 330, - "2015-01-01": 330 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 624.006445443735, - "2034-01-01": 611.923126753574, - "2033-01-01": 599.988984837366, - "2032-01-01": 588.353196469063, - "2031-01-01": 577.015761648666, - "2030-01-01": 565.82750360222, - "2029-01-01": 554.788422329728, - "2028-01-01": 543.898517831188, - "2027-01-01": 532.859436558695, - "2026-01-01": 520.045151676167, - "2025-01-01": 512.215111439351, - "2024-01-01": 501.098955500316, - "2023-01-01": 474, - "2015-01-01": 474 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 720.108703919247, - "2034-01-01": 706.164452181867, - "2033-01-01": 692.392351700505, - "2032-01-01": 678.964553731176, - "2031-01-01": 665.881058273882, - "2030-01-01": 652.969714072605, - "2029-01-01": 640.230521127344, - "2028-01-01": 627.663479438101, - "2027-01-01": 614.92428649284, - "2026-01-01": 600.136493600977, - "2025-01-01": 591.100561091403, - "2024-01-01": 578.272423330534, - "2023-01-01": 547, - "2015-01-01": 547 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 801.729800158723, - "2034-01-01": 786.205029942884, - "2033-01-01": 770.871923556869, - "2032-01-01": 755.922144830505, - "2031-01-01": 741.355693763792, - "2030-01-01": 726.980906526904, - "2029-01-01": 712.79778311984, - "2028-01-01": 698.806323542602, - "2027-01-01": 684.623200135539, - "2026-01-01": 668.159277153556, - "2025-01-01": 658.099162165749, - "2024-01-01": 643.817012446609, - "2023-01-01": 609, - "2015-01-01": 609 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 874.135611338903, - "2034-01-01": 857.208768279269, - "2033-01-01": 840.490898590741, - "2032-01-01": 824.190975644426, - "2031-01-01": 808.308999440325, - "2030-01-01": 792.63599660733, - "2029-01-01": 777.171967145441, - "2028-01-01": 761.91691105466, - "2027-01-01": 746.452881592771, - "2026-01-01": 728.502069014715, - "2025-01-01": 717.533405054281, - "2024-01-01": 701.961406017321, - "2023-01-01": 664, - "2015-01-01": 664 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 937.326137459788, - "2034-01-01": 919.175667191023, - "2033-01-01": 901.24927680212, - "2032-01-01": 883.771046172939, - "2031-01-01": 866.740975303481, - "2030-01-01": 849.934984313884, - "2029-01-01": 833.353073204148, - "2028-01-01": 816.995241974274, - "2027-01-01": 800.413330864538, - "2026-01-01": 781.164869184453, - "2025-01-01": 769.403289757, - "2024-01-01": 752.705604042669, - "2023-01-01": 712, - "2015-01-01": 712 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 996.567255698117, - "2034-01-01": 977.269634920793, - "2033-01-01": 958.210256375287, - "2032-01-01": 939.627362293419, - "2031-01-01": 921.520952675189, - "2030-01-01": 903.652785288778, - "2029-01-01": 886.022860134185, - "2028-01-01": 868.631177211412, - "2027-01-01": 851.001252056819, - "2026-01-01": 830.536244343583, - "2025-01-01": 818.0313066658, - "2024-01-01": 800.278289691434, - "2023-01-01": 757, - "2015-01-01": 757 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1050.54249675971, - "2034-01-01": 1030.19969440792, - "2033-01-01": 1010.10803776417, - "2032-01-01": 990.518672536524, - "2031-01-01": 971.431598724969, - "2030-01-01": 952.59567062146, - "2029-01-01": 934.010888225997, - "2028-01-01": 915.677251538582, - "2027-01-01": 897.09246914312, - "2026-01-01": 875.519052821901, - "2025-01-01": 862.336833182705, - "2024-01-01": 843.622292171419, - "2023-01-01": 798, - "2015-01-01": 798 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1100.56832993874, - "2034-01-01": 1079.25682271306, - "2033-01-01": 1058.20842051485, - "2032-01-01": 1037.6862283716, - "2031-01-01": 1017.6902462833, - "2030-01-01": 997.957369222482, - "2029-01-01": 978.48759718914, - "2028-01-01": 959.280930183276, - "2027-01-01": 939.811158149935, - "2026-01-01": 917.210436289611, - "2025-01-01": 903.400491905691, - "2024-01-01": 883.79478227482, - "2023-01-01": 836, - "2015-01-01": 836 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1167.70826394218, - "2034-01-01": 1145.09665280679, - "2033-01-01": 1122.76419736444, - "2032-01-01": 1100.99005330814, - "2031-01-01": 1079.7742206379, - "2030-01-01": 1058.8375436607, - "2029-01-01": 1038.18002237652, - "2028-01-01": 1017.80165678537, - "2027-01-01": 997.144135501187, - "2026-01-01": 973.164661469958, - "2025-01-01": 958.512244402331, - "2024-01-01": 937.710492676752, - "2023-01-01": 887, - "2015-01-01": 887 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1253.27876806421, - "2034-01-01": 1229.01016174979, - "2033-01-01": 1205.04116785901, - "2032-01-01": 1181.6713988155, - "2031-01-01": 1158.90085461926, - "2030-01-01": 1136.42992284665, - "2029-01-01": 1114.25860349768, - "2028-01-01": 1092.38689657234, - "2027-01-01": 1070.21557722337, - "2026-01-01": 1044.47887003315, - "2025-01-01": 1028.7527132706, - "2024-01-01": 1006.42659416941, - "2023-01-01": 952, - "2015-01-01": 952 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1333.5833950095, - "2034-01-01": 1307.75976245015, - "2033-01-01": 1282.25494016931, - "2032-01-01": 1257.38773844549, - "2031-01-01": 1233.15815727869, - "2030-01-01": 1209.2473863904, - "2029-01-01": 1185.65542578062, - "2028-01-01": 1162.38227544935, - "2027-01-01": 1138.79031483957, - "2026-01-01": 1111.40451191552, - "2025-01-01": 1094.67069174697, - "2024-01-01": 1070.91401249329, - "2023-01-01": 1013, - "2015-01-01": 1013 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1405.98920618968, - "2034-01-01": 1378.76350078653, - "2033-01-01": 1351.87391520318, - "2032-01-01": 1325.65656925941, - "2031-01-01": 1300.11146295522, - "2030-01-01": 1274.90247647083, - "2029-01-01": 1250.02960980622, - "2028-01-01": 1225.49286296141, - "2027-01-01": 1200.61999629681, - "2026-01-01": 1171.74730377668, - "2025-01-01": 1154.1049346355, - "2024-01-01": 1129.058406064, - "2023-01-01": 1068, - "2015-01-01": 1068 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1474.44560948731, - "2034-01-01": 1445.89430794094, - "2033-01-01": 1417.69549159884, - "2032-01-01": 1390.2016456653, - "2031-01-01": 1363.41277014031, - "2030-01-01": 1336.97637981959, - "2029-01-01": 1310.89247470315, - "2028-01-01": 1285.16105479099, - "2027-01-01": 1259.07714967455, - "2026-01-01": 1228.79867062723, - "2025-01-01": 1210.29730973011, - "2024-01-01": 1184.03128725813, - "2023-01-01": 1120, - "2015-01-01": 1120 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1544.21848207912, - "2034-01-01": 1514.316092156, - "2033-01-01": 1484.78286754057, - "2032-01-01": 1455.98797354053, - "2031-01-01": 1427.93141015587, - "2030-01-01": 1400.24401207891, - "2029-01-01": 1372.92577930964, - "2028-01-01": 1345.97671184807, - "2027-01-01": 1318.6584790788, - "2026-01-01": 1286.94717914798, - "2025-01-01": 1267.5703074227, - "2024-01-01": 1240.06133924445, - "2023-01-01": 1173, - "2015-01-01": 1173 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1619.25723184767, - "2034-01-01": 1587.90178461371, - "2033-01-01": 1556.93344166658, - "2032-01-01": 1526.73930729314, - "2031-01-01": 1497.31938149337, - "2030-01-01": 1468.28655998045, - "2029-01-01": 1439.64084275436, - "2028-01-01": 1411.38222981511, - "2027-01-01": 1382.73651258902, - "2026-01-01": 1349.48425434955, - "2025-01-01": 1329.16579550718, - "2024-01-01": 1300.32007439956, - "2023-01-01": 1230, - "2015-01-01": 1230 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1690.34657373366, - "2034-01-01": 1657.61454588943, - "2033-01-01": 1625.28661715438, - "2032-01-01": 1593.76688663772, - "2031-01-01": 1563.05535433942, - "2030-01-01": 1532.74792115032, - "2029-01-01": 1502.8445870704, - "2028-01-01": 1473.34535209967, - "2027-01-01": 1443.44201801976, - "2026-01-01": 1408.7299045405, - "2025-01-01": 1387.51941579774, - "2024-01-01": 1357.40729717807, - "2023-01-01": 1284, - "2015-01-01": 1284 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1757.4865077371, - "2034-01-01": 1723.45437598317, - "2033-01-01": 1689.84239400397, - "2032-01-01": 1657.07071157426, - "2031-01-01": 1625.13932869403, - "2030-01-01": 1593.62809558853, - "2029-01-01": 1562.53701225778, - "2028-01-01": 1531.86607870176, - "2027-01-01": 1500.77499537101, - "2026-01-01": 1464.68412972085, - "2025-01-01": 1442.63116829438, - "2024-01-01": 1411.32300758001, - "2023-01-01": 1335, - "2015-01-01": 1335 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2145.84494952171, - "2034-01-01": 2104.29260887833, - "2033-01-01": 2063.25326009474, - "2032-01-01": 2023.23989503074, - "2031-01-01": 1984.25251368634, - "2030-01-01": 1945.77812420173, - "2029-01-01": 1907.81672657691, - "2028-01-01": 1870.36832081189, - "2027-01-01": 1832.40692318707, - "2026-01-01": 1788.3409224307, - "2025-01-01": 1761.4148346965, - "2024-01-01": 1723.18839127746, - "2023-01-01": 1630, - "2015-01-01": 1630 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 450.232498611303, - "2034-01-01": 441.51415474625, - "2033-01-01": 432.903444756074, - "2032-01-01": 424.508002515653, - "2031-01-01": 416.327828024987, - "2030-01-01": 408.255287409197, - "2029-01-01": 400.290380668285, - "2028-01-01": 392.433107802249, - "2027-01-01": 384.468201061337, - "2026-01-01": 375.222451209386, - "2025-01-01": 369.572928506874, - "2024-01-01": 361.552410930608, - "2023-01-01": 342, - "2015-01-01": 342 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 646.386423444882, - "2034-01-01": 633.869736784821, - "2033-01-01": 621.507577120563, - "2032-01-01": 609.454471447911, - "2031-01-01": 597.710419766867, - "2030-01-01": 586.120895081625, - "2029-01-01": 574.685897392186, - "2028-01-01": 563.405426698551, - "2027-01-01": 551.970429009113, - "2026-01-01": 538.696560069616, - "2025-01-01": 530.585695604898, - "2024-01-01": 519.070858967627, - "2023-01-01": 491, - "2015-01-01": 491 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 746.438089802949, - "2034-01-01": 731.983993395098, - "2033-01-01": 717.708342621913, - "2032-01-01": 703.789583118057, - "2031-01-01": 690.22771488353, - "2030-01-01": 676.844292283669, - "2029-01-01": 663.639315318472, - "2028-01-01": 650.61278398794, - "2027-01-01": 637.407807022743, - "2026-01-01": 622.079327005035, - "2025-01-01": 612.71301305087, - "2024-01-01": 599.415839174429, - "2023-01-01": 567, - "2015-01-01": 567 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 830.692124630795, - "2034-01-01": 814.606525277438, - "2033-01-01": 798.719513570418, - "2032-01-01": 783.229677156074, - "2031-01-01": 768.137016034405, - "2030-01-01": 753.242942559074, - "2029-01-01": 738.547456730081, - "2028-01-01": 724.050558547425, - "2027-01-01": 709.355072718432, - "2026-01-01": 692.29639389802, - "2025-01-01": 681.872859321162, - "2024-01-01": 667.074769874894, - "2023-01-01": 631, - "2015-01-01": 631 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 904.41440510516, - "2034-01-01": 886.901240674484, - "2033-01-01": 869.60428815036, - "2032-01-01": 852.739759439338, - "2031-01-01": 836.30765454142, - "2030-01-01": 820.091761550054, - "2029-01-01": 804.092080465238, - "2028-01-01": 788.308611286975, - "2027-01-01": 772.30893020216, - "2026-01-01": 753.736327429381, - "2025-01-01": 742.387724807668, - "2024-01-01": 726.2763342378, - "2023-01-01": 687, - "2015-01-01": 687 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 971.5543391086, - "2034-01-01": 952.741070768223, - "2033-01-01": 934.16006499995, - "2032-01-01": 916.043584375883, - "2031-01-01": 898.391628896024, - "2030-01-01": 880.971935988267, - "2029-01-01": 863.784505652614, - "2028-01-01": 846.829337889064, - "2027-01-01": 829.641907553412, - "2026-01-01": 809.690552609728, - "2025-01-01": 797.499477304307, - "2024-01-01": 780.192044639733, - "2023-01-01": 738, - "2015-01-01": 738 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1032.11192664111, - "2034-01-01": 1012.12601555865, - "2033-01-01": 992.386844119188, - "2032-01-01": 973.141151965708, - "2031-01-01": 954.388939098215, - "2030-01-01": 935.883465873715, - "2029-01-01": 917.624732292208, - "2028-01-01": 899.612738353695, - "2027-01-01": 881.354004772188, - "2026-01-01": 860.159069439061, - "2025-01-01": 847.208116811079, - "2024-01-01": 828.821901080692, - "2023-01-01": 784, - "2015-01-01": 784 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1087.40363699689, - "2034-01-01": 1066.34705210644, - "2033-01-01": 1045.55042505414, - "2032-01-01": 1025.27371367816, - "2031-01-01": 1005.51691797848, - "2030-01-01": 986.02008011695, - "2029-01-01": 966.783200093576, - "2028-01-01": 947.806277908357, - "2027-01-01": 928.569397884984, - "2026-01-01": 906.239019587582, - "2025-01-01": 892.594265925958, - "2024-01-01": 873.223074352872, - "2023-01-01": 826, - "2015-01-01": 826 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1140.06240876429, - "2034-01-01": 1117.9861345329, - "2033-01-01": 1096.18240689696, - "2032-01-01": 1074.92377245192, - "2031-01-01": 1054.21023119777, - "2030-01-01": 1033.76923653908, - "2029-01-01": 1013.60078847583, - "2028-01-01": 993.704887008035, - "2027-01-01": 973.536438944789, - "2026-01-01": 950.124686395697, - "2025-01-01": 935.819169844891, - "2024-01-01": 915.509906040663, - "2023-01-01": 866, - "2015-01-01": 866 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1208.51881206192, - "2034-01-01": 1185.1169416873, - "2033-01-01": 1162.00398329262, - "2032-01-01": 1139.46884885781, - "2031-01-01": 1117.51153838286, - "2030-01-01": 1095.84313988784, - "2029-01-01": 1074.46365337276, - "2028-01-01": 1053.37307883762, - "2027-01-01": 1031.99359232254, - "2026-01-01": 1007.17605324625, - "2025-01-01": 992.011544939503, - "2024-01-01": 970.48278723479, - "2023-01-01": 918, - "2015-01-01": 918 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1298.0387240665, - "2034-01-01": 1272.90338181229, - "2033-01-01": 1248.07835242541, - "2032-01-01": 1223.8739487732, - "2031-01-01": 1200.29017085566, - "2030-01-01": 1177.01670580546, - "2029-01-01": 1154.0535536226, - "2028-01-01": 1131.40071430707, - "2027-01-01": 1108.43756212421, - "2026-01-01": 1081.78168682004, - "2025-01-01": 1065.49388160169, - "2024-01-01": 1042.37040110403, - "2023-01-01": 986, - "2015-01-01": 986 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1379.65982030598, - "2034-01-01": 1352.9439595733, - "2033-01-01": 1326.55792428177, - "2032-01-01": 1300.83153987253, - "2031-01-01": 1275.76480634557, - "2030-01-01": 1251.02789825976, - "2029-01-01": 1226.62081561509, - "2028-01-01": 1202.54355841157, - "2027-01-01": 1178.1364757669, - "2026-01-01": 1149.80447037262, - "2025-01-01": 1132.49248267603, - "2024-01-01": 1107.91499022011, - "2023-01-01": 1048, - "2015-01-01": 1048 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1454.69857007453, - "2034-01-01": 1426.52965203101, - "2033-01-01": 1398.70849840778, - "2032-01-01": 1371.58287362514, - "2031-01-01": 1345.15277768307, - "2030-01-01": 1319.07044616129, - "2029-01-01": 1293.33587905981, - "2028-01-01": 1267.94907637861, - "2027-01-01": 1242.21450927713, - "2026-01-01": 1212.34154557419, - "2025-01-01": 1194.08797076051, - "2024-01-01": 1168.17372537521, - "2023-01-01": 1105, - "2015-01-01": 1105 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1525.78791196053, - "2034-01-01": 1496.24241330674, - "2033-01-01": 1467.06167389559, - "2032-01-01": 1438.61045296971, - "2031-01-01": 1410.88875052912, - "2030-01-01": 1383.53180733117, - "2029-01-01": 1356.53962337585, - "2028-01-01": 1329.91219866318, - "2027-01-01": 1302.92001470786, - "2026-01-01": 1271.58719576514, - "2025-01-01": 1252.44159105107, - "2024-01-01": 1225.26094815373, - "2023-01-01": 1159, - "2015-01-01": 1159 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1599.51019243489, - "2034-01-01": 1568.53712870378, - "2033-01-01": 1537.94644847553, - "2032-01-01": 1508.12053525298, - "2031-01-01": 1479.05938903614, - "2030-01-01": 1450.38062632215, - "2029-01-01": 1422.08424711101, - "2028-01-01": 1394.17025140273, - "2027-01-01": 1365.87387219159, - "2026-01-01": 1333.0271292965, - "2025-01-01": 1312.95645653758, - "2024-01-01": 1284.46251251663, - "2023-01-01": 1215, - "2015-01-01": 1215 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1677.18188079181, - "2034-01-01": 1644.70477528281, - "2033-01-01": 1612.62862169368, - "2032-01-01": 1581.35437194428, - "2031-01-01": 1550.8820260346, - "2030-01-01": 1520.81063204479, - "2029-01-01": 1491.14018997484, - "2028-01-01": 1461.87069982475, - "2027-01-01": 1432.20025775481, - "2026-01-01": 1397.75848783847, - "2025-01-01": 1376.713189818, - "2024-01-01": 1346.83558925612, - "2023-01-01": 1274, - "2015-01-01": 1274 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1749.58769197199, - "2034-01-01": 1715.7085136192, - "2033-01-01": 1682.24759672755, - "2032-01-01": 1649.6232027582, - "2031-01-01": 1617.83533171113, - "2030-01-01": 1586.46572212521, - "2029-01-01": 1555.51437400044, - "2028-01-01": 1524.98128733681, - "2027-01-01": 1494.02993921204, - "2026-01-01": 1458.10127969963, - "2025-01-01": 1436.14743270654, - "2024-01-01": 1404.97998282684, - "2023-01-01": 1329, - "2015-01-01": 1329 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1819.3605645638, - "2034-01-01": 1784.13029783426, - "2033-01-01": 1749.33497266928, - "2032-01-01": 1715.40953063343, - "2031-01-01": 1682.3539717267, - "2030-01-01": 1649.73335438453, - "2029-01-01": 1617.54767860693, - "2028-01-01": 1585.79694439388, - "2027-01-01": 1553.61126861628, - "2026-01-01": 1516.24978822039, - "2025-01-01": 1493.42043039912, - "2024-01-01": 1461.01003481316, - "2023-01-01": 1382, - "2015-01-01": 1382 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NC.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2222.20016858444, - "2034-01-01": 2179.1692783967, - "2033-01-01": 2136.66963376682, - "2032-01-01": 2095.2324802527, - "2031-01-01": 2054.85781785432, - "2030-01-01": 2015.01440101381, - "2029-01-01": 1975.70222973118, - "2028-01-01": 1936.92130400642, - "2027-01-01": 1897.60913272379, - "2026-01-01": 1851.97513930247, - "2025-01-01": 1824.09094537896, - "2024-01-01": 1784.50429722476, - "2023-01-01": 1688, - "2015-01-01": 1688 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND", - "description": null, - "label": "ND", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 425.219582021786, - "2034-01-01": 416.98559059368, - "2033-01-01": 408.853253380737, - "2032-01-01": 400.924224598117, - "2031-01-01": 393.198504245821, - "2030-01-01": 385.574438108686, - "2029-01-01": 378.052026186713, - "2028-01-01": 370.631268479902, - "2027-01-01": 363.108856557929, - "2026-01-01": 354.376759475531, - "2025-01-01": 349.041099145381, - "2024-01-01": 341.466165878908, - "2023-01-01": 323, - "2015-01-01": 323 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 598.993528854218, - "2034-01-01": 587.394562601005, - "2033-01-01": 575.938793462029, - "2032-01-01": 564.769418551527, - "2031-01-01": 553.8864378695, - "2030-01-01": 543.146654301709, - "2029-01-01": 532.550067848156, - "2028-01-01": 522.096678508841, - "2027-01-01": 511.500092055288, - "2026-01-01": 499.199459942312, - "2025-01-01": 491.683282077858, - "2024-01-01": 481.012710448616, - "2023-01-01": 455, - "2015-01-01": 455 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 685.880502270435, - "2034-01-01": 672.599048604667, - "2033-01-01": 659.481563502675, - "2032-01-01": 646.692015528232, - "2031-01-01": 634.230404681339, - "2030-01-01": 621.932762398221, - "2029-01-01": 609.799088678878, - "2028-01-01": 597.82938352331, - "2027-01-01": 585.695709803967, - "2026-01-01": 571.610810175702, - "2025-01-01": 563.004373544097, - "2024-01-01": 550.78598273347, - "2023-01-01": 521, - "2015-01-01": 521 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 759.6027827448, - "2034-01-01": 744.893764001714, - "2033-01-01": 730.366338082617, - "2032-01-01": 716.202097811497, - "2031-01-01": 702.401043188354, - "2030-01-01": 688.781581389201, - "2029-01-01": 675.343712414036, - "2028-01-01": 662.087436262859, - "2027-01-01": 648.649567287695, - "2026-01-01": 633.050743707064, - "2025-01-01": 623.519239030603, - "2024-01-01": 609.987547096377, - "2023-01-01": 577, - "2015-01-01": 577 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 825.426247454055, - "2034-01-01": 809.442617034791, - "2033-01-01": 793.656315386136, - "2032-01-01": 778.264671278698, - "2031-01-01": 763.267684712475, - "2030-01-01": 748.468026916861, - "2029-01-01": 733.865697891855, - "2028-01-01": 719.460697637457, - "2027-01-01": 704.858368612451, - "2026-01-01": 687.907827217208, - "2025-01-01": 677.550368929269, - "2024-01-01": 662.846086706115, - "2023-01-01": 627, - "2015-01-01": 627 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 883.350896398199, - "2034-01-01": 866.2456077039, - "2033-01-01": 849.351495413234, - "2032-01-01": 832.879735929834, - "2031-01-01": 816.830329253702, - "2030-01-01": 800.992098981202, - "2029-01-01": 785.365045112336, - "2028-01-01": 769.949167647103, - "2027-01-01": 754.322113778237, - "2026-01-01": 736.182060706135, - "2025-01-01": 725.097763240094, - "2024-01-01": 709.361601562684, - "2023-01-01": 671, - "2015-01-01": 671 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 936.009668165603, - "2034-01-01": 917.884690130362, - "2033-01-01": 899.983477256049, - "2032-01-01": 882.529794703595, - "2031-01-01": 865.523642472998, - "2030-01-01": 848.741255403331, - "2029-01-01": 832.182633494591, - "2028-01-01": 815.847776746782, - "2027-01-01": 799.289154838043, - "2026-01-01": 780.06772751425, - "2025-01-01": 768.322667159027, - "2024-01-01": 751.648433250475, - "2023-01-01": 711, - "2015-01-01": 711 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 984.719032050451, - "2034-01-01": 965.650841374839, - "2033-01-01": 946.818060460654, - "2032-01-01": 928.456099069323, - "2031-01-01": 910.564957200848, - "2030-01-01": 892.909225093799, - "2029-01-01": 875.488902748178, - "2028-01-01": 858.303990163984, - "2027-01-01": 840.883667818363, - "2026-01-01": 820.661969311757, - "2025-01-01": 808.30570328404, - "2024-01-01": 790.763752561681, - "2023-01-01": 748, - "2015-01-01": 748 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1029.47898805274, - "2034-01-01": 1009.54406143733, - "2033-01-01": 989.855245027047, - "2032-01-01": 970.65864902702, - "2031-01-01": 951.95427343725, - "2030-01-01": 933.496008052608, - "2029-01-01": 915.283852873095, - "2028-01-01": 897.317807898711, - "2027-01-01": 879.105652719198, - "2026-01-01": 857.964786098655, - "2025-01-01": 845.046871615132, - "2024-01-01": 826.707559496303, - "2023-01-01": 782, - "2015-01-01": 782 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1090.03657558526, - "2034-01-01": 1068.92900622776, - "2033-01-01": 1048.08202414629, - "2032-01-01": 1027.75621661684, - "2031-01-01": 1007.95158363944, - "2030-01-01": 988.407537938056, - "2029-01-01": 969.124079512689, - "2028-01-01": 950.101208363341, - "2027-01-01": 930.817749937974, - "2026-01-01": 908.433302927988, - "2025-01-01": 894.755511121905, - "2024-01-01": 875.337415937262, - "2023-01-01": 828, - "2015-01-01": 828 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1167.70826394218, - "2034-01-01": 1145.09665280679, - "2033-01-01": 1122.76419736444, - "2032-01-01": 1100.99005330814, - "2031-01-01": 1079.7742206379, - "2030-01-01": 1058.8375436607, - "2029-01-01": 1038.18002237652, - "2028-01-01": 1017.80165678537, - "2027-01-01": 997.144135501187, - "2026-01-01": 973.164661469958, - "2025-01-01": 958.512244402331, - "2024-01-01": 937.710492676752, - "2023-01-01": 887, - "2015-01-01": 887 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1238.79760582817, - "2034-01-01": 1214.80941408252, - "2033-01-01": 1191.11737285224, - "2032-01-01": 1168.01763265272, - "2031-01-01": 1145.51019348395, - "2030-01-01": 1123.29890483057, - "2029-01-01": 1101.38376669256, - "2028-01-01": 1079.76477906993, - "2027-01-01": 1057.84964093192, - "2026-01-01": 1032.41031166091, - "2025-01-01": 1016.86586469289, - "2024-01-01": 994.79771545527, - "2023-01-01": 941, - "2015-01-01": 941 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1303.30460124324, - "2034-01-01": 1278.06729005493, - "2033-01-01": 1253.14155060969, - "2032-01-01": 1228.83895465058, - "2031-01-01": 1205.15950217759, - "2030-01-01": 1181.79162144768, - "2029-01-01": 1158.73531246082, - "2028-01-01": 1135.99057521704, - "2027-01-01": 1112.93426623019, - "2026-01-01": 1086.17025350085, - "2025-01-01": 1069.81637199358, - "2024-01-01": 1046.59908427281, - "2023-01-01": 990, - "2015-01-01": 990 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1365.17865806994, - "2034-01-01": 1338.74321190603, - "2033-01-01": 1312.634129275, - "2032-01-01": 1287.17777370974, - "2031-01-01": 1262.37414521027, - "2030-01-01": 1237.89688024368, - "2029-01-01": 1213.74597880997, - "2028-01-01": 1189.92144090916, - "2027-01-01": 1165.77053947546, - "2026-01-01": 1137.73591200039, - "2025-01-01": 1120.60563409833, - "2024-01-01": 1096.28611150597, - "2023-01-01": 1037, - "2015-01-01": 1037 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1428.36918419083, - "2034-01-01": 1400.71011081778, - "2033-01-01": 1373.39250748638, - "2032-01-01": 1346.75784423826, - "2031-01-01": 1320.80612107342, - "2030-01-01": 1295.19586795023, - "2029-01-01": 1269.92708486868, - "2028-01-01": 1244.99977182877, - "2027-01-01": 1219.73098874722, - "2026-01-01": 1190.39871217013, - "2025-01-01": 1172.47551880105, - "2024-01-01": 1147.03030953132, - "2023-01-01": 1085, - "2015-01-01": 1085 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1495.50911819427, - "2034-01-01": 1466.54994091152, - "2033-01-01": 1437.94828433597, - "2032-01-01": 1410.0616691748, - "2031-01-01": 1382.89009542803, - "2030-01-01": 1356.07604238844, - "2029-01-01": 1329.61951005606, - "2028-01-01": 1303.52049843086, - "2027-01-01": 1277.06396609848, - "2026-01-01": 1246.35293735048, - "2025-01-01": 1227.58727129769, - "2024-01-01": 1200.94601993325, - "2023-01-01": 1136, - "2015-01-01": 1136 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1558.69964431515, - "2034-01-01": 1528.51683982327, - "2033-01-01": 1498.70666254734, - "2032-01-01": 1469.64173970331, - "2031-01-01": 1441.32207129118, - "2030-01-01": 1413.375030095, - "2029-01-01": 1385.80061611476, - "2028-01-01": 1358.59882935048, - "2027-01-01": 1331.02441537024, - "2026-01-01": 1299.01573752021, - "2025-01-01": 1279.45715600041, - "2024-01-01": 1251.6902179586, - "2023-01-01": 1184, - "2015-01-01": 1184 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1619.25723184767, - "2034-01-01": 1587.90178461371, - "2033-01-01": 1556.93344166658, - "2032-01-01": 1526.73930729314, - "2031-01-01": 1497.31938149337, - "2030-01-01": 1468.28655998045, - "2029-01-01": 1439.64084275436, - "2028-01-01": 1411.38222981511, - "2027-01-01": 1382.73651258902, - "2026-01-01": 1349.48425434955, - "2025-01-01": 1329.16579550718, - "2024-01-01": 1300.32007439956, - "2023-01-01": 1230, - "2015-01-01": 1230 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1968.12159480672, - "2034-01-01": 1930.01070568902, - "2033-01-01": 1892.37032137524, - "2032-01-01": 1855.6709466693, - "2031-01-01": 1819.91258157121, - "2030-01-01": 1784.62472127705, - "2029-01-01": 1749.8073657868, - "2028-01-01": 1715.46051510048, - "2027-01-01": 1680.64315961023, - "2026-01-01": 1640.22679695331, - "2025-01-01": 1615.53078397011, - "2024-01-01": 1580.47033433117, - "2023-01-01": 1495, - "2015-01-01": 1495 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 485.7771695543, - "2034-01-01": 476.370535384112, - "2033-01-01": 467.080032499975, - "2032-01-01": 458.021792187942, - "2031-01-01": 449.195814448012, - "2030-01-01": 440.485967994134, - "2029-01-01": 431.892252826307, - "2028-01-01": 423.414668944532, - "2027-01-01": 414.820953776706, - "2026-01-01": 404.845276304864, - "2025-01-01": 398.749738652153, - "2024-01-01": 390.096022319867, - "2023-01-01": 369, - "2015-01-01": 369 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 683.247563682064, - "2034-01-01": 670.017094483344, - "2033-01-01": 656.949964410534, - "2032-01-01": 644.209512589544, - "2031-01-01": 631.795739020374, - "2030-01-01": 619.545304577115, - "2029-01-01": 607.458209259765, - "2028-01-01": 595.534453068326, - "2027-01-01": 583.447357750977, - "2026-01-01": 569.416526835297, - "2025-01-01": 560.843128348151, - "2024-01-01": 548.671641149081, - "2023-01-01": 519, - "2015-01-01": 519 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 781.982760745947, - "2034-01-01": 766.84037403296, - "2033-01-01": 751.884930365813, - "2032-01-01": 737.303372790345, - "2031-01-01": 723.095701306556, - "2030-01-01": 709.074972868605, - "2029-01-01": 695.241187476494, - "2028-01-01": 681.594345130223, - "2027-01-01": 667.760559738112, - "2026-01-01": 651.702152100513, - "2025-01-01": 641.889823196149, - "2024-01-01": 627.959450563688, - "2023-01-01": 594, - "2015-01-01": 594 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 866.236795573793, - "2034-01-01": 849.462905915299, - "2033-01-01": 832.896101314318, - "2032-01-01": 816.743466828362, - "2031-01-01": 801.00500245743, - "2030-01-01": 785.473623144011, - "2029-01-01": 770.149328888103, - "2028-01-01": 755.032119689708, - "2027-01-01": 739.707825433801, - "2026-01-01": 721.919218993497, - "2025-01-01": 711.049669466441, - "2024-01-01": 695.618381264152, - "2023-01-01": 658, - "2015-01-01": 658 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 939.959076048158, - "2034-01-01": 921.757621312346, - "2033-01-01": 903.78087589426, - "2032-01-01": 886.253549111627, - "2031-01-01": 869.175640964446, - "2030-01-01": 852.32244213499, - "2029-01-01": 835.693952623261, - "2028-01-01": 819.290172429258, - "2027-01-01": 802.661682917528, - "2026-01-01": 783.359152524859, - "2025-01-01": 771.564534952947, - "2024-01-01": 754.819945627059, - "2023-01-01": 714, - "2015-01-01": 714 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1005.78254075741, - "2034-01-01": 986.306474345424, - "2033-01-01": 967.07085319778, - "2032-01-01": 948.316122578828, - "2031-01-01": 930.042282488566, - "2030-01-01": 912.008887662651, - "2029-01-01": 894.21593810108, - "2028-01-01": 876.663433803855, - "2027-01-01": 858.870484242285, - "2026-01-01": 838.216236035003, - "2025-01-01": 825.595664851613, - "2024-01-01": 807.678485236797, - "2023-01-01": 764, - "2015-01-01": 764 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1065.02365899574, - "2034-01-01": 1044.40044207519, - "2033-01-01": 1024.03183277095, - "2032-01-01": 1004.17243869931, - "2031-01-01": 984.822259860275, - "2030-01-01": 965.726688637545, - "2029-01-01": 946.885725031117, - "2028-01-01": 928.299369040993, - "2027-01-01": 909.458405434566, - "2026-01-01": 887.587611194133, - "2025-01-01": 874.223681760412, - "2024-01-01": 855.251170885561, - "2023-01-01": 809, - "2015-01-01": 809 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1120.31536935152, - "2034-01-01": 1098.62147862298, - "2033-01-01": 1077.1954137059, - "2032-01-01": 1056.30500041176, - "2031-01-01": 1035.95023874054, - "2030-01-01": 1015.86330288078, - "2029-01-01": 996.044192832486, - "2028-01-01": 976.492908595656, - "2027-01-01": 956.673798547362, - "2026-01-01": 933.667561342654, - "2025-01-01": 919.609830875291, - "2024-01-01": 899.652344157741, - "2023-01-01": 851, - "2015-01-01": 851 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1171.65767182473, - "2034-01-01": 1148.96958398878, - "2033-01-01": 1126.56159600265, - "2032-01-01": 1104.71380771617, - "2031-01-01": 1083.42621912935, - "2030-01-01": 1062.41873039235, - "2029-01-01": 1041.69134150518, - "2028-01-01": 1021.24405246784, - "2027-01-01": 1000.51666358067, - "2026-01-01": 976.456086480566, - "2025-01-01": 961.75411219625, - "2024-01-01": 940.882005053337, - "2023-01-01": 890, - "2015-01-01": 890 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1240.11407512236, - "2034-01-01": 1216.10039114318, - "2033-01-01": 1192.38317239831, - "2032-01-01": 1169.25888412206, - "2031-01-01": 1146.72752631444, - "2030-01-01": 1124.49263374112, - "2029-01-01": 1102.55420640212, - "2028-01-01": 1080.91224429742, - "2027-01-01": 1058.97381695842, - "2026-01-01": 1033.50745333112, - "2025-01-01": 1017.94648729086, - "2024-01-01": 995.854886247464, - "2023-01-01": 942, - "2015-01-01": 942 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1327.00104853858, - "2034-01-01": 1301.30487714684, - "2033-01-01": 1275.92594243896, - "2032-01-01": 1251.18148109877, - "2031-01-01": 1227.07149312628, - "2030-01-01": 1203.27874183763, - "2029-01-01": 1179.80322723284, - "2028-01-01": 1156.64494931189, - "2027-01-01": 1133.1694347071, - "2026-01-01": 1105.91880356451, - "2025-01-01": 1089.2675787571, - "2024-01-01": 1065.62815853232, - "2023-01-01": 1008, - "2015-01-01": 1008 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1407.30567548387, - "2034-01-01": 1380.0544778472, - "2033-01-01": 1353.13971474925, - "2032-01-01": 1326.89782072875, - "2031-01-01": 1301.3287957857, - "2030-01-01": 1276.09620538138, - "2029-01-01": 1251.20004951578, - "2028-01-01": 1226.6403281889, - "2027-01-01": 1201.7441723233, - "2026-01-01": 1172.84444544688, - "2025-01-01": 1155.18555723347, - "2024-01-01": 1130.1155768562, - "2023-01-01": 1069, - "2015-01-01": 1069 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1481.02795595823, - "2034-01-01": 1452.34919324424, - "2033-01-01": 1424.02448932919, - "2032-01-01": 1396.40790301202, - "2031-01-01": 1369.49943429272, - "2030-01-01": 1342.94502437236, - "2029-01-01": 1316.74467325094, - "2028-01-01": 1290.89838092845, - "2027-01-01": 1264.69802980703, - "2026-01-01": 1234.28437897824, - "2025-01-01": 1215.70042271998, - "2024-01-01": 1189.31714121911, - "2023-01-01": 1125, - "2015-01-01": 1125 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1550.80082855004, - "2034-01-01": 1520.77097745931, - "2033-01-01": 1491.11186527092, - "2032-01-01": 1462.19423088725, - "2031-01-01": 1434.01807430829, - "2030-01-01": 1406.21265663168, - "2029-01-01": 1378.77797785742, - "2028-01-01": 1351.71403798553, - "2027-01-01": 1324.27935921127, - "2026-01-01": 1292.432887499, - "2025-01-01": 1272.97342041257, - "2024-01-01": 1245.34719320543, - "2023-01-01": 1178, - "2015-01-01": 1178 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1621.89017043604, - "2034-01-01": 1590.48373873503, - "2033-01-01": 1559.46504075872, - "2032-01-01": 1529.22181023183, - "2031-01-01": 1499.75404715434, - "2030-01-01": 1470.67401780155, - "2029-01-01": 1441.98172217347, - "2028-01-01": 1413.67716027009, - "2027-01-01": 1384.98486464201, - "2026-01-01": 1351.67853768995, - "2025-01-01": 1331.32704070312, - "2024-01-01": 1302.43441598394, - "2023-01-01": 1232, - "2015-01-01": 1232 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1698.24538949877, - "2034-01-01": 1665.3604082534, - "2033-01-01": 1632.88141443081, - "2032-01-01": 1601.21439545378, - "2031-01-01": 1570.35935132232, - "2030-01-01": 1539.91029461364, - "2029-01-01": 1509.86722532774, - "2028-01-01": 1480.23014346463, - "2027-01-01": 1450.18707417873, - "2026-01-01": 1415.31275456172, - "2025-01-01": 1394.00315138558, - "2024-01-01": 1363.75032193124, - "2023-01-01": 1290, - "2015-01-01": 1290 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1769.33473138477, - "2034-01-01": 1735.07316952912, - "2033-01-01": 1701.23458991861, - "2032-01-01": 1668.24197479836, - "2031-01-01": 1636.09532416837, - "2030-01-01": 1604.37165578351, - "2029-01-01": 1573.07096964378, - "2028-01-01": 1542.19326574919, - "2027-01-01": 1510.89257960947, - "2026-01-01": 1474.55840475268, - "2025-01-01": 1452.35677167614, - "2024-01-01": 1420.83754470976, - "2023-01-01": 1344, - "2015-01-01": 1344 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1837.79113468239, - "2034-01-01": 1802.20397668352, - "2033-01-01": 1767.05616631427, - "2032-01-01": 1732.78705120425, - "2031-01-01": 1699.39663135345, - "2030-01-01": 1666.44555913228, - "2029-01-01": 1633.93383454072, - "2028-01-01": 1601.86145757877, - "2027-01-01": 1569.34973298721, - "2026-01-01": 1531.60977160323, - "2025-01-01": 1508.54914677075, - "2024-01-01": 1475.81042590389, - "2023-01-01": 1396, - "2015-01-01": 1396 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2231.41545364374, - "2034-01-01": 2188.20611782133, - "2033-01-01": 2145.53023058932, - "2032-01-01": 2103.92124053811, - "2031-01-01": 2063.3791476677, - "2030-01-01": 2023.37050338769, - "2029-01-01": 1983.89530769808, - "2028-01-01": 1944.95356059887, - "2027-01-01": 1905.47836490926, - "2026-01-01": 1859.65513099389, - "2025-01-01": 1831.65530356477, - "2024-01-01": 1791.90449277012, - "2023-01-01": 1695, - "2015-01-01": 1695 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 525.271248379853, - "2034-01-01": 515.099847203958, - "2033-01-01": 505.054018882087, - "2032-01-01": 495.259336268262, - "2031-01-01": 485.715799362484, - "2030-01-01": 476.29783531073, - "2029-01-01": 467.005444112999, - "2028-01-01": 457.838625769291, - "2027-01-01": 448.54623457156, - "2026-01-01": 437.759526410951, - "2025-01-01": 431.168416591353, - "2024-01-01": 421.811146085709, - "2023-01-01": 399, - "2015-01-01": 399 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 738.539274037839, - "2034-01-01": 724.238131031129, - "2033-01-01": 710.11354534549, - "2032-01-01": 696.342074301993, - "2031-01-01": 682.923717900636, - "2030-01-01": 669.681918820349, - "2029-01-01": 656.616677061133, - "2028-01-01": 643.727992622988, - "2027-01-01": 630.662750863772, - "2026-01-01": 615.496476983818, - "2025-01-01": 606.22927746303, - "2024-01-01": 593.072814421261, - "2023-01-01": 561, - "2015-01-01": 561 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 845.173286866831, - "2034-01-01": 828.807272944715, - "2033-01-01": 812.643308577192, - "2032-01-01": 796.883443318858, - "2031-01-01": 781.527677169712, - "2030-01-01": 766.373960575159, - "2029-01-01": 751.422293535201, - "2028-01-01": 736.672676049837, - "2027-01-01": 721.721009009879, - "2026-01-01": 704.364952270251, - "2025-01-01": 693.759707898868, - "2024-01-01": 678.703648589036, - "2023-01-01": 642, - "2015-01-01": 642 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 934.693198871418, - "2034-01-01": 916.5937130697, - "2033-01-01": 898.717677709979, - "2032-01-01": 881.288543234251, - "2031-01-01": 864.306309642516, - "2030-01-01": 847.547526492777, - "2029-01-01": 831.012193785035, - "2028-01-01": 814.70031151929, - "2027-01-01": 798.164978811548, - "2026-01-01": 778.970585844047, - "2025-01-01": 767.242044561054, - "2024-01-01": 750.59126245828, - "2023-01-01": 710, - "2015-01-01": 710 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1014.99782581671, - "2034-01-01": 995.343313770054, - "2033-01-01": 975.931450020273, - "2032-01-01": 957.004882864236, - "2031-01-01": 938.563612301943, - "2030-01-01": 920.364990036523, - "2029-01-01": 902.409016067975, - "2028-01-01": 884.695690396299, - "2027-01-01": 866.739716427751, - "2026-01-01": 845.896227726423, - "2025-01-01": 833.160023037426, - "2024-01-01": 815.07868078216, - "2023-01-01": 771, - "2015-01-01": 771 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1084.77069840852, - "2034-01-01": 1063.76509798512, - "2033-01-01": 1043.018825962, - "2032-01-01": 1022.79121073947, - "2031-01-01": 1003.08225231751, - "2030-01-01": 983.632622295843, - "2029-01-01": 964.442320674463, - "2028-01-01": 945.511347453373, - "2027-01-01": 926.321045831994, - "2026-01-01": 904.044736247176, - "2025-01-01": 890.433020730012, - "2024-01-01": 871.108732768483, - "2023-01-01": 824, - "2015-01-01": 824 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1149.27769382359, - "2034-01-01": 1127.02297395753, - "2033-01-01": 1105.04300371945, - "2032-01-01": 1083.61253273733, - "2031-01-01": 1062.73156101115, - "2030-01-01": 1042.12533891295, - "2029-01-01": 1021.79386644273, - "2028-01-01": 1001.73714360048, - "2027-01-01": 981.405671130255, - "2026-01-01": 957.804678087117, - "2025-01-01": 943.383528030704, - "2024-01-01": 922.910101586026, - "2023-01-01": 873, - "2015-01-01": 873 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1208.51881206192, - "2034-01-01": 1185.1169416873, - "2033-01-01": 1162.00398329262, - "2032-01-01": 1139.46884885781, - "2031-01-01": 1117.51153838286, - "2030-01-01": 1095.84313988784, - "2029-01-01": 1074.46365337276, - "2028-01-01": 1053.37307883762, - "2027-01-01": 1031.99359232254, - "2026-01-01": 1007.17605324625, - "2025-01-01": 992.011544939503, - "2024-01-01": 970.48278723479, - "2023-01-01": 918, - "2015-01-01": 918 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1263.81052241769, - "2034-01-01": 1239.33797823509, - "2033-01-01": 1215.16756422758, - "2032-01-01": 1191.60141057025, - "2031-01-01": 1168.63951726312, - "2030-01-01": 1145.97975413108, - "2029-01-01": 1123.62212117413, - "2028-01-01": 1101.56661839228, - "2027-01-01": 1079.20898543533, - "2026-01-01": 1053.25600339477, - "2025-01-01": 1037.39769405438, - "2024-01-01": 1014.88396050697, - "2023-01-01": 960, - "2015-01-01": 960 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1337.53280289206, - "2034-01-01": 1311.63269363213, - "2033-01-01": 1286.05233880752, - "2032-01-01": 1261.11149285352, - "2031-01-01": 1236.81015577014, - "2030-01-01": 1212.82857312206, - "2029-01-01": 1189.16674490929, - "2028-01-01": 1165.82467113183, - "2027-01-01": 1142.16284291906, - "2026-01-01": 1114.69593692613, - "2025-01-01": 1097.91255954089, - "2024-01-01": 1074.08552486988, - "2023-01-01": 1016, - "2015-01-01": 1016 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1431.0021227792, - "2034-01-01": 1403.2920649391, - "2033-01-01": 1375.92410657852, - "2032-01-01": 1349.24034717694, - "2031-01-01": 1323.24078673439, - "2030-01-01": 1297.58332577134, - "2029-01-01": 1272.26796428779, - "2028-01-01": 1247.29470228376, - "2027-01-01": 1221.97934080021, - "2026-01-01": 1192.59299551053, - "2025-01-01": 1174.63676399699, - "2024-01-01": 1149.1446511157, - "2023-01-01": 1087, - "2015-01-01": 1087 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1517.88909619541, - "2034-01-01": 1488.49655094277, - "2033-01-01": 1459.46687661916, - "2032-01-01": 1431.16294415365, - "2031-01-01": 1403.58475354623, - "2030-01-01": 1376.36943386785, - "2029-01-01": 1349.51698511851, - "2028-01-01": 1323.02740729823, - "2027-01-01": 1296.17495854889, - "2026-01-01": 1265.00434574392, - "2025-01-01": 1245.95785546323, - "2024-01-01": 1218.91792340056, - "2023-01-01": 1153, - "2015-01-01": 1153 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1596.87725384652, - "2034-01-01": 1565.95517458246, - "2033-01-01": 1535.41484938339, - "2032-01-01": 1505.63803231429, - "2031-01-01": 1476.62472337517, - "2030-01-01": 1447.99316850104, - "2029-01-01": 1419.7433676919, - "2028-01-01": 1391.87532094774, - "2027-01-01": 1363.6255201386, - "2026-01-01": 1330.8328459561, - "2025-01-01": 1310.79521134163, - "2024-01-01": 1282.34817093224, - "2023-01-01": 1213, - "2015-01-01": 1213 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1671.91600361507, - "2034-01-01": 1639.54086704017, - "2033-01-01": 1607.5654235094, - "2032-01-01": 1576.3893660669, - "2031-01-01": 1546.01269471267, - "2030-01-01": 1516.03571640257, - "2029-01-01": 1486.45843113661, - "2028-01-01": 1457.28083891479, - "2027-01-01": 1427.70355364883, - "2026-01-01": 1393.36992115766, - "2025-01-01": 1372.39069942611, - "2024-01-01": 1342.60690608735, - "2023-01-01": 1270, - "2015-01-01": 1270 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1748.27122267781, - "2034-01-01": 1714.41753655854, - "2033-01-01": 1680.98179718148, - "2032-01-01": 1648.38195128885, - "2031-01-01": 1616.61799888065, - "2030-01-01": 1585.27199321466, - "2029-01-01": 1554.34393429088, - "2028-01-01": 1523.83382210932, - "2027-01-01": 1492.90576318554, - "2026-01-01": 1457.00413802943, - "2025-01-01": 1435.06681010856, - "2024-01-01": 1403.92281203464, - "2023-01-01": 1328, - "2015-01-01": 1328 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1829.89231891728, - "2034-01-01": 1794.45811431955, - "2033-01-01": 1759.46136903785, - "2032-01-01": 1725.33954238818, - "2031-01-01": 1692.09263437056, - "2030-01-01": 1659.28318566896, - "2029-01-01": 1626.91119628338, - "2028-01-01": 1594.97666621382, - "2027-01-01": 1562.60467682824, - "2026-01-01": 1525.02692158201, - "2025-01-01": 1502.06541118291, - "2024-01-01": 1469.46740115072, - "2023-01-01": 1390, - "2015-01-01": 1390 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1907.5640072742, - "2034-01-01": 1870.62576089858, - "2033-01-01": 1834.143542256, - "2032-01-01": 1798.57337907948, - "2031-01-01": 1763.91527136902, - "2030-01-01": 1729.7131913916, - "2029-01-01": 1695.96713914721, - "2028-01-01": 1662.67711463585, - "2027-01-01": 1628.93106239145, - "2026-01-01": 1589.75828012398, - "2025-01-01": 1565.82214446333, - "2024-01-01": 1531.84047789021, - "2023-01-01": 1449, - "2015-01-01": 1449 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1979.96981845438, - "2034-01-01": 1941.62949923497, - "2033-01-01": 1903.76251728987, - "2032-01-01": 1866.8422098934, - "2031-01-01": 1830.86857704555, - "2030-01-01": 1795.36828147202, - "2029-01-01": 1760.34132317281, - "2028-01-01": 1725.7877021479, - "2027-01-01": 1690.76074384869, - "2026-01-01": 1650.10107198514, - "2025-01-01": 1625.25638735187, - "2024-01-01": 1589.98487146092, - "2023-01-01": 1504, - "2015-01-01": 1504 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2402.5564618878, - "2034-01-01": 2356.03313570733, - "2033-01-01": 2310.08417157847, - "2032-01-01": 2265.28393155283, - "2031-01-01": 2221.63241563041, - "2030-01-01": 2178.5552617596, - "2029-01-01": 2136.05246994041, - "2028-01-01": 2094.12404017282, - "2027-01-01": 2051.62124835363, - "2026-01-01": 2002.28354812026, - "2025-01-01": 1972.1362413013, - "2024-01-01": 1929.33669575544, - "2023-01-01": 1825, - "2015-01-01": 1825 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 555.55004214611, - "2034-01-01": 544.792319599174, - "2033-01-01": 534.167408441706, - "2032-01-01": 523.808120063174, - "2031-01-01": 513.71445446358, - "2030-01-01": 503.753600253454, - "2029-01-01": 493.925557432796, - "2028-01-01": 484.230326001606, - "2027-01-01": 474.402283180948, - "2026-01-01": 462.993784825617, - "2025-01-01": 456.022736344739, - "2024-01-01": 446.126074306189, - "2023-01-01": 422, - "2015-01-01": 422 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 779.349822157577, - "2034-01-01": 764.258419911637, - "2033-01-01": 749.353331273672, - "2032-01-01": 734.820869851657, - "2031-01-01": 720.661035645591, - "2030-01-01": 706.687515047499, - "2029-01-01": 692.900308057381, - "2028-01-01": 679.299414675239, - "2027-01-01": 665.512207685122, - "2026-01-01": 649.507868760107, - "2025-01-01": 639.728578000203, - "2024-01-01": 625.845108979298, - "2023-01-01": 592, - "2015-01-01": 592 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 892.566181457495, - "2034-01-01": 875.28244712853, - "2033-01-01": 858.212092235726, - "2032-01-01": 841.568496215242, - "2031-01-01": 825.351659067079, - "2030-01-01": 809.348201355075, - "2029-01-01": 793.558123079231, - "2028-01-01": 777.981424239547, - "2027-01-01": 762.191345963703, - "2026-01-01": 743.862052397555, - "2025-01-01": 732.662121425908, - "2024-01-01": 716.761797108048, - "2023-01-01": 678, - "2015-01-01": 678 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 987.351970638822, - "2034-01-01": 968.232795496162, - "2033-01-01": 949.349659552794, - "2032-01-01": 930.938602008011, - "2031-01-01": 912.999622861813, - "2030-01-01": 895.296682914906, - "2029-01-01": 877.829782167291, - "2028-01-01": 860.598920618968, - "2027-01-01": 843.132019871353, - "2026-01-01": 822.856252652163, - "2025-01-01": 810.466948479986, - "2024-01-01": 792.87809414607, - "2023-01-01": 750, - "2015-01-01": 750 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1071.60600546667, - "2034-01-01": 1050.8553273785, - "2033-01-01": 1030.3608305013, - "2032-01-01": 1010.37869604603, - "2031-01-01": 990.908924012687, - "2030-01-01": 971.695333190311, - "2029-01-01": 952.737923578899, - "2028-01-01": 934.036695178453, - "2027-01-01": 915.079285567042, - "2026-01-01": 893.073319545147, - "2025-01-01": 879.626794750279, - "2024-01-01": 860.537024846535, - "2023-01-01": 814, - "2015-01-01": 814 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1145.32828594103, - "2034-01-01": 1123.15004277555, - "2033-01-01": 1101.24560508124, - "2032-01-01": 1079.88877832929, - "2031-01-01": 1059.0795625197, - "2030-01-01": 1038.54415218129, - "2029-01-01": 1018.28254731406, - "2028-01-01": 998.294747918003, - "2027-01-01": 978.03314305077, - "2026-01-01": 954.513253076509, - "2025-01-01": 940.141660236784, - "2024-01-01": 919.738589209442, - "2023-01-01": 870, - "2015-01-01": 870 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1213.78468923866, - "2034-01-01": 1190.28084992995, - "2033-01-01": 1167.0671814769, - "2032-01-01": 1144.43385473518, - "2031-01-01": 1122.38086970479, - "2030-01-01": 1100.61805553006, - "2029-01-01": 1079.14541221099, - "2028-01-01": 1057.96293974758, - "2027-01-01": 1036.49029642852, - "2026-01-01": 1011.56461992706, - "2025-01-01": 996.334035331397, - "2024-01-01": 974.711470403569, - "2023-01-01": 922, - "2015-01-01": 922 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1275.65874606536, - "2034-01-01": 1250.95677178104, - "2033-01-01": 1226.55976014221, - "2032-01-01": 1202.77267379435, - "2031-01-01": 1179.59551273746, - "2030-01-01": 1156.72331432606, - "2029-01-01": 1134.15607856014, - "2028-01-01": 1111.89380543971, - "2027-01-01": 1089.32656967379, - "2026-01-01": 1063.13027842659, - "2025-01-01": 1047.12329743614, - "2024-01-01": 1024.39849763672, - "2023-01-01": 969, - "2015-01-01": 969 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1334.89986430369, - "2034-01-01": 1309.05073951081, - "2033-01-01": 1283.52073971538, - "2032-01-01": 1258.62898991483, - "2031-01-01": 1234.37549010917, - "2030-01-01": 1210.44111530095, - "2029-01-01": 1186.82586549018, - "2028-01-01": 1163.52974067684, - "2027-01-01": 1139.91449086607, - "2026-01-01": 1112.50165358572, - "2025-01-01": 1095.75131434494, - "2024-01-01": 1071.97118328549, - "2023-01-01": 1014, - "2015-01-01": 1014 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1411.25508336642, - "2034-01-01": 1383.92740902918, - "2033-01-01": 1356.93711338746, - "2032-01-01": 1330.62157513678, - "2031-01-01": 1304.98079427715, - "2030-01-01": 1279.67739211304, - "2029-01-01": 1254.71136864445, - "2028-01-01": 1230.08272387138, - "2027-01-01": 1205.11670040279, - "2026-01-01": 1176.13587045749, - "2025-01-01": 1158.42742502739, - "2024-01-01": 1133.28708923278, - "2023-01-01": 1072, - "2015-01-01": 1072 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1509.9902804303, - "2034-01-01": 1480.7506885788, - "2033-01-01": 1451.87207934274, - "2032-01-01": 1423.71543533759, - "2031-01-01": 1396.28075656333, - "2030-01-01": 1369.20706040453, - "2029-01-01": 1342.49434686118, - "2028-01-01": 1316.14261593328, - "2027-01-01": 1289.42990238992, - "2026-01-01": 1258.42149572271, - "2025-01-01": 1239.47411987539, - "2024-01-01": 1212.57489864739, - "2023-01-01": 1147, - "2015-01-01": 1147 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1602.14313102326, - "2034-01-01": 1571.11908282511, - "2033-01-01": 1540.47804756767, - "2032-01-01": 1510.60303819167, - "2031-01-01": 1481.4940546971, - "2030-01-01": 1452.76808414325, - "2029-01-01": 1424.42512653012, - "2028-01-01": 1396.46518185771, - "2027-01-01": 1368.12222424458, - "2026-01-01": 1335.22141263691, - "2025-01-01": 1315.11770173352, - "2024-01-01": 1286.57685410102, - "2023-01-01": 1217, - "2015-01-01": 1217 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1685.08069655692, - "2034-01-01": 1652.45063764678, - "2033-01-01": 1620.2234189701, - "2032-01-01": 1588.80188076034, - "2031-01-01": 1558.18602301749, - "2030-01-01": 1527.97300550811, - "2029-01-01": 1498.16282823218, - "2028-01-01": 1468.75549118971, - "2027-01-01": 1438.94531391378, - "2026-01-01": 1404.34133785969, - "2025-01-01": 1383.19692540584, - "2024-01-01": 1353.17861400929, - "2023-01-01": 1280, - "2015-01-01": 1280 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1764.06885420803, - "2034-01-01": 1729.90926128648, - "2033-01-01": 1696.17139173433, - "2032-01-01": 1663.27696892098, - "2031-01-01": 1631.22599284644, - "2030-01-01": 1599.5967401413, - "2029-01-01": 1568.38921080556, - "2028-01-01": 1537.60340483922, - "2027-01-01": 1506.39587550348, - "2026-01-01": 1470.16983807186, - "2025-01-01": 1448.03428128424, - "2024-01-01": 1416.60886154098, - "2023-01-01": 1340, - "2015-01-01": 1340 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1844.37348115332, - "2034-01-01": 1808.65886198683, - "2033-01-01": 1773.38516404462, - "2032-01-01": 1738.99330855097, - "2031-01-01": 1705.48329550587, - "2030-01-01": 1672.41420368504, - "2029-01-01": 1639.7860330885, - "2028-01-01": 1607.59878371623, - "2027-01-01": 1574.97061311969, - "2026-01-01": 1537.09547995424, - "2025-01-01": 1513.95225976061, - "2024-01-01": 1481.09627986486, - "2023-01-01": 1401, - "2015-01-01": 1401 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1931.26045456953, - "2034-01-01": 1893.86334799049, - "2033-01-01": 1856.92793408527, - "2032-01-01": 1820.91590552767, - "2031-01-01": 1785.82726231771, - "2030-01-01": 1751.20031178156, - "2029-01-01": 1717.03505391922, - "2028-01-01": 1683.3314887307, - "2027-01-01": 1649.16623086837, - "2026-01-01": 1609.50683018763, - "2025-01-01": 1585.27335122685, - "2024-01-01": 1550.86955214971, - "2023-01-01": 1467, - "2015-01-01": 1467 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2011.56508151483, - "2034-01-01": 1972.61294869085, - "2033-01-01": 1934.14170639556, - "2032-01-01": 1896.63224515766, - "2031-01-01": 1860.08456497713, - "2030-01-01": 1824.0177753253, - "2029-01-01": 1788.43187620216, - "2028-01-01": 1753.32686760771, - "2027-01-01": 1717.74096848457, - "2026-01-01": 1676.43247207001, - "2025-01-01": 1651.19132970323, - "2024-01-01": 1615.35697047359, - "2023-01-01": 1528, - "2015-01-01": 1528 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2087.92030057756, - "2034-01-01": 2047.48961820922, - "2033-01-01": 2007.55808006764, - "2032-01-01": 1968.62483037961, - "2031-01-01": 1930.68986914511, - "2030-01-01": 1893.25405213739, - "2029-01-01": 1856.31737935643, - "2028-01-01": 1819.87985080224, - "2027-01-01": 1782.94317802129, - "2026-01-01": 1740.06668894177, - "2025-01-01": 1713.86744038568, - "2024-01-01": 1676.67287642089, - "2023-01-01": 1586, - "2015-01-01": 1586 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2532.88692201212, - "2034-01-01": 2483.83986471282, - "2033-01-01": 2435.39832663944, - "2032-01-01": 2388.16782701789, - "2031-01-01": 2342.14836584817, - "2030-01-01": 2296.73442390437, - "2029-01-01": 2251.92600118649, - "2028-01-01": 2207.72309769453, - "2027-01-01": 2162.91467497665, - "2026-01-01": 2110.90057347035, - "2025-01-01": 2079.11787850066, - "2024-01-01": 2033.99660418272, - "2023-01-01": 1924, - "2015-01-01": 1924 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 579.246489441442, - "2034-01-01": 568.029906691082, - "2033-01-01": 556.951800270973, - "2032-01-01": 546.150646511367, - "2031-01-01": 535.626445412263, - "2030-01-01": 525.240720643411, - "2029-01-01": 514.993472204811, - "2028-01-01": 504.884700096461, - "2027-01-01": 494.637451657861, - "2026-01-01": 482.742334889269, - "2025-01-01": 475.473943108259, - "2024-01-01": 465.155148565695, - "2023-01-01": 440, - "2015-01-01": 440 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 813.578023806389, - "2034-01-01": 797.823823488837, - "2033-01-01": 782.264119471503, - "2032-01-01": 767.093408054601, - "2031-01-01": 752.311689238134, - "2030-01-01": 737.724466721882, - "2029-01-01": 723.331740505847, - "2028-01-01": 709.13351059003, - "2027-01-01": 694.740784373995, - "2026-01-01": 678.033552185382, - "2025-01-01": 667.824765547509, - "2024-01-01": 653.331549576362, - "2023-01-01": 618, - "2015-01-01": 618 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 932.060260283048, - "2034-01-01": 914.011758948377, - "2033-01-01": 896.186078617838, - "2032-01-01": 878.806040295563, - "2031-01-01": 861.871643981551, - "2030-01-01": 845.160068671671, - "2029-01-01": 828.671314365922, - "2028-01-01": 812.405381064306, - "2027-01-01": 795.916626758558, - "2026-01-01": 776.776302503642, - "2025-01-01": 765.080799365107, - "2024-01-01": 748.47692087389, - "2023-01-01": 708, - "2015-01-01": 708 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1030.79545734693, - "2034-01-01": 1010.83503849799, - "2033-01-01": 991.121044573117, - "2032-01-01": 971.899900496364, - "2031-01-01": 953.171606267732, - "2030-01-01": 934.689736963162, - "2029-01-01": 916.454292582651, - "2028-01-01": 898.465273126203, - "2027-01-01": 880.229828745693, - "2026-01-01": 859.061927768858, - "2025-01-01": 846.127494213106, - "2024-01-01": 827.764730288497, - "2023-01-01": 783, - "2015-01-01": 783 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1117.68243076315, - "2034-01-01": 1096.03952450166, - "2033-01-01": 1074.66381461376, - "2032-01-01": 1053.82249747307, - "2031-01-01": 1033.51557307957, - "2030-01-01": 1013.47584505967, - "2029-01-01": 993.703313413373, - "2028-01-01": 974.197978140672, - "2027-01-01": 954.425446494372, - "2026-01-01": 931.473278002248, - "2025-01-01": 917.448585679344, - "2024-01-01": 897.538002573352, - "2023-01-01": 849, - "2015-01-01": 849 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1195.35411912007, - "2034-01-01": 1172.20717108069, - "2033-01-01": 1149.34598783192, - "2032-01-01": 1127.05633416437, - "2031-01-01": 1105.33821007803, - "2030-01-01": 1083.90585078231, - "2029-01-01": 1062.7592562772, - "2028-01-01": 1041.8984265627, - "2027-01-01": 1020.75183205759, - "2026-01-01": 996.204636544218, - "2025-01-01": 981.20531895977, - "2024-01-01": 959.911079312842, - "2023-01-01": 908, - "2015-01-01": 908 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1265.12699171188, - "2034-01-01": 1240.62895529575, - "2033-01-01": 1216.43336377365, - "2032-01-01": 1192.8426620396, - "2031-01-01": 1169.8568500936, - "2030-01-01": 1147.17348304163, - "2029-01-01": 1124.79256088369, - "2028-01-01": 1102.71408361977, - "2027-01-01": 1080.33316146183, - "2026-01-01": 1054.35314506497, - "2025-01-01": 1038.47831665236, - "2024-01-01": 1015.94113129916, - "2023-01-01": 961, - "2015-01-01": 961 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1330.95045642113, - "2034-01-01": 1305.17780832883, - "2033-01-01": 1279.72334107717, - "2032-01-01": 1254.9052355068, - "2031-01-01": 1230.72349161772, - "2030-01-01": 1206.85992856929, - "2029-01-01": 1183.31454636151, - "2028-01-01": 1160.08734499437, - "2027-01-01": 1136.54196278658, - "2026-01-01": 1109.21022857512, - "2025-01-01": 1092.50944655102, - "2024-01-01": 1068.7996709089, - "2023-01-01": 1011, - "2015-01-01": 1011 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1391.50804395365, - "2034-01-01": 1364.56275311926, - "2033-01-01": 1337.95012019641, - "2032-01-01": 1312.00280309662, - "2031-01-01": 1286.72080181991, - "2030-01-01": 1261.77145845474, - "2029-01-01": 1237.1547730011, - "2028-01-01": 1212.870745459, - "2027-01-01": 1188.25406000536, - "2026-01-01": 1159.67874540445, - "2025-01-01": 1142.21808605779, - "2024-01-01": 1117.42952734986, - "2023-01-01": 1057, - "2015-01-01": 1057 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1471.81267089894, - "2034-01-01": 1443.31235381961, - "2033-01-01": 1415.1638925067, - "2032-01-01": 1387.71914272661, - "2031-01-01": 1360.97810447934, - "2030-01-01": 1334.58892199849, - "2029-01-01": 1308.55159528404, - "2028-01-01": 1282.86612433601, - "2027-01-01": 1256.82879762156, - "2026-01-01": 1226.60438728682, - "2025-01-01": 1208.13606453417, - "2024-01-01": 1181.91694567374, - "2023-01-01": 1118, - "2015-01-01": 1118 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1574.49727584537, - "2034-01-01": 1544.00856455121, - "2033-01-01": 1513.89625710019, - "2032-01-01": 1484.53675733544, - "2031-01-01": 1455.93006525697, - "2030-01-01": 1427.69977702164, - "2029-01-01": 1399.84589262944, - "2028-01-01": 1372.36841208038, - "2027-01-01": 1344.51452768818, - "2026-01-01": 1312.18143756265, - "2025-01-01": 1292.42462717608, - "2024-01-01": 1264.37626746493, - "2023-01-01": 1196, - "2015-01-01": 1196 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1670.59953432089, - "2034-01-01": 1638.24988997951, - "2033-01-01": 1606.29962396333, - "2032-01-01": 1575.14811459756, - "2031-01-01": 1544.79536188219, - "2030-01-01": 1514.84198749202, - "2029-01-01": 1485.28799142706, - "2028-01-01": 1456.13337368729, - "2027-01-01": 1426.57937762233, - "2026-01-01": 1392.27277948746, - "2025-01-01": 1371.31007682814, - "2024-01-01": 1341.54973529515, - "2023-01-01": 1269, - "2015-01-01": 1269 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1757.4865077371, - "2034-01-01": 1723.45437598317, - "2033-01-01": 1689.84239400397, - "2032-01-01": 1657.07071157426, - "2031-01-01": 1625.13932869403, - "2030-01-01": 1593.62809558853, - "2029-01-01": 1562.53701225778, - "2028-01-01": 1531.86607870176, - "2027-01-01": 1500.77499537101, - "2026-01-01": 1464.68412972085, - "2025-01-01": 1442.63116829438, - "2024-01-01": 1411.32300758001, - "2023-01-01": 1335, - "2015-01-01": 1335 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1839.10760397658, - "2034-01-01": 1803.49495374418, - "2033-01-01": 1768.32196586034, - "2032-01-01": 1734.02830267359, - "2031-01-01": 1700.61396418394, - "2030-01-01": 1667.63928804283, - "2029-01-01": 1635.10427425027, - "2028-01-01": 1603.00892280626, - "2027-01-01": 1570.47390901371, - "2026-01-01": 1532.70691327343, - "2025-01-01": 1509.62976936872, - "2024-01-01": 1476.86759669608, - "2023-01-01": 1397, - "2015-01-01": 1397 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1923.36163880442, - "2034-01-01": 1886.11748562652, - "2033-01-01": 1849.33313680884, - "2032-01-01": 1813.46839671161, - "2031-01-01": 1778.52326533481, - "2030-01-01": 1744.03793831824, - "2029-01-01": 1710.01241566188, - "2028-01-01": 1676.44669736575, - "2027-01-01": 1642.4211747094, - "2026-01-01": 1602.92398016641, - "2025-01-01": 1578.78961563901, - "2024-01-01": 1544.52652739655, - "2023-01-01": 1461, - "2015-01-01": 1461 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2012.88155080901, - "2034-01-01": 1973.90392575151, - "2033-01-01": 1935.40750594163, - "2032-01-01": 1897.873496627, - "2031-01-01": 1861.30189780762, - "2030-01-01": 1825.21150423585, - "2029-01-01": 1789.60231591172, - "2028-01-01": 1754.4743328352, - "2027-01-01": 1718.86514451107, - "2026-01-01": 1677.52961374021, - "2025-01-01": 1652.2719523012, - "2024-01-01": 1616.41414126579, - "2023-01-01": 1529, - "2015-01-01": 1529 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2095.81911634267, - "2034-01-01": 2055.23548057319, - "2033-01-01": 2015.15287734407, - "2032-01-01": 1976.07233919567, - "2031-01-01": 1937.99386612801, - "2030-01-01": 1900.41642560071, - "2029-01-01": 1863.34001761377, - "2028-01-01": 1826.7646421672, - "2027-01-01": 1789.68823418026, - "2026-01-01": 1746.64953896299, - "2025-01-01": 1720.35117597352, - "2024-01-01": 1683.01590117406, - "2023-01-01": 1592, - "2015-01-01": 1592 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2176.12374328796, - "2034-01-01": 2133.98508127354, - "2033-01-01": 2092.36664965436, - "2032-01-01": 2051.78867882566, - "2031-01-01": 2012.25116878743, - "2030-01-01": 1973.23388914445, - "2029-01-01": 1934.73683989671, - "2028-01-01": 1896.76002104421, - "2027-01-01": 1858.26297179646, - "2026-01-01": 1813.57518084537, - "2025-01-01": 1786.26915444989, - "2024-01-01": 1747.50331949794, - "2023-01-01": 1653, - "2015-01-01": 1653 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2638.20446554693, - "2034-01-01": 2587.11802956574, - "2033-01-01": 2536.66229032507, - "2032-01-01": 2487.46794456541, - "2031-01-01": 2439.53499228676, - "2030-01-01": 2392.23273674863, - "2029-01-01": 2345.561177951, - "2028-01-01": 2299.52031589388, - "2027-01-01": 2252.84875709626, - "2026-01-01": 2198.67190708658, - "2025-01-01": 2165.56768633852, - "2024-01-01": 2118.5702675583, - "2023-01-01": 2004, - "2015-01-01": 2004 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 613.474691090254, - "2034-01-01": 601.595310268282, - "2033-01-01": 589.862588468803, - "2032-01-01": 578.423184714311, - "2031-01-01": 567.277099004806, - "2030-01-01": 556.277672317795, - "2029-01-01": 545.424904653277, - "2028-01-01": 534.718796011252, - "2027-01-01": 523.866028346734, - "2026-01-01": 511.268018314544, - "2025-01-01": 503.570130655565, - "2024-01-01": 492.641589162758, - "2023-01-01": 466, - "2015-01-01": 466 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 860.970918397052, - "2034-01-01": 844.298997672653, - "2033-01-01": 827.832903130037, - "2032-01-01": 811.778460950986, - "2031-01-01": 796.135671135501, - "2030-01-01": 780.698707501798, - "2029-01-01": 765.467570049877, - "2028-01-01": 750.44225877974, - "2027-01-01": 735.21112132782, - "2026-01-01": 717.530652312686, - "2025-01-01": 706.727179074548, - "2024-01-01": 691.389698095373, - "2023-01-01": 654, - "2015-01-01": 654 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 984.719032050451, - "2034-01-01": 965.650841374839, - "2033-01-01": 946.818060460654, - "2032-01-01": 928.456099069323, - "2031-01-01": 910.564957200848, - "2030-01-01": 892.909225093799, - "2029-01-01": 875.488902748178, - "2028-01-01": 858.303990163984, - "2027-01-01": 840.883667818363, - "2026-01-01": 820.661969311757, - "2025-01-01": 808.30570328404, - "2024-01-01": 790.763752561681, - "2023-01-01": 748, - "2015-01-01": 748 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1090.03657558526, - "2034-01-01": 1068.92900622776, - "2033-01-01": 1048.08202414629, - "2032-01-01": 1027.75621661684, - "2031-01-01": 1007.95158363944, - "2030-01-01": 988.407537938056, - "2029-01-01": 969.124079512689, - "2028-01-01": 950.101208363341, - "2027-01-01": 930.817749937974, - "2026-01-01": 908.433302927988, - "2025-01-01": 894.755511121905, - "2024-01-01": 875.337415937262, - "2023-01-01": 828, - "2015-01-01": 828 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1182.18942617822, - "2034-01-01": 1159.29740047407, - "2033-01-01": 1136.68799237121, - "2032-01-01": 1114.64381947093, - "2031-01-01": 1093.16488177321, - "2030-01-01": 1071.96856167678, - "2029-01-01": 1051.05485918164, - "2028-01-01": 1030.42377428778, - "2027-01-01": 1009.51007179263, - "2026-01-01": 985.233219842189, - "2025-01-01": 970.399092980037, - "2024-01-01": 949.339371390895, - "2023-01-01": 898, - "2015-01-01": 898 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1263.81052241769, - "2034-01-01": 1239.33797823509, - "2033-01-01": 1215.16756422758, - "2032-01-01": 1191.60141057025, - "2031-01-01": 1168.63951726312, - "2030-01-01": 1145.97975413108, - "2029-01-01": 1123.62212117413, - "2028-01-01": 1101.56661839228, - "2027-01-01": 1079.20898543533, - "2026-01-01": 1053.25600339477, - "2025-01-01": 1037.39769405438, - "2024-01-01": 1014.88396050697, - "2023-01-01": 960, - "2015-01-01": 960 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1337.53280289206, - "2034-01-01": 1311.63269363213, - "2033-01-01": 1286.05233880752, - "2032-01-01": 1261.11149285352, - "2031-01-01": 1236.81015577014, - "2030-01-01": 1212.82857312206, - "2029-01-01": 1189.16674490929, - "2028-01-01": 1165.82467113183, - "2027-01-01": 1142.16284291906, - "2026-01-01": 1114.69593692613, - "2025-01-01": 1097.91255954089, - "2024-01-01": 1074.08552486988, - "2023-01-01": 1016, - "2015-01-01": 1016 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1407.30567548387, - "2034-01-01": 1380.0544778472, - "2033-01-01": 1353.13971474925, - "2032-01-01": 1326.89782072875, - "2031-01-01": 1301.3287957857, - "2030-01-01": 1276.09620538138, - "2029-01-01": 1251.20004951578, - "2028-01-01": 1226.6403281889, - "2027-01-01": 1201.7441723233, - "2026-01-01": 1172.84444544688, - "2025-01-01": 1155.18555723347, - "2024-01-01": 1130.1155768562, - "2023-01-01": 1069, - "2015-01-01": 1069 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1470.49620160475, - "2034-01-01": 1442.02137675895, - "2033-01-01": 1413.89809296063, - "2032-01-01": 1386.47789125727, - "2031-01-01": 1359.76077164886, - "2030-01-01": 1333.39519308793, - "2029-01-01": 1307.38115557448, - "2028-01-01": 1281.71865910852, - "2027-01-01": 1255.70462159507, - "2026-01-01": 1225.50724561662, - "2025-01-01": 1207.05544193619, - "2024-01-01": 1180.85977488155, - "2023-01-01": 1117, - "2015-01-01": 1117 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1554.7502364326, - "2034-01-01": 1524.64390864129, - "2033-01-01": 1494.90926390913, - "2032-01-01": 1465.91798529528, - "2031-01-01": 1437.67007279973, - "2030-01-01": 1409.79384336334, - "2029-01-01": 1382.28929698609, - "2028-01-01": 1355.156433668, - "2027-01-01": 1327.65188729076, - "2026-01-01": 1295.72431250961, - "2025-01-01": 1276.21528820649, - "2024-01-01": 1248.51870558201, - "2023-01-01": 1181, - "2015-01-01": 1181 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1664.01718784996, - "2034-01-01": 1631.7950046762, - "2033-01-01": 1599.97062623298, - "2032-01-01": 1568.94185725084, - "2031-01-01": 1538.70869772977, - "2030-01-01": 1508.87334293925, - "2029-01-01": 1479.43579287927, - "2028-01-01": 1450.39604754983, - "2027-01-01": 1420.95849748985, - "2026-01-01": 1386.78707113644, - "2025-01-01": 1365.90696383827, - "2024-01-01": 1336.26388133418, - "2023-01-01": 1264, - "2015-01-01": 1264 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1764.06885420803, - "2034-01-01": 1729.90926128648, - "2033-01-01": 1696.17139173433, - "2032-01-01": 1663.27696892098, - "2031-01-01": 1631.22599284644, - "2030-01-01": 1599.5967401413, - "2029-01-01": 1568.38921080556, - "2028-01-01": 1537.60340483922, - "2027-01-01": 1506.39587550348, - "2026-01-01": 1470.16983807186, - "2025-01-01": 1448.03428128424, - "2024-01-01": 1416.60886154098, - "2023-01-01": 1340, - "2015-01-01": 1340 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1856.22170480098, - "2034-01-01": 1820.27765553278, - "2033-01-01": 1784.77735995925, - "2032-01-01": 1750.16457177506, - "2031-01-01": 1716.43929098021, - "2030-01-01": 1683.15776388002, - "2029-01-01": 1650.31999047451, - "2028-01-01": 1617.92597076366, - "2027-01-01": 1585.08819735814, - "2026-01-01": 1546.96975498607, - "2025-01-01": 1523.67786314237, - "2024-01-01": 1490.61081699461, - "2023-01-01": 1410, - "2015-01-01": 1410 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1941.79220892302, - "2034-01-01": 1904.19116447579, - "2033-01-01": 1867.05433045383, - "2032-01-01": 1830.84591728242, - "2031-01-01": 1795.56592496156, - "2030-01-01": 1760.75014306598, - "2029-01-01": 1726.39857159567, - "2028-01-01": 1692.51121055064, - "2027-01-01": 1658.15963908033, - "2026-01-01": 1618.28396354925, - "2025-01-01": 1593.91833201064, - "2024-01-01": 1559.32691848727, - "2023-01-01": 1475, - "2015-01-01": 1475 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2029.99565163342, - "2034-01-01": 1990.68662754011, - "2033-01-01": 1951.86290004055, - "2032-01-01": 1914.00976572847, - "2031-01-01": 1877.12722460389, - "2030-01-01": 1840.72998007305, - "2029-01-01": 1804.81803213595, - "2028-01-01": 1769.3913807926, - "2027-01-01": 1733.4794328555, - "2026-01-01": 1691.79245545285, - "2025-01-01": 1666.32004607485, - "2024-01-01": 1630.15736156432, - "2023-01-01": 1542, - "2015-01-01": 1542 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2124.78144081474, - "2034-01-01": 2083.63697590774, - "2033-01-01": 2043.00046735761, - "2032-01-01": 2003.37987152124, - "2031-01-01": 1964.77518839862, - "2030-01-01": 1926.67846163288, - "2029-01-01": 1889.08969122401, - "2028-01-01": 1852.00887717202, - "2027-01-01": 1814.42010676315, - "2026-01-01": 1770.78665570745, - "2025-01-01": 1744.12487312893, - "2024-01-01": 1706.27365860234, - "2023-01-01": 1614, - "2015-01-01": 1614 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2212.98488352515, - "2034-01-01": 2170.13243897206, - "2033-01-01": 2127.80903694433, - "2032-01-01": 2086.54371996729, - "2031-01-01": 2046.33648804094, - "2030-01-01": 2006.65829863994, - "2029-01-01": 1967.50915176429, - "2028-01-01": 1928.88904741398, - "2027-01-01": 1889.73990053833, - "2026-01-01": 1844.29514761105, - "2025-01-01": 1816.52658719314, - "2024-01-01": 1777.10410167939, - "2023-01-01": 1681, - "2015-01-01": 1681 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2297.23891835299, - "2034-01-01": 2252.7549708544, - "2033-01-01": 2208.82020789284, - "2032-01-01": 2165.98381400531, - "2031-01-01": 2124.24578919182, - "2030-01-01": 2083.05694891535, - "2029-01-01": 2042.4172931759, - "2028-01-01": 2002.32682197347, - "2027-01-01": 1961.68716623402, - "2026-01-01": 1914.51221450403, - "2025-01-01": 1885.68643346343, - "2024-01-01": 1844.76303237986, - "2023-01-01": 1745, - "2015-01-01": 1745 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.ND.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2784.33255720148, - "2034-01-01": 2730.41648329918, - "2033-01-01": 2677.16603993888, - "2032-01-01": 2625.24685766259, - "2031-01-01": 2574.65893647031, - "2030-01-01": 2524.73664582003, - "2029-01-01": 2475.47998571176, - "2028-01-01": 2426.88895614549, - "2027-01-01": 2377.63229603722, - "2026-01-01": 2320.4546324791, - "2025-01-01": 2285.51679471356, - "2024-01-01": 2235.91622549192, - "2023-01-01": 2115, - "2015-01-01": 2115 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH", - "description": null, - "label": "OH", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 555.55004214611, - "2034-01-01": 544.792319599174, - "2033-01-01": 534.167408441706, - "2032-01-01": 523.808120063174, - "2031-01-01": 513.71445446358, - "2030-01-01": 503.753600253454, - "2029-01-01": 493.925557432796, - "2028-01-01": 484.230326001606, - "2027-01-01": 474.402283180948, - "2026-01-01": 462.993784825617, - "2025-01-01": 456.022736344739, - "2024-01-01": 446.126074306189, - "2023-01-01": 422, - "2015-01-01": 422 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 779.349822157577, - "2034-01-01": 764.258419911637, - "2033-01-01": 749.353331273672, - "2032-01-01": 734.820869851657, - "2031-01-01": 720.661035645591, - "2030-01-01": 706.687515047499, - "2029-01-01": 692.900308057381, - "2028-01-01": 679.299414675239, - "2027-01-01": 665.512207685122, - "2026-01-01": 649.507868760107, - "2025-01-01": 639.728578000203, - "2024-01-01": 625.845108979298, - "2023-01-01": 592, - "2015-01-01": 592 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 892.566181457495, - "2034-01-01": 875.28244712853, - "2033-01-01": 858.212092235726, - "2032-01-01": 841.568496215242, - "2031-01-01": 825.351659067079, - "2030-01-01": 809.348201355075, - "2029-01-01": 793.558123079231, - "2028-01-01": 777.981424239547, - "2027-01-01": 762.191345963703, - "2026-01-01": 743.862052397555, - "2025-01-01": 732.662121425908, - "2024-01-01": 716.761797108048, - "2023-01-01": 678, - "2015-01-01": 678 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 987.351970638822, - "2034-01-01": 968.232795496162, - "2033-01-01": 949.349659552794, - "2032-01-01": 930.938602008011, - "2031-01-01": 912.999622861813, - "2030-01-01": 895.296682914906, - "2029-01-01": 877.829782167291, - "2028-01-01": 860.598920618968, - "2027-01-01": 843.132019871353, - "2026-01-01": 822.856252652163, - "2025-01-01": 810.466948479986, - "2024-01-01": 792.87809414607, - "2023-01-01": 750, - "2015-01-01": 750 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1071.60600546667, - "2034-01-01": 1050.8553273785, - "2033-01-01": 1030.3608305013, - "2032-01-01": 1010.37869604603, - "2031-01-01": 990.908924012687, - "2030-01-01": 971.695333190311, - "2029-01-01": 952.737923578899, - "2028-01-01": 934.036695178453, - "2027-01-01": 915.079285567042, - "2026-01-01": 893.073319545147, - "2025-01-01": 879.626794750279, - "2024-01-01": 860.537024846535, - "2023-01-01": 814, - "2015-01-01": 814 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1145.32828594103, - "2034-01-01": 1123.15004277555, - "2033-01-01": 1101.24560508124, - "2032-01-01": 1079.88877832929, - "2031-01-01": 1059.0795625197, - "2030-01-01": 1038.54415218129, - "2029-01-01": 1018.28254731406, - "2028-01-01": 998.294747918003, - "2027-01-01": 978.03314305077, - "2026-01-01": 954.513253076509, - "2025-01-01": 940.141660236784, - "2024-01-01": 919.738589209442, - "2023-01-01": 870, - "2015-01-01": 870 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1213.78468923866, - "2034-01-01": 1190.28084992995, - "2033-01-01": 1167.0671814769, - "2032-01-01": 1144.43385473518, - "2031-01-01": 1122.38086970479, - "2030-01-01": 1100.61805553006, - "2029-01-01": 1079.14541221099, - "2028-01-01": 1057.96293974758, - "2027-01-01": 1036.49029642852, - "2026-01-01": 1011.56461992706, - "2025-01-01": 996.334035331397, - "2024-01-01": 974.711470403569, - "2023-01-01": 922, - "2015-01-01": 922 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1275.65874606536, - "2034-01-01": 1250.95677178104, - "2033-01-01": 1226.55976014221, - "2032-01-01": 1202.77267379435, - "2031-01-01": 1179.59551273746, - "2030-01-01": 1156.72331432606, - "2029-01-01": 1134.15607856014, - "2028-01-01": 1111.89380543971, - "2027-01-01": 1089.32656967379, - "2026-01-01": 1063.13027842659, - "2025-01-01": 1047.12329743614, - "2024-01-01": 1024.39849763672, - "2023-01-01": 969, - "2015-01-01": 969 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1334.89986430369, - "2034-01-01": 1309.05073951081, - "2033-01-01": 1283.52073971538, - "2032-01-01": 1258.62898991483, - "2031-01-01": 1234.37549010917, - "2030-01-01": 1210.44111530095, - "2029-01-01": 1186.82586549018, - "2028-01-01": 1163.52974067684, - "2027-01-01": 1139.91449086607, - "2026-01-01": 1112.50165358572, - "2025-01-01": 1095.75131434494, - "2024-01-01": 1071.97118328549, - "2023-01-01": 1014, - "2015-01-01": 1014 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1411.25508336642, - "2034-01-01": 1383.92740902918, - "2033-01-01": 1356.93711338746, - "2032-01-01": 1330.62157513678, - "2031-01-01": 1304.98079427715, - "2030-01-01": 1279.67739211304, - "2029-01-01": 1254.71136864445, - "2028-01-01": 1230.08272387138, - "2027-01-01": 1205.11670040279, - "2026-01-01": 1176.13587045749, - "2025-01-01": 1158.42742502739, - "2024-01-01": 1133.28708923278, - "2023-01-01": 1072, - "2015-01-01": 1072 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1509.9902804303, - "2034-01-01": 1480.7506885788, - "2033-01-01": 1451.87207934274, - "2032-01-01": 1423.71543533759, - "2031-01-01": 1396.28075656333, - "2030-01-01": 1369.20706040453, - "2029-01-01": 1342.49434686118, - "2028-01-01": 1316.14261593328, - "2027-01-01": 1289.42990238992, - "2026-01-01": 1258.42149572271, - "2025-01-01": 1239.47411987539, - "2024-01-01": 1212.57489864739, - "2023-01-01": 1147, - "2015-01-01": 1147 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1602.14313102326, - "2034-01-01": 1571.11908282511, - "2033-01-01": 1540.47804756767, - "2032-01-01": 1510.60303819167, - "2031-01-01": 1481.4940546971, - "2030-01-01": 1452.76808414325, - "2029-01-01": 1424.42512653012, - "2028-01-01": 1396.46518185771, - "2027-01-01": 1368.12222424458, - "2026-01-01": 1335.22141263691, - "2025-01-01": 1315.11770173352, - "2024-01-01": 1286.57685410102, - "2023-01-01": 1217, - "2015-01-01": 1217 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1685.08069655692, - "2034-01-01": 1652.45063764678, - "2033-01-01": 1620.2234189701, - "2032-01-01": 1588.80188076034, - "2031-01-01": 1558.18602301749, - "2030-01-01": 1527.97300550811, - "2029-01-01": 1498.16282823218, - "2028-01-01": 1468.75549118971, - "2027-01-01": 1438.94531391378, - "2026-01-01": 1404.34133785969, - "2025-01-01": 1383.19692540584, - "2024-01-01": 1353.17861400929, - "2023-01-01": 1280, - "2015-01-01": 1280 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1764.06885420803, - "2034-01-01": 1729.90926128648, - "2033-01-01": 1696.17139173433, - "2032-01-01": 1663.27696892098, - "2031-01-01": 1631.22599284644, - "2030-01-01": 1599.5967401413, - "2029-01-01": 1568.38921080556, - "2028-01-01": 1537.60340483922, - "2027-01-01": 1506.39587550348, - "2026-01-01": 1470.16983807186, - "2025-01-01": 1448.03428128424, - "2024-01-01": 1416.60886154098, - "2023-01-01": 1340, - "2015-01-01": 1340 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1844.37348115332, - "2034-01-01": 1808.65886198683, - "2033-01-01": 1773.38516404462, - "2032-01-01": 1738.99330855097, - "2031-01-01": 1705.48329550587, - "2030-01-01": 1672.41420368504, - "2029-01-01": 1639.7860330885, - "2028-01-01": 1607.59878371623, - "2027-01-01": 1574.97061311969, - "2026-01-01": 1537.09547995424, - "2025-01-01": 1513.95225976061, - "2024-01-01": 1481.09627986486, - "2023-01-01": 1401, - "2015-01-01": 1401 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1931.26045456953, - "2034-01-01": 1893.86334799049, - "2033-01-01": 1856.92793408527, - "2032-01-01": 1820.91590552767, - "2031-01-01": 1785.82726231771, - "2030-01-01": 1751.20031178156, - "2029-01-01": 1717.03505391922, - "2028-01-01": 1683.3314887307, - "2027-01-01": 1649.16623086837, - "2026-01-01": 1609.50683018763, - "2025-01-01": 1585.27335122685, - "2024-01-01": 1550.86955214971, - "2023-01-01": 1467, - "2015-01-01": 1467 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2011.56508151483, - "2034-01-01": 1972.61294869085, - "2033-01-01": 1934.14170639556, - "2032-01-01": 1896.63224515766, - "2031-01-01": 1860.08456497713, - "2030-01-01": 1824.0177753253, - "2029-01-01": 1788.43187620216, - "2028-01-01": 1753.32686760771, - "2027-01-01": 1717.74096848457, - "2026-01-01": 1676.43247207001, - "2025-01-01": 1651.19132970323, - "2024-01-01": 1615.35697047359, - "2023-01-01": 1528, - "2015-01-01": 1528 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2087.92030057756, - "2034-01-01": 2047.48961820922, - "2033-01-01": 2007.55808006764, - "2032-01-01": 1968.62483037961, - "2031-01-01": 1930.68986914511, - "2030-01-01": 1893.25405213739, - "2029-01-01": 1856.31737935643, - "2028-01-01": 1819.87985080224, - "2027-01-01": 1782.94317802129, - "2026-01-01": 1740.06668894177, - "2025-01-01": 1713.86744038568, - "2024-01-01": 1676.67287642089, - "2023-01-01": 1586, - "2015-01-01": 1586 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2532.88692201212, - "2034-01-01": 2483.83986471282, - "2033-01-01": 2435.39832663944, - "2032-01-01": 2388.16782701789, - "2031-01-01": 2342.14836584817, - "2030-01-01": 2296.73442390437, - "2029-01-01": 2251.92600118649, - "2028-01-01": 2207.72309769453, - "2027-01-01": 2162.91467497665, - "2026-01-01": 2110.90057347035, - "2025-01-01": 2079.11787850066, - "2024-01-01": 2033.99660418272, - "2023-01-01": 1924, - "2015-01-01": 1924 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 579.246489441442, - "2034-01-01": 568.029906691082, - "2033-01-01": 556.951800270973, - "2032-01-01": 546.150646511367, - "2031-01-01": 535.626445412263, - "2030-01-01": 525.240720643411, - "2029-01-01": 514.993472204811, - "2028-01-01": 504.884700096461, - "2027-01-01": 494.637451657861, - "2026-01-01": 482.742334889269, - "2025-01-01": 475.473943108259, - "2024-01-01": 465.155148565695, - "2023-01-01": 440, - "2015-01-01": 440 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 813.578023806389, - "2034-01-01": 797.823823488837, - "2033-01-01": 782.264119471503, - "2032-01-01": 767.093408054601, - "2031-01-01": 752.311689238134, - "2030-01-01": 737.724466721882, - "2029-01-01": 723.331740505847, - "2028-01-01": 709.13351059003, - "2027-01-01": 694.740784373995, - "2026-01-01": 678.033552185382, - "2025-01-01": 667.824765547509, - "2024-01-01": 653.331549576362, - "2023-01-01": 618, - "2015-01-01": 618 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 932.060260283048, - "2034-01-01": 914.011758948377, - "2033-01-01": 896.186078617838, - "2032-01-01": 878.806040295563, - "2031-01-01": 861.871643981551, - "2030-01-01": 845.160068671671, - "2029-01-01": 828.671314365922, - "2028-01-01": 812.405381064306, - "2027-01-01": 795.916626758558, - "2026-01-01": 776.776302503642, - "2025-01-01": 765.080799365107, - "2024-01-01": 748.47692087389, - "2023-01-01": 708, - "2015-01-01": 708 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1030.79545734693, - "2034-01-01": 1010.83503849799, - "2033-01-01": 991.121044573117, - "2032-01-01": 971.899900496364, - "2031-01-01": 953.171606267732, - "2030-01-01": 934.689736963162, - "2029-01-01": 916.454292582651, - "2028-01-01": 898.465273126203, - "2027-01-01": 880.229828745693, - "2026-01-01": 859.061927768858, - "2025-01-01": 846.127494213106, - "2024-01-01": 827.764730288497, - "2023-01-01": 783, - "2015-01-01": 783 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1117.68243076315, - "2034-01-01": 1096.03952450166, - "2033-01-01": 1074.66381461376, - "2032-01-01": 1053.82249747307, - "2031-01-01": 1033.51557307957, - "2030-01-01": 1013.47584505967, - "2029-01-01": 993.703313413373, - "2028-01-01": 974.197978140672, - "2027-01-01": 954.425446494372, - "2026-01-01": 931.473278002248, - "2025-01-01": 917.448585679344, - "2024-01-01": 897.538002573352, - "2023-01-01": 849, - "2015-01-01": 849 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1195.35411912007, - "2034-01-01": 1172.20717108069, - "2033-01-01": 1149.34598783192, - "2032-01-01": 1127.05633416437, - "2031-01-01": 1105.33821007803, - "2030-01-01": 1083.90585078231, - "2029-01-01": 1062.7592562772, - "2028-01-01": 1041.8984265627, - "2027-01-01": 1020.75183205759, - "2026-01-01": 996.204636544218, - "2025-01-01": 981.20531895977, - "2024-01-01": 959.911079312842, - "2023-01-01": 908, - "2015-01-01": 908 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1265.12699171188, - "2034-01-01": 1240.62895529575, - "2033-01-01": 1216.43336377365, - "2032-01-01": 1192.8426620396, - "2031-01-01": 1169.8568500936, - "2030-01-01": 1147.17348304163, - "2029-01-01": 1124.79256088369, - "2028-01-01": 1102.71408361977, - "2027-01-01": 1080.33316146183, - "2026-01-01": 1054.35314506497, - "2025-01-01": 1038.47831665236, - "2024-01-01": 1015.94113129916, - "2023-01-01": 961, - "2015-01-01": 961 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1330.95045642113, - "2034-01-01": 1305.17780832883, - "2033-01-01": 1279.72334107717, - "2032-01-01": 1254.9052355068, - "2031-01-01": 1230.72349161772, - "2030-01-01": 1206.85992856929, - "2029-01-01": 1183.31454636151, - "2028-01-01": 1160.08734499437, - "2027-01-01": 1136.54196278658, - "2026-01-01": 1109.21022857512, - "2025-01-01": 1092.50944655102, - "2024-01-01": 1068.7996709089, - "2023-01-01": 1011, - "2015-01-01": 1011 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1391.50804395365, - "2034-01-01": 1364.56275311926, - "2033-01-01": 1337.95012019641, - "2032-01-01": 1312.00280309662, - "2031-01-01": 1286.72080181991, - "2030-01-01": 1261.77145845474, - "2029-01-01": 1237.1547730011, - "2028-01-01": 1212.870745459, - "2027-01-01": 1188.25406000536, - "2026-01-01": 1159.67874540445, - "2025-01-01": 1142.21808605779, - "2024-01-01": 1117.42952734986, - "2023-01-01": 1057, - "2015-01-01": 1057 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1471.81267089894, - "2034-01-01": 1443.31235381961, - "2033-01-01": 1415.1638925067, - "2032-01-01": 1387.71914272661, - "2031-01-01": 1360.97810447934, - "2030-01-01": 1334.58892199849, - "2029-01-01": 1308.55159528404, - "2028-01-01": 1282.86612433601, - "2027-01-01": 1256.82879762156, - "2026-01-01": 1226.60438728682, - "2025-01-01": 1208.13606453417, - "2024-01-01": 1181.91694567374, - "2023-01-01": 1118, - "2015-01-01": 1118 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1574.49727584537, - "2034-01-01": 1544.00856455121, - "2033-01-01": 1513.89625710019, - "2032-01-01": 1484.53675733544, - "2031-01-01": 1455.93006525697, - "2030-01-01": 1427.69977702164, - "2029-01-01": 1399.84589262944, - "2028-01-01": 1372.36841208038, - "2027-01-01": 1344.51452768818, - "2026-01-01": 1312.18143756265, - "2025-01-01": 1292.42462717608, - "2024-01-01": 1264.37626746493, - "2023-01-01": 1196, - "2015-01-01": 1196 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1670.59953432089, - "2034-01-01": 1638.24988997951, - "2033-01-01": 1606.29962396333, - "2032-01-01": 1575.14811459756, - "2031-01-01": 1544.79536188219, - "2030-01-01": 1514.84198749202, - "2029-01-01": 1485.28799142706, - "2028-01-01": 1456.13337368729, - "2027-01-01": 1426.57937762233, - "2026-01-01": 1392.27277948746, - "2025-01-01": 1371.31007682814, - "2024-01-01": 1341.54973529515, - "2023-01-01": 1269, - "2015-01-01": 1269 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1757.4865077371, - "2034-01-01": 1723.45437598317, - "2033-01-01": 1689.84239400397, - "2032-01-01": 1657.07071157426, - "2031-01-01": 1625.13932869403, - "2030-01-01": 1593.62809558853, - "2029-01-01": 1562.53701225778, - "2028-01-01": 1531.86607870176, - "2027-01-01": 1500.77499537101, - "2026-01-01": 1464.68412972085, - "2025-01-01": 1442.63116829438, - "2024-01-01": 1411.32300758001, - "2023-01-01": 1335, - "2015-01-01": 1335 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1839.10760397658, - "2034-01-01": 1803.49495374418, - "2033-01-01": 1768.32196586034, - "2032-01-01": 1734.02830267359, - "2031-01-01": 1700.61396418394, - "2030-01-01": 1667.63928804283, - "2029-01-01": 1635.10427425027, - "2028-01-01": 1603.00892280626, - "2027-01-01": 1570.47390901371, - "2026-01-01": 1532.70691327343, - "2025-01-01": 1509.62976936872, - "2024-01-01": 1476.86759669608, - "2023-01-01": 1397, - "2015-01-01": 1397 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1923.36163880442, - "2034-01-01": 1886.11748562652, - "2033-01-01": 1849.33313680884, - "2032-01-01": 1813.46839671161, - "2031-01-01": 1778.52326533481, - "2030-01-01": 1744.03793831824, - "2029-01-01": 1710.01241566188, - "2028-01-01": 1676.44669736575, - "2027-01-01": 1642.4211747094, - "2026-01-01": 1602.92398016641, - "2025-01-01": 1578.78961563901, - "2024-01-01": 1544.52652739655, - "2023-01-01": 1461, - "2015-01-01": 1461 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2012.88155080901, - "2034-01-01": 1973.90392575151, - "2033-01-01": 1935.40750594163, - "2032-01-01": 1897.873496627, - "2031-01-01": 1861.30189780762, - "2030-01-01": 1825.21150423585, - "2029-01-01": 1789.60231591172, - "2028-01-01": 1754.4743328352, - "2027-01-01": 1718.86514451107, - "2026-01-01": 1677.52961374021, - "2025-01-01": 1652.2719523012, - "2024-01-01": 1616.41414126579, - "2023-01-01": 1529, - "2015-01-01": 1529 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2095.81911634267, - "2034-01-01": 2055.23548057319, - "2033-01-01": 2015.15287734407, - "2032-01-01": 1976.07233919567, - "2031-01-01": 1937.99386612801, - "2030-01-01": 1900.41642560071, - "2029-01-01": 1863.34001761377, - "2028-01-01": 1826.7646421672, - "2027-01-01": 1789.68823418026, - "2026-01-01": 1746.64953896299, - "2025-01-01": 1720.35117597352, - "2024-01-01": 1683.01590117406, - "2023-01-01": 1592, - "2015-01-01": 1592 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2176.12374328796, - "2034-01-01": 2133.98508127354, - "2033-01-01": 2092.36664965436, - "2032-01-01": 2051.78867882566, - "2031-01-01": 2012.25116878743, - "2030-01-01": 1973.23388914445, - "2029-01-01": 1934.73683989671, - "2028-01-01": 1896.76002104421, - "2027-01-01": 1858.26297179646, - "2026-01-01": 1813.57518084537, - "2025-01-01": 1786.26915444989, - "2024-01-01": 1747.50331949794, - "2023-01-01": 1653, - "2015-01-01": 1653 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2638.20446554693, - "2034-01-01": 2587.11802956574, - "2033-01-01": 2536.66229032507, - "2032-01-01": 2487.46794456541, - "2031-01-01": 2439.53499228676, - "2030-01-01": 2392.23273674863, - "2029-01-01": 2345.561177951, - "2028-01-01": 2299.52031589388, - "2027-01-01": 2252.84875709626, - "2026-01-01": 2198.67190708658, - "2025-01-01": 2165.56768633852, - "2024-01-01": 2118.5702675583, - "2023-01-01": 2004, - "2015-01-01": 2004 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 613.474691090254, - "2034-01-01": 601.595310268282, - "2033-01-01": 589.862588468803, - "2032-01-01": 578.423184714311, - "2031-01-01": 567.277099004806, - "2030-01-01": 556.277672317795, - "2029-01-01": 545.424904653277, - "2028-01-01": 534.718796011252, - "2027-01-01": 523.866028346734, - "2026-01-01": 511.268018314544, - "2025-01-01": 503.570130655565, - "2024-01-01": 492.641589162758, - "2023-01-01": 466, - "2015-01-01": 466 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 860.970918397052, - "2034-01-01": 844.298997672653, - "2033-01-01": 827.832903130037, - "2032-01-01": 811.778460950986, - "2031-01-01": 796.135671135501, - "2030-01-01": 780.698707501798, - "2029-01-01": 765.467570049877, - "2028-01-01": 750.44225877974, - "2027-01-01": 735.21112132782, - "2026-01-01": 717.530652312686, - "2025-01-01": 706.727179074548, - "2024-01-01": 691.389698095373, - "2023-01-01": 654, - "2015-01-01": 654 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 984.719032050451, - "2034-01-01": 965.650841374839, - "2033-01-01": 946.818060460654, - "2032-01-01": 928.456099069323, - "2031-01-01": 910.564957200848, - "2030-01-01": 892.909225093799, - "2029-01-01": 875.488902748178, - "2028-01-01": 858.303990163984, - "2027-01-01": 840.883667818363, - "2026-01-01": 820.661969311757, - "2025-01-01": 808.30570328404, - "2024-01-01": 790.763752561681, - "2023-01-01": 748, - "2015-01-01": 748 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1090.03657558526, - "2034-01-01": 1068.92900622776, - "2033-01-01": 1048.08202414629, - "2032-01-01": 1027.75621661684, - "2031-01-01": 1007.95158363944, - "2030-01-01": 988.407537938056, - "2029-01-01": 969.124079512689, - "2028-01-01": 950.101208363341, - "2027-01-01": 930.817749937974, - "2026-01-01": 908.433302927988, - "2025-01-01": 894.755511121905, - "2024-01-01": 875.337415937262, - "2023-01-01": 828, - "2015-01-01": 828 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1182.18942617822, - "2034-01-01": 1159.29740047407, - "2033-01-01": 1136.68799237121, - "2032-01-01": 1114.64381947093, - "2031-01-01": 1093.16488177321, - "2030-01-01": 1071.96856167678, - "2029-01-01": 1051.05485918164, - "2028-01-01": 1030.42377428778, - "2027-01-01": 1009.51007179263, - "2026-01-01": 985.233219842189, - "2025-01-01": 970.399092980037, - "2024-01-01": 949.339371390895, - "2023-01-01": 898, - "2015-01-01": 898 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1263.81052241769, - "2034-01-01": 1239.33797823509, - "2033-01-01": 1215.16756422758, - "2032-01-01": 1191.60141057025, - "2031-01-01": 1168.63951726312, - "2030-01-01": 1145.97975413108, - "2029-01-01": 1123.62212117413, - "2028-01-01": 1101.56661839228, - "2027-01-01": 1079.20898543533, - "2026-01-01": 1053.25600339477, - "2025-01-01": 1037.39769405438, - "2024-01-01": 1014.88396050697, - "2023-01-01": 960, - "2015-01-01": 960 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1337.53280289206, - "2034-01-01": 1311.63269363213, - "2033-01-01": 1286.05233880752, - "2032-01-01": 1261.11149285352, - "2031-01-01": 1236.81015577014, - "2030-01-01": 1212.82857312206, - "2029-01-01": 1189.16674490929, - "2028-01-01": 1165.82467113183, - "2027-01-01": 1142.16284291906, - "2026-01-01": 1114.69593692613, - "2025-01-01": 1097.91255954089, - "2024-01-01": 1074.08552486988, - "2023-01-01": 1016, - "2015-01-01": 1016 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1407.30567548387, - "2034-01-01": 1380.0544778472, - "2033-01-01": 1353.13971474925, - "2032-01-01": 1326.89782072875, - "2031-01-01": 1301.3287957857, - "2030-01-01": 1276.09620538138, - "2029-01-01": 1251.20004951578, - "2028-01-01": 1226.6403281889, - "2027-01-01": 1201.7441723233, - "2026-01-01": 1172.84444544688, - "2025-01-01": 1155.18555723347, - "2024-01-01": 1130.1155768562, - "2023-01-01": 1069, - "2015-01-01": 1069 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1470.49620160475, - "2034-01-01": 1442.02137675895, - "2033-01-01": 1413.89809296063, - "2032-01-01": 1386.47789125727, - "2031-01-01": 1359.76077164886, - "2030-01-01": 1333.39519308793, - "2029-01-01": 1307.38115557448, - "2028-01-01": 1281.71865910852, - "2027-01-01": 1255.70462159507, - "2026-01-01": 1225.50724561662, - "2025-01-01": 1207.05544193619, - "2024-01-01": 1180.85977488155, - "2023-01-01": 1117, - "2015-01-01": 1117 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1554.7502364326, - "2034-01-01": 1524.64390864129, - "2033-01-01": 1494.90926390913, - "2032-01-01": 1465.91798529528, - "2031-01-01": 1437.67007279973, - "2030-01-01": 1409.79384336334, - "2029-01-01": 1382.28929698609, - "2028-01-01": 1355.156433668, - "2027-01-01": 1327.65188729076, - "2026-01-01": 1295.72431250961, - "2025-01-01": 1276.21528820649, - "2024-01-01": 1248.51870558201, - "2023-01-01": 1181, - "2015-01-01": 1181 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1664.01718784996, - "2034-01-01": 1631.7950046762, - "2033-01-01": 1599.97062623298, - "2032-01-01": 1568.94185725084, - "2031-01-01": 1538.70869772977, - "2030-01-01": 1508.87334293925, - "2029-01-01": 1479.43579287927, - "2028-01-01": 1450.39604754983, - "2027-01-01": 1420.95849748985, - "2026-01-01": 1386.78707113644, - "2025-01-01": 1365.90696383827, - "2024-01-01": 1336.26388133418, - "2023-01-01": 1264, - "2015-01-01": 1264 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1764.06885420803, - "2034-01-01": 1729.90926128648, - "2033-01-01": 1696.17139173433, - "2032-01-01": 1663.27696892098, - "2031-01-01": 1631.22599284644, - "2030-01-01": 1599.5967401413, - "2029-01-01": 1568.38921080556, - "2028-01-01": 1537.60340483922, - "2027-01-01": 1506.39587550348, - "2026-01-01": 1470.16983807186, - "2025-01-01": 1448.03428128424, - "2024-01-01": 1416.60886154098, - "2023-01-01": 1340, - "2015-01-01": 1340 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1856.22170480098, - "2034-01-01": 1820.27765553278, - "2033-01-01": 1784.77735995925, - "2032-01-01": 1750.16457177506, - "2031-01-01": 1716.43929098021, - "2030-01-01": 1683.15776388002, - "2029-01-01": 1650.31999047451, - "2028-01-01": 1617.92597076366, - "2027-01-01": 1585.08819735814, - "2026-01-01": 1546.96975498607, - "2025-01-01": 1523.67786314237, - "2024-01-01": 1490.61081699461, - "2023-01-01": 1410, - "2015-01-01": 1410 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1941.79220892302, - "2034-01-01": 1904.19116447579, - "2033-01-01": 1867.05433045383, - "2032-01-01": 1830.84591728242, - "2031-01-01": 1795.56592496156, - "2030-01-01": 1760.75014306598, - "2029-01-01": 1726.39857159567, - "2028-01-01": 1692.51121055064, - "2027-01-01": 1658.15963908033, - "2026-01-01": 1618.28396354925, - "2025-01-01": 1593.91833201064, - "2024-01-01": 1559.32691848727, - "2023-01-01": 1475, - "2015-01-01": 1475 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2029.99565163342, - "2034-01-01": 1990.68662754011, - "2033-01-01": 1951.86290004055, - "2032-01-01": 1914.00976572847, - "2031-01-01": 1877.12722460389, - "2030-01-01": 1840.72998007305, - "2029-01-01": 1804.81803213595, - "2028-01-01": 1769.3913807926, - "2027-01-01": 1733.4794328555, - "2026-01-01": 1691.79245545285, - "2025-01-01": 1666.32004607485, - "2024-01-01": 1630.15736156432, - "2023-01-01": 1542, - "2015-01-01": 1542 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2124.78144081474, - "2034-01-01": 2083.63697590774, - "2033-01-01": 2043.00046735761, - "2032-01-01": 2003.37987152124, - "2031-01-01": 1964.77518839862, - "2030-01-01": 1926.67846163288, - "2029-01-01": 1889.08969122401, - "2028-01-01": 1852.00887717202, - "2027-01-01": 1814.42010676315, - "2026-01-01": 1770.78665570745, - "2025-01-01": 1744.12487312893, - "2024-01-01": 1706.27365860234, - "2023-01-01": 1614, - "2015-01-01": 1614 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2212.98488352515, - "2034-01-01": 2170.13243897206, - "2033-01-01": 2127.80903694433, - "2032-01-01": 2086.54371996729, - "2031-01-01": 2046.33648804094, - "2030-01-01": 2006.65829863994, - "2029-01-01": 1967.50915176429, - "2028-01-01": 1928.88904741398, - "2027-01-01": 1889.73990053833, - "2026-01-01": 1844.29514761105, - "2025-01-01": 1816.52658719314, - "2024-01-01": 1777.10410167939, - "2023-01-01": 1681, - "2015-01-01": 1681 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2297.23891835299, - "2034-01-01": 2252.7549708544, - "2033-01-01": 2208.82020789284, - "2032-01-01": 2165.98381400531, - "2031-01-01": 2124.24578919182, - "2030-01-01": 2083.05694891535, - "2029-01-01": 2042.4172931759, - "2028-01-01": 2002.32682197347, - "2027-01-01": 1961.68716623402, - "2026-01-01": 1914.51221450403, - "2025-01-01": 1885.68643346343, - "2024-01-01": 1844.76303237986, - "2023-01-01": 1745, - "2015-01-01": 1745 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2784.33255720148, - "2034-01-01": 2730.41648329918, - "2033-01-01": 2677.16603993888, - "2032-01-01": 2625.24685766259, - "2031-01-01": 2574.65893647031, - "2030-01-01": 2524.73664582003, - "2029-01-01": 2475.47998571176, - "2028-01-01": 2426.88895614549, - "2027-01-01": 2377.63229603722, - "2026-01-01": 2320.4546324791, - "2025-01-01": 2285.51679471356, - "2024-01-01": 2235.91622549192, - "2023-01-01": 2115, - "2015-01-01": 2115 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 558.182980734481, - "2034-01-01": 547.374273720497, - "2033-01-01": 536.699007533847, - "2032-01-01": 526.290623001862, - "2031-01-01": 516.149120124545, - "2030-01-01": 506.14105807456, - "2029-01-01": 496.266436851908, - "2028-01-01": 486.52525645659, - "2027-01-01": 476.650635233938, - "2026-01-01": 465.188068166023, - "2025-01-01": 458.183981540686, - "2024-01-01": 448.240415890578, - "2023-01-01": 424, - "2015-01-01": 424 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 778.033352863391, - "2034-01-01": 762.967442850976, - "2033-01-01": 748.087531727602, - "2032-01-01": 733.579618382313, - "2031-01-01": 719.443702815108, - "2030-01-01": 705.493786136946, - "2029-01-01": 691.729868347825, - "2028-01-01": 678.151949447747, - "2027-01-01": 664.388031658626, - "2026-01-01": 648.410727089904, - "2025-01-01": 638.647955402229, - "2024-01-01": 624.787938187103, - "2023-01-01": 591, - "2015-01-01": 591 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 887.300304280754, - "2034-01-01": 870.118538885884, - "2033-01-01": 853.148894051445, - "2032-01-01": 836.603490337866, - "2031-01-01": 820.482327745149, - "2030-01-01": 804.573285712862, - "2029-01-01": 788.876364241005, - "2028-01-01": 773.391563329579, - "2027-01-01": 757.694641857723, - "2026-01-01": 739.473485716744, - "2025-01-01": 728.339631034014, - "2024-01-01": 712.533113939269, - "2023-01-01": 674, - "2015-01-01": 674 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 979.453154873711, - "2034-01-01": 960.486933132193, - "2033-01-01": 941.754862276372, - "2032-01-01": 923.491093191947, - "2031-01-01": 905.695625878918, - "2030-01-01": 888.134309451586, - "2029-01-01": 870.807143909952, - "2028-01-01": 853.714129254016, - "2027-01-01": 836.386963712383, - "2026-01-01": 816.273402630945, - "2025-01-01": 803.983212892146, - "2024-01-01": 786.535069392902, - "2023-01-01": 744, - "2015-01-01": 744 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1059.757781819, - "2034-01-01": 1039.23653383255, - "2033-01-01": 1018.96863458667, - "2032-01-01": 999.207432821932, - "2031-01-01": 979.952928538345, - "2030-01-01": 960.951772995332, - "2029-01-01": 942.203966192892, - "2028-01-01": 923.709508131026, - "2027-01-01": 904.961701328586, - "2026-01-01": 883.199044513321, - "2025-01-01": 869.901191368519, - "2024-01-01": 851.022487716782, - "2023-01-01": 805, - "2015-01-01": 805 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1132.16359299918, - "2034-01-01": 1110.24027216893, - "2033-01-01": 1088.58760962054, - "2032-01-01": 1067.47626363585, - "2031-01-01": 1046.90623421488, - "2030-01-01": 1026.60686307576, - "2029-01-01": 1006.57815021849, - "2028-01-01": 986.820095643083, - "2027-01-01": 966.791382785818, - "2026-01-01": 943.54183637448, - "2025-01-01": 929.335434257051, - "2024-01-01": 909.166881287494, - "2023-01-01": 860, - "2015-01-01": 860 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1197.98705770844, - "2034-01-01": 1174.78912520201, - "2033-01-01": 1151.87758692406, - "2032-01-01": 1129.53883710305, - "2031-01-01": 1107.772875739, - "2030-01-01": 1086.29330860342, - "2029-01-01": 1065.10013569631, - "2028-01-01": 1044.19335701768, - "2027-01-01": 1023.00018411058, - "2026-01-01": 998.398919884624, - "2025-01-01": 983.366564155717, - "2024-01-01": 962.025420897232, - "2023-01-01": 910, - "2015-01-01": 910 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1257.22817594677, - "2034-01-01": 1232.88309293178, - "2033-01-01": 1208.83856649723, - "2032-01-01": 1185.39515322353, - "2031-01-01": 1162.55285311071, - "2030-01-01": 1140.01110957831, - "2029-01-01": 1117.76992262635, - "2028-01-01": 1095.82929225482, - "2027-01-01": 1073.58810530286, - "2026-01-01": 1047.77029504375, - "2025-01-01": 1031.99458106452, - "2024-01-01": 1009.598106546, - "2023-01-01": 955, - "2015-01-01": 955 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1313.83635559673, - "2034-01-01": 1288.39510654023, - "2033-01-01": 1263.26794697825, - "2032-01-01": 1238.76896640533, - "2031-01-01": 1214.89816482145, - "2030-01-01": 1191.3414527321, - "2029-01-01": 1168.09883013727, - "2028-01-01": 1145.17029703697, - "2027-01-01": 1121.92767444215, - "2026-01-01": 1094.94738686248, - "2025-01-01": 1078.46135277737, - "2024-01-01": 1055.05645061037, - "2023-01-01": 998, - "2015-01-01": 998 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1387.55863607109, - "2034-01-01": 1360.68982193727, - "2033-01-01": 1334.15272155819, - "2032-01-01": 1308.27904868859, - "2031-01-01": 1283.06880332847, - "2030-01-01": 1258.19027172308, - "2029-01-01": 1233.64345387243, - "2028-01-01": 1209.42834977652, - "2027-01-01": 1184.88153192588, - "2026-01-01": 1156.38732039384, - "2025-01-01": 1138.97621826387, - "2024-01-01": 1114.25801497328, - "2023-01-01": 1054, - "2015-01-01": 1054 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1482.34442525242, - "2034-01-01": 1453.6401703049, - "2033-01-01": 1425.29028887526, - "2032-01-01": 1397.64915448136, - "2031-01-01": 1370.7167671232, - "2030-01-01": 1344.13875328291, - "2029-01-01": 1317.91511296049, - "2028-01-01": 1292.04584615594, - "2027-01-01": 1265.82220583353, - "2026-01-01": 1235.38152064845, - "2025-01-01": 1216.78104531795, - "2024-01-01": 1190.3743120113, - "2023-01-01": 1126, - "2015-01-01": 1126 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1569.23139866863, - "2034-01-01": 1538.84465630857, - "2033-01-01": 1508.83305891591, - "2032-01-01": 1479.57175145807, - "2031-01-01": 1451.06073393504, - "2030-01-01": 1422.92486137942, - "2029-01-01": 1395.16413379121, - "2028-01-01": 1367.77855117041, - "2027-01-01": 1340.0178235822, - "2026-01-01": 1307.79287088184, - "2025-01-01": 1288.10213678419, - "2024-01-01": 1260.14758429615, - "2023-01-01": 1192, - "2015-01-01": 1192 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1649.53602561392, - "2034-01-01": 1617.59425700892, - "2033-01-01": 1586.0468312262, - "2032-01-01": 1555.28809108805, - "2031-01-01": 1525.31803659447, - "2030-01-01": 1495.74232492317, - "2029-01-01": 1466.56095607415, - "2028-01-01": 1437.77393004742, - "2027-01-01": 1408.59256119841, - "2026-01-01": 1374.71851276421, - "2025-01-01": 1354.02011526056, - "2024-01-01": 1324.63500262003, - "2023-01-01": 1253, - "2015-01-01": 1253 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1723.25830608829, - "2034-01-01": 1689.88897240597, - "2033-01-01": 1656.93160580614, - "2032-01-01": 1624.79817337132, - "2031-01-01": 1593.48867510148, - "2030-01-01": 1562.59114391415, - "2029-01-01": 1532.10557980931, - "2028-01-01": 1502.03198278697, - "2027-01-01": 1471.54641868214, - "2026-01-01": 1436.15844629557, - "2025-01-01": 1414.53498074707, - "2024-01-01": 1383.83656698294, - "2023-01-01": 1309, - "2015-01-01": 1309 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1800.92999444521, - "2034-01-01": 1766.056618985, - "2033-01-01": 1731.6137790243, - "2032-01-01": 1698.03201006261, - "2031-01-01": 1665.31131209995, - "2030-01-01": 1633.02114963679, - "2029-01-01": 1601.16152267314, - "2028-01-01": 1569.732431209, - "2027-01-01": 1537.87280424535, - "2026-01-01": 1500.88980483754, - "2025-01-01": 1478.2917140275, - "2024-01-01": 1446.20964372243, - "2023-01-01": 1368, - "2015-01-01": 1368 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1882.55109068469, - "2034-01-01": 1846.09719674602, - "2033-01-01": 1810.09335088066, - "2032-01-01": 1774.98960116194, - "2031-01-01": 1740.78594758986, - "2030-01-01": 1707.03234209109, - "2029-01-01": 1673.72878466563, - "2028-01-01": 1640.8752753135, - "2027-01-01": 1607.57171788805, - "2026-01-01": 1568.91258839012, - "2025-01-01": 1545.29031510184, - "2024-01-01": 1511.75423283851, - "2023-01-01": 1430, - "2015-01-01": 1430 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1958.90630974742, - "2034-01-01": 1920.97386626439, - "2033-01-01": 1883.50972455274, - "2032-01-01": 1846.98218638389, - "2031-01-01": 1811.39125175784, - "2030-01-01": 1776.26861890317, - "2029-01-01": 1741.6142878199, - "2028-01-01": 1707.42825850803, - "2027-01-01": 1672.77392742477, - "2026-01-01": 1632.54680526189, - "2025-01-01": 1607.96642578429, - "2024-01-01": 1573.0701387858, - "2023-01-01": 1488, - "2015-01-01": 1488 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2031.3121209276, - "2034-01-01": 1991.97760460077, - "2033-01-01": 1953.12869958662, - "2032-01-01": 1915.25101719782, - "2031-01-01": 1878.34455743437, - "2030-01-01": 1841.9237089836, - "2029-01-01": 1805.98847184551, - "2028-01-01": 1770.53884602009, - "2027-01-01": 1734.603608882, - "2026-01-01": 1692.88959712305, - "2025-01-01": 1667.40066867283, - "2024-01-01": 1631.21453235652, - "2023-01-01": 1543, - "2015-01-01": 1543 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2451.26582577265, - "2034-01-01": 2403.7992869518, - "2033-01-01": 2356.91875478307, - "2032-01-01": 2311.21023591856, - "2031-01-01": 2266.67373035826, - "2030-01-01": 2222.72323145007, - "2029-01-01": 2179.35873919399, - "2028-01-01": 2136.58025359002, - "2027-01-01": 2093.21576133395, - "2026-01-01": 2042.87778991777, - "2025-01-01": 2012.11927742631, - "2024-01-01": 1968.45201506664, - "2023-01-01": 1862, - "2015-01-01": 1862 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 634.538199797216, - "2034-01-01": 622.250943238867, - "2033-01-01": 610.115381205929, - "2032-01-01": 598.283208223815, - "2031-01-01": 586.754424292525, - "2030-01-01": 575.377334886646, - "2029-01-01": 564.151940006179, - "2028-01-01": 553.078239651123, - "2027-01-01": 541.852844770656, - "2026-01-01": 528.82228503779, - "2025-01-01": 520.860092223138, - "2024-01-01": 509.556321837875, - "2023-01-01": 482, - "2015-01-01": 482 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 883.350896398199, - "2034-01-01": 866.2456077039, - "2033-01-01": 849.351495413234, - "2032-01-01": 832.879735929834, - "2031-01-01": 816.830329253702, - "2030-01-01": 800.992098981202, - "2029-01-01": 785.365045112336, - "2028-01-01": 769.949167647103, - "2027-01-01": 754.322113778237, - "2026-01-01": 736.182060706135, - "2025-01-01": 725.097763240094, - "2024-01-01": 709.361601562684, - "2023-01-01": 671, - "2015-01-01": 671 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1005.78254075741, - "2034-01-01": 986.306474345424, - "2033-01-01": 967.07085319778, - "2032-01-01": 948.316122578828, - "2031-01-01": 930.042282488566, - "2030-01-01": 912.008887662651, - "2029-01-01": 894.21593810108, - "2028-01-01": 876.663433803855, - "2027-01-01": 858.870484242285, - "2026-01-01": 838.216236035003, - "2025-01-01": 825.595664851613, - "2024-01-01": 807.678485236797, - "2023-01-01": 764, - "2015-01-01": 764 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1109.78361499804, - "2034-01-01": 1088.29366213769, - "2033-01-01": 1067.06901733734, - "2032-01-01": 1046.374988657, - "2031-01-01": 1026.21157609668, - "2030-01-01": 1006.31347159635, - "2029-01-01": 986.680675156035, - "2028-01-01": 967.31318677572, - "2027-01-01": 947.680390335401, - "2026-01-01": 924.890427981031, - "2025-01-01": 910.964850091505, - "2024-01-01": 891.194977820183, - "2023-01-01": 843, - "2015-01-01": 843 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1200.61999629681, - "2034-01-01": 1177.37107932333, - "2033-01-01": 1154.4091860162, - "2032-01-01": 1132.02134004174, - "2031-01-01": 1110.20754139996, - "2030-01-01": 1088.68076642453, - "2029-01-01": 1067.44101511543, - "2028-01-01": 1046.48828747267, - "2027-01-01": 1025.24853616357, - "2026-01-01": 1000.59320322503, - "2025-01-01": 985.527809351663, - "2024-01-01": 964.139762481622, - "2023-01-01": 912, - "2015-01-01": 912 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1282.24109253628, - "2034-01-01": 1257.41165708435, - "2033-01-01": 1232.88875787256, - "2032-01-01": 1208.97893114107, - "2031-01-01": 1185.68217688987, - "2030-01-01": 1162.69195887882, - "2029-01-01": 1140.00827710792, - "2028-01-01": 1117.63113157717, - "2027-01-01": 1094.94744980626, - "2026-01-01": 1068.61598677761, - "2025-01-01": 1052.52641042601, - "2024-01-01": 1029.6843515977, - "2023-01-01": 974, - "2015-01-01": 974 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1354.64690371646, - "2034-01-01": 1328.41539542073, - "2033-01-01": 1302.50773290643, - "2032-01-01": 1277.24776195499, - "2031-01-01": 1252.63548256641, - "2030-01-01": 1228.34704895925, - "2029-01-01": 1204.38246113352, - "2028-01-01": 1180.74171908922, - "2027-01-01": 1156.7771312635, - "2026-01-01": 1128.95877863877, - "2025-01-01": 1111.96065331454, - "2024-01-01": 1087.82874516841, - "2023-01-01": 1029, - "2015-01-01": 1029 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1423.10330701409, - "2034-01-01": 1395.54620257513, - "2033-01-01": 1368.32930930209, - "2032-01-01": 1341.79283836088, - "2031-01-01": 1315.93678975149, - "2030-01-01": 1290.42095230802, - "2029-01-01": 1265.24532603045, - "2028-01-01": 1240.40991091881, - "2027-01-01": 1215.23428464124, - "2026-01-01": 1186.01014548932, - "2025-01-01": 1168.15302840915, - "2024-01-01": 1142.80162636254, - "2023-01-01": 1081, - "2015-01-01": 1081 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1486.29383313497, - "2034-01-01": 1457.51310148689, - "2033-01-01": 1429.08768751347, - "2032-01-01": 1401.37290888939, - "2031-01-01": 1374.36876561465, - "2030-01-01": 1347.71994001457, - "2029-01-01": 1321.42643208916, - "2028-01-01": 1295.48824183842, - "2027-01-01": 1269.19473391301, - "2026-01-01": 1238.67294565906, - "2025-01-01": 1220.02291311187, - "2024-01-01": 1193.54582438788, - "2023-01-01": 1129, - "2015-01-01": 1129 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1569.23139866863, - "2034-01-01": 1538.84465630857, - "2033-01-01": 1508.83305891591, - "2032-01-01": 1479.57175145807, - "2031-01-01": 1451.06073393504, - "2030-01-01": 1422.92486137942, - "2029-01-01": 1395.16413379121, - "2028-01-01": 1367.77855117041, - "2027-01-01": 1340.0178235822, - "2026-01-01": 1307.79287088184, - "2025-01-01": 1288.10213678419, - "2024-01-01": 1260.14758429615, - "2023-01-01": 1192, - "2015-01-01": 1192 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1675.86541149763, - "2034-01-01": 1643.41379822215, - "2033-01-01": 1611.36282214761, - "2032-01-01": 1580.11312047493, - "2031-01-01": 1549.66469320412, - "2030-01-01": 1519.61690313423, - "2029-01-01": 1489.96975026528, - "2028-01-01": 1460.72323459726, - "2027-01-01": 1431.07608172831, - "2026-01-01": 1396.66134616827, - "2025-01-01": 1375.63256722003, - "2024-01-01": 1345.77841846393, - "2023-01-01": 1273, - "2015-01-01": 1273 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1773.28413926732, - "2034-01-01": 1738.94610071111, - "2033-01-01": 1705.03198855682, - "2032-01-01": 1671.96572920639, - "2031-01-01": 1639.74732265982, - "2030-01-01": 1607.95284251517, - "2029-01-01": 1576.58228877245, - "2028-01-01": 1545.63566143167, - "2027-01-01": 1514.26510768895, - "2026-01-01": 1477.84982976328, - "2025-01-01": 1455.59863947006, - "2024-01-01": 1424.00905708634, - "2023-01-01": 1347, - "2015-01-01": 1347 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1862.80405127191, - "2034-01-01": 1826.73254083609, - "2033-01-01": 1791.10635768961, - "2032-01-01": 1756.37082912178, - "2031-01-01": 1722.52595513262, - "2030-01-01": 1689.12640843279, - "2029-01-01": 1656.17218902229, - "2028-01-01": 1623.66329690112, - "2027-01-01": 1590.70907749062, - "2026-01-01": 1552.45546333708, - "2025-01-01": 1529.08097613224, - "2024-01-01": 1495.89667095559, - "2023-01-01": 1415, - "2015-01-01": 1415 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1947.05808609976, - "2034-01-01": 1909.35507271843, - "2033-01-01": 1872.11752863811, - "2032-01-01": 1835.8109231598, - "2031-01-01": 1800.43525628349, - "2030-01-01": 1765.52505870819, - "2029-01-01": 1731.0803304339, - "2028-01-01": 1697.1010714606, - "2027-01-01": 1662.65634318631, - "2026-01-01": 1622.67253023006, - "2025-01-01": 1598.24082240253, - "2024-01-01": 1563.55560165605, - "2023-01-01": 1479, - "2015-01-01": 1479 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2032.62859022179, - "2034-01-01": 1993.26858166143, - "2033-01-01": 1954.39449913269, - "2032-01-01": 1916.49226866716, - "2031-01-01": 1879.56189026485, - "2030-01-01": 1843.11743789415, - "2029-01-01": 1807.15891155506, - "2028-01-01": 1771.68631124758, - "2027-01-01": 1735.72778490849, - "2026-01-01": 1693.98673879325, - "2025-01-01": 1668.4812912708, - "2024-01-01": 1632.27170314871, - "2023-01-01": 1544, - "2015-01-01": 1544 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2124.78144081474, - "2034-01-01": 2083.63697590774, - "2033-01-01": 2043.00046735761, - "2032-01-01": 2003.37987152124, - "2031-01-01": 1964.77518839862, - "2030-01-01": 1926.67846163288, - "2029-01-01": 1889.08969122401, - "2028-01-01": 1852.00887717202, - "2027-01-01": 1814.42010676315, - "2026-01-01": 1770.78665570745, - "2025-01-01": 1744.12487312893, - "2024-01-01": 1706.27365860234, - "2023-01-01": 1614, - "2015-01-01": 1614 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2210.35194493678, - "2034-01-01": 2167.55048485074, - "2033-01-01": 2125.27743785219, - "2032-01-01": 2084.0612170286, - "2031-01-01": 2043.90182237998, - "2030-01-01": 2004.27084081884, - "2029-01-01": 1965.16827234517, - "2028-01-01": 1926.594116959, - "2027-01-01": 1887.49154848534, - "2026-01-01": 1842.10086427064, - "2025-01-01": 1814.3653419972, - "2024-01-01": 1774.989760095, - "2023-01-01": 1679, - "2015-01-01": 1679 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2291.97304117625, - "2034-01-01": 2247.59106261176, - "2033-01-01": 2203.75700970855, - "2032-01-01": 2161.01880812793, - "2031-01-01": 2119.37645786989, - "2030-01-01": 2078.28203327313, - "2029-01-01": 2037.73553433767, - "2028-01-01": 1997.7369610635, - "2027-01-01": 1957.19046212803, - "2026-01-01": 1910.12364782322, - "2025-01-01": 1881.36394307154, - "2024-01-01": 1840.53434921108, - "2023-01-01": 1741, - "2015-01-01": 1741 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2763.26904849452, - "2034-01-01": 2709.76085032859, - "2033-01-01": 2656.91324720175, - "2032-01-01": 2605.38683415309, - "2031-01-01": 2555.18161118259, - "2030-01-01": 2505.63698325118, - "2029-01-01": 2456.75295035886, - "2028-01-01": 2408.52951250562, - "2027-01-01": 2359.64547961329, - "2026-01-01": 2302.90036575585, - "2025-01-01": 2268.22683314599, - "2024-01-01": 2219.0014928168, - "2023-01-01": 2099, - "2015-01-01": 2099 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 684.56403297625, - "2034-01-01": 671.308071544006, - "2033-01-01": 658.215763956604, - "2032-01-01": 645.450764058888, - "2031-01-01": 633.013071850857, - "2030-01-01": 620.739033487668, - "2029-01-01": 608.628648969322, - "2028-01-01": 596.681918295818, - "2027-01-01": 584.571533777472, - "2026-01-01": 570.5136685055, - "2025-01-01": 561.923750946124, - "2024-01-01": 549.728811941275, - "2023-01-01": 520, - "2015-01-01": 520 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 950.490830401639, - "2034-01-01": 932.085437797639, - "2033-01-01": 913.907272262823, - "2032-01-01": 896.183560866379, - "2031-01-01": 878.914303608305, - "2030-01-01": 861.872273419416, - "2029-01-01": 845.057470299712, - "2028-01-01": 828.469894249193, - "2027-01-01": 811.655091129489, - "2026-01-01": 792.136285886482, - "2025-01-01": 780.209515736734, - "2024-01-01": 763.277311964617, - "2023-01-01": 722, - "2015-01-01": 722 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1083.45422911433, - "2034-01-01": 1062.47412092446, - "2033-01-01": 1041.75302641593, - "2032-01-01": 1021.54995927012, - "2031-01-01": 1001.86491948703, - "2030-01-01": 982.43889338529, - "2029-01-01": 963.271880964907, - "2028-01-01": 944.363882225881, - "2027-01-01": 925.196869805498, - "2026-01-01": 902.947594576973, - "2025-01-01": 889.352398132038, - "2024-01-01": 870.051561976288, - "2023-01-01": 823, - "2015-01-01": 823 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1195.35411912007, - "2034-01-01": 1172.20717108069, - "2033-01-01": 1149.34598783192, - "2032-01-01": 1127.05633416437, - "2031-01-01": 1105.33821007803, - "2030-01-01": 1083.90585078231, - "2029-01-01": 1062.7592562772, - "2028-01-01": 1041.8984265627, - "2027-01-01": 1020.75183205759, - "2026-01-01": 996.204636544218, - "2025-01-01": 981.20531895977, - "2024-01-01": 959.911079312842, - "2023-01-01": 908, - "2015-01-01": 908 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1292.77284688976, - "2034-01-01": 1267.73947356964, - "2033-01-01": 1243.01515424113, - "2032-01-01": 1218.90894289582, - "2031-01-01": 1195.42083953373, - "2030-01-01": 1172.24179016325, - "2029-01-01": 1149.37179478437, - "2028-01-01": 1126.8108533971, - "2027-01-01": 1103.94085801823, - "2026-01-01": 1077.39312013923, - "2025-01-01": 1061.1713912098, - "2024-01-01": 1038.14171793525, - "2023-01-01": 982, - "2015-01-01": 982 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1378.34335101179, - "2034-01-01": 1351.65298251264, - "2033-01-01": 1325.2921247357, - "2032-01-01": 1299.59028840318, - "2031-01-01": 1274.54747351509, - "2030-01-01": 1249.83416934921, - "2029-01-01": 1225.45037590554, - "2028-01-01": 1201.39609318408, - "2027-01-01": 1177.01229974041, - "2026-01-01": 1148.70732870242, - "2025-01-01": 1131.41186007806, - "2024-01-01": 1106.85781942791, - "2023-01-01": 1047, - "2015-01-01": 1047 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1457.3315086629, - "2034-01-01": 1429.11160615233, - "2033-01-01": 1401.24009749992, - "2032-01-01": 1374.06537656382, - "2031-01-01": 1347.58744334404, - "2030-01-01": 1321.4579039824, - "2029-01-01": 1295.67675847892, - "2028-01-01": 1270.2440068336, - "2027-01-01": 1244.46286133012, - "2026-01-01": 1214.53582891459, - "2025-01-01": 1196.24921595646, - "2024-01-01": 1170.2880669596, - "2023-01-01": 1107, - "2015-01-01": 1107 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1529.73731984308, - "2034-01-01": 1500.11534448872, - "2033-01-01": 1470.8590725338, - "2032-01-01": 1442.33420737775, - "2031-01-01": 1414.54074902057, - "2030-01-01": 1387.11299406283, - "2029-01-01": 1360.05094250452, - "2028-01-01": 1333.35459434565, - "2027-01-01": 1306.29254278735, - "2026-01-01": 1274.87862077575, - "2025-01-01": 1255.68345884499, - "2024-01-01": 1228.43246053031, - "2023-01-01": 1162, - "2015-01-01": 1162 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1598.19372314071, - "2034-01-01": 1567.24615164312, - "2033-01-01": 1536.68064892946, - "2032-01-01": 1506.87928378363, - "2031-01-01": 1477.84205620565, - "2030-01-01": 1449.18689741159, - "2029-01-01": 1420.91380740145, - "2028-01-01": 1393.02278617524, - "2027-01-01": 1364.7496961651, - "2026-01-01": 1331.9299876263, - "2025-01-01": 1311.8758339396, - "2024-01-01": 1283.40534172444, - "2023-01-01": 1214, - "2015-01-01": 1214 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1686.39716585111, - "2034-01-01": 1653.74161470744, - "2033-01-01": 1621.48921851617, - "2032-01-01": 1590.04313222968, - "2031-01-01": 1559.40335584798, - "2030-01-01": 1529.16673441866, - "2029-01-01": 1499.33326794173, - "2028-01-01": 1469.9029564172, - "2027-01-01": 1440.06948994027, - "2026-01-01": 1405.43847952989, - "2025-01-01": 1384.27754800382, - "2024-01-01": 1354.23578480149, - "2023-01-01": 1281, - "2015-01-01": 1281 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1800.92999444521, - "2034-01-01": 1766.056618985, - "2033-01-01": 1731.6137790243, - "2032-01-01": 1698.03201006261, - "2031-01-01": 1665.31131209995, - "2030-01-01": 1633.02114963679, - "2029-01-01": 1601.16152267314, - "2028-01-01": 1569.732431209, - "2027-01-01": 1537.87280424535, - "2026-01-01": 1500.88980483754, - "2025-01-01": 1478.2917140275, - "2024-01-01": 1446.20964372243, - "2023-01-01": 1368, - "2015-01-01": 1368 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1906.24753798002, - "2034-01-01": 1869.33478383792, - "2033-01-01": 1832.87774270993, - "2032-01-01": 1797.33212761013, - "2031-01-01": 1762.69793853854, - "2030-01-01": 1728.51946248104, - "2029-01-01": 1694.79669943765, - "2028-01-01": 1661.52964940835, - "2027-01-01": 1627.80688636496, - "2026-01-01": 1588.66113845378, - "2025-01-01": 1564.74152186536, - "2024-01-01": 1530.78330709801, - "2023-01-01": 1448, - "2015-01-01": 1448 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2001.03332716135, - "2034-01-01": 1962.28513220555, - "2033-01-01": 1924.015310027, - "2032-01-01": 1886.7022334029, - "2031-01-01": 1850.34590233327, - "2030-01-01": 1814.46794404088, - "2029-01-01": 1779.06835852571, - "2028-01-01": 1744.14714578778, - "2027-01-01": 1708.74756027261, - "2026-01-01": 1667.65533870838, - "2025-01-01": 1642.54634891944, - "2024-01-01": 1606.89960413604, - "2023-01-01": 1520, - "2015-01-01": 1520 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2091.86970846012, - "2034-01-01": 2051.3625493912, - "2033-01-01": 2011.35547870585, - "2032-01-01": 1972.34858478764, - "2031-01-01": 1934.34186763656, - "2030-01-01": 1896.83523886905, - "2029-01-01": 1859.8286984851, - "2028-01-01": 1823.32224648472, - "2027-01-01": 1786.31570610077, - "2026-01-01": 1743.35811395238, - "2025-01-01": 1717.1093081796, - "2024-01-01": 1679.84438879747, - "2023-01-01": 1589, - "2015-01-01": 1589 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2184.02255905307, - "2034-01-01": 2141.73094363751, - "2033-01-01": 2099.96144693078, - "2032-01-01": 2059.23618764172, - "2031-01-01": 2019.55516577033, - "2030-01-01": 1980.39626260777, - "2029-01-01": 1941.75947815405, - "2028-01-01": 1903.64481240916, - "2027-01-01": 1865.00802795543, - "2026-01-01": 1820.15803086658, - "2025-01-01": 1792.75289003773, - "2024-01-01": 1753.84634425111, - "2023-01-01": 1659, - "2015-01-01": 1659 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2282.75775611696, - "2034-01-01": 2238.55422318713, - "2033-01-01": 2194.89641288606, - "2032-01-01": 2152.33004784252, - "2031-01-01": 2110.85512805651, - "2030-01-01": 2069.92593089926, - "2029-01-01": 2029.54245637078, - "2028-01-01": 1989.70470447105, - "2027-01-01": 1949.32122994257, - "2026-01-01": 1902.4436561318, - "2025-01-01": 1873.79958488573, - "2024-01-01": 1833.13415366571, - "2023-01-01": 1734, - "2015-01-01": 1734 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2373.59413741573, - "2034-01-01": 2327.63164037277, - "2033-01-01": 2282.23658156492, - "2032-01-01": 2237.97639922726, - "2031-01-01": 2194.8510933598, - "2030-01-01": 2152.29322572743, - "2029-01-01": 2110.30279633017, - "2028-01-01": 2068.879805168, - "2027-01-01": 2026.88937577073, - "2026-01-01": 1978.1464313758, - "2025-01-01": 1948.36254414589, - "2024-01-01": 1906.07893832715, - "2023-01-01": 1803, - "2015-01-01": 1803 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2461.79758012613, - "2034-01-01": 2414.1271034371, - "2033-01-01": 2367.04515115163, - "2032-01-01": 2321.14024767331, - "2031-01-01": 2276.41239300212, - "2030-01-01": 2232.2730627345, - "2029-01-01": 2188.72225687044, - "2028-01-01": 2145.75997540996, - "2027-01-01": 2102.20916954591, - "2026-01-01": 2051.65492327939, - "2025-01-01": 2020.7642582101, - "2024-01-01": 1976.9093814042, - "2023-01-01": 1870, - "2015-01-01": 1870 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OH.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2964.68885050483, - "2034-01-01": 2907.28034060981, - "2033-01-01": 2850.58057775052, - "2032-01-01": 2795.29830896272, - "2031-01-01": 2741.4335342464, - "2030-01-01": 2688.27750656582, - "2029-01-01": 2635.83022592098, - "2028-01-01": 2584.09169231189, - "2027-01-01": 2531.64441166705, - "2026-01-01": 2470.76304129689, - "2025-01-01": 2433.56209063591, - "2024-01-01": 2380.7486240226, - "2023-01-01": 2252, - "2015-01-01": 2252 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK", - "description": null, - "label": "OK", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 558.182980734481, - "2034-01-01": 547.374273720497, - "2033-01-01": 536.699007533847, - "2032-01-01": 526.290623001862, - "2031-01-01": 516.149120124545, - "2030-01-01": 506.14105807456, - "2029-01-01": 496.266436851908, - "2028-01-01": 486.52525645659, - "2027-01-01": 476.650635233938, - "2026-01-01": 465.188068166023, - "2025-01-01": 458.183981540686, - "2024-01-01": 448.240415890578, - "2023-01-01": 424, - "2015-01-01": 424 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 778.033352863391, - "2034-01-01": 762.967442850976, - "2033-01-01": 748.087531727602, - "2032-01-01": 733.579618382313, - "2031-01-01": 719.443702815108, - "2030-01-01": 705.493786136946, - "2029-01-01": 691.729868347825, - "2028-01-01": 678.151949447747, - "2027-01-01": 664.388031658626, - "2026-01-01": 648.410727089904, - "2025-01-01": 638.647955402229, - "2024-01-01": 624.787938187103, - "2023-01-01": 591, - "2015-01-01": 591 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 887.300304280754, - "2034-01-01": 870.118538885884, - "2033-01-01": 853.148894051445, - "2032-01-01": 836.603490337866, - "2031-01-01": 820.482327745149, - "2030-01-01": 804.573285712862, - "2029-01-01": 788.876364241005, - "2028-01-01": 773.391563329579, - "2027-01-01": 757.694641857723, - "2026-01-01": 739.473485716744, - "2025-01-01": 728.339631034014, - "2024-01-01": 712.533113939269, - "2023-01-01": 674, - "2015-01-01": 674 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 979.453154873711, - "2034-01-01": 960.486933132193, - "2033-01-01": 941.754862276372, - "2032-01-01": 923.491093191947, - "2031-01-01": 905.695625878918, - "2030-01-01": 888.134309451586, - "2029-01-01": 870.807143909952, - "2028-01-01": 853.714129254016, - "2027-01-01": 836.386963712383, - "2026-01-01": 816.273402630945, - "2025-01-01": 803.983212892146, - "2024-01-01": 786.535069392902, - "2023-01-01": 744, - "2015-01-01": 744 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1059.757781819, - "2034-01-01": 1039.23653383255, - "2033-01-01": 1018.96863458667, - "2032-01-01": 999.207432821932, - "2031-01-01": 979.952928538345, - "2030-01-01": 960.951772995332, - "2029-01-01": 942.203966192892, - "2028-01-01": 923.709508131026, - "2027-01-01": 904.961701328586, - "2026-01-01": 883.199044513321, - "2025-01-01": 869.901191368519, - "2024-01-01": 851.022487716782, - "2023-01-01": 805, - "2015-01-01": 805 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1132.16359299918, - "2034-01-01": 1110.24027216893, - "2033-01-01": 1088.58760962054, - "2032-01-01": 1067.47626363585, - "2031-01-01": 1046.90623421488, - "2030-01-01": 1026.60686307576, - "2029-01-01": 1006.57815021849, - "2028-01-01": 986.820095643083, - "2027-01-01": 966.791382785818, - "2026-01-01": 943.54183637448, - "2025-01-01": 929.335434257051, - "2024-01-01": 909.166881287494, - "2023-01-01": 860, - "2015-01-01": 860 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1197.98705770844, - "2034-01-01": 1174.78912520201, - "2033-01-01": 1151.87758692406, - "2032-01-01": 1129.53883710305, - "2031-01-01": 1107.772875739, - "2030-01-01": 1086.29330860342, - "2029-01-01": 1065.10013569631, - "2028-01-01": 1044.19335701768, - "2027-01-01": 1023.00018411058, - "2026-01-01": 998.398919884624, - "2025-01-01": 983.366564155717, - "2024-01-01": 962.025420897232, - "2023-01-01": 910, - "2015-01-01": 910 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1257.22817594677, - "2034-01-01": 1232.88309293178, - "2033-01-01": 1208.83856649723, - "2032-01-01": 1185.39515322353, - "2031-01-01": 1162.55285311071, - "2030-01-01": 1140.01110957831, - "2029-01-01": 1117.76992262635, - "2028-01-01": 1095.82929225482, - "2027-01-01": 1073.58810530286, - "2026-01-01": 1047.77029504375, - "2025-01-01": 1031.99458106452, - "2024-01-01": 1009.598106546, - "2023-01-01": 955, - "2015-01-01": 955 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1313.83635559673, - "2034-01-01": 1288.39510654023, - "2033-01-01": 1263.26794697825, - "2032-01-01": 1238.76896640533, - "2031-01-01": 1214.89816482145, - "2030-01-01": 1191.3414527321, - "2029-01-01": 1168.09883013727, - "2028-01-01": 1145.17029703697, - "2027-01-01": 1121.92767444215, - "2026-01-01": 1094.94738686248, - "2025-01-01": 1078.46135277737, - "2024-01-01": 1055.05645061037, - "2023-01-01": 998, - "2015-01-01": 998 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1387.55863607109, - "2034-01-01": 1360.68982193727, - "2033-01-01": 1334.15272155819, - "2032-01-01": 1308.27904868859, - "2031-01-01": 1283.06880332847, - "2030-01-01": 1258.19027172308, - "2029-01-01": 1233.64345387243, - "2028-01-01": 1209.42834977652, - "2027-01-01": 1184.88153192588, - "2026-01-01": 1156.38732039384, - "2025-01-01": 1138.97621826387, - "2024-01-01": 1114.25801497328, - "2023-01-01": 1054, - "2015-01-01": 1054 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1482.34442525242, - "2034-01-01": 1453.6401703049, - "2033-01-01": 1425.29028887526, - "2032-01-01": 1397.64915448136, - "2031-01-01": 1370.7167671232, - "2030-01-01": 1344.13875328291, - "2029-01-01": 1317.91511296049, - "2028-01-01": 1292.04584615594, - "2027-01-01": 1265.82220583353, - "2026-01-01": 1235.38152064845, - "2025-01-01": 1216.78104531795, - "2024-01-01": 1190.3743120113, - "2023-01-01": 1126, - "2015-01-01": 1126 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1569.23139866863, - "2034-01-01": 1538.84465630857, - "2033-01-01": 1508.83305891591, - "2032-01-01": 1479.57175145807, - "2031-01-01": 1451.06073393504, - "2030-01-01": 1422.92486137942, - "2029-01-01": 1395.16413379121, - "2028-01-01": 1367.77855117041, - "2027-01-01": 1340.0178235822, - "2026-01-01": 1307.79287088184, - "2025-01-01": 1288.10213678419, - "2024-01-01": 1260.14758429615, - "2023-01-01": 1192, - "2015-01-01": 1192 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1649.53602561392, - "2034-01-01": 1617.59425700892, - "2033-01-01": 1586.0468312262, - "2032-01-01": 1555.28809108805, - "2031-01-01": 1525.31803659447, - "2030-01-01": 1495.74232492317, - "2029-01-01": 1466.56095607415, - "2028-01-01": 1437.77393004742, - "2027-01-01": 1408.59256119841, - "2026-01-01": 1374.71851276421, - "2025-01-01": 1354.02011526056, - "2024-01-01": 1324.63500262003, - "2023-01-01": 1253, - "2015-01-01": 1253 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1723.25830608829, - "2034-01-01": 1689.88897240597, - "2033-01-01": 1656.93160580614, - "2032-01-01": 1624.79817337132, - "2031-01-01": 1593.48867510148, - "2030-01-01": 1562.59114391415, - "2029-01-01": 1532.10557980931, - "2028-01-01": 1502.03198278697, - "2027-01-01": 1471.54641868214, - "2026-01-01": 1436.15844629557, - "2025-01-01": 1414.53498074707, - "2024-01-01": 1383.83656698294, - "2023-01-01": 1309, - "2015-01-01": 1309 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1800.92999444521, - "2034-01-01": 1766.056618985, - "2033-01-01": 1731.6137790243, - "2032-01-01": 1698.03201006261, - "2031-01-01": 1665.31131209995, - "2030-01-01": 1633.02114963679, - "2029-01-01": 1601.16152267314, - "2028-01-01": 1569.732431209, - "2027-01-01": 1537.87280424535, - "2026-01-01": 1500.88980483754, - "2025-01-01": 1478.2917140275, - "2024-01-01": 1446.20964372243, - "2023-01-01": 1368, - "2015-01-01": 1368 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1882.55109068469, - "2034-01-01": 1846.09719674602, - "2033-01-01": 1810.09335088066, - "2032-01-01": 1774.98960116194, - "2031-01-01": 1740.78594758986, - "2030-01-01": 1707.03234209109, - "2029-01-01": 1673.72878466563, - "2028-01-01": 1640.8752753135, - "2027-01-01": 1607.57171788805, - "2026-01-01": 1568.91258839012, - "2025-01-01": 1545.29031510184, - "2024-01-01": 1511.75423283851, - "2023-01-01": 1430, - "2015-01-01": 1430 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1958.90630974742, - "2034-01-01": 1920.97386626439, - "2033-01-01": 1883.50972455274, - "2032-01-01": 1846.98218638389, - "2031-01-01": 1811.39125175784, - "2030-01-01": 1776.26861890317, - "2029-01-01": 1741.6142878199, - "2028-01-01": 1707.42825850803, - "2027-01-01": 1672.77392742477, - "2026-01-01": 1632.54680526189, - "2025-01-01": 1607.96642578429, - "2024-01-01": 1573.0701387858, - "2023-01-01": 1488, - "2015-01-01": 1488 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2031.3121209276, - "2034-01-01": 1991.97760460077, - "2033-01-01": 1953.12869958662, - "2032-01-01": 1915.25101719782, - "2031-01-01": 1878.34455743437, - "2030-01-01": 1841.9237089836, - "2029-01-01": 1805.98847184551, - "2028-01-01": 1770.53884602009, - "2027-01-01": 1734.603608882, - "2026-01-01": 1692.88959712305, - "2025-01-01": 1667.40066867283, - "2024-01-01": 1631.21453235652, - "2023-01-01": 1543, - "2015-01-01": 1543 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2451.26582577265, - "2034-01-01": 2403.7992869518, - "2033-01-01": 2356.91875478307, - "2032-01-01": 2311.21023591856, - "2031-01-01": 2266.67373035826, - "2030-01-01": 2222.72323145007, - "2029-01-01": 2179.35873919399, - "2028-01-01": 2136.58025359002, - "2027-01-01": 2093.21576133395, - "2026-01-01": 2042.87778991777, - "2025-01-01": 2012.11927742631, - "2024-01-01": 1968.45201506664, - "2023-01-01": 1862, - "2015-01-01": 1862 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 634.538199797216, - "2034-01-01": 622.250943238867, - "2033-01-01": 610.115381205929, - "2032-01-01": 598.283208223815, - "2031-01-01": 586.754424292525, - "2030-01-01": 575.377334886646, - "2029-01-01": 564.151940006179, - "2028-01-01": 553.078239651123, - "2027-01-01": 541.852844770656, - "2026-01-01": 528.82228503779, - "2025-01-01": 520.860092223138, - "2024-01-01": 509.556321837875, - "2023-01-01": 482, - "2015-01-01": 482 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 883.350896398199, - "2034-01-01": 866.2456077039, - "2033-01-01": 849.351495413234, - "2032-01-01": 832.879735929834, - "2031-01-01": 816.830329253702, - "2030-01-01": 800.992098981202, - "2029-01-01": 785.365045112336, - "2028-01-01": 769.949167647103, - "2027-01-01": 754.322113778237, - "2026-01-01": 736.182060706135, - "2025-01-01": 725.097763240094, - "2024-01-01": 709.361601562684, - "2023-01-01": 671, - "2015-01-01": 671 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1005.78254075741, - "2034-01-01": 986.306474345424, - "2033-01-01": 967.07085319778, - "2032-01-01": 948.316122578828, - "2031-01-01": 930.042282488566, - "2030-01-01": 912.008887662651, - "2029-01-01": 894.21593810108, - "2028-01-01": 876.663433803855, - "2027-01-01": 858.870484242285, - "2026-01-01": 838.216236035003, - "2025-01-01": 825.595664851613, - "2024-01-01": 807.678485236797, - "2023-01-01": 764, - "2015-01-01": 764 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1109.78361499804, - "2034-01-01": 1088.29366213769, - "2033-01-01": 1067.06901733734, - "2032-01-01": 1046.374988657, - "2031-01-01": 1026.21157609668, - "2030-01-01": 1006.31347159635, - "2029-01-01": 986.680675156035, - "2028-01-01": 967.31318677572, - "2027-01-01": 947.680390335401, - "2026-01-01": 924.890427981031, - "2025-01-01": 910.964850091505, - "2024-01-01": 891.194977820183, - "2023-01-01": 843, - "2015-01-01": 843 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1200.61999629681, - "2034-01-01": 1177.37107932333, - "2033-01-01": 1154.4091860162, - "2032-01-01": 1132.02134004174, - "2031-01-01": 1110.20754139996, - "2030-01-01": 1088.68076642453, - "2029-01-01": 1067.44101511543, - "2028-01-01": 1046.48828747267, - "2027-01-01": 1025.24853616357, - "2026-01-01": 1000.59320322503, - "2025-01-01": 985.527809351663, - "2024-01-01": 964.139762481622, - "2023-01-01": 912, - "2015-01-01": 912 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1282.24109253628, - "2034-01-01": 1257.41165708435, - "2033-01-01": 1232.88875787256, - "2032-01-01": 1208.97893114107, - "2031-01-01": 1185.68217688987, - "2030-01-01": 1162.69195887882, - "2029-01-01": 1140.00827710792, - "2028-01-01": 1117.63113157717, - "2027-01-01": 1094.94744980626, - "2026-01-01": 1068.61598677761, - "2025-01-01": 1052.52641042601, - "2024-01-01": 1029.6843515977, - "2023-01-01": 974, - "2015-01-01": 974 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1354.64690371646, - "2034-01-01": 1328.41539542073, - "2033-01-01": 1302.50773290643, - "2032-01-01": 1277.24776195499, - "2031-01-01": 1252.63548256641, - "2030-01-01": 1228.34704895925, - "2029-01-01": 1204.38246113352, - "2028-01-01": 1180.74171908922, - "2027-01-01": 1156.7771312635, - "2026-01-01": 1128.95877863877, - "2025-01-01": 1111.96065331454, - "2024-01-01": 1087.82874516841, - "2023-01-01": 1029, - "2015-01-01": 1029 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1423.10330701409, - "2034-01-01": 1395.54620257513, - "2033-01-01": 1368.32930930209, - "2032-01-01": 1341.79283836088, - "2031-01-01": 1315.93678975149, - "2030-01-01": 1290.42095230802, - "2029-01-01": 1265.24532603045, - "2028-01-01": 1240.40991091881, - "2027-01-01": 1215.23428464124, - "2026-01-01": 1186.01014548932, - "2025-01-01": 1168.15302840915, - "2024-01-01": 1142.80162636254, - "2023-01-01": 1081, - "2015-01-01": 1081 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1486.29383313497, - "2034-01-01": 1457.51310148689, - "2033-01-01": 1429.08768751347, - "2032-01-01": 1401.37290888939, - "2031-01-01": 1374.36876561465, - "2030-01-01": 1347.71994001457, - "2029-01-01": 1321.42643208916, - "2028-01-01": 1295.48824183842, - "2027-01-01": 1269.19473391301, - "2026-01-01": 1238.67294565906, - "2025-01-01": 1220.02291311187, - "2024-01-01": 1193.54582438788, - "2023-01-01": 1129, - "2015-01-01": 1129 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1569.23139866863, - "2034-01-01": 1538.84465630857, - "2033-01-01": 1508.83305891591, - "2032-01-01": 1479.57175145807, - "2031-01-01": 1451.06073393504, - "2030-01-01": 1422.92486137942, - "2029-01-01": 1395.16413379121, - "2028-01-01": 1367.77855117041, - "2027-01-01": 1340.0178235822, - "2026-01-01": 1307.79287088184, - "2025-01-01": 1288.10213678419, - "2024-01-01": 1260.14758429615, - "2023-01-01": 1192, - "2015-01-01": 1192 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1675.86541149763, - "2034-01-01": 1643.41379822215, - "2033-01-01": 1611.36282214761, - "2032-01-01": 1580.11312047493, - "2031-01-01": 1549.66469320412, - "2030-01-01": 1519.61690313423, - "2029-01-01": 1489.96975026528, - "2028-01-01": 1460.72323459726, - "2027-01-01": 1431.07608172831, - "2026-01-01": 1396.66134616827, - "2025-01-01": 1375.63256722003, - "2024-01-01": 1345.77841846393, - "2023-01-01": 1273, - "2015-01-01": 1273 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1773.28413926732, - "2034-01-01": 1738.94610071111, - "2033-01-01": 1705.03198855682, - "2032-01-01": 1671.96572920639, - "2031-01-01": 1639.74732265982, - "2030-01-01": 1607.95284251517, - "2029-01-01": 1576.58228877245, - "2028-01-01": 1545.63566143167, - "2027-01-01": 1514.26510768895, - "2026-01-01": 1477.84982976328, - "2025-01-01": 1455.59863947006, - "2024-01-01": 1424.00905708634, - "2023-01-01": 1347, - "2015-01-01": 1347 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1862.80405127191, - "2034-01-01": 1826.73254083609, - "2033-01-01": 1791.10635768961, - "2032-01-01": 1756.37082912178, - "2031-01-01": 1722.52595513262, - "2030-01-01": 1689.12640843279, - "2029-01-01": 1656.17218902229, - "2028-01-01": 1623.66329690112, - "2027-01-01": 1590.70907749062, - "2026-01-01": 1552.45546333708, - "2025-01-01": 1529.08097613224, - "2024-01-01": 1495.89667095559, - "2023-01-01": 1415, - "2015-01-01": 1415 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1947.05808609976, - "2034-01-01": 1909.35507271843, - "2033-01-01": 1872.11752863811, - "2032-01-01": 1835.8109231598, - "2031-01-01": 1800.43525628349, - "2030-01-01": 1765.52505870819, - "2029-01-01": 1731.0803304339, - "2028-01-01": 1697.1010714606, - "2027-01-01": 1662.65634318631, - "2026-01-01": 1622.67253023006, - "2025-01-01": 1598.24082240253, - "2024-01-01": 1563.55560165605, - "2023-01-01": 1479, - "2015-01-01": 1479 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2032.62859022179, - "2034-01-01": 1993.26858166143, - "2033-01-01": 1954.39449913269, - "2032-01-01": 1916.49226866716, - "2031-01-01": 1879.56189026485, - "2030-01-01": 1843.11743789415, - "2029-01-01": 1807.15891155506, - "2028-01-01": 1771.68631124758, - "2027-01-01": 1735.72778490849, - "2026-01-01": 1693.98673879325, - "2025-01-01": 1668.4812912708, - "2024-01-01": 1632.27170314871, - "2023-01-01": 1544, - "2015-01-01": 1544 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2124.78144081474, - "2034-01-01": 2083.63697590774, - "2033-01-01": 2043.00046735761, - "2032-01-01": 2003.37987152124, - "2031-01-01": 1964.77518839862, - "2030-01-01": 1926.67846163288, - "2029-01-01": 1889.08969122401, - "2028-01-01": 1852.00887717202, - "2027-01-01": 1814.42010676315, - "2026-01-01": 1770.78665570745, - "2025-01-01": 1744.12487312893, - "2024-01-01": 1706.27365860234, - "2023-01-01": 1614, - "2015-01-01": 1614 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2210.35194493678, - "2034-01-01": 2167.55048485074, - "2033-01-01": 2125.27743785219, - "2032-01-01": 2084.0612170286, - "2031-01-01": 2043.90182237998, - "2030-01-01": 2004.27084081884, - "2029-01-01": 1965.16827234517, - "2028-01-01": 1926.594116959, - "2027-01-01": 1887.49154848534, - "2026-01-01": 1842.10086427064, - "2025-01-01": 1814.3653419972, - "2024-01-01": 1774.989760095, - "2023-01-01": 1679, - "2015-01-01": 1679 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2291.97304117625, - "2034-01-01": 2247.59106261176, - "2033-01-01": 2203.75700970855, - "2032-01-01": 2161.01880812793, - "2031-01-01": 2119.37645786989, - "2030-01-01": 2078.28203327313, - "2029-01-01": 2037.73553433767, - "2028-01-01": 1997.7369610635, - "2027-01-01": 1957.19046212803, - "2026-01-01": 1910.12364782322, - "2025-01-01": 1881.36394307154, - "2024-01-01": 1840.53434921108, - "2023-01-01": 1741, - "2015-01-01": 1741 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2763.26904849452, - "2034-01-01": 2709.76085032859, - "2033-01-01": 2656.91324720175, - "2032-01-01": 2605.38683415309, - "2031-01-01": 2555.18161118259, - "2030-01-01": 2505.63698325118, - "2029-01-01": 2456.75295035886, - "2028-01-01": 2408.52951250562, - "2027-01-01": 2359.64547961329, - "2026-01-01": 2302.90036575585, - "2025-01-01": 2268.22683314599, - "2024-01-01": 2219.0014928168, - "2023-01-01": 2099, - "2015-01-01": 2099 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 684.56403297625, - "2034-01-01": 671.308071544006, - "2033-01-01": 658.215763956604, - "2032-01-01": 645.450764058888, - "2031-01-01": 633.013071850857, - "2030-01-01": 620.739033487668, - "2029-01-01": 608.628648969322, - "2028-01-01": 596.681918295818, - "2027-01-01": 584.571533777472, - "2026-01-01": 570.5136685055, - "2025-01-01": 561.923750946124, - "2024-01-01": 549.728811941275, - "2023-01-01": 520, - "2015-01-01": 520 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 950.490830401639, - "2034-01-01": 932.085437797639, - "2033-01-01": 913.907272262823, - "2032-01-01": 896.183560866379, - "2031-01-01": 878.914303608305, - "2030-01-01": 861.872273419416, - "2029-01-01": 845.057470299712, - "2028-01-01": 828.469894249193, - "2027-01-01": 811.655091129489, - "2026-01-01": 792.136285886482, - "2025-01-01": 780.209515736734, - "2024-01-01": 763.277311964617, - "2023-01-01": 722, - "2015-01-01": 722 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1083.45422911433, - "2034-01-01": 1062.47412092446, - "2033-01-01": 1041.75302641593, - "2032-01-01": 1021.54995927012, - "2031-01-01": 1001.86491948703, - "2030-01-01": 982.43889338529, - "2029-01-01": 963.271880964907, - "2028-01-01": 944.363882225881, - "2027-01-01": 925.196869805498, - "2026-01-01": 902.947594576973, - "2025-01-01": 889.352398132038, - "2024-01-01": 870.051561976288, - "2023-01-01": 823, - "2015-01-01": 823 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1195.35411912007, - "2034-01-01": 1172.20717108069, - "2033-01-01": 1149.34598783192, - "2032-01-01": 1127.05633416437, - "2031-01-01": 1105.33821007803, - "2030-01-01": 1083.90585078231, - "2029-01-01": 1062.7592562772, - "2028-01-01": 1041.8984265627, - "2027-01-01": 1020.75183205759, - "2026-01-01": 996.204636544218, - "2025-01-01": 981.20531895977, - "2024-01-01": 959.911079312842, - "2023-01-01": 908, - "2015-01-01": 908 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1292.77284688976, - "2034-01-01": 1267.73947356964, - "2033-01-01": 1243.01515424113, - "2032-01-01": 1218.90894289582, - "2031-01-01": 1195.42083953373, - "2030-01-01": 1172.24179016325, - "2029-01-01": 1149.37179478437, - "2028-01-01": 1126.8108533971, - "2027-01-01": 1103.94085801823, - "2026-01-01": 1077.39312013923, - "2025-01-01": 1061.1713912098, - "2024-01-01": 1038.14171793525, - "2023-01-01": 982, - "2015-01-01": 982 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1378.34335101179, - "2034-01-01": 1351.65298251264, - "2033-01-01": 1325.2921247357, - "2032-01-01": 1299.59028840318, - "2031-01-01": 1274.54747351509, - "2030-01-01": 1249.83416934921, - "2029-01-01": 1225.45037590554, - "2028-01-01": 1201.39609318408, - "2027-01-01": 1177.01229974041, - "2026-01-01": 1148.70732870242, - "2025-01-01": 1131.41186007806, - "2024-01-01": 1106.85781942791, - "2023-01-01": 1047, - "2015-01-01": 1047 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1457.3315086629, - "2034-01-01": 1429.11160615233, - "2033-01-01": 1401.24009749992, - "2032-01-01": 1374.06537656382, - "2031-01-01": 1347.58744334404, - "2030-01-01": 1321.4579039824, - "2029-01-01": 1295.67675847892, - "2028-01-01": 1270.2440068336, - "2027-01-01": 1244.46286133012, - "2026-01-01": 1214.53582891459, - "2025-01-01": 1196.24921595646, - "2024-01-01": 1170.2880669596, - "2023-01-01": 1107, - "2015-01-01": 1107 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1529.73731984308, - "2034-01-01": 1500.11534448872, - "2033-01-01": 1470.8590725338, - "2032-01-01": 1442.33420737775, - "2031-01-01": 1414.54074902057, - "2030-01-01": 1387.11299406283, - "2029-01-01": 1360.05094250452, - "2028-01-01": 1333.35459434565, - "2027-01-01": 1306.29254278735, - "2026-01-01": 1274.87862077575, - "2025-01-01": 1255.68345884499, - "2024-01-01": 1228.43246053031, - "2023-01-01": 1162, - "2015-01-01": 1162 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1598.19372314071, - "2034-01-01": 1567.24615164312, - "2033-01-01": 1536.68064892946, - "2032-01-01": 1506.87928378363, - "2031-01-01": 1477.84205620565, - "2030-01-01": 1449.18689741159, - "2029-01-01": 1420.91380740145, - "2028-01-01": 1393.02278617524, - "2027-01-01": 1364.7496961651, - "2026-01-01": 1331.9299876263, - "2025-01-01": 1311.8758339396, - "2024-01-01": 1283.40534172444, - "2023-01-01": 1214, - "2015-01-01": 1214 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1686.39716585111, - "2034-01-01": 1653.74161470744, - "2033-01-01": 1621.48921851617, - "2032-01-01": 1590.04313222968, - "2031-01-01": 1559.40335584798, - "2030-01-01": 1529.16673441866, - "2029-01-01": 1499.33326794173, - "2028-01-01": 1469.9029564172, - "2027-01-01": 1440.06948994027, - "2026-01-01": 1405.43847952989, - "2025-01-01": 1384.27754800382, - "2024-01-01": 1354.23578480149, - "2023-01-01": 1281, - "2015-01-01": 1281 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1800.92999444521, - "2034-01-01": 1766.056618985, - "2033-01-01": 1731.6137790243, - "2032-01-01": 1698.03201006261, - "2031-01-01": 1665.31131209995, - "2030-01-01": 1633.02114963679, - "2029-01-01": 1601.16152267314, - "2028-01-01": 1569.732431209, - "2027-01-01": 1537.87280424535, - "2026-01-01": 1500.88980483754, - "2025-01-01": 1478.2917140275, - "2024-01-01": 1446.20964372243, - "2023-01-01": 1368, - "2015-01-01": 1368 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1906.24753798002, - "2034-01-01": 1869.33478383792, - "2033-01-01": 1832.87774270993, - "2032-01-01": 1797.33212761013, - "2031-01-01": 1762.69793853854, - "2030-01-01": 1728.51946248104, - "2029-01-01": 1694.79669943765, - "2028-01-01": 1661.52964940835, - "2027-01-01": 1627.80688636496, - "2026-01-01": 1588.66113845378, - "2025-01-01": 1564.74152186536, - "2024-01-01": 1530.78330709801, - "2023-01-01": 1448, - "2015-01-01": 1448 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2001.03332716135, - "2034-01-01": 1962.28513220555, - "2033-01-01": 1924.015310027, - "2032-01-01": 1886.7022334029, - "2031-01-01": 1850.34590233327, - "2030-01-01": 1814.46794404088, - "2029-01-01": 1779.06835852571, - "2028-01-01": 1744.14714578778, - "2027-01-01": 1708.74756027261, - "2026-01-01": 1667.65533870838, - "2025-01-01": 1642.54634891944, - "2024-01-01": 1606.89960413604, - "2023-01-01": 1520, - "2015-01-01": 1520 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2091.86970846012, - "2034-01-01": 2051.3625493912, - "2033-01-01": 2011.35547870585, - "2032-01-01": 1972.34858478764, - "2031-01-01": 1934.34186763656, - "2030-01-01": 1896.83523886905, - "2029-01-01": 1859.8286984851, - "2028-01-01": 1823.32224648472, - "2027-01-01": 1786.31570610077, - "2026-01-01": 1743.35811395238, - "2025-01-01": 1717.1093081796, - "2024-01-01": 1679.84438879747, - "2023-01-01": 1589, - "2015-01-01": 1589 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2184.02255905307, - "2034-01-01": 2141.73094363751, - "2033-01-01": 2099.96144693078, - "2032-01-01": 2059.23618764172, - "2031-01-01": 2019.55516577033, - "2030-01-01": 1980.39626260777, - "2029-01-01": 1941.75947815405, - "2028-01-01": 1903.64481240916, - "2027-01-01": 1865.00802795543, - "2026-01-01": 1820.15803086658, - "2025-01-01": 1792.75289003773, - "2024-01-01": 1753.84634425111, - "2023-01-01": 1659, - "2015-01-01": 1659 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2282.75775611696, - "2034-01-01": 2238.55422318713, - "2033-01-01": 2194.89641288606, - "2032-01-01": 2152.33004784252, - "2031-01-01": 2110.85512805651, - "2030-01-01": 2069.92593089926, - "2029-01-01": 2029.54245637078, - "2028-01-01": 1989.70470447105, - "2027-01-01": 1949.32122994257, - "2026-01-01": 1902.4436561318, - "2025-01-01": 1873.79958488573, - "2024-01-01": 1833.13415366571, - "2023-01-01": 1734, - "2015-01-01": 1734 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2373.59413741573, - "2034-01-01": 2327.63164037277, - "2033-01-01": 2282.23658156492, - "2032-01-01": 2237.97639922726, - "2031-01-01": 2194.8510933598, - "2030-01-01": 2152.29322572743, - "2029-01-01": 2110.30279633017, - "2028-01-01": 2068.879805168, - "2027-01-01": 2026.88937577073, - "2026-01-01": 1978.1464313758, - "2025-01-01": 1948.36254414589, - "2024-01-01": 1906.07893832715, - "2023-01-01": 1803, - "2015-01-01": 1803 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2461.79758012613, - "2034-01-01": 2414.1271034371, - "2033-01-01": 2367.04515115163, - "2032-01-01": 2321.14024767331, - "2031-01-01": 2276.41239300212, - "2030-01-01": 2232.2730627345, - "2029-01-01": 2188.72225687044, - "2028-01-01": 2145.75997540996, - "2027-01-01": 2102.20916954591, - "2026-01-01": 2051.65492327939, - "2025-01-01": 2020.7642582101, - "2024-01-01": 1976.9093814042, - "2023-01-01": 1870, - "2015-01-01": 1870 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2964.68885050483, - "2034-01-01": 2907.28034060981, - "2033-01-01": 2850.58057775052, - "2032-01-01": 2795.29830896272, - "2031-01-01": 2741.4335342464, - "2030-01-01": 2688.27750656582, - "2029-01-01": 2635.83022592098, - "2028-01-01": 2584.09169231189, - "2027-01-01": 2531.64441166705, - "2026-01-01": 2470.76304129689, - "2025-01-01": 2433.56209063591, - "2024-01-01": 2380.7486240226, - "2023-01-01": 2252, - "2015-01-01": 2252 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 722.741642507617, - "2034-01-01": 708.746406303191, - "2033-01-01": 694.923950792646, - "2032-01-01": 681.447056669864, - "2031-01-01": 668.315723934847, - "2030-01-01": 655.357171893711, - "2029-01-01": 642.571400546457, - "2028-01-01": 629.958409893085, - "2027-01-01": 617.172638545831, - "2026-01-01": 602.330776941383, - "2025-01-01": 593.26180628735, - "2024-01-01": 580.386764914923, - "2023-01-01": 549, - "2015-01-01": 549 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1003.14960216904, - "2034-01-01": 983.724520224101, - "2033-01-01": 964.539254105639, - "2032-01-01": 945.83361964014, - "2031-01-01": 927.607616827602, - "2030-01-01": 909.621429841544, - "2029-01-01": 891.875058681967, - "2028-01-01": 874.368503348871, - "2027-01-01": 856.622132189295, - "2026-01-01": 836.021952694597, - "2025-01-01": 823.434419655666, - "2024-01-01": 805.564143652407, - "2023-01-01": 762, - "2015-01-01": 762 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1142.69534735266, - "2034-01-01": 1120.56808865422, - "2033-01-01": 1098.7140059891, - "2032-01-01": 1077.40627539061, - "2031-01-01": 1056.64489685874, - "2030-01-01": 1036.15669436018, - "2029-01-01": 1015.94166789494, - "2028-01-01": 995.999817463019, - "2027-01-01": 975.78479099778, - "2026-01-01": 952.318969736103, - "2025-01-01": 937.980415040837, - "2024-01-01": 917.624247625052, - "2023-01-01": 868, - "2015-01-01": 868 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1259.86111453514, - "2034-01-01": 1235.4650470531, - "2033-01-01": 1211.37016558937, - "2032-01-01": 1187.87765616222, - "2031-01-01": 1164.98751877167, - "2030-01-01": 1142.39856739942, - "2029-01-01": 1120.11080204546, - "2028-01-01": 1098.1242227098, - "2027-01-01": 1075.83645735585, - "2026-01-01": 1049.96457838416, - "2025-01-01": 1034.15582626046, - "2024-01-01": 1011.71244813039, - "2023-01-01": 957, - "2015-01-01": 957 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1361.22925018739, - "2034-01-01": 1334.87028072404, - "2033-01-01": 1308.83673063679, - "2032-01-01": 1283.45401930171, - "2031-01-01": 1258.72214671882, - "2030-01-01": 1234.31569351202, - "2029-01-01": 1210.2346596813, - "2028-01-01": 1186.47904522668, - "2027-01-01": 1162.39801139597, - "2026-01-01": 1134.44448698978, - "2025-01-01": 1117.36376630441, - "2024-01-01": 1093.11459912938, - "2023-01-01": 1034, - "2015-01-01": 1034 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1453.38210078035, - "2034-01-01": 1425.23867497035, - "2033-01-01": 1397.44269886171, - "2032-01-01": 1370.34162215579, - "2031-01-01": 1343.93544485259, - "2030-01-01": 1317.87671725074, - "2029-01-01": 1292.16543935025, - "2028-01-01": 1266.80161115112, - "2027-01-01": 1241.09033325063, - "2026-01-01": 1211.24440390398, - "2025-01-01": 1193.00734816254, - "2024-01-01": 1167.11655458302, - "2023-01-01": 1104, - "2015-01-01": 1104 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1535.00319701982, - "2034-01-01": 1505.27925273137, - "2033-01-01": 1475.92227071808, - "2032-01-01": 1447.29921325512, - "2031-01-01": 1419.4100803425, - "2030-01-01": 1391.88790970504, - "2029-01-01": 1364.73270134275, - "2028-01-01": 1337.94445525562, - "2027-01-01": 1310.78924689333, - "2026-01-01": 1279.26718745656, - "2025-01-01": 1260.00594923689, - "2024-01-01": 1232.66114369909, - "2023-01-01": 1166, - "2015-01-01": 1166 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1611.35841608256, - "2034-01-01": 1580.15592224974, - "2033-01-01": 1549.33864439016, - "2032-01-01": 1519.29179847707, - "2031-01-01": 1490.01538451048, - "2030-01-01": 1461.12418651713, - "2029-01-01": 1432.61820449702, - "2028-01-01": 1404.49743845016, - "2027-01-01": 1375.99145643005, - "2026-01-01": 1342.90140432833, - "2025-01-01": 1322.68205991934, - "2024-01-01": 1293.97704964639, - "2023-01-01": 1224, - "2015-01-01": 1224 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1682.44775796855, - "2034-01-01": 1649.86868352546, - "2033-01-01": 1617.69181987796, - "2032-01-01": 1586.31937782165, - "2031-01-01": 1555.75135735653, - "2030-01-01": 1525.585547687, - "2029-01-01": 1495.82194881306, - "2028-01-01": 1466.46056073472, - "2027-01-01": 1436.69696186079, - "2026-01-01": 1402.14705451929, - "2025-01-01": 1381.0356802099, - "2024-01-01": 1351.0642724249, - "2023-01-01": 1278, - "2015-01-01": 1278 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1775.91707785569, - "2034-01-01": 1741.52805483243, - "2033-01-01": 1707.56358764896, - "2032-01-01": 1674.44823214508, - "2031-01-01": 1642.18198832078, - "2030-01-01": 1610.34030033628, - "2029-01-01": 1578.92316819157, - "2028-01-01": 1547.93059188665, - "2027-01-01": 1516.51345974194, - "2026-01-01": 1480.04411310369, - "2025-01-01": 1457.759884666, - "2024-01-01": 1426.12339867073, - "2023-01-01": 1349, - "2015-01-01": 1349 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1895.71578362654, - "2034-01-01": 1859.00696735263, - "2033-01-01": 1822.75134634137, - "2032-01-01": 1787.40211585538, - "2031-01-01": 1752.95927589468, - "2030-01-01": 1718.96963119662, - "2029-01-01": 1685.4331817612, - "2028-01-01": 1652.34992758842, - "2027-01-01": 1618.813478153, - "2026-01-01": 1579.88400509215, - "2025-01-01": 1556.09654108157, - "2024-01-01": 1522.32594076046, - "2023-01-01": 1440, - "2015-01-01": 1440 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2006.29920433809, - "2034-01-01": 1967.4490404482, - "2033-01-01": 1929.07850821128, - "2032-01-01": 1891.66723928028, - "2031-01-01": 1855.2152336552, - "2030-01-01": 1819.24285968309, - "2029-01-01": 1783.75011736393, - "2028-01-01": 1748.73700669774, - "2027-01-01": 1713.24426437859, - "2026-01-01": 1672.04390538919, - "2025-01-01": 1646.86883931133, - "2024-01-01": 1611.12828730481, - "2023-01-01": 1524, - "2015-01-01": 1524 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2106.35087069615, - "2034-01-01": 2065.56329705848, - "2033-01-01": 2025.27927371263, - "2032-01-01": 1986.00235095042, - "2031-01-01": 1947.73252877187, - "2030-01-01": 1909.96625688513, - "2029-01-01": 1872.70353529022, - "2028-01-01": 1835.94436398713, - "2027-01-01": 1798.68164239222, - "2026-01-01": 1755.42667232461, - "2025-01-01": 1728.9961567573, - "2024-01-01": 1691.47326751162, - "2023-01-01": 1600, - "2015-01-01": 1600 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2201.13665987748, - "2034-01-01": 2158.51364542611, - "2033-01-01": 2116.4168410297, - "2032-01-01": 2075.37245674319, - "2031-01-01": 2035.3804925666, - "2030-01-01": 1995.91473844496, - "2029-01-01": 1956.97519437828, - "2028-01-01": 1918.56186036655, - "2027-01-01": 1879.62231629987, - "2026-01-01": 1834.42087257922, - "2025-01-01": 1806.80098381138, - "2024-01-01": 1767.58956454964, - "2023-01-01": 1672, - "2015-01-01": 1672 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2298.55538764718, - "2034-01-01": 2254.04594791507, - "2033-01-01": 2210.08600743891, - "2032-01-01": 2167.22506547465, - "2031-01-01": 2125.4631220223, - "2030-01-01": 2084.2506778259, - "2029-01-01": 2043.58773288545, - "2028-01-01": 2003.47428720096, - "2027-01-01": 1962.81134226051, - "2026-01-01": 1915.60935617423, - "2025-01-01": 1886.76705606141, - "2024-01-01": 1845.82020317205, - "2023-01-01": 1746, - "2015-01-01": 1746 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2401.23999259361, - "2034-01-01": 2354.74215864667, - "2033-01-01": 2308.8183720324, - "2032-01-01": 2264.04268008348, - "2031-01-01": 2220.41508279993, - "2030-01-01": 2177.36153284905, - "2029-01-01": 2134.88203023085, - "2028-01-01": 2092.97657494533, - "2027-01-01": 2050.49707232713, - "2026-01-01": 2001.18640645006, - "2025-01-01": 1971.05561870333, - "2024-01-01": 1928.27952496324, - "2023-01-01": 1824, - "2015-01-01": 1824 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2497.34225106913, - "2034-01-01": 2448.98348407496, - "2033-01-01": 2401.22173889553, - "2032-01-01": 2354.6540373456, - "2031-01-01": 2309.28037942514, - "2030-01-01": 2264.50374331943, - "2029-01-01": 2220.32412902847, - "2028-01-01": 2176.74153655224, - "2027-01-01": 2132.56192226128, - "2026-01-01": 2081.27774837487, - "2025-01-01": 2049.94106835538, - "2024-01-01": 2005.45299279346, - "2023-01-01": 1897, - "2015-01-01": 1897 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2589.49510166208, - "2034-01-01": 2539.35187832127, - "2033-01-01": 2489.82770712046, - "2032-01-01": 2441.54164019968, - "2031-01-01": 2394.49367755891, - "2030-01-01": 2348.06476705816, - "2029-01-01": 2302.25490869741, - "2028-01-01": 2257.06410247668, - "2027-01-01": 2211.25424411594, - "2026-01-01": 2158.07766528907, - "2025-01-01": 2125.58465021351, - "2024-01-01": 2079.45494824709, - "2023-01-01": 1967, - "2015-01-01": 1967 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3118.71575792449, - "2034-01-01": 3058.32465670721, - "2033-01-01": 2998.67912464076, - "2032-01-01": 2940.52473087597, - "2031-01-01": 2883.86147541285, - "2030-01-01": 2827.94378910055, - "2029-01-01": 2772.77167193908, - "2028-01-01": 2718.34512392845, - "2027-01-01": 2663.17300676698, - "2026-01-01": 2599.12861671063, - "2025-01-01": 2559.99493459878, - "2024-01-01": 2504.43760670939, - "2023-01-01": 2369, - "2015-01-01": 2369 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 753.020436273875, - "2034-01-01": 738.438878698406, - "2033-01-01": 724.037340352265, - "2032-01-01": 709.995840464777, - "2031-01-01": 696.314379035942, - "2030-01-01": 682.812936836435, - "2029-01-01": 669.491513866254, - "2028-01-01": 656.3501101254, - "2027-01-01": 643.028687155219, - "2026-01-01": 627.565035356049, - "2025-01-01": 618.116126040736, - "2024-01-01": 604.701693135403, - "2023-01-01": 572, - "2015-01-01": 572 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1045.27661958297, - "2034-01-01": 1025.03578616527, - "2033-01-01": 1005.04483957989, - "2032-01-01": 985.553666659148, - "2031-01-01": 966.562267403039, - "2030-01-01": 947.820754979247, - "2029-01-01": 929.329129387772, - "2028-01-01": 911.087390628614, - "2027-01-01": 892.595765037139, - "2026-01-01": 871.13048614109, - "2025-01-01": 858.014342790812, - "2024-01-01": 839.39360900264, - "2023-01-01": 794, - "2015-01-01": 794 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1190.08824194333, - "2034-01-01": 1167.04326283804, - "2033-01-01": 1144.28278964764, - "2032-01-01": 1122.09132828699, - "2031-01-01": 1100.4688787561, - "2030-01-01": 1079.1309351401, - "2029-01-01": 1058.07749743897, - "2028-01-01": 1037.30856565273, - "2027-01-01": 1016.2551279516, - "2026-01-01": 991.816069863407, - "2025-01-01": 976.882828567877, - "2024-01-01": 955.682396144063, - "2023-01-01": 904, - "2015-01-01": 904 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1311.20341700835, - "2034-01-01": 1285.8131524189, - "2033-01-01": 1260.73634788611, - "2032-01-01": 1236.28646346664, - "2031-01-01": 1212.46349916049, - "2030-01-01": 1188.95399491099, - "2029-01-01": 1165.75795071816, - "2028-01-01": 1142.87536658199, - "2027-01-01": 1119.67932238916, - "2026-01-01": 1092.75310352207, - "2025-01-01": 1076.30010758142, - "2024-01-01": 1052.94210902598, - "2023-01-01": 996, - "2015-01-01": 996 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1417.83742983735, - "2034-01-01": 1390.38229433249, - "2033-01-01": 1363.26611111781, - "2032-01-01": 1336.8278324835, - "2031-01-01": 1311.06745842956, - "2030-01-01": 1285.6460366658, - "2029-01-01": 1260.56356719223, - "2028-01-01": 1235.82005000884, - "2027-01-01": 1210.73758053526, - "2026-01-01": 1181.62157880851, - "2025-01-01": 1163.83053801726, - "2024-01-01": 1138.57294319376, - "2023-01-01": 1077, - "2015-01-01": 1077 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1512.62321901867, - "2034-01-01": 1483.33264270012, - "2033-01-01": 1454.40367843488, - "2032-01-01": 1426.19793827627, - "2031-01-01": 1398.7154222243, - "2030-01-01": 1371.59451822564, - "2029-01-01": 1344.83522628029, - "2028-01-01": 1318.43754638826, - "2027-01-01": 1291.67825444291, - "2026-01-01": 1260.61577906311, - "2025-01-01": 1241.63536507134, - "2024-01-01": 1214.68924023178, - "2023-01-01": 1149, - "2015-01-01": 1149 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1599.51019243489, - "2034-01-01": 1568.53712870378, - "2033-01-01": 1537.94644847553, - "2032-01-01": 1508.12053525298, - "2031-01-01": 1479.05938903614, - "2030-01-01": 1450.38062632215, - "2029-01-01": 1422.08424711101, - "2028-01-01": 1394.17025140273, - "2027-01-01": 1365.87387219159, - "2026-01-01": 1333.0271292965, - "2025-01-01": 1312.95645653758, - "2024-01-01": 1284.46251251663, - "2023-01-01": 1215, - "2015-01-01": 1215 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1678.498350086, - "2034-01-01": 1645.99575234348, - "2033-01-01": 1613.89442123975, - "2032-01-01": 1582.59562341362, - "2031-01-01": 1552.09935886508, - "2030-01-01": 1522.00436095534, - "2029-01-01": 1492.31062968439, - "2028-01-01": 1463.01816505225, - "2027-01-01": 1433.3244337813, - "2026-01-01": 1398.85562950868, - "2025-01-01": 1377.79381241598, - "2024-01-01": 1347.89276004832, - "2023-01-01": 1275, - "2015-01-01": 1275 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1752.22063056036, - "2034-01-01": 1718.29046774052, - "2033-01-01": 1684.77919581969, - "2032-01-01": 1652.10570569688, - "2031-01-01": 1620.2699973721, - "2030-01-01": 1588.85317994632, - "2029-01-01": 1557.85525341955, - "2028-01-01": 1527.2762177918, - "2027-01-01": 1496.27829126503, - "2026-01-01": 1460.29556304004, - "2025-01-01": 1438.30867790248, - "2024-01-01": 1407.09432441123, - "2023-01-01": 1331, - "2015-01-01": 1331 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1849.63935833006, - "2034-01-01": 1813.82277022948, - "2033-01-01": 1778.4483622289, - "2032-01-01": 1743.95831442834, - "2031-01-01": 1710.3526268278, - "2030-01-01": 1677.18911932726, - "2029-01-01": 1644.46779192672, - "2028-01-01": 1612.1886446262, - "2027-01-01": 1579.46731722567, - "2026-01-01": 1541.48404663505, - "2025-01-01": 1518.27475015251, - "2024-01-01": 1485.32496303364, - "2023-01-01": 1405, - "2015-01-01": 1405 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1973.38747198346, - "2034-01-01": 1935.17461393166, - "2033-01-01": 1897.43351955952, - "2032-01-01": 1860.63595254668, - "2031-01-01": 1824.78191289314, - "2030-01-01": 1789.39963691926, - "2029-01-01": 1754.48912462502, - "2028-01-01": 1720.05037601044, - "2027-01-01": 1685.13986371621, - "2026-01-01": 1644.61536363412, - "2025-01-01": 1619.853274362, - "2024-01-01": 1584.69901749995, - "2023-01-01": 1499, - "2015-01-01": 1499 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2087.92030057756, - "2034-01-01": 2047.48961820922, - "2033-01-01": 2007.55808006764, - "2032-01-01": 1968.62483037961, - "2031-01-01": 1930.68986914511, - "2030-01-01": 1893.25405213739, - "2029-01-01": 1856.31737935643, - "2028-01-01": 1819.87985080224, - "2027-01-01": 1782.94317802129, - "2026-01-01": 1740.06668894177, - "2025-01-01": 1713.86744038568, - "2024-01-01": 1676.67287642089, - "2023-01-01": 1586, - "2015-01-01": 1586 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2193.23784411237, - "2034-01-01": 2150.76778306214, - "2033-01-01": 2108.82204375327, - "2032-01-01": 2067.92494792713, - "2031-01-01": 2028.07649558371, - "2030-01-01": 1988.75236498164, - "2029-01-01": 1949.95255612094, - "2028-01-01": 1911.6770690016, - "2027-01-01": 1872.8772601409, - "2026-01-01": 1827.838022558, - "2025-01-01": 1800.31724822354, - "2024-01-01": 1761.24653979647, - "2023-01-01": 1666, - "2015-01-01": 1666 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2290.65657188207, - "2034-01-01": 2246.3000855511, - "2033-01-01": 2202.49121016248, - "2032-01-01": 2159.77755665859, - "2031-01-01": 2118.15912503941, - "2030-01-01": 2077.08830436258, - "2029-01-01": 2036.56509462811, - "2028-01-01": 1996.58949583601, - "2027-01-01": 1956.06628610154, - "2026-01-01": 1909.02650615302, - "2025-01-01": 1880.28332047357, - "2024-01-01": 1839.47717841888, - "2023-01-01": 1740, - "2015-01-01": 1740 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2392.02470753432, - "2034-01-01": 2345.70531922203, - "2033-01-01": 2299.9577752099, - "2032-01-01": 2255.35391979808, - "2031-01-01": 2211.89375298655, - "2030-01-01": 2169.00543047518, - "2029-01-01": 2126.68895226396, - "2028-01-01": 2084.94431835289, - "2027-01-01": 2042.62784014167, - "2026-01-01": 1993.50641475864, - "2025-01-01": 1963.49126051751, - "2024-01-01": 1920.87932941788, - "2023-01-01": 1817, - "2015-01-01": 1817 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2498.65872036331, - "2034-01-01": 2450.27446113562, - "2033-01-01": 2402.48753844161, - "2032-01-01": 2355.89528881494, - "2031-01-01": 2310.49771225563, - "2030-01-01": 2265.69747222999, - "2029-01-01": 2221.49456873802, - "2028-01-01": 2177.88900177974, - "2027-01-01": 2133.68609828777, - "2026-01-01": 2082.37489004507, - "2025-01-01": 2051.02169095335, - "2024-01-01": 2006.51016358566, - "2023-01-01": 1898, - "2015-01-01": 1898 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2598.71038672138, - "2034-01-01": 2548.3887177459, - "2033-01-01": 2498.68830394296, - "2032-01-01": 2450.23040048509, - "2031-01-01": 2403.01500737229, - "2030-01-01": 2356.42086943203, - "2029-01-01": 2310.44798666431, - "2028-01-01": 2265.09635906912, - "2027-01-01": 2219.1234763014, - "2026-01-01": 2165.75765698049, - "2025-01-01": 2133.14900839932, - "2024-01-01": 2086.85514379246, - "2023-01-01": 1974, - "2015-01-01": 1974 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2693.49617590271, - "2034-01-01": 2641.33906611353, - "2033-01-01": 2589.82587126002, - "2032-01-01": 2539.60050627786, - "2031-01-01": 2490.66297116702, - "2030-01-01": 2442.36935099186, - "2029-01-01": 2394.71964575237, - "2028-01-01": 2347.71385544854, - "2027-01-01": 2300.06415020905, - "2026-01-01": 2244.7518572351, - "2025-01-01": 2210.9538354534, - "2024-01-01": 2162.97144083048, - "2023-01-01": 2046, - "2015-01-01": 2046 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3242.46387157789, - "2034-01-01": 3179.6765004094, - "2033-01-01": 3117.66428197138, - "2032-01-01": 3057.20236899431, - "2031-01-01": 2998.29076147819, - "2030-01-01": 2940.15430669255, - "2029-01-01": 2882.79300463738, - "2028-01-01": 2826.20685531269, - "2027-01-01": 2768.84555325752, - "2026-01-01": 2702.2599337097, - "2025-01-01": 2661.57345880828, - "2024-01-01": 2603.8116611757, - "2023-01-01": 2463, - "2015-01-01": 2463 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 796.463922981983, - "2034-01-01": 781.041121700237, - "2033-01-01": 765.808725372588, - "2032-01-01": 750.957138953129, - "2031-01-01": 736.486362441862, - "2030-01-01": 722.205990884691, - "2029-01-01": 708.116024281614, - "2028-01-01": 694.216462632634, - "2027-01-01": 680.126496029558, - "2026-01-01": 663.770710472745, - "2025-01-01": 653.776671773856, - "2024-01-01": 639.58832927783, - "2023-01-01": 605, - "2015-01-01": 605 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1103.20126852711, - "2034-01-01": 1081.83877683438, - "2033-01-01": 1060.74001960699, - "2032-01-01": 1040.16873131028, - "2031-01-01": 1020.12491194427, - "2030-01-01": 1000.34482704359, - "2029-01-01": 980.828476608253, - "2028-01-01": 961.57586063826, - "2027-01-01": 942.059510202925, - "2026-01-01": 919.404719630016, - "2025-01-01": 905.561737101638, - "2024-01-01": 885.909123859209, - "2023-01-01": 838, - "2015-01-01": 838 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1255.91170665258, - "2034-01-01": 1231.59211587112, - "2033-01-01": 1207.57276695115, - "2032-01-01": 1184.15390175419, - "2031-01-01": 1161.33552028023, - "2030-01-01": 1138.81738066776, - "2029-01-01": 1116.59948291679, - "2028-01-01": 1094.68182702733, - "2027-01-01": 1072.46392927636, - "2026-01-01": 1046.67315337355, - "2025-01-01": 1030.91395846654, - "2024-01-01": 1008.5409357538, - "2023-01-01": 954, - "2015-01-01": 954 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1384.92569748272, - "2034-01-01": 1358.10786781595, - "2033-01-01": 1331.62112246605, - "2032-01-01": 1305.7965457499, - "2031-01-01": 1280.6341376675, - "2030-01-01": 1255.80281390197, - "2029-01-01": 1231.30257445332, - "2028-01-01": 1207.13341932154, - "2027-01-01": 1182.63317987289, - "2026-01-01": 1154.19303705343, - "2025-01-01": 1136.81497306793, - "2024-01-01": 1112.14367338889, - "2023-01-01": 1052, - "2015-01-01": 1052 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1496.82558748845, - "2034-01-01": 1467.84091797218, - "2033-01-01": 1439.21408388204, - "2032-01-01": 1411.30292064415, - "2031-01-01": 1384.10742825851, - "2030-01-01": 1357.269771299, - "2029-01-01": 1330.78994976561, - "2028-01-01": 1304.66796365836, - "2027-01-01": 1278.18814212497, - "2026-01-01": 1247.45007902068, - "2025-01-01": 1228.66789389566, - "2024-01-01": 1202.00319072544, - "2023-01-01": 1137, - "2015-01-01": 1137 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1596.87725384652, - "2034-01-01": 1565.95517458246, - "2033-01-01": 1535.41484938339, - "2032-01-01": 1505.63803231429, - "2031-01-01": 1476.62472337517, - "2030-01-01": 1447.99316850104, - "2029-01-01": 1419.7433676919, - "2028-01-01": 1391.87532094774, - "2027-01-01": 1363.6255201386, - "2026-01-01": 1330.8328459561, - "2025-01-01": 1310.79521134163, - "2024-01-01": 1282.34817093224, - "2023-01-01": 1213, - "2015-01-01": 1213 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1686.39716585111, - "2034-01-01": 1653.74161470744, - "2033-01-01": 1621.48921851617, - "2032-01-01": 1590.04313222968, - "2031-01-01": 1559.40335584798, - "2030-01-01": 1529.16673441866, - "2029-01-01": 1499.33326794173, - "2028-01-01": 1469.9029564172, - "2027-01-01": 1440.06948994027, - "2026-01-01": 1405.43847952989, - "2025-01-01": 1384.27754800382, - "2024-01-01": 1354.23578480149, - "2023-01-01": 1281, - "2015-01-01": 1281 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1770.65120067895, - "2034-01-01": 1736.36414658978, - "2033-01-01": 1702.50038946468, - "2032-01-01": 1669.4832262677, - "2031-01-01": 1637.31265699885, - "2030-01-01": 1605.56538469406, - "2029-01-01": 1574.24140935334, - "2028-01-01": 1543.34073097668, - "2027-01-01": 1512.01675563596, - "2026-01-01": 1475.65554642288, - "2025-01-01": 1453.43739427411, - "2024-01-01": 1421.89471550195, - "2023-01-01": 1345, - "2015-01-01": 1345 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1847.00641974169, - "2034-01-01": 1811.24081610815, - "2033-01-01": 1775.91676313676, - "2032-01-01": 1741.47581148965, - "2031-01-01": 1707.91796116683, - "2030-01-01": 1674.80166150615, - "2029-01-01": 1642.12691250761, - "2028-01-01": 1609.89371417122, - "2027-01-01": 1577.21896517268, - "2026-01-01": 1539.28976329465, - "2025-01-01": 1516.11350495656, - "2024-01-01": 1483.21062144925, - "2023-01-01": 1403, - "2015-01-01": 1403 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1949.69102468813, - "2034-01-01": 1911.93702683975, - "2033-01-01": 1874.64912773025, - "2032-01-01": 1838.29342609849, - "2031-01-01": 1802.86992194446, - "2030-01-01": 1767.9125165293, - "2029-01-01": 1733.42120985301, - "2028-01-01": 1699.39600191559, - "2027-01-01": 1664.9046952393, - "2026-01-01": 1624.86681357047, - "2025-01-01": 1600.40206759848, - "2024-01-01": 1565.66994324044, - "2023-01-01": 1481, - "2015-01-01": 1481 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2081.33795410664, - "2034-01-01": 2041.03473290591, - "2033-01-01": 2001.22908233729, - "2032-01-01": 1962.41857303289, - "2031-01-01": 1924.6032049927, - "2030-01-01": 1887.28540758462, - "2029-01-01": 1850.46518080865, - "2028-01-01": 1814.14252466478, - "2027-01-01": 1777.32229788881, - "2026-01-01": 1734.58098059076, - "2025-01-01": 1708.46432739581, - "2024-01-01": 1671.38702245992, - "2023-01-01": 1581, - "2015-01-01": 1581 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2201.13665987748, - "2034-01-01": 2158.51364542611, - "2033-01-01": 2116.4168410297, - "2032-01-01": 2075.37245674319, - "2031-01-01": 2035.3804925666, - "2030-01-01": 1995.91473844496, - "2029-01-01": 1956.97519437828, - "2028-01-01": 1918.56186036655, - "2027-01-01": 1879.62231629987, - "2026-01-01": 1834.42087257922, - "2025-01-01": 1806.80098381138, - "2024-01-01": 1767.58956454964, - "2023-01-01": 1672, - "2015-01-01": 1672 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2311.72008058903, - "2034-01-01": 2266.95571852168, - "2033-01-01": 2222.74400289961, - "2032-01-01": 2179.63758016809, - "2031-01-01": 2137.63645032712, - "2030-01-01": 2096.18796693143, - "2029-01-01": 2055.29212998102, - "2028-01-01": 2014.94893947588, - "2027-01-01": 1974.05310252546, - "2026-01-01": 1926.58077287626, - "2025-01-01": 1897.57328204114, - "2024-01-01": 1856.391911094, - "2023-01-01": 1756, - "2015-01-01": 1756 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2414.40468553547, - "2034-01-01": 2367.65192925328, - "2033-01-01": 2321.4763674931, - "2032-01-01": 2276.45519477692, - "2031-01-01": 2232.58841110475, - "2030-01-01": 2189.29882195458, - "2029-01-01": 2146.58642732641, - "2028-01-01": 2104.45122722025, - "2027-01-01": 2061.73883259208, - "2026-01-01": 2012.15782315209, - "2025-01-01": 1981.86184468306, - "2024-01-01": 1938.85123288519, - "2023-01-01": 1834, - "2015-01-01": 1834 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2519.72222907027, - "2034-01-01": 2470.93009410621, - "2033-01-01": 2422.74033117873, - "2032-01-01": 2375.75531232444, - "2031-01-01": 2329.97503754335, - "2030-01-01": 2284.79713479884, - "2029-01-01": 2240.22160409093, - "2028-01-01": 2196.24844541961, - "2027-01-01": 2151.67291471169, - "2026-01-01": 2099.92915676832, - "2025-01-01": 2068.31165252093, - "2024-01-01": 2023.42489626077, - "2023-01-01": 1914, - "2015-01-01": 1914 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2632.93858837019, - "2034-01-01": 2581.9541213231, - "2033-01-01": 2531.59909214079, - "2032-01-01": 2482.50293868803, - "2031-01-01": 2434.66566096483, - "2030-01-01": 2387.45782110642, - "2029-01-01": 2340.87941911278, - "2028-01-01": 2294.93045498391, - "2027-01-01": 2248.35205299028, - "2026-01-01": 2194.28334040577, - "2025-01-01": 2161.24519594663, - "2024-01-01": 2114.34158438952, - "2023-01-01": 2000, - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2738.256131905, - "2034-01-01": 2685.23228617602, - "2033-01-01": 2632.86305582642, - "2032-01-01": 2581.80305623555, - "2031-01-01": 2532.05228740343, - "2030-01-01": 2482.95613395067, - "2029-01-01": 2434.51459587729, - "2028-01-01": 2386.72767318327, - "2027-01-01": 2338.28613510989, - "2026-01-01": 2282.054674022, - "2025-01-01": 2247.6950037845, - "2024-01-01": 2198.9152477651, - "2023-01-01": 2080, - "2015-01-01": 2080 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2838.30779826307, - "2034-01-01": 2783.3465427863, - "2033-01-01": 2729.06382132777, - "2032-01-01": 2676.1381679057, - "2031-01-01": 2624.56958252009, - "2030-01-01": 2573.67953115272, - "2029-01-01": 2523.46801380357, - "2028-01-01": 2473.93503047266, - "2027-01-01": 2423.72351312352, - "2026-01-01": 2365.43744095742, - "2025-01-01": 2329.82232123047, - "2024-01-01": 2279.2602279719, - "2023-01-01": 2156, - "2015-01-01": 2156 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OK.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3414.92134911614, - "2034-01-01": 3348.79449535606, - "2033-01-01": 3283.4840225066, - "2032-01-01": 3219.80631147838, - "2031-01-01": 3157.76136227139, - "2030-01-01": 3096.53279397502, - "2029-01-01": 3036.12060658927, - "2028-01-01": 2976.52480011414, - "2027-01-01": 2916.11261272839, - "2026-01-01": 2845.98549250628, - "2025-01-01": 2803.13501914278, - "2024-01-01": 2742.30103495321, - "2023-01-01": 2594, - "2015-01-01": 2594 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA", - "description": null, - "label": "PA", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 516.055963320557, - "2034-01-01": 506.063007779327, - "2033-01-01": 496.193422059594, - "2032-01-01": 486.570575982854, - "2031-01-01": 477.194469549107, - "2030-01-01": 467.941732936857, - "2029-01-01": 458.812366146104, - "2028-01-01": 449.806369176847, - "2027-01-01": 440.677002386094, - "2026-01-01": 430.07953471953, - "2025-01-01": 423.60405840554, - "2024-01-01": 414.410950540346, - "2023-01-01": 392, - "2015-01-01": 392 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 720.108703919247, - "2034-01-01": 706.164452181867, - "2033-01-01": 692.392351700505, - "2032-01-01": 678.964553731176, - "2031-01-01": 665.881058273882, - "2030-01-01": 652.969714072605, - "2029-01-01": 640.230521127344, - "2028-01-01": 627.663479438101, - "2027-01-01": 614.92428649284, - "2026-01-01": 600.136493600977, - "2025-01-01": 591.100561091403, - "2024-01-01": 578.272423330534, - "2023-01-01": 547, - "2015-01-01": 547 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 821.4768395715, - "2034-01-01": 805.569685852807, - "2033-01-01": 789.858916747925, - "2032-01-01": 774.540916870666, - "2031-01-01": 759.615686221028, - "2030-01-01": 744.886840185202, - "2029-01-01": 730.354378763186, - "2028-01-01": 716.018301954981, - "2027-01-01": 701.485840532966, - "2026-01-01": 684.616402206599, - "2025-01-01": 674.308501135349, - "2024-01-01": 659.674574329531, - "2023-01-01": 624, - "2015-01-01": 624 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 907.047343693531, - "2034-01-01": 889.483194795807, - "2033-01-01": 872.135887242501, - "2032-01-01": 855.222262378026, - "2031-01-01": 838.742320202385, - "2030-01-01": 822.47921937116, - "2029-01-01": 806.432959884351, - "2028-01-01": 790.603541741959, - "2027-01-01": 774.55728225515, - "2026-01-01": 755.930610769787, - "2025-01-01": 744.548970003614, - "2024-01-01": 728.39067582219, - "2023-01-01": 689, - "2015-01-01": 689 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 982.086093462081, - "2034-01-01": 963.068887253516, - "2033-01-01": 944.286461368513, - "2032-01-01": 925.973596130635, - "2031-01-01": 908.130291539883, - "2030-01-01": 890.521767272693, - "2029-01-01": 873.148023329065, - "2028-01-01": 856.009059709, - "2027-01-01": 838.635315765373, - "2026-01-01": 818.467685971351, - "2025-01-01": 806.144458088093, - "2024-01-01": 788.649410977291, - "2023-01-01": 746, - "2015-01-01": 746 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1047.90955817134, - "2034-01-01": 1027.61774028659, - "2033-01-01": 1007.57643867203, - "2032-01-01": 988.036169597836, - "2031-01-01": 968.996933064004, - "2030-01-01": 950.208212800353, - "2029-01-01": 931.670008806884, - "2028-01-01": 913.382321083598, - "2027-01-01": 894.84411709013, - "2026-01-01": 873.324769481495, - "2025-01-01": 860.175587986759, - "2024-01-01": 841.507950587029, - "2023-01-01": 796, - "2015-01-01": 796 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1108.46714570385, - "2034-01-01": 1087.00268507702, - "2033-01-01": 1065.80321779127, - "2032-01-01": 1045.13373718766, - "2031-01-01": 1024.99424326619, - "2030-01-01": 1005.1197426858, - "2029-01-01": 985.510235446478, - "2028-01-01": 966.165721548228, - "2027-01-01": 946.556214308906, - "2026-01-01": 923.793286310828, - "2025-01-01": 909.884227493531, - "2024-01-01": 890.137807027988, - "2023-01-01": 842, - "2015-01-01": 842 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1165.07532535381, - "2034-01-01": 1142.51469868547, - "2033-01-01": 1120.2325982723, - "2032-01-01": 1098.50755036945, - "2031-01-01": 1077.33955497694, - "2030-01-01": 1056.45008583959, - "2029-01-01": 1035.8391429574, - "2028-01-01": 1015.50672633038, - "2027-01-01": 994.895783448197, - "2026-01-01": 970.970378129552, - "2025-01-01": 956.350999206384, - "2024-01-01": 935.596151092363, - "2023-01-01": 885, - "2015-01-01": 885 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1216.41762782703, - "2034-01-01": 1192.86280405127, - "2033-01-01": 1169.59878056904, - "2032-01-01": 1146.91635767387, - "2031-01-01": 1124.81553536575, - "2030-01-01": 1103.00551335116, - "2029-01-01": 1081.4862916301, - "2028-01-01": 1060.25787020257, - "2027-01-01": 1038.73864848151, - "2026-01-01": 1013.75890326746, - "2025-01-01": 998.495280527343, - "2024-01-01": 976.825811987959, - "2023-01-01": 924, - "2015-01-01": 924 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1284.87403112465, - "2034-01-01": 1259.99361120567, - "2033-01-01": 1235.4203569647, - "2032-01-01": 1211.46143407976, - "2031-01-01": 1188.11684255084, - "2030-01-01": 1165.07941669993, - "2029-01-01": 1142.34915652703, - "2028-01-01": 1119.92606203215, - "2027-01-01": 1097.19580185925, - "2026-01-01": 1070.81027011801, - "2025-01-01": 1054.68765562196, - "2024-01-01": 1031.79869318209, - "2023-01-01": 976, - "2015-01-01": 976 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1373.07747383505, - "2034-01-01": 1346.48907427, - "2033-01-01": 1320.22892655142, - "2032-01-01": 1294.62528252581, - "2031-01-01": 1269.67814219316, - "2030-01-01": 1245.059253707, - "2029-01-01": 1220.76861706731, - "2028-01-01": 1196.80623227411, - "2027-01-01": 1172.51559563443, - "2026-01-01": 1144.31876202161, - "2025-01-01": 1127.08936968617, - "2024-01-01": 1102.62913625914, - "2023-01-01": 1043, - "2015-01-01": 1043 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1453.38210078035, - "2034-01-01": 1425.23867497035, - "2033-01-01": 1397.44269886171, - "2032-01-01": 1370.34162215579, - "2031-01-01": 1343.93544485259, - "2030-01-01": 1317.87671725074, - "2029-01-01": 1292.16543935025, - "2028-01-01": 1266.80161115112, - "2027-01-01": 1241.09033325063, - "2026-01-01": 1211.24440390398, - "2025-01-01": 1193.00734816254, - "2024-01-01": 1167.11655458302, - "2023-01-01": 1104, - "2015-01-01": 1104 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1527.10438125471, - "2034-01-01": 1497.5333903674, - "2033-01-01": 1468.32747344166, - "2032-01-01": 1439.85170443906, - "2031-01-01": 1412.1060833596, - "2030-01-01": 1384.72553624172, - "2029-01-01": 1357.71006308541, - "2028-01-01": 1331.05966389067, - "2027-01-01": 1304.04419073436, - "2026-01-01": 1272.68433743535, - "2025-01-01": 1253.52221364905, - "2024-01-01": 1226.31811894592, - "2023-01-01": 1160, - "2015-01-01": 1160 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1596.87725384652, - "2034-01-01": 1565.95517458246, - "2033-01-01": 1535.41484938339, - "2032-01-01": 1505.63803231429, - "2031-01-01": 1476.62472337517, - "2030-01-01": 1447.99316850104, - "2029-01-01": 1419.7433676919, - "2028-01-01": 1391.87532094774, - "2027-01-01": 1363.6255201386, - "2026-01-01": 1330.8328459561, - "2025-01-01": 1310.79521134163, - "2024-01-01": 1282.34817093224, - "2023-01-01": 1213, - "2015-01-01": 1213 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1667.96659573252, - "2034-01-01": 1635.66793585818, - "2033-01-01": 1603.76802487119, - "2032-01-01": 1572.66561165887, - "2031-01-01": 1542.36069622122, - "2030-01-01": 1512.45452967091, - "2029-01-01": 1482.94711200794, - "2028-01-01": 1453.83844323231, - "2027-01-01": 1424.33102556934, - "2026-01-01": 1390.07849614705, - "2025-01-01": 1369.14883163219, - "2024-01-01": 1339.43539371076, - "2023-01-01": 1267, - "2015-01-01": 1267 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1744.32181479525, - "2034-01-01": 1710.54460537655, - "2033-01-01": 1677.18439854327, - "2032-01-01": 1644.65819688082, - "2031-01-01": 1612.9660003892, - "2030-01-01": 1581.690806483, - "2029-01-01": 1550.83261516221, - "2028-01-01": 1520.39142642684, - "2027-01-01": 1489.53323510606, - "2026-01-01": 1453.71271301882, - "2025-01-01": 1431.82494231464, - "2024-01-01": 1400.75129965806, - "2023-01-01": 1325, - "2015-01-01": 1325 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1814.09468738706, - "2034-01-01": 1778.96638959161, - "2033-01-01": 1744.271774485, - "2032-01-01": 1710.44452475605, - "2031-01-01": 1677.48464040477, - "2030-01-01": 1644.95843874232, - "2029-01-01": 1612.8659197687, - "2028-01-01": 1581.20708348392, - "2027-01-01": 1549.1145645103, - "2026-01-01": 1511.86122153957, - "2025-01-01": 1489.09794000723, - "2024-01-01": 1456.78135164438, - "2023-01-01": 1378, - "2015-01-01": 1378 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1881.2346213905, - "2034-01-01": 1844.80621968535, - "2033-01-01": 1808.82755133459, - "2032-01-01": 1773.7483496926, - "2031-01-01": 1739.56861475937, - "2030-01-01": 1705.83861318053, - "2029-01-01": 1672.55834495608, - "2028-01-01": 1639.72781008601, - "2027-01-01": 1606.44754186155, - "2026-01-01": 1567.81544671992, - "2025-01-01": 1544.20969250387, - "2024-01-01": 1510.69706204631, - "2023-01-01": 1429, - "2015-01-01": 1429 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2270.90953246929, - "2034-01-01": 2226.93542964117, - "2033-01-01": 2183.50421697143, - "2032-01-01": 2141.15878461843, - "2031-01-01": 2099.89913258217, - "2030-01-01": 2059.18237070428, - "2029-01-01": 2019.00849898477, - "2028-01-01": 1979.37751742363, - "2027-01-01": 1939.20364570411, - "2026-01-01": 1892.56938109997, - "2025-01-01": 1864.07398150397, - "2024-01-01": 1823.61961653596, - "2023-01-01": 1725, - "2015-01-01": 1725 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 575.297081558887, - "2034-01-01": 564.156975509097, - "2033-01-01": 553.154401632762, - "2032-01-01": 542.426892103335, - "2031-01-01": 531.974446920816, - "2030-01-01": 521.659533911752, - "2029-01-01": 511.482153076141, - "2028-01-01": 501.442304413985, - "2027-01-01": 491.264923578375, - "2026-01-01": 479.45090987866, - "2025-01-01": 472.232075314339, - "2024-01-01": 461.98363618911, - "2023-01-01": 437, - "2015-01-01": 437 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 801.729800158723, - "2034-01-01": 786.205029942884, - "2033-01-01": 770.871923556869, - "2032-01-01": 755.922144830505, - "2031-01-01": 741.355693763792, - "2030-01-01": 726.980906526904, - "2029-01-01": 712.79778311984, - "2028-01-01": 698.806323542602, - "2027-01-01": 684.623200135539, - "2026-01-01": 668.159277153556, - "2025-01-01": 658.099162165749, - "2024-01-01": 643.817012446609, - "2023-01-01": 609, - "2015-01-01": 609 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 913.629690164456, - "2034-01-01": 895.938080099115, - "2033-01-01": 878.464884972853, - "2032-01-01": 861.428519724747, - "2031-01-01": 844.828984354797, - "2030-01-01": 828.447863923926, - "2029-01-01": 812.285158432133, - "2028-01-01": 796.340867879418, - "2027-01-01": 780.178162387626, - "2026-01-01": 761.416319120801, - "2025-01-01": 749.952082993481, - "2024-01-01": 733.676529783164, - "2023-01-01": 694, - "2015-01-01": 694 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1008.41547934578, - "2034-01-01": 988.888428466747, - "2033-01-01": 969.602452289921, - "2032-01-01": 950.798625517516, - "2031-01-01": 932.476948149531, - "2030-01-01": 914.396345483757, - "2029-01-01": 896.556817520193, - "2028-01-01": 878.958364258839, - "2027-01-01": 861.118836295276, - "2026-01-01": 840.410519375409, - "2025-01-01": 827.756910047559, - "2024-01-01": 809.792826821187, - "2023-01-01": 766, - "2015-01-01": 766 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1091.35304487944, - "2034-01-01": 1070.21998328842, - "2033-01-01": 1049.34782369236, - "2032-01-01": 1028.99746808619, - "2031-01-01": 1009.16891646992, - "2030-01-01": 989.601266848609, - "2029-01-01": 970.294519222245, - "2028-01-01": 951.248673590833, - "2027-01-01": 931.941925964469, - "2026-01-01": 909.530444598191, - "2025-01-01": 895.836133719878, - "2024-01-01": 876.394586729456, - "2023-01-01": 829, - "2015-01-01": 829 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1165.07532535381, - "2034-01-01": 1142.51469868547, - "2033-01-01": 1120.2325982723, - "2032-01-01": 1098.50755036945, - "2031-01-01": 1077.33955497694, - "2030-01-01": 1056.45008583959, - "2029-01-01": 1035.8391429574, - "2028-01-01": 1015.50672633038, - "2027-01-01": 994.895783448197, - "2026-01-01": 970.970378129552, - "2025-01-01": 956.350999206384, - "2024-01-01": 935.596151092363, - "2023-01-01": 885, - "2015-01-01": 885 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1232.21525935725, - "2034-01-01": 1208.35452877921, - "2033-01-01": 1184.78837512189, - "2032-01-01": 1161.811375306, - "2031-01-01": 1139.42352933154, - "2030-01-01": 1117.3302602778, - "2029-01-01": 1095.53156814478, - "2028-01-01": 1074.02745293247, - "2027-01-01": 1052.22876079945, - "2026-01-01": 1026.9246033099, - "2025-01-01": 1011.46275170302, - "2024-01-01": 989.511861494296, - "2023-01-01": 936, - "2015-01-01": 936 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1294.08931618395, - "2034-01-01": 1269.0304506303, - "2033-01-01": 1244.2809537872, - "2032-01-01": 1220.15019436517, - "2031-01-01": 1196.63817236422, - "2030-01-01": 1173.4355190738, - "2029-01-01": 1150.54223449393, - "2028-01-01": 1127.95831862459, - "2027-01-01": 1105.06503404472, - "2026-01-01": 1078.49026180943, - "2025-01-01": 1062.25201380777, - "2024-01-01": 1039.19888872745, - "2023-01-01": 983, - "2015-01-01": 983 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1352.01396512809, - "2034-01-01": 1325.83344129941, - "2033-01-01": 1299.97613381429, - "2032-01-01": 1274.7652590163, - "2031-01-01": 1250.20081690544, - "2030-01-01": 1225.95959113814, - "2029-01-01": 1202.04158171441, - "2028-01-01": 1178.44678863424, - "2027-01-01": 1154.52877921051, - "2026-01-01": 1126.76449529836, - "2025-01-01": 1109.79940811859, - "2024-01-01": 1085.71440358402, - "2023-01-01": 1027, - "2015-01-01": 1027 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1427.05271489664, - "2034-01-01": 1399.41913375712, - "2033-01-01": 1372.12670794031, - "2032-01-01": 1345.51659276891, - "2031-01-01": 1319.58878824294, - "2030-01-01": 1294.00213903968, - "2029-01-01": 1268.75664515912, - "2028-01-01": 1243.85230660128, - "2027-01-01": 1218.60681272073, - "2026-01-01": 1189.30157049993, - "2025-01-01": 1171.39489620307, - "2024-01-01": 1145.97313873912, - "2023-01-01": 1084, - "2015-01-01": 1084 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1524.47144266634, - "2034-01-01": 1494.95143624607, - "2033-01-01": 1465.79587434951, - "2032-01-01": 1437.36920150037, - "2031-01-01": 1409.67141769864, - "2030-01-01": 1382.33807842061, - "2029-01-01": 1355.3691836663, - "2028-01-01": 1328.76473343569, - "2027-01-01": 1301.79583868137, - "2026-01-01": 1270.49005409494, - "2025-01-01": 1251.3609684531, - "2024-01-01": 1224.20377736153, - "2023-01-01": 1158, - "2015-01-01": 1158 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1613.99135467093, - "2034-01-01": 1582.73787637106, - "2033-01-01": 1551.8702434823, - "2032-01-01": 1521.77430141576, - "2031-01-01": 1492.45005017144, - "2030-01-01": 1463.51164433823, - "2029-01-01": 1434.95908391613, - "2028-01-01": 1406.79236890514, - "2027-01-01": 1378.23980848304, - "2026-01-01": 1345.09568766874, - "2025-01-01": 1324.84330511528, - "2024-01-01": 1296.09139123078, - "2023-01-01": 1226, - "2015-01-01": 1226 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1695.6124509104, - "2034-01-01": 1662.77845413208, - "2033-01-01": 1630.34981533867, - "2032-01-01": 1598.73189251509, - "2031-01-01": 1567.92468566135, - "2030-01-01": 1537.52283679253, - "2029-01-01": 1507.52634590863, - "2028-01-01": 1477.93521300964, - "2027-01-01": 1447.93872212574, - "2026-01-01": 1413.11847122131, - "2025-01-01": 1391.84190618963, - "2024-01-01": 1361.63598034685, - "2023-01-01": 1288, - "2015-01-01": 1288 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1771.96766997314, - "2034-01-01": 1737.65512365045, - "2033-01-01": 1703.76618901075, - "2032-01-01": 1670.72447773704, - "2031-01-01": 1638.52998982933, - "2030-01-01": 1606.75911360462, - "2029-01-01": 1575.4118490629, - "2028-01-01": 1544.48819620417, - "2027-01-01": 1513.14093166246, - "2026-01-01": 1476.75268809308, - "2025-01-01": 1454.51801687208, - "2024-01-01": 1422.95188629415, - "2023-01-01": 1346, - "2015-01-01": 1346 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1850.95582762424, - "2034-01-01": 1815.11374729014, - "2033-01-01": 1779.71416177497, - "2032-01-01": 1745.19956589769, - "2031-01-01": 1711.56995965828, - "2030-01-01": 1678.38284823781, - "2029-01-01": 1645.63823163628, - "2028-01-01": 1613.33610985369, - "2027-01-01": 1580.59149325216, - "2026-01-01": 1542.58118830525, - "2025-01-01": 1519.35537275048, - "2024-01-01": 1486.38213382583, - "2023-01-01": 1406, - "2015-01-01": 1406 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1933.89339315791, - "2034-01-01": 1896.44530211182, - "2033-01-01": 1859.45953317741, - "2032-01-01": 1823.39840846636, - "2031-01-01": 1788.26192797867, - "2030-01-01": 1753.58776960266, - "2029-01-01": 1719.37593333833, - "2028-01-01": 1685.62641918569, - "2027-01-01": 1651.41458292136, - "2026-01-01": 1611.70111352804, - "2025-01-01": 1587.4345964228, - "2024-01-01": 1552.9838937341, - "2023-01-01": 1469, - "2015-01-01": 1469 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2012.88155080901, - "2034-01-01": 1973.90392575151, - "2033-01-01": 1935.40750594163, - "2032-01-01": 1897.873496627, - "2031-01-01": 1861.30189780762, - "2030-01-01": 1825.21150423585, - "2029-01-01": 1789.60231591172, - "2028-01-01": 1754.4743328352, - "2027-01-01": 1718.86514451107, - "2026-01-01": 1677.52961374021, - "2025-01-01": 1652.2719523012, - "2024-01-01": 1616.41414126579, - "2023-01-01": 1529, - "2015-01-01": 1529 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2086.60383128338, - "2034-01-01": 2046.19864114856, - "2033-01-01": 2006.29228052157, - "2032-01-01": 1967.38357891026, - "2031-01-01": 1929.47253631463, - "2030-01-01": 1892.06032322683, - "2029-01-01": 1855.14693964687, - "2028-01-01": 1818.73238557475, - "2027-01-01": 1781.81900199479, - "2026-01-01": 1738.96954727157, - "2025-01-01": 1712.7868177877, - "2024-01-01": 1675.6157056287, - "2023-01-01": 1585, - "2015-01-01": 1585 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2517.0892904819, - "2034-01-01": 2468.34813998488, - "2033-01-01": 2420.20873208659, - "2032-01-01": 2373.27280938576, - "2031-01-01": 2327.54037188238, - "2030-01-01": 2282.40967697773, - "2029-01-01": 2237.88072467181, - "2028-01-01": 2193.95351496462, - "2027-01-01": 2149.4245626587, - "2026-01-01": 2097.73487342791, - "2025-01-01": 2066.15040732498, - "2024-01-01": 2021.31055467638, - "2023-01-01": 1912, - "2015-01-01": 1912 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 613.474691090254, - "2034-01-01": 601.595310268282, - "2033-01-01": 589.862588468803, - "2032-01-01": 578.423184714311, - "2031-01-01": 567.277099004806, - "2030-01-01": 556.277672317795, - "2029-01-01": 545.424904653277, - "2028-01-01": 534.718796011252, - "2027-01-01": 523.866028346734, - "2026-01-01": 511.268018314544, - "2025-01-01": 503.570130655565, - "2024-01-01": 492.641589162758, - "2023-01-01": 466, - "2015-01-01": 466 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 853.072102631942, - "2034-01-01": 836.553135308684, - "2033-01-01": 820.238105853614, - "2032-01-01": 804.330952134922, - "2031-01-01": 788.831674152606, - "2030-01-01": 773.536334038479, - "2029-01-01": 758.444931792539, - "2028-01-01": 743.557467414788, - "2027-01-01": 728.466065168849, - "2026-01-01": 710.947802291469, - "2025-01-01": 700.243443486708, - "2024-01-01": 685.046673342205, - "2023-01-01": 648, - "2015-01-01": 648 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 972.870808402785, - "2034-01-01": 954.032047828885, - "2033-01-01": 935.42586454602, - "2032-01-01": 917.284835845227, - "2031-01-01": 899.608961726506, - "2030-01-01": 882.16566489882, - "2029-01-01": 864.95494536217, - "2028-01-01": 847.976803116556, - "2027-01-01": 830.766083579907, - "2026-01-01": 810.787694279931, - "2025-01-01": 798.58009990228, - "2024-01-01": 781.249215431928, - "2023-01-01": 739, - "2015-01-01": 739 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1072.92247476085, - "2034-01-01": 1052.14630443916, - "2033-01-01": 1031.62663004737, - "2032-01-01": 1011.61994751537, - "2031-01-01": 992.12625684317, - "2030-01-01": 972.889062100864, - "2029-01-01": 953.908363288456, - "2028-01-01": 935.184160405945, - "2027-01-01": 916.203461593537, - "2026-01-01": 894.17046121535, - "2025-01-01": 880.707417348252, - "2024-01-01": 861.59419563873, - "2023-01-01": 815, - "2015-01-01": 815 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1161.12591747125, - "2034-01-01": 1138.64176750349, - "2033-01-01": 1116.43519963409, - "2032-01-01": 1094.78379596142, - "2031-01-01": 1073.68755648549, - "2030-01-01": 1052.86889910793, - "2029-01-01": 1032.32782382873, - "2028-01-01": 1012.06433064791, - "2027-01-01": 991.523255368712, - "2026-01-01": 967.678953118943, - "2025-01-01": 953.109131412464, - "2024-01-01": 932.424638715779, - "2023-01-01": 882, - "2015-01-01": 882 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1240.11407512236, - "2034-01-01": 1216.10039114318, - "2033-01-01": 1192.38317239831, - "2032-01-01": 1169.25888412206, - "2031-01-01": 1146.72752631444, - "2030-01-01": 1124.49263374112, - "2029-01-01": 1102.55420640212, - "2028-01-01": 1080.91224429742, - "2027-01-01": 1058.97381695842, - "2026-01-01": 1033.50745333112, - "2025-01-01": 1017.94648729086, - "2024-01-01": 995.854886247464, - "2023-01-01": 942, - "2015-01-01": 942 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1311.20341700835, - "2034-01-01": 1285.8131524189, - "2033-01-01": 1260.73634788611, - "2032-01-01": 1236.28646346664, - "2031-01-01": 1212.46349916049, - "2030-01-01": 1188.95399491099, - "2029-01-01": 1165.75795071816, - "2028-01-01": 1142.87536658199, - "2027-01-01": 1119.67932238916, - "2026-01-01": 1092.75310352207, - "2025-01-01": 1076.30010758142, - "2024-01-01": 1052.94210902598, - "2023-01-01": 996, - "2015-01-01": 996 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1377.02688171761, - "2034-01-01": 1350.36200545198, - "2033-01-01": 1324.02632518963, - "2032-01-01": 1298.34903693384, - "2031-01-01": 1273.33014068461, - "2030-01-01": 1248.64044043866, - "2029-01-01": 1224.27993619598, - "2028-01-01": 1200.24862795659, - "2027-01-01": 1175.88812371391, - "2026-01-01": 1147.61018703222, - "2025-01-01": 1130.33123748009, - "2024-01-01": 1105.80064863572, - "2023-01-01": 1046, - "2015-01-01": 1046 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1437.58446925012, - "2034-01-01": 1409.74695024241, - "2033-01-01": 1382.25310430887, - "2032-01-01": 1355.44660452366, - "2031-01-01": 1329.3274508868, - "2030-01-01": 1303.5519703241, - "2029-01-01": 1278.12016283558, - "2028-01-01": 1253.03202842122, - "2027-01-01": 1227.60022093269, - "2026-01-01": 1198.07870386155, - "2025-01-01": 1180.03987698686, - "2024-01-01": 1154.43050507668, - "2023-01-01": 1092, - "2015-01-01": 1092 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1517.88909619541, - "2034-01-01": 1488.49655094277, - "2033-01-01": 1459.46687661916, - "2032-01-01": 1431.16294415365, - "2031-01-01": 1403.58475354623, - "2030-01-01": 1376.36943386785, - "2029-01-01": 1349.51698511851, - "2028-01-01": 1323.02740729823, - "2027-01-01": 1296.17495854889, - "2026-01-01": 1265.00434574392, - "2025-01-01": 1245.95785546323, - "2024-01-01": 1218.91792340056, - "2023-01-01": 1153, - "2015-01-01": 1153 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1620.57370114185, - "2034-01-01": 1589.19276167437, - "2033-01-01": 1558.19924121265, - "2032-01-01": 1527.98055876248, - "2031-01-01": 1498.53671432386, - "2030-01-01": 1469.480288891, - "2029-01-01": 1440.81128246391, - "2028-01-01": 1412.5296950426, - "2027-01-01": 1383.86068861551, - "2026-01-01": 1350.58139601975, - "2025-01-01": 1330.24641810515, - "2024-01-01": 1301.37724519175, - "2023-01-01": 1231, - "2015-01-01": 1231 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1715.35949032318, - "2034-01-01": 1682.143110042, - "2033-01-01": 1649.33680852972, - "2032-01-01": 1617.35066455525, - "2031-01-01": 1586.18467811859, - "2030-01-01": 1555.42877045083, - "2029-01-01": 1525.08294155197, - "2028-01-01": 1495.14719142202, - "2027-01-01": 1464.80136252316, - "2026-01-01": 1429.57559627436, - "2025-01-01": 1408.05124515923, - "2024-01-01": 1377.49354222977, - "2023-01-01": 1303, - "2015-01-01": 1303 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1802.2464637394, - "2034-01-01": 1767.34759604566, - "2033-01-01": 1732.87957857037, - "2032-01-01": 1699.27326153196, - "2031-01-01": 1666.52864493043, - "2030-01-01": 1634.21487854734, - "2029-01-01": 1602.33196238269, - "2028-01-01": 1570.87989643649, - "2027-01-01": 1538.99698027184, - "2026-01-01": 1501.98694650775, - "2025-01-01": 1479.37233662547, - "2024-01-01": 1447.26681451463, - "2023-01-01": 1369, - "2015-01-01": 1369 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1883.86755997887, - "2034-01-01": 1847.38817380668, - "2033-01-01": 1811.35915042673, - "2032-01-01": 1776.23085263129, - "2031-01-01": 1742.00328042034, - "2030-01-01": 1708.22607100164, - "2029-01-01": 1674.89922437519, - "2028-01-01": 1642.02274054099, - "2027-01-01": 1608.69589391454, - "2026-01-01": 1570.00973006033, - "2025-01-01": 1546.37093769981, - "2024-01-01": 1512.8114036307, - "2023-01-01": 1431, - "2015-01-01": 1431 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1966.80512551253, - "2034-01-01": 1928.71972862835, - "2033-01-01": 1891.10452182917, - "2032-01-01": 1854.42969519996, - "2031-01-01": 1818.69524874073, - "2030-01-01": 1783.43099236649, - "2029-01-01": 1748.63692607724, - "2028-01-01": 1714.31304987298, - "2027-01-01": 1679.51898358374, - "2026-01-01": 1639.12965528311, - "2025-01-01": 1614.45016137213, - "2024-01-01": 1579.41316353897, - "2023-01-01": 1494, - "2015-01-01": 1494 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2056.32503751712, - "2034-01-01": 2016.50616875334, - "2033-01-01": 1977.17889096195, - "2032-01-01": 1938.83479511535, - "2031-01-01": 1901.47388121354, - "2030-01-01": 1864.60455828411, - "2029-01-01": 1828.22682632708, - "2028-01-01": 1792.34068534244, - "2027-01-01": 1755.96295338541, - "2026-01-01": 1713.7352888569, - "2025-01-01": 1687.93249803432, - "2024-01-01": 1651.30077740822, - "2023-01-01": 1562, - "2015-01-01": 1562 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2139.26260305078, - "2034-01-01": 2097.83772357502, - "2033-01-01": 2056.92426236439, - "2032-01-01": 2017.03363768402, - "2031-01-01": 1978.16584953393, - "2030-01-01": 1939.80947964896, - "2029-01-01": 1901.96452802913, - "2028-01-01": 1864.63099467443, - "2027-01-01": 1826.7860430546, - "2026-01-01": 1782.85521407969, - "2025-01-01": 1756.01172170664, - "2024-01-01": 1717.90253731649, - "2023-01-01": 1625, - "2015-01-01": 1625 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2218.25076070189, - "2034-01-01": 2175.29634721471, - "2033-01-01": 2132.87223512861, - "2032-01-01": 2091.50872584467, - "2031-01-01": 2051.20581936287, - "2030-01-01": 2011.43321428216, - "2029-01-01": 1972.19091060251, - "2028-01-01": 1933.47890832395, - "2027-01-01": 1894.23660464431, - "2026-01-01": 1848.68371429186, - "2025-01-01": 1820.84907758504, - "2024-01-01": 1781.33278484817, - "2023-01-01": 1685, - "2015-01-01": 1685 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2673.74913648993, - "2034-01-01": 2621.97441020361, - "2033-01-01": 2570.83887806897, - "2032-01-01": 2520.98173423769, - "2031-01-01": 2472.40297870979, - "2030-01-01": 2424.46341733357, - "2029-01-01": 2377.16305010902, - "2028-01-01": 2330.50187703617, - "2027-01-01": 2283.20150981163, - "2026-01-01": 2228.29473218206, - "2025-01-01": 2194.7444964838, - "2024-01-01": 2147.11387894756, - "2023-01-01": 2031, - "2015-01-01": 2031 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 641.120546268141, - "2034-01-01": 628.705828542175, - "2033-01-01": 616.444378936281, - "2032-01-01": 604.489465570535, - "2031-01-01": 592.841088444937, - "2030-01-01": 581.345979439412, - "2029-01-01": 570.004138553961, - "2028-01-01": 558.815565788583, - "2027-01-01": 547.473724903132, - "2026-01-01": 534.307993388804, - "2025-01-01": 526.263205213004, - "2024-01-01": 514.842175798848, - "2023-01-01": 487, - "2015-01-01": 487 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 892.566181457495, - "2034-01-01": 875.28244712853, - "2033-01-01": 858.212092235726, - "2032-01-01": 841.568496215242, - "2031-01-01": 825.351659067079, - "2030-01-01": 809.348201355075, - "2029-01-01": 793.558123079231, - "2028-01-01": 777.981424239547, - "2027-01-01": 762.191345963703, - "2026-01-01": 743.862052397555, - "2025-01-01": 732.662121425908, - "2024-01-01": 716.761797108048, - "2023-01-01": 678, - "2015-01-01": 678 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1017.63076440508, - "2034-01-01": 997.925267891378, - "2033-01-01": 978.463049112414, - "2032-01-01": 959.487385802924, - "2031-01-01": 940.998277962908, - "2030-01-01": 922.75244785763, - "2029-01-01": 904.749895487087, - "2028-01-01": 886.990620851283, - "2027-01-01": 868.988068480741, - "2026-01-01": 848.090511066829, - "2025-01-01": 835.321268233373, - "2024-01-01": 817.19302236655, - "2023-01-01": 773, - "2015-01-01": 773 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1121.6318386457, - "2034-01-01": 1099.91245568364, - "2033-01-01": 1078.46121325197, - "2032-01-01": 1057.5462518811, - "2031-01-01": 1037.16757157102, - "2030-01-01": 1017.05703179133, - "2029-01-01": 997.214632542042, - "2028-01-01": 977.640373823148, - "2027-01-01": 957.797974573857, - "2026-01-01": 934.764703012857, - "2025-01-01": 920.690453473265, - "2024-01-01": 900.709514949936, - "2023-01-01": 852, - "2015-01-01": 852 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1213.78468923866, - "2034-01-01": 1190.28084992995, - "2033-01-01": 1167.0671814769, - "2032-01-01": 1144.43385473518, - "2031-01-01": 1122.38086970479, - "2030-01-01": 1100.61805553006, - "2029-01-01": 1079.14541221099, - "2028-01-01": 1057.96293974758, - "2027-01-01": 1036.49029642852, - "2026-01-01": 1011.56461992706, - "2025-01-01": 996.334035331397, - "2024-01-01": 974.711470403569, - "2023-01-01": 922, - "2015-01-01": 922 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1295.40578547813, - "2034-01-01": 1270.32142769096, - "2033-01-01": 1245.54675333327, - "2032-01-01": 1221.39144583451, - "2031-01-01": 1197.8555051947, - "2030-01-01": 1174.62924798436, - "2029-01-01": 1151.71267420349, - "2028-01-01": 1129.10578385209, - "2027-01-01": 1106.18921007122, - "2026-01-01": 1079.58740347964, - "2025-01-01": 1063.33263640574, - "2024-01-01": 1040.25605951964, - "2023-01-01": 984, - "2015-01-01": 984 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1369.1280659525, - "2034-01-01": 1342.61614308801, - "2033-01-01": 1316.43152791321, - "2032-01-01": 1290.90152811778, - "2031-01-01": 1266.02614370171, - "2030-01-01": 1241.47806697534, - "2029-01-01": 1217.25729793864, - "2028-01-01": 1193.36383659164, - "2027-01-01": 1169.14306755494, - "2026-01-01": 1141.027337011, - "2025-01-01": 1123.84750189225, - "2024-01-01": 1099.45762388255, - "2023-01-01": 1040, - "2015-01-01": 1040 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1437.58446925012, - "2034-01-01": 1409.74695024241, - "2033-01-01": 1382.25310430887, - "2032-01-01": 1355.44660452366, - "2031-01-01": 1329.3274508868, - "2030-01-01": 1303.5519703241, - "2029-01-01": 1278.12016283558, - "2028-01-01": 1253.03202842122, - "2027-01-01": 1227.60022093269, - "2026-01-01": 1198.07870386155, - "2025-01-01": 1180.03987698686, - "2024-01-01": 1154.43050507668, - "2023-01-01": 1092, - "2015-01-01": 1092 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1502.09146466519, - "2034-01-01": 1473.00482621483, - "2033-01-01": 1444.27728206632, - "2032-01-01": 1416.26792652152, - "2031-01-01": 1388.97675958044, - "2030-01-01": 1362.04468694121, - "2029-01-01": 1335.47170860384, - "2028-01-01": 1309.25782456832, - "2027-01-01": 1282.68484623095, - "2026-01-01": 1251.83864570149, - "2025-01-01": 1232.99038428755, - "2024-01-01": 1206.23187389422, - "2023-01-01": 1141, - "2015-01-01": 1141 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1585.02903019885, - "2034-01-01": 1554.33638103651, - "2033-01-01": 1524.02265346875, - "2032-01-01": 1494.46676909019, - "2031-01-01": 1465.66872790083, - "2030-01-01": 1437.24960830606, - "2029-01-01": 1409.20941030589, - "2028-01-01": 1381.54813390032, - "2027-01-01": 1353.50793590015, - "2026-01-01": 1320.95857092427, - "2025-01-01": 1301.06960795987, - "2024-01-01": 1272.83363380249, - "2023-01-01": 1204, - "2015-01-01": 1204 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1692.97951232203, - "2034-01-01": 1660.19650001075, - "2033-01-01": 1627.81821624652, - "2032-01-01": 1596.2493895764, - "2031-01-01": 1565.49002000039, - "2030-01-01": 1535.13537897143, - "2029-01-01": 1505.18546648951, - "2028-01-01": 1475.64028255466, - "2027-01-01": 1445.69037007275, - "2026-01-01": 1410.92418788091, - "2025-01-01": 1389.68066099368, - "2024-01-01": 1359.52163876246, - "2023-01-01": 1286, - "2015-01-01": 1286 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1791.71470938591, - "2034-01-01": 1757.01977956037, - "2033-01-01": 1722.7531822018, - "2032-01-01": 1689.3432497772, - "2031-01-01": 1656.78998228657, - "2030-01-01": 1624.66504726292, - "2029-01-01": 1592.96844470624, - "2028-01-01": 1561.70017461655, - "2027-01-01": 1530.00357205988, - "2026-01-01": 1493.20981314612, - "2025-01-01": 1470.72735584168, - "2024-01-01": 1438.80944817707, - "2023-01-01": 1361, - "2015-01-01": 1361 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1882.55109068469, - "2034-01-01": 1846.09719674602, - "2033-01-01": 1810.09335088066, - "2032-01-01": 1774.98960116194, - "2031-01-01": 1740.78594758986, - "2030-01-01": 1707.03234209109, - "2029-01-01": 1673.72878466563, - "2028-01-01": 1640.8752753135, - "2027-01-01": 1607.57171788805, - "2026-01-01": 1568.91258839012, - "2025-01-01": 1545.29031510184, - "2024-01-01": 1511.75423283851, - "2023-01-01": 1430, - "2015-01-01": 1430 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1966.80512551253, - "2034-01-01": 1928.71972862835, - "2033-01-01": 1891.10452182917, - "2032-01-01": 1854.42969519996, - "2031-01-01": 1818.69524874073, - "2030-01-01": 1783.43099236649, - "2029-01-01": 1748.63692607724, - "2028-01-01": 1714.31304987298, - "2027-01-01": 1679.51898358374, - "2026-01-01": 1639.12965528311, - "2025-01-01": 1614.45016137213, - "2024-01-01": 1579.41316353897, - "2023-01-01": 1494, - "2015-01-01": 1494 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2055.00856822293, - "2034-01-01": 2015.21519169268, - "2033-01-01": 1975.91309141588, - "2032-01-01": 1937.59354364601, - "2031-01-01": 1900.25654838305, - "2030-01-01": 1863.41082937356, - "2029-01-01": 1827.05638661752, - "2028-01-01": 1791.19322011495, - "2027-01-01": 1754.83877735891, - "2026-01-01": 1712.6381471867, - "2025-01-01": 1686.85187543634, - "2024-01-01": 1650.24360661602, - "2023-01-01": 1561, - "2015-01-01": 1561 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2147.16141881589, - "2034-01-01": 2105.58358593899, - "2033-01-01": 2064.51905964081, - "2032-01-01": 2024.48114650009, - "2031-01-01": 1985.46984651682, - "2030-01-01": 1946.97185311228, - "2029-01-01": 1908.98716628647, - "2028-01-01": 1871.51578603938, - "2027-01-01": 1833.53109921357, - "2026-01-01": 1789.4380641009, - "2025-01-01": 1762.49545729448, - "2024-01-01": 1724.24556206965, - "2023-01-01": 1631, - "2015-01-01": 1631 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2234.04839223211, - "2034-01-01": 2190.78807194265, - "2033-01-01": 2148.06182968146, - "2032-01-01": 2106.40374347679, - "2031-01-01": 2065.81381332866, - "2030-01-01": 2025.75796120879, - "2029-01-01": 1986.23618711719, - "2028-01-01": 1947.24849105385, - "2027-01-01": 1907.72671696225, - "2026-01-01": 1861.84941433429, - "2025-01-01": 1833.81654876072, - "2024-01-01": 1794.01883435451, - "2023-01-01": 1697, - "2015-01-01": 1697 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2315.66948847158, - "2034-01-01": 2270.82864970367, - "2033-01-01": 2226.54140153782, - "2032-01-01": 2183.36133457612, - "2031-01-01": 2141.28844881857, - "2030-01-01": 2099.76915366309, - "2029-01-01": 2058.80344910969, - "2028-01-01": 2018.39133515835, - "2027-01-01": 1977.42563060495, - "2026-01-01": 1929.87219788687, - "2025-01-01": 1900.81514983506, - "2024-01-01": 1859.56342347058, - "2023-01-01": 1759, - "2015-01-01": 1759 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2790.9149036724, - "2034-01-01": 2736.87136860248, - "2033-01-01": 2683.49503766923, - "2032-01-01": 2631.45311500931, - "2031-01-01": 2580.74560062272, - "2030-01-01": 2530.7052903728, - "2029-01-01": 2481.33218425954, - "2028-01-01": 2432.62628228295, - "2027-01-01": 2383.25317616969, - "2026-01-01": 2325.94034083011, - "2025-01-01": 2290.91990770343, - "2024-01-01": 2241.20207945289, - "2023-01-01": 2120, - "2015-01-01": 2120 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 663.500524269288, - "2034-01-01": 650.652438573421, - "2033-01-01": 637.962971219478, - "2032-01-01": 625.590740549384, - "2031-01-01": 613.535746563138, - "2030-01-01": 601.639370918817, - "2029-01-01": 589.901613616419, - "2028-01-01": 578.322474655946, - "2027-01-01": 566.584717353549, - "2026-01-01": 552.959401782253, - "2025-01-01": 544.633789378551, - "2024-01-01": 532.814079266159, - "2023-01-01": 504, - "2015-01-01": 504 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 924.161444517937, - "2034-01-01": 906.265896584408, - "2033-01-01": 888.591281341416, - "2032-01-01": 871.358531479499, - "2031-01-01": 854.567646998657, - "2030-01-01": 837.997695208352, - "2029-01-01": 821.648676108584, - "2028-01-01": 805.520589699354, - "2027-01-01": 789.171570599587, - "2026-01-01": 770.193452482424, - "2025-01-01": 758.597063777267, - "2024-01-01": 742.133896120722, - "2023-01-01": 702, - "2015-01-01": 702 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1053.17543534808, - "2034-01-01": 1032.78164852924, - "2033-01-01": 1012.63963685631, - "2032-01-01": 993.001175475212, - "2031-01-01": 973.866264385933, - "2030-01-01": 954.983128442566, - "2029-01-01": 936.35176764511, - "2028-01-01": 917.972181993566, - "2027-01-01": 899.34082119611, - "2026-01-01": 877.713336162307, - "2025-01-01": 864.498078378652, - "2024-01-01": 845.736633755808, - "2023-01-01": 800, - "2015-01-01": 800 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1161.12591747125, - "2034-01-01": 1138.64176750349, - "2033-01-01": 1116.43519963409, - "2032-01-01": 1094.78379596142, - "2031-01-01": 1073.68755648549, - "2030-01-01": 1052.86889910793, - "2029-01-01": 1032.32782382873, - "2028-01-01": 1012.06433064791, - "2027-01-01": 991.523255368712, - "2026-01-01": 967.678953118943, - "2025-01-01": 953.109131412464, - "2024-01-01": 932.424638715779, - "2023-01-01": 882, - "2015-01-01": 882 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1255.91170665258, - "2034-01-01": 1231.59211587112, - "2033-01-01": 1207.57276695115, - "2032-01-01": 1184.15390175419, - "2031-01-01": 1161.33552028023, - "2030-01-01": 1138.81738066776, - "2029-01-01": 1116.59948291679, - "2028-01-01": 1094.68182702733, - "2027-01-01": 1072.46392927636, - "2026-01-01": 1046.67315337355, - "2025-01-01": 1030.91395846654, - "2024-01-01": 1008.5409357538, - "2023-01-01": 954, - "2015-01-01": 954 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1340.16574148043, - "2034-01-01": 1314.21464775346, - "2033-01-01": 1288.58393789966, - "2032-01-01": 1263.59399579221, - "2031-01-01": 1239.2448214311, - "2030-01-01": 1215.21603094317, - "2029-01-01": 1191.5076243284, - "2028-01-01": 1168.11960158681, - "2027-01-01": 1144.41119497205, - "2026-01-01": 1116.89022026654, - "2025-01-01": 1100.07380473683, - "2024-01-01": 1076.19986645427, - "2023-01-01": 1018, - "2015-01-01": 1018 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1417.83742983735, - "2034-01-01": 1390.38229433249, - "2033-01-01": 1363.26611111781, - "2032-01-01": 1336.8278324835, - "2031-01-01": 1311.06745842956, - "2030-01-01": 1285.6460366658, - "2029-01-01": 1260.56356719223, - "2028-01-01": 1235.82005000884, - "2027-01-01": 1210.73758053526, - "2026-01-01": 1181.62157880851, - "2025-01-01": 1163.83053801726, - "2024-01-01": 1138.57294319376, - "2023-01-01": 1077, - "2015-01-01": 1077 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1487.61030242916, - "2034-01-01": 1458.80407854755, - "2033-01-01": 1430.35348705954, - "2032-01-01": 1402.61416035874, - "2031-01-01": 1375.58609844513, - "2030-01-01": 1348.91366892512, - "2029-01-01": 1322.59687179872, - "2028-01-01": 1296.63570706591, - "2027-01-01": 1270.31890993951, - "2026-01-01": 1239.77008732926, - "2025-01-01": 1221.10353570985, - "2024-01-01": 1194.60299518008, - "2023-01-01": 1130, - "2015-01-01": 1130 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1553.43376713841, - "2034-01-01": 1523.35293158063, - "2033-01-01": 1493.64346436306, - "2032-01-01": 1464.67673382594, - "2031-01-01": 1436.45273996925, - "2030-01-01": 1408.60011445279, - "2029-01-01": 1381.11885727654, - "2028-01-01": 1354.00896844051, - "2027-01-01": 1326.52771126426, - "2026-01-01": 1294.6271708394, - "2025-01-01": 1275.13466560851, - "2024-01-01": 1247.46153478982, - "2023-01-01": 1180, - "2015-01-01": 1180 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1640.32074055463, - "2034-01-01": 1608.55741758429, - "2033-01-01": 1577.18623440371, - "2032-01-01": 1546.59933080264, - "2031-01-01": 1516.79670678109, - "2030-01-01": 1487.3862225493, - "2029-01-01": 1458.36787810726, - "2028-01-01": 1429.74167345498, - "2027-01-01": 1400.72332901294, - "2026-01-01": 1367.03852107279, - "2025-01-01": 1346.45575707475, - "2024-01-01": 1317.23480707467, - "2023-01-01": 1246, - "2015-01-01": 1246 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1752.22063056036, - "2034-01-01": 1718.29046774052, - "2033-01-01": 1684.77919581969, - "2032-01-01": 1652.10570569688, - "2031-01-01": 1620.2699973721, - "2030-01-01": 1588.85317994632, - "2029-01-01": 1557.85525341955, - "2028-01-01": 1527.2762177918, - "2027-01-01": 1496.27829126503, - "2026-01-01": 1460.29556304004, - "2025-01-01": 1438.30867790248, - "2024-01-01": 1407.09432441123, - "2023-01-01": 1331, - "2015-01-01": 1331 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1853.58876621261, - "2034-01-01": 1817.69570141146, - "2033-01-01": 1782.24576086711, - "2032-01-01": 1747.68206883637, - "2031-01-01": 1714.00462531924, - "2030-01-01": 1680.77030605892, - "2029-01-01": 1647.97911105539, - "2028-01-01": 1615.63104030868, - "2027-01-01": 1582.83984530515, - "2026-01-01": 1544.77547164566, - "2025-01-01": 1521.51661794643, - "2024-01-01": 1488.49647541022, - "2023-01-01": 1408, - "2015-01-01": 1408 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1947.05808609976, - "2034-01-01": 1909.35507271843, - "2033-01-01": 1872.11752863811, - "2032-01-01": 1835.8109231598, - "2031-01-01": 1800.43525628349, - "2030-01-01": 1765.52505870819, - "2029-01-01": 1731.0803304339, - "2028-01-01": 1697.1010714606, - "2027-01-01": 1662.65634318631, - "2026-01-01": 1622.67253023006, - "2025-01-01": 1598.24082240253, - "2024-01-01": 1563.55560165605, - "2023-01-01": 1479, - "2015-01-01": 1479 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2035.26152881016, - "2034-01-01": 1995.85053578276, - "2033-01-01": 1956.92609822483, - "2032-01-01": 1918.97477160585, - "2031-01-01": 1881.99655592582, - "2030-01-01": 1845.50489571526, - "2029-01-01": 1809.49979097417, - "2028-01-01": 1773.98124170257, - "2027-01-01": 1737.97613696148, - "2026-01-01": 1696.18102213366, - "2025-01-01": 1670.64253646675, - "2024-01-01": 1634.3860447331, - "2023-01-01": 1546, - "2015-01-01": 1546 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2124.78144081474, - "2034-01-01": 2083.63697590774, - "2033-01-01": 2043.00046735761, - "2032-01-01": 2003.37987152124, - "2031-01-01": 1964.77518839862, - "2030-01-01": 1926.67846163288, - "2029-01-01": 1889.08969122401, - "2028-01-01": 1852.00887717202, - "2027-01-01": 1814.42010676315, - "2026-01-01": 1770.78665570745, - "2025-01-01": 1744.12487312893, - "2024-01-01": 1706.27365860234, - "2023-01-01": 1614, - "2015-01-01": 1614 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2220.88369929026, - "2034-01-01": 2177.87830133603, - "2033-01-01": 2135.40383422075, - "2032-01-01": 2093.99122878335, - "2031-01-01": 2053.64048502384, - "2030-01-01": 2013.82067210326, - "2029-01-01": 1974.53179002163, - "2028-01-01": 1935.77383877893, - "2027-01-01": 1896.4849566973, - "2026-01-01": 1850.87799763226, - "2025-01-01": 1823.01032278098, - "2024-01-01": 1783.44712643256, - "2023-01-01": 1687, - "2015-01-01": 1687 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2310.40361129484, - "2034-01-01": 2265.66474146102, - "2033-01-01": 2221.47820335354, - "2032-01-01": 2178.39632869875, - "2031-01-01": 2136.41911749664, - "2030-01-01": 2094.99423802088, - "2029-01-01": 2054.12169027146, - "2028-01-01": 2013.80147424839, - "2027-01-01": 1972.92892649897, - "2026-01-01": 1925.48363120606, - "2025-01-01": 1896.49265944317, - "2024-01-01": 1855.3347403018, - "2023-01-01": 1755, - "2015-01-01": 1755 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2394.65764612269, - "2034-01-01": 2348.28727334336, - "2033-01-01": 2302.48937430204, - "2032-01-01": 2257.83642273676, - "2031-01-01": 2214.32841864752, - "2030-01-01": 2171.39288829628, - "2029-01-01": 2129.02983168307, - "2028-01-01": 2087.23924880787, - "2027-01-01": 2044.87619219466, - "2026-01-01": 1995.70069809905, - "2025-01-01": 1965.65250571346, - "2024-01-01": 1922.99367100227, - "2023-01-01": 1819, - "2015-01-01": 1819 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2885.70069285373, - "2034-01-01": 2829.82171697012, - "2033-01-01": 2774.6326049863, - "2032-01-01": 2720.82322080208, - "2031-01-01": 2668.39356441746, - "2030-01-01": 2616.65377193263, - "2029-01-01": 2565.6038433476, - "2028-01-01": 2515.24377866237, - "2027-01-01": 2464.19385007734, - "2026-01-01": 2404.93454108472, - "2025-01-01": 2368.72473475751, - "2024-01-01": 2317.31837649092, - "2023-01-01": 2192, - "2015-01-01": 2192 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 695.09578732973, - "2034-01-01": 681.635888029298, - "2033-01-01": 668.342160325167, - "2032-01-01": 655.38077581364, - "2031-01-01": 642.751734494716, - "2030-01-01": 630.288864772094, - "2029-01-01": 617.992166645773, - "2028-01-01": 605.861640115753, - "2027-01-01": 593.564941989433, - "2026-01-01": 579.290801867123, - "2025-01-01": 570.56873172991, - "2024-01-01": 558.186178278834, - "2023-01-01": 528, - "2015-01-01": 528 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 966.28846193186, - "2034-01-01": 947.577162525577, - "2033-01-01": 929.096866815668, - "2032-01-01": 911.078578498507, - "2031-01-01": 893.522297574094, - "2030-01-01": 876.197020346054, - "2029-01-01": 859.102746814388, - "2028-01-01": 842.239476979097, - "2027-01-01": 825.145203447431, - "2026-01-01": 805.301985928917, - "2025-01-01": 793.176986912413, - "2024-01-01": 775.963361470954, - "2023-01-01": 734, - "2015-01-01": 734 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1101.88479923292, - "2034-01-01": 1080.54779977372, - "2033-01-01": 1059.47422006092, - "2032-01-01": 1038.92747984094, - "2031-01-01": 1018.90757911378, - "2030-01-01": 999.151098133035, - "2029-01-01": 979.658036898696, - "2028-01-01": 960.428395410768, - "2027-01-01": 940.93533417643, - "2026-01-01": 918.307577959814, - "2025-01-01": 904.481114503665, - "2024-01-01": 884.851953067015, - "2023-01-01": 837, - "2015-01-01": 837 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1215.10115853284, - "2034-01-01": 1191.57182699061, - "2033-01-01": 1168.33298102297, - "2032-01-01": 1145.67510620453, - "2031-01-01": 1123.59820253527, - "2030-01-01": 1101.81178444061, - "2029-01-01": 1080.31585192055, - "2028-01-01": 1059.11040497508, - "2027-01-01": 1037.61447245501, - "2026-01-01": 1012.66176159726, - "2025-01-01": 997.41465792937, - "2024-01-01": 975.768641195764, - "2023-01-01": 923, - "2015-01-01": 923 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1313.83635559673, - "2034-01-01": 1288.39510654023, - "2033-01-01": 1263.26794697825, - "2032-01-01": 1238.76896640533, - "2031-01-01": 1214.89816482145, - "2030-01-01": 1191.3414527321, - "2029-01-01": 1168.09883013727, - "2028-01-01": 1145.17029703697, - "2027-01-01": 1121.92767444215, - "2026-01-01": 1094.94738686248, - "2025-01-01": 1078.46135277737, - "2024-01-01": 1055.05645061037, - "2023-01-01": 998, - "2015-01-01": 998 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1402.03979830713, - "2034-01-01": 1374.89056960455, - "2033-01-01": 1348.07651656497, - "2032-01-01": 1321.93281485138, - "2031-01-01": 1296.45946446377, - "2030-01-01": 1271.32128973917, - "2029-01-01": 1246.51829067755, - "2028-01-01": 1222.05046727893, - "2027-01-01": 1197.24746821732, - "2026-01-01": 1168.45587876607, - "2025-01-01": 1150.86306684158, - "2024-01-01": 1125.88689368742, - "2023-01-01": 1065, - "2015-01-01": 1065 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1482.34442525242, - "2034-01-01": 1453.6401703049, - "2033-01-01": 1425.29028887526, - "2032-01-01": 1397.64915448136, - "2031-01-01": 1370.7167671232, - "2030-01-01": 1344.13875328291, - "2029-01-01": 1317.91511296049, - "2028-01-01": 1292.04584615594, - "2027-01-01": 1265.82220583353, - "2026-01-01": 1235.38152064845, - "2025-01-01": 1216.78104531795, - "2024-01-01": 1190.3743120113, - "2023-01-01": 1126, - "2015-01-01": 1126 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1556.06670572678, - "2034-01-01": 1525.93488570195, - "2033-01-01": 1496.1750634552, - "2032-01-01": 1467.15923676463, - "2031-01-01": 1438.88740563022, - "2030-01-01": 1410.98757227389, - "2029-01-01": 1383.45973669565, - "2028-01-01": 1356.30389889549, - "2027-01-01": 1328.77606331725, - "2026-01-01": 1296.82145417981, - "2025-01-01": 1277.29591080446, - "2024-01-01": 1249.57587637421, - "2023-01-01": 1182, - "2015-01-01": 1182 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1624.52310902441, - "2034-01-01": 1593.06569285635, - "2033-01-01": 1561.99663985086, - "2032-01-01": 1531.70431317051, - "2031-01-01": 1502.1887128153, - "2030-01-01": 1473.06147562266, - "2029-01-01": 1444.32260159258, - "2028-01-01": 1415.97209072508, - "2027-01-01": 1387.233216695, - "2026-01-01": 1353.87282103036, - "2025-01-01": 1333.48828589907, - "2024-01-01": 1304.54875756833, - "2023-01-01": 1234, - "2015-01-01": 1234 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1715.35949032318, - "2034-01-01": 1682.143110042, - "2033-01-01": 1649.33680852972, - "2032-01-01": 1617.35066455525, - "2031-01-01": 1586.18467811859, - "2030-01-01": 1555.42877045083, - "2029-01-01": 1525.08294155197, - "2028-01-01": 1495.14719142202, - "2027-01-01": 1464.80136252316, - "2026-01-01": 1429.57559627436, - "2025-01-01": 1408.05124515923, - "2024-01-01": 1377.49354222977, - "2023-01-01": 1303, - "2015-01-01": 1303 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1831.20878821147, - "2034-01-01": 1795.74909138021, - "2033-01-01": 1760.72716858392, - "2032-01-01": 1726.58079385753, - "2031-01-01": 1693.30996720104, - "2030-01-01": 1660.47691457951, - "2029-01-01": 1628.08163599294, - "2028-01-01": 1596.12413144131, - "2027-01-01": 1563.72885285474, - "2026-01-01": 1526.12406325221, - "2025-01-01": 1503.14603378088, - "2024-01-01": 1470.52457194291, - "2023-01-01": 1391, - "2015-01-01": 1391 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1937.84280104046, - "2034-01-01": 1900.3182332938, - "2033-01-01": 1863.25693181562, - "2032-01-01": 1827.12216287439, - "2031-01-01": 1791.91392647012, - "2030-01-01": 1757.16895633432, - "2029-01-01": 1722.887252467, - "2028-01-01": 1689.06881486816, - "2027-01-01": 1654.78711100084, - "2026-01-01": 1614.99253853864, - "2025-01-01": 1590.67646421672, - "2024-01-01": 1556.15540611069, - "2023-01-01": 1472, - "2015-01-01": 1472 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2035.26152881016, - "2034-01-01": 1995.85053578276, - "2033-01-01": 1956.92609822483, - "2032-01-01": 1918.97477160585, - "2031-01-01": 1881.99655592582, - "2030-01-01": 1845.50489571526, - "2029-01-01": 1809.49979097417, - "2028-01-01": 1773.98124170257, - "2027-01-01": 1737.97613696148, - "2026-01-01": 1696.18102213366, - "2025-01-01": 1670.64253646675, - "2024-01-01": 1634.3860447331, - "2023-01-01": 1546, - "2015-01-01": 1546 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2127.41437940311, - "2034-01-01": 2086.21893002906, - "2033-01-01": 2045.53206644975, - "2032-01-01": 2005.86237445993, - "2031-01-01": 1967.20985405959, - "2030-01-01": 1929.06591945398, - "2029-01-01": 1891.43057064312, - "2028-01-01": 1854.303807627, - "2027-01-01": 1816.66845881614, - "2026-01-01": 1772.98093904786, - "2025-01-01": 1746.28611832488, - "2024-01-01": 1708.38800018673, - "2023-01-01": 1616, - "2015-01-01": 1616 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2220.88369929026, - "2034-01-01": 2177.87830133603, - "2033-01-01": 2135.40383422075, - "2032-01-01": 2093.99122878335, - "2031-01-01": 2053.64048502384, - "2030-01-01": 2013.82067210326, - "2029-01-01": 1974.53179002163, - "2028-01-01": 1935.77383877893, - "2027-01-01": 1896.4849566973, - "2026-01-01": 1850.87799763226, - "2025-01-01": 1823.01032278098, - "2024-01-01": 1783.44712643256, - "2023-01-01": 1687, - "2015-01-01": 1687 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2320.93536564832, - "2034-01-01": 2275.99255794631, - "2033-01-01": 2231.6045997221, - "2032-01-01": 2188.3263404535, - "2031-01-01": 2146.1577801405, - "2030-01-01": 2104.54406930531, - "2029-01-01": 2063.48520794791, - "2028-01-01": 2022.98119606832, - "2027-01-01": 1981.92233471093, - "2026-01-01": 1934.26076456768, - "2025-01-01": 1905.13764022695, - "2024-01-01": 1863.79210663936, - "2023-01-01": 1763, - "2015-01-01": 1763 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2414.40468553547, - "2034-01-01": 2367.65192925328, - "2033-01-01": 2321.4763674931, - "2032-01-01": 2276.45519477692, - "2031-01-01": 2232.58841110475, - "2030-01-01": 2189.29882195458, - "2029-01-01": 2146.58642732641, - "2028-01-01": 2104.45122722025, - "2027-01-01": 2061.73883259208, - "2026-01-01": 2012.15782315209, - "2025-01-01": 1981.86184468306, - "2024-01-01": 1938.85123288519, - "2023-01-01": 1834, - "2015-01-01": 1834 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2502.60812824587, - "2034-01-01": 2454.14739231761, - "2033-01-01": 2406.28493707982, - "2032-01-01": 2359.61904322297, - "2031-01-01": 2314.14971074707, - "2030-01-01": 2269.27865896165, - "2029-01-01": 2225.00588786669, - "2028-01-01": 2181.33139746221, - "2027-01-01": 2137.05862636726, - "2026-01-01": 2085.66631505568, - "2025-01-01": 2054.26355874727, - "2024-01-01": 2009.68167596224, - "2023-01-01": 1901, - "2015-01-01": 1901 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PA.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3014.71468368387, - "2034-01-01": 2956.33746891495, - "2033-01-01": 2898.6809605012, - "2032-01-01": 2842.46586479779, - "2031-01-01": 2787.69218180473, - "2030-01-01": 2733.63920516685, - "2029-01-01": 2680.30693488413, - "2028-01-01": 2627.69537095658, - "2027-01-01": 2574.36310067387, - "2026-01-01": 2512.4544247646, - "2025-01-01": 2474.62574935889, - "2024-01-01": 2420.921114126, - "2023-01-01": 2290, - "2015-01-01": 2290 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI", - "description": null, - "label": "RI", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 641.120546268141, - "2034-01-01": 628.705828542175, - "2033-01-01": 616.444378936281, - "2032-01-01": 604.489465570535, - "2031-01-01": 592.841088444937, - "2030-01-01": 581.345979439412, - "2029-01-01": 570.004138553961, - "2028-01-01": 558.815565788583, - "2027-01-01": 547.473724903132, - "2026-01-01": 534.307993388804, - "2025-01-01": 526.263205213004, - "2024-01-01": 514.842175798848, - "2023-01-01": 487, - "2015-01-01": 487 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 892.566181457495, - "2034-01-01": 875.28244712853, - "2033-01-01": 858.212092235726, - "2032-01-01": 841.568496215242, - "2031-01-01": 825.351659067079, - "2030-01-01": 809.348201355075, - "2029-01-01": 793.558123079231, - "2028-01-01": 777.981424239547, - "2027-01-01": 762.191345963703, - "2026-01-01": 743.862052397555, - "2025-01-01": 732.662121425908, - "2024-01-01": 716.761797108048, - "2023-01-01": 678, - "2015-01-01": 678 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1017.63076440508, - "2034-01-01": 997.925267891378, - "2033-01-01": 978.463049112414, - "2032-01-01": 959.487385802924, - "2031-01-01": 940.998277962908, - "2030-01-01": 922.75244785763, - "2029-01-01": 904.749895487087, - "2028-01-01": 886.990620851283, - "2027-01-01": 868.988068480741, - "2026-01-01": 848.090511066829, - "2025-01-01": 835.321268233373, - "2024-01-01": 817.19302236655, - "2023-01-01": 773, - "2015-01-01": 773 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1121.6318386457, - "2034-01-01": 1099.91245568364, - "2033-01-01": 1078.46121325197, - "2032-01-01": 1057.5462518811, - "2031-01-01": 1037.16757157102, - "2030-01-01": 1017.05703179133, - "2029-01-01": 997.214632542042, - "2028-01-01": 977.640373823148, - "2027-01-01": 957.797974573857, - "2026-01-01": 934.764703012857, - "2025-01-01": 920.690453473265, - "2024-01-01": 900.709514949936, - "2023-01-01": 852, - "2015-01-01": 852 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1213.78468923866, - "2034-01-01": 1190.28084992995, - "2033-01-01": 1167.0671814769, - "2032-01-01": 1144.43385473518, - "2031-01-01": 1122.38086970479, - "2030-01-01": 1100.61805553006, - "2029-01-01": 1079.14541221099, - "2028-01-01": 1057.96293974758, - "2027-01-01": 1036.49029642852, - "2026-01-01": 1011.56461992706, - "2025-01-01": 996.334035331397, - "2024-01-01": 974.711470403569, - "2023-01-01": 922, - "2015-01-01": 922 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1295.40578547813, - "2034-01-01": 1270.32142769096, - "2033-01-01": 1245.54675333327, - "2032-01-01": 1221.39144583451, - "2031-01-01": 1197.8555051947, - "2030-01-01": 1174.62924798436, - "2029-01-01": 1151.71267420349, - "2028-01-01": 1129.10578385209, - "2027-01-01": 1106.18921007122, - "2026-01-01": 1079.58740347964, - "2025-01-01": 1063.33263640574, - "2024-01-01": 1040.25605951964, - "2023-01-01": 984, - "2015-01-01": 984 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1369.1280659525, - "2034-01-01": 1342.61614308801, - "2033-01-01": 1316.43152791321, - "2032-01-01": 1290.90152811778, - "2031-01-01": 1266.02614370171, - "2030-01-01": 1241.47806697534, - "2029-01-01": 1217.25729793864, - "2028-01-01": 1193.36383659164, - "2027-01-01": 1169.14306755494, - "2026-01-01": 1141.027337011, - "2025-01-01": 1123.84750189225, - "2024-01-01": 1099.45762388255, - "2023-01-01": 1040, - "2015-01-01": 1040 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1437.58446925012, - "2034-01-01": 1409.74695024241, - "2033-01-01": 1382.25310430887, - "2032-01-01": 1355.44660452366, - "2031-01-01": 1329.3274508868, - "2030-01-01": 1303.5519703241, - "2029-01-01": 1278.12016283558, - "2028-01-01": 1253.03202842122, - "2027-01-01": 1227.60022093269, - "2026-01-01": 1198.07870386155, - "2025-01-01": 1180.03987698686, - "2024-01-01": 1154.43050507668, - "2023-01-01": 1092, - "2015-01-01": 1092 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1502.09146466519, - "2034-01-01": 1473.00482621483, - "2033-01-01": 1444.27728206632, - "2032-01-01": 1416.26792652152, - "2031-01-01": 1388.97675958044, - "2030-01-01": 1362.04468694121, - "2029-01-01": 1335.47170860384, - "2028-01-01": 1309.25782456832, - "2027-01-01": 1282.68484623095, - "2026-01-01": 1251.83864570149, - "2025-01-01": 1232.99038428755, - "2024-01-01": 1206.23187389422, - "2023-01-01": 1141, - "2015-01-01": 1141 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1585.02903019885, - "2034-01-01": 1554.33638103651, - "2033-01-01": 1524.02265346875, - "2032-01-01": 1494.46676909019, - "2031-01-01": 1465.66872790083, - "2030-01-01": 1437.24960830606, - "2029-01-01": 1409.20941030589, - "2028-01-01": 1381.54813390032, - "2027-01-01": 1353.50793590015, - "2026-01-01": 1320.95857092427, - "2025-01-01": 1301.06960795987, - "2024-01-01": 1272.83363380249, - "2023-01-01": 1204, - "2015-01-01": 1204 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1692.97951232203, - "2034-01-01": 1660.19650001075, - "2033-01-01": 1627.81821624652, - "2032-01-01": 1596.2493895764, - "2031-01-01": 1565.49002000039, - "2030-01-01": 1535.13537897143, - "2029-01-01": 1505.18546648951, - "2028-01-01": 1475.64028255466, - "2027-01-01": 1445.69037007275, - "2026-01-01": 1410.92418788091, - "2025-01-01": 1389.68066099368, - "2024-01-01": 1359.52163876246, - "2023-01-01": 1286, - "2015-01-01": 1286 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1791.71470938591, - "2034-01-01": 1757.01977956037, - "2033-01-01": 1722.7531822018, - "2032-01-01": 1689.3432497772, - "2031-01-01": 1656.78998228657, - "2030-01-01": 1624.66504726292, - "2029-01-01": 1592.96844470624, - "2028-01-01": 1561.70017461655, - "2027-01-01": 1530.00357205988, - "2026-01-01": 1493.20981314612, - "2025-01-01": 1470.72735584168, - "2024-01-01": 1438.80944817707, - "2023-01-01": 1361, - "2015-01-01": 1361 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1882.55109068469, - "2034-01-01": 1846.09719674602, - "2033-01-01": 1810.09335088066, - "2032-01-01": 1774.98960116194, - "2031-01-01": 1740.78594758986, - "2030-01-01": 1707.03234209109, - "2029-01-01": 1673.72878466563, - "2028-01-01": 1640.8752753135, - "2027-01-01": 1607.57171788805, - "2026-01-01": 1568.91258839012, - "2025-01-01": 1545.29031510184, - "2024-01-01": 1511.75423283851, - "2023-01-01": 1430, - "2015-01-01": 1430 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1966.80512551253, - "2034-01-01": 1928.71972862835, - "2033-01-01": 1891.10452182917, - "2032-01-01": 1854.42969519996, - "2031-01-01": 1818.69524874073, - "2030-01-01": 1783.43099236649, - "2029-01-01": 1748.63692607724, - "2028-01-01": 1714.31304987298, - "2027-01-01": 1679.51898358374, - "2026-01-01": 1639.12965528311, - "2025-01-01": 1614.45016137213, - "2024-01-01": 1579.41316353897, - "2023-01-01": 1494, - "2015-01-01": 1494 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2055.00856822293, - "2034-01-01": 2015.21519169268, - "2033-01-01": 1975.91309141588, - "2032-01-01": 1937.59354364601, - "2031-01-01": 1900.25654838305, - "2030-01-01": 1863.41082937356, - "2029-01-01": 1827.05638661752, - "2028-01-01": 1791.19322011495, - "2027-01-01": 1754.83877735891, - "2026-01-01": 1712.6381471867, - "2025-01-01": 1686.85187543634, - "2024-01-01": 1650.24360661602, - "2023-01-01": 1561, - "2015-01-01": 1561 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2147.16141881589, - "2034-01-01": 2105.58358593899, - "2033-01-01": 2064.51905964081, - "2032-01-01": 2024.48114650009, - "2031-01-01": 1985.46984651682, - "2030-01-01": 1946.97185311228, - "2029-01-01": 1908.98716628647, - "2028-01-01": 1871.51578603938, - "2027-01-01": 1833.53109921357, - "2026-01-01": 1789.4380641009, - "2025-01-01": 1762.49545729448, - "2024-01-01": 1724.24556206965, - "2023-01-01": 1631, - "2015-01-01": 1631 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2234.04839223211, - "2034-01-01": 2190.78807194265, - "2033-01-01": 2148.06182968146, - "2032-01-01": 2106.40374347679, - "2031-01-01": 2065.81381332866, - "2030-01-01": 2025.75796120879, - "2029-01-01": 1986.23618711719, - "2028-01-01": 1947.24849105385, - "2027-01-01": 1907.72671696225, - "2026-01-01": 1861.84941433429, - "2025-01-01": 1833.81654876072, - "2024-01-01": 1794.01883435451, - "2023-01-01": 1697, - "2015-01-01": 1697 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2315.66948847158, - "2034-01-01": 2270.82864970367, - "2033-01-01": 2226.54140153782, - "2032-01-01": 2183.36133457612, - "2031-01-01": 2141.28844881857, - "2030-01-01": 2099.76915366309, - "2029-01-01": 2058.80344910969, - "2028-01-01": 2018.39133515835, - "2027-01-01": 1977.42563060495, - "2026-01-01": 1929.87219788687, - "2025-01-01": 1900.81514983506, - "2024-01-01": 1859.56342347058, - "2023-01-01": 1759, - "2015-01-01": 1759 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2790.9149036724, - "2034-01-01": 2736.87136860248, - "2033-01-01": 2683.49503766923, - "2032-01-01": 2631.45311500931, - "2031-01-01": 2580.74560062272, - "2030-01-01": 2530.7052903728, - "2029-01-01": 2481.33218425954, - "2028-01-01": 2432.62628228295, - "2027-01-01": 2383.25317616969, - "2026-01-01": 2325.94034083011, - "2025-01-01": 2290.91990770343, - "2024-01-01": 2241.20207945289, - "2023-01-01": 2120, - "2015-01-01": 2120 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 663.500524269288, - "2034-01-01": 650.652438573421, - "2033-01-01": 637.962971219478, - "2032-01-01": 625.590740549384, - "2031-01-01": 613.535746563138, - "2030-01-01": 601.639370918817, - "2029-01-01": 589.901613616419, - "2028-01-01": 578.322474655946, - "2027-01-01": 566.584717353549, - "2026-01-01": 552.959401782253, - "2025-01-01": 544.633789378551, - "2024-01-01": 532.814079266159, - "2023-01-01": 504, - "2015-01-01": 504 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 924.161444517937, - "2034-01-01": 906.265896584408, - "2033-01-01": 888.591281341416, - "2032-01-01": 871.358531479499, - "2031-01-01": 854.567646998657, - "2030-01-01": 837.997695208352, - "2029-01-01": 821.648676108584, - "2028-01-01": 805.520589699354, - "2027-01-01": 789.171570599587, - "2026-01-01": 770.193452482424, - "2025-01-01": 758.597063777267, - "2024-01-01": 742.133896120722, - "2023-01-01": 702, - "2015-01-01": 702 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1053.17543534808, - "2034-01-01": 1032.78164852924, - "2033-01-01": 1012.63963685631, - "2032-01-01": 993.001175475212, - "2031-01-01": 973.866264385933, - "2030-01-01": 954.983128442566, - "2029-01-01": 936.35176764511, - "2028-01-01": 917.972181993566, - "2027-01-01": 899.34082119611, - "2026-01-01": 877.713336162307, - "2025-01-01": 864.498078378652, - "2024-01-01": 845.736633755808, - "2023-01-01": 800, - "2015-01-01": 800 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1161.12591747125, - "2034-01-01": 1138.64176750349, - "2033-01-01": 1116.43519963409, - "2032-01-01": 1094.78379596142, - "2031-01-01": 1073.68755648549, - "2030-01-01": 1052.86889910793, - "2029-01-01": 1032.32782382873, - "2028-01-01": 1012.06433064791, - "2027-01-01": 991.523255368712, - "2026-01-01": 967.678953118943, - "2025-01-01": 953.109131412464, - "2024-01-01": 932.424638715779, - "2023-01-01": 882, - "2015-01-01": 882 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1255.91170665258, - "2034-01-01": 1231.59211587112, - "2033-01-01": 1207.57276695115, - "2032-01-01": 1184.15390175419, - "2031-01-01": 1161.33552028023, - "2030-01-01": 1138.81738066776, - "2029-01-01": 1116.59948291679, - "2028-01-01": 1094.68182702733, - "2027-01-01": 1072.46392927636, - "2026-01-01": 1046.67315337355, - "2025-01-01": 1030.91395846654, - "2024-01-01": 1008.5409357538, - "2023-01-01": 954, - "2015-01-01": 954 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1340.16574148043, - "2034-01-01": 1314.21464775346, - "2033-01-01": 1288.58393789966, - "2032-01-01": 1263.59399579221, - "2031-01-01": 1239.2448214311, - "2030-01-01": 1215.21603094317, - "2029-01-01": 1191.5076243284, - "2028-01-01": 1168.11960158681, - "2027-01-01": 1144.41119497205, - "2026-01-01": 1116.89022026654, - "2025-01-01": 1100.07380473683, - "2024-01-01": 1076.19986645427, - "2023-01-01": 1018, - "2015-01-01": 1018 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1417.83742983735, - "2034-01-01": 1390.38229433249, - "2033-01-01": 1363.26611111781, - "2032-01-01": 1336.8278324835, - "2031-01-01": 1311.06745842956, - "2030-01-01": 1285.6460366658, - "2029-01-01": 1260.56356719223, - "2028-01-01": 1235.82005000884, - "2027-01-01": 1210.73758053526, - "2026-01-01": 1181.62157880851, - "2025-01-01": 1163.83053801726, - "2024-01-01": 1138.57294319376, - "2023-01-01": 1077, - "2015-01-01": 1077 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1487.61030242916, - "2034-01-01": 1458.80407854755, - "2033-01-01": 1430.35348705954, - "2032-01-01": 1402.61416035874, - "2031-01-01": 1375.58609844513, - "2030-01-01": 1348.91366892512, - "2029-01-01": 1322.59687179872, - "2028-01-01": 1296.63570706591, - "2027-01-01": 1270.31890993951, - "2026-01-01": 1239.77008732926, - "2025-01-01": 1221.10353570985, - "2024-01-01": 1194.60299518008, - "2023-01-01": 1130, - "2015-01-01": 1130 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1553.43376713841, - "2034-01-01": 1523.35293158063, - "2033-01-01": 1493.64346436306, - "2032-01-01": 1464.67673382594, - "2031-01-01": 1436.45273996925, - "2030-01-01": 1408.60011445279, - "2029-01-01": 1381.11885727654, - "2028-01-01": 1354.00896844051, - "2027-01-01": 1326.52771126426, - "2026-01-01": 1294.6271708394, - "2025-01-01": 1275.13466560851, - "2024-01-01": 1247.46153478982, - "2023-01-01": 1180, - "2015-01-01": 1180 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1640.32074055463, - "2034-01-01": 1608.55741758429, - "2033-01-01": 1577.18623440371, - "2032-01-01": 1546.59933080264, - "2031-01-01": 1516.79670678109, - "2030-01-01": 1487.3862225493, - "2029-01-01": 1458.36787810726, - "2028-01-01": 1429.74167345498, - "2027-01-01": 1400.72332901294, - "2026-01-01": 1367.03852107279, - "2025-01-01": 1346.45575707475, - "2024-01-01": 1317.23480707467, - "2023-01-01": 1246, - "2015-01-01": 1246 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1752.22063056036, - "2034-01-01": 1718.29046774052, - "2033-01-01": 1684.77919581969, - "2032-01-01": 1652.10570569688, - "2031-01-01": 1620.2699973721, - "2030-01-01": 1588.85317994632, - "2029-01-01": 1557.85525341955, - "2028-01-01": 1527.2762177918, - "2027-01-01": 1496.27829126503, - "2026-01-01": 1460.29556304004, - "2025-01-01": 1438.30867790248, - "2024-01-01": 1407.09432441123, - "2023-01-01": 1331, - "2015-01-01": 1331 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1853.58876621261, - "2034-01-01": 1817.69570141146, - "2033-01-01": 1782.24576086711, - "2032-01-01": 1747.68206883637, - "2031-01-01": 1714.00462531924, - "2030-01-01": 1680.77030605892, - "2029-01-01": 1647.97911105539, - "2028-01-01": 1615.63104030868, - "2027-01-01": 1582.83984530515, - "2026-01-01": 1544.77547164566, - "2025-01-01": 1521.51661794643, - "2024-01-01": 1488.49647541022, - "2023-01-01": 1408, - "2015-01-01": 1408 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1947.05808609976, - "2034-01-01": 1909.35507271843, - "2033-01-01": 1872.11752863811, - "2032-01-01": 1835.8109231598, - "2031-01-01": 1800.43525628349, - "2030-01-01": 1765.52505870819, - "2029-01-01": 1731.0803304339, - "2028-01-01": 1697.1010714606, - "2027-01-01": 1662.65634318631, - "2026-01-01": 1622.67253023006, - "2025-01-01": 1598.24082240253, - "2024-01-01": 1563.55560165605, - "2023-01-01": 1479, - "2015-01-01": 1479 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2035.26152881016, - "2034-01-01": 1995.85053578276, - "2033-01-01": 1956.92609822483, - "2032-01-01": 1918.97477160585, - "2031-01-01": 1881.99655592582, - "2030-01-01": 1845.50489571526, - "2029-01-01": 1809.49979097417, - "2028-01-01": 1773.98124170257, - "2027-01-01": 1737.97613696148, - "2026-01-01": 1696.18102213366, - "2025-01-01": 1670.64253646675, - "2024-01-01": 1634.3860447331, - "2023-01-01": 1546, - "2015-01-01": 1546 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2124.78144081474, - "2034-01-01": 2083.63697590774, - "2033-01-01": 2043.00046735761, - "2032-01-01": 2003.37987152124, - "2031-01-01": 1964.77518839862, - "2030-01-01": 1926.67846163288, - "2029-01-01": 1889.08969122401, - "2028-01-01": 1852.00887717202, - "2027-01-01": 1814.42010676315, - "2026-01-01": 1770.78665570745, - "2025-01-01": 1744.12487312893, - "2024-01-01": 1706.27365860234, - "2023-01-01": 1614, - "2015-01-01": 1614 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2220.88369929026, - "2034-01-01": 2177.87830133603, - "2033-01-01": 2135.40383422075, - "2032-01-01": 2093.99122878335, - "2031-01-01": 2053.64048502384, - "2030-01-01": 2013.82067210326, - "2029-01-01": 1974.53179002163, - "2028-01-01": 1935.77383877893, - "2027-01-01": 1896.4849566973, - "2026-01-01": 1850.87799763226, - "2025-01-01": 1823.01032278098, - "2024-01-01": 1783.44712643256, - "2023-01-01": 1687, - "2015-01-01": 1687 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2310.40361129484, - "2034-01-01": 2265.66474146102, - "2033-01-01": 2221.47820335354, - "2032-01-01": 2178.39632869875, - "2031-01-01": 2136.41911749664, - "2030-01-01": 2094.99423802088, - "2029-01-01": 2054.12169027146, - "2028-01-01": 2013.80147424839, - "2027-01-01": 1972.92892649897, - "2026-01-01": 1925.48363120606, - "2025-01-01": 1896.49265944317, - "2024-01-01": 1855.3347403018, - "2023-01-01": 1755, - "2015-01-01": 1755 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2394.65764612269, - "2034-01-01": 2348.28727334336, - "2033-01-01": 2302.48937430204, - "2032-01-01": 2257.83642273676, - "2031-01-01": 2214.32841864752, - "2030-01-01": 2171.39288829628, - "2029-01-01": 2129.02983168307, - "2028-01-01": 2087.23924880787, - "2027-01-01": 2044.87619219466, - "2026-01-01": 1995.70069809905, - "2025-01-01": 1965.65250571346, - "2024-01-01": 1922.99367100227, - "2023-01-01": 1819, - "2015-01-01": 1819 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2885.70069285373, - "2034-01-01": 2829.82171697012, - "2033-01-01": 2774.6326049863, - "2032-01-01": 2720.82322080208, - "2031-01-01": 2668.39356441746, - "2030-01-01": 2616.65377193263, - "2029-01-01": 2565.6038433476, - "2028-01-01": 2515.24377866237, - "2027-01-01": 2464.19385007734, - "2026-01-01": 2404.93454108472, - "2025-01-01": 2368.72473475751, - "2024-01-01": 2317.31837649092, - "2023-01-01": 2192, - "2015-01-01": 2192 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 695.09578732973, - "2034-01-01": 681.635888029298, - "2033-01-01": 668.342160325167, - "2032-01-01": 655.38077581364, - "2031-01-01": 642.751734494716, - "2030-01-01": 630.288864772094, - "2029-01-01": 617.992166645773, - "2028-01-01": 605.861640115753, - "2027-01-01": 593.564941989433, - "2026-01-01": 579.290801867123, - "2025-01-01": 570.56873172991, - "2024-01-01": 558.186178278834, - "2023-01-01": 528, - "2015-01-01": 528 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 966.28846193186, - "2034-01-01": 947.577162525577, - "2033-01-01": 929.096866815668, - "2032-01-01": 911.078578498507, - "2031-01-01": 893.522297574094, - "2030-01-01": 876.197020346054, - "2029-01-01": 859.102746814388, - "2028-01-01": 842.239476979097, - "2027-01-01": 825.145203447431, - "2026-01-01": 805.301985928917, - "2025-01-01": 793.176986912413, - "2024-01-01": 775.963361470954, - "2023-01-01": 734, - "2015-01-01": 734 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1101.88479923292, - "2034-01-01": 1080.54779977372, - "2033-01-01": 1059.47422006092, - "2032-01-01": 1038.92747984094, - "2031-01-01": 1018.90757911378, - "2030-01-01": 999.151098133035, - "2029-01-01": 979.658036898696, - "2028-01-01": 960.428395410768, - "2027-01-01": 940.93533417643, - "2026-01-01": 918.307577959814, - "2025-01-01": 904.481114503665, - "2024-01-01": 884.851953067015, - "2023-01-01": 837, - "2015-01-01": 837 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1215.10115853284, - "2034-01-01": 1191.57182699061, - "2033-01-01": 1168.33298102297, - "2032-01-01": 1145.67510620453, - "2031-01-01": 1123.59820253527, - "2030-01-01": 1101.81178444061, - "2029-01-01": 1080.31585192055, - "2028-01-01": 1059.11040497508, - "2027-01-01": 1037.61447245501, - "2026-01-01": 1012.66176159726, - "2025-01-01": 997.41465792937, - "2024-01-01": 975.768641195764, - "2023-01-01": 923, - "2015-01-01": 923 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1313.83635559673, - "2034-01-01": 1288.39510654023, - "2033-01-01": 1263.26794697825, - "2032-01-01": 1238.76896640533, - "2031-01-01": 1214.89816482145, - "2030-01-01": 1191.3414527321, - "2029-01-01": 1168.09883013727, - "2028-01-01": 1145.17029703697, - "2027-01-01": 1121.92767444215, - "2026-01-01": 1094.94738686248, - "2025-01-01": 1078.46135277737, - "2024-01-01": 1055.05645061037, - "2023-01-01": 998, - "2015-01-01": 998 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1402.03979830713, - "2034-01-01": 1374.89056960455, - "2033-01-01": 1348.07651656497, - "2032-01-01": 1321.93281485138, - "2031-01-01": 1296.45946446377, - "2030-01-01": 1271.32128973917, - "2029-01-01": 1246.51829067755, - "2028-01-01": 1222.05046727893, - "2027-01-01": 1197.24746821732, - "2026-01-01": 1168.45587876607, - "2025-01-01": 1150.86306684158, - "2024-01-01": 1125.88689368742, - "2023-01-01": 1065, - "2015-01-01": 1065 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1482.34442525242, - "2034-01-01": 1453.6401703049, - "2033-01-01": 1425.29028887526, - "2032-01-01": 1397.64915448136, - "2031-01-01": 1370.7167671232, - "2030-01-01": 1344.13875328291, - "2029-01-01": 1317.91511296049, - "2028-01-01": 1292.04584615594, - "2027-01-01": 1265.82220583353, - "2026-01-01": 1235.38152064845, - "2025-01-01": 1216.78104531795, - "2024-01-01": 1190.3743120113, - "2023-01-01": 1126, - "2015-01-01": 1126 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1556.06670572678, - "2034-01-01": 1525.93488570195, - "2033-01-01": 1496.1750634552, - "2032-01-01": 1467.15923676463, - "2031-01-01": 1438.88740563022, - "2030-01-01": 1410.98757227389, - "2029-01-01": 1383.45973669565, - "2028-01-01": 1356.30389889549, - "2027-01-01": 1328.77606331725, - "2026-01-01": 1296.82145417981, - "2025-01-01": 1277.29591080446, - "2024-01-01": 1249.57587637421, - "2023-01-01": 1182, - "2015-01-01": 1182 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1624.52310902441, - "2034-01-01": 1593.06569285635, - "2033-01-01": 1561.99663985086, - "2032-01-01": 1531.70431317051, - "2031-01-01": 1502.1887128153, - "2030-01-01": 1473.06147562266, - "2029-01-01": 1444.32260159258, - "2028-01-01": 1415.97209072508, - "2027-01-01": 1387.233216695, - "2026-01-01": 1353.87282103036, - "2025-01-01": 1333.48828589907, - "2024-01-01": 1304.54875756833, - "2023-01-01": 1234, - "2015-01-01": 1234 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1715.35949032318, - "2034-01-01": 1682.143110042, - "2033-01-01": 1649.33680852972, - "2032-01-01": 1617.35066455525, - "2031-01-01": 1586.18467811859, - "2030-01-01": 1555.42877045083, - "2029-01-01": 1525.08294155197, - "2028-01-01": 1495.14719142202, - "2027-01-01": 1464.80136252316, - "2026-01-01": 1429.57559627436, - "2025-01-01": 1408.05124515923, - "2024-01-01": 1377.49354222977, - "2023-01-01": 1303, - "2015-01-01": 1303 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1831.20878821147, - "2034-01-01": 1795.74909138021, - "2033-01-01": 1760.72716858392, - "2032-01-01": 1726.58079385753, - "2031-01-01": 1693.30996720104, - "2030-01-01": 1660.47691457951, - "2029-01-01": 1628.08163599294, - "2028-01-01": 1596.12413144131, - "2027-01-01": 1563.72885285474, - "2026-01-01": 1526.12406325221, - "2025-01-01": 1503.14603378088, - "2024-01-01": 1470.52457194291, - "2023-01-01": 1391, - "2015-01-01": 1391 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1937.84280104046, - "2034-01-01": 1900.3182332938, - "2033-01-01": 1863.25693181562, - "2032-01-01": 1827.12216287439, - "2031-01-01": 1791.91392647012, - "2030-01-01": 1757.16895633432, - "2029-01-01": 1722.887252467, - "2028-01-01": 1689.06881486816, - "2027-01-01": 1654.78711100084, - "2026-01-01": 1614.99253853864, - "2025-01-01": 1590.67646421672, - "2024-01-01": 1556.15540611069, - "2023-01-01": 1472, - "2015-01-01": 1472 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2035.26152881016, - "2034-01-01": 1995.85053578276, - "2033-01-01": 1956.92609822483, - "2032-01-01": 1918.97477160585, - "2031-01-01": 1881.99655592582, - "2030-01-01": 1845.50489571526, - "2029-01-01": 1809.49979097417, - "2028-01-01": 1773.98124170257, - "2027-01-01": 1737.97613696148, - "2026-01-01": 1696.18102213366, - "2025-01-01": 1670.64253646675, - "2024-01-01": 1634.3860447331, - "2023-01-01": 1546, - "2015-01-01": 1546 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2127.41437940311, - "2034-01-01": 2086.21893002906, - "2033-01-01": 2045.53206644975, - "2032-01-01": 2005.86237445993, - "2031-01-01": 1967.20985405959, - "2030-01-01": 1929.06591945398, - "2029-01-01": 1891.43057064312, - "2028-01-01": 1854.303807627, - "2027-01-01": 1816.66845881614, - "2026-01-01": 1772.98093904786, - "2025-01-01": 1746.28611832488, - "2024-01-01": 1708.38800018673, - "2023-01-01": 1616, - "2015-01-01": 1616 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2220.88369929026, - "2034-01-01": 2177.87830133603, - "2033-01-01": 2135.40383422075, - "2032-01-01": 2093.99122878335, - "2031-01-01": 2053.64048502384, - "2030-01-01": 2013.82067210326, - "2029-01-01": 1974.53179002163, - "2028-01-01": 1935.77383877893, - "2027-01-01": 1896.4849566973, - "2026-01-01": 1850.87799763226, - "2025-01-01": 1823.01032278098, - "2024-01-01": 1783.44712643256, - "2023-01-01": 1687, - "2015-01-01": 1687 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2320.93536564832, - "2034-01-01": 2275.99255794631, - "2033-01-01": 2231.6045997221, - "2032-01-01": 2188.3263404535, - "2031-01-01": 2146.1577801405, - "2030-01-01": 2104.54406930531, - "2029-01-01": 2063.48520794791, - "2028-01-01": 2022.98119606832, - "2027-01-01": 1981.92233471093, - "2026-01-01": 1934.26076456768, - "2025-01-01": 1905.13764022695, - "2024-01-01": 1863.79210663936, - "2023-01-01": 1763, - "2015-01-01": 1763 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2414.40468553547, - "2034-01-01": 2367.65192925328, - "2033-01-01": 2321.4763674931, - "2032-01-01": 2276.45519477692, - "2031-01-01": 2232.58841110475, - "2030-01-01": 2189.29882195458, - "2029-01-01": 2146.58642732641, - "2028-01-01": 2104.45122722025, - "2027-01-01": 2061.73883259208, - "2026-01-01": 2012.15782315209, - "2025-01-01": 1981.86184468306, - "2024-01-01": 1938.85123288519, - "2023-01-01": 1834, - "2015-01-01": 1834 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2502.60812824587, - "2034-01-01": 2454.14739231761, - "2033-01-01": 2406.28493707982, - "2032-01-01": 2359.61904322297, - "2031-01-01": 2314.14971074707, - "2030-01-01": 2269.27865896165, - "2029-01-01": 2225.00588786669, - "2028-01-01": 2181.33139746221, - "2027-01-01": 2137.05862636726, - "2026-01-01": 2085.66631505568, - "2025-01-01": 2054.26355874727, - "2024-01-01": 2009.68167596224, - "2023-01-01": 1901, - "2015-01-01": 1901 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3014.71468368387, - "2034-01-01": 2956.33746891495, - "2033-01-01": 2898.6809605012, - "2032-01-01": 2842.46586479779, - "2031-01-01": 2787.69218180473, - "2030-01-01": 2733.63920516685, - "2029-01-01": 2680.30693488413, - "2028-01-01": 2627.69537095658, - "2027-01-01": 2574.36310067387, - "2026-01-01": 2512.4544247646, - "2025-01-01": 2474.62574935889, - "2024-01-01": 2420.921114126, - "2023-01-01": 2290, - "2015-01-01": 2290 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 575.297081558887, - "2034-01-01": 564.156975509097, - "2033-01-01": 553.154401632762, - "2032-01-01": 542.426892103335, - "2031-01-01": 531.974446920816, - "2030-01-01": 521.659533911752, - "2029-01-01": 511.482153076141, - "2028-01-01": 501.442304413985, - "2027-01-01": 491.264923578375, - "2026-01-01": 479.45090987866, - "2025-01-01": 472.232075314339, - "2024-01-01": 461.98363618911, - "2023-01-01": 437, - "2015-01-01": 437 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 804.362738747093, - "2034-01-01": 788.786984064207, - "2033-01-01": 773.40352264901, - "2032-01-01": 758.404647769193, - "2031-01-01": 743.790359424757, - "2030-01-01": 729.36836434801, - "2029-01-01": 715.138662538953, - "2028-01-01": 701.101253997586, - "2027-01-01": 686.871552188529, - "2026-01-01": 670.353560493962, - "2025-01-01": 660.260407361696, - "2024-01-01": 645.931354030999, - "2023-01-01": 611, - "2015-01-01": 611 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 917.579098047011, - "2034-01-01": 899.8110112811, - "2033-01-01": 882.262283611064, - "2032-01-01": 865.152274132779, - "2031-01-01": 848.480982846244, - "2030-01-01": 832.029050655586, - "2029-01-01": 815.796477560802, - "2028-01-01": 799.783263561894, - "2027-01-01": 783.550690467111, - "2026-01-01": 764.70774413141, - "2025-01-01": 753.193950787401, - "2024-01-01": 736.848042159748, - "2023-01-01": 697, - "2015-01-01": 697 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1013.68135652252, - "2034-01-01": 994.052336709393, - "2033-01-01": 974.665650474202, - "2032-01-01": 955.763631394892, - "2031-01-01": 937.346279471461, - "2030-01-01": 919.17126112597, - "2029-01-01": 901.238576358418, - "2028-01-01": 883.548225168807, - "2027-01-01": 865.615540401256, - "2026-01-01": 844.79908605622, - "2025-01-01": 832.079400439453, - "2024-01-01": 814.021509989966, - "2023-01-01": 770, - "2015-01-01": 770 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1097.93539135037, - "2034-01-01": 1076.67486859173, - "2033-01-01": 1055.67682142271, - "2032-01-01": 1035.20372543291, - "2031-01-01": 1015.25558062234, - "2030-01-01": 995.569911401375, - "2029-01-01": 976.146717770027, - "2028-01-01": 956.985999728292, - "2027-01-01": 937.562806096945, - "2026-01-01": 915.016152949205, - "2025-01-01": 901.239246709745, - "2024-01-01": 881.68044069043, - "2023-01-01": 834, - "2015-01-01": 834 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1172.97414111892, - "2034-01-01": 1150.26056104944, - "2033-01-01": 1127.82739554872, - "2032-01-01": 1105.95505918552, - "2031-01-01": 1084.64355195983, - "2030-01-01": 1063.61245930291, - "2029-01-01": 1042.86178121474, - "2028-01-01": 1022.39151769533, - "2027-01-01": 1001.64083960717, - "2026-01-01": 977.553228150769, - "2025-01-01": 962.834734794224, - "2024-01-01": 941.939175845532, - "2023-01-01": 891, - "2015-01-01": 891 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1241.43054441654, - "2034-01-01": 1217.39136820384, - "2033-01-01": 1193.64897194438, - "2032-01-01": 1170.50013559141, - "2031-01-01": 1147.94485914492, - "2030-01-01": 1125.68636265167, - "2029-01-01": 1103.72464611167, - "2028-01-01": 1082.05970952492, - "2027-01-01": 1060.09799298491, - "2026-01-01": 1034.60459500132, - "2025-01-01": 1019.02710988884, - "2024-01-01": 996.912057039659, - "2023-01-01": 943, - "2015-01-01": 943 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1304.62107053743, - "2034-01-01": 1279.3582671156, - "2033-01-01": 1254.40735015576, - "2032-01-01": 1230.08020611992, - "2031-01-01": 1206.37683500808, - "2030-01-01": 1182.98535035823, - "2029-01-01": 1159.90575217038, - "2028-01-01": 1137.13804044453, - "2027-01-01": 1114.05844225668, - "2026-01-01": 1087.26739517106, - "2025-01-01": 1070.89699459156, - "2024-01-01": 1047.65625506501, - "2023-01-01": 991, - "2015-01-01": 991 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1363.86218877576, - "2034-01-01": 1337.45223484537, - "2033-01-01": 1311.36832972893, - "2032-01-01": 1285.9365222404, - "2031-01-01": 1261.15681237978, - "2030-01-01": 1236.70315133312, - "2029-01-01": 1212.57553910042, - "2028-01-01": 1188.77397568167, - "2027-01-01": 1164.64636344896, - "2026-01-01": 1136.63877033019, - "2025-01-01": 1119.52501150035, - "2024-01-01": 1095.22894071377, - "2023-01-01": 1036, - "2015-01-01": 1036 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1440.21740783849, - "2034-01-01": 1412.32890436373, - "2033-01-01": 1384.78470340101, - "2032-01-01": 1357.92910746235, - "2031-01-01": 1331.76211654776, - "2030-01-01": 1305.93942814521, - "2029-01-01": 1280.46104225469, - "2028-01-01": 1255.3269588762, - "2027-01-01": 1229.84857298568, - "2026-01-01": 1200.27298720195, - "2025-01-01": 1182.20112218281, - "2024-01-01": 1156.54484666107, - "2023-01-01": 1094, - "2015-01-01": 1094 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1540.26907419656, - "2034-01-01": 1510.44316097401, - "2033-01-01": 1480.98546890236, - "2032-01-01": 1452.2642191325, - "2031-01-01": 1424.27941166443, - "2030-01-01": 1396.66282534725, - "2029-01-01": 1369.41446018097, - "2028-01-01": 1342.53431616559, - "2027-01-01": 1315.28595099931, - "2026-01-01": 1283.65575413737, - "2025-01-01": 1264.32843962878, - "2024-01-01": 1236.88982686787, - "2023-01-01": 1170, - "2015-01-01": 1170 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1632.42192478952, - "2034-01-01": 1600.81155522032, - "2033-01-01": 1569.59143712729, - "2032-01-01": 1539.15182198658, - "2031-01-01": 1509.4927097982, - "2030-01-01": 1480.22384908598, - "2029-01-01": 1451.34523984992, - "2028-01-01": 1422.85688209003, - "2027-01-01": 1393.97827285397, - "2026-01-01": 1360.45567105158, - "2025-01-01": 1339.97202148691, - "2024-01-01": 1310.8917823215, - "2023-01-01": 1240, - "2015-01-01": 1240 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1715.35949032318, - "2034-01-01": 1682.143110042, - "2033-01-01": 1649.33680852972, - "2032-01-01": 1617.35066455525, - "2031-01-01": 1586.18467811859, - "2030-01-01": 1555.42877045083, - "2029-01-01": 1525.08294155197, - "2028-01-01": 1495.14719142202, - "2027-01-01": 1464.80136252316, - "2026-01-01": 1429.57559627436, - "2025-01-01": 1408.05124515923, - "2024-01-01": 1377.49354222977, - "2023-01-01": 1303, - "2015-01-01": 1303 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1794.34764797428, - "2034-01-01": 1759.60173368169, - "2033-01-01": 1725.28478129395, - "2032-01-01": 1691.82575271589, - "2031-01-01": 1659.22464794753, - "2030-01-01": 1627.05250508402, - "2029-01-01": 1595.30932412536, - "2028-01-01": 1563.99510507154, - "2027-01-01": 1532.25192411287, - "2026-01-01": 1495.40409648653, - "2025-01-01": 1472.88860103763, - "2024-01-01": 1440.92378976146, - "2023-01-01": 1363, - "2015-01-01": 1363 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1874.65227491958, - "2034-01-01": 1838.35133438205, - "2033-01-01": 1802.49855360424, - "2032-01-01": 1767.54209234588, - "2031-01-01": 1733.48195060696, - "2030-01-01": 1699.86996862777, - "2029-01-01": 1666.7061464083, - "2028-01-01": 1633.99048394855, - "2027-01-01": 1600.82666172908, - "2026-01-01": 1562.32973836891, - "2025-01-01": 1538.806579514, - "2024-01-01": 1505.41120808534, - "2023-01-01": 1424, - "2015-01-01": 1424 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1960.22277904161, - "2034-01-01": 1922.26484332505, - "2033-01-01": 1884.77552409881, - "2032-01-01": 1848.22343785324, - "2031-01-01": 1812.60858458832, - "2030-01-01": 1777.46234781373, - "2029-01-01": 1742.78472752946, - "2028-01-01": 1708.57572373552, - "2027-01-01": 1673.89810345126, - "2026-01-01": 1633.64394693209, - "2025-01-01": 1609.04704838227, - "2024-01-01": 1574.127309578, - "2023-01-01": 1489, - "2015-01-01": 1489 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2041.84387528108, - "2034-01-01": 2002.30542108606, - "2033-01-01": 1963.25509595518, - "2032-01-01": 1925.18102895257, - "2031-01-01": 1888.08322007823, - "2030-01-01": 1851.47354026803, - "2029-01-01": 1815.35198952196, - "2028-01-01": 1779.71856784003, - "2027-01-01": 1743.59701709396, - "2026-01-01": 1701.66673048467, - "2025-01-01": 1676.04564945661, - "2024-01-01": 1639.67189869407, - "2023-01-01": 1551, - "2015-01-01": 1551 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2118.19909434382, - "2034-01-01": 2077.18209060443, - "2033-01-01": 2036.67146962726, - "2032-01-01": 1997.17361417452, - "2031-01-01": 1958.68852424621, - "2030-01-01": 1920.70981708011, - "2029-01-01": 1883.23749267623, - "2028-01-01": 1846.27155103456, - "2027-01-01": 1808.79922663068, - "2026-01-01": 1765.30094735644, - "2025-01-01": 1738.72176013906, - "2024-01-01": 1700.98780464137, - "2023-01-01": 1609, - "2015-01-01": 1609 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2560.53277719001, - "2034-01-01": 2510.95038298671, - "2033-01-01": 2461.98011710691, - "2032-01-01": 2414.23410787411, - "2031-01-01": 2367.7123552883, - "2030-01-01": 2321.80273102599, - "2029-01-01": 2276.50523508717, - "2028-01-01": 2231.81986747186, - "2027-01-01": 2186.52237153304, - "2026-01-01": 2133.94054854461, - "2025-01-01": 2101.8109530581, - "2024-01-01": 2056.19719081881, - "2023-01-01": 1945, - "2015-01-01": 1945 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 647.702892739067, - "2034-01-01": 635.160713845482, - "2033-01-01": 622.773376666633, - "2032-01-01": 610.695722917256, - "2031-01-01": 598.927752597349, - "2030-01-01": 587.314623992178, - "2029-01-01": 575.856337101743, - "2028-01-01": 564.552891926043, - "2027-01-01": 553.094605035608, - "2026-01-01": 539.793701739819, - "2025-01-01": 531.666318202871, - "2024-01-01": 520.128029759822, - "2023-01-01": 492, - "2015-01-01": 492 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 904.41440510516, - "2034-01-01": 886.901240674484, - "2033-01-01": 869.60428815036, - "2032-01-01": 852.739759439338, - "2031-01-01": 836.30765454142, - "2030-01-01": 820.091761550054, - "2029-01-01": 804.092080465238, - "2028-01-01": 788.308611286975, - "2027-01-01": 772.30893020216, - "2026-01-01": 753.736327429381, - "2025-01-01": 742.387724807668, - "2024-01-01": 726.2763342378, - "2023-01-01": 687, - "2015-01-01": 687 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1033.4283959353, - "2034-01-01": 1013.41699261932, - "2033-01-01": 993.652643665258, - "2032-01-01": 974.382403435052, - "2031-01-01": 955.606271928697, - "2030-01-01": 937.077194784268, - "2029-01-01": 918.795172001764, - "2028-01-01": 900.760203581186, - "2027-01-01": 882.478180798683, - "2026-01-01": 861.256211109264, - "2025-01-01": 848.288739409052, - "2024-01-01": 829.879071872887, - "2023-01-01": 785, - "2015-01-01": 785 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1141.37887805848, - "2034-01-01": 1119.27711159356, - "2033-01-01": 1097.44820644303, - "2032-01-01": 1076.16502392126, - "2031-01-01": 1055.42756402826, - "2030-01-01": 1034.96296544963, - "2029-01-01": 1014.77122818539, - "2028-01-01": 994.852352235527, - "2027-01-01": 974.660614971284, - "2026-01-01": 951.2218280659, - "2025-01-01": 936.899792442864, - "2024-01-01": 916.567076832857, - "2023-01-01": 867, - "2015-01-01": 867 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1234.84819794562, - "2034-01-01": 1210.93648290053, - "2033-01-01": 1187.31997421403, - "2032-01-01": 1164.29387824469, - "2031-01-01": 1141.85819499251, - "2030-01-01": 1119.71771809891, - "2029-01-01": 1097.87244756389, - "2028-01-01": 1076.32238338746, - "2027-01-01": 1054.47711285244, - "2026-01-01": 1029.1188866503, - "2025-01-01": 1013.62399689897, - "2024-01-01": 991.626203078685, - "2023-01-01": 938, - "2015-01-01": 938 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1319.10223277347, - "2034-01-01": 1293.55901478287, - "2033-01-01": 1268.33114516253, - "2032-01-01": 1243.7339722827, - "2031-01-01": 1219.76749614338, - "2030-01-01": 1196.11636837431, - "2029-01-01": 1172.7805889755, - "2028-01-01": 1149.76015794694, - "2027-01-01": 1126.42437854813, - "2026-01-01": 1099.33595354329, - "2025-01-01": 1082.78384316926, - "2024-01-01": 1059.28513377915, - "2023-01-01": 1002, - "2015-01-01": 1002 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1396.77392113039, - "2034-01-01": 1369.7266613619, - "2033-01-01": 1343.01331838069, - "2032-01-01": 1316.967808974, - "2031-01-01": 1291.59013314184, - "2030-01-01": 1266.54637409695, - "2029-01-01": 1241.83653183933, - "2028-01-01": 1217.46060636897, - "2027-01-01": 1192.75076411134, - "2026-01-01": 1164.06731208526, - "2025-01-01": 1146.54057644969, - "2024-01-01": 1121.65821051864, - "2023-01-01": 1061, - "2015-01-01": 1061 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1466.5467937222, - "2034-01-01": 1438.14844557697, - "2033-01-01": 1410.10069432242, - "2032-01-01": 1382.75413684923, - "2031-01-01": 1356.10877315741, - "2030-01-01": 1329.81400635627, - "2029-01-01": 1303.86983644582, - "2028-01-01": 1278.27626342604, - "2027-01-01": 1252.33209351558, - "2026-01-01": 1222.21582060601, - "2025-01-01": 1203.81357414227, - "2024-01-01": 1177.68826250496, - "2023-01-01": 1114, - "2015-01-01": 1114 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1532.37025843145, - "2034-01-01": 1502.69729861004, - "2033-01-01": 1473.39067162594, - "2032-01-01": 1444.81671031643, - "2031-01-01": 1416.97541468153, - "2030-01-01": 1389.50045188393, - "2029-01-01": 1362.39182192364, - "2028-01-01": 1335.64952480064, - "2027-01-01": 1308.54089484034, - "2026-01-01": 1277.07290411616, - "2025-01-01": 1257.84470404094, - "2024-01-01": 1230.5468021147, - "2023-01-01": 1164, - "2015-01-01": 1164 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1619.25723184767, - "2034-01-01": 1587.90178461371, - "2033-01-01": 1556.93344166658, - "2032-01-01": 1526.73930729314, - "2031-01-01": 1497.31938149337, - "2030-01-01": 1468.28655998045, - "2029-01-01": 1439.64084275436, - "2028-01-01": 1411.38222981511, - "2027-01-01": 1382.73651258902, - "2026-01-01": 1349.48425434955, - "2025-01-01": 1329.16579550718, - "2024-01-01": 1300.32007439956, - "2023-01-01": 1230, - "2015-01-01": 1230 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1731.1571218534, - "2034-01-01": 1697.63483476994, - "2033-01-01": 1664.52640308257, - "2032-01-01": 1632.24568218738, - "2031-01-01": 1600.79267208438, - "2030-01-01": 1569.75351737747, - "2029-01-01": 1539.12821806665, - "2028-01-01": 1508.91677415192, - "2027-01-01": 1478.29147484111, - "2026-01-01": 1442.74129631679, - "2025-01-01": 1421.01871633491, - "2024-01-01": 1390.17959173611, - "2023-01-01": 1315, - "2015-01-01": 1315 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1832.52525750565, - "2034-01-01": 1797.04006844088, - "2033-01-01": 1761.99296812999, - "2032-01-01": 1727.82204532687, - "2031-01-01": 1694.52730003152, - "2030-01-01": 1661.67064349007, - "2029-01-01": 1629.25207570249, - "2028-01-01": 1597.2715966688, - "2027-01-01": 1564.85302888123, - "2026-01-01": 1527.22120492241, - "2025-01-01": 1504.22665637885, - "2024-01-01": 1471.58174273511, - "2023-01-01": 1392, - "2015-01-01": 1392 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1927.31104668698, - "2034-01-01": 1889.99041680851, - "2033-01-01": 1853.13053544705, - "2032-01-01": 1817.19215111964, - "2031-01-01": 1782.17526382626, - "2030-01-01": 1747.6191250499, - "2029-01-01": 1713.52373479055, - "2028-01-01": 1679.88909304823, - "2027-01-01": 1645.79370278888, - "2026-01-01": 1606.21540517702, - "2025-01-01": 1582.03148343293, - "2024-01-01": 1547.69803977313, - "2023-01-01": 1464, - "2015-01-01": 1464 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2014.1980201032, - "2034-01-01": 1975.19490281217, - "2033-01-01": 1936.6733054877, - "2032-01-01": 1899.11474809634, - "2031-01-01": 1862.5192306381, - "2030-01-01": 1826.40523314641, - "2029-01-01": 1790.77275562127, - "2028-01-01": 1755.62179806269, - "2027-01-01": 1719.98932053756, - "2026-01-01": 1678.62675541041, - "2025-01-01": 1653.35257489917, - "2024-01-01": 1617.47131205798, - "2023-01-01": 1530, - "2015-01-01": 1530 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2105.03440140197, - "2034-01-01": 2064.27231999782, - "2033-01-01": 2024.01347416656, - "2032-01-01": 1984.76109948108, - "2031-01-01": 1946.51519594138, - "2030-01-01": 1908.77252797458, - "2029-01-01": 1871.53309558066, - "2028-01-01": 1834.79689875964, - "2027-01-01": 1797.55746636573, - "2026-01-01": 1754.32953065441, - "2025-01-01": 1727.91553415933, - "2024-01-01": 1690.41609671942, - "2023-01-01": 1599, - "2015-01-01": 1599 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2201.13665987748, - "2034-01-01": 2158.51364542611, - "2033-01-01": 2116.4168410297, - "2032-01-01": 2075.37245674319, - "2031-01-01": 2035.3804925666, - "2030-01-01": 1995.91473844496, - "2029-01-01": 1956.97519437828, - "2028-01-01": 1918.56186036655, - "2027-01-01": 1879.62231629987, - "2026-01-01": 1834.42087257922, - "2025-01-01": 1806.80098381138, - "2024-01-01": 1767.58956454964, - "2023-01-01": 1672, - "2015-01-01": 1672 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2291.97304117625, - "2034-01-01": 2247.59106261176, - "2033-01-01": 2203.75700970855, - "2032-01-01": 2161.01880812793, - "2031-01-01": 2119.37645786989, - "2030-01-01": 2078.28203327313, - "2029-01-01": 2037.73553433767, - "2028-01-01": 1997.7369610635, - "2027-01-01": 1957.19046212803, - "2026-01-01": 1910.12364782322, - "2025-01-01": 1881.36394307154, - "2024-01-01": 1840.53434921108, - "2023-01-01": 1741, - "2015-01-01": 1741 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2377.54354529828, - "2034-01-01": 2331.50457155476, - "2033-01-01": 2286.03398020313, - "2032-01-01": 2241.70015363529, - "2031-01-01": 2198.50309185124, - "2030-01-01": 2155.87441245909, - "2029-01-01": 2113.81411545884, - "2028-01-01": 2072.32220085048, - "2027-01-01": 2030.26190385022, - "2026-01-01": 1981.43785638641, - "2025-01-01": 1951.60441193981, - "2024-01-01": 1909.25045070374, - "2023-01-01": 1806, - "2015-01-01": 1806 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2872.53599991188, - "2034-01-01": 2816.9119463635, - "2033-01-01": 2761.9746095256, - "2032-01-01": 2708.41070610864, - "2031-01-01": 2656.22023611263, - "2030-01-01": 2604.7164828271, - "2029-01-01": 2553.89944625204, - "2028-01-01": 2503.76912638745, - "2027-01-01": 2452.95208981239, - "2026-01-01": 2393.96312438269, - "2025-01-01": 2357.91850877777, - "2024-01-01": 2306.74666856897, - "2023-01-01": 2182, - "2015-01-01": 2182 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 695.09578732973, - "2034-01-01": 681.635888029298, - "2033-01-01": 668.342160325167, - "2032-01-01": 655.38077581364, - "2031-01-01": 642.751734494716, - "2030-01-01": 630.288864772094, - "2029-01-01": 617.992166645773, - "2028-01-01": 605.861640115753, - "2027-01-01": 593.564941989433, - "2026-01-01": 579.290801867123, - "2025-01-01": 570.56873172991, - "2024-01-01": 558.186178278834, - "2023-01-01": 528, - "2015-01-01": 528 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 970.237869814415, - "2034-01-01": 951.450093707562, - "2033-01-01": 932.894265453879, - "2032-01-01": 914.802332906539, - "2031-01-01": 897.174296065541, - "2030-01-01": 879.778207077714, - "2029-01-01": 862.614065943058, - "2028-01-01": 845.681872661573, - "2027-01-01": 828.517731526917, - "2026-01-01": 808.593410939525, - "2025-01-01": 796.418854706333, - "2024-01-01": 779.134873847538, - "2023-01-01": 737, - "2015-01-01": 737 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1107.15067640967, - "2034-01-01": 1085.71170801636, - "2033-01-01": 1064.5374182452, - "2032-01-01": 1043.89248571832, - "2031-01-01": 1023.77691043571, - "2030-01-01": 1003.92601377525, - "2029-01-01": 984.339795736922, - "2028-01-01": 965.018256320736, - "2027-01-01": 945.432038282411, - "2026-01-01": 922.696144640625, - "2025-01-01": 908.803604895558, - "2024-01-01": 889.080636235794, - "2023-01-01": 841, - "2015-01-01": 841 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1221.68350500377, - "2034-01-01": 1198.02671229392, - "2033-01-01": 1174.66197875332, - "2032-01-01": 1151.88136355125, - "2031-01-01": 1129.68486668768, - "2030-01-01": 1107.78042899338, - "2029-01-01": 1086.16805046833, - "2028-01-01": 1064.84773111254, - "2027-01-01": 1043.23535258749, - "2026-01-01": 1018.14746994828, - "2025-01-01": 1002.81777091924, - "2024-01-01": 981.054495156738, - "2023-01-01": 928, - "2015-01-01": 928 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1323.05164065602, - "2034-01-01": 1297.43194596486, - "2033-01-01": 1272.12854380074, - "2032-01-01": 1247.45772669074, - "2031-01-01": 1223.41949463483, - "2030-01-01": 1199.69755510597, - "2029-01-01": 1176.29190810417, - "2028-01-01": 1153.20255362942, - "2027-01-01": 1129.79690662761, - "2026-01-01": 1102.6273785539, - "2025-01-01": 1086.02571096318, - "2024-01-01": 1062.45664615573, - "2023-01-01": 1005, - "2015-01-01": 1005 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1413.88802195479, - "2034-01-01": 1386.5093631505, - "2033-01-01": 1359.4687124796, - "2032-01-01": 1333.10407807547, - "2031-01-01": 1307.41545993812, - "2030-01-01": 1282.06484993415, - "2029-01-01": 1257.05224806356, - "2028-01-01": 1232.37765432636, - "2027-01-01": 1207.36505245578, - "2026-01-01": 1178.3301537979, - "2025-01-01": 1160.58867022334, - "2024-01-01": 1135.40143081717, - "2023-01-01": 1074, - "2015-01-01": 1074 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1495.50911819427, - "2034-01-01": 1466.54994091152, - "2033-01-01": 1437.94828433597, - "2032-01-01": 1410.0616691748, - "2031-01-01": 1382.89009542803, - "2030-01-01": 1356.07604238844, - "2029-01-01": 1329.61951005606, - "2028-01-01": 1303.52049843086, - "2027-01-01": 1277.06396609848, - "2026-01-01": 1246.35293735048, - "2025-01-01": 1227.58727129769, - "2024-01-01": 1200.94601993325, - "2023-01-01": 1136, - "2015-01-01": 1136 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1570.54786796282, - "2034-01-01": 1540.13563336923, - "2033-01-01": 1510.09885846198, - "2032-01-01": 1480.81300292741, - "2031-01-01": 1452.27806676552, - "2030-01-01": 1424.11859028998, - "2029-01-01": 1396.33457350077, - "2028-01-01": 1368.92601639791, - "2027-01-01": 1341.1419996087, - "2026-01-01": 1308.89001255204, - "2025-01-01": 1289.18275938217, - "2024-01-01": 1261.20475508835, - "2023-01-01": 1193, - "2015-01-01": 1193 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1641.63720984881, - "2034-01-01": 1609.84839464495, - "2033-01-01": 1578.45203394978, - "2032-01-01": 1547.84058227199, - "2031-01-01": 1518.01403961157, - "2030-01-01": 1488.57995145985, - "2029-01-01": 1459.53831781682, - "2028-01-01": 1430.88913868247, - "2027-01-01": 1401.84750503944, - "2026-01-01": 1368.135662743, - "2025-01-01": 1347.53637967272, - "2024-01-01": 1318.29197786687, - "2023-01-01": 1247, - "2015-01-01": 1247 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1733.79006044177, - "2034-01-01": 1700.21678889126, - "2033-01-01": 1667.05800217471, - "2032-01-01": 1634.72818512607, - "2031-01-01": 1603.22733774534, - "2030-01-01": 1572.14097519857, - "2029-01-01": 1541.46909748576, - "2028-01-01": 1511.21170460691, - "2027-01-01": 1480.5398268941, - "2026-01-01": 1444.9355796572, - "2025-01-01": 1423.17996153086, - "2024-01-01": 1392.2939333205, - "2023-01-01": 1317, - "2015-01-01": 1317 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1852.27229691843, - "2034-01-01": 1816.4047243508, - "2033-01-01": 1780.97996132104, - "2032-01-01": 1746.44081736703, - "2031-01-01": 1712.78729248876, - "2030-01-01": 1679.57657714836, - "2029-01-01": 1646.80867134584, - "2028-01-01": 1614.48357508118, - "2027-01-01": 1581.71566927866, - "2026-01-01": 1543.67832997546, - "2025-01-01": 1520.43599534845, - "2024-01-01": 1487.43930461803, - "2023-01-01": 1407, - "2015-01-01": 1407 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1962.85571762998, - "2034-01-01": 1924.84679744637, - "2033-01-01": 1887.30712319096, - "2032-01-01": 1850.70594079193, - "2031-01-01": 1815.04325024928, - "2030-01-01": 1779.84980563483, - "2029-01-01": 1745.12560694857, - "2028-01-01": 1710.87065419051, - "2027-01-01": 1676.14645550425, - "2026-01-01": 1635.8382302725, - "2025-01-01": 1611.20829357821, - "2024-01-01": 1576.24165116239, - "2023-01-01": 1491, - "2015-01-01": 1491 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2062.90738398804, - "2034-01-01": 2022.96105405665, - "2033-01-01": 1983.50788869231, - "2032-01-01": 1945.04105246207, - "2031-01-01": 1907.56054536595, - "2030-01-01": 1870.57320283688, - "2029-01-01": 1834.07902487486, - "2028-01-01": 1798.0780114799, - "2027-01-01": 1761.58383351788, - "2026-01-01": 1719.22099720792, - "2025-01-01": 1693.33561102418, - "2024-01-01": 1656.58663136919, - "2023-01-01": 1567, - "2015-01-01": 1567 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2156.37670387519, - "2034-01-01": 2114.62042536362, - "2033-01-01": 2073.3796564633, - "2032-01-01": 2033.1699067855, - "2031-01-01": 1993.9911763302, - "2030-01-01": 1955.32795548615, - "2029-01-01": 1917.18024425336, - "2028-01-01": 1879.54804263183, - "2027-01-01": 1841.40033139904, - "2026-01-01": 1797.11805579232, - "2025-01-01": 1770.05981548029, - "2024-01-01": 1731.64575761502, - "2023-01-01": 1638, - "2015-01-01": 1638 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2252.4789623507, - "2034-01-01": 2208.86175079191, - "2033-01-01": 2165.78302332644, - "2032-01-01": 2123.78126404761, - "2031-01-01": 2082.85647295542, - "2030-01-01": 2042.47016595654, - "2029-01-01": 2002.62234305098, - "2028-01-01": 1963.31300423874, - "2027-01-01": 1923.46518133318, - "2026-01-01": 1877.20939771713, - "2025-01-01": 1848.94526513234, - "2024-01-01": 1808.81922544524, - "2023-01-01": 1711, - "2015-01-01": 1711 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2356.48003659132, - "2034-01-01": 2310.84893858417, - "2033-01-01": 2265.781187466, - "2032-01-01": 2221.84013012579, - "2031-01-01": 2179.02576656353, - "2030-01-01": 2136.77474989024, - "2029-01-01": 2095.08708010593, - "2028-01-01": 2053.9627572106, - "2027-01-01": 2012.2750874263, - "2026-01-01": 1963.88358966316, - "2025-01-01": 1934.31445037223, - "2024-01-01": 1892.33571802862, - "2023-01-01": 1790, - "2015-01-01": 1790 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2452.58229506683, - "2034-01-01": 2405.09026401247, - "2033-01-01": 2358.18455432914, - "2032-01-01": 2312.4514873879, - "2031-01-01": 2267.89106318874, - "2030-01-01": 2223.91696036063, - "2029-01-01": 2180.52917890355, - "2028-01-01": 2137.72771881752, - "2027-01-01": 2094.33993736044, - "2026-01-01": 2043.97493158797, - "2025-01-01": 2013.19990002429, - "2024-01-01": 1969.50918585884, - "2023-01-01": 1863, - "2015-01-01": 1863 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2543.4186763656, - "2034-01-01": 2494.16768119811, - "2033-01-01": 2445.524723008, - "2032-01-01": 2398.09783877264, - "2031-01-01": 2351.88702849203, - "2030-01-01": 2306.2842551888, - "2029-01-01": 2261.28951886294, - "2028-01-01": 2216.90281951446, - "2027-01-01": 2171.90808318861, - "2026-01-01": 2119.67770683197, - "2025-01-01": 2087.76285928445, - "2024-01-01": 2042.45397052028, - "2023-01-01": 1932, - "2015-01-01": 1932 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.RI.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3072.63933262801, - "2034-01-01": 3013.14045958406, - "2033-01-01": 2954.3761405283, - "2032-01-01": 2897.08092944893, - "2031-01-01": 2841.25482634596, - "2030-01-01": 2786.16327723119, - "2029-01-01": 2731.80628210461, - "2028-01-01": 2678.18384096623, - "2027-01-01": 2623.82684583965, - "2026-01-01": 2560.72865825353, - "2025-01-01": 2522.17314366972, - "2024-01-01": 2467.43662898257, - "2023-01-01": 2334, - "2015-01-01": 2334 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC", - "description": null, - "label": "SC", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 575.297081558887, - "2034-01-01": 564.156975509097, - "2033-01-01": 553.154401632762, - "2032-01-01": 542.426892103335, - "2031-01-01": 531.974446920816, - "2030-01-01": 521.659533911752, - "2029-01-01": 511.482153076141, - "2028-01-01": 501.442304413985, - "2027-01-01": 491.264923578375, - "2026-01-01": 479.45090987866, - "2025-01-01": 472.232075314339, - "2024-01-01": 461.98363618911, - "2023-01-01": 437, - "2015-01-01": 437 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 804.362738747093, - "2034-01-01": 788.786984064207, - "2033-01-01": 773.40352264901, - "2032-01-01": 758.404647769193, - "2031-01-01": 743.790359424757, - "2030-01-01": 729.36836434801, - "2029-01-01": 715.138662538953, - "2028-01-01": 701.101253997586, - "2027-01-01": 686.871552188529, - "2026-01-01": 670.353560493962, - "2025-01-01": 660.260407361696, - "2024-01-01": 645.931354030999, - "2023-01-01": 611, - "2015-01-01": 611 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 917.579098047011, - "2034-01-01": 899.8110112811, - "2033-01-01": 882.262283611064, - "2032-01-01": 865.152274132779, - "2031-01-01": 848.480982846244, - "2030-01-01": 832.029050655586, - "2029-01-01": 815.796477560802, - "2028-01-01": 799.783263561894, - "2027-01-01": 783.550690467111, - "2026-01-01": 764.70774413141, - "2025-01-01": 753.193950787401, - "2024-01-01": 736.848042159748, - "2023-01-01": 697, - "2015-01-01": 697 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1013.68135652252, - "2034-01-01": 994.052336709393, - "2033-01-01": 974.665650474202, - "2032-01-01": 955.763631394892, - "2031-01-01": 937.346279471461, - "2030-01-01": 919.17126112597, - "2029-01-01": 901.238576358418, - "2028-01-01": 883.548225168807, - "2027-01-01": 865.615540401256, - "2026-01-01": 844.79908605622, - "2025-01-01": 832.079400439453, - "2024-01-01": 814.021509989966, - "2023-01-01": 770, - "2015-01-01": 770 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1097.93539135037, - "2034-01-01": 1076.67486859173, - "2033-01-01": 1055.67682142271, - "2032-01-01": 1035.20372543291, - "2031-01-01": 1015.25558062234, - "2030-01-01": 995.569911401375, - "2029-01-01": 976.146717770027, - "2028-01-01": 956.985999728292, - "2027-01-01": 937.562806096945, - "2026-01-01": 915.016152949205, - "2025-01-01": 901.239246709745, - "2024-01-01": 881.68044069043, - "2023-01-01": 834, - "2015-01-01": 834 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1172.97414111892, - "2034-01-01": 1150.26056104944, - "2033-01-01": 1127.82739554872, - "2032-01-01": 1105.95505918552, - "2031-01-01": 1084.64355195983, - "2030-01-01": 1063.61245930291, - "2029-01-01": 1042.86178121474, - "2028-01-01": 1022.39151769533, - "2027-01-01": 1001.64083960717, - "2026-01-01": 977.553228150769, - "2025-01-01": 962.834734794224, - "2024-01-01": 941.939175845532, - "2023-01-01": 891, - "2015-01-01": 891 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1241.43054441654, - "2034-01-01": 1217.39136820384, - "2033-01-01": 1193.64897194438, - "2032-01-01": 1170.50013559141, - "2031-01-01": 1147.94485914492, - "2030-01-01": 1125.68636265167, - "2029-01-01": 1103.72464611167, - "2028-01-01": 1082.05970952492, - "2027-01-01": 1060.09799298491, - "2026-01-01": 1034.60459500132, - "2025-01-01": 1019.02710988884, - "2024-01-01": 996.912057039659, - "2023-01-01": 943, - "2015-01-01": 943 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1304.62107053743, - "2034-01-01": 1279.3582671156, - "2033-01-01": 1254.40735015576, - "2032-01-01": 1230.08020611992, - "2031-01-01": 1206.37683500808, - "2030-01-01": 1182.98535035823, - "2029-01-01": 1159.90575217038, - "2028-01-01": 1137.13804044453, - "2027-01-01": 1114.05844225668, - "2026-01-01": 1087.26739517106, - "2025-01-01": 1070.89699459156, - "2024-01-01": 1047.65625506501, - "2023-01-01": 991, - "2015-01-01": 991 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1363.86218877576, - "2034-01-01": 1337.45223484537, - "2033-01-01": 1311.36832972893, - "2032-01-01": 1285.9365222404, - "2031-01-01": 1261.15681237978, - "2030-01-01": 1236.70315133312, - "2029-01-01": 1212.57553910042, - "2028-01-01": 1188.77397568167, - "2027-01-01": 1164.64636344896, - "2026-01-01": 1136.63877033019, - "2025-01-01": 1119.52501150035, - "2024-01-01": 1095.22894071377, - "2023-01-01": 1036, - "2015-01-01": 1036 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1440.21740783849, - "2034-01-01": 1412.32890436373, - "2033-01-01": 1384.78470340101, - "2032-01-01": 1357.92910746235, - "2031-01-01": 1331.76211654776, - "2030-01-01": 1305.93942814521, - "2029-01-01": 1280.46104225469, - "2028-01-01": 1255.3269588762, - "2027-01-01": 1229.84857298568, - "2026-01-01": 1200.27298720195, - "2025-01-01": 1182.20112218281, - "2024-01-01": 1156.54484666107, - "2023-01-01": 1094, - "2015-01-01": 1094 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1540.26907419656, - "2034-01-01": 1510.44316097401, - "2033-01-01": 1480.98546890236, - "2032-01-01": 1452.2642191325, - "2031-01-01": 1424.27941166443, - "2030-01-01": 1396.66282534725, - "2029-01-01": 1369.41446018097, - "2028-01-01": 1342.53431616559, - "2027-01-01": 1315.28595099931, - "2026-01-01": 1283.65575413737, - "2025-01-01": 1264.32843962878, - "2024-01-01": 1236.88982686787, - "2023-01-01": 1170, - "2015-01-01": 1170 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1632.42192478952, - "2034-01-01": 1600.81155522032, - "2033-01-01": 1569.59143712729, - "2032-01-01": 1539.15182198658, - "2031-01-01": 1509.4927097982, - "2030-01-01": 1480.22384908598, - "2029-01-01": 1451.34523984992, - "2028-01-01": 1422.85688209003, - "2027-01-01": 1393.97827285397, - "2026-01-01": 1360.45567105158, - "2025-01-01": 1339.97202148691, - "2024-01-01": 1310.8917823215, - "2023-01-01": 1240, - "2015-01-01": 1240 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1715.35949032318, - "2034-01-01": 1682.143110042, - "2033-01-01": 1649.33680852972, - "2032-01-01": 1617.35066455525, - "2031-01-01": 1586.18467811859, - "2030-01-01": 1555.42877045083, - "2029-01-01": 1525.08294155197, - "2028-01-01": 1495.14719142202, - "2027-01-01": 1464.80136252316, - "2026-01-01": 1429.57559627436, - "2025-01-01": 1408.05124515923, - "2024-01-01": 1377.49354222977, - "2023-01-01": 1303, - "2015-01-01": 1303 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1794.34764797428, - "2034-01-01": 1759.60173368169, - "2033-01-01": 1725.28478129395, - "2032-01-01": 1691.82575271589, - "2031-01-01": 1659.22464794753, - "2030-01-01": 1627.05250508402, - "2029-01-01": 1595.30932412536, - "2028-01-01": 1563.99510507154, - "2027-01-01": 1532.25192411287, - "2026-01-01": 1495.40409648653, - "2025-01-01": 1472.88860103763, - "2024-01-01": 1440.92378976146, - "2023-01-01": 1363, - "2015-01-01": 1363 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1874.65227491958, - "2034-01-01": 1838.35133438205, - "2033-01-01": 1802.49855360424, - "2032-01-01": 1767.54209234588, - "2031-01-01": 1733.48195060696, - "2030-01-01": 1699.86996862777, - "2029-01-01": 1666.7061464083, - "2028-01-01": 1633.99048394855, - "2027-01-01": 1600.82666172908, - "2026-01-01": 1562.32973836891, - "2025-01-01": 1538.806579514, - "2024-01-01": 1505.41120808534, - "2023-01-01": 1424, - "2015-01-01": 1424 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1960.22277904161, - "2034-01-01": 1922.26484332505, - "2033-01-01": 1884.77552409881, - "2032-01-01": 1848.22343785324, - "2031-01-01": 1812.60858458832, - "2030-01-01": 1777.46234781373, - "2029-01-01": 1742.78472752946, - "2028-01-01": 1708.57572373552, - "2027-01-01": 1673.89810345126, - "2026-01-01": 1633.64394693209, - "2025-01-01": 1609.04704838227, - "2024-01-01": 1574.127309578, - "2023-01-01": 1489, - "2015-01-01": 1489 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2041.84387528108, - "2034-01-01": 2002.30542108606, - "2033-01-01": 1963.25509595518, - "2032-01-01": 1925.18102895257, - "2031-01-01": 1888.08322007823, - "2030-01-01": 1851.47354026803, - "2029-01-01": 1815.35198952196, - "2028-01-01": 1779.71856784003, - "2027-01-01": 1743.59701709396, - "2026-01-01": 1701.66673048467, - "2025-01-01": 1676.04564945661, - "2024-01-01": 1639.67189869407, - "2023-01-01": 1551, - "2015-01-01": 1551 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2118.19909434382, - "2034-01-01": 2077.18209060443, - "2033-01-01": 2036.67146962726, - "2032-01-01": 1997.17361417452, - "2031-01-01": 1958.68852424621, - "2030-01-01": 1920.70981708011, - "2029-01-01": 1883.23749267623, - "2028-01-01": 1846.27155103456, - "2027-01-01": 1808.79922663068, - "2026-01-01": 1765.30094735644, - "2025-01-01": 1738.72176013906, - "2024-01-01": 1700.98780464137, - "2023-01-01": 1609, - "2015-01-01": 1609 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2560.53277719001, - "2034-01-01": 2510.95038298671, - "2033-01-01": 2461.98011710691, - "2032-01-01": 2414.23410787411, - "2031-01-01": 2367.7123552883, - "2030-01-01": 2321.80273102599, - "2029-01-01": 2276.50523508717, - "2028-01-01": 2231.81986747186, - "2027-01-01": 2186.52237153304, - "2026-01-01": 2133.94054854461, - "2025-01-01": 2101.8109530581, - "2024-01-01": 2056.19719081881, - "2023-01-01": 1945, - "2015-01-01": 1945 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 647.702892739067, - "2034-01-01": 635.160713845482, - "2033-01-01": 622.773376666633, - "2032-01-01": 610.695722917256, - "2031-01-01": 598.927752597349, - "2030-01-01": 587.314623992178, - "2029-01-01": 575.856337101743, - "2028-01-01": 564.552891926043, - "2027-01-01": 553.094605035608, - "2026-01-01": 539.793701739819, - "2025-01-01": 531.666318202871, - "2024-01-01": 520.128029759822, - "2023-01-01": 492, - "2015-01-01": 492 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 904.41440510516, - "2034-01-01": 886.901240674484, - "2033-01-01": 869.60428815036, - "2032-01-01": 852.739759439338, - "2031-01-01": 836.30765454142, - "2030-01-01": 820.091761550054, - "2029-01-01": 804.092080465238, - "2028-01-01": 788.308611286975, - "2027-01-01": 772.30893020216, - "2026-01-01": 753.736327429381, - "2025-01-01": 742.387724807668, - "2024-01-01": 726.2763342378, - "2023-01-01": 687, - "2015-01-01": 687 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1033.4283959353, - "2034-01-01": 1013.41699261932, - "2033-01-01": 993.652643665258, - "2032-01-01": 974.382403435052, - "2031-01-01": 955.606271928697, - "2030-01-01": 937.077194784268, - "2029-01-01": 918.795172001764, - "2028-01-01": 900.760203581186, - "2027-01-01": 882.478180798683, - "2026-01-01": 861.256211109264, - "2025-01-01": 848.288739409052, - "2024-01-01": 829.879071872887, - "2023-01-01": 785, - "2015-01-01": 785 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1141.37887805848, - "2034-01-01": 1119.27711159356, - "2033-01-01": 1097.44820644303, - "2032-01-01": 1076.16502392126, - "2031-01-01": 1055.42756402826, - "2030-01-01": 1034.96296544963, - "2029-01-01": 1014.77122818539, - "2028-01-01": 994.852352235527, - "2027-01-01": 974.660614971284, - "2026-01-01": 951.2218280659, - "2025-01-01": 936.899792442864, - "2024-01-01": 916.567076832857, - "2023-01-01": 867, - "2015-01-01": 867 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1234.84819794562, - "2034-01-01": 1210.93648290053, - "2033-01-01": 1187.31997421403, - "2032-01-01": 1164.29387824469, - "2031-01-01": 1141.85819499251, - "2030-01-01": 1119.71771809891, - "2029-01-01": 1097.87244756389, - "2028-01-01": 1076.32238338746, - "2027-01-01": 1054.47711285244, - "2026-01-01": 1029.1188866503, - "2025-01-01": 1013.62399689897, - "2024-01-01": 991.626203078685, - "2023-01-01": 938, - "2015-01-01": 938 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1319.10223277347, - "2034-01-01": 1293.55901478287, - "2033-01-01": 1268.33114516253, - "2032-01-01": 1243.7339722827, - "2031-01-01": 1219.76749614338, - "2030-01-01": 1196.11636837431, - "2029-01-01": 1172.7805889755, - "2028-01-01": 1149.76015794694, - "2027-01-01": 1126.42437854813, - "2026-01-01": 1099.33595354329, - "2025-01-01": 1082.78384316926, - "2024-01-01": 1059.28513377915, - "2023-01-01": 1002, - "2015-01-01": 1002 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1396.77392113039, - "2034-01-01": 1369.7266613619, - "2033-01-01": 1343.01331838069, - "2032-01-01": 1316.967808974, - "2031-01-01": 1291.59013314184, - "2030-01-01": 1266.54637409695, - "2029-01-01": 1241.83653183933, - "2028-01-01": 1217.46060636897, - "2027-01-01": 1192.75076411134, - "2026-01-01": 1164.06731208526, - "2025-01-01": 1146.54057644969, - "2024-01-01": 1121.65821051864, - "2023-01-01": 1061, - "2015-01-01": 1061 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1466.5467937222, - "2034-01-01": 1438.14844557697, - "2033-01-01": 1410.10069432242, - "2032-01-01": 1382.75413684923, - "2031-01-01": 1356.10877315741, - "2030-01-01": 1329.81400635627, - "2029-01-01": 1303.86983644582, - "2028-01-01": 1278.27626342604, - "2027-01-01": 1252.33209351558, - "2026-01-01": 1222.21582060601, - "2025-01-01": 1203.81357414227, - "2024-01-01": 1177.68826250496, - "2023-01-01": 1114, - "2015-01-01": 1114 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1532.37025843145, - "2034-01-01": 1502.69729861004, - "2033-01-01": 1473.39067162594, - "2032-01-01": 1444.81671031643, - "2031-01-01": 1416.97541468153, - "2030-01-01": 1389.50045188393, - "2029-01-01": 1362.39182192364, - "2028-01-01": 1335.64952480064, - "2027-01-01": 1308.54089484034, - "2026-01-01": 1277.07290411616, - "2025-01-01": 1257.84470404094, - "2024-01-01": 1230.5468021147, - "2023-01-01": 1164, - "2015-01-01": 1164 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1619.25723184767, - "2034-01-01": 1587.90178461371, - "2033-01-01": 1556.93344166658, - "2032-01-01": 1526.73930729314, - "2031-01-01": 1497.31938149337, - "2030-01-01": 1468.28655998045, - "2029-01-01": 1439.64084275436, - "2028-01-01": 1411.38222981511, - "2027-01-01": 1382.73651258902, - "2026-01-01": 1349.48425434955, - "2025-01-01": 1329.16579550718, - "2024-01-01": 1300.32007439956, - "2023-01-01": 1230, - "2015-01-01": 1230 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1731.1571218534, - "2034-01-01": 1697.63483476994, - "2033-01-01": 1664.52640308257, - "2032-01-01": 1632.24568218738, - "2031-01-01": 1600.79267208438, - "2030-01-01": 1569.75351737747, - "2029-01-01": 1539.12821806665, - "2028-01-01": 1508.91677415192, - "2027-01-01": 1478.29147484111, - "2026-01-01": 1442.74129631679, - "2025-01-01": 1421.01871633491, - "2024-01-01": 1390.17959173611, - "2023-01-01": 1315, - "2015-01-01": 1315 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1832.52525750565, - "2034-01-01": 1797.04006844088, - "2033-01-01": 1761.99296812999, - "2032-01-01": 1727.82204532687, - "2031-01-01": 1694.52730003152, - "2030-01-01": 1661.67064349007, - "2029-01-01": 1629.25207570249, - "2028-01-01": 1597.2715966688, - "2027-01-01": 1564.85302888123, - "2026-01-01": 1527.22120492241, - "2025-01-01": 1504.22665637885, - "2024-01-01": 1471.58174273511, - "2023-01-01": 1392, - "2015-01-01": 1392 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1927.31104668698, - "2034-01-01": 1889.99041680851, - "2033-01-01": 1853.13053544705, - "2032-01-01": 1817.19215111964, - "2031-01-01": 1782.17526382626, - "2030-01-01": 1747.6191250499, - "2029-01-01": 1713.52373479055, - "2028-01-01": 1679.88909304823, - "2027-01-01": 1645.79370278888, - "2026-01-01": 1606.21540517702, - "2025-01-01": 1582.03148343293, - "2024-01-01": 1547.69803977313, - "2023-01-01": 1464, - "2015-01-01": 1464 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2014.1980201032, - "2034-01-01": 1975.19490281217, - "2033-01-01": 1936.6733054877, - "2032-01-01": 1899.11474809634, - "2031-01-01": 1862.5192306381, - "2030-01-01": 1826.40523314641, - "2029-01-01": 1790.77275562127, - "2028-01-01": 1755.62179806269, - "2027-01-01": 1719.98932053756, - "2026-01-01": 1678.62675541041, - "2025-01-01": 1653.35257489917, - "2024-01-01": 1617.47131205798, - "2023-01-01": 1530, - "2015-01-01": 1530 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2105.03440140197, - "2034-01-01": 2064.27231999782, - "2033-01-01": 2024.01347416656, - "2032-01-01": 1984.76109948108, - "2031-01-01": 1946.51519594138, - "2030-01-01": 1908.77252797458, - "2029-01-01": 1871.53309558066, - "2028-01-01": 1834.79689875964, - "2027-01-01": 1797.55746636573, - "2026-01-01": 1754.32953065441, - "2025-01-01": 1727.91553415933, - "2024-01-01": 1690.41609671942, - "2023-01-01": 1599, - "2015-01-01": 1599 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2201.13665987748, - "2034-01-01": 2158.51364542611, - "2033-01-01": 2116.4168410297, - "2032-01-01": 2075.37245674319, - "2031-01-01": 2035.3804925666, - "2030-01-01": 1995.91473844496, - "2029-01-01": 1956.97519437828, - "2028-01-01": 1918.56186036655, - "2027-01-01": 1879.62231629987, - "2026-01-01": 1834.42087257922, - "2025-01-01": 1806.80098381138, - "2024-01-01": 1767.58956454964, - "2023-01-01": 1672, - "2015-01-01": 1672 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2291.97304117625, - "2034-01-01": 2247.59106261176, - "2033-01-01": 2203.75700970855, - "2032-01-01": 2161.01880812793, - "2031-01-01": 2119.37645786989, - "2030-01-01": 2078.28203327313, - "2029-01-01": 2037.73553433767, - "2028-01-01": 1997.7369610635, - "2027-01-01": 1957.19046212803, - "2026-01-01": 1910.12364782322, - "2025-01-01": 1881.36394307154, - "2024-01-01": 1840.53434921108, - "2023-01-01": 1741, - "2015-01-01": 1741 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2377.54354529828, - "2034-01-01": 2331.50457155476, - "2033-01-01": 2286.03398020313, - "2032-01-01": 2241.70015363529, - "2031-01-01": 2198.50309185124, - "2030-01-01": 2155.87441245909, - "2029-01-01": 2113.81411545884, - "2028-01-01": 2072.32220085048, - "2027-01-01": 2030.26190385022, - "2026-01-01": 1981.43785638641, - "2025-01-01": 1951.60441193981, - "2024-01-01": 1909.25045070374, - "2023-01-01": 1806, - "2015-01-01": 1806 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2872.53599991188, - "2034-01-01": 2816.9119463635, - "2033-01-01": 2761.9746095256, - "2032-01-01": 2708.41070610864, - "2031-01-01": 2656.22023611263, - "2030-01-01": 2604.7164828271, - "2029-01-01": 2553.89944625204, - "2028-01-01": 2503.76912638745, - "2027-01-01": 2452.95208981239, - "2026-01-01": 2393.96312438269, - "2025-01-01": 2357.91850877777, - "2024-01-01": 2306.74666856897, - "2023-01-01": 2182, - "2015-01-01": 2182 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 695.09578732973, - "2034-01-01": 681.635888029298, - "2033-01-01": 668.342160325167, - "2032-01-01": 655.38077581364, - "2031-01-01": 642.751734494716, - "2030-01-01": 630.288864772094, - "2029-01-01": 617.992166645773, - "2028-01-01": 605.861640115753, - "2027-01-01": 593.564941989433, - "2026-01-01": 579.290801867123, - "2025-01-01": 570.56873172991, - "2024-01-01": 558.186178278834, - "2023-01-01": 528, - "2015-01-01": 528 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 970.237869814415, - "2034-01-01": 951.450093707562, - "2033-01-01": 932.894265453879, - "2032-01-01": 914.802332906539, - "2031-01-01": 897.174296065541, - "2030-01-01": 879.778207077714, - "2029-01-01": 862.614065943058, - "2028-01-01": 845.681872661573, - "2027-01-01": 828.517731526917, - "2026-01-01": 808.593410939525, - "2025-01-01": 796.418854706333, - "2024-01-01": 779.134873847538, - "2023-01-01": 737, - "2015-01-01": 737 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1107.15067640967, - "2034-01-01": 1085.71170801636, - "2033-01-01": 1064.5374182452, - "2032-01-01": 1043.89248571832, - "2031-01-01": 1023.77691043571, - "2030-01-01": 1003.92601377525, - "2029-01-01": 984.339795736922, - "2028-01-01": 965.018256320736, - "2027-01-01": 945.432038282411, - "2026-01-01": 922.696144640625, - "2025-01-01": 908.803604895558, - "2024-01-01": 889.080636235794, - "2023-01-01": 841, - "2015-01-01": 841 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1221.68350500377, - "2034-01-01": 1198.02671229392, - "2033-01-01": 1174.66197875332, - "2032-01-01": 1151.88136355125, - "2031-01-01": 1129.68486668768, - "2030-01-01": 1107.78042899338, - "2029-01-01": 1086.16805046833, - "2028-01-01": 1064.84773111254, - "2027-01-01": 1043.23535258749, - "2026-01-01": 1018.14746994828, - "2025-01-01": 1002.81777091924, - "2024-01-01": 981.054495156738, - "2023-01-01": 928, - "2015-01-01": 928 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1323.05164065602, - "2034-01-01": 1297.43194596486, - "2033-01-01": 1272.12854380074, - "2032-01-01": 1247.45772669074, - "2031-01-01": 1223.41949463483, - "2030-01-01": 1199.69755510597, - "2029-01-01": 1176.29190810417, - "2028-01-01": 1153.20255362942, - "2027-01-01": 1129.79690662761, - "2026-01-01": 1102.6273785539, - "2025-01-01": 1086.02571096318, - "2024-01-01": 1062.45664615573, - "2023-01-01": 1005, - "2015-01-01": 1005 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1413.88802195479, - "2034-01-01": 1386.5093631505, - "2033-01-01": 1359.4687124796, - "2032-01-01": 1333.10407807547, - "2031-01-01": 1307.41545993812, - "2030-01-01": 1282.06484993415, - "2029-01-01": 1257.05224806356, - "2028-01-01": 1232.37765432636, - "2027-01-01": 1207.36505245578, - "2026-01-01": 1178.3301537979, - "2025-01-01": 1160.58867022334, - "2024-01-01": 1135.40143081717, - "2023-01-01": 1074, - "2015-01-01": 1074 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1495.50911819427, - "2034-01-01": 1466.54994091152, - "2033-01-01": 1437.94828433597, - "2032-01-01": 1410.0616691748, - "2031-01-01": 1382.89009542803, - "2030-01-01": 1356.07604238844, - "2029-01-01": 1329.61951005606, - "2028-01-01": 1303.52049843086, - "2027-01-01": 1277.06396609848, - "2026-01-01": 1246.35293735048, - "2025-01-01": 1227.58727129769, - "2024-01-01": 1200.94601993325, - "2023-01-01": 1136, - "2015-01-01": 1136 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1570.54786796282, - "2034-01-01": 1540.13563336923, - "2033-01-01": 1510.09885846198, - "2032-01-01": 1480.81300292741, - "2031-01-01": 1452.27806676552, - "2030-01-01": 1424.11859028998, - "2029-01-01": 1396.33457350077, - "2028-01-01": 1368.92601639791, - "2027-01-01": 1341.1419996087, - "2026-01-01": 1308.89001255204, - "2025-01-01": 1289.18275938217, - "2024-01-01": 1261.20475508835, - "2023-01-01": 1193, - "2015-01-01": 1193 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1641.63720984881, - "2034-01-01": 1609.84839464495, - "2033-01-01": 1578.45203394978, - "2032-01-01": 1547.84058227199, - "2031-01-01": 1518.01403961157, - "2030-01-01": 1488.57995145985, - "2029-01-01": 1459.53831781682, - "2028-01-01": 1430.88913868247, - "2027-01-01": 1401.84750503944, - "2026-01-01": 1368.135662743, - "2025-01-01": 1347.53637967272, - "2024-01-01": 1318.29197786687, - "2023-01-01": 1247, - "2015-01-01": 1247 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1733.79006044177, - "2034-01-01": 1700.21678889126, - "2033-01-01": 1667.05800217471, - "2032-01-01": 1634.72818512607, - "2031-01-01": 1603.22733774534, - "2030-01-01": 1572.14097519857, - "2029-01-01": 1541.46909748576, - "2028-01-01": 1511.21170460691, - "2027-01-01": 1480.5398268941, - "2026-01-01": 1444.9355796572, - "2025-01-01": 1423.17996153086, - "2024-01-01": 1392.2939333205, - "2023-01-01": 1317, - "2015-01-01": 1317 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1852.27229691843, - "2034-01-01": 1816.4047243508, - "2033-01-01": 1780.97996132104, - "2032-01-01": 1746.44081736703, - "2031-01-01": 1712.78729248876, - "2030-01-01": 1679.57657714836, - "2029-01-01": 1646.80867134584, - "2028-01-01": 1614.48357508118, - "2027-01-01": 1581.71566927866, - "2026-01-01": 1543.67832997546, - "2025-01-01": 1520.43599534845, - "2024-01-01": 1487.43930461803, - "2023-01-01": 1407, - "2015-01-01": 1407 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1962.85571762998, - "2034-01-01": 1924.84679744637, - "2033-01-01": 1887.30712319096, - "2032-01-01": 1850.70594079193, - "2031-01-01": 1815.04325024928, - "2030-01-01": 1779.84980563483, - "2029-01-01": 1745.12560694857, - "2028-01-01": 1710.87065419051, - "2027-01-01": 1676.14645550425, - "2026-01-01": 1635.8382302725, - "2025-01-01": 1611.20829357821, - "2024-01-01": 1576.24165116239, - "2023-01-01": 1491, - "2015-01-01": 1491 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2062.90738398804, - "2034-01-01": 2022.96105405665, - "2033-01-01": 1983.50788869231, - "2032-01-01": 1945.04105246207, - "2031-01-01": 1907.56054536595, - "2030-01-01": 1870.57320283688, - "2029-01-01": 1834.07902487486, - "2028-01-01": 1798.0780114799, - "2027-01-01": 1761.58383351788, - "2026-01-01": 1719.22099720792, - "2025-01-01": 1693.33561102418, - "2024-01-01": 1656.58663136919, - "2023-01-01": 1567, - "2015-01-01": 1567 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2156.37670387519, - "2034-01-01": 2114.62042536362, - "2033-01-01": 2073.3796564633, - "2032-01-01": 2033.1699067855, - "2031-01-01": 1993.9911763302, - "2030-01-01": 1955.32795548615, - "2029-01-01": 1917.18024425336, - "2028-01-01": 1879.54804263183, - "2027-01-01": 1841.40033139904, - "2026-01-01": 1797.11805579232, - "2025-01-01": 1770.05981548029, - "2024-01-01": 1731.64575761502, - "2023-01-01": 1638, - "2015-01-01": 1638 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2252.4789623507, - "2034-01-01": 2208.86175079191, - "2033-01-01": 2165.78302332644, - "2032-01-01": 2123.78126404761, - "2031-01-01": 2082.85647295542, - "2030-01-01": 2042.47016595654, - "2029-01-01": 2002.62234305098, - "2028-01-01": 1963.31300423874, - "2027-01-01": 1923.46518133318, - "2026-01-01": 1877.20939771713, - "2025-01-01": 1848.94526513234, - "2024-01-01": 1808.81922544524, - "2023-01-01": 1711, - "2015-01-01": 1711 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2356.48003659132, - "2034-01-01": 2310.84893858417, - "2033-01-01": 2265.781187466, - "2032-01-01": 2221.84013012579, - "2031-01-01": 2179.02576656353, - "2030-01-01": 2136.77474989024, - "2029-01-01": 2095.08708010593, - "2028-01-01": 2053.9627572106, - "2027-01-01": 2012.2750874263, - "2026-01-01": 1963.88358966316, - "2025-01-01": 1934.31445037223, - "2024-01-01": 1892.33571802862, - "2023-01-01": 1790, - "2015-01-01": 1790 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2452.58229506683, - "2034-01-01": 2405.09026401247, - "2033-01-01": 2358.18455432914, - "2032-01-01": 2312.4514873879, - "2031-01-01": 2267.89106318874, - "2030-01-01": 2223.91696036063, - "2029-01-01": 2180.52917890355, - "2028-01-01": 2137.72771881752, - "2027-01-01": 2094.33993736044, - "2026-01-01": 2043.97493158797, - "2025-01-01": 2013.19990002429, - "2024-01-01": 1969.50918585884, - "2023-01-01": 1863, - "2015-01-01": 1863 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2543.4186763656, - "2034-01-01": 2494.16768119811, - "2033-01-01": 2445.524723008, - "2032-01-01": 2398.09783877264, - "2031-01-01": 2351.88702849203, - "2030-01-01": 2306.2842551888, - "2029-01-01": 2261.28951886294, - "2028-01-01": 2216.90281951446, - "2027-01-01": 2171.90808318861, - "2026-01-01": 2119.67770683197, - "2025-01-01": 2087.76285928445, - "2024-01-01": 2042.45397052028, - "2023-01-01": 1932, - "2015-01-01": 1932 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3072.63933262801, - "2034-01-01": 3013.14045958406, - "2033-01-01": 2954.3761405283, - "2032-01-01": 2897.08092944893, - "2031-01-01": 2841.25482634596, - "2030-01-01": 2786.16327723119, - "2029-01-01": 2731.80628210461, - "2028-01-01": 2678.18384096623, - "2027-01-01": 2623.82684583965, - "2026-01-01": 2560.72865825353, - "2025-01-01": 2522.17314366972, - "2024-01-01": 2467.43662898257, - "2023-01-01": 2334, - "2015-01-01": 2334 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 730.640458272728, - "2034-01-01": 716.49226866716, - "2033-01-01": 702.518748069068, - "2032-01-01": 688.894565485928, - "2031-01-01": 675.619720917741, - "2030-01-01": 662.51954535703, - "2029-01-01": 649.594038803795, - "2028-01-01": 636.843201258036, - "2027-01-01": 623.917694704801, - "2026-01-01": 608.9136269626, - "2025-01-01": 599.74554187519, - "2024-01-01": 586.729789668092, - "2023-01-01": 555, - "2015-01-01": 555 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1018.94723369926, - "2034-01-01": 999.216244952039, - "2033-01-01": 979.728848658484, - "2032-01-01": 960.728637272268, - "2031-01-01": 942.215610793391, - "2030-01-01": 923.946176768183, - "2029-01-01": 905.920335196644, - "2028-01-01": 888.138086078775, - "2027-01-01": 870.112244507237, - "2026-01-01": 849.187652737032, - "2025-01-01": 836.401890831346, - "2024-01-01": 818.250193158745, - "2023-01-01": 774, - "2015-01-01": 774 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1162.44238676544, - "2034-01-01": 1139.93274456415, - "2033-01-01": 1117.70099918016, - "2032-01-01": 1096.02504743077, - "2031-01-01": 1074.90488931597, - "2030-01-01": 1054.06262801848, - "2029-01-01": 1033.49826353829, - "2028-01-01": 1013.2117958754, - "2027-01-01": 992.647431395207, - "2026-01-01": 968.776094789146, - "2025-01-01": 954.189754010437, - "2024-01-01": 933.481809507974, - "2023-01-01": 883, - "2015-01-01": 883 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1283.55756183047, - "2034-01-01": 1258.70263414501, - "2033-01-01": 1234.15455741863, - "2032-01-01": 1210.22018261041, - "2031-01-01": 1186.89950972036, - "2030-01-01": 1163.88568778938, - "2029-01-01": 1141.17871681748, - "2028-01-01": 1118.77859680466, - "2027-01-01": 1096.07162583276, - "2026-01-01": 1069.71312844781, - "2025-01-01": 1053.60703302398, - "2024-01-01": 1030.74152238989, - "2023-01-01": 975, - "2015-01-01": 975 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1390.19157465946, - "2034-01-01": 1363.2717760586, - "2033-01-01": 1336.68432065033, - "2032-01-01": 1310.76155162728, - "2031-01-01": 1285.50346898943, - "2030-01-01": 1260.57772954419, - "2029-01-01": 1235.98433329155, - "2028-01-01": 1211.72328023151, - "2027-01-01": 1187.12988397887, - "2026-01-01": 1158.58160373425, - "2025-01-01": 1141.13746345982, - "2024-01-01": 1116.37235655767, - "2023-01-01": 1056, - "2015-01-01": 1056 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1483.6608945466, - "2034-01-01": 1454.93114736557, - "2033-01-01": 1426.55608842133, - "2032-01-01": 1398.89040595071, - "2031-01-01": 1371.93409995368, - "2030-01-01": 1345.33248219347, - "2029-01-01": 1319.08555267005, - "2028-01-01": 1293.19331138344, - "2027-01-01": 1266.94638186002, - "2026-01-01": 1236.47866231865, - "2025-01-01": 1217.86166791593, - "2024-01-01": 1191.43148280349, - "2023-01-01": 1127, - "2015-01-01": 1127 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1570.54786796282, - "2034-01-01": 1540.13563336923, - "2033-01-01": 1510.09885846198, - "2032-01-01": 1480.81300292741, - "2031-01-01": 1452.27806676552, - "2030-01-01": 1424.11859028998, - "2029-01-01": 1396.33457350077, - "2028-01-01": 1368.92601639791, - "2027-01-01": 1341.1419996087, - "2026-01-01": 1308.89001255204, - "2025-01-01": 1289.18275938217, - "2024-01-01": 1261.20475508835, - "2023-01-01": 1193, - "2015-01-01": 1193 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1649.53602561392, - "2034-01-01": 1617.59425700892, - "2033-01-01": 1586.0468312262, - "2032-01-01": 1555.28809108805, - "2031-01-01": 1525.31803659447, - "2030-01-01": 1495.74232492317, - "2029-01-01": 1466.56095607415, - "2028-01-01": 1437.77393004742, - "2027-01-01": 1408.59256119841, - "2026-01-01": 1374.71851276421, - "2025-01-01": 1354.02011526056, - "2024-01-01": 1324.63500262003, - "2023-01-01": 1253, - "2015-01-01": 1253 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1723.25830608829, - "2034-01-01": 1689.88897240597, - "2033-01-01": 1656.93160580614, - "2032-01-01": 1624.79817337132, - "2031-01-01": 1593.48867510148, - "2030-01-01": 1562.59114391415, - "2029-01-01": 1532.10557980931, - "2028-01-01": 1502.03198278697, - "2027-01-01": 1471.54641868214, - "2026-01-01": 1436.15844629557, - "2025-01-01": 1414.53498074707, - "2024-01-01": 1383.83656698294, - "2023-01-01": 1309, - "2015-01-01": 1309 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1819.3605645638, - "2034-01-01": 1784.13029783426, - "2033-01-01": 1749.33497266928, - "2032-01-01": 1715.40953063343, - "2031-01-01": 1682.3539717267, - "2030-01-01": 1649.73335438453, - "2029-01-01": 1617.54767860693, - "2028-01-01": 1585.79694439388, - "2027-01-01": 1553.61126861628, - "2026-01-01": 1516.24978822039, - "2025-01-01": 1493.42043039912, - "2024-01-01": 1461.01003481316, - "2023-01-01": 1382, - "2015-01-01": 1382 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1944.42514751139, - "2034-01-01": 1906.77311859711, - "2033-01-01": 1869.58592954597, - "2032-01-01": 1833.32842022111, - "2031-01-01": 1798.00059062253, - "2030-01-01": 1763.13760088709, - "2029-01-01": 1728.73945101478, - "2028-01-01": 1694.80614100562, - "2027-01-01": 1660.40799113332, - "2026-01-01": 1620.47824688966, - "2025-01-01": 1596.07957720659, - "2024-01-01": 1561.44126007166, - "2023-01-01": 1477, - "2015-01-01": 1477 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2060.27444539967, - "2034-01-01": 2020.37909993532, - "2033-01-01": 1980.97628960016, - "2032-01-01": 1942.55854952338, - "2031-01-01": 1905.12587970498, - "2030-01-01": 1868.18574501577, - "2029-01-01": 1831.73814545575, - "2028-01-01": 1795.78308102491, - "2027-01-01": 1759.33548146489, - "2026-01-01": 1717.02671386751, - "2025-01-01": 1691.17436582824, - "2024-01-01": 1654.4722897848, - "2023-01-01": 1565, - "2015-01-01": 1565 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2164.2755196403, - "2034-01-01": 2122.36628772759, - "2033-01-01": 2080.97445373973, - "2032-01-01": 2040.61741560156, - "2031-01-01": 2001.29517331309, - "2030-01-01": 1962.49032894947, - "2029-01-01": 1924.2028825107, - "2028-01-01": 1886.43283399678, - "2027-01-01": 1848.14538755801, - "2026-01-01": 1803.70090581354, - "2025-01-01": 1776.54355106813, - "2024-01-01": 1737.98878236819, - "2023-01-01": 1644, - "2015-01-01": 1644 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2263.01071670418, - "2034-01-01": 2219.1895672772, - "2033-01-01": 2175.90941969501, - "2032-01-01": 2133.71127580236, - "2031-01-01": 2092.59513559927, - "2030-01-01": 2052.01999724096, - "2029-01-01": 2011.98586072743, - "2028-01-01": 1972.49272605867, - "2027-01-01": 1932.45858954514, - "2026-01-01": 1885.98653107876, - "2025-01-01": 1857.59024591613, - "2024-01-01": 1817.27659178279, - "2023-01-01": 1719, - "2015-01-01": 1719 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2364.37885235643, - "2034-01-01": 2318.59480094814, - "2033-01-01": 2273.37598474243, - "2032-01-01": 2229.28763894185, - "2031-01-01": 2186.32976354642, - "2030-01-01": 2143.93712335356, - "2029-01-01": 2102.10971836327, - "2028-01-01": 2060.84754857556, - "2027-01-01": 2019.02014358527, - "2026-01-01": 1970.46643968438, - "2025-01-01": 1940.79818596007, - "2024-01-01": 1898.67874278179, - "2023-01-01": 1796, - "2015-01-01": 1796 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2472.32933447961, - "2034-01-01": 2424.45491992239, - "2033-01-01": 2377.1715475202, - "2032-01-01": 2331.07025942806, - "2031-01-01": 2286.15105564598, - "2030-01-01": 2241.82289401892, - "2029-01-01": 2198.0857745469, - "2028-01-01": 2154.9396972299, - "2027-01-01": 2111.20257775787, - "2026-01-01": 2060.43205664102, - "2025-01-01": 2029.40923899389, - "2024-01-01": 1985.36674774176, - "2023-01-01": 1878, - "2015-01-01": 1878 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2573.69747013186, - "2034-01-01": 2523.86015359333, - "2033-01-01": 2474.63811256762, - "2032-01-01": 2426.64662256755, - "2031-01-01": 2379.88568359312, - "2030-01-01": 2333.74002013152, - "2029-01-01": 2288.20963218274, - "2028-01-01": 2243.29451974678, - "2027-01-01": 2197.76413179799, - "2026-01-01": 2144.91196524664, - "2025-01-01": 2112.61717903783, - "2024-01-01": 2066.76889874076, - "2023-01-01": 1955, - "2015-01-01": 1955 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2668.48325931319, - "2034-01-01": 2616.81050196096, - "2033-01-01": 2565.77567988469, - "2032-01-01": 2516.01672836032, - "2031-01-01": 2467.53364738786, - "2030-01-01": 2419.68850169135, - "2029-01-01": 2372.4812912708, - "2028-01-01": 2325.9120161262, - "2027-01-01": 2278.70480570564, - "2026-01-01": 2223.90616550125, - "2025-01-01": 2190.42200609191, - "2024-01-01": 2142.88519577878, - "2023-01-01": 2027, - "2015-01-01": 2027 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3224.0333014593, - "2034-01-01": 3161.60282156013, - "2033-01-01": 3099.94308832639, - "2032-01-01": 3039.82484842349, - "2031-01-01": 2981.24810185144, - "2030-01-01": 2923.44210194481, - "2029-01-01": 2866.40684870359, - "2028-01-01": 2810.1423421278, - "2027-01-01": 2753.10708888659, - "2026-01-01": 2686.89995032686, - "2025-01-01": 2646.44474243665, - "2024-01-01": 2589.01127008497, - "2023-01-01": 2449, - "2015-01-01": 2449 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 758.286313450615, - "2034-01-01": 743.602786941052, - "2033-01-01": 729.100538536546, - "2032-01-01": 714.960846342153, - "2031-01-01": 701.183710357872, - "2030-01-01": 687.587852478648, - "2029-01-01": 674.173272704479, - "2028-01-01": 660.939971035367, - "2027-01-01": 647.525391261199, - "2026-01-01": 631.953602036861, - "2025-01-01": 622.43861643263, - "2024-01-01": 608.930376304182, - "2023-01-01": 576, - "2015-01-01": 576 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1058.44131252482, - "2034-01-01": 1037.94555677189, - "2033-01-01": 1017.7028350406, - "2032-01-01": 997.966181352588, - "2031-01-01": 978.735595707863, - "2030-01-01": 959.758044084779, - "2029-01-01": 941.033526483336, - "2028-01-01": 922.562042903534, - "2027-01-01": 903.837525302091, - "2026-01-01": 882.101902843118, - "2025-01-01": 868.820568770545, - "2024-01-01": 849.965316924587, - "2023-01-01": 804, - "2015-01-01": 804 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1207.20234276773, - "2034-01-01": 1183.82596462664, - "2033-01-01": 1160.73818374655, - "2032-01-01": 1138.22759738846, - "2031-01-01": 1116.29420555238, - "2030-01-01": 1094.64941097729, - "2029-01-01": 1073.29321366321, - "2028-01-01": 1052.22561361012, - "2027-01-01": 1030.86941629604, - "2026-01-01": 1006.07891157604, - "2025-01-01": 990.93092234153, - "2024-01-01": 969.425616442595, - "2023-01-01": 917, - "2015-01-01": 917 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1333.5833950095, - "2034-01-01": 1307.75976245015, - "2033-01-01": 1282.25494016931, - "2032-01-01": 1257.38773844549, - "2031-01-01": 1233.15815727869, - "2030-01-01": 1209.2473863904, - "2029-01-01": 1185.65542578062, - "2028-01-01": 1162.38227544935, - "2027-01-01": 1138.79031483957, - "2026-01-01": 1111.40451191552, - "2025-01-01": 1094.67069174697, - "2024-01-01": 1070.91401249329, - "2023-01-01": 1013, - "2015-01-01": 1013 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1442.85034642686, - "2034-01-01": 1414.91085848506, - "2033-01-01": 1387.31630249315, - "2032-01-01": 1360.41161040104, - "2031-01-01": 1334.19678220873, - "2030-01-01": 1308.32688596632, - "2029-01-01": 1282.8019216738, - "2028-01-01": 1257.62188933119, - "2027-01-01": 1232.09692503867, - "2026-01-01": 1202.46727054236, - "2025-01-01": 1184.36236737875, - "2024-01-01": 1158.65918824546, - "2023-01-01": 1096, - "2015-01-01": 1096 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1541.58554349075, - "2034-01-01": 1511.73413803467, - "2033-01-01": 1482.25126844843, - "2032-01-01": 1453.50547060184, - "2031-01-01": 1425.49674449491, - "2030-01-01": 1397.85655425781, - "2029-01-01": 1370.58489989053, - "2028-01-01": 1343.68178139308, - "2027-01-01": 1316.41012702581, - "2026-01-01": 1284.75289580758, - "2025-01-01": 1265.40906222675, - "2024-01-01": 1237.94699766006, - "2023-01-01": 1171, - "2015-01-01": 1171 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1631.10545549533, - "2034-01-01": 1599.52057815966, - "2033-01-01": 1568.32563758122, - "2032-01-01": 1537.91057051723, - "2031-01-01": 1508.27537696771, - "2030-01-01": 1479.03012017542, - "2029-01-01": 1450.17480014036, - "2028-01-01": 1421.70941686254, - "2027-01-01": 1392.85409682748, - "2026-01-01": 1359.35852938137, - "2025-01-01": 1338.89139888894, - "2024-01-01": 1309.83461152931, - "2023-01-01": 1239, - "2015-01-01": 1239 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1712.72655173481, - "2034-01-01": 1679.56115592068, - "2033-01-01": 1646.80520943758, - "2032-01-01": 1614.86816161656, - "2031-01-01": 1583.75001245762, - "2030-01-01": 1553.04131262972, - "2029-01-01": 1522.74206213286, - "2028-01-01": 1492.85226096704, - "2027-01-01": 1462.55301047017, - "2026-01-01": 1427.38131293395, - "2025-01-01": 1405.88999996328, - "2024-01-01": 1375.37920064538, - "2023-01-01": 1301, - "2015-01-01": 1301 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1789.08177079754, - "2034-01-01": 1754.43782543905, - "2033-01-01": 1720.22158310966, - "2032-01-01": 1686.86074683852, - "2031-01-01": 1654.3553166256, - "2030-01-01": 1622.27758944181, - "2029-01-01": 1590.62756528713, - "2028-01-01": 1559.40524416157, - "2027-01-01": 1527.75522000689, - "2026-01-01": 1491.01552980572, - "2025-01-01": 1468.56611064574, - "2024-01-01": 1436.69510659268, - "2023-01-01": 1359, - "2015-01-01": 1359 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1890.4499064498, - "2034-01-01": 1853.84305910998, - "2033-01-01": 1817.68814815708, - "2032-01-01": 1782.43710997801, - "2031-01-01": 1748.08994457275, - "2030-01-01": 1714.19471555441, - "2029-01-01": 1680.75142292297, - "2028-01-01": 1647.76006667845, - "2027-01-01": 1614.31677404702, - "2026-01-01": 1575.49543841134, - "2025-01-01": 1551.77405068968, - "2024-01-01": 1518.09725759168, - "2023-01-01": 1436, - "2015-01-01": 1436 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2019.46389727994, - "2034-01-01": 1980.35881105482, - "2033-01-01": 1941.73650367198, - "2032-01-01": 1904.07975397372, - "2031-01-01": 1867.38856196003, - "2030-01-01": 1831.18014878862, - "2029-01-01": 1795.4545144595, - "2028-01-01": 1760.21165897266, - "2027-01-01": 1724.48602464354, - "2026-01-01": 1683.01532209122, - "2025-01-01": 1657.67506529107, - "2024-01-01": 1621.69999522676, - "2023-01-01": 1534, - "2015-01-01": 1534 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2139.26260305078, - "2034-01-01": 2097.83772357502, - "2033-01-01": 2056.92426236439, - "2032-01-01": 2017.03363768402, - "2031-01-01": 1978.16584953393, - "2030-01-01": 1939.80947964896, - "2029-01-01": 1901.96452802913, - "2028-01-01": 1864.63099467443, - "2027-01-01": 1826.7860430546, - "2026-01-01": 1782.85521407969, - "2025-01-01": 1756.01172170664, - "2024-01-01": 1717.90253731649, - "2023-01-01": 1625, - "2015-01-01": 1625 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2247.21308517396, - "2034-01-01": 2203.69784254926, - "2033-01-01": 2160.71982514216, - "2032-01-01": 2118.81625817023, - "2031-01-01": 2077.98714163349, - "2030-01-01": 2037.69525031433, - "2029-01-01": 1997.94058421275, - "2028-01-01": 1958.72314332877, - "2027-01-01": 1918.9684772272, - "2026-01-01": 1872.82083103632, - "2025-01-01": 1844.62277474045, - "2024-01-01": 1804.59054227646, - "2023-01-01": 1707, - "2015-01-01": 1707 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2349.8976901204, - "2034-01-01": 2304.39405328087, - "2033-01-01": 2259.45218973565, - "2032-01-01": 2215.63387277907, - "2031-01-01": 2172.93910241111, - "2030-01-01": 2130.80610533748, - "2029-01-01": 2089.23488155815, - "2028-01-01": 2048.22543107314, - "2027-01-01": 2006.65420729382, - "2026-01-01": 1958.39788131215, - "2025-01-01": 1928.91133738237, - "2024-01-01": 1887.04986406765, - "2023-01-01": 1785, - "2015-01-01": 1785 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2455.2152336552, - "2034-01-01": 2407.67221813379, - "2033-01-01": 2360.71615342128, - "2032-01-01": 2314.93399032659, - "2031-01-01": 2270.32572884971, - "2030-01-01": 2226.30441818173, - "2029-01-01": 2182.87005832266, - "2028-01-01": 2140.0226492725, - "2027-01-01": 2096.58828941343, - "2026-01-01": 2046.16921492838, - "2025-01-01": 2015.36114522023, - "2024-01-01": 1971.62352744323, - "2023-01-01": 1865, - "2015-01-01": 1865 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2567.11512366094, - "2034-01-01": 2517.40526829002, - "2033-01-01": 2468.30911483727, - "2032-01-01": 2420.44036522083, - "2031-01-01": 2373.79901944071, - "2030-01-01": 2327.77137557876, - "2029-01-01": 2282.35743363496, - "2028-01-01": 2237.55719360932, - "2027-01-01": 2192.14325166552, - "2026-01-01": 2139.42625689562, - "2025-01-01": 2107.21406604796, - "2024-01-01": 2061.48304477978, - "2023-01-01": 1950, - "2015-01-01": 1950 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2671.11619790156, - "2034-01-01": 2619.39245608228, - "2033-01-01": 2568.30727897683, - "2032-01-01": 2518.49923129901, - "2031-01-01": 2469.96831304882, - "2030-01-01": 2422.07595951246, - "2029-01-01": 2374.82217068991, - "2028-01-01": 2328.20694658118, - "2027-01-01": 2280.95315775863, - "2026-01-01": 2226.10044884165, - "2025-01-01": 2192.58325128786, - "2024-01-01": 2144.99953736317, - "2023-01-01": 2029, - "2015-01-01": 2029 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2771.16786425963, - "2034-01-01": 2717.50671269256, - "2033-01-01": 2664.50804447818, - "2032-01-01": 2612.83434296915, - "2031-01-01": 2562.48560816549, - "2030-01-01": 2512.7993567145, - "2029-01-01": 2463.7755886162, - "2028-01-01": 2415.41430387057, - "2027-01-01": 2366.39053577226, - "2026-01-01": 2309.48321577707, - "2025-01-01": 2274.71056873383, - "2024-01-01": 2225.34451756997, - "2023-01-01": 2105, - "2015-01-01": 2105 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3345.14847652433, - "2034-01-01": 3280.372711141, - "2033-01-01": 3216.39664656487, - "2032-01-01": 3154.01998360314, - "2031-01-01": 3093.24272225582, - "2030-01-01": 3033.2651617157, - "2029-01-01": 2974.08730198278, - "2028-01-01": 2915.70914305706, - "2027-01-01": 2856.53128332415, - "2026-01-01": 2787.83698398553, - "2025-01-01": 2745.86202145019, - "2024-01-01": 2686.27098296689, - "2023-01-01": 2541, - "2015-01-01": 2541 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 797.780392276168, - "2034-01-01": 782.332098760899, - "2033-01-01": 767.074524918658, - "2032-01-01": 752.198390422473, - "2031-01-01": 737.703695272345, - "2030-01-01": 723.399719795244, - "2029-01-01": 709.286463991171, - "2028-01-01": 695.363927860126, - "2027-01-01": 681.250672056053, - "2026-01-01": 664.867852142947, - "2025-01-01": 654.857294371829, - "2024-01-01": 640.645500070025, - "2023-01-01": 606, - "2015-01-01": 606 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1112.41655358641, - "2034-01-01": 1090.87561625901, - "2033-01-01": 1069.60061642948, - "2032-01-01": 1048.85749159569, - "2031-01-01": 1028.64624175764, - "2030-01-01": 1008.70092941746, - "2029-01-01": 989.021554575147, - "2028-01-01": 969.608117230704, - "2027-01-01": 949.928742388391, - "2026-01-01": 927.084711321437, - "2025-01-01": 913.126095287451, - "2024-01-01": 893.309319404573, - "2023-01-01": 845, - "2015-01-01": 845 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1269.07639959443, - "2034-01-01": 1244.50188647773, - "2033-01-01": 1220.23076241186, - "2032-01-01": 1196.56641644763, - "2031-01-01": 1173.50884858505, - "2030-01-01": 1150.75466977329, - "2029-01-01": 1128.30388001236, - "2028-01-01": 1106.15647930225, - "2027-01-01": 1083.70568954131, - "2026-01-01": 1057.64457007558, - "2025-01-01": 1041.72018444628, - "2024-01-01": 1019.11264367575, - "2023-01-01": 964, - "2015-01-01": 964 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1402.03979830713, - "2034-01-01": 1374.89056960455, - "2033-01-01": 1348.07651656497, - "2032-01-01": 1321.93281485138, - "2031-01-01": 1296.45946446377, - "2030-01-01": 1271.32128973917, - "2029-01-01": 1246.51829067755, - "2028-01-01": 1222.05046727893, - "2027-01-01": 1197.24746821732, - "2026-01-01": 1168.45587876607, - "2025-01-01": 1150.86306684158, - "2024-01-01": 1125.88689368742, - "2023-01-01": 1065, - "2015-01-01": 1065 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1516.57262690123, - "2034-01-01": 1487.2055738821, - "2033-01-01": 1458.20107707309, - "2032-01-01": 1429.92169268431, - "2031-01-01": 1402.36742071574, - "2030-01-01": 1375.1757049573, - "2029-01-01": 1348.34654540896, - "2028-01-01": 1321.87994207073, - "2027-01-01": 1295.0507825224, - "2026-01-01": 1263.90720407372, - "2025-01-01": 1244.87723286526, - "2024-01-01": 1217.86075260836, - "2023-01-01": 1152, - "2015-01-01": 1152 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1620.57370114185, - "2034-01-01": 1589.19276167437, - "2033-01-01": 1558.19924121265, - "2032-01-01": 1527.98055876248, - "2031-01-01": 1498.53671432386, - "2030-01-01": 1469.480288891, - "2029-01-01": 1440.81128246391, - "2028-01-01": 1412.5296950426, - "2027-01-01": 1383.86068861551, - "2026-01-01": 1350.58139601975, - "2025-01-01": 1330.24641810515, - "2024-01-01": 1301.37724519175, - "2023-01-01": 1231, - "2015-01-01": 1231 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1714.04302102899, - "2034-01-01": 1680.85213298134, - "2033-01-01": 1648.07100898365, - "2032-01-01": 1616.10941308591, - "2031-01-01": 1584.96734528811, - "2030-01-01": 1554.23504154028, - "2029-01-01": 1523.91250184242, - "2028-01-01": 1493.99972619453, - "2027-01-01": 1463.67718649667, - "2026-01-01": 1428.47845460415, - "2025-01-01": 1406.97062256126, - "2024-01-01": 1376.43637143758, - "2023-01-01": 1302, - "2015-01-01": 1302 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1799.61352515103, - "2034-01-01": 1764.76564192434, - "2033-01-01": 1730.34797947823, - "2032-01-01": 1696.79075859327, - "2031-01-01": 1664.09397926946, - "2030-01-01": 1631.82742072623, - "2029-01-01": 1599.99108296358, - "2028-01-01": 1568.58496598151, - "2027-01-01": 1536.74862821885, - "2026-01-01": 1499.79266316734, - "2025-01-01": 1477.21109142952, - "2024-01-01": 1445.15247293024, - "2023-01-01": 1367, - "2015-01-01": 1367 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1879.91815209632, - "2034-01-01": 1843.51524262469, - "2033-01-01": 1807.56175178852, - "2032-01-01": 1772.50709822325, - "2031-01-01": 1738.35128192889, - "2030-01-01": 1704.64488426998, - "2029-01-01": 1671.38790524652, - "2028-01-01": 1638.58034485852, - "2027-01-01": 1605.32336583506, - "2026-01-01": 1566.71830504972, - "2025-01-01": 1543.12906990589, - "2024-01-01": 1509.63989125412, - "2023-01-01": 1428, - "2015-01-01": 1428 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1985.23569563112, - "2034-01-01": 1946.79340747762, - "2033-01-01": 1908.82571547415, - "2032-01-01": 1871.80721577077, - "2031-01-01": 1835.73790836748, - "2030-01-01": 1800.14319711424, - "2029-01-01": 1765.02308201103, - "2028-01-01": 1730.37756305787, - "2027-01-01": 1695.25744795467, - "2026-01-01": 1654.48963866595, - "2025-01-01": 1629.57887774376, - "2024-01-01": 1594.2135546297, - "2023-01-01": 1508, - "2015-01-01": 1508 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2122.14850222637, - "2034-01-01": 2081.05502178642, - "2033-01-01": 2040.46886826547, - "2032-01-01": 2000.89736858255, - "2031-01-01": 1962.34052273766, - "2030-01-01": 1924.29100381177, - "2029-01-01": 1886.7488118049, - "2028-01-01": 1849.71394671704, - "2027-01-01": 1812.17175471016, - "2026-01-01": 1768.59237236705, - "2025-01-01": 1741.96362793298, - "2024-01-01": 1704.15931701795, - "2023-01-01": 1612, - "2015-01-01": 1612 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2247.21308517396, - "2034-01-01": 2203.69784254926, - "2033-01-01": 2160.71982514216, - "2032-01-01": 2118.81625817023, - "2031-01-01": 2077.98714163349, - "2030-01-01": 2037.69525031433, - "2029-01-01": 1997.94058421275, - "2028-01-01": 1958.72314332877, - "2027-01-01": 1918.9684772272, - "2026-01-01": 1872.82083103632, - "2025-01-01": 1844.62277474045, - "2024-01-01": 1804.59054227646, - "2023-01-01": 1707, - "2015-01-01": 1707 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2361.74591376806, - "2034-01-01": 2316.01284682682, - "2033-01-01": 2270.84438565028, - "2032-01-01": 2226.80513600316, - "2031-01-01": 2183.89509788546, - "2030-01-01": 2141.54966553245, - "2029-01-01": 2099.76883894416, - "2028-01-01": 2058.55261812057, - "2027-01-01": 2016.77179153228, - "2026-01-01": 1968.27215634397, - "2025-01-01": 1938.63694076413, - "2024-01-01": 1896.5644011974, - "2023-01-01": 1794, - "2015-01-01": 1794 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2468.37992659705, - "2034-01-01": 2420.5819887404, - "2033-01-01": 2373.37414888199, - "2032-01-01": 2327.34650502003, - "2031-01-01": 2282.49905715453, - "2030-01-01": 2238.24170728726, - "2029-01-01": 2194.57445541823, - "2028-01-01": 2151.49730154742, - "2027-01-01": 2107.83004967838, - "2026-01-01": 2057.14063163041, - "2025-01-01": 2026.16737119997, - "2024-01-01": 1982.19523536518, - "2023-01-01": 1875, - "2015-01-01": 1875 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2578.9633473086, - "2034-01-01": 2529.02406183598, - "2033-01-01": 2479.7013107519, - "2032-01-01": 2431.61162844493, - "2031-01-01": 2384.75501491505, - "2030-01-01": 2338.51493577373, - "2029-01-01": 2292.89139102096, - "2028-01-01": 2247.88438065674, - "2027-01-01": 2202.26083590397, - "2026-01-01": 2149.30053192745, - "2025-01-01": 2116.93966942972, - "2024-01-01": 2070.99758190954, - "2023-01-01": 1959, - "2015-01-01": 1959 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2696.12911449108, - "2034-01-01": 2643.92102023485, - "2033-01-01": 2592.35747035216, - "2032-01-01": 2542.08300921654, - "2031-01-01": 2493.09763682799, - "2030-01-01": 2444.75680881297, - "2029-01-01": 2397.06052517148, - "2028-01-01": 2350.00878590353, - "2027-01-01": 2302.31250226204, - "2026-01-01": 2246.94614057551, - "2025-01-01": 2213.11508064935, - "2024-01-01": 2165.08578241487, - "2023-01-01": 2048, - "2015-01-01": 2048 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2805.39606590844, - "2034-01-01": 2751.07211626976, - "2033-01-01": 2697.41883267601, - "2032-01-01": 2645.1068811721, - "2031-01-01": 2594.13626175803, - "2030-01-01": 2543.83630838889, - "2029-01-01": 2494.20702106466, - "2028-01-01": 2445.24839978536, - "2027-01-01": 2395.61911246114, - "2026-01-01": 2338.00889920234, - "2025-01-01": 2302.80675628113, - "2024-01-01": 2252.83095816703, - "2023-01-01": 2131, - "2015-01-01": 2131 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2909.39714014906, - "2034-01-01": 2853.05930406202, - "2033-01-01": 2797.41699681557, - "2032-01-01": 2743.16574725027, - "2031-01-01": 2690.30555536614, - "2030-01-01": 2638.14089232259, - "2029-01-01": 2586.67175811962, - "2028-01-01": 2535.89815275723, - "2027-01-01": 2484.42901855425, - "2026-01-01": 2424.68309114837, - "2025-01-01": 2388.17594152103, - "2024-01-01": 2336.34745075042, - "2023-01-01": 2210, - "2015-01-01": 2210 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SC.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3512.34007688583, - "2034-01-01": 3444.32679784501, - "2033-01-01": 3377.15318891581, - "2032-01-01": 3311.65892020983, - "2031-01-01": 3247.84399172709, - "2030-01-01": 3184.86873335596, - "2029-01-01": 3122.73314509644, - "2028-01-01": 3061.43722694854, - "2027-01-01": 2999.30163868903, - "2026-01-01": 2927.17397610129, - "2025-01-01": 2883.1010913928, - "2024-01-01": 2820.53167357562, - "2023-01-01": 2668, - "2015-01-01": 2668 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD", - "description": null, - "label": "SD", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 571.347673676331, - "2034-01-01": 560.284044327112, - "2033-01-01": 549.35700299455, - "2032-01-01": 538.703137695303, - "2031-01-01": 528.322448429369, - "2030-01-01": 518.078347180092, - "2029-01-01": 507.970833947472, - "2028-01-01": 497.999908731509, - "2027-01-01": 487.89239549889, - "2026-01-01": 476.159484868051, - "2025-01-01": 468.990207520419, - "2024-01-01": 458.812123812526, - "2023-01-01": 434, - "2015-01-01": 434 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 784.615699334317, - "2034-01-01": 769.422328154283, - "2033-01-01": 754.416529457954, - "2032-01-01": 739.785875729033, - "2031-01-01": 725.53036696752, - "2030-01-01": 711.462430689712, - "2029-01-01": 697.582066895607, - "2028-01-01": 683.889275585207, - "2027-01-01": 670.008911791102, - "2026-01-01": 653.896435440919, - "2025-01-01": 644.051068392096, - "2024-01-01": 630.073792148077, - "2023-01-01": 596, - "2015-01-01": 596 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 888.616773574939, - "2034-01-01": 871.409515946546, - "2033-01-01": 854.414693597515, - "2032-01-01": 837.84474180721, - "2031-01-01": 821.699660575631, - "2030-01-01": 805.767014623415, - "2029-01-01": 790.046803950562, - "2028-01-01": 774.539028557071, - "2027-01-01": 758.818817884218, - "2026-01-01": 740.570627386946, - "2025-01-01": 729.420253631988, - "2024-01-01": 713.590284731463, - "2023-01-01": 675, - "2015-01-01": 675 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 975.503746991156, - "2034-01-01": 956.614001950208, - "2033-01-01": 937.957463638161, - "2032-01-01": 919.767338783915, - "2031-01-01": 902.043627387471, - "2030-01-01": 884.553122719927, - "2029-01-01": 867.295824781283, - "2028-01-01": 850.27173357154, - "2027-01-01": 833.014435632897, - "2026-01-01": 812.981977620337, - "2025-01-01": 800.741345098227, - "2024-01-01": 783.363557016318, - "2023-01-01": 741, - "2015-01-01": 741 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1051.85896605389, - "2034-01-01": 1031.49067146858, - "2033-01-01": 1011.37383731024, - "2032-01-01": 991.759924005868, - "2031-01-01": 972.648931555451, - "2030-01-01": 953.789399532013, - "2029-01-01": 935.181327935554, - "2028-01-01": 916.824716766074, - "2027-01-01": 898.216645169615, - "2026-01-01": 876.616194492104, - "2025-01-01": 863.417455780679, - "2024-01-01": 844.679462963614, - "2023-01-01": 799, - "2015-01-01": 799 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1120.31536935152, - "2034-01-01": 1098.62147862298, - "2033-01-01": 1077.1954137059, - "2032-01-01": 1056.30500041176, - "2031-01-01": 1035.95023874054, - "2030-01-01": 1015.86330288078, - "2029-01-01": 996.044192832486, - "2028-01-01": 976.492908595656, - "2027-01-01": 956.673798547362, - "2026-01-01": 933.667561342654, - "2025-01-01": 919.609830875291, - "2024-01-01": 899.652344157741, - "2023-01-01": 851, - "2015-01-01": 851 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1182.18942617822, - "2034-01-01": 1159.29740047407, - "2033-01-01": 1136.68799237121, - "2032-01-01": 1114.64381947093, - "2031-01-01": 1093.16488177321, - "2030-01-01": 1071.96856167678, - "2029-01-01": 1051.05485918164, - "2028-01-01": 1030.42377428778, - "2027-01-01": 1009.51007179263, - "2026-01-01": 985.233219842189, - "2025-01-01": 970.399092980037, - "2024-01-01": 949.339371390895, - "2023-01-01": 898, - "2015-01-01": 898 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1237.48113653399, - "2034-01-01": 1213.51843702186, - "2033-01-01": 1189.85157330617, - "2032-01-01": 1166.77638118337, - "2031-01-01": 1144.29286065347, - "2030-01-01": 1122.10517592002, - "2029-01-01": 1100.213326983, - "2028-01-01": 1078.61731384244, - "2027-01-01": 1056.72546490543, - "2026-01-01": 1031.31316999071, - "2025-01-01": 1015.78524209492, - "2024-01-01": 993.740544663075, - "2023-01-01": 940, - "2015-01-01": 940 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1290.13990830139, - "2034-01-01": 1265.15751944832, - "2033-01-01": 1240.48355514898, - "2032-01-01": 1216.42643995713, - "2031-01-01": 1192.98617387277, - "2030-01-01": 1169.85433234214, - "2029-01-01": 1147.03091536526, - "2028-01-01": 1124.51592294212, - "2027-01-01": 1101.69250596524, - "2026-01-01": 1075.19883679883, - "2025-01-01": 1059.01014601385, - "2024-01-01": 1036.02737635087, - "2023-01-01": 980, - "2015-01-01": 980 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1358.59631159902, - "2034-01-01": 1332.28832660272, - "2033-01-01": 1306.30513154465, - "2032-01-01": 1280.97151636302, - "2031-01-01": 1256.28748105785, - "2030-01-01": 1231.92823569091, - "2029-01-01": 1207.89378026219, - "2028-01-01": 1184.1841147717, - "2027-01-01": 1160.14965934298, - "2026-01-01": 1132.25020364938, - "2025-01-01": 1115.20252110846, - "2024-01-01": 1091.00025754499, - "2023-01-01": 1032, - "2015-01-01": 1032 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1448.1162236036, - "2034-01-01": 1420.0747667277, - "2033-01-01": 1392.37950067743, - "2032-01-01": 1365.37661627842, - "2031-01-01": 1339.06611353066, - "2030-01-01": 1313.10180160853, - "2029-01-01": 1287.48368051203, - "2028-01-01": 1262.21175024115, - "2027-01-01": 1236.59362914465, - "2026-01-01": 1206.85583722317, - "2025-01-01": 1188.68485777065, - "2024-01-01": 1162.88787141424, - "2023-01-01": 1100, - "2015-01-01": 1100 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1528.4208505489, - "2034-01-01": 1498.82436742806, - "2033-01-01": 1469.59327298773, - "2032-01-01": 1441.0929559084, - "2031-01-01": 1413.32341619009, - "2030-01-01": 1385.91926515227, - "2029-01-01": 1358.88050279497, - "2028-01-01": 1332.20712911816, - "2027-01-01": 1305.16836676086, - "2026-01-01": 1273.78147910555, - "2025-01-01": 1254.60283624702, - "2024-01-01": 1227.37528973812, - "2023-01-01": 1161, - "2015-01-01": 1161 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1602.14313102326, - "2034-01-01": 1571.11908282511, - "2033-01-01": 1540.47804756767, - "2032-01-01": 1510.60303819167, - "2031-01-01": 1481.4940546971, - "2030-01-01": 1452.76808414325, - "2029-01-01": 1424.42512653012, - "2028-01-01": 1396.46518185771, - "2027-01-01": 1368.12222424458, - "2026-01-01": 1335.22141263691, - "2025-01-01": 1315.11770173352, - "2024-01-01": 1286.57685410102, - "2023-01-01": 1217, - "2015-01-01": 1217 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1670.59953432089, - "2034-01-01": 1638.24988997951, - "2033-01-01": 1606.29962396333, - "2032-01-01": 1575.14811459756, - "2031-01-01": 1544.79536188219, - "2030-01-01": 1514.84198749202, - "2029-01-01": 1485.28799142706, - "2028-01-01": 1456.13337368729, - "2027-01-01": 1426.57937762233, - "2026-01-01": 1392.27277948746, - "2025-01-01": 1371.31007682814, - "2024-01-01": 1341.54973529515, - "2023-01-01": 1269, - "2015-01-01": 1269 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1741.68887620688, - "2034-01-01": 1707.96265125523, - "2033-01-01": 1674.65279945113, - "2032-01-01": 1642.17569394213, - "2031-01-01": 1610.53133472824, - "2030-01-01": 1579.30334866189, - "2029-01-01": 1548.4917357431, - "2028-01-01": 1518.09649597186, - "2027-01-01": 1487.28488305307, - "2026-01-01": 1451.51842967842, - "2025-01-01": 1429.6636971187, - "2024-01-01": 1398.63695807367, - "2023-01-01": 1323, - "2015-01-01": 1323 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1818.04409526962, - "2034-01-01": 1782.8393207736, - "2033-01-01": 1748.06917312321, - "2032-01-01": 1714.16827916408, - "2031-01-01": 1681.13663889622, - "2030-01-01": 1648.53962547398, - "2029-01-01": 1616.37723889737, - "2028-01-01": 1584.64947916639, - "2027-01-01": 1552.48709258979, - "2026-01-01": 1515.15264655018, - "2025-01-01": 1492.33980780115, - "2024-01-01": 1459.95286402096, - "2023-01-01": 1381, - "2015-01-01": 1381 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1887.81696786143, - "2034-01-01": 1851.26110498866, - "2033-01-01": 1815.15654906494, - "2032-01-01": 1779.95460703932, - "2031-01-01": 1745.65527891179, - "2030-01-01": 1711.8072577333, - "2029-01-01": 1678.41054350386, - "2028-01-01": 1645.46513622347, - "2027-01-01": 1612.06842199403, - "2026-01-01": 1573.30115507094, - "2025-01-01": 1549.61280549373, - "2024-01-01": 1515.98291600729, - "2023-01-01": 1434, - "2015-01-01": 1434 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1953.64043257068, - "2034-01-01": 1915.80995802174, - "2033-01-01": 1878.44652636846, - "2032-01-01": 1842.01718050652, - "2031-01-01": 1806.52192043591, - "2030-01-01": 1771.49370326096, - "2029-01-01": 1736.93252898168, - "2028-01-01": 1702.83839759806, - "2027-01-01": 1668.27722331878, - "2026-01-01": 1628.15823858108, - "2025-01-01": 1603.6439353924, - "2024-01-01": 1568.84145561702, - "2023-01-01": 1484, - "2015-01-01": 1484 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2336.73299717854, - "2034-01-01": 2291.48428267425, - "2033-01-01": 2246.79419427495, - "2032-01-01": 2203.22135808563, - "2031-01-01": 2160.76577410629, - "2030-01-01": 2118.86881623194, - "2029-01-01": 2077.53048446259, - "2028-01-01": 2036.75077879822, - "2027-01-01": 1995.41244702887, - "2026-01-01": 1947.42646461012, - "2025-01-01": 1918.10511140263, - "2024-01-01": 1876.4781561457, - "2023-01-01": 1775, - "2015-01-01": 1775 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 675.348747916954, - "2034-01-01": 662.271232119375, - "2033-01-01": 649.355167134111, - "2032-01-01": 636.76200377348, - "2031-01-01": 624.49174203748, - "2030-01-01": 612.382931113796, - "2029-01-01": 600.435571002427, - "2028-01-01": 588.649661703374, - "2027-01-01": 576.702301592006, - "2026-01-01": 562.833676814079, - "2025-01-01": 554.359392760311, - "2024-01-01": 542.328616395912, - "2023-01-01": 513, - "2015-01-01": 513 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 924.161444517937, - "2034-01-01": 906.265896584408, - "2033-01-01": 888.591281341416, - "2032-01-01": 871.358531479499, - "2031-01-01": 854.567646998657, - "2030-01-01": 837.997695208352, - "2029-01-01": 821.648676108584, - "2028-01-01": 805.520589699354, - "2027-01-01": 789.171570599587, - "2026-01-01": 770.193452482424, - "2025-01-01": 758.597063777267, - "2024-01-01": 742.133896120722, - "2023-01-01": 702, - "2015-01-01": 702 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1046.59308887715, - "2034-01-01": 1026.32676322593, - "2033-01-01": 1006.31063912596, - "2032-01-01": 986.794918128492, - "2031-01-01": 967.779600233521, - "2030-01-01": 949.0144838898, - "2029-01-01": 930.499569097328, - "2028-01-01": 912.234855856106, - "2027-01-01": 893.719941063635, - "2026-01-01": 872.227627811293, - "2025-01-01": 859.094965388786, - "2024-01-01": 840.450779794835, - "2023-01-01": 795, - "2015-01-01": 795 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1147.9612245294, - "2034-01-01": 1125.73199689687, - "2033-01-01": 1103.77720417338, - "2032-01-01": 1082.37128126798, - "2031-01-01": 1061.51422818067, - "2030-01-01": 1040.9316100024, - "2029-01-01": 1020.62342673317, - "2028-01-01": 1000.58967837299, - "2027-01-01": 980.28149510376, - "2026-01-01": 956.707536416914, - "2025-01-01": 942.302905432731, - "2024-01-01": 921.852930793831, - "2023-01-01": 872, - "2015-01-01": 872 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1237.48113653399, - "2034-01-01": 1213.51843702186, - "2033-01-01": 1189.85157330617, - "2032-01-01": 1166.77638118337, - "2031-01-01": 1144.29286065347, - "2030-01-01": 1122.10517592002, - "2029-01-01": 1100.213326983, - "2028-01-01": 1078.61731384244, - "2027-01-01": 1056.72546490543, - "2026-01-01": 1031.31316999071, - "2025-01-01": 1015.78524209492, - "2024-01-01": 993.740544663075, - "2023-01-01": 940, - "2015-01-01": 940 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1316.4692941851, - "2034-01-01": 1290.97706066155, - "2033-01-01": 1265.79954607039, - "2032-01-01": 1241.25146934402, - "2031-01-01": 1217.33283048242, - "2030-01-01": 1193.72891055321, - "2029-01-01": 1170.43970955639, - "2028-01-01": 1147.46522749196, - "2027-01-01": 1124.17602649514, - "2026-01-01": 1097.14167020288, - "2025-01-01": 1080.62259797332, - "2024-01-01": 1057.17079219476, - "2023-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1387.55863607109, - "2034-01-01": 1360.68982193727, - "2033-01-01": 1334.15272155819, - "2032-01-01": 1308.27904868859, - "2031-01-01": 1283.06880332847, - "2030-01-01": 1258.19027172308, - "2029-01-01": 1233.64345387243, - "2028-01-01": 1209.42834977652, - "2027-01-01": 1184.88153192588, - "2026-01-01": 1156.38732039384, - "2025-01-01": 1138.97621826387, - "2024-01-01": 1114.25801497328, - "2023-01-01": 1054, - "2015-01-01": 1054 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1453.38210078035, - "2034-01-01": 1425.23867497035, - "2033-01-01": 1397.44269886171, - "2032-01-01": 1370.34162215579, - "2031-01-01": 1343.93544485259, - "2030-01-01": 1317.87671725074, - "2029-01-01": 1292.16543935025, - "2028-01-01": 1266.80161115112, - "2027-01-01": 1241.09033325063, - "2026-01-01": 1211.24440390398, - "2025-01-01": 1193.00734816254, - "2024-01-01": 1167.11655458302, - "2023-01-01": 1104, - "2015-01-01": 1104 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1515.25615760704, - "2034-01-01": 1485.91459682144, - "2033-01-01": 1456.93527752702, - "2032-01-01": 1428.68044121496, - "2031-01-01": 1401.15008788526, - "2030-01-01": 1373.98197604674, - "2029-01-01": 1347.1761056994, - "2028-01-01": 1320.73247684324, - "2027-01-01": 1293.9266064959, - "2026-01-01": 1262.81006240352, - "2025-01-01": 1243.79661026729, - "2024-01-01": 1216.80358181617, - "2023-01-01": 1151, - "2015-01-01": 1151 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1594.24431525815, - "2034-01-01": 1563.37322046114, - "2033-01-01": 1532.88325029125, - "2032-01-01": 1503.1555293756, - "2031-01-01": 1474.19005771421, - "2030-01-01": 1445.60571067993, - "2029-01-01": 1417.40248827279, - "2028-01-01": 1389.58039049276, - "2027-01-01": 1361.37716808561, - "2026-01-01": 1328.63856261569, - "2025-01-01": 1308.63396614568, - "2024-01-01": 1280.23382934786, - "2023-01-01": 1211, - "2015-01-01": 1211 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1698.24538949877, - "2034-01-01": 1665.3604082534, - "2033-01-01": 1632.88141443081, - "2032-01-01": 1601.21439545378, - "2031-01-01": 1570.35935132232, - "2030-01-01": 1539.91029461364, - "2029-01-01": 1509.86722532774, - "2028-01-01": 1480.23014346463, - "2027-01-01": 1450.18707417873, - "2026-01-01": 1415.31275456172, - "2025-01-01": 1394.00315138558, - "2024-01-01": 1363.75032193124, - "2023-01-01": 1290, - "2015-01-01": 1290 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1791.71470938591, - "2034-01-01": 1757.01977956037, - "2033-01-01": 1722.7531822018, - "2032-01-01": 1689.3432497772, - "2031-01-01": 1656.78998228657, - "2030-01-01": 1624.66504726292, - "2029-01-01": 1592.96844470624, - "2028-01-01": 1561.70017461655, - "2027-01-01": 1530.00357205988, - "2026-01-01": 1493.20981314612, - "2025-01-01": 1470.72735584168, - "2024-01-01": 1438.80944817707, - "2023-01-01": 1361, - "2015-01-01": 1361 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1877.28521350795, - "2034-01-01": 1840.93328850337, - "2033-01-01": 1805.03015269638, - "2032-01-01": 1770.02459528457, - "2031-01-01": 1735.91661626793, - "2030-01-01": 1702.25742644887, - "2029-01-01": 1669.04702582741, - "2028-01-01": 1636.28541440353, - "2027-01-01": 1603.07501378207, - "2026-01-01": 1564.52402170931, - "2025-01-01": 1540.96782470995, - "2024-01-01": 1507.52554966973, - "2023-01-01": 1426, - "2015-01-01": 1426 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1957.58984045324, - "2034-01-01": 1919.68288920372, - "2033-01-01": 1882.24392500667, - "2032-01-01": 1845.74093491455, - "2031-01-01": 1810.17391892735, - "2030-01-01": 1775.07488999262, - "2029-01-01": 1740.44384811035, - "2028-01-01": 1706.28079328054, - "2027-01-01": 1671.64975139827, - "2026-01-01": 1631.44966359169, - "2025-01-01": 1606.88580318632, - "2024-01-01": 1572.01296799361, - "2023-01-01": 1487, - "2015-01-01": 1487 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2040.5274059869, - "2034-01-01": 2001.0144440254, - "2033-01-01": 1961.98929640911, - "2032-01-01": 1923.93977748322, - "2031-01-01": 1886.86588724775, - "2030-01-01": 1850.27981135747, - "2029-01-01": 1814.1815498124, - "2028-01-01": 1778.57110261253, - "2027-01-01": 1742.47284106746, - "2026-01-01": 1700.56958881447, - "2025-01-01": 1674.96502685864, - "2024-01-01": 1638.61472790188, - "2023-01-01": 1550, - "2015-01-01": 1550 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2127.41437940311, - "2034-01-01": 2086.21893002906, - "2033-01-01": 2045.53206644975, - "2032-01-01": 2005.86237445993, - "2031-01-01": 1967.20985405959, - "2030-01-01": 1929.06591945398, - "2029-01-01": 1891.43057064312, - "2028-01-01": 1854.303807627, - "2027-01-01": 1816.66845881614, - "2026-01-01": 1772.98093904786, - "2025-01-01": 1746.28611832488, - "2024-01-01": 1708.38800018673, - "2023-01-01": 1616, - "2015-01-01": 1616 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2209.03547564259, - "2034-01-01": 2166.25950779008, - "2033-01-01": 2124.01163830612, - "2032-01-01": 2082.81996555926, - "2031-01-01": 2042.6844895495, - "2030-01-01": 2003.07711190828, - "2029-01-01": 1963.99783263562, - "2028-01-01": 1925.4466517315, - "2027-01-01": 1886.36737245884, - "2026-01-01": 1841.00372260044, - "2025-01-01": 1813.28471939922, - "2024-01-01": 1773.93258930281, - "2023-01-01": 1678, - "2015-01-01": 1678 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2286.70716399951, - "2034-01-01": 2242.42715436911, - "2033-01-01": 2198.69381152427, - "2032-01-01": 2156.05380225055, - "2031-01-01": 2114.50712654796, - "2030-01-01": 2073.50711763092, - "2029-01-01": 2033.05377549945, - "2028-01-01": 1993.14710015353, - "2027-01-01": 1952.69375802205, - "2026-01-01": 1905.73508114241, - "2025-01-01": 1877.04145267965, - "2024-01-01": 1836.3056660423, - "2023-01-01": 1737, - "2015-01-01": 1737 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2730.35731613989, - "2034-01-01": 2677.48642381205, - "2033-01-01": 2625.26825854999, - "2032-01-01": 2574.35554741949, - "2031-01-01": 2524.74829042053, - "2030-01-01": 2475.79376048735, - "2029-01-01": 2427.49195761995, - "2028-01-01": 2379.84288181832, - "2027-01-01": 2331.54107895092, - "2026-01-01": 2275.47182400078, - "2025-01-01": 2241.21126819666, - "2024-01-01": 2192.57222301193, - "2023-01-01": 2074, - "2015-01-01": 2074 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 745.121620508764, - "2034-01-01": 730.693016334437, - "2033-01-01": 716.442543075842, - "2032-01-01": 702.548331648713, - "2031-01-01": 689.010382053048, - "2030-01-01": 675.650563373116, - "2029-01-01": 662.468875608915, - "2028-01-01": 649.465318760448, - "2027-01-01": 636.283630996248, - "2026-01-01": 620.982185334832, - "2025-01-01": 611.632390452896, - "2024-01-01": 598.358668382234, - "2023-01-01": 566, - "2015-01-01": 566 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1017.63076440508, - "2034-01-01": 997.925267891378, - "2033-01-01": 978.463049112414, - "2032-01-01": 959.487385802924, - "2031-01-01": 940.998277962908, - "2030-01-01": 922.75244785763, - "2029-01-01": 904.749895487087, - "2028-01-01": 886.990620851283, - "2027-01-01": 868.988068480741, - "2026-01-01": 848.090511066829, - "2025-01-01": 835.321268233373, - "2024-01-01": 817.19302236655, - "2023-01-01": 773, - "2015-01-01": 773 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1151.91063241196, - "2034-01-01": 1129.60492807886, - "2033-01-01": 1107.57460281159, - "2032-01-01": 1086.09503567601, - "2031-01-01": 1065.16622667211, - "2030-01-01": 1044.51279673406, - "2029-01-01": 1024.13474586184, - "2028-01-01": 1004.03207405546, - "2027-01-01": 983.654023183246, - "2026-01-01": 959.998961427523, - "2025-01-01": 945.544773226651, - "2024-01-01": 925.024443170415, - "2023-01-01": 875, - "2015-01-01": 875 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1263.81052241769, - "2034-01-01": 1239.33797823509, - "2033-01-01": 1215.16756422758, - "2032-01-01": 1191.60141057025, - "2031-01-01": 1168.63951726312, - "2030-01-01": 1145.97975413108, - "2029-01-01": 1123.62212117413, - "2028-01-01": 1101.56661839228, - "2027-01-01": 1079.20898543533, - "2026-01-01": 1053.25600339477, - "2025-01-01": 1037.39769405438, - "2024-01-01": 1014.88396050697, - "2023-01-01": 960, - "2015-01-01": 960 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1361.22925018739, - "2034-01-01": 1334.87028072404, - "2033-01-01": 1308.83673063679, - "2032-01-01": 1283.45401930171, - "2031-01-01": 1258.72214671882, - "2030-01-01": 1234.31569351202, - "2029-01-01": 1210.2346596813, - "2028-01-01": 1186.47904522668, - "2027-01-01": 1162.39801139597, - "2026-01-01": 1134.44448698978, - "2025-01-01": 1117.36376630441, - "2024-01-01": 1093.11459912938, - "2023-01-01": 1034, - "2015-01-01": 1034 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1448.1162236036, - "2034-01-01": 1420.0747667277, - "2033-01-01": 1392.37950067743, - "2032-01-01": 1365.37661627842, - "2031-01-01": 1339.06611353066, - "2030-01-01": 1313.10180160853, - "2029-01-01": 1287.48368051203, - "2028-01-01": 1262.21175024115, - "2027-01-01": 1236.59362914465, - "2026-01-01": 1206.85583722317, - "2025-01-01": 1188.68485777065, - "2024-01-01": 1162.88787141424, - "2023-01-01": 1100, - "2015-01-01": 1100 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1527.10438125471, - "2034-01-01": 1497.5333903674, - "2033-01-01": 1468.32747344166, - "2032-01-01": 1439.85170443906, - "2031-01-01": 1412.1060833596, - "2030-01-01": 1384.72553624172, - "2029-01-01": 1357.71006308541, - "2028-01-01": 1331.05966389067, - "2027-01-01": 1304.04419073436, - "2026-01-01": 1272.68433743535, - "2025-01-01": 1253.52221364905, - "2024-01-01": 1226.31811894592, - "2023-01-01": 1160, - "2015-01-01": 1160 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1598.19372314071, - "2034-01-01": 1567.24615164312, - "2033-01-01": 1536.68064892946, - "2032-01-01": 1506.87928378363, - "2031-01-01": 1477.84205620565, - "2030-01-01": 1449.18689741159, - "2029-01-01": 1420.91380740145, - "2028-01-01": 1393.02278617524, - "2027-01-01": 1364.7496961651, - "2026-01-01": 1331.9299876263, - "2025-01-01": 1311.8758339396, - "2024-01-01": 1283.40534172444, - "2023-01-01": 1214, - "2015-01-01": 1214 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1665.33365714415, - "2034-01-01": 1633.08598173686, - "2033-01-01": 1601.23642577905, - "2032-01-01": 1570.18310872018, - "2031-01-01": 1539.92603056026, - "2030-01-01": 1510.06707184981, - "2029-01-01": 1480.60623258883, - "2028-01-01": 1451.54351277733, - "2027-01-01": 1422.08267351635, - "2026-01-01": 1387.88421280665, - "2025-01-01": 1366.98758643624, - "2024-01-01": 1337.32105212637, - "2023-01-01": 1265, - "2015-01-01": 1265 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1753.53709985455, - "2034-01-01": 1719.58144480118, - "2033-01-01": 1686.04499536576, - "2032-01-01": 1653.34695716623, - "2031-01-01": 1621.48733020258, - "2030-01-01": 1590.04690885687, - "2029-01-01": 1559.02569312911, - "2028-01-01": 1528.42368301929, - "2027-01-01": 1497.40246729152, - "2026-01-01": 1461.39270471024, - "2025-01-01": 1439.38930050046, - "2024-01-01": 1408.15149520342, - "2023-01-01": 1332, - "2015-01-01": 1332 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1865.43698986028, - "2034-01-01": 1829.31449495742, - "2033-01-01": 1793.63795678175, - "2032-01-01": 1758.85333206047, - "2031-01-01": 1724.96062079358, - "2030-01-01": 1691.5138662539, - "2029-01-01": 1658.5130684414, - "2028-01-01": 1625.9582273561, - "2027-01-01": 1592.95742954361, - "2026-01-01": 1554.64974667749, - "2025-01-01": 1531.24222132819, - "2024-01-01": 1498.01101253998, - "2023-01-01": 1417, - "2015-01-01": 1417 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1968.12159480672, - "2034-01-01": 1930.01070568902, - "2033-01-01": 1892.37032137524, - "2032-01-01": 1855.6709466693, - "2031-01-01": 1819.91258157121, - "2030-01-01": 1784.62472127705, - "2029-01-01": 1749.8073657868, - "2028-01-01": 1715.46051510048, - "2027-01-01": 1680.64315961023, - "2026-01-01": 1640.22679695331, - "2025-01-01": 1615.53078397011, - "2024-01-01": 1580.47033433117, - "2023-01-01": 1495, - "2015-01-01": 1495 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2061.59091469386, - "2034-01-01": 2021.67007699599, - "2033-01-01": 1982.24208914623, - "2032-01-01": 1943.79980099273, - "2031-01-01": 1906.34321253546, - "2030-01-01": 1869.37947392632, - "2029-01-01": 1832.9085851653, - "2028-01-01": 1796.93054625241, - "2027-01-01": 1760.45965749139, - "2026-01-01": 1718.12385553772, - "2025-01-01": 1692.25498842621, - "2024-01-01": 1655.52946057699, - "2023-01-01": 1566, - "2015-01-01": 1566 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2149.79435740426, - "2034-01-01": 2108.16554006031, - "2033-01-01": 2067.05065873295, - "2032-01-01": 2026.96364943878, - "2031-01-01": 1987.90451217779, - "2030-01-01": 1949.35931093339, - "2029-01-01": 1911.32804570558, - "2028-01-01": 1873.81071649437, - "2027-01-01": 1835.77945126656, - "2026-01-01": 1791.63234744131, - "2025-01-01": 1764.65670249042, - "2024-01-01": 1726.35990365404, - "2023-01-01": 1633, - "2015-01-01": 1633 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2239.31426940885, - "2034-01-01": 2195.9519801853, - "2033-01-01": 2153.12502786574, - "2032-01-01": 2111.36874935417, - "2031-01-01": 2070.68314465059, - "2030-01-01": 2030.53287685101, - "2029-01-01": 1990.91794595542, - "2028-01-01": 1951.83835196382, - "2027-01-01": 1912.22342106823, - "2026-01-01": 1866.2379810151, - "2025-01-01": 1838.13903915261, - "2024-01-01": 1798.24751752329, - "2023-01-01": 1701, - "2015-01-01": 1701 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2335.41652788436, - "2034-01-01": 2290.19330561359, - "2033-01-01": 2245.52839472888, - "2032-01-01": 2201.98010661628, - "2031-01-01": 2159.54844127581, - "2030-01-01": 2117.67508732139, - "2029-01-01": 2076.36004475303, - "2028-01-01": 2035.60331357073, - "2027-01-01": 1994.28827100237, - "2026-01-01": 1946.32932293992, - "2025-01-01": 1917.02448880466, - "2024-01-01": 1875.4209853535, - "2023-01-01": 1774, - "2015-01-01": 1774 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2424.93643988895, - "2034-01-01": 2377.97974573857, - "2033-01-01": 2331.60276386166, - "2032-01-01": 2286.38520653168, - "2031-01-01": 2242.32707374861, - "2030-01-01": 2198.84865323901, - "2029-01-01": 2155.94994500287, - "2028-01-01": 2113.63094904019, - "2027-01-01": 2070.73224080404, - "2026-01-01": 2020.93495651371, - "2025-01-01": 1990.50682546685, - "2024-01-01": 1947.30859922275, - "2023-01-01": 1842, - "2015-01-01": 1842 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2509.19047471679, - "2034-01-01": 2460.60227762091, - "2033-01-01": 2412.61393481017, - "2032-01-01": 2365.82530056969, - "2031-01-01": 2320.23637489949, - "2030-01-01": 2275.24730351441, - "2029-01-01": 2230.85808641447, - "2028-01-01": 2187.06872359967, - "2027-01-01": 2142.67950649973, - "2026-01-01": 2091.1520234067, - "2025-01-01": 2059.66667173714, - "2024-01-01": 2014.96752992321, - "2023-01-01": 1906, - "2015-01-01": 1906 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2993.65117497691, - "2034-01-01": 2935.68183594436, - "2033-01-01": 2878.42816776407, - "2032-01-01": 2822.60584128829, - "2031-01-01": 2768.21485651702, - "2030-01-01": 2714.53954259799, - "2029-01-01": 2661.57989953123, - "2028-01-01": 2609.33592731671, - "2027-01-01": 2556.37628424994, - "2026-01-01": 2494.90015804136, - "2025-01-01": 2457.33578779132, - "2024-01-01": 2404.00638145089, - "2023-01-01": 2274, - "2015-01-01": 2274 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 799.096861570353, - "2034-01-01": 783.62307582156, - "2033-01-01": 768.340324464728, - "2032-01-01": 753.439641891817, - "2031-01-01": 738.921028102827, - "2030-01-01": 724.593448705797, - "2029-01-01": 710.456903700727, - "2028-01-01": 696.511393087618, - "2027-01-01": 682.374848082549, - "2026-01-01": 665.96499381315, - "2025-01-01": 655.937916969802, - "2024-01-01": 641.70267086222, - "2023-01-01": 607, - "2015-01-01": 607 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1091.35304487944, - "2034-01-01": 1070.21998328842, - "2033-01-01": 1049.34782369236, - "2032-01-01": 1028.99746808619, - "2031-01-01": 1009.16891646992, - "2030-01-01": 989.601266848609, - "2029-01-01": 970.294519222245, - "2028-01-01": 951.248673590833, - "2027-01-01": 931.941925964469, - "2026-01-01": 909.530444598191, - "2025-01-01": 895.836133719878, - "2024-01-01": 876.394586729456, - "2023-01-01": 829, - "2015-01-01": 829 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1233.53172865143, - "2034-01-01": 1209.64550583987, - "2033-01-01": 1186.05417466796, - "2032-01-01": 1163.05262677534, - "2031-01-01": 1140.64086216202, - "2030-01-01": 1118.52398918836, - "2029-01-01": 1096.70200785434, - "2028-01-01": 1075.17491815996, - "2027-01-01": 1053.35293682594, - "2026-01-01": 1028.0217449801, - "2025-01-01": 1012.543374301, - "2024-01-01": 990.569032286491, - "2023-01-01": 937, - "2015-01-01": 937 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1353.33043442228, - "2034-01-01": 1327.12441836007, - "2033-01-01": 1301.24193336036, - "2032-01-01": 1276.00651048565, - "2031-01-01": 1251.41814973592, - "2030-01-01": 1227.1533200487, - "2029-01-01": 1203.21202142397, - "2028-01-01": 1179.59425386173, - "2027-01-01": 1155.652955237, - "2026-01-01": 1127.86163696856, - "2025-01-01": 1110.88003071657, - "2024-01-01": 1086.77157437621, - "2023-01-01": 1028, - "2015-01-01": 1028 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1457.3315086629, - "2034-01-01": 1429.11160615233, - "2033-01-01": 1401.24009749992, - "2032-01-01": 1374.06537656382, - "2031-01-01": 1347.58744334404, - "2030-01-01": 1321.4579039824, - "2029-01-01": 1295.67675847892, - "2028-01-01": 1270.2440068336, - "2027-01-01": 1244.46286133012, - "2026-01-01": 1214.53582891459, - "2025-01-01": 1196.24921595646, - "2024-01-01": 1170.2880669596, - "2023-01-01": 1107, - "2015-01-01": 1107 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1550.80082855004, - "2034-01-01": 1520.77097745931, - "2033-01-01": 1491.11186527092, - "2032-01-01": 1462.19423088725, - "2031-01-01": 1434.01807430829, - "2030-01-01": 1406.21265663168, - "2029-01-01": 1378.77797785742, - "2028-01-01": 1351.71403798553, - "2027-01-01": 1324.27935921127, - "2026-01-01": 1292.432887499, - "2025-01-01": 1272.97342041257, - "2024-01-01": 1245.34719320543, - "2023-01-01": 1178, - "2015-01-01": 1178 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1633.7383940837, - "2034-01-01": 1602.10253228098, - "2033-01-01": 1570.85723667336, - "2032-01-01": 1540.39307345592, - "2031-01-01": 1510.71004262868, - "2030-01-01": 1481.41757799653, - "2029-01-01": 1452.51567955948, - "2028-01-01": 1424.00434731752, - "2027-01-01": 1395.10244888047, - "2026-01-01": 1361.55281272178, - "2025-01-01": 1341.05264408488, - "2024-01-01": 1311.9489531137, - "2023-01-01": 1241, - "2015-01-01": 1241 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1710.09361314644, - "2034-01-01": 1676.97920179935, - "2033-01-01": 1644.27361034544, - "2032-01-01": 1612.38565867788, - "2031-01-01": 1581.31534679666, - "2030-01-01": 1550.65385480862, - "2029-01-01": 1520.40118271375, - "2028-01-01": 1490.55733051205, - "2027-01-01": 1460.30465841718, - "2026-01-01": 1425.18702959355, - "2025-01-01": 1403.72875476734, - "2024-01-01": 1373.26485906099, - "2023-01-01": 1299, - "2015-01-01": 1299 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1781.18295503243, - "2034-01-01": 1746.69196307508, - "2033-01-01": 1712.62678583324, - "2032-01-01": 1679.41323802245, - "2031-01-01": 1647.05131964271, - "2030-01-01": 1615.11521597849, - "2029-01-01": 1583.60492702979, - "2028-01-01": 1552.52045279662, - "2027-01-01": 1521.01016384792, - "2026-01-01": 1484.4326797845, - "2025-01-01": 1462.0823750579, - "2024-01-01": 1430.35208183951, - "2023-01-01": 1353, - "2015-01-01": 1353 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1875.96874421376, - "2034-01-01": 1839.64231144271, - "2033-01-01": 1803.76435315031, - "2032-01-01": 1768.78334381522, - "2031-01-01": 1734.69928343744, - "2030-01-01": 1701.06369753832, - "2029-01-01": 1667.87658611785, - "2028-01-01": 1635.13794917604, - "2027-01-01": 1601.95083775557, - "2026-01-01": 1563.42688003911, - "2025-01-01": 1539.88720211197, - "2024-01-01": 1506.46837887753, - "2023-01-01": 1425, - "2015-01-01": 1425 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1995.7674499846, - "2034-01-01": 1957.12122396291, - "2033-01-01": 1918.95211184272, - "2032-01-01": 1881.73722752553, - "2031-01-01": 1845.47657101134, - "2030-01-01": 1809.69302839866, - "2029-01-01": 1774.38659968748, - "2028-01-01": 1739.55728487781, - "2027-01-01": 1704.25085616663, - "2026-01-01": 1663.26677202757, - "2025-01-01": 1638.22385852755, - "2024-01-01": 1602.67092096726, - "2023-01-01": 1516, - "2015-01-01": 1516 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2105.03440140197, - "2034-01-01": 2064.27231999782, - "2033-01-01": 2024.01347416656, - "2032-01-01": 1984.76109948108, - "2031-01-01": 1946.51519594138, - "2030-01-01": 1908.77252797458, - "2029-01-01": 1871.53309558066, - "2028-01-01": 1834.79689875964, - "2027-01-01": 1797.55746636573, - "2026-01-01": 1754.32953065441, - "2025-01-01": 1727.91553415933, - "2024-01-01": 1690.41609671942, - "2023-01-01": 1599, - "2015-01-01": 1599 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2205.08606776003, - "2034-01-01": 2162.3865766081, - "2033-01-01": 2120.21423966791, - "2032-01-01": 2079.09621115123, - "2031-01-01": 2039.03249105805, - "2030-01-01": 1999.49592517662, - "2029-01-01": 1960.48651350695, - "2028-01-01": 1922.00425604903, - "2027-01-01": 1882.99484437936, - "2026-01-01": 1837.71229758983, - "2025-01-01": 1810.0428516053, - "2024-01-01": 1770.76107692622, - "2023-01-01": 1675, - "2015-01-01": 1675 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2298.55538764718, - "2034-01-01": 2254.04594791507, - "2033-01-01": 2210.08600743891, - "2032-01-01": 2167.22506547465, - "2031-01-01": 2125.4631220223, - "2030-01-01": 2084.2506778259, - "2029-01-01": 2043.58773288545, - "2028-01-01": 2003.47428720096, - "2027-01-01": 1962.81134226051, - "2026-01-01": 1915.60935617423, - "2025-01-01": 1886.76705606141, - "2024-01-01": 1845.82020317205, - "2023-01-01": 1746, - "2015-01-01": 1746 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2394.65764612269, - "2034-01-01": 2348.28727334336, - "2033-01-01": 2302.48937430204, - "2032-01-01": 2257.83642273676, - "2031-01-01": 2214.32841864752, - "2030-01-01": 2171.39288829628, - "2029-01-01": 2129.02983168307, - "2028-01-01": 2087.23924880787, - "2027-01-01": 2044.87619219466, - "2026-01-01": 1995.70069809905, - "2025-01-01": 1965.65250571346, - "2024-01-01": 1922.99367100227, - "2023-01-01": 1819, - "2015-01-01": 1819 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2496.02578177494, - "2034-01-01": 2447.6925070143, - "2033-01-01": 2399.95593934946, - "2032-01-01": 2353.41278587625, - "2031-01-01": 2308.06304659466, - "2030-01-01": 2263.31001440888, - "2029-01-01": 2219.15368931891, - "2028-01-01": 2175.59407132475, - "2027-01-01": 2131.43774623478, - "2026-01-01": 2080.18060670467, - "2025-01-01": 2048.86044575741, - "2024-01-01": 2004.39582200127, - "2023-01-01": 1896, - "2015-01-01": 1896 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2590.81157095627, - "2034-01-01": 2540.64285538193, - "2033-01-01": 2491.09350666653, - "2032-01-01": 2442.78289166902, - "2031-01-01": 2395.7110103894, - "2030-01-01": 2349.25849596871, - "2029-01-01": 2303.42534840697, - "2028-01-01": 2258.21156770417, - "2027-01-01": 2212.37842014243, - "2026-01-01": 2159.17480695928, - "2025-01-01": 2126.66527281148, - "2024-01-01": 2080.51211903929, - "2023-01-01": 1968, - "2015-01-01": 1968 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2681.64795225504, - "2034-01-01": 2629.72027256758, - "2033-01-01": 2578.43367534539, - "2032-01-01": 2528.42924305376, - "2031-01-01": 2479.70697569268, - "2030-01-01": 2431.62579079688, - "2029-01-01": 2384.18568836636, - "2028-01-01": 2337.38666840112, - "2027-01-01": 2289.9465659706, - "2026-01-01": 2234.87758220327, - "2025-01-01": 2201.22823207164, - "2024-01-01": 2153.45690370073, - "2023-01-01": 2037, - "2015-01-01": 2037 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3197.7039155756, - "2034-01-01": 3135.7832803469, - "2033-01-01": 3074.62709740498, - "2032-01-01": 3014.99981903661, - "2031-01-01": 2956.90144524179, - "2030-01-01": 2899.56752373374, - "2029-01-01": 2842.99805451247, - "2028-01-01": 2787.19303757796, - "2027-01-01": 2730.62356835669, - "2026-01-01": 2664.9571169228, - "2025-01-01": 2624.83229047718, - "2024-01-01": 2567.86785424107, - "2023-01-01": 2429, - "2015-01-01": 2429 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 843.856817572646, - "2034-01-01": 827.516295884053, - "2033-01-01": 811.377509031122, - "2032-01-01": 795.642191849514, - "2031-01-01": 780.310344339229, - "2030-01-01": 765.180231664606, - "2029-01-01": 750.251853825644, - "2028-01-01": 735.525210822345, - "2027-01-01": 720.596832983383, - "2026-01-01": 703.267810600048, - "2025-01-01": 692.679085300895, - "2024-01-01": 677.646477796841, - "2023-01-01": 641, - "2015-01-01": 641 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1150.59416311777, - "2034-01-01": 1128.31395101819, - "2033-01-01": 1106.30880326552, - "2032-01-01": 1084.85378420667, - "2031-01-01": 1063.94889384163, - "2030-01-01": 1043.3190678235, - "2029-01-01": 1022.96430615228, - "2028-01-01": 1002.88460882797, - "2027-01-01": 982.52984715675, - "2026-01-01": 958.90181975732, - "2025-01-01": 944.464150628677, - "2024-01-01": 923.967272378221, - "2023-01-01": 874, - "2015-01-01": 874 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1301.98813194906, - "2034-01-01": 1276.77631299427, - "2033-01-01": 1251.87575106362, - "2032-01-01": 1227.59770318123, - "2031-01-01": 1203.94216934711, - "2030-01-01": 1180.59789253712, - "2029-01-01": 1157.56487275127, - "2028-01-01": 1134.84310998955, - "2027-01-01": 1111.81009020369, - "2026-01-01": 1085.07311183065, - "2025-01-01": 1068.73574939561, - "2024-01-01": 1045.54191348062, - "2023-01-01": 989, - "2015-01-01": 989 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1428.36918419083, - "2034-01-01": 1400.71011081778, - "2033-01-01": 1373.39250748638, - "2032-01-01": 1346.75784423826, - "2031-01-01": 1320.80612107342, - "2030-01-01": 1295.19586795023, - "2029-01-01": 1269.92708486868, - "2028-01-01": 1244.99977182877, - "2027-01-01": 1219.73098874722, - "2026-01-01": 1190.39871217013, - "2025-01-01": 1172.47551880105, - "2024-01-01": 1147.03030953132, - "2023-01-01": 1085, - "2015-01-01": 1085 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1537.63613560819, - "2034-01-01": 1507.86120685269, - "2033-01-01": 1478.45386981022, - "2032-01-01": 1449.78171619381, - "2031-01-01": 1421.84474600346, - "2030-01-01": 1394.27536752615, - "2029-01-01": 1367.07358076186, - "2028-01-01": 1340.23938571061, - "2027-01-01": 1313.03759894632, - "2026-01-01": 1281.46147079697, - "2025-01-01": 1262.16719443283, - "2024-01-01": 1234.77548528348, - "2023-01-01": 1168, - "2015-01-01": 1168 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1635.05486337789, - "2034-01-01": 1603.39350934164, - "2033-01-01": 1572.12303621943, - "2032-01-01": 1541.63432492527, - "2031-01-01": 1511.92737545916, - "2030-01-01": 1482.61130690708, - "2029-01-01": 1453.68611926903, - "2028-01-01": 1425.15181254501, - "2027-01-01": 1396.22662490696, - "2026-01-01": 1362.64995439198, - "2025-01-01": 1342.13326668286, - "2024-01-01": 1313.00612390589, - "2023-01-01": 1242, - "2015-01-01": 1242 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1723.25830608829, - "2034-01-01": 1689.88897240597, - "2033-01-01": 1656.93160580614, - "2032-01-01": 1624.79817337132, - "2031-01-01": 1593.48867510148, - "2030-01-01": 1562.59114391415, - "2029-01-01": 1532.10557980931, - "2028-01-01": 1502.03198278697, - "2027-01-01": 1471.54641868214, - "2026-01-01": 1436.15844629557, - "2025-01-01": 1414.53498074707, - "2024-01-01": 1383.83656698294, - "2023-01-01": 1309, - "2015-01-01": 1309 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1803.56293303358, - "2034-01-01": 1768.63857310632, - "2033-01-01": 1734.14537811644, - "2032-01-01": 1700.5145130013, - "2031-01-01": 1667.74597776091, - "2030-01-01": 1635.40860745789, - "2029-01-01": 1603.50240209225, - "2028-01-01": 1572.02736166398, - "2027-01-01": 1540.12115629834, - "2026-01-01": 1503.08408817795, - "2025-01-01": 1480.45295922344, - "2024-01-01": 1448.32398530682, - "2023-01-01": 1370, - "2015-01-01": 1370 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1878.60168280213, - "2034-01-01": 1842.22426556403, - "2033-01-01": 1806.29595224245, - "2032-01-01": 1771.26584675391, - "2031-01-01": 1737.13394909841, - "2030-01-01": 1703.45115535943, - "2029-01-01": 1670.21746553697, - "2028-01-01": 1637.43287963102, - "2027-01-01": 1604.19918980856, - "2026-01-01": 1565.62116337951, - "2025-01-01": 1542.04844730792, - "2024-01-01": 1508.58272046192, - "2023-01-01": 1427, - "2015-01-01": 1427 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1977.33687986601, - "2034-01-01": 1939.04754511365, - "2033-01-01": 1901.23091819773, - "2032-01-01": 1864.35970695471, - "2031-01-01": 1828.43391138459, - "2030-01-01": 1792.98082365092, - "2029-01-01": 1758.00044375369, - "2028-01-01": 1723.49277169292, - "2027-01-01": 1688.5123917957, - "2026-01-01": 1647.90678864473, - "2025-01-01": 1623.09514215592, - "2024-01-01": 1587.87052987653, - "2023-01-01": 1502, - "2015-01-01": 1502 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2102.4014628136, - "2034-01-01": 2061.69036587649, - "2033-01-01": 2021.48187507442, - "2032-01-01": 1982.27859654239, - "2031-01-01": 1944.08053028042, - "2030-01-01": 1906.38507015347, - "2029-01-01": 1869.19221616155, - "2028-01-01": 1832.50196830466, - "2027-01-01": 1795.30911431274, - "2026-01-01": 1752.13524731401, - "2025-01-01": 1725.75428896338, - "2024-01-01": 1688.30175513503, - "2023-01-01": 1597, - "2015-01-01": 1597 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2218.25076070189, - "2034-01-01": 2175.29634721471, - "2033-01-01": 2132.87223512861, - "2032-01-01": 2091.50872584467, - "2031-01-01": 2051.20581936287, - "2030-01-01": 2011.43321428216, - "2029-01-01": 1972.19091060251, - "2028-01-01": 1933.47890832395, - "2027-01-01": 1894.23660464431, - "2026-01-01": 1848.68371429186, - "2025-01-01": 1820.84907758504, - "2024-01-01": 1781.33278484817, - "2023-01-01": 1685, - "2015-01-01": 1685 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2323.56830423669, - "2034-01-01": 2278.57451206763, - "2033-01-01": 2234.13619881424, - "2032-01-01": 2190.80884339219, - "2031-01-01": 2148.59244580147, - "2030-01-01": 2106.93152712641, - "2029-01-01": 2065.82608736702, - "2028-01-01": 2025.2761265233, - "2027-01-01": 1984.17068676392, - "2026-01-01": 1936.45504790809, - "2025-01-01": 1907.2988854229, - "2024-01-01": 1865.90644822375, - "2023-01-01": 1765, - "2015-01-01": 1765 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2420.98703200639, - "2034-01-01": 2374.10681455659, - "2033-01-01": 2327.80536522345, - "2032-01-01": 2282.66145212364, - "2031-01-01": 2238.67507525716, - "2030-01-01": 2195.26746650735, - "2029-01-01": 2152.4386258742, - "2028-01-01": 2110.18855335771, - "2027-01-01": 2067.35971272456, - "2026-01-01": 2017.6435315031, - "2025-01-01": 1987.26495767293, - "2024-01-01": 1944.13708684616, - "2023-01-01": 1839, - "2015-01-01": 1839 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2522.35516765864, - "2034-01-01": 2473.51204822753, - "2033-01-01": 2425.27193027087, - "2032-01-01": 2378.23781526313, - "2031-01-01": 2332.40970320431, - "2030-01-01": 2287.18459261995, - "2029-01-01": 2242.56248351004, - "2028-01-01": 2198.54337587459, - "2027-01-01": 2153.92126676468, - "2026-01-01": 2102.12344010873, - "2025-01-01": 2070.47289771687, - "2024-01-01": 2025.53923784516, - "2023-01-01": 1916, - "2015-01-01": 1916 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2628.98918048764, - "2034-01-01": 2578.08119014111, - "2033-01-01": 2527.80169350257, - "2032-01-01": 2478.77918428, - "2031-01-01": 2431.01366247339, - "2030-01-01": 2383.87663437476, - "2029-01-01": 2337.36809998411, - "2028-01-01": 2291.48805930144, - "2027-01-01": 2244.97952491079, - "2026-01-01": 2190.99191539516, - "2025-01-01": 2158.00332815271, - "2024-01-01": 2111.17007201294, - "2023-01-01": 1997, - "2015-01-01": 1997 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2729.0408468457, - "2034-01-01": 2676.19544675139, - "2033-01-01": 2624.00245900392, - "2032-01-01": 2573.11429595014, - "2031-01-01": 2523.53095759005, - "2030-01-01": 2474.6000315768, - "2029-01-01": 2426.32151791039, - "2028-01-01": 2378.69541659083, - "2027-01-01": 2330.41690292442, - "2026-01-01": 2274.37468233058, - "2025-01-01": 2240.13064559868, - "2024-01-01": 2191.51505221974, - "2023-01-01": 2073, - "2015-01-01": 2073 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2823.82663602703, - "2034-01-01": 2769.14579511902, - "2033-01-01": 2715.14002632099, - "2032-01-01": 2662.48440174291, - "2031-01-01": 2611.17892138478, - "2030-01-01": 2560.54851313663, - "2029-01-01": 2510.59317699845, - "2028-01-01": 2461.31291297025, - "2027-01-01": 2411.35757683207, - "2026-01-01": 2353.36888258519, - "2025-01-01": 2317.93547265276, - "2024-01-01": 2267.63134925776, - "2023-01-01": 2145, - "2015-01-01": 2145 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3366.21198523129, - "2034-01-01": 3301.02834411158, - "2033-01-01": 3236.64943930199, - "2032-01-01": 3173.88000711265, - "2031-01-01": 3112.72004754354, - "2030-01-01": 3052.36482428455, - "2029-01-01": 2992.81433733568, - "2028-01-01": 2934.06858669693, - "2027-01-01": 2874.51809974807, - "2026-01-01": 2805.39125070877, - "2025-01-01": 2763.15198301777, - "2024-01-01": 2703.185715642, - "2023-01-01": 2557, - "2015-01-01": 2557 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 907.047343693531, - "2034-01-01": 889.483194795807, - "2033-01-01": 872.135887242501, - "2032-01-01": 855.222262378026, - "2031-01-01": 838.742320202385, - "2030-01-01": 822.47921937116, - "2029-01-01": 806.432959884351, - "2028-01-01": 790.603541741959, - "2027-01-01": 774.55728225515, - "2026-01-01": 755.930610769787, - "2025-01-01": 744.548970003614, - "2024-01-01": 728.39067582219, - "2023-01-01": 689, - "2015-01-01": 689 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1236.1646672398, - "2034-01-01": 1212.22745996119, - "2033-01-01": 1188.5857737601, - "2032-01-01": 1165.53512971403, - "2031-01-01": 1143.07552782299, - "2030-01-01": 1120.91144700946, - "2029-01-01": 1099.04288727345, - "2028-01-01": 1077.46984861495, - "2027-01-01": 1055.60128887893, - "2026-01-01": 1030.21602832051, - "2025-01-01": 1014.70461949694, - "2024-01-01": 992.68337387088, - "2023-01-01": 939, - "2015-01-01": 939 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1396.77392113039, - "2034-01-01": 1369.7266613619, - "2033-01-01": 1343.01331838069, - "2032-01-01": 1316.967808974, - "2031-01-01": 1291.59013314184, - "2030-01-01": 1266.54637409695, - "2029-01-01": 1241.83653183933, - "2028-01-01": 1217.46060636897, - "2027-01-01": 1192.75076411134, - "2026-01-01": 1164.06731208526, - "2025-01-01": 1146.54057644969, - "2024-01-01": 1121.65821051864, - "2023-01-01": 1061, - "2015-01-01": 1061 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1532.37025843145, - "2034-01-01": 1502.69729861004, - "2033-01-01": 1473.39067162594, - "2032-01-01": 1444.81671031643, - "2031-01-01": 1416.97541468153, - "2030-01-01": 1389.50045188393, - "2029-01-01": 1362.39182192364, - "2028-01-01": 1335.64952480064, - "2027-01-01": 1308.54089484034, - "2026-01-01": 1277.07290411616, - "2025-01-01": 1257.84470404094, - "2024-01-01": 1230.5468021147, - "2023-01-01": 1164, - "2015-01-01": 1164 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1649.53602561392, - "2034-01-01": 1617.59425700892, - "2033-01-01": 1586.0468312262, - "2032-01-01": 1555.28809108805, - "2031-01-01": 1525.31803659447, - "2030-01-01": 1495.74232492317, - "2029-01-01": 1466.56095607415, - "2028-01-01": 1437.77393004742, - "2027-01-01": 1408.59256119841, - "2026-01-01": 1374.71851276421, - "2025-01-01": 1354.02011526056, - "2024-01-01": 1324.63500262003, - "2023-01-01": 1253, - "2015-01-01": 1253 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1753.53709985455, - "2034-01-01": 1719.58144480118, - "2033-01-01": 1686.04499536576, - "2032-01-01": 1653.34695716623, - "2031-01-01": 1621.48733020258, - "2030-01-01": 1590.04690885687, - "2029-01-01": 1559.02569312911, - "2028-01-01": 1528.42368301929, - "2027-01-01": 1497.40246729152, - "2026-01-01": 1461.39270471024, - "2025-01-01": 1439.38930050046, - "2024-01-01": 1408.15149520342, - "2023-01-01": 1332, - "2015-01-01": 1332 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1847.00641974169, - "2034-01-01": 1811.24081610815, - "2033-01-01": 1775.91676313676, - "2032-01-01": 1741.47581148965, - "2031-01-01": 1707.91796116683, - "2030-01-01": 1674.80166150615, - "2029-01-01": 1642.12691250761, - "2028-01-01": 1609.89371417122, - "2027-01-01": 1577.21896517268, - "2026-01-01": 1539.28976329465, - "2025-01-01": 1516.11350495656, - "2024-01-01": 1483.21062144925, - "2023-01-01": 1403, - "2015-01-01": 1403 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1933.89339315791, - "2034-01-01": 1896.44530211182, - "2033-01-01": 1859.45953317741, - "2032-01-01": 1823.39840846636, - "2031-01-01": 1788.26192797867, - "2030-01-01": 1753.58776960266, - "2029-01-01": 1719.37593333833, - "2028-01-01": 1685.62641918569, - "2027-01-01": 1651.41458292136, - "2026-01-01": 1611.70111352804, - "2025-01-01": 1587.4345964228, - "2024-01-01": 1552.9838937341, - "2023-01-01": 1469, - "2015-01-01": 1469 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2014.1980201032, - "2034-01-01": 1975.19490281217, - "2033-01-01": 1936.6733054877, - "2032-01-01": 1899.11474809634, - "2031-01-01": 1862.5192306381, - "2030-01-01": 1826.40523314641, - "2029-01-01": 1790.77275562127, - "2028-01-01": 1755.62179806269, - "2027-01-01": 1719.98932053756, - "2026-01-01": 1678.62675541041, - "2025-01-01": 1653.35257489917, - "2024-01-01": 1617.47131205798, - "2023-01-01": 1530, - "2015-01-01": 1530 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2118.19909434382, - "2034-01-01": 2077.18209060443, - "2033-01-01": 2036.67146962726, - "2032-01-01": 1997.17361417452, - "2031-01-01": 1958.68852424621, - "2030-01-01": 1920.70981708011, - "2029-01-01": 1883.23749267623, - "2028-01-01": 1846.27155103456, - "2027-01-01": 1808.79922663068, - "2026-01-01": 1765.30094735644, - "2025-01-01": 1738.72176013906, - "2024-01-01": 1700.98780464137, - "2023-01-01": 1609, - "2015-01-01": 1609 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2253.79543164488, - "2034-01-01": 2210.15272785257, - "2033-01-01": 2167.04882287251, - "2032-01-01": 2125.02251551695, - "2031-01-01": 2084.0738057859, - "2030-01-01": 2043.66389486709, - "2029-01-01": 2003.79278276054, - "2028-01-01": 1964.46046946623, - "2027-01-01": 1924.58935735968, - "2026-01-01": 1878.30653938734, - "2025-01-01": 1850.02588773032, - "2024-01-01": 1809.87639623743, - "2023-01-01": 1712, - "2015-01-01": 1712 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2376.2270760041, - "2034-01-01": 2330.2135944941, - "2033-01-01": 2284.76818065706, - "2032-01-01": 2240.45890216595, - "2031-01-01": 2197.28575902076, - "2030-01-01": 2154.68068354854, - "2029-01-01": 2112.64367574928, - "2028-01-01": 2071.17473562298, - "2027-01-01": 2029.13772782372, - "2026-01-01": 1980.3407147162, - "2025-01-01": 1950.52378934183, - "2024-01-01": 1908.19327991154, - "2023-01-01": 1805, - "2015-01-01": 1805 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2489.44343530402, - "2034-01-01": 2441.23762171099, - "2033-01-01": 2393.62694161911, - "2032-01-01": 2347.20652852953, - "2031-01-01": 2301.97638244225, - "2030-01-01": 2257.34136985612, - "2029-01-01": 2213.30149077113, - "2028-01-01": 2169.85674518729, - "2027-01-01": 2125.81686610231, - "2026-01-01": 2074.69489835365, - "2025-01-01": 2043.45733276754, - "2024-01-01": 1999.10996804029, - "2023-01-01": 1891, - "2015-01-01": 1891 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2593.44450954464, - "2034-01-01": 2543.22480950325, - "2033-01-01": 2493.62510575867, - "2032-01-01": 2445.26539460771, - "2031-01-01": 2398.14567605036, - "2030-01-01": 2351.64595378982, - "2029-01-01": 2305.76622782608, - "2028-01-01": 2260.50649815916, - "2027-01-01": 2214.62677219542, - "2026-01-01": 2161.36909029968, - "2025-01-01": 2128.82651800743, - "2024-01-01": 2082.62646062368, - "2023-01-01": 1970, - "2015-01-01": 1970 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2701.39499166782, - "2034-01-01": 2649.0849284775, - "2033-01-01": 2597.42066853645, - "2032-01-01": 2547.04801509392, - "2031-01-01": 2497.96696814992, - "2030-01-01": 2449.53172445518, - "2029-01-01": 2401.74228400971, - "2028-01-01": 2354.5986468135, - "2027-01-01": 2306.80920636802, - "2026-01-01": 2251.33470725632, - "2025-01-01": 2217.43757104124, - "2024-01-01": 2169.31446558365, - "2023-01-01": 2052, - "2015-01-01": 2052 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2815.92782026192, - "2034-01-01": 2761.39993275505, - "2033-01-01": 2707.54522904457, - "2032-01-01": 2655.03689292685, - "2031-01-01": 2603.87492440189, - "2030-01-01": 2553.38613967331, - "2029-01-01": 2503.57053874111, - "2028-01-01": 2454.4281216053, - "2027-01-01": 2404.6125206731, - "2026-01-01": 2346.78603256397, - "2025-01-01": 2311.45173706492, - "2024-01-01": 2261.28832450459, - "2023-01-01": 2139, - "2015-01-01": 2139 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2922.56183309091, - "2034-01-01": 2865.96907466864, - "2033-01-01": 2810.07499227627, - "2032-01-01": 2755.57826194371, - "2031-01-01": 2702.47888367097, - "2030-01-01": 2650.07818142812, - "2029-01-01": 2598.37615521518, - "2028-01-01": 2547.37280503215, - "2027-01-01": 2495.67077881921, - "2026-01-01": 2435.6545078504, - "2025-01-01": 2398.98216750076, - "2024-01-01": 2346.91915867237, - "2023-01-01": 2220, - "2015-01-01": 2220 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3022.61349944898, - "2034-01-01": 2964.08333127892, - "2033-01-01": 2906.27575777762, - "2032-01-01": 2849.91337361386, - "2031-01-01": 2794.99617878763, - "2030-01-01": 2740.80157863017, - "2029-01-01": 2687.32957314147, - "2028-01-01": 2634.58016232153, - "2027-01-01": 2581.10815683284, - "2026-01-01": 2519.03727478582, - "2025-01-01": 2481.10948494673, - "2024-01-01": 2427.26413887917, - "2023-01-01": 2296, - "2015-01-01": 2296 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.SD.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3601.85998889042, - "2034-01-01": 3532.11323797, - "2033-01-01": 3463.22755804859, - "2032-01-01": 3396.06402012523, - "2031-01-01": 3330.62262419989, - "2030-01-01": 3266.04229927358, - "2029-01-01": 3202.32304534628, - "2028-01-01": 3139.464862418, - "2027-01-01": 3075.7456084907, - "2026-01-01": 3001.77960967509, - "2025-01-01": 2956.58342805499, - "2024-01-01": 2892.41928744486, - "2023-01-01": 2736, - "2015-01-01": 2736 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN", - "description": null, - "label": "TN", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 799.096861570353, - "2034-01-01": 783.62307582156, - "2033-01-01": 768.340324464728, - "2032-01-01": 753.439641891817, - "2031-01-01": 738.921028102827, - "2030-01-01": 724.593448705797, - "2029-01-01": 710.456903700727, - "2028-01-01": 696.511393087618, - "2027-01-01": 682.374848082549, - "2026-01-01": 665.96499381315, - "2025-01-01": 655.937916969802, - "2024-01-01": 641.70267086222, - "2023-01-01": 607, - "2015-01-01": 607 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1091.35304487944, - "2034-01-01": 1070.21998328842, - "2033-01-01": 1049.34782369236, - "2032-01-01": 1028.99746808619, - "2031-01-01": 1009.16891646992, - "2030-01-01": 989.601266848609, - "2029-01-01": 970.294519222245, - "2028-01-01": 951.248673590833, - "2027-01-01": 931.941925964469, - "2026-01-01": 909.530444598191, - "2025-01-01": 895.836133719878, - "2024-01-01": 876.394586729456, - "2023-01-01": 829, - "2015-01-01": 829 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1233.53172865143, - "2034-01-01": 1209.64550583987, - "2033-01-01": 1186.05417466796, - "2032-01-01": 1163.05262677534, - "2031-01-01": 1140.64086216202, - "2030-01-01": 1118.52398918836, - "2029-01-01": 1096.70200785434, - "2028-01-01": 1075.17491815996, - "2027-01-01": 1053.35293682594, - "2026-01-01": 1028.0217449801, - "2025-01-01": 1012.543374301, - "2024-01-01": 990.569032286491, - "2023-01-01": 937, - "2015-01-01": 937 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1353.33043442228, - "2034-01-01": 1327.12441836007, - "2033-01-01": 1301.24193336036, - "2032-01-01": 1276.00651048565, - "2031-01-01": 1251.41814973592, - "2030-01-01": 1227.1533200487, - "2029-01-01": 1203.21202142397, - "2028-01-01": 1179.59425386173, - "2027-01-01": 1155.652955237, - "2026-01-01": 1127.86163696856, - "2025-01-01": 1110.88003071657, - "2024-01-01": 1086.77157437621, - "2023-01-01": 1028, - "2015-01-01": 1028 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1457.3315086629, - "2034-01-01": 1429.11160615233, - "2033-01-01": 1401.24009749992, - "2032-01-01": 1374.06537656382, - "2031-01-01": 1347.58744334404, - "2030-01-01": 1321.4579039824, - "2029-01-01": 1295.67675847892, - "2028-01-01": 1270.2440068336, - "2027-01-01": 1244.46286133012, - "2026-01-01": 1214.53582891459, - "2025-01-01": 1196.24921595646, - "2024-01-01": 1170.2880669596, - "2023-01-01": 1107, - "2015-01-01": 1107 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1550.80082855004, - "2034-01-01": 1520.77097745931, - "2033-01-01": 1491.11186527092, - "2032-01-01": 1462.19423088725, - "2031-01-01": 1434.01807430829, - "2030-01-01": 1406.21265663168, - "2029-01-01": 1378.77797785742, - "2028-01-01": 1351.71403798553, - "2027-01-01": 1324.27935921127, - "2026-01-01": 1292.432887499, - "2025-01-01": 1272.97342041257, - "2024-01-01": 1245.34719320543, - "2023-01-01": 1178, - "2015-01-01": 1178 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1633.7383940837, - "2034-01-01": 1602.10253228098, - "2033-01-01": 1570.85723667336, - "2032-01-01": 1540.39307345592, - "2031-01-01": 1510.71004262868, - "2030-01-01": 1481.41757799653, - "2029-01-01": 1452.51567955948, - "2028-01-01": 1424.00434731752, - "2027-01-01": 1395.10244888047, - "2026-01-01": 1361.55281272178, - "2025-01-01": 1341.05264408488, - "2024-01-01": 1311.9489531137, - "2023-01-01": 1241, - "2015-01-01": 1241 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1710.09361314644, - "2034-01-01": 1676.97920179935, - "2033-01-01": 1644.27361034544, - "2032-01-01": 1612.38565867788, - "2031-01-01": 1581.31534679666, - "2030-01-01": 1550.65385480862, - "2029-01-01": 1520.40118271375, - "2028-01-01": 1490.55733051205, - "2027-01-01": 1460.30465841718, - "2026-01-01": 1425.18702959355, - "2025-01-01": 1403.72875476734, - "2024-01-01": 1373.26485906099, - "2023-01-01": 1299, - "2015-01-01": 1299 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1781.18295503243, - "2034-01-01": 1746.69196307508, - "2033-01-01": 1712.62678583324, - "2032-01-01": 1679.41323802245, - "2031-01-01": 1647.05131964271, - "2030-01-01": 1615.11521597849, - "2029-01-01": 1583.60492702979, - "2028-01-01": 1552.52045279662, - "2027-01-01": 1521.01016384792, - "2026-01-01": 1484.4326797845, - "2025-01-01": 1462.0823750579, - "2024-01-01": 1430.35208183951, - "2023-01-01": 1353, - "2015-01-01": 1353 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1875.96874421376, - "2034-01-01": 1839.64231144271, - "2033-01-01": 1803.76435315031, - "2032-01-01": 1768.78334381522, - "2031-01-01": 1734.69928343744, - "2030-01-01": 1701.06369753832, - "2029-01-01": 1667.87658611785, - "2028-01-01": 1635.13794917604, - "2027-01-01": 1601.95083775557, - "2026-01-01": 1563.42688003911, - "2025-01-01": 1539.88720211197, - "2024-01-01": 1506.46837887753, - "2023-01-01": 1425, - "2015-01-01": 1425 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1995.7674499846, - "2034-01-01": 1957.12122396291, - "2033-01-01": 1918.95211184272, - "2032-01-01": 1881.73722752553, - "2031-01-01": 1845.47657101134, - "2030-01-01": 1809.69302839866, - "2029-01-01": 1774.38659968748, - "2028-01-01": 1739.55728487781, - "2027-01-01": 1704.25085616663, - "2026-01-01": 1663.26677202757, - "2025-01-01": 1638.22385852755, - "2024-01-01": 1602.67092096726, - "2023-01-01": 1516, - "2015-01-01": 1516 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2105.03440140197, - "2034-01-01": 2064.27231999782, - "2033-01-01": 2024.01347416656, - "2032-01-01": 1984.76109948108, - "2031-01-01": 1946.51519594138, - "2030-01-01": 1908.77252797458, - "2029-01-01": 1871.53309558066, - "2028-01-01": 1834.79689875964, - "2027-01-01": 1797.55746636573, - "2026-01-01": 1754.32953065441, - "2025-01-01": 1727.91553415933, - "2024-01-01": 1690.41609671942, - "2023-01-01": 1599, - "2015-01-01": 1599 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2205.08606776003, - "2034-01-01": 2162.3865766081, - "2033-01-01": 2120.21423966791, - "2032-01-01": 2079.09621115123, - "2031-01-01": 2039.03249105805, - "2030-01-01": 1999.49592517662, - "2029-01-01": 1960.48651350695, - "2028-01-01": 1922.00425604903, - "2027-01-01": 1882.99484437936, - "2026-01-01": 1837.71229758983, - "2025-01-01": 1810.0428516053, - "2024-01-01": 1770.76107692622, - "2023-01-01": 1675, - "2015-01-01": 1675 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2298.55538764718, - "2034-01-01": 2254.04594791507, - "2033-01-01": 2210.08600743891, - "2032-01-01": 2167.22506547465, - "2031-01-01": 2125.4631220223, - "2030-01-01": 2084.2506778259, - "2029-01-01": 2043.58773288545, - "2028-01-01": 2003.47428720096, - "2027-01-01": 1962.81134226051, - "2026-01-01": 1915.60935617423, - "2025-01-01": 1886.76705606141, - "2024-01-01": 1845.82020317205, - "2023-01-01": 1746, - "2015-01-01": 1746 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2394.65764612269, - "2034-01-01": 2348.28727334336, - "2033-01-01": 2302.48937430204, - "2032-01-01": 2257.83642273676, - "2031-01-01": 2214.32841864752, - "2030-01-01": 2171.39288829628, - "2029-01-01": 2129.02983168307, - "2028-01-01": 2087.23924880787, - "2027-01-01": 2044.87619219466, - "2026-01-01": 1995.70069809905, - "2025-01-01": 1965.65250571346, - "2024-01-01": 1922.99367100227, - "2023-01-01": 1819, - "2015-01-01": 1819 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2496.02578177494, - "2034-01-01": 2447.6925070143, - "2033-01-01": 2399.95593934946, - "2032-01-01": 2353.41278587625, - "2031-01-01": 2308.06304659466, - "2030-01-01": 2263.31001440888, - "2029-01-01": 2219.15368931891, - "2028-01-01": 2175.59407132475, - "2027-01-01": 2131.43774623478, - "2026-01-01": 2080.18060670467, - "2025-01-01": 2048.86044575741, - "2024-01-01": 2004.39582200127, - "2023-01-01": 1896, - "2015-01-01": 1896 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2590.81157095627, - "2034-01-01": 2540.64285538193, - "2033-01-01": 2491.09350666653, - "2032-01-01": 2442.78289166902, - "2031-01-01": 2395.7110103894, - "2030-01-01": 2349.25849596871, - "2029-01-01": 2303.42534840697, - "2028-01-01": 2258.21156770417, - "2027-01-01": 2212.37842014243, - "2026-01-01": 2159.17480695928, - "2025-01-01": 2126.66527281148, - "2024-01-01": 2080.51211903929, - "2023-01-01": 1968, - "2015-01-01": 1968 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2681.64795225504, - "2034-01-01": 2629.72027256758, - "2033-01-01": 2578.43367534539, - "2032-01-01": 2528.42924305376, - "2031-01-01": 2479.70697569268, - "2030-01-01": 2431.62579079688, - "2029-01-01": 2384.18568836636, - "2028-01-01": 2337.38666840112, - "2027-01-01": 2289.9465659706, - "2026-01-01": 2234.87758220327, - "2025-01-01": 2201.22823207164, - "2024-01-01": 2153.45690370073, - "2023-01-01": 2037, - "2015-01-01": 2037 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3197.7039155756, - "2034-01-01": 3135.7832803469, - "2033-01-01": 3074.62709740498, - "2032-01-01": 3014.99981903661, - "2031-01-01": 2956.90144524179, - "2030-01-01": 2899.56752373374, - "2029-01-01": 2842.99805451247, - "2028-01-01": 2787.19303757796, - "2027-01-01": 2730.62356835669, - "2026-01-01": 2664.9571169228, - "2025-01-01": 2624.83229047718, - "2024-01-01": 2567.86785424107, - "2023-01-01": 2429, - "2015-01-01": 2429 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 843.856817572646, - "2034-01-01": 827.516295884053, - "2033-01-01": 811.377509031122, - "2032-01-01": 795.642191849514, - "2031-01-01": 780.310344339229, - "2030-01-01": 765.180231664606, - "2029-01-01": 750.251853825644, - "2028-01-01": 735.525210822345, - "2027-01-01": 720.596832983383, - "2026-01-01": 703.267810600048, - "2025-01-01": 692.679085300895, - "2024-01-01": 677.646477796841, - "2023-01-01": 641, - "2015-01-01": 641 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1150.59416311777, - "2034-01-01": 1128.31395101819, - "2033-01-01": 1106.30880326552, - "2032-01-01": 1084.85378420667, - "2031-01-01": 1063.94889384163, - "2030-01-01": 1043.3190678235, - "2029-01-01": 1022.96430615228, - "2028-01-01": 1002.88460882797, - "2027-01-01": 982.52984715675, - "2026-01-01": 958.90181975732, - "2025-01-01": 944.464150628677, - "2024-01-01": 923.967272378221, - "2023-01-01": 874, - "2015-01-01": 874 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1301.98813194906, - "2034-01-01": 1276.77631299427, - "2033-01-01": 1251.87575106362, - "2032-01-01": 1227.59770318123, - "2031-01-01": 1203.94216934711, - "2030-01-01": 1180.59789253712, - "2029-01-01": 1157.56487275127, - "2028-01-01": 1134.84310998955, - "2027-01-01": 1111.81009020369, - "2026-01-01": 1085.07311183065, - "2025-01-01": 1068.73574939561, - "2024-01-01": 1045.54191348062, - "2023-01-01": 989, - "2015-01-01": 989 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1428.36918419083, - "2034-01-01": 1400.71011081778, - "2033-01-01": 1373.39250748638, - "2032-01-01": 1346.75784423826, - "2031-01-01": 1320.80612107342, - "2030-01-01": 1295.19586795023, - "2029-01-01": 1269.92708486868, - "2028-01-01": 1244.99977182877, - "2027-01-01": 1219.73098874722, - "2026-01-01": 1190.39871217013, - "2025-01-01": 1172.47551880105, - "2024-01-01": 1147.03030953132, - "2023-01-01": 1085, - "2015-01-01": 1085 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1537.63613560819, - "2034-01-01": 1507.86120685269, - "2033-01-01": 1478.45386981022, - "2032-01-01": 1449.78171619381, - "2031-01-01": 1421.84474600346, - "2030-01-01": 1394.27536752615, - "2029-01-01": 1367.07358076186, - "2028-01-01": 1340.23938571061, - "2027-01-01": 1313.03759894632, - "2026-01-01": 1281.46147079697, - "2025-01-01": 1262.16719443283, - "2024-01-01": 1234.77548528348, - "2023-01-01": 1168, - "2015-01-01": 1168 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1635.05486337789, - "2034-01-01": 1603.39350934164, - "2033-01-01": 1572.12303621943, - "2032-01-01": 1541.63432492527, - "2031-01-01": 1511.92737545916, - "2030-01-01": 1482.61130690708, - "2029-01-01": 1453.68611926903, - "2028-01-01": 1425.15181254501, - "2027-01-01": 1396.22662490696, - "2026-01-01": 1362.64995439198, - "2025-01-01": 1342.13326668286, - "2024-01-01": 1313.00612390589, - "2023-01-01": 1242, - "2015-01-01": 1242 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1723.25830608829, - "2034-01-01": 1689.88897240597, - "2033-01-01": 1656.93160580614, - "2032-01-01": 1624.79817337132, - "2031-01-01": 1593.48867510148, - "2030-01-01": 1562.59114391415, - "2029-01-01": 1532.10557980931, - "2028-01-01": 1502.03198278697, - "2027-01-01": 1471.54641868214, - "2026-01-01": 1436.15844629557, - "2025-01-01": 1414.53498074707, - "2024-01-01": 1383.83656698294, - "2023-01-01": 1309, - "2015-01-01": 1309 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1803.56293303358, - "2034-01-01": 1768.63857310632, - "2033-01-01": 1734.14537811644, - "2032-01-01": 1700.5145130013, - "2031-01-01": 1667.74597776091, - "2030-01-01": 1635.40860745789, - "2029-01-01": 1603.50240209225, - "2028-01-01": 1572.02736166398, - "2027-01-01": 1540.12115629834, - "2026-01-01": 1503.08408817795, - "2025-01-01": 1480.45295922344, - "2024-01-01": 1448.32398530682, - "2023-01-01": 1370, - "2015-01-01": 1370 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1878.60168280213, - "2034-01-01": 1842.22426556403, - "2033-01-01": 1806.29595224245, - "2032-01-01": 1771.26584675391, - "2031-01-01": 1737.13394909841, - "2030-01-01": 1703.45115535943, - "2029-01-01": 1670.21746553697, - "2028-01-01": 1637.43287963102, - "2027-01-01": 1604.19918980856, - "2026-01-01": 1565.62116337951, - "2025-01-01": 1542.04844730792, - "2024-01-01": 1508.58272046192, - "2023-01-01": 1427, - "2015-01-01": 1427 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1977.33687986601, - "2034-01-01": 1939.04754511365, - "2033-01-01": 1901.23091819773, - "2032-01-01": 1864.35970695471, - "2031-01-01": 1828.43391138459, - "2030-01-01": 1792.98082365092, - "2029-01-01": 1758.00044375369, - "2028-01-01": 1723.49277169292, - "2027-01-01": 1688.5123917957, - "2026-01-01": 1647.90678864473, - "2025-01-01": 1623.09514215592, - "2024-01-01": 1587.87052987653, - "2023-01-01": 1502, - "2015-01-01": 1502 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2102.4014628136, - "2034-01-01": 2061.69036587649, - "2033-01-01": 2021.48187507442, - "2032-01-01": 1982.27859654239, - "2031-01-01": 1944.08053028042, - "2030-01-01": 1906.38507015347, - "2029-01-01": 1869.19221616155, - "2028-01-01": 1832.50196830466, - "2027-01-01": 1795.30911431274, - "2026-01-01": 1752.13524731401, - "2025-01-01": 1725.75428896338, - "2024-01-01": 1688.30175513503, - "2023-01-01": 1597, - "2015-01-01": 1597 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2218.25076070189, - "2034-01-01": 2175.29634721471, - "2033-01-01": 2132.87223512861, - "2032-01-01": 2091.50872584467, - "2031-01-01": 2051.20581936287, - "2030-01-01": 2011.43321428216, - "2029-01-01": 1972.19091060251, - "2028-01-01": 1933.47890832395, - "2027-01-01": 1894.23660464431, - "2026-01-01": 1848.68371429186, - "2025-01-01": 1820.84907758504, - "2024-01-01": 1781.33278484817, - "2023-01-01": 1685, - "2015-01-01": 1685 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2323.56830423669, - "2034-01-01": 2278.57451206763, - "2033-01-01": 2234.13619881424, - "2032-01-01": 2190.80884339219, - "2031-01-01": 2148.59244580147, - "2030-01-01": 2106.93152712641, - "2029-01-01": 2065.82608736702, - "2028-01-01": 2025.2761265233, - "2027-01-01": 1984.17068676392, - "2026-01-01": 1936.45504790809, - "2025-01-01": 1907.2988854229, - "2024-01-01": 1865.90644822375, - "2023-01-01": 1765, - "2015-01-01": 1765 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2420.98703200639, - "2034-01-01": 2374.10681455659, - "2033-01-01": 2327.80536522345, - "2032-01-01": 2282.66145212364, - "2031-01-01": 2238.67507525716, - "2030-01-01": 2195.26746650735, - "2029-01-01": 2152.4386258742, - "2028-01-01": 2110.18855335771, - "2027-01-01": 2067.35971272456, - "2026-01-01": 2017.6435315031, - "2025-01-01": 1987.26495767293, - "2024-01-01": 1944.13708684616, - "2023-01-01": 1839, - "2015-01-01": 1839 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2522.35516765864, - "2034-01-01": 2473.51204822753, - "2033-01-01": 2425.27193027087, - "2032-01-01": 2378.23781526313, - "2031-01-01": 2332.40970320431, - "2030-01-01": 2287.18459261995, - "2029-01-01": 2242.56248351004, - "2028-01-01": 2198.54337587459, - "2027-01-01": 2153.92126676468, - "2026-01-01": 2102.12344010873, - "2025-01-01": 2070.47289771687, - "2024-01-01": 2025.53923784516, - "2023-01-01": 1916, - "2015-01-01": 1916 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2628.98918048764, - "2034-01-01": 2578.08119014111, - "2033-01-01": 2527.80169350257, - "2032-01-01": 2478.77918428, - "2031-01-01": 2431.01366247339, - "2030-01-01": 2383.87663437476, - "2029-01-01": 2337.36809998411, - "2028-01-01": 2291.48805930144, - "2027-01-01": 2244.97952491079, - "2026-01-01": 2190.99191539516, - "2025-01-01": 2158.00332815271, - "2024-01-01": 2111.17007201294, - "2023-01-01": 1997, - "2015-01-01": 1997 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2729.0408468457, - "2034-01-01": 2676.19544675139, - "2033-01-01": 2624.00245900392, - "2032-01-01": 2573.11429595014, - "2031-01-01": 2523.53095759005, - "2030-01-01": 2474.6000315768, - "2029-01-01": 2426.32151791039, - "2028-01-01": 2378.69541659083, - "2027-01-01": 2330.41690292442, - "2026-01-01": 2274.37468233058, - "2025-01-01": 2240.13064559868, - "2024-01-01": 2191.51505221974, - "2023-01-01": 2073, - "2015-01-01": 2073 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2823.82663602703, - "2034-01-01": 2769.14579511902, - "2033-01-01": 2715.14002632099, - "2032-01-01": 2662.48440174291, - "2031-01-01": 2611.17892138478, - "2030-01-01": 2560.54851313663, - "2029-01-01": 2510.59317699845, - "2028-01-01": 2461.31291297025, - "2027-01-01": 2411.35757683207, - "2026-01-01": 2353.36888258519, - "2025-01-01": 2317.93547265276, - "2024-01-01": 2267.63134925776, - "2023-01-01": 2145, - "2015-01-01": 2145 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3366.21198523129, - "2034-01-01": 3301.02834411158, - "2033-01-01": 3236.64943930199, - "2032-01-01": 3173.88000711265, - "2031-01-01": 3112.72004754354, - "2030-01-01": 3052.36482428455, - "2029-01-01": 2992.81433733568, - "2028-01-01": 2934.06858669693, - "2027-01-01": 2874.51809974807, - "2026-01-01": 2805.39125070877, - "2025-01-01": 2763.15198301777, - "2024-01-01": 2703.185715642, - "2023-01-01": 2557, - "2015-01-01": 2557 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 907.047343693531, - "2034-01-01": 889.483194795807, - "2033-01-01": 872.135887242501, - "2032-01-01": 855.222262378026, - "2031-01-01": 838.742320202385, - "2030-01-01": 822.47921937116, - "2029-01-01": 806.432959884351, - "2028-01-01": 790.603541741959, - "2027-01-01": 774.55728225515, - "2026-01-01": 755.930610769787, - "2025-01-01": 744.548970003614, - "2024-01-01": 728.39067582219, - "2023-01-01": 689, - "2015-01-01": 689 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1236.1646672398, - "2034-01-01": 1212.22745996119, - "2033-01-01": 1188.5857737601, - "2032-01-01": 1165.53512971403, - "2031-01-01": 1143.07552782299, - "2030-01-01": 1120.91144700946, - "2029-01-01": 1099.04288727345, - "2028-01-01": 1077.46984861495, - "2027-01-01": 1055.60128887893, - "2026-01-01": 1030.21602832051, - "2025-01-01": 1014.70461949694, - "2024-01-01": 992.68337387088, - "2023-01-01": 939, - "2015-01-01": 939 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1396.77392113039, - "2034-01-01": 1369.7266613619, - "2033-01-01": 1343.01331838069, - "2032-01-01": 1316.967808974, - "2031-01-01": 1291.59013314184, - "2030-01-01": 1266.54637409695, - "2029-01-01": 1241.83653183933, - "2028-01-01": 1217.46060636897, - "2027-01-01": 1192.75076411134, - "2026-01-01": 1164.06731208526, - "2025-01-01": 1146.54057644969, - "2024-01-01": 1121.65821051864, - "2023-01-01": 1061, - "2015-01-01": 1061 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1532.37025843145, - "2034-01-01": 1502.69729861004, - "2033-01-01": 1473.39067162594, - "2032-01-01": 1444.81671031643, - "2031-01-01": 1416.97541468153, - "2030-01-01": 1389.50045188393, - "2029-01-01": 1362.39182192364, - "2028-01-01": 1335.64952480064, - "2027-01-01": 1308.54089484034, - "2026-01-01": 1277.07290411616, - "2025-01-01": 1257.84470404094, - "2024-01-01": 1230.5468021147, - "2023-01-01": 1164, - "2015-01-01": 1164 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1649.53602561392, - "2034-01-01": 1617.59425700892, - "2033-01-01": 1586.0468312262, - "2032-01-01": 1555.28809108805, - "2031-01-01": 1525.31803659447, - "2030-01-01": 1495.74232492317, - "2029-01-01": 1466.56095607415, - "2028-01-01": 1437.77393004742, - "2027-01-01": 1408.59256119841, - "2026-01-01": 1374.71851276421, - "2025-01-01": 1354.02011526056, - "2024-01-01": 1324.63500262003, - "2023-01-01": 1253, - "2015-01-01": 1253 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1753.53709985455, - "2034-01-01": 1719.58144480118, - "2033-01-01": 1686.04499536576, - "2032-01-01": 1653.34695716623, - "2031-01-01": 1621.48733020258, - "2030-01-01": 1590.04690885687, - "2029-01-01": 1559.02569312911, - "2028-01-01": 1528.42368301929, - "2027-01-01": 1497.40246729152, - "2026-01-01": 1461.39270471024, - "2025-01-01": 1439.38930050046, - "2024-01-01": 1408.15149520342, - "2023-01-01": 1332, - "2015-01-01": 1332 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1847.00641974169, - "2034-01-01": 1811.24081610815, - "2033-01-01": 1775.91676313676, - "2032-01-01": 1741.47581148965, - "2031-01-01": 1707.91796116683, - "2030-01-01": 1674.80166150615, - "2029-01-01": 1642.12691250761, - "2028-01-01": 1609.89371417122, - "2027-01-01": 1577.21896517268, - "2026-01-01": 1539.28976329465, - "2025-01-01": 1516.11350495656, - "2024-01-01": 1483.21062144925, - "2023-01-01": 1403, - "2015-01-01": 1403 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1933.89339315791, - "2034-01-01": 1896.44530211182, - "2033-01-01": 1859.45953317741, - "2032-01-01": 1823.39840846636, - "2031-01-01": 1788.26192797867, - "2030-01-01": 1753.58776960266, - "2029-01-01": 1719.37593333833, - "2028-01-01": 1685.62641918569, - "2027-01-01": 1651.41458292136, - "2026-01-01": 1611.70111352804, - "2025-01-01": 1587.4345964228, - "2024-01-01": 1552.9838937341, - "2023-01-01": 1469, - "2015-01-01": 1469 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2014.1980201032, - "2034-01-01": 1975.19490281217, - "2033-01-01": 1936.6733054877, - "2032-01-01": 1899.11474809634, - "2031-01-01": 1862.5192306381, - "2030-01-01": 1826.40523314641, - "2029-01-01": 1790.77275562127, - "2028-01-01": 1755.62179806269, - "2027-01-01": 1719.98932053756, - "2026-01-01": 1678.62675541041, - "2025-01-01": 1653.35257489917, - "2024-01-01": 1617.47131205798, - "2023-01-01": 1530, - "2015-01-01": 1530 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2118.19909434382, - "2034-01-01": 2077.18209060443, - "2033-01-01": 2036.67146962726, - "2032-01-01": 1997.17361417452, - "2031-01-01": 1958.68852424621, - "2030-01-01": 1920.70981708011, - "2029-01-01": 1883.23749267623, - "2028-01-01": 1846.27155103456, - "2027-01-01": 1808.79922663068, - "2026-01-01": 1765.30094735644, - "2025-01-01": 1738.72176013906, - "2024-01-01": 1700.98780464137, - "2023-01-01": 1609, - "2015-01-01": 1609 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2253.79543164488, - "2034-01-01": 2210.15272785257, - "2033-01-01": 2167.04882287251, - "2032-01-01": 2125.02251551695, - "2031-01-01": 2084.0738057859, - "2030-01-01": 2043.66389486709, - "2029-01-01": 2003.79278276054, - "2028-01-01": 1964.46046946623, - "2027-01-01": 1924.58935735968, - "2026-01-01": 1878.30653938734, - "2025-01-01": 1850.02588773032, - "2024-01-01": 1809.87639623743, - "2023-01-01": 1712, - "2015-01-01": 1712 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2376.2270760041, - "2034-01-01": 2330.2135944941, - "2033-01-01": 2284.76818065706, - "2032-01-01": 2240.45890216595, - "2031-01-01": 2197.28575902076, - "2030-01-01": 2154.68068354854, - "2029-01-01": 2112.64367574928, - "2028-01-01": 2071.17473562298, - "2027-01-01": 2029.13772782372, - "2026-01-01": 1980.3407147162, - "2025-01-01": 1950.52378934183, - "2024-01-01": 1908.19327991154, - "2023-01-01": 1805, - "2015-01-01": 1805 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2489.44343530402, - "2034-01-01": 2441.23762171099, - "2033-01-01": 2393.62694161911, - "2032-01-01": 2347.20652852953, - "2031-01-01": 2301.97638244225, - "2030-01-01": 2257.34136985612, - "2029-01-01": 2213.30149077113, - "2028-01-01": 2169.85674518729, - "2027-01-01": 2125.81686610231, - "2026-01-01": 2074.69489835365, - "2025-01-01": 2043.45733276754, - "2024-01-01": 1999.10996804029, - "2023-01-01": 1891, - "2015-01-01": 1891 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2593.44450954464, - "2034-01-01": 2543.22480950325, - "2033-01-01": 2493.62510575867, - "2032-01-01": 2445.26539460771, - "2031-01-01": 2398.14567605036, - "2030-01-01": 2351.64595378982, - "2029-01-01": 2305.76622782608, - "2028-01-01": 2260.50649815916, - "2027-01-01": 2214.62677219542, - "2026-01-01": 2161.36909029968, - "2025-01-01": 2128.82651800743, - "2024-01-01": 2082.62646062368, - "2023-01-01": 1970, - "2015-01-01": 1970 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2701.39499166782, - "2034-01-01": 2649.0849284775, - "2033-01-01": 2597.42066853645, - "2032-01-01": 2547.04801509392, - "2031-01-01": 2497.96696814992, - "2030-01-01": 2449.53172445518, - "2029-01-01": 2401.74228400971, - "2028-01-01": 2354.5986468135, - "2027-01-01": 2306.80920636802, - "2026-01-01": 2251.33470725632, - "2025-01-01": 2217.43757104124, - "2024-01-01": 2169.31446558365, - "2023-01-01": 2052, - "2015-01-01": 2052 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2815.92782026192, - "2034-01-01": 2761.39993275505, - "2033-01-01": 2707.54522904457, - "2032-01-01": 2655.03689292685, - "2031-01-01": 2603.87492440189, - "2030-01-01": 2553.38613967331, - "2029-01-01": 2503.57053874111, - "2028-01-01": 2454.4281216053, - "2027-01-01": 2404.6125206731, - "2026-01-01": 2346.78603256397, - "2025-01-01": 2311.45173706492, - "2024-01-01": 2261.28832450459, - "2023-01-01": 2139, - "2015-01-01": 2139 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2922.56183309091, - "2034-01-01": 2865.96907466864, - "2033-01-01": 2810.07499227627, - "2032-01-01": 2755.57826194371, - "2031-01-01": 2702.47888367097, - "2030-01-01": 2650.07818142812, - "2029-01-01": 2598.37615521518, - "2028-01-01": 2547.37280503215, - "2027-01-01": 2495.67077881921, - "2026-01-01": 2435.6545078504, - "2025-01-01": 2398.98216750076, - "2024-01-01": 2346.91915867237, - "2023-01-01": 2220, - "2015-01-01": 2220 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3022.61349944898, - "2034-01-01": 2964.08333127892, - "2033-01-01": 2906.27575777762, - "2032-01-01": 2849.91337361386, - "2031-01-01": 2794.99617878763, - "2030-01-01": 2740.80157863017, - "2029-01-01": 2687.32957314147, - "2028-01-01": 2634.58016232153, - "2027-01-01": 2581.10815683284, - "2026-01-01": 2519.03727478582, - "2025-01-01": 2481.10948494673, - "2024-01-01": 2427.26413887917, - "2023-01-01": 2296, - "2015-01-01": 2296 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3601.85998889042, - "2034-01-01": 3532.11323797, - "2033-01-01": 3463.22755804859, - "2032-01-01": 3396.06402012523, - "2031-01-01": 3330.62262419989, - "2030-01-01": 3266.04229927358, - "2029-01-01": 3202.32304534628, - "2028-01-01": 3139.464862418, - "2027-01-01": 3075.7456084907, - "2026-01-01": 3001.77960967509, - "2025-01-01": 2956.58342805499, - "2024-01-01": 2892.41928744486, - "2023-01-01": 2736, - "2015-01-01": 2736 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 760.919252038985, - "2034-01-01": 746.184741062376, - "2033-01-01": 731.632137628687, - "2032-01-01": 717.443349280841, - "2031-01-01": 703.618376018837, - "2030-01-01": 689.975310299754, - "2029-01-01": 676.514152123592, - "2028-01-01": 663.234901490351, - "2027-01-01": 649.77374331419, - "2026-01-01": 634.147885377267, - "2025-01-01": 624.599861628576, - "2024-01-01": 611.044717888572, - "2023-01-01": 578, - "2015-01-01": 578 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1050.54249675971, - "2034-01-01": 1030.19969440792, - "2033-01-01": 1010.10803776417, - "2032-01-01": 990.518672536524, - "2031-01-01": 971.431598724969, - "2030-01-01": 952.59567062146, - "2029-01-01": 934.010888225997, - "2028-01-01": 915.677251538582, - "2027-01-01": 897.09246914312, - "2026-01-01": 875.519052821901, - "2025-01-01": 862.336833182705, - "2024-01-01": 843.622292171419, - "2023-01-01": 798, - "2015-01-01": 798 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1194.03764982588, - "2034-01-01": 1170.91619402003, - "2033-01-01": 1148.08018828585, - "2032-01-01": 1125.81508269502, - "2031-01-01": 1104.12087724755, - "2030-01-01": 1082.71212187176, - "2029-01-01": 1061.58881656764, - "2028-01-01": 1040.75096133521, - "2027-01-01": 1019.62765603109, - "2026-01-01": 995.107494874015, - "2025-01-01": 980.124696361797, - "2024-01-01": 958.853908520648, - "2023-01-01": 907, - "2015-01-01": 907 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1315.15282489091, - "2034-01-01": 1289.68608360089, - "2033-01-01": 1264.53374652432, - "2032-01-01": 1240.01021787467, - "2031-01-01": 1216.11549765193, - "2030-01-01": 1192.53518164265, - "2029-01-01": 1169.26926984683, - "2028-01-01": 1146.31776226447, - "2027-01-01": 1123.05185046864, - "2026-01-01": 1096.04452853268, - "2025-01-01": 1079.54197537534, - "2024-01-01": 1056.11362140257, - "2023-01-01": 999, - "2015-01-01": 999 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1420.47036842572, - "2034-01-01": 1392.96424845381, - "2033-01-01": 1365.79771020995, - "2032-01-01": 1339.31033542219, - "2031-01-01": 1313.50212409053, - "2030-01-01": 1288.03349448691, - "2029-01-01": 1262.90444661134, - "2028-01-01": 1238.11498046382, - "2027-01-01": 1212.98593258825, - "2026-01-01": 1183.81586214891, - "2025-01-01": 1165.99178321321, - "2024-01-01": 1140.68728477815, - "2023-01-01": 1079, - "2015-01-01": 1079 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1513.93968831286, - "2034-01-01": 1484.62361976078, - "2033-01-01": 1455.66947798095, - "2032-01-01": 1427.43918974562, - "2031-01-01": 1399.93275505478, - "2030-01-01": 1372.78824713619, - "2029-01-01": 1346.00566598985, - "2028-01-01": 1319.58501161575, - "2027-01-01": 1292.80243046941, - "2026-01-01": 1261.71292073332, - "2025-01-01": 1242.71598766931, - "2024-01-01": 1215.74641102397, - "2023-01-01": 1150, - "2015-01-01": 1150 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1598.19372314071, - "2034-01-01": 1567.24615164312, - "2033-01-01": 1536.68064892946, - "2032-01-01": 1506.87928378363, - "2031-01-01": 1477.84205620565, - "2030-01-01": 1449.18689741159, - "2029-01-01": 1420.91380740145, - "2028-01-01": 1393.02278617524, - "2027-01-01": 1364.7496961651, - "2026-01-01": 1331.9299876263, - "2025-01-01": 1311.8758339396, - "2024-01-01": 1283.40534172444, - "2023-01-01": 1214, - "2015-01-01": 1214 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1677.18188079181, - "2034-01-01": 1644.70477528281, - "2033-01-01": 1612.62862169368, - "2032-01-01": 1581.35437194428, - "2031-01-01": 1550.8820260346, - "2030-01-01": 1520.81063204479, - "2029-01-01": 1491.14018997484, - "2028-01-01": 1461.87069982475, - "2027-01-01": 1432.20025775481, - "2026-01-01": 1397.75848783847, - "2025-01-01": 1376.713189818, - "2024-01-01": 1346.83558925612, - "2023-01-01": 1274, - "2015-01-01": 1274 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1749.58769197199, - "2034-01-01": 1715.7085136192, - "2033-01-01": 1682.24759672755, - "2032-01-01": 1649.6232027582, - "2031-01-01": 1617.83533171113, - "2030-01-01": 1586.46572212521, - "2029-01-01": 1555.51437400044, - "2028-01-01": 1524.98128733681, - "2027-01-01": 1494.02993921204, - "2026-01-01": 1458.10127969963, - "2025-01-01": 1436.14743270654, - "2024-01-01": 1404.97998282684, - "2023-01-01": 1329, - "2015-01-01": 1329 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1845.6899504475, - "2034-01-01": 1809.94983904749, - "2033-01-01": 1774.65096359069, - "2032-01-01": 1740.23456002031, - "2031-01-01": 1706.70062833635, - "2030-01-01": 1673.6079325956, - "2029-01-01": 1640.95647279806, - "2028-01-01": 1608.74624894372, - "2027-01-01": 1576.09478914618, - "2026-01-01": 1538.19262162444, - "2025-01-01": 1515.03288235859, - "2024-01-01": 1482.15345065705, - "2023-01-01": 1402, - "2015-01-01": 1402 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1968.12159480672, - "2034-01-01": 1930.01070568902, - "2033-01-01": 1892.37032137524, - "2032-01-01": 1855.6709466693, - "2031-01-01": 1819.91258157121, - "2030-01-01": 1784.62472127705, - "2029-01-01": 1749.8073657868, - "2028-01-01": 1715.46051510048, - "2027-01-01": 1680.64315961023, - "2026-01-01": 1640.22679695331, - "2025-01-01": 1615.53078397011, - "2024-01-01": 1580.47033433117, - "2023-01-01": 1495, - "2015-01-01": 1495 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2081.33795410664, - "2034-01-01": 2041.03473290591, - "2033-01-01": 2001.22908233729, - "2032-01-01": 1962.41857303289, - "2031-01-01": 1924.6032049927, - "2030-01-01": 1887.28540758462, - "2029-01-01": 1850.46518080865, - "2028-01-01": 1814.14252466478, - "2027-01-01": 1777.32229788881, - "2026-01-01": 1734.58098059076, - "2025-01-01": 1708.46432739581, - "2024-01-01": 1671.38702245992, - "2023-01-01": 1581, - "2015-01-01": 1581 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2184.02255905307, - "2034-01-01": 2141.73094363751, - "2033-01-01": 2099.96144693078, - "2032-01-01": 2059.23618764172, - "2031-01-01": 2019.55516577033, - "2030-01-01": 1980.39626260777, - "2029-01-01": 1941.75947815405, - "2028-01-01": 1903.64481240916, - "2027-01-01": 1865.00802795543, - "2026-01-01": 1820.15803086658, - "2025-01-01": 1792.75289003773, - "2024-01-01": 1753.84634425111, - "2023-01-01": 1659, - "2015-01-01": 1659 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2280.12481752859, - "2034-01-01": 2235.9722690658, - "2033-01-01": 2192.36481379392, - "2032-01-01": 2149.84754490383, - "2031-01-01": 2108.42046239555, - "2030-01-01": 2067.53847307816, - "2029-01-01": 2027.20157695166, - "2028-01-01": 1987.40977401607, - "2027-01-01": 1947.07287788958, - "2026-01-01": 1900.24937279139, - "2025-01-01": 1871.63833968978, - "2024-01-01": 1831.01981208133, - "2023-01-01": 1732, - "2015-01-01": 1732 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2378.86001459247, - "2034-01-01": 2332.79554861542, - "2033-01-01": 2287.2997797492, - "2032-01-01": 2242.94140510464, - "2031-01-01": 2199.72042468173, - "2030-01-01": 2157.06814136965, - "2029-01-01": 2114.98455516839, - "2028-01-01": 2073.46966607797, - "2027-01-01": 2031.38607987671, - "2026-01-01": 1982.53499805661, - "2025-01-01": 1952.68503453778, - "2024-01-01": 1910.30762149593, - "2023-01-01": 1807, - "2015-01-01": 1807 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2484.17755812728, - "2034-01-01": 2436.07371346834, - "2033-01-01": 2388.56374343483, - "2032-01-01": 2342.24152265216, - "2031-01-01": 2297.10705112032, - "2030-01-01": 2252.5664542139, - "2029-01-01": 2208.6197319329, - "2028-01-01": 2165.26688427732, - "2027-01-01": 2121.32016199632, - "2026-01-01": 2070.30633167284, - "2025-01-01": 2039.13484237565, - "2024-01-01": 1994.88128487151, - "2023-01-01": 1887, - "2015-01-01": 1887 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2581.59628589697, - "2034-01-01": 2531.6060159573, - "2033-01-01": 2482.23290984404, - "2032-01-01": 2434.09413138361, - "2031-01-01": 2387.18968057602, - "2030-01-01": 2340.90239359484, - "2029-01-01": 2295.23227044008, - "2028-01-01": 2250.17931111173, - "2027-01-01": 2204.50918795697, - "2026-01-01": 2151.49481526786, - "2025-01-01": 2119.10091462567, - "2024-01-01": 2073.11192349393, - "2023-01-01": 1961, - "2015-01-01": 1961 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2675.06560578411, - "2034-01-01": 2623.26538726427, - "2033-01-01": 2572.10467761504, - "2032-01-01": 2522.22298570704, - "2031-01-01": 2473.62031154027, - "2030-01-01": 2425.65714624412, - "2029-01-01": 2378.33348981858, - "2028-01-01": 2331.64934226366, - "2027-01-01": 2284.32568583812, - "2026-01-01": 2229.39187385226, - "2025-01-01": 2195.82511908178, - "2024-01-01": 2148.17104973975, - "2023-01-01": 2032, - "2015-01-01": 2032 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3212.18507781163, - "2034-01-01": 3149.98402801418, - "2033-01-01": 3088.55089241176, - "2032-01-01": 3028.6535851994, - "2031-01-01": 2970.2921063771, - "2030-01-01": 2912.69854174983, - "2029-01-01": 2855.87289131759, - "2028-01-01": 2799.81515508038, - "2027-01-01": 2742.98950464814, - "2026-01-01": 2677.02567529504, - "2025-01-01": 2636.71913905489, - "2024-01-01": 2579.49673295522, - "2023-01-01": 2440, - "2015-01-01": 2440 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 878.085019221459, - "2034-01-01": 861.081699461253, - "2033-01-01": 844.288297228952, - "2032-01-01": 827.914730052458, - "2031-01-01": 811.960997931772, - "2030-01-01": 796.21718333899, - "2029-01-01": 780.68328627411, - "2028-01-01": 765.359306737136, - "2027-01-01": 749.825409672257, - "2026-01-01": 731.793494025323, - "2025-01-01": 720.775272848201, - "2024-01-01": 705.132918393905, - "2023-01-01": 667, - "2015-01-01": 667 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1211.15175065029, - "2034-01-01": 1187.69889580863, - "2033-01-01": 1164.53558238476, - "2032-01-01": 1141.95135179649, - "2031-01-01": 1119.94620404382, - "2030-01-01": 1098.23059770895, - "2029-01-01": 1076.80453279188, - "2028-01-01": 1055.6680092926, - "2027-01-01": 1034.24194437553, - "2026-01-01": 1009.37033658665, - "2025-01-01": 994.17279013545, - "2024-01-01": 972.59712881918, - "2023-01-01": 920, - "2015-01-01": 920 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1375.71041242342, - "2034-01-01": 1349.07102839132, - "2033-01-01": 1322.76052564356, - "2032-01-01": 1297.1077854645, - "2031-01-01": 1272.11280785413, - "2030-01-01": 1247.4467115281, - "2029-01-01": 1223.10949648642, - "2028-01-01": 1199.1011627291, - "2027-01-01": 1174.76394768742, - "2026-01-01": 1146.51304536201, - "2025-01-01": 1129.25061488211, - "2024-01-01": 1104.74347784352, - "2023-01-01": 1045, - "2015-01-01": 1045 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1512.62321901867, - "2034-01-01": 1483.33264270012, - "2033-01-01": 1454.40367843488, - "2032-01-01": 1426.19793827627, - "2031-01-01": 1398.7154222243, - "2030-01-01": 1371.59451822564, - "2029-01-01": 1344.83522628029, - "2028-01-01": 1318.43754638826, - "2027-01-01": 1291.67825444291, - "2026-01-01": 1260.61577906311, - "2025-01-01": 1241.63536507134, - "2024-01-01": 1214.68924023178, - "2023-01-01": 1149, - "2015-01-01": 1149 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1633.7383940837, - "2034-01-01": 1602.10253228098, - "2033-01-01": 1570.85723667336, - "2032-01-01": 1540.39307345592, - "2031-01-01": 1510.71004262868, - "2030-01-01": 1481.41757799653, - "2029-01-01": 1452.51567955948, - "2028-01-01": 1424.00434731752, - "2027-01-01": 1395.10244888047, - "2026-01-01": 1361.55281272178, - "2025-01-01": 1341.05264408488, - "2024-01-01": 1311.9489531137, - "2023-01-01": 1241, - "2015-01-01": 1241 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1740.3724069127, - "2034-01-01": 1706.67167419457, - "2033-01-01": 1673.38699990506, - "2032-01-01": 1640.93444247279, - "2031-01-01": 1609.31400189776, - "2030-01-01": 1578.10961975134, - "2029-01-01": 1547.32129603354, - "2028-01-01": 1516.94903074437, - "2027-01-01": 1486.16070702657, - "2026-01-01": 1450.42128800821, - "2025-01-01": 1428.58307452072, - "2024-01-01": 1397.57978728147, - "2023-01-01": 1322, - "2015-01-01": 1322 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1836.47466538821, - "2034-01-01": 1800.91299962286, - "2033-01-01": 1765.7903667682, - "2032-01-01": 1731.5457997349, - "2031-01-01": 1698.17929852297, - "2030-01-01": 1665.25183022172, - "2029-01-01": 1632.76339483116, - "2028-01-01": 1600.71399235128, - "2027-01-01": 1568.22555696072, - "2026-01-01": 1530.51262993302, - "2025-01-01": 1507.46852417277, - "2024-01-01": 1474.75325511169, - "2023-01-01": 1395, - "2015-01-01": 1395 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1925.99457739279, - "2034-01-01": 1888.69943974785, - "2033-01-01": 1851.86473590098, - "2032-01-01": 1815.95089965029, - "2031-01-01": 1780.95793099578, - "2030-01-01": 1746.42539613934, - "2029-01-01": 1712.35329508099, - "2028-01-01": 1678.74162782073, - "2027-01-01": 1644.66952676239, - "2026-01-01": 1605.11826350682, - "2025-01-01": 1580.95086083496, - "2024-01-01": 1546.64086898093, - "2023-01-01": 1463, - "2015-01-01": 1463 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2008.93214292646, - "2034-01-01": 1970.03099456952, - "2033-01-01": 1931.61010730342, - "2032-01-01": 1894.14974221897, - "2031-01-01": 1857.64989931617, - "2030-01-01": 1821.63031750419, - "2029-01-01": 1786.09099678305, - "2028-01-01": 1751.03193715273, - "2027-01-01": 1715.49261643158, - "2026-01-01": 1674.2381887296, - "2025-01-01": 1649.03008450728, - "2024-01-01": 1613.2426288892, - "2023-01-01": 1526, - "2015-01-01": 1526 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2118.19909434382, - "2034-01-01": 2077.18209060443, - "2033-01-01": 2036.67146962726, - "2032-01-01": 1997.17361417452, - "2031-01-01": 1958.68852424621, - "2030-01-01": 1920.70981708011, - "2029-01-01": 1883.23749267623, - "2028-01-01": 1846.27155103456, - "2027-01-01": 1808.79922663068, - "2026-01-01": 1765.30094735644, - "2025-01-01": 1738.72176013906, - "2024-01-01": 1700.98780464137, - "2023-01-01": 1609, - "2015-01-01": 1609 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2257.74483952744, - "2034-01-01": 2214.02565903456, - "2033-01-01": 2170.84622151072, - "2032-01-01": 2128.74626992499, - "2031-01-01": 2087.72580427734, - "2030-01-01": 2047.24508159875, - "2029-01-01": 2007.3041018892, - "2028-01-01": 1967.90286514871, - "2027-01-01": 1927.96188543916, - "2026-01-01": 1881.59796439795, - "2025-01-01": 1853.26775552424, - "2024-01-01": 1813.04790861401, - "2023-01-01": 1715, - "2015-01-01": 1715 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2385.44236106339, - "2034-01-01": 2339.25043391873, - "2033-01-01": 2293.62877747955, - "2032-01-01": 2249.14766245136, - "2031-01-01": 2205.80708883414, - "2030-01-01": 2163.03678592241, - "2029-01-01": 2120.83675371617, - "2028-01-01": 2079.20699221543, - "2027-01-01": 2037.00696000919, - "2026-01-01": 1988.02070640763, - "2025-01-01": 1958.08814752765, - "2024-01-01": 1915.59347545691, - "2023-01-01": 1812, - "2015-01-01": 1812 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2502.60812824587, - "2034-01-01": 2454.14739231761, - "2033-01-01": 2406.28493707982, - "2032-01-01": 2359.61904322297, - "2031-01-01": 2314.14971074707, - "2030-01-01": 2269.27865896165, - "2029-01-01": 2225.00588786669, - "2028-01-01": 2181.33139746221, - "2027-01-01": 2137.05862636726, - "2026-01-01": 2085.66631505568, - "2025-01-01": 2054.26355874727, - "2024-01-01": 2009.68167596224, - "2023-01-01": 1901, - "2015-01-01": 1901 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2611.87507966323, - "2034-01-01": 2561.29848835251, - "2033-01-01": 2511.34629940366, - "2032-01-01": 2462.64291517853, - "2031-01-01": 2415.18833567711, - "2030-01-01": 2368.35815853756, - "2029-01-01": 2322.15238375987, - "2028-01-01": 2276.57101134404, - "2027-01-01": 2230.36523656635, - "2026-01-01": 2176.72907368252, - "2025-01-01": 2143.95523437906, - "2024-01-01": 2097.4268517144, - "2023-01-01": 1984, - "2015-01-01": 1984 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2725.09143896315, - "2034-01-01": 2672.32251556941, - "2033-01-01": 2620.20506036571, - "2032-01-01": 2569.39054154211, - "2031-01-01": 2519.8789590986, - "2030-01-01": 2471.01884484514, - "2029-01-01": 2422.81019878172, - "2028-01-01": 2375.25302090835, - "2027-01-01": 2327.04437484494, - "2026-01-01": 2271.08325731997, - "2025-01-01": 2236.88877780476, - "2024-01-01": 2188.34353984315, - "2023-01-01": 2070, - "2015-01-01": 2070 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2844.89014473399, - "2034-01-01": 2789.80142808961, - "2033-01-01": 2735.39281905812, - "2032-01-01": 2682.34442525242, - "2031-01-01": 2630.6562466725, - "2030-01-01": 2579.64817570548, - "2029-01-01": 2529.32021235135, - "2028-01-01": 2479.67235661012, - "2027-01-01": 2429.34439325599, - "2026-01-01": 2370.92314930843, - "2025-01-01": 2335.22543422033, - "2024-01-01": 2284.54608193288, - "2023-01-01": 2161, - "2015-01-01": 2161 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2955.47356544554, - "2034-01-01": 2898.24350118518, - "2033-01-01": 2841.71998092803, - "2032-01-01": 2786.60954867731, - "2031-01-01": 2732.91220443303, - "2030-01-01": 2679.92140419195, - "2029-01-01": 2627.63714795409, - "2028-01-01": 2576.05943571944, - "2027-01-01": 2523.77517948158, - "2026-01-01": 2463.08304960547, - "2025-01-01": 2425.99773245009, - "2024-01-01": 2373.34842847724, - "2023-01-01": 2245, - "2015-01-01": 2245 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3062.10757827453, - "2034-01-01": 3002.81264309876, - "2033-01-01": 2944.24974415973, - "2032-01-01": 2887.15091769418, - "2031-01-01": 2831.5161637021, - "2030-01-01": 2776.61344594676, - "2029-01-01": 2722.44276442816, - "2028-01-01": 2669.00411914629, - "2027-01-01": 2614.83343762769, - "2026-01-01": 2551.95152489191, - "2025-01-01": 2513.52816288593, - "2024-01-01": 2458.97926264501, - "2023-01-01": 2326, - "2015-01-01": 2326 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3671.63286148223, - "2034-01-01": 3600.53502218506, - "2033-01-01": 3530.31493399033, - "2032-01-01": 3461.85034800046, - "2031-01-01": 3395.14126421546, - "2030-01-01": 3329.3099315329, - "2029-01-01": 3264.35634995276, - "2028-01-01": 3200.28051947507, - "2027-01-01": 3135.32693789494, - "2026-01-01": 3059.92811819584, - "2025-01-01": 3013.85642574758, - "2024-01-01": 2948.44933943119, - "2023-01-01": 2789, - "2015-01-01": 2789 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 957.073176872564, - "2034-01-01": 938.540323100946, - "2033-01-01": 920.236269993175, - "2032-01-01": 902.389818213099, - "2031-01-01": 885.000967760717, - "2030-01-01": 867.840917972182, - "2029-01-01": 850.909668847494, - "2028-01-01": 834.207220386653, - "2027-01-01": 817.275971261965, - "2026-01-01": 797.621994237496, - "2025-01-01": 785.6126287266, - "2024-01-01": 768.563165925591, - "2023-01-01": 727, - "2015-01-01": 727 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1316.4692941851, - "2034-01-01": 1290.97706066155, - "2033-01-01": 1265.79954607039, - "2032-01-01": 1241.25146934402, - "2031-01-01": 1217.33283048242, - "2030-01-01": 1193.72891055321, - "2029-01-01": 1170.43970955639, - "2028-01-01": 1147.46522749196, - "2027-01-01": 1124.17602649514, - "2026-01-01": 1097.14167020288, - "2025-01-01": 1080.62259797332, - "2024-01-01": 1057.17079219476, - "2023-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1495.50911819427, - "2034-01-01": 1466.54994091152, - "2033-01-01": 1437.94828433597, - "2032-01-01": 1410.0616691748, - "2031-01-01": 1382.89009542803, - "2030-01-01": 1356.07604238844, - "2029-01-01": 1329.61951005606, - "2028-01-01": 1303.52049843086, - "2027-01-01": 1277.06396609848, - "2026-01-01": 1246.35293735048, - "2025-01-01": 1227.58727129769, - "2024-01-01": 1200.94601993325, - "2023-01-01": 1136, - "2015-01-01": 1136 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1644.27014843718, - "2034-01-01": 1612.43034876627, - "2033-01-01": 1580.98363304192, - "2032-01-01": 1550.32308521068, - "2031-01-01": 1520.44870527254, - "2030-01-01": 1490.96740928096, - "2029-01-01": 1461.87919723593, - "2028-01-01": 1433.18406913745, - "2027-01-01": 1404.09585709243, - "2026-01-01": 1370.3299460834, - "2025-01-01": 1349.69762486867, - "2024-01-01": 1320.40631945126, - "2023-01-01": 1249, - "2015-01-01": 1249 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1774.60060856151, - "2034-01-01": 1740.23707777177, - "2033-01-01": 1706.29778810289, - "2032-01-01": 1673.20698067573, - "2031-01-01": 1640.9646554903, - "2030-01-01": 1609.14657142572, - "2029-01-01": 1577.75272848201, - "2028-01-01": 1546.78312665916, - "2027-01-01": 1515.38928371545, - "2026-01-01": 1478.94697143349, - "2025-01-01": 1456.67926206803, - "2024-01-01": 1425.06622787854, - "2023-01-01": 1348, - "2015-01-01": 1348 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1889.13343715561, - "2034-01-01": 1852.55208204932, - "2033-01-01": 1816.42234861101, - "2032-01-01": 1781.19585850866, - "2031-01-01": 1746.87261174227, - "2030-01-01": 1713.00098664385, - "2029-01-01": 1679.58098321342, - "2028-01-01": 1646.61260145096, - "2027-01-01": 1613.19259802052, - "2026-01-01": 1574.39829674114, - "2025-01-01": 1550.69342809171, - "2024-01-01": 1517.04008679948, - "2023-01-01": 1435, - "2015-01-01": 1435 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1994.45098069042, - "2034-01-01": 1955.83024690225, - "2033-01-01": 1917.68631229664, - "2032-01-01": 1880.49597605618, - "2031-01-01": 1844.25923818086, - "2030-01-01": 1808.49929948811, - "2029-01-01": 1773.21615997793, - "2028-01-01": 1738.40981965032, - "2027-01-01": 1703.12668014013, - "2026-01-01": 1662.16963035737, - "2025-01-01": 1637.14323592957, - "2024-01-01": 1601.61375017506, - "2023-01-01": 1515, - "2015-01-01": 1515 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2090.55323916593, - "2034-01-01": 2050.07157233054, - "2033-01-01": 2010.08967915978, - "2032-01-01": 1971.1073333183, - "2031-01-01": 1933.12453480608, - "2030-01-01": 1895.64150995849, - "2029-01-01": 1858.65825877554, - "2028-01-01": 1822.17478125723, - "2027-01-01": 1785.19153007428, - "2026-01-01": 1742.26097228218, - "2025-01-01": 1716.02868558162, - "2024-01-01": 1678.78721800528, - "2023-01-01": 1588, - "2015-01-01": 1588 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2180.07315117052, - "2034-01-01": 2137.85801245553, - "2033-01-01": 2096.16404829257, - "2032-01-01": 2055.51243323369, - "2031-01-01": 2015.90316727888, - "2030-01-01": 1976.81507587611, - "2029-01-01": 1938.24815902538, - "2028-01-01": 1900.20241672668, - "2027-01-01": 1861.63549987595, - "2026-01-01": 1816.86660585598, - "2025-01-01": 1789.51102224381, - "2024-01-01": 1750.67483187452, - "2023-01-01": 1656, - "2015-01-01": 1656 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2297.23891835299, - "2034-01-01": 2252.7549708544, - "2033-01-01": 2208.82020789284, - "2032-01-01": 2165.98381400531, - "2031-01-01": 2124.24578919182, - "2030-01-01": 2083.05694891535, - "2029-01-01": 2042.4172931759, - "2028-01-01": 2002.32682197347, - "2027-01-01": 1961.68716623402, - "2026-01-01": 1914.51221450403, - "2025-01-01": 1885.68643346343, - "2024-01-01": 1844.76303237986, - "2023-01-01": 1745, - "2015-01-01": 1745 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2448.63288718428, - "2034-01-01": 2401.21733283048, - "2033-01-01": 2354.38715569093, - "2032-01-01": 2308.72773297987, - "2031-01-01": 2264.2390646973, - "2030-01-01": 2220.33577362897, - "2029-01-01": 2177.01785977488, - "2028-01-01": 2134.28532313504, - "2027-01-01": 2090.96740928096, - "2026-01-01": 2040.68350657736, - "2025-01-01": 2009.95803223037, - "2024-01-01": 1966.33767348225, - "2023-01-01": 1860, - "2015-01-01": 1860 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2586.86216307371, - "2034-01-01": 2536.76992419994, - "2033-01-01": 2487.29610802832, - "2032-01-01": 2439.05913726099, - "2031-01-01": 2392.05901189795, - "2030-01-01": 2345.67730923705, - "2029-01-01": 2299.9140292783, - "2028-01-01": 2254.7691720217, - "2027-01-01": 2209.00589206295, - "2026-01-01": 2155.88338194867, - "2025-01-01": 2123.42340501756, - "2024-01-01": 2077.3406066627, - "2023-01-01": 1965, - "2015-01-01": 1965 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2713.24321531548, - "2034-01-01": 2660.70372202345, - "2033-01-01": 2608.81286445108, - "2032-01-01": 2558.21927831802, - "2031-01-01": 2508.92296362426, - "2030-01-01": 2460.27528465016, - "2029-01-01": 2412.27624139571, - "2028-01-01": 2364.92583386092, - "2027-01-01": 2316.92679060648, - "2026-01-01": 2261.20898228814, - "2025-01-01": 2227.163174423, - "2024-01-01": 2178.8290027134, - "2023-01-01": 2061, - "2015-01-01": 2061 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2831.72545179214, - "2034-01-01": 2776.89165748299, - "2033-01-01": 2722.73482359741, - "2032-01-01": 2669.93191055898, - "2031-01-01": 2618.48291836768, - "2030-01-01": 2567.71088659995, - "2029-01-01": 2517.61581525579, - "2028-01-01": 2468.1977043352, - "2027-01-01": 2418.10263299104, - "2026-01-01": 2359.9517326064, - "2025-01-01": 2324.4192082406, - "2024-01-01": 2273.97437401093, - "2023-01-01": 2151, - "2015-01-01": 2151 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2952.84062685717, - "2034-01-01": 2895.66154706386, - "2033-01-01": 2839.18838183589, - "2032-01-01": 2784.12704573863, - "2031-01-01": 2730.47753877206, - "2030-01-01": 2677.53394637084, - "2029-01-01": 2625.29626853498, - "2028-01-01": 2573.76450526446, - "2027-01-01": 2521.52682742859, - "2026-01-01": 2460.88876626507, - "2025-01-01": 2423.83648725415, - "2024-01-01": 2371.23408689285, - "2023-01-01": 2243, - "2015-01-01": 2243 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3081.85461768731, - "2034-01-01": 3022.17729900869, - "2033-01-01": 2963.23673735079, - "2032-01-01": 2905.76968973434, - "2031-01-01": 2849.77615615934, - "2030-01-01": 2794.51937960506, - "2029-01-01": 2739.9993600715, - "2028-01-01": 2686.21609755867, - "2027-01-01": 2631.69607802512, - "2026-01-01": 2568.40864994495, - "2025-01-01": 2529.73750185553, - "2024-01-01": 2474.83682452793, - "2023-01-01": 2341, - "2015-01-01": 2341 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3202.96979275234, - "2034-01-01": 3140.94718858955, - "2033-01-01": 3079.69029558927, - "2032-01-01": 3019.96482491399, - "2031-01-01": 2961.77077656372, - "2030-01-01": 2904.34243937595, - "2029-01-01": 2847.67981335069, - "2028-01-01": 2791.78289848793, - "2027-01-01": 2735.12027246267, - "2026-01-01": 2669.34568360362, - "2025-01-01": 2629.15478086908, - "2024-01-01": 2572.09653740985, - "2023-01-01": 2433, - "2015-01-01": 2433 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3316.18615205226, - "2034-01-01": 3251.97121580644, - "2033-01-01": 3188.54905655132, - "2032-01-01": 3126.71245127757, - "2031-01-01": 3066.46139998521, - "2030-01-01": 3007.00312568353, - "2029-01-01": 2948.33762837254, - "2028-01-01": 2890.46490805224, - "2027-01-01": 2831.79941074125, - "2026-01-01": 2763.69986724106, - "2025-01-01": 2722.08832429478, - "2024-01-01": 2663.0132255386, - "2023-01-01": 2519, - "2015-01-01": 2519 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TN.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3974.4207991448, - "2034-01-01": 3897.45974613722, - "2033-01-01": 3821.44882958652, - "2032-01-01": 3747.33818594958, - "2031-01-01": 3675.12781522642, - "2030-01-01": 3603.86758096013, - "2029-01-01": 3533.55748315073, - "2028-01-01": 3464.19752179822, - "2027-01-01": 3393.88742398882, - "2026-01-01": 3312.27070234251, - "2025-01-01": 3262.39962328144, - "2024-01-01": 3191.59862163598, - "2023-01-01": 3019, - "2015-01-01": 3019 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX", - "description": null, - "label": "TX", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 760.919252038985, - "2034-01-01": 746.184741062376, - "2033-01-01": 731.632137628687, - "2032-01-01": 717.443349280841, - "2031-01-01": 703.618376018837, - "2030-01-01": 689.975310299754, - "2029-01-01": 676.514152123592, - "2028-01-01": 663.234901490351, - "2027-01-01": 649.77374331419, - "2026-01-01": 634.147885377267, - "2025-01-01": 624.599861628576, - "2024-01-01": 611.044717888572, - "2023-01-01": 578, - "2015-01-01": 578 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1050.54249675971, - "2034-01-01": 1030.19969440792, - "2033-01-01": 1010.10803776417, - "2032-01-01": 990.518672536524, - "2031-01-01": 971.431598724969, - "2030-01-01": 952.59567062146, - "2029-01-01": 934.010888225997, - "2028-01-01": 915.677251538582, - "2027-01-01": 897.09246914312, - "2026-01-01": 875.519052821901, - "2025-01-01": 862.336833182705, - "2024-01-01": 843.622292171419, - "2023-01-01": 798, - "2015-01-01": 798 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1194.03764982588, - "2034-01-01": 1170.91619402003, - "2033-01-01": 1148.08018828585, - "2032-01-01": 1125.81508269502, - "2031-01-01": 1104.12087724755, - "2030-01-01": 1082.71212187176, - "2029-01-01": 1061.58881656764, - "2028-01-01": 1040.75096133521, - "2027-01-01": 1019.62765603109, - "2026-01-01": 995.107494874015, - "2025-01-01": 980.124696361797, - "2024-01-01": 958.853908520648, - "2023-01-01": 907, - "2015-01-01": 907 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1315.15282489091, - "2034-01-01": 1289.68608360089, - "2033-01-01": 1264.53374652432, - "2032-01-01": 1240.01021787467, - "2031-01-01": 1216.11549765193, - "2030-01-01": 1192.53518164265, - "2029-01-01": 1169.26926984683, - "2028-01-01": 1146.31776226447, - "2027-01-01": 1123.05185046864, - "2026-01-01": 1096.04452853268, - "2025-01-01": 1079.54197537534, - "2024-01-01": 1056.11362140257, - "2023-01-01": 999, - "2015-01-01": 999 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1420.47036842572, - "2034-01-01": 1392.96424845381, - "2033-01-01": 1365.79771020995, - "2032-01-01": 1339.31033542219, - "2031-01-01": 1313.50212409053, - "2030-01-01": 1288.03349448691, - "2029-01-01": 1262.90444661134, - "2028-01-01": 1238.11498046382, - "2027-01-01": 1212.98593258825, - "2026-01-01": 1183.81586214891, - "2025-01-01": 1165.99178321321, - "2024-01-01": 1140.68728477815, - "2023-01-01": 1079, - "2015-01-01": 1079 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1513.93968831286, - "2034-01-01": 1484.62361976078, - "2033-01-01": 1455.66947798095, - "2032-01-01": 1427.43918974562, - "2031-01-01": 1399.93275505478, - "2030-01-01": 1372.78824713619, - "2029-01-01": 1346.00566598985, - "2028-01-01": 1319.58501161575, - "2027-01-01": 1292.80243046941, - "2026-01-01": 1261.71292073332, - "2025-01-01": 1242.71598766931, - "2024-01-01": 1215.74641102397, - "2023-01-01": 1150, - "2015-01-01": 1150 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1598.19372314071, - "2034-01-01": 1567.24615164312, - "2033-01-01": 1536.68064892946, - "2032-01-01": 1506.87928378363, - "2031-01-01": 1477.84205620565, - "2030-01-01": 1449.18689741159, - "2029-01-01": 1420.91380740145, - "2028-01-01": 1393.02278617524, - "2027-01-01": 1364.7496961651, - "2026-01-01": 1331.9299876263, - "2025-01-01": 1311.8758339396, - "2024-01-01": 1283.40534172444, - "2023-01-01": 1214, - "2015-01-01": 1214 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1677.18188079181, - "2034-01-01": 1644.70477528281, - "2033-01-01": 1612.62862169368, - "2032-01-01": 1581.35437194428, - "2031-01-01": 1550.8820260346, - "2030-01-01": 1520.81063204479, - "2029-01-01": 1491.14018997484, - "2028-01-01": 1461.87069982475, - "2027-01-01": 1432.20025775481, - "2026-01-01": 1397.75848783847, - "2025-01-01": 1376.713189818, - "2024-01-01": 1346.83558925612, - "2023-01-01": 1274, - "2015-01-01": 1274 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1749.58769197199, - "2034-01-01": 1715.7085136192, - "2033-01-01": 1682.24759672755, - "2032-01-01": 1649.6232027582, - "2031-01-01": 1617.83533171113, - "2030-01-01": 1586.46572212521, - "2029-01-01": 1555.51437400044, - "2028-01-01": 1524.98128733681, - "2027-01-01": 1494.02993921204, - "2026-01-01": 1458.10127969963, - "2025-01-01": 1436.14743270654, - "2024-01-01": 1404.97998282684, - "2023-01-01": 1329, - "2015-01-01": 1329 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1845.6899504475, - "2034-01-01": 1809.94983904749, - "2033-01-01": 1774.65096359069, - "2032-01-01": 1740.23456002031, - "2031-01-01": 1706.70062833635, - "2030-01-01": 1673.6079325956, - "2029-01-01": 1640.95647279806, - "2028-01-01": 1608.74624894372, - "2027-01-01": 1576.09478914618, - "2026-01-01": 1538.19262162444, - "2025-01-01": 1515.03288235859, - "2024-01-01": 1482.15345065705, - "2023-01-01": 1402, - "2015-01-01": 1402 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1968.12159480672, - "2034-01-01": 1930.01070568902, - "2033-01-01": 1892.37032137524, - "2032-01-01": 1855.6709466693, - "2031-01-01": 1819.91258157121, - "2030-01-01": 1784.62472127705, - "2029-01-01": 1749.8073657868, - "2028-01-01": 1715.46051510048, - "2027-01-01": 1680.64315961023, - "2026-01-01": 1640.22679695331, - "2025-01-01": 1615.53078397011, - "2024-01-01": 1580.47033433117, - "2023-01-01": 1495, - "2015-01-01": 1495 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2081.33795410664, - "2034-01-01": 2041.03473290591, - "2033-01-01": 2001.22908233729, - "2032-01-01": 1962.41857303289, - "2031-01-01": 1924.6032049927, - "2030-01-01": 1887.28540758462, - "2029-01-01": 1850.46518080865, - "2028-01-01": 1814.14252466478, - "2027-01-01": 1777.32229788881, - "2026-01-01": 1734.58098059076, - "2025-01-01": 1708.46432739581, - "2024-01-01": 1671.38702245992, - "2023-01-01": 1581, - "2015-01-01": 1581 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2184.02255905307, - "2034-01-01": 2141.73094363751, - "2033-01-01": 2099.96144693078, - "2032-01-01": 2059.23618764172, - "2031-01-01": 2019.55516577033, - "2030-01-01": 1980.39626260777, - "2029-01-01": 1941.75947815405, - "2028-01-01": 1903.64481240916, - "2027-01-01": 1865.00802795543, - "2026-01-01": 1820.15803086658, - "2025-01-01": 1792.75289003773, - "2024-01-01": 1753.84634425111, - "2023-01-01": 1659, - "2015-01-01": 1659 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2280.12481752859, - "2034-01-01": 2235.9722690658, - "2033-01-01": 2192.36481379392, - "2032-01-01": 2149.84754490383, - "2031-01-01": 2108.42046239555, - "2030-01-01": 2067.53847307816, - "2029-01-01": 2027.20157695166, - "2028-01-01": 1987.40977401607, - "2027-01-01": 1947.07287788958, - "2026-01-01": 1900.24937279139, - "2025-01-01": 1871.63833968978, - "2024-01-01": 1831.01981208133, - "2023-01-01": 1732, - "2015-01-01": 1732 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2378.86001459247, - "2034-01-01": 2332.79554861542, - "2033-01-01": 2287.2997797492, - "2032-01-01": 2242.94140510464, - "2031-01-01": 2199.72042468173, - "2030-01-01": 2157.06814136965, - "2029-01-01": 2114.98455516839, - "2028-01-01": 2073.46966607797, - "2027-01-01": 2031.38607987671, - "2026-01-01": 1982.53499805661, - "2025-01-01": 1952.68503453778, - "2024-01-01": 1910.30762149593, - "2023-01-01": 1807, - "2015-01-01": 1807 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2484.17755812728, - "2034-01-01": 2436.07371346834, - "2033-01-01": 2388.56374343483, - "2032-01-01": 2342.24152265216, - "2031-01-01": 2297.10705112032, - "2030-01-01": 2252.5664542139, - "2029-01-01": 2208.6197319329, - "2028-01-01": 2165.26688427732, - "2027-01-01": 2121.32016199632, - "2026-01-01": 2070.30633167284, - "2025-01-01": 2039.13484237565, - "2024-01-01": 1994.88128487151, - "2023-01-01": 1887, - "2015-01-01": 1887 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2581.59628589697, - "2034-01-01": 2531.6060159573, - "2033-01-01": 2482.23290984404, - "2032-01-01": 2434.09413138361, - "2031-01-01": 2387.18968057602, - "2030-01-01": 2340.90239359484, - "2029-01-01": 2295.23227044008, - "2028-01-01": 2250.17931111173, - "2027-01-01": 2204.50918795697, - "2026-01-01": 2151.49481526786, - "2025-01-01": 2119.10091462567, - "2024-01-01": 2073.11192349393, - "2023-01-01": 1961, - "2015-01-01": 1961 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2675.06560578411, - "2034-01-01": 2623.26538726427, - "2033-01-01": 2572.10467761504, - "2032-01-01": 2522.22298570704, - "2031-01-01": 2473.62031154027, - "2030-01-01": 2425.65714624412, - "2029-01-01": 2378.33348981858, - "2028-01-01": 2331.64934226366, - "2027-01-01": 2284.32568583812, - "2026-01-01": 2229.39187385226, - "2025-01-01": 2195.82511908178, - "2024-01-01": 2148.17104973975, - "2023-01-01": 2032, - "2015-01-01": 2032 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3212.18507781163, - "2034-01-01": 3149.98402801418, - "2033-01-01": 3088.55089241176, - "2032-01-01": 3028.6535851994, - "2031-01-01": 2970.2921063771, - "2030-01-01": 2912.69854174983, - "2029-01-01": 2855.87289131759, - "2028-01-01": 2799.81515508038, - "2027-01-01": 2742.98950464814, - "2026-01-01": 2677.02567529504, - "2025-01-01": 2636.71913905489, - "2024-01-01": 2579.49673295522, - "2023-01-01": 2440, - "2015-01-01": 2440 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 878.085019221459, - "2034-01-01": 861.081699461253, - "2033-01-01": 844.288297228952, - "2032-01-01": 827.914730052458, - "2031-01-01": 811.960997931772, - "2030-01-01": 796.21718333899, - "2029-01-01": 780.68328627411, - "2028-01-01": 765.359306737136, - "2027-01-01": 749.825409672257, - "2026-01-01": 731.793494025323, - "2025-01-01": 720.775272848201, - "2024-01-01": 705.132918393905, - "2023-01-01": 667, - "2015-01-01": 667 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1211.15175065029, - "2034-01-01": 1187.69889580863, - "2033-01-01": 1164.53558238476, - "2032-01-01": 1141.95135179649, - "2031-01-01": 1119.94620404382, - "2030-01-01": 1098.23059770895, - "2029-01-01": 1076.80453279188, - "2028-01-01": 1055.6680092926, - "2027-01-01": 1034.24194437553, - "2026-01-01": 1009.37033658665, - "2025-01-01": 994.17279013545, - "2024-01-01": 972.59712881918, - "2023-01-01": 920, - "2015-01-01": 920 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1375.71041242342, - "2034-01-01": 1349.07102839132, - "2033-01-01": 1322.76052564356, - "2032-01-01": 1297.1077854645, - "2031-01-01": 1272.11280785413, - "2030-01-01": 1247.4467115281, - "2029-01-01": 1223.10949648642, - "2028-01-01": 1199.1011627291, - "2027-01-01": 1174.76394768742, - "2026-01-01": 1146.51304536201, - "2025-01-01": 1129.25061488211, - "2024-01-01": 1104.74347784352, - "2023-01-01": 1045, - "2015-01-01": 1045 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1512.62321901867, - "2034-01-01": 1483.33264270012, - "2033-01-01": 1454.40367843488, - "2032-01-01": 1426.19793827627, - "2031-01-01": 1398.7154222243, - "2030-01-01": 1371.59451822564, - "2029-01-01": 1344.83522628029, - "2028-01-01": 1318.43754638826, - "2027-01-01": 1291.67825444291, - "2026-01-01": 1260.61577906311, - "2025-01-01": 1241.63536507134, - "2024-01-01": 1214.68924023178, - "2023-01-01": 1149, - "2015-01-01": 1149 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1633.7383940837, - "2034-01-01": 1602.10253228098, - "2033-01-01": 1570.85723667336, - "2032-01-01": 1540.39307345592, - "2031-01-01": 1510.71004262868, - "2030-01-01": 1481.41757799653, - "2029-01-01": 1452.51567955948, - "2028-01-01": 1424.00434731752, - "2027-01-01": 1395.10244888047, - "2026-01-01": 1361.55281272178, - "2025-01-01": 1341.05264408488, - "2024-01-01": 1311.9489531137, - "2023-01-01": 1241, - "2015-01-01": 1241 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1740.3724069127, - "2034-01-01": 1706.67167419457, - "2033-01-01": 1673.38699990506, - "2032-01-01": 1640.93444247279, - "2031-01-01": 1609.31400189776, - "2030-01-01": 1578.10961975134, - "2029-01-01": 1547.32129603354, - "2028-01-01": 1516.94903074437, - "2027-01-01": 1486.16070702657, - "2026-01-01": 1450.42128800821, - "2025-01-01": 1428.58307452072, - "2024-01-01": 1397.57978728147, - "2023-01-01": 1322, - "2015-01-01": 1322 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1836.47466538821, - "2034-01-01": 1800.91299962286, - "2033-01-01": 1765.7903667682, - "2032-01-01": 1731.5457997349, - "2031-01-01": 1698.17929852297, - "2030-01-01": 1665.25183022172, - "2029-01-01": 1632.76339483116, - "2028-01-01": 1600.71399235128, - "2027-01-01": 1568.22555696072, - "2026-01-01": 1530.51262993302, - "2025-01-01": 1507.46852417277, - "2024-01-01": 1474.75325511169, - "2023-01-01": 1395, - "2015-01-01": 1395 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1925.99457739279, - "2034-01-01": 1888.69943974785, - "2033-01-01": 1851.86473590098, - "2032-01-01": 1815.95089965029, - "2031-01-01": 1780.95793099578, - "2030-01-01": 1746.42539613934, - "2029-01-01": 1712.35329508099, - "2028-01-01": 1678.74162782073, - "2027-01-01": 1644.66952676239, - "2026-01-01": 1605.11826350682, - "2025-01-01": 1580.95086083496, - "2024-01-01": 1546.64086898093, - "2023-01-01": 1463, - "2015-01-01": 1463 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2008.93214292646, - "2034-01-01": 1970.03099456952, - "2033-01-01": 1931.61010730342, - "2032-01-01": 1894.14974221897, - "2031-01-01": 1857.64989931617, - "2030-01-01": 1821.63031750419, - "2029-01-01": 1786.09099678305, - "2028-01-01": 1751.03193715273, - "2027-01-01": 1715.49261643158, - "2026-01-01": 1674.2381887296, - "2025-01-01": 1649.03008450728, - "2024-01-01": 1613.2426288892, - "2023-01-01": 1526, - "2015-01-01": 1526 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2118.19909434382, - "2034-01-01": 2077.18209060443, - "2033-01-01": 2036.67146962726, - "2032-01-01": 1997.17361417452, - "2031-01-01": 1958.68852424621, - "2030-01-01": 1920.70981708011, - "2029-01-01": 1883.23749267623, - "2028-01-01": 1846.27155103456, - "2027-01-01": 1808.79922663068, - "2026-01-01": 1765.30094735644, - "2025-01-01": 1738.72176013906, - "2024-01-01": 1700.98780464137, - "2023-01-01": 1609, - "2015-01-01": 1609 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2257.74483952744, - "2034-01-01": 2214.02565903456, - "2033-01-01": 2170.84622151072, - "2032-01-01": 2128.74626992499, - "2031-01-01": 2087.72580427734, - "2030-01-01": 2047.24508159875, - "2029-01-01": 2007.3041018892, - "2028-01-01": 1967.90286514871, - "2027-01-01": 1927.96188543916, - "2026-01-01": 1881.59796439795, - "2025-01-01": 1853.26775552424, - "2024-01-01": 1813.04790861401, - "2023-01-01": 1715, - "2015-01-01": 1715 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2385.44236106339, - "2034-01-01": 2339.25043391873, - "2033-01-01": 2293.62877747955, - "2032-01-01": 2249.14766245136, - "2031-01-01": 2205.80708883414, - "2030-01-01": 2163.03678592241, - "2029-01-01": 2120.83675371617, - "2028-01-01": 2079.20699221543, - "2027-01-01": 2037.00696000919, - "2026-01-01": 1988.02070640763, - "2025-01-01": 1958.08814752765, - "2024-01-01": 1915.59347545691, - "2023-01-01": 1812, - "2015-01-01": 1812 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2502.60812824587, - "2034-01-01": 2454.14739231761, - "2033-01-01": 2406.28493707982, - "2032-01-01": 2359.61904322297, - "2031-01-01": 2314.14971074707, - "2030-01-01": 2269.27865896165, - "2029-01-01": 2225.00588786669, - "2028-01-01": 2181.33139746221, - "2027-01-01": 2137.05862636726, - "2026-01-01": 2085.66631505568, - "2025-01-01": 2054.26355874727, - "2024-01-01": 2009.68167596224, - "2023-01-01": 1901, - "2015-01-01": 1901 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2611.87507966323, - "2034-01-01": 2561.29848835251, - "2033-01-01": 2511.34629940366, - "2032-01-01": 2462.64291517853, - "2031-01-01": 2415.18833567711, - "2030-01-01": 2368.35815853756, - "2029-01-01": 2322.15238375987, - "2028-01-01": 2276.57101134404, - "2027-01-01": 2230.36523656635, - "2026-01-01": 2176.72907368252, - "2025-01-01": 2143.95523437906, - "2024-01-01": 2097.4268517144, - "2023-01-01": 1984, - "2015-01-01": 1984 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2725.09143896315, - "2034-01-01": 2672.32251556941, - "2033-01-01": 2620.20506036571, - "2032-01-01": 2569.39054154211, - "2031-01-01": 2519.8789590986, - "2030-01-01": 2471.01884484514, - "2029-01-01": 2422.81019878172, - "2028-01-01": 2375.25302090835, - "2027-01-01": 2327.04437484494, - "2026-01-01": 2271.08325731997, - "2025-01-01": 2236.88877780476, - "2024-01-01": 2188.34353984315, - "2023-01-01": 2070, - "2015-01-01": 2070 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2844.89014473399, - "2034-01-01": 2789.80142808961, - "2033-01-01": 2735.39281905812, - "2032-01-01": 2682.34442525242, - "2031-01-01": 2630.6562466725, - "2030-01-01": 2579.64817570548, - "2029-01-01": 2529.32021235135, - "2028-01-01": 2479.67235661012, - "2027-01-01": 2429.34439325599, - "2026-01-01": 2370.92314930843, - "2025-01-01": 2335.22543422033, - "2024-01-01": 2284.54608193288, - "2023-01-01": 2161, - "2015-01-01": 2161 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2955.47356544554, - "2034-01-01": 2898.24350118518, - "2033-01-01": 2841.71998092803, - "2032-01-01": 2786.60954867731, - "2031-01-01": 2732.91220443303, - "2030-01-01": 2679.92140419195, - "2029-01-01": 2627.63714795409, - "2028-01-01": 2576.05943571944, - "2027-01-01": 2523.77517948158, - "2026-01-01": 2463.08304960547, - "2025-01-01": 2425.99773245009, - "2024-01-01": 2373.34842847724, - "2023-01-01": 2245, - "2015-01-01": 2245 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3062.10757827453, - "2034-01-01": 3002.81264309876, - "2033-01-01": 2944.24974415973, - "2032-01-01": 2887.15091769418, - "2031-01-01": 2831.5161637021, - "2030-01-01": 2776.61344594676, - "2029-01-01": 2722.44276442816, - "2028-01-01": 2669.00411914629, - "2027-01-01": 2614.83343762769, - "2026-01-01": 2551.95152489191, - "2025-01-01": 2513.52816288593, - "2024-01-01": 2458.97926264501, - "2023-01-01": 2326, - "2015-01-01": 2326 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3671.63286148223, - "2034-01-01": 3600.53502218506, - "2033-01-01": 3530.31493399033, - "2032-01-01": 3461.85034800046, - "2031-01-01": 3395.14126421546, - "2030-01-01": 3329.3099315329, - "2029-01-01": 3264.35634995276, - "2028-01-01": 3200.28051947507, - "2027-01-01": 3135.32693789494, - "2026-01-01": 3059.92811819584, - "2025-01-01": 3013.85642574758, - "2024-01-01": 2948.44933943119, - "2023-01-01": 2789, - "2015-01-01": 2789 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 957.073176872564, - "2034-01-01": 938.540323100946, - "2033-01-01": 920.236269993175, - "2032-01-01": 902.389818213099, - "2031-01-01": 885.000967760717, - "2030-01-01": 867.840917972182, - "2029-01-01": 850.909668847494, - "2028-01-01": 834.207220386653, - "2027-01-01": 817.275971261965, - "2026-01-01": 797.621994237496, - "2025-01-01": 785.6126287266, - "2024-01-01": 768.563165925591, - "2023-01-01": 727, - "2015-01-01": 727 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1316.4692941851, - "2034-01-01": 1290.97706066155, - "2033-01-01": 1265.79954607039, - "2032-01-01": 1241.25146934402, - "2031-01-01": 1217.33283048242, - "2030-01-01": 1193.72891055321, - "2029-01-01": 1170.43970955639, - "2028-01-01": 1147.46522749196, - "2027-01-01": 1124.17602649514, - "2026-01-01": 1097.14167020288, - "2025-01-01": 1080.62259797332, - "2024-01-01": 1057.17079219476, - "2023-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1495.50911819427, - "2034-01-01": 1466.54994091152, - "2033-01-01": 1437.94828433597, - "2032-01-01": 1410.0616691748, - "2031-01-01": 1382.89009542803, - "2030-01-01": 1356.07604238844, - "2029-01-01": 1329.61951005606, - "2028-01-01": 1303.52049843086, - "2027-01-01": 1277.06396609848, - "2026-01-01": 1246.35293735048, - "2025-01-01": 1227.58727129769, - "2024-01-01": 1200.94601993325, - "2023-01-01": 1136, - "2015-01-01": 1136 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1644.27014843718, - "2034-01-01": 1612.43034876627, - "2033-01-01": 1580.98363304192, - "2032-01-01": 1550.32308521068, - "2031-01-01": 1520.44870527254, - "2030-01-01": 1490.96740928096, - "2029-01-01": 1461.87919723593, - "2028-01-01": 1433.18406913745, - "2027-01-01": 1404.09585709243, - "2026-01-01": 1370.3299460834, - "2025-01-01": 1349.69762486867, - "2024-01-01": 1320.40631945126, - "2023-01-01": 1249, - "2015-01-01": 1249 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1774.60060856151, - "2034-01-01": 1740.23707777177, - "2033-01-01": 1706.29778810289, - "2032-01-01": 1673.20698067573, - "2031-01-01": 1640.9646554903, - "2030-01-01": 1609.14657142572, - "2029-01-01": 1577.75272848201, - "2028-01-01": 1546.78312665916, - "2027-01-01": 1515.38928371545, - "2026-01-01": 1478.94697143349, - "2025-01-01": 1456.67926206803, - "2024-01-01": 1425.06622787854, - "2023-01-01": 1348, - "2015-01-01": 1348 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1889.13343715561, - "2034-01-01": 1852.55208204932, - "2033-01-01": 1816.42234861101, - "2032-01-01": 1781.19585850866, - "2031-01-01": 1746.87261174227, - "2030-01-01": 1713.00098664385, - "2029-01-01": 1679.58098321342, - "2028-01-01": 1646.61260145096, - "2027-01-01": 1613.19259802052, - "2026-01-01": 1574.39829674114, - "2025-01-01": 1550.69342809171, - "2024-01-01": 1517.04008679948, - "2023-01-01": 1435, - "2015-01-01": 1435 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1994.45098069042, - "2034-01-01": 1955.83024690225, - "2033-01-01": 1917.68631229664, - "2032-01-01": 1880.49597605618, - "2031-01-01": 1844.25923818086, - "2030-01-01": 1808.49929948811, - "2029-01-01": 1773.21615997793, - "2028-01-01": 1738.40981965032, - "2027-01-01": 1703.12668014013, - "2026-01-01": 1662.16963035737, - "2025-01-01": 1637.14323592957, - "2024-01-01": 1601.61375017506, - "2023-01-01": 1515, - "2015-01-01": 1515 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2090.55323916593, - "2034-01-01": 2050.07157233054, - "2033-01-01": 2010.08967915978, - "2032-01-01": 1971.1073333183, - "2031-01-01": 1933.12453480608, - "2030-01-01": 1895.64150995849, - "2029-01-01": 1858.65825877554, - "2028-01-01": 1822.17478125723, - "2027-01-01": 1785.19153007428, - "2026-01-01": 1742.26097228218, - "2025-01-01": 1716.02868558162, - "2024-01-01": 1678.78721800528, - "2023-01-01": 1588, - "2015-01-01": 1588 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2180.07315117052, - "2034-01-01": 2137.85801245553, - "2033-01-01": 2096.16404829257, - "2032-01-01": 2055.51243323369, - "2031-01-01": 2015.90316727888, - "2030-01-01": 1976.81507587611, - "2029-01-01": 1938.24815902538, - "2028-01-01": 1900.20241672668, - "2027-01-01": 1861.63549987595, - "2026-01-01": 1816.86660585598, - "2025-01-01": 1789.51102224381, - "2024-01-01": 1750.67483187452, - "2023-01-01": 1656, - "2015-01-01": 1656 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2297.23891835299, - "2034-01-01": 2252.7549708544, - "2033-01-01": 2208.82020789284, - "2032-01-01": 2165.98381400531, - "2031-01-01": 2124.24578919182, - "2030-01-01": 2083.05694891535, - "2029-01-01": 2042.4172931759, - "2028-01-01": 2002.32682197347, - "2027-01-01": 1961.68716623402, - "2026-01-01": 1914.51221450403, - "2025-01-01": 1885.68643346343, - "2024-01-01": 1844.76303237986, - "2023-01-01": 1745, - "2015-01-01": 1745 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2448.63288718428, - "2034-01-01": 2401.21733283048, - "2033-01-01": 2354.38715569093, - "2032-01-01": 2308.72773297987, - "2031-01-01": 2264.2390646973, - "2030-01-01": 2220.33577362897, - "2029-01-01": 2177.01785977488, - "2028-01-01": 2134.28532313504, - "2027-01-01": 2090.96740928096, - "2026-01-01": 2040.68350657736, - "2025-01-01": 2009.95803223037, - "2024-01-01": 1966.33767348225, - "2023-01-01": 1860, - "2015-01-01": 1860 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2586.86216307371, - "2034-01-01": 2536.76992419994, - "2033-01-01": 2487.29610802832, - "2032-01-01": 2439.05913726099, - "2031-01-01": 2392.05901189795, - "2030-01-01": 2345.67730923705, - "2029-01-01": 2299.9140292783, - "2028-01-01": 2254.7691720217, - "2027-01-01": 2209.00589206295, - "2026-01-01": 2155.88338194867, - "2025-01-01": 2123.42340501756, - "2024-01-01": 2077.3406066627, - "2023-01-01": 1965, - "2015-01-01": 1965 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2713.24321531548, - "2034-01-01": 2660.70372202345, - "2033-01-01": 2608.81286445108, - "2032-01-01": 2558.21927831802, - "2031-01-01": 2508.92296362426, - "2030-01-01": 2460.27528465016, - "2029-01-01": 2412.27624139571, - "2028-01-01": 2364.92583386092, - "2027-01-01": 2316.92679060648, - "2026-01-01": 2261.20898228814, - "2025-01-01": 2227.163174423, - "2024-01-01": 2178.8290027134, - "2023-01-01": 2061, - "2015-01-01": 2061 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2831.72545179214, - "2034-01-01": 2776.89165748299, - "2033-01-01": 2722.73482359741, - "2032-01-01": 2669.93191055898, - "2031-01-01": 2618.48291836768, - "2030-01-01": 2567.71088659995, - "2029-01-01": 2517.61581525579, - "2028-01-01": 2468.1977043352, - "2027-01-01": 2418.10263299104, - "2026-01-01": 2359.9517326064, - "2025-01-01": 2324.4192082406, - "2024-01-01": 2273.97437401093, - "2023-01-01": 2151, - "2015-01-01": 2151 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2952.84062685717, - "2034-01-01": 2895.66154706386, - "2033-01-01": 2839.18838183589, - "2032-01-01": 2784.12704573863, - "2031-01-01": 2730.47753877206, - "2030-01-01": 2677.53394637084, - "2029-01-01": 2625.29626853498, - "2028-01-01": 2573.76450526446, - "2027-01-01": 2521.52682742859, - "2026-01-01": 2460.88876626507, - "2025-01-01": 2423.83648725415, - "2024-01-01": 2371.23408689285, - "2023-01-01": 2243, - "2015-01-01": 2243 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3081.85461768731, - "2034-01-01": 3022.17729900869, - "2033-01-01": 2963.23673735079, - "2032-01-01": 2905.76968973434, - "2031-01-01": 2849.77615615934, - "2030-01-01": 2794.51937960506, - "2029-01-01": 2739.9993600715, - "2028-01-01": 2686.21609755867, - "2027-01-01": 2631.69607802512, - "2026-01-01": 2568.40864994495, - "2025-01-01": 2529.73750185553, - "2024-01-01": 2474.83682452793, - "2023-01-01": 2341, - "2015-01-01": 2341 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3202.96979275234, - "2034-01-01": 3140.94718858955, - "2033-01-01": 3079.69029558927, - "2032-01-01": 3019.96482491399, - "2031-01-01": 2961.77077656372, - "2030-01-01": 2904.34243937595, - "2029-01-01": 2847.67981335069, - "2028-01-01": 2791.78289848793, - "2027-01-01": 2735.12027246267, - "2026-01-01": 2669.34568360362, - "2025-01-01": 2629.15478086908, - "2024-01-01": 2572.09653740985, - "2023-01-01": 2433, - "2015-01-01": 2433 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3316.18615205226, - "2034-01-01": 3251.97121580644, - "2033-01-01": 3188.54905655132, - "2032-01-01": 3126.71245127757, - "2031-01-01": 3066.46139998521, - "2030-01-01": 3007.00312568353, - "2029-01-01": 2948.33762837254, - "2028-01-01": 2890.46490805224, - "2027-01-01": 2831.79941074125, - "2026-01-01": 2763.69986724106, - "2025-01-01": 2722.08832429478, - "2024-01-01": 2663.0132255386, - "2023-01-01": 2519, - "2015-01-01": 2519 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3974.4207991448, - "2034-01-01": 3897.45974613722, - "2033-01-01": 3821.44882958652, - "2032-01-01": 3747.33818594958, - "2031-01-01": 3675.12781522642, - "2030-01-01": 3603.86758096013, - "2029-01-01": 3533.55748315073, - "2028-01-01": 3464.19752179822, - "2027-01-01": 3393.88742398882, - "2026-01-01": 3312.27070234251, - "2025-01-01": 3262.39962328144, - "2024-01-01": 3191.59862163598, - "2023-01-01": 3019, - "2015-01-01": 3019 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1016.31429511089, - "2034-01-01": 996.634290830716, - "2033-01-01": 977.197249566343, - "2032-01-01": 958.24613433358, - "2031-01-01": 939.780945132426, - "2030-01-01": 921.558718947076, - "2029-01-01": 903.579455777531, - "2028-01-01": 885.843155623791, - "2027-01-01": 867.863892454246, - "2026-01-01": 846.993369396626, - "2025-01-01": 834.240645635399, - "2024-01-01": 816.135851574355, - "2023-01-01": 772, - "2015-01-01": 772 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1398.09039042457, - "2034-01-01": 1371.01763842257, - "2033-01-01": 1344.27911792676, - "2032-01-01": 1318.20906044334, - "2031-01-01": 1292.80746597233, - "2030-01-01": 1267.74010300751, - "2029-01-01": 1243.00697154888, - "2028-01-01": 1218.60807159646, - "2027-01-01": 1193.87494013784, - "2026-01-01": 1165.16445375546, - "2025-01-01": 1147.62119904766, - "2024-01-01": 1122.71538131084, - "2023-01-01": 1062, - "2015-01-01": 1062 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1586.34549949304, - "2034-01-01": 1555.62735809717, - "2033-01-01": 1525.28845301482, - "2032-01-01": 1495.70802055954, - "2031-01-01": 1466.88606073131, - "2030-01-01": 1438.44333721662, - "2029-01-01": 1410.37985001545, - "2028-01-01": 1382.69559912781, - "2027-01-01": 1354.63211192664, - "2026-01-01": 1322.05571259447, - "2025-01-01": 1302.15023055784, - "2024-01-01": 1273.89080459469, - "2023-01-01": 1205, - "2015-01-01": 1205 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1744.32181479525, - "2034-01-01": 1710.54460537655, - "2033-01-01": 1677.18439854327, - "2032-01-01": 1644.65819688082, - "2031-01-01": 1612.9660003892, - "2030-01-01": 1581.690806483, - "2029-01-01": 1550.83261516221, - "2028-01-01": 1520.39142642684, - "2027-01-01": 1489.53323510606, - "2026-01-01": 1453.71271301882, - "2025-01-01": 1431.82494231464, - "2024-01-01": 1400.75129965806, - "2023-01-01": 1325, - "2015-01-01": 1325 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1882.55109068469, - "2034-01-01": 1846.09719674602, - "2033-01-01": 1810.09335088066, - "2032-01-01": 1774.98960116194, - "2031-01-01": 1740.78594758986, - "2030-01-01": 1707.03234209109, - "2029-01-01": 1673.72878466563, - "2028-01-01": 1640.8752753135, - "2027-01-01": 1607.57171788805, - "2026-01-01": 1568.91258839012, - "2025-01-01": 1545.29031510184, - "2024-01-01": 1511.75423283851, - "2023-01-01": 1430, - "2015-01-01": 1430 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2003.66626574972, - "2034-01-01": 1964.86708632688, - "2033-01-01": 1926.54690911914, - "2032-01-01": 1889.18473634159, - "2031-01-01": 1852.78056799424, - "2030-01-01": 1816.85540186198, - "2029-01-01": 1781.40923794482, - "2028-01-01": 1746.44207624276, - "2027-01-01": 1710.9959123256, - "2026-01-01": 1669.84962204879, - "2025-01-01": 1644.70759411539, - "2024-01-01": 1609.01394572043, - "2023-01-01": 1522, - "2015-01-01": 1522 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2114.24968646126, - "2034-01-01": 2073.30915942245, - "2033-01-01": 2032.87407098905, - "2032-01-01": 1993.44985976649, - "2031-01-01": 1955.03652575476, - "2030-01-01": 1917.12863034845, - "2029-01-01": 1879.72617354756, - "2028-01-01": 1842.82915535208, - "2027-01-01": 1805.42669855119, - "2026-01-01": 1762.00952234583, - "2025-01-01": 1735.47989234514, - "2024-01-01": 1697.81629226479, - "2023-01-01": 1606, - "2015-01-01": 1606 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2216.9342914077, - "2034-01-01": 2174.00537015405, - "2033-01-01": 2131.60643558254, - "2032-01-01": 2090.26747437532, - "2031-01-01": 2049.98848653239, - "2030-01-01": 2010.2394853716, - "2029-01-01": 1971.02047089296, - "2028-01-01": 1932.33144309646, - "2027-01-01": 1893.11242861781, - "2026-01-01": 1847.58657262166, - "2025-01-01": 1819.76845498706, - "2024-01-01": 1780.27561405598, - "2023-01-01": 1684, - "2015-01-01": 1684 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2311.72008058903, - "2034-01-01": 2266.95571852168, - "2033-01-01": 2222.74400289961, - "2032-01-01": 2179.63758016809, - "2031-01-01": 2137.63645032712, - "2030-01-01": 2096.18796693143, - "2029-01-01": 2055.29212998102, - "2028-01-01": 2014.94893947588, - "2027-01-01": 1974.05310252546, - "2026-01-01": 1926.58077287626, - "2025-01-01": 1897.57328204114, - "2024-01-01": 1856.391911094, - "2023-01-01": 1756, - "2015-01-01": 1756 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2435.46819424243, - "2034-01-01": 2388.30756222387, - "2033-01-01": 2341.72916023023, - "2032-01-01": 2296.31521828643, - "2031-01-01": 2252.06573639247, - "2030-01-01": 2208.39848452343, - "2029-01-01": 2165.31346267932, - "2028-01-01": 2122.81067086012, - "2027-01-01": 2079.72564901601, - "2026-01-01": 2029.71208987533, - "2025-01-01": 1999.15180625063, - "2024-01-01": 1955.76596556031, - "2023-01-01": 1850, - "2015-01-01": 1850 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2594.76097883882, - "2034-01-01": 2544.51578656391, - "2033-01-01": 2494.89090530474, - "2032-01-01": 2446.50664607705, - "2031-01-01": 2399.36300888084, - "2030-01-01": 2352.83968270037, - "2029-01-01": 2306.93666753564, - "2028-01-01": 2261.65396338665, - "2027-01-01": 2215.75094822192, - "2026-01-01": 2162.46623196988, - "2025-01-01": 2129.9071406054, - "2024-01-01": 2083.68363141587, - "2023-01-01": 1971, - "2015-01-01": 1971 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2740.88907049337, - "2034-01-01": 2687.81424029735, - "2033-01-01": 2635.39465491856, - "2032-01-01": 2584.28555917424, - "2031-01-01": 2534.48695306439, - "2030-01-01": 2485.34359177178, - "2029-01-01": 2436.8554752964, - "2028-01-01": 2389.02260363826, - "2027-01-01": 2340.53448716288, - "2026-01-01": 2284.2489573624, - "2025-01-01": 2249.85624898044, - "2024-01-01": 2201.02958934949, - "2023-01-01": 2082, - "2015-01-01": 2082 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2875.16893850025, - "2034-01-01": 2819.49390048482, - "2033-01-01": 2764.50620861774, - "2032-01-01": 2710.89320904733, - "2031-01-01": 2658.6549017736, - "2030-01-01": 2607.10394064821, - "2029-01-01": 2556.24032567115, - "2028-01-01": 2506.06405684243, - "2027-01-01": 2455.20044186538, - "2026-01-01": 2396.1574077231, - "2025-01-01": 2360.07975397372, - "2024-01-01": 2308.86101015336, - "2023-01-01": 2184, - "2015-01-01": 2184 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2998.91705215365, - "2034-01-01": 2940.84574418701, - "2033-01-01": 2883.49136594835, - "2032-01-01": 2827.57084716567, - "2031-01-01": 2773.08418783895, - "2030-01-01": 2719.31445824021, - "2029-01-01": 2666.26165836945, - "2028-01-01": 2613.92578822668, - "2027-01-01": 2560.87298835592, - "2026-01-01": 2499.28872472217, - "2025-01-01": 2461.65827818321, - "2024-01-01": 2408.23506461966, - "2023-01-01": 2278, - "2015-01-01": 2278 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3127.93104298379, - "2034-01-01": 3067.36149613184, - "2033-01-01": 3007.53972146325, - "2032-01-01": 2949.21349116138, - "2031-01-01": 2892.38280522622, - "2030-01-01": 2836.29989147442, - "2029-01-01": 2780.96474990598, - "2028-01-01": 2726.37738052089, - "2027-01-01": 2671.04223895245, - "2026-01-01": 2606.80860840205, - "2025-01-01": 2567.5592927846, - "2024-01-01": 2511.83780225475, - "2023-01-01": 2376, - "2015-01-01": 2376 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3263.52738028485, - "2034-01-01": 3200.33213337998, - "2033-01-01": 3137.9170747085, - "2032-01-01": 3077.06239250381, - "2031-01-01": 3017.76808676591, - "2030-01-01": 2959.2539692614, - "2029-01-01": 2901.52003999028, - "2028-01-01": 2844.56629895256, - "2027-01-01": 2786.83236968145, - "2026-01-01": 2719.81420043295, - "2025-01-01": 2678.86342037585, - "2024-01-01": 2620.72639385081, - "2023-01-01": 2479, - "2015-01-01": 2479 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3391.22490182081, - "2034-01-01": 3325.55690826415, - "2033-01-01": 3260.69963067733, - "2032-01-01": 3197.46378503018, - "2031-01-01": 3135.84937132271, - "2030-01-01": 3075.04567358506, - "2029-01-01": 3015.05269181725, - "2028-01-01": 2955.87042601928, - "2027-01-01": 2895.87744425147, - "2026-01-01": 2826.23694244263, - "2025-01-01": 2783.68381237926, - "2024-01-01": 2723.2719606937, - "2023-01-01": 2576, - "2015-01-01": 2576 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3511.02360759165, - "2034-01-01": 3443.03582078435, - "2033-01-01": 3375.88738936974, - "2032-01-01": 3310.41766874049, - "2031-01-01": 3246.62665889661, - "2030-01-01": 3183.6750044454, - "2029-01-01": 3121.56270538689, - "2028-01-01": 3060.28976172105, - "2027-01-01": 2998.17746266253, - "2026-01-01": 2926.07683443109, - "2025-01-01": 2882.02046879483, - "2024-01-01": 2819.47450278343, - "2023-01-01": 2667, - "2015-01-01": 2667 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 4206.11939492138, - "2034-01-01": 4124.67170881365, - "2033-01-01": 4044.2295496949, - "2032-01-01": 3965.79844455413, - "2031-01-01": 3889.37839339132, - "2030-01-01": 3813.9638692175, - "2029-01-01": 3739.55487203266, - "2028-01-01": 3666.1514018368, - "2027-01-01": 3591.74240465197, - "2026-01-01": 3505.36763629821, - "2025-01-01": 3452.58920052474, - "2024-01-01": 3377.66068106226, - "2023-01-01": 3195, - "2015-01-01": 3195 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1066.34012828993, - "2034-01-01": 1045.69141913585, - "2033-01-01": 1025.29763231702, - "2032-01-01": 1005.41369016865, - "2031-01-01": 986.039592690758, - "2030-01-01": 966.920417548098, - "2029-01-01": 948.056164740674, - "2028-01-01": 929.446834268485, - "2027-01-01": 910.582581461062, - "2026-01-01": 888.684752864336, - "2025-01-01": 875.304304358385, - "2024-01-01": 856.308341677756, - "2023-01-01": 810, - "2015-01-01": 810 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1465.23032442801, - "2034-01-01": 1436.8574685163, - "2033-01-01": 1408.83489477635, - "2032-01-01": 1381.51288537989, - "2031-01-01": 1354.89144032693, - "2030-01-01": 1328.62027744572, - "2029-01-01": 1302.69939673626, - "2028-01-01": 1277.12879819855, - "2027-01-01": 1251.20791748909, - "2026-01-01": 1221.11867893581, - "2025-01-01": 1202.7329515443, - "2024-01-01": 1176.63109171277, - "2023-01-01": 1113, - "2015-01-01": 1113 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1662.70071855578, - "2034-01-01": 1630.50402761554, - "2033-01-01": 1598.70482668691, - "2032-01-01": 1567.70060578149, - "2031-01-01": 1537.49136489929, - "2030-01-01": 1507.6796140287, - "2029-01-01": 1478.26535316972, - "2028-01-01": 1449.24858232234, - "2027-01-01": 1419.83432146336, - "2026-01-01": 1385.68992946624, - "2025-01-01": 1364.8263412403, - "2024-01-01": 1335.20671054198, - "2023-01-01": 1263, - "2015-01-01": 1263 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1827.25938032891, - "2034-01-01": 1791.87616019823, - "2033-01-01": 1756.92976994571, - "2032-01-01": 1722.85703944949, - "2031-01-01": 1689.65796870959, - "2030-01-01": 1656.89572784785, - "2029-01-01": 1624.57031686427, - "2028-01-01": 1592.68173575884, - "2027-01-01": 1560.35632477525, - "2026-01-01": 1522.8326382416, - "2025-01-01": 1499.90416598696, - "2024-01-01": 1467.35305956633, - "2023-01-01": 1388, - "2015-01-01": 1388 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1970.75453339509, - "2034-01-01": 1932.59265981034, - "2033-01-01": 1894.90192046738, - "2032-01-01": 1858.15344960799, - "2031-01-01": 1822.34724723218, - "2030-01-01": 1787.01217909815, - "2029-01-01": 1752.14824520591, - "2028-01-01": 1717.75544555546, - "2027-01-01": 1682.89151166322, - "2026-01-01": 1642.42108029372, - "2025-01-01": 1617.69202916605, - "2024-01-01": 1582.58467591556, - "2023-01-01": 1497, - "2015-01-01": 1497 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2098.45205493104, - "2034-01-01": 2057.81743469451, - "2033-01-01": 2017.68447643621, - "2032-01-01": 1978.55484213436, - "2031-01-01": 1940.42853178897, - "2030-01-01": 1902.80388342181, - "2029-01-01": 1865.68089703288, - "2028-01-01": 1829.05957262218, - "2027-01-01": 1791.93658623325, - "2026-01-01": 1748.8438223034, - "2025-01-01": 1722.51242116946, - "2024-01-01": 1685.13024275845, - "2023-01-01": 1594, - "2015-01-01": 1594 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2214.30135281933, - "2034-01-01": 2171.42341603273, - "2033-01-01": 2129.0748364904, - "2032-01-01": 2087.78497143663, - "2031-01-01": 2047.55382087143, - "2030-01-01": 2007.8520275505, - "2029-01-01": 1968.67959147384, - "2028-01-01": 1930.03651264147, - "2027-01-01": 1890.86407656482, - "2026-01-01": 1845.39228928125, - "2025-01-01": 1817.60720979112, - "2024-01-01": 1778.16127247159, - "2023-01-01": 1682, - "2015-01-01": 1682 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2319.61889635414, - "2034-01-01": 2274.70158088565, - "2033-01-01": 2230.33880017603, - "2032-01-01": 2187.08508898415, - "2031-01-01": 2144.94044731002, - "2030-01-01": 2103.35034039475, - "2029-01-01": 2062.31476823835, - "2028-01-01": 2021.83373084083, - "2027-01-01": 1980.79815868443, - "2026-01-01": 1933.16362289748, - "2025-01-01": 1904.05701762898, - "2024-01-01": 1862.73493584717, - "2023-01-01": 1762, - "2015-01-01": 1762 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2418.35409341802, - "2034-01-01": 2371.52486043527, - "2033-01-01": 2325.27376613131, - "2032-01-01": 2280.17894918496, - "2031-01-01": 2236.2404095962, - "2030-01-01": 2192.88000868624, - "2029-01-01": 2150.09774645508, - "2028-01-01": 2107.89362290273, - "2027-01-01": 2065.11136067157, - "2026-01-01": 2015.4492481627, - "2025-01-01": 1985.10371247698, - "2024-01-01": 1942.02274526177, - "2023-01-01": 1837, - "2015-01-01": 1837 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2548.68455354234, - "2034-01-01": 2499.33158944076, - "2033-01-01": 2450.58792119228, - "2032-01-01": 2403.06284465001, - "2031-01-01": 2356.75635981396, - "2030-01-01": 2311.05917083101, - "2029-01-01": 2265.97127770117, - "2028-01-01": 2221.49268042443, - "2027-01-01": 2176.40478729459, - "2026-01-01": 2124.06627351278, - "2025-01-01": 2092.08534967634, - "2024-01-01": 2046.68265368906, - "2023-01-01": 1936, - "2015-01-01": 1936 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2715.87615390385, - "2034-01-01": 2663.28567614478, - "2033-01-01": 2611.34446354322, - "2032-01-01": 2560.7017812567, - "2031-01-01": 2511.35762928523, - "2030-01-01": 2462.66274247127, - "2029-01-01": 2414.61712081483, - "2028-01-01": 2367.22076431591, - "2027-01-01": 2319.17514265947, - "2026-01-01": 2263.40326562855, - "2025-01-01": 2229.32441961895, - "2024-01-01": 2180.94334429779, - "2023-01-01": 2063, - "2015-01-01": 2063 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2868.58659202932, - "2034-01-01": 2813.03901518152, - "2033-01-01": 2758.17721088739, - "2032-01-01": 2704.68695170061, - "2031-01-01": 2652.56823762119, - "2030-01-01": 2601.13529609544, - "2029-01-01": 2550.38812712337, - "2028-01-01": 2500.32673070497, - "2027-01-01": 2449.57956173291, - "2026-01-01": 2390.67169937208, - "2025-01-01": 2354.67664098385, - "2024-01-01": 2303.57515619238, - "2023-01-01": 2179, - "2015-01-01": 2179 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3006.81586791876, - "2034-01-01": 2948.59160655098, - "2033-01-01": 2891.08616322478, - "2032-01-01": 2835.01835598173, - "2031-01-01": 2780.38818482184, - "2030-01-01": 2726.47683170353, - "2029-01-01": 2673.28429662679, - "2028-01-01": 2620.81057959163, - "2027-01-01": 2567.61804451489, - "2026-01-01": 2505.87157474339, - "2025-01-01": 2468.14201377105, - "2024-01-01": 2414.57808937283, - "2023-01-01": 2284, - "2015-01-01": 2284 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3137.14632804308, - "2034-01-01": 3076.39833555647, - "2033-01-01": 3016.40031828575, - "2032-01-01": 2957.90225144679, - "2031-01-01": 2900.9041350396, - "2030-01-01": 2844.65599384829, - "2029-01-01": 2789.15782787287, - "2028-01-01": 2734.40963711333, - "2027-01-01": 2678.91147113791, - "2026-01-01": 2614.48860009347, - "2025-01-01": 2575.12365097041, - "2024-01-01": 2519.23799780011, - "2023-01-01": 2383, - "2015-01-01": 2383 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3271.42619604996, - "2034-01-01": 3208.07799574395, - "2033-01-01": 3145.51187198493, - "2032-01-01": 3084.50990131988, - "2031-01-01": 3025.07208374881, - "2030-01-01": 2966.41634272472, - "2029-01-01": 2908.54267824762, - "2028-01-01": 2851.45109031751, - "2027-01-01": 2793.57742584042, - "2026-01-01": 2726.39705045417, - "2025-01-01": 2685.34715596369, - "2024-01-01": 2627.06941860398, - "2023-01-01": 2485, - "2015-01-01": 2485 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3413.60487982195, - "2034-01-01": 3347.5035182954, - "2033-01-01": 3282.21822296053, - "2032-01-01": 3218.56506000903, - "2031-01-01": 3156.54402944091, - "2030-01-01": 3095.33906506447, - "2029-01-01": 3034.95016687971, - "2028-01-01": 2975.37733488665, - "2027-01-01": 2914.98843670189, - "2026-01-01": 2844.88835083608, - "2025-01-01": 2802.05439654481, - "2024-01-01": 2741.24386416101, - "2023-01-01": 2593, - "2015-01-01": 2593 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3546.56827853465, - "2034-01-01": 3477.89220142221, - "2033-01-01": 3410.06397711364, - "2032-01-01": 3343.93145841278, - "2031-01-01": 3279.49464531963, - "2030-01-01": 3215.90568503034, - "2029-01-01": 3153.16457754491, - "2028-01-01": 3091.27132286333, - "2027-01-01": 3028.5302153779, - "2026-01-01": 2955.69965952657, - "2025-01-01": 2911.19727894011, - "2024-01-01": 2848.01811417268, - "2023-01-01": 2694, - "2015-01-01": 2694 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3671.63286148223, - "2034-01-01": 3600.53502218506, - "2033-01-01": 3530.31493399033, - "2032-01-01": 3461.85034800046, - "2031-01-01": 3395.14126421546, - "2030-01-01": 3329.3099315329, - "2029-01-01": 3264.35634995276, - "2028-01-01": 3200.28051947507, - "2027-01-01": 3135.32693789494, - "2026-01-01": 3059.92811819584, - "2025-01-01": 3013.85642574758, - "2024-01-01": 2948.44933943119, - "2023-01-01": 2789, - "2015-01-01": 2789 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 4395.69097328403, - "2034-01-01": 4310.57240554891, - "2033-01-01": 4226.50468432904, - "2032-01-01": 4144.53865613967, - "2031-01-01": 4064.67432098079, - "2030-01-01": 3985.86083233716, - "2029-01-01": 3908.09819020878, - "2028-01-01": 3831.38639459565, - "2027-01-01": 3753.62375246726, - "2026-01-01": 3663.35603680743, - "2025-01-01": 3608.1988546329, - "2024-01-01": 3529.89327513831, - "2023-01-01": 3339, - "2015-01-01": 3339 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1134.79653158755, - "2034-01-01": 1112.82222629026, - "2033-01-01": 1091.11920871268, - "2032-01-01": 1069.95876657454, - "2031-01-01": 1049.34089987584, - "2030-01-01": 1028.99432089687, - "2029-01-01": 1008.91902963761, - "2028-01-01": 989.115026098067, - "2027-01-01": 969.039734838809, - "2026-01-01": 945.736119714886, - "2025-01-01": 931.496679452998, - "2024-01-01": 911.281222871883, - "2023-01-01": 862, - "2015-01-01": 862 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1558.69964431515, - "2034-01-01": 1528.51683982327, - "2033-01-01": 1498.70666254734, - "2032-01-01": 1469.64173970331, - "2031-01-01": 1441.32207129118, - "2030-01-01": 1413.375030095, - "2029-01-01": 1385.80061611476, - "2028-01-01": 1358.59882935048, - "2027-01-01": 1331.02441537024, - "2026-01-01": 1299.01573752021, - "2025-01-01": 1279.45715600041, - "2024-01-01": 1251.6902179586, - "2023-01-01": 1184, - "2015-01-01": 1184 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1766.7017927964, - "2034-01-01": 1732.4912154078, - "2033-01-01": 1698.70299082647, - "2032-01-01": 1665.75947185967, - "2031-01-01": 1633.6606585074, - "2030-01-01": 1601.9841979624, - "2029-01-01": 1570.73009022467, - "2028-01-01": 1539.89833529421, - "2027-01-01": 1508.64422755647, - "2026-01-01": 1472.36412141227, - "2025-01-01": 1450.19552648019, - "2024-01-01": 1418.72320312537, - "2023-01-01": 1342, - "2015-01-01": 1342 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1941.79220892302, - "2034-01-01": 1904.19116447579, - "2033-01-01": 1867.05433045383, - "2032-01-01": 1830.84591728242, - "2031-01-01": 1795.56592496156, - "2030-01-01": 1760.75014306598, - "2029-01-01": 1726.39857159567, - "2028-01-01": 1692.51121055064, - "2027-01-01": 1658.15963908033, - "2026-01-01": 1618.28396354925, - "2025-01-01": 1593.91833201064, - "2024-01-01": 1559.32691848727, - "2023-01-01": 1475, - "2015-01-01": 1475 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2094.50264704849, - "2034-01-01": 2053.94450351252, - "2033-01-01": 2013.88707779799, - "2032-01-01": 1974.83108772633, - "2031-01-01": 1936.77653329753, - "2030-01-01": 1899.22269669015, - "2029-01-01": 1862.16957790421, - "2028-01-01": 1825.6171769397, - "2027-01-01": 1788.56405815376, - "2026-01-01": 1745.55239729279, - "2025-01-01": 1719.27055337554, - "2024-01-01": 1681.95873038186, - "2023-01-01": 1591, - "2015-01-01": 1591 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2228.78251505537, - "2034-01-01": 2185.6241637, - "2033-01-01": 2142.99863149717, - "2032-01-01": 2101.43873759942, - "2031-01-01": 2060.94448200673, - "2030-01-01": 2020.98304556658, - "2029-01-01": 1981.55442827896, - "2028-01-01": 1942.65863014388, - "2027-01-01": 1903.23001285627, - "2026-01-01": 1857.46084765348, - "2025-01-01": 1829.49405836882, - "2024-01-01": 1789.79015118573, - "2023-01-01": 1693, - "2015-01-01": 1693 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2351.21415941458, - "2034-01-01": 2305.68503034153, - "2033-01-01": 2260.71798928172, - "2032-01-01": 2216.87512424841, - "2031-01-01": 2174.1564352416, - "2030-01-01": 2131.99983424803, - "2029-01-01": 2090.40532126771, - "2028-01-01": 2049.37289630064, - "2027-01-01": 2007.77838332032, - "2026-01-01": 1959.49502298235, - "2025-01-01": 1929.99195998034, - "2024-01-01": 1888.10703485984, - "2023-01-01": 1786, - "2015-01-01": 1786 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2464.4305187145, - "2034-01-01": 2416.70905755842, - "2033-01-01": 2369.57675024377, - "2032-01-01": 2323.622750612, - "2031-01-01": 2278.84705866308, - "2030-01-01": 2234.6605205556, - "2029-01-01": 2191.06313628956, - "2028-01-01": 2148.05490586494, - "2027-01-01": 2104.4575215989, - "2026-01-01": 2053.8492066198, - "2025-01-01": 2022.92550340605, - "2024-01-01": 1979.02372298859, - "2023-01-01": 1872, - "2015-01-01": 1872 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2568.43159295512, - "2034-01-01": 2518.69624535068, - "2033-01-01": 2469.57491438334, - "2032-01-01": 2421.68161669017, - "2031-01-01": 2375.0163522712, - "2030-01-01": 2328.96510448931, - "2029-01-01": 2283.52787334451, - "2028-01-01": 2238.70465883681, - "2027-01-01": 2193.26742769201, - "2026-01-01": 2140.52339856583, - "2025-01-01": 2108.29468864594, - "2024-01-01": 2062.54021557198, - "2023-01-01": 1951, - "2015-01-01": 1951 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2706.66086884456, - "2034-01-01": 2654.24883672015, - "2033-01-01": 2602.48386672073, - "2032-01-01": 2552.0130209713, - "2031-01-01": 2502.83629947185, - "2030-01-01": 2454.3066400974, - "2029-01-01": 2406.42404284793, - "2028-01-01": 2359.18850772346, - "2027-01-01": 2311.305910474, - "2026-01-01": 2255.72327393713, - "2025-01-01": 2221.76006143314, - "2024-01-01": 2173.54314875243, - "2023-01-01": 2056, - "2015-01-01": 2056 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2883.06775426536, - "2034-01-01": 2827.23976284879, - "2033-01-01": 2772.10100589416, - "2032-01-01": 2718.34071786339, - "2031-01-01": 2665.95889875649, - "2030-01-01": 2614.26631411152, - "2029-01-01": 2563.26296392849, - "2028-01-01": 2512.94884820739, - "2027-01-01": 2461.94549802435, - "2026-01-01": 2402.74025774432, - "2025-01-01": 2366.56348956156, - "2024-01-01": 2315.20403490653, - "2023-01-01": 2190, - "2015-01-01": 2190 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3043.67700815594, - "2034-01-01": 2984.7389642495, - "2033-01-01": 2926.52855051475, - "2032-01-01": 2869.77339712336, - "2031-01-01": 2814.47350407535, - "2030-01-01": 2759.90124119902, - "2029-01-01": 2706.05660849437, - "2028-01-01": 2652.93960596141, - "2027-01-01": 2599.09497325676, - "2026-01-01": 2536.59154150907, - "2025-01-01": 2498.3994465143, - "2024-01-01": 2444.17887155429, - "2023-01-01": 2312, - "2015-01-01": 2312 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3191.12156910467, - "2034-01-01": 3129.3283950436, - "2033-01-01": 3068.29809967463, - "2032-01-01": 3008.79356168989, - "2031-01-01": 2950.81478108938, - "2030-01-01": 2893.59887918098, - "2029-01-01": 2837.14585596468, - "2028-01-01": 2781.4557114405, - "2027-01-01": 2725.00268822421, - "2026-01-01": 2659.47140857179, - "2025-01-01": 2619.42917748732, - "2024-01-01": 2562.5820002801, - "2023-01-01": 2424, - "2015-01-01": 2424 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3329.35084499411, - "2034-01-01": 3264.88098641306, - "2033-01-01": 3201.20705201202, - "2032-01-01": 3139.12496597101, - "2031-01-01": 3078.63472829003, - "2030-01-01": 3018.94041478906, - "2029-01-01": 2960.0420254681, - "2028-01-01": 2901.93956032716, - "2027-01-01": 2843.0411710062, - "2026-01-01": 2774.67128394309, - "2025-01-01": 2732.89455027451, - "2024-01-01": 2673.58493346055, - "2023-01-01": 2529, - "2015-01-01": 2529 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3470.21305947191, - "2034-01-01": 3403.01553190384, - "2033-01-01": 3336.64760344156, - "2032-01-01": 3271.93887319082, - "2031-01-01": 3208.88934115165, - "2030-01-01": 3146.66940821826, - "2029-01-01": 3085.27907439064, - "2028-01-01": 3024.7183396688, - "2027-01-01": 2963.32800584118, - "2026-01-01": 2892.0654426548, - "2025-01-01": 2848.52116825766, - "2024-01-01": 2786.70220822539, - "2023-01-01": 2636, - "2015-01-01": 2636 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3620.29055900901, - "2034-01-01": 3550.18691681926, - "2033-01-01": 3480.94875169358, - "2032-01-01": 3413.44154069604, - "2031-01-01": 3347.66528382665, - "2030-01-01": 3282.75450402132, - "2029-01-01": 3218.70920128007, - "2028-01-01": 3155.52937560288, - "2027-01-01": 3091.48407286163, - "2026-01-01": 3017.13959305793, - "2025-01-01": 2971.71214442662, - "2024-01-01": 2907.21967853559, - "2023-01-01": 2750, - "2015-01-01": 2750 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3761.15277348682, - "2034-01-01": 3688.32146231005, - "2033-01-01": 3616.38930312311, - "2032-01-01": 3546.25544791585, - "2031-01-01": 3477.91989668826, - "2030-01-01": 3410.48349745051, - "2029-01-01": 3343.9462502026, - "2028-01-01": 3278.30815494452, - "2027-01-01": 3211.77090769661, - "2026-01-01": 3134.53375176964, - "2025-01-01": 3087.33876240976, - "2024-01-01": 3020.33695330043, - "2023-01-01": 2857, - "2015-01-01": 2857 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3894.11617219951, - "2034-01-01": 3818.71014543686, - "2033-01-01": 3744.23505727622, - "2032-01-01": 3671.6218463196, - "2031-01-01": 3600.87051256699, - "2030-01-01": 3531.05011741639, - "2029-01-01": 3462.16066086779, - "2028-01-01": 3394.20214292121, - "2027-01-01": 3325.31268637262, - "2026-01-01": 3245.34506046013, - "2025-01-01": 3196.48164480507, - "2024-01-01": 3127.1112033121, - "2023-01-01": 2958, - "2015-01-01": 2958 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.TX.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 4658.98483212105, - "2034-01-01": 4568.76781768122, - "2033-01-01": 4479.66459354312, - "2032-01-01": 4392.78895000847, - "2031-01-01": 4308.14088707727, - "2030-01-01": 4224.6066144478, - "2029-01-01": 4142.18613212006, - "2028-01-01": 4060.87944009404, - "2027-01-01": 3978.45895776629, - "2026-01-01": 3882.78437084801, - "2025-01-01": 3824.32337422756, - "2024-01-01": 3741.32743357726, - "2023-01-01": 3539, - "2015-01-01": 3539 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT", - "description": null, - "label": "UT", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 558.182980734481, - "2034-01-01": 547.374273720497, - "2033-01-01": 536.699007533847, - "2032-01-01": 526.290623001862, - "2031-01-01": 516.149120124545, - "2030-01-01": 506.14105807456, - "2029-01-01": 496.266436851908, - "2028-01-01": 486.52525645659, - "2027-01-01": 476.650635233938, - "2026-01-01": 465.188068166023, - "2025-01-01": 458.183981540686, - "2024-01-01": 448.240415890578, - "2023-01-01": 424, - "2015-01-01": 424 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 766.185129215726, - "2034-01-01": 751.348649305022, - "2033-01-01": 736.695335812968, - "2032-01-01": 722.408355158217, - "2031-01-01": 708.487707340767, - "2030-01-01": 694.750225941967, - "2029-01-01": 681.195910961818, - "2028-01-01": 667.824762400319, - "2027-01-01": 654.27044742017, - "2026-01-01": 638.536452058078, - "2025-01-01": 628.922352020469, - "2024-01-01": 615.273401057351, - "2023-01-01": 582, - "2015-01-01": 582 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 868.869734162163, - "2034-01-01": 852.044860036623, - "2033-01-01": 835.427700406459, - "2032-01-01": 819.22596976705, - "2031-01-01": 803.439668118395, - "2030-01-01": 787.861080965117, - "2029-01-01": 772.490208307216, - "2028-01-01": 757.327050144692, - "2027-01-01": 741.956177486791, - "2026-01-01": 724.113502333903, - "2025-01-01": 713.210914662388, - "2024-01-01": 697.732722848542, - "2023-01-01": 660, - "2015-01-01": 660 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 954.440238284194, - "2034-01-01": 935.958368979623, - "2033-01-01": 917.704670901035, - "2032-01-01": 899.907315274411, - "2031-01-01": 882.566302099752, - "2030-01-01": 865.453460151076, - "2029-01-01": 848.568789428381, - "2028-01-01": 831.912289931669, - "2027-01-01": 815.027619208975, - "2026-01-01": 795.427710897091, - "2025-01-01": 783.451383530653, - "2024-01-01": 766.448824341201, - "2023-01-01": 725, - "2015-01-01": 725 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1029.47898805274, - "2034-01-01": 1009.54406143733, - "2033-01-01": 989.855245027047, - "2032-01-01": 970.65864902702, - "2031-01-01": 951.95427343725, - "2030-01-01": 933.496008052608, - "2029-01-01": 915.283852873095, - "2028-01-01": 897.317807898711, - "2027-01-01": 879.105652719198, - "2026-01-01": 857.964786098655, - "2025-01-01": 845.046871615132, - "2024-01-01": 826.707559496303, - "2023-01-01": 782, - "2015-01-01": 782 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1096.61892205618, - "2034-01-01": 1075.38389153107, - "2033-01-01": 1054.41102187664, - "2032-01-01": 1033.96247396356, - "2031-01-01": 1014.03824779185, - "2030-01-01": 994.376182490822, - "2029-01-01": 974.976278060471, - "2028-01-01": 955.8385345008, - "2027-01-01": 936.43863007045, - "2026-01-01": 913.919011279002, - "2025-01-01": 900.158624111772, - "2024-01-01": 880.623269898235, - "2023-01-01": 833, - "2015-01-01": 833 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1157.1765095887, - "2034-01-01": 1134.7688363215, - "2033-01-01": 1112.63780099588, - "2032-01-01": 1091.06004155339, - "2031-01-01": 1070.03555799404, - "2030-01-01": 1049.28771237627, - "2029-01-01": 1028.81650470006, - "2028-01-01": 1008.62193496543, - "2027-01-01": 988.150727289226, - "2026-01-01": 964.387528108335, - "2025-01-01": 949.867263618544, - "2024-01-01": 929.253126339194, - "2023-01-01": 879, - "2015-01-01": 879 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1212.46821994447, - "2034-01-01": 1188.98987286929, - "2033-01-01": 1165.80138193083, - "2032-01-01": 1143.19260326584, - "2031-01-01": 1121.16353687431, - "2030-01-01": 1099.4243266195, - "2029-01-01": 1077.97497250143, - "2028-01-01": 1056.81547452009, - "2027-01-01": 1035.36612040202, - "2026-01-01": 1010.46747825686, - "2025-01-01": 995.253412733423, - "2024-01-01": 973.654299611374, - "2023-01-01": 921, - "2015-01-01": 921 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1265.12699171188, - "2034-01-01": 1240.62895529575, - "2033-01-01": 1216.43336377365, - "2032-01-01": 1192.8426620396, - "2031-01-01": 1169.8568500936, - "2030-01-01": 1147.17348304163, - "2029-01-01": 1124.79256088369, - "2028-01-01": 1102.71408361977, - "2027-01-01": 1080.33316146183, - "2026-01-01": 1054.35314506497, - "2025-01-01": 1038.47831665236, - "2024-01-01": 1015.94113129916, - "2023-01-01": 961, - "2015-01-01": 961 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1332.26692571532, - "2034-01-01": 1306.46878538949, - "2033-01-01": 1280.98914062324, - "2032-01-01": 1256.14648697614, - "2031-01-01": 1231.94082444821, - "2030-01-01": 1208.05365747985, - "2029-01-01": 1184.48498607106, - "2028-01-01": 1161.23481022186, - "2027-01-01": 1137.66613881308, - "2026-01-01": 1110.30737024532, - "2025-01-01": 1093.59006914899, - "2024-01-01": 1069.8568417011, - "2023-01-01": 1012, - "2015-01-01": 1012 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1419.15389913153, - "2034-01-01": 1391.67327139315, - "2033-01-01": 1364.53191066388, - "2032-01-01": 1338.06908395285, - "2031-01-01": 1312.28479126005, - "2030-01-01": 1286.83976557636, - "2029-01-01": 1261.73400690179, - "2028-01-01": 1236.96751523633, - "2027-01-01": 1211.86175656176, - "2026-01-01": 1182.71872047871, - "2025-01-01": 1164.91116061523, - "2024-01-01": 1139.63011398595, - "2023-01-01": 1078, - "2015-01-01": 1078 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1499.45852607682, - "2034-01-01": 1470.4228720935, - "2033-01-01": 1441.74568297418, - "2032-01-01": 1413.78542358283, - "2031-01-01": 1386.54209391947, - "2030-01-01": 1359.6572291201, - "2029-01-01": 1333.13082918473, - "2028-01-01": 1306.96289411334, - "2027-01-01": 1280.43649417796, - "2026-01-01": 1249.64436236108, - "2025-01-01": 1230.82913909161, - "2024-01-01": 1204.11753230983, - "2023-01-01": 1139, - "2015-01-01": 1139 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1571.864337257, - "2034-01-01": 1541.42661042989, - "2033-01-01": 1511.36465800805, - "2032-01-01": 1482.05425439675, - "2031-01-01": 1453.49539959601, - "2030-01-01": 1425.31231920053, - "2029-01-01": 1397.50501321033, - "2028-01-01": 1370.0734816254, - "2027-01-01": 1342.26617563519, - "2026-01-01": 1309.98715422224, - "2025-01-01": 1290.26338198014, - "2024-01-01": 1262.26192588054, - "2023-01-01": 1194, - "2015-01-01": 1194 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1640.32074055463, - "2034-01-01": 1608.55741758429, - "2033-01-01": 1577.18623440371, - "2032-01-01": 1546.59933080264, - "2031-01-01": 1516.79670678109, - "2030-01-01": 1487.3862225493, - "2029-01-01": 1458.36787810726, - "2028-01-01": 1429.74167345498, - "2027-01-01": 1400.72332901294, - "2026-01-01": 1367.03852107279, - "2025-01-01": 1346.45575707475, - "2024-01-01": 1317.23480707467, - "2023-01-01": 1246, - "2015-01-01": 1246 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1710.09361314644, - "2034-01-01": 1676.97920179935, - "2033-01-01": 1644.27361034544, - "2032-01-01": 1612.38565867788, - "2031-01-01": 1581.31534679666, - "2030-01-01": 1550.65385480862, - "2029-01-01": 1520.40118271375, - "2028-01-01": 1490.55733051205, - "2027-01-01": 1460.30465841718, - "2026-01-01": 1425.18702959355, - "2025-01-01": 1403.72875476734, - "2024-01-01": 1373.26485906099, - "2023-01-01": 1299, - "2015-01-01": 1299 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1785.13236291499, - "2034-01-01": 1750.56489425706, - "2033-01-01": 1716.42418447145, - "2032-01-01": 1683.13699243048, - "2031-01-01": 1650.70331813416, - "2030-01-01": 1618.69640271015, - "2029-01-01": 1587.11624615846, - "2028-01-01": 1555.96284847909, - "2027-01-01": 1524.38269192741, - "2026-01-01": 1487.72410479511, - "2025-01-01": 1465.32424285182, - "2024-01-01": 1433.5235942161, - "2023-01-01": 1356, - "2015-01-01": 1356 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1854.9052355068, - "2034-01-01": 1818.98667847212, - "2033-01-01": 1783.51156041318, - "2032-01-01": 1748.92332030572, - "2031-01-01": 1715.22195814973, - "2030-01-01": 1681.96403496947, - "2029-01-01": 1649.14955076495, - "2028-01-01": 1616.77850553617, - "2027-01-01": 1583.96402133165, - "2026-01-01": 1545.87261331586, - "2025-01-01": 1522.5972405444, - "2024-01-01": 1489.55364620242, - "2023-01-01": 1409, - "2015-01-01": 1409 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1920.72870021605, - "2034-01-01": 1883.5355315052, - "2033-01-01": 1846.8015377167, - "2032-01-01": 1810.98589377292, - "2031-01-01": 1776.08859967385, - "2030-01-01": 1741.65048049713, - "2029-01-01": 1707.67153624277, - "2028-01-01": 1674.15176691077, - "2027-01-01": 1640.17282265641, - "2026-01-01": 1600.72969682601, - "2025-01-01": 1576.62837044307, - "2024-01-01": 1542.41218581216, - "2023-01-01": 1459, - "2015-01-01": 1459 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2299.87185694136, - "2034-01-01": 2255.33692497573, - "2033-01-01": 2211.35180698498, - "2032-01-01": 2168.46631694399, - "2031-01-01": 2126.68045485278, - "2030-01-01": 2085.44440673645, - "2029-01-01": 2044.75817259501, - "2028-01-01": 2004.62175242845, - "2027-01-01": 1963.93551828701, - "2026-01-01": 1916.70649784444, - "2025-01-01": 1887.84767865938, - "2024-01-01": 1846.87737396425, - "2023-01-01": 1747, - "2015-01-01": 1747 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 647.702892739067, - "2034-01-01": 635.160713845482, - "2033-01-01": 622.773376666633, - "2032-01-01": 610.695722917256, - "2031-01-01": 598.927752597349, - "2030-01-01": 587.314623992178, - "2029-01-01": 575.856337101743, - "2028-01-01": 564.552891926043, - "2027-01-01": 553.094605035608, - "2026-01-01": 539.793701739819, - "2025-01-01": 531.666318202871, - "2024-01-01": 520.128029759822, - "2023-01-01": 492, - "2015-01-01": 492 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 887.300304280754, - "2034-01-01": 870.118538885884, - "2033-01-01": 853.148894051445, - "2032-01-01": 836.603490337866, - "2031-01-01": 820.482327745149, - "2030-01-01": 804.573285712862, - "2029-01-01": 788.876364241005, - "2028-01-01": 773.391563329579, - "2027-01-01": 757.694641857723, - "2026-01-01": 739.473485716744, - "2025-01-01": 728.339631034014, - "2024-01-01": 712.533113939269, - "2023-01-01": 674, - "2015-01-01": 674 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1005.78254075741, - "2034-01-01": 986.306474345424, - "2033-01-01": 967.07085319778, - "2032-01-01": 948.316122578828, - "2031-01-01": 930.042282488566, - "2030-01-01": 912.008887662651, - "2029-01-01": 894.21593810108, - "2028-01-01": 876.663433803855, - "2027-01-01": 858.870484242285, - "2026-01-01": 838.216236035003, - "2025-01-01": 825.595664851613, - "2024-01-01": 807.678485236797, - "2023-01-01": 764, - "2015-01-01": 764 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1104.5177378213, - "2034-01-01": 1083.12975389504, - "2033-01-01": 1062.00581915306, - "2032-01-01": 1041.40998277963, - "2031-01-01": 1021.34224477475, - "2030-01-01": 1001.53855595414, - "2029-01-01": 981.998916317809, - "2028-01-01": 962.723325865752, - "2027-01-01": 943.183686229421, - "2026-01-01": 920.501861300219, - "2025-01-01": 906.642359699611, - "2024-01-01": 886.966294651404, - "2023-01-01": 839, - "2015-01-01": 839 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1190.08824194333, - "2034-01-01": 1167.04326283804, - "2033-01-01": 1144.28278964764, - "2032-01-01": 1122.09132828699, - "2031-01-01": 1100.4688787561, - "2030-01-01": 1079.1309351401, - "2029-01-01": 1058.07749743897, - "2028-01-01": 1037.30856565273, - "2027-01-01": 1016.2551279516, - "2026-01-01": 991.816069863407, - "2025-01-01": 976.882828567877, - "2024-01-01": 955.682396144063, - "2023-01-01": 904, - "2015-01-01": 904 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1266.44346100606, - "2034-01-01": 1241.91993235641, - "2033-01-01": 1217.69916331972, - "2032-01-01": 1194.08391350894, - "2031-01-01": 1171.07418292408, - "2030-01-01": 1148.36721195219, - "2029-01-01": 1125.96300059324, - "2028-01-01": 1103.86154884726, - "2027-01-01": 1081.45733748832, - "2026-01-01": 1055.45028673517, - "2025-01-01": 1039.55893925033, - "2024-01-01": 1016.99830209136, - "2023-01-01": 962, - "2015-01-01": 962 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1336.21633359787, - "2034-01-01": 1310.34171657147, - "2033-01-01": 1284.78653926145, - "2032-01-01": 1259.87024138418, - "2031-01-01": 1235.59282293965, - "2030-01-01": 1211.63484421151, - "2029-01-01": 1187.99630519973, - "2028-01-01": 1164.67720590434, - "2027-01-01": 1141.03866689256, - "2026-01-01": 1113.59879525593, - "2025-01-01": 1096.83193694291, - "2024-01-01": 1073.02835407768, - "2023-01-01": 1015, - "2015-01-01": 1015 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1399.40685971876, - "2034-01-01": 1372.30861548323, - "2033-01-01": 1345.54491747283, - "2032-01-01": 1319.45031191269, - "2031-01-01": 1294.02479880281, - "2030-01-01": 1268.93383191806, - "2029-01-01": 1244.17741125844, - "2028-01-01": 1219.75553682395, - "2027-01-01": 1194.99911616433, - "2026-01-01": 1166.26159542567, - "2025-01-01": 1148.70182164563, - "2024-01-01": 1123.77255210303, - "2023-01-01": 1063, - "2015-01-01": 1063 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1458.64797795709, - "2034-01-01": 1430.402583213, - "2033-01-01": 1402.505897046, - "2032-01-01": 1375.30662803317, - "2031-01-01": 1348.80477617452, - "2030-01-01": 1322.65163289295, - "2029-01-01": 1296.84719818848, - "2028-01-01": 1271.39147206109, - "2027-01-01": 1245.58703735661, - "2026-01-01": 1215.6329705848, - "2025-01-01": 1197.32983855443, - "2024-01-01": 1171.34523775179, - "2023-01-01": 1108, - "2015-01-01": 1108 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1536.31966631401, - "2034-01-01": 1506.57022979203, - "2033-01-01": 1477.18807026415, - "2032-01-01": 1448.54046472447, - "2031-01-01": 1420.62741317298, - "2030-01-01": 1393.08163861559, - "2029-01-01": 1365.9031410523, - "2028-01-01": 1339.09192048311, - "2027-01-01": 1311.91342291983, - "2026-01-01": 1280.36432912677, - "2025-01-01": 1261.08657183486, - "2024-01-01": 1233.71831449129, - "2023-01-01": 1167, - "2015-01-01": 1167 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1636.37133267207, - "2034-01-01": 1604.68448640231, - "2033-01-01": 1573.3888357655, - "2032-01-01": 1542.87557639461, - "2031-01-01": 1513.14470828964, - "2030-01-01": 1483.80503581764, - "2029-01-01": 1454.85655897859, - "2028-01-01": 1426.2992777725, - "2027-01-01": 1397.35080093346, - "2026-01-01": 1363.74709606218, - "2025-01-01": 1343.21388928083, - "2024-01-01": 1314.06329469809, - "2023-01-01": 1243, - "2015-01-01": 1243 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1727.20771397085, - "2034-01-01": 1693.76190358795, - "2033-01-01": 1660.72900444436, - "2032-01-01": 1628.52192777935, - "2031-01-01": 1597.14067359293, - "2030-01-01": 1566.17233064581, - "2029-01-01": 1535.61689893798, - "2028-01-01": 1505.47437846945, - "2027-01-01": 1474.91894676162, - "2026-01-01": 1439.44987130618, - "2025-01-01": 1417.77684854099, - "2024-01-01": 1387.00807935953, - "2023-01-01": 1312, - "2015-01-01": 1312 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1811.46174879869, - "2034-01-01": 1776.38443547029, - "2033-01-01": 1741.74017539286, - "2032-01-01": 1707.96202181736, - "2031-01-01": 1675.04997474381, - "2030-01-01": 1642.57098092121, - "2029-01-01": 1610.52504034959, - "2028-01-01": 1578.91215302893, - "2027-01-01": 1546.86621245731, - "2026-01-01": 1509.66693819917, - "2025-01-01": 1486.93669481128, - "2024-01-01": 1454.66701005999, - "2023-01-01": 1376, - "2015-01-01": 1376 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1889.13343715561, - "2034-01-01": 1852.55208204932, - "2033-01-01": 1816.42234861101, - "2032-01-01": 1781.19585850866, - "2031-01-01": 1746.87261174227, - "2030-01-01": 1713.00098664385, - "2029-01-01": 1679.58098321342, - "2028-01-01": 1646.61260145096, - "2027-01-01": 1613.19259802052, - "2026-01-01": 1574.39829674114, - "2025-01-01": 1550.69342809171, - "2024-01-01": 1517.04008679948, - "2023-01-01": 1435, - "2015-01-01": 1435 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1969.4380641009, - "2034-01-01": 1931.30168274968, - "2033-01-01": 1893.63612092131, - "2032-01-01": 1856.91219813865, - "2031-01-01": 1821.1299144017, - "2030-01-01": 1785.8184501876, - "2029-01-01": 1750.97780549636, - "2028-01-01": 1716.60798032797, - "2027-01-01": 1681.76733563673, - "2026-01-01": 1641.32393862351, - "2025-01-01": 1616.61140656808, - "2024-01-01": 1581.52750512336, - "2023-01-01": 1496, - "2015-01-01": 1496 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2053.69209892875, - "2034-01-01": 2013.92421463202, - "2033-01-01": 1974.64729186981, - "2032-01-01": 1936.35229217666, - "2031-01-01": 1899.03921555257, - "2030-01-01": 1862.217100463, - "2029-01-01": 1825.88594690796, - "2028-01-01": 1790.04575488745, - "2027-01-01": 1753.71460133241, - "2026-01-01": 1711.5410055165, - "2025-01-01": 1685.77125283837, - "2024-01-01": 1649.18643582383, - "2023-01-01": 1560, - "2015-01-01": 1560 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2132.68025657985, - "2034-01-01": 2091.38283827171, - "2033-01-01": 2050.59526463404, - "2032-01-01": 2010.8273803373, - "2031-01-01": 1972.07918538152, - "2030-01-01": 1933.8408350962, - "2029-01-01": 1896.11232948135, - "2028-01-01": 1858.89366853697, - "2027-01-01": 1821.16516292212, - "2026-01-01": 1777.36950572867, - "2025-01-01": 1750.60860871677, - "2024-01-01": 1712.61668335551, - "2023-01-01": 1620, - "2015-01-01": 1620 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2207.71900634841, - "2034-01-01": 2164.96853072942, - "2033-01-01": 2122.74583876005, - "2032-01-01": 2081.57871408991, - "2031-01-01": 2041.46715671901, - "2030-01-01": 2001.88338299773, - "2029-01-01": 1962.82739292606, - "2028-01-01": 1924.29918650401, - "2027-01-01": 1885.24319643235, - "2026-01-01": 1839.90658093024, - "2025-01-01": 1812.20409680125, - "2024-01-01": 1772.87541851061, - "2023-01-01": 1677, - "2015-01-01": 1677 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2640.8374041353, - "2034-01-01": 2589.69998368707, - "2033-01-01": 2539.19388941721, - "2032-01-01": 2489.95044750409, - "2031-01-01": 2441.96965794773, - "2030-01-01": 2394.62019456973, - "2029-01-01": 2347.90205737011, - "2028-01-01": 2301.81524634887, - "2027-01-01": 2255.09710914925, - "2026-01-01": 2200.86619042698, - "2025-01-01": 2167.72893153447, - "2024-01-01": 2120.68460914269, - "2023-01-01": 2006, - "2015-01-01": 2006 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 708.260480271581, - "2034-01-01": 694.545658635914, - "2033-01-01": 681.000155785871, - "2032-01-01": 667.79329050708, - "2031-01-01": 654.92506279954, - "2030-01-01": 642.226153877626, - "2029-01-01": 629.696563741337, - "2028-01-01": 617.336292390673, - "2027-01-01": 604.806702254384, - "2026-01-01": 590.262218569151, - "2025-01-01": 581.374957709644, - "2024-01-01": 568.757886200781, - "2023-01-01": 538, - "2015-01-01": 538 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 968.92140052023, - "2034-01-01": 950.1591166469, - "2033-01-01": 931.628465907809, - "2032-01-01": 913.561081437195, - "2031-01-01": 895.956963235059, - "2030-01-01": 878.584478167161, - "2029-01-01": 861.443626233501, - "2028-01-01": 844.534407434081, - "2027-01-01": 827.393555500421, - "2026-01-01": 807.496269269322, - "2025-01-01": 795.33823210836, - "2024-01-01": 778.077703055344, - "2023-01-01": 736, - "2015-01-01": 736 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1096.61892205618, - "2034-01-01": 1075.38389153107, - "2033-01-01": 1054.41102187664, - "2032-01-01": 1033.96247396356, - "2031-01-01": 1014.03824779185, - "2030-01-01": 994.376182490822, - "2029-01-01": 974.976278060471, - "2028-01-01": 955.8385345008, - "2027-01-01": 936.43863007045, - "2026-01-01": 913.919011279002, - "2025-01-01": 900.158624111772, - "2024-01-01": 880.623269898235, - "2023-01-01": 833, - "2015-01-01": 833 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1203.25293488518, - "2034-01-01": 1179.95303344466, - "2033-01-01": 1156.94078510834, - "2032-01-01": 1134.50384298043, - "2031-01-01": 1112.64220706093, - "2030-01-01": 1091.06822424563, - "2029-01-01": 1069.78189453454, - "2028-01-01": 1048.78321792765, - "2027-01-01": 1027.49688821656, - "2026-01-01": 1002.78748656544, - "2025-01-01": 987.68905454761, - "2024-01-01": 966.254104066011, - "2023-01-01": 914, - "2015-01-01": 914 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1296.72225477232, - "2034-01-01": 1271.61240475163, - "2033-01-01": 1246.81255287934, - "2032-01-01": 1222.63269730386, - "2031-01-01": 1199.07283802518, - "2030-01-01": 1175.82297689491, - "2029-01-01": 1152.88311391304, - "2028-01-01": 1130.25324907958, - "2027-01-01": 1107.31338609771, - "2026-01-01": 1080.68454514984, - "2025-01-01": 1064.41325900372, - "2024-01-01": 1041.31323031184, - "2023-01-01": 985, - "2015-01-01": 985 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1379.65982030598, - "2034-01-01": 1352.9439595733, - "2033-01-01": 1326.55792428177, - "2032-01-01": 1300.83153987253, - "2031-01-01": 1275.76480634557, - "2030-01-01": 1251.02789825976, - "2029-01-01": 1226.62081561509, - "2028-01-01": 1202.54355841157, - "2027-01-01": 1178.1364757669, - "2026-01-01": 1149.80447037262, - "2025-01-01": 1132.49248267603, - "2024-01-01": 1107.91499022011, - "2023-01-01": 1048, - "2015-01-01": 1048 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1454.69857007453, - "2034-01-01": 1426.52965203101, - "2033-01-01": 1398.70849840778, - "2032-01-01": 1371.58287362514, - "2031-01-01": 1345.15277768307, - "2030-01-01": 1319.07044616129, - "2029-01-01": 1293.33587905981, - "2028-01-01": 1267.94907637861, - "2027-01-01": 1242.21450927713, - "2026-01-01": 1212.34154557419, - "2025-01-01": 1194.08797076051, - "2024-01-01": 1168.17372537521, - "2023-01-01": 1105, - "2015-01-01": 1105 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1524.47144266634, - "2034-01-01": 1494.95143624607, - "2033-01-01": 1465.79587434951, - "2032-01-01": 1437.36920150037, - "2031-01-01": 1409.67141769864, - "2030-01-01": 1382.33807842061, - "2029-01-01": 1355.3691836663, - "2028-01-01": 1328.76473343569, - "2027-01-01": 1301.79583868137, - "2026-01-01": 1270.49005409494, - "2025-01-01": 1251.3609684531, - "2024-01-01": 1224.20377736153, - "2023-01-01": 1158, - "2015-01-01": 1158 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1587.66196878722, - "2034-01-01": 1556.91833515783, - "2033-01-01": 1526.55425256089, - "2032-01-01": 1496.94927202888, - "2031-01-01": 1468.10339356179, - "2030-01-01": 1439.63706612717, - "2029-01-01": 1411.550289725, - "2028-01-01": 1383.8430643553, - "2027-01-01": 1355.75628795314, - "2026-01-01": 1323.15285426468, - "2025-01-01": 1303.23085315582, - "2024-01-01": 1274.94797538688, - "2023-01-01": 1206, - "2015-01-01": 1206 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1671.91600361507, - "2034-01-01": 1639.54086704017, - "2033-01-01": 1607.5654235094, - "2032-01-01": 1576.3893660669, - "2031-01-01": 1546.01269471267, - "2030-01-01": 1516.03571640257, - "2029-01-01": 1486.45843113661, - "2028-01-01": 1457.28083891479, - "2027-01-01": 1427.70355364883, - "2026-01-01": 1393.36992115766, - "2025-01-01": 1372.39069942611, - "2024-01-01": 1342.60690608735, - "2023-01-01": 1270, - "2015-01-01": 1270 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1779.86648573825, - "2034-01-01": 1745.40098601441, - "2033-01-01": 1711.36098628717, - "2032-01-01": 1678.17198655311, - "2031-01-01": 1645.83398681223, - "2030-01-01": 1613.92148706794, - "2029-01-01": 1582.43448732024, - "2028-01-01": 1551.37298756913, - "2027-01-01": 1519.88598782143, - "2026-01-01": 1483.3355381143, - "2025-01-01": 1461.00175245992, - "2024-01-01": 1429.29491104732, - "2023-01-01": 1352, - "2015-01-01": 1352 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1878.60168280213, - "2034-01-01": 1842.22426556403, - "2033-01-01": 1806.29595224245, - "2032-01-01": 1771.26584675391, - "2031-01-01": 1737.13394909841, - "2030-01-01": 1703.45115535943, - "2029-01-01": 1670.21746553697, - "2028-01-01": 1637.43287963102, - "2027-01-01": 1604.19918980856, - "2026-01-01": 1565.62116337951, - "2025-01-01": 1542.04844730792, - "2024-01-01": 1508.58272046192, - "2023-01-01": 1427, - "2015-01-01": 1427 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1969.4380641009, - "2034-01-01": 1931.30168274968, - "2033-01-01": 1893.63612092131, - "2032-01-01": 1856.91219813865, - "2031-01-01": 1821.1299144017, - "2030-01-01": 1785.8184501876, - "2029-01-01": 1750.97780549636, - "2028-01-01": 1716.60798032797, - "2027-01-01": 1681.76733563673, - "2026-01-01": 1641.32393862351, - "2025-01-01": 1616.61140656808, - "2024-01-01": 1581.52750512336, - "2023-01-01": 1496, - "2015-01-01": 1496 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2053.69209892875, - "2034-01-01": 2013.92421463202, - "2033-01-01": 1974.64729186981, - "2032-01-01": 1936.35229217666, - "2031-01-01": 1899.03921555257, - "2030-01-01": 1862.217100463, - "2029-01-01": 1825.88594690796, - "2028-01-01": 1790.04575488745, - "2027-01-01": 1753.71460133241, - "2026-01-01": 1711.5410055165, - "2025-01-01": 1685.77125283837, - "2024-01-01": 1649.18643582383, - "2023-01-01": 1560, - "2015-01-01": 1560 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2139.26260305078, - "2034-01-01": 2097.83772357502, - "2033-01-01": 2056.92426236439, - "2032-01-01": 2017.03363768402, - "2031-01-01": 1978.16584953393, - "2030-01-01": 1939.80947964896, - "2029-01-01": 1901.96452802913, - "2028-01-01": 1864.63099467443, - "2027-01-01": 1826.7860430546, - "2026-01-01": 1782.85521407969, - "2025-01-01": 1756.01172170664, - "2024-01-01": 1717.90253731649, - "2023-01-01": 1625, - "2015-01-01": 1625 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2231.41545364374, - "2034-01-01": 2188.20611782133, - "2033-01-01": 2145.53023058932, - "2032-01-01": 2103.92124053811, - "2031-01-01": 2063.3791476677, - "2030-01-01": 2023.37050338769, - "2029-01-01": 1983.89530769808, - "2028-01-01": 1944.95356059887, - "2027-01-01": 1905.47836490926, - "2026-01-01": 1859.65513099389, - "2025-01-01": 1831.65530356477, - "2024-01-01": 1791.90449277012, - "2023-01-01": 1695, - "2015-01-01": 1695 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2316.98595776577, - "2034-01-01": 2272.11962676433, - "2033-01-01": 2227.80720108389, - "2032-01-01": 2184.60258604547, - "2031-01-01": 2142.50578164905, - "2030-01-01": 2100.96288257365, - "2029-01-01": 2059.97388881924, - "2028-01-01": 2019.53880038584, - "2027-01-01": 1978.54980663144, - "2026-01-01": 1930.96933955708, - "2025-01-01": 1901.89577243303, - "2024-01-01": 1860.62059426278, - "2023-01-01": 1760, - "2015-01-01": 1760 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2398.60705400524, - "2034-01-01": 2352.16020452534, - "2033-01-01": 2306.28677294026, - "2032-01-01": 2261.5601771448, - "2031-01-01": 2217.98041713896, - "2030-01-01": 2174.97407502794, - "2029-01-01": 2132.54115081174, - "2028-01-01": 2090.68164449035, - "2027-01-01": 2048.24872027414, - "2026-01-01": 1998.99212310965, - "2025-01-01": 1968.89437350738, - "2024-01-01": 1926.16518337885, - "2023-01-01": 1822, - "2015-01-01": 1822 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2865.95365344095, - "2034-01-01": 2810.45706106019, - "2033-01-01": 2755.64561179525, - "2032-01-01": 2702.20444876192, - "2031-01-01": 2650.13357196022, - "2030-01-01": 2598.74783827433, - "2029-01-01": 2548.04724770426, - "2028-01-01": 2498.03180024999, - "2027-01-01": 2447.33120967992, - "2026-01-01": 2388.47741603168, - "2025-01-01": 2352.51539578791, - "2024-01-01": 2301.46081460799, - "2023-01-01": 2177, - "2015-01-01": 2177 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 754.33690556806, - "2034-01-01": 739.729855759068, - "2033-01-01": 725.303139898335, - "2032-01-01": 711.237091934121, - "2031-01-01": 697.531711866425, - "2030-01-01": 684.006665746988, - "2029-01-01": 670.66195357581, - "2028-01-01": 657.497575352892, - "2027-01-01": 644.152863181714, - "2026-01-01": 628.662177026252, - "2025-01-01": 619.19674863871, - "2024-01-01": 605.758863927598, - "2023-01-01": 573, - "2015-01-01": 573 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1030.79545734693, - "2034-01-01": 1010.83503849799, - "2033-01-01": 991.121044573117, - "2032-01-01": 971.899900496364, - "2031-01-01": 953.171606267732, - "2030-01-01": 934.689736963162, - "2029-01-01": 916.454292582651, - "2028-01-01": 898.465273126203, - "2027-01-01": 880.229828745693, - "2026-01-01": 859.061927768858, - "2025-01-01": 846.127494213106, - "2024-01-01": 827.764730288497, - "2023-01-01": 783, - "2015-01-01": 783 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1166.39179464799, - "2034-01-01": 1143.80567574613, - "2033-01-01": 1121.49839781837, - "2032-01-01": 1099.7488018388, - "2031-01-01": 1078.55688780742, - "2030-01-01": 1057.64381475014, - "2029-01-01": 1037.00958266696, - "2028-01-01": 1016.65419155787, - "2027-01-01": 996.019959474692, - "2026-01-01": 972.067519799755, - "2025-01-01": 957.431621804357, - "2024-01-01": 936.653321884558, - "2023-01-01": 886, - "2015-01-01": 886 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1279.60815394791, - "2034-01-01": 1254.82970296303, - "2033-01-01": 1230.35715878042, - "2032-01-01": 1206.49642820238, - "2031-01-01": 1183.24751122891, - "2030-01-01": 1160.30450105772, - "2029-01-01": 1137.66739768881, - "2028-01-01": 1115.33620112218, - "2027-01-01": 1092.69909775327, - "2026-01-01": 1066.4217034372, - "2025-01-01": 1050.36516523006, - "2024-01-01": 1027.57001001331, - "2023-01-01": 972, - "2015-01-01": 972 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1379.65982030598, - "2034-01-01": 1352.9439595733, - "2033-01-01": 1326.55792428177, - "2032-01-01": 1300.83153987253, - "2031-01-01": 1275.76480634557, - "2030-01-01": 1251.02789825976, - "2029-01-01": 1226.62081561509, - "2028-01-01": 1202.54355841157, - "2027-01-01": 1178.1364757669, - "2026-01-01": 1149.80447037262, - "2025-01-01": 1132.49248267603, - "2024-01-01": 1107.91499022011, - "2023-01-01": 1048, - "2015-01-01": 1048 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1466.5467937222, - "2034-01-01": 1438.14844557697, - "2033-01-01": 1410.10069432242, - "2032-01-01": 1382.75413684923, - "2031-01-01": 1356.10877315741, - "2030-01-01": 1329.81400635627, - "2029-01-01": 1303.86983644582, - "2028-01-01": 1278.27626342604, - "2027-01-01": 1252.33209351558, - "2026-01-01": 1222.21582060601, - "2025-01-01": 1203.81357414227, - "2024-01-01": 1177.68826250496, - "2023-01-01": 1114, - "2015-01-01": 1114 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1546.85142066749, - "2034-01-01": 1516.89804627732, - "2033-01-01": 1487.31446663271, - "2032-01-01": 1458.47047647922, - "2031-01-01": 1430.36607581684, - "2030-01-01": 1402.63146990002, - "2029-01-01": 1375.26665872876, - "2028-01-01": 1348.27164230305, - "2027-01-01": 1320.90683113179, - "2026-01-01": 1289.14146248839, - "2025-01-01": 1269.73155261865, - "2024-01-01": 1242.17568082884, - "2023-01-01": 1175, - "2015-01-01": 1175 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1619.25723184767, - "2034-01-01": 1587.90178461371, - "2033-01-01": 1556.93344166658, - "2032-01-01": 1526.73930729314, - "2031-01-01": 1497.31938149337, - "2030-01-01": 1468.28655998045, - "2029-01-01": 1439.64084275436, - "2028-01-01": 1411.38222981511, - "2027-01-01": 1382.73651258902, - "2026-01-01": 1349.48425434955, - "2025-01-01": 1329.16579550718, - "2024-01-01": 1300.32007439956, - "2023-01-01": 1230, - "2015-01-01": 1230 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1687.71363514529, - "2034-01-01": 1655.03259176811, - "2033-01-01": 1622.75501806224, - "2032-01-01": 1591.28438369903, - "2031-01-01": 1560.62068867846, - "2030-01-01": 1530.36046332921, - "2029-01-01": 1500.50370765129, - "2028-01-01": 1471.05042164469, - "2027-01-01": 1441.19366596677, - "2026-01-01": 1406.5356212001, - "2025-01-01": 1385.35817060179, - "2024-01-01": 1355.29295559368, - "2023-01-01": 1282, - "2015-01-01": 1282 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1775.91707785569, - "2034-01-01": 1741.52805483243, - "2033-01-01": 1707.56358764896, - "2032-01-01": 1674.44823214508, - "2031-01-01": 1642.18198832078, - "2030-01-01": 1610.34030033628, - "2029-01-01": 1578.92316819157, - "2028-01-01": 1547.93059188665, - "2027-01-01": 1516.51345974194, - "2026-01-01": 1480.04411310369, - "2025-01-01": 1457.759884666, - "2024-01-01": 1426.12339867073, - "2023-01-01": 1349, - "2015-01-01": 1349 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1890.4499064498, - "2034-01-01": 1853.84305910998, - "2033-01-01": 1817.68814815708, - "2032-01-01": 1782.43710997801, - "2031-01-01": 1748.08994457275, - "2030-01-01": 1714.19471555441, - "2029-01-01": 1680.75142292297, - "2028-01-01": 1647.76006667845, - "2027-01-01": 1614.31677404702, - "2026-01-01": 1575.49543841134, - "2025-01-01": 1551.77405068968, - "2024-01-01": 1518.09725759168, - "2023-01-01": 1436, - "2015-01-01": 1436 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1995.7674499846, - "2034-01-01": 1957.12122396291, - "2033-01-01": 1918.95211184272, - "2032-01-01": 1881.73722752553, - "2031-01-01": 1845.47657101134, - "2030-01-01": 1809.69302839866, - "2029-01-01": 1774.38659968748, - "2028-01-01": 1739.55728487781, - "2027-01-01": 1704.25085616663, - "2026-01-01": 1663.26677202757, - "2025-01-01": 1638.22385852755, - "2024-01-01": 1602.67092096726, - "2023-01-01": 1516, - "2015-01-01": 1516 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2090.55323916593, - "2034-01-01": 2050.07157233054, - "2033-01-01": 2010.08967915978, - "2032-01-01": 1971.1073333183, - "2031-01-01": 1933.12453480608, - "2030-01-01": 1895.64150995849, - "2029-01-01": 1858.65825877554, - "2028-01-01": 1822.17478125723, - "2027-01-01": 1785.19153007428, - "2026-01-01": 1742.26097228218, - "2025-01-01": 1716.02868558162, - "2024-01-01": 1678.78721800528, - "2023-01-01": 1588, - "2015-01-01": 1588 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2180.07315117052, - "2034-01-01": 2137.85801245553, - "2033-01-01": 2096.16404829257, - "2032-01-01": 2055.51243323369, - "2031-01-01": 2015.90316727888, - "2030-01-01": 1976.81507587611, - "2029-01-01": 1938.24815902538, - "2028-01-01": 1900.20241672668, - "2027-01-01": 1861.63549987595, - "2026-01-01": 1816.86660585598, - "2025-01-01": 1789.51102224381, - "2024-01-01": 1750.67483187452, - "2023-01-01": 1656, - "2015-01-01": 1656 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2270.90953246929, - "2034-01-01": 2226.93542964117, - "2033-01-01": 2183.50421697143, - "2032-01-01": 2141.15878461843, - "2031-01-01": 2099.89913258217, - "2030-01-01": 2059.18237070428, - "2029-01-01": 2019.00849898477, - "2028-01-01": 1979.37751742363, - "2027-01-01": 1939.20364570411, - "2026-01-01": 1892.56938109997, - "2025-01-01": 1864.07398150397, - "2024-01-01": 1823.61961653596, - "2023-01-01": 1725, - "2015-01-01": 1725 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2368.32826023899, - "2034-01-01": 2322.46773213013, - "2033-01-01": 2277.17338338064, - "2032-01-01": 2233.01139334988, - "2031-01-01": 2189.98176203787, - "2030-01-01": 2147.51831008522, - "2029-01-01": 2105.62103749194, - "2028-01-01": 2064.28994425803, - "2027-01-01": 2022.39267166475, - "2026-01-01": 1973.75786469499, - "2025-01-01": 1944.04005375399, - "2024-01-01": 1901.85025515837, - "2023-01-01": 1799, - "2015-01-01": 1799 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2459.16464153776, - "2034-01-01": 2411.54514931577, - "2033-01-01": 2364.51355205949, - "2032-01-01": 2318.65774473462, - "2031-01-01": 2273.97772734115, - "2030-01-01": 2229.88560491339, - "2029-01-01": 2186.38137745133, - "2028-01-01": 2143.46504495498, - "2027-01-01": 2099.96081749292, - "2026-01-01": 2049.46063993899, - "2025-01-01": 2018.60301301415, - "2024-01-01": 1974.79503981981, - "2023-01-01": 1868, - "2015-01-01": 1868 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2544.73514565979, - "2034-01-01": 2495.45865825877, - "2033-01-01": 2446.79052255407, - "2032-01-01": 2399.33909024198, - "2031-01-01": 2353.10436132251, - "2030-01-01": 2307.47798409935, - "2029-01-01": 2262.4599585725, - "2028-01-01": 2218.05028474195, - "2027-01-01": 2173.0322592151, - "2026-01-01": 2120.77484850217, - "2025-01-01": 2088.84348188242, - "2024-01-01": 2043.51114131247, - "2023-01-01": 1933, - "2015-01-01": 1933 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3038.4111309792, - "2034-01-01": 2979.57505600686, - "2033-01-01": 2921.46535233047, - "2032-01-01": 2864.80839124599, - "2031-01-01": 2809.60417275342, - "2030-01-01": 2755.1263255568, - "2029-01-01": 2701.37484965614, - "2028-01-01": 2648.34974505144, - "2027-01-01": 2594.59826915078, - "2026-01-01": 2532.20297482826, - "2025-01-01": 2494.07695612241, - "2024-01-01": 2439.95018838551, - "2023-01-01": 2308, - "2015-01-01": 2308 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 792.514515099427, - "2034-01-01": 777.168190518253, - "2033-01-01": 762.011326734376, - "2032-01-01": 747.233384545097, - "2031-01-01": 732.834363950415, - "2030-01-01": 718.624804153031, - "2029-01-01": 704.604705152945, - "2028-01-01": 690.774066950158, - "2027-01-01": 676.753967950073, - "2026-01-01": 660.479285462136, - "2025-01-01": 650.534803979936, - "2024-01-01": 636.416816901246, - "2023-01-01": 602, - "2015-01-01": 602 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1082.13775982015, - "2034-01-01": 1061.18314386379, - "2033-01-01": 1040.48722686986, - "2032-01-01": 1020.30870780078, - "2031-01-01": 1000.64758665655, - "2030-01-01": 981.245164474737, - "2029-01-01": 962.10144125535, - "2028-01-01": 943.216416998389, - "2027-01-01": 924.072693779003, - "2026-01-01": 901.85045290677, - "2025-01-01": 888.271775534065, - "2024-01-01": 868.994391184093, - "2023-01-01": 822, - "2015-01-01": 822 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1224.31644359214, - "2034-01-01": 1200.60866641524, - "2033-01-01": 1177.19357784547, - "2032-01-01": 1154.36386648993, - "2031-01-01": 1132.11953234865, - "2030-01-01": 1110.16788681448, - "2029-01-01": 1088.50892988744, - "2028-01-01": 1067.14266156752, - "2027-01-01": 1045.48370464048, - "2026-01-01": 1020.34175328868, - "2025-01-01": 1004.97901611518, - "2024-01-01": 983.168836741127, - "2023-01-01": 930, - "2015-01-01": 930 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1342.7986800688, - "2034-01-01": 1316.79660187478, - "2033-01-01": 1291.1155369918, - "2032-01-01": 1266.0764987309, - "2031-01-01": 1241.67948709207, - "2030-01-01": 1217.60348876427, - "2029-01-01": 1193.84850374752, - "2028-01-01": 1170.4145320418, - "2027-01-01": 1146.65954702504, - "2026-01-01": 1119.08450360694, - "2025-01-01": 1102.23504993278, - "2024-01-01": 1078.31420803866, - "2023-01-01": 1020, - "2015-01-01": 1020 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1446.79975430942, - "2034-01-01": 1418.78378966704, - "2033-01-01": 1391.11370113136, - "2032-01-01": 1364.13536480907, - "2031-01-01": 1337.84878070018, - "2030-01-01": 1311.90807269798, - "2029-01-01": 1286.31324080247, - "2028-01-01": 1261.06428501366, - "2027-01-01": 1235.46945311816, - "2026-01-01": 1205.75869555297, - "2025-01-01": 1187.60423517267, - "2024-01-01": 1161.83070062204, - "2023-01-01": 1099, - "2015-01-01": 1099 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1538.95260490238, - "2034-01-01": 1509.15218391335, - "2033-01-01": 1479.71966935629, - "2032-01-01": 1451.02296766315, - "2031-01-01": 1423.06207883395, - "2030-01-01": 1395.4690964367, - "2029-01-01": 1368.24402047142, - "2028-01-01": 1341.3868509381, - "2027-01-01": 1314.16177497282, - "2026-01-01": 1282.55861246717, - "2025-01-01": 1263.24781703081, - "2024-01-01": 1235.83265607568, - "2023-01-01": 1169, - "2015-01-01": 1169 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1621.89017043604, - "2034-01-01": 1590.48373873503, - "2033-01-01": 1559.46504075872, - "2032-01-01": 1529.22181023183, - "2031-01-01": 1499.75404715434, - "2030-01-01": 1470.67401780155, - "2029-01-01": 1441.98172217347, - "2028-01-01": 1413.67716027009, - "2027-01-01": 1384.98486464201, - "2026-01-01": 1351.67853768995, - "2025-01-01": 1331.32704070312, - "2024-01-01": 1302.43441598394, - "2023-01-01": 1232, - "2015-01-01": 1232 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1698.24538949877, - "2034-01-01": 1665.3604082534, - "2033-01-01": 1632.88141443081, - "2032-01-01": 1601.21439545378, - "2031-01-01": 1570.35935132232, - "2030-01-01": 1539.91029461364, - "2029-01-01": 1509.86722532774, - "2028-01-01": 1480.23014346463, - "2027-01-01": 1450.18707417873, - "2026-01-01": 1415.31275456172, - "2025-01-01": 1394.00315138558, - "2024-01-01": 1363.75032193124, - "2023-01-01": 1290, - "2015-01-01": 1290 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1769.33473138477, - "2034-01-01": 1735.07316952912, - "2033-01-01": 1701.23458991861, - "2032-01-01": 1668.24197479836, - "2031-01-01": 1636.09532416837, - "2030-01-01": 1604.37165578351, - "2029-01-01": 1573.07096964378, - "2028-01-01": 1542.19326574919, - "2027-01-01": 1510.89257960947, - "2026-01-01": 1474.55840475268, - "2025-01-01": 1452.35677167614, - "2024-01-01": 1420.83754470976, - "2023-01-01": 1344, - "2015-01-01": 1344 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1862.80405127191, - "2034-01-01": 1826.73254083609, - "2033-01-01": 1791.10635768961, - "2032-01-01": 1756.37082912178, - "2031-01-01": 1722.52595513262, - "2030-01-01": 1689.12640843279, - "2029-01-01": 1656.17218902229, - "2028-01-01": 1623.66329690112, - "2027-01-01": 1590.70907749062, - "2026-01-01": 1552.45546333708, - "2025-01-01": 1529.08097613224, - "2024-01-01": 1495.89667095559, - "2023-01-01": 1415, - "2015-01-01": 1415 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1981.28628774857, - "2034-01-01": 1942.92047629563, - "2033-01-01": 1905.02831683594, - "2032-01-01": 1868.08346136274, - "2031-01-01": 1832.08590987604, - "2030-01-01": 1796.56201038258, - "2029-01-01": 1761.51176288236, - "2028-01-01": 1726.9351673754, - "2027-01-01": 1691.88491987518, - "2026-01-01": 1651.19821365534, - "2025-01-01": 1626.33700994984, - "2024-01-01": 1591.04204225311, - "2023-01-01": 1505, - "2015-01-01": 1505 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2090.55323916593, - "2034-01-01": 2050.07157233054, - "2033-01-01": 2010.08967915978, - "2032-01-01": 1971.1073333183, - "2031-01-01": 1933.12453480608, - "2030-01-01": 1895.64150995849, - "2029-01-01": 1858.65825877554, - "2028-01-01": 1822.17478125723, - "2027-01-01": 1785.19153007428, - "2026-01-01": 1742.26097228218, - "2025-01-01": 1716.02868558162, - "2024-01-01": 1678.78721800528, - "2023-01-01": 1588, - "2015-01-01": 1588 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2190.604905524, - "2034-01-01": 2148.18582894082, - "2033-01-01": 2106.29044466113, - "2032-01-01": 2065.44244498844, - "2031-01-01": 2025.64182992274, - "2030-01-01": 1986.36490716054, - "2029-01-01": 1947.61167670183, - "2028-01-01": 1909.38213854662, - "2027-01-01": 1870.62890808791, - "2026-01-01": 1825.6437392176, - "2025-01-01": 1798.1560030276, - "2024-01-01": 1759.13219821208, - "2023-01-01": 1664, - "2015-01-01": 1664 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2284.07422541114, - "2034-01-01": 2239.84520024779, - "2033-01-01": 2196.16221243213, - "2032-01-01": 2153.57129931187, - "2031-01-01": 2112.07246088699, - "2030-01-01": 2071.11965980982, - "2029-01-01": 2030.71289608033, - "2028-01-01": 1990.85216969855, - "2027-01-01": 1950.44540596906, - "2026-01-01": 1903.540797802, - "2025-01-01": 1874.8802074837, - "2024-01-01": 1834.19132445791, - "2023-01-01": 1735, - "2015-01-01": 1735 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2378.86001459247, - "2034-01-01": 2332.79554861542, - "2033-01-01": 2287.2997797492, - "2032-01-01": 2242.94140510464, - "2031-01-01": 2199.72042468173, - "2030-01-01": 2157.06814136965, - "2029-01-01": 2114.98455516839, - "2028-01-01": 2073.46966607797, - "2027-01-01": 2031.38607987671, - "2026-01-01": 1982.53499805661, - "2025-01-01": 1952.68503453778, - "2024-01-01": 1910.30762149593, - "2023-01-01": 1807, - "2015-01-01": 1807 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2480.22815024472, - "2034-01-01": 2432.20078228636, - "2033-01-01": 2384.76634479662, - "2032-01-01": 2338.51776824412, - "2031-01-01": 2293.45505262887, - "2030-01-01": 2248.98526748224, - "2029-01-01": 2205.10841280423, - "2028-01-01": 2161.82448859485, - "2027-01-01": 2117.94763391684, - "2026-01-01": 2067.01490666223, - "2025-01-01": 2035.89297458173, - "2024-01-01": 1991.70977249493, - "2023-01-01": 1884, - "2015-01-01": 1884 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2575.01393942605, - "2034-01-01": 2525.15113065399, - "2033-01-01": 2475.90391211369, - "2032-01-01": 2427.88787403689, - "2031-01-01": 2381.10301642361, - "2030-01-01": 2334.93374904207, - "2029-01-01": 2289.38007189229, - "2028-01-01": 2244.44198497427, - "2027-01-01": 2198.88830782449, - "2026-01-01": 2146.00910691684, - "2025-01-01": 2113.6978016358, - "2024-01-01": 2067.82606953295, - "2023-01-01": 1956, - "2015-01-01": 1956 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2664.53385143063, - "2034-01-01": 2612.93757077898, - "2033-01-01": 2561.97828124647, - "2032-01-01": 2512.29297395229, - "2031-01-01": 2463.88164889641, - "2030-01-01": 2416.10731495969, - "2029-01-01": 2368.96997214213, - "2028-01-01": 2322.46962044372, - "2027-01-01": 2275.33227762616, - "2026-01-01": 2220.61474049064, - "2025-01-01": 2187.18013829799, - "2024-01-01": 2139.7136834022, - "2023-01-01": 2024, - "2015-01-01": 2024 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3180.58981475119, - "2034-01-01": 3119.0005785583, - "2033-01-01": 3058.17170330607, - "2032-01-01": 2998.86354993514, - "2031-01-01": 2941.07611844552, - "2030-01-01": 2884.04904789655, - "2029-01-01": 2827.78233828823, - "2028-01-01": 2772.27598962057, - "2027-01-01": 2716.00928001225, - "2026-01-01": 2650.69427521017, - "2025-01-01": 2610.78419670353, - "2024-01-01": 2554.12463394254, - "2023-01-01": 2416, - "2015-01-01": 2416 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 845.173286866831, - "2034-01-01": 828.807272944715, - "2033-01-01": 812.643308577192, - "2032-01-01": 796.883443318858, - "2031-01-01": 781.527677169712, - "2030-01-01": 766.373960575159, - "2029-01-01": 751.422293535201, - "2028-01-01": 736.672676049837, - "2027-01-01": 721.721009009879, - "2026-01-01": 704.364952270251, - "2025-01-01": 693.759707898868, - "2024-01-01": 678.703648589036, - "2023-01-01": 642, - "2015-01-01": 642 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1153.22710170614, - "2034-01-01": 1130.89590513952, - "2033-01-01": 1108.84040235766, - "2032-01-01": 1087.33628714536, - "2031-01-01": 1066.3835595026, - "2030-01-01": 1045.70652564461, - "2029-01-01": 1025.3051855714, - "2028-01-01": 1005.17953928295, - "2027-01-01": 984.778199209741, - "2026-01-01": 961.096103097726, - "2025-01-01": 946.625395824624, - "2024-01-01": 926.08161396261, - "2023-01-01": 876, - "2015-01-01": 876 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1304.62107053743, - "2034-01-01": 1279.3582671156, - "2033-01-01": 1254.40735015576, - "2032-01-01": 1230.08020611992, - "2031-01-01": 1206.37683500808, - "2030-01-01": 1182.98535035823, - "2029-01-01": 1159.90575217038, - "2028-01-01": 1137.13804044453, - "2027-01-01": 1114.05844225668, - "2026-01-01": 1087.26739517106, - "2025-01-01": 1070.89699459156, - "2024-01-01": 1047.65625506501, - "2023-01-01": 991, - "2015-01-01": 991 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1431.0021227792, - "2034-01-01": 1403.2920649391, - "2033-01-01": 1375.92410657852, - "2032-01-01": 1349.24034717694, - "2031-01-01": 1323.24078673439, - "2030-01-01": 1297.58332577134, - "2029-01-01": 1272.26796428779, - "2028-01-01": 1247.29470228376, - "2027-01-01": 1221.97934080021, - "2026-01-01": 1192.59299551053, - "2025-01-01": 1174.63676399699, - "2024-01-01": 1149.1446511157, - "2023-01-01": 1087, - "2015-01-01": 1087 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1540.26907419656, - "2034-01-01": 1510.44316097401, - "2033-01-01": 1480.98546890236, - "2032-01-01": 1452.2642191325, - "2031-01-01": 1424.27941166443, - "2030-01-01": 1396.66282534725, - "2029-01-01": 1369.41446018097, - "2028-01-01": 1342.53431616559, - "2027-01-01": 1315.28595099931, - "2026-01-01": 1283.65575413737, - "2025-01-01": 1264.32843962878, - "2024-01-01": 1236.88982686787, - "2023-01-01": 1170, - "2015-01-01": 1170 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1637.68780196626, - "2034-01-01": 1605.97546346297, - "2033-01-01": 1574.65463531157, - "2032-01-01": 1544.11682786395, - "2031-01-01": 1514.36204112013, - "2030-01-01": 1484.99876472819, - "2029-01-01": 1456.02699868815, - "2028-01-01": 1427.44674299999, - "2027-01-01": 1398.47497695995, - "2026-01-01": 1364.84423773239, - "2025-01-01": 1344.2945118788, - "2024-01-01": 1315.12046549028, - "2023-01-01": 1244, - "2015-01-01": 1244 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1725.89124467666, - "2034-01-01": 1692.47092652729, - "2033-01-01": 1659.46320489828, - "2032-01-01": 1627.28067631, - "2031-01-01": 1595.92334076245, - "2030-01-01": 1564.97860173526, - "2029-01-01": 1534.44645922842, - "2028-01-01": 1504.32691324196, - "2027-01-01": 1473.79477073513, - "2026-01-01": 1438.35272963598, - "2025-01-01": 1416.69622594302, - "2024-01-01": 1385.95090856733, - "2023-01-01": 1311, - "2015-01-01": 1311 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1807.51234091614, - "2034-01-01": 1772.51150428831, - "2033-01-01": 1737.94277675465, - "2032-01-01": 1704.23826740933, - "2031-01-01": 1671.39797625236, - "2030-01-01": 1638.98979418955, - "2029-01-01": 1607.01372122092, - "2028-01-01": 1575.46975734646, - "2027-01-01": 1543.49368437782, - "2026-01-01": 1506.37551318856, - "2025-01-01": 1483.69482701736, - "2024-01-01": 1451.49549768341, - "2023-01-01": 1373, - "2015-01-01": 1373 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1882.55109068469, - "2034-01-01": 1846.09719674602, - "2033-01-01": 1810.09335088066, - "2032-01-01": 1774.98960116194, - "2031-01-01": 1740.78594758986, - "2030-01-01": 1707.03234209109, - "2029-01-01": 1673.72878466563, - "2028-01-01": 1640.8752753135, - "2027-01-01": 1607.57171788805, - "2026-01-01": 1568.91258839012, - "2025-01-01": 1545.29031510184, - "2024-01-01": 1511.75423283851, - "2023-01-01": 1430, - "2015-01-01": 1430 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1981.28628774857, - "2034-01-01": 1942.92047629563, - "2033-01-01": 1905.02831683594, - "2032-01-01": 1868.08346136274, - "2031-01-01": 1832.08590987604, - "2030-01-01": 1796.56201038258, - "2029-01-01": 1761.51176288236, - "2028-01-01": 1726.9351673754, - "2027-01-01": 1691.88491987518, - "2026-01-01": 1651.19821365534, - "2025-01-01": 1626.33700994984, - "2024-01-01": 1591.04204225311, - "2023-01-01": 1505, - "2015-01-01": 1505 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2107.66733999034, - "2034-01-01": 2066.85427411914, - "2033-01-01": 2026.5450732587, - "2032-01-01": 1987.24360241977, - "2031-01-01": 1948.94986160235, - "2030-01-01": 1911.15998579569, - "2029-01-01": 1873.87397499978, - "2028-01-01": 1837.09182921462, - "2027-01-01": 1799.80581841872, - "2026-01-01": 1756.52381399482, - "2025-01-01": 1730.07677935528, - "2024-01-01": 1692.53043830381, - "2023-01-01": 1601, - "2015-01-01": 1601 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2223.51663787863, - "2034-01-01": 2180.46025545736, - "2033-01-01": 2137.93543331289, - "2032-01-01": 2096.47373172204, - "2031-01-01": 2056.0751506848, - "2030-01-01": 2016.20812992437, - "2029-01-01": 1976.87266944074, - "2028-01-01": 1938.06876923392, - "2027-01-01": 1898.73330875029, - "2026-01-01": 1853.07228097267, - "2025-01-01": 1825.17156797693, - "2024-01-01": 1785.56146801695, - "2023-01-01": 1689, - "2015-01-01": 1689 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2330.15065070762, - "2034-01-01": 2285.02939737094, - "2033-01-01": 2240.4651965446, - "2032-01-01": 2197.01510073891, - "2031-01-01": 2154.67910995388, - "2030-01-01": 2112.90017167918, - "2029-01-01": 2071.67828591481, - "2028-01-01": 2031.01345266076, - "2027-01-01": 1989.79156689639, - "2026-01-01": 1941.9407562591, - "2025-01-01": 1912.70199841277, - "2024-01-01": 1871.19230218473, - "2023-01-01": 1770, - "2015-01-01": 1770 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2428.8858477715, - "2034-01-01": 2381.85267692056, - "2033-01-01": 2335.40016249987, - "2032-01-01": 2290.10896093971, - "2031-01-01": 2245.97907224006, - "2030-01-01": 2202.42983997067, - "2029-01-01": 2159.46126413154, - "2028-01-01": 2117.07334472266, - "2027-01-01": 2074.10476888353, - "2026-01-01": 2024.22638152432, - "2025-01-01": 1993.74869326077, - "2024-01-01": 1950.48011159933, - "2023-01-01": 1845, - "2015-01-01": 1845 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2530.25398342375, - "2034-01-01": 2481.2579105915, - "2033-01-01": 2432.86672754729, - "2032-01-01": 2385.6853240792, - "2031-01-01": 2339.7137001872, - "2030-01-01": 2294.34696608327, - "2029-01-01": 2249.58512176738, - "2028-01-01": 2205.42816723954, - "2027-01-01": 2160.66632292365, - "2026-01-01": 2108.70629012994, - "2025-01-01": 2076.95663330471, - "2024-01-01": 2031.88226259833, - "2023-01-01": 1922, - "2015-01-01": 1922 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2636.88799625275, - "2034-01-01": 2585.82705250508, - "2033-01-01": 2535.396490779, - "2032-01-01": 2486.22669309606, - "2031-01-01": 2438.31765945628, - "2030-01-01": 2391.03900783807, - "2029-01-01": 2344.39073824144, - "2028-01-01": 2298.37285066639, - "2027-01-01": 2251.72458106976, - "2026-01-01": 2197.57476541638, - "2025-01-01": 2164.48706374055, - "2024-01-01": 2117.51309676611, - "2023-01-01": 2003, - "2015-01-01": 2003 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2736.93966261081, - "2034-01-01": 2683.94130911536, - "2033-01-01": 2631.59725628035, - "2032-01-01": 2580.56180476621, - "2031-01-01": 2530.83495457294, - "2030-01-01": 2481.76240504012, - "2029-01-01": 2433.34415616773, - "2028-01-01": 2385.58020795578, - "2027-01-01": 2337.16195908339, - "2026-01-01": 2280.95753235179, - "2025-01-01": 2246.61438118652, - "2024-01-01": 2197.85807697291, - "2023-01-01": 2079, - "2015-01-01": 2079 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2833.04192108633, - "2034-01-01": 2778.18263454365, - "2033-01-01": 2724.00062314349, - "2032-01-01": 2671.17316202832, - "2031-01-01": 2619.70025119816, - "2030-01-01": 2568.9046155105, - "2029-01-01": 2518.78625496535, - "2028-01-01": 2469.34516956269, - "2027-01-01": 2419.22680901754, - "2026-01-01": 2361.04887427661, - "2025-01-01": 2325.49983083857, - "2024-01-01": 2275.03154480312, - "2023-01-01": 2152, - "2015-01-01": 2152 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.UT.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3378.06020887895, - "2034-01-01": 3312.64713765754, - "2033-01-01": 3248.04163521663, - "2032-01-01": 3185.05127033674, - "2031-01-01": 3123.67604301788, - "2030-01-01": 3063.10838447953, - "2029-01-01": 3003.34829472169, - "2028-01-01": 2944.39577374436, - "2027-01-01": 2884.63568398652, - "2026-01-01": 2815.2655257406, - "2025-01-01": 2772.87758639953, - "2024-01-01": 2712.70025277176, - "2023-01-01": 2566, - "2015-01-01": 2566 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT", - "description": null, - "label": "VT", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 754.33690556806, - "2034-01-01": 739.729855759068, - "2033-01-01": 725.303139898335, - "2032-01-01": 711.237091934121, - "2031-01-01": 697.531711866425, - "2030-01-01": 684.006665746988, - "2029-01-01": 670.66195357581, - "2028-01-01": 657.497575352892, - "2027-01-01": 644.152863181714, - "2026-01-01": 628.662177026252, - "2025-01-01": 619.19674863871, - "2024-01-01": 605.758863927598, - "2023-01-01": 573, - "2015-01-01": 573 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1030.79545734693, - "2034-01-01": 1010.83503849799, - "2033-01-01": 991.121044573117, - "2032-01-01": 971.899900496364, - "2031-01-01": 953.171606267732, - "2030-01-01": 934.689736963162, - "2029-01-01": 916.454292582651, - "2028-01-01": 898.465273126203, - "2027-01-01": 880.229828745693, - "2026-01-01": 859.061927768858, - "2025-01-01": 846.127494213106, - "2024-01-01": 827.764730288497, - "2023-01-01": 783, - "2015-01-01": 783 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1166.39179464799, - "2034-01-01": 1143.80567574613, - "2033-01-01": 1121.49839781837, - "2032-01-01": 1099.7488018388, - "2031-01-01": 1078.55688780742, - "2030-01-01": 1057.64381475014, - "2029-01-01": 1037.00958266696, - "2028-01-01": 1016.65419155787, - "2027-01-01": 996.019959474692, - "2026-01-01": 972.067519799755, - "2025-01-01": 957.431621804357, - "2024-01-01": 936.653321884558, - "2023-01-01": 886, - "2015-01-01": 886 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1279.60815394791, - "2034-01-01": 1254.82970296303, - "2033-01-01": 1230.35715878042, - "2032-01-01": 1206.49642820238, - "2031-01-01": 1183.24751122891, - "2030-01-01": 1160.30450105772, - "2029-01-01": 1137.66739768881, - "2028-01-01": 1115.33620112218, - "2027-01-01": 1092.69909775327, - "2026-01-01": 1066.4217034372, - "2025-01-01": 1050.36516523006, - "2024-01-01": 1027.57001001331, - "2023-01-01": 972, - "2015-01-01": 972 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1379.65982030598, - "2034-01-01": 1352.9439595733, - "2033-01-01": 1326.55792428177, - "2032-01-01": 1300.83153987253, - "2031-01-01": 1275.76480634557, - "2030-01-01": 1251.02789825976, - "2029-01-01": 1226.62081561509, - "2028-01-01": 1202.54355841157, - "2027-01-01": 1178.1364757669, - "2026-01-01": 1149.80447037262, - "2025-01-01": 1132.49248267603, - "2024-01-01": 1107.91499022011, - "2023-01-01": 1048, - "2015-01-01": 1048 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1466.5467937222, - "2034-01-01": 1438.14844557697, - "2033-01-01": 1410.10069432242, - "2032-01-01": 1382.75413684923, - "2031-01-01": 1356.10877315741, - "2030-01-01": 1329.81400635627, - "2029-01-01": 1303.86983644582, - "2028-01-01": 1278.27626342604, - "2027-01-01": 1252.33209351558, - "2026-01-01": 1222.21582060601, - "2025-01-01": 1203.81357414227, - "2024-01-01": 1177.68826250496, - "2023-01-01": 1114, - "2015-01-01": 1114 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1546.85142066749, - "2034-01-01": 1516.89804627732, - "2033-01-01": 1487.31446663271, - "2032-01-01": 1458.47047647922, - "2031-01-01": 1430.36607581684, - "2030-01-01": 1402.63146990002, - "2029-01-01": 1375.26665872876, - "2028-01-01": 1348.27164230305, - "2027-01-01": 1320.90683113179, - "2026-01-01": 1289.14146248839, - "2025-01-01": 1269.73155261865, - "2024-01-01": 1242.17568082884, - "2023-01-01": 1175, - "2015-01-01": 1175 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1619.25723184767, - "2034-01-01": 1587.90178461371, - "2033-01-01": 1556.93344166658, - "2032-01-01": 1526.73930729314, - "2031-01-01": 1497.31938149337, - "2030-01-01": 1468.28655998045, - "2029-01-01": 1439.64084275436, - "2028-01-01": 1411.38222981511, - "2027-01-01": 1382.73651258902, - "2026-01-01": 1349.48425434955, - "2025-01-01": 1329.16579550718, - "2024-01-01": 1300.32007439956, - "2023-01-01": 1230, - "2015-01-01": 1230 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1687.71363514529, - "2034-01-01": 1655.03259176811, - "2033-01-01": 1622.75501806224, - "2032-01-01": 1591.28438369903, - "2031-01-01": 1560.62068867846, - "2030-01-01": 1530.36046332921, - "2029-01-01": 1500.50370765129, - "2028-01-01": 1471.05042164469, - "2027-01-01": 1441.19366596677, - "2026-01-01": 1406.5356212001, - "2025-01-01": 1385.35817060179, - "2024-01-01": 1355.29295559368, - "2023-01-01": 1282, - "2015-01-01": 1282 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1775.91707785569, - "2034-01-01": 1741.52805483243, - "2033-01-01": 1707.56358764896, - "2032-01-01": 1674.44823214508, - "2031-01-01": 1642.18198832078, - "2030-01-01": 1610.34030033628, - "2029-01-01": 1578.92316819157, - "2028-01-01": 1547.93059188665, - "2027-01-01": 1516.51345974194, - "2026-01-01": 1480.04411310369, - "2025-01-01": 1457.759884666, - "2024-01-01": 1426.12339867073, - "2023-01-01": 1349, - "2015-01-01": 1349 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1890.4499064498, - "2034-01-01": 1853.84305910998, - "2033-01-01": 1817.68814815708, - "2032-01-01": 1782.43710997801, - "2031-01-01": 1748.08994457275, - "2030-01-01": 1714.19471555441, - "2029-01-01": 1680.75142292297, - "2028-01-01": 1647.76006667845, - "2027-01-01": 1614.31677404702, - "2026-01-01": 1575.49543841134, - "2025-01-01": 1551.77405068968, - "2024-01-01": 1518.09725759168, - "2023-01-01": 1436, - "2015-01-01": 1436 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1995.7674499846, - "2034-01-01": 1957.12122396291, - "2033-01-01": 1918.95211184272, - "2032-01-01": 1881.73722752553, - "2031-01-01": 1845.47657101134, - "2030-01-01": 1809.69302839866, - "2029-01-01": 1774.38659968748, - "2028-01-01": 1739.55728487781, - "2027-01-01": 1704.25085616663, - "2026-01-01": 1663.26677202757, - "2025-01-01": 1638.22385852755, - "2024-01-01": 1602.67092096726, - "2023-01-01": 1516, - "2015-01-01": 1516 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2090.55323916593, - "2034-01-01": 2050.07157233054, - "2033-01-01": 2010.08967915978, - "2032-01-01": 1971.1073333183, - "2031-01-01": 1933.12453480608, - "2030-01-01": 1895.64150995849, - "2029-01-01": 1858.65825877554, - "2028-01-01": 1822.17478125723, - "2027-01-01": 1785.19153007428, - "2026-01-01": 1742.26097228218, - "2025-01-01": 1716.02868558162, - "2024-01-01": 1678.78721800528, - "2023-01-01": 1588, - "2015-01-01": 1588 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2180.07315117052, - "2034-01-01": 2137.85801245553, - "2033-01-01": 2096.16404829257, - "2032-01-01": 2055.51243323369, - "2031-01-01": 2015.90316727888, - "2030-01-01": 1976.81507587611, - "2029-01-01": 1938.24815902538, - "2028-01-01": 1900.20241672668, - "2027-01-01": 1861.63549987595, - "2026-01-01": 1816.86660585598, - "2025-01-01": 1789.51102224381, - "2024-01-01": 1750.67483187452, - "2023-01-01": 1656, - "2015-01-01": 1656 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2270.90953246929, - "2034-01-01": 2226.93542964117, - "2033-01-01": 2183.50421697143, - "2032-01-01": 2141.15878461843, - "2031-01-01": 2099.89913258217, - "2030-01-01": 2059.18237070428, - "2029-01-01": 2019.00849898477, - "2028-01-01": 1979.37751742363, - "2027-01-01": 1939.20364570411, - "2026-01-01": 1892.56938109997, - "2025-01-01": 1864.07398150397, - "2024-01-01": 1823.61961653596, - "2023-01-01": 1725, - "2015-01-01": 1725 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2368.32826023899, - "2034-01-01": 2322.46773213013, - "2033-01-01": 2277.17338338064, - "2032-01-01": 2233.01139334988, - "2031-01-01": 2189.98176203787, - "2030-01-01": 2147.51831008522, - "2029-01-01": 2105.62103749194, - "2028-01-01": 2064.28994425803, - "2027-01-01": 2022.39267166475, - "2026-01-01": 1973.75786469499, - "2025-01-01": 1944.04005375399, - "2024-01-01": 1901.85025515837, - "2023-01-01": 1799, - "2015-01-01": 1799 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2459.16464153776, - "2034-01-01": 2411.54514931577, - "2033-01-01": 2364.51355205949, - "2032-01-01": 2318.65774473462, - "2031-01-01": 2273.97772734115, - "2030-01-01": 2229.88560491339, - "2029-01-01": 2186.38137745133, - "2028-01-01": 2143.46504495498, - "2027-01-01": 2099.96081749292, - "2026-01-01": 2049.46063993899, - "2025-01-01": 2018.60301301415, - "2024-01-01": 1974.79503981981, - "2023-01-01": 1868, - "2015-01-01": 1868 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2544.73514565979, - "2034-01-01": 2495.45865825877, - "2033-01-01": 2446.79052255407, - "2032-01-01": 2399.33909024198, - "2031-01-01": 2353.10436132251, - "2030-01-01": 2307.47798409935, - "2029-01-01": 2262.4599585725, - "2028-01-01": 2218.05028474195, - "2027-01-01": 2173.0322592151, - "2026-01-01": 2120.77484850217, - "2025-01-01": 2088.84348188242, - "2024-01-01": 2043.51114131247, - "2023-01-01": 1933, - "2015-01-01": 1933 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3038.4111309792, - "2034-01-01": 2979.57505600686, - "2033-01-01": 2921.46535233047, - "2032-01-01": 2864.80839124599, - "2031-01-01": 2809.60417275342, - "2030-01-01": 2755.1263255568, - "2029-01-01": 2701.37484965614, - "2028-01-01": 2648.34974505144, - "2027-01-01": 2594.59826915078, - "2026-01-01": 2532.20297482826, - "2025-01-01": 2494.07695612241, - "2024-01-01": 2439.95018838551, - "2023-01-01": 2308, - "2015-01-01": 2308 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 792.514515099427, - "2034-01-01": 777.168190518253, - "2033-01-01": 762.011326734376, - "2032-01-01": 747.233384545097, - "2031-01-01": 732.834363950415, - "2030-01-01": 718.624804153031, - "2029-01-01": 704.604705152945, - "2028-01-01": 690.774066950158, - "2027-01-01": 676.753967950073, - "2026-01-01": 660.479285462136, - "2025-01-01": 650.534803979936, - "2024-01-01": 636.416816901246, - "2023-01-01": 602, - "2015-01-01": 602 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1082.13775982015, - "2034-01-01": 1061.18314386379, - "2033-01-01": 1040.48722686986, - "2032-01-01": 1020.30870780078, - "2031-01-01": 1000.64758665655, - "2030-01-01": 981.245164474737, - "2029-01-01": 962.10144125535, - "2028-01-01": 943.216416998389, - "2027-01-01": 924.072693779003, - "2026-01-01": 901.85045290677, - "2025-01-01": 888.271775534065, - "2024-01-01": 868.994391184093, - "2023-01-01": 822, - "2015-01-01": 822 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1224.31644359214, - "2034-01-01": 1200.60866641524, - "2033-01-01": 1177.19357784547, - "2032-01-01": 1154.36386648993, - "2031-01-01": 1132.11953234865, - "2030-01-01": 1110.16788681448, - "2029-01-01": 1088.50892988744, - "2028-01-01": 1067.14266156752, - "2027-01-01": 1045.48370464048, - "2026-01-01": 1020.34175328868, - "2025-01-01": 1004.97901611518, - "2024-01-01": 983.168836741127, - "2023-01-01": 930, - "2015-01-01": 930 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1342.7986800688, - "2034-01-01": 1316.79660187478, - "2033-01-01": 1291.1155369918, - "2032-01-01": 1266.0764987309, - "2031-01-01": 1241.67948709207, - "2030-01-01": 1217.60348876427, - "2029-01-01": 1193.84850374752, - "2028-01-01": 1170.4145320418, - "2027-01-01": 1146.65954702504, - "2026-01-01": 1119.08450360694, - "2025-01-01": 1102.23504993278, - "2024-01-01": 1078.31420803866, - "2023-01-01": 1020, - "2015-01-01": 1020 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1446.79975430942, - "2034-01-01": 1418.78378966704, - "2033-01-01": 1391.11370113136, - "2032-01-01": 1364.13536480907, - "2031-01-01": 1337.84878070018, - "2030-01-01": 1311.90807269798, - "2029-01-01": 1286.31324080247, - "2028-01-01": 1261.06428501366, - "2027-01-01": 1235.46945311816, - "2026-01-01": 1205.75869555297, - "2025-01-01": 1187.60423517267, - "2024-01-01": 1161.83070062204, - "2023-01-01": 1099, - "2015-01-01": 1099 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1538.95260490238, - "2034-01-01": 1509.15218391335, - "2033-01-01": 1479.71966935629, - "2032-01-01": 1451.02296766315, - "2031-01-01": 1423.06207883395, - "2030-01-01": 1395.4690964367, - "2029-01-01": 1368.24402047142, - "2028-01-01": 1341.3868509381, - "2027-01-01": 1314.16177497282, - "2026-01-01": 1282.55861246717, - "2025-01-01": 1263.24781703081, - "2024-01-01": 1235.83265607568, - "2023-01-01": 1169, - "2015-01-01": 1169 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1621.89017043604, - "2034-01-01": 1590.48373873503, - "2033-01-01": 1559.46504075872, - "2032-01-01": 1529.22181023183, - "2031-01-01": 1499.75404715434, - "2030-01-01": 1470.67401780155, - "2029-01-01": 1441.98172217347, - "2028-01-01": 1413.67716027009, - "2027-01-01": 1384.98486464201, - "2026-01-01": 1351.67853768995, - "2025-01-01": 1331.32704070312, - "2024-01-01": 1302.43441598394, - "2023-01-01": 1232, - "2015-01-01": 1232 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1698.24538949877, - "2034-01-01": 1665.3604082534, - "2033-01-01": 1632.88141443081, - "2032-01-01": 1601.21439545378, - "2031-01-01": 1570.35935132232, - "2030-01-01": 1539.91029461364, - "2029-01-01": 1509.86722532774, - "2028-01-01": 1480.23014346463, - "2027-01-01": 1450.18707417873, - "2026-01-01": 1415.31275456172, - "2025-01-01": 1394.00315138558, - "2024-01-01": 1363.75032193124, - "2023-01-01": 1290, - "2015-01-01": 1290 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1769.33473138477, - "2034-01-01": 1735.07316952912, - "2033-01-01": 1701.23458991861, - "2032-01-01": 1668.24197479836, - "2031-01-01": 1636.09532416837, - "2030-01-01": 1604.37165578351, - "2029-01-01": 1573.07096964378, - "2028-01-01": 1542.19326574919, - "2027-01-01": 1510.89257960947, - "2026-01-01": 1474.55840475268, - "2025-01-01": 1452.35677167614, - "2024-01-01": 1420.83754470976, - "2023-01-01": 1344, - "2015-01-01": 1344 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1862.80405127191, - "2034-01-01": 1826.73254083609, - "2033-01-01": 1791.10635768961, - "2032-01-01": 1756.37082912178, - "2031-01-01": 1722.52595513262, - "2030-01-01": 1689.12640843279, - "2029-01-01": 1656.17218902229, - "2028-01-01": 1623.66329690112, - "2027-01-01": 1590.70907749062, - "2026-01-01": 1552.45546333708, - "2025-01-01": 1529.08097613224, - "2024-01-01": 1495.89667095559, - "2023-01-01": 1415, - "2015-01-01": 1415 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1981.28628774857, - "2034-01-01": 1942.92047629563, - "2033-01-01": 1905.02831683594, - "2032-01-01": 1868.08346136274, - "2031-01-01": 1832.08590987604, - "2030-01-01": 1796.56201038258, - "2029-01-01": 1761.51176288236, - "2028-01-01": 1726.9351673754, - "2027-01-01": 1691.88491987518, - "2026-01-01": 1651.19821365534, - "2025-01-01": 1626.33700994984, - "2024-01-01": 1591.04204225311, - "2023-01-01": 1505, - "2015-01-01": 1505 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2090.55323916593, - "2034-01-01": 2050.07157233054, - "2033-01-01": 2010.08967915978, - "2032-01-01": 1971.1073333183, - "2031-01-01": 1933.12453480608, - "2030-01-01": 1895.64150995849, - "2029-01-01": 1858.65825877554, - "2028-01-01": 1822.17478125723, - "2027-01-01": 1785.19153007428, - "2026-01-01": 1742.26097228218, - "2025-01-01": 1716.02868558162, - "2024-01-01": 1678.78721800528, - "2023-01-01": 1588, - "2015-01-01": 1588 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2190.604905524, - "2034-01-01": 2148.18582894082, - "2033-01-01": 2106.29044466113, - "2032-01-01": 2065.44244498844, - "2031-01-01": 2025.64182992274, - "2030-01-01": 1986.36490716054, - "2029-01-01": 1947.61167670183, - "2028-01-01": 1909.38213854662, - "2027-01-01": 1870.62890808791, - "2026-01-01": 1825.6437392176, - "2025-01-01": 1798.1560030276, - "2024-01-01": 1759.13219821208, - "2023-01-01": 1664, - "2015-01-01": 1664 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2284.07422541114, - "2034-01-01": 2239.84520024779, - "2033-01-01": 2196.16221243213, - "2032-01-01": 2153.57129931187, - "2031-01-01": 2112.07246088699, - "2030-01-01": 2071.11965980982, - "2029-01-01": 2030.71289608033, - "2028-01-01": 1990.85216969855, - "2027-01-01": 1950.44540596906, - "2026-01-01": 1903.540797802, - "2025-01-01": 1874.8802074837, - "2024-01-01": 1834.19132445791, - "2023-01-01": 1735, - "2015-01-01": 1735 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2378.86001459247, - "2034-01-01": 2332.79554861542, - "2033-01-01": 2287.2997797492, - "2032-01-01": 2242.94140510464, - "2031-01-01": 2199.72042468173, - "2030-01-01": 2157.06814136965, - "2029-01-01": 2114.98455516839, - "2028-01-01": 2073.46966607797, - "2027-01-01": 2031.38607987671, - "2026-01-01": 1982.53499805661, - "2025-01-01": 1952.68503453778, - "2024-01-01": 1910.30762149593, - "2023-01-01": 1807, - "2015-01-01": 1807 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2480.22815024472, - "2034-01-01": 2432.20078228636, - "2033-01-01": 2384.76634479662, - "2032-01-01": 2338.51776824412, - "2031-01-01": 2293.45505262887, - "2030-01-01": 2248.98526748224, - "2029-01-01": 2205.10841280423, - "2028-01-01": 2161.82448859485, - "2027-01-01": 2117.94763391684, - "2026-01-01": 2067.01490666223, - "2025-01-01": 2035.89297458173, - "2024-01-01": 1991.70977249493, - "2023-01-01": 1884, - "2015-01-01": 1884 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2575.01393942605, - "2034-01-01": 2525.15113065399, - "2033-01-01": 2475.90391211369, - "2032-01-01": 2427.88787403689, - "2031-01-01": 2381.10301642361, - "2030-01-01": 2334.93374904207, - "2029-01-01": 2289.38007189229, - "2028-01-01": 2244.44198497427, - "2027-01-01": 2198.88830782449, - "2026-01-01": 2146.00910691684, - "2025-01-01": 2113.6978016358, - "2024-01-01": 2067.82606953295, - "2023-01-01": 1956, - "2015-01-01": 1956 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2664.53385143063, - "2034-01-01": 2612.93757077898, - "2033-01-01": 2561.97828124647, - "2032-01-01": 2512.29297395229, - "2031-01-01": 2463.88164889641, - "2030-01-01": 2416.10731495969, - "2029-01-01": 2368.96997214213, - "2028-01-01": 2322.46962044372, - "2027-01-01": 2275.33227762616, - "2026-01-01": 2220.61474049064, - "2025-01-01": 2187.18013829799, - "2024-01-01": 2139.7136834022, - "2023-01-01": 2024, - "2015-01-01": 2024 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3180.58981475119, - "2034-01-01": 3119.0005785583, - "2033-01-01": 3058.17170330607, - "2032-01-01": 2998.86354993514, - "2031-01-01": 2941.07611844552, - "2030-01-01": 2884.04904789655, - "2029-01-01": 2827.78233828823, - "2028-01-01": 2772.27598962057, - "2027-01-01": 2716.00928001225, - "2026-01-01": 2650.69427521017, - "2025-01-01": 2610.78419670353, - "2024-01-01": 2554.12463394254, - "2023-01-01": 2416, - "2015-01-01": 2416 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 845.173286866831, - "2034-01-01": 828.807272944715, - "2033-01-01": 812.643308577192, - "2032-01-01": 796.883443318858, - "2031-01-01": 781.527677169712, - "2030-01-01": 766.373960575159, - "2029-01-01": 751.422293535201, - "2028-01-01": 736.672676049837, - "2027-01-01": 721.721009009879, - "2026-01-01": 704.364952270251, - "2025-01-01": 693.759707898868, - "2024-01-01": 678.703648589036, - "2023-01-01": 642, - "2015-01-01": 642 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1153.22710170614, - "2034-01-01": 1130.89590513952, - "2033-01-01": 1108.84040235766, - "2032-01-01": 1087.33628714536, - "2031-01-01": 1066.3835595026, - "2030-01-01": 1045.70652564461, - "2029-01-01": 1025.3051855714, - "2028-01-01": 1005.17953928295, - "2027-01-01": 984.778199209741, - "2026-01-01": 961.096103097726, - "2025-01-01": 946.625395824624, - "2024-01-01": 926.08161396261, - "2023-01-01": 876, - "2015-01-01": 876 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1304.62107053743, - "2034-01-01": 1279.3582671156, - "2033-01-01": 1254.40735015576, - "2032-01-01": 1230.08020611992, - "2031-01-01": 1206.37683500808, - "2030-01-01": 1182.98535035823, - "2029-01-01": 1159.90575217038, - "2028-01-01": 1137.13804044453, - "2027-01-01": 1114.05844225668, - "2026-01-01": 1087.26739517106, - "2025-01-01": 1070.89699459156, - "2024-01-01": 1047.65625506501, - "2023-01-01": 991, - "2015-01-01": 991 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1431.0021227792, - "2034-01-01": 1403.2920649391, - "2033-01-01": 1375.92410657852, - "2032-01-01": 1349.24034717694, - "2031-01-01": 1323.24078673439, - "2030-01-01": 1297.58332577134, - "2029-01-01": 1272.26796428779, - "2028-01-01": 1247.29470228376, - "2027-01-01": 1221.97934080021, - "2026-01-01": 1192.59299551053, - "2025-01-01": 1174.63676399699, - "2024-01-01": 1149.1446511157, - "2023-01-01": 1087, - "2015-01-01": 1087 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1540.26907419656, - "2034-01-01": 1510.44316097401, - "2033-01-01": 1480.98546890236, - "2032-01-01": 1452.2642191325, - "2031-01-01": 1424.27941166443, - "2030-01-01": 1396.66282534725, - "2029-01-01": 1369.41446018097, - "2028-01-01": 1342.53431616559, - "2027-01-01": 1315.28595099931, - "2026-01-01": 1283.65575413737, - "2025-01-01": 1264.32843962878, - "2024-01-01": 1236.88982686787, - "2023-01-01": 1170, - "2015-01-01": 1170 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1637.68780196626, - "2034-01-01": 1605.97546346297, - "2033-01-01": 1574.65463531157, - "2032-01-01": 1544.11682786395, - "2031-01-01": 1514.36204112013, - "2030-01-01": 1484.99876472819, - "2029-01-01": 1456.02699868815, - "2028-01-01": 1427.44674299999, - "2027-01-01": 1398.47497695995, - "2026-01-01": 1364.84423773239, - "2025-01-01": 1344.2945118788, - "2024-01-01": 1315.12046549028, - "2023-01-01": 1244, - "2015-01-01": 1244 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1725.89124467666, - "2034-01-01": 1692.47092652729, - "2033-01-01": 1659.46320489828, - "2032-01-01": 1627.28067631, - "2031-01-01": 1595.92334076245, - "2030-01-01": 1564.97860173526, - "2029-01-01": 1534.44645922842, - "2028-01-01": 1504.32691324196, - "2027-01-01": 1473.79477073513, - "2026-01-01": 1438.35272963598, - "2025-01-01": 1416.69622594302, - "2024-01-01": 1385.95090856733, - "2023-01-01": 1311, - "2015-01-01": 1311 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1807.51234091614, - "2034-01-01": 1772.51150428831, - "2033-01-01": 1737.94277675465, - "2032-01-01": 1704.23826740933, - "2031-01-01": 1671.39797625236, - "2030-01-01": 1638.98979418955, - "2029-01-01": 1607.01372122092, - "2028-01-01": 1575.46975734646, - "2027-01-01": 1543.49368437782, - "2026-01-01": 1506.37551318856, - "2025-01-01": 1483.69482701736, - "2024-01-01": 1451.49549768341, - "2023-01-01": 1373, - "2015-01-01": 1373 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1882.55109068469, - "2034-01-01": 1846.09719674602, - "2033-01-01": 1810.09335088066, - "2032-01-01": 1774.98960116194, - "2031-01-01": 1740.78594758986, - "2030-01-01": 1707.03234209109, - "2029-01-01": 1673.72878466563, - "2028-01-01": 1640.8752753135, - "2027-01-01": 1607.57171788805, - "2026-01-01": 1568.91258839012, - "2025-01-01": 1545.29031510184, - "2024-01-01": 1511.75423283851, - "2023-01-01": 1430, - "2015-01-01": 1430 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1981.28628774857, - "2034-01-01": 1942.92047629563, - "2033-01-01": 1905.02831683594, - "2032-01-01": 1868.08346136274, - "2031-01-01": 1832.08590987604, - "2030-01-01": 1796.56201038258, - "2029-01-01": 1761.51176288236, - "2028-01-01": 1726.9351673754, - "2027-01-01": 1691.88491987518, - "2026-01-01": 1651.19821365534, - "2025-01-01": 1626.33700994984, - "2024-01-01": 1591.04204225311, - "2023-01-01": 1505, - "2015-01-01": 1505 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2107.66733999034, - "2034-01-01": 2066.85427411914, - "2033-01-01": 2026.5450732587, - "2032-01-01": 1987.24360241977, - "2031-01-01": 1948.94986160235, - "2030-01-01": 1911.15998579569, - "2029-01-01": 1873.87397499978, - "2028-01-01": 1837.09182921462, - "2027-01-01": 1799.80581841872, - "2026-01-01": 1756.52381399482, - "2025-01-01": 1730.07677935528, - "2024-01-01": 1692.53043830381, - "2023-01-01": 1601, - "2015-01-01": 1601 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2223.51663787863, - "2034-01-01": 2180.46025545736, - "2033-01-01": 2137.93543331289, - "2032-01-01": 2096.47373172204, - "2031-01-01": 2056.0751506848, - "2030-01-01": 2016.20812992437, - "2029-01-01": 1976.87266944074, - "2028-01-01": 1938.06876923392, - "2027-01-01": 1898.73330875029, - "2026-01-01": 1853.07228097267, - "2025-01-01": 1825.17156797693, - "2024-01-01": 1785.56146801695, - "2023-01-01": 1689, - "2015-01-01": 1689 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2330.15065070762, - "2034-01-01": 2285.02939737094, - "2033-01-01": 2240.4651965446, - "2032-01-01": 2197.01510073891, - "2031-01-01": 2154.67910995388, - "2030-01-01": 2112.90017167918, - "2029-01-01": 2071.67828591481, - "2028-01-01": 2031.01345266076, - "2027-01-01": 1989.79156689639, - "2026-01-01": 1941.9407562591, - "2025-01-01": 1912.70199841277, - "2024-01-01": 1871.19230218473, - "2023-01-01": 1770, - "2015-01-01": 1770 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2428.8858477715, - "2034-01-01": 2381.85267692056, - "2033-01-01": 2335.40016249987, - "2032-01-01": 2290.10896093971, - "2031-01-01": 2245.97907224006, - "2030-01-01": 2202.42983997067, - "2029-01-01": 2159.46126413154, - "2028-01-01": 2117.07334472266, - "2027-01-01": 2074.10476888353, - "2026-01-01": 2024.22638152432, - "2025-01-01": 1993.74869326077, - "2024-01-01": 1950.48011159933, - "2023-01-01": 1845, - "2015-01-01": 1845 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2530.25398342375, - "2034-01-01": 2481.2579105915, - "2033-01-01": 2432.86672754729, - "2032-01-01": 2385.6853240792, - "2031-01-01": 2339.7137001872, - "2030-01-01": 2294.34696608327, - "2029-01-01": 2249.58512176738, - "2028-01-01": 2205.42816723954, - "2027-01-01": 2160.66632292365, - "2026-01-01": 2108.70629012994, - "2025-01-01": 2076.95663330471, - "2024-01-01": 2031.88226259833, - "2023-01-01": 1922, - "2015-01-01": 1922 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2636.88799625275, - "2034-01-01": 2585.82705250508, - "2033-01-01": 2535.396490779, - "2032-01-01": 2486.22669309606, - "2031-01-01": 2438.31765945628, - "2030-01-01": 2391.03900783807, - "2029-01-01": 2344.39073824144, - "2028-01-01": 2298.37285066639, - "2027-01-01": 2251.72458106976, - "2026-01-01": 2197.57476541638, - "2025-01-01": 2164.48706374055, - "2024-01-01": 2117.51309676611, - "2023-01-01": 2003, - "2015-01-01": 2003 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2736.93966261081, - "2034-01-01": 2683.94130911536, - "2033-01-01": 2631.59725628035, - "2032-01-01": 2580.56180476621, - "2031-01-01": 2530.83495457294, - "2030-01-01": 2481.76240504012, - "2029-01-01": 2433.34415616773, - "2028-01-01": 2385.58020795578, - "2027-01-01": 2337.16195908339, - "2026-01-01": 2280.95753235179, - "2025-01-01": 2246.61438118652, - "2024-01-01": 2197.85807697291, - "2023-01-01": 2079, - "2015-01-01": 2079 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2833.04192108633, - "2034-01-01": 2778.18263454365, - "2033-01-01": 2724.00062314349, - "2032-01-01": 2671.17316202832, - "2031-01-01": 2619.70025119816, - "2030-01-01": 2568.9046155105, - "2029-01-01": 2518.78625496535, - "2028-01-01": 2469.34516956269, - "2027-01-01": 2419.22680901754, - "2026-01-01": 2361.04887427661, - "2025-01-01": 2325.49983083857, - "2024-01-01": 2275.03154480312, - "2023-01-01": 2152, - "2015-01-01": 2152 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3378.06020887895, - "2034-01-01": 3312.64713765754, - "2033-01-01": 3248.04163521663, - "2032-01-01": 3185.05127033674, - "2031-01-01": 3123.67604301788, - "2030-01-01": 3063.10838447953, - "2029-01-01": 3003.34829472169, - "2028-01-01": 2944.39577374436, - "2027-01-01": 2884.63568398652, - "2026-01-01": 2815.2655257406, - "2025-01-01": 2772.87758639953, - "2024-01-01": 2712.70025277176, - "2023-01-01": 2566, - "2015-01-01": 2566 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 434.434867081081, - "2034-01-01": 426.022430018311, - "2033-01-01": 417.71385020323, - "2032-01-01": 409.612984883525, - "2031-01-01": 401.719834059198, - "2030-01-01": 393.930540482559, - "2029-01-01": 386.245104153608, - "2028-01-01": 378.663525072346, - "2027-01-01": 370.978088743395, - "2026-01-01": 362.056751166952, - "2025-01-01": 356.605457331194, - "2024-01-01": 348.866361424271, - "2023-01-01": 330, - "2015-01-01": 330 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 613.474691090254, - "2034-01-01": 601.595310268282, - "2033-01-01": 589.862588468803, - "2032-01-01": 578.423184714311, - "2031-01-01": 567.277099004806, - "2030-01-01": 556.277672317795, - "2029-01-01": 545.424904653277, - "2028-01-01": 534.718796011252, - "2027-01-01": 523.866028346734, - "2026-01-01": 511.268018314544, - "2025-01-01": 503.570130655565, - "2024-01-01": 492.641589162758, - "2023-01-01": 466, - "2015-01-01": 466 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 702.994603094841, - "2034-01-01": 689.381750393267, - "2033-01-01": 675.93695760159, - "2032-01-01": 662.828284629704, - "2031-01-01": 650.055731477611, - "2030-01-01": 637.451238235413, - "2029-01-01": 625.014804903111, - "2028-01-01": 612.746431480705, - "2027-01-01": 600.309998148404, - "2026-01-01": 585.87365188834, - "2025-01-01": 577.05246731775, - "2024-01-01": 564.529203032002, - "2023-01-01": 534, - "2015-01-01": 534 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 778.033352863391, - "2034-01-01": 762.967442850976, - "2033-01-01": 748.087531727602, - "2032-01-01": 733.579618382313, - "2031-01-01": 719.443702815108, - "2030-01-01": 705.493786136946, - "2029-01-01": 691.729868347825, - "2028-01-01": 678.151949447747, - "2027-01-01": 664.388031658626, - "2026-01-01": 648.410727089904, - "2025-01-01": 638.647955402229, - "2024-01-01": 624.787938187103, - "2023-01-01": 591, - "2015-01-01": 591 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 845.173286866831, - "2034-01-01": 828.807272944715, - "2033-01-01": 812.643308577192, - "2032-01-01": 796.883443318858, - "2031-01-01": 781.527677169712, - "2030-01-01": 766.373960575159, - "2029-01-01": 751.422293535201, - "2028-01-01": 736.672676049837, - "2027-01-01": 721.721009009879, - "2026-01-01": 704.364952270251, - "2025-01-01": 693.759707898868, - "2024-01-01": 678.703648589036, - "2023-01-01": 642, - "2015-01-01": 642 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 904.41440510516, - "2034-01-01": 886.901240674484, - "2033-01-01": 869.60428815036, - "2032-01-01": 852.739759439338, - "2031-01-01": 836.30765454142, - "2030-01-01": 820.091761550054, - "2029-01-01": 804.092080465238, - "2028-01-01": 788.308611286975, - "2027-01-01": 772.30893020216, - "2026-01-01": 753.736327429381, - "2025-01-01": 742.387724807668, - "2024-01-01": 726.2763342378, - "2023-01-01": 687, - "2015-01-01": 687 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 958.389646166749, - "2034-01-01": 939.831300161608, - "2033-01-01": 921.502069539246, - "2032-01-01": 903.631069682443, - "2031-01-01": 886.218300591199, - "2030-01-01": 869.034646882735, - "2029-01-01": 852.08010855705, - "2028-01-01": 835.354685614145, - "2027-01-01": 818.40014728846, - "2026-01-01": 798.719135907699, - "2025-01-01": 786.693251324573, - "2024-01-01": 769.620336717786, - "2023-01-01": 728, - "2015-01-01": 728 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1008.41547934578, - "2034-01-01": 988.888428466747, - "2033-01-01": 969.602452289921, - "2032-01-01": 950.798625517516, - "2031-01-01": 932.476948149531, - "2030-01-01": 914.396345483757, - "2029-01-01": 896.556817520193, - "2028-01-01": 878.958364258839, - "2027-01-01": 861.118836295276, - "2026-01-01": 840.410519375409, - "2025-01-01": 827.756910047559, - "2024-01-01": 809.792826821187, - "2023-01-01": 766, - "2015-01-01": 766 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1054.49190464226, - "2034-01-01": 1034.0726255899, - "2033-01-01": 1013.90543640238, - "2032-01-01": 994.242426944556, - "2031-01-01": 975.083597216416, - "2030-01-01": 956.176857353119, - "2029-01-01": 937.522207354666, - "2028-01-01": 919.119647221058, - "2027-01-01": 900.464997222605, - "2026-01-01": 878.81047783251, - "2025-01-01": 865.578700976625, - "2024-01-01": 846.793804548003, - "2023-01-01": 801, - "2015-01-01": 801 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1116.36596146896, - "2034-01-01": 1094.74854744099, - "2033-01-01": 1073.39801506769, - "2032-01-01": 1052.58124600372, - "2031-01-01": 1032.29824024909, - "2030-01-01": 1012.28211614912, - "2029-01-01": 992.532873703817, - "2028-01-01": 973.05051291318, - "2027-01-01": 953.301270467877, - "2026-01-01": 930.376136332045, - "2025-01-01": 916.367963081371, - "2024-01-01": 896.480831781157, - "2023-01-01": 848, - "2015-01-01": 848 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1195.35411912007, - "2034-01-01": 1172.20717108069, - "2033-01-01": 1149.34598783192, - "2032-01-01": 1127.05633416437, - "2031-01-01": 1105.33821007803, - "2030-01-01": 1083.90585078231, - "2029-01-01": 1062.7592562772, - "2028-01-01": 1041.8984265627, - "2027-01-01": 1020.75183205759, - "2026-01-01": 996.204636544218, - "2025-01-01": 981.20531895977, - "2024-01-01": 959.911079312842, - "2023-01-01": 908, - "2015-01-01": 908 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1269.07639959443, - "2034-01-01": 1244.50188647773, - "2033-01-01": 1220.23076241186, - "2032-01-01": 1196.56641644763, - "2031-01-01": 1173.50884858505, - "2030-01-01": 1150.75466977329, - "2029-01-01": 1128.30388001236, - "2028-01-01": 1106.15647930225, - "2027-01-01": 1083.70568954131, - "2026-01-01": 1057.64457007558, - "2025-01-01": 1041.72018444628, - "2024-01-01": 1019.11264367575, - "2023-01-01": 964, - "2015-01-01": 964 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1334.89986430369, - "2034-01-01": 1309.05073951081, - "2033-01-01": 1283.52073971538, - "2032-01-01": 1258.62898991483, - "2031-01-01": 1234.37549010917, - "2030-01-01": 1210.44111530095, - "2029-01-01": 1186.82586549018, - "2028-01-01": 1163.52974067684, - "2027-01-01": 1139.91449086607, - "2026-01-01": 1112.50165358572, - "2025-01-01": 1095.75131434494, - "2024-01-01": 1071.97118328549, - "2023-01-01": 1014, - "2015-01-01": 1014 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1398.09039042457, - "2034-01-01": 1371.01763842257, - "2033-01-01": 1344.27911792676, - "2032-01-01": 1318.20906044334, - "2031-01-01": 1292.80746597233, - "2030-01-01": 1267.74010300751, - "2029-01-01": 1243.00697154888, - "2028-01-01": 1218.60807159646, - "2027-01-01": 1193.87494013784, - "2026-01-01": 1165.16445375546, - "2025-01-01": 1147.62119904766, - "2024-01-01": 1122.71538131084, - "2023-01-01": 1062, - "2015-01-01": 1062 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1462.59738583964, - "2034-01-01": 1434.27551439498, - "2033-01-01": 1406.30329568421, - "2032-01-01": 1379.0303824412, - "2031-01-01": 1352.45677466597, - "2030-01-01": 1326.23281962461, - "2029-01-01": 1300.35851731715, - "2028-01-01": 1274.83386774356, - "2027-01-01": 1248.9595654361, - "2026-01-01": 1218.9243955954, - "2025-01-01": 1200.57170634835, - "2024-01-01": 1174.51675012838, - "2023-01-01": 1111, - "2015-01-01": 1111 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1531.05378913727, - "2034-01-01": 1501.40632154938, - "2033-01-01": 1472.12487207987, - "2032-01-01": 1443.57545884709, - "2031-01-01": 1415.75808185105, - "2030-01-01": 1388.30672297338, - "2029-01-01": 1361.22138221408, - "2028-01-01": 1334.50205957315, - "2027-01-01": 1307.41671881385, - "2026-01-01": 1275.97576244595, - "2025-01-01": 1256.76408144297, - "2024-01-01": 1229.48963132251, - "2023-01-01": 1163, - "2015-01-01": 1163 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1595.56078455234, - "2034-01-01": 1564.6641975218, - "2033-01-01": 1534.14904983732, - "2032-01-01": 1504.39678084495, - "2031-01-01": 1475.40739054469, - "2030-01-01": 1446.79943959049, - "2029-01-01": 1418.57292798234, - "2028-01-01": 1390.72785572025, - "2027-01-01": 1362.50134411211, - "2026-01-01": 1329.73570428589, - "2025-01-01": 1309.71458874366, - "2024-01-01": 1281.29100014005, - "2023-01-01": 1212, - "2015-01-01": 1212 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1657.43484137903, - "2034-01-01": 1625.34011937289, - "2033-01-01": 1593.64162850262, - "2032-01-01": 1562.73559990412, - "2031-01-01": 1532.62203357736, - "2030-01-01": 1502.90469838649, - "2029-01-01": 1473.58359433149, - "2028-01-01": 1444.65872141237, - "2027-01-01": 1415.33761735738, - "2026-01-01": 1381.30136278543, - "2025-01-01": 1360.5038508484, - "2024-01-01": 1330.9780273732, - "2023-01-01": 1259, - "2015-01-01": 1259 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2012.88155080901, - "2034-01-01": 1973.90392575151, - "2033-01-01": 1935.40750594163, - "2032-01-01": 1897.873496627, - "2031-01-01": 1861.30189780762, - "2030-01-01": 1825.21150423585, - "2029-01-01": 1789.60231591172, - "2028-01-01": 1754.4743328352, - "2027-01-01": 1718.86514451107, - "2026-01-01": 1677.52961374021, - "2025-01-01": 1652.2719523012, - "2024-01-01": 1616.41414126579, - "2023-01-01": 1529, - "2015-01-01": 1529 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 463.397191553154, - "2034-01-01": 454.423925352865, - "2033-01-01": 445.561440216778, - "2032-01-01": 436.920517209093, - "2031-01-01": 428.501156329811, - "2030-01-01": 420.192576514729, - "2029-01-01": 411.994777763848, - "2028-01-01": 403.907760077169, - "2027-01-01": 395.709961326288, - "2026-01-01": 386.193867911415, - "2025-01-01": 380.379154486607, - "2024-01-01": 372.124118852556, - "2023-01-01": 352, - "2015-01-01": 352 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 655.601708504177, - "2034-01-01": 642.906576209452, - "2033-01-01": 630.368173943056, - "2032-01-01": 618.14323173332, - "2031-01-01": 606.231749580244, - "2030-01-01": 594.476997455497, - "2029-01-01": 582.878975359081, - "2028-01-01": 571.437683290995, - "2027-01-01": 559.839661194579, - "2026-01-01": 546.376551761036, - "2025-01-01": 538.150053790711, - "2024-01-01": 526.471054512991, - "2023-01-01": 498, - "2015-01-01": 498 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 753.020436273875, - "2034-01-01": 738.438878698406, - "2033-01-01": 724.037340352265, - "2032-01-01": 709.995840464777, - "2031-01-01": 696.314379035942, - "2030-01-01": 682.812936836435, - "2029-01-01": 669.491513866254, - "2028-01-01": 656.3501101254, - "2027-01-01": 643.028687155219, - "2026-01-01": 627.565035356049, - "2025-01-01": 618.116126040736, - "2024-01-01": 604.701693135403, - "2023-01-01": 572, - "2015-01-01": 572 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 834.64153251335, - "2034-01-01": 818.479456459422, - "2033-01-01": 802.516912208629, - "2032-01-01": 786.953431564106, - "2031-01-01": 771.789014525852, - "2030-01-01": 756.824129290734, - "2029-01-01": 742.05877585875, - "2028-01-01": 727.492954229901, - "2027-01-01": 712.727600797917, - "2026-01-01": 695.587818908628, - "2025-01-01": 685.114727115082, - "2024-01-01": 670.246282251478, - "2023-01-01": 634, - "2015-01-01": 634 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 905.730874399346, - "2034-01-01": 888.192217735146, - "2033-01-01": 870.87008769643, - "2032-01-01": 853.981010908682, - "2031-01-01": 837.524987371903, - "2030-01-01": 821.285490460607, - "2029-01-01": 805.262520174795, - "2028-01-01": 789.456076514467, - "2027-01-01": 773.433106228655, - "2026-01-01": 754.833469099584, - "2025-01-01": 743.468347405641, - "2024-01-01": 727.333505029995, - "2023-01-01": 688, - "2015-01-01": 688 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 970.237869814415, - "2034-01-01": 951.450093707562, - "2033-01-01": 932.894265453879, - "2032-01-01": 914.802332906539, - "2031-01-01": 897.174296065541, - "2030-01-01": 879.778207077714, - "2029-01-01": 862.614065943058, - "2028-01-01": 845.681872661573, - "2027-01-01": 828.517731526917, - "2026-01-01": 808.593410939525, - "2025-01-01": 796.418854706333, - "2024-01-01": 779.134873847538, - "2023-01-01": 737, - "2015-01-01": 737 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1028.16251875856, - "2034-01-01": 1008.25308437667, - "2033-01-01": 988.589445480977, - "2032-01-01": 969.417397557676, - "2031-01-01": 950.736940606768, - "2030-01-01": 932.302279142055, - "2029-01-01": 914.113413163539, - "2028-01-01": 896.170342671219, - "2027-01-01": 877.981476692703, - "2026-01-01": 856.867644428452, - "2025-01-01": 843.966249017159, - "2024-01-01": 825.650388704108, - "2023-01-01": 781, - "2015-01-01": 781 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1082.13775982015, - "2034-01-01": 1061.18314386379, - "2033-01-01": 1040.48722686986, - "2032-01-01": 1020.30870780078, - "2031-01-01": 1000.64758665655, - "2030-01-01": 981.245164474737, - "2029-01-01": 962.10144125535, - "2028-01-01": 943.216416998389, - "2027-01-01": 924.072693779003, - "2026-01-01": 901.85045290677, - "2025-01-01": 888.271775534065, - "2024-01-01": 868.994391184093, - "2023-01-01": 822, - "2015-01-01": 822 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1132.16359299918, - "2034-01-01": 1110.24027216893, - "2033-01-01": 1088.58760962054, - "2032-01-01": 1067.47626363585, - "2031-01-01": 1046.90623421488, - "2030-01-01": 1026.60686307576, - "2029-01-01": 1006.57815021849, - "2028-01-01": 986.820095643083, - "2027-01-01": 966.791382785818, - "2026-01-01": 943.54183637448, - "2025-01-01": 929.335434257051, - "2024-01-01": 909.166881287494, - "2023-01-01": 860, - "2015-01-01": 860 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1199.30352700262, - "2034-01-01": 1176.08010226267, - "2033-01-01": 1153.14338647013, - "2032-01-01": 1130.7800885724, - "2031-01-01": 1108.99020856948, - "2030-01-01": 1087.48703751397, - "2029-01-01": 1066.27057540587, - "2028-01-01": 1045.34082224517, - "2027-01-01": 1024.12436013707, - "2026-01-01": 999.496061554827, - "2025-01-01": 984.44718675369, - "2024-01-01": 963.082591689427, - "2023-01-01": 911, - "2015-01-01": 911 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1283.55756183047, - "2034-01-01": 1258.70263414501, - "2033-01-01": 1234.15455741863, - "2032-01-01": 1210.22018261041, - "2031-01-01": 1186.89950972036, - "2030-01-01": 1163.88568778938, - "2029-01-01": 1141.17871681748, - "2028-01-01": 1118.77859680466, - "2027-01-01": 1096.07162583276, - "2026-01-01": 1069.71312844781, - "2025-01-01": 1053.60703302398, - "2024-01-01": 1030.74152238989, - "2023-01-01": 975, - "2015-01-01": 975 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1362.54571948157, - "2034-01-01": 1336.1612577847, - "2033-01-01": 1310.10253018286, - "2032-01-01": 1284.69527077106, - "2031-01-01": 1259.9394795493, - "2030-01-01": 1235.50942242257, - "2029-01-01": 1211.40509939086, - "2028-01-01": 1187.62651045418, - "2027-01-01": 1163.52218742247, - "2026-01-01": 1135.54162865998, - "2025-01-01": 1118.44438890238, - "2024-01-01": 1094.17176992158, - "2023-01-01": 1035, - "2015-01-01": 1035 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1434.95153066175, - "2034-01-01": 1407.16499612109, - "2033-01-01": 1379.72150521673, - "2032-01-01": 1352.96410158498, - "2031-01-01": 1326.89278522583, - "2030-01-01": 1301.164512503, - "2029-01-01": 1275.77928341646, - "2028-01-01": 1250.73709796623, - "2027-01-01": 1225.3518688797, - "2026-01-01": 1195.88442052114, - "2025-01-01": 1177.87863179091, - "2024-01-01": 1152.31616349229, - "2023-01-01": 1090, - "2015-01-01": 1090 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1502.09146466519, - "2034-01-01": 1473.00482621483, - "2033-01-01": 1444.27728206632, - "2032-01-01": 1416.26792652152, - "2031-01-01": 1388.97675958044, - "2030-01-01": 1362.04468694121, - "2029-01-01": 1335.47170860384, - "2028-01-01": 1309.25782456832, - "2027-01-01": 1282.68484623095, - "2026-01-01": 1251.83864570149, - "2025-01-01": 1232.99038428755, - "2024-01-01": 1206.23187389422, - "2023-01-01": 1141, - "2015-01-01": 1141 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1571.864337257, - "2034-01-01": 1541.42661042989, - "2033-01-01": 1511.36465800805, - "2032-01-01": 1482.05425439675, - "2031-01-01": 1453.49539959601, - "2030-01-01": 1425.31231920053, - "2029-01-01": 1397.50501321033, - "2028-01-01": 1370.0734816254, - "2027-01-01": 1342.26617563519, - "2026-01-01": 1309.98715422224, - "2025-01-01": 1290.26338198014, - "2024-01-01": 1262.26192588054, - "2023-01-01": 1194, - "2015-01-01": 1194 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1646.90308702555, - "2034-01-01": 1615.0123028876, - "2033-01-01": 1583.51523213406, - "2032-01-01": 1552.80558814936, - "2031-01-01": 1522.8833709335, - "2030-01-01": 1493.35486710206, - "2029-01-01": 1464.22007665504, - "2028-01-01": 1435.47899959244, - "2027-01-01": 1406.34420914542, - "2026-01-01": 1372.52422942381, - "2025-01-01": 1351.85887006462, - "2024-01-01": 1322.52066103565, - "2023-01-01": 1251, - "2015-01-01": 1251 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1716.67595961736, - "2034-01-01": 1683.43408710266, - "2033-01-01": 1650.60260807579, - "2032-01-01": 1618.5919160246, - "2031-01-01": 1587.40201094907, - "2030-01-01": 1556.62249936138, - "2029-01-01": 1526.25338126153, - "2028-01-01": 1496.29465664951, - "2027-01-01": 1465.92553854966, - "2026-01-01": 1430.67273794456, - "2025-01-01": 1409.1318677572, - "2024-01-01": 1378.55071302197, - "2023-01-01": 1304, - "2015-01-01": 1304 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1782.49942432662, - "2034-01-01": 1747.98294013574, - "2033-01-01": 1713.89258537931, - "2032-01-01": 1680.6544894918, - "2031-01-01": 1648.26865247319, - "2030-01-01": 1616.30894488904, - "2029-01-01": 1584.77536673935, - "2028-01-01": 1553.66791802411, - "2027-01-01": 1522.13433987442, - "2026-01-01": 1485.5298214547, - "2025-01-01": 1463.16299765587, - "2024-01-01": 1431.40925263171, - "2023-01-01": 1354, - "2015-01-01": 1354 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2166.90845822867, - "2034-01-01": 2124.94824184891, - "2033-01-01": 2083.50605283187, - "2032-01-01": 2043.09991854025, - "2031-01-01": 2003.72983897406, - "2030-01-01": 1964.87778677058, - "2029-01-01": 1926.54376192981, - "2028-01-01": 1888.72776445176, - "2027-01-01": 1850.393739611, - "2026-01-01": 1805.89518915395, - "2025-01-01": 1778.70479626408, - "2024-01-01": 1740.10312395258, - "2023-01-01": 1646, - "2015-01-01": 1646 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 483.14423096593, - "2034-01-01": 473.788581262789, - "2033-01-01": 464.548433407834, - "2032-01-01": 455.539289249254, - "2031-01-01": 446.761148787047, - "2030-01-01": 438.098510173027, - "2029-01-01": 429.551373407194, - "2028-01-01": 421.119738489548, - "2027-01-01": 412.572601723716, - "2026-01-01": 402.650992964458, - "2025-01-01": 396.588493456207, - "2024-01-01": 387.981680735477, - "2023-01-01": 367, - "2015-01-01": 367 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 683.247563682064, - "2034-01-01": 670.017094483344, - "2033-01-01": 656.949964410534, - "2032-01-01": 644.209512589544, - "2031-01-01": 631.795739020374, - "2030-01-01": 619.545304577115, - "2029-01-01": 607.458209259765, - "2028-01-01": 595.534453068326, - "2027-01-01": 583.447357750977, - "2026-01-01": 569.416526835297, - "2025-01-01": 560.843128348151, - "2024-01-01": 548.671641149081, - "2023-01-01": 519, - "2015-01-01": 519 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 784.615699334317, - "2034-01-01": 769.422328154283, - "2033-01-01": 754.416529457954, - "2032-01-01": 739.785875729033, - "2031-01-01": 725.53036696752, - "2030-01-01": 711.462430689712, - "2029-01-01": 697.582066895607, - "2028-01-01": 683.889275585207, - "2027-01-01": 670.008911791102, - "2026-01-01": 653.896435440919, - "2025-01-01": 644.051068392096, - "2024-01-01": 630.073792148077, - "2023-01-01": 596, - "2015-01-01": 596 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 868.869734162163, - "2034-01-01": 852.044860036623, - "2033-01-01": 835.427700406459, - "2032-01-01": 819.22596976705, - "2031-01-01": 803.439668118395, - "2030-01-01": 787.861080965117, - "2029-01-01": 772.490208307216, - "2028-01-01": 757.327050144692, - "2027-01-01": 741.956177486791, - "2026-01-01": 724.113502333903, - "2025-01-01": 713.210914662388, - "2024-01-01": 697.732722848542, - "2023-01-01": 660, - "2015-01-01": 660 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 943.908483930713, - "2034-01-01": 925.630552494331, - "2033-01-01": 907.578274532472, - "2032-01-01": 889.977303519659, - "2031-01-01": 872.827639455893, - "2030-01-01": 855.90362886665, - "2029-01-01": 839.20527175193, - "2028-01-01": 822.732568111733, - "2027-01-01": 806.034210997014, - "2026-01-01": 786.650577535468, - "2025-01-01": 774.806402746867, - "2024-01-01": 757.991458003643, - "2023-01-01": 717, - "2015-01-01": 717 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1011.04841793415, - "2034-01-01": 991.47038258807, - "2033-01-01": 972.134051382061, - "2032-01-01": 953.281128456204, - "2031-01-01": 934.911613810496, - "2030-01-01": 916.783803304864, - "2029-01-01": 898.897696939306, - "2028-01-01": 881.253294713823, - "2027-01-01": 863.367188348266, - "2026-01-01": 842.604802715815, - "2025-01-01": 829.918155243506, - "2024-01-01": 811.907168405576, - "2023-01-01": 768, - "2015-01-01": 768 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1071.60600546667, - "2034-01-01": 1050.8553273785, - "2033-01-01": 1030.3608305013, - "2032-01-01": 1010.37869604603, - "2031-01-01": 990.908924012687, - "2030-01-01": 971.695333190311, - "2029-01-01": 952.737923578899, - "2028-01-01": 934.036695178453, - "2027-01-01": 915.079285567042, - "2026-01-01": 893.073319545147, - "2025-01-01": 879.626794750279, - "2024-01-01": 860.537024846535, - "2023-01-01": 814, - "2015-01-01": 814 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1128.21418511663, - "2034-01-01": 1106.36734098695, - "2033-01-01": 1084.79021098233, - "2032-01-01": 1063.75250922782, - "2031-01-01": 1043.25423572343, - "2030-01-01": 1023.0256763441, - "2029-01-01": 1003.06683108982, - "2028-01-01": 983.377699960607, - "2027-01-01": 963.418854706333, - "2026-01-01": 940.250411363871, - "2025-01-01": 926.093566463131, - "2024-01-01": 905.99536891091, - "2023-01-01": 857, - "2015-01-01": 857 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1180.87295688403, - "2034-01-01": 1158.00642341341, - "2033-01-01": 1135.42219282514, - "2032-01-01": 1113.40256800158, - "2031-01-01": 1091.94754894273, - "2030-01-01": 1070.77483276623, - "2029-01-01": 1049.88441947208, - "2028-01-01": 1029.27630906029, - "2027-01-01": 1008.38589576614, - "2026-01-01": 984.136078171987, - "2025-01-01": 969.318470382064, - "2024-01-01": 948.2822005987, - "2023-01-01": 897, - "2015-01-01": 897 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1250.64582947584, - "2034-01-01": 1226.42820762847, - "2033-01-01": 1202.50956876687, - "2032-01-01": 1179.18889587681, - "2031-01-01": 1156.4661889583, - "2030-01-01": 1134.04246502555, - "2029-01-01": 1111.91772407857, - "2028-01-01": 1090.09196611736, - "2027-01-01": 1067.96722517038, - "2026-01-01": 1042.28458669274, - "2025-01-01": 1026.59146807465, - "2024-01-01": 1004.31225258502, - "2023-01-01": 950, - "2015-01-01": 950 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1340.16574148043, - "2034-01-01": 1314.21464775346, - "2033-01-01": 1288.58393789966, - "2032-01-01": 1263.59399579221, - "2031-01-01": 1239.2448214311, - "2030-01-01": 1215.21603094317, - "2029-01-01": 1191.5076243284, - "2028-01-01": 1168.11960158681, - "2027-01-01": 1144.41119497205, - "2026-01-01": 1116.89022026654, - "2025-01-01": 1100.07380473683, - "2024-01-01": 1076.19986645427, - "2023-01-01": 1018, - "2015-01-01": 1018 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1421.7868377199, - "2034-01-01": 1394.25522551447, - "2033-01-01": 1367.06350975602, - "2032-01-01": 1340.55158689154, - "2031-01-01": 1314.71945692101, - "2030-01-01": 1289.22722339746, - "2029-01-01": 1264.0748863209, - "2028-01-01": 1239.26244569131, - "2027-01-01": 1214.11010861475, - "2026-01-01": 1184.91300381911, - "2025-01-01": 1167.07240581118, - "2024-01-01": 1141.74445557034, - "2023-01-01": 1080, - "2015-01-01": 1080 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1496.82558748845, - "2034-01-01": 1467.84091797218, - "2033-01-01": 1439.21408388204, - "2032-01-01": 1411.30292064415, - "2031-01-01": 1384.10742825851, - "2030-01-01": 1357.269771299, - "2029-01-01": 1330.78994976561, - "2028-01-01": 1304.66796365836, - "2027-01-01": 1278.18814212497, - "2026-01-01": 1247.45007902068, - "2025-01-01": 1228.66789389566, - "2024-01-01": 1202.00319072544, - "2023-01-01": 1137, - "2015-01-01": 1137 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1567.91492937445, - "2034-01-01": 1537.55367924791, - "2033-01-01": 1507.56725936984, - "2032-01-01": 1478.33049998872, - "2031-01-01": 1449.84340110456, - "2030-01-01": 1421.73113246887, - "2029-01-01": 1393.99369408166, - "2028-01-01": 1366.63108594292, - "2027-01-01": 1338.89364755571, - "2026-01-01": 1306.69572921163, - "2025-01-01": 1287.02151418622, - "2024-01-01": 1259.09041350396, - "2023-01-01": 1191, - "2015-01-01": 1191 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1641.63720984881, - "2034-01-01": 1609.84839464495, - "2033-01-01": 1578.45203394978, - "2032-01-01": 1547.84058227199, - "2031-01-01": 1518.01403961157, - "2030-01-01": 1488.57995145985, - "2029-01-01": 1459.53831781682, - "2028-01-01": 1430.88913868247, - "2027-01-01": 1401.84750503944, - "2026-01-01": 1368.135662743, - "2025-01-01": 1347.53637967272, - "2024-01-01": 1318.29197786687, - "2023-01-01": 1247, - "2015-01-01": 1247 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1719.30889820573, - "2034-01-01": 1686.01604122398, - "2033-01-01": 1653.13420716793, - "2032-01-01": 1621.07441896328, - "2031-01-01": 1589.83667661004, - "2030-01-01": 1559.00995718249, - "2029-01-01": 1528.59426068064, - "2028-01-01": 1498.5895871045, - "2027-01-01": 1468.17389060265, - "2026-01-01": 1432.86702128497, - "2025-01-01": 1411.29311295315, - "2024-01-01": 1380.66505460636, - "2023-01-01": 1306, - "2015-01-01": 1306 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1791.71470938591, - "2034-01-01": 1757.01977956037, - "2033-01-01": 1722.7531822018, - "2032-01-01": 1689.3432497772, - "2031-01-01": 1656.78998228657, - "2030-01-01": 1624.66504726292, - "2029-01-01": 1592.96844470624, - "2028-01-01": 1561.70017461655, - "2027-01-01": 1530.00357205988, - "2026-01-01": 1493.20981314612, - "2025-01-01": 1470.72735584168, - "2024-01-01": 1438.80944817707, - "2023-01-01": 1361, - "2015-01-01": 1361 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1861.48758197772, - "2034-01-01": 1825.44156377543, - "2033-01-01": 1789.84055814354, - "2032-01-01": 1755.12957765244, - "2031-01-01": 1721.30862230214, - "2030-01-01": 1687.93267952224, - "2029-01-01": 1655.00174931273, - "2028-01-01": 1622.51583167363, - "2027-01-01": 1589.58490146412, - "2026-01-01": 1551.35832166688, - "2025-01-01": 1528.00035353427, - "2024-01-01": 1494.83950016339, - "2023-01-01": 1414, - "2015-01-01": 1414 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VT.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2264.32718599836, - "2034-01-01": 2220.48054433786, - "2033-01-01": 2177.17521924108, - "2032-01-01": 2134.95252727171, - "2031-01-01": 2093.81246842976, - "2030-01-01": 2053.21372615152, - "2029-01-01": 2013.15630043699, - "2028-01-01": 1973.64019128617, - "2027-01-01": 1933.58276557164, - "2026-01-01": 1887.08367274896, - "2025-01-01": 1858.6708685141, - "2024-01-01": 1818.33376257499, - "2023-01-01": 1720, - "2015-01-01": 1720 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA", - "description": null, - "label": "VA", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 434.434867081081, - "2034-01-01": 426.022430018311, - "2033-01-01": 417.71385020323, - "2032-01-01": 409.612984883525, - "2031-01-01": 401.719834059198, - "2030-01-01": 393.930540482559, - "2029-01-01": 386.245104153608, - "2028-01-01": 378.663525072346, - "2027-01-01": 370.978088743395, - "2026-01-01": 362.056751166952, - "2025-01-01": 356.605457331194, - "2024-01-01": 348.866361424271, - "2023-01-01": 330, - "2015-01-01": 330 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 613.474691090254, - "2034-01-01": 601.595310268282, - "2033-01-01": 589.862588468803, - "2032-01-01": 578.423184714311, - "2031-01-01": 567.277099004806, - "2030-01-01": 556.277672317795, - "2029-01-01": 545.424904653277, - "2028-01-01": 534.718796011252, - "2027-01-01": 523.866028346734, - "2026-01-01": 511.268018314544, - "2025-01-01": 503.570130655565, - "2024-01-01": 492.641589162758, - "2023-01-01": 466, - "2015-01-01": 466 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 702.994603094841, - "2034-01-01": 689.381750393267, - "2033-01-01": 675.93695760159, - "2032-01-01": 662.828284629704, - "2031-01-01": 650.055731477611, - "2030-01-01": 637.451238235413, - "2029-01-01": 625.014804903111, - "2028-01-01": 612.746431480705, - "2027-01-01": 600.309998148404, - "2026-01-01": 585.87365188834, - "2025-01-01": 577.05246731775, - "2024-01-01": 564.529203032002, - "2023-01-01": 534, - "2015-01-01": 534 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 778.033352863391, - "2034-01-01": 762.967442850976, - "2033-01-01": 748.087531727602, - "2032-01-01": 733.579618382313, - "2031-01-01": 719.443702815108, - "2030-01-01": 705.493786136946, - "2029-01-01": 691.729868347825, - "2028-01-01": 678.151949447747, - "2027-01-01": 664.388031658626, - "2026-01-01": 648.410727089904, - "2025-01-01": 638.647955402229, - "2024-01-01": 624.787938187103, - "2023-01-01": 591, - "2015-01-01": 591 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 845.173286866831, - "2034-01-01": 828.807272944715, - "2033-01-01": 812.643308577192, - "2032-01-01": 796.883443318858, - "2031-01-01": 781.527677169712, - "2030-01-01": 766.373960575159, - "2029-01-01": 751.422293535201, - "2028-01-01": 736.672676049837, - "2027-01-01": 721.721009009879, - "2026-01-01": 704.364952270251, - "2025-01-01": 693.759707898868, - "2024-01-01": 678.703648589036, - "2023-01-01": 642, - "2015-01-01": 642 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 904.41440510516, - "2034-01-01": 886.901240674484, - "2033-01-01": 869.60428815036, - "2032-01-01": 852.739759439338, - "2031-01-01": 836.30765454142, - "2030-01-01": 820.091761550054, - "2029-01-01": 804.092080465238, - "2028-01-01": 788.308611286975, - "2027-01-01": 772.30893020216, - "2026-01-01": 753.736327429381, - "2025-01-01": 742.387724807668, - "2024-01-01": 726.2763342378, - "2023-01-01": 687, - "2015-01-01": 687 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 958.389646166749, - "2034-01-01": 939.831300161608, - "2033-01-01": 921.502069539246, - "2032-01-01": 903.631069682443, - "2031-01-01": 886.218300591199, - "2030-01-01": 869.034646882735, - "2029-01-01": 852.08010855705, - "2028-01-01": 835.354685614145, - "2027-01-01": 818.40014728846, - "2026-01-01": 798.719135907699, - "2025-01-01": 786.693251324573, - "2024-01-01": 769.620336717786, - "2023-01-01": 728, - "2015-01-01": 728 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1008.41547934578, - "2034-01-01": 988.888428466747, - "2033-01-01": 969.602452289921, - "2032-01-01": 950.798625517516, - "2031-01-01": 932.476948149531, - "2030-01-01": 914.396345483757, - "2029-01-01": 896.556817520193, - "2028-01-01": 878.958364258839, - "2027-01-01": 861.118836295276, - "2026-01-01": 840.410519375409, - "2025-01-01": 827.756910047559, - "2024-01-01": 809.792826821187, - "2023-01-01": 766, - "2015-01-01": 766 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1054.49190464226, - "2034-01-01": 1034.0726255899, - "2033-01-01": 1013.90543640238, - "2032-01-01": 994.242426944556, - "2031-01-01": 975.083597216416, - "2030-01-01": 956.176857353119, - "2029-01-01": 937.522207354666, - "2028-01-01": 919.119647221058, - "2027-01-01": 900.464997222605, - "2026-01-01": 878.81047783251, - "2025-01-01": 865.578700976625, - "2024-01-01": 846.793804548003, - "2023-01-01": 801, - "2015-01-01": 801 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1116.36596146896, - "2034-01-01": 1094.74854744099, - "2033-01-01": 1073.39801506769, - "2032-01-01": 1052.58124600372, - "2031-01-01": 1032.29824024909, - "2030-01-01": 1012.28211614912, - "2029-01-01": 992.532873703817, - "2028-01-01": 973.05051291318, - "2027-01-01": 953.301270467877, - "2026-01-01": 930.376136332045, - "2025-01-01": 916.367963081371, - "2024-01-01": 896.480831781157, - "2023-01-01": 848, - "2015-01-01": 848 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1195.35411912007, - "2034-01-01": 1172.20717108069, - "2033-01-01": 1149.34598783192, - "2032-01-01": 1127.05633416437, - "2031-01-01": 1105.33821007803, - "2030-01-01": 1083.90585078231, - "2029-01-01": 1062.7592562772, - "2028-01-01": 1041.8984265627, - "2027-01-01": 1020.75183205759, - "2026-01-01": 996.204636544218, - "2025-01-01": 981.20531895977, - "2024-01-01": 959.911079312842, - "2023-01-01": 908, - "2015-01-01": 908 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1269.07639959443, - "2034-01-01": 1244.50188647773, - "2033-01-01": 1220.23076241186, - "2032-01-01": 1196.56641644763, - "2031-01-01": 1173.50884858505, - "2030-01-01": 1150.75466977329, - "2029-01-01": 1128.30388001236, - "2028-01-01": 1106.15647930225, - "2027-01-01": 1083.70568954131, - "2026-01-01": 1057.64457007558, - "2025-01-01": 1041.72018444628, - "2024-01-01": 1019.11264367575, - "2023-01-01": 964, - "2015-01-01": 964 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1334.89986430369, - "2034-01-01": 1309.05073951081, - "2033-01-01": 1283.52073971538, - "2032-01-01": 1258.62898991483, - "2031-01-01": 1234.37549010917, - "2030-01-01": 1210.44111530095, - "2029-01-01": 1186.82586549018, - "2028-01-01": 1163.52974067684, - "2027-01-01": 1139.91449086607, - "2026-01-01": 1112.50165358572, - "2025-01-01": 1095.75131434494, - "2024-01-01": 1071.97118328549, - "2023-01-01": 1014, - "2015-01-01": 1014 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1398.09039042457, - "2034-01-01": 1371.01763842257, - "2033-01-01": 1344.27911792676, - "2032-01-01": 1318.20906044334, - "2031-01-01": 1292.80746597233, - "2030-01-01": 1267.74010300751, - "2029-01-01": 1243.00697154888, - "2028-01-01": 1218.60807159646, - "2027-01-01": 1193.87494013784, - "2026-01-01": 1165.16445375546, - "2025-01-01": 1147.62119904766, - "2024-01-01": 1122.71538131084, - "2023-01-01": 1062, - "2015-01-01": 1062 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1462.59738583964, - "2034-01-01": 1434.27551439498, - "2033-01-01": 1406.30329568421, - "2032-01-01": 1379.0303824412, - "2031-01-01": 1352.45677466597, - "2030-01-01": 1326.23281962461, - "2029-01-01": 1300.35851731715, - "2028-01-01": 1274.83386774356, - "2027-01-01": 1248.9595654361, - "2026-01-01": 1218.9243955954, - "2025-01-01": 1200.57170634835, - "2024-01-01": 1174.51675012838, - "2023-01-01": 1111, - "2015-01-01": 1111 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1531.05378913727, - "2034-01-01": 1501.40632154938, - "2033-01-01": 1472.12487207987, - "2032-01-01": 1443.57545884709, - "2031-01-01": 1415.75808185105, - "2030-01-01": 1388.30672297338, - "2029-01-01": 1361.22138221408, - "2028-01-01": 1334.50205957315, - "2027-01-01": 1307.41671881385, - "2026-01-01": 1275.97576244595, - "2025-01-01": 1256.76408144297, - "2024-01-01": 1229.48963132251, - "2023-01-01": 1163, - "2015-01-01": 1163 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1595.56078455234, - "2034-01-01": 1564.6641975218, - "2033-01-01": 1534.14904983732, - "2032-01-01": 1504.39678084495, - "2031-01-01": 1475.40739054469, - "2030-01-01": 1446.79943959049, - "2029-01-01": 1418.57292798234, - "2028-01-01": 1390.72785572025, - "2027-01-01": 1362.50134411211, - "2026-01-01": 1329.73570428589, - "2025-01-01": 1309.71458874366, - "2024-01-01": 1281.29100014005, - "2023-01-01": 1212, - "2015-01-01": 1212 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1657.43484137903, - "2034-01-01": 1625.34011937289, - "2033-01-01": 1593.64162850262, - "2032-01-01": 1562.73559990412, - "2031-01-01": 1532.62203357736, - "2030-01-01": 1502.90469838649, - "2029-01-01": 1473.58359433149, - "2028-01-01": 1444.65872141237, - "2027-01-01": 1415.33761735738, - "2026-01-01": 1381.30136278543, - "2025-01-01": 1360.5038508484, - "2024-01-01": 1330.9780273732, - "2023-01-01": 1259, - "2015-01-01": 1259 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2012.88155080901, - "2034-01-01": 1973.90392575151, - "2033-01-01": 1935.40750594163, - "2032-01-01": 1897.873496627, - "2031-01-01": 1861.30189780762, - "2030-01-01": 1825.21150423585, - "2029-01-01": 1789.60231591172, - "2028-01-01": 1754.4743328352, - "2027-01-01": 1718.86514451107, - "2026-01-01": 1677.52961374021, - "2025-01-01": 1652.2719523012, - "2024-01-01": 1616.41414126579, - "2023-01-01": 1529, - "2015-01-01": 1529 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 463.397191553154, - "2034-01-01": 454.423925352865, - "2033-01-01": 445.561440216778, - "2032-01-01": 436.920517209093, - "2031-01-01": 428.501156329811, - "2030-01-01": 420.192576514729, - "2029-01-01": 411.994777763848, - "2028-01-01": 403.907760077169, - "2027-01-01": 395.709961326288, - "2026-01-01": 386.193867911415, - "2025-01-01": 380.379154486607, - "2024-01-01": 372.124118852556, - "2023-01-01": 352, - "2015-01-01": 352 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 655.601708504177, - "2034-01-01": 642.906576209452, - "2033-01-01": 630.368173943056, - "2032-01-01": 618.14323173332, - "2031-01-01": 606.231749580244, - "2030-01-01": 594.476997455497, - "2029-01-01": 582.878975359081, - "2028-01-01": 571.437683290995, - "2027-01-01": 559.839661194579, - "2026-01-01": 546.376551761036, - "2025-01-01": 538.150053790711, - "2024-01-01": 526.471054512991, - "2023-01-01": 498, - "2015-01-01": 498 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 753.020436273875, - "2034-01-01": 738.438878698406, - "2033-01-01": 724.037340352265, - "2032-01-01": 709.995840464777, - "2031-01-01": 696.314379035942, - "2030-01-01": 682.812936836435, - "2029-01-01": 669.491513866254, - "2028-01-01": 656.3501101254, - "2027-01-01": 643.028687155219, - "2026-01-01": 627.565035356049, - "2025-01-01": 618.116126040736, - "2024-01-01": 604.701693135403, - "2023-01-01": 572, - "2015-01-01": 572 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 834.64153251335, - "2034-01-01": 818.479456459422, - "2033-01-01": 802.516912208629, - "2032-01-01": 786.953431564106, - "2031-01-01": 771.789014525852, - "2030-01-01": 756.824129290734, - "2029-01-01": 742.05877585875, - "2028-01-01": 727.492954229901, - "2027-01-01": 712.727600797917, - "2026-01-01": 695.587818908628, - "2025-01-01": 685.114727115082, - "2024-01-01": 670.246282251478, - "2023-01-01": 634, - "2015-01-01": 634 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 905.730874399346, - "2034-01-01": 888.192217735146, - "2033-01-01": 870.87008769643, - "2032-01-01": 853.981010908682, - "2031-01-01": 837.524987371903, - "2030-01-01": 821.285490460607, - "2029-01-01": 805.262520174795, - "2028-01-01": 789.456076514467, - "2027-01-01": 773.433106228655, - "2026-01-01": 754.833469099584, - "2025-01-01": 743.468347405641, - "2024-01-01": 727.333505029995, - "2023-01-01": 688, - "2015-01-01": 688 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 970.237869814415, - "2034-01-01": 951.450093707562, - "2033-01-01": 932.894265453879, - "2032-01-01": 914.802332906539, - "2031-01-01": 897.174296065541, - "2030-01-01": 879.778207077714, - "2029-01-01": 862.614065943058, - "2028-01-01": 845.681872661573, - "2027-01-01": 828.517731526917, - "2026-01-01": 808.593410939525, - "2025-01-01": 796.418854706333, - "2024-01-01": 779.134873847538, - "2023-01-01": 737, - "2015-01-01": 737 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1028.16251875856, - "2034-01-01": 1008.25308437667, - "2033-01-01": 988.589445480977, - "2032-01-01": 969.417397557676, - "2031-01-01": 950.736940606768, - "2030-01-01": 932.302279142055, - "2029-01-01": 914.113413163539, - "2028-01-01": 896.170342671219, - "2027-01-01": 877.981476692703, - "2026-01-01": 856.867644428452, - "2025-01-01": 843.966249017159, - "2024-01-01": 825.650388704108, - "2023-01-01": 781, - "2015-01-01": 781 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1082.13775982015, - "2034-01-01": 1061.18314386379, - "2033-01-01": 1040.48722686986, - "2032-01-01": 1020.30870780078, - "2031-01-01": 1000.64758665655, - "2030-01-01": 981.245164474737, - "2029-01-01": 962.10144125535, - "2028-01-01": 943.216416998389, - "2027-01-01": 924.072693779003, - "2026-01-01": 901.85045290677, - "2025-01-01": 888.271775534065, - "2024-01-01": 868.994391184093, - "2023-01-01": 822, - "2015-01-01": 822 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1132.16359299918, - "2034-01-01": 1110.24027216893, - "2033-01-01": 1088.58760962054, - "2032-01-01": 1067.47626363585, - "2031-01-01": 1046.90623421488, - "2030-01-01": 1026.60686307576, - "2029-01-01": 1006.57815021849, - "2028-01-01": 986.820095643083, - "2027-01-01": 966.791382785818, - "2026-01-01": 943.54183637448, - "2025-01-01": 929.335434257051, - "2024-01-01": 909.166881287494, - "2023-01-01": 860, - "2015-01-01": 860 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1199.30352700262, - "2034-01-01": 1176.08010226267, - "2033-01-01": 1153.14338647013, - "2032-01-01": 1130.7800885724, - "2031-01-01": 1108.99020856948, - "2030-01-01": 1087.48703751397, - "2029-01-01": 1066.27057540587, - "2028-01-01": 1045.34082224517, - "2027-01-01": 1024.12436013707, - "2026-01-01": 999.496061554827, - "2025-01-01": 984.44718675369, - "2024-01-01": 963.082591689427, - "2023-01-01": 911, - "2015-01-01": 911 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1283.55756183047, - "2034-01-01": 1258.70263414501, - "2033-01-01": 1234.15455741863, - "2032-01-01": 1210.22018261041, - "2031-01-01": 1186.89950972036, - "2030-01-01": 1163.88568778938, - "2029-01-01": 1141.17871681748, - "2028-01-01": 1118.77859680466, - "2027-01-01": 1096.07162583276, - "2026-01-01": 1069.71312844781, - "2025-01-01": 1053.60703302398, - "2024-01-01": 1030.74152238989, - "2023-01-01": 975, - "2015-01-01": 975 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1362.54571948157, - "2034-01-01": 1336.1612577847, - "2033-01-01": 1310.10253018286, - "2032-01-01": 1284.69527077106, - "2031-01-01": 1259.9394795493, - "2030-01-01": 1235.50942242257, - "2029-01-01": 1211.40509939086, - "2028-01-01": 1187.62651045418, - "2027-01-01": 1163.52218742247, - "2026-01-01": 1135.54162865998, - "2025-01-01": 1118.44438890238, - "2024-01-01": 1094.17176992158, - "2023-01-01": 1035, - "2015-01-01": 1035 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1434.95153066175, - "2034-01-01": 1407.16499612109, - "2033-01-01": 1379.72150521673, - "2032-01-01": 1352.96410158498, - "2031-01-01": 1326.89278522583, - "2030-01-01": 1301.164512503, - "2029-01-01": 1275.77928341646, - "2028-01-01": 1250.73709796623, - "2027-01-01": 1225.3518688797, - "2026-01-01": 1195.88442052114, - "2025-01-01": 1177.87863179091, - "2024-01-01": 1152.31616349229, - "2023-01-01": 1090, - "2015-01-01": 1090 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1502.09146466519, - "2034-01-01": 1473.00482621483, - "2033-01-01": 1444.27728206632, - "2032-01-01": 1416.26792652152, - "2031-01-01": 1388.97675958044, - "2030-01-01": 1362.04468694121, - "2029-01-01": 1335.47170860384, - "2028-01-01": 1309.25782456832, - "2027-01-01": 1282.68484623095, - "2026-01-01": 1251.83864570149, - "2025-01-01": 1232.99038428755, - "2024-01-01": 1206.23187389422, - "2023-01-01": 1141, - "2015-01-01": 1141 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1571.864337257, - "2034-01-01": 1541.42661042989, - "2033-01-01": 1511.36465800805, - "2032-01-01": 1482.05425439675, - "2031-01-01": 1453.49539959601, - "2030-01-01": 1425.31231920053, - "2029-01-01": 1397.50501321033, - "2028-01-01": 1370.0734816254, - "2027-01-01": 1342.26617563519, - "2026-01-01": 1309.98715422224, - "2025-01-01": 1290.26338198014, - "2024-01-01": 1262.26192588054, - "2023-01-01": 1194, - "2015-01-01": 1194 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1646.90308702555, - "2034-01-01": 1615.0123028876, - "2033-01-01": 1583.51523213406, - "2032-01-01": 1552.80558814936, - "2031-01-01": 1522.8833709335, - "2030-01-01": 1493.35486710206, - "2029-01-01": 1464.22007665504, - "2028-01-01": 1435.47899959244, - "2027-01-01": 1406.34420914542, - "2026-01-01": 1372.52422942381, - "2025-01-01": 1351.85887006462, - "2024-01-01": 1322.52066103565, - "2023-01-01": 1251, - "2015-01-01": 1251 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1716.67595961736, - "2034-01-01": 1683.43408710266, - "2033-01-01": 1650.60260807579, - "2032-01-01": 1618.5919160246, - "2031-01-01": 1587.40201094907, - "2030-01-01": 1556.62249936138, - "2029-01-01": 1526.25338126153, - "2028-01-01": 1496.29465664951, - "2027-01-01": 1465.92553854966, - "2026-01-01": 1430.67273794456, - "2025-01-01": 1409.1318677572, - "2024-01-01": 1378.55071302197, - "2023-01-01": 1304, - "2015-01-01": 1304 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1782.49942432662, - "2034-01-01": 1747.98294013574, - "2033-01-01": 1713.89258537931, - "2032-01-01": 1680.6544894918, - "2031-01-01": 1648.26865247319, - "2030-01-01": 1616.30894488904, - "2029-01-01": 1584.77536673935, - "2028-01-01": 1553.66791802411, - "2027-01-01": 1522.13433987442, - "2026-01-01": 1485.5298214547, - "2025-01-01": 1463.16299765587, - "2024-01-01": 1431.40925263171, - "2023-01-01": 1354, - "2015-01-01": 1354 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2166.90845822867, - "2034-01-01": 2124.94824184891, - "2033-01-01": 2083.50605283187, - "2032-01-01": 2043.09991854025, - "2031-01-01": 2003.72983897406, - "2030-01-01": 1964.87778677058, - "2029-01-01": 1926.54376192981, - "2028-01-01": 1888.72776445176, - "2027-01-01": 1850.393739611, - "2026-01-01": 1805.89518915395, - "2025-01-01": 1778.70479626408, - "2024-01-01": 1740.10312395258, - "2023-01-01": 1646, - "2015-01-01": 1646 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 483.14423096593, - "2034-01-01": 473.788581262789, - "2033-01-01": 464.548433407834, - "2032-01-01": 455.539289249254, - "2031-01-01": 446.761148787047, - "2030-01-01": 438.098510173027, - "2029-01-01": 429.551373407194, - "2028-01-01": 421.119738489548, - "2027-01-01": 412.572601723716, - "2026-01-01": 402.650992964458, - "2025-01-01": 396.588493456207, - "2024-01-01": 387.981680735477, - "2023-01-01": 367, - "2015-01-01": 367 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 683.247563682064, - "2034-01-01": 670.017094483344, - "2033-01-01": 656.949964410534, - "2032-01-01": 644.209512589544, - "2031-01-01": 631.795739020374, - "2030-01-01": 619.545304577115, - "2029-01-01": 607.458209259765, - "2028-01-01": 595.534453068326, - "2027-01-01": 583.447357750977, - "2026-01-01": 569.416526835297, - "2025-01-01": 560.843128348151, - "2024-01-01": 548.671641149081, - "2023-01-01": 519, - "2015-01-01": 519 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 784.615699334317, - "2034-01-01": 769.422328154283, - "2033-01-01": 754.416529457954, - "2032-01-01": 739.785875729033, - "2031-01-01": 725.53036696752, - "2030-01-01": 711.462430689712, - "2029-01-01": 697.582066895607, - "2028-01-01": 683.889275585207, - "2027-01-01": 670.008911791102, - "2026-01-01": 653.896435440919, - "2025-01-01": 644.051068392096, - "2024-01-01": 630.073792148077, - "2023-01-01": 596, - "2015-01-01": 596 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 868.869734162163, - "2034-01-01": 852.044860036623, - "2033-01-01": 835.427700406459, - "2032-01-01": 819.22596976705, - "2031-01-01": 803.439668118395, - "2030-01-01": 787.861080965117, - "2029-01-01": 772.490208307216, - "2028-01-01": 757.327050144692, - "2027-01-01": 741.956177486791, - "2026-01-01": 724.113502333903, - "2025-01-01": 713.210914662388, - "2024-01-01": 697.732722848542, - "2023-01-01": 660, - "2015-01-01": 660 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 943.908483930713, - "2034-01-01": 925.630552494331, - "2033-01-01": 907.578274532472, - "2032-01-01": 889.977303519659, - "2031-01-01": 872.827639455893, - "2030-01-01": 855.90362886665, - "2029-01-01": 839.20527175193, - "2028-01-01": 822.732568111733, - "2027-01-01": 806.034210997014, - "2026-01-01": 786.650577535468, - "2025-01-01": 774.806402746867, - "2024-01-01": 757.991458003643, - "2023-01-01": 717, - "2015-01-01": 717 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1011.04841793415, - "2034-01-01": 991.47038258807, - "2033-01-01": 972.134051382061, - "2032-01-01": 953.281128456204, - "2031-01-01": 934.911613810496, - "2030-01-01": 916.783803304864, - "2029-01-01": 898.897696939306, - "2028-01-01": 881.253294713823, - "2027-01-01": 863.367188348266, - "2026-01-01": 842.604802715815, - "2025-01-01": 829.918155243506, - "2024-01-01": 811.907168405576, - "2023-01-01": 768, - "2015-01-01": 768 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1071.60600546667, - "2034-01-01": 1050.8553273785, - "2033-01-01": 1030.3608305013, - "2032-01-01": 1010.37869604603, - "2031-01-01": 990.908924012687, - "2030-01-01": 971.695333190311, - "2029-01-01": 952.737923578899, - "2028-01-01": 934.036695178453, - "2027-01-01": 915.079285567042, - "2026-01-01": 893.073319545147, - "2025-01-01": 879.626794750279, - "2024-01-01": 860.537024846535, - "2023-01-01": 814, - "2015-01-01": 814 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1128.21418511663, - "2034-01-01": 1106.36734098695, - "2033-01-01": 1084.79021098233, - "2032-01-01": 1063.75250922782, - "2031-01-01": 1043.25423572343, - "2030-01-01": 1023.0256763441, - "2029-01-01": 1003.06683108982, - "2028-01-01": 983.377699960607, - "2027-01-01": 963.418854706333, - "2026-01-01": 940.250411363871, - "2025-01-01": 926.093566463131, - "2024-01-01": 905.99536891091, - "2023-01-01": 857, - "2015-01-01": 857 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1180.87295688403, - "2034-01-01": 1158.00642341341, - "2033-01-01": 1135.42219282514, - "2032-01-01": 1113.40256800158, - "2031-01-01": 1091.94754894273, - "2030-01-01": 1070.77483276623, - "2029-01-01": 1049.88441947208, - "2028-01-01": 1029.27630906029, - "2027-01-01": 1008.38589576614, - "2026-01-01": 984.136078171987, - "2025-01-01": 969.318470382064, - "2024-01-01": 948.2822005987, - "2023-01-01": 897, - "2015-01-01": 897 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1250.64582947584, - "2034-01-01": 1226.42820762847, - "2033-01-01": 1202.50956876687, - "2032-01-01": 1179.18889587681, - "2031-01-01": 1156.4661889583, - "2030-01-01": 1134.04246502555, - "2029-01-01": 1111.91772407857, - "2028-01-01": 1090.09196611736, - "2027-01-01": 1067.96722517038, - "2026-01-01": 1042.28458669274, - "2025-01-01": 1026.59146807465, - "2024-01-01": 1004.31225258502, - "2023-01-01": 950, - "2015-01-01": 950 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1340.16574148043, - "2034-01-01": 1314.21464775346, - "2033-01-01": 1288.58393789966, - "2032-01-01": 1263.59399579221, - "2031-01-01": 1239.2448214311, - "2030-01-01": 1215.21603094317, - "2029-01-01": 1191.5076243284, - "2028-01-01": 1168.11960158681, - "2027-01-01": 1144.41119497205, - "2026-01-01": 1116.89022026654, - "2025-01-01": 1100.07380473683, - "2024-01-01": 1076.19986645427, - "2023-01-01": 1018, - "2015-01-01": 1018 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1421.7868377199, - "2034-01-01": 1394.25522551447, - "2033-01-01": 1367.06350975602, - "2032-01-01": 1340.55158689154, - "2031-01-01": 1314.71945692101, - "2030-01-01": 1289.22722339746, - "2029-01-01": 1264.0748863209, - "2028-01-01": 1239.26244569131, - "2027-01-01": 1214.11010861475, - "2026-01-01": 1184.91300381911, - "2025-01-01": 1167.07240581118, - "2024-01-01": 1141.74445557034, - "2023-01-01": 1080, - "2015-01-01": 1080 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1496.82558748845, - "2034-01-01": 1467.84091797218, - "2033-01-01": 1439.21408388204, - "2032-01-01": 1411.30292064415, - "2031-01-01": 1384.10742825851, - "2030-01-01": 1357.269771299, - "2029-01-01": 1330.78994976561, - "2028-01-01": 1304.66796365836, - "2027-01-01": 1278.18814212497, - "2026-01-01": 1247.45007902068, - "2025-01-01": 1228.66789389566, - "2024-01-01": 1202.00319072544, - "2023-01-01": 1137, - "2015-01-01": 1137 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1567.91492937445, - "2034-01-01": 1537.55367924791, - "2033-01-01": 1507.56725936984, - "2032-01-01": 1478.33049998872, - "2031-01-01": 1449.84340110456, - "2030-01-01": 1421.73113246887, - "2029-01-01": 1393.99369408166, - "2028-01-01": 1366.63108594292, - "2027-01-01": 1338.89364755571, - "2026-01-01": 1306.69572921163, - "2025-01-01": 1287.02151418622, - "2024-01-01": 1259.09041350396, - "2023-01-01": 1191, - "2015-01-01": 1191 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1641.63720984881, - "2034-01-01": 1609.84839464495, - "2033-01-01": 1578.45203394978, - "2032-01-01": 1547.84058227199, - "2031-01-01": 1518.01403961157, - "2030-01-01": 1488.57995145985, - "2029-01-01": 1459.53831781682, - "2028-01-01": 1430.88913868247, - "2027-01-01": 1401.84750503944, - "2026-01-01": 1368.135662743, - "2025-01-01": 1347.53637967272, - "2024-01-01": 1318.29197786687, - "2023-01-01": 1247, - "2015-01-01": 1247 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1719.30889820573, - "2034-01-01": 1686.01604122398, - "2033-01-01": 1653.13420716793, - "2032-01-01": 1621.07441896328, - "2031-01-01": 1589.83667661004, - "2030-01-01": 1559.00995718249, - "2029-01-01": 1528.59426068064, - "2028-01-01": 1498.5895871045, - "2027-01-01": 1468.17389060265, - "2026-01-01": 1432.86702128497, - "2025-01-01": 1411.29311295315, - "2024-01-01": 1380.66505460636, - "2023-01-01": 1306, - "2015-01-01": 1306 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1791.71470938591, - "2034-01-01": 1757.01977956037, - "2033-01-01": 1722.7531822018, - "2032-01-01": 1689.3432497772, - "2031-01-01": 1656.78998228657, - "2030-01-01": 1624.66504726292, - "2029-01-01": 1592.96844470624, - "2028-01-01": 1561.70017461655, - "2027-01-01": 1530.00357205988, - "2026-01-01": 1493.20981314612, - "2025-01-01": 1470.72735584168, - "2024-01-01": 1438.80944817707, - "2023-01-01": 1361, - "2015-01-01": 1361 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1861.48758197772, - "2034-01-01": 1825.44156377543, - "2033-01-01": 1789.84055814354, - "2032-01-01": 1755.12957765244, - "2031-01-01": 1721.30862230214, - "2030-01-01": 1687.93267952224, - "2029-01-01": 1655.00174931273, - "2028-01-01": 1622.51583167363, - "2027-01-01": 1589.58490146412, - "2026-01-01": 1551.35832166688, - "2025-01-01": 1528.00035353427, - "2024-01-01": 1494.83950016339, - "2023-01-01": 1414, - "2015-01-01": 1414 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2264.32718599836, - "2034-01-01": 2220.48054433786, - "2033-01-01": 2177.17521924108, - "2032-01-01": 2134.95252727171, - "2031-01-01": 2093.81246842976, - "2030-01-01": 2053.21372615152, - "2029-01-01": 2013.15630043699, - "2028-01-01": 1973.64019128617, - "2027-01-01": 1933.58276557164, - "2026-01-01": 1887.08367274896, - "2025-01-01": 1858.6708685141, - "2024-01-01": 1818.33376257499, - "2023-01-01": 1720, - "2015-01-01": 1720 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 496.308923907781, - "2034-01-01": 486.698351869404, - "2033-01-01": 477.206428868538, - "2032-01-01": 467.951803942694, - "2031-01-01": 458.934477091871, - "2030-01-01": 450.035799278559, - "2029-01-01": 441.255770502758, - "2028-01-01": 432.594390764468, - "2027-01-01": 423.814361988667, - "2026-01-01": 413.622409666487, - "2025-01-01": 407.39471943594, - "2024-01-01": 398.553388657425, - "2023-01-01": 377, - "2015-01-01": 377 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 702.994603094841, - "2034-01-01": 689.381750393267, - "2033-01-01": 675.93695760159, - "2032-01-01": 662.828284629704, - "2031-01-01": 650.055731477611, - "2030-01-01": 637.451238235413, - "2029-01-01": 625.014804903111, - "2028-01-01": 612.746431480705, - "2027-01-01": 600.309998148404, - "2026-01-01": 585.87365188834, - "2025-01-01": 577.05246731775, - "2024-01-01": 564.529203032002, - "2023-01-01": 534, - "2015-01-01": 534 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 806.995677335463, - "2034-01-01": 791.36893818553, - "2033-01-01": 775.935121741151, - "2032-01-01": 760.887150707881, - "2031-01-01": 746.225025085721, - "2030-01-01": 731.755822169116, - "2029-01-01": 717.479541958066, - "2028-01-01": 703.39618445257, - "2027-01-01": 689.119904241519, - "2026-01-01": 672.547843834368, - "2025-01-01": 662.421652557642, - "2024-01-01": 648.045695615388, - "2023-01-01": 613, - "2015-01-01": 613 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 895.199120045865, - "2034-01-01": 877.864401249854, - "2033-01-01": 860.743691327867, - "2032-01-01": 844.05099915393, - "2031-01-01": 827.786324728043, - "2030-01-01": 811.735659176181, - "2029-01-01": 795.899002498343, - "2028-01-01": 780.276354694531, - "2027-01-01": 764.439698016694, - "2026-01-01": 746.056335737961, - "2025-01-01": 734.823366621854, - "2024-01-01": 718.876138692437, - "2023-01-01": 680, - "2015-01-01": 680 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 972.870808402785, - "2034-01-01": 954.032047828885, - "2033-01-01": 935.42586454602, - "2032-01-01": 917.284835845227, - "2031-01-01": 899.608961726506, - "2030-01-01": 882.16566489882, - "2029-01-01": 864.95494536217, - "2028-01-01": 847.976803116556, - "2027-01-01": 830.766083579907, - "2026-01-01": 810.787694279931, - "2025-01-01": 798.58009990228, - "2024-01-01": 781.249215431928, - "2023-01-01": 739, - "2015-01-01": 739 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1041.32721170041, - "2034-01-01": 1021.16285498329, - "2033-01-01": 1001.24744094168, - "2032-01-01": 981.829912251116, - "2031-01-01": 962.910268911592, - "2030-01-01": 944.239568247587, - "2029-01-01": 925.817810259102, - "2028-01-01": 907.644994946138, - "2027-01-01": 889.223236957654, - "2026-01-01": 867.839061130481, - "2025-01-01": 854.772474996892, - "2024-01-01": 836.222096626056, - "2023-01-01": 791, - "2015-01-01": 791 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1104.5177378213, - "2034-01-01": 1083.12975389504, - "2033-01-01": 1062.00581915306, - "2032-01-01": 1041.40998277963, - "2031-01-01": 1021.34224477475, - "2030-01-01": 1001.53855595414, - "2029-01-01": 981.998916317809, - "2028-01-01": 962.723325865752, - "2027-01-01": 943.183686229421, - "2026-01-01": 920.501861300219, - "2025-01-01": 906.642359699611, - "2024-01-01": 886.966294651404, - "2023-01-01": 839, - "2015-01-01": 839 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1162.44238676544, - "2034-01-01": 1139.93274456415, - "2033-01-01": 1117.70099918016, - "2032-01-01": 1096.02504743077, - "2031-01-01": 1074.90488931597, - "2030-01-01": 1054.06262801848, - "2029-01-01": 1033.49826353829, - "2028-01-01": 1013.2117958754, - "2027-01-01": 992.647431395207, - "2026-01-01": 968.776094789146, - "2025-01-01": 954.189754010437, - "2024-01-01": 933.481809507974, - "2023-01-01": 883, - "2015-01-01": 883 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1216.41762782703, - "2034-01-01": 1192.86280405127, - "2033-01-01": 1169.59878056904, - "2032-01-01": 1146.91635767387, - "2031-01-01": 1124.81553536575, - "2030-01-01": 1103.00551335116, - "2029-01-01": 1081.4862916301, - "2028-01-01": 1060.25787020257, - "2027-01-01": 1038.73864848151, - "2026-01-01": 1013.75890326746, - "2025-01-01": 998.495280527343, - "2024-01-01": 976.825811987959, - "2023-01-01": 924, - "2015-01-01": 924 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1288.82343900721, - "2034-01-01": 1263.86654238766, - "2033-01-01": 1239.21775560291, - "2032-01-01": 1215.18518848779, - "2031-01-01": 1191.76884104229, - "2030-01-01": 1168.66060343159, - "2029-01-01": 1145.8604756557, - "2028-01-01": 1123.36845771463, - "2027-01-01": 1100.56832993874, - "2026-01-01": 1074.10169512862, - "2025-01-01": 1057.92952341588, - "2024-01-01": 1034.97020555867, - "2023-01-01": 979, - "2015-01-01": 979 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1380.97628960017, - "2034-01-01": 1354.23493663397, - "2033-01-01": 1327.82372382784, - "2032-01-01": 1302.07279134187, - "2031-01-01": 1276.98213917606, - "2030-01-01": 1252.22162717031, - "2029-01-01": 1227.79125532465, - "2028-01-01": 1203.69102363906, - "2027-01-01": 1179.2606517934, - "2026-01-01": 1150.90161204282, - "2025-01-01": 1133.57310527401, - "2024-01-01": 1108.9721610123, - "2023-01-01": 1049, - "2015-01-01": 1049 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1465.23032442801, - "2034-01-01": 1436.8574685163, - "2033-01-01": 1408.83489477635, - "2032-01-01": 1381.51288537989, - "2031-01-01": 1354.89144032693, - "2030-01-01": 1328.62027744572, - "2029-01-01": 1302.69939673626, - "2028-01-01": 1277.12879819855, - "2027-01-01": 1251.20791748909, - "2026-01-01": 1221.11867893581, - "2025-01-01": 1202.7329515443, - "2024-01-01": 1176.63109171277, - "2023-01-01": 1113, - "2015-01-01": 1113 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1544.21848207912, - "2034-01-01": 1514.316092156, - "2033-01-01": 1484.78286754057, - "2032-01-01": 1455.98797354053, - "2031-01-01": 1427.93141015587, - "2030-01-01": 1400.24401207891, - "2029-01-01": 1372.92577930964, - "2028-01-01": 1345.97671184807, - "2027-01-01": 1318.6584790788, - "2026-01-01": 1286.94717914798, - "2025-01-01": 1267.5703074227, - "2024-01-01": 1240.06133924445, - "2023-01-01": 1173, - "2015-01-01": 1173 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1616.6242932593, - "2034-01-01": 1585.31983049238, - "2033-01-01": 1554.40184257444, - "2032-01-01": 1524.25680435445, - "2031-01-01": 1494.88471583241, - "2030-01-01": 1465.89910215934, - "2029-01-01": 1437.29996333524, - "2028-01-01": 1409.08729936012, - "2027-01-01": 1380.48816053603, - "2026-01-01": 1347.28997100914, - "2025-01-01": 1327.00455031123, - "2024-01-01": 1298.20573281517, - "2023-01-01": 1228, - "2015-01-01": 1228 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1692.97951232203, - "2034-01-01": 1660.19650001075, - "2033-01-01": 1627.81821624652, - "2032-01-01": 1596.2493895764, - "2031-01-01": 1565.49002000039, - "2030-01-01": 1535.13537897143, - "2029-01-01": 1505.18546648951, - "2028-01-01": 1475.64028255466, - "2027-01-01": 1445.69037007275, - "2026-01-01": 1410.92418788091, - "2025-01-01": 1389.68066099368, - "2024-01-01": 1359.52163876246, - "2023-01-01": 1286, - "2015-01-01": 1286 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1773.28413926732, - "2034-01-01": 1738.94610071111, - "2033-01-01": 1705.03198855682, - "2032-01-01": 1671.96572920639, - "2031-01-01": 1639.74732265982, - "2030-01-01": 1607.95284251517, - "2029-01-01": 1576.58228877245, - "2028-01-01": 1545.63566143167, - "2027-01-01": 1514.26510768895, - "2026-01-01": 1477.84982976328, - "2025-01-01": 1455.59863947006, - "2024-01-01": 1424.00905708634, - "2023-01-01": 1347, - "2015-01-01": 1347 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1848.32288903587, - "2034-01-01": 1812.53179316882, - "2033-01-01": 1777.18256268283, - "2032-01-01": 1742.717062959, - "2031-01-01": 1709.13529399731, - "2030-01-01": 1675.9953904167, - "2029-01-01": 1643.29735221717, - "2028-01-01": 1611.04117939871, - "2027-01-01": 1578.34314119917, - "2026-01-01": 1540.38690496485, - "2025-01-01": 1517.19412755453, - "2024-01-01": 1484.26779224144, - "2023-01-01": 1404, - "2015-01-01": 1404 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1919.41223092187, - "2034-01-01": 1882.24455444454, - "2033-01-01": 1845.53573817063, - "2032-01-01": 1809.74464230357, - "2031-01-01": 1774.87126684336, - "2030-01-01": 1740.45675158658, - "2029-01-01": 1706.50109653321, - "2028-01-01": 1673.00430168327, - "2027-01-01": 1639.04864662991, - "2026-01-01": 1599.6325551558, - "2025-01-01": 1575.54774784509, - "2024-01-01": 1541.35501501996, - "2023-01-01": 1458, - "2015-01-01": 1458 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2335.41652788436, - "2034-01-01": 2290.19330561359, - "2033-01-01": 2245.52839472888, - "2032-01-01": 2201.98010661628, - "2031-01-01": 2159.54844127581, - "2030-01-01": 2117.67508732139, - "2029-01-01": 2076.36004475303, - "2028-01-01": 2035.60331357073, - "2027-01-01": 1994.28827100237, - "2026-01-01": 1946.32932293992, - "2025-01-01": 1917.02448880466, - "2024-01-01": 1875.4209853535, - "2023-01-01": 1774, - "2015-01-01": 1774 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 506.840678261262, - "2034-01-01": 497.026168354696, - "2033-01-01": 487.332825237101, - "2032-01-01": 477.881815697446, - "2031-01-01": 468.67313973573, - "2030-01-01": 459.585630562985, - "2029-01-01": 450.619288179209, - "2028-01-01": 441.774112584404, - "2027-01-01": 432.807770200628, - "2026-01-01": 422.39954302811, - "2025-01-01": 416.039700219726, - "2024-01-01": 407.010754994983, - "2023-01-01": 385, - "2015-01-01": 385 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 718.792234625062, - "2034-01-01": 704.873475121206, - "2033-01-01": 691.126552154434, - "2032-01-01": 677.723302261832, - "2031-01-01": 664.6637254434, - "2030-01-01": 651.775985162051, - "2029-01-01": 639.060081417788, - "2028-01-01": 626.516014210609, - "2027-01-01": 613.800110466345, - "2026-01-01": 599.039351930774, - "2025-01-01": 590.01993849343, - "2024-01-01": 577.215252538339, - "2023-01-01": 546, - "2015-01-01": 546 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 825.426247454055, - "2034-01-01": 809.442617034791, - "2033-01-01": 793.656315386136, - "2032-01-01": 778.264671278698, - "2031-01-01": 763.267684712475, - "2030-01-01": 748.468026916861, - "2029-01-01": 733.865697891855, - "2028-01-01": 719.460697637457, - "2027-01-01": 704.858368612451, - "2026-01-01": 687.907827217208, - "2025-01-01": 677.550368929269, - "2024-01-01": 662.846086706115, - "2023-01-01": 627, - "2015-01-01": 627 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 916.262628752826, - "2034-01-01": 898.520034220438, - "2033-01-01": 880.996484064993, - "2032-01-01": 863.911022663435, - "2031-01-01": 847.263650015762, - "2030-01-01": 830.835321745033, - "2029-01-01": 814.626037851246, - "2028-01-01": 798.635798334402, - "2027-01-01": 782.426514440616, - "2026-01-01": 763.610602461207, - "2025-01-01": 752.113328189427, - "2024-01-01": 735.790871367553, - "2023-01-01": 696, - "2015-01-01": 696 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 995.250786403932, - "2034-01-01": 975.978657860131, - "2033-01-01": 956.944456829217, - "2032-01-01": 938.386110824075, - "2031-01-01": 920.303619844707, - "2030-01-01": 902.459056378225, - "2029-01-01": 884.852420424629, - "2028-01-01": 867.48371198392, - "2027-01-01": 849.877076030324, - "2026-01-01": 829.43910267338, - "2025-01-01": 816.950684067826, - "2024-01-01": 799.221118899239, - "2023-01-01": 756, - "2015-01-01": 756 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1066.34012828993, - "2034-01-01": 1045.69141913585, - "2033-01-01": 1025.29763231702, - "2032-01-01": 1005.41369016865, - "2031-01-01": 986.039592690758, - "2030-01-01": 966.920417548098, - "2029-01-01": 948.056164740674, - "2028-01-01": 929.446834268485, - "2027-01-01": 910.582581461062, - "2026-01-01": 888.684752864336, - "2025-01-01": 875.304304358385, - "2024-01-01": 856.308341677756, - "2023-01-01": 810, - "2015-01-01": 810 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1130.847123705, - "2034-01-01": 1108.94929510827, - "2033-01-01": 1087.32181007447, - "2032-01-01": 1066.23501216651, - "2031-01-01": 1045.6889013844, - "2030-01-01": 1025.41313416521, - "2029-01-01": 1005.40771050894, - "2028-01-01": 985.672630415591, - "2027-01-01": 965.667206759323, - "2026-01-01": 942.444694704277, - "2025-01-01": 928.254811659078, - "2024-01-01": 908.109710495299, - "2023-01-01": 859, - "2015-01-01": 859 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1190.08824194333, - "2034-01-01": 1167.04326283804, - "2033-01-01": 1144.28278964764, - "2032-01-01": 1122.09132828699, - "2031-01-01": 1100.4688787561, - "2030-01-01": 1079.1309351401, - "2029-01-01": 1058.07749743897, - "2028-01-01": 1037.30856565273, - "2027-01-01": 1016.2551279516, - "2026-01-01": 991.816069863407, - "2025-01-01": 976.882828567877, - "2024-01-01": 955.682396144063, - "2023-01-01": 904, - "2015-01-01": 904 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1245.3799522991, - "2034-01-01": 1221.26429938583, - "2033-01-01": 1197.44637058259, - "2032-01-01": 1174.22388999944, - "2031-01-01": 1151.59685763637, - "2030-01-01": 1129.26754938333, - "2029-01-01": 1107.23596524034, - "2028-01-01": 1085.50210520739, - "2027-01-01": 1063.4705210644, - "2026-01-01": 1037.89602001193, - "2025-01-01": 1022.26897768276, - "2024-01-01": 1000.08356941624, - "2023-01-01": 946, - "2015-01-01": 946 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1319.10223277347, - "2034-01-01": 1293.55901478287, - "2033-01-01": 1268.33114516253, - "2032-01-01": 1243.7339722827, - "2031-01-01": 1219.76749614338, - "2030-01-01": 1196.11636837431, - "2029-01-01": 1172.7805889755, - "2028-01-01": 1149.76015794694, - "2027-01-01": 1126.42437854813, - "2026-01-01": 1099.33595354329, - "2025-01-01": 1082.78384316926, - "2024-01-01": 1059.28513377915, - "2023-01-01": 1002, - "2015-01-01": 1002 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1413.88802195479, - "2034-01-01": 1386.5093631505, - "2033-01-01": 1359.4687124796, - "2032-01-01": 1333.10407807547, - "2031-01-01": 1307.41545993812, - "2030-01-01": 1282.06484993415, - "2029-01-01": 1257.05224806356, - "2028-01-01": 1232.37765432636, - "2027-01-01": 1207.36505245578, - "2026-01-01": 1178.3301537979, - "2025-01-01": 1160.58867022334, - "2024-01-01": 1135.40143081717, - "2023-01-01": 1074, - "2015-01-01": 1074 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1500.77499537101, - "2034-01-01": 1471.71384915417, - "2033-01-01": 1443.01148252025, - "2032-01-01": 1415.02667505218, - "2031-01-01": 1387.75942674996, - "2030-01-01": 1360.85095803066, - "2029-01-01": 1334.30126889428, - "2028-01-01": 1308.11035934083, - "2027-01-01": 1281.56067020446, - "2026-01-01": 1250.74150403129, - "2025-01-01": 1231.90976168958, - "2024-01-01": 1205.17470310203, - "2023-01-01": 1140, - "2015-01-01": 1140 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1581.0796223163, - "2034-01-01": 1550.46344985452, - "2033-01-01": 1520.22525483054, - "2032-01-01": 1490.74301468216, - "2031-01-01": 1462.01672940938, - "2030-01-01": 1433.6684215744, - "2029-01-01": 1405.69809117722, - "2028-01-01": 1378.10573821784, - "2027-01-01": 1350.13540782066, - "2026-01-01": 1317.66714591366, - "2025-01-01": 1297.82774016595, - "2024-01-01": 1269.66212142591, - "2023-01-01": 1201, - "2015-01-01": 1201 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1656.11837208485, - "2034-01-01": 1624.04914231223, - "2033-01-01": 1592.37582895655, - "2032-01-01": 1561.49434843477, - "2031-01-01": 1531.40470074688, - "2030-01-01": 1501.71096947594, - "2029-01-01": 1472.41315462194, - "2028-01-01": 1443.51125618488, - "2027-01-01": 1414.21344133088, - "2026-01-01": 1380.20422111523, - "2025-01-01": 1359.42322825043, - "2024-01-01": 1329.92085658101, - "2023-01-01": 1258, - "2015-01-01": 1258 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1733.79006044177, - "2034-01-01": 1700.21678889126, - "2033-01-01": 1667.05800217471, - "2032-01-01": 1634.72818512607, - "2031-01-01": 1603.22733774534, - "2030-01-01": 1572.14097519857, - "2029-01-01": 1541.46909748576, - "2028-01-01": 1511.21170460691, - "2027-01-01": 1480.5398268941, - "2026-01-01": 1444.9355796572, - "2025-01-01": 1423.17996153086, - "2024-01-01": 1392.2939333205, - "2023-01-01": 1317, - "2015-01-01": 1317 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1815.41115668125, - "2034-01-01": 1780.25736665228, - "2033-01-01": 1745.53757403107, - "2032-01-01": 1711.6857762254, - "2031-01-01": 1678.70197323525, - "2030-01-01": 1646.15216765287, - "2029-01-01": 1614.03635947826, - "2028-01-01": 1582.35454871141, - "2027-01-01": 1550.2387405368, - "2026-01-01": 1512.95836320978, - "2025-01-01": 1490.1785626052, - "2024-01-01": 1457.83852243657, - "2023-01-01": 1379, - "2015-01-01": 1379 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1893.08284503817, - "2034-01-01": 1856.42501323131, - "2033-01-01": 1820.21974724922, - "2032-01-01": 1784.91961291669, - "2031-01-01": 1750.52461023372, - "2030-01-01": 1716.58217337551, - "2029-01-01": 1683.09230234209, - "2028-01-01": 1650.05499713343, - "2027-01-01": 1616.56512610001, - "2026-01-01": 1577.68972175175, - "2025-01-01": 1553.93529588563, - "2024-01-01": 1520.21159917607, - "2023-01-01": 1438, - "2015-01-01": 1438 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1966.80512551253, - "2034-01-01": 1928.71972862835, - "2033-01-01": 1891.10452182917, - "2032-01-01": 1854.42969519996, - "2031-01-01": 1818.69524874073, - "2030-01-01": 1783.43099236649, - "2029-01-01": 1748.63692607724, - "2028-01-01": 1714.31304987298, - "2027-01-01": 1679.51898358374, - "2026-01-01": 1639.12965528311, - "2025-01-01": 1614.45016137213, - "2024-01-01": 1579.41316353897, - "2023-01-01": 1494, - "2015-01-01": 1494 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2393.3411768285, - "2034-01-01": 2346.9962962827, - "2033-01-01": 2301.22357475597, - "2032-01-01": 2256.59517126742, - "2031-01-01": 2213.11108581703, - "2030-01-01": 2170.19915938573, - "2029-01-01": 2127.85939197351, - "2028-01-01": 2086.09178358038, - "2027-01-01": 2043.75201616816, - "2026-01-01": 1994.60355642884, - "2025-01-01": 1964.57188311549, - "2024-01-01": 1921.93650021007, - "2023-01-01": 1818, - "2015-01-01": 1818 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 522.638309791483, - "2034-01-01": 512.517893082635, - "2033-01-01": 502.522419789946, - "2032-01-01": 492.776833329574, - "2031-01-01": 483.281133701519, - "2030-01-01": 473.910377489623, - "2029-01-01": 464.664564693886, - "2028-01-01": 455.543695314307, - "2027-01-01": 446.29788251857, - "2026-01-01": 435.565243070545, - "2025-01-01": 429.007171395406, - "2024-01-01": 419.69680450132, - "2023-01-01": 397, - "2015-01-01": 397 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 741.172212626209, - "2034-01-01": 726.820085152452, - "2033-01-01": 712.645144437631, - "2032-01-01": 698.824577240681, - "2031-01-01": 685.358383561601, - "2030-01-01": 672.069376641456, - "2029-01-01": 658.957556480246, - "2028-01-01": 646.022923077972, - "2027-01-01": 632.911102916763, - "2026-01-01": 617.690760324223, - "2025-01-01": 608.390522658976, - "2024-01-01": 595.18715600565, - "2023-01-01": 563, - "2015-01-01": 563 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 850.439164043572, - "2034-01-01": 833.971181187361, - "2033-01-01": 817.706506761474, - "2032-01-01": 801.848449196234, - "2031-01-01": 786.397008491641, - "2030-01-01": 771.148876217372, - "2029-01-01": 756.104052373426, - "2028-01-01": 741.262536959804, - "2027-01-01": 726.217713115859, - "2026-01-01": 708.753518951063, - "2025-01-01": 698.082198290762, - "2024-01-01": 682.932331757815, - "2023-01-01": 646, - "2015-01-01": 646 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 943.908483930713, - "2034-01-01": 925.630552494331, - "2033-01-01": 907.578274532472, - "2032-01-01": 889.977303519659, - "2031-01-01": 872.827639455893, - "2030-01-01": 855.90362886665, - "2029-01-01": 839.20527175193, - "2028-01-01": 822.732568111733, - "2027-01-01": 806.034210997014, - "2026-01-01": 786.650577535468, - "2025-01-01": 774.806402746867, - "2024-01-01": 757.991458003643, - "2023-01-01": 717, - "2015-01-01": 717 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1025.52958017019, - "2034-01-01": 1005.67113025535, - "2033-01-01": 986.057846388836, - "2032-01-01": 966.934894618988, - "2031-01-01": 948.302274945803, - "2030-01-01": 929.914821320949, - "2029-01-01": 911.772533744426, - "2028-01-01": 893.875412216235, - "2027-01-01": 875.733124639712, - "2026-01-01": 854.673361088046, - "2025-01-01": 841.805003821212, - "2024-01-01": 823.536047119718, - "2023-01-01": 779, - "2015-01-01": 779 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1099.25186064455, - "2034-01-01": 1077.96584565239, - "2033-01-01": 1056.94262096878, - "2032-01-01": 1036.44497690225, - "2031-01-01": 1016.47291345282, - "2030-01-01": 996.763640311928, - "2029-01-01": 977.317157479584, - "2028-01-01": 958.133464955784, - "2027-01-01": 938.68698212344, - "2026-01-01": 916.113294619408, - "2025-01-01": 902.319869307718, - "2024-01-01": 882.737611482625, - "2023-01-01": 835, - "2015-01-01": 835 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1166.39179464799, - "2034-01-01": 1143.80567574613, - "2033-01-01": 1121.49839781837, - "2032-01-01": 1099.7488018388, - "2031-01-01": 1078.55688780742, - "2030-01-01": 1057.64381475014, - "2029-01-01": 1037.00958266696, - "2028-01-01": 1016.65419155787, - "2027-01-01": 996.019959474692, - "2026-01-01": 972.067519799755, - "2025-01-01": 957.431621804357, - "2024-01-01": 936.653321884558, - "2023-01-01": 886, - "2015-01-01": 886 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1226.94938218051, - "2034-01-01": 1203.19062053656, - "2033-01-01": 1179.72517693761, - "2032-01-01": 1156.84636942862, - "2031-01-01": 1134.55419800961, - "2030-01-01": 1112.55534463559, - "2029-01-01": 1090.84980930655, - "2028-01-01": 1069.4375920225, - "2027-01-01": 1047.73205669347, - "2026-01-01": 1022.53603662909, - "2025-01-01": 1007.14026131113, - "2024-01-01": 985.283178325517, - "2023-01-01": 932, - "2015-01-01": 932 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1284.87403112465, - "2034-01-01": 1259.99361120567, - "2033-01-01": 1235.4203569647, - "2032-01-01": 1211.46143407976, - "2031-01-01": 1188.11684255084, - "2030-01-01": 1165.07941669993, - "2029-01-01": 1142.34915652703, - "2028-01-01": 1119.92606203215, - "2027-01-01": 1097.19580185925, - "2026-01-01": 1070.81027011801, - "2025-01-01": 1054.68765562196, - "2024-01-01": 1031.79869318209, - "2023-01-01": 976, - "2015-01-01": 976 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1361.22925018739, - "2034-01-01": 1334.87028072404, - "2033-01-01": 1308.83673063679, - "2032-01-01": 1283.45401930171, - "2031-01-01": 1258.72214671882, - "2030-01-01": 1234.31569351202, - "2029-01-01": 1210.2346596813, - "2028-01-01": 1186.47904522668, - "2027-01-01": 1162.39801139597, - "2026-01-01": 1134.44448698978, - "2025-01-01": 1117.36376630441, - "2024-01-01": 1093.11459912938, - "2023-01-01": 1034, - "2015-01-01": 1034 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1458.64797795709, - "2034-01-01": 1430.402583213, - "2033-01-01": 1402.505897046, - "2032-01-01": 1375.30662803317, - "2031-01-01": 1348.80477617452, - "2030-01-01": 1322.65163289295, - "2029-01-01": 1296.84719818848, - "2028-01-01": 1271.39147206109, - "2027-01-01": 1245.58703735661, - "2026-01-01": 1215.6329705848, - "2025-01-01": 1197.32983855443, - "2024-01-01": 1171.34523775179, - "2023-01-01": 1108, - "2015-01-01": 1108 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1548.16788996167, - "2034-01-01": 1518.18902333798, - "2033-01-01": 1488.58026617878, - "2032-01-01": 1459.71172794856, - "2031-01-01": 1431.58340864732, - "2030-01-01": 1403.82519881057, - "2029-01-01": 1376.43709843831, - "2028-01-01": 1349.41910753054, - "2027-01-01": 1322.03100715828, - "2026-01-01": 1290.23860415859, - "2025-01-01": 1270.81217521662, - "2024-01-01": 1243.23285162104, - "2023-01-01": 1176, - "2015-01-01": 1176 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1631.10545549533, - "2034-01-01": 1599.52057815966, - "2033-01-01": 1568.32563758122, - "2032-01-01": 1537.91057051723, - "2031-01-01": 1508.27537696771, - "2030-01-01": 1479.03012017542, - "2029-01-01": 1450.17480014036, - "2028-01-01": 1421.70941686254, - "2027-01-01": 1392.85409682748, - "2026-01-01": 1359.35852938137, - "2025-01-01": 1338.89139888894, - "2024-01-01": 1309.83461152931, - "2023-01-01": 1239, - "2015-01-01": 1239 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1708.77714385225, - "2034-01-01": 1675.68822473869, - "2033-01-01": 1643.00781079937, - "2032-01-01": 1611.14440720853, - "2031-01-01": 1580.09801396618, - "2030-01-01": 1549.46012589806, - "2029-01-01": 1519.23074300419, - "2028-01-01": 1489.40986528456, - "2027-01-01": 1459.18048239069, - "2026-01-01": 1424.08988792334, - "2025-01-01": 1402.64813216936, - "2024-01-01": 1372.2076882688, - "2023-01-01": 1298, - "2015-01-01": 1298 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1789.08177079754, - "2034-01-01": 1754.43782543905, - "2033-01-01": 1720.22158310966, - "2032-01-01": 1686.86074683852, - "2031-01-01": 1654.3553166256, - "2030-01-01": 1622.27758944181, - "2029-01-01": 1590.62756528713, - "2028-01-01": 1559.40524416157, - "2027-01-01": 1527.75522000689, - "2026-01-01": 1491.01552980572, - "2025-01-01": 1468.56611064574, - "2024-01-01": 1436.69510659268, - "2023-01-01": 1359, - "2015-01-01": 1359 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1874.65227491958, - "2034-01-01": 1838.35133438205, - "2033-01-01": 1802.49855360424, - "2032-01-01": 1767.54209234588, - "2031-01-01": 1733.48195060696, - "2030-01-01": 1699.86996862777, - "2029-01-01": 1666.7061464083, - "2028-01-01": 1633.99048394855, - "2027-01-01": 1600.82666172908, - "2026-01-01": 1562.32973836891, - "2025-01-01": 1538.806579514, - "2024-01-01": 1505.41120808534, - "2023-01-01": 1424, - "2015-01-01": 1424 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1953.64043257068, - "2034-01-01": 1915.80995802174, - "2033-01-01": 1878.44652636846, - "2032-01-01": 1842.01718050652, - "2031-01-01": 1806.52192043591, - "2030-01-01": 1771.49370326096, - "2029-01-01": 1736.93252898168, - "2028-01-01": 1702.83839759806, - "2027-01-01": 1668.27722331878, - "2026-01-01": 1628.15823858108, - "2025-01-01": 1603.6439353924, - "2024-01-01": 1568.84145561702, - "2023-01-01": 1484, - "2015-01-01": 1484 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2029.99565163342, - "2034-01-01": 1990.68662754011, - "2033-01-01": 1951.86290004055, - "2032-01-01": 1914.00976572847, - "2031-01-01": 1877.12722460389, - "2030-01-01": 1840.72998007305, - "2029-01-01": 1804.81803213595, - "2028-01-01": 1769.3913807926, - "2027-01-01": 1733.4794328555, - "2026-01-01": 1691.79245545285, - "2025-01-01": 1666.32004607485, - "2024-01-01": 1630.15736156432, - "2023-01-01": 1542, - "2015-01-01": 1542 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VA.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2471.01286518542, - "2034-01-01": 2423.16394286173, - "2033-01-01": 2375.90574797413, - "2032-01-01": 2329.82900795872, - "2031-01-01": 2284.9337228155, - "2030-01-01": 2240.62916510837, - "2029-01-01": 2196.91533483734, - "2028-01-01": 2153.7922320024, - "2027-01-01": 2110.07840173137, - "2026-01-01": 2059.33491497081, - "2025-01-01": 2028.32861639591, - "2024-01-01": 1984.30957694957, - "2023-01-01": 1877, - "2015-01-01": 1877 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA", - "description": null, - "label": "WA", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 641.120546268141, - "2034-01-01": 628.705828542175, - "2033-01-01": 616.444378936281, - "2032-01-01": 604.489465570535, - "2031-01-01": 592.841088444937, - "2030-01-01": 581.345979439412, - "2029-01-01": 570.004138553961, - "2028-01-01": 558.815565788583, - "2027-01-01": 547.473724903132, - "2026-01-01": 534.307993388804, - "2025-01-01": 526.263205213004, - "2024-01-01": 514.842175798848, - "2023-01-01": 487, - "2015-01-01": 487 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 903.097935810975, - "2034-01-01": 885.610263613823, - "2033-01-01": 868.338488604289, - "2032-01-01": 851.498507969994, - "2031-01-01": 835.090321710938, - "2030-01-01": 818.898032639501, - "2029-01-01": 802.921640755682, - "2028-01-01": 787.161146059483, - "2027-01-01": 771.184754175665, - "2026-01-01": 752.639185759178, - "2025-01-01": 741.307102209694, - "2024-01-01": 725.219163445606, - "2023-01-01": 686, - "2015-01-01": 686 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1033.4283959353, - "2034-01-01": 1013.41699261932, - "2033-01-01": 993.652643665258, - "2032-01-01": 974.382403435052, - "2031-01-01": 955.606271928697, - "2030-01-01": 937.077194784268, - "2029-01-01": 918.795172001764, - "2028-01-01": 900.760203581186, - "2027-01-01": 882.478180798683, - "2026-01-01": 861.256211109264, - "2025-01-01": 848.288739409052, - "2024-01-01": 829.879071872887, - "2023-01-01": 785, - "2015-01-01": 785 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1144.01181664685, - "2034-01-01": 1121.85906571489, - "2033-01-01": 1099.97980553517, - "2032-01-01": 1078.64752685995, - "2031-01-01": 1057.86222968922, - "2030-01-01": 1037.35042327074, - "2029-01-01": 1017.1121076045, - "2028-01-01": 997.147282690511, - "2027-01-01": 976.908967024275, - "2026-01-01": 953.416111406306, - "2025-01-01": 939.061037638811, - "2024-01-01": 918.681418417247, - "2023-01-01": 869, - "2015-01-01": 869 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1241.43054441654, - "2034-01-01": 1217.39136820384, - "2033-01-01": 1193.64897194438, - "2032-01-01": 1170.50013559141, - "2031-01-01": 1147.94485914492, - "2030-01-01": 1125.68636265167, - "2029-01-01": 1103.72464611167, - "2028-01-01": 1082.05970952492, - "2027-01-01": 1060.09799298491, - "2026-01-01": 1034.60459500132, - "2025-01-01": 1019.02710988884, - "2024-01-01": 996.912057039659, - "2023-01-01": 943, - "2015-01-01": 943 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1327.00104853858, - "2034-01-01": 1301.30487714684, - "2033-01-01": 1275.92594243896, - "2032-01-01": 1251.18148109877, - "2031-01-01": 1227.07149312628, - "2030-01-01": 1203.27874183763, - "2029-01-01": 1179.80322723284, - "2028-01-01": 1156.64494931189, - "2027-01-01": 1133.1694347071, - "2026-01-01": 1105.91880356451, - "2025-01-01": 1089.2675787571, - "2024-01-01": 1065.62815853232, - "2023-01-01": 1008, - "2015-01-01": 1008 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1405.98920618968, - "2034-01-01": 1378.76350078653, - "2033-01-01": 1351.87391520318, - "2032-01-01": 1325.65656925941, - "2031-01-01": 1300.11146295522, - "2030-01-01": 1274.90247647083, - "2029-01-01": 1250.02960980622, - "2028-01-01": 1225.49286296141, - "2027-01-01": 1200.61999629681, - "2026-01-01": 1171.74730377668, - "2025-01-01": 1154.1049346355, - "2024-01-01": 1129.058406064, - "2023-01-01": 1068, - "2015-01-01": 1068 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1478.39501736986, - "2034-01-01": 1449.76723912292, - "2033-01-01": 1421.49289023705, - "2032-01-01": 1393.92540007333, - "2031-01-01": 1367.06476863175, - "2030-01-01": 1340.55756655125, - "2029-01-01": 1314.40379383182, - "2028-01-01": 1288.60345047347, - "2027-01-01": 1262.44967775404, - "2026-01-01": 1232.09009563784, - "2025-01-01": 1213.53917752403, - "2024-01-01": 1187.20279963472, - "2023-01-01": 1123, - "2015-01-01": 1123 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1545.5349513733, - "2034-01-01": 1515.60706921666, - "2033-01-01": 1486.04866708664, - "2032-01-01": 1457.22922500987, - "2031-01-01": 1429.14874298636, - "2030-01-01": 1401.43774098947, - "2029-01-01": 1374.0962190192, - "2028-01-01": 1347.12417707556, - "2027-01-01": 1319.78265510529, - "2026-01-01": 1288.04432081819, - "2025-01-01": 1268.65093002067, - "2024-01-01": 1241.11851003665, - "2023-01-01": 1174, - "2015-01-01": 1174 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1635.05486337789, - "2034-01-01": 1603.39350934164, - "2033-01-01": 1572.12303621943, - "2032-01-01": 1541.63432492527, - "2031-01-01": 1511.92737545916, - "2030-01-01": 1482.61130690708, - "2029-01-01": 1453.68611926903, - "2028-01-01": 1425.15181254501, - "2027-01-01": 1396.22662490696, - "2026-01-01": 1362.64995439198, - "2025-01-01": 1342.13326668286, - "2024-01-01": 1313.00612390589, - "2023-01-01": 1242, - "2015-01-01": 1242 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1749.58769197199, - "2034-01-01": 1715.7085136192, - "2033-01-01": 1682.24759672755, - "2032-01-01": 1649.6232027582, - "2031-01-01": 1617.83533171113, - "2030-01-01": 1586.46572212521, - "2029-01-01": 1555.51437400044, - "2028-01-01": 1524.98128733681, - "2027-01-01": 1494.02993921204, - "2026-01-01": 1458.10127969963, - "2025-01-01": 1436.14743270654, - "2024-01-01": 1404.97998282684, - "2023-01-01": 1329, - "2015-01-01": 1329 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1854.9052355068, - "2034-01-01": 1818.98667847212, - "2033-01-01": 1783.51156041318, - "2032-01-01": 1748.92332030572, - "2031-01-01": 1715.22195814973, - "2030-01-01": 1681.96403496947, - "2029-01-01": 1649.14955076495, - "2028-01-01": 1616.77850553617, - "2027-01-01": 1583.96402133165, - "2026-01-01": 1545.87261331586, - "2025-01-01": 1522.5972405444, - "2024-01-01": 1489.55364620242, - "2023-01-01": 1409, - "2015-01-01": 1409 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1951.00749398231, - "2034-01-01": 1913.22800390042, - "2033-01-01": 1875.91492727632, - "2032-01-01": 1839.53467756783, - "2031-01-01": 1804.08725477494, - "2030-01-01": 1769.10624543985, - "2029-01-01": 1734.59164956257, - "2028-01-01": 1700.54346714308, - "2027-01-01": 1666.02887126579, - "2026-01-01": 1625.96395524067, - "2025-01-01": 1601.48269019645, - "2024-01-01": 1566.72711403264, - "2023-01-01": 1482, - "2015-01-01": 1482 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2041.84387528108, - "2034-01-01": 2002.30542108606, - "2033-01-01": 1963.25509595518, - "2032-01-01": 1925.18102895257, - "2031-01-01": 1888.08322007823, - "2030-01-01": 1851.47354026803, - "2029-01-01": 1815.35198952196, - "2028-01-01": 1779.71856784003, - "2027-01-01": 1743.59701709396, - "2026-01-01": 1701.66673048467, - "2025-01-01": 1676.04564945661, - "2024-01-01": 1639.67189869407, - "2023-01-01": 1551, - "2015-01-01": 1551 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2135.31319516822, - "2034-01-01": 2093.96479239303, - "2033-01-01": 2053.12686372618, - "2032-01-01": 2013.30988327599, - "2031-01-01": 1974.51385104248, - "2030-01-01": 1936.2282929173, - "2029-01-01": 1898.45320890046, - "2028-01-01": 1861.18859899195, - "2027-01-01": 1823.41351497511, - "2026-01-01": 1779.56378906908, - "2025-01-01": 1752.76985391272, - "2024-01-01": 1714.7310249399, - "2023-01-01": 1622, - "2015-01-01": 1622 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2234.04839223211, - "2034-01-01": 2190.78807194265, - "2033-01-01": 2148.06182968146, - "2032-01-01": 2106.40374347679, - "2031-01-01": 2065.81381332866, - "2030-01-01": 2025.75796120879, - "2029-01-01": 1986.23618711719, - "2028-01-01": 1947.24849105385, - "2027-01-01": 1907.72671696225, - "2026-01-01": 1861.84941433429, - "2025-01-01": 1833.81654876072, - "2024-01-01": 1794.01883435451, - "2023-01-01": 1697, - "2015-01-01": 1697 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2327.51771211925, - "2034-01-01": 2282.44744324962, - "2033-01-01": 2237.93359745245, - "2032-01-01": 2194.53259780022, - "2031-01-01": 2152.24444429291, - "2030-01-01": 2110.51271385807, - "2029-01-01": 2069.33740649569, - "2028-01-01": 2028.71852220578, - "2027-01-01": 1987.5432148434, - "2026-01-01": 1939.7464729187, - "2025-01-01": 1910.54075321682, - "2024-01-01": 1869.07796060034, - "2023-01-01": 1768, - "2015-01-01": 1768 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2414.40468553547, - "2034-01-01": 2367.65192925328, - "2033-01-01": 2321.4763674931, - "2032-01-01": 2276.45519477692, - "2031-01-01": 2232.58841110475, - "2030-01-01": 2189.29882195458, - "2029-01-01": 2146.58642732641, - "2028-01-01": 2104.45122722025, - "2027-01-01": 2061.73883259208, - "2026-01-01": 2012.15782315209, - "2025-01-01": 1981.86184468306, - "2024-01-01": 1938.85123288519, - "2023-01-01": 1834, - "2015-01-01": 1834 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2925.19477167928, - "2034-01-01": 2868.55102878996, - "2033-01-01": 2812.60659136841, - "2032-01-01": 2758.0607648824, - "2031-01-01": 2704.91354933193, - "2030-01-01": 2652.46563924923, - "2029-01-01": 2600.71703463429, - "2028-01-01": 2549.66773548713, - "2027-01-01": 2497.9191308722, - "2026-01-01": 2437.84879119081, - "2025-01-01": 2401.14341269671, - "2024-01-01": 2349.03350025676, - "2023-01-01": 2222, - "2015-01-01": 2222 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 729.323988978543, - "2034-01-01": 715.201291606498, - "2033-01-01": 701.252948522998, - "2032-01-01": 687.653314016584, - "2031-01-01": 674.402388087259, - "2030-01-01": 661.325816446477, - "2029-01-01": 648.423599094239, - "2028-01-01": 635.695736030544, - "2027-01-01": 622.793518678306, - "2026-01-01": 607.816485292398, - "2025-01-01": 598.664919277217, - "2024-01-01": 585.672618875897, - "2023-01-01": 554, - "2015-01-01": 554 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1025.52958017019, - "2034-01-01": 1005.67113025535, - "2033-01-01": 986.057846388836, - "2032-01-01": 966.934894618988, - "2031-01-01": 948.302274945803, - "2030-01-01": 929.914821320949, - "2029-01-01": 911.772533744426, - "2028-01-01": 893.875412216235, - "2027-01-01": 875.733124639712, - "2026-01-01": 854.673361088046, - "2025-01-01": 841.805003821212, - "2024-01-01": 823.536047119718, - "2023-01-01": 779, - "2015-01-01": 779 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1174.29061041311, - "2034-01-01": 1151.5515381101, - "2033-01-01": 1129.09319509479, - "2032-01-01": 1107.19631065486, - "2031-01-01": 1085.86088479032, - "2030-01-01": 1064.80618821346, - "2029-01-01": 1044.0322209243, - "2028-01-01": 1023.53898292283, - "2027-01-01": 1002.76501563366, - "2026-01-01": 978.650369820972, - "2025-01-01": 963.915357392197, - "2024-01-01": 942.996346637726, - "2023-01-01": 892, - "2015-01-01": 892 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1299.35519336069, - "2034-01-01": 1274.19435887295, - "2033-01-01": 1249.34415197148, - "2032-01-01": 1225.11520024254, - "2031-01-01": 1201.50750368615, - "2030-01-01": 1178.21043471602, - "2029-01-01": 1155.22399333215, - "2028-01-01": 1132.54817953456, - "2027-01-01": 1109.5617381507, - "2026-01-01": 1082.87882849025, - "2025-01-01": 1066.57450419966, - "2024-01-01": 1043.42757189623, - "2023-01-01": 987, - "2015-01-01": 987 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1408.62214477805, - "2034-01-01": 1381.34545490786, - "2033-01-01": 1354.40551429532, - "2032-01-01": 1328.1390721981, - "2031-01-01": 1302.54612861619, - "2030-01-01": 1277.28993429193, - "2029-01-01": 1252.37048922533, - "2028-01-01": 1227.78779341639, - "2027-01-01": 1202.8683483498, - "2026-01-01": 1173.94158711709, - "2025-01-01": 1156.26617983145, - "2024-01-01": 1131.17274764839, - "2023-01-01": 1070, - "2015-01-01": 1070 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1506.04087254775, - "2034-01-01": 1476.87775739681, - "2033-01-01": 1448.07468070453, - "2032-01-01": 1419.99168092955, - "2031-01-01": 1392.62875807188, - "2030-01-01": 1365.62587367287, - "2029-01-01": 1338.98302773251, - "2028-01-01": 1312.7002202508, - "2027-01-01": 1286.05737431044, - "2026-01-01": 1255.1300707121, - "2025-01-01": 1236.23225208147, - "2024-01-01": 1209.40338627081, - "2023-01-01": 1144, - "2015-01-01": 1144 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1594.24431525815, - "2034-01-01": 1563.37322046114, - "2033-01-01": 1532.88325029125, - "2032-01-01": 1503.1555293756, - "2031-01-01": 1474.19005771421, - "2030-01-01": 1445.60571067993, - "2029-01-01": 1417.40248827279, - "2028-01-01": 1389.58039049276, - "2027-01-01": 1361.37716808561, - "2026-01-01": 1328.63856261569, - "2025-01-01": 1308.63396614568, - "2024-01-01": 1280.23382934786, - "2023-01-01": 1211, - "2015-01-01": 1211 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1677.18188079181, - "2034-01-01": 1644.70477528281, - "2033-01-01": 1612.62862169368, - "2032-01-01": 1581.35437194428, - "2031-01-01": 1550.8820260346, - "2030-01-01": 1520.81063204479, - "2029-01-01": 1491.14018997484, - "2028-01-01": 1461.87069982475, - "2027-01-01": 1432.20025775481, - "2026-01-01": 1397.75848783847, - "2025-01-01": 1376.713189818, - "2024-01-01": 1346.83558925612, - "2023-01-01": 1274, - "2015-01-01": 1274 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1752.22063056036, - "2034-01-01": 1718.29046774052, - "2033-01-01": 1684.77919581969, - "2032-01-01": 1652.10570569688, - "2031-01-01": 1620.2699973721, - "2030-01-01": 1588.85317994632, - "2029-01-01": 1557.85525341955, - "2028-01-01": 1527.2762177918, - "2027-01-01": 1496.27829126503, - "2026-01-01": 1460.29556304004, - "2025-01-01": 1438.30867790248, - "2024-01-01": 1407.09432441123, - "2023-01-01": 1331, - "2015-01-01": 1331 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1853.58876621261, - "2034-01-01": 1817.69570141146, - "2033-01-01": 1782.24576086711, - "2032-01-01": 1747.68206883637, - "2031-01-01": 1714.00462531924, - "2030-01-01": 1680.77030605892, - "2029-01-01": 1647.97911105539, - "2028-01-01": 1615.63104030868, - "2027-01-01": 1582.83984530515, - "2026-01-01": 1544.77547164566, - "2025-01-01": 1521.51661794643, - "2024-01-01": 1488.49647541022, - "2023-01-01": 1408, - "2015-01-01": 1408 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1982.60275704275, - "2034-01-01": 1944.21145335629, - "2033-01-01": 1906.29411638201, - "2032-01-01": 1869.32471283209, - "2031-01-01": 1833.30324270652, - "2030-01-01": 1797.75573929313, - "2029-01-01": 1762.68220259192, - "2028-01-01": 1728.08263260289, - "2027-01-01": 1693.00909590168, - "2026-01-01": 1652.29535532554, - "2025-01-01": 1627.41763254781, - "2024-01-01": 1592.09921304531, - "2023-01-01": 1506, - "2015-01-01": 1506 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2101.08499351941, - "2034-01-01": 2060.39938881583, - "2033-01-01": 2020.21607552835, - "2032-01-01": 1981.03734507305, - "2031-01-01": 1942.86319744994, - "2030-01-01": 1905.19134124292, - "2029-01-01": 1868.02177645199, - "2028-01-01": 1831.35450307716, - "2027-01-01": 1794.18493828624, - "2026-01-01": 1751.0381056438, - "2025-01-01": 1724.67366636541, - "2024-01-01": 1687.24458434284, - "2023-01-01": 1596, - "2015-01-01": 1596 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2210.35194493678, - "2034-01-01": 2167.55048485074, - "2033-01-01": 2125.27743785219, - "2032-01-01": 2084.0612170286, - "2031-01-01": 2043.90182237998, - "2030-01-01": 2004.27084081884, - "2029-01-01": 1965.16827234517, - "2028-01-01": 1926.594116959, - "2027-01-01": 1887.49154848534, - "2026-01-01": 1842.10086427064, - "2025-01-01": 1814.3653419972, - "2024-01-01": 1774.989760095, - "2023-01-01": 1679, - "2015-01-01": 1679 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2311.72008058903, - "2034-01-01": 2266.95571852168, - "2033-01-01": 2222.74400289961, - "2032-01-01": 2179.63758016809, - "2031-01-01": 2137.63645032712, - "2030-01-01": 2096.18796693143, - "2029-01-01": 2055.29212998102, - "2028-01-01": 2014.94893947588, - "2027-01-01": 1974.05310252546, - "2026-01-01": 1926.58077287626, - "2025-01-01": 1897.57328204114, - "2024-01-01": 1856.391911094, - "2023-01-01": 1756, - "2015-01-01": 1756 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2417.03762412384, - "2034-01-01": 2370.2338833746, - "2033-01-01": 2324.00796658524, - "2032-01-01": 2278.93769771561, - "2031-01-01": 2235.02307676572, - "2030-01-01": 2191.68627977569, - "2029-01-01": 2148.92730674553, - "2028-01-01": 2106.74615767523, - "2027-01-01": 2063.98718464507, - "2026-01-01": 2014.35210649249, - "2025-01-01": 1984.02308987901, - "2024-01-01": 1940.96557446958, - "2023-01-01": 1836, - "2015-01-01": 1836 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2528.93751412957, - "2034-01-01": 2479.96693353084, - "2033-01-01": 2431.60092800122, - "2032-01-01": 2384.44407260985, - "2031-01-01": 2338.49636735672, - "2030-01-01": 2293.15323717271, - "2029-01-01": 2248.41468205782, - "2028-01-01": 2204.28070201205, - "2027-01-01": 2159.54214689716, - "2026-01-01": 2107.60914845974, - "2025-01-01": 2075.87601070674, - "2024-01-01": 2030.82509180613, - "2023-01-01": 1921, - "2015-01-01": 1921 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2632.93858837019, - "2034-01-01": 2581.9541213231, - "2033-01-01": 2531.59909214079, - "2032-01-01": 2482.50293868803, - "2031-01-01": 2434.66566096483, - "2030-01-01": 2387.45782110642, - "2029-01-01": 2340.87941911278, - "2028-01-01": 2294.93045498391, - "2027-01-01": 2248.35205299028, - "2026-01-01": 2194.28334040577, - "2025-01-01": 2161.24519594663, - "2024-01-01": 2114.34158438952, - "2023-01-01": 2000, - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2731.67378543407, - "2034-01-01": 2678.77740087271, - "2033-01-01": 2626.53405809606, - "2032-01-01": 2575.59679888883, - "2031-01-01": 2525.96562325101, - "2030-01-01": 2476.98748939791, - "2029-01-01": 2428.6623973295, - "2028-01-01": 2380.99034704581, - "2027-01-01": 2332.66525497741, - "2026-01-01": 2276.56896567098, - "2025-01-01": 2242.29189079463, - "2024-01-01": 2193.62939380413, - "2023-01-01": 2075, - "2015-01-01": 2075 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3306.97086699296, - "2034-01-01": 3242.93437638181, - "2033-01-01": 3179.68845972883, - "2032-01-01": 3118.02369099217, - "2031-01-01": 3057.94007017183, - "2030-01-01": 2998.64702330966, - "2029-01-01": 2940.14455040565, - "2028-01-01": 2882.4326514598, - "2027-01-01": 2823.93017855579, - "2026-01-01": 2756.01987554964, - "2025-01-01": 2714.52396610897, - "2024-01-01": 2655.61302999324, - "2023-01-01": 2512, - "2015-01-01": 2512 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 787.248637922687, - "2034-01-01": 772.004282275606, - "2033-01-01": 756.948128550095, - "2032-01-01": 742.268378667721, - "2031-01-01": 727.965032628485, - "2030-01-01": 713.849888510818, - "2029-01-01": 699.92294631472, - "2028-01-01": 686.184206040191, - "2027-01-01": 672.257263844092, - "2026-01-01": 656.090718781324, - "2025-01-01": 646.212313588042, - "2024-01-01": 632.188133732467, - "2023-01-01": 598, - "2015-01-01": 598 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1107.15067640967, - "2034-01-01": 1085.71170801636, - "2033-01-01": 1064.5374182452, - "2032-01-01": 1043.89248571832, - "2031-01-01": 1023.77691043571, - "2030-01-01": 1003.92601377525, - "2029-01-01": 984.339795736922, - "2028-01-01": 965.018256320736, - "2027-01-01": 945.432038282411, - "2026-01-01": 922.696144640625, - "2025-01-01": 908.803604895558, - "2024-01-01": 889.080636235794, - "2023-01-01": 841, - "2015-01-01": 841 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1266.44346100606, - "2034-01-01": 1241.91993235641, - "2033-01-01": 1217.69916331972, - "2032-01-01": 1194.08391350894, - "2031-01-01": 1171.07418292408, - "2030-01-01": 1148.36721195219, - "2029-01-01": 1125.96300059324, - "2028-01-01": 1103.86154884726, - "2027-01-01": 1081.45733748832, - "2026-01-01": 1055.45028673517, - "2025-01-01": 1039.55893925033, - "2024-01-01": 1016.99830209136, - "2023-01-01": 962, - "2015-01-01": 962 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1399.40685971876, - "2034-01-01": 1372.30861548323, - "2033-01-01": 1345.54491747283, - "2032-01-01": 1319.45031191269, - "2031-01-01": 1294.02479880281, - "2030-01-01": 1268.93383191806, - "2029-01-01": 1244.17741125844, - "2028-01-01": 1219.75553682395, - "2027-01-01": 1194.99911616433, - "2026-01-01": 1166.26159542567, - "2025-01-01": 1148.70182164563, - "2024-01-01": 1123.77255210303, - "2023-01-01": 1063, - "2015-01-01": 1063 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1517.88909619541, - "2034-01-01": 1488.49655094277, - "2033-01-01": 1459.46687661916, - "2032-01-01": 1431.16294415365, - "2031-01-01": 1403.58475354623, - "2030-01-01": 1376.36943386785, - "2029-01-01": 1349.51698511851, - "2028-01-01": 1323.02740729823, - "2027-01-01": 1296.17495854889, - "2026-01-01": 1265.00434574392, - "2025-01-01": 1245.95785546323, - "2024-01-01": 1218.91792340056, - "2023-01-01": 1153, - "2015-01-01": 1153 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1621.89017043604, - "2034-01-01": 1590.48373873503, - "2033-01-01": 1559.46504075872, - "2032-01-01": 1529.22181023183, - "2031-01-01": 1499.75404715434, - "2030-01-01": 1470.67401780155, - "2029-01-01": 1441.98172217347, - "2028-01-01": 1413.67716027009, - "2027-01-01": 1384.98486464201, - "2026-01-01": 1351.67853768995, - "2025-01-01": 1331.32704070312, - "2024-01-01": 1302.43441598394, - "2023-01-01": 1232, - "2015-01-01": 1232 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1717.99242891155, - "2034-01-01": 1684.72506416332, - "2033-01-01": 1651.86840762186, - "2032-01-01": 1619.83316749394, - "2031-01-01": 1588.61934377955, - "2030-01-01": 1557.81622827194, - "2029-01-01": 1527.42382097109, - "2028-01-01": 1497.442121877, - "2027-01-01": 1467.04971457615, - "2026-01-01": 1431.76987961476, - "2025-01-01": 1410.21249035518, - "2024-01-01": 1379.60788381416, - "2023-01-01": 1305, - "2015-01-01": 1305 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1806.19587162195, - "2034-01-01": 1771.22052722765, - "2033-01-01": 1736.67697720858, - "2032-01-01": 1702.99701593999, - "2031-01-01": 1670.18064342188, - "2030-01-01": 1637.796065279, - "2029-01-01": 1605.84328151136, - "2028-01-01": 1574.32229211897, - "2027-01-01": 1542.36950835133, - "2026-01-01": 1505.27837151836, - "2025-01-01": 1482.61420441939, - "2024-01-01": 1450.43832689121, - "2023-01-01": 1372, - "2015-01-01": 1372 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1887.81696786143, - "2034-01-01": 1851.26110498866, - "2033-01-01": 1815.15654906494, - "2032-01-01": 1779.95460703932, - "2031-01-01": 1745.65527891179, - "2030-01-01": 1711.8072577333, - "2029-01-01": 1678.41054350386, - "2028-01-01": 1645.46513622347, - "2027-01-01": 1612.06842199403, - "2026-01-01": 1573.30115507094, - "2025-01-01": 1549.61280549373, - "2024-01-01": 1515.98291600729, - "2023-01-01": 1434, - "2015-01-01": 1434 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1995.7674499846, - "2034-01-01": 1957.12122396291, - "2033-01-01": 1918.95211184272, - "2032-01-01": 1881.73722752553, - "2031-01-01": 1845.47657101134, - "2030-01-01": 1809.69302839866, - "2029-01-01": 1774.38659968748, - "2028-01-01": 1739.55728487781, - "2027-01-01": 1704.25085616663, - "2026-01-01": 1663.26677202757, - "2025-01-01": 1638.22385852755, - "2024-01-01": 1602.67092096726, - "2023-01-01": 1516, - "2015-01-01": 1516 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2133.99672587404, - "2034-01-01": 2092.67381533237, - "2033-01-01": 2051.86106418011, - "2032-01-01": 2012.06863180665, - "2031-01-01": 1973.296518212, - "2030-01-01": 1935.03456400675, - "2029-01-01": 1897.2827691909, - "2028-01-01": 1860.04113376446, - "2027-01-01": 1822.28933894862, - "2026-01-01": 1778.46664739887, - "2025-01-01": 1751.68923131474, - "2024-01-01": 1713.67385414771, - "2023-01-01": 1621, - "2015-01-01": 1621 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2261.69424740999, - "2034-01-01": 2217.89859021654, - "2033-01-01": 2174.64362014893, - "2032-01-01": 2132.47002433302, - "2031-01-01": 2091.37780276879, - "2030-01-01": 2050.82626833041, - "2029-01-01": 2010.81542101787, - "2028-01-01": 1971.34526083118, - "2027-01-01": 1931.33441351865, - "2026-01-01": 1884.88938940855, - "2025-01-01": 1856.50962331816, - "2024-01-01": 1816.2194209906, - "2023-01-01": 1718, - "2015-01-01": 1718 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2378.86001459247, - "2034-01-01": 2332.79554861542, - "2033-01-01": 2287.2997797492, - "2032-01-01": 2242.94140510464, - "2031-01-01": 2199.72042468173, - "2030-01-01": 2157.06814136965, - "2029-01-01": 2114.98455516839, - "2028-01-01": 2073.46966607797, - "2027-01-01": 2031.38607987671, - "2026-01-01": 1982.53499805661, - "2025-01-01": 1952.68503453778, - "2024-01-01": 1910.30762149593, - "2023-01-01": 1807, - "2015-01-01": 1807 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2488.12696600983, - "2034-01-01": 2439.94664465033, - "2033-01-01": 2392.36114207304, - "2032-01-01": 2345.96527706019, - "2031-01-01": 2300.75904961177, - "2030-01-01": 2256.14764094556, - "2029-01-01": 2212.13105106157, - "2028-01-01": 2168.7092799598, - "2027-01-01": 2124.69269007581, - "2026-01-01": 2073.59775668345, - "2025-01-01": 2042.37671016957, - "2024-01-01": 1998.0527972481, - "2023-01-01": 1890, - "2015-01-01": 1890 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2600.02685601556, - "2034-01-01": 2549.67969480656, - "2033-01-01": 2499.95410348903, - "2032-01-01": 2451.47165195443, - "2031-01-01": 2404.23234020277, - "2030-01-01": 2357.61459834259, - "2029-01-01": 2311.61842637387, - "2028-01-01": 2266.24382429662, - "2027-01-01": 2220.2476523279, - "2026-01-01": 2166.8547986507, - "2025-01-01": 2134.2296309973, - "2024-01-01": 2087.91231458465, - "2023-01-01": 1975, - "2015-01-01": 1975 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2719.82556178641, - "2034-01-01": 2667.15860732676, - "2033-01-01": 2615.14186218143, - "2032-01-01": 2564.42553566474, - "2031-01-01": 2515.00962777667, - "2030-01-01": 2466.24392920293, - "2029-01-01": 2418.1284399435, - "2028-01-01": 2370.66315999838, - "2027-01-01": 2322.54767073895, - "2026-01-01": 2266.69469063916, - "2025-01-01": 2232.56628741287, - "2024-01-01": 2184.11485667438, - "2023-01-01": 2066, - "2015-01-01": 2066 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2831.72545179214, - "2034-01-01": 2776.89165748299, - "2033-01-01": 2722.73482359741, - "2032-01-01": 2669.93191055898, - "2031-01-01": 2618.48291836768, - "2030-01-01": 2567.71088659995, - "2029-01-01": 2517.61581525579, - "2028-01-01": 2468.1977043352, - "2027-01-01": 2418.10263299104, - "2026-01-01": 2359.9517326064, - "2025-01-01": 2324.4192082406, - "2024-01-01": 2273.97437401093, - "2023-01-01": 2151, - "2015-01-01": 2151 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2938.35946462113, - "2034-01-01": 2881.46079939658, - "2033-01-01": 2825.26458682912, - "2032-01-01": 2770.47327957584, - "2031-01-01": 2717.08687763675, - "2030-01-01": 2664.40292835476, - "2029-01-01": 2612.42143172986, - "2028-01-01": 2561.14238776205, - "2027-01-01": 2509.16089113715, - "2026-01-01": 2448.82020789284, - "2025-01-01": 2411.94963867644, - "2024-01-01": 2359.60520817871, - "2023-01-01": 2232, - "2015-01-01": 2232 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3554.46709429976, - "2034-01-01": 3485.63806378618, - "2033-01-01": 3417.65877439006, - "2032-01-01": 3351.37896722884, - "2031-01-01": 3286.79864230253, - "2030-01-01": 3223.06805849366, - "2029-01-01": 3160.18721580225, - "2028-01-01": 3098.15611422828, - "2027-01-01": 3035.27527153687, - "2026-01-01": 2962.28250954779, - "2025-01-01": 2917.68101452795, - "2024-01-01": 2854.36113892585, - "2023-01-01": 2700, - "2015-01-01": 2700 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 832.00859392498, - "2034-01-01": 815.897502338099, - "2033-01-01": 799.985313116488, - "2032-01-01": 784.470928625418, - "2031-01-01": 769.354348864887, - "2030-01-01": 754.436671469627, - "2029-01-01": 739.717896439637, - "2028-01-01": 725.198023774917, - "2027-01-01": 710.479248744927, - "2026-01-01": 693.393535568222, - "2025-01-01": 682.953481919135, - "2024-01-01": 668.131940667089, - "2023-01-01": 632, - "2015-01-01": 632 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1167.70826394218, - "2034-01-01": 1145.09665280679, - "2033-01-01": 1122.76419736444, - "2032-01-01": 1100.99005330814, - "2031-01-01": 1079.7742206379, - "2030-01-01": 1058.8375436607, - "2029-01-01": 1038.18002237652, - "2028-01-01": 1017.80165678537, - "2027-01-01": 997.144135501187, - "2026-01-01": 973.164661469958, - "2025-01-01": 958.512244402331, - "2024-01-01": 937.710492676752, - "2023-01-01": 887, - "2015-01-01": 887 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1336.21633359787, - "2034-01-01": 1310.34171657147, - "2033-01-01": 1284.78653926145, - "2032-01-01": 1259.87024138418, - "2031-01-01": 1235.59282293965, - "2030-01-01": 1211.63484421151, - "2029-01-01": 1187.99630519973, - "2028-01-01": 1164.67720590434, - "2027-01-01": 1141.03866689256, - "2026-01-01": 1113.59879525593, - "2025-01-01": 1096.83193694291, - "2024-01-01": 1073.02835407768, - "2023-01-01": 1015, - "2015-01-01": 1015 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1477.07854807568, - "2034-01-01": 1448.47626206226, - "2033-01-01": 1420.22709069098, - "2032-01-01": 1392.68414860399, - "2031-01-01": 1365.84743580127, - "2030-01-01": 1339.3638376407, - "2029-01-01": 1313.23335412227, - "2028-01-01": 1287.45598524598, - "2027-01-01": 1261.32550172754, - "2026-01-01": 1230.99295396764, - "2025-01-01": 1212.45855492606, - "2024-01-01": 1186.14562884252, - "2023-01-01": 1122, - "2015-01-01": 1122 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1600.82666172908, - "2034-01-01": 1569.82810576444, - "2033-01-01": 1539.2122480216, - "2032-01-01": 1509.36178672232, - "2031-01-01": 1480.27672186662, - "2030-01-01": 1451.5743552327, - "2029-01-01": 1423.25468682057, - "2028-01-01": 1395.31771663022, - "2027-01-01": 1366.99804821809, - "2026-01-01": 1334.12427096671, - "2025-01-01": 1314.03707913555, - "2024-01-01": 1285.51968330883, - "2023-01-01": 1216, - "2015-01-01": 1216 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1711.41008244062, - "2034-01-01": 1678.27017886001, - "2033-01-01": 1645.53940989151, - "2032-01-01": 1613.62691014722, - "2031-01-01": 1582.53267962714, - "2030-01-01": 1551.84758371917, - "2029-01-01": 1521.5716224233, - "2028-01-01": 1491.70479573954, - "2027-01-01": 1461.42883444368, - "2026-01-01": 1426.28417126375, - "2025-01-01": 1404.80937736531, - "2024-01-01": 1374.32202985319, - "2023-01-01": 1300, - "2015-01-01": 1300 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1811.46174879869, - "2034-01-01": 1776.38443547029, - "2033-01-01": 1741.74017539286, - "2032-01-01": 1707.96202181736, - "2031-01-01": 1675.04997474381, - "2030-01-01": 1642.57098092121, - "2029-01-01": 1610.52504034959, - "2028-01-01": 1578.91215302893, - "2027-01-01": 1546.86621245731, - "2026-01-01": 1509.66693819917, - "2025-01-01": 1486.93669481128, - "2024-01-01": 1454.66701005999, - "2023-01-01": 1376, - "2015-01-01": 1376 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1903.61459939165, - "2034-01-01": 1866.7528297166, - "2033-01-01": 1830.34614361779, - "2032-01-01": 1794.84962467145, - "2031-01-01": 1760.26327287757, - "2030-01-01": 1726.13200465994, - "2029-01-01": 1692.45582001854, - "2028-01-01": 1659.23471895337, - "2027-01-01": 1625.55853431197, - "2026-01-01": 1586.46685511337, - "2025-01-01": 1562.58027666941, - "2024-01-01": 1528.66896551362, - "2023-01-01": 1446, - "2015-01-01": 1446 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1990.50157280786, - "2034-01-01": 1951.95731572026, - "2033-01-01": 1913.88891365843, - "2032-01-01": 1876.77222164815, - "2031-01-01": 1840.60723968941, - "2030-01-01": 1804.91811275645, - "2029-01-01": 1769.70484084926, - "2028-01-01": 1734.96742396784, - "2027-01-01": 1699.75415206065, - "2026-01-01": 1658.87820534676, - "2025-01-01": 1633.90136813565, - "2024-01-01": 1598.44223779848, - "2023-01-01": 1512, - "2015-01-01": 1512 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2103.71793210778, - "2034-01-01": 2062.98134293716, - "2033-01-01": 2022.74767462049, - "2032-01-01": 1983.51984801174, - "2031-01-01": 1945.2978631109, - "2030-01-01": 1907.57879906403, - "2029-01-01": 1870.36265587111, - "2028-01-01": 1833.64943353215, - "2027-01-01": 1796.43329033923, - "2026-01-01": 1753.23238898421, - "2025-01-01": 1726.83491156136, - "2024-01-01": 1689.35892592723, - "2023-01-01": 1598, - "2015-01-01": 1598 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2249.84602376233, - "2034-01-01": 2206.27979667059, - "2033-01-01": 2163.2514242343, - "2032-01-01": 2121.29876110892, - "2031-01-01": 2080.42180729445, - "2030-01-01": 2040.08270813543, - "2029-01-01": 2000.28146363187, - "2028-01-01": 1961.01807378376, - "2027-01-01": 1921.21682928019, - "2026-01-01": 1875.01511437673, - "2025-01-01": 1846.7840199364, - "2024-01-01": 1806.70488386085, - "2023-01-01": 1709, - "2015-01-01": 1709 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2384.12589176921, - "2034-01-01": 2337.95945685807, - "2033-01-01": 2292.36297793348, - "2032-01-01": 2247.90641098201, - "2031-01-01": 2204.58975600366, - "2030-01-01": 2161.84305701186, - "2029-01-01": 2119.66631400662, - "2028-01-01": 2078.05952698793, - "2027-01-01": 2035.88278398269, - "2026-01-01": 1986.92356473742, - "2025-01-01": 1957.00752492967, - "2024-01-01": 1914.53630466471, - "2023-01-01": 1811, - "2015-01-01": 1811 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2506.55753612842, - "2034-01-01": 2458.02032349959, - "2033-01-01": 2410.08233571803, - "2032-01-01": 2363.34279763101, - "2031-01-01": 2317.80170923852, - "2030-01-01": 2272.85984569331, - "2029-01-01": 2228.51720699536, - "2028-01-01": 2184.77379314469, - "2027-01-01": 2140.43115444674, - "2026-01-01": 2088.95774006629, - "2025-01-01": 2057.50542654119, - "2024-01-01": 2012.85318833882, - "2023-01-01": 1904, - "2015-01-01": 1904 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2621.09036472252, - "2034-01-01": 2570.33532777714, - "2033-01-01": 2520.20689622615, - "2032-01-01": 2471.33167546393, - "2031-01-01": 2423.70966549049, - "2030-01-01": 2376.71426091144, - "2029-01-01": 2330.34546172677, - "2028-01-01": 2284.60326793649, - "2027-01-01": 2238.23446875182, - "2026-01-01": 2184.40906537394, - "2025-01-01": 2151.51959256487, - "2024-01-01": 2104.82704725977, - "2023-01-01": 1991, - "2015-01-01": 1991 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2739.57260119918, - "2034-01-01": 2686.52326323668, - "2033-01-01": 2634.12885537249, - "2032-01-01": 2583.0443077049, - "2031-01-01": 2533.26962023391, - "2030-01-01": 2484.14986286123, - "2029-01-01": 2435.68503558684, - "2028-01-01": 2387.87513841076, - "2027-01-01": 2339.41031113638, - "2026-01-01": 2283.1518156922, - "2025-01-01": 2248.77562638247, - "2024-01-01": 2199.9724185573, - "2023-01-01": 2081, - "2015-01-01": 2081 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2865.95365344095, - "2034-01-01": 2810.45706106019, - "2033-01-01": 2755.64561179525, - "2032-01-01": 2702.20444876192, - "2031-01-01": 2650.13357196022, - "2030-01-01": 2598.74783827433, - "2029-01-01": 2548.04724770426, - "2028-01-01": 2498.03180024999, - "2027-01-01": 2447.33120967992, - "2026-01-01": 2388.47741603168, - "2025-01-01": 2352.51539578791, - "2024-01-01": 2301.46081460799, - "2023-01-01": 2177, - "2015-01-01": 2177 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2983.11942062343, - "2034-01-01": 2925.35401945907, - "2033-01-01": 2868.30177139551, - "2032-01-01": 2812.67582953354, - "2031-01-01": 2758.47619387316, - "2030-01-01": 2704.98971131357, - "2029-01-01": 2652.21638185477, - "2028-01-01": 2600.15620549678, - "2027-01-01": 2547.38287603798, - "2026-01-01": 2486.12302467973, - "2025-01-01": 2448.69080700753, - "2024-01-01": 2395.54901511333, - "2023-01-01": 2266, - "2015-01-01": 2266 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3095.01931062916, - "2034-01-01": 3035.0870696153, - "2033-01-01": 2975.89473281149, - "2032-01-01": 2918.18220442778, - "2031-01-01": 2861.94948446416, - "2030-01-01": 2806.45666871059, - "2029-01-01": 2751.70375716707, - "2028-01-01": 2697.69074983359, - "2027-01-01": 2642.93783829007, - "2026-01-01": 2579.38006664698, - "2025-01-01": 2540.54372783526, - "2024-01-01": 2485.40853244988, - "2023-01-01": 2351, - "2015-01-01": 2351 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3742.72220336823, - "2034-01-01": 3670.24778346078, - "2033-01-01": 3598.66810947813, - "2032-01-01": 3528.87792734504, - "2031-01-01": 3460.87723706151, - "2030-01-01": 3393.77129270277, - "2029-01-01": 3327.56009426881, - "2028-01-01": 3262.24364175963, - "2027-01-01": 3196.03244332568, - "2026-01-01": 3119.1737683868, - "2025-01-01": 3072.21004603814, - "2024-01-01": 3005.5365622097, - "2023-01-01": 2843, - "2015-01-01": 2843 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 867.553264867978, - "2034-01-01": 850.753882975961, - "2033-01-01": 834.161900860389, - "2032-01-01": 817.984718297706, - "2031-01-01": 802.222335287913, - "2030-01-01": 786.667352054564, - "2029-01-01": 771.319768597659, - "2028-01-01": 756.1795849172, - "2027-01-01": 740.832001460296, - "2026-01-01": 723.0163606637, - "2025-01-01": 712.130292064415, - "2024-01-01": 696.675552056347, - "2023-01-01": 659, - "2015-01-01": 659 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1217.73409712121, - "2034-01-01": 1194.15378111193, - "2033-01-01": 1170.86458011511, - "2032-01-01": 1148.15760914321, - "2031-01-01": 1126.03286819624, - "2030-01-01": 1104.19924226172, - "2029-01-01": 1082.65673133966, - "2028-01-01": 1061.40533543006, - "2027-01-01": 1039.862824508, - "2026-01-01": 1014.85604493767, - "2025-01-01": 999.575903125317, - "2024-01-01": 977.882982780153, - "2023-01-01": 925, - "2015-01-01": 925 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1392.82451324783, - "2034-01-01": 1365.85373017992, - "2033-01-01": 1339.21591974248, - "2032-01-01": 1313.24405456597, - "2031-01-01": 1287.9381346504, - "2030-01-01": 1262.96518736529, - "2029-01-01": 1238.32521271066, - "2028-01-01": 1214.01821068649, - "2027-01-01": 1189.37823603186, - "2026-01-01": 1160.77588707465, - "2025-01-01": 1143.29870865577, - "2024-01-01": 1118.48669814206, - "2023-01-01": 1058, - "2015-01-01": 1058 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1538.95260490238, - "2034-01-01": 1509.15218391335, - "2033-01-01": 1479.71966935629, - "2032-01-01": 1451.02296766315, - "2031-01-01": 1423.06207883395, - "2030-01-01": 1395.4690964367, - "2029-01-01": 1368.24402047142, - "2028-01-01": 1341.3868509381, - "2027-01-01": 1314.16177497282, - "2026-01-01": 1282.55861246717, - "2025-01-01": 1263.24781703081, - "2024-01-01": 1235.83265607568, - "2023-01-01": 1169, - "2015-01-01": 1169 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1667.96659573252, - "2034-01-01": 1635.66793585818, - "2033-01-01": 1603.76802487119, - "2032-01-01": 1572.66561165887, - "2031-01-01": 1542.36069622122, - "2030-01-01": 1512.45452967091, - "2029-01-01": 1482.94711200794, - "2028-01-01": 1453.83844323231, - "2027-01-01": 1424.33102556934, - "2026-01-01": 1390.07849614705, - "2025-01-01": 1369.14883163219, - "2024-01-01": 1339.43539371076, - "2023-01-01": 1267, - "2015-01-01": 1267 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1783.8158936208, - "2034-01-01": 1749.2739171964, - "2033-01-01": 1715.15838492538, - "2032-01-01": 1681.89574096114, - "2031-01-01": 1649.48598530367, - "2030-01-01": 1617.5026737996, - "2029-01-01": 1585.94580644891, - "2028-01-01": 1554.8153832516, - "2027-01-01": 1523.25851590091, - "2026-01-01": 1486.62696312491, - "2025-01-01": 1464.24362025384, - "2024-01-01": 1432.4664234239, - "2023-01-01": 1355, - "2015-01-01": 1355 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1887.81696786143, - "2034-01-01": 1851.26110498866, - "2033-01-01": 1815.15654906494, - "2032-01-01": 1779.95460703932, - "2031-01-01": 1745.65527891179, - "2030-01-01": 1711.8072577333, - "2029-01-01": 1678.41054350386, - "2028-01-01": 1645.46513622347, - "2027-01-01": 1612.06842199403, - "2026-01-01": 1573.30115507094, - "2025-01-01": 1549.61280549373, - "2024-01-01": 1515.98291600729, - "2023-01-01": 1434, - "2015-01-01": 1434 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1983.91922633694, - "2034-01-01": 1945.50243041695, - "2033-01-01": 1907.55991592808, - "2032-01-01": 1870.56596430143, - "2031-01-01": 1834.520575537, - "2030-01-01": 1798.94946820368, - "2029-01-01": 1763.85264230148, - "2028-01-01": 1729.23009783038, - "2027-01-01": 1694.13327192817, - "2026-01-01": 1653.39249699575, - "2025-01-01": 1628.49825514579, - "2024-01-01": 1593.1563838375, - "2023-01-01": 1507, - "2015-01-01": 1507 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2073.43913834153, - "2034-01-01": 2033.28887054194, - "2033-01-01": 1993.63428506087, - "2032-01-01": 1954.97106421682, - "2031-01-01": 1917.29920800981, - "2030-01-01": 1880.1230341213, - "2029-01-01": 1843.44254255131, - "2028-01-01": 1807.25773329983, - "2027-01-01": 1770.57724172984, - "2026-01-01": 1727.99813056954, - "2025-01-01": 1701.98059180797, - "2024-01-01": 1665.04399770675, - "2023-01-01": 1575, - "2015-01-01": 1575 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2191.92137481818, - "2034-01-01": 2149.47680600148, - "2033-01-01": 2107.5562442072, - "2032-01-01": 2066.68369645779, - "2031-01-01": 2026.85916275322, - "2030-01-01": 1987.55863607109, - "2029-01-01": 1948.78211641139, - "2028-01-01": 1910.52960377411, - "2027-01-01": 1871.7530841144, - "2026-01-01": 1826.7408808878, - "2025-01-01": 1799.23662562557, - "2024-01-01": 1760.18936900428, - "2023-01-01": 1665, - "2015-01-01": 1665 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2343.31534364947, - "2034-01-01": 2297.93916797756, - "2033-01-01": 2253.1231920053, - "2032-01-01": 2209.42761543235, - "2031-01-01": 2166.8524382587, - "2030-01-01": 2124.83746078471, - "2029-01-01": 2083.38268301037, - "2028-01-01": 2042.48810493568, - "2027-01-01": 2001.03332716135, - "2026-01-01": 1952.91217296113, - "2025-01-01": 1923.5082243925, - "2024-01-01": 1881.76401010667, - "2023-01-01": 1780, - "2015-01-01": 1780 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2482.86108883309, - "2034-01-01": 2434.78273640768, - "2033-01-01": 2387.29794388876, - "2032-01-01": 2341.00027118281, - "2031-01-01": 2295.88971828984, - "2030-01-01": 2251.37272530335, - "2029-01-01": 2207.44929222335, - "2028-01-01": 2164.11941904983, - "2027-01-01": 2120.19598596983, - "2026-01-01": 2069.20919000264, - "2025-01-01": 2038.05421977767, - "2024-01-01": 1993.82411407932, - "2023-01-01": 1886, - "2015-01-01": 1886 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2610.55861036904, - "2034-01-01": 2560.00751129185, - "2033-01-01": 2510.08049985759, - "2032-01-01": 2461.40166370918, - "2031-01-01": 2413.97100284663, - "2030-01-01": 2367.16442962701, - "2029-01-01": 2320.98194405032, - "2028-01-01": 2275.42354611655, - "2027-01-01": 2229.24106053986, - "2026-01-01": 2175.63193201232, - "2025-01-01": 2142.87461178108, - "2024-01-01": 2096.36968092221, - "2023-01-01": 1983, - "2015-01-01": 1983 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2730.35731613989, - "2034-01-01": 2677.48642381205, - "2033-01-01": 2625.26825854999, - "2032-01-01": 2574.35554741949, - "2031-01-01": 2524.74829042053, - "2030-01-01": 2475.79376048735, - "2029-01-01": 2427.49195761995, - "2028-01-01": 2379.84288181832, - "2027-01-01": 2331.54107895092, - "2026-01-01": 2275.47182400078, - "2025-01-01": 2241.21126819666, - "2024-01-01": 2192.57222301193, - "2023-01-01": 2074, - "2015-01-01": 2074 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2852.7889604991, - "2034-01-01": 2797.54729045358, - "2033-01-01": 2742.98761633454, - "2032-01-01": 2689.79193406848, - "2031-01-01": 2637.9602436554, - "2030-01-01": 2586.8105491688, - "2029-01-01": 2536.34285060869, - "2028-01-01": 2486.55714797507, - "2027-01-01": 2436.08944941496, - "2026-01-01": 2377.50599932965, - "2025-01-01": 2341.70916980817, - "2024-01-01": 2290.88910668605, - "2023-01-01": 2167, - "2015-01-01": 2167 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2984.43588991761, - "2034-01-01": 2926.64499651973, - "2033-01-01": 2869.56757094158, - "2032-01-01": 2813.91708100288, - "2031-01-01": 2759.69352670364, - "2030-01-01": 2706.18344022412, - "2029-01-01": 2653.38682156433, - "2028-01-01": 2601.30367072427, - "2027-01-01": 2548.50705206448, - "2026-01-01": 2487.22016634994, - "2025-01-01": 2449.77142960551, - "2024-01-01": 2396.60618590552, - "2023-01-01": 2267, - "2015-01-01": 2267 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3106.86753427682, - "2034-01-01": 3046.70586316126, - "2033-01-01": 2987.28692872613, - "2032-01-01": 2929.35346765188, - "2031-01-01": 2872.9054799385, - "2030-01-01": 2817.20022890557, - "2029-01-01": 2762.23771455307, - "2028-01-01": 2708.01793688102, - "2027-01-01": 2653.05542252853, - "2026-01-01": 2589.25434167881, - "2025-01-01": 2550.26933121702, - "2024-01-01": 2494.92306957963, - "2023-01-01": 2360, - "2015-01-01": 2360 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3222.71683216511, - "2034-01-01": 3160.31184449947, - "2033-01-01": 3098.67728878032, - "2032-01-01": 3038.58359695415, - "2031-01-01": 2980.03076902096, - "2030-01-01": 2922.24837303425, - "2029-01-01": 2865.23640899404, - "2028-01-01": 2808.99487690031, - "2027-01-01": 2751.9829128601, - "2026-01-01": 2685.80280865666, - "2025-01-01": 2645.36411983868, - "2024-01-01": 2587.95409929277, - "2023-01-01": 2448, - "2015-01-01": 2448 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3896.74911078788, - "2034-01-01": 3821.29209955819, - "2033-01-01": 3746.76665636836, - "2032-01-01": 3674.10434925829, - "2031-01-01": 3603.30517822795, - "2030-01-01": 3533.43757523749, - "2029-01-01": 3464.50154028691, - "2028-01-01": 3396.49707337619, - "2027-01-01": 3327.56103842561, - "2026-01-01": 3247.53934380054, - "2025-01-01": 3198.64289000101, - "2024-01-01": 3129.22554489649, - "2023-01-01": 2960, - "2015-01-01": 2960 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 917.579098047011, - "2034-01-01": 899.8110112811, - "2033-01-01": 882.262283611064, - "2032-01-01": 865.152274132779, - "2031-01-01": 848.480982846244, - "2030-01-01": 832.029050655586, - "2029-01-01": 815.796477560802, - "2028-01-01": 799.783263561894, - "2027-01-01": 783.550690467111, - "2026-01-01": 764.70774413141, - "2025-01-01": 753.193950787401, - "2024-01-01": 736.848042159748, - "2023-01-01": 697, - "2015-01-01": 697 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1287.50696971302, - "2034-01-01": 1262.575565327, - "2033-01-01": 1237.95195605684, - "2032-01-01": 1213.94393701845, - "2031-01-01": 1190.5515082118, - "2030-01-01": 1167.46687452104, - "2029-01-01": 1144.69003594615, - "2028-01-01": 1122.22099248713, - "2027-01-01": 1099.44415391224, - "2026-01-01": 1073.00455345842, - "2025-01-01": 1056.8489008179, - "2024-01-01": 1033.91303476648, - "2023-01-01": 978, - "2015-01-01": 978 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1471.81267089894, - "2034-01-01": 1443.31235381961, - "2033-01-01": 1415.1638925067, - "2032-01-01": 1387.71914272661, - "2031-01-01": 1360.97810447934, - "2030-01-01": 1334.58892199849, - "2029-01-01": 1308.55159528404, - "2028-01-01": 1282.86612433601, - "2027-01-01": 1256.82879762156, - "2026-01-01": 1226.60438728682, - "2025-01-01": 1208.13606453417, - "2024-01-01": 1181.91694567374, - "2023-01-01": 1118, - "2015-01-01": 1118 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1625.83957831859, - "2034-01-01": 1594.35666991701, - "2033-01-01": 1563.26243939693, - "2032-01-01": 1532.94556463986, - "2031-01-01": 1503.40604564578, - "2030-01-01": 1474.25520453321, - "2029-01-01": 1445.49304130214, - "2028-01-01": 1417.11955595257, - "2027-01-01": 1388.3573927215, - "2026-01-01": 1354.96996270056, - "2025-01-01": 1334.56890849704, - "2024-01-01": 1305.60592836053, - "2023-01-01": 1235, - "2015-01-01": 1235 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1762.75238491384, - "2034-01-01": 1728.61828422581, - "2033-01-01": 1694.90559218826, - "2032-01-01": 1662.03571745164, - "2031-01-01": 1630.00866001596, - "2030-01-01": 1598.40301123075, - "2029-01-01": 1567.218771096, - "2028-01-01": 1536.45593961173, - "2027-01-01": 1505.27169947699, - "2026-01-01": 1469.07269640166, - "2025-01-01": 1446.95365868627, - "2024-01-01": 1415.55169074878, - "2023-01-01": 1339, - "2015-01-01": 1339 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1882.55109068469, - "2034-01-01": 1846.09719674602, - "2033-01-01": 1810.09335088066, - "2032-01-01": 1774.98960116194, - "2031-01-01": 1740.78594758986, - "2030-01-01": 1707.03234209109, - "2029-01-01": 1673.72878466563, - "2028-01-01": 1640.8752753135, - "2027-01-01": 1607.57171788805, - "2026-01-01": 1568.91258839012, - "2025-01-01": 1545.29031510184, - "2024-01-01": 1511.75423283851, - "2023-01-01": 1430, - "2015-01-01": 1430 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1993.13451139623, - "2034-01-01": 1954.53926984159, - "2033-01-01": 1916.42051275057, - "2032-01-01": 1879.25472458684, - "2031-01-01": 1843.04190535038, - "2030-01-01": 1807.30557057756, - "2029-01-01": 1772.04572026837, - "2028-01-01": 1737.26235442282, - "2027-01-01": 1702.00250411364, - "2026-01-01": 1661.07248868717, - "2025-01-01": 1636.0626133316, - "2024-01-01": 1600.55657938287, - "2023-01-01": 1514, - "2015-01-01": 1514 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2094.50264704849, - "2034-01-01": 2053.94450351252, - "2033-01-01": 2013.88707779799, - "2032-01-01": 1974.83108772633, - "2031-01-01": 1936.77653329753, - "2030-01-01": 1899.22269669015, - "2029-01-01": 1862.16957790421, - "2028-01-01": 1825.6171769397, - "2027-01-01": 1788.56405815376, - "2026-01-01": 1745.55239729279, - "2025-01-01": 1719.27055337554, - "2024-01-01": 1681.95873038186, - "2023-01-01": 1591, - "2015-01-01": 1591 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2189.28843622981, - "2034-01-01": 2146.89485188016, - "2033-01-01": 2105.02464511506, - "2032-01-01": 2064.2011935191, - "2031-01-01": 2024.42449709226, - "2030-01-01": 1985.17117824998, - "2029-01-01": 1946.44123699227, - "2028-01-01": 1908.23467331912, - "2027-01-01": 1869.50473206141, - "2026-01-01": 1824.5465975474, - "2025-01-01": 1797.07538042962, - "2024-01-01": 1758.07502741989, - "2023-01-01": 1663, - "2015-01-01": 1663 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2313.03654988321, - "2034-01-01": 2268.24669558234, - "2033-01-01": 2224.00980244568, - "2032-01-01": 2180.87883163743, - "2031-01-01": 2138.85378315761, - "2030-01-01": 2097.38169584199, - "2029-01-01": 2056.46256969057, - "2028-01-01": 2016.09640470337, - "2027-01-01": 1975.17727855196, - "2026-01-01": 1927.67791454647, - "2025-01-01": 1898.65390463911, - "2024-01-01": 1857.44908188619, - "2023-01-01": 1757, - "2015-01-01": 1757 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2473.64580377379, - "2034-01-01": 2425.74589698305, - "2033-01-01": 2378.43734706627, - "2032-01-01": 2332.3115108974, - "2031-01-01": 2287.36838847646, - "2030-01-01": 2243.01662292948, - "2029-01-01": 2199.25621425645, - "2028-01-01": 2156.08716245739, - "2027-01-01": 2112.32675378436, - "2026-01-01": 2061.52919831122, - "2025-01-01": 2030.48986159186, - "2024-01-01": 1986.42391853395, - "2023-01-01": 1879, - "2015-01-01": 1879 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2619.77389542834, - "2034-01-01": 2569.04435071648, - "2033-01-01": 2518.94109668008, - "2032-01-01": 2470.09042399459, - "2031-01-01": 2422.49233266001, - "2030-01-01": 2375.52053200088, - "2029-01-01": 2329.17502201721, - "2028-01-01": 2283.45580270899, - "2027-01-01": 2237.11029272532, - "2026-01-01": 2183.31192370374, - "2025-01-01": 2150.4389699669, - "2024-01-01": 2103.76987646757, - "2023-01-01": 1990, - "2015-01-01": 1990 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2754.05376343522, - "2034-01-01": 2700.72401090396, - "2033-01-01": 2648.05265037926, - "2032-01-01": 2596.69807386768, - "2031-01-01": 2546.66028136922, - "2030-01-01": 2497.28088087731, - "2029-01-01": 2448.55987239196, - "2028-01-01": 2400.49725591317, - "2027-01-01": 2351.77624742783, - "2026-01-01": 2295.22037406443, - "2025-01-01": 2260.66247496018, - "2024-01-01": 2211.60129727144, - "2023-01-01": 2092, - "2015-01-01": 2092 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2880.43481567699, - "2034-01-01": 2824.65780872747, - "2033-01-01": 2769.56940680202, - "2032-01-01": 2715.85821492471, - "2031-01-01": 2663.52423309553, - "2030-01-01": 2611.87885629042, - "2029-01-01": 2560.92208450938, - "2028-01-01": 2510.6539177524, - "2027-01-01": 2459.69714597136, - "2026-01-01": 2400.54597440391, - "2025-01-01": 2364.40224436561, - "2024-01-01": 2313.08969332214, - "2023-01-01": 2188, - "2015-01-01": 2188 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3010.76527580131, - "2034-01-01": 2952.46453773296, - "2033-01-01": 2894.88356186299, - "2032-01-01": 2838.74211038976, - "2031-01-01": 2784.04018331329, - "2030-01-01": 2730.05801843519, - "2029-01-01": 2676.79561575546, - "2028-01-01": 2624.25297527411, - "2027-01-01": 2570.99057259438, - "2026-01-01": 2509.162999754, - "2025-01-01": 2471.38388156497, - "2024-01-01": 2417.74960174942, - "2023-01-01": 2287, - "2015-01-01": 2287 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3147.67808239656, - "2034-01-01": 3086.72615204176, - "2033-01-01": 3026.52671465431, - "2032-01-01": 2967.83226320154, - "2031-01-01": 2910.64279768346, - "2030-01-01": 2854.20582513272, - "2029-01-01": 2798.52134554932, - "2028-01-01": 2743.58935893327, - "2027-01-01": 2687.90487934987, - "2026-01-01": 2623.26573345509, - "2025-01-01": 2583.7686317542, - "2024-01-01": 2527.69536413767, - "2023-01-01": 2391, - "2015-01-01": 2391 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3276.6920732267, - "2034-01-01": 3213.2419039866, - "2033-01-01": 3150.57507016921, - "2032-01-01": 3089.47490719725, - "2031-01-01": 3029.94141507074, - "2030-01-01": 2971.19125836693, - "2029-01-01": 2913.22443708585, - "2028-01-01": 2856.04095122748, - "2027-01-01": 2798.0741299464, - "2026-01-01": 2730.78561713498, - "2025-01-01": 2689.66964635558, - "2024-01-01": 2631.29810177276, - "2023-01-01": 2489, - "2015-01-01": 2489 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3399.12371758592, - "2034-01-01": 3333.30277062812, - "2033-01-01": 3268.29442795375, - "2032-01-01": 3204.91129384625, - "2031-01-01": 3143.1533683056, - "2030-01-01": 3082.20804704838, - "2029-01-01": 3022.07533007459, - "2028-01-01": 2962.75521738423, - "2027-01-01": 2902.62250041045, - "2026-01-01": 2832.81979246385, - "2025-01-01": 2790.1675479671, - "2024-01-01": 2729.61498544687, - "2023-01-01": 2582, - "2015-01-01": 2582 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WA.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 4108.70066715168, - "2034-01-01": 4029.1394063247, - "2033-01-01": 3950.5603832857, - "2032-01-01": 3873.94583582267, - "2031-01-01": 3799.29576393562, - "2030-01-01": 3725.62792983656, - "2029-01-01": 3652.94233352549, - "2028-01-01": 3581.2389750024, - "2027-01-01": 3508.55337869132, - "2026-01-01": 3424.1791527032, - "2025-01-01": 3372.62312827472, - "2024-01-01": 3299.43004243985, - "2023-01-01": 3121, - "2015-01-01": 3121 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV", - "description": null, - "label": "WV", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 832.00859392498, - "2034-01-01": 815.897502338099, - "2033-01-01": 799.985313116488, - "2032-01-01": 784.470928625418, - "2031-01-01": 769.354348864887, - "2030-01-01": 754.436671469627, - "2029-01-01": 739.717896439637, - "2028-01-01": 725.198023774917, - "2027-01-01": 710.479248744927, - "2026-01-01": 693.393535568222, - "2025-01-01": 682.953481919135, - "2024-01-01": 668.131940667089, - "2023-01-01": 632, - "2015-01-01": 632 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1167.70826394218, - "2034-01-01": 1145.09665280679, - "2033-01-01": 1122.76419736444, - "2032-01-01": 1100.99005330814, - "2031-01-01": 1079.7742206379, - "2030-01-01": 1058.8375436607, - "2029-01-01": 1038.18002237652, - "2028-01-01": 1017.80165678537, - "2027-01-01": 997.144135501187, - "2026-01-01": 973.164661469958, - "2025-01-01": 958.512244402331, - "2024-01-01": 937.710492676752, - "2023-01-01": 887, - "2015-01-01": 887 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1336.21633359787, - "2034-01-01": 1310.34171657147, - "2033-01-01": 1284.78653926145, - "2032-01-01": 1259.87024138418, - "2031-01-01": 1235.59282293965, - "2030-01-01": 1211.63484421151, - "2029-01-01": 1187.99630519973, - "2028-01-01": 1164.67720590434, - "2027-01-01": 1141.03866689256, - "2026-01-01": 1113.59879525593, - "2025-01-01": 1096.83193694291, - "2024-01-01": 1073.02835407768, - "2023-01-01": 1015, - "2015-01-01": 1015 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1477.07854807568, - "2034-01-01": 1448.47626206226, - "2033-01-01": 1420.22709069098, - "2032-01-01": 1392.68414860399, - "2031-01-01": 1365.84743580127, - "2030-01-01": 1339.3638376407, - "2029-01-01": 1313.23335412227, - "2028-01-01": 1287.45598524598, - "2027-01-01": 1261.32550172754, - "2026-01-01": 1230.99295396764, - "2025-01-01": 1212.45855492606, - "2024-01-01": 1186.14562884252, - "2023-01-01": 1122, - "2015-01-01": 1122 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1600.82666172908, - "2034-01-01": 1569.82810576444, - "2033-01-01": 1539.2122480216, - "2032-01-01": 1509.36178672232, - "2031-01-01": 1480.27672186662, - "2030-01-01": 1451.5743552327, - "2029-01-01": 1423.25468682057, - "2028-01-01": 1395.31771663022, - "2027-01-01": 1366.99804821809, - "2026-01-01": 1334.12427096671, - "2025-01-01": 1314.03707913555, - "2024-01-01": 1285.51968330883, - "2023-01-01": 1216, - "2015-01-01": 1216 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1711.41008244062, - "2034-01-01": 1678.27017886001, - "2033-01-01": 1645.53940989151, - "2032-01-01": 1613.62691014722, - "2031-01-01": 1582.53267962714, - "2030-01-01": 1551.84758371917, - "2029-01-01": 1521.5716224233, - "2028-01-01": 1491.70479573954, - "2027-01-01": 1461.42883444368, - "2026-01-01": 1426.28417126375, - "2025-01-01": 1404.80937736531, - "2024-01-01": 1374.32202985319, - "2023-01-01": 1300, - "2015-01-01": 1300 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1811.46174879869, - "2034-01-01": 1776.38443547029, - "2033-01-01": 1741.74017539286, - "2032-01-01": 1707.96202181736, - "2031-01-01": 1675.04997474381, - "2030-01-01": 1642.57098092121, - "2029-01-01": 1610.52504034959, - "2028-01-01": 1578.91215302893, - "2027-01-01": 1546.86621245731, - "2026-01-01": 1509.66693819917, - "2025-01-01": 1486.93669481128, - "2024-01-01": 1454.66701005999, - "2023-01-01": 1376, - "2015-01-01": 1376 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1903.61459939165, - "2034-01-01": 1866.7528297166, - "2033-01-01": 1830.34614361779, - "2032-01-01": 1794.84962467145, - "2031-01-01": 1760.26327287757, - "2030-01-01": 1726.13200465994, - "2029-01-01": 1692.45582001854, - "2028-01-01": 1659.23471895337, - "2027-01-01": 1625.55853431197, - "2026-01-01": 1586.46685511337, - "2025-01-01": 1562.58027666941, - "2024-01-01": 1528.66896551362, - "2023-01-01": 1446, - "2015-01-01": 1446 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1990.50157280786, - "2034-01-01": 1951.95731572026, - "2033-01-01": 1913.88891365843, - "2032-01-01": 1876.77222164815, - "2031-01-01": 1840.60723968941, - "2030-01-01": 1804.91811275645, - "2029-01-01": 1769.70484084926, - "2028-01-01": 1734.96742396784, - "2027-01-01": 1699.75415206065, - "2026-01-01": 1658.87820534676, - "2025-01-01": 1633.90136813565, - "2024-01-01": 1598.44223779848, - "2023-01-01": 1512, - "2015-01-01": 1512 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2103.71793210778, - "2034-01-01": 2062.98134293716, - "2033-01-01": 2022.74767462049, - "2032-01-01": 1983.51984801174, - "2031-01-01": 1945.2978631109, - "2030-01-01": 1907.57879906403, - "2029-01-01": 1870.36265587111, - "2028-01-01": 1833.64943353215, - "2027-01-01": 1796.43329033923, - "2026-01-01": 1753.23238898421, - "2025-01-01": 1726.83491156136, - "2024-01-01": 1689.35892592723, - "2023-01-01": 1598, - "2015-01-01": 1598 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2249.84602376233, - "2034-01-01": 2206.27979667059, - "2033-01-01": 2163.2514242343, - "2032-01-01": 2121.29876110892, - "2031-01-01": 2080.42180729445, - "2030-01-01": 2040.08270813543, - "2029-01-01": 2000.28146363187, - "2028-01-01": 1961.01807378376, - "2027-01-01": 1921.21682928019, - "2026-01-01": 1875.01511437673, - "2025-01-01": 1846.7840199364, - "2024-01-01": 1806.70488386085, - "2023-01-01": 1709, - "2015-01-01": 1709 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2384.12589176921, - "2034-01-01": 2337.95945685807, - "2033-01-01": 2292.36297793348, - "2032-01-01": 2247.90641098201, - "2031-01-01": 2204.58975600366, - "2030-01-01": 2161.84305701186, - "2029-01-01": 2119.66631400662, - "2028-01-01": 2078.05952698793, - "2027-01-01": 2035.88278398269, - "2026-01-01": 1986.92356473742, - "2025-01-01": 1957.00752492967, - "2024-01-01": 1914.53630466471, - "2023-01-01": 1811, - "2015-01-01": 1811 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2506.55753612842, - "2034-01-01": 2458.02032349959, - "2033-01-01": 2410.08233571803, - "2032-01-01": 2363.34279763101, - "2031-01-01": 2317.80170923852, - "2030-01-01": 2272.85984569331, - "2029-01-01": 2228.51720699536, - "2028-01-01": 2184.77379314469, - "2027-01-01": 2140.43115444674, - "2026-01-01": 2088.95774006629, - "2025-01-01": 2057.50542654119, - "2024-01-01": 2012.85318833882, - "2023-01-01": 1904, - "2015-01-01": 1904 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2621.09036472252, - "2034-01-01": 2570.33532777714, - "2033-01-01": 2520.20689622615, - "2032-01-01": 2471.33167546393, - "2031-01-01": 2423.70966549049, - "2030-01-01": 2376.71426091144, - "2029-01-01": 2330.34546172677, - "2028-01-01": 2284.60326793649, - "2027-01-01": 2238.23446875182, - "2026-01-01": 2184.40906537394, - "2025-01-01": 2151.51959256487, - "2024-01-01": 2104.82704725977, - "2023-01-01": 1991, - "2015-01-01": 1991 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2739.57260119918, - "2034-01-01": 2686.52326323668, - "2033-01-01": 2634.12885537249, - "2032-01-01": 2583.0443077049, - "2031-01-01": 2533.26962023391, - "2030-01-01": 2484.14986286123, - "2029-01-01": 2435.68503558684, - "2028-01-01": 2387.87513841076, - "2027-01-01": 2339.41031113638, - "2026-01-01": 2283.1518156922, - "2025-01-01": 2248.77562638247, - "2024-01-01": 2199.9724185573, - "2023-01-01": 2081, - "2015-01-01": 2081 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2865.95365344095, - "2034-01-01": 2810.45706106019, - "2033-01-01": 2755.64561179525, - "2032-01-01": 2702.20444876192, - "2031-01-01": 2650.13357196022, - "2030-01-01": 2598.74783827433, - "2029-01-01": 2548.04724770426, - "2028-01-01": 2498.03180024999, - "2027-01-01": 2447.33120967992, - "2026-01-01": 2388.47741603168, - "2025-01-01": 2352.51539578791, - "2024-01-01": 2301.46081460799, - "2023-01-01": 2177, - "2015-01-01": 2177 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2983.11942062343, - "2034-01-01": 2925.35401945907, - "2033-01-01": 2868.30177139551, - "2032-01-01": 2812.67582953354, - "2031-01-01": 2758.47619387316, - "2030-01-01": 2704.98971131357, - "2029-01-01": 2652.21638185477, - "2028-01-01": 2600.15620549678, - "2027-01-01": 2547.38287603798, - "2026-01-01": 2486.12302467973, - "2025-01-01": 2448.69080700753, - "2024-01-01": 2395.54901511333, - "2023-01-01": 2266, - "2015-01-01": 2266 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3095.01931062916, - "2034-01-01": 3035.0870696153, - "2033-01-01": 2975.89473281149, - "2032-01-01": 2918.18220442778, - "2031-01-01": 2861.94948446416, - "2030-01-01": 2806.45666871059, - "2029-01-01": 2751.70375716707, - "2028-01-01": 2697.69074983359, - "2027-01-01": 2642.93783829007, - "2026-01-01": 2579.38006664698, - "2025-01-01": 2540.54372783526, - "2024-01-01": 2485.40853244988, - "2023-01-01": 2351, - "2015-01-01": 2351 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3742.72220336823, - "2034-01-01": 3670.24778346078, - "2033-01-01": 3598.66810947813, - "2032-01-01": 3528.87792734504, - "2031-01-01": 3460.87723706151, - "2030-01-01": 3393.77129270277, - "2029-01-01": 3327.56009426881, - "2028-01-01": 3262.24364175963, - "2027-01-01": 3196.03244332568, - "2026-01-01": 3119.1737683868, - "2025-01-01": 3072.21004603814, - "2024-01-01": 3005.5365622097, - "2023-01-01": 2843, - "2015-01-01": 2843 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 867.553264867978, - "2034-01-01": 850.753882975961, - "2033-01-01": 834.161900860389, - "2032-01-01": 817.984718297706, - "2031-01-01": 802.222335287913, - "2030-01-01": 786.667352054564, - "2029-01-01": 771.319768597659, - "2028-01-01": 756.1795849172, - "2027-01-01": 740.832001460296, - "2026-01-01": 723.0163606637, - "2025-01-01": 712.130292064415, - "2024-01-01": 696.675552056347, - "2023-01-01": 659, - "2015-01-01": 659 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1217.73409712121, - "2034-01-01": 1194.15378111193, - "2033-01-01": 1170.86458011511, - "2032-01-01": 1148.15760914321, - "2031-01-01": 1126.03286819624, - "2030-01-01": 1104.19924226172, - "2029-01-01": 1082.65673133966, - "2028-01-01": 1061.40533543006, - "2027-01-01": 1039.862824508, - "2026-01-01": 1014.85604493767, - "2025-01-01": 999.575903125317, - "2024-01-01": 977.882982780153, - "2023-01-01": 925, - "2015-01-01": 925 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1392.82451324783, - "2034-01-01": 1365.85373017992, - "2033-01-01": 1339.21591974248, - "2032-01-01": 1313.24405456597, - "2031-01-01": 1287.9381346504, - "2030-01-01": 1262.96518736529, - "2029-01-01": 1238.32521271066, - "2028-01-01": 1214.01821068649, - "2027-01-01": 1189.37823603186, - "2026-01-01": 1160.77588707465, - "2025-01-01": 1143.29870865577, - "2024-01-01": 1118.48669814206, - "2023-01-01": 1058, - "2015-01-01": 1058 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1538.95260490238, - "2034-01-01": 1509.15218391335, - "2033-01-01": 1479.71966935629, - "2032-01-01": 1451.02296766315, - "2031-01-01": 1423.06207883395, - "2030-01-01": 1395.4690964367, - "2029-01-01": 1368.24402047142, - "2028-01-01": 1341.3868509381, - "2027-01-01": 1314.16177497282, - "2026-01-01": 1282.55861246717, - "2025-01-01": 1263.24781703081, - "2024-01-01": 1235.83265607568, - "2023-01-01": 1169, - "2015-01-01": 1169 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1667.96659573252, - "2034-01-01": 1635.66793585818, - "2033-01-01": 1603.76802487119, - "2032-01-01": 1572.66561165887, - "2031-01-01": 1542.36069622122, - "2030-01-01": 1512.45452967091, - "2029-01-01": 1482.94711200794, - "2028-01-01": 1453.83844323231, - "2027-01-01": 1424.33102556934, - "2026-01-01": 1390.07849614705, - "2025-01-01": 1369.14883163219, - "2024-01-01": 1339.43539371076, - "2023-01-01": 1267, - "2015-01-01": 1267 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1783.8158936208, - "2034-01-01": 1749.2739171964, - "2033-01-01": 1715.15838492538, - "2032-01-01": 1681.89574096114, - "2031-01-01": 1649.48598530367, - "2030-01-01": 1617.5026737996, - "2029-01-01": 1585.94580644891, - "2028-01-01": 1554.8153832516, - "2027-01-01": 1523.25851590091, - "2026-01-01": 1486.62696312491, - "2025-01-01": 1464.24362025384, - "2024-01-01": 1432.4664234239, - "2023-01-01": 1355, - "2015-01-01": 1355 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1887.81696786143, - "2034-01-01": 1851.26110498866, - "2033-01-01": 1815.15654906494, - "2032-01-01": 1779.95460703932, - "2031-01-01": 1745.65527891179, - "2030-01-01": 1711.8072577333, - "2029-01-01": 1678.41054350386, - "2028-01-01": 1645.46513622347, - "2027-01-01": 1612.06842199403, - "2026-01-01": 1573.30115507094, - "2025-01-01": 1549.61280549373, - "2024-01-01": 1515.98291600729, - "2023-01-01": 1434, - "2015-01-01": 1434 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1983.91922633694, - "2034-01-01": 1945.50243041695, - "2033-01-01": 1907.55991592808, - "2032-01-01": 1870.56596430143, - "2031-01-01": 1834.520575537, - "2030-01-01": 1798.94946820368, - "2029-01-01": 1763.85264230148, - "2028-01-01": 1729.23009783038, - "2027-01-01": 1694.13327192817, - "2026-01-01": 1653.39249699575, - "2025-01-01": 1628.49825514579, - "2024-01-01": 1593.1563838375, - "2023-01-01": 1507, - "2015-01-01": 1507 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2073.43913834153, - "2034-01-01": 2033.28887054194, - "2033-01-01": 1993.63428506087, - "2032-01-01": 1954.97106421682, - "2031-01-01": 1917.29920800981, - "2030-01-01": 1880.1230341213, - "2029-01-01": 1843.44254255131, - "2028-01-01": 1807.25773329983, - "2027-01-01": 1770.57724172984, - "2026-01-01": 1727.99813056954, - "2025-01-01": 1701.98059180797, - "2024-01-01": 1665.04399770675, - "2023-01-01": 1575, - "2015-01-01": 1575 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2191.92137481818, - "2034-01-01": 2149.47680600148, - "2033-01-01": 2107.5562442072, - "2032-01-01": 2066.68369645779, - "2031-01-01": 2026.85916275322, - "2030-01-01": 1987.55863607109, - "2029-01-01": 1948.78211641139, - "2028-01-01": 1910.52960377411, - "2027-01-01": 1871.7530841144, - "2026-01-01": 1826.7408808878, - "2025-01-01": 1799.23662562557, - "2024-01-01": 1760.18936900428, - "2023-01-01": 1665, - "2015-01-01": 1665 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2343.31534364947, - "2034-01-01": 2297.93916797756, - "2033-01-01": 2253.1231920053, - "2032-01-01": 2209.42761543235, - "2031-01-01": 2166.8524382587, - "2030-01-01": 2124.83746078471, - "2029-01-01": 2083.38268301037, - "2028-01-01": 2042.48810493568, - "2027-01-01": 2001.03332716135, - "2026-01-01": 1952.91217296113, - "2025-01-01": 1923.5082243925, - "2024-01-01": 1881.76401010667, - "2023-01-01": 1780, - "2015-01-01": 1780 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2482.86108883309, - "2034-01-01": 2434.78273640768, - "2033-01-01": 2387.29794388876, - "2032-01-01": 2341.00027118281, - "2031-01-01": 2295.88971828984, - "2030-01-01": 2251.37272530335, - "2029-01-01": 2207.44929222335, - "2028-01-01": 2164.11941904983, - "2027-01-01": 2120.19598596983, - "2026-01-01": 2069.20919000264, - "2025-01-01": 2038.05421977767, - "2024-01-01": 1993.82411407932, - "2023-01-01": 1886, - "2015-01-01": 1886 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2610.55861036904, - "2034-01-01": 2560.00751129185, - "2033-01-01": 2510.08049985759, - "2032-01-01": 2461.40166370918, - "2031-01-01": 2413.97100284663, - "2030-01-01": 2367.16442962701, - "2029-01-01": 2320.98194405032, - "2028-01-01": 2275.42354611655, - "2027-01-01": 2229.24106053986, - "2026-01-01": 2175.63193201232, - "2025-01-01": 2142.87461178108, - "2024-01-01": 2096.36968092221, - "2023-01-01": 1983, - "2015-01-01": 1983 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2730.35731613989, - "2034-01-01": 2677.48642381205, - "2033-01-01": 2625.26825854999, - "2032-01-01": 2574.35554741949, - "2031-01-01": 2524.74829042053, - "2030-01-01": 2475.79376048735, - "2029-01-01": 2427.49195761995, - "2028-01-01": 2379.84288181832, - "2027-01-01": 2331.54107895092, - "2026-01-01": 2275.47182400078, - "2025-01-01": 2241.21126819666, - "2024-01-01": 2192.57222301193, - "2023-01-01": 2074, - "2015-01-01": 2074 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2852.7889604991, - "2034-01-01": 2797.54729045358, - "2033-01-01": 2742.98761633454, - "2032-01-01": 2689.79193406848, - "2031-01-01": 2637.9602436554, - "2030-01-01": 2586.8105491688, - "2029-01-01": 2536.34285060869, - "2028-01-01": 2486.55714797507, - "2027-01-01": 2436.08944941496, - "2026-01-01": 2377.50599932965, - "2025-01-01": 2341.70916980817, - "2024-01-01": 2290.88910668605, - "2023-01-01": 2167, - "2015-01-01": 2167 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2984.43588991761, - "2034-01-01": 2926.64499651973, - "2033-01-01": 2869.56757094158, - "2032-01-01": 2813.91708100288, - "2031-01-01": 2759.69352670364, - "2030-01-01": 2706.18344022412, - "2029-01-01": 2653.38682156433, - "2028-01-01": 2601.30367072427, - "2027-01-01": 2548.50705206448, - "2026-01-01": 2487.22016634994, - "2025-01-01": 2449.77142960551, - "2024-01-01": 2396.60618590552, - "2023-01-01": 2267, - "2015-01-01": 2267 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3106.86753427682, - "2034-01-01": 3046.70586316126, - "2033-01-01": 2987.28692872613, - "2032-01-01": 2929.35346765188, - "2031-01-01": 2872.9054799385, - "2030-01-01": 2817.20022890557, - "2029-01-01": 2762.23771455307, - "2028-01-01": 2708.01793688102, - "2027-01-01": 2653.05542252853, - "2026-01-01": 2589.25434167881, - "2025-01-01": 2550.26933121702, - "2024-01-01": 2494.92306957963, - "2023-01-01": 2360, - "2015-01-01": 2360 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3222.71683216511, - "2034-01-01": 3160.31184449947, - "2033-01-01": 3098.67728878032, - "2032-01-01": 3038.58359695415, - "2031-01-01": 2980.03076902096, - "2030-01-01": 2922.24837303425, - "2029-01-01": 2865.23640899404, - "2028-01-01": 2808.99487690031, - "2027-01-01": 2751.9829128601, - "2026-01-01": 2685.80280865666, - "2025-01-01": 2645.36411983868, - "2024-01-01": 2587.95409929277, - "2023-01-01": 2448, - "2015-01-01": 2448 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3896.74911078788, - "2034-01-01": 3821.29209955819, - "2033-01-01": 3746.76665636836, - "2032-01-01": 3674.10434925829, - "2031-01-01": 3603.30517822795, - "2030-01-01": 3533.43757523749, - "2029-01-01": 3464.50154028691, - "2028-01-01": 3396.49707337619, - "2027-01-01": 3327.56103842561, - "2026-01-01": 3247.53934380054, - "2025-01-01": 3198.64289000101, - "2024-01-01": 3129.22554489649, - "2023-01-01": 2960, - "2015-01-01": 2960 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 917.579098047011, - "2034-01-01": 899.8110112811, - "2033-01-01": 882.262283611064, - "2032-01-01": 865.152274132779, - "2031-01-01": 848.480982846244, - "2030-01-01": 832.029050655586, - "2029-01-01": 815.796477560802, - "2028-01-01": 799.783263561894, - "2027-01-01": 783.550690467111, - "2026-01-01": 764.70774413141, - "2025-01-01": 753.193950787401, - "2024-01-01": 736.848042159748, - "2023-01-01": 697, - "2015-01-01": 697 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1287.50696971302, - "2034-01-01": 1262.575565327, - "2033-01-01": 1237.95195605684, - "2032-01-01": 1213.94393701845, - "2031-01-01": 1190.5515082118, - "2030-01-01": 1167.46687452104, - "2029-01-01": 1144.69003594615, - "2028-01-01": 1122.22099248713, - "2027-01-01": 1099.44415391224, - "2026-01-01": 1073.00455345842, - "2025-01-01": 1056.8489008179, - "2024-01-01": 1033.91303476648, - "2023-01-01": 978, - "2015-01-01": 978 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1471.81267089894, - "2034-01-01": 1443.31235381961, - "2033-01-01": 1415.1638925067, - "2032-01-01": 1387.71914272661, - "2031-01-01": 1360.97810447934, - "2030-01-01": 1334.58892199849, - "2029-01-01": 1308.55159528404, - "2028-01-01": 1282.86612433601, - "2027-01-01": 1256.82879762156, - "2026-01-01": 1226.60438728682, - "2025-01-01": 1208.13606453417, - "2024-01-01": 1181.91694567374, - "2023-01-01": 1118, - "2015-01-01": 1118 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1625.83957831859, - "2034-01-01": 1594.35666991701, - "2033-01-01": 1563.26243939693, - "2032-01-01": 1532.94556463986, - "2031-01-01": 1503.40604564578, - "2030-01-01": 1474.25520453321, - "2029-01-01": 1445.49304130214, - "2028-01-01": 1417.11955595257, - "2027-01-01": 1388.3573927215, - "2026-01-01": 1354.96996270056, - "2025-01-01": 1334.56890849704, - "2024-01-01": 1305.60592836053, - "2023-01-01": 1235, - "2015-01-01": 1235 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1762.75238491384, - "2034-01-01": 1728.61828422581, - "2033-01-01": 1694.90559218826, - "2032-01-01": 1662.03571745164, - "2031-01-01": 1630.00866001596, - "2030-01-01": 1598.40301123075, - "2029-01-01": 1567.218771096, - "2028-01-01": 1536.45593961173, - "2027-01-01": 1505.27169947699, - "2026-01-01": 1469.07269640166, - "2025-01-01": 1446.95365868627, - "2024-01-01": 1415.55169074878, - "2023-01-01": 1339, - "2015-01-01": 1339 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1882.55109068469, - "2034-01-01": 1846.09719674602, - "2033-01-01": 1810.09335088066, - "2032-01-01": 1774.98960116194, - "2031-01-01": 1740.78594758986, - "2030-01-01": 1707.03234209109, - "2029-01-01": 1673.72878466563, - "2028-01-01": 1640.8752753135, - "2027-01-01": 1607.57171788805, - "2026-01-01": 1568.91258839012, - "2025-01-01": 1545.29031510184, - "2024-01-01": 1511.75423283851, - "2023-01-01": 1430, - "2015-01-01": 1430 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1993.13451139623, - "2034-01-01": 1954.53926984159, - "2033-01-01": 1916.42051275057, - "2032-01-01": 1879.25472458684, - "2031-01-01": 1843.04190535038, - "2030-01-01": 1807.30557057756, - "2029-01-01": 1772.04572026837, - "2028-01-01": 1737.26235442282, - "2027-01-01": 1702.00250411364, - "2026-01-01": 1661.07248868717, - "2025-01-01": 1636.0626133316, - "2024-01-01": 1600.55657938287, - "2023-01-01": 1514, - "2015-01-01": 1514 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2094.50264704849, - "2034-01-01": 2053.94450351252, - "2033-01-01": 2013.88707779799, - "2032-01-01": 1974.83108772633, - "2031-01-01": 1936.77653329753, - "2030-01-01": 1899.22269669015, - "2029-01-01": 1862.16957790421, - "2028-01-01": 1825.6171769397, - "2027-01-01": 1788.56405815376, - "2026-01-01": 1745.55239729279, - "2025-01-01": 1719.27055337554, - "2024-01-01": 1681.95873038186, - "2023-01-01": 1591, - "2015-01-01": 1591 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2189.28843622981, - "2034-01-01": 2146.89485188016, - "2033-01-01": 2105.02464511506, - "2032-01-01": 2064.2011935191, - "2031-01-01": 2024.42449709226, - "2030-01-01": 1985.17117824998, - "2029-01-01": 1946.44123699227, - "2028-01-01": 1908.23467331912, - "2027-01-01": 1869.50473206141, - "2026-01-01": 1824.5465975474, - "2025-01-01": 1797.07538042962, - "2024-01-01": 1758.07502741989, - "2023-01-01": 1663, - "2015-01-01": 1663 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2313.03654988321, - "2034-01-01": 2268.24669558234, - "2033-01-01": 2224.00980244568, - "2032-01-01": 2180.87883163743, - "2031-01-01": 2138.85378315761, - "2030-01-01": 2097.38169584199, - "2029-01-01": 2056.46256969057, - "2028-01-01": 2016.09640470337, - "2027-01-01": 1975.17727855196, - "2026-01-01": 1927.67791454647, - "2025-01-01": 1898.65390463911, - "2024-01-01": 1857.44908188619, - "2023-01-01": 1757, - "2015-01-01": 1757 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2473.64580377379, - "2034-01-01": 2425.74589698305, - "2033-01-01": 2378.43734706627, - "2032-01-01": 2332.3115108974, - "2031-01-01": 2287.36838847646, - "2030-01-01": 2243.01662292948, - "2029-01-01": 2199.25621425645, - "2028-01-01": 2156.08716245739, - "2027-01-01": 2112.32675378436, - "2026-01-01": 2061.52919831122, - "2025-01-01": 2030.48986159186, - "2024-01-01": 1986.42391853395, - "2023-01-01": 1879, - "2015-01-01": 1879 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2619.77389542834, - "2034-01-01": 2569.04435071648, - "2033-01-01": 2518.94109668008, - "2032-01-01": 2470.09042399459, - "2031-01-01": 2422.49233266001, - "2030-01-01": 2375.52053200088, - "2029-01-01": 2329.17502201721, - "2028-01-01": 2283.45580270899, - "2027-01-01": 2237.11029272532, - "2026-01-01": 2183.31192370374, - "2025-01-01": 2150.4389699669, - "2024-01-01": 2103.76987646757, - "2023-01-01": 1990, - "2015-01-01": 1990 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2754.05376343522, - "2034-01-01": 2700.72401090396, - "2033-01-01": 2648.05265037926, - "2032-01-01": 2596.69807386768, - "2031-01-01": 2546.66028136922, - "2030-01-01": 2497.28088087731, - "2029-01-01": 2448.55987239196, - "2028-01-01": 2400.49725591317, - "2027-01-01": 2351.77624742783, - "2026-01-01": 2295.22037406443, - "2025-01-01": 2260.66247496018, - "2024-01-01": 2211.60129727144, - "2023-01-01": 2092, - "2015-01-01": 2092 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2880.43481567699, - "2034-01-01": 2824.65780872747, - "2033-01-01": 2769.56940680202, - "2032-01-01": 2715.85821492471, - "2031-01-01": 2663.52423309553, - "2030-01-01": 2611.87885629042, - "2029-01-01": 2560.92208450938, - "2028-01-01": 2510.6539177524, - "2027-01-01": 2459.69714597136, - "2026-01-01": 2400.54597440391, - "2025-01-01": 2364.40224436561, - "2024-01-01": 2313.08969332214, - "2023-01-01": 2188, - "2015-01-01": 2188 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3010.76527580131, - "2034-01-01": 2952.46453773296, - "2033-01-01": 2894.88356186299, - "2032-01-01": 2838.74211038976, - "2031-01-01": 2784.04018331329, - "2030-01-01": 2730.05801843519, - "2029-01-01": 2676.79561575546, - "2028-01-01": 2624.25297527411, - "2027-01-01": 2570.99057259438, - "2026-01-01": 2509.162999754, - "2025-01-01": 2471.38388156497, - "2024-01-01": 2417.74960174942, - "2023-01-01": 2287, - "2015-01-01": 2287 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3147.67808239656, - "2034-01-01": 3086.72615204176, - "2033-01-01": 3026.52671465431, - "2032-01-01": 2967.83226320154, - "2031-01-01": 2910.64279768346, - "2030-01-01": 2854.20582513272, - "2029-01-01": 2798.52134554932, - "2028-01-01": 2743.58935893327, - "2027-01-01": 2687.90487934987, - "2026-01-01": 2623.26573345509, - "2025-01-01": 2583.7686317542, - "2024-01-01": 2527.69536413767, - "2023-01-01": 2391, - "2015-01-01": 2391 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3276.6920732267, - "2034-01-01": 3213.2419039866, - "2033-01-01": 3150.57507016921, - "2032-01-01": 3089.47490719725, - "2031-01-01": 3029.94141507074, - "2030-01-01": 2971.19125836693, - "2029-01-01": 2913.22443708585, - "2028-01-01": 2856.04095122748, - "2027-01-01": 2798.0741299464, - "2026-01-01": 2730.78561713498, - "2025-01-01": 2689.66964635558, - "2024-01-01": 2631.29810177276, - "2023-01-01": 2489, - "2015-01-01": 2489 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3399.12371758592, - "2034-01-01": 3333.30277062812, - "2033-01-01": 3268.29442795375, - "2032-01-01": 3204.91129384625, - "2031-01-01": 3143.1533683056, - "2030-01-01": 3082.20804704838, - "2029-01-01": 3022.07533007459, - "2028-01-01": 2962.75521738423, - "2027-01-01": 2902.62250041045, - "2026-01-01": 2832.81979246385, - "2025-01-01": 2790.1675479671, - "2024-01-01": 2729.61498544687, - "2023-01-01": 2582, - "2015-01-01": 2582 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 4108.70066715168, - "2034-01-01": 4029.1394063247, - "2033-01-01": 3950.5603832857, - "2032-01-01": 3873.94583582267, - "2031-01-01": 3799.29576393562, - "2030-01-01": 3725.62792983656, - "2029-01-01": 3652.94233352549, - "2028-01-01": 3581.2389750024, - "2027-01-01": 3508.55337869132, - "2026-01-01": 3424.1791527032, - "2025-01-01": 3372.62312827472, - "2024-01-01": 3299.43004243985, - "2023-01-01": 3121, - "2015-01-01": 3121 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 554.233572851925, - "2034-01-01": 543.501342538512, - "2033-01-01": 532.901608895635, - "2032-01-01": 522.56686859383, - "2031-01-01": 512.497121633097, - "2030-01-01": 502.5598713429, - "2029-01-01": 492.755117723239, - "2028-01-01": 483.082860774114, - "2027-01-01": 473.278107154453, - "2026-01-01": 461.896643155414, - "2025-01-01": 454.942113746766, - "2024-01-01": 445.068903513994, - "2023-01-01": 421, - "2015-01-01": 421 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 800.413330864538, - "2034-01-01": 784.914052882222, - "2033-01-01": 769.606124010799, - "2032-01-01": 754.680893361161, - "2031-01-01": 740.138360933309, - "2030-01-01": 725.78717761635, - "2029-01-01": 711.627343410284, - "2028-01-01": 697.65885831511, - "2027-01-01": 683.499024109044, - "2026-01-01": 667.062135483353, - "2025-01-01": 657.018539567776, - "2024-01-01": 642.759841654414, - "2023-01-01": 608, - "2015-01-01": 608 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 925.477913812122, - "2034-01-01": 907.556873645069, - "2033-01-01": 889.857080887486, - "2032-01-01": 872.599782948843, - "2031-01-01": 855.784979829139, - "2030-01-01": 839.191424118905, - "2029-01-01": 822.81911581814, - "2028-01-01": 806.668054926846, - "2027-01-01": 790.295746626082, - "2026-01-01": 771.290594152627, - "2025-01-01": 759.677686375241, - "2024-01-01": 743.191066912917, - "2023-01-01": 703, - "2015-01-01": 703 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1032.11192664111, - "2034-01-01": 1012.12601555865, - "2033-01-01": 992.386844119188, - "2032-01-01": 973.141151965708, - "2031-01-01": 954.388939098215, - "2030-01-01": 935.883465873715, - "2029-01-01": 917.624732292208, - "2028-01-01": 899.612738353695, - "2027-01-01": 881.354004772188, - "2026-01-01": 860.159069439061, - "2025-01-01": 847.208116811079, - "2024-01-01": 828.821901080692, - "2023-01-01": 784, - "2015-01-01": 784 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1125.58124652826, - "2034-01-01": 1103.78538686562, - "2033-01-01": 1082.25861189019, - "2032-01-01": 1061.27000628913, - "2031-01-01": 1040.81957006247, - "2030-01-01": 1020.63821852299, - "2029-01-01": 1000.72595167071, - "2028-01-01": 981.082769505623, - "2027-01-01": 961.170502653343, - "2026-01-01": 938.056128023466, - "2025-01-01": 923.932321267184, - "2024-01-01": 903.88102732652, - "2023-01-01": 855, - "2015-01-01": 855 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1209.8352813561, - "2034-01-01": 1186.40791874796, - "2033-01-01": 1163.26978283869, - "2032-01-01": 1140.71010032715, - "2031-01-01": 1118.72887121334, - "2030-01-01": 1097.0368687984, - "2029-01-01": 1075.63409308232, - "2028-01-01": 1054.52054406511, - "2027-01-01": 1033.11776834903, - "2026-01-01": 1008.27319491645, - "2025-01-01": 993.092167537477, - "2024-01-01": 971.539958026985, - "2023-01-01": 919, - "2015-01-01": 919 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1286.19050041884, - "2034-01-01": 1261.28458826633, - "2033-01-01": 1236.68615651077, - "2032-01-01": 1212.7026855491, - "2031-01-01": 1189.33417538132, - "2030-01-01": 1166.27314561048, - "2029-01-01": 1143.51959623659, - "2028-01-01": 1121.07352725964, - "2027-01-01": 1098.31997788575, - "2026-01-01": 1071.90741178822, - "2025-01-01": 1055.76827821993, - "2024-01-01": 1032.85586397428, - "2023-01-01": 977, - "2015-01-01": 977 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1357.27984230483, - "2034-01-01": 1330.99734954206, - "2033-01-01": 1305.03933199857, - "2032-01-01": 1279.73026489368, - "2031-01-01": 1255.07014822737, - "2030-01-01": 1230.73450678036, - "2029-01-01": 1206.72334055264, - "2028-01-01": 1183.03664954421, - "2027-01-01": 1159.02548331649, - "2026-01-01": 1131.15306197917, - "2025-01-01": 1114.12189851049, - "2024-01-01": 1089.9430867528, - "2023-01-01": 1031, - "2015-01-01": 1031 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1424.41977630827, - "2034-01-01": 1396.8371796358, - "2033-01-01": 1369.59510884816, - "2032-01-01": 1343.03408983022, - "2031-01-01": 1317.15412258198, - "2030-01-01": 1291.61468121857, - "2029-01-01": 1266.41576574001, - "2028-01-01": 1241.5573761463, - "2027-01-01": 1216.35846066774, - "2026-01-01": 1187.10728715952, - "2025-01-01": 1169.23365100713, - "2024-01-01": 1143.85879715473, - "2023-01-01": 1082, - "2015-01-01": 1082 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1511.30674972449, - "2034-01-01": 1482.04166563946, - "2033-01-01": 1453.13787888881, - "2032-01-01": 1424.95668680693, - "2031-01-01": 1397.49808939381, - "2030-01-01": 1370.40078931508, - "2029-01-01": 1343.66478657073, - "2028-01-01": 1317.29008116077, - "2027-01-01": 1290.55407841642, - "2026-01-01": 1259.51863739291, - "2025-01-01": 1240.55474247337, - "2024-01-01": 1213.63206943959, - "2023-01-01": 1148, - "2015-01-01": 1148 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1624.52310902441, - "2034-01-01": 1593.06569285635, - "2033-01-01": 1561.99663985086, - "2032-01-01": 1531.70431317051, - "2031-01-01": 1502.1887128153, - "2030-01-01": 1473.06147562266, - "2029-01-01": 1444.32260159258, - "2028-01-01": 1415.97209072508, - "2027-01-01": 1387.233216695, - "2026-01-01": 1353.87282103036, - "2025-01-01": 1333.48828589907, - "2024-01-01": 1304.54875756833, - "2023-01-01": 1234, - "2015-01-01": 1234 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1728.52418326503, - "2034-01-01": 1695.05288064861, - "2033-01-01": 1661.99480399043, - "2032-01-01": 1629.76317924869, - "2031-01-01": 1598.35800642341, - "2030-01-01": 1567.36605955636, - "2029-01-01": 1536.78733864754, - "2028-01-01": 1506.62184369694, - "2027-01-01": 1476.04312278812, - "2026-01-01": 1440.54701297639, - "2025-01-01": 1418.85747113896, - "2024-01-01": 1388.06525015172, - "2023-01-01": 1313, - "2015-01-01": 1313 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1824.62644174054, - "2034-01-01": 1789.29420607691, - "2033-01-01": 1754.39817085356, - "2032-01-01": 1720.37453651081, - "2031-01-01": 1687.22330304863, - "2030-01-01": 1654.50827002675, - "2029-01-01": 1622.22943744515, - "2028-01-01": 1590.38680530385, - "2027-01-01": 1558.10797272226, - "2026-01-01": 1520.6383549012, - "2025-01-01": 1497.74292079101, - "2024-01-01": 1465.23871798194, - "2023-01-01": 1386, - "2015-01-01": 1386 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1914.14635374513, - "2034-01-01": 1877.08064620189, - "2033-01-01": 1840.47253998635, - "2032-01-01": 1804.7796364262, - "2031-01-01": 1770.00193552143, - "2030-01-01": 1735.68183594436, - "2029-01-01": 1701.81933769499, - "2028-01-01": 1668.41444077331, - "2027-01-01": 1634.55194252393, - "2026-01-01": 1595.24398847499, - "2025-01-01": 1571.2252574532, - "2024-01-01": 1537.12633185118, - "2023-01-01": 1454, - "2015-01-01": 1454 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2007.61567363227, - "2034-01-01": 1968.74001750886, - "2033-01-01": 1930.34430775735, - "2032-01-01": 1892.90849074962, - "2031-01-01": 1856.43256648569, - "2030-01-01": 1820.43658859364, - "2029-01-01": 1784.92055707349, - "2028-01-01": 1749.88447192523, - "2027-01-01": 1714.36844040509, - "2026-01-01": 1673.1410470594, - "2025-01-01": 1647.94946190931, - "2024-01-01": 1612.18545809701, - "2023-01-01": 1525, - "2015-01-01": 1525 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2106.35087069615, - "2034-01-01": 2065.56329705848, - "2033-01-01": 2025.27927371263, - "2032-01-01": 1986.00235095042, - "2031-01-01": 1947.73252877187, - "2030-01-01": 1909.96625688513, - "2029-01-01": 1872.70353529022, - "2028-01-01": 1835.94436398713, - "2027-01-01": 1798.68164239222, - "2026-01-01": 1755.42667232461, - "2025-01-01": 1728.9961567573, - "2024-01-01": 1691.47326751162, - "2023-01-01": 1600, - "2015-01-01": 1600 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2199.82019058329, - "2034-01-01": 2157.22266836545, - "2033-01-01": 2115.15104148363, - "2032-01-01": 2074.13120527385, - "2031-01-01": 2034.16315973612, - "2030-01-01": 1994.72100953441, - "2029-01-01": 1955.80475466872, - "2028-01-01": 1917.41439513906, - "2027-01-01": 1878.49814027338, - "2026-01-01": 1833.32373090902, - "2025-01-01": 1805.72036121341, - "2024-01-01": 1766.53239375744, - "2023-01-01": 1671, - "2015-01-01": 1671 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2288.0236332937, - "2034-01-01": 2243.71813142977, - "2033-01-01": 2199.95961107034, - "2032-01-01": 2157.2950537199, - "2031-01-01": 2115.72445937844, - "2030-01-01": 2074.70084654147, - "2029-01-01": 2034.224215209, - "2028-01-01": 1994.29456538102, - "2027-01-01": 1953.81793404855, - "2026-01-01": 1906.83222281261, - "2025-01-01": 1878.12207527762, - "2024-01-01": 1837.36283683449, - "2023-01-01": 1738, - "2015-01-01": 1738 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2804.07959661425, - "2034-01-01": 2749.7811392091, - "2033-01-01": 2696.15303312994, - "2032-01-01": 2643.86562970275, - "2031-01-01": 2592.91892892755, - "2030-01-01": 2542.64257947833, - "2029-01-01": 2493.03658135511, - "2028-01-01": 2444.10093455787, - "2027-01-01": 2394.49493643464, - "2026-01-01": 2336.91175753214, - "2025-01-01": 2301.72613368316, - "2024-01-01": 2251.77378737484, - "2023-01-01": 2130, - "2015-01-01": 2130 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 629.272322620476, - "2034-01-01": 617.087034996221, - "2033-01-01": 605.052183021648, - "2032-01-01": 593.318202346439, - "2031-01-01": 581.885092970595, - "2030-01-01": 570.602419244433, - "2029-01-01": 559.470181167953, - "2028-01-01": 548.488378741156, - "2027-01-01": 537.356140664676, - "2026-01-01": 524.433718356978, - "2025-01-01": 516.537601831245, - "2024-01-01": 505.327638669095, - "2023-01-01": 478, - "2015-01-01": 478 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 909.680282281901, - "2034-01-01": 892.065148917131, - "2033-01-01": 874.667486334641, - "2032-01-01": 857.704765316714, - "2031-01-01": 841.17698586335, - "2030-01-01": 824.866677192267, - "2029-01-01": 808.773839303464, - "2028-01-01": 792.898472196942, - "2027-01-01": 776.80563430814, - "2026-01-01": 758.124894110193, - "2025-01-01": 746.710215199561, - "2024-01-01": 730.505017406579, - "2023-01-01": 691, - "2015-01-01": 691 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1051.85896605389, - "2034-01-01": 1031.49067146858, - "2033-01-01": 1011.37383731024, - "2032-01-01": 991.759924005868, - "2031-01-01": 972.648931555451, - "2030-01-01": 953.789399532013, - "2029-01-01": 935.181327935554, - "2028-01-01": 916.824716766074, - "2027-01-01": 898.216645169615, - "2026-01-01": 876.616194492104, - "2025-01-01": 863.417455780679, - "2024-01-01": 844.679462963614, - "2023-01-01": 799, - "2015-01-01": 799 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1171.65767182473, - "2034-01-01": 1148.96958398878, - "2033-01-01": 1126.56159600265, - "2032-01-01": 1104.71380771617, - "2031-01-01": 1083.42621912935, - "2030-01-01": 1062.41873039235, - "2029-01-01": 1041.69134150518, - "2028-01-01": 1021.24405246784, - "2027-01-01": 1000.51666358067, - "2026-01-01": 976.456086480566, - "2025-01-01": 961.75411219625, - "2024-01-01": 940.882005053337, - "2023-01-01": 890, - "2015-01-01": 890 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1278.29168465373, - "2034-01-01": 1253.53872590236, - "2033-01-01": 1229.09135923435, - "2032-01-01": 1205.25517673304, - "2031-01-01": 1182.03017839843, - "2030-01-01": 1159.11077214716, - "2029-01-01": 1136.49695797925, - "2028-01-01": 1114.18873589469, - "2027-01-01": 1091.57492172678, - "2026-01-01": 1065.324561767, - "2025-01-01": 1049.28454263209, - "2024-01-01": 1026.51283922111, - "2023-01-01": 971, - "2015-01-01": 971 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1373.07747383505, - "2034-01-01": 1346.48907427, - "2033-01-01": 1320.22892655142, - "2032-01-01": 1294.62528252581, - "2031-01-01": 1269.67814219316, - "2030-01-01": 1245.059253707, - "2029-01-01": 1220.76861706731, - "2028-01-01": 1196.80623227411, - "2027-01-01": 1172.51559563443, - "2026-01-01": 1144.31876202161, - "2025-01-01": 1127.08936968617, - "2024-01-01": 1102.62913625914, - "2023-01-01": 1043, - "2015-01-01": 1043 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1459.96444725127, - "2034-01-01": 1431.69356027366, - "2033-01-01": 1403.77169659207, - "2032-01-01": 1376.54787950251, - "2031-01-01": 1350.022109005, - "2030-01-01": 1323.84536180351, - "2029-01-01": 1298.01763789803, - "2028-01-01": 1272.53893728858, - "2027-01-01": 1246.71121338311, - "2026-01-01": 1216.730112255, - "2025-01-01": 1198.41046115241, - "2024-01-01": 1172.40240854399, - "2023-01-01": 1109, - "2015-01-01": 1109 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1540.26907419656, - "2034-01-01": 1510.44316097401, - "2033-01-01": 1480.98546890236, - "2032-01-01": 1452.2642191325, - "2031-01-01": 1424.27941166443, - "2030-01-01": 1396.66282534725, - "2029-01-01": 1369.41446018097, - "2028-01-01": 1342.53431616559, - "2027-01-01": 1315.28595099931, - "2026-01-01": 1283.65575413737, - "2025-01-01": 1264.32843962878, - "2024-01-01": 1236.88982686787, - "2023-01-01": 1170, - "2015-01-01": 1170 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1615.30782396511, - "2034-01-01": 1584.02885343172, - "2033-01-01": 1553.13604302837, - "2032-01-01": 1523.01555288511, - "2031-01-01": 1493.66738300193, - "2030-01-01": 1464.70537324879, - "2029-01-01": 1436.12952362569, - "2028-01-01": 1407.93983413263, - "2027-01-01": 1379.36398450953, - "2026-01-01": 1346.19282933894, - "2025-01-01": 1325.92392771326, - "2024-01-01": 1297.14856202297, - "2023-01-01": 1227, - "2015-01-01": 1227 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1715.35949032318, - "2034-01-01": 1682.143110042, - "2033-01-01": 1649.33680852972, - "2032-01-01": 1617.35066455525, - "2031-01-01": 1586.18467811859, - "2030-01-01": 1555.42877045083, - "2029-01-01": 1525.08294155197, - "2028-01-01": 1495.14719142202, - "2027-01-01": 1464.80136252316, - "2026-01-01": 1429.57559627436, - "2025-01-01": 1408.05124515923, - "2024-01-01": 1377.49354222977, - "2023-01-01": 1303, - "2015-01-01": 1303 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1843.05701185913, - "2034-01-01": 1807.36788492617, - "2033-01-01": 1772.11936449855, - "2032-01-01": 1737.75205708162, - "2031-01-01": 1704.26596267538, - "2030-01-01": 1671.22047477449, - "2029-01-01": 1638.61559337894, - "2028-01-01": 1606.45131848874, - "2027-01-01": 1573.84643709319, - "2026-01-01": 1535.99833828404, - "2025-01-01": 1512.87163716264, - "2024-01-01": 1480.03910907266, - "2023-01-01": 1400, - "2015-01-01": 1400 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1961.53924833579, - "2034-01-01": 1923.55582038571, - "2033-01-01": 1886.04132364488, - "2032-01-01": 1849.46468932258, - "2031-01-01": 1813.8259174188, - "2030-01-01": 1778.65607672428, - "2029-01-01": 1743.95516723902, - "2028-01-01": 1709.72318896302, - "2027-01-01": 1675.02227947776, - "2026-01-01": 1634.7410886023, - "2025-01-01": 1610.12767098024, - "2024-01-01": 1575.18448037019, - "2023-01-01": 1490, - "2015-01-01": 1490 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2069.48973045897, - "2034-01-01": 2029.41593935996, - "2033-01-01": 1989.83688642266, - "2032-01-01": 1951.24730980879, - "2031-01-01": 1913.64720951836, - "2030-01-01": 1876.54184738964, - "2029-01-01": 1839.93122342264, - "2028-01-01": 1803.81533761736, - "2027-01-01": 1767.20471365036, - "2026-01-01": 1724.70670555893, - "2025-01-01": 1698.73872401405, - "2024-01-01": 1661.87248533016, - "2023-01-01": 1572, - "2015-01-01": 1572 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2172.17433540541, - "2034-01-01": 2130.11215009156, - "2033-01-01": 2088.56925101615, - "2032-01-01": 2048.06492441762, - "2031-01-01": 2008.59917029599, - "2030-01-01": 1969.65270241279, - "2029-01-01": 1931.22552076804, - "2028-01-01": 1893.31762536173, - "2027-01-01": 1854.89044371698, - "2026-01-01": 1810.28375583476, - "2025-01-01": 1783.02728665597, - "2024-01-01": 1744.33180712135, - "2023-01-01": 1650, - "2015-01-01": 1650 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2277.49187894022, - "2034-01-01": 2233.39031494448, - "2033-01-01": 2189.83321470178, - "2032-01-01": 2147.36504196515, - "2031-01-01": 2105.98579673458, - "2030-01-01": 2065.15101525705, - "2029-01-01": 2024.86069753255, - "2028-01-01": 1985.11484356109, - "2027-01-01": 1944.82452583659, - "2026-01-01": 1898.05508945099, - "2025-01-01": 1869.47709449384, - "2024-01-01": 1828.90547049694, - "2023-01-01": 1730, - "2015-01-01": 1730 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2389.39176894595, - "2034-01-01": 2343.12336510071, - "2033-01-01": 2297.42617611776, - "2032-01-01": 2252.87141685939, - "2031-01-01": 2209.45908732559, - "2030-01-01": 2166.61797265407, - "2029-01-01": 2124.34807284484, - "2028-01-01": 2082.6493878979, - "2027-01-01": 2040.37948808867, - "2026-01-01": 1991.31213141823, - "2025-01-01": 1961.33001532157, - "2024-01-01": 1918.76498783349, - "2023-01-01": 1815, - "2015-01-01": 1815 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2494.70931248076, - "2034-01-01": 2446.40152995364, - "2033-01-01": 2398.69013980339, - "2032-01-01": 2352.17153440691, - "2031-01-01": 2306.84571376418, - "2030-01-01": 2262.11628549833, - "2029-01-01": 2217.98324960935, - "2028-01-01": 2174.44660609726, - "2027-01-01": 2130.31357020829, - "2026-01-01": 2079.08346503446, - "2025-01-01": 2047.77982315943, - "2024-01-01": 2003.33865120907, - "2023-01-01": 1895, - "2015-01-01": 1895 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2594.76097883882, - "2034-01-01": 2544.51578656391, - "2033-01-01": 2494.89090530474, - "2032-01-01": 2446.50664607705, - "2031-01-01": 2399.36300888084, - "2030-01-01": 2352.83968270037, - "2029-01-01": 2306.93666753564, - "2028-01-01": 2261.65396338665, - "2027-01-01": 2215.75094822192, - "2026-01-01": 2162.46623196988, - "2025-01-01": 2129.9071406054, - "2024-01-01": 2083.68363141587, - "2023-01-01": 1971, - "2015-01-01": 1971 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3177.95687616282, - "2034-01-01": 3116.41862443698, - "2033-01-01": 3055.64010421393, - "2032-01-01": 2996.38104699645, - "2031-01-01": 2938.64145278455, - "2030-01-01": 2881.66159007544, - "2029-01-01": 2825.44145886912, - "2028-01-01": 2769.98105916558, - "2027-01-01": 2713.76092795926, - "2026-01-01": 2648.49999186976, - "2025-01-01": 2608.62295150758, - "2024-01-01": 2552.01029235815, - "2023-01-01": 2414, - "2015-01-01": 2414 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 677.981686505324, - "2034-01-01": 664.853186240698, - "2033-01-01": 651.886766226252, - "2032-01-01": 639.244506712168, - "2031-01-01": 626.926407698445, - "2030-01-01": 614.770388934902, - "2029-01-01": 602.77645042154, - "2028-01-01": 590.944592158358, - "2027-01-01": 578.950653644996, - "2026-01-01": 565.027960154485, - "2025-01-01": 556.520637956257, - "2024-01-01": 544.442957980302, - "2023-01-01": 515, - "2015-01-01": 515 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 979.453154873711, - "2034-01-01": 960.486933132193, - "2033-01-01": 941.754862276372, - "2032-01-01": 923.491093191947, - "2031-01-01": 905.695625878918, - "2030-01-01": 888.134309451586, - "2029-01-01": 870.807143909952, - "2028-01-01": 853.714129254016, - "2027-01-01": 836.386963712383, - "2026-01-01": 816.273402630945, - "2025-01-01": 803.983212892146, - "2024-01-01": 786.535069392902, - "2023-01-01": 744, - "2015-01-01": 744 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1133.48006229337, - "2034-01-01": 1111.53124922959, - "2033-01-01": 1089.85340916661, - "2032-01-01": 1068.7175151052, - "2031-01-01": 1048.12356704536, - "2030-01-01": 1027.80059198631, - "2029-01-01": 1007.74858992805, - "2028-01-01": 987.967560870575, - "2027-01-01": 967.915558812314, - "2026-01-01": 944.638978044683, - "2025-01-01": 930.416056855024, - "2024-01-01": 910.224052079689, - "2023-01-01": 861, - "2015-01-01": 861 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1262.49405312351, - "2034-01-01": 1238.04700117443, - "2033-01-01": 1213.90176468151, - "2032-01-01": 1190.36015910091, - "2031-01-01": 1167.42218443264, - "2030-01-01": 1144.78602522053, - "2029-01-01": 1122.45168146458, - "2028-01-01": 1100.41915316479, - "2027-01-01": 1078.08480940884, - "2026-01-01": 1052.15886172457, - "2025-01-01": 1036.31707145641, - "2024-01-01": 1013.82678971478, - "2023-01-01": 959, - "2015-01-01": 959 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1377.02688171761, - "2034-01-01": 1350.36200545198, - "2033-01-01": 1324.02632518963, - "2032-01-01": 1298.34903693384, - "2031-01-01": 1273.33014068461, - "2030-01-01": 1248.64044043866, - "2029-01-01": 1224.27993619598, - "2028-01-01": 1200.24862795659, - "2027-01-01": 1175.88812371391, - "2026-01-01": 1147.61018703222, - "2025-01-01": 1130.33123748009, - "2024-01-01": 1105.80064863572, - "2023-01-01": 1046, - "2015-01-01": 1046 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1479.71148666405, - "2034-01-01": 1451.05821618358, - "2033-01-01": 1422.75868978312, - "2032-01-01": 1395.16665154267, - "2031-01-01": 1368.28210146224, - "2030-01-01": 1341.75129546181, - "2029-01-01": 1315.57423354138, - "2028-01-01": 1289.75091570096, - "2027-01-01": 1263.57385378053, - "2026-01-01": 1233.18723730804, - "2025-01-01": 1214.61980012201, - "2024-01-01": 1188.25997042691, - "2023-01-01": 1124, - "2015-01-01": 1124 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1573.18080655119, - "2034-01-01": 1542.71758749055, - "2033-01-01": 1512.63045755412, - "2032-01-01": 1483.2955058661, - "2031-01-01": 1454.71273242649, - "2030-01-01": 1426.50604811108, - "2029-01-01": 1398.67545291988, - "2028-01-01": 1371.22094685289, - "2027-01-01": 1343.39035166169, - "2026-01-01": 1311.08429589245, - "2025-01-01": 1291.34400457811, - "2024-01-01": 1263.31909667274, - "2023-01-01": 1195, - "2015-01-01": 1195 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1660.06777996741, - "2034-01-01": 1627.92207349421, - "2033-01-01": 1596.17322759477, - "2032-01-01": 1565.2181028428, - "2031-01-01": 1535.05669923833, - "2030-01-01": 1505.29215620759, - "2029-01-01": 1475.9244737506, - "2028-01-01": 1446.95365186736, - "2027-01-01": 1417.58596941037, - "2026-01-01": 1383.49564612584, - "2025-01-01": 1362.66509604435, - "2024-01-01": 1333.09236895759, - "2023-01-01": 1261, - "2015-01-01": 1261 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1740.3724069127, - "2034-01-01": 1706.67167419457, - "2033-01-01": 1673.38699990506, - "2032-01-01": 1640.93444247279, - "2031-01-01": 1609.31400189776, - "2030-01-01": 1578.10961975134, - "2029-01-01": 1547.32129603354, - "2028-01-01": 1516.94903074437, - "2027-01-01": 1486.16070702657, - "2026-01-01": 1450.42128800821, - "2025-01-01": 1428.58307452072, - "2024-01-01": 1397.57978728147, - "2023-01-01": 1322, - "2015-01-01": 1322 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1847.00641974169, - "2034-01-01": 1811.24081610815, - "2033-01-01": 1775.91676313676, - "2032-01-01": 1741.47581148965, - "2031-01-01": 1707.91796116683, - "2030-01-01": 1674.80166150615, - "2029-01-01": 1642.12691250761, - "2028-01-01": 1609.89371417122, - "2027-01-01": 1577.21896517268, - "2026-01-01": 1539.28976329465, - "2025-01-01": 1516.11350495656, - "2024-01-01": 1483.21062144925, - "2023-01-01": 1403, - "2015-01-01": 1403 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1985.23569563112, - "2034-01-01": 1946.79340747762, - "2033-01-01": 1908.82571547415, - "2032-01-01": 1871.80721577077, - "2031-01-01": 1835.73790836748, - "2030-01-01": 1800.14319711424, - "2029-01-01": 1765.02308201103, - "2028-01-01": 1730.37756305787, - "2027-01-01": 1695.25744795467, - "2026-01-01": 1654.48963866595, - "2025-01-01": 1629.57887774376, - "2024-01-01": 1594.2135546297, - "2023-01-01": 1508, - "2015-01-01": 1508 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2112.93321716708, - "2034-01-01": 2072.01818236179, - "2033-01-01": 2031.60827144298, - "2032-01-01": 1992.20860829714, - "2031-01-01": 1953.81919292428, - "2030-01-01": 1915.9349014379, - "2029-01-01": 1878.555733838, - "2028-01-01": 1841.68169012459, - "2027-01-01": 1804.3025225247, - "2026-01-01": 1760.91238067563, - "2025-01-01": 1734.39926974717, - "2024-01-01": 1696.75912147259, - "2023-01-01": 1605, - "2015-01-01": 1605 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2228.78251505537, - "2034-01-01": 2185.6241637, - "2033-01-01": 2142.99863149717, - "2032-01-01": 2101.43873759942, - "2031-01-01": 2060.94448200673, - "2030-01-01": 2020.98304556658, - "2029-01-01": 1981.55442827896, - "2028-01-01": 1942.65863014388, - "2027-01-01": 1903.23001285627, - "2026-01-01": 1857.46084765348, - "2025-01-01": 1829.49405836882, - "2024-01-01": 1789.79015118573, - "2023-01-01": 1693, - "2015-01-01": 1693 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2338.04946647273, - "2034-01-01": 2292.77525973491, - "2033-01-01": 2248.05999382102, - "2032-01-01": 2204.46260955497, - "2031-01-01": 2161.98310693677, - "2030-01-01": 2120.0625451425, - "2029-01-01": 2078.70092417214, - "2028-01-01": 2037.89824402572, - "2027-01-01": 1996.53662305536, - "2026-01-01": 1948.52360628032, - "2025-01-01": 1919.18573400061, - "2024-01-01": 1877.53532693789, - "2023-01-01": 1776, - "2015-01-01": 1776 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2452.58229506683, - "2034-01-01": 2405.09026401247, - "2033-01-01": 2358.18455432914, - "2032-01-01": 2312.4514873879, - "2031-01-01": 2267.89106318874, - "2030-01-01": 2223.91696036063, - "2029-01-01": 2180.52917890355, - "2028-01-01": 2137.72771881752, - "2027-01-01": 2094.33993736044, - "2026-01-01": 2043.97493158797, - "2025-01-01": 2013.19990002429, - "2024-01-01": 1969.50918585884, - "2023-01-01": 1863, - "2015-01-01": 1863 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2572.38100083768, - "2034-01-01": 2522.56917653267, - "2033-01-01": 2473.37231302155, - "2032-01-01": 2425.40537109821, - "2031-01-01": 2378.66835076264, - "2030-01-01": 2332.54629122097, - "2029-01-01": 2287.03919247318, - "2028-01-01": 2242.14705451928, - "2027-01-01": 2196.6399557715, - "2026-01-01": 2143.81482357643, - "2025-01-01": 2111.53655643986, - "2024-01-01": 2065.71172794856, - "2023-01-01": 1954, - "2015-01-01": 1954 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2685.59736013759, - "2034-01-01": 2633.59320374956, - "2033-01-01": 2582.2310739836, - "2032-01-01": 2532.15299746179, - "2031-01-01": 2483.35897418413, - "2030-01-01": 2435.20697752854, - "2029-01-01": 2387.69700749503, - "2028-01-01": 2340.82906408359, - "2027-01-01": 2293.31909405008, - "2026-01-01": 2238.16900721388, - "2025-01-01": 2204.47009986556, - "2024-01-01": 2156.62841607731, - "2023-01-01": 2040, - "2015-01-01": 2040 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2793.54784226077, - "2034-01-01": 2739.45332272381, - "2033-01-01": 2686.02663676137, - "2032-01-01": 2633.935617948, - "2031-01-01": 2583.18026628369, - "2030-01-01": 2533.09274819391, - "2029-01-01": 2483.67306367865, - "2028-01-01": 2434.92121273793, - "2027-01-01": 2385.50152822268, - "2026-01-01": 2328.13462417052, - "2025-01-01": 2293.08115289937, - "2024-01-01": 2243.31642103728, - "2023-01-01": 2122, - "2015-01-01": 2122 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WV.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3421.50369558706, - "2034-01-01": 3355.24938065937, - "2033-01-01": 3289.81302023695, - "2032-01-01": 3226.0125688251, - "2031-01-01": 3163.8480264238, - "2030-01-01": 3102.50143852779, - "2029-01-01": 3041.97280513705, - "2028-01-01": 2982.2621262516, - "2027-01-01": 2921.73349286086, - "2026-01-01": 2851.47120085729, - "2025-01-01": 2808.53813213265, - "2024-01-01": 2747.58688891418, - "2023-01-01": 2599, - "2015-01-01": 2599 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI", - "description": null, - "label": "WI", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 554.233572851925, - "2034-01-01": 543.501342538512, - "2033-01-01": 532.901608895635, - "2032-01-01": 522.56686859383, - "2031-01-01": 512.497121633097, - "2030-01-01": 502.5598713429, - "2029-01-01": 492.755117723239, - "2028-01-01": 483.082860774114, - "2027-01-01": 473.278107154453, - "2026-01-01": 461.896643155414, - "2025-01-01": 454.942113746766, - "2024-01-01": 445.068903513994, - "2023-01-01": 421, - "2015-01-01": 421 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 800.413330864538, - "2034-01-01": 784.914052882222, - "2033-01-01": 769.606124010799, - "2032-01-01": 754.680893361161, - "2031-01-01": 740.138360933309, - "2030-01-01": 725.78717761635, - "2029-01-01": 711.627343410284, - "2028-01-01": 697.65885831511, - "2027-01-01": 683.499024109044, - "2026-01-01": 667.062135483353, - "2025-01-01": 657.018539567776, - "2024-01-01": 642.759841654414, - "2023-01-01": 608, - "2015-01-01": 608 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 925.477913812122, - "2034-01-01": 907.556873645069, - "2033-01-01": 889.857080887486, - "2032-01-01": 872.599782948843, - "2031-01-01": 855.784979829139, - "2030-01-01": 839.191424118905, - "2029-01-01": 822.81911581814, - "2028-01-01": 806.668054926846, - "2027-01-01": 790.295746626082, - "2026-01-01": 771.290594152627, - "2025-01-01": 759.677686375241, - "2024-01-01": 743.191066912917, - "2023-01-01": 703, - "2015-01-01": 703 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1032.11192664111, - "2034-01-01": 1012.12601555865, - "2033-01-01": 992.386844119188, - "2032-01-01": 973.141151965708, - "2031-01-01": 954.388939098215, - "2030-01-01": 935.883465873715, - "2029-01-01": 917.624732292208, - "2028-01-01": 899.612738353695, - "2027-01-01": 881.354004772188, - "2026-01-01": 860.159069439061, - "2025-01-01": 847.208116811079, - "2024-01-01": 828.821901080692, - "2023-01-01": 784, - "2015-01-01": 784 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1125.58124652826, - "2034-01-01": 1103.78538686562, - "2033-01-01": 1082.25861189019, - "2032-01-01": 1061.27000628913, - "2031-01-01": 1040.81957006247, - "2030-01-01": 1020.63821852299, - "2029-01-01": 1000.72595167071, - "2028-01-01": 981.082769505623, - "2027-01-01": 961.170502653343, - "2026-01-01": 938.056128023466, - "2025-01-01": 923.932321267184, - "2024-01-01": 903.88102732652, - "2023-01-01": 855, - "2015-01-01": 855 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1209.8352813561, - "2034-01-01": 1186.40791874796, - "2033-01-01": 1163.26978283869, - "2032-01-01": 1140.71010032715, - "2031-01-01": 1118.72887121334, - "2030-01-01": 1097.0368687984, - "2029-01-01": 1075.63409308232, - "2028-01-01": 1054.52054406511, - "2027-01-01": 1033.11776834903, - "2026-01-01": 1008.27319491645, - "2025-01-01": 993.092167537477, - "2024-01-01": 971.539958026985, - "2023-01-01": 919, - "2015-01-01": 919 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1286.19050041884, - "2034-01-01": 1261.28458826633, - "2033-01-01": 1236.68615651077, - "2032-01-01": 1212.7026855491, - "2031-01-01": 1189.33417538132, - "2030-01-01": 1166.27314561048, - "2029-01-01": 1143.51959623659, - "2028-01-01": 1121.07352725964, - "2027-01-01": 1098.31997788575, - "2026-01-01": 1071.90741178822, - "2025-01-01": 1055.76827821993, - "2024-01-01": 1032.85586397428, - "2023-01-01": 977, - "2015-01-01": 977 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1357.27984230483, - "2034-01-01": 1330.99734954206, - "2033-01-01": 1305.03933199857, - "2032-01-01": 1279.73026489368, - "2031-01-01": 1255.07014822737, - "2030-01-01": 1230.73450678036, - "2029-01-01": 1206.72334055264, - "2028-01-01": 1183.03664954421, - "2027-01-01": 1159.02548331649, - "2026-01-01": 1131.15306197917, - "2025-01-01": 1114.12189851049, - "2024-01-01": 1089.9430867528, - "2023-01-01": 1031, - "2015-01-01": 1031 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1424.41977630827, - "2034-01-01": 1396.8371796358, - "2033-01-01": 1369.59510884816, - "2032-01-01": 1343.03408983022, - "2031-01-01": 1317.15412258198, - "2030-01-01": 1291.61468121857, - "2029-01-01": 1266.41576574001, - "2028-01-01": 1241.5573761463, - "2027-01-01": 1216.35846066774, - "2026-01-01": 1187.10728715952, - "2025-01-01": 1169.23365100713, - "2024-01-01": 1143.85879715473, - "2023-01-01": 1082, - "2015-01-01": 1082 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1511.30674972449, - "2034-01-01": 1482.04166563946, - "2033-01-01": 1453.13787888881, - "2032-01-01": 1424.95668680693, - "2031-01-01": 1397.49808939381, - "2030-01-01": 1370.40078931508, - "2029-01-01": 1343.66478657073, - "2028-01-01": 1317.29008116077, - "2027-01-01": 1290.55407841642, - "2026-01-01": 1259.51863739291, - "2025-01-01": 1240.55474247337, - "2024-01-01": 1213.63206943959, - "2023-01-01": 1148, - "2015-01-01": 1148 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1624.52310902441, - "2034-01-01": 1593.06569285635, - "2033-01-01": 1561.99663985086, - "2032-01-01": 1531.70431317051, - "2031-01-01": 1502.1887128153, - "2030-01-01": 1473.06147562266, - "2029-01-01": 1444.32260159258, - "2028-01-01": 1415.97209072508, - "2027-01-01": 1387.233216695, - "2026-01-01": 1353.87282103036, - "2025-01-01": 1333.48828589907, - "2024-01-01": 1304.54875756833, - "2023-01-01": 1234, - "2015-01-01": 1234 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1728.52418326503, - "2034-01-01": 1695.05288064861, - "2033-01-01": 1661.99480399043, - "2032-01-01": 1629.76317924869, - "2031-01-01": 1598.35800642341, - "2030-01-01": 1567.36605955636, - "2029-01-01": 1536.78733864754, - "2028-01-01": 1506.62184369694, - "2027-01-01": 1476.04312278812, - "2026-01-01": 1440.54701297639, - "2025-01-01": 1418.85747113896, - "2024-01-01": 1388.06525015172, - "2023-01-01": 1313, - "2015-01-01": 1313 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1824.62644174054, - "2034-01-01": 1789.29420607691, - "2033-01-01": 1754.39817085356, - "2032-01-01": 1720.37453651081, - "2031-01-01": 1687.22330304863, - "2030-01-01": 1654.50827002675, - "2029-01-01": 1622.22943744515, - "2028-01-01": 1590.38680530385, - "2027-01-01": 1558.10797272226, - "2026-01-01": 1520.6383549012, - "2025-01-01": 1497.74292079101, - "2024-01-01": 1465.23871798194, - "2023-01-01": 1386, - "2015-01-01": 1386 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1914.14635374513, - "2034-01-01": 1877.08064620189, - "2033-01-01": 1840.47253998635, - "2032-01-01": 1804.7796364262, - "2031-01-01": 1770.00193552143, - "2030-01-01": 1735.68183594436, - "2029-01-01": 1701.81933769499, - "2028-01-01": 1668.41444077331, - "2027-01-01": 1634.55194252393, - "2026-01-01": 1595.24398847499, - "2025-01-01": 1571.2252574532, - "2024-01-01": 1537.12633185118, - "2023-01-01": 1454, - "2015-01-01": 1454 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2007.61567363227, - "2034-01-01": 1968.74001750886, - "2033-01-01": 1930.34430775735, - "2032-01-01": 1892.90849074962, - "2031-01-01": 1856.43256648569, - "2030-01-01": 1820.43658859364, - "2029-01-01": 1784.92055707349, - "2028-01-01": 1749.88447192523, - "2027-01-01": 1714.36844040509, - "2026-01-01": 1673.1410470594, - "2025-01-01": 1647.94946190931, - "2024-01-01": 1612.18545809701, - "2023-01-01": 1525, - "2015-01-01": 1525 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2106.35087069615, - "2034-01-01": 2065.56329705848, - "2033-01-01": 2025.27927371263, - "2032-01-01": 1986.00235095042, - "2031-01-01": 1947.73252877187, - "2030-01-01": 1909.96625688513, - "2029-01-01": 1872.70353529022, - "2028-01-01": 1835.94436398713, - "2027-01-01": 1798.68164239222, - "2026-01-01": 1755.42667232461, - "2025-01-01": 1728.9961567573, - "2024-01-01": 1691.47326751162, - "2023-01-01": 1600, - "2015-01-01": 1600 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2199.82019058329, - "2034-01-01": 2157.22266836545, - "2033-01-01": 2115.15104148363, - "2032-01-01": 2074.13120527385, - "2031-01-01": 2034.16315973612, - "2030-01-01": 1994.72100953441, - "2029-01-01": 1955.80475466872, - "2028-01-01": 1917.41439513906, - "2027-01-01": 1878.49814027338, - "2026-01-01": 1833.32373090902, - "2025-01-01": 1805.72036121341, - "2024-01-01": 1766.53239375744, - "2023-01-01": 1671, - "2015-01-01": 1671 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2288.0236332937, - "2034-01-01": 2243.71813142977, - "2033-01-01": 2199.95961107034, - "2032-01-01": 2157.2950537199, - "2031-01-01": 2115.72445937844, - "2030-01-01": 2074.70084654147, - "2029-01-01": 2034.224215209, - "2028-01-01": 1994.29456538102, - "2027-01-01": 1953.81793404855, - "2026-01-01": 1906.83222281261, - "2025-01-01": 1878.12207527762, - "2024-01-01": 1837.36283683449, - "2023-01-01": 1738, - "2015-01-01": 1738 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2804.07959661425, - "2034-01-01": 2749.7811392091, - "2033-01-01": 2696.15303312994, - "2032-01-01": 2643.86562970275, - "2031-01-01": 2592.91892892755, - "2030-01-01": 2542.64257947833, - "2029-01-01": 2493.03658135511, - "2028-01-01": 2444.10093455787, - "2027-01-01": 2394.49493643464, - "2026-01-01": 2336.91175753214, - "2025-01-01": 2301.72613368316, - "2024-01-01": 2251.77378737484, - "2023-01-01": 2130, - "2015-01-01": 2130 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 629.272322620476, - "2034-01-01": 617.087034996221, - "2033-01-01": 605.052183021648, - "2032-01-01": 593.318202346439, - "2031-01-01": 581.885092970595, - "2030-01-01": 570.602419244433, - "2029-01-01": 559.470181167953, - "2028-01-01": 548.488378741156, - "2027-01-01": 537.356140664676, - "2026-01-01": 524.433718356978, - "2025-01-01": 516.537601831245, - "2024-01-01": 505.327638669095, - "2023-01-01": 478, - "2015-01-01": 478 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 909.680282281901, - "2034-01-01": 892.065148917131, - "2033-01-01": 874.667486334641, - "2032-01-01": 857.704765316714, - "2031-01-01": 841.17698586335, - "2030-01-01": 824.866677192267, - "2029-01-01": 808.773839303464, - "2028-01-01": 792.898472196942, - "2027-01-01": 776.80563430814, - "2026-01-01": 758.124894110193, - "2025-01-01": 746.710215199561, - "2024-01-01": 730.505017406579, - "2023-01-01": 691, - "2015-01-01": 691 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1051.85896605389, - "2034-01-01": 1031.49067146858, - "2033-01-01": 1011.37383731024, - "2032-01-01": 991.759924005868, - "2031-01-01": 972.648931555451, - "2030-01-01": 953.789399532013, - "2029-01-01": 935.181327935554, - "2028-01-01": 916.824716766074, - "2027-01-01": 898.216645169615, - "2026-01-01": 876.616194492104, - "2025-01-01": 863.417455780679, - "2024-01-01": 844.679462963614, - "2023-01-01": 799, - "2015-01-01": 799 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1171.65767182473, - "2034-01-01": 1148.96958398878, - "2033-01-01": 1126.56159600265, - "2032-01-01": 1104.71380771617, - "2031-01-01": 1083.42621912935, - "2030-01-01": 1062.41873039235, - "2029-01-01": 1041.69134150518, - "2028-01-01": 1021.24405246784, - "2027-01-01": 1000.51666358067, - "2026-01-01": 976.456086480566, - "2025-01-01": 961.75411219625, - "2024-01-01": 940.882005053337, - "2023-01-01": 890, - "2015-01-01": 890 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1278.29168465373, - "2034-01-01": 1253.53872590236, - "2033-01-01": 1229.09135923435, - "2032-01-01": 1205.25517673304, - "2031-01-01": 1182.03017839843, - "2030-01-01": 1159.11077214716, - "2029-01-01": 1136.49695797925, - "2028-01-01": 1114.18873589469, - "2027-01-01": 1091.57492172678, - "2026-01-01": 1065.324561767, - "2025-01-01": 1049.28454263209, - "2024-01-01": 1026.51283922111, - "2023-01-01": 971, - "2015-01-01": 971 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1373.07747383505, - "2034-01-01": 1346.48907427, - "2033-01-01": 1320.22892655142, - "2032-01-01": 1294.62528252581, - "2031-01-01": 1269.67814219316, - "2030-01-01": 1245.059253707, - "2029-01-01": 1220.76861706731, - "2028-01-01": 1196.80623227411, - "2027-01-01": 1172.51559563443, - "2026-01-01": 1144.31876202161, - "2025-01-01": 1127.08936968617, - "2024-01-01": 1102.62913625914, - "2023-01-01": 1043, - "2015-01-01": 1043 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1459.96444725127, - "2034-01-01": 1431.69356027366, - "2033-01-01": 1403.77169659207, - "2032-01-01": 1376.54787950251, - "2031-01-01": 1350.022109005, - "2030-01-01": 1323.84536180351, - "2029-01-01": 1298.01763789803, - "2028-01-01": 1272.53893728858, - "2027-01-01": 1246.71121338311, - "2026-01-01": 1216.730112255, - "2025-01-01": 1198.41046115241, - "2024-01-01": 1172.40240854399, - "2023-01-01": 1109, - "2015-01-01": 1109 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1540.26907419656, - "2034-01-01": 1510.44316097401, - "2033-01-01": 1480.98546890236, - "2032-01-01": 1452.2642191325, - "2031-01-01": 1424.27941166443, - "2030-01-01": 1396.66282534725, - "2029-01-01": 1369.41446018097, - "2028-01-01": 1342.53431616559, - "2027-01-01": 1315.28595099931, - "2026-01-01": 1283.65575413737, - "2025-01-01": 1264.32843962878, - "2024-01-01": 1236.88982686787, - "2023-01-01": 1170, - "2015-01-01": 1170 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1615.30782396511, - "2034-01-01": 1584.02885343172, - "2033-01-01": 1553.13604302837, - "2032-01-01": 1523.01555288511, - "2031-01-01": 1493.66738300193, - "2030-01-01": 1464.70537324879, - "2029-01-01": 1436.12952362569, - "2028-01-01": 1407.93983413263, - "2027-01-01": 1379.36398450953, - "2026-01-01": 1346.19282933894, - "2025-01-01": 1325.92392771326, - "2024-01-01": 1297.14856202297, - "2023-01-01": 1227, - "2015-01-01": 1227 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1715.35949032318, - "2034-01-01": 1682.143110042, - "2033-01-01": 1649.33680852972, - "2032-01-01": 1617.35066455525, - "2031-01-01": 1586.18467811859, - "2030-01-01": 1555.42877045083, - "2029-01-01": 1525.08294155197, - "2028-01-01": 1495.14719142202, - "2027-01-01": 1464.80136252316, - "2026-01-01": 1429.57559627436, - "2025-01-01": 1408.05124515923, - "2024-01-01": 1377.49354222977, - "2023-01-01": 1303, - "2015-01-01": 1303 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1843.05701185913, - "2034-01-01": 1807.36788492617, - "2033-01-01": 1772.11936449855, - "2032-01-01": 1737.75205708162, - "2031-01-01": 1704.26596267538, - "2030-01-01": 1671.22047477449, - "2029-01-01": 1638.61559337894, - "2028-01-01": 1606.45131848874, - "2027-01-01": 1573.84643709319, - "2026-01-01": 1535.99833828404, - "2025-01-01": 1512.87163716264, - "2024-01-01": 1480.03910907266, - "2023-01-01": 1400, - "2015-01-01": 1400 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1961.53924833579, - "2034-01-01": 1923.55582038571, - "2033-01-01": 1886.04132364488, - "2032-01-01": 1849.46468932258, - "2031-01-01": 1813.8259174188, - "2030-01-01": 1778.65607672428, - "2029-01-01": 1743.95516723902, - "2028-01-01": 1709.72318896302, - "2027-01-01": 1675.02227947776, - "2026-01-01": 1634.7410886023, - "2025-01-01": 1610.12767098024, - "2024-01-01": 1575.18448037019, - "2023-01-01": 1490, - "2015-01-01": 1490 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2069.48973045897, - "2034-01-01": 2029.41593935996, - "2033-01-01": 1989.83688642266, - "2032-01-01": 1951.24730980879, - "2031-01-01": 1913.64720951836, - "2030-01-01": 1876.54184738964, - "2029-01-01": 1839.93122342264, - "2028-01-01": 1803.81533761736, - "2027-01-01": 1767.20471365036, - "2026-01-01": 1724.70670555893, - "2025-01-01": 1698.73872401405, - "2024-01-01": 1661.87248533016, - "2023-01-01": 1572, - "2015-01-01": 1572 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2172.17433540541, - "2034-01-01": 2130.11215009156, - "2033-01-01": 2088.56925101615, - "2032-01-01": 2048.06492441762, - "2031-01-01": 2008.59917029599, - "2030-01-01": 1969.65270241279, - "2029-01-01": 1931.22552076804, - "2028-01-01": 1893.31762536173, - "2027-01-01": 1854.89044371698, - "2026-01-01": 1810.28375583476, - "2025-01-01": 1783.02728665597, - "2024-01-01": 1744.33180712135, - "2023-01-01": 1650, - "2015-01-01": 1650 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2277.49187894022, - "2034-01-01": 2233.39031494448, - "2033-01-01": 2189.83321470178, - "2032-01-01": 2147.36504196515, - "2031-01-01": 2105.98579673458, - "2030-01-01": 2065.15101525705, - "2029-01-01": 2024.86069753255, - "2028-01-01": 1985.11484356109, - "2027-01-01": 1944.82452583659, - "2026-01-01": 1898.05508945099, - "2025-01-01": 1869.47709449384, - "2024-01-01": 1828.90547049694, - "2023-01-01": 1730, - "2015-01-01": 1730 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2389.39176894595, - "2034-01-01": 2343.12336510071, - "2033-01-01": 2297.42617611776, - "2032-01-01": 2252.87141685939, - "2031-01-01": 2209.45908732559, - "2030-01-01": 2166.61797265407, - "2029-01-01": 2124.34807284484, - "2028-01-01": 2082.6493878979, - "2027-01-01": 2040.37948808867, - "2026-01-01": 1991.31213141823, - "2025-01-01": 1961.33001532157, - "2024-01-01": 1918.76498783349, - "2023-01-01": 1815, - "2015-01-01": 1815 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2494.70931248076, - "2034-01-01": 2446.40152995364, - "2033-01-01": 2398.69013980339, - "2032-01-01": 2352.17153440691, - "2031-01-01": 2306.84571376418, - "2030-01-01": 2262.11628549833, - "2029-01-01": 2217.98324960935, - "2028-01-01": 2174.44660609726, - "2027-01-01": 2130.31357020829, - "2026-01-01": 2079.08346503446, - "2025-01-01": 2047.77982315943, - "2024-01-01": 2003.33865120907, - "2023-01-01": 1895, - "2015-01-01": 1895 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2594.76097883882, - "2034-01-01": 2544.51578656391, - "2033-01-01": 2494.89090530474, - "2032-01-01": 2446.50664607705, - "2031-01-01": 2399.36300888084, - "2030-01-01": 2352.83968270037, - "2029-01-01": 2306.93666753564, - "2028-01-01": 2261.65396338665, - "2027-01-01": 2215.75094822192, - "2026-01-01": 2162.46623196988, - "2025-01-01": 2129.9071406054, - "2024-01-01": 2083.68363141587, - "2023-01-01": 1971, - "2015-01-01": 1971 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3177.95687616282, - "2034-01-01": 3116.41862443698, - "2033-01-01": 3055.64010421393, - "2032-01-01": 2996.38104699645, - "2031-01-01": 2938.64145278455, - "2030-01-01": 2881.66159007544, - "2029-01-01": 2825.44145886912, - "2028-01-01": 2769.98105916558, - "2027-01-01": 2713.76092795926, - "2026-01-01": 2648.49999186976, - "2025-01-01": 2608.62295150758, - "2024-01-01": 2552.01029235815, - "2023-01-01": 2414, - "2015-01-01": 2414 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 677.981686505324, - "2034-01-01": 664.853186240698, - "2033-01-01": 651.886766226252, - "2032-01-01": 639.244506712168, - "2031-01-01": 626.926407698445, - "2030-01-01": 614.770388934902, - "2029-01-01": 602.77645042154, - "2028-01-01": 590.944592158358, - "2027-01-01": 578.950653644996, - "2026-01-01": 565.027960154485, - "2025-01-01": 556.520637956257, - "2024-01-01": 544.442957980302, - "2023-01-01": 515, - "2015-01-01": 515 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 979.453154873711, - "2034-01-01": 960.486933132193, - "2033-01-01": 941.754862276372, - "2032-01-01": 923.491093191947, - "2031-01-01": 905.695625878918, - "2030-01-01": 888.134309451586, - "2029-01-01": 870.807143909952, - "2028-01-01": 853.714129254016, - "2027-01-01": 836.386963712383, - "2026-01-01": 816.273402630945, - "2025-01-01": 803.983212892146, - "2024-01-01": 786.535069392902, - "2023-01-01": 744, - "2015-01-01": 744 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1133.48006229337, - "2034-01-01": 1111.53124922959, - "2033-01-01": 1089.85340916661, - "2032-01-01": 1068.7175151052, - "2031-01-01": 1048.12356704536, - "2030-01-01": 1027.80059198631, - "2029-01-01": 1007.74858992805, - "2028-01-01": 987.967560870575, - "2027-01-01": 967.915558812314, - "2026-01-01": 944.638978044683, - "2025-01-01": 930.416056855024, - "2024-01-01": 910.224052079689, - "2023-01-01": 861, - "2015-01-01": 861 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1262.49405312351, - "2034-01-01": 1238.04700117443, - "2033-01-01": 1213.90176468151, - "2032-01-01": 1190.36015910091, - "2031-01-01": 1167.42218443264, - "2030-01-01": 1144.78602522053, - "2029-01-01": 1122.45168146458, - "2028-01-01": 1100.41915316479, - "2027-01-01": 1078.08480940884, - "2026-01-01": 1052.15886172457, - "2025-01-01": 1036.31707145641, - "2024-01-01": 1013.82678971478, - "2023-01-01": 959, - "2015-01-01": 959 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1377.02688171761, - "2034-01-01": 1350.36200545198, - "2033-01-01": 1324.02632518963, - "2032-01-01": 1298.34903693384, - "2031-01-01": 1273.33014068461, - "2030-01-01": 1248.64044043866, - "2029-01-01": 1224.27993619598, - "2028-01-01": 1200.24862795659, - "2027-01-01": 1175.88812371391, - "2026-01-01": 1147.61018703222, - "2025-01-01": 1130.33123748009, - "2024-01-01": 1105.80064863572, - "2023-01-01": 1046, - "2015-01-01": 1046 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1479.71148666405, - "2034-01-01": 1451.05821618358, - "2033-01-01": 1422.75868978312, - "2032-01-01": 1395.16665154267, - "2031-01-01": 1368.28210146224, - "2030-01-01": 1341.75129546181, - "2029-01-01": 1315.57423354138, - "2028-01-01": 1289.75091570096, - "2027-01-01": 1263.57385378053, - "2026-01-01": 1233.18723730804, - "2025-01-01": 1214.61980012201, - "2024-01-01": 1188.25997042691, - "2023-01-01": 1124, - "2015-01-01": 1124 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1573.18080655119, - "2034-01-01": 1542.71758749055, - "2033-01-01": 1512.63045755412, - "2032-01-01": 1483.2955058661, - "2031-01-01": 1454.71273242649, - "2030-01-01": 1426.50604811108, - "2029-01-01": 1398.67545291988, - "2028-01-01": 1371.22094685289, - "2027-01-01": 1343.39035166169, - "2026-01-01": 1311.08429589245, - "2025-01-01": 1291.34400457811, - "2024-01-01": 1263.31909667274, - "2023-01-01": 1195, - "2015-01-01": 1195 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1660.06777996741, - "2034-01-01": 1627.92207349421, - "2033-01-01": 1596.17322759477, - "2032-01-01": 1565.2181028428, - "2031-01-01": 1535.05669923833, - "2030-01-01": 1505.29215620759, - "2029-01-01": 1475.9244737506, - "2028-01-01": 1446.95365186736, - "2027-01-01": 1417.58596941037, - "2026-01-01": 1383.49564612584, - "2025-01-01": 1362.66509604435, - "2024-01-01": 1333.09236895759, - "2023-01-01": 1261, - "2015-01-01": 1261 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1740.3724069127, - "2034-01-01": 1706.67167419457, - "2033-01-01": 1673.38699990506, - "2032-01-01": 1640.93444247279, - "2031-01-01": 1609.31400189776, - "2030-01-01": 1578.10961975134, - "2029-01-01": 1547.32129603354, - "2028-01-01": 1516.94903074437, - "2027-01-01": 1486.16070702657, - "2026-01-01": 1450.42128800821, - "2025-01-01": 1428.58307452072, - "2024-01-01": 1397.57978728147, - "2023-01-01": 1322, - "2015-01-01": 1322 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1847.00641974169, - "2034-01-01": 1811.24081610815, - "2033-01-01": 1775.91676313676, - "2032-01-01": 1741.47581148965, - "2031-01-01": 1707.91796116683, - "2030-01-01": 1674.80166150615, - "2029-01-01": 1642.12691250761, - "2028-01-01": 1609.89371417122, - "2027-01-01": 1577.21896517268, - "2026-01-01": 1539.28976329465, - "2025-01-01": 1516.11350495656, - "2024-01-01": 1483.21062144925, - "2023-01-01": 1403, - "2015-01-01": 1403 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1985.23569563112, - "2034-01-01": 1946.79340747762, - "2033-01-01": 1908.82571547415, - "2032-01-01": 1871.80721577077, - "2031-01-01": 1835.73790836748, - "2030-01-01": 1800.14319711424, - "2029-01-01": 1765.02308201103, - "2028-01-01": 1730.37756305787, - "2027-01-01": 1695.25744795467, - "2026-01-01": 1654.48963866595, - "2025-01-01": 1629.57887774376, - "2024-01-01": 1594.2135546297, - "2023-01-01": 1508, - "2015-01-01": 1508 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2112.93321716708, - "2034-01-01": 2072.01818236179, - "2033-01-01": 2031.60827144298, - "2032-01-01": 1992.20860829714, - "2031-01-01": 1953.81919292428, - "2030-01-01": 1915.9349014379, - "2029-01-01": 1878.555733838, - "2028-01-01": 1841.68169012459, - "2027-01-01": 1804.3025225247, - "2026-01-01": 1760.91238067563, - "2025-01-01": 1734.39926974717, - "2024-01-01": 1696.75912147259, - "2023-01-01": 1605, - "2015-01-01": 1605 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2228.78251505537, - "2034-01-01": 2185.6241637, - "2033-01-01": 2142.99863149717, - "2032-01-01": 2101.43873759942, - "2031-01-01": 2060.94448200673, - "2030-01-01": 2020.98304556658, - "2029-01-01": 1981.55442827896, - "2028-01-01": 1942.65863014388, - "2027-01-01": 1903.23001285627, - "2026-01-01": 1857.46084765348, - "2025-01-01": 1829.49405836882, - "2024-01-01": 1789.79015118573, - "2023-01-01": 1693, - "2015-01-01": 1693 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2338.04946647273, - "2034-01-01": 2292.77525973491, - "2033-01-01": 2248.05999382102, - "2032-01-01": 2204.46260955497, - "2031-01-01": 2161.98310693677, - "2030-01-01": 2120.0625451425, - "2029-01-01": 2078.70092417214, - "2028-01-01": 2037.89824402572, - "2027-01-01": 1996.53662305536, - "2026-01-01": 1948.52360628032, - "2025-01-01": 1919.18573400061, - "2024-01-01": 1877.53532693789, - "2023-01-01": 1776, - "2015-01-01": 1776 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2452.58229506683, - "2034-01-01": 2405.09026401247, - "2033-01-01": 2358.18455432914, - "2032-01-01": 2312.4514873879, - "2031-01-01": 2267.89106318874, - "2030-01-01": 2223.91696036063, - "2029-01-01": 2180.52917890355, - "2028-01-01": 2137.72771881752, - "2027-01-01": 2094.33993736044, - "2026-01-01": 2043.97493158797, - "2025-01-01": 2013.19990002429, - "2024-01-01": 1969.50918585884, - "2023-01-01": 1863, - "2015-01-01": 1863 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2572.38100083768, - "2034-01-01": 2522.56917653267, - "2033-01-01": 2473.37231302155, - "2032-01-01": 2425.40537109821, - "2031-01-01": 2378.66835076264, - "2030-01-01": 2332.54629122097, - "2029-01-01": 2287.03919247318, - "2028-01-01": 2242.14705451928, - "2027-01-01": 2196.6399557715, - "2026-01-01": 2143.81482357643, - "2025-01-01": 2111.53655643986, - "2024-01-01": 2065.71172794856, - "2023-01-01": 1954, - "2015-01-01": 1954 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2685.59736013759, - "2034-01-01": 2633.59320374956, - "2033-01-01": 2582.2310739836, - "2032-01-01": 2532.15299746179, - "2031-01-01": 2483.35897418413, - "2030-01-01": 2435.20697752854, - "2029-01-01": 2387.69700749503, - "2028-01-01": 2340.82906408359, - "2027-01-01": 2293.31909405008, - "2026-01-01": 2238.16900721388, - "2025-01-01": 2204.47009986556, - "2024-01-01": 2156.62841607731, - "2023-01-01": 2040, - "2015-01-01": 2040 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2793.54784226077, - "2034-01-01": 2739.45332272381, - "2033-01-01": 2686.02663676137, - "2032-01-01": 2633.935617948, - "2031-01-01": 2583.18026628369, - "2030-01-01": 2533.09274819391, - "2029-01-01": 2483.67306367865, - "2028-01-01": 2434.92121273793, - "2027-01-01": 2385.50152822268, - "2026-01-01": 2328.13462417052, - "2025-01-01": 2293.08115289937, - "2024-01-01": 2243.31642103728, - "2023-01-01": 2122, - "2015-01-01": 2122 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3421.50369558706, - "2034-01-01": 3355.24938065937, - "2033-01-01": 3289.81302023695, - "2032-01-01": 3226.0125688251, - "2031-01-01": 3163.8480264238, - "2030-01-01": 3102.50143852779, - "2029-01-01": 3041.97280513705, - "2028-01-01": 2982.2621262516, - "2027-01-01": 2921.73349286086, - "2026-01-01": 2851.47120085729, - "2025-01-01": 2808.53813213265, - "2024-01-01": 2747.58688891418, - "2023-01-01": 2599, - "2015-01-01": 2599 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 716.159296036692, - "2034-01-01": 702.291520999883, - "2033-01-01": 688.594953062294, - "2032-01-01": 675.240799323144, - "2031-01-01": 662.229059782435, - "2030-01-01": 649.388527340945, - "2029-01-01": 636.719201998675, - "2028-01-01": 624.221083755625, - "2027-01-01": 611.551758413355, - "2026-01-01": 596.845068590369, - "2025-01-01": 587.858693297483, - "2024-01-01": 575.10091095395, - "2023-01-01": 544, - "2015-01-01": 544 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1033.4283959353, - "2034-01-01": 1013.41699261932, - "2033-01-01": 993.652643665258, - "2032-01-01": 974.382403435052, - "2031-01-01": 955.606271928697, - "2030-01-01": 937.077194784268, - "2029-01-01": 918.795172001764, - "2028-01-01": 900.760203581186, - "2027-01-01": 882.478180798683, - "2026-01-01": 861.256211109264, - "2025-01-01": 848.288739409052, - "2024-01-01": 829.879071872887, - "2023-01-01": 785, - "2015-01-01": 785 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1195.35411912007, - "2034-01-01": 1172.20717108069, - "2033-01-01": 1149.34598783192, - "2032-01-01": 1127.05633416437, - "2031-01-01": 1105.33821007803, - "2030-01-01": 1083.90585078231, - "2029-01-01": 1062.7592562772, - "2028-01-01": 1041.8984265627, - "2027-01-01": 1020.75183205759, - "2026-01-01": 996.204636544218, - "2025-01-01": 981.20531895977, - "2024-01-01": 959.911079312842, - "2023-01-01": 908, - "2015-01-01": 908 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1332.26692571532, - "2034-01-01": 1306.46878538949, - "2033-01-01": 1280.98914062324, - "2032-01-01": 1256.14648697614, - "2031-01-01": 1231.94082444821, - "2030-01-01": 1208.05365747985, - "2029-01-01": 1184.48498607106, - "2028-01-01": 1161.23481022186, - "2027-01-01": 1137.66613881308, - "2026-01-01": 1110.30737024532, - "2025-01-01": 1093.59006914899, - "2024-01-01": 1069.8568417011, - "2023-01-01": 1012, - "2015-01-01": 1012 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1452.06563148616, - "2034-01-01": 1423.94769790969, - "2033-01-01": 1396.17689931564, - "2032-01-01": 1369.10037068645, - "2031-01-01": 1342.71811202211, - "2030-01-01": 1316.68298834019, - "2029-01-01": 1290.9949996407, - "2028-01-01": 1265.65414592363, - "2027-01-01": 1239.96615722414, - "2026-01-01": 1210.14726223378, - "2025-01-01": 1191.92672556457, - "2024-01-01": 1166.05938379082, - "2023-01-01": 1103, - "2015-01-01": 1103 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1560.01611360934, - "2034-01-01": 1529.80781688394, - "2033-01-01": 1499.97246209342, - "2032-01-01": 1470.88299117266, - "2031-01-01": 1442.53940412166, - "2030-01-01": 1414.56875900555, - "2029-01-01": 1386.97105582432, - "2028-01-01": 1359.74629457797, - "2027-01-01": 1332.14859139674, - "2026-01-01": 1300.11287919042, - "2025-01-01": 1280.53777859838, - "2024-01-01": 1252.74738875079, - "2023-01-01": 1185, - "2015-01-01": 1185 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1658.75131067322, - "2034-01-01": 1626.63109643355, - "2033-01-01": 1594.90742804869, - "2032-01-01": 1563.97685137346, - "2031-01-01": 1533.83936640785, - "2030-01-01": 1504.09842729704, - "2029-01-01": 1474.75403404105, - "2028-01-01": 1445.80618663987, - "2027-01-01": 1416.46179338387, - "2026-01-01": 1382.39850445563, - "2025-01-01": 1361.58447344638, - "2024-01-01": 1332.0351981654, - "2023-01-01": 1260, - "2015-01-01": 1260 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1749.58769197199, - "2034-01-01": 1715.7085136192, - "2033-01-01": 1682.24759672755, - "2032-01-01": 1649.6232027582, - "2031-01-01": 1617.83533171113, - "2030-01-01": 1586.46572212521, - "2029-01-01": 1555.51437400044, - "2028-01-01": 1524.98128733681, - "2027-01-01": 1494.02993921204, - "2026-01-01": 1458.10127969963, - "2025-01-01": 1436.14743270654, - "2024-01-01": 1404.97998282684, - "2023-01-01": 1329, - "2015-01-01": 1329 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1835.15819609402, - "2034-01-01": 1799.6220225622, - "2033-01-01": 1764.52456722213, - "2032-01-01": 1730.30454826556, - "2031-01-01": 1696.96196569249, - "2030-01-01": 1664.05810131117, - "2029-01-01": 1631.5929551216, - "2028-01-01": 1599.56652712379, - "2027-01-01": 1567.10138093422, - "2026-01-01": 1529.41548826282, - "2025-01-01": 1506.3879015748, - "2024-01-01": 1473.6960843195, - "2023-01-01": 1394, - "2015-01-01": 1394 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1947.05808609976, - "2034-01-01": 1909.35507271843, - "2033-01-01": 1872.11752863811, - "2032-01-01": 1835.8109231598, - "2031-01-01": 1800.43525628349, - "2030-01-01": 1765.52505870819, - "2029-01-01": 1731.0803304339, - "2028-01-01": 1697.1010714606, - "2027-01-01": 1662.65634318631, - "2026-01-01": 1622.67253023006, - "2025-01-01": 1598.24082240253, - "2024-01-01": 1563.55560165605, - "2023-01-01": 1479, - "2015-01-01": 1479 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2093.1861777543, - "2034-01-01": 2052.65352645186, - "2033-01-01": 2012.62127825192, - "2032-01-01": 1973.58983625698, - "2031-01-01": 1935.55920046704, - "2030-01-01": 1898.0289677796, - "2029-01-01": 1860.99913819466, - "2028-01-01": 1824.46971171221, - "2027-01-01": 1787.43988212727, - "2026-01-01": 1744.45525562259, - "2025-01-01": 1718.18993077757, - "2024-01-01": 1680.90155958967, - "2023-01-01": 1590, - "2015-01-01": 1590 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2227.46604576118, - "2034-01-01": 2184.33318663934, - "2033-01-01": 2141.7328319511, - "2032-01-01": 2100.19748613007, - "2031-01-01": 2059.72714917625, - "2030-01-01": 2019.78931665603, - "2029-01-01": 1980.38398856941, - "2028-01-01": 1941.51116491639, - "2027-01-01": 1902.10583682977, - "2026-01-01": 1856.36370598328, - "2025-01-01": 1828.41343577085, - "2024-01-01": 1788.73298039353, - "2023-01-01": 1692, - "2015-01-01": 1692 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2349.8976901204, - "2034-01-01": 2304.39405328087, - "2033-01-01": 2259.45218973565, - "2032-01-01": 2215.63387277907, - "2031-01-01": 2172.93910241111, - "2030-01-01": 2130.80610533748, - "2029-01-01": 2089.23488155815, - "2028-01-01": 2048.22543107314, - "2027-01-01": 2006.65420729382, - "2026-01-01": 1958.39788131215, - "2025-01-01": 1928.91133738237, - "2024-01-01": 1887.04986406765, - "2023-01-01": 1785, - "2015-01-01": 1785 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2465.74698800868, - "2034-01-01": 2418.00003461908, - "2033-01-01": 2370.84254978985, - "2032-01-01": 2324.86400208134, - "2031-01-01": 2280.06439149357, - "2030-01-01": 2235.85424946616, - "2029-01-01": 2192.23357599911, - "2028-01-01": 2149.20237109244, - "2027-01-01": 2105.58169762539, - "2026-01-01": 2054.94634829, - "2025-01-01": 2024.00612600402, - "2024-01-01": 1980.08089378079, - "2023-01-01": 1873, - "2015-01-01": 1873 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2584.22922448534, - "2034-01-01": 2534.18797007862, - "2033-01-01": 2484.76450893618, - "2032-01-01": 2436.5766343223, - "2031-01-01": 2389.62434623698, - "2030-01-01": 2343.28985141595, - "2029-01-01": 2297.57314985919, - "2028-01-01": 2252.47424156671, - "2027-01-01": 2206.75754000996, - "2026-01-01": 2153.68909860826, - "2025-01-01": 2121.26215982162, - "2024-01-01": 2075.22626507831, - "2023-01-01": 1963, - "2015-01-01": 1963 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2711.9267460213, - "2034-01-01": 2659.41274496279, - "2033-01-01": 2607.54706490501, - "2032-01-01": 2556.97802684867, - "2031-01-01": 2507.70563079378, - "2030-01-01": 2459.08155573961, - "2029-01-01": 2411.10580168616, - "2028-01-01": 2363.77836863343, - "2027-01-01": 2315.80261457998, - "2026-01-01": 2260.11184061794, - "2025-01-01": 2226.08255182503, - "2024-01-01": 2177.77183192121, - "2023-01-01": 2060, - "2015-01-01": 2060 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2831.72545179214, - "2034-01-01": 2776.89165748299, - "2033-01-01": 2722.73482359741, - "2032-01-01": 2669.93191055898, - "2031-01-01": 2618.48291836768, - "2030-01-01": 2567.71088659995, - "2029-01-01": 2517.61581525579, - "2028-01-01": 2468.1977043352, - "2027-01-01": 2418.10263299104, - "2026-01-01": 2359.9517326064, - "2025-01-01": 2324.4192082406, - "2024-01-01": 2273.97437401093, - "2023-01-01": 2151, - "2015-01-01": 2151 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2944.94181109206, - "2034-01-01": 2887.91568469989, - "2033-01-01": 2831.59358455947, - "2032-01-01": 2776.67953692256, - "2031-01-01": 2723.17354178917, - "2030-01-01": 2670.37157290753, - "2029-01-01": 2618.27363027764, - "2028-01-01": 2566.87971389951, - "2027-01-01": 2514.78177126962, - "2026-01-01": 2454.30591624385, - "2025-01-01": 2417.35275166631, - "2024-01-01": 2364.89106213968, - "2023-01-01": 2237, - "2015-01-01": 2237 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3605.80939677298, - "2034-01-01": 3535.98616915198, - "2033-01-01": 3467.02495668681, - "2032-01-01": 3399.78777453326, - "2031-01-01": 3334.27462269134, - "2030-01-01": 3269.62348600524, - "2029-01-01": 3205.83436447495, - "2028-01-01": 3142.90725810047, - "2027-01-01": 3079.11813657018, - "2026-01-01": 3005.0710346857, - "2025-01-01": 2959.82529584891, - "2024-01-01": 2895.59079982145, - "2023-01-01": 2739, - "2015-01-01": 2739 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 746.438089802949, - "2034-01-01": 731.983993395098, - "2033-01-01": 717.708342621913, - "2032-01-01": 703.789583118057, - "2031-01-01": 690.22771488353, - "2030-01-01": 676.844292283669, - "2029-01-01": 663.639315318472, - "2028-01-01": 650.61278398794, - "2027-01-01": 637.407807022743, - "2026-01-01": 622.079327005035, - "2025-01-01": 612.71301305087, - "2024-01-01": 599.415839174429, - "2023-01-01": 567, - "2015-01-01": 567 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1076.87188264341, - "2034-01-01": 1056.01923562115, - "2033-01-01": 1035.42402868558, - "2032-01-01": 1015.3437019234, - "2031-01-01": 995.778255334617, - "2030-01-01": 976.470248832524, - "2029-01-01": 957.419682417125, - "2028-01-01": 938.626556088421, - "2027-01-01": 919.575989673023, - "2026-01-01": 897.461886225959, - "2025-01-01": 883.949285142172, - "2024-01-01": 864.765708015314, - "2023-01-01": 818, - "2015-01-01": 818 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1245.3799522991, - "2034-01-01": 1221.26429938583, - "2033-01-01": 1197.44637058259, - "2032-01-01": 1174.22388999944, - "2031-01-01": 1151.59685763637, - "2030-01-01": 1129.26754938333, - "2029-01-01": 1107.23596524034, - "2028-01-01": 1085.50210520739, - "2027-01-01": 1063.4705210644, - "2026-01-01": 1037.89602001193, - "2025-01-01": 1022.26897768276, - "2024-01-01": 1000.08356941624, - "2023-01-01": 946, - "2015-01-01": 946 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1387.55863607109, - "2034-01-01": 1360.68982193727, - "2033-01-01": 1334.15272155819, - "2032-01-01": 1308.27904868859, - "2031-01-01": 1283.06880332847, - "2030-01-01": 1258.19027172308, - "2029-01-01": 1233.64345387243, - "2028-01-01": 1209.42834977652, - "2027-01-01": 1184.88153192588, - "2026-01-01": 1156.38732039384, - "2025-01-01": 1138.97621826387, - "2024-01-01": 1114.25801497328, - "2023-01-01": 1054, - "2015-01-01": 1054 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1513.93968831286, - "2034-01-01": 1484.62361976078, - "2033-01-01": 1455.66947798095, - "2032-01-01": 1427.43918974562, - "2031-01-01": 1399.93275505478, - "2030-01-01": 1372.78824713619, - "2029-01-01": 1346.00566598985, - "2028-01-01": 1319.58501161575, - "2027-01-01": 1292.80243046941, - "2026-01-01": 1261.71292073332, - "2025-01-01": 1242.71598766931, - "2024-01-01": 1215.74641102397, - "2023-01-01": 1150, - "2015-01-01": 1150 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1625.83957831859, - "2034-01-01": 1594.35666991701, - "2033-01-01": 1563.26243939693, - "2032-01-01": 1532.94556463986, - "2031-01-01": 1503.40604564578, - "2030-01-01": 1474.25520453321, - "2029-01-01": 1445.49304130214, - "2028-01-01": 1417.11955595257, - "2027-01-01": 1388.3573927215, - "2026-01-01": 1354.96996270056, - "2025-01-01": 1334.56890849704, - "2024-01-01": 1305.60592836053, - "2023-01-01": 1235, - "2015-01-01": 1235 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1728.52418326503, - "2034-01-01": 1695.05288064861, - "2033-01-01": 1661.99480399043, - "2032-01-01": 1629.76317924869, - "2031-01-01": 1598.35800642341, - "2030-01-01": 1567.36605955636, - "2029-01-01": 1536.78733864754, - "2028-01-01": 1506.62184369694, - "2027-01-01": 1476.04312278812, - "2026-01-01": 1440.54701297639, - "2025-01-01": 1418.85747113896, - "2024-01-01": 1388.06525015172, - "2023-01-01": 1313, - "2015-01-01": 1313 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1823.30997244636, - "2034-01-01": 1788.00322901625, - "2033-01-01": 1753.13237130749, - "2032-01-01": 1719.13328504146, - "2031-01-01": 1686.00597021815, - "2030-01-01": 1653.31454111619, - "2029-01-01": 1621.0589977356, - "2028-01-01": 1589.23934007636, - "2027-01-01": 1556.98379669577, - "2026-01-01": 1519.54121323099, - "2025-01-01": 1496.66229819304, - "2024-01-01": 1464.18154718974, - "2023-01-01": 1385, - "2015-01-01": 1385 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1911.51341515676, - "2034-01-01": 1874.49869208057, - "2033-01-01": 1837.94094089421, - "2032-01-01": 1802.29713348751, - "2031-01-01": 1767.56726986047, - "2030-01-01": 1733.29437812326, - "2029-01-01": 1699.47845827587, - "2028-01-01": 1666.11951031832, - "2027-01-01": 1632.30359047094, - "2026-01-01": 1593.04970513459, - "2025-01-01": 1569.06401225725, - "2024-01-01": 1535.01199026679, - "2023-01-01": 1452, - "2015-01-01": 1452 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2028.67918233923, - "2034-01-01": 1989.39565047945, - "2033-01-01": 1950.59710049448, - "2032-01-01": 1912.76851425913, - "2031-01-01": 1875.9098917734, - "2030-01-01": 1839.53625116249, - "2029-01-01": 1803.64759242639, - "2028-01-01": 1768.24391556511, - "2027-01-01": 1732.35525682901, - "2026-01-01": 1690.69531378264, - "2025-01-01": 1665.23942347688, - "2024-01-01": 1629.10019077213, - "2023-01-01": 1541, - "2015-01-01": 1541 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2180.07315117052, - "2034-01-01": 2137.85801245553, - "2033-01-01": 2096.16404829257, - "2032-01-01": 2055.51243323369, - "2031-01-01": 2015.90316727888, - "2030-01-01": 1976.81507587611, - "2029-01-01": 1938.24815902538, - "2028-01-01": 1900.20241672668, - "2027-01-01": 1861.63549987595, - "2026-01-01": 1816.86660585598, - "2025-01-01": 1789.51102224381, - "2024-01-01": 1750.67483187452, - "2023-01-01": 1656, - "2015-01-01": 1656 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2319.61889635414, - "2034-01-01": 2274.70158088565, - "2033-01-01": 2230.33880017603, - "2032-01-01": 2187.08508898415, - "2031-01-01": 2144.94044731002, - "2030-01-01": 2103.35034039475, - "2029-01-01": 2062.31476823835, - "2028-01-01": 2021.83373084083, - "2027-01-01": 1980.79815868443, - "2026-01-01": 1933.16362289748, - "2025-01-01": 1904.05701762898, - "2024-01-01": 1862.73493584717, - "2023-01-01": 1762, - "2015-01-01": 1762 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2448.63288718428, - "2034-01-01": 2401.21733283048, - "2033-01-01": 2354.38715569093, - "2032-01-01": 2308.72773297987, - "2031-01-01": 2264.2390646973, - "2030-01-01": 2220.33577362897, - "2029-01-01": 2177.01785977488, - "2028-01-01": 2134.28532313504, - "2027-01-01": 2090.96740928096, - "2026-01-01": 2040.68350657736, - "2025-01-01": 2009.95803223037, - "2024-01-01": 1966.33767348225, - "2023-01-01": 1860, - "2015-01-01": 1860 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2568.43159295512, - "2034-01-01": 2518.69624535068, - "2033-01-01": 2469.57491438334, - "2032-01-01": 2421.68161669017, - "2031-01-01": 2375.0163522712, - "2030-01-01": 2328.96510448931, - "2029-01-01": 2283.52787334451, - "2028-01-01": 2238.70465883681, - "2027-01-01": 2193.26742769201, - "2026-01-01": 2140.52339856583, - "2025-01-01": 2108.29468864594, - "2024-01-01": 2062.54021557198, - "2023-01-01": 1951, - "2015-01-01": 1951 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2692.17970660852, - "2034-01-01": 2640.04808905287, - "2033-01-01": 2588.56007171395, - "2032-01-01": 2538.35925480851, - "2031-01-01": 2489.44563833654, - "2030-01-01": 2441.17562208131, - "2029-01-01": 2393.54920604281, - "2028-01-01": 2346.56639022105, - "2027-01-01": 2298.93997418256, - "2026-01-01": 2243.6547155649, - "2025-01-01": 2209.87321285543, - "2024-01-01": 2161.91427003829, - "2023-01-01": 2045, - "2015-01-01": 2045 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2825.14310532121, - "2034-01-01": 2770.43677217968, - "2033-01-01": 2716.40582586706, - "2032-01-01": 2663.72565321226, - "2031-01-01": 2612.39625421527, - "2030-01-01": 2561.74224204718, - "2029-01-01": 2511.76361670801, - "2028-01-01": 2462.46037819774, - "2027-01-01": 2412.48175285857, - "2026-01-01": 2354.46602425539, - "2025-01-01": 2319.01609525073, - "2024-01-01": 2268.68852004996, - "2023-01-01": 2146, - "2015-01-01": 2146 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2948.89121897461, - "2034-01-01": 2891.78861588187, - "2033-01-01": 2835.39098319768, - "2032-01-01": 2780.40329133059, - "2031-01-01": 2726.82554028061, - "2030-01-01": 2673.95275963919, - "2029-01-01": 2621.78494940631, - "2028-01-01": 2570.32210958198, - "2027-01-01": 2518.15429934911, - "2026-01-01": 2457.59734125446, - "2025-01-01": 2420.59461946023, - "2024-01-01": 2368.06257451626, - "2023-01-01": 2240, - "2015-01-01": 2240 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3067.37345545127, - "2034-01-01": 3007.97655134141, - "2033-01-01": 2949.31294234401, - "2032-01-01": 2892.11592357156, - "2031-01-01": 2836.38549502403, - "2030-01-01": 2781.38836158897, - "2029-01-01": 2727.12452326638, - "2028-01-01": 2673.59398005626, - "2027-01-01": 2619.33014173367, - "2026-01-01": 2556.34009157272, - "2025-01-01": 2517.85065327782, - "2024-01-01": 2463.20794581379, - "2023-01-01": 2330, - "2015-01-01": 2330 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3755.88689631008, - "2034-01-01": 3683.1575540674, - "2033-01-01": 3611.32610493883, - "2032-01-01": 3541.29044203848, - "2031-01-01": 3473.05056536634, - "2030-01-01": 3405.7085818083, - "2029-01-01": 3339.26449136437, - "2028-01-01": 3273.71829403455, - "2027-01-01": 3207.27420359063, - "2026-01-01": 3130.14518508883, - "2025-01-01": 3083.01627201787, - "2024-01-01": 3016.10827013165, - "2023-01-01": 2853, - "2015-01-01": 2853 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 788.565107216872, - "2034-01-01": 773.295259336268, - "2033-01-01": 758.213928096165, - "2032-01-01": 743.509630137065, - "2031-01-01": 729.182365458968, - "2030-01-01": 715.043617421371, - "2029-01-01": 701.093386024276, - "2028-01-01": 687.331671267682, - "2027-01-01": 673.381439870587, - "2026-01-01": 657.187860451527, - "2025-01-01": 647.292936186016, - "2024-01-01": 633.245304524662, - "2023-01-01": 599, - "2015-01-01": 599 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1137.42947017592, - "2034-01-01": 1115.40418041158, - "2033-01-01": 1093.65080780482, - "2032-01-01": 1072.44126951323, - "2031-01-01": 1051.77556553681, - "2030-01-01": 1031.38177871797, - "2029-01-01": 1011.25990905672, - "2028-01-01": 991.409956553051, - "2027-01-01": 971.288086891799, - "2026-01-01": 947.930403055291, - "2025-01-01": 933.657924648944, - "2024-01-01": 913.395564456273, - "2023-01-01": 864, - "2015-01-01": 864 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1315.15282489091, - "2034-01-01": 1289.68608360089, - "2033-01-01": 1264.53374652432, - "2032-01-01": 1240.01021787467, - "2031-01-01": 1216.11549765193, - "2030-01-01": 1192.53518164265, - "2029-01-01": 1169.26926984683, - "2028-01-01": 1146.31776226447, - "2027-01-01": 1123.05185046864, - "2026-01-01": 1096.04452853268, - "2025-01-01": 1079.54197537534, - "2024-01-01": 1056.11362140257, - "2023-01-01": 999, - "2015-01-01": 999 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1465.23032442801, - "2034-01-01": 1436.8574685163, - "2033-01-01": 1408.83489477635, - "2032-01-01": 1381.51288537989, - "2031-01-01": 1354.89144032693, - "2030-01-01": 1328.62027744572, - "2029-01-01": 1302.69939673626, - "2028-01-01": 1277.12879819855, - "2027-01-01": 1251.20791748909, - "2026-01-01": 1221.11867893581, - "2025-01-01": 1202.7329515443, - "2024-01-01": 1176.63109171277, - "2023-01-01": 1113, - "2015-01-01": 1113 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1598.19372314071, - "2034-01-01": 1567.24615164312, - "2033-01-01": 1536.68064892946, - "2032-01-01": 1506.87928378363, - "2031-01-01": 1477.84205620565, - "2030-01-01": 1449.18689741159, - "2029-01-01": 1420.91380740145, - "2028-01-01": 1393.02278617524, - "2027-01-01": 1364.7496961651, - "2026-01-01": 1331.9299876263, - "2025-01-01": 1311.8758339396, - "2024-01-01": 1283.40534172444, - "2023-01-01": 1214, - "2015-01-01": 1214 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1716.67595961736, - "2034-01-01": 1683.43408710266, - "2033-01-01": 1650.60260807579, - "2032-01-01": 1618.5919160246, - "2031-01-01": 1587.40201094907, - "2030-01-01": 1556.62249936138, - "2029-01-01": 1526.25338126153, - "2028-01-01": 1496.29465664951, - "2027-01-01": 1465.92553854966, - "2026-01-01": 1430.67273794456, - "2025-01-01": 1409.1318677572, - "2024-01-01": 1378.55071302197, - "2023-01-01": 1304, - "2015-01-01": 1304 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1824.62644174054, - "2034-01-01": 1789.29420607691, - "2033-01-01": 1754.39817085356, - "2032-01-01": 1720.37453651081, - "2031-01-01": 1687.22330304863, - "2030-01-01": 1654.50827002675, - "2029-01-01": 1622.22943744515, - "2028-01-01": 1590.38680530385, - "2027-01-01": 1558.10797272226, - "2026-01-01": 1520.6383549012, - "2025-01-01": 1497.74292079101, - "2024-01-01": 1465.23871798194, - "2023-01-01": 1386, - "2015-01-01": 1386 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1924.67810809861, - "2034-01-01": 1887.40846268719, - "2033-01-01": 1850.59893635491, - "2032-01-01": 1814.70964818095, - "2031-01-01": 1779.74059816529, - "2030-01-01": 1745.23166722879, - "2029-01-01": 1711.18285537144, - "2028-01-01": 1677.59416259324, - "2027-01-01": 1643.54535073589, - "2026-01-01": 1604.02112183662, - "2025-01-01": 1579.87023823699, - "2024-01-01": 1545.58369818874, - "2023-01-01": 1462, - "2015-01-01": 1462 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2018.14742798575, - "2034-01-01": 1979.06783399415, - "2033-01-01": 1940.47070412591, - "2032-01-01": 1902.83850250438, - "2031-01-01": 1866.17122912954, - "2030-01-01": 1829.98641987807, - "2029-01-01": 1794.28407474994, - "2028-01-01": 1759.06419374517, - "2027-01-01": 1723.36184861705, - "2026-01-01": 1681.91818042102, - "2025-01-01": 1656.59444269309, - "2024-01-01": 1620.64282443457, - "2023-01-01": 1533, - "2015-01-01": 1533 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2141.89554163915, - "2034-01-01": 2100.41967769634, - "2033-01-01": 2059.45586145653, - "2032-01-01": 2019.51614062271, - "2031-01-01": 1980.60051519489, - "2030-01-01": 1942.19693747007, - "2029-01-01": 1904.30540744824, - "2028-01-01": 1866.92592512941, - "2027-01-01": 1829.03439510759, - "2026-01-01": 1785.04949742009, - "2025-01-01": 1758.17296690258, - "2024-01-01": 1720.01687890088, - "2023-01-01": 1627, - "2015-01-01": 1627 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2301.18832623555, - "2034-01-01": 2256.62790203639, - "2033-01-01": 2212.61760653105, - "2032-01-01": 2169.70756841334, - "2031-01-01": 2127.89778768326, - "2030-01-01": 2086.63813564701, - "2029-01-01": 2045.92861230457, - "2028-01-01": 2005.76921765594, - "2027-01-01": 1965.0596943135, - "2026-01-01": 1917.80363951464, - "2025-01-01": 1888.92830125735, - "2024-01-01": 1847.93454475644, - "2023-01-01": 1748, - "2015-01-01": 1748 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2448.63288718428, - "2034-01-01": 2401.21733283048, - "2033-01-01": 2354.38715569093, - "2032-01-01": 2308.72773297987, - "2031-01-01": 2264.2390646973, - "2030-01-01": 2220.33577362897, - "2029-01-01": 2177.01785977488, - "2028-01-01": 2134.28532313504, - "2027-01-01": 2090.96740928096, - "2026-01-01": 2040.68350657736, - "2025-01-01": 2009.95803223037, - "2024-01-01": 1966.33767348225, - "2023-01-01": 1860, - "2015-01-01": 1860 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2582.91275519116, - "2034-01-01": 2532.89699301796, - "2033-01-01": 2483.49870939011, - "2032-01-01": 2435.33538285296, - "2031-01-01": 2388.4070134065, - "2030-01-01": 2342.09612250539, - "2029-01-01": 2296.40271014963, - "2028-01-01": 2251.32677633922, - "2027-01-01": 2205.63336398346, - "2026-01-01": 2152.59195693806, - "2025-01-01": 2120.18153722364, - "2024-01-01": 2074.16909428612, - "2023-01-01": 1962, - "2015-01-01": 1962 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2710.61027672711, - "2034-01-01": 2658.12176790213, - "2033-01-01": 2606.28126535894, - "2032-01-01": 2555.73677537933, - "2031-01-01": 2506.4882979633, - "2030-01-01": 2457.88782682905, - "2029-01-01": 2409.9353619766, - "2028-01-01": 2362.63090340594, - "2027-01-01": 2314.67843855349, - "2026-01-01": 2259.01469894774, - "2025-01-01": 2225.00192922706, - "2024-01-01": 2176.71466112901, - "2023-01-01": 2059, - "2015-01-01": 2059 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2840.94073685144, - "2034-01-01": 2785.92849690762, - "2033-01-01": 2731.59542041991, - "2032-01-01": 2678.62067084438, - "2031-01-01": 2627.00424818106, - "2030-01-01": 2576.06698897382, - "2029-01-01": 2525.80889322268, - "2028-01-01": 2476.22996092764, - "2027-01-01": 2425.97186517651, - "2026-01-01": 2367.63172429782, - "2025-01-01": 2331.98356642641, - "2024-01-01": 2281.37456955629, - "2023-01-01": 2158, - "2015-01-01": 2158 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2980.48648203506, - "2034-01-01": 2922.77206533775, - "2033-01-01": 2865.77017230337, - "2032-01-01": 2810.19332659485, - "2031-01-01": 2756.04152821219, - "2030-01-01": 2702.60225349246, - "2029-01-01": 2649.87550243566, - "2028-01-01": 2597.86127504179, - "2027-01-01": 2545.13452398499, - "2026-01-01": 2483.92874133933, - "2025-01-01": 2446.52956181159, - "2024-01-01": 2393.43467352894, - "2023-01-01": 2264, - "2015-01-01": 2264 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3112.13341145357, - "2034-01-01": 3051.8697714039, - "2033-01-01": 2992.35012691041, - "2032-01-01": 2934.31847352925, - "2031-01-01": 2877.77481126043, - "2030-01-01": 2821.97514454778, - "2029-01-01": 2766.9194733913, - "2028-01-01": 2712.60779779099, - "2027-01-01": 2657.55212663451, - "2026-01-01": 2593.64290835962, - "2025-01-01": 2554.59182160892, - "2024-01-01": 2499.15175274841, - "2023-01-01": 2364, - "2015-01-01": 2364 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3237.19799440115, - "2034-01-01": 3174.51259216675, - "2033-01-01": 3112.6010837871, - "2032-01-01": 3052.23736311693, - "2031-01-01": 2993.42143015626, - "2030-01-01": 2935.37939105034, - "2029-01-01": 2878.11124579916, - "2028-01-01": 2821.61699440272, - "2027-01-01": 2764.34884915154, - "2026-01-01": 2697.87136702889, - "2025-01-01": 2657.25096841638, - "2024-01-01": 2599.58297800692, - "2023-01-01": 2459, - "2015-01-01": 2459 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WI.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3962.57257549714, - "2034-01-01": 3885.84095259126, - "2033-01-01": 3810.05663367188, - "2032-01-01": 3736.16692272549, - "2031-01-01": 3664.17181975207, - "2030-01-01": 3593.12402076516, - "2029-01-01": 3523.02352576473, - "2028-01-01": 3453.87033475079, - "2027-01-01": 3383.76983975036, - "2026-01-01": 3302.39642731068, - "2025-01-01": 3252.67401989968, - "2024-01-01": 3182.08408450623, - "2023-01-01": 3010, - "2015-01-01": 3010 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY", - "description": null, - "label": "WY", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 376.510218136937, - "2034-01-01": 369.219439349203, - "2033-01-01": 362.018670176132, - "2032-01-01": 354.997920232388, - "2031-01-01": 348.157189517971, - "2030-01-01": 341.406468418217, - "2029-01-01": 334.745756933127, - "2028-01-01": 328.1750550627, - "2027-01-01": 321.514343577609, - "2026-01-01": 313.782517678025, - "2025-01-01": 309.058063020368, - "2024-01-01": 302.350846567701, - "2023-01-01": 286, - "2015-01-01": 286 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 531.853594850778, - "2034-01-01": 521.554732507266, - "2033-01-01": 511.383016612439, - "2032-01-01": 501.465593614982, - "2031-01-01": 491.802463514896, - "2030-01-01": 482.266479863496, - "2029-01-01": 472.857642660781, - "2028-01-01": 463.575951906751, - "2027-01-01": 454.167114704036, - "2026-01-01": 443.245234761965, - "2025-01-01": 436.571529581219, - "2024-01-01": 427.097000046683, - "2023-01-01": 404, - "2015-01-01": 404 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 610.841752501884, - "2034-01-01": 599.013356146959, - "2033-01-01": 587.330989376662, - "2032-01-01": 575.940681775623, - "2031-01-01": 564.842433343841, - "2030-01-01": 553.890214496688, - "2029-01-01": 543.084025234164, - "2028-01-01": 532.423865556268, - "2027-01-01": 521.617676293744, - "2026-01-01": 509.073734974138, - "2025-01-01": 501.408885459618, - "2024-01-01": 490.527247578369, - "2023-01-01": 464, - "2015-01-01": 464 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 676.665217211139, - "2034-01-01": 663.562209180036, - "2033-01-01": 650.620966680182, - "2032-01-01": 638.003255242824, - "2031-01-01": 625.709074867962, - "2030-01-01": 613.576660024349, - "2029-01-01": 601.606010711983, - "2028-01-01": 589.797126930866, - "2027-01-01": 577.826477618501, - "2026-01-01": 563.930818484282, - "2025-01-01": 555.440015358284, - "2024-01-01": 543.385787188107, - "2023-01-01": 514, - "2015-01-01": 514 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 734.589866155283, - "2034-01-01": 720.365199849145, - "2033-01-01": 706.316146707279, - "2032-01-01": 692.618319893961, - "2031-01-01": 679.271719409189, - "2030-01-01": 666.10073208869, - "2029-01-01": 653.105357932464, - "2028-01-01": 640.285596940512, - "2027-01-01": 627.290222784287, - "2026-01-01": 612.205051973209, - "2025-01-01": 602.98740966911, - "2024-01-01": 589.901302044676, - "2023-01-01": 558, - "2015-01-01": 558 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 785.932168628502, - "2034-01-01": 770.713305214945, - "2033-01-01": 755.682329004024, - "2032-01-01": 741.027127198377, - "2031-01-01": 726.747699798003, - "2030-01-01": 712.656159600265, - "2029-01-01": 698.752506605163, - "2028-01-01": 685.036740812698, - "2027-01-01": 671.133087817597, - "2026-01-01": 654.993577111122, - "2025-01-01": 645.131690990069, - "2024-01-01": 631.130962940272, - "2023-01-01": 597, - "2015-01-01": 597 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 833.325063219165, - "2034-01-01": 817.188479398761, - "2033-01-01": 801.251112662559, - "2032-01-01": 785.712180094762, - "2031-01-01": 770.57168169537, - "2030-01-01": 755.63040038018, - "2029-01-01": 740.888336149193, - "2028-01-01": 726.345489002409, - "2027-01-01": 711.603424771422, - "2026-01-01": 694.490677238425, - "2025-01-01": 684.034104517108, - "2024-01-01": 669.189111459283, - "2023-01-01": 633, - "2015-01-01": 633 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 876.768549927274, - "2034-01-01": 859.790722400592, - "2033-01-01": 843.022497682881, - "2032-01-01": 826.673478583114, - "2031-01-01": 810.74366510129, - "2030-01-01": 795.023454428436, - "2029-01-01": 779.512846564554, - "2028-01-01": 764.211841509644, - "2027-01-01": 748.701233645762, - "2026-01-01": 730.69635235512, - "2025-01-01": 719.694650250228, - "2024-01-01": 704.07574760171, - "2023-01-01": 666, - "2015-01-01": 666 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 917.579098047011, - "2034-01-01": 899.8110112811, - "2033-01-01": 882.262283611064, - "2032-01-01": 865.152274132779, - "2031-01-01": 848.480982846244, - "2030-01-01": 832.029050655586, - "2029-01-01": 815.796477560802, - "2028-01-01": 799.783263561894, - "2027-01-01": 783.550690467111, - "2026-01-01": 764.70774413141, - "2025-01-01": 753.193950787401, - "2024-01-01": 736.848042159748, - "2023-01-01": 697, - "2015-01-01": 697 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 970.237869814415, - "2034-01-01": 951.450093707562, - "2033-01-01": 932.894265453879, - "2032-01-01": 914.802332906539, - "2031-01-01": 897.174296065541, - "2030-01-01": 879.778207077714, - "2029-01-01": 862.614065943058, - "2028-01-01": 845.681872661573, - "2027-01-01": 828.517731526917, - "2026-01-01": 808.593410939525, - "2025-01-01": 796.418854706333, - "2024-01-01": 779.134873847538, - "2023-01-01": 737, - "2015-01-01": 737 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1040.01074240623, - "2034-01-01": 1019.87187792262, - "2033-01-01": 999.98164139561, - "2032-01-01": 980.588660781772, - "2031-01-01": 961.692936081109, - "2030-01-01": 943.045839337034, - "2029-01-01": 924.647370549546, - "2028-01-01": 906.497529718646, - "2027-01-01": 888.099060931159, - "2026-01-01": 866.741919460278, - "2025-01-01": 853.691852398919, - "2024-01-01": 835.164925833861, - "2023-01-01": 790, - "2015-01-01": 790 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1103.20126852711, - "2034-01-01": 1081.83877683438, - "2033-01-01": 1060.74001960699, - "2032-01-01": 1040.16873131028, - "2031-01-01": 1020.12491194427, - "2030-01-01": 1000.34482704359, - "2029-01-01": 980.828476608253, - "2028-01-01": 961.57586063826, - "2027-01-01": 942.059510202925, - "2026-01-01": 919.404719630016, - "2025-01-01": 905.561737101638, - "2024-01-01": 885.909123859209, - "2023-01-01": 838, - "2015-01-01": 838 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1161.12591747125, - "2034-01-01": 1138.64176750349, - "2033-01-01": 1116.43519963409, - "2032-01-01": 1094.78379596142, - "2031-01-01": 1073.68755648549, - "2030-01-01": 1052.86889910793, - "2029-01-01": 1032.32782382873, - "2028-01-01": 1012.06433064791, - "2027-01-01": 991.523255368712, - "2026-01-01": 967.678953118943, - "2025-01-01": 953.109131412464, - "2024-01-01": 932.424638715779, - "2023-01-01": 882, - "2015-01-01": 882 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1215.10115853284, - "2034-01-01": 1191.57182699061, - "2033-01-01": 1168.33298102297, - "2032-01-01": 1145.67510620453, - "2031-01-01": 1123.59820253527, - "2030-01-01": 1101.81178444061, - "2029-01-01": 1080.31585192055, - "2028-01-01": 1059.11040497508, - "2027-01-01": 1037.61447245501, - "2026-01-01": 1012.66176159726, - "2025-01-01": 997.41465792937, - "2024-01-01": 975.768641195764, - "2023-01-01": 923, - "2015-01-01": 923 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1271.7093381828, - "2034-01-01": 1247.08384059906, - "2033-01-01": 1222.762361504, - "2032-01-01": 1199.04891938632, - "2031-01-01": 1175.94351424601, - "2030-01-01": 1153.1421275944, - "2029-01-01": 1130.64475943147, - "2028-01-01": 1108.45140975723, - "2027-01-01": 1085.9540415943, - "2026-01-01": 1059.83885341599, - "2025-01-01": 1043.88142964222, - "2024-01-01": 1021.22698526014, - "2023-01-01": 966, - "2015-01-01": 966 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1330.95045642113, - "2034-01-01": 1305.17780832883, - "2033-01-01": 1279.72334107717, - "2032-01-01": 1254.9052355068, - "2031-01-01": 1230.72349161772, - "2030-01-01": 1206.85992856929, - "2029-01-01": 1183.31454636151, - "2028-01-01": 1160.08734499437, - "2027-01-01": 1136.54196278658, - "2026-01-01": 1109.21022857512, - "2025-01-01": 1092.50944655102, - "2024-01-01": 1068.7996709089, - "2023-01-01": 1011, - "2015-01-01": 1011 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1386.24216677691, - "2034-01-01": 1359.39884487661, - "2033-01-01": 1332.88692201212, - "2032-01-01": 1307.03779721925, - "2031-01-01": 1281.85147049798, - "2030-01-01": 1256.99654281253, - "2029-01-01": 1232.47301416288, - "2028-01-01": 1208.28088454903, - "2027-01-01": 1183.75735589938, - "2026-01-01": 1155.29017872364, - "2025-01-01": 1137.8955956659, - "2024-01-01": 1113.20084418108, - "2023-01-01": 1053, - "2015-01-01": 1053 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1440.21740783849, - "2034-01-01": 1412.32890436373, - "2033-01-01": 1384.78470340101, - "2032-01-01": 1357.92910746235, - "2031-01-01": 1331.76211654776, - "2030-01-01": 1305.93942814521, - "2029-01-01": 1280.46104225469, - "2028-01-01": 1255.3269588762, - "2027-01-01": 1229.84857298568, - "2026-01-01": 1200.27298720195, - "2025-01-01": 1182.20112218281, - "2024-01-01": 1156.54484666107, - "2023-01-01": 1094, - "2015-01-01": 1094 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1746.95475338362, - "2034-01-01": 1713.12655949788, - "2033-01-01": 1679.71599763541, - "2032-01-01": 1647.14069981951, - "2031-01-01": 1615.40066605017, - "2030-01-01": 1584.07826430411, - "2029-01-01": 1553.17349458133, - "2028-01-01": 1522.68635688183, - "2027-01-01": 1491.78158715905, - "2026-01-01": 1455.90699635923, - "2025-01-01": 1433.98618751059, - "2024-01-01": 1402.86564124245, - "2023-01-01": 1327, - "2015-01-01": 1327 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 418.63723555086, - "2034-01-01": 410.530705290373, - "2033-01-01": 402.524255650385, - "2032-01-01": 394.717967251397, - "2031-01-01": 387.111840093409, - "2030-01-01": 379.60579355592, - "2029-01-01": 372.199827638931, - "2028-01-01": 364.893942342442, - "2027-01-01": 357.487976425454, - "2026-01-01": 348.891051124517, - "2025-01-01": 343.637986155514, - "2024-01-01": 336.180311917934, - "2023-01-01": 318, - "2015-01-01": 318 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 592.411182383293, - "2034-01-01": 580.939677297697, - "2033-01-01": 569.609795731677, - "2032-01-01": 558.563161204807, - "2031-01-01": 547.799773717088, - "2030-01-01": 537.178009748943, - "2029-01-01": 526.697869300374, - "2028-01-01": 516.359352371381, - "2027-01-01": 505.879211922812, - "2026-01-01": 493.713751591298, - "2025-01-01": 486.280169087992, - "2024-01-01": 475.726856487642, - "2023-01-01": 450, - "2015-01-01": 450 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 679.298155799509, - "2034-01-01": 666.144163301359, - "2033-01-01": 653.152565772323, - "2032-01-01": 640.485758181512, - "2031-01-01": 628.143740528927, - "2030-01-01": 615.964117845455, - "2029-01-01": 603.946890131096, - "2028-01-01": 592.09205738585, - "2027-01-01": 580.074829671491, - "2026-01-01": 566.125101824688, - "2025-01-01": 557.601260554231, - "2024-01-01": 545.500128772496, - "2023-01-01": 516, - "2015-01-01": 516 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 753.020436273875, - "2034-01-01": 738.438878698406, - "2033-01-01": 724.037340352265, - "2032-01-01": 709.995840464777, - "2031-01-01": 696.314379035942, - "2030-01-01": 682.812936836435, - "2029-01-01": 669.491513866254, - "2028-01-01": 656.3501101254, - "2027-01-01": 643.028687155219, - "2026-01-01": 627.565035356049, - "2025-01-01": 618.116126040736, - "2024-01-01": 604.701693135403, - "2023-01-01": 572, - "2015-01-01": 572 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 817.527431688944, - "2034-01-01": 801.696754670822, - "2033-01-01": 786.061518109714, - "2032-01-01": 770.817162462633, - "2031-01-01": 755.963687729581, - "2030-01-01": 741.305653453542, - "2029-01-01": 726.843059634517, - "2028-01-01": 712.575906272505, - "2027-01-01": 698.113312453481, - "2026-01-01": 681.324977195991, - "2025-01-01": 671.066633341429, - "2024-01-01": 656.503061952946, - "2023-01-01": 621, - "2015-01-01": 621 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 875.452080633088, - "2034-01-01": 858.49974533993, - "2033-01-01": 841.756698136811, - "2032-01-01": 825.43222711377, - "2031-01-01": 809.526332270807, - "2030-01-01": 793.829725517883, - "2029-01-01": 778.342406854998, - "2028-01-01": 763.064376282152, - "2027-01-01": 747.577057619267, - "2026-01-01": 729.599210684918, - "2025-01-01": 718.614027652255, - "2024-01-01": 703.018576809516, - "2023-01-01": 665, - "2015-01-01": 665 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 926.794383106307, - "2034-01-01": 908.847850705731, - "2033-01-01": 891.122880433556, - "2032-01-01": 873.841034418187, - "2031-01-01": 857.002312659621, - "2030-01-01": 840.385153029458, - "2029-01-01": 823.989555527697, - "2028-01-01": 807.815520154338, - "2027-01-01": 791.419922652577, - "2026-01-01": 772.38773582283, - "2025-01-01": 760.758308973214, - "2024-01-01": 744.248237705111, - "2023-01-01": 704, - "2015-01-01": 704 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 975.503746991156, - "2034-01-01": 956.614001950208, - "2033-01-01": 937.957463638161, - "2032-01-01": 919.767338783915, - "2031-01-01": 902.043627387471, - "2030-01-01": 884.553122719927, - "2029-01-01": 867.295824781283, - "2028-01-01": 850.27173357154, - "2027-01-01": 833.014435632897, - "2026-01-01": 812.981977620337, - "2025-01-01": 800.741345098227, - "2024-01-01": 783.363557016318, - "2023-01-01": 741, - "2015-01-01": 741 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1020.26370299345, - "2034-01-01": 1000.5072220127, - "2033-01-01": 980.994648204554, - "2032-01-01": 961.969888741612, - "2031-01-01": 943.432943623873, - "2030-01-01": 925.139905678736, - "2029-01-01": 907.0907749062, - "2028-01-01": 889.285551306267, - "2027-01-01": 871.236420533732, - "2026-01-01": 850.284794407235, - "2025-01-01": 837.482513429319, - "2024-01-01": 819.307363950939, - "2023-01-01": 775, - "2015-01-01": 775 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1079.50482123178, - "2034-01-01": 1058.60118974247, - "2033-01-01": 1037.95562777772, - "2032-01-01": 1017.82620486209, - "2031-01-01": 998.212920995582, - "2030-01-01": 978.85770665363, - "2029-01-01": 959.760561836238, - "2028-01-01": 940.921486543405, - "2027-01-01": 921.824341726013, - "2026-01-01": 899.656169566365, - "2025-01-01": 886.110530338118, - "2024-01-01": 866.880049599704, - "2023-01-01": 820, - "2015-01-01": 820 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1155.86004029451, - "2034-01-01": 1133.47785926084, - "2033-01-01": 1111.3720014498, - "2032-01-01": 1089.81879008405, - "2031-01-01": 1068.81822516356, - "2030-01-01": 1048.09398346572, - "2029-01-01": 1027.64606499051, - "2028-01-01": 1007.47446973794, - "2027-01-01": 987.026551262731, - "2026-01-01": 963.290386438132, - "2025-01-01": 948.786641020571, - "2024-01-01": 928.195955547, - "2023-01-01": 878, - "2015-01-01": 878 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1226.94938218051, - "2034-01-01": 1203.19062053656, - "2033-01-01": 1179.72517693761, - "2032-01-01": 1156.84636942862, - "2031-01-01": 1134.55419800961, - "2030-01-01": 1112.55534463559, - "2029-01-01": 1090.84980930655, - "2028-01-01": 1069.4375920225, - "2027-01-01": 1047.73205669347, - "2026-01-01": 1022.53603662909, - "2025-01-01": 1007.14026131113, - "2024-01-01": 985.283178325517, - "2023-01-01": 932, - "2015-01-01": 932 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1291.45637759558, - "2034-01-01": 1266.44849650898, - "2033-01-01": 1241.74935469506, - "2032-01-01": 1217.66769142648, - "2031-01-01": 1194.20350670325, - "2030-01-01": 1171.0480612527, - "2029-01-01": 1148.20135507482, - "2028-01-01": 1125.66338816961, - "2027-01-01": 1102.81668199173, - "2026-01-01": 1076.29597846903, - "2025-01-01": 1060.09076861182, - "2024-01-01": 1037.08454714306, - "2023-01-01": 981, - "2015-01-01": 981 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1350.69749583391, - "2034-01-01": 1324.54246423875, - "2033-01-01": 1298.71033426822, - "2032-01-01": 1273.52400754696, - "2031-01-01": 1248.98348407496, - "2030-01-01": 1224.76586222759, - "2029-01-01": 1200.87114200485, - "2028-01-01": 1177.29932340675, - "2027-01-01": 1153.40460318401, - "2026-01-01": 1125.66735362816, - "2025-01-01": 1108.71878552062, - "2024-01-01": 1084.65723279182, - "2023-01-01": 1026, - "2015-01-01": 1026 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1413.88802195479, - "2034-01-01": 1386.5093631505, - "2033-01-01": 1359.4687124796, - "2032-01-01": 1333.10407807547, - "2031-01-01": 1307.41545993812, - "2030-01-01": 1282.06484993415, - "2029-01-01": 1257.05224806356, - "2028-01-01": 1232.37765432636, - "2027-01-01": 1207.36505245578, - "2026-01-01": 1178.3301537979, - "2025-01-01": 1160.58867022334, - "2024-01-01": 1135.40143081717, - "2023-01-01": 1074, - "2015-01-01": 1074 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1479.71148666405, - "2034-01-01": 1451.05821618358, - "2033-01-01": 1422.75868978312, - "2032-01-01": 1395.16665154267, - "2031-01-01": 1368.28210146224, - "2030-01-01": 1341.75129546181, - "2029-01-01": 1315.57423354138, - "2028-01-01": 1289.75091570096, - "2027-01-01": 1263.57385378053, - "2026-01-01": 1233.18723730804, - "2025-01-01": 1214.61980012201, - "2024-01-01": 1188.25997042691, - "2023-01-01": 1124, - "2015-01-01": 1124 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1541.58554349075, - "2034-01-01": 1511.73413803467, - "2033-01-01": 1482.25126844843, - "2032-01-01": 1453.50547060184, - "2031-01-01": 1425.49674449491, - "2030-01-01": 1397.85655425781, - "2029-01-01": 1370.58489989053, - "2028-01-01": 1343.68178139308, - "2027-01-01": 1316.41012702581, - "2026-01-01": 1284.75289580758, - "2025-01-01": 1265.40906222675, - "2024-01-01": 1237.94699766006, - "2023-01-01": 1171, - "2015-01-01": 1171 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1600.82666172908, - "2034-01-01": 1569.82810576444, - "2033-01-01": 1539.2122480216, - "2032-01-01": 1509.36178672232, - "2031-01-01": 1480.27672186662, - "2030-01-01": 1451.5743552327, - "2029-01-01": 1423.25468682057, - "2028-01-01": 1395.31771663022, - "2027-01-01": 1366.99804821809, - "2026-01-01": 1334.12427096671, - "2025-01-01": 1314.03707913555, - "2024-01-01": 1285.51968330883, - "2023-01-01": 1216, - "2015-01-01": 1216 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1940.47573962883, - "2034-01-01": 1902.90018741512, - "2033-01-01": 1865.78853090776, - "2032-01-01": 1829.60466581308, - "2031-01-01": 1794.34859213108, - "2030-01-01": 1759.55641415543, - "2029-01-01": 1725.22813188612, - "2028-01-01": 1691.36374532315, - "2027-01-01": 1657.03546305383, - "2026-01-01": 1617.18682187905, - "2025-01-01": 1592.83770941267, - "2024-01-01": 1558.26974769508, - "2023-01-01": 1474, - "2015-01-01": 1474 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 446.283090728747, - "2034-01-01": 437.641223564265, - "2033-01-01": 429.106046117863, - "2032-01-01": 420.784248107621, - "2031-01-01": 412.675829533539, - "2030-01-01": 404.674100677537, - "2029-01-01": 396.779061539615, - "2028-01-01": 388.990712119774, - "2027-01-01": 381.095672981852, - "2026-01-01": 371.931026198778, - "2025-01-01": 366.331060712954, - "2024-01-01": 358.380898554024, - "2023-01-01": 339, - "2015-01-01": 339 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 631.905261208846, - "2034-01-01": 619.668989117544, - "2033-01-01": 607.583782113788, - "2032-01-01": 595.800705285127, - "2031-01-01": 584.31975863156, - "2030-01-01": 572.98987706554, - "2029-01-01": 561.811060587066, - "2028-01-01": 550.78330919614, - "2027-01-01": 539.604492717666, - "2026-01-01": 526.628001697384, - "2025-01-01": 518.698847027191, - "2024-01-01": 507.441980253485, - "2023-01-01": 480, - "2015-01-01": 480 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 724.058111801802, - "2034-01-01": 710.037383363852, - "2033-01-01": 696.189750338716, - "2032-01-01": 682.688308139208, - "2031-01-01": 669.533056765329, - "2030-01-01": 656.550900804264, - "2029-01-01": 643.741840256013, - "2028-01-01": 631.105875120577, - "2027-01-01": 618.296814572326, - "2026-01-01": 603.427918611586, - "2025-01-01": 594.342428885323, - "2024-01-01": 581.443935707118, - "2023-01-01": 550, - "2015-01-01": 550 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 801.729800158723, - "2034-01-01": 786.205029942884, - "2033-01-01": 770.871923556869, - "2032-01-01": 755.922144830505, - "2031-01-01": 741.355693763792, - "2030-01-01": 726.980906526904, - "2029-01-01": 712.79778311984, - "2028-01-01": 698.806323542602, - "2027-01-01": 684.623200135539, - "2026-01-01": 668.159277153556, - "2025-01-01": 658.099162165749, - "2024-01-01": 643.817012446609, - "2023-01-01": 609, - "2015-01-01": 609 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 870.186203456348, - "2034-01-01": 853.335837097284, - "2033-01-01": 836.69349995253, - "2032-01-01": 820.467221236394, - "2031-01-01": 804.657000948878, - "2030-01-01": 789.05480987567, - "2029-01-01": 773.660648016772, - "2028-01-01": 758.474515372184, - "2027-01-01": 743.080353513286, - "2026-01-01": 725.210644004106, - "2025-01-01": 714.291537260361, - "2024-01-01": 698.789893640737, - "2023-01-01": 661, - "2015-01-01": 661 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 932.060260283048, - "2034-01-01": 914.011758948377, - "2033-01-01": 896.186078617838, - "2032-01-01": 878.806040295563, - "2031-01-01": 861.871643981551, - "2030-01-01": 845.160068671671, - "2029-01-01": 828.671314365922, - "2028-01-01": 812.405381064306, - "2027-01-01": 795.916626758558, - "2026-01-01": 776.776302503642, - "2025-01-01": 765.080799365107, - "2024-01-01": 748.47692087389, - "2023-01-01": 708, - "2015-01-01": 708 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 987.351970638822, - "2034-01-01": 968.232795496162, - "2033-01-01": 949.349659552794, - "2032-01-01": 930.938602008011, - "2031-01-01": 912.999622861813, - "2030-01-01": 895.296682914906, - "2029-01-01": 877.829782167291, - "2028-01-01": 860.598920618968, - "2027-01-01": 843.132019871353, - "2026-01-01": 822.856252652163, - "2025-01-01": 810.466948479986, - "2024-01-01": 792.87809414607, - "2023-01-01": 750, - "2015-01-01": 750 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1038.69427311204, - "2034-01-01": 1018.58090086196, - "2033-01-01": 998.71584184954, - "2032-01-01": 979.347409312428, - "2031-01-01": 960.475603250627, - "2030-01-01": 941.852110426481, - "2029-01-01": 923.47693083999, - "2028-01-01": 905.350064491154, - "2027-01-01": 886.974884904664, - "2026-01-01": 865.644777790075, - "2025-01-01": 852.611229800946, - "2024-01-01": 834.107755041666, - "2023-01-01": 789, - "2015-01-01": 789 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1086.0871677027, - "2034-01-01": 1065.05607504578, - "2033-01-01": 1044.28462550807, - "2032-01-01": 1024.03246220881, - "2031-01-01": 1004.29958514799, - "2030-01-01": 984.826351206396, - "2029-01-01": 965.61276038402, - "2028-01-01": 946.658812680865, - "2027-01-01": 927.445221858489, - "2026-01-01": 905.141877917379, - "2025-01-01": 891.513643327985, - "2024-01-01": 872.165903560677, - "2023-01-01": 825, - "2015-01-01": 825 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1149.27769382359, - "2034-01-01": 1127.02297395753, - "2033-01-01": 1105.04300371945, - "2032-01-01": 1083.61253273733, - "2031-01-01": 1062.73156101115, - "2030-01-01": 1042.12533891295, - "2029-01-01": 1021.79386644273, - "2028-01-01": 1001.73714360048, - "2027-01-01": 981.405671130255, - "2026-01-01": 957.804678087117, - "2025-01-01": 943.383528030704, - "2024-01-01": 922.910101586026, - "2023-01-01": 873, - "2015-01-01": 873 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1230.89879006306, - "2034-01-01": 1207.06355171855, - "2033-01-01": 1183.52257557582, - "2032-01-01": 1160.57012383665, - "2031-01-01": 1138.20619650106, - "2030-01-01": 1116.13653136725, - "2029-01-01": 1094.36112843522, - "2028-01-01": 1072.87998770498, - "2027-01-01": 1051.10458477295, - "2026-01-01": 1025.8274616397, - "2025-01-01": 1010.38212910505, - "2024-01-01": 988.454690702101, - "2023-01-01": 935, - "2015-01-01": 935 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1305.93753983161, - "2034-01-01": 1280.64924417626, - "2033-01-01": 1255.67314970183, - "2032-01-01": 1231.32145758926, - "2031-01-01": 1207.59416783856, - "2030-01-01": 1184.17907926878, - "2029-01-01": 1161.07619187994, - "2028-01-01": 1138.28550567202, - "2027-01-01": 1115.18261828318, - "2026-01-01": 1088.36453684126, - "2025-01-01": 1071.97761718953, - "2024-01-01": 1048.7134258572, - "2023-01-01": 992, - "2015-01-01": 992 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1374.39394312924, - "2034-01-01": 1347.78005133066, - "2033-01-01": 1321.49472609749, - "2032-01-01": 1295.86653399515, - "2031-01-01": 1270.89547502364, - "2030-01-01": 1246.25298261755, - "2029-01-01": 1221.93905677687, - "2028-01-01": 1197.9536975016, - "2027-01-01": 1173.63977166092, - "2026-01-01": 1145.41590369181, - "2025-01-01": 1128.16999228414, - "2024-01-01": 1103.68630705133, - "2023-01-01": 1044, - "2015-01-01": 1044 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1437.58446925012, - "2034-01-01": 1409.74695024241, - "2033-01-01": 1382.25310430887, - "2032-01-01": 1355.44660452366, - "2031-01-01": 1329.3274508868, - "2030-01-01": 1303.5519703241, - "2029-01-01": 1278.12016283558, - "2028-01-01": 1253.03202842122, - "2027-01-01": 1227.60022093269, - "2026-01-01": 1198.07870386155, - "2025-01-01": 1180.03987698686, - "2024-01-01": 1154.43050507668, - "2023-01-01": 1092, - "2015-01-01": 1092 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1504.72440325356, - "2034-01-01": 1475.58678033615, - "2033-01-01": 1446.80888115846, - "2032-01-01": 1418.75042946021, - "2031-01-01": 1391.4114252414, - "2030-01-01": 1364.43214476232, - "2029-01-01": 1337.81258802295, - "2028-01-01": 1311.55275502331, - "2027-01-01": 1284.93319828394, - "2026-01-01": 1254.0329290419, - "2025-01-01": 1235.1516294835, - "2024-01-01": 1208.34621547861, - "2023-01-01": 1143, - "2015-01-01": 1143 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1574.49727584537, - "2034-01-01": 1544.00856455121, - "2033-01-01": 1513.89625710019, - "2032-01-01": 1484.53675733544, - "2031-01-01": 1455.93006525697, - "2030-01-01": 1427.69977702164, - "2029-01-01": 1399.84589262944, - "2028-01-01": 1372.36841208038, - "2027-01-01": 1344.51452768818, - "2026-01-01": 1312.18143756265, - "2025-01-01": 1292.42462717608, - "2024-01-01": 1264.37626746493, - "2023-01-01": 1196, - "2015-01-01": 1196 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1640.32074055463, - "2034-01-01": 1608.55741758429, - "2033-01-01": 1577.18623440371, - "2032-01-01": 1546.59933080264, - "2031-01-01": 1516.79670678109, - "2030-01-01": 1487.3862225493, - "2029-01-01": 1458.36787810726, - "2028-01-01": 1429.74167345498, - "2027-01-01": 1400.72332901294, - "2026-01-01": 1367.03852107279, - "2025-01-01": 1346.45575707475, - "2024-01-01": 1317.23480707467, - "2023-01-01": 1246, - "2015-01-01": 1246 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1702.19479738133, - "2034-01-01": 1669.23333943538, - "2033-01-01": 1636.67881306902, - "2032-01-01": 1604.93814986181, - "2031-01-01": 1574.01134981376, - "2030-01-01": 1543.4914813453, - "2029-01-01": 1513.37854445641, - "2028-01-01": 1483.6725391471, - "2027-01-01": 1453.55960225821, - "2026-01-01": 1418.60417957233, - "2025-01-01": 1397.2450191795, - "2024-01-01": 1366.92183430783, - "2023-01-01": 1293, - "2015-01-01": 1293 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2064.22385328223, - "2034-01-01": 2024.25203111731, - "2033-01-01": 1984.77368823838, - "2032-01-01": 1946.28230393142, - "2031-01-01": 1908.77787819643, - "2030-01-01": 1871.76693174743, - "2029-01-01": 1835.24946458442, - "2028-01-01": 1799.22547670739, - "2027-01-01": 1762.70800954438, - "2026-01-01": 1720.31813887812, - "2025-01-01": 1694.41623362216, - "2024-01-01": 1657.64380216138, - "2023-01-01": 1568, - "2015-01-01": 1568 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 467.346599435709, - "2034-01-01": 458.29685653485, - "2033-01-01": 449.358838854989, - "2032-01-01": 440.644271617125, - "2031-01-01": 432.153154821258, - "2030-01-01": 423.773763246389, - "2029-01-01": 415.506096892518, - "2028-01-01": 407.350155759645, - "2027-01-01": 399.082489405774, - "2026-01-01": 389.485292922024, - "2025-01-01": 383.621022280527, - "2024-01-01": 375.29563122914, - "2023-01-01": 355, - "2015-01-01": 355 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 660.867585680918, - "2034-01-01": 648.070484452098, - "2033-01-01": 635.431372127337, - "2032-01-01": 623.108237610696, - "2031-01-01": 611.101080902173, - "2030-01-01": 599.25191309771, - "2029-01-01": 587.560734197307, - "2028-01-01": 576.027544200963, - "2027-01-01": 564.336365300559, - "2026-01-01": 550.765118441848, - "2025-01-01": 542.472544182604, - "2024-01-01": 530.69973768177, - "2023-01-01": 502, - "2015-01-01": 502 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 756.96984415643, - "2034-01-01": 742.311809880391, - "2033-01-01": 727.834738990476, - "2032-01-01": 713.719594872809, - "2031-01-01": 699.96637752739, - "2030-01-01": 686.394123568094, - "2029-01-01": 673.002832994923, - "2028-01-01": 659.792505807875, - "2027-01-01": 646.401215234704, - "2026-01-01": 630.856460366658, - "2025-01-01": 621.357993834656, - "2024-01-01": 607.873205511987, - "2023-01-01": 575, - "2015-01-01": 575 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 838.590940395906, - "2034-01-01": 822.352387641407, - "2033-01-01": 806.31431084684, - "2032-01-01": 790.677185972138, - "2031-01-01": 775.441013017299, - "2030-01-01": 760.405316022393, - "2029-01-01": 745.570094987419, - "2028-01-01": 730.935349912377, - "2027-01-01": 716.100128877403, - "2026-01-01": 698.879243919237, - "2025-01-01": 688.356594909002, - "2024-01-01": 673.417794628062, - "2023-01-01": 637, - "2015-01-01": 637 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 910.996751576086, - "2034-01-01": 893.356125977792, - "2033-01-01": 875.933285880712, - "2032-01-01": 858.946016786058, - "2031-01-01": 842.394318693832, - "2030-01-01": 826.06040610282, - "2029-01-01": 809.94427901302, - "2028-01-01": 794.045937424434, - "2027-01-01": 777.929810334635, - "2026-01-01": 759.222035780396, - "2025-01-01": 747.790837797534, - "2024-01-01": 731.562188198774, - "2023-01-01": 692, - "2015-01-01": 692 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 974.187277696971, - "2034-01-01": 955.323024889546, - "2033-01-01": 936.691664092091, - "2032-01-01": 918.526087314571, - "2031-01-01": 900.826294556988, - "2030-01-01": 883.359393809374, - "2029-01-01": 866.125385071727, - "2028-01-01": 849.124268344048, - "2027-01-01": 831.890259606402, - "2026-01-01": 811.884835950134, - "2025-01-01": 799.660722500253, - "2024-01-01": 782.306386224123, - "2023-01-01": 740, - "2015-01-01": 740 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1032.11192664111, - "2034-01-01": 1012.12601555865, - "2033-01-01": 992.386844119188, - "2032-01-01": 973.141151965708, - "2031-01-01": 954.388939098215, - "2030-01-01": 935.883465873715, - "2029-01-01": 917.624732292208, - "2028-01-01": 899.612738353695, - "2027-01-01": 881.354004772188, - "2026-01-01": 860.159069439061, - "2025-01-01": 847.208116811079, - "2024-01-01": 828.821901080692, - "2023-01-01": 784, - "2015-01-01": 784 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1086.0871677027, - "2034-01-01": 1065.05607504578, - "2033-01-01": 1044.28462550807, - "2032-01-01": 1024.03246220881, - "2031-01-01": 1004.29958514799, - "2030-01-01": 984.826351206396, - "2029-01-01": 965.61276038402, - "2028-01-01": 946.658812680865, - "2027-01-01": 927.445221858489, - "2026-01-01": 905.141877917379, - "2025-01-01": 891.513643327985, - "2024-01-01": 872.165903560677, - "2023-01-01": 825, - "2015-01-01": 825 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1136.11300088174, - "2034-01-01": 1114.11320335092, - "2033-01-01": 1092.38500825875, - "2032-01-01": 1071.20001804389, - "2031-01-01": 1050.55823270633, - "2030-01-01": 1030.18804980742, - "2029-01-01": 1010.08946934716, - "2028-01-01": 990.262491325559, - "2027-01-01": 970.163910865304, - "2026-01-01": 946.833261385089, - "2025-01-01": 932.577302050971, - "2024-01-01": 912.338393664078, - "2023-01-01": 863, - "2015-01-01": 863 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1201.93646559099, - "2034-01-01": 1178.66205638399, - "2033-01-01": 1155.67498556227, - "2032-01-01": 1133.26259151109, - "2031-01-01": 1111.42487423045, - "2030-01-01": 1089.87449533508, - "2029-01-01": 1068.61145482498, - "2028-01-01": 1047.63575270016, - "2027-01-01": 1026.37271219006, - "2026-01-01": 1001.69034489523, - "2025-01-01": 986.608431949637, - "2024-01-01": 965.196933273816, - "2023-01-01": 913, - "2015-01-01": 913 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1286.19050041884, - "2034-01-01": 1261.28458826633, - "2033-01-01": 1236.68615651077, - "2032-01-01": 1212.7026855491, - "2031-01-01": 1189.33417538132, - "2030-01-01": 1166.27314561048, - "2029-01-01": 1143.51959623659, - "2028-01-01": 1121.07352725964, - "2027-01-01": 1098.31997788575, - "2026-01-01": 1071.90741178822, - "2025-01-01": 1055.76827821993, - "2024-01-01": 1032.85586397428, - "2023-01-01": 977, - "2015-01-01": 977 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1365.17865806994, - "2034-01-01": 1338.74321190603, - "2033-01-01": 1312.634129275, - "2032-01-01": 1287.17777370974, - "2031-01-01": 1262.37414521027, - "2030-01-01": 1237.89688024368, - "2029-01-01": 1213.74597880997, - "2028-01-01": 1189.92144090916, - "2027-01-01": 1165.77053947546, - "2026-01-01": 1137.73591200039, - "2025-01-01": 1120.60563409833, - "2024-01-01": 1096.28611150597, - "2023-01-01": 1037, - "2015-01-01": 1037 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1436.26799995594, - "2034-01-01": 1408.45597318175, - "2033-01-01": 1380.9873047628, - "2032-01-01": 1354.20535305432, - "2031-01-01": 1328.11011805632, - "2030-01-01": 1302.35824141355, - "2029-01-01": 1276.94972312602, - "2028-01-01": 1251.88456319373, - "2027-01-01": 1226.4760449062, - "2026-01-01": 1196.98156219135, - "2025-01-01": 1178.95925438889, - "2024-01-01": 1153.37333428448, - "2023-01-01": 1091, - "2015-01-01": 1091 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1503.40793395938, - "2034-01-01": 1474.29580327549, - "2033-01-01": 1445.54308161239, - "2032-01-01": 1417.50917799087, - "2031-01-01": 1390.19409241092, - "2030-01-01": 1363.23841585176, - "2029-01-01": 1336.64214831339, - "2028-01-01": 1310.40528979582, - "2027-01-01": 1283.80902225745, - "2026-01-01": 1252.93578737169, - "2025-01-01": 1234.07100688553, - "2024-01-01": 1207.28904468642, - "2023-01-01": 1142, - "2015-01-01": 1142 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1571.864337257, - "2034-01-01": 1541.42661042989, - "2033-01-01": 1511.36465800805, - "2032-01-01": 1482.05425439675, - "2031-01-01": 1453.49539959601, - "2030-01-01": 1425.31231920053, - "2029-01-01": 1397.50501321033, - "2028-01-01": 1370.0734816254, - "2027-01-01": 1342.26617563519, - "2026-01-01": 1309.98715422224, - "2025-01-01": 1290.26338198014, - "2024-01-01": 1262.26192588054, - "2023-01-01": 1194, - "2015-01-01": 1194 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1645.58661773137, - "2034-01-01": 1613.72132582694, - "2033-01-01": 1582.24943258799, - "2032-01-01": 1551.56433668002, - "2031-01-01": 1521.66603810302, - "2030-01-01": 1492.16113819151, - "2029-01-01": 1463.04963694548, - "2028-01-01": 1434.33153436495, - "2027-01-01": 1405.22003311892, - "2026-01-01": 1371.4270877536, - "2025-01-01": 1350.77824746664, - "2024-01-01": 1321.46349024345, - "2023-01-01": 1250, - "2015-01-01": 1250 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1714.04302102899, - "2034-01-01": 1680.85213298134, - "2033-01-01": 1648.07100898365, - "2032-01-01": 1616.10941308591, - "2031-01-01": 1584.96734528811, - "2030-01-01": 1554.23504154028, - "2029-01-01": 1523.91250184242, - "2028-01-01": 1493.99972619453, - "2027-01-01": 1463.67718649667, - "2026-01-01": 1428.47845460415, - "2025-01-01": 1406.97062256126, - "2024-01-01": 1376.43637143758, - "2023-01-01": 1302, - "2015-01-01": 1302 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1779.86648573825, - "2034-01-01": 1745.40098601441, - "2033-01-01": 1711.36098628717, - "2032-01-01": 1678.17198655311, - "2031-01-01": 1645.83398681223, - "2030-01-01": 1613.92148706794, - "2029-01-01": 1582.43448732024, - "2028-01-01": 1551.37298756913, - "2027-01-01": 1519.88598782143, - "2026-01-01": 1483.3355381143, - "2025-01-01": 1461.00175245992, - "2024-01-01": 1429.29491104732, - "2023-01-01": 1352, - "2015-01-01": 1352 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2157.69317316937, - "2034-01-01": 2115.91140242428, - "2033-01-01": 2074.64545600937, - "2032-01-01": 2034.41115825484, - "2031-01-01": 1995.20850916068, - "2030-01-01": 1956.52168439671, - "2029-01-01": 1918.35068396292, - "2028-01-01": 1880.69550785932, - "2027-01-01": 1842.52450742553, - "2026-01-01": 1798.21519746253, - "2025-01-01": 1771.14043807826, - "2024-01-01": 1732.70292840721, - "2023-01-01": 1639, - "2015-01-01": 1639 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 484.460700260115, - "2034-01-01": 475.07955832345, - "2033-01-01": 465.814232953905, - "2032-01-01": 456.780540718598, - "2031-01-01": 447.978481617529, - "2030-01-01": 439.29223908358, - "2029-01-01": 430.721813116751, - "2028-01-01": 422.26720371704, - "2027-01-01": 413.696777750211, - "2026-01-01": 403.748134634661, - "2025-01-01": 397.66911605418, - "2024-01-01": 389.038851527672, - "2023-01-01": 368, - "2015-01-01": 368 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 684.56403297625, - "2034-01-01": 671.308071544006, - "2033-01-01": 658.215763956604, - "2032-01-01": 645.450764058888, - "2031-01-01": 633.013071850857, - "2030-01-01": 620.739033487668, - "2029-01-01": 608.628648969322, - "2028-01-01": 596.681918295818, - "2027-01-01": 584.571533777472, - "2026-01-01": 570.5136685055, - "2025-01-01": 561.923750946124, - "2024-01-01": 549.728811941275, - "2023-01-01": 520, - "2015-01-01": 520 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 784.615699334317, - "2034-01-01": 769.422328154283, - "2033-01-01": 754.416529457954, - "2032-01-01": 739.785875729033, - "2031-01-01": 725.53036696752, - "2030-01-01": 711.462430689712, - "2029-01-01": 697.582066895607, - "2028-01-01": 683.889275585207, - "2027-01-01": 670.008911791102, - "2026-01-01": 653.896435440919, - "2025-01-01": 644.051068392096, - "2024-01-01": 630.073792148077, - "2023-01-01": 596, - "2015-01-01": 596 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 868.869734162163, - "2034-01-01": 852.044860036623, - "2033-01-01": 835.427700406459, - "2032-01-01": 819.22596976705, - "2031-01-01": 803.439668118395, - "2030-01-01": 787.861080965117, - "2029-01-01": 772.490208307216, - "2028-01-01": 757.327050144692, - "2027-01-01": 741.956177486791, - "2026-01-01": 724.113502333903, - "2025-01-01": 713.210914662388, - "2024-01-01": 697.732722848542, - "2023-01-01": 660, - "2015-01-01": 660 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 942.592014636528, - "2034-01-01": 924.339575433669, - "2033-01-01": 906.312474986401, - "2032-01-01": 888.736052050315, - "2031-01-01": 871.61030662541, - "2030-01-01": 854.709899956097, - "2029-01-01": 838.034832042373, - "2028-01-01": 821.585102884241, - "2027-01-01": 804.910034970519, - "2026-01-01": 785.553435865265, - "2025-01-01": 773.725780148894, - "2024-01-01": 756.934287211449, - "2023-01-01": 716, - "2015-01-01": 716 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1008.41547934578, - "2034-01-01": 988.888428466747, - "2033-01-01": 969.602452289921, - "2032-01-01": 950.798625517516, - "2031-01-01": 932.476948149531, - "2030-01-01": 914.396345483757, - "2029-01-01": 896.556817520193, - "2028-01-01": 878.958364258839, - "2027-01-01": 861.118836295276, - "2026-01-01": 840.410519375409, - "2025-01-01": 827.756910047559, - "2024-01-01": 809.792826821187, - "2023-01-01": 766, - "2015-01-01": 766 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1068.9730668783, - "2034-01-01": 1048.27337325718, - "2033-01-01": 1027.82923140916, - "2032-01-01": 1007.89619310734, - "2031-01-01": 988.474258351722, - "2030-01-01": 969.307875369205, - "2029-01-01": 950.397044159787, - "2028-01-01": 931.741764723469, - "2027-01-01": 912.830933514052, - "2026-01-01": 890.879036204741, - "2025-01-01": 877.465549554332, - "2024-01-01": 858.422683262146, - "2023-01-01": 812, - "2015-01-01": 812 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1124.26477723407, - "2034-01-01": 1102.49440980496, - "2033-01-01": 1080.99281234412, - "2032-01-01": 1060.02875481979, - "2031-01-01": 1039.60223723198, - "2030-01-01": 1019.44448961244, - "2029-01-01": 999.555511961155, - "2028-01-01": 979.935304278132, - "2027-01-01": 960.046326626848, - "2026-01-01": 936.958986353263, - "2025-01-01": 922.851698669211, - "2024-01-01": 902.823856534325, - "2023-01-01": 854, - "2015-01-01": 854 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1175.60707970729, - "2034-01-01": 1152.84251517076, - "2033-01-01": 1130.35899464086, - "2032-01-01": 1108.43756212421, - "2031-01-01": 1087.0782176208, - "2030-01-01": 1065.99991712401, - "2029-01-01": 1045.20266063385, - "2028-01-01": 1024.68644815032, - "2027-01-01": 1003.88919166016, - "2026-01-01": 979.747511491175, - "2025-01-01": 964.99597999017, - "2024-01-01": 944.053517429921, - "2023-01-01": 893, - "2015-01-01": 893 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1244.06348300492, - "2034-01-01": 1219.97332232516, - "2033-01-01": 1196.18057103652, - "2032-01-01": 1172.98263853009, - "2031-01-01": 1150.37952480588, - "2030-01-01": 1128.07382047278, - "2029-01-01": 1106.06552553079, - "2028-01-01": 1084.3546399799, - "2027-01-01": 1062.34634503791, - "2026-01-01": 1036.79887834173, - "2025-01-01": 1021.18835508478, - "2024-01-01": 999.026398624049, - "2023-01-01": 945, - "2015-01-01": 945 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1332.26692571532, - "2034-01-01": 1306.46878538949, - "2033-01-01": 1280.98914062324, - "2032-01-01": 1256.14648697614, - "2031-01-01": 1231.94082444821, - "2030-01-01": 1208.05365747985, - "2029-01-01": 1184.48498607106, - "2028-01-01": 1161.23481022186, - "2027-01-01": 1137.66613881308, - "2026-01-01": 1110.30737024532, - "2025-01-01": 1093.59006914899, - "2024-01-01": 1069.8568417011, - "2023-01-01": 1012, - "2015-01-01": 1012 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1412.57155266061, - "2034-01-01": 1385.21838608984, - "2033-01-01": 1358.20291293353, - "2032-01-01": 1331.86282660613, - "2031-01-01": 1306.19812710763, - "2030-01-01": 1280.87112102359, - "2029-01-01": 1255.881808354, - "2028-01-01": 1231.23018909887, - "2027-01-01": 1206.24087642928, - "2026-01-01": 1177.23301212769, - "2025-01-01": 1159.50804762537, - "2024-01-01": 1134.34426002498, - "2023-01-01": 1073, - "2015-01-01": 1073 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1486.29383313497, - "2034-01-01": 1457.51310148689, - "2033-01-01": 1429.08768751347, - "2032-01-01": 1401.37290888939, - "2031-01-01": 1374.36876561465, - "2030-01-01": 1347.71994001457, - "2029-01-01": 1321.42643208916, - "2028-01-01": 1295.48824183842, - "2027-01-01": 1269.19473391301, - "2026-01-01": 1238.67294565906, - "2025-01-01": 1220.02291311187, - "2024-01-01": 1193.54582438788, - "2023-01-01": 1129, - "2015-01-01": 1129 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1556.06670572678, - "2034-01-01": 1525.93488570195, - "2033-01-01": 1496.1750634552, - "2032-01-01": 1467.15923676463, - "2031-01-01": 1438.88740563022, - "2030-01-01": 1410.98757227389, - "2029-01-01": 1383.45973669565, - "2028-01-01": 1356.30389889549, - "2027-01-01": 1328.77606331725, - "2026-01-01": 1296.82145417981, - "2025-01-01": 1277.29591080446, - "2024-01-01": 1249.57587637421, - "2023-01-01": 1182, - "2015-01-01": 1182 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1627.15604761278, - "2034-01-01": 1595.64764697767, - "2033-01-01": 1564.52823894301, - "2032-01-01": 1534.1868161092, - "2031-01-01": 1504.62337847627, - "2030-01-01": 1475.44893344376, - "2029-01-01": 1446.66348101169, - "2028-01-01": 1418.26702118006, - "2027-01-01": 1389.48156874799, - "2026-01-01": 1356.06710437076, - "2025-01-01": 1335.64953109502, - "2024-01-01": 1306.66309915272, - "2023-01-01": 1236, - "2015-01-01": 1236 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1703.51126667551, - "2034-01-01": 1670.52431649604, - "2033-01-01": 1637.94461261509, - "2032-01-01": 1606.17940133116, - "2031-01-01": 1575.22868264425, - "2030-01-01": 1544.68521025585, - "2029-01-01": 1514.54898416597, - "2028-01-01": 1484.82000437459, - "2027-01-01": 1454.68377828471, - "2026-01-01": 1419.70132124253, - "2025-01-01": 1398.32564177747, - "2024-01-01": 1367.97900510002, - "2023-01-01": 1294, - "2015-01-01": 1294 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1774.60060856151, - "2034-01-01": 1740.23707777177, - "2033-01-01": 1706.29778810289, - "2032-01-01": 1673.20698067573, - "2031-01-01": 1640.9646554903, - "2030-01-01": 1609.14657142572, - "2029-01-01": 1577.75272848201, - "2028-01-01": 1546.78312665916, - "2027-01-01": 1515.38928371545, - "2026-01-01": 1478.94697143349, - "2025-01-01": 1456.67926206803, - "2024-01-01": 1425.06622787854, - "2023-01-01": 1348, - "2015-01-01": 1348 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1841.74054256495, - "2034-01-01": 1806.07690786551, - "2033-01-01": 1770.85356495248, - "2032-01-01": 1736.51080561228, - "2031-01-01": 1703.0486298449, - "2030-01-01": 1670.02674586394, - "2029-01-01": 1637.44515366939, - "2028-01-01": 1605.30385326125, - "2027-01-01": 1572.7222610667, - "2026-01-01": 1534.90119661383, - "2025-01-01": 1511.79101456467, - "2024-01-01": 1478.98193828047, - "2023-01-01": 1399, - "2015-01-01": 1399 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2232.73192293792, - "2034-01-01": 2189.49709488199, - "2033-01-01": 2146.79603013539, - "2032-01-01": 2105.16249200745, - "2031-01-01": 2064.59648049818, - "2030-01-01": 2024.56423229824, - "2029-01-01": 1985.06574740763, - "2028-01-01": 1946.10102582636, - "2027-01-01": 1906.60254093575, - "2026-01-01": 1860.75227266409, - "2025-01-01": 1832.73592616274, - "2024-01-01": 1792.96166356231, - "2023-01-01": 1696, - "2015-01-01": 1696 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 506.840678261262, - "2034-01-01": 497.026168354696, - "2033-01-01": 487.332825237101, - "2032-01-01": 477.881815697446, - "2031-01-01": 468.67313973573, - "2030-01-01": 459.585630562985, - "2029-01-01": 450.619288179209, - "2028-01-01": 441.774112584404, - "2027-01-01": 432.807770200628, - "2026-01-01": 422.39954302811, - "2025-01-01": 416.039700219726, - "2024-01-01": 407.010754994983, - "2023-01-01": 385, - "2015-01-01": 385 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 716.159296036692, - "2034-01-01": 702.291520999883, - "2033-01-01": 688.594953062294, - "2032-01-01": 675.240799323144, - "2031-01-01": 662.229059782435, - "2030-01-01": 649.388527340945, - "2029-01-01": 636.719201998675, - "2028-01-01": 624.221083755625, - "2027-01-01": 611.551758413355, - "2026-01-01": 596.845068590369, - "2025-01-01": 587.858693297483, - "2024-01-01": 575.10091095395, - "2023-01-01": 544, - "2015-01-01": 544 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 821.4768395715, - "2034-01-01": 805.569685852807, - "2033-01-01": 789.858916747925, - "2032-01-01": 774.540916870666, - "2031-01-01": 759.615686221028, - "2030-01-01": 744.886840185202, - "2029-01-01": 730.354378763186, - "2028-01-01": 716.018301954981, - "2027-01-01": 701.485840532966, - "2026-01-01": 684.616402206599, - "2025-01-01": 674.308501135349, - "2024-01-01": 659.674574329531, - "2023-01-01": 624, - "2015-01-01": 624 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 909.680282281901, - "2034-01-01": 892.065148917131, - "2033-01-01": 874.667486334641, - "2032-01-01": 857.704765316714, - "2031-01-01": 841.17698586335, - "2030-01-01": 824.866677192267, - "2029-01-01": 808.773839303464, - "2028-01-01": 792.898472196942, - "2027-01-01": 776.80563430814, - "2026-01-01": 758.124894110193, - "2025-01-01": 746.710215199561, - "2024-01-01": 730.505017406579, - "2023-01-01": 691, - "2015-01-01": 691 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 986.035501344636, - "2034-01-01": 966.9418184355, - "2033-01-01": 948.083860006724, - "2032-01-01": 929.697350538667, - "2031-01-01": 911.78229003133, - "2030-01-01": 894.102954004353, - "2029-01-01": 876.659342457734, - "2028-01-01": 859.451455391476, - "2027-01-01": 842.007843844858, - "2026-01-01": 821.75911098196, - "2025-01-01": 809.386325882013, - "2024-01-01": 791.820923353876, - "2023-01-01": 749, - "2015-01-01": 749 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1055.80837393645, - "2034-01-01": 1035.36360265056, - "2033-01-01": 1015.17123594845, - "2032-01-01": 995.4836784139, - "2031-01-01": 976.300930046898, - "2030-01-01": 957.370586263673, - "2029-01-01": 938.692647064223, - "2028-01-01": 920.26711244855, - "2027-01-01": 901.5891732491, - "2026-01-01": 879.907619502713, - "2025-01-01": 866.659323574599, - "2024-01-01": 847.850975340198, - "2023-01-01": 802, - "2015-01-01": 802 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1118.99890005733, - "2034-01-01": 1097.33050156232, - "2033-01-01": 1075.92961415983, - "2032-01-01": 1055.06374894241, - "2031-01-01": 1034.73290591005, - "2030-01-01": 1014.66957397023, - "2029-01-01": 994.873753122929, - "2028-01-01": 975.345443368164, - "2027-01-01": 955.549622520867, - "2026-01-01": 932.570419672451, - "2025-01-01": 918.529208277318, - "2024-01-01": 898.595173365546, - "2023-01-01": 850, - "2015-01-01": 850 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1176.92354900148, - "2034-01-01": 1154.13349223143, - "2033-01-01": 1131.62479418693, - "2032-01-01": 1109.67881359355, - "2031-01-01": 1088.29555045128, - "2030-01-01": 1067.19364603457, - "2029-01-01": 1046.37310034341, - "2028-01-01": 1025.83391337781, - "2027-01-01": 1005.01336768665, - "2026-01-01": 980.844653161378, - "2025-01-01": 966.076602588144, - "2024-01-01": 945.110688222116, - "2023-01-01": 894, - "2015-01-01": 894 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1230.89879006306, - "2034-01-01": 1207.06355171855, - "2033-01-01": 1183.52257557582, - "2032-01-01": 1160.57012383665, - "2031-01-01": 1138.20619650106, - "2030-01-01": 1116.13653136725, - "2029-01-01": 1094.36112843522, - "2028-01-01": 1072.87998770498, - "2027-01-01": 1051.10458477295, - "2026-01-01": 1025.8274616397, - "2025-01-01": 1010.38212910505, - "2024-01-01": 988.454690702101, - "2023-01-01": 935, - "2015-01-01": 935 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1301.98813194906, - "2034-01-01": 1276.77631299427, - "2033-01-01": 1251.87575106362, - "2032-01-01": 1227.59770318123, - "2031-01-01": 1203.94216934711, - "2030-01-01": 1180.59789253712, - "2029-01-01": 1157.56487275127, - "2028-01-01": 1134.84310998955, - "2027-01-01": 1111.81009020369, - "2026-01-01": 1085.07311183065, - "2025-01-01": 1068.73574939561, - "2024-01-01": 1045.54191348062, - "2023-01-01": 989, - "2015-01-01": 989 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1394.14098254202, - "2034-01-01": 1367.14470724058, - "2033-01-01": 1340.48171928855, - "2032-01-01": 1314.48530603531, - "2031-01-01": 1289.15546748088, - "2030-01-01": 1264.15891627585, - "2029-01-01": 1239.49565242021, - "2028-01-01": 1215.16567591398, - "2027-01-01": 1190.50241205835, - "2026-01-01": 1161.87302874485, - "2025-01-01": 1144.37933125374, - "2024-01-01": 1119.54386893425, - "2023-01-01": 1059, - "2015-01-01": 1059 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1478.39501736986, - "2034-01-01": 1449.76723912292, - "2033-01-01": 1421.49289023705, - "2032-01-01": 1393.92540007333, - "2031-01-01": 1367.06476863175, - "2030-01-01": 1340.55756655125, - "2029-01-01": 1314.40379383182, - "2028-01-01": 1288.60345047347, - "2027-01-01": 1262.44967775404, - "2026-01-01": 1232.09009563784, - "2025-01-01": 1213.53917752403, - "2024-01-01": 1187.20279963472, - "2023-01-01": 1123, - "2015-01-01": 1123 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1554.7502364326, - "2034-01-01": 1524.64390864129, - "2033-01-01": 1494.90926390913, - "2032-01-01": 1465.91798529528, - "2031-01-01": 1437.67007279973, - "2030-01-01": 1409.79384336334, - "2029-01-01": 1382.28929698609, - "2028-01-01": 1355.156433668, - "2027-01-01": 1327.65188729076, - "2026-01-01": 1295.72431250961, - "2025-01-01": 1276.21528820649, - "2024-01-01": 1248.51870558201, - "2023-01-01": 1181, - "2015-01-01": 1181 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1627.15604761278, - "2034-01-01": 1595.64764697767, - "2033-01-01": 1564.52823894301, - "2032-01-01": 1534.1868161092, - "2031-01-01": 1504.62337847627, - "2030-01-01": 1475.44893344376, - "2029-01-01": 1446.66348101169, - "2028-01-01": 1418.26702118006, - "2027-01-01": 1389.48156874799, - "2026-01-01": 1356.06710437076, - "2025-01-01": 1335.64953109502, - "2024-01-01": 1306.66309915272, - "2023-01-01": 1236, - "2015-01-01": 1236 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1702.19479738133, - "2034-01-01": 1669.23333943538, - "2033-01-01": 1636.67881306902, - "2032-01-01": 1604.93814986181, - "2031-01-01": 1574.01134981376, - "2030-01-01": 1543.4914813453, - "2029-01-01": 1513.37854445641, - "2028-01-01": 1483.6725391471, - "2027-01-01": 1453.55960225821, - "2026-01-01": 1418.60417957233, - "2025-01-01": 1397.2450191795, - "2024-01-01": 1366.92183430783, - "2023-01-01": 1293, - "2015-01-01": 1293 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1781.18295503243, - "2034-01-01": 1746.69196307508, - "2033-01-01": 1712.62678583324, - "2032-01-01": 1679.41323802245, - "2031-01-01": 1647.05131964271, - "2030-01-01": 1615.11521597849, - "2029-01-01": 1583.60492702979, - "2028-01-01": 1552.52045279662, - "2027-01-01": 1521.01016384792, - "2026-01-01": 1484.4326797845, - "2025-01-01": 1462.0823750579, - "2024-01-01": 1430.35208183951, - "2023-01-01": 1353, - "2015-01-01": 1353 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1856.22170480098, - "2034-01-01": 1820.27765553278, - "2033-01-01": 1784.77735995925, - "2032-01-01": 1750.16457177506, - "2031-01-01": 1716.43929098021, - "2030-01-01": 1683.15776388002, - "2029-01-01": 1650.31999047451, - "2028-01-01": 1617.92597076366, - "2027-01-01": 1585.08819735814, - "2026-01-01": 1546.96975498607, - "2025-01-01": 1523.67786314237, - "2024-01-01": 1490.61081699461, - "2023-01-01": 1410, - "2015-01-01": 1410 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1925.99457739279, - "2034-01-01": 1888.69943974785, - "2033-01-01": 1851.86473590098, - "2032-01-01": 1815.95089965029, - "2031-01-01": 1780.95793099578, - "2030-01-01": 1746.42539613934, - "2029-01-01": 1712.35329508099, - "2028-01-01": 1678.74162782073, - "2027-01-01": 1644.66952676239, - "2026-01-01": 1605.11826350682, - "2025-01-01": 1580.95086083496, - "2024-01-01": 1546.64086898093, - "2023-01-01": 1463, - "2015-01-01": 1463 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.WY.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2334.10005859017, - "2034-01-01": 2288.90232855293, - "2033-01-01": 2244.26259518281, - "2032-01-01": 2200.73885514694, - "2031-01-01": 2158.33110844533, - "2030-01-01": 2116.48135841084, - "2029-01-01": 2075.18960504348, - "2028-01-01": 2034.45584834324, - "2027-01-01": 1993.16409497588, - "2026-01-01": 1945.23218126971, - "2025-01-01": 1915.94386620669, - "2024-01-01": 1874.36381456131, - "2023-01-01": 1773, - "2015-01-01": 1773 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK", - "description": null, - "label": "AK", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AK.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC", - "description": null, - "label": "DC", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 512.106555438002, - "2034-01-01": 502.190076597343, - "2033-01-01": 492.396023421383, - "2032-01-01": 482.846821574822, - "2031-01-01": 473.54247105766, - "2030-01-01": 464.360546205198, - "2029-01-01": 455.301047017435, - "2028-01-01": 446.363973494371, - "2027-01-01": 437.304474306609, - "2026-01-01": 426.788109708922, - "2025-01-01": 420.36219061162, - "2024-01-01": 411.239438163762, - "2023-01-01": 389, - "2015-01-01": 389 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 731.956927566913, - "2034-01-01": 717.783245727821, - "2033-01-01": 703.784547615138, - "2032-01-01": 690.135816955272, - "2031-01-01": 676.837053748224, - "2030-01-01": 663.713274267583, - "2029-01-01": 650.764478513351, - "2028-01-01": 637.990666485528, - "2027-01-01": 625.041870731297, - "2026-01-01": 610.010768632803, - "2025-01-01": 600.826164473163, - "2024-01-01": 587.786960460287, - "2023-01-01": 556, - "2015-01-01": 556 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 843.856817572646, - "2034-01-01": 827.516295884053, - "2033-01-01": 811.377509031122, - "2032-01-01": 795.642191849514, - "2031-01-01": 780.310344339229, - "2030-01-01": 765.180231664606, - "2029-01-01": 750.251853825644, - "2028-01-01": 735.525210822345, - "2027-01-01": 720.596832983383, - "2026-01-01": 703.267810600048, - "2025-01-01": 692.679085300895, - "2024-01-01": 677.646477796841, - "2023-01-01": 641, - "2015-01-01": 641 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 937.326137459788, - "2034-01-01": 919.175667191023, - "2033-01-01": 901.24927680212, - "2032-01-01": 883.771046172939, - "2031-01-01": 866.740975303481, - "2030-01-01": 849.934984313884, - "2029-01-01": 833.353073204148, - "2028-01-01": 816.995241974274, - "2027-01-01": 800.413330864538, - "2026-01-01": 781.164869184453, - "2025-01-01": 769.403289757, - "2024-01-01": 752.705604042669, - "2023-01-01": 712, - "2015-01-01": 712 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1021.58017228763, - "2034-01-01": 1001.79819907336, - "2033-01-01": 982.260447750625, - "2032-01-01": 963.211140210956, - "2031-01-01": 944.650276454355, - "2030-01-01": 926.333634589289, - "2029-01-01": 908.261214615757, - "2028-01-01": 890.433016533759, - "2027-01-01": 872.360596560227, - "2026-01-01": 851.381936077438, - "2025-01-01": 838.563136027292, - "2024-01-01": 820.364534743134, - "2023-01-01": 776, - "2015-01-01": 776 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1095.302452762, - "2034-01-01": 1074.09291447041, - "2033-01-01": 1053.14522233057, - "2032-01-01": 1032.72122249422, - "2031-01-01": 1012.82091496137, - "2030-01-01": 993.182453580269, - "2029-01-01": 973.805838350914, - "2028-01-01": 954.691069273308, - "2027-01-01": 935.314454043955, - "2026-01-01": 912.821869608799, - "2025-01-01": 899.078001513798, - "2024-01-01": 879.566099106041, - "2023-01-01": 832, - "2015-01-01": 832 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1162.44238676544, - "2034-01-01": 1139.93274456415, - "2033-01-01": 1117.70099918016, - "2032-01-01": 1096.02504743077, - "2031-01-01": 1074.90488931597, - "2030-01-01": 1054.06262801848, - "2029-01-01": 1033.49826353829, - "2028-01-01": 1013.2117958754, - "2027-01-01": 992.647431395207, - "2026-01-01": 968.776094789146, - "2025-01-01": 954.189754010437, - "2024-01-01": 933.481809507974, - "2023-01-01": 883, - "2015-01-01": 883 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1225.63291288632, - "2034-01-01": 1201.8996434759, - "2033-01-01": 1178.45937739154, - "2032-01-01": 1155.60511795928, - "2031-01-01": 1133.33686517913, - "2030-01-01": 1111.36161572504, - "2029-01-01": 1089.679369597, - "2028-01-01": 1068.29012679501, - "2027-01-01": 1046.60788066697, - "2026-01-01": 1021.43889495888, - "2025-01-01": 1006.05963871316, - "2024-01-01": 984.226007533322, - "2023-01-01": 931, - "2015-01-01": 931 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1283.55756183047, - "2034-01-01": 1258.70263414501, - "2033-01-01": 1234.15455741863, - "2032-01-01": 1210.22018261041, - "2031-01-01": 1186.89950972036, - "2030-01-01": 1163.88568778938, - "2029-01-01": 1141.17871681748, - "2028-01-01": 1118.77859680466, - "2027-01-01": 1096.07162583276, - "2026-01-01": 1069.71312844781, - "2025-01-01": 1053.60703302398, - "2024-01-01": 1030.74152238989, - "2023-01-01": 975, - "2015-01-01": 975 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1361.22925018739, - "2034-01-01": 1334.87028072404, - "2033-01-01": 1308.83673063679, - "2032-01-01": 1283.45401930171, - "2031-01-01": 1258.72214671882, - "2030-01-01": 1234.31569351202, - "2029-01-01": 1210.2346596813, - "2028-01-01": 1186.47904522668, - "2027-01-01": 1162.39801139597, - "2026-01-01": 1134.44448698978, - "2025-01-01": 1117.36376630441, - "2024-01-01": 1093.11459912938, - "2023-01-01": 1034, - "2015-01-01": 1034 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1459.96444725127, - "2034-01-01": 1431.69356027366, - "2033-01-01": 1403.77169659207, - "2032-01-01": 1376.54787950251, - "2031-01-01": 1350.022109005, - "2030-01-01": 1323.84536180351, - "2029-01-01": 1298.01763789803, - "2028-01-01": 1272.53893728858, - "2027-01-01": 1246.71121338311, - "2026-01-01": 1216.730112255, - "2025-01-01": 1198.41046115241, - "2024-01-01": 1172.40240854399, - "2023-01-01": 1109, - "2015-01-01": 1109 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1552.11729784423, - "2034-01-01": 1522.06195451997, - "2033-01-01": 1492.37766481699, - "2032-01-01": 1463.43548235659, - "2031-01-01": 1435.23540713877, - "2030-01-01": 1407.40638554223, - "2029-01-01": 1379.94841756698, - "2028-01-01": 1352.86150321302, - "2027-01-01": 1325.40353523777, - "2026-01-01": 1293.5300291692, - "2025-01-01": 1274.05404301054, - "2024-01-01": 1246.40436399762, - "2023-01-01": 1179, - "2015-01-01": 1179 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1635.05486337789, - "2034-01-01": 1603.39350934164, - "2033-01-01": 1572.12303621943, - "2032-01-01": 1541.63432492527, - "2031-01-01": 1511.92737545916, - "2030-01-01": 1482.61130690708, - "2029-01-01": 1453.68611926903, - "2028-01-01": 1425.15181254501, - "2027-01-01": 1396.22662490696, - "2026-01-01": 1362.64995439198, - "2025-01-01": 1342.13326668286, - "2024-01-01": 1313.00612390589, - "2023-01-01": 1242, - "2015-01-01": 1242 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1714.04302102899, - "2034-01-01": 1680.85213298134, - "2033-01-01": 1648.07100898365, - "2032-01-01": 1616.10941308591, - "2031-01-01": 1584.96734528811, - "2030-01-01": 1554.23504154028, - "2029-01-01": 1523.91250184242, - "2028-01-01": 1493.99972619453, - "2027-01-01": 1463.67718649667, - "2026-01-01": 1428.47845460415, - "2025-01-01": 1406.97062256126, - "2024-01-01": 1376.43637143758, - "2023-01-01": 1302, - "2015-01-01": 1302 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1795.66411726847, - "2034-01-01": 1760.89271074235, - "2033-01-01": 1726.55058084002, - "2032-01-01": 1693.06700418524, - "2031-01-01": 1660.44198077802, - "2030-01-01": 1628.24623399458, - "2029-01-01": 1596.47976383491, - "2028-01-01": 1565.14257029903, - "2027-01-01": 1533.37610013937, - "2026-01-01": 1496.50123815673, - "2025-01-01": 1473.9692236356, - "2024-01-01": 1441.98096055365, - "2023-01-01": 1364, - "2015-01-01": 1364 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1882.55109068469, - "2034-01-01": 1846.09719674602, - "2033-01-01": 1810.09335088066, - "2032-01-01": 1774.98960116194, - "2031-01-01": 1740.78594758986, - "2030-01-01": 1707.03234209109, - "2029-01-01": 1673.72878466563, - "2028-01-01": 1640.8752753135, - "2027-01-01": 1607.57171788805, - "2026-01-01": 1568.91258839012, - "2025-01-01": 1545.29031510184, - "2024-01-01": 1511.75423283851, - "2023-01-01": 1430, - "2015-01-01": 1430 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1962.85571762998, - "2034-01-01": 1924.84679744637, - "2033-01-01": 1887.30712319096, - "2032-01-01": 1850.70594079193, - "2031-01-01": 1815.04325024928, - "2030-01-01": 1779.84980563483, - "2029-01-01": 1745.12560694857, - "2028-01-01": 1710.87065419051, - "2027-01-01": 1676.14645550425, - "2026-01-01": 1635.8382302725, - "2025-01-01": 1611.20829357821, - "2024-01-01": 1576.24165116239, - "2023-01-01": 1491, - "2015-01-01": 1491 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2040.5274059869, - "2034-01-01": 2001.0144440254, - "2033-01-01": 1961.98929640911, - "2032-01-01": 1923.93977748322, - "2031-01-01": 1886.86588724775, - "2030-01-01": 1850.27981135747, - "2029-01-01": 1814.1815498124, - "2028-01-01": 1778.57110261253, - "2027-01-01": 1742.47284106746, - "2026-01-01": 1700.56958881447, - "2025-01-01": 1674.96502685864, - "2024-01-01": 1638.61472790188, - "2023-01-01": 1550, - "2015-01-01": 1550 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2489.44343530402, - "2034-01-01": 2441.23762171099, - "2033-01-01": 2393.62694161911, - "2032-01-01": 2347.20652852953, - "2031-01-01": 2301.97638244225, - "2030-01-01": 2257.34136985612, - "2029-01-01": 2213.30149077113, - "2028-01-01": 2169.85674518729, - "2027-01-01": 2125.81686610231, - "2026-01-01": 2074.69489835365, - "2025-01-01": 2043.45733276754, - "2024-01-01": 1999.10996804029, - "2023-01-01": 1891, - "2015-01-01": 1891 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 552.91710355774, - "2034-01-01": 542.210365477851, - "2033-01-01": 531.635809349565, - "2032-01-01": 521.325617124486, - "2031-01-01": 511.279788802615, - "2030-01-01": 501.366142432347, - "2029-01-01": 491.584678013683, - "2028-01-01": 481.935395546622, - "2027-01-01": 472.153931127958, - "2026-01-01": 460.799501485211, - "2025-01-01": 453.861491148792, - "2024-01-01": 444.011732721799, - "2023-01-01": 420, - "2015-01-01": 420 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 792.514515099427, - "2034-01-01": 777.168190518253, - "2033-01-01": 762.011326734376, - "2032-01-01": 747.233384545097, - "2031-01-01": 732.834363950415, - "2030-01-01": 718.624804153031, - "2029-01-01": 704.604705152945, - "2028-01-01": 690.774066950158, - "2027-01-01": 676.753967950073, - "2026-01-01": 660.479285462136, - "2025-01-01": 650.534803979936, - "2024-01-01": 636.416816901246, - "2023-01-01": 602, - "2015-01-01": 602 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 912.313220870271, - "2034-01-01": 894.647103038454, - "2033-01-01": 877.199085426782, - "2032-01-01": 860.187268255403, - "2031-01-01": 843.611651524315, - "2030-01-01": 827.254135013373, - "2029-01-01": 811.114718722577, - "2028-01-01": 795.193402651926, - "2027-01-01": 779.053986361131, - "2026-01-01": 760.319177450598, - "2025-01-01": 748.871460395507, - "2024-01-01": 732.619358990969, - "2023-01-01": 693, - "2015-01-01": 693 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1014.99782581671, - "2034-01-01": 995.343313770054, - "2033-01-01": 975.931450020273, - "2032-01-01": 957.004882864236, - "2031-01-01": 938.563612301943, - "2030-01-01": 920.364990036523, - "2029-01-01": 902.409016067975, - "2028-01-01": 884.695690396299, - "2027-01-01": 866.739716427751, - "2026-01-01": 845.896227726423, - "2025-01-01": 833.160023037426, - "2024-01-01": 815.07868078216, - "2023-01-01": 771, - "2015-01-01": 771 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1104.5177378213, - "2034-01-01": 1083.12975389504, - "2033-01-01": 1062.00581915306, - "2032-01-01": 1041.40998277963, - "2031-01-01": 1021.34224477475, - "2030-01-01": 1001.53855595414, - "2029-01-01": 981.998916317809, - "2028-01-01": 962.723325865752, - "2027-01-01": 943.183686229421, - "2026-01-01": 920.501861300219, - "2025-01-01": 906.642359699611, - "2024-01-01": 886.966294651404, - "2023-01-01": 839, - "2015-01-01": 839 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1184.82236476659, - "2034-01-01": 1161.87935459539, - "2033-01-01": 1139.21959146335, - "2032-01-01": 1117.12632240961, - "2031-01-01": 1095.59954743418, - "2030-01-01": 1074.35601949789, - "2029-01-01": 1053.39573860075, - "2028-01-01": 1032.71870474276, - "2027-01-01": 1011.75842384562, - "2026-01-01": 987.427503182595, - "2025-01-01": 972.560338175984, - "2024-01-01": 951.453712975284, - "2023-01-01": 900, - "2015-01-01": 900 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1258.54464524095, - "2034-01-01": 1234.17406999244, - "2033-01-01": 1210.1043660433, - "2032-01-01": 1186.63640469288, - "2031-01-01": 1163.77018594119, - "2030-01-01": 1141.20483848887, - "2029-01-01": 1118.94036233591, - "2028-01-01": 1096.97675748231, - "2027-01-01": 1074.71228132935, - "2026-01-01": 1048.86743671396, - "2025-01-01": 1033.07520366249, - "2024-01-01": 1010.65527733819, - "2023-01-01": 956, - "2015-01-01": 956 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1325.68457924439, - "2034-01-01": 1300.01390008618, - "2033-01-01": 1274.66014289289, - "2032-01-01": 1249.94022962942, - "2031-01-01": 1225.85416029579, - "2030-01-01": 1202.08501292708, - "2029-01-01": 1178.63278752328, - "2028-01-01": 1155.4974840844, - "2027-01-01": 1132.0452586806, - "2026-01-01": 1104.8216618943, - "2025-01-01": 1088.18695615913, - "2024-01-01": 1064.57098774012, - "2023-01-01": 1007, - "2015-01-01": 1007 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1388.87510536528, - "2034-01-01": 1361.98079899793, - "2033-01-01": 1335.41852110426, - "2032-01-01": 1309.52030015794, - "2031-01-01": 1284.28613615895, - "2030-01-01": 1259.38400063363, - "2029-01-01": 1234.81389358199, - "2028-01-01": 1210.57581500401, - "2027-01-01": 1186.00570795237, - "2026-01-01": 1157.48446206404, - "2025-01-01": 1140.05684086185, - "2024-01-01": 1115.31518576547, - "2023-01-01": 1055, - "2015-01-01": 1055 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1473.12914019312, - "2034-01-01": 1444.60333088027, - "2033-01-01": 1416.42969205277, - "2032-01-01": 1388.96039419595, - "2031-01-01": 1362.19543730982, - "2030-01-01": 1335.78265090904, - "2029-01-01": 1309.7220349936, - "2028-01-01": 1284.0135895635, - "2027-01-01": 1257.95297364806, - "2026-01-01": 1227.70152895703, - "2025-01-01": 1209.21668713214, - "2024-01-01": 1182.97411646594, - "2023-01-01": 1119, - "2015-01-01": 1119 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1579.76315302211, - "2034-01-01": 1549.17247279386, - "2033-01-01": 1518.95945528447, - "2032-01-01": 1489.50176321282, - "2031-01-01": 1460.7993965789, - "2030-01-01": 1432.47469266385, - "2029-01-01": 1404.52765146767, - "2028-01-01": 1376.95827299035, - "2027-01-01": 1349.01123179417, - "2026-01-01": 1316.57000424346, - "2025-01-01": 1296.74711756798, - "2024-01-01": 1268.60495063371, - "2023-01-01": 1200, - "2015-01-01": 1200 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1679.81481938018, - "2034-01-01": 1647.28672940414, - "2033-01-01": 1615.16022078582, - "2032-01-01": 1583.83687488296, - "2031-01-01": 1553.31669169556, - "2030-01-01": 1523.19808986589, - "2029-01-01": 1493.48106939395, - "2028-01-01": 1464.16563027974, - "2027-01-01": 1434.4486098078, - "2026-01-01": 1399.95277117888, - "2025-01-01": 1378.87443501395, - "2024-01-01": 1348.94993084051, - "2023-01-01": 1276, - "2015-01-01": 1276 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1770.65120067895, - "2034-01-01": 1736.36414658978, - "2033-01-01": 1702.50038946468, - "2032-01-01": 1669.4832262677, - "2031-01-01": 1637.31265699885, - "2030-01-01": 1605.56538469406, - "2029-01-01": 1574.24140935334, - "2028-01-01": 1543.34073097668, - "2027-01-01": 1512.01675563596, - "2026-01-01": 1475.65554642288, - "2025-01-01": 1453.43739427411, - "2024-01-01": 1421.89471550195, - "2023-01-01": 1345, - "2015-01-01": 1345 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1854.9052355068, - "2034-01-01": 1818.98667847212, - "2033-01-01": 1783.51156041318, - "2032-01-01": 1748.92332030572, - "2031-01-01": 1715.22195814973, - "2030-01-01": 1681.96403496947, - "2029-01-01": 1649.14955076495, - "2028-01-01": 1616.77850553617, - "2027-01-01": 1583.96402133165, - "2026-01-01": 1545.87261331586, - "2025-01-01": 1522.5972405444, - "2024-01-01": 1489.55364620242, - "2023-01-01": 1409, - "2015-01-01": 1409 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1943.1086782172, - "2034-01-01": 1905.48214153645, - "2033-01-01": 1868.3201299999, - "2032-01-01": 1832.08716875177, - "2031-01-01": 1796.78325779205, - "2030-01-01": 1761.94387197653, - "2029-01-01": 1727.56901130523, - "2028-01-01": 1693.65867577813, - "2027-01-01": 1659.28381510682, - "2026-01-01": 1619.38110521946, - "2025-01-01": 1594.99895460861, - "2024-01-01": 1560.38408927947, - "2023-01-01": 1476, - "2015-01-01": 1476 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2036.57799810434, - "2034-01-01": 1997.14151284342, - "2033-01-01": 1958.1918977709, - "2032-01-01": 1920.21602307519, - "2031-01-01": 1883.2138887563, - "2030-01-01": 1846.69862462581, - "2029-01-01": 1810.67023068373, - "2028-01-01": 1775.12870693006, - "2027-01-01": 1739.10031298798, - "2026-01-01": 1697.27816380386, - "2025-01-01": 1671.72315906472, - "2024-01-01": 1635.44321552529, - "2023-01-01": 1547, - "2015-01-01": 1547 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2124.78144081474, - "2034-01-01": 2083.63697590774, - "2033-01-01": 2043.00046735761, - "2032-01-01": 2003.37987152124, - "2031-01-01": 1964.77518839862, - "2030-01-01": 1926.67846163288, - "2029-01-01": 1889.08969122401, - "2028-01-01": 1852.00887717202, - "2027-01-01": 1814.42010676315, - "2026-01-01": 1770.78665570745, - "2025-01-01": 1744.12487312893, - "2024-01-01": 1706.27365860234, - "2023-01-01": 1614, - "2015-01-01": 1614 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2209.03547564259, - "2034-01-01": 2166.25950779008, - "2033-01-01": 2124.01163830612, - "2032-01-01": 2082.81996555926, - "2031-01-01": 2042.6844895495, - "2030-01-01": 2003.07711190828, - "2029-01-01": 1963.99783263562, - "2028-01-01": 1925.4466517315, - "2027-01-01": 1886.36737245884, - "2026-01-01": 1841.00372260044, - "2025-01-01": 1813.28471939922, - "2024-01-01": 1773.93258930281, - "2023-01-01": 1678, - "2015-01-01": 1678 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2694.81264519689, - "2034-01-01": 2642.63004317419, - "2033-01-01": 2591.09167080609, - "2032-01-01": 2540.8417577472, - "2031-01-01": 2491.88030399751, - "2030-01-01": 2443.56307990242, - "2029-01-01": 2395.89008546193, - "2028-01-01": 2348.86132067604, - "2027-01-01": 2301.18832623555, - "2026-01-01": 2245.8489989053, - "2025-01-01": 2212.03445805138, - "2024-01-01": 2164.02861162267, - "2023-01-01": 2047, - "2015-01-01": 2047 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 579.246489441442, - "2034-01-01": 568.029906691082, - "2033-01-01": 556.951800270973, - "2032-01-01": 546.150646511367, - "2031-01-01": 535.626445412263, - "2030-01-01": 525.240720643411, - "2029-01-01": 514.993472204811, - "2028-01-01": 504.884700096461, - "2027-01-01": 494.637451657861, - "2026-01-01": 482.742334889269, - "2025-01-01": 475.473943108259, - "2024-01-01": 465.155148565695, - "2023-01-01": 440, - "2015-01-01": 440 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 829.37565533661, - "2034-01-01": 813.315548216776, - "2033-01-01": 797.453714024347, - "2032-01-01": 781.98842568673, - "2031-01-01": 766.919683203923, - "2030-01-01": 752.049213648521, - "2029-01-01": 737.377017020524, - "2028-01-01": 722.903093319933, - "2027-01-01": 708.230896691937, - "2026-01-01": 691.199252227817, - "2025-01-01": 680.792236723189, - "2024-01-01": 666.017599082699, - "2023-01-01": 630, - "2015-01-01": 630 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 955.756707578379, - "2034-01-01": 937.249346040285, - "2033-01-01": 918.970470447105, - "2032-01-01": 901.148566743755, - "2031-01-01": 883.783634930235, - "2030-01-01": 866.647189061629, - "2029-01-01": 849.739229137937, - "2028-01-01": 833.059755159161, - "2027-01-01": 816.15179523547, - "2026-01-01": 796.524852567294, - "2025-01-01": 784.532006128627, - "2024-01-01": 767.505995133396, - "2023-01-01": 726, - "2015-01-01": 726 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1062.39072040737, - "2034-01-01": 1041.81848795387, - "2033-01-01": 1021.50023367881, - "2032-01-01": 1001.68993576062, - "2031-01-01": 982.38759419931, - "2030-01-01": 963.339230816439, - "2029-01-01": 944.544845612005, - "2028-01-01": 926.004438586009, - "2027-01-01": 907.210053381576, - "2026-01-01": 885.393327853727, - "2025-01-01": 872.062436564465, - "2024-01-01": 853.136829301172, - "2023-01-01": 807, - "2015-01-01": 807 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1157.1765095887, - "2034-01-01": 1134.7688363215, - "2033-01-01": 1112.63780099588, - "2032-01-01": 1091.06004155339, - "2031-01-01": 1070.03555799404, - "2030-01-01": 1049.28771237627, - "2029-01-01": 1028.81650470006, - "2028-01-01": 1008.62193496543, - "2027-01-01": 988.150727289226, - "2026-01-01": 964.387528108335, - "2025-01-01": 949.867263618544, - "2024-01-01": 929.253126339194, - "2023-01-01": 879, - "2015-01-01": 879 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1241.43054441654, - "2034-01-01": 1217.39136820384, - "2033-01-01": 1193.64897194438, - "2032-01-01": 1170.50013559141, - "2031-01-01": 1147.94485914492, - "2030-01-01": 1125.68636265167, - "2029-01-01": 1103.72464611167, - "2028-01-01": 1082.05970952492, - "2027-01-01": 1060.09799298491, - "2026-01-01": 1034.60459500132, - "2025-01-01": 1019.02710988884, - "2024-01-01": 996.912057039659, - "2023-01-01": 943, - "2015-01-01": 943 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1317.78576347928, - "2034-01-01": 1292.26803772221, - "2033-01-01": 1267.06534561646, - "2032-01-01": 1242.49272081336, - "2031-01-01": 1218.5501633129, - "2030-01-01": 1194.92263946376, - "2029-01-01": 1171.61014926594, - "2028-01-01": 1148.61269271945, - "2027-01-01": 1125.30020252163, - "2026-01-01": 1098.23881187309, - "2025-01-01": 1081.70322057129, - "2024-01-01": 1058.22796298696, - "2023-01-01": 1001, - "2015-01-01": 1001 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1388.87510536528, - "2034-01-01": 1361.98079899793, - "2033-01-01": 1335.41852110426, - "2032-01-01": 1309.52030015794, - "2031-01-01": 1284.28613615895, - "2030-01-01": 1259.38400063363, - "2029-01-01": 1234.81389358199, - "2028-01-01": 1210.57581500401, - "2027-01-01": 1186.00570795237, - "2026-01-01": 1157.48446206404, - "2025-01-01": 1140.05684086185, - "2024-01-01": 1115.31518576547, - "2023-01-01": 1055, - "2015-01-01": 1055 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1454.69857007453, - "2034-01-01": 1426.52965203101, - "2033-01-01": 1398.70849840778, - "2032-01-01": 1371.58287362514, - "2031-01-01": 1345.15277768307, - "2030-01-01": 1319.07044616129, - "2029-01-01": 1293.33587905981, - "2028-01-01": 1267.94907637861, - "2027-01-01": 1242.21450927713, - "2026-01-01": 1212.34154557419, - "2025-01-01": 1194.08797076051, - "2024-01-01": 1168.17372537521, - "2023-01-01": 1105, - "2015-01-01": 1105 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1541.58554349075, - "2034-01-01": 1511.73413803467, - "2033-01-01": 1482.25126844843, - "2032-01-01": 1453.50547060184, - "2031-01-01": 1425.49674449491, - "2030-01-01": 1397.85655425781, - "2029-01-01": 1370.58489989053, - "2028-01-01": 1343.68178139308, - "2027-01-01": 1316.41012702581, - "2026-01-01": 1284.75289580758, - "2025-01-01": 1265.40906222675, - "2024-01-01": 1237.94699766006, - "2023-01-01": 1171, - "2015-01-01": 1171 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1654.80190279066, - "2034-01-01": 1622.75816525157, - "2033-01-01": 1591.11002941048, - "2032-01-01": 1560.25309696543, - "2031-01-01": 1530.1873679164, - "2030-01-01": 1500.51724056538, - "2029-01-01": 1471.24271491238, - "2028-01-01": 1442.36379095739, - "2027-01-01": 1413.08926530439, - "2026-01-01": 1379.10707944502, - "2025-01-01": 1358.34260565246, - "2024-01-01": 1328.86368578881, - "2023-01-01": 1257, - "2015-01-01": 1257 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1758.80297703129, - "2034-01-01": 1724.74535304383, - "2033-01-01": 1691.10819355004, - "2032-01-01": 1658.3119630436, - "2031-01-01": 1626.35666152451, - "2030-01-01": 1594.82182449909, - "2029-01-01": 1563.70745196733, - "2028-01-01": 1533.01354392925, - "2027-01-01": 1501.8991713975, - "2026-01-01": 1465.78127139105, - "2025-01-01": 1443.71179089235, - "2024-01-01": 1412.3801783722, - "2023-01-01": 1336, - "2015-01-01": 1336 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1853.58876621261, - "2034-01-01": 1817.69570141146, - "2033-01-01": 1782.24576086711, - "2032-01-01": 1747.68206883637, - "2031-01-01": 1714.00462531924, - "2030-01-01": 1680.77030605892, - "2029-01-01": 1647.97911105539, - "2028-01-01": 1615.63104030868, - "2027-01-01": 1582.83984530515, - "2026-01-01": 1544.77547164566, - "2025-01-01": 1521.51661794643, - "2024-01-01": 1488.49647541022, - "2023-01-01": 1408, - "2015-01-01": 1408 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1943.1086782172, - "2034-01-01": 1905.48214153645, - "2033-01-01": 1868.3201299999, - "2032-01-01": 1832.08716875177, - "2031-01-01": 1796.78325779205, - "2030-01-01": 1761.94387197653, - "2029-01-01": 1727.56901130523, - "2028-01-01": 1693.65867577813, - "2027-01-01": 1659.28381510682, - "2026-01-01": 1619.38110521946, - "2025-01-01": 1594.99895460861, - "2024-01-01": 1560.38408927947, - "2023-01-01": 1476, - "2015-01-01": 1476 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2035.26152881016, - "2034-01-01": 1995.85053578276, - "2033-01-01": 1956.92609822483, - "2032-01-01": 1918.97477160585, - "2031-01-01": 1881.99655592582, - "2030-01-01": 1845.50489571526, - "2029-01-01": 1809.49979097417, - "2028-01-01": 1773.98124170257, - "2027-01-01": 1737.97613696148, - "2026-01-01": 1696.18102213366, - "2025-01-01": 1670.64253646675, - "2024-01-01": 1634.3860447331, - "2023-01-01": 1546, - "2015-01-01": 1546 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2133.99672587404, - "2034-01-01": 2092.67381533237, - "2033-01-01": 2051.86106418011, - "2032-01-01": 2012.06863180665, - "2031-01-01": 1973.296518212, - "2030-01-01": 1935.03456400675, - "2029-01-01": 1897.2827691909, - "2028-01-01": 1860.04113376446, - "2027-01-01": 1822.28933894862, - "2026-01-01": 1778.46664739887, - "2025-01-01": 1751.68923131474, - "2024-01-01": 1713.67385414771, - "2023-01-01": 1621, - "2015-01-01": 1621 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2226.149576467, - "2034-01-01": 2183.04220957868, - "2033-01-01": 2140.46703240503, - "2032-01-01": 2098.95623466073, - "2031-01-01": 2058.50981634577, - "2030-01-01": 2018.59558774547, - "2029-01-01": 1979.21354885985, - "2028-01-01": 1940.3636996889, - "2027-01-01": 1900.98166080328, - "2026-01-01": 1855.26656431308, - "2025-01-01": 1827.33281317288, - "2024-01-01": 1787.67580960134, - "2023-01-01": 1691, - "2015-01-01": 1691 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2313.03654988321, - "2034-01-01": 2268.24669558234, - "2033-01-01": 2224.00980244568, - "2032-01-01": 2180.87883163743, - "2031-01-01": 2138.85378315761, - "2030-01-01": 2097.38169584199, - "2029-01-01": 2056.46256969057, - "2028-01-01": 2016.09640470337, - "2027-01-01": 1975.17727855196, - "2026-01-01": 1927.67791454647, - "2025-01-01": 1898.65390463911, - "2024-01-01": 1857.44908188619, - "2023-01-01": 1757, - "2015-01-01": 1757 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2822.51016673284, - "2034-01-01": 2767.85481805836, - "2033-01-01": 2713.87422677492, - "2032-01-01": 2661.24315027357, - "2031-01-01": 2609.9615885543, - "2030-01-01": 2559.35478422608, - "2029-01-01": 2509.42273728889, - "2028-01-01": 2460.16544774276, - "2027-01-01": 2410.23340080558, - "2026-01-01": 2352.27174091498, - "2025-01-01": 2316.85485005479, - "2024-01-01": 2266.57417846557, - "2023-01-01": 2144, - "2015-01-01": 2144 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 597.677059560033, - "2034-01-01": 586.103585540343, - "2033-01-01": 574.672993915958, - "2032-01-01": 563.528167082183, - "2031-01-01": 552.669105039017, - "2030-01-01": 541.952925391156, - "2029-01-01": 531.3796281386, - "2028-01-01": 520.949213281349, - "2027-01-01": 510.375916028793, - "2026-01-01": 498.102318272109, - "2025-01-01": 490.602659479885, - "2024-01-01": 479.955539656421, - "2023-01-01": 454, - "2015-01-01": 454 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 857.021510514497, - "2034-01-01": 840.426066490669, - "2033-01-01": 824.035504491826, - "2032-01-01": 808.054706542954, - "2031-01-01": 792.483672644053, - "2030-01-01": 777.117520770138, - "2029-01-01": 761.956250921208, - "2028-01-01": 746.999863097264, - "2027-01-01": 731.838593248335, - "2026-01-01": 714.239227302077, - "2025-01-01": 703.485311280628, - "2024-01-01": 688.218185718789, - "2023-01-01": 651, - "2015-01-01": 651 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 987.351970638822, - "2034-01-01": 968.232795496162, - "2033-01-01": 949.349659552794, - "2032-01-01": 930.938602008011, - "2031-01-01": 912.999622861813, - "2030-01-01": 895.296682914906, - "2029-01-01": 877.829782167291, - "2028-01-01": 860.598920618968, - "2027-01-01": 843.132019871353, - "2026-01-01": 822.856252652163, - "2025-01-01": 810.466948479986, - "2024-01-01": 792.87809414607, - "2023-01-01": 750, - "2015-01-01": 750 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1097.93539135037, - "2034-01-01": 1076.67486859173, - "2033-01-01": 1055.67682142271, - "2032-01-01": 1035.20372543291, - "2031-01-01": 1015.25558062234, - "2030-01-01": 995.569911401375, - "2029-01-01": 976.146717770027, - "2028-01-01": 956.985999728292, - "2027-01-01": 937.562806096945, - "2026-01-01": 915.016152949205, - "2025-01-01": 901.239246709745, - "2024-01-01": 881.68044069043, - "2023-01-01": 834, - "2015-01-01": 834 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1195.35411912007, - "2034-01-01": 1172.20717108069, - "2033-01-01": 1149.34598783192, - "2032-01-01": 1127.05633416437, - "2031-01-01": 1105.33821007803, - "2030-01-01": 1083.90585078231, - "2029-01-01": 1062.7592562772, - "2028-01-01": 1041.8984265627, - "2027-01-01": 1020.75183205759, - "2026-01-01": 996.204636544218, - "2025-01-01": 981.20531895977, - "2024-01-01": 959.911079312842, - "2023-01-01": 908, - "2015-01-01": 908 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1282.24109253628, - "2034-01-01": 1257.41165708435, - "2033-01-01": 1232.88875787256, - "2032-01-01": 1208.97893114107, - "2031-01-01": 1185.68217688987, - "2030-01-01": 1162.69195887882, - "2029-01-01": 1140.00827710792, - "2028-01-01": 1117.63113157717, - "2027-01-01": 1094.94744980626, - "2026-01-01": 1068.61598677761, - "2025-01-01": 1052.52641042601, - "2024-01-01": 1029.6843515977, - "2023-01-01": 974, - "2015-01-01": 974 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1361.22925018739, - "2034-01-01": 1334.87028072404, - "2033-01-01": 1308.83673063679, - "2032-01-01": 1283.45401930171, - "2031-01-01": 1258.72214671882, - "2030-01-01": 1234.31569351202, - "2029-01-01": 1210.2346596813, - "2028-01-01": 1186.47904522668, - "2027-01-01": 1162.39801139597, - "2026-01-01": 1134.44448698978, - "2025-01-01": 1117.36376630441, - "2024-01-01": 1093.11459912938, - "2023-01-01": 1034, - "2015-01-01": 1034 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1434.95153066175, - "2034-01-01": 1407.16499612109, - "2033-01-01": 1379.72150521673, - "2032-01-01": 1352.96410158498, - "2031-01-01": 1326.89278522583, - "2030-01-01": 1301.164512503, - "2029-01-01": 1275.77928341646, - "2028-01-01": 1250.73709796623, - "2027-01-01": 1225.3518688797, - "2026-01-01": 1195.88442052114, - "2025-01-01": 1177.87863179091, - "2024-01-01": 1152.31616349229, - "2023-01-01": 1090, - "2015-01-01": 1090 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1503.40793395938, - "2034-01-01": 1474.29580327549, - "2033-01-01": 1445.54308161239, - "2032-01-01": 1417.50917799087, - "2031-01-01": 1390.19409241092, - "2030-01-01": 1363.23841585176, - "2029-01-01": 1336.64214831339, - "2028-01-01": 1310.40528979582, - "2027-01-01": 1283.80902225745, - "2026-01-01": 1252.93578737169, - "2025-01-01": 1234.07100688553, - "2024-01-01": 1207.28904468642, - "2023-01-01": 1142, - "2015-01-01": 1142 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1594.24431525815, - "2034-01-01": 1563.37322046114, - "2033-01-01": 1532.88325029125, - "2032-01-01": 1503.1555293756, - "2031-01-01": 1474.19005771421, - "2030-01-01": 1445.60571067993, - "2029-01-01": 1417.40248827279, - "2028-01-01": 1389.58039049276, - "2027-01-01": 1361.37716808561, - "2026-01-01": 1328.63856261569, - "2025-01-01": 1308.63396614568, - "2024-01-01": 1280.23382934786, - "2023-01-01": 1211, - "2015-01-01": 1211 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1710.09361314644, - "2034-01-01": 1676.97920179935, - "2033-01-01": 1644.27361034544, - "2032-01-01": 1612.38565867788, - "2031-01-01": 1581.31534679666, - "2030-01-01": 1550.65385480862, - "2029-01-01": 1520.40118271375, - "2028-01-01": 1490.55733051205, - "2027-01-01": 1460.30465841718, - "2026-01-01": 1425.18702959355, - "2025-01-01": 1403.72875476734, - "2024-01-01": 1373.26485906099, - "2023-01-01": 1299, - "2015-01-01": 1299 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1818.04409526962, - "2034-01-01": 1782.8393207736, - "2033-01-01": 1748.06917312321, - "2032-01-01": 1714.16827916408, - "2031-01-01": 1681.13663889622, - "2030-01-01": 1648.53962547398, - "2029-01-01": 1616.37723889737, - "2028-01-01": 1584.64947916639, - "2027-01-01": 1552.48709258979, - "2026-01-01": 1515.15264655018, - "2025-01-01": 1492.33980780115, - "2024-01-01": 1459.95286402096, - "2023-01-01": 1381, - "2015-01-01": 1381 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1915.46282303931, - "2034-01-01": 1878.37162326255, - "2033-01-01": 1841.73833953242, - "2032-01-01": 1806.02088789554, - "2031-01-01": 1771.21926835192, - "2030-01-01": 1736.87556485492, - "2029-01-01": 1702.98977740454, - "2028-01-01": 1669.5619060008, - "2027-01-01": 1635.67611855043, - "2026-01-01": 1596.3411301452, - "2025-01-01": 1572.30588005117, - "2024-01-01": 1538.18350264338, - "2023-01-01": 1455, - "2015-01-01": 1455 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2007.61567363227, - "2034-01-01": 1968.74001750886, - "2033-01-01": 1930.34430775735, - "2032-01-01": 1892.90849074962, - "2031-01-01": 1856.43256648569, - "2030-01-01": 1820.43658859364, - "2029-01-01": 1784.92055707349, - "2028-01-01": 1749.88447192523, - "2027-01-01": 1714.36844040509, - "2026-01-01": 1673.1410470594, - "2025-01-01": 1647.94946190931, - "2024-01-01": 1612.18545809701, - "2023-01-01": 1525, - "2015-01-01": 1525 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2103.71793210778, - "2034-01-01": 2062.98134293716, - "2033-01-01": 2022.74767462049, - "2032-01-01": 1983.51984801174, - "2031-01-01": 1945.2978631109, - "2030-01-01": 1907.57879906403, - "2029-01-01": 1870.36265587111, - "2028-01-01": 1833.64943353215, - "2027-01-01": 1796.43329033923, - "2026-01-01": 1753.23238898421, - "2025-01-01": 1726.83491156136, - "2024-01-01": 1689.35892592723, - "2023-01-01": 1598, - "2015-01-01": 1598 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2205.08606776003, - "2034-01-01": 2162.3865766081, - "2033-01-01": 2120.21423966791, - "2032-01-01": 2079.09621115123, - "2031-01-01": 2039.03249105805, - "2030-01-01": 1999.49592517662, - "2029-01-01": 1960.48651350695, - "2028-01-01": 1922.00425604903, - "2027-01-01": 1882.99484437936, - "2026-01-01": 1837.71229758983, - "2025-01-01": 1810.0428516053, - "2024-01-01": 1770.76107692622, - "2023-01-01": 1675, - "2015-01-01": 1675 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2299.87185694136, - "2034-01-01": 2255.33692497573, - "2033-01-01": 2211.35180698498, - "2032-01-01": 2168.46631694399, - "2031-01-01": 2126.68045485278, - "2030-01-01": 2085.44440673645, - "2029-01-01": 2044.75817259501, - "2028-01-01": 2004.62175242845, - "2027-01-01": 1963.93551828701, - "2026-01-01": 1916.70649784444, - "2025-01-01": 1887.84767865938, - "2024-01-01": 1846.87737396425, - "2023-01-01": 1747, - "2015-01-01": 1747 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2390.70823824013, - "2034-01-01": 2344.41434216137, - "2033-01-01": 2298.69197566383, - "2032-01-01": 2254.11266832873, - "2031-01-01": 2210.67642015607, - "2030-01-01": 2167.81170156463, - "2029-01-01": 2125.5185125544, - "2028-01-01": 2083.79685312539, - "2027-01-01": 2041.50366411517, - "2026-01-01": 1992.40927308844, - "2025-01-01": 1962.41063791954, - "2024-01-01": 1919.82215862568, - "2023-01-01": 1816, - "2015-01-01": 1816 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2915.97948661999, - "2034-01-01": 2859.51418936533, - "2033-01-01": 2803.74599454592, - "2032-01-01": 2749.37200459699, - "2031-01-01": 2696.39221951855, - "2030-01-01": 2644.10953687536, - "2029-01-01": 2592.5239566674, - "2028-01-01": 2541.63547889469, - "2027-01-01": 2490.04989868673, - "2026-01-01": 2430.16879949939, - "2025-01-01": 2393.57905451089, - "2024-01-01": 2341.63330471139, - "2023-01-01": 2215, - "2015-01-01": 2215 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 613.474691090254, - "2034-01-01": 601.595310268282, - "2033-01-01": 589.862588468803, - "2032-01-01": 578.423184714311, - "2031-01-01": 567.277099004806, - "2030-01-01": 556.277672317795, - "2029-01-01": 545.424904653277, - "2028-01-01": 534.718796011252, - "2027-01-01": 523.866028346734, - "2026-01-01": 511.268018314544, - "2025-01-01": 503.570130655565, - "2024-01-01": 492.641589162758, - "2023-01-01": 466, - "2015-01-01": 466 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 879.401488515644, - "2034-01-01": 862.372676521915, - "2033-01-01": 845.554096775022, - "2032-01-01": 829.155981521802, - "2031-01-01": 813.178330762254, - "2030-01-01": 797.410912249543, - "2029-01-01": 781.853725983667, - "2028-01-01": 766.506771964627, - "2027-01-01": 750.949585698752, - "2026-01-01": 732.890635695526, - "2025-01-01": 721.855895446175, - "2024-01-01": 706.1900891861, - "2023-01-01": 668, - "2015-01-01": 668 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1012.36488722834, - "2034-01-01": 992.761359648731, - "2033-01-01": 973.399850928132, - "2032-01-01": 954.522379925548, - "2031-01-01": 936.128946640979, - "2030-01-01": 917.977532215417, - "2029-01-01": 900.068136648862, - "2028-01-01": 882.400759941315, - "2027-01-01": 864.491364374761, - "2026-01-01": 843.701944386017, - "2025-01-01": 830.998777841479, - "2024-01-01": 812.964339197771, - "2023-01-01": 769, - "2015-01-01": 769 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1125.58124652826, - "2034-01-01": 1103.78538686562, - "2033-01-01": 1082.25861189019, - "2032-01-01": 1061.27000628913, - "2031-01-01": 1040.81957006247, - "2030-01-01": 1020.63821852299, - "2029-01-01": 1000.72595167071, - "2028-01-01": 981.082769505623, - "2027-01-01": 961.170502653343, - "2026-01-01": 938.056128023466, - "2025-01-01": 923.932321267184, - "2024-01-01": 903.88102732652, - "2023-01-01": 855, - "2015-01-01": 855 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1225.63291288632, - "2034-01-01": 1201.8996434759, - "2033-01-01": 1178.45937739154, - "2032-01-01": 1155.60511795928, - "2031-01-01": 1133.33686517913, - "2030-01-01": 1111.36161572504, - "2029-01-01": 1089.679369597, - "2028-01-01": 1068.29012679501, - "2027-01-01": 1046.60788066697, - "2026-01-01": 1021.43889495888, - "2025-01-01": 1006.05963871316, - "2024-01-01": 984.226007533322, - "2023-01-01": 931, - "2015-01-01": 931 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1315.15282489091, - "2034-01-01": 1289.68608360089, - "2033-01-01": 1264.53374652432, - "2032-01-01": 1240.01021787467, - "2031-01-01": 1216.11549765193, - "2030-01-01": 1192.53518164265, - "2029-01-01": 1169.26926984683, - "2028-01-01": 1146.31776226447, - "2027-01-01": 1123.05185046864, - "2026-01-01": 1096.04452853268, - "2025-01-01": 1079.54197537534, - "2024-01-01": 1056.11362140257, - "2023-01-01": 999, - "2015-01-01": 999 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1396.77392113039, - "2034-01-01": 1369.7266613619, - "2033-01-01": 1343.01331838069, - "2032-01-01": 1316.967808974, - "2031-01-01": 1291.59013314184, - "2030-01-01": 1266.54637409695, - "2029-01-01": 1241.83653183933, - "2028-01-01": 1217.46060636897, - "2027-01-01": 1192.75076411134, - "2026-01-01": 1164.06731208526, - "2025-01-01": 1146.54057644969, - "2024-01-01": 1121.65821051864, - "2023-01-01": 1061, - "2015-01-01": 1061 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1471.81267089894, - "2034-01-01": 1443.31235381961, - "2033-01-01": 1415.1638925067, - "2032-01-01": 1387.71914272661, - "2031-01-01": 1360.97810447934, - "2030-01-01": 1334.58892199849, - "2029-01-01": 1308.55159528404, - "2028-01-01": 1282.86612433601, - "2027-01-01": 1256.82879762156, - "2026-01-01": 1226.60438728682, - "2025-01-01": 1208.13606453417, - "2024-01-01": 1181.91694567374, - "2023-01-01": 1118, - "2015-01-01": 1118 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1541.58554349075, - "2034-01-01": 1511.73413803467, - "2033-01-01": 1482.25126844843, - "2032-01-01": 1453.50547060184, - "2031-01-01": 1425.49674449491, - "2030-01-01": 1397.85655425781, - "2029-01-01": 1370.58489989053, - "2028-01-01": 1343.68178139308, - "2027-01-01": 1316.41012702581, - "2026-01-01": 1284.75289580758, - "2025-01-01": 1265.40906222675, - "2024-01-01": 1237.94699766006, - "2023-01-01": 1171, - "2015-01-01": 1171 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1635.05486337789, - "2034-01-01": 1603.39350934164, - "2033-01-01": 1572.12303621943, - "2032-01-01": 1541.63432492527, - "2031-01-01": 1511.92737545916, - "2030-01-01": 1482.61130690708, - "2029-01-01": 1453.68611926903, - "2028-01-01": 1425.15181254501, - "2027-01-01": 1396.22662490696, - "2026-01-01": 1362.64995439198, - "2025-01-01": 1342.13326668286, - "2024-01-01": 1313.00612390589, - "2023-01-01": 1242, - "2015-01-01": 1242 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1753.53709985455, - "2034-01-01": 1719.58144480118, - "2033-01-01": 1686.04499536576, - "2032-01-01": 1653.34695716623, - "2031-01-01": 1621.48733020258, - "2030-01-01": 1590.04690885687, - "2029-01-01": 1559.02569312911, - "2028-01-01": 1528.42368301929, - "2027-01-01": 1497.40246729152, - "2026-01-01": 1461.39270471024, - "2025-01-01": 1439.38930050046, - "2024-01-01": 1408.15149520342, - "2023-01-01": 1332, - "2015-01-01": 1332 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1864.1205205661, - "2034-01-01": 1828.02351789675, - "2033-01-01": 1792.37215723568, - "2032-01-01": 1757.61208059113, - "2031-01-01": 1723.7432879631, - "2030-01-01": 1690.32013734334, - "2029-01-01": 1657.34262873184, - "2028-01-01": 1624.81076212861, - "2027-01-01": 1591.83325351712, - "2026-01-01": 1553.55260500728, - "2025-01-01": 1530.16159873021, - "2024-01-01": 1496.95384174778, - "2023-01-01": 1416, - "2015-01-01": 1416 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1965.48865621835, - "2034-01-01": 1927.42875156769, - "2033-01-01": 1889.8387222831, - "2032-01-01": 1853.18844373061, - "2031-01-01": 1817.47791591025, - "2030-01-01": 1782.23726345594, - "2029-01-01": 1747.46648636769, - "2028-01-01": 1713.16558464549, - "2027-01-01": 1678.39480755724, - "2026-01-01": 1638.03251361291, - "2025-01-01": 1613.36953877416, - "2024-01-01": 1578.35599274678, - "2023-01-01": 1493, - "2015-01-01": 1493 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2060.27444539967, - "2034-01-01": 2020.37909993532, - "2033-01-01": 1980.97628960016, - "2032-01-01": 1942.55854952338, - "2031-01-01": 1905.12587970498, - "2030-01-01": 1868.18574501577, - "2029-01-01": 1831.73814545575, - "2028-01-01": 1795.78308102491, - "2027-01-01": 1759.33548146489, - "2026-01-01": 1717.02671386751, - "2025-01-01": 1691.17436582824, - "2024-01-01": 1654.4722897848, - "2023-01-01": 1565, - "2015-01-01": 1565 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2157.69317316937, - "2034-01-01": 2115.91140242428, - "2033-01-01": 2074.64545600937, - "2032-01-01": 2034.41115825484, - "2031-01-01": 1995.20850916068, - "2030-01-01": 1956.52168439671, - "2029-01-01": 1918.35068396292, - "2028-01-01": 1880.69550785932, - "2027-01-01": 1842.52450742553, - "2026-01-01": 1798.21519746253, - "2025-01-01": 1771.14043807826, - "2024-01-01": 1732.70292840721, - "2023-01-01": 1639, - "2015-01-01": 1639 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2261.69424740999, - "2034-01-01": 2217.89859021654, - "2033-01-01": 2174.64362014893, - "2032-01-01": 2132.47002433302, - "2031-01-01": 2091.37780276879, - "2030-01-01": 2050.82626833041, - "2029-01-01": 2010.81542101787, - "2028-01-01": 1971.34526083118, - "2027-01-01": 1931.33441351865, - "2026-01-01": 1884.88938940855, - "2025-01-01": 1856.50962331816, - "2024-01-01": 1816.2194209906, - "2023-01-01": 1718, - "2015-01-01": 1718 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2359.11297517969, - "2034-01-01": 2313.4308927055, - "2033-01-01": 2268.31278655814, - "2032-01-01": 2224.32263306448, - "2031-01-01": 2181.46043222449, - "2030-01-01": 2139.16220771135, - "2029-01-01": 2097.42795952505, - "2028-01-01": 2056.25768766559, - "2027-01-01": 2014.52343947929, - "2026-01-01": 1966.07787300357, - "2025-01-01": 1936.47569556818, - "2024-01-01": 1894.45005961301, - "2023-01-01": 1792, - "2015-01-01": 1792 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2452.58229506683, - "2034-01-01": 2405.09026401247, - "2033-01-01": 2358.18455432914, - "2032-01-01": 2312.4514873879, - "2031-01-01": 2267.89106318874, - "2030-01-01": 2223.91696036063, - "2029-01-01": 2180.52917890355, - "2028-01-01": 2137.72771881752, - "2027-01-01": 2094.33993736044, - "2026-01-01": 2043.97493158797, - "2025-01-01": 2013.19990002429, - "2024-01-01": 1969.50918585884, - "2023-01-01": 1863, - "2015-01-01": 1863 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2992.33470568272, - "2034-01-01": 2934.3908588837, - "2033-01-01": 2877.162368218, - "2032-01-01": 2821.36458981895, - "2031-01-01": 2766.99752368653, - "2030-01-01": 2713.34581368744, - "2029-01-01": 2660.40945982167, - "2028-01-01": 2608.18846208922, - "2027-01-01": 2555.25210822345, - "2026-01-01": 2493.80301637115, - "2025-01-01": 2456.25516519335, - "2024-01-01": 2402.94921065869, - "2023-01-01": 2273, - "2015-01-01": 2273 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 634.538199797216, - "2034-01-01": 622.250943238867, - "2033-01-01": 610.115381205929, - "2032-01-01": 598.283208223815, - "2031-01-01": 586.754424292525, - "2030-01-01": 575.377334886646, - "2029-01-01": 564.151940006179, - "2028-01-01": 553.078239651123, - "2027-01-01": 541.852844770656, - "2026-01-01": 528.82228503779, - "2025-01-01": 520.860092223138, - "2024-01-01": 509.556321837875, - "2023-01-01": 482, - "2015-01-01": 482 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 908.363812987716, - "2034-01-01": 890.774171856469, - "2033-01-01": 873.401686788571, - "2032-01-01": 856.463513847371, - "2031-01-01": 839.959653032868, - "2030-01-01": 823.672948281713, - "2029-01-01": 807.603399593907, - "2028-01-01": 791.751006969451, - "2027-01-01": 775.681458281645, - "2026-01-01": 757.02775243999, - "2025-01-01": 745.629592601587, - "2024-01-01": 729.447846614385, - "2023-01-01": 690, - "2015-01-01": 690 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1046.59308887715, - "2034-01-01": 1026.32676322593, - "2033-01-01": 1006.31063912596, - "2032-01-01": 986.794918128492, - "2031-01-01": 967.779600233521, - "2030-01-01": 949.0144838898, - "2029-01-01": 930.499569097328, - "2028-01-01": 912.234855856106, - "2027-01-01": 893.719941063635, - "2026-01-01": 872.227627811293, - "2025-01-01": 859.094965388786, - "2024-01-01": 840.450779794835, - "2023-01-01": 795, - "2015-01-01": 795 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1163.75885605962, - "2034-01-01": 1141.22372162481, - "2033-01-01": 1118.96679872623, - "2032-01-01": 1097.26629890011, - "2031-01-01": 1076.12222214646, - "2030-01-01": 1055.25635692904, - "2029-01-01": 1034.66870324785, - "2028-01-01": 1014.35926110289, - "2027-01-01": 993.771607421702, - "2026-01-01": 969.873236459349, - "2025-01-01": 955.270376608411, - "2024-01-01": 934.538980300168, - "2023-01-01": 884, - "2015-01-01": 884 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1267.75993030025, - "2034-01-01": 1243.21090941707, - "2033-01-01": 1218.96496286579, - "2032-01-01": 1195.32516497829, - "2031-01-01": 1172.29151575457, - "2030-01-01": 1149.56094086274, - "2029-01-01": 1127.1334403028, - "2028-01-01": 1105.00901407475, - "2027-01-01": 1082.58151351482, - "2026-01-01": 1056.54742840538, - "2025-01-01": 1040.6395618483, - "2024-01-01": 1018.05547288355, - "2023-01-01": 963, - "2015-01-01": 963 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1359.9127808932, - "2034-01-01": 1333.57930366338, - "2033-01-01": 1307.57093109072, - "2032-01-01": 1282.21276783237, - "2031-01-01": 1257.50481388834, - "2030-01-01": 1233.12196460146, - "2029-01-01": 1209.06421997175, - "2028-01-01": 1185.33157999919, - "2027-01-01": 1161.27383536948, - "2026-01-01": 1133.34734531958, - "2025-01-01": 1116.28314370643, - "2024-01-01": 1092.05742833719, - "2023-01-01": 1033, - "2015-01-01": 1033 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1444.16681572105, - "2034-01-01": 1416.20183554572, - "2033-01-01": 1388.58210203922, - "2032-01-01": 1361.65286187038, - "2031-01-01": 1335.41411503921, - "2030-01-01": 1309.52061487687, - "2029-01-01": 1283.97236138336, - "2028-01-01": 1258.76935455868, - "2027-01-01": 1233.22110106517, - "2026-01-01": 1203.56441221256, - "2025-01-01": 1185.44298997673, - "2024-01-01": 1159.71635903765, - "2023-01-01": 1097, - "2015-01-01": 1097 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1521.83850407797, - "2034-01-01": 1492.36948212475, - "2033-01-01": 1463.26427525737, - "2032-01-01": 1434.88669856168, - "2031-01-01": 1407.23675203767, - "2030-01-01": 1379.95062059951, - "2029-01-01": 1353.02830424718, - "2028-01-01": 1326.4698029807, - "2027-01-01": 1299.54748662838, - "2026-01-01": 1268.29577075453, - "2025-01-01": 1249.19972325715, - "2024-01-01": 1222.08943577714, - "2023-01-01": 1156, - "2015-01-01": 1156 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1594.24431525815, - "2034-01-01": 1563.37322046114, - "2033-01-01": 1532.88325029125, - "2032-01-01": 1503.1555293756, - "2031-01-01": 1474.19005771421, - "2030-01-01": 1445.60571067993, - "2029-01-01": 1417.40248827279, - "2028-01-01": 1389.58039049276, - "2027-01-01": 1361.37716808561, - "2026-01-01": 1328.63856261569, - "2025-01-01": 1308.63396614568, - "2024-01-01": 1280.23382934786, - "2023-01-01": 1211, - "2015-01-01": 1211 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1690.34657373366, - "2034-01-01": 1657.61454588943, - "2033-01-01": 1625.28661715438, - "2032-01-01": 1593.76688663772, - "2031-01-01": 1563.05535433942, - "2030-01-01": 1532.74792115032, - "2029-01-01": 1502.8445870704, - "2028-01-01": 1473.34535209967, - "2027-01-01": 1443.44201801976, - "2026-01-01": 1408.7299045405, - "2025-01-01": 1387.51941579774, - "2024-01-01": 1357.40729717807, - "2023-01-01": 1284, - "2015-01-01": 1284 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1814.09468738706, - "2034-01-01": 1778.96638959161, - "2033-01-01": 1744.271774485, - "2032-01-01": 1710.44452475605, - "2031-01-01": 1677.48464040477, - "2030-01-01": 1644.95843874232, - "2029-01-01": 1612.8659197687, - "2028-01-01": 1581.20708348392, - "2027-01-01": 1549.1145645103, - "2026-01-01": 1511.86122153957, - "2025-01-01": 1489.09794000723, - "2024-01-01": 1456.78135164438, - "2023-01-01": 1378, - "2015-01-01": 1378 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1927.31104668698, - "2034-01-01": 1889.99041680851, - "2033-01-01": 1853.13053544705, - "2032-01-01": 1817.19215111964, - "2031-01-01": 1782.17526382626, - "2030-01-01": 1747.6191250499, - "2029-01-01": 1713.52373479055, - "2028-01-01": 1679.88909304823, - "2027-01-01": 1645.79370278888, - "2026-01-01": 1606.21540517702, - "2025-01-01": 1582.03148343293, - "2024-01-01": 1547.69803977313, - "2023-01-01": 1464, - "2015-01-01": 1464 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2031.3121209276, - "2034-01-01": 1991.97760460077, - "2033-01-01": 1953.12869958662, - "2032-01-01": 1915.25101719782, - "2031-01-01": 1878.34455743437, - "2030-01-01": 1841.9237089836, - "2029-01-01": 1805.98847184551, - "2028-01-01": 1770.53884602009, - "2027-01-01": 1734.603608882, - "2026-01-01": 1692.88959712305, - "2025-01-01": 1667.40066867283, - "2024-01-01": 1631.21453235652, - "2023-01-01": 1543, - "2015-01-01": 1543 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2130.04731799148, - "2034-01-01": 2088.80088415039, - "2033-01-01": 2048.0636655419, - "2032-01-01": 2008.34487739862, - "2031-01-01": 1969.64451972055, - "2030-01-01": 1931.45337727509, - "2029-01-01": 1893.77145006223, - "2028-01-01": 1856.59873808199, - "2027-01-01": 1818.91681086913, - "2026-01-01": 1775.17522238827, - "2025-01-01": 1748.44736352082, - "2024-01-01": 1710.50234177112, - "2023-01-01": 1618, - "2015-01-01": 1618 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2231.41545364374, - "2034-01-01": 2188.20611782133, - "2033-01-01": 2145.53023058932, - "2032-01-01": 2103.92124053811, - "2031-01-01": 2063.3791476677, - "2030-01-01": 2023.37050338769, - "2029-01-01": 1983.89530769808, - "2028-01-01": 1944.95356059887, - "2027-01-01": 1905.47836490926, - "2026-01-01": 1859.65513099389, - "2025-01-01": 1831.65530356477, - "2024-01-01": 1791.90449277012, - "2023-01-01": 1695, - "2015-01-01": 1695 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2339.36593576691, - "2034-01-01": 2294.06623679557, - "2033-01-01": 2249.32579336709, - "2032-01-01": 2205.70386102432, - "2031-01-01": 2163.20043976725, - "2030-01-01": 2121.25627405305, - "2029-01-01": 2079.8713638817, - "2028-01-01": 2039.04570925321, - "2027-01-01": 1997.66079908186, - "2026-01-01": 1949.62074795052, - "2025-01-01": 1920.26635659858, - "2024-01-01": 1878.59249773009, - "2023-01-01": 1777, - "2015-01-01": 1777 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2439.41760212498, - "2034-01-01": 2392.18049340585, - "2033-01-01": 2345.52655886844, - "2032-01-01": 2300.03897269446, - "2031-01-01": 2255.71773488392, - "2030-01-01": 2211.97967125509, - "2029-01-01": 2168.82478180799, - "2028-01-01": 2126.2530665426, - "2027-01-01": 2083.09817709549, - "2026-01-01": 2033.00351488594, - "2025-01-01": 2002.39367404455, - "2024-01-01": 1958.93747793689, - "2023-01-01": 1853, - "2015-01-01": 1853 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2535.51986060049, - "2034-01-01": 2486.42181883414, - "2033-01-01": 2437.92992573158, - "2032-01-01": 2390.65032995657, - "2031-01-01": 2344.58303150913, - "2030-01-01": 2299.12188172548, - "2029-01-01": 2254.2668806056, - "2028-01-01": 2210.01802814951, - "2027-01-01": 2165.16302702964, - "2026-01-01": 2113.09485681075, - "2025-01-01": 2081.27912369661, - "2024-01-01": 2036.11094576711, - "2023-01-01": 1926, - "2015-01-01": 1926 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DC.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3093.70284133497, - "2034-01-01": 3033.79609255464, - "2033-01-01": 2974.62893326542, - "2032-01-01": 2916.94095295844, - "2031-01-01": 2860.73215163368, - "2030-01-01": 2805.26293980004, - "2029-01-01": 2750.53331745751, - "2028-01-01": 2696.5432846061, - "2027-01-01": 2641.81366226357, - "2026-01-01": 2578.28292497678, - "2025-01-01": 2539.46310523729, - "2024-01-01": 2484.35136165769, - "2023-01-01": 2350, - "2015-01-01": 2350 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE", - "description": null, - "label": "DE", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.DE.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW", - "description": null, - "label": "PW", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PW.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI", - "description": null, - "label": "VI", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.VI.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT", - "description": null, - "label": "MT", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MT.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR", - "description": null, - "label": "PR", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.PR.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP", - "description": null, - "label": "AP", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AP.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU", - "description": null, - "label": "GU", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.GU.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR", - "description": null, - "label": "OR", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.OR.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE", - "description": null, - "label": "AE", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AE.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP", - "description": null, - "label": "MP", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.MP.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA", - "description": null, - "label": "AA", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.AA.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH", - "description": null, - "label": "NH", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.1": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.1.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.1.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.1.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.1.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.1.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.1.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.1.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.1.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.1.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.1.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.1.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.1.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.1.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.1.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.1.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.1.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.1.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.1.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.1.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.1.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.1.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.1.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.1.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.1.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.1.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.1.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.1.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.1.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.1.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.1.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.2": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.2.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.2.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.2.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.2.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.2.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.2.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.2.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.2.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.2.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.2.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.2.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.2.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.2.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.2.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.2.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.2.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.2.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.2.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.2.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.2.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.2.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.2.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.2.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.2.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.2.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.2.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.2.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.2.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.2.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.2.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.3": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.3.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.3.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.3.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.3.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.3.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.3.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.3.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.3.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.3.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.3.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.3.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.3.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.3.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.3.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.3.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.3.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.3.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.3.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.3.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.3.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.3.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.3.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.3.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.3.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.3.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.3.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.3.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.3.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.3.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.3.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.3.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.3.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.3.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.3.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.3.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.3.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.3.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.3.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.4": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.4.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.4.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.4.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.4.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.4.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.4.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.4.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.4.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.4.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.4.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.4.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.4.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.4.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.4.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.4.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.4.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.4.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.4.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.4.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.4.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.4.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.4.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.4.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.4.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.4.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.4.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.4.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.4.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.4.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.4.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.4.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.4.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.4.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.4.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.4.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.4.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.4.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.4.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.5": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.5.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.5.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.5.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.5.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.5.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.5.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.5.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.5.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.5.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.5.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.5.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.5.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.5.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.5.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.5.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.5.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.5.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.5.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.5.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.5.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.5.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.5.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.5.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.5.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.5.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.5.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.5.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.5.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.5.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.5.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.5.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.5.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.5.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.5.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.5.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.5.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.5.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.5.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.6": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.6.1": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.6.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.6.2": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.6.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.6.3": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.6.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.6.4": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.6.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.6.5": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.6.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.6.6": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.6.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.6.7": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.6.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.6.8": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.6.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.6.9": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.6.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.6.10": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.6.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.6.11": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.6.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.6.12": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.6.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.6.13": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.6.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.6.14": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.6.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.6.15": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.6.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.6.16": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.6.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.6.17": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.6.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.6.18": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.6.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.6.19": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_table.tax.NH.6.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.casualty": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.casualty", - "description": null, - "label": "casualty", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.casualty.active": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.casualty.active", - "description": "Casualty expense deduction is active.", - "label": "Casualty expense deduction active", - "unit": "bool", - "period": null, - "values": { - "2018-01-01": false, - "2013-01-01": true - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.casualty.floor": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.casualty.floor", - "description": "Floor (as a fraction of AGI) for deductible casualty loss.", - "label": "Casualty expense deduction floor", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.medical": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.itemized.medical", - "description": null, - "label": "medical", - "economy": true, - "household": true - }, - "gov.irs.deductions.itemized.medical.floor": { - "type": "parameter", - "parameter": "gov.irs.deductions.itemized.medical.floor", - "description": "Medical expenses over this percentage of AGI are deductible from taxable income.", - "label": "Medical expense deduction floor", - "unit": "/1", - "period": "year", - "values": { - "2017-01-01": 0.075, - "2013-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.standard": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.standard", - "description": null, - "label": "standard", - "economy": true, - "household": true - }, - "gov.irs.deductions.standard.dependent": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.standard.dependent", - "description": null, - "label": "dependent", - "economy": true, - "household": true - }, - "gov.irs.deductions.standard.dependent.additional_earned_income": { - "type": "parameter", - "parameter": "gov.irs.deductions.standard.dependent.additional_earned_income", - "description": "Addition to earned income for the standard deduction if claimed as a dependent", - "label": "additional earned income", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": 450, - "2022-01-01": 400, - "0001-01-01": 350 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.standard.dependent.amount": { - "type": "parameter", - "parameter": "gov.irs.deductions.standard.dependent.amount", - "description": "Maximum standard deduction for dependents", - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 1650, - "2034-01-01": 1600, - "2033-01-01": 1550, - "2032-01-01": 1550, - "2031-01-01": 1500, - "2030-01-01": 1500, - "2029-01-01": 1450, - "2028-01-01": 1400, - "2027-01-01": 1400, - "2026-01-01": 1350, - "2025-01-01": 1350, - "2024-01-01": 1300, - "2023-01-01": 1250, - "2022-01-01": 1150, - "2019-01-01": 1100, - "2018-01-01": 1050, - "2015-01-01": 1050 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.standard.amount": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.standard.amount", - "description": "Federal deduction from AGI if not itemizing.", - "label": "Standard deduction", - "economy": true, - "household": true - }, - "gov.irs.deductions.standard.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.deductions.standard.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 19600, - "2034-01-01": 19200, - "2033-01-01": 18850, - "2032-01-01": 18450, - "2031-01-01": 18100, - "2030-01-01": 17750, - "2029-01-01": 17400, - "2028-01-01": 17050, - "2027-01-01": 16700, - "2026-01-01": 16300, - "2025-01-01": 15750, - "2024-01-01": 14600, - "2023-01-01": 13850, - "2022-01-01": 12950, - "2021-01-01": 12550, - "2020-01-01": 12400, - "2019-01-01": 12200, - "2018-01-01": 12000, - "2015-01-01": 12000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.standard.amount.JOINT": { - "type": "parameter", - "parameter": "gov.irs.deductions.standard.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2035-01-01": 39200, - "2034-01-01": 38400, - "2033-01-01": 37700, - "2032-01-01": 36900, - "2031-01-01": 36200, - "2030-01-01": 35500, - "2029-01-01": 34800, - "2028-01-01": 34100, - "2027-01-01": 33400, - "2026-01-01": 32600, - "2025-01-01": 31500, - "2024-01-01": 29200, - "2023-01-01": 27700, - "2022-01-01": 25900, - "2021-01-01": 25100, - "2020-01-01": 24800, - "2019-01-01": 24400, - "2018-01-01": 24000, - "2015-01-01": 24000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.standard.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.deductions.standard.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 19600, - "2034-01-01": 19200, - "2033-01-01": 18850, - "2032-01-01": 18450, - "2031-01-01": 18100, - "2030-01-01": 17750, - "2029-01-01": 17400, - "2028-01-01": 17050, - "2027-01-01": 16700, - "2026-01-01": 16300, - "2025-01-01": 15750, - "2024-01-01": 14600, - "2023-01-01": 13850, - "2022-01-01": 12950, - "2021-01-01": 12550, - "2020-01-01": 12400, - "2019-01-01": 12200, - "2018-01-01": 12000, - "2015-01-01": 12000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.standard.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.deductions.standard.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2035-01-01": 29400, - "2034-01-01": 28800, - "2033-01-01": 28250, - "2032-01-01": 27700, - "2031-01-01": 27200, - "2030-01-01": 26650, - "2029-01-01": 26150, - "2028-01-01": 25600, - "2027-01-01": 25100, - "2026-01-01": 24500, - "2025-01-01": 23625, - "2024-01-01": 21900, - "2023-01-01": 20800, - "2022-01-01": 19400, - "2021-01-01": 18800, - "2020-01-01": 18650, - "2019-01-01": 18350, - "2018-01-01": 18000, - "2015-01-01": 18000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.standard.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.deductions.standard.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 39200, - "2034-01-01": 38400, - "2033-01-01": 37700, - "2032-01-01": 36900, - "2031-01-01": 36200, - "2030-01-01": 35500, - "2029-01-01": 34800, - "2028-01-01": 34100, - "2027-01-01": 33400, - "2026-01-01": 32600, - "2025-01-01": 31500, - "2024-01-01": 29200, - "2023-01-01": 27700, - "2022-01-01": 25900, - "2021-01-01": 25100, - "2020-01-01": 24400, - "2019-01-01": 24400, - "2018-01-01": 24000, - "2015-01-01": 24000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.standard.aged_or_blind": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.standard.aged_or_blind", - "description": null, - "label": "aged or blind", - "economy": true, - "household": true - }, - "gov.irs.deductions.standard.aged_or_blind.age_threshold": { - "type": "parameter", - "parameter": "gov.irs.deductions.standard.aged_or_blind.age_threshold", - "description": "Age at which a person qualifies for the aged standard deduction addition", - "label": "Aged standard deduction age", - "unit": "year", - "period": null, - "values": { - "0001-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.standard.aged_or_blind.amount": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.standard.aged_or_blind.amount", - "description": "Additional standard deduction for blind and aged", - "label": "Additional standard deduction for the blind and aged", - "economy": true, - "household": true - }, - "gov.irs.deductions.standard.aged_or_blind.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.deductions.standard.aged_or_blind.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 2450, - "2034-01-01": 2400, - "2033-01-01": 2350, - "2032-01-01": 2300, - "2031-01-01": 2250, - "2030-01-01": 2250, - "2029-01-01": 2200, - "2028-01-01": 2150, - "2027-01-01": 2100, - "2026-01-01": 2050, - "2025-01-01": 2000, - "2024-01-01": 1950, - "2023-01-01": 1850, - "2022-01-01": 1750, - "2021-01-01": 1700, - "2019-01-01": 1650, - "2018-01-01": 1600, - "2015-01-01": 1600 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.standard.aged_or_blind.amount.JOINT": { - "type": "parameter", - "parameter": "gov.irs.deductions.standard.aged_or_blind.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2035-01-01": 1950, - "2034-01-01": 1900, - "2033-01-01": 1900, - "2032-01-01": 1850, - "2031-01-01": 1800, - "2030-01-01": 1800, - "2029-01-01": 1750, - "2028-01-01": 1700, - "2027-01-01": 1650, - "2026-01-01": 1650, - "2025-01-01": 1600, - "2024-01-01": 1550, - "2023-01-01": 1500, - "2022-01-01": 1400, - "2021-01-01": 1350, - "2019-01-01": 1300, - "2018-01-01": 1300, - "2015-01-01": 1300 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.standard.aged_or_blind.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.deductions.standard.aged_or_blind.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2025-10-01": 1900, - "2025-09-01": 1900, - "2025-08-01": 1850, - "2025-07-01": 1800, - "2025-06-01": 1750, - "2025-05-01": 1750, - "2025-04-01": 1700, - "2025-03-01": 1650, - "2025-02-01": 1650, - "2025-01-01": 1600, - "2024-01-01": 1550, - "2023-01-01": 1500, - "2022-01-01": 1400, - "2021-01-01": 1350, - "2019-01-01": 1300, - "2018-01-01": 1300, - "2015-01-01": 1300 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.standard.aged_or_blind.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.deductions.standard.aged_or_blind.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2035-01-01": 2450, - "2034-01-01": 2400, - "2033-01-01": 2350, - "2032-01-01": 2300, - "2031-01-01": 2250, - "2030-01-01": 2250, - "2029-01-01": 2200, - "2028-01-01": 2150, - "2027-01-01": 2100, - "2026-01-01": 2050, - "2025-01-01": 2000, - "2024-01-01": 1950, - "2023-01-01": 1850, - "2022-01-01": 1750, - "2021-01-01": 1700, - "2019-01-01": 1650, - "2018-01-01": 1600, - "2015-01-01": 1600 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.standard.aged_or_blind.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.deductions.standard.aged_or_blind.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 1950, - "2034-01-01": 1900, - "2033-01-01": 1900, - "2032-01-01": 1850, - "2031-01-01": 1800, - "2030-01-01": 1800, - "2029-01-01": 1750, - "2028-01-01": 1700, - "2027-01-01": 1650, - "2026-01-01": 1650, - "2025-01-01": 1600, - "2024-01-01": 1550, - "2023-01-01": 1500, - "2022-01-01": 1400, - "2021-01-01": 1350, - "2019-01-01": 1300, - "2018-01-01": 1300, - "2015-01-01": 1300 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.deductions_if_itemizing": { - "type": "parameter", - "parameter": "gov.irs.deductions.deductions_if_itemizing", - "description": "Deductions from taxable income if itemizing.", - "label": "Taxable income deductions if itemizing", - "unit": "list", - "period": "year", - "values": { - "2029-01-01": [ - "qualified_business_income_deduction", - "wagering_losses_deduction", - "itemized_taxable_income_deductions" - ], - "2025-01-01": [ - "qualified_business_income_deduction", - "wagering_losses_deduction", - "itemized_taxable_income_deductions", - "tip_income_deduction", - "overtime_income_deduction", - "additional_senior_deduction", - "auto_loan_interest_deduction" - ], - "2018-01-01": [ - "qualified_business_income_deduction", - "wagering_losses_deduction", - "itemized_taxable_income_deductions" - ], - "2015-01-01": [ - "qualified_business_income_deduction", - "wagering_losses_deduction", - "itemized_taxable_income_deductions" - ] - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.tuition_and_fees": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.tuition_and_fees", - "description": null, - "label": "tuition and fees", - "economy": true, - "household": true - }, - "gov.irs.deductions.tuition_and_fees.non_joint": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.tuition_and_fees.non_joint", - "description": "The IRS limits the tuition and fees deduction to non-joint filers to this amount, based on adjusted gross income.", - "label": "IRS tuition and fees deduction non-joint filers cap" - }, - "gov.irs.deductions.tuition_and_fees.non_joint[0]": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.tuition_and_fees.non_joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.irs.deductions.tuition_and_fees.non_joint[0].threshold": { - "type": "parameter", - "parameter": "gov.irs.deductions.tuition_and_fees.non_joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2002-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.tuition_and_fees.non_joint[0].amount": { - "type": "parameter", - "parameter": "gov.irs.deductions.tuition_and_fees.non_joint[0].amount", - "description": null, - "label": "amount", - "unit": "currency_USD", - "period": null, - "values": { - "2004-01-01": 4000, - "2002-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.tuition_and_fees.non_joint[1]": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.tuition_and_fees.non_joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.irs.deductions.tuition_and_fees.non_joint[1].threshold": { - "type": "parameter", - "parameter": "gov.irs.deductions.tuition_and_fees.non_joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2002-01-01": 65000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.tuition_and_fees.non_joint[1].amount": { - "type": "parameter", - "parameter": "gov.irs.deductions.tuition_and_fees.non_joint[1].amount", - "description": null, - "label": "amount", - "unit": "currency_USD", - "period": null, - "values": { - "2004-01-01": 2000, - "2002-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.tuition_and_fees.non_joint[2]": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.tuition_and_fees.non_joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.irs.deductions.tuition_and_fees.non_joint[2].threshold": { - "type": "parameter", - "parameter": "gov.irs.deductions.tuition_and_fees.non_joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2004-01-01": 80000, - "2002-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.tuition_and_fees.non_joint[2].amount": { - "type": "parameter", - "parameter": "gov.irs.deductions.tuition_and_fees.non_joint[2].amount", - "description": null, - "label": "amount", - "unit": "currency_USD", - "period": null, - "values": { - "2002-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.tuition_and_fees.joint": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.tuition_and_fees.joint", - "description": "The IRS limits the tuition and fees deduction to joint filers to this amount, based on adjusted gross income.", - "label": "IRS tuition and fees deduction joint filers cap" - }, - "gov.irs.deductions.tuition_and_fees.joint[0]": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.tuition_and_fees.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.irs.deductions.tuition_and_fees.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.irs.deductions.tuition_and_fees.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2002-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.tuition_and_fees.joint[0].amount": { - "type": "parameter", - "parameter": "gov.irs.deductions.tuition_and_fees.joint[0].amount", - "description": null, - "label": "amount", - "unit": "currency_USD", - "period": null, - "values": { - "2004-01-01": 4000, - "2002-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.tuition_and_fees.joint[1]": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.tuition_and_fees.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.irs.deductions.tuition_and_fees.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.irs.deductions.tuition_and_fees.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2002-01-01": 130000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.tuition_and_fees.joint[1].amount": { - "type": "parameter", - "parameter": "gov.irs.deductions.tuition_and_fees.joint[1].amount", - "description": null, - "label": "amount", - "unit": "currency_USD", - "period": null, - "values": { - "2004-01-01": 2000, - "2002-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.tuition_and_fees.joint[2]": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.tuition_and_fees.joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.irs.deductions.tuition_and_fees.joint[2].threshold": { - "type": "parameter", - "parameter": "gov.irs.deductions.tuition_and_fees.joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2004-01-01": 160000, - "2002-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.tuition_and_fees.joint[2].amount": { - "type": "parameter", - "parameter": "gov.irs.deductions.tuition_and_fees.joint[2].amount", - "description": null, - "label": "amount", - "unit": "currency_USD", - "period": null, - "values": { - "2002-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.senior_deduction": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.senior_deduction", - "description": null, - "label": "senior deduction", - "economy": true, - "household": true - }, - "gov.irs.deductions.senior_deduction.eligible_ssn_card_type": { - "type": "parameter", - "parameter": "gov.irs.deductions.senior_deduction.eligible_ssn_card_type", - "description": "The IRS limits the senior deduction to individuals with one of these SSN Card types.", - "label": "Senior deduction eligible SSN card type", - "unit": "list", - "period": "year", - "values": { - "2018-01-01": ["CITIZEN", "NON_CITIZEN_VALID_EAD"], - "2015-01-01": ["CITIZEN", "NON_CITIZEN_VALID_EAD"] - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.senior_deduction.phase_out_rate": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.senior_deduction.phase_out_rate", - "description": null, - "label": "phase out rate", - "economy": true, - "household": true - }, - "gov.irs.deductions.senior_deduction.phase_out_rate.other": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.senior_deduction.phase_out_rate.other", - "description": "The IRS phases the senior deduction out at this percentage of adjusted gross income for non-joint filers.", - "label": "Senior deduction other filers phase out rate" - }, - "gov.irs.deductions.senior_deduction.phase_out_rate.other[0]": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.senior_deduction.phase_out_rate.other[0]", - "description": null, - "label": "bracket 1" - }, - "gov.irs.deductions.senior_deduction.phase_out_rate.other[0].rate": { - "type": "parameter", - "parameter": "gov.irs.deductions.senior_deduction.phase_out_rate.other[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2025-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.senior_deduction.phase_out_rate.other[0].threshold": { - "type": "parameter", - "parameter": "gov.irs.deductions.senior_deduction.phase_out_rate.other[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.senior_deduction.phase_out_rate.other[1]": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.senior_deduction.phase_out_rate.other[1]", - "description": null, - "label": "bracket 2" - }, - "gov.irs.deductions.senior_deduction.phase_out_rate.other[1].rate": { - "type": "parameter", - "parameter": "gov.irs.deductions.senior_deduction.phase_out_rate.other[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2025-01-01": 0.06, - "2015-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.senior_deduction.phase_out_rate.other[1].threshold": { - "type": "parameter", - "parameter": "gov.irs.deductions.senior_deduction.phase_out_rate.other[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": 75000, - "2015-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.senior_deduction.phase_out_rate.joint": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.senior_deduction.phase_out_rate.joint", - "description": "The IRS phases the senior deduction out at this percentage of adjusted gross income for joint filers.", - "label": "Senior deduction joint filers phase out rate" - }, - "gov.irs.deductions.senior_deduction.phase_out_rate.joint[0]": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.senior_deduction.phase_out_rate.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.irs.deductions.senior_deduction.phase_out_rate.joint[0].rate": { - "type": "parameter", - "parameter": "gov.irs.deductions.senior_deduction.phase_out_rate.joint[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2025-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.senior_deduction.phase_out_rate.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.irs.deductions.senior_deduction.phase_out_rate.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.senior_deduction.phase_out_rate.joint[1]": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.senior_deduction.phase_out_rate.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.irs.deductions.senior_deduction.phase_out_rate.joint[1].rate": { - "type": "parameter", - "parameter": "gov.irs.deductions.senior_deduction.phase_out_rate.joint[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2025-01-01": 0.06, - "2015-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.senior_deduction.phase_out_rate.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.irs.deductions.senior_deduction.phase_out_rate.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.senior_deduction.amount": { - "type": "parameter", - "parameter": "gov.irs.deductions.senior_deduction.amount", - "description": "The IRS provides a deduction for seniors of this amount.", - "label": "Senior deduction amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2025-01-01": 6000, - "2015-01-01": 6000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.auto_loan_interest": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.auto_loan_interest", - "description": null, - "label": "auto loan interest", - "economy": true, - "household": true - }, - "gov.irs.deductions.auto_loan_interest.cap": { - "type": "parameter", - "parameter": "gov.irs.deductions.auto_loan_interest.cap", - "description": "The IRS caps the auto loan interest deduction at the following amount.", - "label": "Auto loan interest deduction cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2025-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.auto_loan_interest.phase_out": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.auto_loan_interest.phase_out", - "description": null, - "label": "phase out", - "economy": true, - "household": true - }, - "gov.irs.deductions.auto_loan_interest.phase_out.increment": { - "type": "parameter", - "parameter": "gov.irs.deductions.auto_loan_interest.phase_out.increment", - "description": "The IRS deduces the auto loan interest deduction in these increments of adjusted gross income exceeding the threshold.", - "label": "Auto loan interest deduction reduction increment", - "unit": "currency-USD", - "period": "year", - "values": { - "2025-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.auto_loan_interest.phase_out.step": { - "type": "parameter", - "parameter": "gov.irs.deductions.auto_loan_interest.phase_out.step", - "description": "The IRS reduces the auto loan interest deduction at the following rate for each increment in of adjusted gross income above the threshold.", - "label": "Auto loan interest deduction reduction step", - "unit": "currency-USD", - "period": "year", - "values": { - "2025-01-01": 200, - "2015-01-01": 200 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.auto_loan_interest.phase_out.start": { - "type": "parameterNode", - "parameter": "gov.irs.deductions.auto_loan_interest.phase_out.start", - "description": "The IRS reduces the auto loan interest deduction for filers with adjusted gross income above this threshold, based on filing status.", - "label": "Auto loan interest deduction reduction start", - "economy": true, - "household": true - }, - "gov.irs.deductions.auto_loan_interest.phase_out.start.SINGLE": { - "type": "parameter", - "parameter": "gov.irs.deductions.auto_loan_interest.phase_out.start.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2025-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.auto_loan_interest.phase_out.start.SEPARATE": { - "type": "parameter", - "parameter": "gov.irs.deductions.auto_loan_interest.phase_out.start.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2025-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.auto_loan_interest.phase_out.start.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.irs.deductions.auto_loan_interest.phase_out.start.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2025-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.auto_loan_interest.phase_out.start.JOINT": { - "type": "parameter", - "parameter": "gov.irs.deductions.auto_loan_interest.phase_out.start.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2025-01-01": 200000, - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.irs.deductions.auto_loan_interest.phase_out.start.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.irs.deductions.auto_loan_interest.phase_out.start.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2025-01-01": 200000, - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.household": { - "type": "parameterNode", - "parameter": "gov.household", - "description": null, - "label": "household", - "economy": false, - "household": false - }, - "gov.household.market_income_sources": { - "type": "parameter", - "parameter": "gov.household.market_income_sources", - "description": "All sources of household market income.", - "label": "Household market income sources", - "unit": "list", - "period": "year", - "values": { - "0000-01-01": [ - "employment_income", - "self_employment_income", - "partnership_s_corp_income", - "gi_cash_assistance", - "farm_income", - "farm_rent_income", - "capital_gains", - "interest_income", - "rental_income", - "dividend_income", - "pension_income", - "debt_relief", - "unemployment_compensation", - "social_security", - "illicit_income", - "retirement_distributions", - "miscellaneous_income", - "ak_permanent_fund_dividend" - ] - }, - "economy": false, - "household": false - }, - "gov.household.household_tax_before_refundable_credits": { - "type": "parameter", - "parameter": "gov.household.household_tax_before_refundable_credits", - "description": "The sum of total tax before refundable credits", - "label": "Total tax before refundable credits", - "unit": "list", - "period": "year", - "values": { - "0000-01-01": [ - "al_income_tax_before_refundable_credits", - "ar_income_tax_before_refundable_credits", - "az_income_tax_before_refundable_credits", - "ca_income_tax_before_refundable_credits", - "co_income_tax_before_refundable_credits", - "ct_income_tax_before_refundable_credits", - "dc_income_tax_before_refundable_credits", - "de_income_tax_before_refundable_credits", - "employee_payroll_tax", - "flat_tax", - "ga_income_tax_before_refundable_credits", - "hi_income_tax_before_refundable_credits", - "ia_income_tax_before_refundable_credits", - "id_income_tax_before_refundable_credits", - "income_tax_before_refundable_credits", - "il_total_tax", - "in_income_tax_before_refundable_credits", - "ks_income_tax_before_refundable_credits", - "ky_income_tax_before_refundable_credits", - "la_income_tax_before_refundable_credits", - "me_income_tax_before_refundable_credits", - "ma_income_tax_before_refundable_credits", - "md_income_tax_before_refundable_credits", - "mi_income_tax_before_refundable_credits", - "mn_income_tax_before_refundable_credits", - "mo_income_tax_before_refundable_credits", - "ms_income_tax_before_credits_unit", - "mt_income_tax_before_refundable_credits_unit", - "nc_income_tax", - "nd_income_tax_before_refundable_credits", - "ne_income_tax_before_refundable_credits", - "nh_income_tax_before_refundable_credits", - "nj_income_tax_before_refundable_credits", - "nm_income_tax_before_refundable_credits", - "ny_income_tax_before_refundable_credits", - "oh_income_tax_before_refundable_credits", - "or_income_tax_before_refundable_credits", - "ok_income_tax_before_refundable_credits", - "pa_income_tax", - "ri_income_tax_before_refundable_credits", - "self_employment_tax", - "sc_income_tax_before_refundable_credits", - "wa_income_tax_before_refundable_credits", - "nyc_income_tax_before_refundable_credits", - "ut_income_tax_before_refundable_credits", - "va_income_tax_before_refundable_credits", - "vt_income_tax_before_refundable_credits", - "wi_income_tax_before_refundable_credits", - "wv_income_tax_before_refundable_credits" - ] - }, - "economy": false, - "household": false - }, - "gov.household.household_local_benefits": { - "type": "parameter", - "parameter": "gov.household.household_local_benefits", - "description": "The government counts these sources as benefits paid by local agencies.", - "label": "Household local benefits", - "unit": "list", - "period": "year", - "values": { - "2023-01-01": ["co_denver_property_tax_relief"], - "2015-01-01": ["co_denver_property_tax_relief"] - }, - "economy": false, - "household": false - }, - "gov.household.household_refundable_credits": { - "type": "parameter", - "parameter": "gov.household.household_refundable_credits", - "description": "All household refundable credits.", - "label": "Household refundable credits", - "unit": "list", - "period": "year", - "values": { - "0000-01-01": [ - "income_tax_refundable_credits", - "al_refundable_credits", - "ar_refundable_credits", - "az_refundable_credits", - "ca_refundable_credits", - "co_refundable_credits", - "ct_refundable_credits", - "dc_refundable_credits", - "de_refundable_credits", - "ga_refundable_credits", - "hi_refundable_credits", - "ia_refundable_credits", - "id_refundable_credits", - "il_refundable_credits", - "in_refundable_credits", - "ks_refundable_credits", - "ky_refundable_credits", - "la_refundable_credits", - "ma_refundable_credits", - "me_refundable_credits", - "md_refundable_credits", - "mi_refundable_credits", - "mn_refundable_credits", - "mo_refundable_credits", - "ms_refundable_credits", - "mt_refundable_credits", - "nd_refundable_credits", - "ne_refundable_credits", - "nh_refundable_credits", - "nm_refundable_credits", - "nj_refundable_credits", - "ny_refundable_credits", - "oh_refundable_credits", - "ok_refundable_credits", - "or_refundable_credits", - "ri_refundable_credits", - "sc_refundable_credits", - "wa_refundable_credits", - "nyc_refundable_credits", - "ut_refundable_credits", - "va_refundable_credits", - "vt_refundable_credits", - "wi_refundable_credits", - "wv_refundable_credits" - ] - }, - "economy": false, - "household": false - }, - "gov.household.household_benefits": { - "type": "parameter", - "parameter": "gov.household.household_benefits", - "description": "The government counts these sources as household benefits.", - "label": "Household benefits", - "unit": "list", - "period": "year", - "values": { - "2024-01-01": [ - "social_security", - "ssi", - "snap", - "wic", - "free_school_meals", - "reduced_price_school_meals", - "spm_unit_broadband_subsidy", - "tanf", - "high_efficiency_electric_home_rebate", - "residential_efficiency_electrification_rebate", - "unemployment_compensation", - "head_start", - "early_head_start", - "basic_income", - "spm_unit_capped_housing_subsidy", - "household_state_benefits", - "commodity_supplemental_food_program", - "household_health_benefits" - ], - "2022-01-01": [ - "social_security", - "ssi", - "snap", - "wic", - "free_school_meals", - "reduced_price_school_meals", - "spm_unit_broadband_subsidy", - "tanf", - "high_efficiency_electric_home_rebate", - "residential_efficiency_electrification_rebate", - "unemployment_compensation", - "head_start", - "early_head_start", - "ak_energy_relief", - "basic_income", - "spm_unit_capped_housing_subsidy", - "household_state_benefits", - "household_health_benefits" - ], - "2015-01-01": [ - "social_security", - "ssi", - "snap", - "wic", - "free_school_meals", - "reduced_price_school_meals", - "spm_unit_broadband_subsidy", - "tanf", - "high_efficiency_electric_home_rebate", - "residential_efficiency_electrification_rebate", - "unemployment_compensation", - "head_start", - "early_head_start", - "ak_energy_relief", - "basic_income", - "spm_unit_capped_housing_subsidy", - "household_state_benefits", - "household_health_benefits" - ] - }, - "economy": false, - "household": false - }, - "gov.household.household_state_benefits": { - "type": "parameter", - "parameter": "gov.household.household_state_benefits", - "description": "The government counts these sources as benefits paid by state agencies.", - "label": "Household state benefits", - "unit": "list", - "period": "year", - "values": { - "2024-01-01": [ - "ma_state_supplement", - "co_state_supplement", - "co_oap", - "co_child_care_subsidies", - "ca_child_care_subsidies", - "ca_cvrp", - "ca_care", - "ca_fera", - "ca_la_ez_save", - "ca_la_infant_supplement", - "ca_la_expectant_parent_payment", - "ca_capi", - "ca_state_supplement", - "ne_child_care_subsidies", - "nc_scca", - "ma_eaedc", - "ma_tafdc" - ], - "2023-01-01": [ - "ma_state_supplement", - "co_state_supplement", - "co_oap", - "co_child_care_subsidies", - "ca_child_care_subsidies", - "ca_cvrp", - "ca_care", - "ca_fera", - "ca_la_ez_save", - "ca_la_infant_supplement", - "ca_la_expectant_parent_payment", - "ca_capi", - "ca_state_supplement", - "ne_child_care_subsidies", - "ma_eaedc", - "ma_tafdc" - ], - "2015-01-01": [ - "ma_state_supplement", - "co_state_supplement", - "co_oap", - "co_child_care_subsidies", - "ca_child_care_subsidies", - "ca_cvrp", - "ca_care", - "ca_fera", - "ca_la_ez_save", - "ca_la_infant_supplement", - "ca_la_expectant_parent_payment", - "ca_capi", - "ca_state_supplement", - "ne_child_care_subsidies", - "ma_eaedc", - "ma_tafdc" - ] - }, - "economy": false, - "household": false - }, - "gov.household.household_health_benefits": { - "type": "parameter", - "parameter": "gov.household.household_health_benefits", - "description": "The government counts these sources as household benefits.", - "label": "Household health benefits", - "unit": "list", - "period": "year", - "values": { - "2022-01-01": ["medicaid", "chip", "premium_tax_credit"], - "2015-01-01": ["medicaid", "chip", "premium_tax_credit"] - }, - "economy": false, - "household": false - }, - "gov.household.household_refundable_state_credits": { - "type": "parameter", - "parameter": "gov.household.household_refundable_state_credits", - "description": "All household refundable State income tax credits.", - "label": "Household refundable credits", - "unit": "list", - "period": "year", - "values": { - "0000-01-01": [ - "al_refundable_credits", - "ar_refundable_credits", - "az_refundable_credits", - "ca_refundable_credits", - "co_refundable_credits", - "ct_refundable_credits", - "dc_refundable_credits", - "de_refundable_credits", - "ga_refundable_credits", - "hi_refundable_credits", - "ia_refundable_credits", - "id_refundable_credits", - "il_refundable_credits", - "in_refundable_credits", - "ks_refundable_credits", - "ky_refundable_credits", - "la_refundable_credits", - "ma_refundable_credits", - "me_refundable_credits", - "md_refundable_credits", - "mi_refundable_credits", - "mn_refundable_credits", - "mo_refundable_credits", - "ms_refundable_credits", - "mt_refundable_credits", - "nd_refundable_credits", - "ne_refundable_credits", - "nh_refundable_credits", - "nm_refundable_credits", - "nj_refundable_credits", - "ny_refundable_credits", - "oh_refundable_credits", - "ok_refundable_credits", - "or_refundable_credits", - "ri_refundable_credits", - "sc_refundable_credits", - "wa_refundable_credits", - "nyc_refundable_credits", - "ut_refundable_credits", - "va_refundable_credits", - "vt_refundable_credits", - "wi_refundable_credits", - "wv_refundable_credits" - ] - }, - "economy": false, - "household": false - }, - "gov.ssa": { - "type": "parameterNode", - "parameter": "gov.ssa", - "description": null, - "label": "Social Security Administration (SSA)", - "economy": true, - "household": true - }, - "gov.ssa.nawi": { - "type": "parameter", - "parameter": "gov.ssa.nawi", - "description": "The Social Security Administration calculates the National Average Wage Index.", - "label": "National Average Wage Index", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 102920.73, - "2034-01-01": 99536.06, - "2033-01-01": 96258.56, - "2032-01-01": 93088.94, - "2031-01-01": 90031.76, - "2030-01-01": 87090.55, - "2029-01-01": 84149.34, - "2028-01-01": 81080.8, - "2027-01-01": 78124.71, - "2026-01-01": 75168.61, - "2025-01-01": 72891.3, - "2024-01-01": 70395.85, - "2023-01-01": 66621.8, - "2022-01-01": 63795.13, - "2021-01-01": 60575.07, - "2020-01-01": 55628.6, - "2019-01-01": 54099.99, - "2018-01-01": 52145.8, - "2017-01-01": 50321.89, - "2016-01-01": 48642.15, - "2015-01-01": 48098.63, - "2014-01-01": 46481.52, - "2013-01-01": 44888.16, - "2012-01-01": 44321.67, - "2011-01-01": 42979.61, - "2010-01-01": 41673.83, - "2009-01-01": 40711.61, - "2008-01-01": 41334.97, - "2007-01-01": 40405.48, - "2006-01-01": 38651.41, - "2005-01-01": 36952.94, - "2004-01-01": 35648.55, - "2003-01-01": 34064.95, - "2002-01-01": 33252.09, - "2001-01-01": 32921.92, - "2000-01-01": 32154.82, - "1999-01-01": 30469.84, - "1998-01-01": 28861.44, - "1997-01-01": 27426, - "1996-01-01": 25913.9, - "1995-01-01": 24705.66, - "1994-01-01": 23753.53, - "1993-01-01": 23132.67, - "1992-01-01": 22935.42, - "1991-01-01": 21811.6, - "1990-01-01": 21027.98, - "1989-01-01": 20099.55, - "1988-01-01": 19334.04, - "1987-01-01": 18426.51, - "1986-01-01": 17321.82, - "1985-01-01": 16822.51, - "1984-01-01": 16135.07, - "1983-01-01": 15239.24, - "1982-01-01": 14531.34, - "1981-01-01": 13773.1, - "1980-01-01": 12513.46, - "1979-01-01": 11479.46, - "1978-01-01": 10556.03, - "1977-01-01": 9779.44, - "1976-01-01": 9226.48, - "1975-01-01": 8630.92, - "1974-01-01": 8030.76, - "1973-01-01": 7580.16, - "1972-01-01": 7133.8, - "1971-01-01": 6497.08, - "1970-01-01": 6186.24, - "1969-01-01": 5893.76, - "1968-01-01": 5571.76, - "1967-01-01": 5213.44, - "1966-01-01": 4938.36, - "1965-01-01": 4658.72, - "1964-01-01": 4576.32, - "1963-01-01": 4396.64, - "1962-01-01": 4291.4, - "1961-01-01": 4086.76, - "1960-01-01": 4007.12, - "1959-01-01": 3855.8, - "1958-01-01": 3673.8, - "1957-01-01": 3641.72, - "1956-01-01": 3532.36, - "1955-01-01": 3301.44, - "1954-01-01": 3155.64, - "1953-01-01": 3139.44, - "1952-01-01": 2973.32, - "1951-01-01": 2799.16 - }, - "economy": false, - "household": true - }, - "gov.ssa.ssi": { - "type": "parameterNode", - "parameter": "gov.ssa.ssi", - "description": null, - "label": "Supplemental Security Income (SSI)", - "economy": true, - "household": true - }, - "gov.ssa.ssi.abolish_ssi": { - "type": "parameter", - "parameter": "gov.ssa.ssi.abolish_ssi", - "description": "Abolish SSI payments.", - "label": "Abolish SSI", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.ssa.ssi.amount": { - "type": "parameterNode", - "parameter": "gov.ssa.ssi.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.ssa.ssi.amount.couple": { - "type": "parameter", - "parameter": "gov.ssa.ssi.amount.couple", - "description": "Monthly maximum Federal SSI payment amounts for an eligible individual with an eligible spouse.", - "label": "Monthly maximum Federal SSI payment amounts for an eligible individual with an eligible spouse", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 1807.90790887392, - "2034-01-01": 1767.93409378961, - "2033-01-01": 1728.88382775858, - "2032-01-01": 1691.20955652918, - "2031-01-01": 1653.99239543726, - "2030-01-01": 1618.15589353612, - "2029-01-01": 1583.23827629911, - "2028-01-01": 1549.70131825288, - "2027-01-01": 1521.28585950217, - "2026-01-01": 1483.99873257288, - "2025-01-01": 1450, - "2024-01-01": 1415, - "2023-01-01": 1371, - "2022-01-01": 1261, - "2021-01-01": 1191, - "2020-01-01": 1175, - "2019-01-01": 1157, - "2018-01-01": 1125, - "2017-01-01": 1103, - "2016-01-01": 1100, - "2015-01-01": 1100, - "2014-01-01": 1082, - "2013-01-01": 1066, - "2012-01-01": 1048, - "2011-01-01": 1011, - "2010-01-01": 1011, - "2009-01-01": 1011, - "2008-01-01": 956, - "2007-01-01": 934, - "2006-01-01": 904, - "2005-01-01": 869, - "2004-01-01": 846, - "2003-01-01": 829, - "2002-01-01": 817, - "2001-01-01": 796, - "2000-01-01": 769, - "1999-01-01": 751, - "1998-01-01": 741, - "1997-01-01": 726, - "1996-01-01": 705, - "1995-01-01": 687, - "1994-01-01": 669, - "1993-01-01": 652, - "1992-01-01": 633, - "1991-01-01": 610, - "1990-01-01": 579, - "1989-01-01": 553, - "1988-01-01": 532, - "1987-01-01": 510, - "1986-01-01": 504, - "1985-01-01": 488, - "1984-01-01": 472, - "1983-01-01": 456.4, - "1982-01-01": 426.4, - "1981-01-01": 397, - "1980-01-01": 357, - "1979-01-01": 312.3, - "1978-01-01": 284.1, - "1977-01-01": 266.7, - "1976-01-01": 251.8, - "1975-01-01": 236.6 - }, - "economy": true, - "household": true - }, - "gov.ssa.ssi.amount.individual": { - "type": "parameter", - "parameter": "gov.ssa.ssi.amount.individual", - "description": "Monthly maximum Federal SSI payment amounts for an eligible individual.", - "label": "Monthly maximum Federal SSI payment amounts for an eligible individual", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 1205.68755026281, - "2034-01-01": 1179.02915082383, - "2033-01-01": 1152.98666306383, - "2032-01-01": 1127.86182149222, - "2031-01-01": 1103.04182509506, - "2030-01-01": 1079.14258555133, - "2029-01-01": 1055.85614702155, - "2028-01-01": 1033.4904653452, - "2027-01-01": 1014.54029388869, - "2026-01-01": 989.673637515843, - "2025-01-01": 967, - "2024-01-01": 943, - "2023-01-01": 914, - "2022-01-01": 841, - "2021-01-01": 794, - "2020-01-01": 783, - "2019-01-01": 771, - "2018-01-01": 750, - "2017-01-01": 735, - "2016-01-01": 733, - "2015-01-01": 733, - "2014-01-01": 721, - "2013-01-01": 710, - "2012-01-01": 698, - "2011-01-01": 674, - "2010-01-01": 674, - "2009-01-01": 674, - "2008-01-01": 637, - "2007-01-01": 623, - "2006-01-01": 603, - "2005-01-01": 579, - "2004-01-01": 564, - "2003-01-01": 552, - "2002-01-01": 545, - "2001-01-01": 531, - "2000-01-01": 513, - "1999-01-01": 500, - "1998-01-01": 494, - "1997-01-01": 484, - "1996-01-01": 470, - "1995-01-01": 458, - "1994-01-01": 446, - "1993-01-01": 434, - "1992-01-01": 422, - "1991-01-01": 407, - "1990-01-01": 386, - "1989-01-01": 368, - "1988-01-01": 354, - "1987-01-01": 340, - "1986-01-01": 336, - "1985-01-01": 325, - "1984-01-01": 314, - "1983-01-01": 304.3, - "1982-01-01": 284.3, - "1981-01-01": 264.7, - "1980-01-01": 238, - "1979-01-01": 208.2, - "1978-01-01": 189.4, - "1977-01-01": 177.8, - "1976-01-01": 167.8, - "1975-01-01": 157.7 - }, - "economy": true, - "household": true - }, - "gov.ssa.ssi.income": { - "type": "parameterNode", - "parameter": "gov.ssa.ssi.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.ssa.ssi.income.sources": { - "type": "parameterNode", - "parameter": "gov.ssa.ssi.income.sources", - "description": null, - "label": "sources", - "economy": true, - "household": true - }, - "gov.ssa.ssi.income.sources.earned": { - "type": "parameter", - "parameter": "gov.ssa.ssi.income.sources.earned", - "description": "The US counts these income sources as unearned income for Supplemental Security Income.", - "label": "SSI earned income sources", - "unit": null, - "period": null, - "values": { - "1975-01-01": ["employment_income", "self_employment_income"] - }, - "economy": true, - "household": true - }, - "gov.ssa.ssi.income.sources.qualifying_quarters_threshold": { - "type": "parameter", - "parameter": "gov.ssa.ssi.income.sources.qualifying_quarters_threshold", - "description": "The US provides SSI to legal permanent residents with this minimum number of qualifying quarters of earnings.", - "label": "SSI qualifying quarters threshold", - "unit": "quarters", - "period": "year", - "values": { - "1975-01-01": 40 - }, - "economy": true, - "household": true - }, - "gov.ssa.ssi.income.sources.unearned": { - "type": "parameter", - "parameter": "gov.ssa.ssi.income.sources.unearned", - "description": "The US counts these income sources as unearned income for Supplemental Security Income.", - "label": "SSI unearned income sources", - "unit": null, - "period": null, - "values": { - "1975-01-01": [ - "pension_income", - "social_security", - "disability_benefits", - "veterans_benefits", - "workers_compensation", - "unemployment_compensation", - "retirement_distributions", - "gi_cash_assistance", - "alimony_income", - "child_support_received", - "dividend_income", - "interest_income", - "rental_income" - ] - }, - "economy": true, - "household": true - }, - "gov.ssa.ssi.income.exclusions": { - "type": "parameterNode", - "parameter": "gov.ssa.ssi.income.exclusions", - "description": null, - "label": "exclusions", - "economy": true, - "household": true - }, - "gov.ssa.ssi.income.exclusions.blind_or_disabled_working_student": { - "type": "parameterNode", - "parameter": "gov.ssa.ssi.income.exclusions.blind_or_disabled_working_student", - "description": null, - "label": "blind or disabled working student", - "economy": true, - "household": true - }, - "gov.ssa.ssi.income.exclusions.blind_or_disabled_working_student.age_limit": { - "type": "parameter", - "parameter": "gov.ssa.ssi.income.exclusions.blind_or_disabled_working_student.age_limit", - "description": "The Social Security Administration limits the blind or disabled Supplemental Security Income amount to student filers below this age limit.", - "label": "SSI blind or disabled working student earned income exclusion age limit", - "unit": "year", - "period": "year", - "values": { - "1974-01-01": 22 - }, - "economy": true, - "household": true - }, - "gov.ssa.ssi.income.exclusions.blind_or_disabled_working_student.cap": { - "type": "parameter", - "parameter": "gov.ssa.ssi.income.exclusions.blind_or_disabled_working_student.cap", - "description": "The Social Security Administration caps the annual earned income exclusion for blind or disabled students receiving Supplemental Security Income at this amount.", - "label": "SSI blind or disabled working student earned income exclusion cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 11800, - "2034-01-01": 11530, - "2033-01-01": 11280, - "2032-01-01": 11030, - "2031-01-01": 10790, - "2030-01-01": 10560, - "2029-01-01": 10330, - "2028-01-01": 10110, - "2027-01-01": 9930, - "2026-01-01": 9680, - "2025-01-01": 9460, - "2024-01-01": 9230, - "2023-01-01": 8950, - "2022-01-01": 8230, - "2021-01-01": 7770, - "2020-01-01": 7670, - "2019-01-01": 7550, - "2018-01-01": 7350, - "2017-01-01": 7200, - "2015-01-01": 7180, - "2014-01-01": 7060, - "2013-01-01": 6960, - "2012-01-01": 6840, - "2009-01-01": 6600, - "2008-01-01": 6240, - "2007-01-01": 6100, - "2006-01-01": 5910, - "2005-01-01": 5670, - "2004-01-01": 5520, - "2003-01-01": 5410, - "2002-01-01": 5340, - "2001-01-01": 5200, - "1974-01-01": 1620 - }, - "economy": true, - "household": true - }, - "gov.ssa.ssi.income.exclusions.blind_or_disabled_working_student.amount": { - "type": "parameter", - "parameter": "gov.ssa.ssi.income.exclusions.blind_or_disabled_working_student.amount", - "description": "The Social Security Administration excludes the following earned income amount for blind or disabled student filers under the Supplemental Security Income.", - "label": "SSI blind or disabled working student earned income exclusion amount", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 2930, - "2034-01-01": 2870, - "2033-01-01": 2800, - "2032-01-01": 2740, - "2031-01-01": 2680, - "2030-01-01": 2620, - "2029-01-01": 2570, - "2028-01-01": 2510, - "2027-01-01": 2470, - "2026-01-01": 2410, - "2025-01-01": 2350, - "2024-01-01": 2290, - "2023-01-01": 2220, - "2022-01-01": 2040, - "2021-01-01": 1930, - "2020-01-01": 1900, - "2019-01-01": 1870, - "2018-01-01": 1820, - "2017-01-01": 1790, - "2015-01-01": 1780, - "2014-01-01": 1750, - "2013-01-01": 1730, - "2012-01-01": 1700, - "2009-01-01": 1640, - "2008-01-01": 1550, - "2007-01-01": 1510, - "2006-01-01": 1460, - "2005-01-01": 1410, - "2004-01-01": 1370, - "2003-01-01": 1340, - "2002-01-01": 1320, - "2001-01-01": 1290, - "1974-01-01": 400 - }, - "economy": true, - "household": true - }, - "gov.ssa.ssi.income.exclusions.earned": { - "type": "parameter", - "parameter": "gov.ssa.ssi.income.exclusions.earned", - "description": "Flat amount of earned income excluded from SSI countable income.", - "label": "SSI flat earned income exclusion", - "unit": "currency-USD", - "period": "month", - "values": { - "1975-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.ssa.ssi.income.exclusions.earned_share": { - "type": "parameter", - "parameter": "gov.ssa.ssi.income.exclusions.earned_share", - "description": "Share of earned income above the flat exclusion that is excluded from SSI countable income.", - "label": "SSI earned income share excluded above flat exclusion", - "unit": "/1", - "period": "month", - "values": { - "1975-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.ssa.ssi.income.exclusions.general": { - "type": "parameter", - "parameter": "gov.ssa.ssi.income.exclusions.general", - "description": "Flat amount of income excluded from SSI countable income.", - "label": "SSI flat general income exclusion", - "unit": "currency-USD", - "period": "month", - "values": { - "1975-01-01": 20 - }, - "economy": true, - "household": true - }, - "gov.ssa.ssi.eligibility": { - "type": "parameterNode", - "parameter": "gov.ssa.ssi.eligibility", - "description": null, - "label": "eligibility", - "economy": true, - "household": true - }, - "gov.ssa.ssi.eligibility.status": { - "type": "parameterNode", - "parameter": "gov.ssa.ssi.eligibility.status", - "description": null, - "label": "status", - "economy": true, - "household": true - }, - "gov.ssa.ssi.eligibility.status.qualified_noncitizen_status": { - "type": "parameter", - "parameter": "gov.ssa.ssi.eligibility.status.qualified_noncitizen_status", - "description": "The US considers these statuses as qualified noncitizens for Supplemental Security Income.", - "label": "SSI qualified noncitizen statuses", - "unit": "list", - "period": "year", - "values": { - "1975-01-01": [ - "LEGAL_PERMANENT_RESIDENT", - "REFUGEE", - "ASYLEE", - "DEPORTATION_WITHHELD", - "CUBAN_HAITIAN_ENTRANT", - "CONDITIONAL_ENTRANT", - "PAROLED_ONE_YEAR" - ] - }, - "economy": true, - "household": true - }, - "gov.ssa.ssi.eligibility.aged_threshold": { - "type": "parameter", - "parameter": "gov.ssa.ssi.eligibility.aged_threshold", - "description": "Age to qualify for Supplemental Security Income.", - "label": "Age to qualify for Supplemental Security Income", - "unit": "year", - "period": null, - "values": { - "1975-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.ssa.ssi.eligibility.resources": { - "type": "parameterNode", - "parameter": "gov.ssa.ssi.eligibility.resources", - "description": null, - "label": "Resources", - "economy": true, - "household": true - }, - "gov.ssa.ssi.eligibility.resources.pass_rate": { - "type": "parameter", - "parameter": "gov.ssa.ssi.eligibility.resources.pass_rate", - "description": "Proportion of SSI-aged-blind-disabled recipients who meet the asset test.", - "label": "pass rate", - "unit": null, - "period": null, - "values": { - "0000-01-01": 0.4 - }, - "economy": true, - "household": true - }, - "gov.ssa.ssi.eligibility.resources.limit": { - "type": "parameterNode", - "parameter": "gov.ssa.ssi.eligibility.resources.limit", - "description": null, - "label": "limit", - "economy": true, - "household": true - }, - "gov.ssa.ssi.eligibility.resources.limit.couple": { - "type": "parameter", - "parameter": "gov.ssa.ssi.eligibility.resources.limit.couple", - "description": "SSI resource limit for couples.", - "label": "SSI resource limit for couples", - "unit": "currency-USD", - "period": null, - "values": { - "1989-01-01": 3000, - "1988-01-01": 2850, - "1987-01-01": 2700, - "1986-01-01": 2550, - "1985-01-01": 2400 - }, - "economy": true, - "household": true - }, - "gov.ssa.ssi.eligibility.resources.limit.individual": { - "type": "parameter", - "parameter": "gov.ssa.ssi.eligibility.resources.limit.individual", - "description": "SSI resource limit for individuals.", - "label": "SSI resource limit for individuals", - "unit": "currency-USD", - "period": null, - "values": { - "1989-01-01": 2000, - "1988-01-01": 1900, - "1987-01-01": 1800, - "1986-01-01": 1700, - "1985-01-01": 1600 - }, - "economy": true, - "household": true - }, - "gov.ssa.sga": { - "type": "parameterNode", - "parameter": "gov.ssa.sga", - "description": null, - "label": "Substantial Gainful Activity", - "economy": true, - "household": true - }, - "gov.ssa.sga.non_blind": { - "type": "parameter", - "parameter": "gov.ssa.sga.non_blind", - "description": "The Social Security Administration considers non-blind individuals earning more than this amount, net of impairment-related work expenses, to be engaging in Substantial Gainful Activity.", - "label": "Non-blind Substantial Gainful Activity limit", - "unit": "currency-USD", - "period": "monthly", - "values": { - "2035-01-01": 2287.40031526396, - "2034-01-01": 2212.17644904124, - "2033-01-01": 2139.33442262657, - "2032-01-01": 2068.89001568088, - "2031-01-01": 2000.94457363224, - "2030-01-01": 1935.57655028789, - "2029-01-01": 1870.20852694354, - "2028-01-01": 1802.01061031975, - "2027-01-01": 1736.31188084175, - "2026-01-01": 1670.612929115, - "2025-01-01": 1620, - "2024-01-01": 1550, - "2023-01-01": 1470, - "2022-01-01": 1350, - "2021-01-01": 1310, - "2020-01-01": 1260, - "2019-01-01": 1220, - "2018-01-01": 1180, - "2017-01-01": 1170, - "2016-01-01": 1130, - "2015-01-01": 1090, - "2014-01-01": 1070, - "2013-01-01": 1040, - "2012-01-01": 1010, - "2010-01-01": 1000, - "2009-01-01": 980, - "2008-01-01": 940, - "2007-01-01": 900, - "2006-01-01": 860, - "2005-01-01": 830, - "2004-01-01": 810, - "2003-01-01": 800, - "2002-01-01": 780, - "2001-01-01": 740, - "1999-01-01": 700, - "1990-01-01": 500, - "1980-01-01": 300, - "1979-01-01": 280, - "1978-01-01": 260, - "1977-01-01": 240, - "1976-01-01": 230, - "1975-01-01": 200 - }, - "economy": true, - "household": true - }, - "gov.ssa.sga.blind": { - "type": "parameter", - "parameter": "gov.ssa.sga.blind", - "description": "The Social Security Administration considers blind individuals earning more than this amount, net of impairment-related work expenses, to be engaging in Substantial Gainful Activity.", - "label": "Blind Substantial Gainful Activity limit", - "unit": "currency-USD", - "period": "monthly", - "values": { - "2035-01-01": 3366.4492096273, - "2034-01-01": 3292.01520912548, - "2033-01-01": 3219.30092065392, - "2032-01-01": 3149.14882939916, - "2031-01-01": 3079.84790874525, - "2030-01-01": 3013.11787072243, - "2029-01-01": 2948.09885931559, - "2028-01-01": 2885.65073053985, - "2027-01-01": 2832.7391866592, - "2026-01-01": 2763.30798479087, - "2025-01-01": 2700, - "2015-01-01": 2700 - }, - "economy": true, - "household": true - }, - "gov.ssa.uprating": { - "type": "parameter", - "parameter": "gov.ssa.uprating", - "description": "The US indexes Social Security benefits (OASDI and SSI) according to this schedule, annually updating based on CPI-W in the third quarter of the prior year.", - "label": "SSA uprating", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 387.598, - "2034-01-01": 379.028, - "2033-01-01": 370.656, - "2032-01-01": 362.579, - "2031-01-01": 354.6, - "2030-01-01": 346.917, - "2029-01-01": 339.431, - "2028-01-01": 332.241, - "2027-01-01": 326.149, - "2026-01-01": 318.155, - "2025-01-01": 310.866, - "2024-01-01": 301.236, - "2023-01-01": 291.901, - "2022-01-01": 268.421, - "2015-01-01": 268.421 - }, - "economy": false, - "household": true - }, - "gov.aca": { - "type": "parameterNode", - "parameter": "gov.aca", - "description": null, - "label": "Affordable Care Act", - "economy": true, - "household": true - }, - "gov.aca.family_tier_states": { - "type": "parameterNode", - "parameter": "gov.aca.family_tier_states", - "description": "States that use family tier rating rather than summing individual age-rated premiums", - "label": "Family tier rating states", - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.AL": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.AL", - "description": null, - "label": "AL", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.AK": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.AK", - "description": null, - "label": "AK", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.AZ": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.AZ", - "description": null, - "label": "AZ", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.AR": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.AR", - "description": null, - "label": "AR", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.CA": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.CA", - "description": null, - "label": "CA", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.CO": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.CO", - "description": null, - "label": "CO", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.CT": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.CT", - "description": null, - "label": "CT", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.DE": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.DE", - "description": null, - "label": "DE", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.DC": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.DC", - "description": null, - "label": "DC", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.FL": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.FL", - "description": null, - "label": "FL", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.GA": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.GA", - "description": null, - "label": "GA", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.HI": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.HI", - "description": null, - "label": "HI", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.ID": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.ID", - "description": null, - "label": "ID", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.IL": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.IL", - "description": null, - "label": "IL", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.IN": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.IN", - "description": null, - "label": "IN", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.IA": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.IA", - "description": null, - "label": "IA", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.KS": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.KS", - "description": null, - "label": "KS", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.KY": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.KY", - "description": null, - "label": "KY", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.LA": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.LA", - "description": null, - "label": "LA", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.ME": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.ME", - "description": null, - "label": "ME", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.MD": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.MD", - "description": null, - "label": "MD", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.MA": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.MA", - "description": null, - "label": "MA", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.MI": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.MI", - "description": null, - "label": "MI", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.MN": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.MN", - "description": null, - "label": "MN", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.MS": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.MS", - "description": null, - "label": "MS", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.MO": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.MO", - "description": null, - "label": "MO", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.MT": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.MT", - "description": null, - "label": "MT", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.NE": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.NE", - "description": null, - "label": "NE", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.NV": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.NV", - "description": null, - "label": "NV", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.NH": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.NH", - "description": null, - "label": "NH", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.NJ": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.NJ", - "description": null, - "label": "NJ", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.NM": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.NM", - "description": null, - "label": "NM", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.NY": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.NY", - "description": null, - "label": "NY", - "unit": null, - "period": null, - "values": { - "2018-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.NC": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.NC", - "description": null, - "label": "NC", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.ND": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.ND", - "description": null, - "label": "ND", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.OH": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.OH", - "description": null, - "label": "OH", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.OK": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.OK", - "description": null, - "label": "OK", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.OR": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.OR", - "description": null, - "label": "OR", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.PA": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.PA", - "description": null, - "label": "PA", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.RI": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.RI", - "description": null, - "label": "RI", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.SC": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.SC", - "description": null, - "label": "SC", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.SD": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.SD", - "description": null, - "label": "SD", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.TN": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.TN", - "description": null, - "label": "TN", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.TX": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.TX", - "description": null, - "label": "TX", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.UT": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.UT", - "description": null, - "label": "UT", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.VT": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.VT", - "description": null, - "label": "VT", - "unit": null, - "period": null, - "values": { - "2018-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.VA": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.VA", - "description": null, - "label": "VA", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.WA": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.WA", - "description": null, - "label": "WA", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.WV": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.WV", - "description": null, - "label": "WV", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.WI": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.WI", - "description": null, - "label": "WI", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.WY": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.WY", - "description": null, - "label": "WY", - "unit": null, - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.PW": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.PW", - "description": null, - "label": "PW", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.VI": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.VI", - "description": null, - "label": "VI", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.PR": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.PR", - "description": null, - "label": "PR", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.AP": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.AP", - "description": null, - "label": "AP", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.GU": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.GU", - "description": null, - "label": "GU", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.AE": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.AE", - "description": null, - "label": "AE", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.MP": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.MP", - "description": null, - "label": "MP", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_states.AA": { - "type": "parameter", - "parameter": "gov.aca.family_tier_states.AA", - "description": null, - "label": "AA", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost", - "description": "Second Lowest Cost Silver Plan (SLCSP) premiums by rating area, normalized to age 0 .", - "label": "Second Lowest Cost Silver Plan premiums by rating area", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.AK", - "description": null, - "label": "AK", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 738.259956595752, - "2034-01-01": 723.964222317899, - "2033-01-01": 709.844978586687, - "2032-01-01": 696.078715948755, - "2031-01-01": 682.665434404104, - "2030-01-01": 669.428643406093, - "2029-01-01": 656.368342954721, - "2028-01-01": 643.48453304999, - "2027-01-01": 630.424232598619, - "2026-01-01": 615.26369464223, - "2025-01-01": 606, - "2015-01-01": 606 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 822.319258584377, - "2034-01-01": 806.395792185779, - "2033-01-01": 790.668911792102, - "2032-01-01": 775.335203408267, - "2031-01-01": 760.394667034274, - "2030-01-01": 745.650716665202, - "2029-01-01": 731.103352301051, - "2028-01-01": 716.752573941821, - "2027-01-01": 702.20520957767, - "2026-01-01": 685.31847175496, - "2025-01-01": 675, - "2015-01-01": 675 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 756.533717897627, - "2034-01-01": 741.884128810916, - "2033-01-01": 727.415398848734, - "2032-01-01": 713.308387135606, - "2031-01-01": 699.563093671532, - "2030-01-01": 685.998659331986, - "2029-01-01": 672.615084116967, - "2028-01-01": 659.412368026475, - "2027-01-01": 646.028792811456, - "2026-01-01": 630.492994014563, - "2025-01-01": 621, - "2015-01-01": 621 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AK.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AK.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.AL", - "description": null, - "label": "AL", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 310.653942131876, - "2034-01-01": 304.638410381294, - "2033-01-01": 298.697144454794, - "2032-01-01": 292.904410176456, - "2031-01-01": 287.260207546281, - "2030-01-01": 281.690270740188, - "2029-01-01": 276.194599758175, - "2028-01-01": 270.773194600243, - "2027-01-01": 265.277523618231, - "2026-01-01": 258.898089329651, - "2025-01-01": 255, - "2015-01-01": 255 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 320.399948159542, - "2034-01-01": 314.195693844237, - "2033-01-01": 308.068035261219, - "2032-01-01": 302.093568142777, - "2031-01-01": 296.27229248891, - "2030-01-01": 290.527612567331, - "2029-01-01": 284.859528378039, - "2028-01-01": 279.268039921035, - "2027-01-01": 273.599955731744, - "2026-01-01": 267.020382328229, - "2025-01-01": 263, - "2015-01-01": 263 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 332.582455694126, - "2034-01-01": 326.142298172915, - "2033-01-01": 319.78164876925, - "2032-01-01": 313.580015600677, - "2031-01-01": 307.537398667195, - "2030-01-01": 301.57428985126, - "2029-01-01": 295.69068915287, - "2028-01-01": 289.886596572025, - "2027-01-01": 284.002995873635, - "2026-01-01": 277.17324857645, - "2025-01-01": 273, - "2015-01-01": 273 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 328.927703433751, - "2034-01-01": 322.558316874311, - "2033-01-01": 316.267564716841, - "2032-01-01": 310.134081363307, - "2031-01-01": 304.15786681371, - "2030-01-01": 298.260286666081, - "2029-01-01": 292.44134092042, - "2028-01-01": 286.701029576728, - "2027-01-01": 280.882083831068, - "2026-01-01": 274.127388701984, - "2025-01-01": 270, - "2015-01-01": 270 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 319.181697406084, - "2034-01-01": 313.001033411369, - "2033-01-01": 306.896673910416, - "2032-01-01": 300.944923396987, - "2031-01-01": 295.145781871081, - "2030-01-01": 289.422944838938, - "2029-01-01": 283.776412300556, - "2028-01-01": 278.206184255936, - "2027-01-01": 272.559651717555, - "2026-01-01": 266.005095703407, - "2025-01-01": 262, - "2015-01-01": 262 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 299.689685350751, - "2034-01-01": 293.886466485484, - "2033-01-01": 288.154892297566, - "2032-01-01": 282.566607464346, - "2031-01-01": 277.121611985824, - "2030-01-01": 271.748261184652, - "2029-01-01": 266.446555060828, - "2028-01-01": 261.216493614353, - "2027-01-01": 255.914787490529, - "2026-01-01": 249.760509706252, - "2025-01-01": 246, - "2015-01-01": 246 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 337.455458707959, - "2034-01-01": 330.920939904386, - "2033-01-01": 324.467094172463, - "2032-01-01": 318.174594583837, - "2031-01-01": 312.04344113851, - "2030-01-01": 305.992960764831, - "2029-01-01": 300.023153462802, - "2028-01-01": 294.134019232421, - "2027-01-01": 288.164211930392, - "2026-01-01": 281.234395075739, - "2025-01-01": 277, - "2015-01-01": 277 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 321.618198913001, - "2034-01-01": 315.390354277105, - "2033-01-01": 309.239396612022, - "2032-01-01": 303.242212888567, - "2031-01-01": 297.398803106738, - "2030-01-01": 291.632280295724, - "2029-01-01": 285.942644455522, - "2028-01-01": 280.329895586134, - "2027-01-01": 274.640259745933, - "2026-01-01": 268.035668953051, - "2025-01-01": 264, - "2015-01-01": 264 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 358.165721516751, - "2034-01-01": 351.230167263139, - "2033-01-01": 344.380237136115, - "2032-01-01": 337.701555262267, - "2031-01-01": 331.194121641595, - "2030-01-01": 324.77231214751, - "2029-01-01": 318.436126780013, - "2028-01-01": 312.185565539104, - "2027-01-01": 305.849380171607, - "2026-01-01": 298.494267697716, - "2025-01-01": 294, - "2015-01-01": 294 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 303.344437611126, - "2034-01-01": 297.470447784087, - "2033-01-01": 291.668976349975, - "2032-01-01": 286.012541701716, - "2031-01-01": 280.50114383931, - "2030-01-01": 275.06226436983, - "2029-01-01": 269.695903293277, - "2028-01-01": 264.40206060965, - "2027-01-01": 259.035699533096, - "2026-01-01": 252.806369580718, - "2025-01-01": 249, - "2015-01-01": 249 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 337.455458707959, - "2034-01-01": 330.920939904386, - "2033-01-01": 324.467094172463, - "2032-01-01": 318.174594583837, - "2031-01-01": 312.04344113851, - "2030-01-01": 305.992960764831, - "2029-01-01": 300.023153462802, - "2028-01-01": 294.134019232421, - "2027-01-01": 288.164211930392, - "2026-01-01": 281.234395075739, - "2025-01-01": 277, - "2015-01-01": 277 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 306.999189871501, - "2034-01-01": 301.054429082691, - "2033-01-01": 295.183060402385, - "2032-01-01": 289.458475939086, - "2031-01-01": 283.880675692796, - "2030-01-01": 278.376267555009, - "2029-01-01": 272.945251525726, - "2028-01-01": 267.587627604947, - "2027-01-01": 262.156611575663, - "2026-01-01": 255.852229455185, - "2025-01-01": 252, - "2015-01-01": 252 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 311.872192885334, - "2034-01-01": 305.833070814162, - "2033-01-01": 299.868505805597, - "2032-01-01": 294.053054922247, - "2031-01-01": 288.38671816411, - "2030-01-01": 282.79493846858, - "2029-01-01": 277.277715835658, - "2028-01-01": 271.835050265342, - "2027-01-01": 266.31782763242, - "2026-01-01": 259.913375954474, - "2025-01-01": 256, - "2015-01-01": 256 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AL.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AL.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.AR", - "description": null, - "label": "AR", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 333.800706447584, - "2034-01-01": 327.336958605783, - "2033-01-01": 320.953010120053, - "2032-01-01": 314.728660346467, - "2031-01-01": 308.663909285024, - "2030-01-01": 302.678957579653, - "2029-01-01": 296.773805230353, - "2028-01-01": 290.948452237124, - "2027-01-01": 285.043299887825, - "2026-01-01": 278.188535201273, - "2025-01-01": 274, - "2015-01-01": 274 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 333.800706447584, - "2034-01-01": 327.336958605783, - "2033-01-01": 320.953010120053, - "2032-01-01": 314.728660346467, - "2031-01-01": 308.663909285024, - "2030-01-01": 302.678957579653, - "2029-01-01": 296.773805230353, - "2028-01-01": 290.948452237124, - "2027-01-01": 285.043299887825, - "2026-01-01": 278.188535201273, - "2025-01-01": 274, - "2015-01-01": 274 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 333.800706447584, - "2034-01-01": 327.336958605783, - "2033-01-01": 320.953010120053, - "2032-01-01": 314.728660346467, - "2031-01-01": 308.663909285024, - "2030-01-01": 302.678957579653, - "2029-01-01": 296.773805230353, - "2028-01-01": 290.948452237124, - "2027-01-01": 285.043299887825, - "2026-01-01": 278.188535201273, - "2025-01-01": 274, - "2015-01-01": 274 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 333.800706447584, - "2034-01-01": 327.336958605783, - "2033-01-01": 320.953010120053, - "2032-01-01": 314.728660346467, - "2031-01-01": 308.663909285024, - "2030-01-01": 302.678957579653, - "2029-01-01": 296.773805230353, - "2028-01-01": 290.948452237124, - "2027-01-01": 285.043299887825, - "2026-01-01": 278.188535201273, - "2025-01-01": 274, - "2015-01-01": 274 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 333.800706447584, - "2034-01-01": 327.336958605783, - "2033-01-01": 320.953010120053, - "2032-01-01": 314.728660346467, - "2031-01-01": 308.663909285024, - "2030-01-01": 302.678957579653, - "2029-01-01": 296.773805230353, - "2028-01-01": 290.948452237124, - "2027-01-01": 285.043299887825, - "2026-01-01": 278.188535201273, - "2025-01-01": 274, - "2015-01-01": 274 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 333.800706447584, - "2034-01-01": 327.336958605783, - "2033-01-01": 320.953010120053, - "2032-01-01": 314.728660346467, - "2031-01-01": 308.663909285024, - "2030-01-01": 302.678957579653, - "2029-01-01": 296.773805230353, - "2028-01-01": 290.948452237124, - "2027-01-01": 285.043299887825, - "2026-01-01": 278.188535201273, - "2025-01-01": 274, - "2015-01-01": 274 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 333.800706447584, - "2034-01-01": 327.336958605783, - "2033-01-01": 320.953010120053, - "2032-01-01": 314.728660346467, - "2031-01-01": 308.663909285024, - "2030-01-01": 302.678957579653, - "2029-01-01": 296.773805230353, - "2028-01-01": 290.948452237124, - "2027-01-01": 285.043299887825, - "2026-01-01": 278.188535201273, - "2025-01-01": 274, - "2015-01-01": 274 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AR.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AR.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.AZ", - "description": null, - "label": "AZ", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 449.534528026126, - "2034-01-01": 440.829699728226, - "2033-01-01": 432.232338446349, - "2032-01-01": 423.849911196519, - "2031-01-01": 415.682417978737, - "2030-01-01": 407.622391776977, - "2029-01-01": 399.669832591241, - "2028-01-01": 391.824740421529, - "2027-01-01": 383.872181235793, - "2026-01-01": 374.640764559378, - "2025-01-01": 369, - "2015-01-01": 369 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 495.828056657543, - "2034-01-01": 486.226796177203, - "2033-01-01": 476.744069776867, - "2032-01-01": 467.49841153654, - "2031-01-01": 458.489821456222, - "2030-01-01": 449.599765455907, - "2029-01-01": 440.828243535597, - "2028-01-01": 432.175255695291, - "2027-01-01": 423.40373377498, - "2026-01-01": 413.22165630262, - "2025-01-01": 407, - "2015-01-01": 407 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 450.752778779584, - "2034-01-01": 442.024360161094, - "2033-01-01": 433.403699797152, - "2032-01-01": 424.998555942309, - "2031-01-01": 416.808928596565, - "2030-01-01": 408.72705950537, - "2029-01-01": 400.752948668724, - "2028-01-01": 392.886596086628, - "2027-01-01": 384.912485249982, - "2026-01-01": 375.6560511842, - "2025-01-01": 370, - "2015-01-01": 370 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 270.451667267751, - "2034-01-01": 265.214616096656, - "2033-01-01": 260.042219878291, - "2032-01-01": 254.999133565386, - "2031-01-01": 250.085357157939, - "2030-01-01": 245.236235703222, - "2029-01-01": 240.451769201235, - "2028-01-01": 235.731957651977, - "2027-01-01": 230.947491149989, - "2026-01-01": 225.39363071052, - "2025-01-01": 222, - "2015-01-01": 222 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 277.761171788501, - "2034-01-01": 272.382578693863, - "2033-01-01": 267.07038798311, - "2032-01-01": 261.891002040126, - "2031-01-01": 256.84442086491, - "2030-01-01": 251.864242073579, - "2029-01-01": 246.950465666133, - "2028-01-01": 242.103091642571, - "2027-01-01": 237.189315235124, - "2026-01-01": 231.485350459453, - "2025-01-01": 228, - "2015-01-01": 228 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 266.796915007376, - "2034-01-01": 261.630634798053, - "2033-01-01": 256.528135825882, - "2032-01-01": 251.553199328016, - "2031-01-01": 246.705825304453, - "2030-01-01": 241.922232518043, - "2029-01-01": 237.202420968785, - "2028-01-01": 232.54639065668, - "2027-01-01": 227.826579107422, - "2026-01-01": 222.347770836054, - "2025-01-01": 219, - "2015-01-01": 219 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 358.165721516751, - "2034-01-01": 351.230167263139, - "2033-01-01": 344.380237136115, - "2032-01-01": 337.701555262267, - "2031-01-01": 331.194121641595, - "2030-01-01": 324.77231214751, - "2029-01-01": 318.436126780013, - "2028-01-01": 312.185565539104, - "2027-01-01": 305.849380171607, - "2026-01-01": 298.494267697716, - "2025-01-01": 294, - "2015-01-01": 294 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AZ.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AZ.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.CA", - "description": null, - "label": "CA", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 557.958845083918, - "2034-01-01": 547.154478253462, - "2033-01-01": 536.483498667826, - "2032-01-01": 526.079293571832, - "2031-01-01": 515.941862965478, - "2030-01-01": 505.937819603945, - "2029-01-01": 496.067163487232, - "2028-01-01": 486.329894615339, - "2027-01-01": 476.459238498626, - "2026-01-01": 465.00127416855, - "2025-01-01": 458, - "2015-01-01": 458 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 433.697268231168, - "2034-01-01": 425.299114100944, - "2033-01-01": 417.004640885909, - "2032-01-01": 408.917529501249, - "2031-01-01": 401.037779946965, - "2030-01-01": 393.26171130787, - "2029-01-01": 385.589323583962, - "2028-01-01": 378.020616775242, - "2027-01-01": 370.348229051334, - "2026-01-01": 361.44203843669, - "2025-01-01": 356, - "2015-01-01": 356 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 437.352020491543, - "2034-01-01": 428.883095399547, - "2033-01-01": 420.518724938318, - "2032-01-01": 412.363463738619, - "2031-01-01": 404.417311800451, - "2030-01-01": 396.575714493048, - "2029-01-01": 388.838671816411, - "2028-01-01": 381.206183770539, - "2027-01-01": 373.469141093902, - "2026-01-01": 364.487898311156, - "2025-01-01": 359, - "2015-01-01": 359 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 486.082050629876, - "2034-01-01": 476.66951271426, - "2033-01-01": 467.373178970442, - "2032-01-01": 458.30925357022, - "2031-01-01": 449.477736513593, - "2030-01-01": 440.762423628764, - "2029-01-01": 432.163314915732, - "2028-01-01": 423.680410374499, - "2027-01-01": 415.081301661467, - "2026-01-01": 405.099363304043, - "2025-01-01": 399, - "2015-01-01": 399 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 511.665316452501, - "2034-01-01": 501.757381804485, - "2033-01-01": 491.971767337308, - "2032-01-01": 482.430793231811, - "2031-01-01": 473.134459487993, - "2030-01-01": 463.960445925015, - "2029-01-01": 454.908752542876, - "2028-01-01": 445.979379341577, - "2027-01-01": 436.927685959439, - "2026-01-01": 426.420382425308, - "2025-01-01": 420, - "2015-01-01": 420 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 467.808289328001, - "2034-01-01": 458.749606221243, - "2033-01-01": 449.802758708396, - "2032-01-01": 441.07958238337, - "2031-01-01": 432.580077246165, - "2030-01-01": 424.192407702871, - "2029-01-01": 415.916573753487, - "2028-01-01": 407.752575398014, - "2027-01-01": 399.47674144863, - "2026-01-01": 389.87006393171, - "2025-01-01": 384, - "2015-01-01": 384 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 416.641757682751, - "2034-01-01": 408.573868040795, - "2033-01-01": 400.605581974665, - "2032-01-01": 392.836503060189, - "2031-01-01": 385.266631297366, - "2030-01-01": 377.796363110369, - "2029-01-01": 370.425698499199, - "2028-01-01": 363.154637463856, - "2027-01-01": 355.783972852686, - "2026-01-01": 347.22802568918, - "2025-01-01": 342, - "2015-01-01": 342 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 526.284325494001, - "2034-01-01": 516.093306998898, - "2033-01-01": 506.028103546945, - "2032-01-01": 496.214530181291, - "2031-01-01": 486.652586901936, - "2030-01-01": 477.21645866573, - "2029-01-01": 467.906145472673, - "2028-01-01": 458.721647322765, - "2027-01-01": 449.411334129709, - "2026-01-01": 438.603821923174, - "2025-01-01": 432, - "2015-01-01": 432 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 542.121585288959, - "2034-01-01": 531.62389262618, - "2033-01-01": 521.255801107386, - "2032-01-01": 511.146911876561, - "2031-01-01": 501.297224933707, - "2030-01-01": 491.577139134837, - "2029-01-01": 481.986654479952, - "2028-01-01": 472.525770969052, - "2027-01-01": 462.935286314168, - "2026-01-01": 451.802548045862, - "2025-01-01": 445, - "2015-01-01": 445 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 397.149745627418, - "2034-01-01": 389.459301114909, - "2033-01-01": 381.863800361815, - "2032-01-01": 374.458187127548, - "2031-01-01": 367.242461412109, - "2030-01-01": 360.121679456083, - "2029-01-01": 353.095841259471, - "2028-01-01": 346.164946822272, - "2027-01-01": 339.13910862566, - "2026-01-01": 330.983439692025, - "2025-01-01": 326, - "2015-01-01": 326 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 359.383972270209, - "2034-01-01": 352.424827696007, - "2033-01-01": 345.551598486919, - "2032-01-01": 338.850200008057, - "2031-01-01": 332.320632259424, - "2030-01-01": 325.876979875903, - "2029-01-01": 319.519242857496, - "2028-01-01": 313.247421204203, - "2027-01-01": 306.889684185797, - "2026-01-01": 299.509554322538, - "2025-01-01": 295, - "2015-01-01": 295 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 422.733011450043, - "2034-01-01": 414.547170205134, - "2033-01-01": 406.462388728681, - "2032-01-01": 398.579726789139, - "2031-01-01": 390.899184386508, - "2030-01-01": 383.319701752334, - "2029-01-01": 375.841278886614, - "2028-01-01": 368.463915789351, - "2027-01-01": 360.985492923632, - "2026-01-01": 352.30445881329, - "2025-01-01": 347, - "2015-01-01": 347 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 359.383972270209, - "2034-01-01": 352.424827696007, - "2033-01-01": 345.551598486919, - "2032-01-01": 338.850200008057, - "2031-01-01": 332.320632259424, - "2030-01-01": 325.876979875903, - "2029-01-01": 319.519242857496, - "2028-01-01": 313.247421204203, - "2027-01-01": 306.889684185797, - "2026-01-01": 299.509554322538, - "2025-01-01": 295, - "2015-01-01": 295 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 353.292718502917, - "2034-01-01": 346.451525531668, - "2033-01-01": 339.694791732903, - "2032-01-01": 333.106976279107, - "2031-01-01": 326.688079170281, - "2030-01-01": 320.353641233939, - "2029-01-01": 314.103662470081, - "2028-01-01": 307.938142878708, - "2027-01-01": 301.688164114851, - "2026-01-01": 294.433121198427, - "2025-01-01": 290, - "2015-01-01": 290 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 297.253183843834, - "2034-01-01": 291.497145619748, - "2033-01-01": 285.81216959596, - "2032-01-01": 280.269317972766, - "2031-01-01": 274.868590750167, - "2030-01-01": 269.538925727866, - "2029-01-01": 264.280322905861, - "2028-01-01": 259.092782284155, - "2027-01-01": 253.83417946215, - "2026-01-01": 247.729936456608, - "2025-01-01": 244, - "2015-01-01": 244 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 298.471434597292, - "2034-01-01": 292.691806052616, - "2033-01-01": 286.983530946763, - "2032-01-01": 281.417962718556, - "2031-01-01": 275.995101367996, - "2030-01-01": 270.643593456259, - "2029-01-01": 265.363438983344, - "2028-01-01": 260.154637949254, - "2027-01-01": 254.874483476339, - "2026-01-01": 248.74522308143, - "2025-01-01": 245, - "2015-01-01": 245 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 300.907936104209, - "2034-01-01": 295.081126918352, - "2033-01-01": 289.326253648369, - "2032-01-01": 283.715252210136, - "2031-01-01": 278.248122603653, - "2030-01-01": 272.852928913044, - "2029-01-01": 267.529671138311, - "2028-01-01": 262.278349279452, - "2027-01-01": 256.955091504718, - "2026-01-01": 250.775796331074, - "2025-01-01": 247, - "2015-01-01": 247 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 345.983213982167, - "2034-01-01": 339.283562934461, - "2033-01-01": 332.666623628084, - "2032-01-01": 326.215107804367, - "2031-01-01": 319.929015463309, - "2030-01-01": 313.725634863581, - "2029-01-01": 307.604966005183, - "2028-01-01": 301.567008888114, - "2027-01-01": 295.446340029716, - "2026-01-01": 288.341401449494, - "2025-01-01": 284, - "2015-01-01": 284 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 320.399948159542, - "2034-01-01": 314.195693844237, - "2033-01-01": 308.068035261219, - "2032-01-01": 302.093568142777, - "2031-01-01": 296.27229248891, - "2030-01-01": 290.527612567331, - "2029-01-01": 284.859528378039, - "2028-01-01": 279.268039921035, - "2027-01-01": 273.599955731744, - "2026-01-01": 267.020382328229, - "2025-01-01": 263, - "2015-01-01": 263 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CA.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CA.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.CO", - "description": null, - "label": "CO", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 298.471434597292, - "2034-01-01": 292.691806052616, - "2033-01-01": 286.983530946763, - "2032-01-01": 281.417962718556, - "2031-01-01": 275.995101367996, - "2030-01-01": 270.643593456259, - "2029-01-01": 265.363438983344, - "2028-01-01": 260.154637949254, - "2027-01-01": 254.874483476339, - "2026-01-01": 248.74522308143, - "2025-01-01": 245, - "2015-01-01": 245 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 331.364204940667, - "2034-01-01": 324.947637740047, - "2033-01-01": 318.610287418447, - "2032-01-01": 312.431370854887, - "2031-01-01": 306.410888049367, - "2030-01-01": 300.469622122867, - "2029-01-01": 294.607573075387, - "2028-01-01": 288.824740906926, - "2027-01-01": 282.962691859446, - "2026-01-01": 276.157961951628, - "2025-01-01": 272, - "2015-01-01": 272 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 319.181697406084, - "2034-01-01": 313.001033411369, - "2033-01-01": 306.896673910416, - "2032-01-01": 300.944923396987, - "2031-01-01": 295.145781871081, - "2030-01-01": 289.422944838938, - "2029-01-01": 283.776412300556, - "2028-01-01": 278.206184255936, - "2027-01-01": 272.559651717555, - "2026-01-01": 266.005095703407, - "2025-01-01": 262, - "2015-01-01": 262 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 328.927703433751, - "2034-01-01": 322.558316874311, - "2033-01-01": 316.267564716841, - "2032-01-01": 310.134081363307, - "2031-01-01": 304.15786681371, - "2030-01-01": 298.260286666081, - "2029-01-01": 292.44134092042, - "2028-01-01": 286.701029576728, - "2027-01-01": 280.882083831068, - "2026-01-01": 274.127388701984, - "2025-01-01": 270, - "2015-01-01": 270 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 330.145954187209, - "2034-01-01": 323.752977307179, - "2033-01-01": 317.438926067644, - "2032-01-01": 311.282726109097, - "2031-01-01": 305.284377431538, - "2030-01-01": 299.364954394474, - "2029-01-01": 293.524456997904, - "2028-01-01": 287.762885241827, - "2027-01-01": 281.922387845257, - "2026-01-01": 275.142675326806, - "2025-01-01": 271, - "2015-01-01": 271 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 328.927703433751, - "2034-01-01": 322.558316874311, - "2033-01-01": 316.267564716841, - "2032-01-01": 310.134081363307, - "2031-01-01": 304.15786681371, - "2030-01-01": 298.260286666081, - "2029-01-01": 292.44134092042, - "2028-01-01": 286.701029576728, - "2027-01-01": 280.882083831068, - "2026-01-01": 274.127388701984, - "2025-01-01": 270, - "2015-01-01": 270 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 328.927703433751, - "2034-01-01": 322.558316874311, - "2033-01-01": 316.267564716841, - "2032-01-01": 310.134081363307, - "2031-01-01": 304.15786681371, - "2030-01-01": 298.260286666081, - "2029-01-01": 292.44134092042, - "2028-01-01": 286.701029576728, - "2027-01-01": 280.882083831068, - "2026-01-01": 274.127388701984, - "2025-01-01": 270, - "2015-01-01": 270 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 394.713244120501, - "2034-01-01": 387.069980249174, - "2033-01-01": 379.521077660209, - "2032-01-01": 372.160897635968, - "2031-01-01": 364.989440176452, - "2030-01-01": 357.912343999297, - "2029-01-01": 350.929609104505, - "2028-01-01": 344.041235492074, - "2027-01-01": 337.058500597282, - "2026-01-01": 328.952866442381, - "2025-01-01": 324, - "2015-01-01": 324 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 378.875984325542, - "2034-01-01": 371.539394621892, - "2033-01-01": 364.293380099768, - "2032-01-01": 357.228515940698, - "2031-01-01": 350.34480214468, - "2030-01-01": 343.55166353019, - "2029-01-01": 336.849100097225, - "2028-01-01": 330.237111845787, - "2027-01-01": 323.534548412823, - "2026-01-01": 315.754140319693, - "2025-01-01": 311, - "2015-01-01": 311 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CO.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CO.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.CT", - "description": null, - "label": "CT", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 540.903334535501, - "2034-01-01": 530.429232193312, - "2033-01-01": 520.084439756583, - "2032-01-01": 509.998267130771, - "2031-01-01": 500.170714315878, - "2030-01-01": 490.472471406444, - "2029-01-01": 480.903538402469, - "2028-01-01": 471.463915303953, - "2027-01-01": 461.894982299978, - "2026-01-01": 450.78726142104, - "2025-01-01": 444, - "2015-01-01": 444 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 462.935286314168, - "2034-01-01": 453.970964489772, - "2033-01-01": 445.117313305183, - "2032-01-01": 436.48500340021, - "2031-01-01": 428.074034774851, - "2030-01-01": 419.773736789299, - "2029-01-01": 411.584109443555, - "2028-01-01": 403.505152737618, - "2027-01-01": 395.315525391873, - "2026-01-01": 385.808917432422, - "2025-01-01": 380, - "2015-01-01": 380 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 500.701059671376, - "2034-01-01": 491.005437908674, - "2033-01-01": 481.42951518008, - "2032-01-01": 472.0929905197, - "2031-01-01": 462.995863927536, - "2030-01-01": 454.018436369479, - "2029-01-01": 445.160707845529, - "2028-01-01": 436.422678355686, - "2027-01-01": 427.564949831737, - "2026-01-01": 417.282802801909, - "2025-01-01": 411, - "2015-01-01": 411 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 499.482808917918, - "2034-01-01": 489.810777475806, - "2033-01-01": 480.258153829277, - "2032-01-01": 470.94434577391, - "2031-01-01": 461.869353309707, - "2030-01-01": 452.913768641086, - "2029-01-01": 444.077591768046, - "2028-01-01": 435.360822690588, - "2027-01-01": 426.524645817548, - "2026-01-01": 416.267516177087, - "2025-01-01": 410, - "2015-01-01": 410 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 499.482808917918, - "2034-01-01": 489.810777475806, - "2033-01-01": 480.258153829277, - "2032-01-01": 470.94434577391, - "2031-01-01": 461.869353309707, - "2030-01-01": 452.913768641086, - "2029-01-01": 444.077591768046, - "2028-01-01": 435.360822690588, - "2027-01-01": 426.524645817548, - "2026-01-01": 416.267516177087, - "2025-01-01": 410, - "2015-01-01": 410 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 500.701059671376, - "2034-01-01": 491.005437908674, - "2033-01-01": 481.42951518008, - "2032-01-01": 472.0929905197, - "2031-01-01": 462.995863927536, - "2030-01-01": 454.018436369479, - "2029-01-01": 445.160707845529, - "2028-01-01": 436.422678355686, - "2027-01-01": 427.564949831737, - "2026-01-01": 417.282802801909, - "2025-01-01": 411, - "2015-01-01": 411 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 500.701059671376, - "2034-01-01": 491.005437908674, - "2033-01-01": 481.42951518008, - "2032-01-01": 472.0929905197, - "2031-01-01": 462.995863927536, - "2030-01-01": 454.018436369479, - "2029-01-01": 445.160707845529, - "2028-01-01": 436.422678355686, - "2027-01-01": 427.564949831737, - "2026-01-01": 417.282802801909, - "2025-01-01": 411, - "2015-01-01": 411 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 500.701059671376, - "2034-01-01": 491.005437908674, - "2033-01-01": 481.42951518008, - "2032-01-01": 472.0929905197, - "2031-01-01": 462.995863927536, - "2030-01-01": 454.018436369479, - "2029-01-01": 445.160707845529, - "2028-01-01": 436.422678355686, - "2027-01-01": 427.564949831737, - "2026-01-01": 417.282802801909, - "2025-01-01": 411, - "2015-01-01": 411 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.CT.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.CT.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.DC", - "description": null, - "label": "DC", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 472.681292341834, - "2034-01-01": 463.528247952714, - "2033-01-01": 454.488204111608, - "2032-01-01": 445.67416136653, - "2031-01-01": 437.086119717479, - "2030-01-01": 428.611078616442, - "2029-01-01": 420.249038063419, - "2028-01-01": 411.99999805841, - "2027-01-01": 403.637957505387, - "2026-01-01": 393.931210430999, - "2025-01-01": 388, - "2015-01-01": 388 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DC.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DC.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.DE", - "description": null, - "label": "DE", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 388.621990353209, - "2034-01-01": 381.096678084835, - "2033-01-01": 373.664270906193, - "2032-01-01": 366.417673907018, - "2031-01-01": 359.356887087309, - "2030-01-01": 352.389005357333, - "2029-01-01": 345.514028717089, - "2028-01-01": 338.731957166579, - "2027-01-01": 331.856980526336, - "2026-01-01": 323.87643331827, - "2025-01-01": 319, - "2015-01-01": 319 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.DE.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.DE.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.FL", - "description": null, - "label": "FL", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 411.768754668918, - "2034-01-01": 403.795226309323, - "2033-01-01": 395.920136571453, - "2032-01-01": 388.241924077029, - "2031-01-01": 380.760588826051, - "2030-01-01": 373.377692196798, - "2029-01-01": 366.093234189267, - "2028-01-01": 358.90721480346, - "2027-01-01": 351.62275679593, - "2026-01-01": 343.166879189891, - "2025-01-01": 338, - "2015-01-01": 338 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 410.550503915459, - "2034-01-01": 402.600565876455, - "2033-01-01": 394.748775220649, - "2032-01-01": 387.093279331239, - "2031-01-01": 379.634078208223, - "2030-01-01": 372.273024468405, - "2029-01-01": 365.010118111784, - "2028-01-01": 357.845359138361, - "2027-01-01": 350.58245278174, - "2026-01-01": 342.151592565069, - "2025-01-01": 337, - "2015-01-01": 337 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 370.348229051334, - "2034-01-01": 363.176771591817, - "2033-01-01": 356.093850644147, - "2032-01-01": 349.188002720168, - "2031-01-01": 342.459227819881, - "2030-01-01": 335.818989431439, - "2029-01-01": 329.267287554844, - "2028-01-01": 322.804122190094, - "2027-01-01": 316.252420313499, - "2026-01-01": 308.647133945937, - "2025-01-01": 304, - "2015-01-01": 304 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 405.677500901626, - "2034-01-01": 397.821924144984, - "2033-01-01": 390.063329817437, - "2032-01-01": 382.498700348078, - "2031-01-01": 375.128035736909, - "2030-01-01": 367.854353554833, - "2029-01-01": 360.677653801852, - "2028-01-01": 353.597936477965, - "2027-01-01": 346.421236724984, - "2026-01-01": 338.09044606578, - "2025-01-01": 333, - "2015-01-01": 333 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 338.673709461417, - "2034-01-01": 332.115600337254, - "2033-01-01": 325.638455523266, - "2032-01-01": 319.323239329627, - "2031-01-01": 313.169951756338, - "2030-01-01": 307.097628493224, - "2029-01-01": 301.106269540285, - "2028-01-01": 295.19587489752, - "2027-01-01": 289.204515944581, - "2026-01-01": 282.249681700561, - "2025-01-01": 278, - "2015-01-01": 278 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 361.820473777126, - "2034-01-01": 354.814148561743, - "2033-01-01": 347.894321188525, - "2032-01-01": 341.147489499638, - "2031-01-01": 334.573653495081, - "2030-01-01": 328.086315332689, - "2029-01-01": 321.685475012462, - "2028-01-01": 315.371132534401, - "2027-01-01": 308.970292214175, - "2026-01-01": 301.540127572182, - "2025-01-01": 297, - "2015-01-01": 297 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 350.856216996001, - "2034-01-01": 344.062204665932, - "2033-01-01": 337.352069031297, - "2032-01-01": 330.809686787527, - "2031-01-01": 324.435057934624, - "2030-01-01": 318.144305777153, - "2029-01-01": 311.937430315115, - "2028-01-01": 305.81443154851, - "2027-01-01": 299.607556086473, - "2026-01-01": 292.402547948783, - "2025-01-01": 288, - "2015-01-01": 288 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 389.840241106667, - "2034-01-01": 382.291338517703, - "2033-01-01": 374.835632256996, - "2032-01-01": 367.566318652808, - "2031-01-01": 360.483397705137, - "2030-01-01": 353.493673085726, - "2029-01-01": 346.597144794572, - "2028-01-01": 339.793812831678, - "2027-01-01": 332.897284540525, - "2026-01-01": 324.891719943092, - "2025-01-01": 320, - "2015-01-01": 320 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 381.312485832459, - "2034-01-01": 373.928715487628, - "2033-01-01": 366.636102801375, - "2032-01-01": 359.525805432278, - "2031-01-01": 352.597823380338, - "2030-01-01": 345.760998986975, - "2029-01-01": 339.015332252191, - "2028-01-01": 332.360823175985, - "2027-01-01": 325.615156441201, - "2026-01-01": 317.784713569337, - "2025-01-01": 313, - "2015-01-01": 313 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 376.439482818626, - "2034-01-01": 369.150073756157, - "2033-01-01": 361.950657398162, - "2032-01-01": 354.931226449118, - "2031-01-01": 348.091780909023, - "2030-01-01": 341.342328073404, - "2029-01-01": 334.682867942259, - "2028-01-01": 328.113400515589, - "2027-01-01": 321.453940384445, - "2026-01-01": 313.723567070048, - "2025-01-01": 309, - "2015-01-01": 309 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 404.459250148168, - "2034-01-01": 396.627263712116, - "2033-01-01": 388.891968466634, - "2032-01-01": 381.350055602288, - "2031-01-01": 374.00152511908, - "2030-01-01": 366.74968582644, - "2029-01-01": 359.594537724369, - "2028-01-01": 352.536080812866, - "2027-01-01": 345.380932710795, - "2026-01-01": 337.075159440958, - "2025-01-01": 332, - "2015-01-01": 332 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 442.225023505376, - "2034-01-01": 433.661737131019, - "2033-01-01": 425.20417034153, - "2032-01-01": 416.958042721779, - "2031-01-01": 408.923354271765, - "2030-01-01": 400.99438540662, - "2029-01-01": 393.171136126343, - "2028-01-01": 385.453606430935, - "2027-01-01": 377.630357150658, - "2026-01-01": 368.549044810445, - "2025-01-01": 363, - "2015-01-01": 363 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 380.094235079001, - "2034-01-01": 372.73405505476, - "2033-01-01": 365.464741450572, - "2032-01-01": 358.377160686488, - "2031-01-01": 351.471312762509, - "2030-01-01": 344.656331258582, - "2029-01-01": 337.932216174708, - "2028-01-01": 331.298967510886, - "2027-01-01": 324.574852427012, - "2026-01-01": 316.769426944515, - "2025-01-01": 312, - "2015-01-01": 312 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 447.098026519209, - "2034-01-01": 438.44037886249, - "2033-01-01": 429.889615744743, - "2032-01-01": 421.552621704939, - "2031-01-01": 413.429396743079, - "2030-01-01": 405.413056320191, - "2029-01-01": 397.503600436275, - "2028-01-01": 389.701029091331, - "2027-01-01": 381.791573207415, - "2026-01-01": 372.610191309734, - "2025-01-01": 367, - "2015-01-01": 367 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 345.983213982167, - "2034-01-01": 339.283562934461, - "2033-01-01": 332.666623628084, - "2032-01-01": 326.215107804367, - "2031-01-01": 319.929015463309, - "2030-01-01": 313.725634863581, - "2029-01-01": 307.604966005183, - "2028-01-01": 301.567008888114, - "2027-01-01": 295.446340029716, - "2026-01-01": 288.341401449494, - "2025-01-01": 284, - "2015-01-01": 284 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 375.221232065167, - "2034-01-01": 367.955413323289, - "2033-01-01": 360.779296047359, - "2032-01-01": 353.782581703328, - "2031-01-01": 346.965270291195, - "2030-01-01": 340.237660345011, - "2029-01-01": 333.599751864776, - "2028-01-01": 327.05154485049, - "2027-01-01": 320.413636370255, - "2026-01-01": 312.708280445226, - "2025-01-01": 308, - "2015-01-01": 308 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 389.840241106667, - "2034-01-01": 382.291338517703, - "2033-01-01": 374.835632256996, - "2032-01-01": 367.566318652808, - "2031-01-01": 360.483397705137, - "2030-01-01": 353.493673085726, - "2029-01-01": 346.597144794572, - "2028-01-01": 339.793812831678, - "2027-01-01": 332.897284540525, - "2026-01-01": 324.891719943092, - "2025-01-01": 320, - "2015-01-01": 320 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 360.602223023667, - "2034-01-01": 353.619488128875, - "2033-01-01": 346.722959837722, - "2032-01-01": 339.998844753848, - "2031-01-01": 333.447142877252, - "2030-01-01": 326.981647604296, - "2029-01-01": 320.602358934979, - "2028-01-01": 314.309276869302, - "2027-01-01": 307.929988199986, - "2026-01-01": 300.52484094736, - "2025-01-01": 296, - "2015-01-01": 296 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 388.621990353209, - "2034-01-01": 381.096678084835, - "2033-01-01": 373.664270906193, - "2032-01-01": 366.417673907018, - "2031-01-01": 359.356887087309, - "2030-01-01": 352.389005357333, - "2029-01-01": 345.514028717089, - "2028-01-01": 338.731957166579, - "2027-01-01": 331.856980526336, - "2026-01-01": 323.87643331827, - "2025-01-01": 319, - "2015-01-01": 319 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 428.824265217334, - "2034-01-01": 420.520472369473, - "2033-01-01": 412.319195482696, - "2032-01-01": 404.322950518089, - "2031-01-01": 396.531737475651, - "2030-01-01": 388.843040394298, - "2029-01-01": 381.25685927403, - "2028-01-01": 373.773194114846, - "2027-01-01": 366.187012994578, - "2026-01-01": 357.380891937401, - "2025-01-01": 352, - "2015-01-01": 352 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 542.121585288959, - "2034-01-01": 531.62389262618, - "2033-01-01": 521.255801107386, - "2032-01-01": 511.146911876561, - "2031-01-01": 501.297224933707, - "2030-01-01": 491.577139134837, - "2029-01-01": 481.986654479952, - "2028-01-01": 472.525770969052, - "2027-01-01": 462.935286314168, - "2026-01-01": 451.802548045862, - "2025-01-01": 445, - "2015-01-01": 445 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 640.799896319085, - "2034-01-01": 628.391387688474, - "2033-01-01": 616.136070522438, - "2032-01-01": 604.187136285553, - "2031-01-01": 592.54458497782, - "2030-01-01": 581.055225134661, - "2029-01-01": 569.719056756078, - "2028-01-01": 558.536079842071, - "2027-01-01": 547.199911463488, - "2026-01-01": 534.040764656457, - "2025-01-01": 526, - "2015-01-01": 526 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 548.212839056251, - "2034-01-01": 537.597194790519, - "2033-01-01": 527.112607861401, - "2032-01-01": 516.890135605511, - "2031-01-01": 506.92977802285, - "2030-01-01": 497.100477776802, - "2029-01-01": 487.402234867367, - "2028-01-01": 477.835049294547, - "2027-01-01": 468.136806385113, - "2026-01-01": 456.878981169973, - "2025-01-01": 450, - "2015-01-01": 450 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 434.915518984626, - "2034-01-01": 426.493774533812, - "2033-01-01": 418.176002236712, - "2032-01-01": 410.066174247039, - "2031-01-01": 402.164290564794, - "2030-01-01": 394.366379036263, - "2029-01-01": 386.672439661445, - "2028-01-01": 379.082472440341, - "2027-01-01": 371.388533065523, - "2026-01-01": 362.457325061512, - "2025-01-01": 357, - "2015-01-01": 357 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 370.348229051334, - "2034-01-01": 363.176771591817, - "2033-01-01": 356.093850644147, - "2032-01-01": 349.188002720168, - "2031-01-01": 342.459227819881, - "2030-01-01": 335.818989431439, - "2029-01-01": 329.267287554844, - "2028-01-01": 322.804122190094, - "2027-01-01": 316.252420313499, - "2026-01-01": 308.647133945937, - "2025-01-01": 304, - "2015-01-01": 304 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 378.875984325542, - "2034-01-01": 371.539394621892, - "2033-01-01": 364.293380099768, - "2032-01-01": 357.228515940698, - "2031-01-01": 350.34480214468, - "2030-01-01": 343.55166353019, - "2029-01-01": 336.849100097225, - "2028-01-01": 330.237111845787, - "2027-01-01": 323.534548412823, - "2026-01-01": 315.754140319693, - "2025-01-01": 311, - "2015-01-01": 311 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 356.947470763292, - "2034-01-01": 350.035506830271, - "2033-01-01": 343.208875785312, - "2032-01-01": 336.552910516477, - "2031-01-01": 330.067611023766, - "2030-01-01": 323.667644419117, - "2029-01-01": 317.35301070253, - "2028-01-01": 311.123709874005, - "2027-01-01": 304.809076157418, - "2026-01-01": 297.478981072894, - "2025-01-01": 293, - "2015-01-01": 293 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 361.820473777126, - "2034-01-01": 354.814148561743, - "2033-01-01": 347.894321188525, - "2032-01-01": 341.147489499638, - "2031-01-01": 334.573653495081, - "2030-01-01": 328.086315332689, - "2029-01-01": 321.685475012462, - "2028-01-01": 315.371132534401, - "2027-01-01": 308.970292214175, - "2026-01-01": 301.540127572182, - "2025-01-01": 297, - "2015-01-01": 297 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 355.729220009834, - "2034-01-01": 348.840846397404, - "2033-01-01": 342.037514434509, - "2032-01-01": 335.404265770687, - "2031-01-01": 328.941100405938, - "2030-01-01": 322.562976690725, - "2029-01-01": 316.269894625047, - "2028-01-01": 310.061854208906, - "2027-01-01": 303.768772143229, - "2026-01-01": 296.463694448071, - "2025-01-01": 292, - "2015-01-01": 292 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 432.479017477709, - "2034-01-01": 424.104453668076, - "2033-01-01": 415.833279535105, - "2032-01-01": 407.768884755459, - "2031-01-01": 399.911269329137, - "2030-01-01": 392.157043579477, - "2029-01-01": 384.506207506479, - "2028-01-01": 376.958761110143, - "2027-01-01": 369.307925037145, - "2026-01-01": 360.426751811868, - "2025-01-01": 355, - "2015-01-01": 355 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 331.364204940667, - "2034-01-01": 324.947637740047, - "2033-01-01": 318.610287418447, - "2032-01-01": 312.431370854887, - "2031-01-01": 306.410888049367, - "2030-01-01": 300.469622122867, - "2029-01-01": 294.607573075387, - "2028-01-01": 288.824740906926, - "2027-01-01": 282.962691859446, - "2026-01-01": 276.157961951628, - "2025-01-01": 272, - "2015-01-01": 272 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 520.193071726709, - "2034-01-01": 510.120004834559, - "2033-01-01": 500.17129679293, - "2032-01-01": 490.471306452341, - "2031-01-01": 481.020033812793, - "2030-01-01": 471.693120023765, - "2029-01-01": 462.490565085258, - "2028-01-01": 453.41236899727, - "2027-01-01": 444.209814058763, - "2026-01-01": 433.527388799063, - "2025-01-01": 427, - "2015-01-01": 427 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 371.566479804792, - "2034-01-01": 364.371432024685, - "2033-01-01": 357.26521199495, - "2032-01-01": 350.336647465958, - "2031-01-01": 343.585738437709, - "2030-01-01": 336.923657159832, - "2029-01-01": 330.350403632327, - "2028-01-01": 323.865977855193, - "2027-01-01": 317.292724327688, - "2026-01-01": 309.66242057076, - "2025-01-01": 305, - "2015-01-01": 305 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 406.895751655084, - "2034-01-01": 399.016584577852, - "2033-01-01": 391.23469116824, - "2032-01-01": 383.647345093868, - "2031-01-01": 376.254546354737, - "2030-01-01": 368.959021283226, - "2029-01-01": 361.760769879335, - "2028-01-01": 354.659792143064, - "2027-01-01": 347.461540739173, - "2026-01-01": 339.105732690602, - "2025-01-01": 334, - "2015-01-01": 334 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 332.582455694126, - "2034-01-01": 326.142298172915, - "2033-01-01": 319.78164876925, - "2032-01-01": 313.580015600677, - "2031-01-01": 307.537398667195, - "2030-01-01": 301.57428985126, - "2029-01-01": 295.69068915287, - "2028-01-01": 289.886596572025, - "2027-01-01": 284.002995873635, - "2026-01-01": 277.17324857645, - "2025-01-01": 273, - "2015-01-01": 273 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 422.733011450043, - "2034-01-01": 414.547170205134, - "2033-01-01": 406.462388728681, - "2032-01-01": 398.579726789139, - "2031-01-01": 390.899184386508, - "2030-01-01": 383.319701752334, - "2029-01-01": 375.841278886614, - "2028-01-01": 368.463915789351, - "2027-01-01": 360.985492923632, - "2026-01-01": 352.30445881329, - "2025-01-01": 347, - "2015-01-01": 347 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 352.074467749459, - "2034-01-01": 345.2568650988, - "2033-01-01": 338.5234303821, - "2032-01-01": 331.958331533317, - "2031-01-01": 325.561568552452, - "2030-01-01": 319.248973505546, - "2029-01-01": 313.020546392598, - "2028-01-01": 306.876287213609, - "2027-01-01": 300.647860100662, - "2026-01-01": 293.417834573605, - "2025-01-01": 289, - "2015-01-01": 289 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 343.546712475251, - "2034-01-01": 336.894242068725, - "2033-01-01": 330.323900926478, - "2032-01-01": 323.917818312787, - "2031-01-01": 317.675994227652, - "2030-01-01": 311.516299406796, - "2029-01-01": 305.438733850217, - "2028-01-01": 299.443297557916, - "2027-01-01": 293.365732001338, - "2026-01-01": 286.31082819985, - "2025-01-01": 282, - "2015-01-01": 282 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 371.566479804792, - "2034-01-01": 364.371432024685, - "2033-01-01": 357.26521199495, - "2032-01-01": 350.336647465958, - "2031-01-01": 343.585738437709, - "2030-01-01": 336.923657159832, - "2029-01-01": 330.350403632327, - "2028-01-01": 323.865977855193, - "2027-01-01": 317.292724327688, - "2026-01-01": 309.66242057076, - "2025-01-01": 305, - "2015-01-01": 305 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 356.947470763292, - "2034-01-01": 350.035506830271, - "2033-01-01": 343.208875785312, - "2032-01-01": 336.552910516477, - "2031-01-01": 330.067611023766, - "2030-01-01": 323.667644419117, - "2029-01-01": 317.35301070253, - "2028-01-01": 311.123709874005, - "2027-01-01": 304.809076157418, - "2026-01-01": 297.478981072894, - "2025-01-01": 293, - "2015-01-01": 293 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 404.459250148168, - "2034-01-01": 396.627263712116, - "2033-01-01": 388.891968466634, - "2032-01-01": 381.350055602288, - "2031-01-01": 374.00152511908, - "2030-01-01": 366.74968582644, - "2029-01-01": 359.594537724369, - "2028-01-01": 352.536080812866, - "2027-01-01": 345.380932710795, - "2026-01-01": 337.075159440958, - "2025-01-01": 332, - "2015-01-01": 332 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 375.221232065167, - "2034-01-01": 367.955413323289, - "2033-01-01": 360.779296047359, - "2032-01-01": 353.782581703328, - "2031-01-01": 346.965270291195, - "2030-01-01": 340.237660345011, - "2029-01-01": 333.599751864776, - "2028-01-01": 327.05154485049, - "2027-01-01": 320.413636370255, - "2026-01-01": 312.708280445226, - "2025-01-01": 308, - "2015-01-01": 308 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 661.510159127876, - "2034-01-01": 648.700615047226, - "2033-01-01": 636.049213486091, - "2032-01-01": 623.714096963984, - "2031-01-01": 611.695265480905, - "2030-01-01": 599.834576517341, - "2029-01-01": 588.13203007329, - "2028-01-01": 576.587626148754, - "2027-01-01": 564.885079704703, - "2026-01-01": 551.300637278434, - "2025-01-01": 543, - "2015-01-01": 543 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 438.570271245001, - "2034-01-01": 430.077755832415, - "2033-01-01": 421.690086289121, - "2032-01-01": 413.512108484409, - "2031-01-01": 405.54382241828, - "2030-01-01": 397.680382221441, - "2029-01-01": 389.921787893894, - "2028-01-01": 382.268039435638, - "2027-01-01": 374.509445108091, - "2026-01-01": 365.503184935978, - "2025-01-01": 360, - "2015-01-01": 360 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 399.586247134334, - "2034-01-01": 391.848621980645, - "2033-01-01": 384.206523063421, - "2032-01-01": 376.755476619128, - "2031-01-01": 369.495482647766, - "2030-01-01": 362.331014912869, - "2029-01-01": 355.262073414437, - "2028-01-01": 348.28865815247, - "2027-01-01": 341.219716654038, - "2026-01-01": 333.014012941669, - "2025-01-01": 328, - "2015-01-01": 328 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 426.387763710418, - "2034-01-01": 418.131151503737, - "2033-01-01": 409.97647278109, - "2032-01-01": 402.025661026509, - "2031-01-01": 394.278716239994, - "2030-01-01": 386.633704937512, - "2029-01-01": 379.090627119064, - "2028-01-01": 371.649482784648, - "2027-01-01": 364.106404966199, - "2026-01-01": 355.350318687757, - "2025-01-01": 350, - "2015-01-01": 350 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 381.312485832459, - "2034-01-01": 373.928715487628, - "2033-01-01": 366.636102801375, - "2032-01-01": 359.525805432278, - "2031-01-01": 352.597823380338, - "2030-01-01": 345.760998986975, - "2029-01-01": 339.015332252191, - "2028-01-01": 332.360823175985, - "2027-01-01": 325.615156441201, - "2026-01-01": 317.784713569337, - "2025-01-01": 313, - "2015-01-01": 313 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 363.038724530584, - "2034-01-01": 356.00880899461, - "2033-01-01": 349.065682539328, - "2032-01-01": 342.296134245428, - "2031-01-01": 335.700164112909, - "2030-01-01": 329.190983061082, - "2029-01-01": 322.768591089946, - "2028-01-01": 316.4329881995, - "2027-01-01": 310.010596228364, - "2026-01-01": 302.555414197004, - "2025-01-01": 298, - "2015-01-01": 298 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 384.967238092834, - "2034-01-01": 377.512696786231, - "2033-01-01": 370.150186853784, - "2032-01-01": 362.971739669648, - "2031-01-01": 355.977355233823, - "2030-01-01": 349.075002172154, - "2029-01-01": 342.26468048464, - "2028-01-01": 335.546390171282, - "2027-01-01": 328.736068483768, - "2026-01-01": 320.830573443803, - "2025-01-01": 316, - "2015-01-01": 316 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 369.129978297876, - "2034-01-01": 361.98211115895, - "2033-01-01": 354.922489293343, - "2032-01-01": 348.039357974378, - "2031-01-01": 341.332717202052, - "2030-01-01": 334.714321703046, - "2029-01-01": 328.184171477361, - "2028-01-01": 321.742266524995, - "2027-01-01": 315.21211629931, - "2026-01-01": 307.631847321115, - "2025-01-01": 303, - "2015-01-01": 303 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 363.038724530584, - "2034-01-01": 356.00880899461, - "2033-01-01": 349.065682539328, - "2032-01-01": 342.296134245428, - "2031-01-01": 335.700164112909, - "2030-01-01": 329.190983061082, - "2029-01-01": 322.768591089946, - "2028-01-01": 316.4329881995, - "2027-01-01": 310.010596228364, - "2026-01-01": 302.555414197004, - "2025-01-01": 298, - "2015-01-01": 298 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 372.784730558251, - "2034-01-01": 365.566092457553, - "2033-01-01": 358.436573345753, - "2032-01-01": 351.485292211748, - "2031-01-01": 344.712249055538, - "2030-01-01": 338.028324888225, - "2029-01-01": 331.43351970981, - "2028-01-01": 324.927833520292, - "2027-01-01": 318.333028341877, - "2026-01-01": 310.677707195582, - "2025-01-01": 306, - "2015-01-01": 306 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 425.169512956959, - "2034-01-01": 416.936491070869, - "2033-01-01": 408.805111430287, - "2032-01-01": 400.877016280719, - "2031-01-01": 393.152205622166, - "2030-01-01": 385.529037209119, - "2029-01-01": 378.00751104158, - "2028-01-01": 370.587627119549, - "2027-01-01": 363.06610095201, - "2026-01-01": 354.335032062935, - "2025-01-01": 349, - "2015-01-01": 349 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 403.240999394709, - "2034-01-01": 395.432603279249, - "2033-01-01": 387.720607115831, - "2032-01-01": 380.201410856498, - "2031-01-01": 372.875014501252, - "2030-01-01": 365.645018098047, - "2029-01-01": 358.511421646886, - "2028-01-01": 351.474225147767, - "2027-01-01": 344.340628696606, - "2026-01-01": 336.059872816136, - "2025-01-01": 331, - "2015-01-01": 331 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 358.165721516751, - "2034-01-01": 351.230167263139, - "2033-01-01": 344.380237136115, - "2032-01-01": 337.701555262267, - "2031-01-01": 331.194121641595, - "2030-01-01": 324.77231214751, - "2029-01-01": 318.436126780013, - "2028-01-01": 312.185565539104, - "2027-01-01": 305.849380171607, - "2026-01-01": 298.494267697716, - "2025-01-01": 294, - "2015-01-01": 294 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 386.185488846292, - "2034-01-01": 378.707357219099, - "2033-01-01": 371.321548204587, - "2032-01-01": 364.120384415438, - "2031-01-01": 357.103865851652, - "2030-01-01": 350.179669900547, - "2029-01-01": 343.347796562123, - "2028-01-01": 336.608245836381, - "2027-01-01": 329.776372497958, - "2026-01-01": 321.845860068626, - "2025-01-01": 317, - "2015-01-01": 317 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 397.149745627418, - "2034-01-01": 389.459301114909, - "2033-01-01": 381.863800361815, - "2032-01-01": 374.458187127548, - "2031-01-01": 367.242461412109, - "2030-01-01": 360.121679456083, - "2029-01-01": 353.095841259471, - "2028-01-01": 346.164946822272, - "2027-01-01": 339.13910862566, - "2026-01-01": 330.983439692025, - "2025-01-01": 326, - "2015-01-01": 326 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 412.987005422376, - "2034-01-01": 404.989886742191, - "2033-01-01": 397.091497922256, - "2032-01-01": 389.390568822819, - "2031-01-01": 381.88709944388, - "2030-01-01": 374.482359925191, - "2029-01-01": 367.17635026675, - "2028-01-01": 359.969070468559, - "2027-01-01": 352.663060810119, - "2026-01-01": 344.182165814713, - "2025-01-01": 339, - "2015-01-01": 339 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 367.911727544417, - "2034-01-01": 360.787450726082, - "2033-01-01": 353.75112794254, - "2032-01-01": 346.890713228588, - "2031-01-01": 340.206206584223, - "2030-01-01": 333.609653974654, - "2029-01-01": 327.101055399878, - "2028-01-01": 320.680410859896, - "2027-01-01": 314.171812285121, - "2026-01-01": 306.616560696293, - "2025-01-01": 302, - "2015-01-01": 302 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 439.788521998459, - "2034-01-01": 431.272416265283, - "2033-01-01": 422.861447639924, - "2032-01-01": 414.660753230199, - "2031-01-01": 406.670333036108, - "2030-01-01": 398.785049949834, - "2029-01-01": 391.004903971377, - "2028-01-01": 383.329895100737, - "2027-01-01": 375.54974912228, - "2026-01-01": 366.518471560801, - "2025-01-01": 361, - "2015-01-01": 361 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 434.915518984626, - "2034-01-01": 426.493774533812, - "2033-01-01": 418.176002236712, - "2032-01-01": 410.066174247039, - "2031-01-01": 402.164290564794, - "2030-01-01": 394.366379036263, - "2029-01-01": 386.672439661445, - "2028-01-01": 379.082472440341, - "2027-01-01": 371.388533065523, - "2026-01-01": 362.457325061512, - "2025-01-01": 357, - "2015-01-01": 357 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 523.847823987084, - "2034-01-01": 513.703986133163, - "2033-01-01": 503.685380845339, - "2032-01-01": 493.917240689711, - "2031-01-01": 484.399565666278, - "2030-01-01": 475.007123208944, - "2029-01-01": 465.739913317707, - "2028-01-01": 456.597935992567, - "2027-01-01": 447.33072610133, - "2026-01-01": 436.57324867353, - "2025-01-01": 430, - "2015-01-01": 430 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 364.256975284042, - "2034-01-01": 357.203469427478, - "2033-01-01": 350.237043890131, - "2032-01-01": 343.444778991218, - "2031-01-01": 336.826674730738, - "2030-01-01": 330.295650789475, - "2029-01-01": 323.851707167429, - "2028-01-01": 317.494843864599, - "2027-01-01": 311.050900242553, - "2026-01-01": 303.570700821827, - "2025-01-01": 299, - "2015-01-01": 299 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 353.292718502917, - "2034-01-01": 346.451525531668, - "2033-01-01": 339.694791732903, - "2032-01-01": 333.106976279107, - "2031-01-01": 326.688079170281, - "2030-01-01": 320.353641233939, - "2029-01-01": 314.103662470081, - "2028-01-01": 307.938142878708, - "2027-01-01": 301.688164114851, - "2026-01-01": 294.433121198427, - "2025-01-01": 290, - "2015-01-01": 290 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 386.185488846292, - "2034-01-01": 378.707357219099, - "2033-01-01": 371.321548204587, - "2032-01-01": 364.120384415438, - "2031-01-01": 357.103865851652, - "2030-01-01": 350.179669900547, - "2029-01-01": 343.347796562123, - "2028-01-01": 336.608245836381, - "2027-01-01": 329.776372497958, - "2026-01-01": 321.845860068626, - "2025-01-01": 317, - "2015-01-01": 317 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 470.244790834918, - "2034-01-01": 461.138927086979, - "2033-01-01": 452.145481410002, - "2032-01-01": 443.37687187495, - "2031-01-01": 434.833098481822, - "2030-01-01": 426.401743159656, - "2029-01-01": 418.082805908453, - "2028-01-01": 409.876286728212, - "2027-01-01": 401.557349477008, - "2026-01-01": 391.900637181355, - "2025-01-01": 386, - "2015-01-01": 386 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.FL.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.FL.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.GA", - "description": null, - "label": "GA", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 339.891960214876, - "2034-01-01": 333.310260770122, - "2033-01-01": 326.809816874069, - "2032-01-01": 320.471884075417, - "2031-01-01": 314.296462374167, - "2030-01-01": 308.202296221617, - "2029-01-01": 302.189385617768, - "2028-01-01": 296.257730562619, - "2027-01-01": 290.24481995877, - "2026-01-01": 283.264968325383, - "2025-01-01": 279, - "2015-01-01": 279 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 419.078259189668, - "2034-01-01": 410.96318890653, - "2033-01-01": 402.948304676271, - "2032-01-01": 395.133792551769, - "2031-01-01": 387.519652533023, - "2030-01-01": 380.005698567155, - "2029-01-01": 372.591930654165, - "2028-01-01": 365.278348794054, - "2027-01-01": 357.864580881064, - "2026-01-01": 349.258598938824, - "2025-01-01": 344, - "2015-01-01": 344 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 377.657733572084, - "2034-01-01": 370.344734189024, - "2033-01-01": 363.122018748965, - "2032-01-01": 356.079871194908, - "2031-01-01": 349.218291526852, - "2030-01-01": 342.446995801797, - "2029-01-01": 335.765984019742, - "2028-01-01": 329.175256180688, - "2027-01-01": 322.494244398634, - "2026-01-01": 314.73885369487, - "2025-01-01": 310, - "2015-01-01": 310 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 354.510969256376, - "2034-01-01": 347.646185964536, - "2033-01-01": 340.866153083706, - "2032-01-01": 334.255621024897, - "2031-01-01": 327.814589788109, - "2030-01-01": 321.458308962332, - "2029-01-01": 315.186778547564, - "2028-01-01": 308.999998543807, - "2027-01-01": 302.72846812904, - "2026-01-01": 295.448407823249, - "2025-01-01": 291, - "2015-01-01": 291 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 376.439482818626, - "2034-01-01": 369.150073756157, - "2033-01-01": 361.950657398162, - "2032-01-01": 354.931226449118, - "2031-01-01": 348.091780909023, - "2030-01-01": 341.342328073404, - "2029-01-01": 334.682867942259, - "2028-01-01": 328.113400515589, - "2027-01-01": 321.453940384445, - "2026-01-01": 313.723567070048, - "2025-01-01": 309, - "2015-01-01": 309 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 296.034933090376, - "2034-01-01": 290.30248518688, - "2033-01-01": 284.640808245157, - "2032-01-01": 279.120673226976, - "2031-01-01": 273.742080132339, - "2030-01-01": 268.434257999473, - "2029-01-01": 263.197206828378, - "2028-01-01": 258.030926619056, - "2027-01-01": 252.793875447961, - "2026-01-01": 246.714649831785, - "2025-01-01": 243, - "2015-01-01": 243 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 321.618198913001, - "2034-01-01": 315.390354277105, - "2033-01-01": 309.239396612022, - "2032-01-01": 303.242212888567, - "2031-01-01": 297.398803106738, - "2030-01-01": 291.632280295724, - "2029-01-01": 285.942644455522, - "2028-01-01": 280.329895586134, - "2027-01-01": 274.640259745933, - "2026-01-01": 268.035668953051, - "2025-01-01": 264, - "2015-01-01": 264 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 355.729220009834, - "2034-01-01": 348.840846397404, - "2033-01-01": 342.037514434509, - "2032-01-01": 335.404265770687, - "2031-01-01": 328.941100405938, - "2030-01-01": 322.562976690725, - "2029-01-01": 316.269894625047, - "2028-01-01": 310.061854208906, - "2027-01-01": 303.768772143229, - "2026-01-01": 296.463694448071, - "2025-01-01": 292, - "2015-01-01": 292 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 338.673709461417, - "2034-01-01": 332.115600337254, - "2033-01-01": 325.638455523266, - "2032-01-01": 319.323239329627, - "2031-01-01": 313.169951756338, - "2030-01-01": 307.097628493224, - "2029-01-01": 301.106269540285, - "2028-01-01": 295.19587489752, - "2027-01-01": 289.204515944581, - "2026-01-01": 282.249681700561, - "2025-01-01": 278, - "2015-01-01": 278 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 270.451667267751, - "2034-01-01": 265.214616096656, - "2033-01-01": 260.042219878291, - "2032-01-01": 254.999133565386, - "2031-01-01": 250.085357157939, - "2030-01-01": 245.236235703222, - "2029-01-01": 240.451769201235, - "2028-01-01": 235.731957651977, - "2027-01-01": 230.947491149989, - "2026-01-01": 225.39363071052, - "2025-01-01": 222, - "2015-01-01": 222 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 287.507177816167, - "2034-01-01": 281.939862156806, - "2033-01-01": 276.441278789535, - "2032-01-01": 271.080160006446, - "2031-01-01": 265.856505807539, - "2030-01-01": 260.701583900723, - "2029-01-01": 255.615394285997, - "2028-01-01": 250.597936963363, - "2027-01-01": 245.511747348637, - "2026-01-01": 239.60764345803, - "2025-01-01": 236, - "2015-01-01": 236 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 326.491201926834, - "2034-01-01": 320.168996008576, - "2033-01-01": 313.924842015235, - "2032-01-01": 307.836791871727, - "2031-01-01": 301.904845578053, - "2030-01-01": 296.050951209295, - "2029-01-01": 290.275108765454, - "2028-01-01": 284.57731824653, - "2027-01-01": 278.80147580269, - "2026-01-01": 272.09681545234, - "2025-01-01": 268, - "2015-01-01": 268 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 309.435691378417, - "2034-01-01": 303.443749948426, - "2033-01-01": 297.525783103991, - "2032-01-01": 291.755765430666, - "2031-01-01": 286.133696928453, - "2030-01-01": 280.585603011795, - "2029-01-01": 275.111483680692, - "2028-01-01": 269.711338935144, - "2027-01-01": 264.237219604042, - "2026-01-01": 257.882802704829, - "2025-01-01": 254, - "2015-01-01": 254 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 370.348229051334, - "2034-01-01": 363.176771591817, - "2033-01-01": 356.093850644147, - "2032-01-01": 349.188002720168, - "2031-01-01": 342.459227819881, - "2030-01-01": 335.818989431439, - "2029-01-01": 329.267287554844, - "2028-01-01": 322.804122190094, - "2027-01-01": 316.252420313499, - "2026-01-01": 308.647133945937, - "2025-01-01": 304, - "2015-01-01": 304 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 282.634174802334, - "2034-01-01": 277.161220425334, - "2033-01-01": 271.755833386322, - "2032-01-01": 266.485581023286, - "2031-01-01": 261.350463336225, - "2030-01-01": 256.282912987151, - "2029-01-01": 251.282929976065, - "2028-01-01": 246.350514302967, - "2027-01-01": 241.350531291881, - "2026-01-01": 235.546496958742, - "2025-01-01": 232, - "2015-01-01": 232 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 322.836449666459, - "2034-01-01": 316.585014709972, - "2033-01-01": 310.410757962825, - "2032-01-01": 304.390857634357, - "2031-01-01": 298.525313724567, - "2030-01-01": 292.736948024116, - "2029-01-01": 287.025760533005, - "2028-01-01": 281.391751251233, - "2027-01-01": 275.680563760122, - "2026-01-01": 269.050955577873, - "2025-01-01": 265, - "2015-01-01": 265 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GA.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GA.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.HI", - "description": null, - "label": "HI", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 359.383972270209, - "2034-01-01": 352.424827696007, - "2033-01-01": 345.551598486919, - "2032-01-01": 338.850200008057, - "2031-01-01": 332.320632259424, - "2030-01-01": 325.876979875903, - "2029-01-01": 319.519242857496, - "2028-01-01": 313.247421204203, - "2027-01-01": 306.889684185797, - "2026-01-01": 299.509554322538, - "2025-01-01": 295, - "2015-01-01": 295 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.HI.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.HI.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.IA", - "description": null, - "label": "IA", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 297.253183843834, - "2034-01-01": 291.497145619748, - "2033-01-01": 285.81216959596, - "2032-01-01": 280.269317972766, - "2031-01-01": 274.868590750167, - "2030-01-01": 269.538925727866, - "2029-01-01": 264.280322905861, - "2028-01-01": 259.092782284155, - "2027-01-01": 253.83417946215, - "2026-01-01": 247.729936456608, - "2025-01-01": 244, - "2015-01-01": 244 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 298.471434597292, - "2034-01-01": 292.691806052616, - "2033-01-01": 286.983530946763, - "2032-01-01": 281.417962718556, - "2031-01-01": 275.995101367996, - "2030-01-01": 270.643593456259, - "2029-01-01": 265.363438983344, - "2028-01-01": 260.154637949254, - "2027-01-01": 254.874483476339, - "2026-01-01": 248.74522308143, - "2025-01-01": 245, - "2015-01-01": 245 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 280.197673295417, - "2034-01-01": 274.771899559599, - "2033-01-01": 269.413110684716, - "2032-01-01": 264.188291531706, - "2031-01-01": 259.097442100568, - "2030-01-01": 254.073577530365, - "2029-01-01": 249.116697821099, - "2028-01-01": 244.226802972769, - "2027-01-01": 239.269923263502, - "2026-01-01": 233.515923709097, - "2025-01-01": 230, - "2015-01-01": 230 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 327.709452680292, - "2034-01-01": 321.363656441444, - "2033-01-01": 315.096203366038, - "2032-01-01": 308.985436617517, - "2031-01-01": 303.031356195881, - "2030-01-01": 297.155618937688, - "2029-01-01": 291.358224842937, - "2028-01-01": 285.639173911629, - "2027-01-01": 279.841779816879, - "2026-01-01": 273.112102077162, - "2025-01-01": 269, - "2015-01-01": 269 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 321.618198913001, - "2034-01-01": 315.390354277105, - "2033-01-01": 309.239396612022, - "2032-01-01": 303.242212888567, - "2031-01-01": 297.398803106738, - "2030-01-01": 291.632280295724, - "2029-01-01": 285.942644455522, - "2028-01-01": 280.329895586134, - "2027-01-01": 274.640259745933, - "2026-01-01": 268.035668953051, - "2025-01-01": 264, - "2015-01-01": 264 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 303.344437611126, - "2034-01-01": 297.470447784087, - "2033-01-01": 291.668976349975, - "2032-01-01": 286.012541701716, - "2031-01-01": 280.50114383931, - "2030-01-01": 275.06226436983, - "2029-01-01": 269.695903293277, - "2028-01-01": 264.40206060965, - "2027-01-01": 259.035699533096, - "2026-01-01": 252.806369580718, - "2025-01-01": 249, - "2015-01-01": 249 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 344.764963228709, - "2034-01-01": 338.088902501593, - "2033-01-01": 331.495262277281, - "2032-01-01": 325.066463058577, - "2031-01-01": 318.802504845481, - "2030-01-01": 312.620967135189, - "2029-01-01": 306.5218499277, - "2028-01-01": 300.505153223015, - "2027-01-01": 294.406036015527, - "2026-01-01": 287.326114824672, - "2025-01-01": 283, - "2015-01-01": 283 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IA.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IA.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.ID", - "description": null, - "label": "ID", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 326.491201926834, - "2034-01-01": 320.168996008576, - "2033-01-01": 313.924842015235, - "2032-01-01": 307.836791871727, - "2031-01-01": 301.904845578053, - "2030-01-01": 296.050951209295, - "2029-01-01": 290.275108765454, - "2028-01-01": 284.57731824653, - "2027-01-01": 278.80147580269, - "2026-01-01": 272.09681545234, - "2025-01-01": 268, - "2015-01-01": 268 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 343.546712475251, - "2034-01-01": 336.894242068725, - "2033-01-01": 330.323900926478, - "2032-01-01": 323.917818312787, - "2031-01-01": 317.675994227652, - "2030-01-01": 311.516299406796, - "2029-01-01": 305.438733850217, - "2028-01-01": 299.443297557916, - "2027-01-01": 293.365732001338, - "2026-01-01": 286.31082819985, - "2025-01-01": 282, - "2015-01-01": 282 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 313.090443638792, - "2034-01-01": 307.02773124703, - "2033-01-01": 301.0398671564, - "2032-01-01": 295.201699668037, - "2031-01-01": 289.513228781939, - "2030-01-01": 283.899606196973, - "2029-01-01": 278.360831913141, - "2028-01-01": 272.896905930441, - "2027-01-01": 267.358131646609, - "2026-01-01": 260.928662579296, - "2025-01-01": 257, - "2015-01-01": 257 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 322.836449666459, - "2034-01-01": 316.585014709972, - "2033-01-01": 310.410757962825, - "2032-01-01": 304.390857634357, - "2031-01-01": 298.525313724567, - "2030-01-01": 292.736948024116, - "2029-01-01": 287.025760533005, - "2028-01-01": 281.391751251233, - "2027-01-01": 275.680563760122, - "2026-01-01": 269.050955577873, - "2025-01-01": 265, - "2015-01-01": 265 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 315.526945145709, - "2034-01-01": 309.417052112766, - "2033-01-01": 303.382589858006, - "2032-01-01": 297.498989159617, - "2031-01-01": 291.766250017596, - "2030-01-01": 286.108941653759, - "2029-01-01": 280.527064068107, - "2028-01-01": 275.020617260639, - "2027-01-01": 269.438739674987, - "2026-01-01": 262.95923582894, - "2025-01-01": 259, - "2015-01-01": 259 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 315.526945145709, - "2034-01-01": 309.417052112766, - "2033-01-01": 303.382589858006, - "2032-01-01": 297.498989159617, - "2031-01-01": 291.766250017596, - "2030-01-01": 286.108941653759, - "2029-01-01": 280.527064068107, - "2028-01-01": 275.020617260639, - "2027-01-01": 269.438739674987, - "2026-01-01": 262.95923582894, - "2025-01-01": 259, - "2015-01-01": 259 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 302.126186857667, - "2034-01-01": 296.275787351219, - "2033-01-01": 290.497614999172, - "2032-01-01": 284.863896955926, - "2031-01-01": 279.374633221482, - "2030-01-01": 273.957596641437, - "2029-01-01": 268.612787215794, - "2028-01-01": 263.34020494455, - "2027-01-01": 257.995395518907, - "2026-01-01": 251.791082955896, - "2025-01-01": 248, - "2015-01-01": 248 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ID.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ID.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.IL", - "description": null, - "label": "IL", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 289.943679323084, - "2034-01-01": 284.329183022541, - "2033-01-01": 278.784001491141, - "2032-01-01": 273.377449498026, - "2031-01-01": 268.109527043196, - "2030-01-01": 262.910919357508, - "2029-01-01": 257.781626440963, - "2028-01-01": 252.721648293561, - "2027-01-01": 247.592355377015, - "2026-01-01": 241.638216707675, - "2025-01-01": 238, - "2015-01-01": 238 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 291.161930076542, - "2034-01-01": 285.523843455409, - "2033-01-01": 279.955362841944, - "2032-01-01": 274.526094243816, - "2031-01-01": 269.236037661025, - "2030-01-01": 264.015587085901, - "2029-01-01": 258.864742518446, - "2028-01-01": 253.78350395866, - "2027-01-01": 248.632659391205, - "2026-01-01": 242.653503332497, - "2025-01-01": 239, - "2015-01-01": 239 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 291.161930076542, - "2034-01-01": 285.523843455409, - "2033-01-01": 279.955362841944, - "2032-01-01": 274.526094243816, - "2031-01-01": 269.236037661025, - "2030-01-01": 264.015587085901, - "2029-01-01": 258.864742518446, - "2028-01-01": 253.78350395866, - "2027-01-01": 248.632659391205, - "2026-01-01": 242.653503332497, - "2025-01-01": 239, - "2015-01-01": 239 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 269.233416514292, - "2034-01-01": 264.019955663788, - "2033-01-01": 258.870858527488, - "2032-01-01": 253.850488819596, - "2031-01-01": 248.958846540111, - "2030-01-01": 244.131567974829, - "2029-01-01": 239.368653123752, - "2028-01-01": 234.670101986878, - "2027-01-01": 229.9071871358, - "2026-01-01": 224.378344085698, - "2025-01-01": 221, - "2015-01-01": 221 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 427.606014463876, - "2034-01-01": 419.325811936605, - "2033-01-01": 411.147834131893, - "2032-01-01": 403.174305772299, - "2031-01-01": 395.405226857823, - "2030-01-01": 387.738372665905, - "2029-01-01": 380.173743196547, - "2028-01-01": 372.711338449747, - "2027-01-01": 365.146708980388, - "2026-01-01": 356.365605312579, - "2025-01-01": 351, - "2015-01-01": 351 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 416.641757682751, - "2034-01-01": 408.573868040795, - "2033-01-01": 400.605581974665, - "2032-01-01": 392.836503060189, - "2031-01-01": 385.266631297366, - "2030-01-01": 377.796363110369, - "2029-01-01": 370.425698499199, - "2028-01-01": 363.154637463856, - "2027-01-01": 355.783972852686, - "2026-01-01": 347.22802568918, - "2025-01-01": 342, - "2015-01-01": 342 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 451.971029533043, - "2034-01-01": 443.219020593961, - "2033-01-01": 434.575061147955, - "2032-01-01": 426.147200688099, - "2031-01-01": 417.935439214394, - "2030-01-01": 409.831727233763, - "2029-01-01": 401.836064746207, - "2028-01-01": 393.948451751727, - "2027-01-01": 385.952789264171, - "2026-01-01": 376.671337809022, - "2025-01-01": 371, - "2015-01-01": 371 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 555.522343577001, - "2034-01-01": 544.765157387726, - "2033-01-01": 534.14077596622, - "2032-01-01": 523.782004080252, - "2031-01-01": 513.688841729821, - "2030-01-01": 503.728484147159, - "2029-01-01": 493.900931332266, - "2028-01-01": 484.206183285141, - "2027-01-01": 474.378630470248, - "2026-01-01": 462.970700918906, - "2025-01-01": 456, - "2015-01-01": 456 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 555.522343577001, - "2034-01-01": 544.765157387726, - "2033-01-01": 534.14077596622, - "2032-01-01": 523.782004080252, - "2031-01-01": 513.688841729821, - "2030-01-01": 503.728484147159, - "2029-01-01": 493.900931332266, - "2028-01-01": 484.206183285141, - "2027-01-01": 474.378630470248, - "2026-01-01": 462.970700918906, - "2025-01-01": 456, - "2015-01-01": 456 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 473.899543095293, - "2034-01-01": 464.722908385582, - "2033-01-01": 455.659565462411, - "2032-01-01": 446.82280611232, - "2031-01-01": 438.212630335308, - "2030-01-01": 429.715746344835, - "2029-01-01": 421.332154140902, - "2028-01-01": 413.061853723509, - "2027-01-01": 404.678261519576, - "2026-01-01": 394.946497055821, - "2025-01-01": 389, - "2015-01-01": 389 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 399.586247134334, - "2034-01-01": 391.848621980645, - "2033-01-01": 384.206523063421, - "2032-01-01": 376.755476619128, - "2031-01-01": 369.495482647766, - "2030-01-01": 362.331014912869, - "2029-01-01": 355.262073414437, - "2028-01-01": 348.28865815247, - "2027-01-01": 341.219716654038, - "2026-01-01": 333.014012941669, - "2025-01-01": 328, - "2015-01-01": 328 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 321.618198913001, - "2034-01-01": 315.390354277105, - "2033-01-01": 309.239396612022, - "2032-01-01": 303.242212888567, - "2031-01-01": 297.398803106738, - "2030-01-01": 291.632280295724, - "2029-01-01": 285.942644455522, - "2028-01-01": 280.329895586134, - "2027-01-01": 274.640259745933, - "2026-01-01": 268.035668953051, - "2025-01-01": 264, - "2015-01-01": 264 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 645.672899332918, - "2034-01-01": 633.170029419945, - "2033-01-01": 620.82151592565, - "2032-01-01": 608.781715268713, - "2031-01-01": 597.050627449134, - "2030-01-01": 585.473896048233, - "2029-01-01": 574.05152106601, - "2028-01-01": 562.783502502467, - "2027-01-01": 551.361127520245, - "2026-01-01": 538.101911155746, - "2025-01-01": 530, - "2015-01-01": 530 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IL.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IL.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.IN", - "description": null, - "label": "IN", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 271.669918021209, - "2034-01-01": 266.409276529524, - "2033-01-01": 261.213581229094, - "2032-01-01": 256.147778311176, - "2031-01-01": 251.211867775768, - "2030-01-01": 246.340903431615, - "2029-01-01": 241.534885278718, - "2028-01-01": 236.793813317076, - "2027-01-01": 231.987795164178, - "2026-01-01": 226.408917335342, - "2025-01-01": 223, - "2015-01-01": 223 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 274.106419528126, - "2034-01-01": 268.79859739526, - "2033-01-01": 263.556303930701, - "2032-01-01": 258.445067802756, - "2031-01-01": 253.464889011425, - "2030-01-01": 248.550238888401, - "2029-01-01": 243.701117433684, - "2028-01-01": 238.917524647274, - "2027-01-01": 234.068403192557, - "2026-01-01": 228.439490584987, - "2025-01-01": 225, - "2015-01-01": 225 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 304.562688364584, - "2034-01-01": 298.665108216955, - "2033-01-01": 292.840337700778, - "2032-01-01": 287.161186447506, - "2031-01-01": 281.627654457139, - "2030-01-01": 276.166932098223, - "2029-01-01": 270.77901937076, - "2028-01-01": 265.463916274748, - "2027-01-01": 260.076003547285, - "2026-01-01": 253.821656205541, - "2025-01-01": 250, - "2015-01-01": 250 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 306.999189871501, - "2034-01-01": 301.054429082691, - "2033-01-01": 295.183060402385, - "2032-01-01": 289.458475939086, - "2031-01-01": 283.880675692796, - "2030-01-01": 278.376267555009, - "2029-01-01": 272.945251525726, - "2028-01-01": 267.587627604947, - "2027-01-01": 262.156611575663, - "2026-01-01": 255.852229455185, - "2025-01-01": 252, - "2015-01-01": 252 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 275.324670281584, - "2034-01-01": 269.993257828127, - "2033-01-01": 264.727665281504, - "2032-01-01": 259.593712548546, - "2031-01-01": 254.591399629253, - "2030-01-01": 249.654906616794, - "2029-01-01": 244.784233511167, - "2028-01-01": 239.979380312373, - "2027-01-01": 235.108707206746, - "2026-01-01": 229.454777209809, - "2025-01-01": 226, - "2015-01-01": 226 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 280.197673295417, - "2034-01-01": 274.771899559599, - "2033-01-01": 269.413110684716, - "2032-01-01": 264.188291531706, - "2031-01-01": 259.097442100568, - "2030-01-01": 254.073577530365, - "2029-01-01": 249.116697821099, - "2028-01-01": 244.226802972769, - "2027-01-01": 239.269923263502, - "2026-01-01": 233.515923709097, - "2025-01-01": 230, - "2015-01-01": 230 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 272.888168774667, - "2034-01-01": 267.603936962392, - "2033-01-01": 262.384942579898, - "2032-01-01": 257.296423056966, - "2031-01-01": 252.338378393596, - "2030-01-01": 247.445571160008, - "2029-01-01": 242.618001356201, - "2028-01-01": 237.855668982175, - "2027-01-01": 233.028099178368, - "2026-01-01": 227.424203960164, - "2025-01-01": 224, - "2015-01-01": 224 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 274.106419528126, - "2034-01-01": 268.79859739526, - "2033-01-01": 263.556303930701, - "2032-01-01": 258.445067802756, - "2031-01-01": 253.464889011425, - "2030-01-01": 248.550238888401, - "2029-01-01": 243.701117433684, - "2028-01-01": 238.917524647274, - "2027-01-01": 234.068403192557, - "2026-01-01": 228.439490584987, - "2025-01-01": 225, - "2015-01-01": 225 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 302.126186857667, - "2034-01-01": 296.275787351219, - "2033-01-01": 290.497614999172, - "2032-01-01": 284.863896955926, - "2031-01-01": 279.374633221482, - "2030-01-01": 273.957596641437, - "2029-01-01": 268.612787215794, - "2028-01-01": 263.34020494455, - "2027-01-01": 257.995395518907, - "2026-01-01": 251.791082955896, - "2025-01-01": 248, - "2015-01-01": 248 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 281.415924048876, - "2034-01-01": 275.966559992467, - "2033-01-01": 270.584472035519, - "2032-01-01": 265.336936277496, - "2031-01-01": 260.223952718396, - "2030-01-01": 255.178245258758, - "2029-01-01": 250.199813898582, - "2028-01-01": 245.288658637868, - "2027-01-01": 240.310227277692, - "2026-01-01": 234.53121033392, - "2025-01-01": 231, - "2015-01-01": 231 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 276.542921035042, - "2034-01-01": 271.187918260995, - "2033-01-01": 265.899026632307, - "2032-01-01": 260.742357294336, - "2031-01-01": 255.717910247082, - "2030-01-01": 250.759574345187, - "2029-01-01": 245.86734958865, - "2028-01-01": 241.041235977472, - "2027-01-01": 236.149011220935, - "2026-01-01": 230.470063834631, - "2025-01-01": 227, - "2015-01-01": 227 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 263.142162747001, - "2034-01-01": 258.046653499449, - "2033-01-01": 253.014051773473, - "2032-01-01": 248.107265090645, - "2031-01-01": 243.326293450968, - "2030-01-01": 238.608229332865, - "2029-01-01": 233.953072736336, - "2028-01-01": 229.360823661383, - "2027-01-01": 224.705667064854, - "2026-01-01": 219.301910961587, - "2025-01-01": 216, - "2015-01-01": 216 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 286.288927062709, - "2034-01-01": 280.745201723938, - "2033-01-01": 275.269917438732, - "2032-01-01": 269.931515260656, - "2031-01-01": 264.72999518971, - "2030-01-01": 259.59691617233, - "2029-01-01": 254.532278208514, - "2028-01-01": 249.536081298264, - "2027-01-01": 244.471443334448, - "2026-01-01": 238.592356833208, - "2025-01-01": 235, - "2015-01-01": 235 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 277.761171788501, - "2034-01-01": 272.382578693863, - "2033-01-01": 267.07038798311, - "2032-01-01": 261.891002040126, - "2031-01-01": 256.84442086491, - "2030-01-01": 251.864242073579, - "2029-01-01": 246.950465666133, - "2028-01-01": 242.103091642571, - "2027-01-01": 237.189315235124, - "2026-01-01": 231.485350459453, - "2025-01-01": 228, - "2015-01-01": 228 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 265.578664253917, - "2034-01-01": 260.435974365185, - "2033-01-01": 255.356774475079, - "2032-01-01": 250.404554582226, - "2031-01-01": 245.579314686625, - "2030-01-01": 240.817564789651, - "2029-01-01": 236.119304891302, - "2028-01-01": 231.484534991581, - "2027-01-01": 226.786275093233, - "2026-01-01": 221.332484211231, - "2025-01-01": 218, - "2015-01-01": 218 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 224.158138636334, - "2034-01-01": 219.817519647679, - "2033-01-01": 215.530488547773, - "2032-01-01": 211.350633225365, - "2031-01-01": 207.277953680454, - "2030-01-01": 203.258862024292, - "2029-01-01": 199.293358256879, - "2028-01-01": 195.381442378215, - "2027-01-01": 191.415938610802, - "2026-01-01": 186.812738967278, - "2025-01-01": 184, - "2015-01-01": 184 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 277.761171788501, - "2034-01-01": 272.382578693863, - "2033-01-01": 267.07038798311, - "2032-01-01": 261.891002040126, - "2031-01-01": 256.84442086491, - "2030-01-01": 251.864242073579, - "2029-01-01": 246.950465666133, - "2028-01-01": 242.103091642571, - "2027-01-01": 237.189315235124, - "2026-01-01": 231.485350459453, - "2025-01-01": 228, - "2015-01-01": 228 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.IN.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.IN.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.KS", - "description": null, - "label": "KS", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 345.983213982167, - "2034-01-01": 339.283562934461, - "2033-01-01": 332.666623628084, - "2032-01-01": 326.215107804367, - "2031-01-01": 319.929015463309, - "2030-01-01": 313.725634863581, - "2029-01-01": 307.604966005183, - "2028-01-01": 301.567008888114, - "2027-01-01": 295.446340029716, - "2026-01-01": 288.341401449494, - "2025-01-01": 284, - "2015-01-01": 284 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 364.256975284042, - "2034-01-01": 357.203469427478, - "2033-01-01": 350.237043890131, - "2032-01-01": 343.444778991218, - "2031-01-01": 336.826674730738, - "2030-01-01": 330.295650789475, - "2029-01-01": 323.851707167429, - "2028-01-01": 317.494843864599, - "2027-01-01": 311.050900242553, - "2026-01-01": 303.570700821827, - "2025-01-01": 299, - "2015-01-01": 299 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 374.002981311709, - "2034-01-01": 366.760752890421, - "2033-01-01": 359.607934696556, - "2032-01-01": 352.633936957538, - "2031-01-01": 345.838759673366, - "2030-01-01": 339.132992616618, - "2029-01-01": 332.516635787293, - "2028-01-01": 325.989689185391, - "2027-01-01": 319.373332356066, - "2026-01-01": 311.692993820404, - "2025-01-01": 307, - "2015-01-01": 307 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 402.022748641251, - "2034-01-01": 394.237942846381, - "2033-01-01": 386.549245765028, - "2032-01-01": 379.052766110708, - "2031-01-01": 371.748503883423, - "2030-01-01": 364.540350369654, - "2029-01-01": 357.428305569403, - "2028-01-01": 350.412369482668, - "2027-01-01": 343.300324682416, - "2026-01-01": 335.044586191314, - "2025-01-01": 330, - "2015-01-01": 330 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 548.212839056251, - "2034-01-01": 537.597194790519, - "2033-01-01": 527.112607861401, - "2032-01-01": 516.890135605511, - "2031-01-01": 506.92977802285, - "2030-01-01": 497.100477776802, - "2029-01-01": 487.402234867367, - "2028-01-01": 477.835049294547, - "2027-01-01": 468.136806385113, - "2026-01-01": 456.878981169973, - "2025-01-01": 450, - "2015-01-01": 450 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 370.348229051334, - "2034-01-01": 363.176771591817, - "2033-01-01": 356.093850644147, - "2032-01-01": 349.188002720168, - "2031-01-01": 342.459227819881, - "2030-01-01": 335.818989431439, - "2029-01-01": 329.267287554844, - "2028-01-01": 322.804122190094, - "2027-01-01": 316.252420313499, - "2026-01-01": 308.647133945937, - "2025-01-01": 304, - "2015-01-01": 304 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 420.296509943126, - "2034-01-01": 412.157849339398, - "2033-01-01": 404.119666027074, - "2032-01-01": 396.282437297559, - "2031-01-01": 388.646163150851, - "2030-01-01": 381.110366295548, - "2029-01-01": 373.675046731648, - "2028-01-01": 366.340204459153, - "2027-01-01": 358.904884895254, - "2026-01-01": 350.273885563646, - "2025-01-01": 345, - "2015-01-01": 345 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KS.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KS.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.KY", - "description": null, - "label": "KY", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 347.201464735626, - "2034-01-01": 340.478223367329, - "2033-01-01": 333.837984978887, - "2032-01-01": 327.363752550157, - "2031-01-01": 321.055526081138, - "2030-01-01": 314.830302591974, - "2029-01-01": 308.688082082666, - "2028-01-01": 302.628864553213, - "2027-01-01": 296.486644043905, - "2026-01-01": 289.356688074316, - "2025-01-01": 285, - "2015-01-01": 285 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 320.399948159542, - "2034-01-01": 314.195693844237, - "2033-01-01": 308.068035261219, - "2032-01-01": 302.093568142777, - "2031-01-01": 296.27229248891, - "2030-01-01": 290.527612567331, - "2029-01-01": 284.859528378039, - "2028-01-01": 279.268039921035, - "2027-01-01": 273.599955731744, - "2026-01-01": 267.020382328229, - "2025-01-01": 263, - "2015-01-01": 263 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 303.344437611126, - "2034-01-01": 297.470447784087, - "2033-01-01": 291.668976349975, - "2032-01-01": 286.012541701716, - "2031-01-01": 280.50114383931, - "2030-01-01": 275.06226436983, - "2029-01-01": 269.695903293277, - "2028-01-01": 264.40206060965, - "2027-01-01": 259.035699533096, - "2026-01-01": 252.806369580718, - "2025-01-01": 249, - "2015-01-01": 249 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 343.546712475251, - "2034-01-01": 336.894242068725, - "2033-01-01": 330.323900926478, - "2032-01-01": 323.917818312787, - "2031-01-01": 317.675994227652, - "2030-01-01": 311.516299406796, - "2029-01-01": 305.438733850217, - "2028-01-01": 299.443297557916, - "2027-01-01": 293.365732001338, - "2026-01-01": 286.31082819985, - "2025-01-01": 282, - "2015-01-01": 282 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 309.435691378417, - "2034-01-01": 303.443749948426, - "2033-01-01": 297.525783103991, - "2032-01-01": 291.755765430666, - "2031-01-01": 286.133696928453, - "2030-01-01": 280.585603011795, - "2029-01-01": 275.111483680692, - "2028-01-01": 269.711338935144, - "2027-01-01": 264.237219604042, - "2026-01-01": 257.882802704829, - "2025-01-01": 254, - "2015-01-01": 254 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 355.729220009834, - "2034-01-01": 348.840846397404, - "2033-01-01": 342.037514434509, - "2032-01-01": 335.404265770687, - "2031-01-01": 328.941100405938, - "2030-01-01": 322.562976690725, - "2029-01-01": 316.269894625047, - "2028-01-01": 310.061854208906, - "2027-01-01": 303.768772143229, - "2026-01-01": 296.463694448071, - "2025-01-01": 292, - "2015-01-01": 292 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 292.380180830001, - "2034-01-01": 286.718503888277, - "2033-01-01": 281.126724192747, - "2032-01-01": 275.674738989606, - "2031-01-01": 270.362548278853, - "2030-01-01": 265.120254814294, - "2029-01-01": 259.947858595929, - "2028-01-01": 254.845359623759, - "2027-01-01": 249.672963405394, - "2026-01-01": 243.668789957319, - "2025-01-01": 240, - "2015-01-01": 240 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 354.510969256376, - "2034-01-01": 347.646185964536, - "2033-01-01": 340.866153083706, - "2032-01-01": 334.255621024897, - "2031-01-01": 327.814589788109, - "2030-01-01": 321.458308962332, - "2029-01-01": 315.186778547564, - "2028-01-01": 308.999998543807, - "2027-01-01": 302.72846812904, - "2026-01-01": 295.448407823249, - "2025-01-01": 291, - "2015-01-01": 291 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.KY.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.KY.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.LA", - "description": null, - "label": "LA", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 348.419715489084, - "2034-01-01": 341.672883800197, - "2033-01-01": 335.009346329691, - "2032-01-01": 328.512397295947, - "2031-01-01": 322.182036698967, - "2030-01-01": 315.934970320367, - "2029-01-01": 309.771198160149, - "2028-01-01": 303.690720218312, - "2027-01-01": 297.526948058094, - "2026-01-01": 290.371974699138, - "2025-01-01": 286, - "2015-01-01": 286 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 428.824265217334, - "2034-01-01": 420.520472369473, - "2033-01-01": 412.319195482696, - "2032-01-01": 404.322950518089, - "2031-01-01": 396.531737475651, - "2030-01-01": 388.843040394298, - "2029-01-01": 381.25685927403, - "2028-01-01": 373.773194114846, - "2027-01-01": 366.187012994578, - "2026-01-01": 357.380891937401, - "2025-01-01": 352, - "2015-01-01": 352 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 423.951262203501, - "2034-01-01": 415.741830638002, - "2033-01-01": 407.633750079484, - "2032-01-01": 399.728371534929, - "2031-01-01": 392.025695004337, - "2030-01-01": 384.424369480727, - "2029-01-01": 376.924394964097, - "2028-01-01": 369.52577145445, - "2027-01-01": 362.025796937821, - "2026-01-01": 353.319745438113, - "2025-01-01": 348, - "2015-01-01": 348 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 408.114002408543, - "2034-01-01": 400.21124501072, - "2033-01-01": 392.406052519043, - "2032-01-01": 384.795989839659, - "2031-01-01": 377.381056972566, - "2030-01-01": 370.063689011619, - "2029-01-01": 362.843885956818, - "2028-01-01": 355.721647808163, - "2027-01-01": 348.501844753362, - "2026-01-01": 340.121019315424, - "2025-01-01": 335, - "2015-01-01": 335 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 360.602223023667, - "2034-01-01": 353.619488128875, - "2033-01-01": 346.722959837722, - "2032-01-01": 339.998844753848, - "2031-01-01": 333.447142877252, - "2030-01-01": 326.981647604296, - "2029-01-01": 320.602358934979, - "2028-01-01": 314.309276869302, - "2027-01-01": 307.929988199986, - "2026-01-01": 300.52484094736, - "2025-01-01": 296, - "2015-01-01": 296 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 467.808289328001, - "2034-01-01": 458.749606221243, - "2033-01-01": 449.802758708396, - "2032-01-01": 441.07958238337, - "2031-01-01": 432.580077246165, - "2030-01-01": 424.192407702871, - "2029-01-01": 415.916573753487, - "2028-01-01": 407.752575398014, - "2027-01-01": 399.47674144863, - "2026-01-01": 389.87006393171, - "2025-01-01": 384, - "2015-01-01": 384 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 425.169512956959, - "2034-01-01": 416.936491070869, - "2033-01-01": 408.805111430287, - "2032-01-01": 400.877016280719, - "2031-01-01": 393.152205622166, - "2030-01-01": 385.529037209119, - "2029-01-01": 378.00751104158, - "2028-01-01": 370.587627119549, - "2027-01-01": 363.06610095201, - "2026-01-01": 354.335032062935, - "2025-01-01": 349, - "2015-01-01": 349 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 333.800706447584, - "2034-01-01": 327.336958605783, - "2033-01-01": 320.953010120053, - "2032-01-01": 314.728660346467, - "2031-01-01": 308.663909285024, - "2030-01-01": 302.678957579653, - "2029-01-01": 296.773805230353, - "2028-01-01": 290.948452237124, - "2027-01-01": 285.043299887825, - "2026-01-01": 278.188535201273, - "2025-01-01": 274, - "2015-01-01": 274 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.LA.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.LA.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.MA", - "description": null, - "label": "MA", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 297.253183843834, - "2034-01-01": 291.497145619748, - "2033-01-01": 285.81216959596, - "2032-01-01": 280.269317972766, - "2031-01-01": 274.868590750167, - "2030-01-01": 269.538925727866, - "2029-01-01": 264.280322905861, - "2028-01-01": 259.092782284155, - "2027-01-01": 253.83417946215, - "2026-01-01": 247.729936456608, - "2025-01-01": 244, - "2015-01-01": 244 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 303.344437611126, - "2034-01-01": 297.470447784087, - "2033-01-01": 291.668976349975, - "2032-01-01": 286.012541701716, - "2031-01-01": 280.50114383931, - "2030-01-01": 275.06226436983, - "2029-01-01": 269.695903293277, - "2028-01-01": 264.40206060965, - "2027-01-01": 259.035699533096, - "2026-01-01": 252.806369580718, - "2025-01-01": 249, - "2015-01-01": 249 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 288.725428569626, - "2034-01-01": 283.134522589673, - "2033-01-01": 277.612640140338, - "2032-01-01": 272.228804752236, - "2031-01-01": 266.983016425367, - "2030-01-01": 261.806251629116, - "2029-01-01": 256.69851036348, - "2028-01-01": 251.659792628462, - "2027-01-01": 246.552051362826, - "2026-01-01": 240.622930082853, - "2025-01-01": 237, - "2015-01-01": 237 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 293.598431583459, - "2034-01-01": 287.913164321145, - "2033-01-01": 282.29808554355, - "2032-01-01": 276.823383735396, - "2031-01-01": 271.489058896682, - "2030-01-01": 266.224922542687, - "2029-01-01": 261.030974673412, - "2028-01-01": 255.907215288858, - "2027-01-01": 250.713267419583, - "2026-01-01": 244.684076582141, - "2025-01-01": 241, - "2015-01-01": 241 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 293.598431583459, - "2034-01-01": 287.913164321145, - "2033-01-01": 282.29808554355, - "2032-01-01": 276.823383735396, - "2031-01-01": 271.489058896682, - "2030-01-01": 266.224922542687, - "2029-01-01": 261.030974673412, - "2028-01-01": 255.907215288858, - "2027-01-01": 250.713267419583, - "2026-01-01": 244.684076582141, - "2025-01-01": 241, - "2015-01-01": 241 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 285.070676309251, - "2034-01-01": 279.55054129107, - "2033-01-01": 274.098556087929, - "2032-01-01": 268.782870514866, - "2031-01-01": 263.603484571882, - "2030-01-01": 258.492248443937, - "2029-01-01": 253.449162131031, - "2028-01-01": 248.474225633165, - "2027-01-01": 243.431139320259, - "2026-01-01": 237.577070208386, - "2025-01-01": 234, - "2015-01-01": 234 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 532.375579261293, - "2034-01-01": 522.066609163237, - "2033-01-01": 511.884910300961, - "2032-01-01": 501.957753910241, - "2031-01-01": 492.285139991078, - "2030-01-01": 482.739797307694, - "2029-01-01": 473.321725860088, - "2028-01-01": 464.03092564826, - "2027-01-01": 454.612854200654, - "2026-01-01": 443.680255047285, - "2025-01-01": 437, - "2015-01-01": 437 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MA.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MA.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.MD", - "description": null, - "label": "MD", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 266.796915007376, - "2034-01-01": 261.630634798053, - "2033-01-01": 256.528135825882, - "2032-01-01": 251.553199328016, - "2031-01-01": 246.705825304453, - "2030-01-01": 241.922232518043, - "2029-01-01": 237.202420968785, - "2028-01-01": 232.54639065668, - "2027-01-01": 227.826579107422, - "2026-01-01": 222.347770836054, - "2025-01-01": 219, - "2015-01-01": 219 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 266.796915007376, - "2034-01-01": 261.630634798053, - "2033-01-01": 256.528135825882, - "2032-01-01": 251.553199328016, - "2031-01-01": 246.705825304453, - "2030-01-01": 241.922232518043, - "2029-01-01": 237.202420968785, - "2028-01-01": 232.54639065668, - "2027-01-01": 227.826579107422, - "2026-01-01": 222.347770836054, - "2025-01-01": 219, - "2015-01-01": 219 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 266.796915007376, - "2034-01-01": 261.630634798053, - "2033-01-01": 256.528135825882, - "2032-01-01": 251.553199328016, - "2031-01-01": 246.705825304453, - "2030-01-01": 241.922232518043, - "2029-01-01": 237.202420968785, - "2028-01-01": 232.54639065668, - "2027-01-01": 227.826579107422, - "2026-01-01": 222.347770836054, - "2025-01-01": 219, - "2015-01-01": 219 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 266.796915007376, - "2034-01-01": 261.630634798053, - "2033-01-01": 256.528135825882, - "2032-01-01": 251.553199328016, - "2031-01-01": 246.705825304453, - "2030-01-01": 241.922232518043, - "2029-01-01": 237.202420968785, - "2028-01-01": 232.54639065668, - "2027-01-01": 227.826579107422, - "2026-01-01": 222.347770836054, - "2025-01-01": 219, - "2015-01-01": 219 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MD.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MD.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.ME", - "description": null, - "label": "ME", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 380.094235079001, - "2034-01-01": 372.73405505476, - "2033-01-01": 365.464741450572, - "2032-01-01": 358.377160686488, - "2031-01-01": 351.471312762509, - "2030-01-01": 344.656331258582, - "2029-01-01": 337.932216174708, - "2028-01-01": 331.298967510886, - "2027-01-01": 324.574852427012, - "2026-01-01": 316.769426944515, - "2025-01-01": 312, - "2015-01-01": 312 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 405.677500901626, - "2034-01-01": 397.821924144984, - "2033-01-01": 390.063329817437, - "2032-01-01": 382.498700348078, - "2031-01-01": 375.128035736909, - "2030-01-01": 367.854353554833, - "2029-01-01": 360.677653801852, - "2028-01-01": 353.597936477965, - "2027-01-01": 346.421236724984, - "2026-01-01": 338.09044606578, - "2025-01-01": 333, - "2015-01-01": 333 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 415.423506929293, - "2034-01-01": 407.379207607927, - "2033-01-01": 399.434220623862, - "2032-01-01": 391.687858314399, - "2031-01-01": 384.140120679537, - "2030-01-01": 376.691695381976, - "2029-01-01": 369.342582421716, - "2028-01-01": 362.092781798757, - "2027-01-01": 354.743668838497, - "2026-01-01": 346.212739064357, - "2025-01-01": 341, - "2015-01-01": 341 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 404.459250148168, - "2034-01-01": 396.627263712116, - "2033-01-01": 388.891968466634, - "2032-01-01": 381.350055602288, - "2031-01-01": 374.00152511908, - "2030-01-01": 366.74968582644, - "2029-01-01": 359.594537724369, - "2028-01-01": 352.536080812866, - "2027-01-01": 345.380932710795, - "2026-01-01": 337.075159440958, - "2025-01-01": 332, - "2015-01-01": 332 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 432.479017477709, - "2034-01-01": 424.104453668076, - "2033-01-01": 415.833279535105, - "2032-01-01": 407.768884755459, - "2031-01-01": 399.911269329137, - "2030-01-01": 392.157043579477, - "2029-01-01": 384.506207506479, - "2028-01-01": 376.958761110143, - "2027-01-01": 369.307925037145, - "2026-01-01": 360.426751811868, - "2025-01-01": 355, - "2015-01-01": 355 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ME.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ME.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.MI", - "description": null, - "label": "MI", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 263.142162747001, - "2034-01-01": 258.046653499449, - "2033-01-01": 253.014051773473, - "2032-01-01": 248.107265090645, - "2031-01-01": 243.326293450968, - "2030-01-01": 238.608229332865, - "2029-01-01": 233.953072736336, - "2028-01-01": 229.360823661383, - "2027-01-01": 224.705667064854, - "2026-01-01": 219.301910961587, - "2025-01-01": 216, - "2015-01-01": 216 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 244.868401445126, - "2034-01-01": 240.126747006432, - "2033-01-01": 235.443631511426, - "2032-01-01": 230.877593903795, - "2031-01-01": 226.428634183539, - "2030-01-01": 222.038213406971, - "2029-01-01": 217.706331574091, - "2028-01-01": 213.432988684898, - "2027-01-01": 209.101106852017, - "2026-01-01": 204.072611589255, - "2025-01-01": 201, - "2015-01-01": 201 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 297.253183843834, - "2034-01-01": 291.497145619748, - "2033-01-01": 285.81216959596, - "2032-01-01": 280.269317972766, - "2031-01-01": 274.868590750167, - "2030-01-01": 269.538925727866, - "2029-01-01": 264.280322905861, - "2028-01-01": 259.092782284155, - "2027-01-01": 253.83417946215, - "2026-01-01": 247.729936456608, - "2025-01-01": 244, - "2015-01-01": 244 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 263.142162747001, - "2034-01-01": 258.046653499449, - "2033-01-01": 253.014051773473, - "2032-01-01": 248.107265090645, - "2031-01-01": 243.326293450968, - "2030-01-01": 238.608229332865, - "2029-01-01": 233.953072736336, - "2028-01-01": 229.360823661383, - "2027-01-01": 224.705667064854, - "2026-01-01": 219.301910961587, - "2025-01-01": 216, - "2015-01-01": 216 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 252.177905965876, - "2034-01-01": 247.294709603639, - "2033-01-01": 242.471799616245, - "2032-01-01": 237.769462378535, - "2031-01-01": 233.187697890511, - "2030-01-01": 228.666219777329, - "2029-01-01": 224.205028038989, - "2028-01-01": 219.804122675492, - "2027-01-01": 215.342930937152, - "2026-01-01": 210.164331338188, - "2025-01-01": 207, - "2015-01-01": 207 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 353.292718502917, - "2034-01-01": 346.451525531668, - "2033-01-01": 339.694791732903, - "2032-01-01": 333.106976279107, - "2031-01-01": 326.688079170281, - "2030-01-01": 320.353641233939, - "2029-01-01": 314.103662470081, - "2028-01-01": 307.938142878708, - "2027-01-01": 301.688164114851, - "2026-01-01": 294.433121198427, - "2025-01-01": 290, - "2015-01-01": 290 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 308.217440624959, - "2034-01-01": 302.249089515559, - "2033-01-01": 296.354421753188, - "2032-01-01": 290.607120684876, - "2031-01-01": 285.007186310624, - "2030-01-01": 279.480935283402, - "2029-01-01": 274.028367603209, - "2028-01-01": 268.649483270045, - "2027-01-01": 263.196915589853, - "2026-01-01": 256.867516080007, - "2025-01-01": 253, - "2015-01-01": 253 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 342.328461721792, - "2034-01-01": 335.699581635858, - "2033-01-01": 329.152539575675, - "2032-01-01": 322.769173566997, - "2031-01-01": 316.549483609824, - "2030-01-01": 310.411631678403, - "2029-01-01": 304.355617772734, - "2028-01-01": 298.381441892817, - "2027-01-01": 292.325427987149, - "2026-01-01": 285.295541575028, - "2025-01-01": 281, - "2015-01-01": 281 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 348.419715489084, - "2034-01-01": 341.672883800197, - "2033-01-01": 335.009346329691, - "2032-01-01": 328.512397295947, - "2031-01-01": 322.182036698967, - "2030-01-01": 315.934970320367, - "2029-01-01": 309.771198160149, - "2028-01-01": 303.690720218312, - "2027-01-01": 297.526948058094, - "2026-01-01": 290.371974699138, - "2025-01-01": 286, - "2015-01-01": 286 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 294.816682336917, - "2034-01-01": 289.107824754013, - "2033-01-01": 283.469446894354, - "2032-01-01": 277.972028481186, - "2031-01-01": 272.61556951451, - "2030-01-01": 267.32959027108, - "2029-01-01": 262.114090750895, - "2028-01-01": 256.969070953957, - "2027-01-01": 251.753571433772, - "2026-01-01": 245.699363206963, - "2025-01-01": 242, - "2015-01-01": 242 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 294.816682336917, - "2034-01-01": 289.107824754013, - "2033-01-01": 283.469446894354, - "2032-01-01": 277.972028481186, - "2031-01-01": 272.61556951451, - "2030-01-01": 267.32959027108, - "2029-01-01": 262.114090750895, - "2028-01-01": 256.969070953957, - "2027-01-01": 251.753571433772, - "2026-01-01": 245.699363206963, - "2025-01-01": 242, - "2015-01-01": 242 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 289.943679323084, - "2034-01-01": 284.329183022541, - "2033-01-01": 278.784001491141, - "2032-01-01": 273.377449498026, - "2031-01-01": 268.109527043196, - "2030-01-01": 262.910919357508, - "2029-01-01": 257.781626440963, - "2028-01-01": 252.721648293561, - "2027-01-01": 247.592355377015, - "2026-01-01": 241.638216707675, - "2025-01-01": 238, - "2015-01-01": 238 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 410.550503915459, - "2034-01-01": 402.600565876455, - "2033-01-01": 394.748775220649, - "2032-01-01": 387.093279331239, - "2031-01-01": 379.634078208223, - "2030-01-01": 372.273024468405, - "2029-01-01": 365.010118111784, - "2028-01-01": 357.845359138361, - "2027-01-01": 350.58245278174, - "2026-01-01": 342.151592565069, - "2025-01-01": 337, - "2015-01-01": 337 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 355.729220009834, - "2034-01-01": 348.840846397404, - "2033-01-01": 342.037514434509, - "2032-01-01": 335.404265770687, - "2031-01-01": 328.941100405938, - "2030-01-01": 322.562976690725, - "2029-01-01": 316.269894625047, - "2028-01-01": 310.061854208906, - "2027-01-01": 303.768772143229, - "2026-01-01": 296.463694448071, - "2025-01-01": 292, - "2015-01-01": 292 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 378.875984325542, - "2034-01-01": 371.539394621892, - "2033-01-01": 364.293380099768, - "2032-01-01": 357.228515940698, - "2031-01-01": 350.34480214468, - "2030-01-01": 343.55166353019, - "2029-01-01": 336.849100097225, - "2028-01-01": 330.237111845787, - "2027-01-01": 323.534548412823, - "2026-01-01": 315.754140319693, - "2025-01-01": 311, - "2015-01-01": 311 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 545.776337549335, - "2034-01-01": 535.207873924784, - "2033-01-01": 524.769885159795, - "2032-01-01": 514.592846113931, - "2031-01-01": 504.676756787192, - "2030-01-01": 494.891142320016, - "2029-01-01": 485.236002712401, - "2028-01-01": 475.711337964349, - "2027-01-01": 466.056198356735, - "2026-01-01": 454.848407920329, - "2025-01-01": 448, - "2015-01-01": 448 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MI.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MI.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.MN", - "description": null, - "label": "MN", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 436.133769738084, - "2034-01-01": 427.68843496668, - "2033-01-01": 419.347363587515, - "2032-01-01": 411.214818992829, - "2031-01-01": 403.290801182623, - "2030-01-01": 395.471046764655, - "2029-01-01": 387.755555738928, - "2028-01-01": 380.14432810544, - "2027-01-01": 372.428837079712, - "2026-01-01": 363.472611686334, - "2025-01-01": 358, - "2015-01-01": 358 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 383.748987339376, - "2034-01-01": 376.318036353363, - "2033-01-01": 368.978825502981, - "2032-01-01": 361.823094923858, - "2031-01-01": 354.850844615995, - "2030-01-01": 347.970334443761, - "2029-01-01": 341.181564407157, - "2028-01-01": 334.484534506183, - "2027-01-01": 327.695764469579, - "2026-01-01": 319.815286818981, - "2025-01-01": 315, - "2015-01-01": 315 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 412.987005422376, - "2034-01-01": 404.989886742191, - "2033-01-01": 397.091497922256, - "2032-01-01": 389.390568822819, - "2031-01-01": 381.88709944388, - "2030-01-01": 374.482359925191, - "2029-01-01": 367.17635026675, - "2028-01-01": 359.969070468559, - "2027-01-01": 352.663060810119, - "2026-01-01": 344.182165814713, - "2025-01-01": 339, - "2015-01-01": 339 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 363.038724530584, - "2034-01-01": 356.00880899461, - "2033-01-01": 349.065682539328, - "2032-01-01": 342.296134245428, - "2031-01-01": 335.700164112909, - "2030-01-01": 329.190983061082, - "2029-01-01": 322.768591089946, - "2028-01-01": 316.4329881995, - "2027-01-01": 310.010596228364, - "2026-01-01": 302.555414197004, - "2025-01-01": 298, - "2015-01-01": 298 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 361.820473777126, - "2034-01-01": 354.814148561743, - "2033-01-01": 347.894321188525, - "2032-01-01": 341.147489499638, - "2031-01-01": 334.573653495081, - "2030-01-01": 328.086315332689, - "2029-01-01": 321.685475012462, - "2028-01-01": 315.371132534401, - "2027-01-01": 308.970292214175, - "2026-01-01": 301.540127572182, - "2025-01-01": 297, - "2015-01-01": 297 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 319.181697406084, - "2034-01-01": 313.001033411369, - "2033-01-01": 306.896673910416, - "2032-01-01": 300.944923396987, - "2031-01-01": 295.145781871081, - "2030-01-01": 289.422944838938, - "2029-01-01": 283.776412300556, - "2028-01-01": 278.206184255936, - "2027-01-01": 272.559651717555, - "2026-01-01": 266.005095703407, - "2025-01-01": 262, - "2015-01-01": 262 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 306.999189871501, - "2034-01-01": 301.054429082691, - "2033-01-01": 295.183060402385, - "2032-01-01": 289.458475939086, - "2031-01-01": 283.880675692796, - "2030-01-01": 278.376267555009, - "2029-01-01": 272.945251525726, - "2028-01-01": 267.587627604947, - "2027-01-01": 262.156611575663, - "2026-01-01": 255.852229455185, - "2025-01-01": 252, - "2015-01-01": 252 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 314.308694392251, - "2034-01-01": 308.222391679898, - "2033-01-01": 302.211228507203, - "2032-01-01": 296.350344413827, - "2031-01-01": 290.639739399767, - "2030-01-01": 285.004273925366, - "2029-01-01": 279.443947990624, - "2028-01-01": 273.95876159554, - "2027-01-01": 268.398435660798, - "2026-01-01": 261.943949204118, - "2025-01-01": 258, - "2015-01-01": 258 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 339.891960214876, - "2034-01-01": 333.310260770122, - "2033-01-01": 326.809816874069, - "2032-01-01": 320.471884075417, - "2031-01-01": 314.296462374167, - "2030-01-01": 308.202296221617, - "2029-01-01": 302.189385617768, - "2028-01-01": 296.257730562619, - "2027-01-01": 290.24481995877, - "2026-01-01": 283.264968325383, - "2025-01-01": 279, - "2015-01-01": 279 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MN.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MN.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.MO", - "description": null, - "label": "MO", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 427.606014463876, - "2034-01-01": 419.325811936605, - "2033-01-01": 411.147834131893, - "2032-01-01": 403.174305772299, - "2031-01-01": 395.405226857823, - "2030-01-01": 387.738372665905, - "2029-01-01": 380.173743196547, - "2028-01-01": 372.711338449747, - "2027-01-01": 365.146708980388, - "2026-01-01": 356.365605312579, - "2025-01-01": 351, - "2015-01-01": 351 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 470.244790834918, - "2034-01-01": 461.138927086979, - "2033-01-01": 452.145481410002, - "2032-01-01": 443.37687187495, - "2031-01-01": 434.833098481822, - "2030-01-01": 426.401743159656, - "2029-01-01": 418.082805908453, - "2028-01-01": 409.876286728212, - "2027-01-01": 401.557349477008, - "2026-01-01": 391.900637181355, - "2025-01-01": 386, - "2015-01-01": 386 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 344.764963228709, - "2034-01-01": 338.088902501593, - "2033-01-01": 331.495262277281, - "2032-01-01": 325.066463058577, - "2031-01-01": 318.802504845481, - "2030-01-01": 312.620967135189, - "2029-01-01": 306.5218499277, - "2028-01-01": 300.505153223015, - "2027-01-01": 294.406036015527, - "2026-01-01": 287.326114824672, - "2025-01-01": 283, - "2015-01-01": 283 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 402.022748641251, - "2034-01-01": 394.237942846381, - "2033-01-01": 386.549245765028, - "2032-01-01": 379.052766110708, - "2031-01-01": 371.748503883423, - "2030-01-01": 364.540350369654, - "2029-01-01": 357.428305569403, - "2028-01-01": 350.412369482668, - "2027-01-01": 343.300324682416, - "2026-01-01": 335.044586191314, - "2025-01-01": 330, - "2015-01-01": 330 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 432.479017477709, - "2034-01-01": 424.104453668076, - "2033-01-01": 415.833279535105, - "2032-01-01": 407.768884755459, - "2031-01-01": 399.911269329137, - "2030-01-01": 392.157043579477, - "2029-01-01": 384.506207506479, - "2028-01-01": 376.958761110143, - "2027-01-01": 369.307925037145, - "2026-01-01": 360.426751811868, - "2025-01-01": 355, - "2015-01-01": 355 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 306.999189871501, - "2034-01-01": 301.054429082691, - "2033-01-01": 295.183060402385, - "2032-01-01": 289.458475939086, - "2031-01-01": 283.880675692796, - "2030-01-01": 278.376267555009, - "2029-01-01": 272.945251525726, - "2028-01-01": 267.587627604947, - "2027-01-01": 262.156611575663, - "2026-01-01": 255.852229455185, - "2025-01-01": 252, - "2015-01-01": 252 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 384.967238092834, - "2034-01-01": 377.512696786231, - "2033-01-01": 370.150186853784, - "2032-01-01": 362.971739669648, - "2031-01-01": 355.977355233823, - "2030-01-01": 349.075002172154, - "2029-01-01": 342.26468048464, - "2028-01-01": 335.546390171282, - "2027-01-01": 328.736068483768, - "2026-01-01": 320.830573443803, - "2025-01-01": 316, - "2015-01-01": 316 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 366.693476790959, - "2034-01-01": 359.592790293214, - "2033-01-01": 352.579766591737, - "2032-01-01": 345.742068482798, - "2031-01-01": 339.079695966395, - "2030-01-01": 332.504986246261, - "2029-01-01": 326.017939322395, - "2028-01-01": 319.618555194797, - "2027-01-01": 313.131508270931, - "2026-01-01": 305.601274071471, - "2025-01-01": 301, - "2015-01-01": 301 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 414.205256175834, - "2034-01-01": 406.184547175059, - "2033-01-01": 398.262859273059, - "2032-01-01": 390.539213568609, - "2031-01-01": 383.013610061709, - "2030-01-01": 375.587027653583, - "2029-01-01": 368.259466344233, - "2028-01-01": 361.030926133658, - "2027-01-01": 353.703364824308, - "2026-01-01": 345.197452439535, - "2025-01-01": 340, - "2015-01-01": 340 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 423.951262203501, - "2034-01-01": 415.741830638002, - "2033-01-01": 407.633750079484, - "2032-01-01": 399.728371534929, - "2031-01-01": 392.025695004337, - "2030-01-01": 384.424369480727, - "2029-01-01": 376.924394964097, - "2028-01-01": 369.52577145445, - "2027-01-01": 362.025796937821, - "2026-01-01": 353.319745438113, - "2025-01-01": 348, - "2015-01-01": 348 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MO.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MO.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.MS", - "description": null, - "label": "MS", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 294.816682336917, - "2034-01-01": 289.107824754013, - "2033-01-01": 283.469446894354, - "2032-01-01": 277.972028481186, - "2031-01-01": 272.61556951451, - "2030-01-01": 267.32959027108, - "2029-01-01": 262.114090750895, - "2028-01-01": 256.969070953957, - "2027-01-01": 251.753571433772, - "2026-01-01": 245.699363206963, - "2025-01-01": 242, - "2015-01-01": 242 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 292.380180830001, - "2034-01-01": 286.718503888277, - "2033-01-01": 281.126724192747, - "2032-01-01": 275.674738989606, - "2031-01-01": 270.362548278853, - "2030-01-01": 265.120254814294, - "2029-01-01": 259.947858595929, - "2028-01-01": 254.845359623759, - "2027-01-01": 249.672963405394, - "2026-01-01": 243.668789957319, - "2025-01-01": 240, - "2015-01-01": 240 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 293.598431583459, - "2034-01-01": 287.913164321145, - "2033-01-01": 282.29808554355, - "2032-01-01": 276.823383735396, - "2031-01-01": 271.489058896682, - "2030-01-01": 266.224922542687, - "2029-01-01": 261.030974673412, - "2028-01-01": 255.907215288858, - "2027-01-01": 250.713267419583, - "2026-01-01": 244.684076582141, - "2025-01-01": 241, - "2015-01-01": 241 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 300.907936104209, - "2034-01-01": 295.081126918352, - "2033-01-01": 289.326253648369, - "2032-01-01": 283.715252210136, - "2031-01-01": 278.248122603653, - "2030-01-01": 272.852928913044, - "2029-01-01": 267.529671138311, - "2028-01-01": 262.278349279452, - "2027-01-01": 256.955091504718, - "2026-01-01": 250.775796331074, - "2025-01-01": 247, - "2015-01-01": 247 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 297.253183843834, - "2034-01-01": 291.497145619748, - "2033-01-01": 285.81216959596, - "2032-01-01": 280.269317972766, - "2031-01-01": 274.868590750167, - "2030-01-01": 269.538925727866, - "2029-01-01": 264.280322905861, - "2028-01-01": 259.092782284155, - "2027-01-01": 253.83417946215, - "2026-01-01": 247.729936456608, - "2025-01-01": 244, - "2015-01-01": 244 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 289.943679323084, - "2034-01-01": 284.329183022541, - "2033-01-01": 278.784001491141, - "2032-01-01": 273.377449498026, - "2031-01-01": 268.109527043196, - "2030-01-01": 262.910919357508, - "2029-01-01": 257.781626440963, - "2028-01-01": 252.721648293561, - "2027-01-01": 247.592355377015, - "2026-01-01": 241.638216707675, - "2025-01-01": 238, - "2015-01-01": 238 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MS.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MS.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.MT", - "description": null, - "label": "MT", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 321.618198913001, - "2034-01-01": 315.390354277105, - "2033-01-01": 309.239396612022, - "2032-01-01": 303.242212888567, - "2031-01-01": 297.398803106738, - "2030-01-01": 291.632280295724, - "2029-01-01": 285.942644455522, - "2028-01-01": 280.329895586134, - "2027-01-01": 274.640259745933, - "2026-01-01": 268.035668953051, - "2025-01-01": 264, - "2015-01-01": 264 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 471.463041588376, - "2034-01-01": 462.333587519846, - "2033-01-01": 453.316842760805, - "2032-01-01": 444.52551662074, - "2031-01-01": 435.959609099651, - "2030-01-01": 427.506410888049, - "2029-01-01": 419.165921985936, - "2028-01-01": 410.938142393311, - "2027-01-01": 402.597653491197, - "2026-01-01": 392.915923806177, - "2025-01-01": 387, - "2015-01-01": 387 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 391.058491860126, - "2034-01-01": 383.48599895057, - "2033-01-01": 376.0069936078, - "2032-01-01": 368.714963398598, - "2031-01-01": 361.609908322966, - "2030-01-01": 354.598340814118, - "2029-01-01": 347.680260872055, - "2028-01-01": 340.855668496777, - "2027-01-01": 333.937588554714, - "2026-01-01": 325.907006567914, - "2025-01-01": 321, - "2015-01-01": 321 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 439.788521998459, - "2034-01-01": 431.272416265283, - "2033-01-01": 422.861447639924, - "2032-01-01": 414.660753230199, - "2031-01-01": 406.670333036108, - "2030-01-01": 398.785049949834, - "2029-01-01": 391.004903971377, - "2028-01-01": 383.329895100737, - "2027-01-01": 375.54974912228, - "2026-01-01": 366.518471560801, - "2025-01-01": 361, - "2015-01-01": 361 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MT.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MT.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.NC", - "description": null, - "label": "NC", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 404.459250148168, - "2034-01-01": 396.627263712116, - "2033-01-01": 388.891968466634, - "2032-01-01": 381.350055602288, - "2031-01-01": 374.00152511908, - "2030-01-01": 366.74968582644, - "2029-01-01": 359.594537724369, - "2028-01-01": 352.536080812866, - "2027-01-01": 345.380932710795, - "2026-01-01": 337.075159440958, - "2025-01-01": 332, - "2015-01-01": 332 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 349.637966242542, - "2034-01-01": 342.867544233064, - "2033-01-01": 336.180707680494, - "2032-01-01": 329.661042041737, - "2031-01-01": 323.308547316795, - "2030-01-01": 317.03963804876, - "2029-01-01": 310.854314237632, - "2028-01-01": 304.752575883411, - "2027-01-01": 298.567252072283, - "2026-01-01": 291.387261323961, - "2025-01-01": 287, - "2015-01-01": 287 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 388.621990353209, - "2034-01-01": 381.096678084835, - "2033-01-01": 373.664270906193, - "2032-01-01": 366.417673907018, - "2031-01-01": 359.356887087309, - "2030-01-01": 352.389005357333, - "2029-01-01": 345.514028717089, - "2028-01-01": 338.731957166579, - "2027-01-01": 331.856980526336, - "2026-01-01": 323.87643331827, - "2025-01-01": 319, - "2015-01-01": 319 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 353.292718502917, - "2034-01-01": 346.451525531668, - "2033-01-01": 339.694791732903, - "2032-01-01": 333.106976279107, - "2031-01-01": 326.688079170281, - "2030-01-01": 320.353641233939, - "2029-01-01": 314.103662470081, - "2028-01-01": 307.938142878708, - "2027-01-01": 301.688164114851, - "2026-01-01": 294.433121198427, - "2025-01-01": 290, - "2015-01-01": 290 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 376.439482818626, - "2034-01-01": 369.150073756157, - "2033-01-01": 361.950657398162, - "2032-01-01": 354.931226449118, - "2031-01-01": 348.091780909023, - "2030-01-01": 341.342328073404, - "2029-01-01": 334.682867942259, - "2028-01-01": 328.113400515589, - "2027-01-01": 321.453940384445, - "2026-01-01": 313.723567070048, - "2025-01-01": 309, - "2015-01-01": 309 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 313.090443638792, - "2034-01-01": 307.02773124703, - "2033-01-01": 301.0398671564, - "2032-01-01": 295.201699668037, - "2031-01-01": 289.513228781939, - "2030-01-01": 283.899606196973, - "2029-01-01": 278.360831913141, - "2028-01-01": 272.896905930441, - "2027-01-01": 267.358131646609, - "2026-01-01": 260.928662579296, - "2025-01-01": 257, - "2015-01-01": 257 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 320.399948159542, - "2034-01-01": 314.195693844237, - "2033-01-01": 308.068035261219, - "2032-01-01": 302.093568142777, - "2031-01-01": 296.27229248891, - "2030-01-01": 290.527612567331, - "2029-01-01": 284.859528378039, - "2028-01-01": 279.268039921035, - "2027-01-01": 273.599955731744, - "2026-01-01": 267.020382328229, - "2025-01-01": 263, - "2015-01-01": 263 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 394.713244120501, - "2034-01-01": 387.069980249174, - "2033-01-01": 379.521077660209, - "2032-01-01": 372.160897635968, - "2031-01-01": 364.989440176452, - "2030-01-01": 357.912343999297, - "2029-01-01": 350.929609104505, - "2028-01-01": 344.041235492074, - "2027-01-01": 337.058500597282, - "2026-01-01": 328.952866442381, - "2025-01-01": 324, - "2015-01-01": 324 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 349.637966242542, - "2034-01-01": 342.867544233064, - "2033-01-01": 336.180707680494, - "2032-01-01": 329.661042041737, - "2031-01-01": 323.308547316795, - "2030-01-01": 317.03963804876, - "2029-01-01": 310.854314237632, - "2028-01-01": 304.752575883411, - "2027-01-01": 298.567252072283, - "2026-01-01": 291.387261323961, - "2025-01-01": 287, - "2015-01-01": 287 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 382.530736585917, - "2034-01-01": 375.123375920496, - "2033-01-01": 367.807464152178, - "2032-01-01": 360.674450178068, - "2031-01-01": 353.724333998166, - "2030-01-01": 346.865666715368, - "2029-01-01": 340.098448329674, - "2028-01-01": 333.422678841084, - "2027-01-01": 326.65546045539, - "2026-01-01": 318.800000194159, - "2025-01-01": 314, - "2015-01-01": 314 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 360.602223023667, - "2034-01-01": 353.619488128875, - "2033-01-01": 346.722959837722, - "2032-01-01": 339.998844753848, - "2031-01-01": 333.447142877252, - "2030-01-01": 326.981647604296, - "2029-01-01": 320.602358934979, - "2028-01-01": 314.309276869302, - "2027-01-01": 307.929988199986, - "2026-01-01": 300.52484094736, - "2025-01-01": 296, - "2015-01-01": 296 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 471.463041588376, - "2034-01-01": 462.333587519846, - "2033-01-01": 453.316842760805, - "2032-01-01": 444.52551662074, - "2031-01-01": 435.959609099651, - "2030-01-01": 427.506410888049, - "2029-01-01": 419.165921985936, - "2028-01-01": 410.938142393311, - "2027-01-01": 402.597653491197, - "2026-01-01": 392.915923806177, - "2025-01-01": 387, - "2015-01-01": 387 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 349.637966242542, - "2034-01-01": 342.867544233064, - "2033-01-01": 336.180707680494, - "2032-01-01": 329.661042041737, - "2031-01-01": 323.308547316795, - "2030-01-01": 317.03963804876, - "2029-01-01": 310.854314237632, - "2028-01-01": 304.752575883411, - "2027-01-01": 298.567252072283, - "2026-01-01": 291.387261323961, - "2025-01-01": 287, - "2015-01-01": 287 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 466.590038574543, - "2034-01-01": 457.554945788375, - "2033-01-01": 448.631397357593, - "2032-01-01": 439.93093763758, - "2031-01-01": 431.453566628336, - "2030-01-01": 423.087739974478, - "2029-01-01": 414.833457676004, - "2028-01-01": 406.690719732915, - "2027-01-01": 398.436437434441, - "2026-01-01": 388.854777306888, - "2025-01-01": 383, - "2015-01-01": 383 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 403.240999394709, - "2034-01-01": 395.432603279249, - "2033-01-01": 387.720607115831, - "2032-01-01": 380.201410856498, - "2031-01-01": 372.875014501252, - "2030-01-01": 365.645018098047, - "2029-01-01": 358.511421646886, - "2028-01-01": 351.474225147767, - "2027-01-01": 344.340628696606, - "2026-01-01": 336.059872816136, - "2025-01-01": 331, - "2015-01-01": 331 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 475.117793848751, - "2034-01-01": 465.91756881845, - "2033-01-01": 456.830926813214, - "2032-01-01": 447.97145085811, - "2031-01-01": 439.339140953136, - "2030-01-01": 430.820414073228, - "2029-01-01": 422.415270218385, - "2028-01-01": 414.123709388608, - "2027-01-01": 405.718565533765, - "2026-01-01": 395.961783680643, - "2025-01-01": 390, - "2015-01-01": 390 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NC.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NC.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.ND", - "description": null, - "label": "ND", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 360.602223023667, - "2034-01-01": 353.619488128875, - "2033-01-01": 346.722959837722, - "2032-01-01": 339.998844753848, - "2031-01-01": 333.447142877252, - "2030-01-01": 326.981647604296, - "2029-01-01": 320.602358934979, - "2028-01-01": 314.309276869302, - "2027-01-01": 307.929988199986, - "2026-01-01": 300.52484094736, - "2025-01-01": 296, - "2015-01-01": 296 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 327.709452680292, - "2034-01-01": 321.363656441444, - "2033-01-01": 315.096203366038, - "2032-01-01": 308.985436617517, - "2031-01-01": 303.031356195881, - "2030-01-01": 297.155618937688, - "2029-01-01": 291.358224842937, - "2028-01-01": 285.639173911629, - "2027-01-01": 279.841779816879, - "2026-01-01": 273.112102077162, - "2025-01-01": 269, - "2015-01-01": 269 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 383.748987339376, - "2034-01-01": 376.318036353363, - "2033-01-01": 368.978825502981, - "2032-01-01": 361.823094923858, - "2031-01-01": 354.850844615995, - "2030-01-01": 347.970334443761, - "2029-01-01": 341.181564407157, - "2028-01-01": 334.484534506183, - "2027-01-01": 327.695764469579, - "2026-01-01": 319.815286818981, - "2025-01-01": 315, - "2015-01-01": 315 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 427.606014463876, - "2034-01-01": 419.325811936605, - "2033-01-01": 411.147834131893, - "2032-01-01": 403.174305772299, - "2031-01-01": 395.405226857823, - "2030-01-01": 387.738372665905, - "2029-01-01": 380.173743196547, - "2028-01-01": 372.711338449747, - "2027-01-01": 365.146708980388, - "2026-01-01": 356.365605312579, - "2025-01-01": 351, - "2015-01-01": 351 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.ND.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.ND.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.NE", - "description": null, - "label": "NE", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 427.606014463876, - "2034-01-01": 419.325811936605, - "2033-01-01": 411.147834131893, - "2032-01-01": 403.174305772299, - "2031-01-01": 395.405226857823, - "2030-01-01": 387.738372665905, - "2029-01-01": 380.173743196547, - "2028-01-01": 372.711338449747, - "2027-01-01": 365.146708980388, - "2026-01-01": 356.365605312579, - "2025-01-01": 351, - "2015-01-01": 351 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 427.606014463876, - "2034-01-01": 419.325811936605, - "2033-01-01": 411.147834131893, - "2032-01-01": 403.174305772299, - "2031-01-01": 395.405226857823, - "2030-01-01": 387.738372665905, - "2029-01-01": 380.173743196547, - "2028-01-01": 372.711338449747, - "2027-01-01": 365.146708980388, - "2026-01-01": 356.365605312579, - "2025-01-01": 351, - "2015-01-01": 351 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 448.316277272668, - "2034-01-01": 439.635039295358, - "2033-01-01": 431.060977095546, - "2032-01-01": 422.701266450729, - "2031-01-01": 414.555907360908, - "2030-01-01": 406.517724048584, - "2029-01-01": 398.586716513758, - "2028-01-01": 390.76288475643, - "2027-01-01": 382.831877221604, - "2026-01-01": 373.625477934556, - "2025-01-01": 368, - "2015-01-01": 368 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 514.101817959418, - "2034-01-01": 504.14670267022, - "2033-01-01": 494.314490038914, - "2032-01-01": 484.728082723391, - "2031-01-01": 475.38748072365, - "2030-01-01": 466.169781381801, - "2029-01-01": 457.074984697842, - "2028-01-01": 448.103090671775, - "2027-01-01": 439.008293987817, - "2026-01-01": 428.450955674953, - "2025-01-01": 422, - "2015-01-01": 422 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NE.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NE.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.NH", - "description": null, - "label": "NH", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 238.777147677834, - "2034-01-01": 234.153444842093, - "2033-01-01": 229.58682475741, - "2032-01-01": 225.134370174845, - "2031-01-01": 220.796081094397, - "2030-01-01": 216.514874765007, - "2029-01-01": 212.290751186676, - "2028-01-01": 208.123710359403, - "2027-01-01": 203.899586781072, - "2026-01-01": 198.996178465144, - "2025-01-01": 196, - "2015-01-01": 196 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NH.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NH.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.NJ", - "description": null, - "label": "NJ", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 355.729220009834, - "2034-01-01": 348.840846397404, - "2033-01-01": 342.037514434509, - "2032-01-01": 335.404265770687, - "2031-01-01": 328.941100405938, - "2030-01-01": 322.562976690725, - "2029-01-01": 316.269894625047, - "2028-01-01": 310.061854208906, - "2027-01-01": 303.768772143229, - "2026-01-01": 296.463694448071, - "2025-01-01": 292, - "2015-01-01": 292 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NJ.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NJ.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.NM", - "description": null, - "label": "NM", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 327.709452680292, - "2034-01-01": 321.363656441444, - "2033-01-01": 315.096203366038, - "2032-01-01": 308.985436617517, - "2031-01-01": 303.031356195881, - "2030-01-01": 297.155618937688, - "2029-01-01": 291.358224842937, - "2028-01-01": 285.639173911629, - "2027-01-01": 279.841779816879, - "2026-01-01": 273.112102077162, - "2025-01-01": 269, - "2015-01-01": 269 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 400.804497887793, - "2034-01-01": 393.043282413513, - "2033-01-01": 385.377884414224, - "2032-01-01": 377.904121364918, - "2031-01-01": 370.621993265594, - "2030-01-01": 363.435682641262, - "2029-01-01": 356.34518949192, - "2028-01-01": 349.350513817569, - "2027-01-01": 342.260020668227, - "2026-01-01": 334.029299566491, - "2025-01-01": 329, - "2015-01-01": 329 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 380.094235079001, - "2034-01-01": 372.73405505476, - "2033-01-01": 365.464741450572, - "2032-01-01": 358.377160686488, - "2031-01-01": 351.471312762509, - "2030-01-01": 344.656331258582, - "2029-01-01": 337.932216174708, - "2028-01-01": 331.298967510886, - "2027-01-01": 324.574852427012, - "2026-01-01": 316.769426944515, - "2025-01-01": 312, - "2015-01-01": 312 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 410.550503915459, - "2034-01-01": 402.600565876455, - "2033-01-01": 394.748775220649, - "2032-01-01": 387.093279331239, - "2031-01-01": 379.634078208223, - "2030-01-01": 372.273024468405, - "2029-01-01": 365.010118111784, - "2028-01-01": 357.845359138361, - "2027-01-01": 350.58245278174, - "2026-01-01": 342.151592565069, - "2025-01-01": 337, - "2015-01-01": 337 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 434.915518984626, - "2034-01-01": 426.493774533812, - "2033-01-01": 418.176002236712, - "2032-01-01": 410.066174247039, - "2031-01-01": 402.164290564794, - "2030-01-01": 394.366379036263, - "2029-01-01": 386.672439661445, - "2028-01-01": 379.082472440341, - "2027-01-01": 371.388533065523, - "2026-01-01": 362.457325061512, - "2025-01-01": 357, - "2015-01-01": 357 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NM.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NM.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.NY", - "description": null, - "label": "NY", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 805.26374803596, - "2034-01-01": 789.670546125629, - "2033-01-01": 774.269852880858, - "2032-01-01": 759.254176967207, - "2031-01-01": 744.623518384675, - "2030-01-01": 730.185368467702, - "2029-01-01": 715.939727216289, - "2028-01-01": 701.886594630435, - "2027-01-01": 687.640953379022, - "2026-01-01": 671.104459007449, - "2025-01-01": 661, - "2015-01-01": 661 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 682.220421936668, - "2034-01-01": 669.009842405979, - "2033-01-01": 655.962356449744, - "2032-01-01": 643.241057642414, - "2031-01-01": 630.845945983991, - "2030-01-01": 618.61392790002, - "2029-01-01": 606.545003390502, - "2028-01-01": 594.639172455437, - "2027-01-01": 582.570247945919, - "2026-01-01": 568.560509900411, - "2025-01-01": 560, - "2015-01-01": 560 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 925.870572628335, - "2034-01-01": 907.941928979544, - "2033-01-01": 890.234626610367, - "2032-01-01": 872.970006800419, - "2031-01-01": 856.148069549701, - "2030-01-01": 839.547473578598, - "2029-01-01": 823.168218887109, - "2028-01-01": 807.010305475235, - "2027-01-01": 790.631050783747, - "2026-01-01": 771.617834864843, - "2025-01-01": 760, - "2015-01-01": 760 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 1072.06066304334, - "2034-01-01": 1051.30118092368, - "2033-01-01": 1030.79798870674, - "2032-01-01": 1010.80737629522, - "2031-01-01": 991.329343689128, - "2030-01-01": 972.107600985745, - "2029-01-01": 953.142148185074, - "2028-01-01": 934.432985287115, - "2027-01-01": 915.467532486444, - "2026-01-01": 893.452229843503, - "2025-01-01": 880, - "2015-01-01": 880 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 840.593019886252, - "2034-01-01": 824.315698678796, - "2033-01-01": 808.239332054149, - "2032-01-01": 792.564874595117, - "2031-01-01": 777.292326301703, - "2030-01-01": 762.220732591096, - "2029-01-01": 747.350093463297, - "2028-01-01": 732.680408918306, - "2027-01-01": 717.809769790507, - "2026-01-01": 700.547771127292, - "2025-01-01": 690, - "2015-01-01": 690 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 784.553485227168, - "2034-01-01": 769.361318766876, - "2033-01-01": 754.356709917205, - "2032-01-01": 739.727216288776, - "2031-01-01": 725.472837881589, - "2030-01-01": 711.406017085023, - "2029-01-01": 697.526753899077, - "2028-01-01": 683.835048323752, - "2027-01-01": 669.955785137807, - "2026-01-01": 653.844586385473, - "2025-01-01": 644, - "2015-01-01": 644 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 1109.82643640054, - "2034-01-01": 1088.33565434258, - "2033-01-01": 1067.11019058164, - "2032-01-01": 1046.41536341471, - "2031-01-01": 1026.25117284181, - "2030-01-01": 1006.35230056592, - "2029-01-01": 986.718746587048, - "2028-01-01": 967.350510905184, - "2027-01-01": 947.716956926307, - "2026-01-01": 924.92611521299, - "2025-01-01": 911, - "2015-01-01": 911 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 947.799086190585, - "2034-01-01": 929.445816771164, - "2033-01-01": 911.319130924823, - "2032-01-01": 893.64561222464, - "2031-01-01": 876.425260670615, - "2030-01-01": 859.43149268967, - "2029-01-01": 842.664308281804, - "2028-01-01": 826.123707447017, - "2027-01-01": 809.356523039151, - "2026-01-01": 789.892994111642, - "2025-01-01": 778, - "2015-01-01": 778 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NY.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NY.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.NV", - "description": null, - "label": "NV", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 277.761171788501, - "2034-01-01": 272.382578693863, - "2033-01-01": 267.07038798311, - "2032-01-01": 261.891002040126, - "2031-01-01": 256.84442086491, - "2030-01-01": 251.864242073579, - "2029-01-01": 246.950465666133, - "2028-01-01": 242.103091642571, - "2027-01-01": 237.189315235124, - "2026-01-01": 231.485350459453, - "2025-01-01": 228, - "2015-01-01": 228 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 349.637966242542, - "2034-01-01": 342.867544233064, - "2033-01-01": 336.180707680494, - "2032-01-01": 329.661042041737, - "2031-01-01": 323.308547316795, - "2030-01-01": 317.03963804876, - "2029-01-01": 310.854314237632, - "2028-01-01": 304.752575883411, - "2027-01-01": 298.567252072283, - "2026-01-01": 291.387261323961, - "2025-01-01": 287, - "2015-01-01": 287 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 415.423506929293, - "2034-01-01": 407.379207607927, - "2033-01-01": 399.434220623862, - "2032-01-01": 391.687858314399, - "2031-01-01": 384.140120679537, - "2030-01-01": 376.691695381976, - "2029-01-01": 369.342582421716, - "2028-01-01": 362.092781798757, - "2027-01-01": 354.743668838497, - "2026-01-01": 346.212739064357, - "2025-01-01": 341, - "2015-01-01": 341 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 486.082050629876, - "2034-01-01": 476.66951271426, - "2033-01-01": 467.373178970442, - "2032-01-01": 458.30925357022, - "2031-01-01": 449.477736513593, - "2030-01-01": 440.762423628764, - "2029-01-01": 432.163314915732, - "2028-01-01": 423.680410374499, - "2027-01-01": 415.081301661467, - "2026-01-01": 405.099363304043, - "2025-01-01": 399, - "2015-01-01": 399 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.NV.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.NV.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.OH", - "description": null, - "label": "OH", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 324.054700419917, - "2034-01-01": 317.77967514284, - "2033-01-01": 311.582119313628, - "2032-01-01": 305.539502380147, - "2031-01-01": 299.651824342395, - "2030-01-01": 293.841615752509, - "2029-01-01": 288.108876610488, - "2028-01-01": 282.453606916332, - "2027-01-01": 276.720867774311, - "2026-01-01": 270.066242202695, - "2025-01-01": 266, - "2015-01-01": 266 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 325.272951173376, - "2034-01-01": 318.974335575708, - "2033-01-01": 312.753480664431, - "2032-01-01": 306.688147125937, - "2031-01-01": 300.778334960224, - "2030-01-01": 294.946283480902, - "2029-01-01": 289.191992687971, - "2028-01-01": 283.515462581431, - "2027-01-01": 277.761171788501, - "2026-01-01": 271.081528827517, - "2025-01-01": 267, - "2015-01-01": 267 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 348.419715489084, - "2034-01-01": 341.672883800197, - "2033-01-01": 335.009346329691, - "2032-01-01": 328.512397295947, - "2031-01-01": 322.182036698967, - "2030-01-01": 315.934970320367, - "2029-01-01": 309.771198160149, - "2028-01-01": 303.690720218312, - "2027-01-01": 297.526948058094, - "2026-01-01": 290.371974699138, - "2025-01-01": 286, - "2015-01-01": 286 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 299.689685350751, - "2034-01-01": 293.886466485484, - "2033-01-01": 288.154892297566, - "2032-01-01": 282.566607464346, - "2031-01-01": 277.121611985824, - "2030-01-01": 271.748261184652, - "2029-01-01": 266.446555060828, - "2028-01-01": 261.216493614353, - "2027-01-01": 255.914787490529, - "2026-01-01": 249.760509706252, - "2025-01-01": 246, - "2015-01-01": 246 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 304.562688364584, - "2034-01-01": 298.665108216955, - "2033-01-01": 292.840337700778, - "2032-01-01": 287.161186447506, - "2031-01-01": 281.627654457139, - "2030-01-01": 276.166932098223, - "2029-01-01": 270.77901937076, - "2028-01-01": 265.463916274748, - "2027-01-01": 260.076003547285, - "2026-01-01": 253.821656205541, - "2025-01-01": 250, - "2015-01-01": 250 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 302.126186857667, - "2034-01-01": 296.275787351219, - "2033-01-01": 290.497614999172, - "2032-01-01": 284.863896955926, - "2031-01-01": 279.374633221482, - "2030-01-01": 273.957596641437, - "2029-01-01": 268.612787215794, - "2028-01-01": 263.34020494455, - "2027-01-01": 257.995395518907, - "2026-01-01": 251.791082955896, - "2025-01-01": 248, - "2015-01-01": 248 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 374.002981311709, - "2034-01-01": 366.760752890421, - "2033-01-01": 359.607934696556, - "2032-01-01": 352.633936957538, - "2031-01-01": 345.838759673366, - "2030-01-01": 339.132992616618, - "2029-01-01": 332.516635787293, - "2028-01-01": 325.989689185391, - "2027-01-01": 319.373332356066, - "2026-01-01": 311.692993820404, - "2025-01-01": 307, - "2015-01-01": 307 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 342.328461721792, - "2034-01-01": 335.699581635858, - "2033-01-01": 329.152539575675, - "2032-01-01": 322.769173566997, - "2031-01-01": 316.549483609824, - "2030-01-01": 310.411631678403, - "2029-01-01": 304.355617772734, - "2028-01-01": 298.381441892817, - "2027-01-01": 292.325427987149, - "2026-01-01": 285.295541575028, - "2025-01-01": 281, - "2015-01-01": 281 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 366.693476790959, - "2034-01-01": 359.592790293214, - "2033-01-01": 352.579766591737, - "2032-01-01": 345.742068482798, - "2031-01-01": 339.079695966395, - "2030-01-01": 332.504986246261, - "2029-01-01": 326.017939322395, - "2028-01-01": 319.618555194797, - "2027-01-01": 313.131508270931, - "2026-01-01": 305.601274071471, - "2025-01-01": 301, - "2015-01-01": 301 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 317.963446652626, - "2034-01-01": 311.806372978501, - "2033-01-01": 305.725312559613, - "2032-01-01": 299.796278651197, - "2031-01-01": 294.019271253253, - "2030-01-01": 288.318277110545, - "2029-01-01": 282.693296223073, - "2028-01-01": 277.144328590837, - "2027-01-01": 271.519347703366, - "2026-01-01": 264.989809078584, - "2025-01-01": 261, - "2015-01-01": 261 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 296.034933090376, - "2034-01-01": 290.30248518688, - "2033-01-01": 284.640808245157, - "2032-01-01": 279.120673226976, - "2031-01-01": 273.742080132339, - "2030-01-01": 268.434257999473, - "2029-01-01": 263.197206828378, - "2028-01-01": 258.030926619056, - "2027-01-01": 252.793875447961, - "2026-01-01": 246.714649831785, - "2025-01-01": 243, - "2015-01-01": 243 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 305.780939118042, - "2034-01-01": 299.859768649823, - "2033-01-01": 294.011699051582, - "2032-01-01": 288.309831193296, - "2031-01-01": 282.754165074967, - "2030-01-01": 277.271599826616, - "2029-01-01": 271.862135448243, - "2028-01-01": 266.525771939847, - "2027-01-01": 261.116307561474, - "2026-01-01": 254.836942830363, - "2025-01-01": 251, - "2015-01-01": 251 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 302.126186857667, - "2034-01-01": 296.275787351219, - "2033-01-01": 290.497614999172, - "2032-01-01": 284.863896955926, - "2031-01-01": 279.374633221482, - "2030-01-01": 273.957596641437, - "2029-01-01": 268.612787215794, - "2028-01-01": 263.34020494455, - "2027-01-01": 257.995395518907, - "2026-01-01": 251.791082955896, - "2025-01-01": 248, - "2015-01-01": 248 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 343.546712475251, - "2034-01-01": 336.894242068725, - "2033-01-01": 330.323900926478, - "2032-01-01": 323.917818312787, - "2031-01-01": 317.675994227652, - "2030-01-01": 311.516299406796, - "2029-01-01": 305.438733850217, - "2028-01-01": 299.443297557916, - "2027-01-01": 293.365732001338, - "2026-01-01": 286.31082819985, - "2025-01-01": 282, - "2015-01-01": 282 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 315.526945145709, - "2034-01-01": 309.417052112766, - "2033-01-01": 303.382589858006, - "2032-01-01": 297.498989159617, - "2031-01-01": 291.766250017596, - "2030-01-01": 286.108941653759, - "2029-01-01": 280.527064068107, - "2028-01-01": 275.020617260639, - "2027-01-01": 269.438739674987, - "2026-01-01": 262.95923582894, - "2025-01-01": 259, - "2015-01-01": 259 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 336.237207954501, - "2034-01-01": 329.726279471518, - "2033-01-01": 323.295732821659, - "2032-01-01": 317.025949838047, - "2031-01-01": 310.916930520681, - "2030-01-01": 304.888293036438, - "2029-01-01": 298.940037385319, - "2028-01-01": 293.072163567322, - "2027-01-01": 287.123907916203, - "2026-01-01": 280.219108450917, - "2025-01-01": 276, - "2015-01-01": 276 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 394.713244120501, - "2034-01-01": 387.069980249174, - "2033-01-01": 379.521077660209, - "2032-01-01": 372.160897635968, - "2031-01-01": 364.989440176452, - "2030-01-01": 357.912343999297, - "2029-01-01": 350.929609104505, - "2028-01-01": 344.041235492074, - "2027-01-01": 337.058500597282, - "2026-01-01": 328.952866442381, - "2025-01-01": 324, - "2015-01-01": 324 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OH.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OH.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.OK", - "description": null, - "label": "OK", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 415.423506929293, - "2034-01-01": 407.379207607927, - "2033-01-01": 399.434220623862, - "2032-01-01": 391.687858314399, - "2031-01-01": 384.140120679537, - "2030-01-01": 376.691695381976, - "2029-01-01": 369.342582421716, - "2028-01-01": 362.092781798757, - "2027-01-01": 354.743668838497, - "2026-01-01": 346.212739064357, - "2025-01-01": 341, - "2015-01-01": 341 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 400.804497887793, - "2034-01-01": 393.043282413513, - "2033-01-01": 385.377884414224, - "2032-01-01": 377.904121364918, - "2031-01-01": 370.621993265594, - "2030-01-01": 363.435682641262, - "2029-01-01": 356.34518949192, - "2028-01-01": 349.350513817569, - "2027-01-01": 342.260020668227, - "2026-01-01": 334.029299566491, - "2025-01-01": 329, - "2015-01-01": 329 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 326.491201926834, - "2034-01-01": 320.168996008576, - "2033-01-01": 313.924842015235, - "2032-01-01": 307.836791871727, - "2031-01-01": 301.904845578053, - "2030-01-01": 296.050951209295, - "2029-01-01": 290.275108765454, - "2028-01-01": 284.57731824653, - "2027-01-01": 278.80147580269, - "2026-01-01": 272.09681545234, - "2025-01-01": 268, - "2015-01-01": 268 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 338.673709461417, - "2034-01-01": 332.115600337254, - "2033-01-01": 325.638455523266, - "2032-01-01": 319.323239329627, - "2031-01-01": 313.169951756338, - "2030-01-01": 307.097628493224, - "2029-01-01": 301.106269540285, - "2028-01-01": 295.19587489752, - "2027-01-01": 289.204515944581, - "2026-01-01": 282.249681700561, - "2025-01-01": 278, - "2015-01-01": 278 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 451.971029533043, - "2034-01-01": 443.219020593961, - "2033-01-01": 434.575061147955, - "2032-01-01": 426.147200688099, - "2031-01-01": 417.935439214394, - "2030-01-01": 409.831727233763, - "2029-01-01": 401.836064746207, - "2028-01-01": 393.948451751727, - "2027-01-01": 385.952789264171, - "2026-01-01": 376.671337809022, - "2025-01-01": 371, - "2015-01-01": 371 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OK.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OK.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.OR", - "description": null, - "label": "OR", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 282.634174802334, - "2034-01-01": 277.161220425334, - "2033-01-01": 271.755833386322, - "2032-01-01": 266.485581023286, - "2031-01-01": 261.350463336225, - "2030-01-01": 256.282912987151, - "2029-01-01": 251.282929976065, - "2028-01-01": 246.350514302967, - "2027-01-01": 241.350531291881, - "2026-01-01": 235.546496958742, - "2025-01-01": 232, - "2015-01-01": 232 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 317.963446652626, - "2034-01-01": 311.806372978501, - "2033-01-01": 305.725312559613, - "2032-01-01": 299.796278651197, - "2031-01-01": 294.019271253253, - "2030-01-01": 288.318277110545, - "2029-01-01": 282.693296223073, - "2028-01-01": 277.144328590837, - "2027-01-01": 271.519347703366, - "2026-01-01": 264.989809078584, - "2025-01-01": 261, - "2015-01-01": 261 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 304.562688364584, - "2034-01-01": 298.665108216955, - "2033-01-01": 292.840337700778, - "2032-01-01": 287.161186447506, - "2031-01-01": 281.627654457139, - "2030-01-01": 276.166932098223, - "2029-01-01": 270.77901937076, - "2028-01-01": 265.463916274748, - "2027-01-01": 260.076003547285, - "2026-01-01": 253.821656205541, - "2025-01-01": 250, - "2015-01-01": 250 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 331.364204940667, - "2034-01-01": 324.947637740047, - "2033-01-01": 318.610287418447, - "2032-01-01": 312.431370854887, - "2031-01-01": 306.410888049367, - "2030-01-01": 300.469622122867, - "2029-01-01": 294.607573075387, - "2028-01-01": 288.824740906926, - "2027-01-01": 282.962691859446, - "2026-01-01": 276.157961951628, - "2025-01-01": 272, - "2015-01-01": 272 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 360.602223023667, - "2034-01-01": 353.619488128875, - "2033-01-01": 346.722959837722, - "2032-01-01": 339.998844753848, - "2031-01-01": 333.447142877252, - "2030-01-01": 326.981647604296, - "2029-01-01": 320.602358934979, - "2028-01-01": 314.309276869302, - "2027-01-01": 307.929988199986, - "2026-01-01": 300.52484094736, - "2025-01-01": 296, - "2015-01-01": 296 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 376.439482818626, - "2034-01-01": 369.150073756157, - "2033-01-01": 361.950657398162, - "2032-01-01": 354.931226449118, - "2031-01-01": 348.091780909023, - "2030-01-01": 341.342328073404, - "2029-01-01": 334.682867942259, - "2028-01-01": 328.113400515589, - "2027-01-01": 321.453940384445, - "2026-01-01": 313.723567070048, - "2025-01-01": 309, - "2015-01-01": 309 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 350.856216996001, - "2034-01-01": 344.062204665932, - "2033-01-01": 337.352069031297, - "2032-01-01": 330.809686787527, - "2031-01-01": 324.435057934624, - "2030-01-01": 318.144305777153, - "2029-01-01": 311.937430315115, - "2028-01-01": 305.81443154851, - "2027-01-01": 299.607556086473, - "2026-01-01": 292.402547948783, - "2025-01-01": 288, - "2015-01-01": 288 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.OR.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.OR.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.PA", - "description": null, - "label": "PA", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 297.253183843834, - "2034-01-01": 291.497145619748, - "2033-01-01": 285.81216959596, - "2032-01-01": 280.269317972766, - "2031-01-01": 274.868590750167, - "2030-01-01": 269.538925727866, - "2029-01-01": 264.280322905861, - "2028-01-01": 259.092782284155, - "2027-01-01": 253.83417946215, - "2026-01-01": 247.729936456608, - "2025-01-01": 244, - "2015-01-01": 244 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 503.137561178293, - "2034-01-01": 493.39475877441, - "2033-01-01": 483.772237881686, - "2032-01-01": 474.39028001128, - "2031-01-01": 465.248885163193, - "2030-01-01": 456.227771826265, - "2029-01-01": 447.326940000495, - "2028-01-01": 438.546389685885, - "2027-01-01": 429.645557860115, - "2026-01-01": 419.313376051553, - "2025-01-01": 413, - "2015-01-01": 413 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 354.510969256376, - "2034-01-01": 347.646185964536, - "2033-01-01": 340.866153083706, - "2032-01-01": 334.255621024897, - "2031-01-01": 327.814589788109, - "2030-01-01": 321.458308962332, - "2029-01-01": 315.186778547564, - "2028-01-01": 308.999998543807, - "2027-01-01": 302.72846812904, - "2026-01-01": 295.448407823249, - "2025-01-01": 291, - "2015-01-01": 291 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 282.634174802334, - "2034-01-01": 277.161220425334, - "2033-01-01": 271.755833386322, - "2032-01-01": 266.485581023286, - "2031-01-01": 261.350463336225, - "2030-01-01": 256.282912987151, - "2029-01-01": 251.282929976065, - "2028-01-01": 246.350514302967, - "2027-01-01": 241.350531291881, - "2026-01-01": 235.546496958742, - "2025-01-01": 232, - "2015-01-01": 232 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 311.872192885334, - "2034-01-01": 305.833070814162, - "2033-01-01": 299.868505805597, - "2032-01-01": 294.053054922247, - "2031-01-01": 288.38671816411, - "2030-01-01": 282.79493846858, - "2029-01-01": 277.277715835658, - "2028-01-01": 271.835050265342, - "2027-01-01": 266.31782763242, - "2026-01-01": 259.913375954474, - "2025-01-01": 256, - "2015-01-01": 256 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 394.713244120501, - "2034-01-01": 387.069980249174, - "2033-01-01": 379.521077660209, - "2032-01-01": 372.160897635968, - "2031-01-01": 364.989440176452, - "2030-01-01": 357.912343999297, - "2029-01-01": 350.929609104505, - "2028-01-01": 344.041235492074, - "2027-01-01": 337.058500597282, - "2026-01-01": 328.952866442381, - "2025-01-01": 324, - "2015-01-01": 324 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 336.237207954501, - "2034-01-01": 329.726279471518, - "2033-01-01": 323.295732821659, - "2032-01-01": 317.025949838047, - "2031-01-01": 310.916930520681, - "2030-01-01": 304.888293036438, - "2029-01-01": 298.940037385319, - "2028-01-01": 293.072163567322, - "2027-01-01": 287.123907916203, - "2026-01-01": 280.219108450917, - "2025-01-01": 276, - "2015-01-01": 276 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 265.578664253917, - "2034-01-01": 260.435974365185, - "2033-01-01": 255.356774475079, - "2032-01-01": 250.404554582226, - "2031-01-01": 245.579314686625, - "2030-01-01": 240.817564789651, - "2029-01-01": 236.119304891302, - "2028-01-01": 231.484534991581, - "2027-01-01": 226.786275093233, - "2026-01-01": 221.332484211231, - "2025-01-01": 218, - "2015-01-01": 218 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 621.307884263751, - "2034-01-01": 609.276820762588, - "2033-01-01": 597.394288909588, - "2032-01-01": 585.808820352913, - "2031-01-01": 574.520415092563, - "2030-01-01": 563.380541480375, - "2029-01-01": 552.38919951635, - "2028-01-01": 541.546389200487, - "2027-01-01": 530.555047236462, - "2026-01-01": 517.796178659303, - "2025-01-01": 510, - "2015-01-01": 510 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PA.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PA.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.RI", - "description": null, - "label": "RI", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 309.435691378417, - "2034-01-01": 303.443749948426, - "2033-01-01": 297.525783103991, - "2032-01-01": 291.755765430666, - "2031-01-01": 286.133696928453, - "2030-01-01": 280.585603011795, - "2029-01-01": 275.111483680692, - "2028-01-01": 269.711338935144, - "2027-01-01": 264.237219604042, - "2026-01-01": 257.882802704829, - "2025-01-01": 254, - "2015-01-01": 254 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.RI.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.RI.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.SC", - "description": null, - "label": "SC", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 296.034933090376, - "2034-01-01": 290.30248518688, - "2033-01-01": 284.640808245157, - "2032-01-01": 279.120673226976, - "2031-01-01": 273.742080132339, - "2030-01-01": 268.434257999473, - "2029-01-01": 263.197206828378, - "2028-01-01": 258.030926619056, - "2027-01-01": 252.793875447961, - "2026-01-01": 246.714649831785, - "2025-01-01": 243, - "2015-01-01": 243 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 324.054700419917, - "2034-01-01": 317.77967514284, - "2033-01-01": 311.582119313628, - "2032-01-01": 305.539502380147, - "2031-01-01": 299.651824342395, - "2030-01-01": 293.841615752509, - "2029-01-01": 288.108876610488, - "2028-01-01": 282.453606916332, - "2027-01-01": 276.720867774311, - "2026-01-01": 270.066242202695, - "2025-01-01": 266, - "2015-01-01": 266 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 322.836449666459, - "2034-01-01": 316.585014709972, - "2033-01-01": 310.410757962825, - "2032-01-01": 304.390857634357, - "2031-01-01": 298.525313724567, - "2030-01-01": 292.736948024116, - "2029-01-01": 287.025760533005, - "2028-01-01": 281.391751251233, - "2027-01-01": 275.680563760122, - "2026-01-01": 269.050955577873, - "2025-01-01": 265, - "2015-01-01": 265 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 380.094235079001, - "2034-01-01": 372.73405505476, - "2033-01-01": 365.464741450572, - "2032-01-01": 358.377160686488, - "2031-01-01": 351.471312762509, - "2030-01-01": 344.656331258582, - "2029-01-01": 337.932216174708, - "2028-01-01": 331.298967510886, - "2027-01-01": 324.574852427012, - "2026-01-01": 316.769426944515, - "2025-01-01": 312, - "2015-01-01": 312 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 322.836449666459, - "2034-01-01": 316.585014709972, - "2033-01-01": 310.410757962825, - "2032-01-01": 304.390857634357, - "2031-01-01": 298.525313724567, - "2030-01-01": 292.736948024116, - "2029-01-01": 287.025760533005, - "2028-01-01": 281.391751251233, - "2027-01-01": 275.680563760122, - "2026-01-01": 269.050955577873, - "2025-01-01": 265, - "2015-01-01": 265 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 326.491201926834, - "2034-01-01": 320.168996008576, - "2033-01-01": 313.924842015235, - "2032-01-01": 307.836791871727, - "2031-01-01": 301.904845578053, - "2030-01-01": 296.050951209295, - "2029-01-01": 290.275108765454, - "2028-01-01": 284.57731824653, - "2027-01-01": 278.80147580269, - "2026-01-01": 272.09681545234, - "2025-01-01": 268, - "2015-01-01": 268 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 355.729220009834, - "2034-01-01": 348.840846397404, - "2033-01-01": 342.037514434509, - "2032-01-01": 335.404265770687, - "2031-01-01": 328.941100405938, - "2030-01-01": 322.562976690725, - "2029-01-01": 316.269894625047, - "2028-01-01": 310.061854208906, - "2027-01-01": 303.768772143229, - "2026-01-01": 296.463694448071, - "2025-01-01": 292, - "2015-01-01": 292 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 336.237207954501, - "2034-01-01": 329.726279471518, - "2033-01-01": 323.295732821659, - "2032-01-01": 317.025949838047, - "2031-01-01": 310.916930520681, - "2030-01-01": 304.888293036438, - "2029-01-01": 298.940037385319, - "2028-01-01": 293.072163567322, - "2027-01-01": 287.123907916203, - "2026-01-01": 280.219108450917, - "2025-01-01": 276, - "2015-01-01": 276 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 291.161930076542, - "2034-01-01": 285.523843455409, - "2033-01-01": 279.955362841944, - "2032-01-01": 274.526094243816, - "2031-01-01": 269.236037661025, - "2030-01-01": 264.015587085901, - "2029-01-01": 258.864742518446, - "2028-01-01": 253.78350395866, - "2027-01-01": 248.632659391205, - "2026-01-01": 242.653503332497, - "2025-01-01": 239, - "2015-01-01": 239 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 427.606014463876, - "2034-01-01": 419.325811936605, - "2033-01-01": 411.147834131893, - "2032-01-01": 403.174305772299, - "2031-01-01": 395.405226857823, - "2030-01-01": 387.738372665905, - "2029-01-01": 380.173743196547, - "2028-01-01": 372.711338449747, - "2027-01-01": 365.146708980388, - "2026-01-01": 356.365605312579, - "2025-01-01": 351, - "2015-01-01": 351 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 360.602223023667, - "2034-01-01": 353.619488128875, - "2033-01-01": 346.722959837722, - "2032-01-01": 339.998844753848, - "2031-01-01": 333.447142877252, - "2030-01-01": 326.981647604296, - "2029-01-01": 320.602358934979, - "2028-01-01": 314.309276869302, - "2027-01-01": 307.929988199986, - "2026-01-01": 300.52484094736, - "2025-01-01": 296, - "2015-01-01": 296 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 358.165721516751, - "2034-01-01": 351.230167263139, - "2033-01-01": 344.380237136115, - "2032-01-01": 337.701555262267, - "2031-01-01": 331.194121641595, - "2030-01-01": 324.77231214751, - "2029-01-01": 318.436126780013, - "2028-01-01": 312.185565539104, - "2027-01-01": 305.849380171607, - "2026-01-01": 298.494267697716, - "2025-01-01": 294, - "2015-01-01": 294 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 342.328461721792, - "2034-01-01": 335.699581635858, - "2033-01-01": 329.152539575675, - "2032-01-01": 322.769173566997, - "2031-01-01": 316.549483609824, - "2030-01-01": 310.411631678403, - "2029-01-01": 304.355617772734, - "2028-01-01": 298.381441892817, - "2027-01-01": 292.325427987149, - "2026-01-01": 285.295541575028, - "2025-01-01": 281, - "2015-01-01": 281 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 336.237207954501, - "2034-01-01": 329.726279471518, - "2033-01-01": 323.295732821659, - "2032-01-01": 317.025949838047, - "2031-01-01": 310.916930520681, - "2030-01-01": 304.888293036438, - "2029-01-01": 298.940037385319, - "2028-01-01": 293.072163567322, - "2027-01-01": 287.123907916203, - "2026-01-01": 280.219108450917, - "2025-01-01": 276, - "2015-01-01": 276 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 348.419715489084, - "2034-01-01": 341.672883800197, - "2033-01-01": 335.009346329691, - "2032-01-01": 328.512397295947, - "2031-01-01": 322.182036698967, - "2030-01-01": 315.934970320367, - "2029-01-01": 309.771198160149, - "2028-01-01": 303.690720218312, - "2027-01-01": 297.526948058094, - "2026-01-01": 290.371974699138, - "2025-01-01": 286, - "2015-01-01": 286 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 352.074467749459, - "2034-01-01": 345.2568650988, - "2033-01-01": 338.5234303821, - "2032-01-01": 331.958331533317, - "2031-01-01": 325.561568552452, - "2030-01-01": 319.248973505546, - "2029-01-01": 313.020546392598, - "2028-01-01": 306.876287213609, - "2027-01-01": 300.647860100662, - "2026-01-01": 293.417834573605, - "2025-01-01": 289, - "2015-01-01": 289 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 333.800706447584, - "2034-01-01": 327.336958605783, - "2033-01-01": 320.953010120053, - "2032-01-01": 314.728660346467, - "2031-01-01": 308.663909285024, - "2030-01-01": 302.678957579653, - "2029-01-01": 296.773805230353, - "2028-01-01": 290.948452237124, - "2027-01-01": 285.043299887825, - "2026-01-01": 278.188535201273, - "2025-01-01": 274, - "2015-01-01": 274 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 348.419715489084, - "2034-01-01": 341.672883800197, - "2033-01-01": 335.009346329691, - "2032-01-01": 328.512397295947, - "2031-01-01": 322.182036698967, - "2030-01-01": 315.934970320367, - "2029-01-01": 309.771198160149, - "2028-01-01": 303.690720218312, - "2027-01-01": 297.526948058094, - "2026-01-01": 290.371974699138, - "2025-01-01": 286, - "2015-01-01": 286 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 352.074467749459, - "2034-01-01": 345.2568650988, - "2033-01-01": 338.5234303821, - "2032-01-01": 331.958331533317, - "2031-01-01": 325.561568552452, - "2030-01-01": 319.248973505546, - "2029-01-01": 313.020546392598, - "2028-01-01": 306.876287213609, - "2027-01-01": 300.647860100662, - "2026-01-01": 293.417834573605, - "2025-01-01": 289, - "2015-01-01": 289 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 299.689685350751, - "2034-01-01": 293.886466485484, - "2033-01-01": 288.154892297566, - "2032-01-01": 282.566607464346, - "2031-01-01": 277.121611985824, - "2030-01-01": 271.748261184652, - "2029-01-01": 266.446555060828, - "2028-01-01": 261.216493614353, - "2027-01-01": 255.914787490529, - "2026-01-01": 249.760509706252, - "2025-01-01": 246, - "2015-01-01": 246 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 356.947470763292, - "2034-01-01": 350.035506830271, - "2033-01-01": 343.208875785312, - "2032-01-01": 336.552910516477, - "2031-01-01": 330.067611023766, - "2030-01-01": 323.667644419117, - "2029-01-01": 317.35301070253, - "2028-01-01": 311.123709874005, - "2027-01-01": 304.809076157418, - "2026-01-01": 297.478981072894, - "2025-01-01": 293, - "2015-01-01": 293 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 296.034933090376, - "2034-01-01": 290.30248518688, - "2033-01-01": 284.640808245157, - "2032-01-01": 279.120673226976, - "2031-01-01": 273.742080132339, - "2030-01-01": 268.434257999473, - "2029-01-01": 263.197206828378, - "2028-01-01": 258.030926619056, - "2027-01-01": 252.793875447961, - "2026-01-01": 246.714649831785, - "2025-01-01": 243, - "2015-01-01": 243 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 322.836449666459, - "2034-01-01": 316.585014709972, - "2033-01-01": 310.410757962825, - "2032-01-01": 304.390857634357, - "2031-01-01": 298.525313724567, - "2030-01-01": 292.736948024116, - "2029-01-01": 287.025760533005, - "2028-01-01": 281.391751251233, - "2027-01-01": 275.680563760122, - "2026-01-01": 269.050955577873, - "2025-01-01": 265, - "2015-01-01": 265 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 300.907936104209, - "2034-01-01": 295.081126918352, - "2033-01-01": 289.326253648369, - "2032-01-01": 283.715252210136, - "2031-01-01": 278.248122603653, - "2030-01-01": 272.852928913044, - "2029-01-01": 267.529671138311, - "2028-01-01": 262.278349279452, - "2027-01-01": 256.955091504718, - "2026-01-01": 250.775796331074, - "2025-01-01": 247, - "2015-01-01": 247 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 349.637966242542, - "2034-01-01": 342.867544233064, - "2033-01-01": 336.180707680494, - "2032-01-01": 329.661042041737, - "2031-01-01": 323.308547316795, - "2030-01-01": 317.03963804876, - "2029-01-01": 310.854314237632, - "2028-01-01": 304.752575883411, - "2027-01-01": 298.567252072283, - "2026-01-01": 291.387261323961, - "2025-01-01": 287, - "2015-01-01": 287 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 342.328461721792, - "2034-01-01": 335.699581635858, - "2033-01-01": 329.152539575675, - "2032-01-01": 322.769173566997, - "2031-01-01": 316.549483609824, - "2030-01-01": 310.411631678403, - "2029-01-01": 304.355617772734, - "2028-01-01": 298.381441892817, - "2027-01-01": 292.325427987149, - "2026-01-01": 285.295541575028, - "2025-01-01": 281, - "2015-01-01": 281 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 358.165721516751, - "2034-01-01": 351.230167263139, - "2033-01-01": 344.380237136115, - "2032-01-01": 337.701555262267, - "2031-01-01": 331.194121641595, - "2030-01-01": 324.77231214751, - "2029-01-01": 318.436126780013, - "2028-01-01": 312.185565539104, - "2027-01-01": 305.849380171607, - "2026-01-01": 298.494267697716, - "2025-01-01": 294, - "2015-01-01": 294 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 332.582455694126, - "2034-01-01": 326.142298172915, - "2033-01-01": 319.78164876925, - "2032-01-01": 313.580015600677, - "2031-01-01": 307.537398667195, - "2030-01-01": 301.57428985126, - "2029-01-01": 295.69068915287, - "2028-01-01": 289.886596572025, - "2027-01-01": 284.002995873635, - "2026-01-01": 277.17324857645, - "2025-01-01": 273, - "2015-01-01": 273 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 345.983213982167, - "2034-01-01": 339.283562934461, - "2033-01-01": 332.666623628084, - "2032-01-01": 326.215107804367, - "2031-01-01": 319.929015463309, - "2030-01-01": 313.725634863581, - "2029-01-01": 307.604966005183, - "2028-01-01": 301.567008888114, - "2027-01-01": 295.446340029716, - "2026-01-01": 288.341401449494, - "2025-01-01": 284, - "2015-01-01": 284 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 381.312485832459, - "2034-01-01": 373.928715487628, - "2033-01-01": 366.636102801375, - "2032-01-01": 359.525805432278, - "2031-01-01": 352.597823380338, - "2030-01-01": 345.760998986975, - "2029-01-01": 339.015332252191, - "2028-01-01": 332.360823175985, - "2027-01-01": 325.615156441201, - "2026-01-01": 317.784713569337, - "2025-01-01": 313, - "2015-01-01": 313 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 291.161930076542, - "2034-01-01": 285.523843455409, - "2033-01-01": 279.955362841944, - "2032-01-01": 274.526094243816, - "2031-01-01": 269.236037661025, - "2030-01-01": 264.015587085901, - "2029-01-01": 258.864742518446, - "2028-01-01": 253.78350395866, - "2027-01-01": 248.632659391205, - "2026-01-01": 242.653503332497, - "2025-01-01": 239, - "2015-01-01": 239 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 338.673709461417, - "2034-01-01": 332.115600337254, - "2033-01-01": 325.638455523266, - "2032-01-01": 319.323239329627, - "2031-01-01": 313.169951756338, - "2030-01-01": 307.097628493224, - "2029-01-01": 301.106269540285, - "2028-01-01": 295.19587489752, - "2027-01-01": 289.204515944581, - "2026-01-01": 282.249681700561, - "2025-01-01": 278, - "2015-01-01": 278 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 360.602223023667, - "2034-01-01": 353.619488128875, - "2033-01-01": 346.722959837722, - "2032-01-01": 339.998844753848, - "2031-01-01": 333.447142877252, - "2030-01-01": 326.981647604296, - "2029-01-01": 320.602358934979, - "2028-01-01": 314.309276869302, - "2027-01-01": 307.929988199986, - "2026-01-01": 300.52484094736, - "2025-01-01": 296, - "2015-01-01": 296 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 352.074467749459, - "2034-01-01": 345.2568650988, - "2033-01-01": 338.5234303821, - "2032-01-01": 331.958331533317, - "2031-01-01": 325.561568552452, - "2030-01-01": 319.248973505546, - "2029-01-01": 313.020546392598, - "2028-01-01": 306.876287213609, - "2027-01-01": 300.647860100662, - "2026-01-01": 293.417834573605, - "2025-01-01": 289, - "2015-01-01": 289 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 338.673709461417, - "2034-01-01": 332.115600337254, - "2033-01-01": 325.638455523266, - "2032-01-01": 319.323239329627, - "2031-01-01": 313.169951756338, - "2030-01-01": 307.097628493224, - "2029-01-01": 301.106269540285, - "2028-01-01": 295.19587489752, - "2027-01-01": 289.204515944581, - "2026-01-01": 282.249681700561, - "2025-01-01": 278, - "2015-01-01": 278 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 325.272951173376, - "2034-01-01": 318.974335575708, - "2033-01-01": 312.753480664431, - "2032-01-01": 306.688147125937, - "2031-01-01": 300.778334960224, - "2030-01-01": 294.946283480902, - "2029-01-01": 289.191992687971, - "2028-01-01": 283.515462581431, - "2027-01-01": 277.761171788501, - "2026-01-01": 271.081528827517, - "2025-01-01": 267, - "2015-01-01": 267 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 361.820473777126, - "2034-01-01": 354.814148561743, - "2033-01-01": 347.894321188525, - "2032-01-01": 341.147489499638, - "2031-01-01": 334.573653495081, - "2030-01-01": 328.086315332689, - "2029-01-01": 321.685475012462, - "2028-01-01": 315.371132534401, - "2027-01-01": 308.970292214175, - "2026-01-01": 301.540127572182, - "2025-01-01": 297, - "2015-01-01": 297 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 349.637966242542, - "2034-01-01": 342.867544233064, - "2033-01-01": 336.180707680494, - "2032-01-01": 329.661042041737, - "2031-01-01": 323.308547316795, - "2030-01-01": 317.03963804876, - "2029-01-01": 310.854314237632, - "2028-01-01": 304.752575883411, - "2027-01-01": 298.567252072283, - "2026-01-01": 291.387261323961, - "2025-01-01": 287, - "2015-01-01": 287 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 349.637966242542, - "2034-01-01": 342.867544233064, - "2033-01-01": 336.180707680494, - "2032-01-01": 329.661042041737, - "2031-01-01": 323.308547316795, - "2030-01-01": 317.03963804876, - "2029-01-01": 310.854314237632, - "2028-01-01": 304.752575883411, - "2027-01-01": 298.567252072283, - "2026-01-01": 291.387261323961, - "2025-01-01": 287, - "2015-01-01": 287 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 384.967238092834, - "2034-01-01": 377.512696786231, - "2033-01-01": 370.150186853784, - "2032-01-01": 362.971739669648, - "2031-01-01": 355.977355233823, - "2030-01-01": 349.075002172154, - "2029-01-01": 342.26468048464, - "2028-01-01": 335.546390171282, - "2027-01-01": 328.736068483768, - "2026-01-01": 320.830573443803, - "2025-01-01": 316, - "2015-01-01": 316 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 326.491201926834, - "2034-01-01": 320.168996008576, - "2033-01-01": 313.924842015235, - "2032-01-01": 307.836791871727, - "2031-01-01": 301.904845578053, - "2030-01-01": 296.050951209295, - "2029-01-01": 290.275108765454, - "2028-01-01": 284.57731824653, - "2027-01-01": 278.80147580269, - "2026-01-01": 272.09681545234, - "2025-01-01": 268, - "2015-01-01": 268 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 411.768754668918, - "2034-01-01": 403.795226309323, - "2033-01-01": 395.920136571453, - "2032-01-01": 388.241924077029, - "2031-01-01": 380.760588826051, - "2030-01-01": 373.377692196798, - "2029-01-01": 366.093234189267, - "2028-01-01": 358.90721480346, - "2027-01-01": 351.62275679593, - "2026-01-01": 343.166879189891, - "2025-01-01": 338, - "2015-01-01": 338 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 338.673709461417, - "2034-01-01": 332.115600337254, - "2033-01-01": 325.638455523266, - "2032-01-01": 319.323239329627, - "2031-01-01": 313.169951756338, - "2030-01-01": 307.097628493224, - "2029-01-01": 301.106269540285, - "2028-01-01": 295.19587489752, - "2027-01-01": 289.204515944581, - "2026-01-01": 282.249681700561, - "2025-01-01": 278, - "2015-01-01": 278 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 371.566479804792, - "2034-01-01": 364.371432024685, - "2033-01-01": 357.26521199495, - "2032-01-01": 350.336647465958, - "2031-01-01": 343.585738437709, - "2030-01-01": 336.923657159832, - "2029-01-01": 330.350403632327, - "2028-01-01": 323.865977855193, - "2027-01-01": 317.292724327688, - "2026-01-01": 309.66242057076, - "2025-01-01": 305, - "2015-01-01": 305 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SC.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SC.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.SD", - "description": null, - "label": "SD", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 466.590038574543, - "2034-01-01": 457.554945788375, - "2033-01-01": 448.631397357593, - "2032-01-01": 439.93093763758, - "2031-01-01": 431.453566628336, - "2030-01-01": 423.087739974478, - "2029-01-01": 414.833457676004, - "2028-01-01": 406.690719732915, - "2027-01-01": 398.436437434441, - "2026-01-01": 388.854777306888, - "2025-01-01": 383, - "2015-01-01": 383 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 343.546712475251, - "2034-01-01": 336.894242068725, - "2033-01-01": 330.323900926478, - "2032-01-01": 323.917818312787, - "2031-01-01": 317.675994227652, - "2030-01-01": 311.516299406796, - "2029-01-01": 305.438733850217, - "2028-01-01": 299.443297557916, - "2027-01-01": 293.365732001338, - "2026-01-01": 286.31082819985, - "2025-01-01": 282, - "2015-01-01": 282 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 470.244790834918, - "2034-01-01": 461.138927086979, - "2033-01-01": 452.145481410002, - "2032-01-01": 443.37687187495, - "2031-01-01": 434.833098481822, - "2030-01-01": 426.401743159656, - "2029-01-01": 418.082805908453, - "2028-01-01": 409.876286728212, - "2027-01-01": 401.557349477008, - "2026-01-01": 391.900637181355, - "2025-01-01": 386, - "2015-01-01": 386 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 466.590038574543, - "2034-01-01": 457.554945788375, - "2033-01-01": 448.631397357593, - "2032-01-01": 439.93093763758, - "2031-01-01": 431.453566628336, - "2030-01-01": 423.087739974478, - "2029-01-01": 414.833457676004, - "2028-01-01": 406.690719732915, - "2027-01-01": 398.436437434441, - "2026-01-01": 388.854777306888, - "2025-01-01": 383, - "2015-01-01": 383 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.SD.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.SD.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.TN", - "description": null, - "label": "TN", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 371.566479804792, - "2034-01-01": 364.371432024685, - "2033-01-01": 357.26521199495, - "2032-01-01": 350.336647465958, - "2031-01-01": 343.585738437709, - "2030-01-01": 336.923657159832, - "2029-01-01": 330.350403632327, - "2028-01-01": 323.865977855193, - "2027-01-01": 317.292724327688, - "2026-01-01": 309.66242057076, - "2025-01-01": 305, - "2015-01-01": 305 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 342.328461721792, - "2034-01-01": 335.699581635858, - "2033-01-01": 329.152539575675, - "2032-01-01": 322.769173566997, - "2031-01-01": 316.549483609824, - "2030-01-01": 310.411631678403, - "2029-01-01": 304.355617772734, - "2028-01-01": 298.381441892817, - "2027-01-01": 292.325427987149, - "2026-01-01": 285.295541575028, - "2025-01-01": 281, - "2015-01-01": 281 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 366.693476790959, - "2034-01-01": 359.592790293214, - "2033-01-01": 352.579766591737, - "2032-01-01": 345.742068482798, - "2031-01-01": 339.079695966395, - "2030-01-01": 332.504986246261, - "2029-01-01": 326.017939322395, - "2028-01-01": 319.618555194797, - "2027-01-01": 313.131508270931, - "2026-01-01": 305.601274071471, - "2025-01-01": 301, - "2015-01-01": 301 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 400.804497887793, - "2034-01-01": 393.043282413513, - "2033-01-01": 385.377884414224, - "2032-01-01": 377.904121364918, - "2031-01-01": 370.621993265594, - "2030-01-01": 363.435682641262, - "2029-01-01": 356.34518949192, - "2028-01-01": 349.350513817569, - "2027-01-01": 342.260020668227, - "2026-01-01": 334.029299566491, - "2025-01-01": 329, - "2015-01-01": 329 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 366.693476790959, - "2034-01-01": 359.592790293214, - "2033-01-01": 352.579766591737, - "2032-01-01": 345.742068482798, - "2031-01-01": 339.079695966395, - "2030-01-01": 332.504986246261, - "2029-01-01": 326.017939322395, - "2028-01-01": 319.618555194797, - "2027-01-01": 313.131508270931, - "2026-01-01": 305.601274071471, - "2025-01-01": 301, - "2015-01-01": 301 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 352.074467749459, - "2034-01-01": 345.2568650988, - "2033-01-01": 338.5234303821, - "2032-01-01": 331.958331533317, - "2031-01-01": 325.561568552452, - "2030-01-01": 319.248973505546, - "2029-01-01": 313.020546392598, - "2028-01-01": 306.876287213609, - "2027-01-01": 300.647860100662, - "2026-01-01": 293.417834573605, - "2025-01-01": 289, - "2015-01-01": 289 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 410.550503915459, - "2034-01-01": 402.600565876455, - "2033-01-01": 394.748775220649, - "2032-01-01": 387.093279331239, - "2031-01-01": 379.634078208223, - "2030-01-01": 372.273024468405, - "2029-01-01": 365.010118111784, - "2028-01-01": 357.845359138361, - "2027-01-01": 350.58245278174, - "2026-01-01": 342.151592565069, - "2025-01-01": 337, - "2015-01-01": 337 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 423.951262203501, - "2034-01-01": 415.741830638002, - "2033-01-01": 407.633750079484, - "2032-01-01": 399.728371534929, - "2031-01-01": 392.025695004337, - "2030-01-01": 384.424369480727, - "2029-01-01": 376.924394964097, - "2028-01-01": 369.52577145445, - "2027-01-01": 362.025796937821, - "2026-01-01": 353.319745438113, - "2025-01-01": 348, - "2015-01-01": 348 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TN.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TN.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.TX", - "description": null, - "label": "TX", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 449.534528026126, - "2034-01-01": 440.829699728226, - "2033-01-01": 432.232338446349, - "2032-01-01": 423.849911196519, - "2031-01-01": 415.682417978737, - "2030-01-01": 407.622391776977, - "2029-01-01": 399.669832591241, - "2028-01-01": 391.824740421529, - "2027-01-01": 383.872181235793, - "2026-01-01": 374.640764559378, - "2025-01-01": 369, - "2015-01-01": 369 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 382.530736585917, - "2034-01-01": 375.123375920496, - "2033-01-01": 367.807464152178, - "2032-01-01": 360.674450178068, - "2031-01-01": 353.724333998166, - "2030-01-01": 346.865666715368, - "2029-01-01": 340.098448329674, - "2028-01-01": 333.422678841084, - "2027-01-01": 326.65546045539, - "2026-01-01": 318.800000194159, - "2025-01-01": 314, - "2015-01-01": 314 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 387.403739599751, - "2034-01-01": 379.902017651967, - "2033-01-01": 372.49290955539, - "2032-01-01": 365.269029161228, - "2031-01-01": 358.23037646948, - "2030-01-01": 351.28433762894, - "2029-01-01": 344.430912639606, - "2028-01-01": 337.67010150148, - "2027-01-01": 330.816676512147, - "2026-01-01": 322.861146693448, - "2025-01-01": 318, - "2015-01-01": 318 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 392.276742613584, - "2034-01-01": 384.680659383438, - "2033-01-01": 377.178354958603, - "2032-01-01": 369.863608144388, - "2031-01-01": 362.736418940795, - "2030-01-01": 355.703008542511, - "2029-01-01": 348.763376949538, - "2028-01-01": 341.917524161876, - "2027-01-01": 334.977892568903, - "2026-01-01": 326.922293192736, - "2025-01-01": 322, - "2015-01-01": 322 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 339.891960214876, - "2034-01-01": 333.310260770122, - "2033-01-01": 326.809816874069, - "2032-01-01": 320.471884075417, - "2031-01-01": 314.296462374167, - "2030-01-01": 308.202296221617, - "2029-01-01": 302.189385617768, - "2028-01-01": 296.257730562619, - "2027-01-01": 290.24481995877, - "2026-01-01": 283.264968325383, - "2025-01-01": 279, - "2015-01-01": 279 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 375.221232065167, - "2034-01-01": 367.955413323289, - "2033-01-01": 360.779296047359, - "2032-01-01": 353.782581703328, - "2031-01-01": 346.965270291195, - "2030-01-01": 340.237660345011, - "2029-01-01": 333.599751864776, - "2028-01-01": 327.05154485049, - "2027-01-01": 320.413636370255, - "2026-01-01": 312.708280445226, - "2025-01-01": 308, - "2015-01-01": 308 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 400.804497887793, - "2034-01-01": 393.043282413513, - "2033-01-01": 385.377884414224, - "2032-01-01": 377.904121364918, - "2031-01-01": 370.621993265594, - "2030-01-01": 363.435682641262, - "2029-01-01": 356.34518949192, - "2028-01-01": 349.350513817569, - "2027-01-01": 342.260020668227, - "2026-01-01": 334.029299566491, - "2025-01-01": 329, - "2015-01-01": 329 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 349.637966242542, - "2034-01-01": 342.867544233064, - "2033-01-01": 336.180707680494, - "2032-01-01": 329.661042041737, - "2031-01-01": 323.308547316795, - "2030-01-01": 317.03963804876, - "2029-01-01": 310.854314237632, - "2028-01-01": 304.752575883411, - "2027-01-01": 298.567252072283, - "2026-01-01": 291.387261323961, - "2025-01-01": 287, - "2015-01-01": 287 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 399.586247134334, - "2034-01-01": 391.848621980645, - "2033-01-01": 384.206523063421, - "2032-01-01": 376.755476619128, - "2031-01-01": 369.495482647766, - "2030-01-01": 362.331014912869, - "2029-01-01": 355.262073414437, - "2028-01-01": 348.28865815247, - "2027-01-01": 341.219716654038, - "2026-01-01": 333.014012941669, - "2025-01-01": 328, - "2015-01-01": 328 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 375.221232065167, - "2034-01-01": 367.955413323289, - "2033-01-01": 360.779296047359, - "2032-01-01": 353.782581703328, - "2031-01-01": 346.965270291195, - "2030-01-01": 340.237660345011, - "2029-01-01": 333.599751864776, - "2028-01-01": 327.05154485049, - "2027-01-01": 320.413636370255, - "2026-01-01": 312.708280445226, - "2025-01-01": 308, - "2015-01-01": 308 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 389.840241106667, - "2034-01-01": 382.291338517703, - "2033-01-01": 374.835632256996, - "2032-01-01": 367.566318652808, - "2031-01-01": 360.483397705137, - "2030-01-01": 353.493673085726, - "2029-01-01": 346.597144794572, - "2028-01-01": 339.793812831678, - "2027-01-01": 332.897284540525, - "2026-01-01": 324.891719943092, - "2025-01-01": 320, - "2015-01-01": 320 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 381.312485832459, - "2034-01-01": 373.928715487628, - "2033-01-01": 366.636102801375, - "2032-01-01": 359.525805432278, - "2031-01-01": 352.597823380338, - "2030-01-01": 345.760998986975, - "2029-01-01": 339.015332252191, - "2028-01-01": 332.360823175985, - "2027-01-01": 325.615156441201, - "2026-01-01": 317.784713569337, - "2025-01-01": 313, - "2015-01-01": 313 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 339.891960214876, - "2034-01-01": 333.310260770122, - "2033-01-01": 326.809816874069, - "2032-01-01": 320.471884075417, - "2031-01-01": 314.296462374167, - "2030-01-01": 308.202296221617, - "2029-01-01": 302.189385617768, - "2028-01-01": 296.257730562619, - "2027-01-01": 290.24481995877, - "2026-01-01": 283.264968325383, - "2025-01-01": 279, - "2015-01-01": 279 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 419.078259189668, - "2034-01-01": 410.96318890653, - "2033-01-01": 402.948304676271, - "2032-01-01": 395.133792551769, - "2031-01-01": 387.519652533023, - "2030-01-01": 380.005698567155, - "2029-01-01": 372.591930654165, - "2028-01-01": 365.278348794054, - "2027-01-01": 357.864580881064, - "2026-01-01": 349.258598938824, - "2025-01-01": 344, - "2015-01-01": 344 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 335.018957201042, - "2034-01-01": 328.531619038651, - "2033-01-01": 322.124371470856, - "2032-01-01": 315.877305092257, - "2031-01-01": 309.790419902853, - "2030-01-01": 303.783625308045, - "2029-01-01": 297.856921307836, - "2028-01-01": 292.010307902223, - "2027-01-01": 286.083603902014, - "2026-01-01": 279.203821826095, - "2025-01-01": 275, - "2015-01-01": 275 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 325.272951173376, - "2034-01-01": 318.974335575708, - "2033-01-01": 312.753480664431, - "2032-01-01": 306.688147125937, - "2031-01-01": 300.778334960224, - "2030-01-01": 294.946283480902, - "2029-01-01": 289.191992687971, - "2028-01-01": 283.515462581431, - "2027-01-01": 277.761171788501, - "2026-01-01": 271.081528827517, - "2025-01-01": 267, - "2015-01-01": 267 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 443.443274258834, - "2034-01-01": 434.856397563887, - "2033-01-01": 426.375531692333, - "2032-01-01": 418.106687467569, - "2031-01-01": 410.049864889594, - "2030-01-01": 402.099053135013, - "2029-01-01": 394.254252203826, - "2028-01-01": 386.515462096034, - "2027-01-01": 378.670661164847, - "2026-01-01": 369.564331435267, - "2025-01-01": 364, - "2015-01-01": 364 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 371.566479804792, - "2034-01-01": 364.371432024685, - "2033-01-01": 357.26521199495, - "2032-01-01": 350.336647465958, - "2031-01-01": 343.585738437709, - "2030-01-01": 336.923657159832, - "2029-01-01": 330.350403632327, - "2028-01-01": 323.865977855193, - "2027-01-01": 317.292724327688, - "2026-01-01": 309.66242057076, - "2025-01-01": 305, - "2015-01-01": 305 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 415.423506929293, - "2034-01-01": 407.379207607927, - "2033-01-01": 399.434220623862, - "2032-01-01": 391.687858314399, - "2031-01-01": 384.140120679537, - "2030-01-01": 376.691695381976, - "2029-01-01": 369.342582421716, - "2028-01-01": 362.092781798757, - "2027-01-01": 354.743668838497, - "2026-01-01": 346.212739064357, - "2025-01-01": 341, - "2015-01-01": 341 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 423.951262203501, - "2034-01-01": 415.741830638002, - "2033-01-01": 407.633750079484, - "2032-01-01": 399.728371534929, - "2031-01-01": 392.025695004337, - "2030-01-01": 384.424369480727, - "2029-01-01": 376.924394964097, - "2028-01-01": 369.52577145445, - "2027-01-01": 362.025796937821, - "2026-01-01": 353.319745438113, - "2025-01-01": 348, - "2015-01-01": 348 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 376.439482818626, - "2034-01-01": 369.150073756157, - "2033-01-01": 361.950657398162, - "2032-01-01": 354.931226449118, - "2031-01-01": 348.091780909023, - "2030-01-01": 341.342328073404, - "2029-01-01": 334.682867942259, - "2028-01-01": 328.113400515589, - "2027-01-01": 321.453940384445, - "2026-01-01": 313.723567070048, - "2025-01-01": 309, - "2015-01-01": 309 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 397.149745627418, - "2034-01-01": 389.459301114909, - "2033-01-01": 381.863800361815, - "2032-01-01": 374.458187127548, - "2031-01-01": 367.242461412109, - "2030-01-01": 360.121679456083, - "2029-01-01": 353.095841259471, - "2028-01-01": 346.164946822272, - "2027-01-01": 339.13910862566, - "2026-01-01": 330.983439692025, - "2025-01-01": 326, - "2015-01-01": 326 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 352.074467749459, - "2034-01-01": 345.2568650988, - "2033-01-01": 338.5234303821, - "2032-01-01": 331.958331533317, - "2031-01-01": 325.561568552452, - "2030-01-01": 319.248973505546, - "2029-01-01": 313.020546392598, - "2028-01-01": 306.876287213609, - "2027-01-01": 300.647860100662, - "2026-01-01": 293.417834573605, - "2025-01-01": 289, - "2015-01-01": 289 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 529.939077754376, - "2034-01-01": 519.677288297502, - "2033-01-01": 509.542187599354, - "2032-01-01": 499.660464418661, - "2031-01-01": 490.032118755421, - "2030-01-01": 480.530461850908, - "2029-01-01": 471.155493705122, - "2028-01-01": 461.907214318062, - "2027-01-01": 452.532246172276, - "2026-01-01": 441.649681797641, - "2025-01-01": 435, - "2015-01-01": 435 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 370.348229051334, - "2034-01-01": 363.176771591817, - "2033-01-01": 356.093850644147, - "2032-01-01": 349.188002720168, - "2031-01-01": 342.459227819881, - "2030-01-01": 335.818989431439, - "2029-01-01": 329.267287554844, - "2028-01-01": 322.804122190094, - "2027-01-01": 316.252420313499, - "2026-01-01": 308.647133945937, - "2025-01-01": 304, - "2015-01-01": 304 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 369.129978297876, - "2034-01-01": 361.98211115895, - "2033-01-01": 354.922489293343, - "2032-01-01": 348.039357974378, - "2031-01-01": 341.332717202052, - "2030-01-01": 334.714321703046, - "2029-01-01": 328.184171477361, - "2028-01-01": 321.742266524995, - "2027-01-01": 315.21211629931, - "2026-01-01": 307.631847321115, - "2025-01-01": 303, - "2015-01-01": 303 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 395.931494873959, - "2034-01-01": 388.264640682042, - "2033-01-01": 380.692439011012, - "2032-01-01": 373.309542381758, - "2031-01-01": 366.11595079428, - "2030-01-01": 359.01701172769, - "2029-01-01": 352.012725181988, - "2028-01-01": 345.103091157173, - "2027-01-01": 338.098804611471, - "2026-01-01": 329.968153067203, - "2025-01-01": 325, - "2015-01-01": 325 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.TX.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.TX.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.UT", - "description": null, - "label": "UT", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 419.078259189668, - "2034-01-01": 410.96318890653, - "2033-01-01": 402.948304676271, - "2032-01-01": 395.133792551769, - "2031-01-01": 387.519652533023, - "2030-01-01": 380.005698567155, - "2029-01-01": 372.591930654165, - "2028-01-01": 365.278348794054, - "2027-01-01": 357.864580881064, - "2026-01-01": 349.258598938824, - "2025-01-01": 344, - "2015-01-01": 344 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 342.328461721792, - "2034-01-01": 335.699581635858, - "2033-01-01": 329.152539575675, - "2032-01-01": 322.769173566997, - "2031-01-01": 316.549483609824, - "2030-01-01": 310.411631678403, - "2029-01-01": 304.355617772734, - "2028-01-01": 298.381441892817, - "2027-01-01": 292.325427987149, - "2026-01-01": 285.295541575028, - "2025-01-01": 281, - "2015-01-01": 281 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 326.491201926834, - "2034-01-01": 320.168996008576, - "2033-01-01": 313.924842015235, - "2032-01-01": 307.836791871727, - "2031-01-01": 301.904845578053, - "2030-01-01": 296.050951209295, - "2029-01-01": 290.275108765454, - "2028-01-01": 284.57731824653, - "2027-01-01": 278.80147580269, - "2026-01-01": 272.09681545234, - "2025-01-01": 268, - "2015-01-01": 268 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 338.673709461417, - "2034-01-01": 332.115600337254, - "2033-01-01": 325.638455523266, - "2032-01-01": 319.323239329627, - "2031-01-01": 313.169951756338, - "2030-01-01": 307.097628493224, - "2029-01-01": 301.106269540285, - "2028-01-01": 295.19587489752, - "2027-01-01": 289.204515944581, - "2026-01-01": 282.249681700561, - "2025-01-01": 278, - "2015-01-01": 278 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 451.971029533043, - "2034-01-01": 443.219020593961, - "2033-01-01": 434.575061147955, - "2032-01-01": 426.147200688099, - "2031-01-01": 417.935439214394, - "2030-01-01": 409.831727233763, - "2029-01-01": 401.836064746207, - "2028-01-01": 393.948451751727, - "2027-01-01": 385.952789264171, - "2026-01-01": 376.671337809022, - "2025-01-01": 371, - "2015-01-01": 371 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 570.141352618501, - "2034-01-01": 559.10108258214, - "2033-01-01": 548.197112175857, - "2032-01-01": 537.565741029732, - "2031-01-01": 527.206969143763, - "2030-01-01": 516.984496887874, - "2029-01-01": 506.898324262062, - "2028-01-01": 496.948451266329, - "2027-01-01": 486.862278640518, - "2026-01-01": 475.154140416772, - "2025-01-01": 468, - "2015-01-01": 468 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.UT.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.UT.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.VA", - "description": null, - "label": "VA", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 287.507177816167, - "2034-01-01": 281.939862156806, - "2033-01-01": 276.441278789535, - "2032-01-01": 271.080160006446, - "2031-01-01": 265.856505807539, - "2030-01-01": 260.701583900723, - "2029-01-01": 255.615394285997, - "2028-01-01": 250.597936963363, - "2027-01-01": 245.511747348637, - "2026-01-01": 239.60764345803, - "2025-01-01": 236, - "2015-01-01": 236 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 287.507177816167, - "2034-01-01": 281.939862156806, - "2033-01-01": 276.441278789535, - "2032-01-01": 271.080160006446, - "2031-01-01": 265.856505807539, - "2030-01-01": 260.701583900723, - "2029-01-01": 255.615394285997, - "2028-01-01": 250.597936963363, - "2027-01-01": 245.511747348637, - "2026-01-01": 239.60764345803, - "2025-01-01": 236, - "2015-01-01": 236 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 287.507177816167, - "2034-01-01": 281.939862156806, - "2033-01-01": 276.441278789535, - "2032-01-01": 271.080160006446, - "2031-01-01": 265.856505807539, - "2030-01-01": 260.701583900723, - "2029-01-01": 255.615394285997, - "2028-01-01": 250.597936963363, - "2027-01-01": 245.511747348637, - "2026-01-01": 239.60764345803, - "2025-01-01": 236, - "2015-01-01": 236 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 287.507177816167, - "2034-01-01": 281.939862156806, - "2033-01-01": 276.441278789535, - "2032-01-01": 271.080160006446, - "2031-01-01": 265.856505807539, - "2030-01-01": 260.701583900723, - "2029-01-01": 255.615394285997, - "2028-01-01": 250.597936963363, - "2027-01-01": 245.511747348637, - "2026-01-01": 239.60764345803, - "2025-01-01": 236, - "2015-01-01": 236 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 287.507177816167, - "2034-01-01": 281.939862156806, - "2033-01-01": 276.441278789535, - "2032-01-01": 271.080160006446, - "2031-01-01": 265.856505807539, - "2030-01-01": 260.701583900723, - "2029-01-01": 255.615394285997, - "2028-01-01": 250.597936963363, - "2027-01-01": 245.511747348637, - "2026-01-01": 239.60764345803, - "2025-01-01": 236, - "2015-01-01": 236 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 287.507177816167, - "2034-01-01": 281.939862156806, - "2033-01-01": 276.441278789535, - "2032-01-01": 271.080160006446, - "2031-01-01": 265.856505807539, - "2030-01-01": 260.701583900723, - "2029-01-01": 255.615394285997, - "2028-01-01": 250.597936963363, - "2027-01-01": 245.511747348637, - "2026-01-01": 239.60764345803, - "2025-01-01": 236, - "2015-01-01": 236 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 274.106419528126, - "2034-01-01": 268.79859739526, - "2033-01-01": 263.556303930701, - "2032-01-01": 258.445067802756, - "2031-01-01": 253.464889011425, - "2030-01-01": 248.550238888401, - "2029-01-01": 243.701117433684, - "2028-01-01": 238.917524647274, - "2027-01-01": 234.068403192557, - "2026-01-01": 228.439490584987, - "2025-01-01": 225, - "2015-01-01": 225 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 287.507177816167, - "2034-01-01": 281.939862156806, - "2033-01-01": 276.441278789535, - "2032-01-01": 271.080160006446, - "2031-01-01": 265.856505807539, - "2030-01-01": 260.701583900723, - "2029-01-01": 255.615394285997, - "2028-01-01": 250.597936963363, - "2027-01-01": 245.511747348637, - "2026-01-01": 239.60764345803, - "2025-01-01": 236, - "2015-01-01": 236 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 269.233416514292, - "2034-01-01": 264.019955663788, - "2033-01-01": 258.870858527488, - "2032-01-01": 253.850488819596, - "2031-01-01": 248.958846540111, - "2030-01-01": 244.131567974829, - "2029-01-01": 239.368653123752, - "2028-01-01": 234.670101986878, - "2027-01-01": 229.9071871358, - "2026-01-01": 224.378344085698, - "2025-01-01": 221, - "2015-01-01": 221 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 259.487410486626, - "2034-01-01": 254.462672200846, - "2033-01-01": 249.499967721063, - "2032-01-01": 244.661330853275, - "2031-01-01": 239.946761597482, - "2030-01-01": 235.294226147686, - "2029-01-01": 230.703724503887, - "2028-01-01": 226.175256666086, - "2027-01-01": 221.584755022287, - "2026-01-01": 216.256051087121, - "2025-01-01": 213, - "2015-01-01": 213 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 287.507177816167, - "2034-01-01": 281.939862156806, - "2033-01-01": 276.441278789535, - "2032-01-01": 271.080160006446, - "2031-01-01": 265.856505807539, - "2030-01-01": 260.701583900723, - "2029-01-01": 255.615394285997, - "2028-01-01": 250.597936963363, - "2027-01-01": 245.511747348637, - "2026-01-01": 239.60764345803, - "2025-01-01": 236, - "2015-01-01": 236 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 287.507177816167, - "2034-01-01": 281.939862156806, - "2033-01-01": 276.441278789535, - "2032-01-01": 271.080160006446, - "2031-01-01": 265.856505807539, - "2030-01-01": 260.701583900723, - "2029-01-01": 255.615394285997, - "2028-01-01": 250.597936963363, - "2027-01-01": 245.511747348637, - "2026-01-01": 239.60764345803, - "2025-01-01": 236, - "2015-01-01": 236 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VA.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VA.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.VT", - "description": null, - "label": "VT", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 1555.70621216629, - "2034-01-01": 1525.58137277221, - "2033-01-01": 1495.82844497558, - "2032-01-01": 1466.81934037386, - "2031-01-01": 1438.55405896706, - "2030-01-01": 1410.66068915772, - "2029-01-01": 1383.13923094584, - "2028-01-01": 1355.98968433142, - "2027-01-01": 1328.46822611953, - "2026-01-01": 1296.5210198979, - "2025-01-01": 1277, - "2015-01-01": 1277 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VT.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VT.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.WA", - "description": null, - "label": "WA", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 313.090443638792, - "2034-01-01": 307.02773124703, - "2033-01-01": 301.0398671564, - "2032-01-01": 295.201699668037, - "2031-01-01": 289.513228781939, - "2030-01-01": 283.899606196973, - "2029-01-01": 278.360831913141, - "2028-01-01": 272.896905930441, - "2027-01-01": 267.358131646609, - "2026-01-01": 260.928662579296, - "2025-01-01": 257, - "2015-01-01": 257 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 322.836449666459, - "2034-01-01": 316.585014709972, - "2033-01-01": 310.410757962825, - "2032-01-01": 304.390857634357, - "2031-01-01": 298.525313724567, - "2030-01-01": 292.736948024116, - "2029-01-01": 287.025760533005, - "2028-01-01": 281.391751251233, - "2027-01-01": 275.680563760122, - "2026-01-01": 269.050955577873, - "2025-01-01": 265, - "2015-01-01": 265 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 341.110210968334, - "2034-01-01": 334.50492120299, - "2033-01-01": 327.981178224872, - "2032-01-01": 321.620528821207, - "2031-01-01": 315.422972991995, - "2030-01-01": 309.30696395001, - "2029-01-01": 303.272501695251, - "2028-01-01": 297.319586227718, - "2027-01-01": 291.285123972959, - "2026-01-01": 284.280254950205, - "2025-01-01": 280, - "2015-01-01": 280 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 298.471434597292, - "2034-01-01": 292.691806052616, - "2033-01-01": 286.983530946763, - "2032-01-01": 281.417962718556, - "2031-01-01": 275.995101367996, - "2030-01-01": 270.643593456259, - "2029-01-01": 265.363438983344, - "2028-01-01": 260.154637949254, - "2027-01-01": 254.874483476339, - "2026-01-01": 248.74522308143, - "2025-01-01": 245, - "2015-01-01": 245 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 298.471434597292, - "2034-01-01": 292.691806052616, - "2033-01-01": 286.983530946763, - "2032-01-01": 281.417962718556, - "2031-01-01": 275.995101367996, - "2030-01-01": 270.643593456259, - "2029-01-01": 265.363438983344, - "2028-01-01": 260.154637949254, - "2027-01-01": 254.874483476339, - "2026-01-01": 248.74522308143, - "2025-01-01": 245, - "2015-01-01": 245 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WA.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WA.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.WI", - "description": null, - "label": "WI", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 335.018957201042, - "2034-01-01": 328.531619038651, - "2033-01-01": 322.124371470856, - "2032-01-01": 315.877305092257, - "2031-01-01": 309.790419902853, - "2030-01-01": 303.783625308045, - "2029-01-01": 297.856921307836, - "2028-01-01": 292.010307902223, - "2027-01-01": 286.083603902014, - "2026-01-01": 279.203821826095, - "2025-01-01": 275, - "2015-01-01": 275 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 314.308694392251, - "2034-01-01": 308.222391679898, - "2033-01-01": 302.211228507203, - "2032-01-01": 296.350344413827, - "2031-01-01": 290.639739399767, - "2030-01-01": 285.004273925366, - "2029-01-01": 279.443947990624, - "2028-01-01": 273.95876159554, - "2027-01-01": 268.398435660798, - "2026-01-01": 261.943949204118, - "2025-01-01": 258, - "2015-01-01": 258 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 395.931494873959, - "2034-01-01": 388.264640682042, - "2033-01-01": 380.692439011012, - "2032-01-01": 373.309542381758, - "2031-01-01": 366.11595079428, - "2030-01-01": 359.01701172769, - "2029-01-01": 352.012725181988, - "2028-01-01": 345.103091157173, - "2027-01-01": 338.098804611471, - "2026-01-01": 329.968153067203, - "2025-01-01": 325, - "2015-01-01": 325 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 482.427298369501, - "2034-01-01": 473.085531415657, - "2033-01-01": 463.859094918033, - "2032-01-01": 454.86331933285, - "2031-01-01": 446.098204660108, - "2030-01-01": 437.448420443585, - "2029-01-01": 428.913966683283, - "2028-01-01": 420.494843379202, - "2027-01-01": 411.9603896189, - "2026-01-01": 402.053503429576, - "2025-01-01": 396, - "2015-01-01": 396 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 465.371787821084, - "2034-01-01": 456.360285355507, - "2033-01-01": 447.460036006789, - "2032-01-01": 438.78229289179, - "2031-01-01": 430.327056010508, - "2030-01-01": 421.983072246085, - "2029-01-01": 413.750341598521, - "2028-01-01": 405.628864067816, - "2027-01-01": 397.396133420252, - "2026-01-01": 387.839490682066, - "2025-01-01": 382, - "2015-01-01": 382 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 422.733011450043, - "2034-01-01": 414.547170205134, - "2033-01-01": 406.462388728681, - "2032-01-01": 398.579726789139, - "2031-01-01": 390.899184386508, - "2030-01-01": 383.319701752334, - "2029-01-01": 375.841278886614, - "2028-01-01": 368.463915789351, - "2027-01-01": 360.985492923632, - "2026-01-01": 352.30445881329, - "2025-01-01": 347, - "2015-01-01": 347 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 411.768754668918, - "2034-01-01": 403.795226309323, - "2033-01-01": 395.920136571453, - "2032-01-01": 388.241924077029, - "2031-01-01": 380.760588826051, - "2030-01-01": 373.377692196798, - "2029-01-01": 366.093234189267, - "2028-01-01": 358.90721480346, - "2027-01-01": 351.62275679593, - "2026-01-01": 343.166879189891, - "2025-01-01": 338, - "2015-01-01": 338 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 450.752778779584, - "2034-01-01": 442.024360161094, - "2033-01-01": 433.403699797152, - "2032-01-01": 424.998555942309, - "2031-01-01": 416.808928596565, - "2030-01-01": 408.72705950537, - "2029-01-01": 400.752948668724, - "2028-01-01": 392.886596086628, - "2027-01-01": 384.912485249982, - "2026-01-01": 375.6560511842, - "2025-01-01": 370, - "2015-01-01": 370 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 336.237207954501, - "2034-01-01": 329.726279471518, - "2033-01-01": 323.295732821659, - "2032-01-01": 317.025949838047, - "2031-01-01": 310.916930520681, - "2030-01-01": 304.888293036438, - "2029-01-01": 298.940037385319, - "2028-01-01": 293.072163567322, - "2027-01-01": 287.123907916203, - "2026-01-01": 280.219108450917, - "2025-01-01": 276, - "2015-01-01": 276 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 391.058491860126, - "2034-01-01": 383.48599895057, - "2033-01-01": 376.0069936078, - "2032-01-01": 368.714963398598, - "2031-01-01": 361.609908322966, - "2030-01-01": 354.598340814118, - "2029-01-01": 347.680260872055, - "2028-01-01": 340.855668496777, - "2027-01-01": 333.937588554714, - "2026-01-01": 325.907006567914, - "2025-01-01": 321, - "2015-01-01": 321 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 319.181697406084, - "2034-01-01": 313.001033411369, - "2033-01-01": 306.896673910416, - "2032-01-01": 300.944923396987, - "2031-01-01": 295.145781871081, - "2030-01-01": 289.422944838938, - "2029-01-01": 283.776412300556, - "2028-01-01": 278.206184255936, - "2027-01-01": 272.559651717555, - "2026-01-01": 266.005095703407, - "2025-01-01": 262, - "2015-01-01": 262 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 325.272951173376, - "2034-01-01": 318.974335575708, - "2033-01-01": 312.753480664431, - "2032-01-01": 306.688147125937, - "2031-01-01": 300.778334960224, - "2030-01-01": 294.946283480902, - "2029-01-01": 289.191992687971, - "2028-01-01": 283.515462581431, - "2027-01-01": 277.761171788501, - "2026-01-01": 271.081528827517, - "2025-01-01": 267, - "2015-01-01": 267 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 444.661525012293, - "2034-01-01": 436.051057996754, - "2033-01-01": 427.546893043137, - "2032-01-01": 419.255332213359, - "2031-01-01": 411.176375507422, - "2030-01-01": 403.203720863406, - "2029-01-01": 395.337368281309, - "2028-01-01": 387.577317761133, - "2027-01-01": 379.710965179036, - "2026-01-01": 370.579618060089, - "2025-01-01": 365, - "2015-01-01": 365 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 337.455458707959, - "2034-01-01": 330.920939904386, - "2033-01-01": 324.467094172463, - "2032-01-01": 318.174594583837, - "2031-01-01": 312.04344113851, - "2030-01-01": 305.992960764831, - "2029-01-01": 300.023153462802, - "2028-01-01": 294.134019232421, - "2027-01-01": 288.164211930392, - "2026-01-01": 281.234395075739, - "2025-01-01": 277, - "2015-01-01": 277 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 364.256975284042, - "2034-01-01": 357.203469427478, - "2033-01-01": 350.237043890131, - "2032-01-01": 343.444778991218, - "2031-01-01": 336.826674730738, - "2030-01-01": 330.295650789475, - "2029-01-01": 323.851707167429, - "2028-01-01": 317.494843864599, - "2027-01-01": 311.050900242553, - "2026-01-01": 303.570700821827, - "2025-01-01": 299, - "2015-01-01": 299 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 347.201464735626, - "2034-01-01": 340.478223367329, - "2033-01-01": 333.837984978887, - "2032-01-01": 327.363752550157, - "2031-01-01": 321.055526081138, - "2030-01-01": 314.830302591974, - "2029-01-01": 308.688082082666, - "2028-01-01": 302.628864553213, - "2027-01-01": 296.486644043905, - "2026-01-01": 289.356688074316, - "2025-01-01": 285, - "2015-01-01": 285 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WI.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WI.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.WV", - "description": null, - "label": "WV", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 683.438672690126, - "2034-01-01": 670.204502838847, - "2033-01-01": 657.133717800547, - "2032-01-01": 644.389702388204, - "2031-01-01": 631.972456601819, - "2030-01-01": 619.718595628413, - "2029-01-01": 607.628119467985, - "2028-01-01": 595.701028120536, - "2027-01-01": 583.610551960108, - "2026-01-01": 569.575796525233, - "2025-01-01": 561, - "2015-01-01": 561 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 683.438672690126, - "2034-01-01": 670.204502838847, - "2033-01-01": 657.133717800547, - "2032-01-01": 644.389702388204, - "2031-01-01": 631.972456601819, - "2030-01-01": 619.718595628413, - "2029-01-01": 607.628119467985, - "2028-01-01": 595.701028120536, - "2027-01-01": 583.610551960108, - "2026-01-01": 569.575796525233, - "2025-01-01": 561, - "2015-01-01": 561 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 683.438672690126, - "2034-01-01": 670.204502838847, - "2033-01-01": 657.133717800547, - "2032-01-01": 644.389702388204, - "2031-01-01": 631.972456601819, - "2030-01-01": 619.718595628413, - "2029-01-01": 607.628119467985, - "2028-01-01": 595.701028120536, - "2027-01-01": 583.610551960108, - "2026-01-01": 569.575796525233, - "2025-01-01": 561, - "2015-01-01": 561 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 683.438672690126, - "2034-01-01": 670.204502838847, - "2033-01-01": 657.133717800547, - "2032-01-01": 644.389702388204, - "2031-01-01": 631.972456601819, - "2030-01-01": 619.718595628413, - "2029-01-01": 607.628119467985, - "2028-01-01": 595.701028120536, - "2027-01-01": 583.610551960108, - "2026-01-01": 569.575796525233, - "2025-01-01": 561, - "2015-01-01": 561 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 733.386953581918, - "2034-01-01": 719.185580586428, - "2033-01-01": 705.159533183475, - "2032-01-01": 691.484136965595, - "2031-01-01": 678.15939193279, - "2030-01-01": 665.009972492521, - "2029-01-01": 652.035878644789, - "2028-01-01": 639.237110389594, - "2027-01-01": 626.263016541863, - "2026-01-01": 611.202548142942, - "2025-01-01": 602, - "2015-01-01": 602 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 589.633364673835, - "2034-01-01": 578.215649508025, - "2033-01-01": 566.938893788707, - "2032-01-01": 555.944056962372, - "2031-01-01": 545.23113902902, - "2030-01-01": 534.65918054216, - "2029-01-01": 524.228181501791, - "2028-01-01": 513.938141907913, - "2027-01-01": 503.507142867544, - "2026-01-01": 491.398726413927, - "2025-01-01": 484, - "2015-01-01": 484 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 589.633364673835, - "2034-01-01": 578.215649508025, - "2033-01-01": 566.938893788707, - "2032-01-01": 555.944056962372, - "2031-01-01": 545.23113902902, - "2030-01-01": 534.65918054216, - "2029-01-01": 524.228181501791, - "2028-01-01": 513.938141907913, - "2027-01-01": 503.507142867544, - "2026-01-01": 491.398726413927, - "2025-01-01": 484, - "2015-01-01": 484 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 665.164911388251, - "2034-01-01": 652.28459634583, - "2033-01-01": 639.5632975385, - "2032-01-01": 627.160031201354, - "2031-01-01": 615.074797334391, - "2030-01-01": 603.148579702519, - "2029-01-01": 591.381378305739, - "2028-01-01": 579.773193144051, - "2027-01-01": 568.005991747271, - "2026-01-01": 554.346497152901, - "2025-01-01": 546, - "2015-01-01": 546 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 665.164911388251, - "2034-01-01": 652.28459634583, - "2033-01-01": 639.5632975385, - "2032-01-01": 627.160031201354, - "2031-01-01": 615.074797334391, - "2030-01-01": 603.148579702519, - "2029-01-01": 591.381378305739, - "2028-01-01": 579.773193144051, - "2027-01-01": 568.005991747271, - "2026-01-01": 554.346497152901, - "2025-01-01": 546, - "2015-01-01": 546 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 723.640947554251, - "2034-01-01": 709.628297123485, - "2033-01-01": 695.78864237705, - "2032-01-01": 682.294978999275, - "2031-01-01": 669.147306990161, - "2030-01-01": 656.172630665378, - "2029-01-01": 643.370950024925, - "2028-01-01": 630.742265068802, - "2027-01-01": 617.94058442835, - "2026-01-01": 603.080255144364, - "2025-01-01": 594, - "2015-01-01": 594 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 648.109400839835, - "2034-01-01": 635.55935028568, - "2033-01-01": 623.164238627257, - "2032-01-01": 611.079004760293, - "2031-01-01": 599.303648684791, - "2030-01-01": 587.683231505019, - "2029-01-01": 576.217753220977, - "2028-01-01": 564.907213832665, - "2027-01-01": 553.441735548623, - "2026-01-01": 540.13248440539, - "2025-01-01": 532, - "2015-01-01": 532 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WV.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WV.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.WY", - "description": null, - "label": "WY", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 624.962636524126, - "2034-01-01": 612.860802061192, - "2033-01-01": 600.908372961997, - "2032-01-01": 589.254754590283, - "2031-01-01": 577.899946946048, - "2030-01-01": 566.694544665554, - "2029-01-01": 555.638547748799, - "2028-01-01": 544.731956195784, - "2027-01-01": 533.675959279029, - "2026-01-01": 520.842038533769, - "2025-01-01": 513, - "2015-01-01": 513 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 598.161119948043, - "2034-01-01": 586.5782725381, - "2033-01-01": 575.138423244329, - "2032-01-01": 563.984570182902, - "2031-01-01": 553.11671335382, - "2030-01-01": 542.39185464091, - "2029-01-01": 531.809994044172, - "2028-01-01": 521.371131563606, - "2027-01-01": 510.789270966868, - "2026-01-01": 498.505732787682, - "2025-01-01": 491, - "2015-01-01": 491 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-01-01": 643.236397826001, - "2034-01-01": 630.780708554209, - "2033-01-01": 618.478793224044, - "2032-01-01": 606.484425777133, - "2031-01-01": 594.797606213477, - "2030-01-01": 583.264560591447, - "2029-01-01": 571.885288911044, - "2028-01-01": 560.659791172269, - "2027-01-01": 549.280519491866, - "2026-01-01": 536.071337906102, - "2025-01-01": 528, - "2015-01-01": 528 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.WY.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.WY.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.PW", - "description": null, - "label": "PW", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PW.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PW.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.VI", - "description": null, - "label": "VI", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.VI.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.VI.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.PR", - "description": null, - "label": "PR", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.PR.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.PR.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.AP", - "description": null, - "label": "AP", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AP.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AP.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.GU", - "description": null, - "label": "GU", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.GU.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.GU.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.AE", - "description": null, - "label": "AE", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AE.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AE.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.MP", - "description": null, - "label": "MP", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.MP.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.MP.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA": { - "type": "parameterNode", - "parameter": "gov.aca.state_rating_area_cost.AA", - "description": null, - "label": "AA", - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.1": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.2": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.3": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.4": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.5": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.6": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.7": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.8": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.9": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.9", - "description": null, - "label": "9", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.10": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.10", - "description": null, - "label": "10", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.11": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.11", - "description": null, - "label": "11", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.12": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.12", - "description": null, - "label": "12", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.13": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.13", - "description": null, - "label": "13", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.14": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.14", - "description": null, - "label": "14", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.15": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.15", - "description": null, - "label": "15", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.16": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.16", - "description": null, - "label": "16", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.17": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.17", - "description": null, - "label": "17", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.18": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.18", - "description": null, - "label": "18", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.19": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.19", - "description": null, - "label": "19", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.20": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.20", - "description": null, - "label": "20", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.21": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.21", - "description": null, - "label": "21", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.22": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.22", - "description": null, - "label": "22", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.23": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.23", - "description": null, - "label": "23", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.24": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.24", - "description": null, - "label": "24", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.25": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.25", - "description": null, - "label": "25", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.26": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.26", - "description": null, - "label": "26", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.27": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.27", - "description": null, - "label": "27", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.28": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.28", - "description": null, - "label": "28", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.29": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.29", - "description": null, - "label": "29", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.30": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.30", - "description": null, - "label": "30", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.31": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.31", - "description": null, - "label": "31", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.32": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.32", - "description": null, - "label": "32", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.33": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.33", - "description": null, - "label": "33", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.34": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.34", - "description": null, - "label": "34", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.35": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.35", - "description": null, - "label": "35", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.36": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.36", - "description": null, - "label": "36", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.37": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.37", - "description": null, - "label": "37", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.38": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.38", - "description": null, - "label": "38", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.39": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.39", - "description": null, - "label": "39", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.40": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.40", - "description": null, - "label": "40", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.41": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.41", - "description": null, - "label": "41", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.42": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.42", - "description": null, - "label": "42", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.43": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.43", - "description": null, - "label": "43", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.44": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.44", - "description": null, - "label": "44", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.45": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.45", - "description": null, - "label": "45", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.46": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.46", - "description": null, - "label": "46", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.47": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.47", - "description": null, - "label": "47", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.48": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.48", - "description": null, - "label": "48", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.49": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.49", - "description": null, - "label": "49", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.50": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.50", - "description": null, - "label": "50", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.51": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.51", - "description": null, - "label": "51", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.52": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.52", - "description": null, - "label": "52", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.53": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.53", - "description": null, - "label": "53", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.54": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.54", - "description": null, - "label": "54", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.55": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.55", - "description": null, - "label": "55", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.56": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.56", - "description": null, - "label": "56", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.57": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.57", - "description": null, - "label": "57", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.58": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.58", - "description": null, - "label": "58", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.59": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.59", - "description": null, - "label": "59", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.60": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.60", - "description": null, - "label": "60", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.61": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.61", - "description": null, - "label": "61", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.62": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.62", - "description": null, - "label": "62", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.63": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.63", - "description": null, - "label": "63", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.64": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.64", - "description": null, - "label": "64", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.65": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.65", - "description": null, - "label": "65", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.66": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.66", - "description": null, - "label": "66", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.state_rating_area_cost.AA.67": { - "type": "parameter", - "parameter": "gov.aca.state_rating_area_cost.AA.67", - "description": null, - "label": "67", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment": { - "type": "parameterNode", - "parameter": "gov.aca.enrollment", - "description": null, - "label": "enrollment", - "economy": true, - "household": true - }, - "gov.aca.enrollment.state": { - "type": "parameterNode", - "parameter": "gov.aca.enrollment.state", - "description": "This number of people are enrolled in the Affordable Care Act in each state.", - "label": "ACA enrollment by state", - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.AK": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.AK", - "description": null, - "label": "AK", - "unit": null, - "period": null, - "values": { - "2024-01-01": 27464, - "2015-01-01": 27464 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.AL": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.AL", - "description": null, - "label": "AL", - "unit": null, - "period": null, - "values": { - "2024-01-01": 386195, - "2015-01-01": 386195 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.AR": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.AR", - "description": null, - "label": "AR", - "unit": null, - "period": null, - "values": { - "2024-01-01": 156607, - "2015-01-01": 156607 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.AZ": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.AZ", - "description": null, - "label": "AZ", - "unit": null, - "period": null, - "values": { - "2024-01-01": 348055, - "2015-01-01": 348055 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.CA": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.CA", - "description": null, - "label": "CA", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1784653, - "2015-01-01": 1784653 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.CO": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.CO", - "description": null, - "label": "CO", - "unit": null, - "period": null, - "values": { - "2024-01-01": 237106, - "2015-01-01": 237106 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.CT": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.CT", - "description": null, - "label": "CT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 129000, - "2015-01-01": 129000 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.DC": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.DC", - "description": null, - "label": "DC", - "unit": null, - "period": null, - "values": { - "2024-01-01": 14799, - "2015-01-01": 14799 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.DE": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.DE", - "description": null, - "label": "DE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 44842, - "2015-01-01": 44842 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.FL": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.FL", - "description": null, - "label": "FL", - "unit": null, - "period": null, - "values": { - "2024-01-01": 4211902, - "2015-01-01": 4211902 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.GA": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.GA", - "description": null, - "label": "GA", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1305114, - "2015-01-01": 1305114 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.HI": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.HI", - "description": null, - "label": "HI", - "unit": null, - "period": null, - "values": { - "2024-01-01": 22170, - "2015-01-01": 22170 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.IA": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.IA", - "description": null, - "label": "IA", - "unit": null, - "period": null, - "values": { - "2024-01-01": 111423, - "2015-01-01": 111423 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.ID": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.ID", - "description": null, - "label": "ID", - "unit": null, - "period": null, - "values": { - "2024-01-01": 103783, - "2015-01-01": 103783 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.IL": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.IL", - "description": null, - "label": "IL", - "unit": null, - "period": null, - "values": { - "2024-01-01": 398814, - "2015-01-01": 398814 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.IN": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.IN", - "description": null, - "label": "IN", - "unit": null, - "period": null, - "values": { - "2024-01-01": 295772, - "2015-01-01": 295772 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.KS": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.KS", - "description": null, - "label": "KS", - "unit": null, - "period": null, - "values": { - "2024-01-01": 171376, - "2015-01-01": 171376 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.KY": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.KY", - "description": null, - "label": "KY", - "unit": null, - "period": null, - "values": { - "2024-01-01": 75317, - "2015-01-01": 75317 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.LA": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.LA", - "description": null, - "label": "LA", - "unit": null, - "period": null, - "values": { - "2024-01-01": 212493, - "2015-01-01": 212493 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.MA": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.MA", - "description": null, - "label": "MA", - "unit": null, - "period": null, - "values": { - "2024-01-01": 311199, - "2015-01-01": 311199 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.MD": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.MD", - "description": null, - "label": "MD", - "unit": null, - "period": null, - "values": { - "2024-01-01": 213895, - "2015-01-01": 213895 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.ME": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.ME", - "description": null, - "label": "ME", - "unit": null, - "period": null, - "values": { - "2024-01-01": 62586, - "2015-01-01": 62586 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.MI": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.MI", - "description": null, - "label": "MI", - "unit": null, - "period": null, - "values": { - "2024-01-01": 418100, - "2015-01-01": 418100 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.MN": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.MN", - "description": null, - "label": "MN", - "unit": null, - "period": null, - "values": { - "2024-01-01": 135001, - "2015-01-01": 135001 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.MO": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.MO", - "description": null, - "label": "MO", - "unit": null, - "period": null, - "values": { - "2024-01-01": 359369, - "2015-01-01": 359369 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.MS": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.MS", - "description": null, - "label": "MS", - "unit": null, - "period": null, - "values": { - "2024-01-01": 286410, - "2015-01-01": 286410 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.MT": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.MT", - "description": null, - "label": "MT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 66336, - "2015-01-01": 66336 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.NC": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.NC", - "description": null, - "label": "NC", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1027930, - "2015-01-01": 1027930 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.ND": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.ND", - "description": null, - "label": "ND", - "unit": null, - "period": null, - "values": { - "2024-01-01": 38535, - "2015-01-01": 38535 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.NE": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.NE", - "description": null, - "label": "NE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 117882, - "2015-01-01": 117882 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.NH": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.NH", - "description": null, - "label": "NH", - "unit": null, - "period": null, - "values": { - "2024-01-01": 65117, - "2015-01-01": 65117 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.NJ": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.NJ", - "description": null, - "label": "NJ", - "unit": null, - "period": null, - "values": { - "2024-01-01": 397942, - "2015-01-01": 397942 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.NM": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.NM", - "description": null, - "label": "NM", - "unit": null, - "period": null, - "values": { - "2024-01-01": 56472, - "2015-01-01": 56472 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.NV": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.NV", - "description": null, - "label": "NV", - "unit": null, - "period": null, - "values": { - "2024-01-01": 99312, - "2015-01-01": 99312 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.NY": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.NY", - "description": null, - "label": "NY", - "unit": null, - "period": null, - "values": { - "2024-01-01": 288681, - "2015-01-01": 288681 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.OH": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.OH", - "description": null, - "label": "OH", - "unit": null, - "period": null, - "values": { - "2024-01-01": 477793, - "2015-01-01": 477793 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.OK": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.OK", - "description": null, - "label": "OK", - "unit": null, - "period": null, - "values": { - "2024-01-01": 277436, - "2015-01-01": 277436 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.OR": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.OR", - "description": null, - "label": "OR", - "unit": null, - "period": null, - "values": { - "2024-01-01": 145509, - "2015-01-01": 145509 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.PA": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.PA", - "description": null, - "label": "PA", - "unit": null, - "period": null, - "values": { - "2024-01-01": 434571, - "2015-01-01": 434571 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.RI": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.RI", - "description": null, - "label": "RI", - "unit": null, - "period": null, - "values": { - "2024-01-01": 36121, - "2015-01-01": 36121 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.SC": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.SC", - "description": null, - "label": "SC", - "unit": null, - "period": null, - "values": { - "2024-01-01": 571175, - "2015-01-01": 571175 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.SD": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.SD", - "description": null, - "label": "SD", - "unit": null, - "period": null, - "values": { - "2024-01-01": 52974, - "2015-01-01": 52974 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.TN": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.TN", - "description": null, - "label": "TN", - "unit": null, - "period": null, - "values": { - "2024-01-01": 555103, - "2015-01-01": 555103 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.TX": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.TX", - "description": null, - "label": "TX", - "unit": null, - "period": null, - "values": { - "2024-01-01": 3484632, - "2015-01-01": 3484632 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.UT": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.UT", - "description": null, - "label": "UT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 366939, - "2015-01-01": 366939 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.VA": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.VA", - "description": null, - "label": "VA", - "unit": null, - "period": null, - "values": { - "2024-01-01": 400058, - "2015-01-01": 400058 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.VT": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.VT", - "description": null, - "label": "VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 30027, - "2015-01-01": 30027 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.WA": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.WA", - "description": null, - "label": "WA", - "unit": null, - "period": null, - "values": { - "2024-01-01": 272494, - "2015-01-01": 272494 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.WI": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.WI", - "description": null, - "label": "WI", - "unit": null, - "period": null, - "values": { - "2024-01-01": 266327, - "2015-01-01": 266327 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.WV": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.WV", - "description": null, - "label": "WV", - "unit": null, - "period": null, - "values": { - "2024-01-01": 51046, - "2015-01-01": 51046 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.WY": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.WY", - "description": null, - "label": "WY", - "unit": null, - "period": null, - "values": { - "2024-01-01": 42293, - "2015-01-01": 42293 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.PW": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.PW", - "description": null, - "label": "PW", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.VI": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.VI", - "description": null, - "label": "VI", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.PR": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.PR", - "description": null, - "label": "PR", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.AP": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.AP", - "description": null, - "label": "AP", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.GU": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.GU", - "description": null, - "label": "GU", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.AE": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.AE", - "description": null, - "label": "AE", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.MP": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.MP", - "description": null, - "label": "MP", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.enrollment.state.AA": { - "type": "parameter", - "parameter": "gov.aca.enrollment.state.AA", - "description": null, - "label": "AA", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.spending": { - "type": "parameterNode", - "parameter": "gov.aca.spending", - "description": null, - "label": "spending", - "economy": true, - "household": true - }, - "gov.aca.spending.state": { - "type": "parameterNode", - "parameter": "gov.aca.spending.state", - "description": "The federal government spends this amount on Affordable Care Act healthcare plans by state.", - "label": "Federal ACA spending by state", - "economy": true, - "household": true - }, - "gov.aca.spending.state.AL": { - "type": "parameter", - "parameter": "gov.aca.spending.state.AL", - "description": null, - "label": "AL", - "unit": null, - "period": null, - "values": { - "2024-01-01": 2890336678, - "2015-01-01": 2890336678 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.AK": { - "type": "parameter", - "parameter": "gov.aca.spending.state.AK", - "description": null, - "label": "AK", - "unit": null, - "period": null, - "values": { - "2024-01-01": 230723458, - "2015-01-01": 230723458 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.AR": { - "type": "parameter", - "parameter": "gov.aca.spending.state.AR", - "description": null, - "label": "AR", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1656053008, - "2015-01-01": 1656053008 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.AZ": { - "type": "parameter", - "parameter": "gov.aca.spending.state.AZ", - "description": null, - "label": "AZ", - "unit": null, - "period": null, - "values": { - "2024-01-01": 739431333, - "2015-01-01": 739431333 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.CA": { - "type": "parameter", - "parameter": "gov.aca.spending.state.CA", - "description": null, - "label": "CA", - "unit": null, - "period": null, - "values": { - "2024-01-01": 9780889916, - "2015-01-01": 9780889916 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.CO": { - "type": "parameter", - "parameter": "gov.aca.spending.state.CO", - "description": null, - "label": "CO", - "unit": null, - "period": null, - "values": { - "2024-01-01": 947351765, - "2015-01-01": 947351765 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.CT": { - "type": "parameter", - "parameter": "gov.aca.spending.state.CT", - "description": null, - "label": "CT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1010498413, - "2015-01-01": 1010498413 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.DE": { - "type": "parameter", - "parameter": "gov.aca.spending.state.DE", - "description": null, - "label": "DE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 274799914, - "2015-01-01": 274799914 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.DC": { - "type": "parameter", - "parameter": "gov.aca.spending.state.DC", - "description": null, - "label": "DC", - "unit": null, - "period": null, - "values": { - "2024-01-01": 13624464, - "2015-01-01": 13624464 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.FL": { - "type": "parameter", - "parameter": "gov.aca.spending.state.FL", - "description": null, - "label": "FL", - "unit": null, - "period": null, - "values": { - "2024-01-01": 27387050134, - "2015-01-01": 27387050134 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.GA": { - "type": "parameter", - "parameter": "gov.aca.spending.state.GA", - "description": null, - "label": "GA", - "unit": null, - "period": null, - "values": { - "2024-01-01": 7763193500, - "2015-01-01": 7763193500 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.HI": { - "type": "parameter", - "parameter": "gov.aca.spending.state.HI", - "description": null, - "label": "HI", - "unit": null, - "period": null, - "values": { - "2024-01-01": 113488635, - "2015-01-01": 113488635 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.ID": { - "type": "parameter", - "parameter": "gov.aca.spending.state.ID", - "description": null, - "label": "ID", - "unit": null, - "period": null, - "values": { - "2024-01-01": 422056942, - "2015-01-01": 422056942 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.IL": { - "type": "parameter", - "parameter": "gov.aca.spending.state.IL", - "description": null, - "label": "IL", - "unit": null, - "period": null, - "values": { - "2024-01-01": 2170668272, - "2015-01-01": 2170668272 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.IN": { - "type": "parameter", - "parameter": "gov.aca.spending.state.IN", - "description": null, - "label": "IN", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1397583217, - "2015-01-01": 1397583217 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.IA": { - "type": "parameter", - "parameter": "gov.aca.spending.state.IA", - "description": null, - "label": "IA", - "unit": null, - "period": null, - "values": { - "2024-01-01": 598515537, - "2015-01-01": 598515537 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.KS": { - "type": "parameter", - "parameter": "gov.aca.spending.state.KS", - "description": null, - "label": "KS", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1049965401, - "2015-01-01": 1049965401 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.KY": { - "type": "parameter", - "parameter": "gov.aca.spending.state.KY", - "description": null, - "label": "KY", - "unit": null, - "period": null, - "values": { - "2024-01-01": 382100612, - "2015-01-01": 382100612 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.LA": { - "type": "parameter", - "parameter": "gov.aca.spending.state.LA", - "description": null, - "label": "LA", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1508790305, - "2015-01-01": 1508790305 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.ME": { - "type": "parameter", - "parameter": "gov.aca.spending.state.ME", - "description": null, - "label": "ME", - "unit": null, - "period": null, - "values": { - "2024-01-01": 350348739, - "2015-01-01": 350348739 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.MD": { - "type": "parameter", - "parameter": "gov.aca.spending.state.MD", - "description": null, - "label": "MD", - "unit": null, - "period": null, - "values": { - "2024-01-01": 734079277, - "2015-01-01": 734079277 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.MA": { - "type": "parameter", - "parameter": "gov.aca.spending.state.MA", - "description": null, - "label": "MA", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1077149934, - "2015-01-01": 1077149934 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.MI": { - "type": "parameter", - "parameter": "gov.aca.spending.state.MI", - "description": null, - "label": "MI", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1874780122, - "2015-01-01": 1874780122 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.MN": { - "type": "parameter", - "parameter": "gov.aca.spending.state.MN", - "description": null, - "label": "MN", - "unit": null, - "period": null, - "values": { - "2024-01-01": 332697308, - "2015-01-01": 332697308 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.MS": { - "type": "parameter", - "parameter": "gov.aca.spending.state.MS", - "description": null, - "label": "MS", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1923080231, - "2015-01-01": 1923080231 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.MO": { - "type": "parameter", - "parameter": "gov.aca.spending.state.MO", - "description": null, - "label": "MO", - "unit": null, - "period": null, - "values": { - "2024-01-01": 2364173083, - "2015-01-01": 2364173083 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.MT": { - "type": "parameter", - "parameter": "gov.aca.spending.state.MT", - "description": null, - "label": "MT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 346663471, - "2015-01-01": 346663471 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.NE": { - "type": "parameter", - "parameter": "gov.aca.spending.state.NE", - "description": null, - "label": "NE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 763397755, - "2015-01-01": 763397755 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.NV": { - "type": "parameter", - "parameter": "gov.aca.spending.state.NV", - "description": null, - "label": "NV", - "unit": null, - "period": null, - "values": { - "2024-01-01": 438932400, - "2015-01-01": 438932400 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.NH": { - "type": "parameter", - "parameter": "gov.aca.spending.state.NH", - "description": null, - "label": "NH", - "unit": null, - "period": null, - "values": { - "2024-01-01": 191905493, - "2015-01-01": 191905493 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.NJ": { - "type": "parameter", - "parameter": "gov.aca.spending.state.NJ", - "description": null, - "label": "NJ", - "unit": null, - "period": null, - "values": { - "2024-01-01": 2162693661, - "2015-01-01": 2162693661 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.NM": { - "type": "parameter", - "parameter": "gov.aca.spending.state.NM", - "description": null, - "label": "NM", - "unit": null, - "period": null, - "values": { - "2024-01-01": 308680329, - "2015-01-01": 308680329 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.NY": { - "type": "parameter", - "parameter": "gov.aca.spending.state.NY", - "description": null, - "label": "NY", - "unit": null, - "period": null, - "values": { - "2024-01-01": 933063078, - "2015-01-01": 933063078 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.NC": { - "type": "parameter", - "parameter": "gov.aca.spending.state.NC", - "description": null, - "label": "NC", - "unit": null, - "period": null, - "values": { - "2024-01-01": 6379699531, - "2015-01-01": 6379699531 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.ND": { - "type": "parameter", - "parameter": "gov.aca.spending.state.ND", - "description": null, - "label": "ND", - "unit": null, - "period": null, - "values": { - "2024-01-01": 175818029, - "2015-01-01": 175818029 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.OH": { - "type": "parameter", - "parameter": "gov.aca.spending.state.OH", - "description": null, - "label": "OH", - "unit": null, - "period": null, - "values": { - "2024-01-01": 2516459525, - "2015-01-01": 2516459525 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.OK": { - "type": "parameter", - "parameter": "gov.aca.spending.state.OK", - "description": null, - "label": "OK", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1810400180, - "2015-01-01": 1810400180 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.OR": { - "type": "parameter", - "parameter": "gov.aca.spending.state.OR", - "description": null, - "label": "OR", - "unit": null, - "period": null, - "values": { - "2024-01-01": 703685052, - "2015-01-01": 703685052 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.PA": { - "type": "parameter", - "parameter": "gov.aca.spending.state.PA", - "description": null, - "label": "PA", - "unit": null, - "period": null, - "values": { - "2024-01-01": 2353803040, - "2015-01-01": 2353803040 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.RI": { - "type": "parameter", - "parameter": "gov.aca.spending.state.RI", - "description": null, - "label": "RI", - "unit": null, - "period": null, - "values": { - "2024-01-01": 167020910, - "2015-01-01": 167020910 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.SC": { - "type": "parameter", - "parameter": "gov.aca.spending.state.SC", - "description": null, - "label": "SC", - "unit": null, - "period": null, - "values": { - "2024-01-01": 3530465116, - "2015-01-01": 3530465116 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.SD": { - "type": "parameter", - "parameter": "gov.aca.spending.state.SD", - "description": null, - "label": "SD", - "unit": null, - "period": null, - "values": { - "2024-01-01": 360959160, - "2015-01-01": 360959160 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.TN": { - "type": "parameter", - "parameter": "gov.aca.spending.state.TN", - "description": null, - "label": "TN", - "unit": null, - "period": null, - "values": { - "2024-01-01": 3567673202, - "2015-01-01": 3567673202 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.TX": { - "type": "parameter", - "parameter": "gov.aca.spending.state.TX", - "description": null, - "label": "TX", - "unit": null, - "period": null, - "values": { - "2024-01-01": 21229883401, - "2015-01-01": 21229883401 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.UT": { - "type": "parameter", - "parameter": "gov.aca.spending.state.UT", - "description": null, - "label": "UT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1744173493, - "2015-01-01": 1744173493 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.VT": { - "type": "parameter", - "parameter": "gov.aca.spending.state.VT", - "description": null, - "label": "VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 222916256, - "2015-01-01": 222916256 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.VA": { - "type": "parameter", - "parameter": "gov.aca.spending.state.VA", - "description": null, - "label": "VA", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1657142934, - "2015-01-01": 1657142934 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.WA": { - "type": "parameter", - "parameter": "gov.aca.spending.state.WA", - "description": null, - "label": "WA", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1009871359, - "2015-01-01": 1009871359 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.WV": { - "type": "parameter", - "parameter": "gov.aca.spending.state.WV", - "description": null, - "label": "WV", - "unit": null, - "period": null, - "values": { - "2024-01-01": 596826336, - "2015-01-01": 596826336 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.WI": { - "type": "parameter", - "parameter": "gov.aca.spending.state.WI", - "description": null, - "label": "WI", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1593103669, - "2015-01-01": 1593103669 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.WY": { - "type": "parameter", - "parameter": "gov.aca.spending.state.WY", - "description": null, - "label": "WY", - "unit": null, - "period": null, - "values": { - "2024-01-01": 396854467, - "2015-01-01": 396854467 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.PW": { - "type": "parameter", - "parameter": "gov.aca.spending.state.PW", - "description": null, - "label": "PW", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.VI": { - "type": "parameter", - "parameter": "gov.aca.spending.state.VI", - "description": null, - "label": "VI", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.PR": { - "type": "parameter", - "parameter": "gov.aca.spending.state.PR", - "description": null, - "label": "PR", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.AP": { - "type": "parameter", - "parameter": "gov.aca.spending.state.AP", - "description": null, - "label": "AP", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.GU": { - "type": "parameter", - "parameter": "gov.aca.spending.state.GU", - "description": null, - "label": "GU", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.AE": { - "type": "parameter", - "parameter": "gov.aca.spending.state.AE", - "description": null, - "label": "AE", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.MP": { - "type": "parameter", - "parameter": "gov.aca.spending.state.MP", - "description": null, - "label": "MP", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.spending.state.AA": { - "type": "parameter", - "parameter": "gov.aca.spending.state.AA", - "description": null, - "label": "AA", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.ptc_income_eligibility": { - "type": "parameterNode", - "parameter": "gov.aca.ptc_income_eligibility", - "description": "Eligibility for ACA Premium Tax Credit by percent of modified AGI to federal poverty line.", - "label": "ACA PTC income eligibility conditions" - }, - "gov.aca.ptc_income_eligibility[0]": { - "type": "parameterNode", - "parameter": "gov.aca.ptc_income_eligibility[0]", - "description": null, - "label": "bracket 1" - }, - "gov.aca.ptc_income_eligibility[0].threshold": { - "type": "parameter", - "parameter": "gov.aca.ptc_income_eligibility[0].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.ptc_income_eligibility[0].amount": { - "type": "parameter", - "parameter": "gov.aca.ptc_income_eligibility[0].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.ptc_income_eligibility[1]": { - "type": "parameterNode", - "parameter": "gov.aca.ptc_income_eligibility[1]", - "description": null, - "label": "bracket 2" - }, - "gov.aca.ptc_income_eligibility[1].threshold": { - "type": "parameter", - "parameter": "gov.aca.ptc_income_eligibility[1].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "0000-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.aca.ptc_income_eligibility[1].amount": { - "type": "parameter", - "parameter": "gov.aca.ptc_income_eligibility[1].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2014-01-01": true, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.ptc_income_eligibility[2]": { - "type": "parameterNode", - "parameter": "gov.aca.ptc_income_eligibility[2]", - "description": null, - "label": "bracket 3" - }, - "gov.aca.ptc_income_eligibility[2].threshold": { - "type": "parameter", - "parameter": "gov.aca.ptc_income_eligibility[2].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "0000-01-01": 4 - }, - "economy": true, - "household": true - }, - "gov.aca.ptc_income_eligibility[2].amount": { - "type": "parameter", - "parameter": "gov.aca.ptc_income_eligibility[2].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2026-01-01": false, - "2023-01-01": true, - "2021-01-01": true, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_ratings": { - "type": "parameterNode", - "parameter": "gov.aca.family_tier_ratings", - "description": null, - "label": "family tier ratings", - "economy": true, - "household": true - }, - "gov.aca.family_tier_ratings.ny": { - "type": "parameterNode", - "parameter": "gov.aca.family_tier_ratings.ny", - "description": "New York uses family tier multipliers for ACA premiums", - "label": "ACA premium family tier multipliers - NY", - "economy": true, - "household": true - }, - "gov.aca.family_tier_ratings.ny.ONE_ADULT": { - "type": "parameter", - "parameter": "gov.aca.family_tier_ratings.ny.ONE_ADULT", - "description": null, - "label": "ONE ADULT", - "unit": null, - "period": null, - "values": { - "2018-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_ratings.ny.TWO_ADULTS": { - "type": "parameter", - "parameter": "gov.aca.family_tier_ratings.ny.TWO_ADULTS", - "description": null, - "label": "TWO ADULTS", - "unit": null, - "period": null, - "values": { - "2018-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_ratings.ny.ONE_ADULT_AND_ONE_OR_MORE_CHILDREN": { - "type": "parameter", - "parameter": "gov.aca.family_tier_ratings.ny.ONE_ADULT_AND_ONE_OR_MORE_CHILDREN", - "description": null, - "label": "ONE ADULT AND ONE OR MORE CHILDREN", - "unit": null, - "period": null, - "values": { - "2018-01-01": 1.7, - "2015-01-01": 1.7 - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_ratings.ny.TWO_ADULTS_AND_ONE_OR_MORE_CHILDREN": { - "type": "parameter", - "parameter": "gov.aca.family_tier_ratings.ny.TWO_ADULTS_AND_ONE_OR_MORE_CHILDREN", - "description": null, - "label": "TWO ADULTS AND ONE OR MORE CHILDREN", - "unit": null, - "period": null, - "values": { - "2018-01-01": 2.85, - "2015-01-01": 2.85 - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_ratings.ny.CHILD_ONLY": { - "type": "parameter", - "parameter": "gov.aca.family_tier_ratings.ny.CHILD_ONLY", - "description": null, - "label": "CHILD ONLY", - "unit": null, - "period": null, - "values": { - "2018-01-01": 0.412, - "2015-01-01": 0.412 - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_ratings.ny.INDIVIDUAL_AGE_RATED": { - "type": "parameter", - "parameter": "gov.aca.family_tier_ratings.ny.INDIVIDUAL_AGE_RATED", - "description": null, - "label": "INDIVIDUAL AGE RATED", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_ratings.vt": { - "type": "parameterNode", - "parameter": "gov.aca.family_tier_ratings.vt", - "description": "Vermont uses family tier multipliers for ACA premiums", - "label": "ACA premium family tier multipliers - VT", - "economy": true, - "household": true - }, - "gov.aca.family_tier_ratings.vt.ONE_ADULT": { - "type": "parameter", - "parameter": "gov.aca.family_tier_ratings.vt.ONE_ADULT", - "description": null, - "label": "ONE ADULT", - "unit": null, - "period": null, - "values": { - "2018-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_ratings.vt.TWO_ADULTS": { - "type": "parameter", - "parameter": "gov.aca.family_tier_ratings.vt.TWO_ADULTS", - "description": null, - "label": "TWO ADULTS", - "unit": null, - "period": null, - "values": { - "2018-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_ratings.vt.ONE_ADULT_AND_ONE_OR_MORE_CHILDREN": { - "type": "parameter", - "parameter": "gov.aca.family_tier_ratings.vt.ONE_ADULT_AND_ONE_OR_MORE_CHILDREN", - "description": null, - "label": "ONE ADULT AND ONE OR MORE CHILDREN", - "unit": null, - "period": null, - "values": { - "2018-01-01": 1.93, - "2015-01-01": 1.93 - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_ratings.vt.TWO_ADULTS_AND_ONE_OR_MORE_CHILDREN": { - "type": "parameter", - "parameter": "gov.aca.family_tier_ratings.vt.TWO_ADULTS_AND_ONE_OR_MORE_CHILDREN", - "description": null, - "label": "TWO ADULTS AND ONE OR MORE CHILDREN", - "unit": null, - "period": null, - "values": { - "2018-01-01": 2.81, - "2015-01-01": 2.81 - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_ratings.vt.INDIVIDUAL_AGE_RATED": { - "type": "parameter", - "parameter": "gov.aca.family_tier_ratings.vt.INDIVIDUAL_AGE_RATED", - "description": null, - "label": "INDIVIDUAL AGE RATED", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.family_tier_ratings.vt.CHILD_ONLY": { - "type": "parameter", - "parameter": "gov.aca.family_tier_ratings.vt.CHILD_ONLY", - "description": null, - "label": "CHILD ONLY", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.la_county_rating_area": { - "type": "parameterNode", - "parameter": "gov.aca.la_county_rating_area", - "description": "Los Angeles County assigns three-digit ZIP codes to these Affordable Care Act rating areas.", - "label": "Los Angeles County ACA rating areas by three-digit ZIP code", - "economy": true, - "household": true - }, - "gov.aca.la_county_rating_area.906": { - "type": "parameter", - "parameter": "gov.aca.la_county_rating_area.906", - "description": null, - "label": "906", - "unit": null, - "period": null, - "values": { - "2014-01-01": 15 - }, - "economy": true, - "household": true - }, - "gov.aca.la_county_rating_area.907": { - "type": "parameter", - "parameter": "gov.aca.la_county_rating_area.907", - "description": null, - "label": "907", - "unit": null, - "period": null, - "values": { - "2014-01-01": 15 - }, - "economy": true, - "household": true - }, - "gov.aca.la_county_rating_area.908": { - "type": "parameter", - "parameter": "gov.aca.la_county_rating_area.908", - "description": null, - "label": "908", - "unit": null, - "period": null, - "values": { - "2014-01-01": 15 - }, - "economy": true, - "household": true - }, - "gov.aca.la_county_rating_area.910": { - "type": "parameter", - "parameter": "gov.aca.la_county_rating_area.910", - "description": null, - "label": "910", - "unit": null, - "period": null, - "values": { - "2014-01-01": 15 - }, - "economy": true, - "household": true - }, - "gov.aca.la_county_rating_area.911": { - "type": "parameter", - "parameter": "gov.aca.la_county_rating_area.911", - "description": null, - "label": "911", - "unit": null, - "period": null, - "values": { - "2014-01-01": 15 - }, - "economy": true, - "household": true - }, - "gov.aca.la_county_rating_area.912": { - "type": "parameter", - "parameter": "gov.aca.la_county_rating_area.912", - "description": null, - "label": "912", - "unit": null, - "period": null, - "values": { - "2014-01-01": 15 - }, - "economy": true, - "household": true - }, - "gov.aca.la_county_rating_area.915": { - "type": "parameter", - "parameter": "gov.aca.la_county_rating_area.915", - "description": null, - "label": "915", - "unit": null, - "period": null, - "values": { - "2014-01-01": 15 - }, - "economy": true, - "household": true - }, - "gov.aca.la_county_rating_area.917": { - "type": "parameter", - "parameter": "gov.aca.la_county_rating_area.917", - "description": null, - "label": "917", - "unit": null, - "period": null, - "values": { - "2014-01-01": 15 - }, - "economy": true, - "household": true - }, - "gov.aca.la_county_rating_area.918": { - "type": "parameter", - "parameter": "gov.aca.la_county_rating_area.918", - "description": null, - "label": "918", - "unit": null, - "period": null, - "values": { - "2014-01-01": 15 - }, - "economy": true, - "household": true - }, - "gov.aca.la_county_rating_area.935": { - "type": "parameter", - "parameter": "gov.aca.la_county_rating_area.935", - "description": null, - "label": "935", - "unit": null, - "period": null, - "values": { - "2014-01-01": 15 - }, - "economy": true, - "household": true - }, - "gov.aca.la_county_rating_area.900": { - "type": "parameter", - "parameter": "gov.aca.la_county_rating_area.900", - "description": null, - "label": "900", - "unit": null, - "period": null, - "values": { - "2014-01-01": 16 - }, - "economy": true, - "household": true - }, - "gov.aca.la_county_rating_area.902": { - "type": "parameter", - "parameter": "gov.aca.la_county_rating_area.902", - "description": null, - "label": "902", - "unit": null, - "period": null, - "values": { - "2014-01-01": 16 - }, - "economy": true, - "household": true - }, - "gov.aca.la_county_rating_area.903": { - "type": "parameter", - "parameter": "gov.aca.la_county_rating_area.903", - "description": null, - "label": "903", - "unit": null, - "period": null, - "values": { - "2014-01-01": 16 - }, - "economy": true, - "household": true - }, - "gov.aca.la_county_rating_area.904": { - "type": "parameter", - "parameter": "gov.aca.la_county_rating_area.904", - "description": null, - "label": "904", - "unit": null, - "period": null, - "values": { - "2014-01-01": 16 - }, - "economy": true, - "household": true - }, - "gov.aca.la_county_rating_area.905": { - "type": "parameter", - "parameter": "gov.aca.la_county_rating_area.905", - "description": null, - "label": "905", - "unit": null, - "period": null, - "values": { - "2014-01-01": 16 - }, - "economy": true, - "household": true - }, - "gov.aca.la_county_rating_area.913": { - "type": "parameter", - "parameter": "gov.aca.la_county_rating_area.913", - "description": null, - "label": "913", - "unit": null, - "period": null, - "values": { - "2014-01-01": 16 - }, - "economy": true, - "household": true - }, - "gov.aca.la_county_rating_area.914": { - "type": "parameter", - "parameter": "gov.aca.la_county_rating_area.914", - "description": null, - "label": "914", - "unit": null, - "period": null, - "values": { - "2014-01-01": 16 - }, - "economy": true, - "household": true - }, - "gov.aca.la_county_rating_area.916": { - "type": "parameter", - "parameter": "gov.aca.la_county_rating_area.916", - "description": null, - "label": "916", - "unit": null, - "period": null, - "values": { - "2014-01-01": 16 - }, - "economy": true, - "household": true - }, - "gov.aca.la_county_rating_area.923": { - "type": "parameter", - "parameter": "gov.aca.la_county_rating_area.923", - "description": null, - "label": "923", - "unit": null, - "period": null, - "values": { - "2014-01-01": 16 - }, - "economy": true, - "household": true - }, - "gov.aca.la_county_rating_area.928": { - "type": "parameter", - "parameter": "gov.aca.la_county_rating_area.928", - "description": null, - "label": "928", - "unit": null, - "period": null, - "values": { - "2014-01-01": 16 - }, - "economy": true, - "household": true - }, - "gov.aca.la_county_rating_area.932": { - "type": "parameter", - "parameter": "gov.aca.la_county_rating_area.932", - "description": null, - "label": "932", - "unit": null, - "period": null, - "values": { - "2014-01-01": 16 - }, - "economy": true, - "household": true - }, - "gov.aca.la_county_rating_area.901": { - "type": "parameter", - "parameter": "gov.aca.la_county_rating_area.901", - "description": null, - "label": "901", - "unit": null, - "period": null, - "values": { - "2014-01-01": 16 - }, - "economy": true, - "household": true - }, - "gov.aca.max_child_count": { - "type": "parameter", - "parameter": "gov.aca.max_child_count", - "description": "Maximum number of children who pay an age-based ACA plan premium.", - "label": "ACA maximum child count", - "unit": null, - "period": "year", - "values": { - "2014-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.aca.ineligible_immigration_statuses": { - "type": "parameter", - "parameter": "gov.aca.ineligible_immigration_statuses", - "description": "Ineligible immigration status for Premium Tax Credit.", - "label": "Reconciliation Premium Tax Credit immigration status adjustment in effect", - "unit": "list", - "period": "year", - "values": { - "2027-01-01": [ - "DACA_TPS", - "UNDOCUMENTED", - "TPS", - "ASYLEE", - "DEPORTATION_WITHHELD", - "PAROLED_ONE_YEAR" - ], - "2018-01-01": ["DACA_TPS", "UNDOCUMENTED", "TPS"], - "2015-01-01": ["DACA_TPS", "UNDOCUMENTED", "TPS"] - }, - "economy": true, - "household": true - }, - "gov.aca.slcsp": { - "type": "parameterNode", - "parameter": "gov.aca.slcsp", - "description": null, - "label": "slcsp", - "economy": false, - "household": false - }, - "gov.aca.slcsp.max_adult_age": { - "type": "parameter", - "parameter": "gov.aca.slcsp.max_adult_age", - "description": "Maximum age for ACA slcsp amounts.", - "label": "ACA maximum slcsp adult age", - "unit": null, - "period": "year", - "values": { - "2014-01-01": 64 - }, - "economy": false, - "household": false - }, - "gov.aca.slcsp.last_same_child_age": { - "type": "parameter", - "parameter": "gov.aca.slcsp.last_same_child_age", - "description": "Highest age for which ACA slcsp amount is the same as for newborns.", - "label": "ACA last same-slcsp child age", - "unit": null, - "period": "year", - "values": { - "2022-01-01": 14, - "2015-01-01": 14 - }, - "economy": false, - "household": false - }, - "gov.aca.slcsp.max_child_age": { - "type": "parameter", - "parameter": "gov.aca.slcsp.max_child_age", - "description": "Maximum age for ACA slcsp amounts.", - "label": "ACA maximum slcsp child age", - "unit": null, - "period": "year", - "values": { - "2014-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.aca.age_curves": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves", - "description": null, - "label": "age curves", - "economy": true, - "household": true - }, - "gov.aca.age_curves.ny": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ny", - "description": "New York multiplies base marketplace plan premiums by these age-specific factors to determine age-specific premiums.", - "label": "ACA premium age curve factors - NY" - }, - "gov.aca.age_curves.ny[0]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ny[0]", - "description": null, - "label": "bracket 1" - }, - "gov.aca.age_curves.ny[0].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ny[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ny[0].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ny[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.412, - "2015-01-01": 0.412 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ny[1]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ny[1]", - "description": null, - "label": "bracket 2" - }, - "gov.aca.age_curves.ny[1].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ny[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2018-01-01": 21, - "2015-01-01": 21 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ny[1].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ny[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.dc", - "description": "The District of Columbia multiplies base marketplace plan premiums by these age-specific factors to determine age-specific premiums.", - "label": "ACA premium age curve factors - DC" - }, - "gov.aca.age_curves.dc[0]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.dc[0]", - "description": null, - "label": "bracket 1" - }, - "gov.aca.age_curves.dc[0].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[0].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[0].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[1]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.dc[1]", - "description": null, - "label": "bracket 2" - }, - "gov.aca.age_curves.dc[1].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[1].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 21, - "2015-01-01": 21 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[1].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.1116, - "2015-01-01": 1.1116 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[2]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.dc[2]", - "description": null, - "label": "bracket 3" - }, - "gov.aca.age_curves.dc[2].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[2].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 28, - "2015-01-01": 28 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[2].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.1376, - "2015-01-01": 1.1376 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[3]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.dc[3]", - "description": null, - "label": "bracket 4" - }, - "gov.aca.age_curves.dc[3].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[3].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 29, - "2015-01-01": 29 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[3].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.1621, - "2015-01-01": 1.1621 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[4]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.dc[4]", - "description": null, - "label": "bracket 5" - }, - "gov.aca.age_curves.dc[4].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[4].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 30, - "2015-01-01": 30 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[4].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[4].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.1911, - "2015-01-01": 1.1911 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[5]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.dc[5]", - "description": null, - "label": "bracket 6" - }, - "gov.aca.age_curves.dc[5].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[5].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 31, - "2015-01-01": 31 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[5].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[5].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.2217, - "2015-01-01": 1.2217 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[6]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.dc[6]", - "description": null, - "label": "bracket 7" - }, - "gov.aca.age_curves.dc[6].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[6].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 32, - "2015-01-01": 32 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[6].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[6].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.2492, - "2015-01-01": 1.2492 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[7]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.dc[7]", - "description": null, - "label": "bracket 8" - }, - "gov.aca.age_curves.dc[7].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[7].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 33, - "2015-01-01": 33 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[7].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[7].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.2783, - "2015-01-01": 1.2783 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[8]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.dc[8]", - "description": null, - "label": "bracket 9" - }, - "gov.aca.age_curves.dc[8].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[8].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 34, - "2015-01-01": 34 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[8].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[8].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.3089, - "2015-01-01": 1.3089 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[9]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.dc[9]", - "description": null, - "label": "bracket 10" - }, - "gov.aca.age_curves.dc[9].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[9].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 35, - "2015-01-01": 35 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[9].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[9].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.3394, - "2015-01-01": 1.3394 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[10]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.dc[10]", - "description": null, - "label": "bracket 11" - }, - "gov.aca.age_curves.dc[10].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[10].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 36, - "2015-01-01": 36 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[10].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[10].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.37, - "2015-01-01": 1.37 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[11]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.dc[11]", - "description": null, - "label": "bracket 12" - }, - "gov.aca.age_curves.dc[11].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[11].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 37, - "2015-01-01": 37 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[11].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[11].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.4006, - "2015-01-01": 1.4006 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[12]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.dc[12]", - "description": null, - "label": "bracket 13" - }, - "gov.aca.age_curves.dc[12].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[12].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 38, - "2015-01-01": 38 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[12].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[12].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.4174, - "2015-01-01": 1.4174 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[13]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.dc[13]", - "description": null, - "label": "bracket 14" - }, - "gov.aca.age_curves.dc[13].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[13].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 39, - "2015-01-01": 39 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[13].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[13].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.4343, - "2015-01-01": 1.4343 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[14]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.dc[14]", - "description": null, - "label": "bracket 15" - }, - "gov.aca.age_curves.dc[14].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[14].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 40, - "2015-01-01": 40 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[14].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[14].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.4908, - "2015-01-01": 1.4908 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[15]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.dc[15]", - "description": null, - "label": "bracket 16" - }, - "gov.aca.age_curves.dc[15].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[15].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 41, - "2015-01-01": 41 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[15].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[15].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.5489, - "2015-01-01": 1.5489 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[16]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.dc[16]", - "description": null, - "label": "bracket 17" - }, - "gov.aca.age_curves.dc[16].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[16].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 42, - "2015-01-01": 42 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[16].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[16].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.6101, - "2015-01-01": 1.6101 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[17]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.dc[17]", - "description": null, - "label": "bracket 18" - }, - "gov.aca.age_curves.dc[17].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[17].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 43, - "2015-01-01": 43 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[17].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[17].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.6728, - "2015-01-01": 1.6728 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[18]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.dc[18]", - "description": null, - "label": "bracket 19" - }, - "gov.aca.age_curves.dc[18].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[18].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 44, - "2015-01-01": 44 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[18].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[18].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.7385, - "2015-01-01": 1.7385 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[19]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.dc[19]", - "description": null, - "label": "bracket 20" - }, - "gov.aca.age_curves.dc[19].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[19].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 45, - "2015-01-01": 45 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[19].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[19].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.8058, - "2015-01-01": 1.8058 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[20]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.dc[20]", - "description": null, - "label": "bracket 21" - }, - "gov.aca.age_curves.dc[20].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[20].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 46, - "2015-01-01": 46 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[20].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[20].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.8761, - "2015-01-01": 1.8761 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[21]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.dc[21]", - "description": null, - "label": "bracket 22" - }, - "gov.aca.age_curves.dc[21].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[21].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 47, - "2015-01-01": 47 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[21].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[21].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.9495, - "2015-01-01": 1.9495 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[22]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.dc[22]", - "description": null, - "label": "bracket 23" - }, - "gov.aca.age_curves.dc[22].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[22].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 48, - "2015-01-01": 48 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[22].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[22].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.026, - "2015-01-01": 2.026 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[23]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.dc[23]", - "description": null, - "label": "bracket 24" - }, - "gov.aca.age_curves.dc[23].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[23].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 49, - "2015-01-01": 49 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[23].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[23].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.1055, - "2015-01-01": 2.1055 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[24]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.dc[24]", - "description": null, - "label": "bracket 25" - }, - "gov.aca.age_curves.dc[24].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[24].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 50, - "2015-01-01": 50 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[24].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[24].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.1881, - "2015-01-01": 2.1881 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[25]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.dc[25]", - "description": null, - "label": "bracket 26" - }, - "gov.aca.age_curves.dc[25].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[25].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 51, - "2015-01-01": 51 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[25].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[25].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.2737, - "2015-01-01": 2.2737 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[26]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.dc[26]", - "description": null, - "label": "bracket 27" - }, - "gov.aca.age_curves.dc[26].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[26].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 52, - "2015-01-01": 52 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[26].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[26].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.3624, - "2015-01-01": 2.3624 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[27]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.dc[27]", - "description": null, - "label": "bracket 28" - }, - "gov.aca.age_curves.dc[27].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[27].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 53, - "2015-01-01": 53 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[27].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[27].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.4541, - "2015-01-01": 2.4541 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[28]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.dc[28]", - "description": null, - "label": "bracket 29" - }, - "gov.aca.age_curves.dc[28].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[28].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 54, - "2015-01-01": 54 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[28].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[28].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.5505, - "2015-01-01": 2.5505 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[29]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.dc[29]", - "description": null, - "label": "bracket 30" - }, - "gov.aca.age_curves.dc[29].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[29].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 55, - "2015-01-01": 55 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[29].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[29].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.6498, - "2015-01-01": 2.6498 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[30]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.dc[30]", - "description": null, - "label": "bracket 31" - }, - "gov.aca.age_curves.dc[30].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[30].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 56, - "2015-01-01": 56 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[30].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[30].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.7538, - "2015-01-01": 2.7538 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[31]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.dc[31]", - "description": null, - "label": "bracket 32" - }, - "gov.aca.age_curves.dc[31].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[31].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 57, - "2015-01-01": 57 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[31].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[31].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.8609, - "2015-01-01": 2.8609 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[32]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.dc[32]", - "description": null, - "label": "bracket 33" - }, - "gov.aca.age_curves.dc[32].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[32].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 58, - "2015-01-01": 58 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[32].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[32].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.9725, - "2015-01-01": 2.9725 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[33]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.dc[33]", - "description": null, - "label": "bracket 34" - }, - "gov.aca.age_curves.dc[33].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[33].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 59, - "2015-01-01": 59 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[33].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[33].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.0887, - "2015-01-01": 3.0887 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[34]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.dc[34]", - "description": null, - "label": "bracket 35" - }, - "gov.aca.age_curves.dc[34].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[34].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 60, - "2015-01-01": 60 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[34].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[34].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.2095, - "2015-01-01": 3.2095 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[35]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.dc[35]", - "description": null, - "label": "bracket 36" - }, - "gov.aca.age_curves.dc[35].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[35].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 61, - "2015-01-01": 61 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.dc[35].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.dc[35].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.3349, - "2015-01-01": 3.3349 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.vt": { - "type": "parameter", - "parameter": "gov.aca.age_curves.vt", - "description": "Vermont has no age variation in ACA premiums.", - "label": "ACA premium age curve factors - VT", - "unit": "/1", - "period": "year", - "values": { - "2018-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default", - "description": "CMS multiplies base marketplace plan premiums by these age-specific factors to determine age-specific premiums.", - "label": "ACA premium age curve factors - Default" - }, - "gov.aca.age_curves.default[0]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[0]", - "description": null, - "label": "bracket 1" - }, - "gov.aca.age_curves.default[0].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[0].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[0].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[1]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[1]", - "description": null, - "label": "bracket 2" - }, - "gov.aca.age_curves.default[1].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[1].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 15, - "2015-01-01": 15 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[1].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.0889, - "2015-01-01": 1.0889 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[2]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[2]", - "description": null, - "label": "bracket 3" - }, - "gov.aca.age_curves.default[2].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[2].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 16, - "2015-01-01": 16 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[2].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.1229, - "2015-01-01": 1.1229 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[3]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[3]", - "description": null, - "label": "bracket 4" - }, - "gov.aca.age_curves.default[3].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[3].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 17, - "2015-01-01": 17 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[3].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.1569, - "2015-01-01": 1.1569 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[4]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[4]", - "description": null, - "label": "bracket 5" - }, - "gov.aca.age_curves.default[4].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[4].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 18, - "2015-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[4].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[4].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.1935, - "2015-01-01": 1.1935 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[5]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[5]", - "description": null, - "label": "bracket 6" - }, - "gov.aca.age_curves.default[5].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[5].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 19, - "2015-01-01": 19 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[5].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[5].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.2301, - "2015-01-01": 1.2301 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[6]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[6]", - "description": null, - "label": "bracket 7" - }, - "gov.aca.age_curves.default[6].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[6].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 20, - "2015-01-01": 20 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[6].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[6].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.268, - "2015-01-01": 1.268 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[7]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[7]", - "description": null, - "label": "bracket 8" - }, - "gov.aca.age_curves.default[7].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[7].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 21, - "2015-01-01": 21 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[7].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[7].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.3072, - "2015-01-01": 1.3072 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[8]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[8]", - "description": null, - "label": "bracket 9" - }, - "gov.aca.age_curves.default[8].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[8].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 25, - "2015-01-01": 25 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[8].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[8].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.3124, - "2015-01-01": 1.3124 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[9]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[9]", - "description": null, - "label": "bracket 10" - }, - "gov.aca.age_curves.default[9].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[9].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 26, - "2015-01-01": 26 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[9].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[9].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.3386, - "2015-01-01": 1.3386 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[10]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[10]", - "description": null, - "label": "bracket 11" - }, - "gov.aca.age_curves.default[10].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[10].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 27, - "2015-01-01": 27 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[10].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[10].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.3699, - "2015-01-01": 1.3699 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[11]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[11]", - "description": null, - "label": "bracket 12" - }, - "gov.aca.age_curves.default[11].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[11].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 28, - "2015-01-01": 28 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[11].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[11].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.4209, - "2015-01-01": 1.4209 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[12]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[12]", - "description": null, - "label": "bracket 13" - }, - "gov.aca.age_curves.default[12].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[12].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 29, - "2015-01-01": 29 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[12].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[12].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.4627, - "2015-01-01": 1.4627 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[13]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[13]", - "description": null, - "label": "bracket 14" - }, - "gov.aca.age_curves.default[13].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[13].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 30, - "2015-01-01": 30 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[13].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[13].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.4837, - "2015-01-01": 1.4837 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[14]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[14]", - "description": null, - "label": "bracket 15" - }, - "gov.aca.age_curves.default[14].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[14].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 31, - "2015-01-01": 31 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[14].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[14].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.515, - "2015-01-01": 1.515 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[15]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[15]", - "description": null, - "label": "bracket 16" - }, - "gov.aca.age_curves.default[15].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[15].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 32, - "2015-01-01": 32 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[15].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[15].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.5464, - "2015-01-01": 1.5464 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[16]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[16]", - "description": null, - "label": "bracket 17" - }, - "gov.aca.age_curves.default[16].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[16].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 33, - "2015-01-01": 33 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[16].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[16].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.566, - "2015-01-01": 1.566 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[17]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[17]", - "description": null, - "label": "bracket 18" - }, - "gov.aca.age_curves.default[17].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[17].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 34, - "2015-01-01": 34 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[17].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[17].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.5869, - "2015-01-01": 1.5869 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[18]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[18]", - "description": null, - "label": "bracket 19" - }, - "gov.aca.age_curves.default[18].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[18].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 35, - "2015-01-01": 35 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[18].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[18].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.5974, - "2015-01-01": 1.5974 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[19]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[19]", - "description": null, - "label": "bracket 20" - }, - "gov.aca.age_curves.default[19].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[19].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 36, - "2015-01-01": 36 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[19].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[19].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.6078, - "2015-01-01": 1.6078 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[20]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[20]", - "description": null, - "label": "bracket 21" - }, - "gov.aca.age_curves.default[20].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[20].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 37, - "2015-01-01": 37 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[20].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[20].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.6183, - "2015-01-01": 1.6183 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[21]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[21]", - "description": null, - "label": "bracket 22" - }, - "gov.aca.age_curves.default[21].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[21].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 38, - "2015-01-01": 38 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[21].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[21].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.6288, - "2015-01-01": 1.6288 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[22]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[22]", - "description": null, - "label": "bracket 23" - }, - "gov.aca.age_curves.default[22].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[22].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 39, - "2015-01-01": 39 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[22].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[22].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.6497, - "2015-01-01": 1.6497 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[23]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[23]", - "description": null, - "label": "bracket 24" - }, - "gov.aca.age_curves.default[23].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[23].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 40, - "2015-01-01": 40 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[23].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[23].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.6706, - "2015-01-01": 1.6706 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[24]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[24]", - "description": null, - "label": "bracket 25" - }, - "gov.aca.age_curves.default[24].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[24].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 41, - "2015-01-01": 41 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[24].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[24].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.702, - "2015-01-01": 1.702 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[25]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[25]", - "description": null, - "label": "bracket 26" - }, - "gov.aca.age_curves.default[25].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[25].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 42, - "2015-01-01": 42 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[25].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[25].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.732, - "2015-01-01": 1.732 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[26]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[26]", - "description": null, - "label": "bracket 27" - }, - "gov.aca.age_curves.default[26].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[26].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 43, - "2015-01-01": 43 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[26].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[26].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.7739, - "2015-01-01": 1.7739 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[27]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[27]", - "description": null, - "label": "bracket 28" - }, - "gov.aca.age_curves.default[27].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[27].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 44, - "2015-01-01": 44 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[27].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[27].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.8261, - "2015-01-01": 1.8261 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[28]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[28]", - "description": null, - "label": "bracket 29" - }, - "gov.aca.age_curves.default[28].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[28].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 45, - "2015-01-01": 45 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[28].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[28].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.8876, - "2015-01-01": 1.8876 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[29]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[29]", - "description": null, - "label": "bracket 30" - }, - "gov.aca.age_curves.default[29].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[29].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 46, - "2015-01-01": 46 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[29].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[29].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.9608, - "2015-01-01": 1.9608 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[30]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[30]", - "description": null, - "label": "bracket 31" - }, - "gov.aca.age_curves.default[30].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[30].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 47, - "2015-01-01": 47 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[30].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[30].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.0431, - "2015-01-01": 2.0431 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[31]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[31]", - "description": null, - "label": "bracket 32" - }, - "gov.aca.age_curves.default[31].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[31].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 48, - "2015-01-01": 48 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[31].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[31].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.1373, - "2015-01-01": 2.1373 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[32]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[32]", - "description": null, - "label": "bracket 33" - }, - "gov.aca.age_curves.default[32].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[32].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 49, - "2015-01-01": 49 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[32].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[32].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.2301, - "2015-01-01": 2.2301 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[33]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[33]", - "description": null, - "label": "bracket 34" - }, - "gov.aca.age_curves.default[33].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[33].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 50, - "2015-01-01": 50 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[33].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[33].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.3346, - "2015-01-01": 2.3346 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[34]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[34]", - "description": null, - "label": "bracket 35" - }, - "gov.aca.age_curves.default[34].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[34].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 51, - "2015-01-01": 51 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[34].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[34].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.4379, - "2015-01-01": 2.4379 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[35]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[35]", - "description": null, - "label": "bracket 36" - }, - "gov.aca.age_curves.default[35].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[35].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 52, - "2015-01-01": 52 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[35].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[35].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.5516, - "2015-01-01": 2.5516 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[36]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[36]", - "description": null, - "label": "bracket 37" - }, - "gov.aca.age_curves.default[36].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[36].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 53, - "2015-01-01": 53 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[36].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[36].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.6667, - "2015-01-01": 2.6667 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[37]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[37]", - "description": null, - "label": "bracket 38" - }, - "gov.aca.age_curves.default[37].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[37].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 54, - "2015-01-01": 54 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[37].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[37].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.7908, - "2015-01-01": 2.7908 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[38]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[38]", - "description": null, - "label": "bracket 39" - }, - "gov.aca.age_curves.default[38].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[38].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 55, - "2015-01-01": 55 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[38].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[38].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.915, - "2015-01-01": 2.915 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[39]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[39]", - "description": null, - "label": "bracket 40" - }, - "gov.aca.age_curves.default[39].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[39].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 56, - "2015-01-01": 56 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[39].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[39].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.0497, - "2015-01-01": 3.0497 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[40]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[40]", - "description": null, - "label": "bracket 41" - }, - "gov.aca.age_curves.default[40].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[40].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 57, - "2015-01-01": 57 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[40].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[40].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.1856, - "2015-01-01": 3.1856 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[41]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[41]", - "description": null, - "label": "bracket 42" - }, - "gov.aca.age_curves.default[41].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[41].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 58, - "2015-01-01": 58 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[41].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[41].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.3307, - "2015-01-01": 3.3307 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[42]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[42]", - "description": null, - "label": "bracket 43" - }, - "gov.aca.age_curves.default[42].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[42].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 59, - "2015-01-01": 59 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[42].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[42].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.4026, - "2015-01-01": 3.4026 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[43]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[43]", - "description": null, - "label": "bracket 44" - }, - "gov.aca.age_curves.default[43].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[43].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 60, - "2015-01-01": 60 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[43].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[43].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.5477, - "2015-01-01": 3.5477 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[44]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[44]", - "description": null, - "label": "bracket 45" - }, - "gov.aca.age_curves.default[44].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[44].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 61, - "2015-01-01": 61 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[44].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[44].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.6732, - "2015-01-01": 3.6732 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[45]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[45]", - "description": null, - "label": "bracket 46" - }, - "gov.aca.age_curves.default[45].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[45].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 62, - "2015-01-01": 62 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[45].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[45].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.7556, - "2015-01-01": 3.7556 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[46]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[46]", - "description": null, - "label": "bracket 47" - }, - "gov.aca.age_curves.default[46].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[46].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 63, - "2015-01-01": 63 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[46].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[46].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.8588, - "2015-01-01": 3.8588 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[47]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.default[47]", - "description": null, - "label": "bracket 48" - }, - "gov.aca.age_curves.default[47].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[47].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 64, - "2015-01-01": 64 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.default[47].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.default[47].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.9216, - "2015-01-01": 3.9216 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.al", - "description": "Alabama multiplies base marketplace plan premiums by these age-specific factors to determine age-specific premiums.", - "label": "ACA premium age curve factors - AL" - }, - "gov.aca.age_curves.al[0]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.al[0]", - "description": null, - "label": "bracket 1" - }, - "gov.aca.age_curves.al[0].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[0].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[0].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[1]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.al[1]", - "description": null, - "label": "bracket 2" - }, - "gov.aca.age_curves.al[1].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[1].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 21, - "2015-01-01": 21 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[1].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.5748, - "2015-01-01": 1.5748 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[2]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.al[2]", - "description": null, - "label": "bracket 3" - }, - "gov.aca.age_curves.al[2].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[2].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 25, - "2015-01-01": 25 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[2].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.5811, - "2015-01-01": 1.5811 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[3]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.al[3]", - "description": null, - "label": "bracket 4" - }, - "gov.aca.age_curves.al[3].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[3].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 26, - "2015-01-01": 26 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[3].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.6126, - "2015-01-01": 1.6126 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[4]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.al[4]", - "description": null, - "label": "bracket 5" - }, - "gov.aca.age_curves.al[4].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[4].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 27, - "2015-01-01": 27 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[4].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[4].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.6504, - "2015-01-01": 1.6504 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[5]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.al[5]", - "description": null, - "label": "bracket 6" - }, - "gov.aca.age_curves.al[5].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[5].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 28, - "2015-01-01": 28 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[5].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[5].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.7118, - "2015-01-01": 1.7118 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[6]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.al[6]", - "description": null, - "label": "bracket 7" - }, - "gov.aca.age_curves.al[6].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[6].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 29, - "2015-01-01": 29 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[6].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[6].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.7622, - "2015-01-01": 1.7622 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[7]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.al[7]", - "description": null, - "label": "bracket 8" - }, - "gov.aca.age_curves.al[7].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[7].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 30, - "2015-01-01": 30 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[7].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[7].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.7874, - "2015-01-01": 1.7874 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[8]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.al[8]", - "description": null, - "label": "bracket 9" - }, - "gov.aca.age_curves.al[8].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[8].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 31, - "2015-01-01": 31 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[8].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[8].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.8252, - "2015-01-01": 1.8252 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[9]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.al[9]", - "description": null, - "label": "bracket 10" - }, - "gov.aca.age_curves.al[9].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[9].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 32, - "2015-01-01": 32 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[9].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[9].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.863, - "2015-01-01": 1.863 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[10]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.al[10]", - "description": null, - "label": "bracket 11" - }, - "gov.aca.age_curves.al[10].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[10].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 33, - "2015-01-01": 33 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[10].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[10].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.8866, - "2015-01-01": 1.8866 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[11]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.al[11]", - "description": null, - "label": "bracket 12" - }, - "gov.aca.age_curves.al[11].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[11].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 34, - "2015-01-01": 34 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[11].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[11].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.9118, - "2015-01-01": 1.9118 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[12]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.al[12]", - "description": null, - "label": "bracket 13" - }, - "gov.aca.age_curves.al[12].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[12].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 35, - "2015-01-01": 35 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[12].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[12].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.9244, - "2015-01-01": 1.9244 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[13]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.al[13]", - "description": null, - "label": "bracket 14" - }, - "gov.aca.age_curves.al[13].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[13].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 36, - "2015-01-01": 36 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[13].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[13].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.937, - "2015-01-01": 1.937 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[14]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.al[14]", - "description": null, - "label": "bracket 15" - }, - "gov.aca.age_curves.al[14].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[14].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 37, - "2015-01-01": 37 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[14].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[14].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.9496, - "2015-01-01": 1.9496 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[15]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.al[15]", - "description": null, - "label": "bracket 16" - }, - "gov.aca.age_curves.al[15].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[15].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 38, - "2015-01-01": 38 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[15].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[15].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.9622, - "2015-01-01": 1.9622 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[16]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.al[16]", - "description": null, - "label": "bracket 17" - }, - "gov.aca.age_curves.al[16].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[16].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 39, - "2015-01-01": 39 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[16].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[16].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.9874, - "2015-01-01": 1.9874 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[17]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.al[17]", - "description": null, - "label": "bracket 18" - }, - "gov.aca.age_curves.al[17].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[17].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 40, - "2015-01-01": 40 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[17].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[17].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.0126, - "2015-01-01": 2.0126 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[18]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.al[18]", - "description": null, - "label": "bracket 19" - }, - "gov.aca.age_curves.al[18].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[18].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 41, - "2015-01-01": 41 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[18].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[18].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.0504, - "2015-01-01": 2.0504 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[19]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.al[19]", - "description": null, - "label": "bracket 20" - }, - "gov.aca.age_curves.al[19].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[19].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 42, - "2015-01-01": 42 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[19].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[19].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.0866, - "2015-01-01": 2.0866 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[20]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.al[20]", - "description": null, - "label": "bracket 21" - }, - "gov.aca.age_curves.al[20].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[20].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 43, - "2015-01-01": 43 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[20].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[20].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.137, - "2015-01-01": 2.137 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[21]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.al[21]", - "description": null, - "label": "bracket 22" - }, - "gov.aca.age_curves.al[21].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[21].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 44, - "2015-01-01": 44 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[21].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[21].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.2, - "2015-01-01": 2.2 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[22]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.al[22]", - "description": null, - "label": "bracket 23" - }, - "gov.aca.age_curves.al[22].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[22].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 45, - "2015-01-01": 45 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[22].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[22].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.274, - "2015-01-01": 2.274 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[23]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.al[23]", - "description": null, - "label": "bracket 24" - }, - "gov.aca.age_curves.al[23].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[23].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 46, - "2015-01-01": 46 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[23].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[23].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.3622, - "2015-01-01": 2.3622 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[24]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.al[24]", - "description": null, - "label": "bracket 25" - }, - "gov.aca.age_curves.al[24].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[24].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 47, - "2015-01-01": 47 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[24].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[24].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.4614, - "2015-01-01": 2.4614 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[25]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.al[25]", - "description": null, - "label": "bracket 26" - }, - "gov.aca.age_curves.al[25].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[25].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 48, - "2015-01-01": 48 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[25].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[25].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.5748, - "2015-01-01": 2.5748 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[26]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.al[26]", - "description": null, - "label": "bracket 27" - }, - "gov.aca.age_curves.al[26].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[26].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 49, - "2015-01-01": 49 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[26].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[26].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.6866, - "2015-01-01": 2.6866 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[27]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.al[27]", - "description": null, - "label": "bracket 28" - }, - "gov.aca.age_curves.al[27].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[27].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 50, - "2015-01-01": 50 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[27].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[27].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.8126, - "2015-01-01": 2.8126 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[28]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.al[28]", - "description": null, - "label": "bracket 29" - }, - "gov.aca.age_curves.al[28].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[28].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 51, - "2015-01-01": 51 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[28].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[28].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.937, - "2015-01-01": 2.937 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[29]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.al[29]", - "description": null, - "label": "bracket 30" - }, - "gov.aca.age_curves.al[29].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[29].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 52, - "2015-01-01": 52 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[29].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[29].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.074, - "2015-01-01": 3.074 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[30]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.al[30]", - "description": null, - "label": "bracket 31" - }, - "gov.aca.age_curves.al[30].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[30].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 53, - "2015-01-01": 53 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[30].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[30].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.2126, - "2015-01-01": 3.2126 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[31]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.al[31]", - "description": null, - "label": "bracket 32" - }, - "gov.aca.age_curves.al[31].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[31].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 54, - "2015-01-01": 54 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[31].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[31].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.3622, - "2015-01-01": 3.3622 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[32]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.al[32]", - "description": null, - "label": "bracket 33" - }, - "gov.aca.age_curves.al[32].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[32].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 55, - "2015-01-01": 55 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[32].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[32].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.5118, - "2015-01-01": 3.5118 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[33]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.al[33]", - "description": null, - "label": "bracket 34" - }, - "gov.aca.age_curves.al[33].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[33].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 56, - "2015-01-01": 56 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[33].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[33].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.674, - "2015-01-01": 3.674 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[34]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.al[34]", - "description": null, - "label": "bracket 35" - }, - "gov.aca.age_curves.al[34].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[34].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 57, - "2015-01-01": 57 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[34].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[34].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.8378, - "2015-01-01": 3.8378 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[35]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.al[35]", - "description": null, - "label": "bracket 36" - }, - "gov.aca.age_curves.al[35].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[35].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 58, - "2015-01-01": 58 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[35].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[35].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 4.0126, - "2015-01-01": 4.0126 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[36]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.al[36]", - "description": null, - "label": "bracket 37" - }, - "gov.aca.age_curves.al[36].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[36].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 59, - "2015-01-01": 59 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[36].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[36].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 4.0992, - "2015-01-01": 4.0992 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[37]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.al[37]", - "description": null, - "label": "bracket 38" - }, - "gov.aca.age_curves.al[37].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[37].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 60, - "2015-01-01": 60 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[37].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[37].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 4.274, - "2015-01-01": 4.274 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[38]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.al[38]", - "description": null, - "label": "bracket 39" - }, - "gov.aca.age_curves.al[38].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[38].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 61, - "2015-01-01": 61 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[38].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[38].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 4.4252, - "2015-01-01": 4.4252 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[39]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.al[39]", - "description": null, - "label": "bracket 40" - }, - "gov.aca.age_curves.al[39].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[39].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 62, - "2015-01-01": 62 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[39].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[39].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 4.5244, - "2015-01-01": 4.5244 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[40]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.al[40]", - "description": null, - "label": "bracket 41" - }, - "gov.aca.age_curves.al[40].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[40].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 63, - "2015-01-01": 63 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[40].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[40].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 4.6488, - "2015-01-01": 4.6488 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[41]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.al[41]", - "description": null, - "label": "bracket 42" - }, - "gov.aca.age_curves.al[41].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[41].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 64, - "2015-01-01": 64 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.al[41].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.al[41].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 4.7244, - "2015-01-01": 4.7244 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ma", - "description": "Massachusetts multiplies base marketplace plan premiums by these age-specific factors to determine age-specific premiums.", - "label": "ACA premium age curve factors - MA" - }, - "gov.aca.age_curves.ma[0]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ma[0]", - "description": null, - "label": "bracket 1" - }, - "gov.aca.age_curves.ma[0].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[0].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[0].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[1]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ma[1]", - "description": null, - "label": "bracket 2" - }, - "gov.aca.age_curves.ma[1].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[1].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 21, - "2015-01-01": 21 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[1].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.5752, - "2015-01-01": 1.5752 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[2]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ma[2]", - "description": null, - "label": "bracket 3" - }, - "gov.aca.age_curves.ma[2].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[2].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 27, - "2015-01-01": 27 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[2].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.6245, - "2015-01-01": 1.6245 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[3]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ma[3]", - "description": null, - "label": "bracket 4" - }, - "gov.aca.age_curves.ma[3].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[3].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 28, - "2015-01-01": 28 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[3].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.6644, - "2015-01-01": 1.6644 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[4]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ma[4]", - "description": null, - "label": "bracket 5" - }, - "gov.aca.age_curves.ma[4].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[4].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 29, - "2015-01-01": 29 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[4].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[4].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.6977, - "2015-01-01": 1.6977 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[5]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ma[5]", - "description": null, - "label": "bracket 6" - }, - "gov.aca.age_curves.ma[5].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[5].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 30, - "2015-01-01": 30 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[5].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[5].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.7137, - "2015-01-01": 1.7137 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[6]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ma[6]", - "description": null, - "label": "bracket 7" - }, - "gov.aca.age_curves.ma[6].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[6].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 31, - "2015-01-01": 31 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[6].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[6].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.7377, - "2015-01-01": 1.7377 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[7]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ma[7]", - "description": null, - "label": "bracket 8" - }, - "gov.aca.age_curves.ma[7].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[7].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 32, - "2015-01-01": 32 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[7].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[7].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.7617, - "2015-01-01": 1.7617 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[8]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ma[8]", - "description": null, - "label": "bracket 9" - }, - "gov.aca.age_curves.ma[8].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[8].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 33, - "2015-01-01": 33 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[8].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[8].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.7763, - "2015-01-01": 1.7763 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[9]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ma[9]", - "description": null, - "label": "bracket 10" - }, - "gov.aca.age_curves.ma[9].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[9].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 34, - "2015-01-01": 34 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[9].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[9].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.7923, - "2015-01-01": 1.7923 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[10]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ma[10]", - "description": null, - "label": "bracket 11" - }, - "gov.aca.age_curves.ma[10].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[10].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 35, - "2015-01-01": 35 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[10].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[10].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.8003, - "2015-01-01": 1.8003 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[11]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ma[11]", - "description": null, - "label": "bracket 12" - }, - "gov.aca.age_curves.ma[11].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[11].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 36, - "2015-01-01": 36 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[11].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[11].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.8083, - "2015-01-01": 1.8083 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[12]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ma[12]", - "description": null, - "label": "bracket 13" - }, - "gov.aca.age_curves.ma[12].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[12].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 37, - "2015-01-01": 37 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[12].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[12].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.8149, - "2015-01-01": 1.8149 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[13]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ma[13]", - "description": null, - "label": "bracket 14" - }, - "gov.aca.age_curves.ma[13].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[13].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 38, - "2015-01-01": 38 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[13].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[13].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.8229, - "2015-01-01": 1.8229 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[14]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ma[14]", - "description": null, - "label": "bracket 15" - }, - "gov.aca.age_curves.ma[14].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[14].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 39, - "2015-01-01": 39 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[14].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[14].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.8389, - "2015-01-01": 1.8389 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[15]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ma[15]", - "description": null, - "label": "bracket 16" - }, - "gov.aca.age_curves.ma[15].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[15].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 40, - "2015-01-01": 40 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[15].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[15].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.8549, - "2015-01-01": 1.8549 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[16]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ma[16]", - "description": null, - "label": "bracket 17" - }, - "gov.aca.age_curves.ma[16].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[16].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 41, - "2015-01-01": 41 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[16].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[16].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.8775, - "2015-01-01": 1.8775 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[17]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ma[17]", - "description": null, - "label": "bracket 18" - }, - "gov.aca.age_curves.ma[17].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[17].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 42, - "2015-01-01": 42 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[17].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[17].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.9001, - "2015-01-01": 1.9001 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[18]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ma[18]", - "description": null, - "label": "bracket 19" - }, - "gov.aca.age_curves.ma[18].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[18].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 43, - "2015-01-01": 43 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[18].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[18].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.9308, - "2015-01-01": 1.9308 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[19]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ma[19]", - "description": null, - "label": "bracket 20" - }, - "gov.aca.age_curves.ma[19].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[19].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 44, - "2015-01-01": 44 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[19].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[19].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.968, - "2015-01-01": 1.968 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[20]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ma[20]", - "description": null, - "label": "bracket 21" - }, - "gov.aca.age_curves.ma[20].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[20].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 45, - "2015-01-01": 45 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[20].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[20].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.012, - "2015-01-01": 2.012 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[21]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ma[21]", - "description": null, - "label": "bracket 22" - }, - "gov.aca.age_curves.ma[21].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[21].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 46, - "2015-01-01": 46 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[21].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[21].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.0639, - "2015-01-01": 2.0639 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[22]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ma[22]", - "description": null, - "label": "bracket 23" - }, - "gov.aca.age_curves.ma[22].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[22].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 47, - "2015-01-01": 47 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[22].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[22].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.1212, - "2015-01-01": 2.1212 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[23]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ma[23]", - "description": null, - "label": "bracket 24" - }, - "gov.aca.age_curves.ma[23].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[23].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 48, - "2015-01-01": 48 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[23].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[23].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.1851, - "2015-01-01": 2.1851 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[24]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ma[24]", - "description": null, - "label": "bracket 25" - }, - "gov.aca.age_curves.ma[24].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[24].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 49, - "2015-01-01": 49 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[24].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[24].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.2477, - "2015-01-01": 2.2477 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[25]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ma[25]", - "description": null, - "label": "bracket 26" - }, - "gov.aca.age_curves.ma[25].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[25].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 50, - "2015-01-01": 50 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[25].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[25].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.3182, - "2015-01-01": 2.3182 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[26]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ma[26]", - "description": null, - "label": "bracket 27" - }, - "gov.aca.age_curves.ma[26].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[26].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 51, - "2015-01-01": 51 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[26].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[26].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.3862, - "2015-01-01": 2.3862 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[27]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ma[27]", - "description": null, - "label": "bracket 28" - }, - "gov.aca.age_curves.ma[27].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[27].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 52, - "2015-01-01": 52 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[27].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[27].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.4594, - "2015-01-01": 2.4594 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[28]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ma[28]", - "description": null, - "label": "bracket 29" - }, - "gov.aca.age_curves.ma[28].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[28].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 53, - "2015-01-01": 53 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[28].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[28].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.5326, - "2015-01-01": 2.5326 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[29]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ma[29]", - "description": null, - "label": "bracket 30" - }, - "gov.aca.age_curves.ma[29].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[29].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 54, - "2015-01-01": 54 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[29].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[29].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.6112, - "2015-01-01": 2.6112 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[30]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ma[30]", - "description": null, - "label": "bracket 31" - }, - "gov.aca.age_curves.ma[30].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[30].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 55, - "2015-01-01": 55 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[30].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[30].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.6884, - "2015-01-01": 2.6884 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[31]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ma[31]", - "description": null, - "label": "bracket 32" - }, - "gov.aca.age_curves.ma[31].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[31].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 56, - "2015-01-01": 56 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[31].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[31].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.7696, - "2015-01-01": 2.7696 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[32]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ma[32]", - "description": null, - "label": "bracket 33" - }, - "gov.aca.age_curves.ma[32].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[32].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 57, - "2015-01-01": 57 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[32].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[32].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.8522, - "2015-01-01": 2.8522 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[33]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ma[33]", - "description": null, - "label": "bracket 34" - }, - "gov.aca.age_curves.ma[33].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[33].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 58, - "2015-01-01": 58 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[33].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[33].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.9374, - "2015-01-01": 2.9374 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[34]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ma[34]", - "description": null, - "label": "bracket 35" - }, - "gov.aca.age_curves.ma[34].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[34].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 59, - "2015-01-01": 59 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[34].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[34].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.036, - "2015-01-01": 3.036 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[35]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ma[35]", - "description": null, - "label": "bracket 36" - }, - "gov.aca.age_curves.ma[35].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[35].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 60, - "2015-01-01": 60 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ma[35].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ma[35].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.1491, - "2015-01-01": 3.1491 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.or", - "description": "Oregon multiplies base marketplace plan premiums by these age-specific factors to determine age-specific premiums.", - "label": "ACA premium age curve factors - OR" - }, - "gov.aca.age_curves.or[0]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.or[0]", - "description": null, - "label": "bracket 1" - }, - "gov.aca.age_curves.or[0].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[0].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[0].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[1]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.or[1]", - "description": null, - "label": "bracket 2" - }, - "gov.aca.age_curves.or[1].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[1].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 21, - "2015-01-01": 21 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[1].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.5748, - "2015-01-01": 1.5748 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[2]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.or[2]", - "description": null, - "label": "bracket 3" - }, - "gov.aca.age_curves.or[2].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[2].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 25, - "2015-01-01": 25 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[2].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.5811, - "2015-01-01": 1.5811 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[3]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.or[3]", - "description": null, - "label": "bracket 4" - }, - "gov.aca.age_curves.or[3].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[3].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 26, - "2015-01-01": 26 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[3].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.6126, - "2015-01-01": 1.6126 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[4]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.or[4]", - "description": null, - "label": "bracket 5" - }, - "gov.aca.age_curves.or[4].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[4].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 27, - "2015-01-01": 27 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[4].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[4].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.6504, - "2015-01-01": 1.6504 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[5]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.or[5]", - "description": null, - "label": "bracket 6" - }, - "gov.aca.age_curves.or[5].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[5].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 28, - "2015-01-01": 28 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[5].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[5].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.7118, - "2015-01-01": 1.7118 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[6]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.or[6]", - "description": null, - "label": "bracket 7" - }, - "gov.aca.age_curves.or[6].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[6].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 29, - "2015-01-01": 29 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[6].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[6].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.7622, - "2015-01-01": 1.7622 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[7]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.or[7]", - "description": null, - "label": "bracket 8" - }, - "gov.aca.age_curves.or[7].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[7].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 30, - "2015-01-01": 30 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[7].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[7].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.7874, - "2015-01-01": 1.7874 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[8]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.or[8]", - "description": null, - "label": "bracket 9" - }, - "gov.aca.age_curves.or[8].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[8].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 31, - "2015-01-01": 31 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[8].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[8].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.8252, - "2015-01-01": 1.8252 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[9]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.or[9]", - "description": null, - "label": "bracket 10" - }, - "gov.aca.age_curves.or[9].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[9].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 32, - "2015-01-01": 32 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[9].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[9].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.863, - "2015-01-01": 1.863 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[10]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.or[10]", - "description": null, - "label": "bracket 11" - }, - "gov.aca.age_curves.or[10].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[10].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 33, - "2015-01-01": 33 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[10].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[10].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.8866, - "2015-01-01": 1.8866 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[11]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.or[11]", - "description": null, - "label": "bracket 12" - }, - "gov.aca.age_curves.or[11].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[11].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 34, - "2015-01-01": 34 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[11].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[11].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.9118, - "2015-01-01": 1.9118 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[12]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.or[12]", - "description": null, - "label": "bracket 13" - }, - "gov.aca.age_curves.or[12].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[12].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 35, - "2015-01-01": 35 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[12].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[12].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.9244, - "2015-01-01": 1.9244 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[13]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.or[13]", - "description": null, - "label": "bracket 14" - }, - "gov.aca.age_curves.or[13].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[13].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 36, - "2015-01-01": 36 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[13].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[13].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.937, - "2015-01-01": 1.937 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[14]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.or[14]", - "description": null, - "label": "bracket 15" - }, - "gov.aca.age_curves.or[14].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[14].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 37, - "2015-01-01": 37 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[14].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[14].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.9496, - "2015-01-01": 1.9496 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[15]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.or[15]", - "description": null, - "label": "bracket 16" - }, - "gov.aca.age_curves.or[15].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[15].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 38, - "2015-01-01": 38 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[15].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[15].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.9622, - "2015-01-01": 1.9622 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[16]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.or[16]", - "description": null, - "label": "bracket 17" - }, - "gov.aca.age_curves.or[16].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[16].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 39, - "2015-01-01": 39 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[16].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[16].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.9874, - "2015-01-01": 1.9874 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[17]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.or[17]", - "description": null, - "label": "bracket 18" - }, - "gov.aca.age_curves.or[17].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[17].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 40, - "2015-01-01": 40 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[17].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[17].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.0126, - "2015-01-01": 2.0126 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[18]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.or[18]", - "description": null, - "label": "bracket 19" - }, - "gov.aca.age_curves.or[18].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[18].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 41, - "2015-01-01": 41 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[18].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[18].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.0504, - "2015-01-01": 2.0504 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[19]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.or[19]", - "description": null, - "label": "bracket 20" - }, - "gov.aca.age_curves.or[19].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[19].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 42, - "2015-01-01": 42 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[19].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[19].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.0866, - "2015-01-01": 2.0866 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[20]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.or[20]", - "description": null, - "label": "bracket 21" - }, - "gov.aca.age_curves.or[20].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[20].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 43, - "2015-01-01": 43 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[20].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[20].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.137, - "2015-01-01": 2.137 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[21]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.or[21]", - "description": null, - "label": "bracket 22" - }, - "gov.aca.age_curves.or[21].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[21].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 44, - "2015-01-01": 44 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[21].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[21].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.2, - "2015-01-01": 2.2 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[22]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.or[22]", - "description": null, - "label": "bracket 23" - }, - "gov.aca.age_curves.or[22].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[22].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 45, - "2015-01-01": 45 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[22].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[22].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.274, - "2015-01-01": 2.274 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[23]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.or[23]", - "description": null, - "label": "bracket 24" - }, - "gov.aca.age_curves.or[23].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[23].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 46, - "2015-01-01": 46 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[23].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[23].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.3622, - "2015-01-01": 2.3622 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[24]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.or[24]", - "description": null, - "label": "bracket 25" - }, - "gov.aca.age_curves.or[24].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[24].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 47, - "2015-01-01": 47 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[24].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[24].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.4614, - "2015-01-01": 2.4614 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[25]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.or[25]", - "description": null, - "label": "bracket 26" - }, - "gov.aca.age_curves.or[25].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[25].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 48, - "2015-01-01": 48 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[25].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[25].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.5748, - "2015-01-01": 2.5748 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[26]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.or[26]", - "description": null, - "label": "bracket 27" - }, - "gov.aca.age_curves.or[26].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[26].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 49, - "2015-01-01": 49 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[26].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[26].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.6866, - "2015-01-01": 2.6866 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[27]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.or[27]", - "description": null, - "label": "bracket 28" - }, - "gov.aca.age_curves.or[27].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[27].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 50, - "2015-01-01": 50 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[27].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[27].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.8126, - "2015-01-01": 2.8126 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[28]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.or[28]", - "description": null, - "label": "bracket 29" - }, - "gov.aca.age_curves.or[28].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[28].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 51, - "2015-01-01": 51 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[28].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[28].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.937, - "2015-01-01": 2.937 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[29]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.or[29]", - "description": null, - "label": "bracket 30" - }, - "gov.aca.age_curves.or[29].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[29].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 52, - "2015-01-01": 52 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[29].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[29].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.074, - "2015-01-01": 3.074 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[30]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.or[30]", - "description": null, - "label": "bracket 31" - }, - "gov.aca.age_curves.or[30].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[30].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 53, - "2015-01-01": 53 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[30].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[30].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.2126, - "2015-01-01": 3.2126 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[31]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.or[31]", - "description": null, - "label": "bracket 32" - }, - "gov.aca.age_curves.or[31].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[31].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 54, - "2015-01-01": 54 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[31].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[31].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.3622, - "2015-01-01": 3.3622 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[32]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.or[32]", - "description": null, - "label": "bracket 33" - }, - "gov.aca.age_curves.or[32].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[32].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 55, - "2015-01-01": 55 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[32].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[32].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.5118, - "2015-01-01": 3.5118 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[33]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.or[33]", - "description": null, - "label": "bracket 34" - }, - "gov.aca.age_curves.or[33].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[33].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 56, - "2015-01-01": 56 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[33].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[33].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.674, - "2015-01-01": 3.674 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[34]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.or[34]", - "description": null, - "label": "bracket 35" - }, - "gov.aca.age_curves.or[34].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[34].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 57, - "2015-01-01": 57 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[34].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[34].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.8378, - "2015-01-01": 3.8378 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[35]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.or[35]", - "description": null, - "label": "bracket 36" - }, - "gov.aca.age_curves.or[35].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[35].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 58, - "2015-01-01": 58 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[35].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[35].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 4.0126, - "2015-01-01": 4.0126 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[36]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.or[36]", - "description": null, - "label": "bracket 37" - }, - "gov.aca.age_curves.or[36].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[36].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 59, - "2015-01-01": 59 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[36].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[36].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 4.0992, - "2015-01-01": 4.0992 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[37]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.or[37]", - "description": null, - "label": "bracket 38" - }, - "gov.aca.age_curves.or[37].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[37].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 60, - "2015-01-01": 60 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[37].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[37].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 4.274, - "2015-01-01": 4.274 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[38]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.or[38]", - "description": null, - "label": "bracket 39" - }, - "gov.aca.age_curves.or[38].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[38].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 61, - "2015-01-01": 61 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[38].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[38].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 4.4252, - "2015-01-01": 4.4252 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[39]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.or[39]", - "description": null, - "label": "bracket 40" - }, - "gov.aca.age_curves.or[39].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[39].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 62, - "2015-01-01": 62 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[39].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[39].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 4.5244, - "2015-01-01": 4.5244 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[40]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.or[40]", - "description": null, - "label": "bracket 41" - }, - "gov.aca.age_curves.or[40].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[40].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 63, - "2015-01-01": 63 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[40].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[40].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 4.6488, - "2015-01-01": 4.6488 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[41]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.or[41]", - "description": null, - "label": "bracket 42" - }, - "gov.aca.age_curves.or[41].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[41].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 64, - "2015-01-01": 64 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.or[41].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.or[41].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 4.7244, - "2015-01-01": 4.7244 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ut", - "description": "Utah multiplies base marketplace plan premiums by these age-specific factors to determine age-specific premiums.", - "label": "ACA premium age curve factors - UT" - }, - "gov.aca.age_curves.ut[0]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ut[0]", - "description": null, - "label": "bracket 1" - }, - "gov.aca.age_curves.ut[0].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[0].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[0].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[1]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ut[1]", - "description": null, - "label": "bracket 2" - }, - "gov.aca.age_curves.ut[1].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[1].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 21, - "2015-01-01": 21 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[1].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.261, - "2015-01-01": 1.261 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[2]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ut[2]", - "description": null, - "label": "bracket 3" - }, - "gov.aca.age_curves.ut[2].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[2].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 22, - "2015-01-01": 22 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[2].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.3241, - "2015-01-01": 1.3241 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[3]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ut[3]", - "description": null, - "label": "bracket 4" - }, - "gov.aca.age_curves.ut[3].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[3].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 23, - "2015-01-01": 23 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[3].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.4035, - "2015-01-01": 1.4035 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[4]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ut[4]", - "description": null, - "label": "bracket 5" - }, - "gov.aca.age_curves.ut[4].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[4].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 24, - "2015-01-01": 24 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[4].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[4].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.5019, - "2015-01-01": 1.5019 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[5]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ut[5]", - "description": null, - "label": "bracket 6" - }, - "gov.aca.age_curves.ut[5].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[5].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 25, - "2015-01-01": 25 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[5].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[5].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.6368, - "2015-01-01": 1.6368 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[6]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ut[6]", - "description": null, - "label": "bracket 7" - }, - "gov.aca.age_curves.ut[6].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[6].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 26, - "2015-01-01": 26 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[6].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[6].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.7188, - "2015-01-01": 1.7188 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[7]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ut[7]", - "description": null, - "label": "bracket 8" - }, - "gov.aca.age_curves.ut[7].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[7].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 27, - "2015-01-01": 27 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[7].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[7].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.7528, - "2015-01-01": 1.7528 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[8]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ut[8]", - "description": null, - "label": "bracket 9" - }, - "gov.aca.age_curves.ut[8].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[8].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 37, - "2015-01-01": 37 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[8].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[8].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.7705, - "2015-01-01": 1.7705 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[9]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ut[9]", - "description": null, - "label": "bracket 10" - }, - "gov.aca.age_curves.ut[9].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[9].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 38, - "2015-01-01": 38 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[9].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[9].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.797, - "2015-01-01": 1.797 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[10]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ut[10]", - "description": null, - "label": "bracket 11" - }, - "gov.aca.age_curves.ut[10].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[10].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 39, - "2015-01-01": 39 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[10].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[10].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.8285, - "2015-01-01": 1.8285 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[11]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ut[11]", - "description": null, - "label": "bracket 12" - }, - "gov.aca.age_curves.ut[11].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[11].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 40, - "2015-01-01": 40 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[11].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[11].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.8651, - "2015-01-01": 1.8651 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[12]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ut[12]", - "description": null, - "label": "bracket 13" - }, - "gov.aca.age_curves.ut[12].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[12].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 41, - "2015-01-01": 41 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[12].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[12].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.9117, - "2015-01-01": 1.9117 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[13]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ut[13]", - "description": null, - "label": "bracket 14" - }, - "gov.aca.age_curves.ut[13].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[13].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 42, - "2015-01-01": 42 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[13].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[13].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.9697, - "2015-01-01": 1.9697 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[14]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ut[14]", - "description": null, - "label": "bracket 15" - }, - "gov.aca.age_curves.ut[14].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[14].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 43, - "2015-01-01": 43 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[14].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[14].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.0378, - "2015-01-01": 2.0378 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[15]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ut[15]", - "description": null, - "label": "bracket 16" - }, - "gov.aca.age_curves.ut[15].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[15].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 44, - "2015-01-01": 44 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[15].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[15].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.1198, - "2015-01-01": 2.1198 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[16]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ut[16]", - "description": null, - "label": "bracket 17" - }, - "gov.aca.age_curves.ut[16].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[16].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 45, - "2015-01-01": 45 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[16].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[16].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.2043, - "2015-01-01": 2.2043 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[17]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ut[17]", - "description": null, - "label": "bracket 18" - }, - "gov.aca.age_curves.ut[17].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[17].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 46, - "2015-01-01": 46 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[17].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[17].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.2926, - "2015-01-01": 2.2926 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[18]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ut[18]", - "description": null, - "label": "bracket 19" - }, - "gov.aca.age_curves.ut[18].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[18].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 47, - "2015-01-01": 47 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[18].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[18].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.3846, - "2015-01-01": 2.3846 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[19]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ut[19]", - "description": null, - "label": "bracket 20" - }, - "gov.aca.age_curves.ut[19].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[19].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 48, - "2015-01-01": 48 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[19].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[19].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.4792, - "2015-01-01": 2.4792 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[20]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ut[20]", - "description": null, - "label": "bracket 21" - }, - "gov.aca.age_curves.ut[20].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[20].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 49, - "2015-01-01": 49 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[20].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[20].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.5788, - "2015-01-01": 2.5788 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[21]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ut[21]", - "description": null, - "label": "bracket 22" - }, - "gov.aca.age_curves.ut[21].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[21].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 50, - "2015-01-01": 50 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[21].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[21].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.6822, - "2015-01-01": 2.6822 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[22]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ut[22]", - "description": null, - "label": "bracket 23" - }, - "gov.aca.age_curves.ut[22].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[22].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 51, - "2015-01-01": 51 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[22].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[22].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.7894, - "2015-01-01": 2.7894 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[23]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ut[23]", - "description": null, - "label": "bracket 24" - }, - "gov.aca.age_curves.ut[23].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[23].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 52, - "2015-01-01": 52 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[23].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[23].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.9004, - "2015-01-01": 2.9004 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[24]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ut[24]", - "description": null, - "label": "bracket 25" - }, - "gov.aca.age_curves.ut[24].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[24].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 53, - "2015-01-01": 53 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[24].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[24].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.0164, - "2015-01-01": 3.0164 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[25]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ut[25]", - "description": null, - "label": "bracket 26" - }, - "gov.aca.age_curves.ut[25].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[25].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 54, - "2015-01-01": 54 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[25].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[25].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.1375, - "2015-01-01": 3.1375 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[26]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ut[26]", - "description": null, - "label": "bracket 27" - }, - "gov.aca.age_curves.ut[26].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[26].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 55, - "2015-01-01": 55 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[26].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[26].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.2636, - "2015-01-01": 3.2636 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[27]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ut[27]", - "description": null, - "label": "bracket 28" - }, - "gov.aca.age_curves.ut[27].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[27].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 56, - "2015-01-01": 56 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[27].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[27].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.3934, - "2015-01-01": 3.3934 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[28]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ut[28]", - "description": null, - "label": "bracket 29" - }, - "gov.aca.age_curves.ut[28].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[28].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 57, - "2015-01-01": 57 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[28].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[28].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.5296, - "2015-01-01": 3.5296 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[29]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ut[29]", - "description": null, - "label": "bracket 30" - }, - "gov.aca.age_curves.ut[29].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[29].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 58, - "2015-01-01": 58 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[29].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[29].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.6709, - "2015-01-01": 3.6709 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[30]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ut[30]", - "description": null, - "label": "bracket 31" - }, - "gov.aca.age_curves.ut[30].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[30].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 59, - "2015-01-01": 59 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ut[30].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ut[30].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.7831, - "2015-01-01": 3.7831 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.__pycache__": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.__pycache__", - "description": null, - "label": " pycache ", - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ms", - "description": "Mississippi multiplies base marketplace plan premiums by these age-specific factors to determine age-specific premiums.", - "label": "ACA premium age curve factors - MS" - }, - "gov.aca.age_curves.ms[0]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ms[0]", - "description": null, - "label": "bracket 1" - }, - "gov.aca.age_curves.ms[0].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[0].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[0].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[1]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ms[1]", - "description": null, - "label": "bracket 2" - }, - "gov.aca.age_curves.ms[1].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[1].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 21, - "2015-01-01": 21 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[1].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.5748, - "2015-01-01": 1.5748 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[2]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ms[2]", - "description": null, - "label": "bracket 3" - }, - "gov.aca.age_curves.ms[2].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[2].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 25, - "2015-01-01": 25 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[2].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.5811, - "2015-01-01": 1.5811 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[3]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ms[3]", - "description": null, - "label": "bracket 4" - }, - "gov.aca.age_curves.ms[3].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[3].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 26, - "2015-01-01": 26 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[3].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.6126, - "2015-01-01": 1.6126 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[4]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ms[4]", - "description": null, - "label": "bracket 5" - }, - "gov.aca.age_curves.ms[4].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[4].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 27, - "2015-01-01": 27 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[4].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[4].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.6504, - "2015-01-01": 1.6504 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[5]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ms[5]", - "description": null, - "label": "bracket 6" - }, - "gov.aca.age_curves.ms[5].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[5].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 28, - "2015-01-01": 28 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[5].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[5].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.7118, - "2015-01-01": 1.7118 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[6]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ms[6]", - "description": null, - "label": "bracket 7" - }, - "gov.aca.age_curves.ms[6].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[6].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 29, - "2015-01-01": 29 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[6].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[6].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.7622, - "2015-01-01": 1.7622 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[7]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ms[7]", - "description": null, - "label": "bracket 8" - }, - "gov.aca.age_curves.ms[7].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[7].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 30, - "2015-01-01": 30 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[7].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[7].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.7874, - "2015-01-01": 1.7874 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[8]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ms[8]", - "description": null, - "label": "bracket 9" - }, - "gov.aca.age_curves.ms[8].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[8].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 31, - "2015-01-01": 31 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[8].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[8].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.8252, - "2015-01-01": 1.8252 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[9]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ms[9]", - "description": null, - "label": "bracket 10" - }, - "gov.aca.age_curves.ms[9].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[9].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 32, - "2015-01-01": 32 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[9].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[9].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.863, - "2015-01-01": 1.863 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[10]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ms[10]", - "description": null, - "label": "bracket 11" - }, - "gov.aca.age_curves.ms[10].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[10].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 33, - "2015-01-01": 33 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[10].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[10].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.8866, - "2015-01-01": 1.8866 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[11]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ms[11]", - "description": null, - "label": "bracket 12" - }, - "gov.aca.age_curves.ms[11].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[11].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 34, - "2015-01-01": 34 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[11].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[11].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.9118, - "2015-01-01": 1.9118 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[12]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ms[12]", - "description": null, - "label": "bracket 13" - }, - "gov.aca.age_curves.ms[12].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[12].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 35, - "2015-01-01": 35 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[12].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[12].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.9244, - "2015-01-01": 1.9244 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[13]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ms[13]", - "description": null, - "label": "bracket 14" - }, - "gov.aca.age_curves.ms[13].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[13].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 36, - "2015-01-01": 36 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[13].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[13].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.937, - "2015-01-01": 1.937 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[14]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ms[14]", - "description": null, - "label": "bracket 15" - }, - "gov.aca.age_curves.ms[14].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[14].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 37, - "2015-01-01": 37 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[14].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[14].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.9496, - "2015-01-01": 1.9496 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[15]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ms[15]", - "description": null, - "label": "bracket 16" - }, - "gov.aca.age_curves.ms[15].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[15].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 38, - "2015-01-01": 38 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[15].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[15].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.9622, - "2015-01-01": 1.9622 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[16]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ms[16]", - "description": null, - "label": "bracket 17" - }, - "gov.aca.age_curves.ms[16].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[16].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 39, - "2015-01-01": 39 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[16].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[16].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.9874, - "2015-01-01": 1.9874 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[17]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ms[17]", - "description": null, - "label": "bracket 18" - }, - "gov.aca.age_curves.ms[17].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[17].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 40, - "2015-01-01": 40 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[17].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[17].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.0126, - "2015-01-01": 2.0126 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[18]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ms[18]", - "description": null, - "label": "bracket 19" - }, - "gov.aca.age_curves.ms[18].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[18].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 41, - "2015-01-01": 41 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[18].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[18].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.0504, - "2015-01-01": 2.0504 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[19]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ms[19]", - "description": null, - "label": "bracket 20" - }, - "gov.aca.age_curves.ms[19].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[19].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 42, - "2015-01-01": 42 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[19].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[19].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.0866, - "2015-01-01": 2.0866 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[20]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ms[20]", - "description": null, - "label": "bracket 21" - }, - "gov.aca.age_curves.ms[20].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[20].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 43, - "2015-01-01": 43 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[20].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[20].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.137, - "2015-01-01": 2.137 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[21]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ms[21]", - "description": null, - "label": "bracket 22" - }, - "gov.aca.age_curves.ms[21].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[21].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 44, - "2015-01-01": 44 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[21].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[21].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.2, - "2015-01-01": 2.2 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[22]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ms[22]", - "description": null, - "label": "bracket 23" - }, - "gov.aca.age_curves.ms[22].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[22].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 45, - "2015-01-01": 45 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[22].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[22].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.274, - "2015-01-01": 2.274 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[23]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ms[23]", - "description": null, - "label": "bracket 24" - }, - "gov.aca.age_curves.ms[23].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[23].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 46, - "2015-01-01": 46 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[23].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[23].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.3622, - "2015-01-01": 2.3622 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[24]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ms[24]", - "description": null, - "label": "bracket 25" - }, - "gov.aca.age_curves.ms[24].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[24].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 47, - "2015-01-01": 47 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[24].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[24].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.4614, - "2015-01-01": 2.4614 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[25]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ms[25]", - "description": null, - "label": "bracket 26" - }, - "gov.aca.age_curves.ms[25].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[25].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 48, - "2015-01-01": 48 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[25].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[25].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.5748, - "2015-01-01": 2.5748 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[26]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ms[26]", - "description": null, - "label": "bracket 27" - }, - "gov.aca.age_curves.ms[26].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[26].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 49, - "2015-01-01": 49 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[26].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[26].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.6866, - "2015-01-01": 2.6866 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[27]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ms[27]", - "description": null, - "label": "bracket 28" - }, - "gov.aca.age_curves.ms[27].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[27].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 50, - "2015-01-01": 50 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[27].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[27].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.8126, - "2015-01-01": 2.8126 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[28]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ms[28]", - "description": null, - "label": "bracket 29" - }, - "gov.aca.age_curves.ms[28].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[28].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 51, - "2015-01-01": 51 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[28].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[28].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.937, - "2015-01-01": 2.937 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[29]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ms[29]", - "description": null, - "label": "bracket 30" - }, - "gov.aca.age_curves.ms[29].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[29].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 52, - "2015-01-01": 52 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[29].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[29].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.074, - "2015-01-01": 3.074 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[30]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ms[30]", - "description": null, - "label": "bracket 31" - }, - "gov.aca.age_curves.ms[30].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[30].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 53, - "2015-01-01": 53 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[30].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[30].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.2126, - "2015-01-01": 3.2126 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[31]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ms[31]", - "description": null, - "label": "bracket 32" - }, - "gov.aca.age_curves.ms[31].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[31].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 54, - "2015-01-01": 54 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[31].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[31].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.3622, - "2015-01-01": 3.3622 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[32]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ms[32]", - "description": null, - "label": "bracket 33" - }, - "gov.aca.age_curves.ms[32].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[32].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 55, - "2015-01-01": 55 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[32].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[32].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.5118, - "2015-01-01": 3.5118 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[33]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ms[33]", - "description": null, - "label": "bracket 34" - }, - "gov.aca.age_curves.ms[33].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[33].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 56, - "2015-01-01": 56 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[33].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[33].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.674, - "2015-01-01": 3.674 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[34]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ms[34]", - "description": null, - "label": "bracket 35" - }, - "gov.aca.age_curves.ms[34].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[34].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 57, - "2015-01-01": 57 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[34].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[34].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.8378, - "2015-01-01": 3.8378 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[35]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ms[35]", - "description": null, - "label": "bracket 36" - }, - "gov.aca.age_curves.ms[35].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[35].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 58, - "2015-01-01": 58 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[35].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[35].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 4.0126, - "2015-01-01": 4.0126 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[36]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ms[36]", - "description": null, - "label": "bracket 37" - }, - "gov.aca.age_curves.ms[36].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[36].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 59, - "2015-01-01": 59 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[36].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[36].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 4.0992, - "2015-01-01": 4.0992 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[37]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ms[37]", - "description": null, - "label": "bracket 38" - }, - "gov.aca.age_curves.ms[37].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[37].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 60, - "2015-01-01": 60 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[37].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[37].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 4.274, - "2015-01-01": 4.274 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[38]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ms[38]", - "description": null, - "label": "bracket 39" - }, - "gov.aca.age_curves.ms[38].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[38].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 61, - "2015-01-01": 61 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[38].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[38].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 4.4252, - "2015-01-01": 4.4252 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[39]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ms[39]", - "description": null, - "label": "bracket 40" - }, - "gov.aca.age_curves.ms[39].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[39].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 62, - "2015-01-01": 62 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[39].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[39].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 4.5244, - "2015-01-01": 4.5244 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[40]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ms[40]", - "description": null, - "label": "bracket 41" - }, - "gov.aca.age_curves.ms[40].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[40].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 63, - "2015-01-01": 63 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[40].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[40].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 4.6488, - "2015-01-01": 4.6488 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[41]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.ms[41]", - "description": null, - "label": "bracket 42" - }, - "gov.aca.age_curves.ms[41].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[41].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 64, - "2015-01-01": 64 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.ms[41].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.ms[41].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 4.7244, - "2015-01-01": 4.7244 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.mn", - "description": "Minnesota multiplies base marketplace plan premiums by these age-specific factors to determine age-specific premiums.", - "label": "ACA premium age curve factors - MN" - }, - "gov.aca.age_curves.mn[0]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.mn[0]", - "description": null, - "label": "bracket 1" - }, - "gov.aca.age_curves.mn[0].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[0].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[0].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[1]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.mn[1]", - "description": null, - "label": "bracket 2" - }, - "gov.aca.age_curves.mn[1].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[1].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 21, - "2015-01-01": 21 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[1].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.1236, - "2015-01-01": 1.1236 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[2]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.mn[2]", - "description": null, - "label": "bracket 3" - }, - "gov.aca.age_curves.mn[2].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[2].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 25, - "2015-01-01": 25 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[2].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.1281, - "2015-01-01": 1.1281 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[3]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.mn[3]", - "description": null, - "label": "bracket 4" - }, - "gov.aca.age_curves.mn[3].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[3].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 26, - "2015-01-01": 26 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[3].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.1506, - "2015-01-01": 1.1506 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[4]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.mn[4]", - "description": null, - "label": "bracket 5" - }, - "gov.aca.age_curves.mn[4].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[4].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 27, - "2015-01-01": 27 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[4].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[4].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.1775, - "2015-01-01": 1.1775 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[5]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.mn[5]", - "description": null, - "label": "bracket 6" - }, - "gov.aca.age_curves.mn[5].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[5].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 28, - "2015-01-01": 28 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[5].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[5].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.2213, - "2015-01-01": 1.2213 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[6]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.mn[6]", - "description": null, - "label": "bracket 7" - }, - "gov.aca.age_curves.mn[6].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[6].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 29, - "2015-01-01": 29 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[6].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[6].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.2573, - "2015-01-01": 1.2573 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[7]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.mn[7]", - "description": null, - "label": "bracket 8" - }, - "gov.aca.age_curves.mn[7].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[7].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 30, - "2015-01-01": 30 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[7].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[7].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.2753, - "2015-01-01": 1.2753 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[8]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.mn[8]", - "description": null, - "label": "bracket 9" - }, - "gov.aca.age_curves.mn[8].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[8].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 31, - "2015-01-01": 31 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[8].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[8].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.3022, - "2015-01-01": 1.3022 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[9]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.mn[9]", - "description": null, - "label": "bracket 10" - }, - "gov.aca.age_curves.mn[9].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[9].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 32, - "2015-01-01": 32 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[9].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[9].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.3292, - "2015-01-01": 1.3292 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[10]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.mn[10]", - "description": null, - "label": "bracket 11" - }, - "gov.aca.age_curves.mn[10].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[10].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 33, - "2015-01-01": 33 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[10].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[10].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.3461, - "2015-01-01": 1.3461 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[11]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.mn[11]", - "description": null, - "label": "bracket 12" - }, - "gov.aca.age_curves.mn[11].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[11].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 34, - "2015-01-01": 34 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[11].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[11].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.364, - "2015-01-01": 1.364 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[12]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.mn[12]", - "description": null, - "label": "bracket 13" - }, - "gov.aca.age_curves.mn[12].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[12].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 35, - "2015-01-01": 35 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[12].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[12].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.373, - "2015-01-01": 1.373 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[13]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.mn[13]", - "description": null, - "label": "bracket 14" - }, - "gov.aca.age_curves.mn[13].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[13].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 36, - "2015-01-01": 36 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[13].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[13].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.382, - "2015-01-01": 1.382 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[14]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.mn[14]", - "description": null, - "label": "bracket 15" - }, - "gov.aca.age_curves.mn[14].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[14].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 37, - "2015-01-01": 37 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[14].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[14].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.391, - "2015-01-01": 1.391 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[15]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.mn[15]", - "description": null, - "label": "bracket 16" - }, - "gov.aca.age_curves.mn[15].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[15].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 38, - "2015-01-01": 38 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[15].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[15].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.4, - "2015-01-01": 1.4 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[16]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.mn[16]", - "description": null, - "label": "bracket 17" - }, - "gov.aca.age_curves.mn[16].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[16].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 39, - "2015-01-01": 39 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[16].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[16].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.418, - "2015-01-01": 1.418 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[17]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.mn[17]", - "description": null, - "label": "bracket 18" - }, - "gov.aca.age_curves.mn[17].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[17].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 40, - "2015-01-01": 40 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[17].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[17].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.436, - "2015-01-01": 1.436 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[18]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.mn[18]", - "description": null, - "label": "bracket 19" - }, - "gov.aca.age_curves.mn[18].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[18].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 41, - "2015-01-01": 41 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[18].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[18].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.4629, - "2015-01-01": 1.4629 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[19]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.mn[19]", - "description": null, - "label": "bracket 20" - }, - "gov.aca.age_curves.mn[19].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[19].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 42, - "2015-01-01": 42 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[19].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[19].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.4888, - "2015-01-01": 1.4888 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[20]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.mn[20]", - "description": null, - "label": "bracket 21" - }, - "gov.aca.age_curves.mn[20].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[20].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 43, - "2015-01-01": 43 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[20].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[20].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.5247, - "2015-01-01": 1.5247 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[21]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.mn[21]", - "description": null, - "label": "bracket 22" - }, - "gov.aca.age_curves.mn[21].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[21].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 44, - "2015-01-01": 44 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[21].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[21].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.5697, - "2015-01-01": 1.5697 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[22]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.mn[22]", - "description": null, - "label": "bracket 23" - }, - "gov.aca.age_curves.mn[22].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[22].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 45, - "2015-01-01": 45 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[22].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[22].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.6225, - "2015-01-01": 1.6225 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[23]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.mn[23]", - "description": null, - "label": "bracket 24" - }, - "gov.aca.age_curves.mn[23].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[23].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 46, - "2015-01-01": 46 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[23].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[23].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.6854, - "2015-01-01": 1.6854 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[24]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.mn[24]", - "description": null, - "label": "bracket 25" - }, - "gov.aca.age_curves.mn[24].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[24].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 47, - "2015-01-01": 47 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[24].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[24].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.7562, - "2015-01-01": 1.7562 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[25]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.mn[25]", - "description": null, - "label": "bracket 26" - }, - "gov.aca.age_curves.mn[25].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[25].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 48, - "2015-01-01": 48 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[25].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[25].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.8371, - "2015-01-01": 1.8371 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[26]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.mn[26]", - "description": null, - "label": "bracket 27" - }, - "gov.aca.age_curves.mn[26].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[26].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 49, - "2015-01-01": 49 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[26].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[26].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.9169, - "2015-01-01": 1.9169 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[27]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.mn[27]", - "description": null, - "label": "bracket 28" - }, - "gov.aca.age_curves.mn[27].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[27].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 50, - "2015-01-01": 50 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[27].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[27].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.0067, - "2015-01-01": 2.0067 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[28]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.mn[28]", - "description": null, - "label": "bracket 29" - }, - "gov.aca.age_curves.mn[28].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[28].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 51, - "2015-01-01": 51 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[28].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[28].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.0955, - "2015-01-01": 2.0955 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[29]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.mn[29]", - "description": null, - "label": "bracket 30" - }, - "gov.aca.age_curves.mn[29].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[29].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 52, - "2015-01-01": 52 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[29].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[29].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.1933, - "2015-01-01": 2.1933 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[30]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.mn[30]", - "description": null, - "label": "bracket 31" - }, - "gov.aca.age_curves.mn[30].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[30].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 53, - "2015-01-01": 53 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[30].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[30].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.2921, - "2015-01-01": 2.2921 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[31]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.mn[31]", - "description": null, - "label": "bracket 32" - }, - "gov.aca.age_curves.mn[31].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[31].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 54, - "2015-01-01": 54 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[31].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[31].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.3989, - "2015-01-01": 2.3989 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[32]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.mn[32]", - "description": null, - "label": "bracket 33" - }, - "gov.aca.age_curves.mn[32].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[32].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 55, - "2015-01-01": 55 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[32].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[32].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.5056, - "2015-01-01": 2.5056 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[33]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.mn[33]", - "description": null, - "label": "bracket 34" - }, - "gov.aca.age_curves.mn[33].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[33].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 56, - "2015-01-01": 56 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[33].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[33].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.6213, - "2015-01-01": 2.6213 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[34]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.mn[34]", - "description": null, - "label": "bracket 35" - }, - "gov.aca.age_curves.mn[34].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[34].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 57, - "2015-01-01": 57 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[34].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[34].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.7382, - "2015-01-01": 2.7382 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[35]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.mn[35]", - "description": null, - "label": "bracket 36" - }, - "gov.aca.age_curves.mn[35].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[35].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 58, - "2015-01-01": 58 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[35].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[35].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.8629, - "2015-01-01": 2.8629 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[36]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.mn[36]", - "description": null, - "label": "bracket 37" - }, - "gov.aca.age_curves.mn[36].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[36].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 59, - "2015-01-01": 59 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[36].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[36].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.9247, - "2015-01-01": 2.9247 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[37]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.mn[37]", - "description": null, - "label": "bracket 38" - }, - "gov.aca.age_curves.mn[37].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[37].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 60, - "2015-01-01": 60 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[37].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[37].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.0494, - "2015-01-01": 3.0494 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[38]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.mn[38]", - "description": null, - "label": "bracket 39" - }, - "gov.aca.age_curves.mn[38].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[38].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 61, - "2015-01-01": 61 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[38].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[38].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.1573, - "2015-01-01": 3.1573 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[39]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.mn[39]", - "description": null, - "label": "bracket 40" - }, - "gov.aca.age_curves.mn[39].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[39].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 62, - "2015-01-01": 62 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[39].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[39].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.2281, - "2015-01-01": 3.2281 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[40]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.mn[40]", - "description": null, - "label": "bracket 41" - }, - "gov.aca.age_curves.mn[40].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[40].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 63, - "2015-01-01": 63 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[40].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[40].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.3169, - "2015-01-01": 3.3169 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[41]": { - "type": "parameterNode", - "parameter": "gov.aca.age_curves.mn[41]", - "description": null, - "label": "bracket 42" - }, - "gov.aca.age_curves.mn[41].threshold": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[41].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2018-01-01": 64, - "2015-01-01": 64 - }, - "economy": true, - "household": true - }, - "gov.aca.age_curves.mn[41].amount": { - "type": "parameter", - "parameter": "gov.aca.age_curves.mn[41].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.3708, - "2015-01-01": 3.3708 - }, - "economy": true, - "household": true - }, - "gov.aca.takeup_rate": { - "type": "parameter", - "parameter": "gov.aca.takeup_rate", - "description": "Percentage of eligible people who do enroll in Affordable Care Act coverage, if eligible.", - "label": "ACA takeup rate", - "unit": "/1", - "period": "year", - "values": { - "2018-01-01": 0.672, - "2015-01-01": 0.672 - }, - "economy": false, - "household": false - }, - "gov.aca.ptc_phase_out_rate": { - "type": "parameterNode", - "parameter": "gov.aca.ptc_phase_out_rate", - "description": "Rate of ACA PTC phase out by ACA MAGI percent of FPL.", - "label": "Rate of ACA PTC phase out" - }, - "gov.aca.ptc_phase_out_rate[0]": { - "type": "parameterNode", - "parameter": "gov.aca.ptc_phase_out_rate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.aca.ptc_phase_out_rate[0].threshold": { - "type": "parameter", - "parameter": "gov.aca.ptc_phase_out_rate[0].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.aca.ptc_phase_out_rate[0].amount": { - "type": "parameter", - "parameter": "gov.aca.ptc_phase_out_rate[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2026-01-01": 0.02, - "2021-01-01": 0, - "2015-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.aca.ptc_phase_out_rate[1]": { - "type": "parameterNode", - "parameter": "gov.aca.ptc_phase_out_rate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.aca.ptc_phase_out_rate[1].threshold": { - "type": "parameter", - "parameter": "gov.aca.ptc_phase_out_rate[1].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2026-01-01": 1.33, - "2021-01-01": null, - "2015-01-01": 1.33 - }, - "economy": true, - "household": true - }, - "gov.aca.ptc_phase_out_rate[1].amount": { - "type": "parameter", - "parameter": "gov.aca.ptc_phase_out_rate[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2026-01-01": 0.03, - "2021-01-01": null, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.aca.ptc_phase_out_rate[2]": { - "type": "parameterNode", - "parameter": "gov.aca.ptc_phase_out_rate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.aca.ptc_phase_out_rate[2].threshold": { - "type": "parameter", - "parameter": "gov.aca.ptc_phase_out_rate[2].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2015-01-01": 1.5 - }, - "economy": true, - "household": true - }, - "gov.aca.ptc_phase_out_rate[2].amount": { - "type": "parameter", - "parameter": "gov.aca.ptc_phase_out_rate[2].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2026-01-01": 0.04, - "2021-01-01": 0, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.aca.ptc_phase_out_rate[3]": { - "type": "parameterNode", - "parameter": "gov.aca.ptc_phase_out_rate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.aca.ptc_phase_out_rate[3].threshold": { - "type": "parameter", - "parameter": "gov.aca.ptc_phase_out_rate[3].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.aca.ptc_phase_out_rate[3].amount": { - "type": "parameter", - "parameter": "gov.aca.ptc_phase_out_rate[3].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2026-01-01": 0.063, - "2021-01-01": 0.02, - "2015-01-01": 0.063 - }, - "economy": true, - "household": true - }, - "gov.aca.ptc_phase_out_rate[4]": { - "type": "parameterNode", - "parameter": "gov.aca.ptc_phase_out_rate[4]", - "description": null, - "label": "bracket 5" - }, - "gov.aca.ptc_phase_out_rate[4].threshold": { - "type": "parameter", - "parameter": "gov.aca.ptc_phase_out_rate[4].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2015-01-01": 2.5 - }, - "economy": true, - "household": true - }, - "gov.aca.ptc_phase_out_rate[4].amount": { - "type": "parameter", - "parameter": "gov.aca.ptc_phase_out_rate[4].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2026-01-01": 0.0805, - "2021-01-01": 0.04, - "2015-01-01": 0.0805 - }, - "economy": true, - "household": true - }, - "gov.aca.ptc_phase_out_rate[5]": { - "type": "parameterNode", - "parameter": "gov.aca.ptc_phase_out_rate[5]", - "description": null, - "label": "bracket 6" - }, - "gov.aca.ptc_phase_out_rate[5].threshold": { - "type": "parameter", - "parameter": "gov.aca.ptc_phase_out_rate[5].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.aca.ptc_phase_out_rate[5].amount": { - "type": "parameter", - "parameter": "gov.aca.ptc_phase_out_rate[5].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2026-01-01": 0.095, - "2021-01-01": 0.06, - "2015-01-01": 0.095 - }, - "economy": true, - "household": true - }, - "gov.aca.ptc_phase_out_rate[6]": { - "type": "parameterNode", - "parameter": "gov.aca.ptc_phase_out_rate[6]", - "description": null, - "label": "bracket 7" - }, - "gov.aca.ptc_phase_out_rate[6].threshold": { - "type": "parameter", - "parameter": "gov.aca.ptc_phase_out_rate[6].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2015-01-01": 4 - }, - "economy": true, - "household": true - }, - "gov.aca.ptc_phase_out_rate[6].amount": { - "type": "parameter", - "parameter": "gov.aca.ptc_phase_out_rate[6].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2026-01-01": 0.095, - "2021-01-01": 0.085, - "2015-01-01": 0.095 - }, - "economy": true, - "household": true - }, - "gov.dol": { - "type": "parameterNode", - "parameter": "gov.dol", - "description": null, - "label": "Department of Labor (DOL)", - "economy": true, - "household": true - }, - "gov.dol.minimum_wage": { - "type": "parameter", - "parameter": "gov.dol.minimum_wage", - "description": "The US requires each employer to pay each of its employees the following federal minimum wage rate.", - "label": "Federal minimum wage", - "unit": "currency-USD", - "period": null, - "values": { - "2009-07-24": 7.25, - "2008-07-24": 6.55, - "2007-07-24": 5.84 - }, - "economy": true, - "household": true - }, - "gov.bls": { - "type": "parameterNode", - "parameter": "gov.bls", - "description": null, - "label": "Bureau of Labor Statistics (BLS)", - "economy": true, - "household": true - }, - "gov.bls.cpi": { - "type": "parameterNode", - "parameter": "gov.bls.cpi", - "description": null, - "label": "Consumer Price Index (CPI)", - "economy": true, - "household": true - }, - "gov.bls.cpi.cpi_u": { - "type": "parameter", - "parameter": "gov.bls.cpi.cpi_u", - "description": "The Bureau of Labor Statistics estimates this Consumer Price Index for All Urban Consumers.", - "label": "CPI-U", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 398.7, - "2034-02-01": 389.6, - "2033-02-01": 381, - "2032-02-01": 372.7, - "2031-02-01": 364.5, - "2030-02-01": 356.5, - "2029-02-01": 348.7, - "2028-02-01": 341.1, - "2027-02-01": 333.5, - "2026-02-01": 325.9, - "2025-02-01": 318.2, - "2024-12-01": 315.605, - "2024-11-01": 315.493, - "2024-10-01": 315.664, - "2024-09-01": 315.301, - "2024-08-01": 314.796, - "2024-07-01": 314.54, - "2024-06-01": 314.175, - "2024-05-01": 314.069, - "2024-04-01": 313.548, - "2024-03-01": 312.332, - "2024-02-01": 310.326, - "2024-01-01": 308.417, - "2023-12-01": 306.746, - "2023-11-01": 307.051, - "2023-10-01": 307.671, - "2023-09-01": 307.789, - "2023-08-01": 307.026, - "2023-07-01": 305.691, - "2023-06-01": 305.109, - "2023-05-01": 304.127, - "2023-04-01": 303.363, - "2023-03-01": 301.836, - "2023-02-01": 300.84, - "2023-01-01": 299.17, - "2022-12-01": 296.797, - "2022-11-01": 297.711, - "2022-10-01": 298.012, - "2022-09-01": 296.808, - "2022-08-01": 296.171, - "2022-07-01": 296.276, - "2022-06-01": 296.311, - "2022-05-01": 292.296, - "2022-04-01": 289.109, - "2022-03-01": 287.504, - "2022-02-01": 283.716, - "2022-01-01": 281.148, - "2021-12-01": 278.802, - "2021-11-01": 277.948, - "2021-10-01": 276.589, - "2021-09-01": 274.31, - "2021-08-01": 273.567, - "2021-07-01": 273.003, - "2021-06-01": 271.696, - "2021-05-01": 269.195, - "2021-04-01": 267.054, - "2021-03-01": 264.877, - "2021-02-01": 263.014, - "2021-01-01": 261.582, - "2020-12-01": 260.474, - "2020-11-01": 260.229, - "2020-10-01": 260.388, - "2020-09-01": 260.28, - "2020-08-01": 259.918, - "2020-07-01": 259.101, - "2020-06-01": 257.797, - "2020-05-01": 256.394, - "2020-04-01": 256.389, - "2020-03-01": 258.115, - "2020-02-01": 258.678, - "2020-01-01": 257.971, - "2019-12-01": 256.974, - "2019-11-01": 257.208, - "2019-10-01": 257.346, - "2019-09-01": 256.759, - "2019-08-01": 256.558, - "2019-07-01": 256.571, - "2019-06-01": 256.143, - "2019-05-01": 256.092, - "2019-04-01": 255.548, - "2019-03-01": 254.202, - "2019-02-01": 252.776, - "2019-01-01": 251.712, - "2018-12-01": 251.233, - "2018-11-01": 252.038, - "2018-10-01": 252.885, - "2018-09-01": 252.439, - "2018-08-01": 252.146, - "2018-07-01": 252.006, - "2018-06-01": 251.989, - "2018-05-01": 251.588, - "2018-04-01": 250.546, - "2018-03-01": 249.554, - "2018-02-01": 248.991, - "2018-01-01": 247.867, - "2017-12-01": 246.524, - "2017-11-01": 246.669, - "2017-10-01": 246.663, - "2017-09-01": 246.819, - "2017-08-01": 245.519, - "2017-07-01": 244.786, - "2017-06-01": 244.955, - "2017-05-01": 244.733, - "2017-04-01": 244.524, - "2017-03-01": 243.801, - "2017-02-01": 243.603, - "2017-01-01": 242.839, - "2016-12-01": 241.432, - "2016-11-01": 241.353, - "2016-10-01": 241.729, - "2016-09-01": 241.428, - "2016-08-01": 240.849, - "2016-07-01": 240.628, - "2016-06-01": 241.018, - "2016-05-01": 240.229, - "2016-04-01": 239.261, - "2016-03-01": 238.132, - "2016-02-01": 237.111, - "2016-01-01": 236.916, - "2015-12-01": 236.525, - "2015-11-01": 237.336, - "2015-10-01": 237.838, - "2015-09-01": 237.945, - "2015-08-01": 238.316, - "2015-07-01": 238.654, - "2015-06-01": 238.638, - "2015-05-01": 237.805, - "2015-04-01": 236.599, - "2015-03-01": 236.119, - "2015-02-01": 234.722, - "2015-01-01": 233.707, - "2014-12-01": 234.812, - "2014-11-01": 236.151, - "2014-10-01": 237.433, - "2014-09-01": 238.031, - "2014-08-01": 237.852, - "2014-07-01": 238.25, - "2014-06-01": 238.343, - "2014-05-01": 237.9, - "2014-04-01": 237.072, - "2014-03-01": 236.293, - "2014-02-01": 234.781, - "2014-01-01": 233.916, - "2013-12-01": 233.049, - "2013-11-01": 233.069, - "2013-10-01": 233.546, - "2013-09-01": 234.149, - "2013-08-01": 233.877, - "2013-07-01": 233.596, - "2013-06-01": 233.504, - "2013-05-01": 232.945, - "2013-04-01": 232.531, - "2013-03-01": 232.773, - "2013-02-01": 232.166, - "2013-01-01": 230.28, - "2012-12-01": 229.601, - "2012-11-01": 230.221, - "2012-10-01": 231.317, - "2012-09-01": 231.407, - "2012-08-01": 230.379, - "2012-07-01": 229.104, - "2012-06-01": 229.478, - "2012-05-01": 229.815, - "2012-04-01": 230.085, - "2012-03-01": 229.392, - "2012-02-01": 227.663, - "2012-01-01": 226.665, - "2011-12-01": 225.672, - "2011-11-01": 226.23, - "2011-10-01": 226.421, - "2011-09-01": 226.889, - "2011-08-01": 226.545, - "2011-07-01": 225.922, - "2011-06-01": 225.722, - "2011-05-01": 225.964, - "2011-04-01": 224.906, - "2011-03-01": 223.467, - "2011-02-01": 221.309, - "2011-01-01": 220.223, - "2010-12-01": 219.179, - "2010-11-01": 218.803, - "2010-10-01": 218.711, - "2010-09-01": 218.439, - "2010-08-01": 218.312, - "2010-07-01": 218.011, - "2010-06-01": 217.965, - "2010-05-01": 218.178, - "2010-04-01": 218.009, - "2010-03-01": 217.631, - "2010-02-01": 216.741, - "2010-01-01": 216.687, - "2009-12-01": 215.949, - "2009-11-01": 216.33, - "2009-10-01": 216.177, - "2009-09-01": 215.969, - "2009-08-01": 215.834, - "2009-07-01": 215.351, - "2009-06-01": 215.693, - "2009-05-01": 213.856, - "2009-04-01": 213.24, - "2009-03-01": 212.709, - "2009-02-01": 212.193, - "2009-01-01": 211.143, - "2008-12-01": 210.228, - "2008-11-01": 212.425, - "2008-10-01": 216.573, - "2008-09-01": 218.783, - "2008-08-01": 219.086, - "2008-07-01": 219.964, - "2008-06-01": 218.815, - "2008-05-01": 216.632, - "2008-04-01": 214.823, - "2008-03-01": 213.528, - "2008-02-01": 211.693, - "2008-01-01": 211.08, - "2007-12-01": 210.036, - "2007-11-01": 210.177, - "2007-10-01": 208.936, - "2007-09-01": 208.49, - "2007-08-01": 207.917, - "2007-07-01": 208.299, - "2007-06-01": 208.352, - "2007-05-01": 207.949, - "2007-04-01": 206.686, - "2007-03-01": 205.352, - "2007-02-01": 203.499, - "2007-01-01": 202.416, - "2006-12-01": 201.8, - "2006-11-01": 201.5, - "2006-10-01": 201.8, - "2006-09-01": 202.9, - "2006-08-01": 203.9, - "2006-07-01": 203.5, - "2006-06-01": 202.9, - "2006-05-01": 202.5, - "2006-04-01": 201.5, - "2006-03-01": 199.8, - "2006-02-01": 198.7, - "2006-01-01": 198.3, - "2005-12-01": 196.8, - "2005-11-01": 197.6, - "2005-10-01": 199.2, - "2005-09-01": 198.8, - "2005-08-01": 196.4, - "2005-07-01": 195.4, - "2005-06-01": 194.5, - "2005-05-01": 194.4, - "2005-04-01": 194.6, - "2005-03-01": 193.3, - "2005-02-01": 191.8, - "2005-01-01": 190.7, - "2004-12-01": 190.3, - "2004-11-01": 191, - "2004-10-01": 190.9, - "2004-09-01": 189.9, - "2004-08-01": 189.5, - "2004-07-01": 189.4, - "2004-06-01": 189.7, - "2004-05-01": 189.1, - "2004-04-01": 188, - "2004-03-01": 187.4, - "2004-02-01": 186.2, - "2004-01-01": 185.2, - "2003-12-01": 184.3, - "2003-11-01": 184.5, - "2003-10-01": 185, - "2003-09-01": 185.2, - "2003-08-01": 184.6, - "2003-07-01": 183.9, - "2003-06-01": 183.7, - "2003-05-01": 183.5, - "2003-04-01": 183.8, - "2003-03-01": 184.2, - "2003-02-01": 183.1, - "2003-01-01": 181.7, - "2002-12-01": 180.9, - "2002-11-01": 181.3, - "2002-10-01": 181.3, - "2002-09-01": 181, - "2002-08-01": 180.7, - "2002-07-01": 180.1, - "2002-06-01": 179.9, - "2002-05-01": 179.8, - "2002-04-01": 179.8, - "2002-03-01": 178.8, - "2002-02-01": 177.8, - "2002-01-01": 177.1, - "2001-12-01": 176.7, - "2001-11-01": 177.4, - "2001-10-01": 177.7, - "2001-09-01": 178.3, - "2001-08-01": 177.5, - "2001-07-01": 177.5, - "2001-06-01": 178, - "2001-05-01": 177.7, - "2001-04-01": 176.9, - "2001-03-01": 176.2, - "2001-02-01": 175.8, - "2001-01-01": 175.1, - "2000-12-01": 174, - "2000-11-01": 174.1, - "2000-10-01": 174, - "2000-09-01": 173.7, - "2000-08-01": 172.8, - "2000-07-01": 172.8, - "2000-06-01": 172.4, - "2000-05-01": 171.5, - "2000-04-01": 171.3, - "2000-03-01": 171.2, - "2000-02-01": 169.8, - "2000-01-01": 168.8, - "1999-12-01": 168.3, - "1999-11-01": 168.3, - "1999-10-01": 168.2, - "1999-09-01": 167.9, - "1999-08-01": 167.1, - "1999-07-01": 166.7, - "1999-06-01": 166.2, - "1999-05-01": 166.2, - "1999-04-01": 166.2, - "1999-03-01": 165, - "1999-02-01": 164.5, - "1999-01-01": 164.3, - "1998-12-01": 163.9, - "1998-11-01": 164, - "1998-10-01": 164, - "1998-09-01": 163.6, - "1998-08-01": 163.4, - "1998-07-01": 163.2, - "1998-06-01": 163, - "1998-05-01": 162.8, - "1998-04-01": 162.5, - "1998-03-01": 162.2, - "1998-02-01": 161.9, - "1998-01-01": 161.6, - "1997-12-01": 161.3, - "1997-11-01": 161.5, - "1997-10-01": 161.6, - "1997-09-01": 161.2, - "1997-08-01": 160.8, - "1997-07-01": 160.5, - "1997-06-01": 160.3, - "1997-05-01": 160.1, - "1997-04-01": 160.2, - "1997-03-01": 160, - "1997-02-01": 159.6, - "1997-01-01": 159.1, - "1996-12-01": 158.6, - "1996-11-01": 158.6, - "1996-10-01": 158.3, - "1996-09-01": 157.8, - "1996-08-01": 157.3, - "1996-07-01": 157, - "1996-06-01": 156.7, - "1996-05-01": 156.6, - "1996-04-01": 156.3, - "1996-03-01": 155.7, - "1996-02-01": 154.9, - "1996-01-01": 154.4, - "1995-12-01": 153.5, - "1995-11-01": 153.6, - "1995-10-01": 153.7, - "1995-09-01": 153.2, - "1995-08-01": 152.9, - "1995-07-01": 152.5, - "1995-06-01": 152.5, - "1995-05-01": 152.2, - "1995-04-01": 151.9, - "1995-03-01": 151.4, - "1995-02-01": 150.9, - "1995-01-01": 150.3, - "1994-12-01": 149.7, - "1994-11-01": 149.7, - "1994-10-01": 149.5, - "1994-09-01": 149.4, - "1994-08-01": 149, - "1994-07-01": 148.4, - "1994-06-01": 148, - "1994-05-01": 147.5, - "1994-04-01": 147.4, - "1994-03-01": 147.2, - "1994-02-01": 146.7, - "1994-01-01": 146.2, - "1993-12-01": 145.8, - "1993-11-01": 145.8, - "1993-10-01": 145.7, - "1993-09-01": 145.1, - "1993-08-01": 144.8, - "1993-07-01": 144.4, - "1993-06-01": 144.4, - "1993-05-01": 144.2, - "1993-04-01": 144, - "1993-03-01": 143.6, - "1993-02-01": 143.1, - "1993-01-01": 142.6, - "1992-12-01": 141.9, - "1992-11-01": 142, - "1992-10-01": 141.8, - "1992-09-01": 141.3, - "1992-08-01": 140.9, - "1992-07-01": 140.5, - "1992-06-01": 140.2, - "1992-05-01": 139.7, - "1992-04-01": 139.5, - "1992-03-01": 139.3, - "1992-02-01": 138.6, - "1992-01-01": 138.1, - "1991-12-01": 137.9, - "1991-11-01": 137.8, - "1991-10-01": 137.4, - "1991-09-01": 137.2, - "1991-08-01": 136.6, - "1991-07-01": 136.2, - "1991-06-01": 136, - "1991-05-01": 135.6, - "1991-04-01": 135.2, - "1991-03-01": 135, - "1991-02-01": 134.8, - "1991-01-01": 134.6, - "1990-12-01": 133.8, - "1990-11-01": 133.8, - "1990-10-01": 133.5, - "1990-09-01": 132.7, - "1990-08-01": 131.6, - "1990-07-01": 130.4, - "1990-06-01": 129.9, - "1990-05-01": 129.2, - "1990-04-01": 128.9, - "1990-03-01": 128.7, - "1990-02-01": 128, - "1990-01-01": 127.4, - "1989-12-01": 126.1, - "1989-11-01": 125.9, - "1989-10-01": 125.6, - "1989-09-01": 125, - "1989-08-01": 124.6, - "1989-07-01": 124.4, - "1989-06-01": 124.1, - "1989-05-01": 123.8, - "1989-04-01": 123.1, - "1989-03-01": 122.3, - "1989-02-01": 121.6, - "1989-01-01": 121.1, - "1988-12-01": 120.5, - "1988-11-01": 120.3, - "1988-10-01": 120.2, - "1988-09-01": 119.8, - "1988-08-01": 119, - "1988-07-01": 118.5, - "1988-06-01": 118, - "1988-05-01": 117.5, - "1988-04-01": 117.1, - "1988-03-01": 116.5, - "1988-02-01": 116, - "1988-01-01": 115.7, - "1987-12-01": 115.4, - "1987-11-01": 115.4, - "1987-10-01": 115.3, - "1987-09-01": 115, - "1987-08-01": 114.4, - "1987-07-01": 113.8, - "1987-06-01": 113.5, - "1987-05-01": 113.1, - "1987-04-01": 112.7, - "1987-03-01": 112.1, - "1987-02-01": 111.6, - "1987-01-01": 111.2, - "1986-12-01": 110.5, - "1986-11-01": 110.4, - "1986-10-01": 110.3, - "1986-09-01": 110.2, - "1986-08-01": 109.7, - "1986-07-01": 109.5, - "1986-06-01": 109.5, - "1986-05-01": 108.9, - "1986-04-01": 108.6, - "1986-03-01": 108.8, - "1986-02-01": 109.3, - "1986-01-01": 109.6, - "1985-12-01": 109.3, - "1985-11-01": 109, - "1985-10-01": 108.7, - "1985-09-01": 108.3, - "1985-08-01": 108, - "1985-07-01": 107.8, - "1985-06-01": 107.6, - "1985-05-01": 107.3, - "1985-04-01": 106.9, - "1985-03-01": 106.4, - "1985-02-01": 106, - "1985-01-01": 105.5, - "1984-12-01": 105.3, - "1984-11-01": 105.3, - "1984-10-01": 105.3, - "1984-09-01": 105, - "1984-08-01": 104.5, - "1984-07-01": 104.1, - "1984-06-01": 103.7, - "1984-05-01": 103.4, - "1984-04-01": 103.1, - "1984-03-01": 102.6, - "1984-02-01": 102.4, - "1984-01-01": 101.9, - "1983-12-01": 101.3, - "1983-11-01": 101.2, - "1983-10-01": 101, - "1983-09-01": 100.7, - "1983-08-01": 100.2, - "1983-07-01": 99.9, - "1983-06-01": 99.5, - "1983-05-01": 99.2, - "1983-04-01": 98.6, - "1983-03-01": 97.9, - "1983-02-01": 97.9, - "1983-01-01": 97.8, - "1982-12-01": 97.6, - "1982-11-01": 98, - "1982-10-01": 98.2, - "1982-09-01": 97.9, - "1982-08-01": 97.7, - "1982-07-01": 97.5, - "1982-06-01": 97, - "1982-05-01": 95.8, - "1982-04-01": 94.9, - "1982-03-01": 94.5, - "1982-02-01": 94.6, - "1982-01-01": 94.3, - "1981-12-01": 94, - "1981-11-01": 93.7, - "1981-10-01": 93.4, - "1981-09-01": 93.2, - "1981-08-01": 92.3, - "1981-07-01": 91.6, - "1981-06-01": 90.6, - "1981-05-01": 89.8, - "1981-04-01": 89.1, - "1981-03-01": 88.5, - "1981-02-01": 87.9, - "1981-01-01": 87, - "1980-12-01": 86.3, - "1980-11-01": 85.5, - "1980-10-01": 84.8, - "1980-09-01": 84, - "1980-08-01": 83.3, - "1980-07-01": 82.7, - "1980-06-01": 82.7, - "1980-05-01": 81.8, - "1980-04-01": 81, - "1980-03-01": 80.1, - "1980-02-01": 78.9, - "1980-01-01": 77.8, - "1979-12-01": 76.7, - "1979-11-01": 75.9, - "1979-10-01": 75.2, - "1979-09-01": 74.6, - "1979-08-01": 73.8, - "1979-07-01": 73.1, - "1979-06-01": 72.3, - "1979-05-01": 71.5, - "1979-04-01": 70.6, - "1979-03-01": 69.8, - "1979-02-01": 69.1, - "1979-01-01": 68.3, - "1978-12-01": 67.7, - "1978-11-01": 67.4, - "1978-10-01": 67.1, - "1978-09-01": 66.5, - "1978-08-01": 66, - "1978-07-01": 65.7, - "1978-06-01": 65.2, - "1978-05-01": 64.5, - "1978-04-01": 63.9, - "1978-03-01": 63.4, - "1978-02-01": 62.9, - "1978-01-01": 62.5, - "1977-12-01": 62.1, - "1977-11-01": 61.9, - "1977-10-01": 61.6, - "1977-09-01": 61.4, - "1977-08-01": 61.2, - "1977-07-01": 61, - "1977-06-01": 60.7, - "1977-05-01": 60.3, - "1977-04-01": 60, - "1977-03-01": 59.5, - "1977-02-01": 59.1, - "1977-01-01": 58.5, - "1976-12-01": 58.2, - "1976-11-01": 58, - "1976-10-01": 57.9, - "1976-09-01": 57.6, - "1976-08-01": 57.4, - "1976-07-01": 57.1, - "1976-06-01": 56.8, - "1976-05-01": 56.5, - "1976-04-01": 56.1, - "1976-03-01": 55.9, - "1976-02-01": 55.8, - "1976-01-01": 55.6, - "1975-12-01": 55.5, - "1975-11-01": 55.3, - "1975-10-01": 54.9, - "1975-09-01": 54.6, - "1975-08-01": 54.3, - "1975-07-01": 54.2, - "1975-06-01": 53.6, - "1975-05-01": 53.2, - "1975-04-01": 52.9, - "1975-03-01": 52.7, - "1975-02-01": 52.5, - "1975-01-01": 52.1, - "1974-12-01": 51.9, - "1974-11-01": 51.5, - "1974-10-01": 51.1, - "1974-09-01": 50.6, - "1974-08-01": 50, - "1974-07-01": 49.4, - "1974-06-01": 49, - "1974-05-01": 48.6, - "1974-04-01": 48, - "1974-03-01": 47.8, - "1974-02-01": 47.2, - "1974-01-01": 46.6, - "1973-12-01": 46.2, - "1973-11-01": 45.9, - "1973-10-01": 45.6, - "1973-09-01": 45.2, - "1973-08-01": 45.1, - "1973-07-01": 44.3, - "1973-06-01": 44.2, - "1973-05-01": 43.9, - "1973-04-01": 43.6, - "1973-03-01": 43.3, - "1973-02-01": 42.9, - "1973-01-01": 42.6, - "1972-12-01": 42.5, - "1972-11-01": 42.4, - "1972-10-01": 42.3, - "1972-09-01": 42.1, - "1972-08-01": 42, - "1972-07-01": 41.9, - "1972-06-01": 41.7, - "1972-05-01": 41.6, - "1972-04-01": 41.5, - "1972-03-01": 41.4, - "1972-02-01": 41.3, - "1972-01-01": 41.1, - "1971-12-01": 41.1, - "1971-11-01": 40.9, - "1971-10-01": 40.9, - "1971-09-01": 40.8, - "1971-08-01": 40.8, - "1971-07-01": 40.7, - "1971-06-01": 40.6, - "1971-05-01": 40.3, - "1971-04-01": 40.1, - "1971-03-01": 40, - "1971-02-01": 39.9, - "1971-01-01": 39.8, - "1970-12-01": 39.8, - "1970-11-01": 39.6, - "1970-10-01": 39.4, - "1970-09-01": 39.2, - "1970-08-01": 39, - "1970-07-01": 39, - "1970-06-01": 38.8, - "1970-05-01": 38.6, - "1970-04-01": 38.5, - "1970-03-01": 38.2, - "1970-02-01": 38, - "1970-01-01": 37.8, - "1969-12-01": 37.7, - "1969-11-01": 37.5, - "1969-10-01": 37.3, - "1969-09-01": 37.1, - "1969-08-01": 37, - "1969-07-01": 36.8, - "1969-06-01": 36.6, - "1969-05-01": 36.4, - "1969-04-01": 36.3, - "1969-03-01": 36.1, - "1969-02-01": 35.8, - "1969-01-01": 35.6, - "1968-12-01": 35.5, - "1968-11-01": 35.4, - "1968-10-01": 35.3, - "1968-09-01": 35.1, - "1968-08-01": 35, - "1968-07-01": 34.9, - "1968-06-01": 34.7, - "1968-05-01": 34.5, - "1968-04-01": 34.4, - "1968-03-01": 34.3, - "1968-02-01": 34.2, - "1968-01-01": 34.1, - "1967-12-01": 33.9, - "1967-11-01": 33.8, - "1967-10-01": 33.7, - "1967-09-01": 33.6, - "1967-08-01": 33.5, - "1967-07-01": 33.4, - "1967-06-01": 33.3, - "1967-05-01": 33.2, - "1967-04-01": 33.1, - "1967-03-01": 33, - "1967-02-01": 32.9, - "1967-01-01": 32.9, - "1966-12-01": 32.9, - "1966-11-01": 32.9, - "1966-10-01": 32.9, - "1966-09-01": 32.7, - "1966-08-01": 32.7, - "1966-07-01": 32.5, - "1966-06-01": 32.4, - "1966-05-01": 32.3, - "1966-04-01": 32.3, - "1966-03-01": 32.1, - "1966-02-01": 32, - "1966-01-01": 31.8, - "1965-12-01": 31.8, - "1965-11-01": 31.7, - "1965-10-01": 31.7, - "1965-09-01": 31.6, - "1965-08-01": 31.6, - "1965-07-01": 31.6, - "1965-06-01": 31.6, - "1965-05-01": 31.4, - "1965-04-01": 31.4, - "1965-03-01": 31.3, - "1965-02-01": 31.2, - "1965-01-01": 31.2, - "1964-12-01": 31.2, - "1964-11-01": 31.2, - "1964-10-01": 31.1, - "1964-09-01": 31.1, - "1964-08-01": 31, - "1964-07-01": 31.1, - "1964-06-01": 31, - "1964-05-01": 30.9, - "1964-04-01": 30.9, - "1964-03-01": 30.9, - "1964-02-01": 30.9, - "1964-01-01": 30.9, - "1963-12-01": 30.9, - "1963-11-01": 30.8, - "1963-10-01": 30.8, - "1963-09-01": 30.7, - "1963-08-01": 30.7, - "1963-07-01": 30.7, - "1963-06-01": 30.6, - "1963-05-01": 30.5, - "1963-04-01": 30.5, - "1963-03-01": 30.5, - "1963-02-01": 30.4, - "1963-01-01": 30.4, - "1962-12-01": 30.4, - "1962-11-01": 30.4, - "1962-10-01": 30.4, - "1962-09-01": 30.4, - "1962-08-01": 30.3, - "1962-07-01": 30.3, - "1962-06-01": 30.2, - "1962-05-01": 30.2, - "1962-04-01": 30.2, - "1962-03-01": 30.1, - "1962-02-01": 30.1, - "1962-01-01": 30, - "1961-12-01": 30, - "1961-11-01": 30, - "1961-10-01": 30, - "1961-09-01": 30, - "1961-08-01": 29.9, - "1961-07-01": 30, - "1961-06-01": 29.8, - "1961-05-01": 29.8, - "1961-04-01": 29.8, - "1961-03-01": 29.8, - "1961-02-01": 29.8, - "1961-01-01": 29.8, - "1960-12-01": 29.8, - "1960-11-01": 29.8, - "1960-10-01": 29.8, - "1960-09-01": 29.6, - "1960-08-01": 29.6, - "1960-07-01": 29.6, - "1960-06-01": 29.6, - "1960-05-01": 29.5, - "1960-04-01": 29.5, - "1960-03-01": 29.4, - "1960-02-01": 29.4, - "1960-01-01": 29.3, - "1959-12-01": 29.4, - "1959-11-01": 29.4, - "1959-10-01": 29.4, - "1959-09-01": 29.3, - "1959-08-01": 29.2, - "1959-07-01": 29.2, - "1959-06-01": 29.1, - "1959-05-01": 29, - "1959-04-01": 29, - "1959-03-01": 28.9, - "1959-02-01": 28.9, - "1959-01-01": 29, - "1958-12-01": 28.9, - "1958-11-01": 29, - "1958-10-01": 28.9, - "1958-09-01": 28.9, - "1958-08-01": 28.9, - "1958-07-01": 29, - "1958-06-01": 28.9, - "1958-05-01": 28.9, - "1958-04-01": 28.9, - "1958-03-01": 28.8, - "1958-02-01": 28.6, - "1958-01-01": 28.6, - "1957-12-01": 28.4, - "1957-11-01": 28.4, - "1957-10-01": 28.3, - "1957-09-01": 28.3, - "1957-08-01": 28.3, - "1957-07-01": 28.3, - "1957-06-01": 28.1, - "1957-05-01": 28, - "1957-04-01": 27.9, - "1957-03-01": 27.8, - "1957-02-01": 27.7, - "1957-01-01": 27.6, - "1956-12-01": 27.6, - "1956-11-01": 27.5, - "1956-10-01": 27.5, - "1956-09-01": 27.4, - "1956-08-01": 27.3, - "1956-07-01": 27.4, - "1956-06-01": 27.2, - "1956-05-01": 27, - "1956-04-01": 26.9, - "1956-03-01": 26.8, - "1956-02-01": 26.8, - "1956-01-01": 26.8, - "1955-12-01": 26.8, - "1955-11-01": 26.9, - "1955-10-01": 26.9, - "1955-09-01": 26.9, - "1955-08-01": 26.8, - "1955-07-01": 26.8, - "1955-06-01": 26.7, - "1955-05-01": 26.7, - "1955-04-01": 26.7, - "1955-03-01": 26.7, - "1955-02-01": 26.7, - "1955-01-01": 26.7, - "1954-12-01": 26.7, - "1954-11-01": 26.8, - "1954-10-01": 26.8, - "1954-09-01": 26.8, - "1954-08-01": 26.9, - "1954-07-01": 26.9, - "1954-06-01": 26.9, - "1954-05-01": 26.9, - "1954-04-01": 26.8, - "1954-03-01": 26.9, - "1954-02-01": 26.9, - "1954-01-01": 26.9, - "1953-12-01": 26.9, - "1953-11-01": 26.9, - "1953-10-01": 27, - "1953-09-01": 26.9, - "1953-08-01": 26.9, - "1953-07-01": 26.8, - "1953-06-01": 26.8, - "1953-05-01": 26.7, - "1953-04-01": 26.6, - "1953-03-01": 26.6, - "1953-02-01": 26.5, - "1953-01-01": 26.6, - "1952-12-01": 26.7, - "1952-11-01": 26.7, - "1952-10-01": 26.7, - "1952-09-01": 26.7, - "1952-08-01": 26.7, - "1952-07-01": 26.7, - "1952-06-01": 26.5, - "1952-05-01": 26.4, - "1952-04-01": 26.4, - "1952-03-01": 26.3, - "1952-02-01": 26.3, - "1952-01-01": 26.5, - "1951-12-01": 26.5, - "1951-11-01": 26.4, - "1951-10-01": 26.2, - "1951-09-01": 26.1, - "1951-08-01": 25.9, - "1951-07-01": 25.9, - "1951-06-01": 25.9, - "1951-05-01": 25.9, - "1951-04-01": 25.8, - "1951-03-01": 25.8, - "1951-02-01": 25.7, - "1951-01-01": 25.4, - "1950-12-01": 25, - "1950-11-01": 24.7, - "1950-10-01": 24.6, - "1950-09-01": 24.4, - "1950-08-01": 24.3, - "1950-07-01": 24.1, - "1950-06-01": 23.8, - "1950-05-01": 23.7, - "1950-04-01": 23.6, - "1950-03-01": 23.6, - "1950-02-01": 23.5, - "1950-01-01": 23.5, - "1949-12-01": 23.6, - "1949-11-01": 23.8, - "1949-10-01": 23.7, - "1949-09-01": 23.9, - "1949-08-01": 23.8, - "1949-07-01": 23.7, - "1949-06-01": 23.9, - "1949-05-01": 23.8, - "1949-04-01": 23.9, - "1949-03-01": 23.8, - "1949-02-01": 23.8, - "1949-01-01": 24, - "1948-12-01": 24.1, - "1948-11-01": 24.2, - "1948-10-01": 24.4, - "1948-09-01": 24.5, - "1948-08-01": 24.5, - "1948-07-01": 24.4, - "1948-06-01": 24.1, - "1948-05-01": 23.9, - "1948-04-01": 23.8, - "1948-03-01": 23.4, - "1948-02-01": 23.5, - "1948-01-01": 23.7, - "1947-12-01": 23.4, - "1947-11-01": 23.1, - "1947-10-01": 23, - "1947-09-01": 23, - "1947-08-01": 22.5, - "1947-07-01": 22.2, - "1947-06-01": 22, - "1947-05-01": 21.9, - "1947-04-01": 21.9, - "1947-03-01": 21.9, - "1947-02-01": 21.5, - "1947-01-01": 21.5, - "1946-12-01": 21.5, - "1946-11-01": 21.3, - "1946-10-01": 20.8, - "1946-09-01": 20.4, - "1946-08-01": 20.2, - "1946-07-01": 19.8, - "1946-06-01": 18.7, - "1946-05-01": 18.5, - "1946-04-01": 18.4, - "1946-03-01": 18.3, - "1946-02-01": 18.1, - "1946-01-01": 18.2, - "1945-12-01": 18.2, - "1945-11-01": 18.1, - "1945-10-01": 18.1, - "1945-09-01": 18.1, - "1945-08-01": 18.1, - "1945-07-01": 18.1, - "1945-06-01": 18.1, - "1945-05-01": 17.9, - "1945-04-01": 17.8, - "1945-03-01": 17.8, - "1945-02-01": 17.8, - "1945-01-01": 17.8, - "1944-12-01": 17.8, - "1944-11-01": 17.7, - "1944-10-01": 17.7, - "1944-09-01": 17.7, - "1944-08-01": 17.7, - "1944-07-01": 17.7, - "1944-06-01": 17.6, - "1944-05-01": 17.5, - "1944-04-01": 17.5, - "1944-03-01": 17.4, - "1944-02-01": 17.4, - "1944-01-01": 17.4, - "1943-12-01": 17.4, - "1943-11-01": 17.4, - "1943-10-01": 17.4, - "1943-09-01": 17.4, - "1943-08-01": 17.3, - "1943-07-01": 17.4, - "1943-06-01": 17.5, - "1943-05-01": 17.5, - "1943-04-01": 17.4, - "1943-03-01": 17.2, - "1943-02-01": 16.9, - "1943-01-01": 16.9, - "1942-12-01": 16.9, - "1942-11-01": 16.8, - "1942-10-01": 16.7, - "1942-09-01": 16.5, - "1942-08-01": 16.5, - "1942-07-01": 16.4, - "1942-06-01": 16.3, - "1942-05-01": 16.3, - "1942-04-01": 16.1, - "1942-03-01": 16, - "1942-02-01": 15.8, - "1942-01-01": 15.7, - "1941-12-01": 15.5, - "1941-11-01": 15.4, - "1941-10-01": 15.3, - "1941-09-01": 15.1, - "1941-08-01": 14.9, - "1941-07-01": 14.7, - "1941-06-01": 14.7, - "1941-05-01": 14.4, - "1941-04-01": 14.3, - "1941-03-01": 14.2, - "1941-02-01": 14.1, - "1941-01-01": 14.1, - "1940-12-01": 14.1, - "1940-11-01": 14, - "1940-10-01": 14, - "1940-09-01": 14, - "1940-08-01": 14, - "1940-07-01": 14, - "1940-06-01": 14.1, - "1940-05-01": 14, - "1940-04-01": 14, - "1940-03-01": 14, - "1940-02-01": 14, - "1940-01-01": 13.9, - "1939-12-01": 14, - "1939-11-01": 14, - "1939-10-01": 14, - "1939-09-01": 14.1, - "1939-08-01": 13.8, - "1939-07-01": 13.8, - "1939-06-01": 13.8, - "1939-05-01": 13.8, - "1939-04-01": 13.8, - "1939-03-01": 13.9, - "1939-02-01": 13.9, - "1939-01-01": 14, - "1938-12-01": 14, - "1938-11-01": 14, - "1938-10-01": 14, - "1938-09-01": 14.1, - "1938-08-01": 14.1, - "1938-07-01": 14.1, - "1938-06-01": 14.1, - "1938-05-01": 14.1, - "1938-04-01": 14.2, - "1938-03-01": 14.1, - "1938-02-01": 14.1, - "1938-01-01": 14.2, - "1937-12-01": 14.4, - "1937-11-01": 14.5, - "1937-10-01": 14.6, - "1937-09-01": 14.6, - "1937-08-01": 14.5, - "1937-07-01": 14.5, - "1937-06-01": 14.4, - "1937-05-01": 14.4, - "1937-04-01": 14.3, - "1937-03-01": 14.2, - "1937-02-01": 14.1, - "1937-01-01": 14.1, - "1936-12-01": 14, - "1936-11-01": 14, - "1936-10-01": 14, - "1936-09-01": 14, - "1936-08-01": 14, - "1936-07-01": 13.9, - "1936-06-01": 13.8, - "1936-05-01": 13.7, - "1936-04-01": 13.7, - "1936-03-01": 13.7, - "1936-02-01": 13.8, - "1936-01-01": 13.8, - "1935-12-01": 13.8, - "1935-11-01": 13.8, - "1935-10-01": 13.7, - "1935-09-01": 13.7, - "1935-08-01": 13.7, - "1935-07-01": 13.7, - "1935-06-01": 13.7, - "1935-05-01": 13.8, - "1935-04-01": 13.8, - "1935-03-01": 13.7, - "1935-02-01": 13.7, - "1935-01-01": 13.6, - "1934-12-01": 13.4, - "1934-11-01": 13.5, - "1934-10-01": 13.5, - "1934-09-01": 13.6, - "1934-08-01": 13.4, - "1934-07-01": 13.4, - "1934-06-01": 13.4, - "1934-05-01": 13.3, - "1934-04-01": 13.3, - "1934-03-01": 13.3, - "1934-02-01": 13.3, - "1934-01-01": 13.2, - "1933-12-01": 13.2, - "1933-11-01": 13.2, - "1933-10-01": 13.2, - "1933-09-01": 13.2, - "1933-08-01": 13.2, - "1933-07-01": 13.1, - "1933-06-01": 12.7, - "1933-05-01": 12.6, - "1933-04-01": 12.6, - "1933-03-01": 12.6, - "1933-02-01": 12.7, - "1933-01-01": 12.9, - "1932-12-01": 13.1, - "1932-11-01": 13.2, - "1932-10-01": 13.3, - "1932-09-01": 13.4, - "1932-08-01": 13.5, - "1932-07-01": 13.6, - "1932-06-01": 13.6, - "1932-05-01": 13.7, - "1932-04-01": 13.9, - "1932-03-01": 14, - "1932-02-01": 14.1, - "1932-01-01": 14.3, - "1931-12-01": 14.6, - "1931-11-01": 14.7, - "1931-10-01": 14.9, - "1931-09-01": 15, - "1931-08-01": 15.1, - "1931-07-01": 15.1, - "1931-06-01": 15.1, - "1931-05-01": 15.3, - "1931-04-01": 15.5, - "1931-03-01": 15.6, - "1931-02-01": 15.7, - "1931-01-01": 15.9, - "1930-12-01": 16.1, - "1930-11-01": 16.4, - "1930-10-01": 16.5, - "1930-09-01": 16.6, - "1930-08-01": 16.5, - "1930-07-01": 16.6, - "1930-06-01": 16.8, - "1930-05-01": 16.9, - "1930-04-01": 17, - "1930-03-01": 16.9, - "1930-02-01": 17, - "1930-01-01": 17.1, - "1929-12-01": 17.2, - "1929-11-01": 17.3, - "1929-10-01": 17.3, - "1929-09-01": 17.3, - "1929-08-01": 17.3, - "1929-07-01": 17.3, - "1929-06-01": 17.1, - "1929-05-01": 17, - "1929-04-01": 16.9, - "1929-03-01": 17, - "1929-02-01": 17.1, - "1929-01-01": 17.1, - "1928-12-01": 17.1, - "1928-11-01": 17.2, - "1928-10-01": 17.2, - "1928-09-01": 17.3, - "1928-08-01": 17.1, - "1928-07-01": 17.1, - "1928-06-01": 17.1, - "1928-05-01": 17.2, - "1928-04-01": 17.1, - "1928-03-01": 17.1, - "1928-02-01": 17.1, - "1928-01-01": 17.3, - "1927-12-01": 17.3, - "1927-11-01": 17.3, - "1927-10-01": 17.4, - "1927-09-01": 17.3, - "1927-08-01": 17.2, - "1927-07-01": 17.3, - "1927-06-01": 17.6, - "1927-05-01": 17.4, - "1927-04-01": 17.3, - "1927-03-01": 17.3, - "1927-02-01": 17.4, - "1927-01-01": 17.5, - "1926-12-01": 17.7, - "1926-11-01": 17.7, - "1926-10-01": 17.6, - "1926-09-01": 17.5, - "1926-08-01": 17.4, - "1926-07-01": 17.5, - "1926-06-01": 17.7, - "1926-05-01": 17.8, - "1926-04-01": 17.9, - "1926-03-01": 17.8, - "1926-02-01": 17.9, - "1926-01-01": 17.9, - "1925-12-01": 17.9, - "1925-11-01": 18, - "1925-10-01": 17.7, - "1925-09-01": 17.7, - "1925-08-01": 17.7, - "1925-07-01": 17.7, - "1925-06-01": 17.5, - "1925-05-01": 17.3, - "1925-04-01": 17.2, - "1925-03-01": 17.3, - "1925-02-01": 17.2, - "1925-01-01": 17.3, - "1924-12-01": 17.3, - "1924-11-01": 17.2, - "1924-10-01": 17.2, - "1924-09-01": 17.1, - "1924-08-01": 17, - "1924-07-01": 17.1, - "1924-06-01": 17, - "1924-05-01": 17, - "1924-04-01": 17, - "1924-03-01": 17.1, - "1924-02-01": 17.2, - "1924-01-01": 17.3, - "1923-12-01": 17.3, - "1923-11-01": 17.3, - "1923-10-01": 17.3, - "1923-09-01": 17.2, - "1923-08-01": 17.1, - "1923-07-01": 17.2, - "1923-06-01": 17, - "1923-05-01": 16.9, - "1923-04-01": 16.9, - "1923-03-01": 16.8, - "1923-02-01": 16.8, - "1923-01-01": 16.8, - "1922-12-01": 16.9, - "1922-11-01": 16.8, - "1922-10-01": 16.7, - "1922-09-01": 16.6, - "1922-08-01": 16.6, - "1922-07-01": 16.8, - "1922-06-01": 16.7, - "1922-05-01": 16.7, - "1922-04-01": 16.7, - "1922-03-01": 16.7, - "1922-02-01": 16.9, - "1922-01-01": 16.9, - "1921-12-01": 17.3, - "1921-11-01": 17.4, - "1921-10-01": 17.5, - "1921-09-01": 17.5, - "1921-08-01": 17.7, - "1921-07-01": 17.7, - "1921-06-01": 17.6, - "1921-05-01": 17.7, - "1921-04-01": 18.1, - "1921-03-01": 18.3, - "1921-02-01": 18.4, - "1921-01-01": 19, - "1920-12-01": 19.4, - "1920-11-01": 19.8, - "1920-10-01": 19.9, - "1920-09-01": 20, - "1920-08-01": 20.3, - "1920-07-01": 20.8, - "1920-06-01": 20.9, - "1920-05-01": 20.6, - "1920-04-01": 20.3, - "1920-03-01": 19.7, - "1920-02-01": 19.5, - "1920-01-01": 19.3, - "1919-12-01": 18.9, - "1919-11-01": 18.5, - "1919-10-01": 18.1, - "1919-09-01": 17.8, - "1919-08-01": 17.7, - "1919-07-01": 17.4, - "1919-06-01": 16.9, - "1919-05-01": 16.9, - "1919-04-01": 16.7, - "1919-03-01": 16.4, - "1919-02-01": 16.2, - "1919-01-01": 16.5, - "1918-12-01": 16.5, - "1918-11-01": 16.3, - "1918-10-01": 16, - "1918-09-01": 15.7, - "1918-08-01": 15.4, - "1918-07-01": 15.1, - "1918-06-01": 14.7, - "1918-05-01": 14.5, - "1918-04-01": 14.2, - "1918-03-01": 14, - "1918-02-01": 14.1, - "1918-01-01": 14, - "1917-12-01": 13.7, - "1917-11-01": 13.5, - "1917-10-01": 13.5, - "1917-09-01": 13.3, - "1917-08-01": 13, - "1917-07-01": 12.8, - "1917-06-01": 13, - "1917-05-01": 12.8, - "1917-04-01": 12.6, - "1917-03-01": 12, - "1917-02-01": 12, - "1917-01-01": 11.7, - "1916-12-01": 11.6, - "1916-11-01": 11.5, - "1916-10-01": 11.3, - "1916-09-01": 11.1, - "1916-08-01": 10.9, - "1916-07-01": 10.8, - "1916-06-01": 10.8, - "1916-05-01": 10.7, - "1916-04-01": 10.6, - "1916-03-01": 10.5, - "1916-02-01": 10.4, - "1916-01-01": 10.4, - "1915-12-01": 10.3, - "1915-11-01": 10.3, - "1915-10-01": 10.2, - "1915-09-01": 10.1, - "1915-08-01": 10.1, - "1915-07-01": 10.1, - "1915-06-01": 10.1, - "1915-05-01": 10.1, - "1915-04-01": 10, - "1915-03-01": 9.9, - "1915-02-01": 10, - "1915-01-01": 10.1, - "1914-12-01": 10.1, - "1914-11-01": 10.2, - "1914-10-01": 10.1, - "1914-09-01": 10.2, - "1914-08-01": 10.2, - "1914-07-01": 10, - "1914-06-01": 9.9, - "1914-05-01": 9.9, - "1914-04-01": 9.8, - "1914-03-01": 9.9, - "1914-02-01": 9.9, - "1914-01-01": 10, - "1913-12-01": 10, - "1913-11-01": 10.1, - "1913-10-01": 10, - "1913-09-01": 10, - "1913-08-01": 9.9, - "1913-07-01": 9.9, - "1913-06-01": 9.8, - "1913-05-01": 9.7, - "1913-04-01": 9.8, - "1913-03-01": 9.8, - "1913-02-01": 9.8, - "1913-01-01": 9.8 - }, - "economy": false, - "household": true - }, - "gov.bls.cpi.c_cpi_u": { - "type": "parameter", - "parameter": "gov.bls.cpi.c_cpi_u", - "description": "The Bureau of Labor Statistics estimates this Chained Consumer Price Index for All Urban Consumers.", - "label": "Chained CPI-U", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 215.4, - "2034-02-01": 211.2, - "2033-02-01": 207.1, - "2032-02-01": 203.1, - "2031-02-01": 199.1, - "2030-02-01": 195.3, - "2029-02-01": 191.5, - "2028-02-01": 187.8, - "2027-02-01": 184.1, - "2026-02-01": 180.5, - "2025-02-01": 176.7, - "2024-01-01": 171.91, - "2023-12-01": 171.015, - "2023-11-01": 171.219, - "2023-10-01": 171.595, - "2023-09-01": 171.677, - "2023-08-01": 171.291, - "2023-07-01": 170.541, - "2023-06-01": 170.279, - "2023-05-01": 169.738, - "2023-04-01": 169.332, - "2023-03-01": 168.793, - "2023-02-01": 168.206, - "2023-01-01": 167.253, - "2022-12-01": 166.974, - "2022-11-01": 166.498, - "2022-10-01": 166.609, - "2022-09-01": 165.845, - "2022-08-01": 165.389, - "2022-07-01": 165.495, - "2022-06-01": 165.553, - "2022-05-01": 163.615, - "2022-04-01": 161.787, - "2022-03-01": 160.835, - "2022-02-01": 158.617, - "2022-01-01": 157.178, - "2021-12-01": 155.926, - "2021-11-01": 155.538, - "2021-10-01": 154.884, - "2021-09-01": 153.734, - "2021-08-01": 153.301, - "2021-07-01": 153.076, - "2021-06-01": 152.295, - "2021-05-01": 151.022, - "2021-04-01": 149.903, - "2021-03-01": 148.746, - "2021-02-01": 147.845, - "2021-01-01": 147.125, - "2020-12-01": 146.408, - "2020-11-01": 146.242, - "2020-10-01": 146.382, - "2020-09-01": 146.417, - "2020-08-01": 146.27, - "2020-07-01": 145.747, - "2020-06-01": 144.847, - "2020-05-01": 144.018, - "2020-04-01": 144.142, - "2020-03-01": 144.913, - "2020-02-01": 145.193, - "2020-01-01": 144.813, - "2019-12-01": 144.251, - "2019-11-01": 144.518, - "2019-10-01": 144.629, - "2019-09-01": 144.428, - "2019-08-01": 144.388, - "2019-07-01": 144.409, - "2019-06-01": 144.243, - "2019-05-01": 144.183, - "2019-04-01": 143.926, - "2019-03-01": 143.297, - "2019-02-01": 142.571, - "2019-01-01": 142.001, - "2018-12-01": 141.699, - "2018-11-01": 142.238, - "2018-10-01": 142.7, - "2018-09-01": 142.489, - "2018-08-01": 142.317, - "2018-07-01": 142.317, - "2018-06-01": 142.349, - "2018-05-01": 142.146, - "2018-04-01": 141.662, - "2018-03-01": 141.142, - "2018-02-01": 140.805, - "2018-01-01": 140.239, - "2017-12-01": 139.546, - "2017-11-01": 139.72, - "2017-10-01": 139.782, - "2017-09-01": 139.878, - "2017-08-01": 139.128, - "2017-07-01": 138.755, - "2017-06-01": 138.989, - "2017-05-01": 138.922, - "2017-04-01": 138.81, - "2017-03-01": 138.461, - "2017-02-01": 138.403, - "2017-01-01": 138.035, - "2016-12-01": 137.221, - "2016-11-01": 137.253, - "2016-10-01": 137.536, - "2016-09-01": 137.328, - "2016-08-01": 137.026, - "2016-07-01": 137.007, - "2016-06-01": 137.329, - "2016-05-01": 136.895, - "2016-04-01": 136.332, - "2016-03-01": 135.655, - "2016-02-01": 134.953, - "2016-01-01": 134.966, - "2015-12-01": 134.788, - "2015-11-01": 135.393, - "2015-10-01": 135.735, - "2015-09-01": 135.837, - "2015-08-01": 136.125, - "2015-07-01": 136.371, - "2015-06-01": 136.391, - "2015-05-01": 135.977, - "2015-04-01": 135.222, - "2015-03-01": 134.969, - "2015-02-01": 134.053, - "2015-01-01": 133.487, - "2014-12-01": 134.207, - "2014-11-01": 135.107, - "2014-10-01": 135.891, - "2014-09-01": 136.211, - "2014-08-01": 136.127, - "2014-07-01": 136.392, - "2014-06-01": 136.433, - "2014-05-01": 136.216, - "2014-04-01": 135.771, - "2014-03-01": 135.375, - "2014-02-01": 134.542, - "2014-01-01": 134.017, - "2013-12-01": 133.509, - "2013-11-01": 133.596, - "2013-10-01": 133.876, - "2013-09-01": 134.255, - "2013-08-01": 134.098, - "2013-07-01": 133.919, - "2013-06-01": 133.9, - "2013-05-01": 133.626, - "2013-04-01": 133.421, - "2013-03-01": 133.558, - "2013-02-01": 133.204, - "2013-01-01": 132.137, - "2012-12-01": 131.77, - "2012-11-01": 132.208, - "2012-10-01": 132.892, - "2012-09-01": 132.988, - "2012-08-01": 132.43, - "2012-07-01": 131.731, - "2012-06-01": 131.956, - "2012-05-01": 132.154, - "2012-04-01": 132.284, - "2012-03-01": 131.905, - "2012-02-01": 130.953, - "2012-01-01": 130.438, - "2011-12-01": 129.844, - "2011-11-01": 130.196, - "2011-10-01": 130.373, - "2011-09-01": 130.635, - "2011-08-01": 130.351, - "2011-07-01": 129.983, - "2011-06-01": 129.846, - "2011-05-01": 129.999, - "2011-04-01": 129.483, - "2011-03-01": 128.585, - "2011-02-01": 127.363, - "2011-01-01": 126.778, - "2010-12-01": 126.143, - "2010-11-01": 125.92, - "2010-10-01": 125.969, - "2010-09-01": 125.83, - "2010-08-01": 125.756, - "2010-07-01": 125.536, - "2010-06-01": 125.521, - "2010-05-01": 125.678, - "2010-04-01": 125.62, - "2010-03-01": 125.442, - "2010-02-01": 124.972, - "2010-01-01": 124.987, - "2009-12-01": 124.544, - "2009-11-01": 124.788, - "2009-10-01": 124.791, - "2009-09-01": 124.706, - "2009-08-01": 124.62, - "2009-07-01": 124.293, - "2009-06-01": 124.485, - "2009-05-01": 123.427, - "2009-04-01": 123.053, - "2009-03-01": 122.803, - "2009-02-01": 122.598, - "2009-01-01": 122.095, - "2008-12-01": 121.557, - "2008-11-01": 123.044, - "2008-10-01": 125.5, - "2008-09-01": 126.551, - "2008-08-01": 126.594, - "2008-07-01": 126.918, - "2008-06-01": 126.307, - "2008-05-01": 125.171, - "2008-04-01": 124.116, - "2008-03-01": 123.323, - "2008-02-01": 122.25, - "2008-01-01": 121.867, - "2007-12-01": 121.295, - "2007-11-01": 121.481, - "2007-10-01": 120.885, - "2007-09-01": 120.638, - "2007-08-01": 120.288, - "2007-07-01": 120.377, - "2007-06-01": 120.439, - "2007-05-01": 120.292, - "2007-04-01": 119.666, - "2007-03-01": 118.913, - "2007-02-01": 117.877, - "2007-01-01": 117.33, - "2006-12-01": 117, - "2006-11-01": 116.9, - "2006-10-01": 117.1, - "2006-09-01": 117.8, - "2006-08-01": 118.3, - "2006-07-01": 118.1, - "2006-06-01": 117.7, - "2006-05-01": 117.5, - "2006-04-01": 116.9, - "2006-03-01": 116, - "2006-02-01": 115.4, - "2006-01-01": 115.2, - "2005-12-01": 114.4, - "2005-11-01": 114.9, - "2005-10-01": 115.7, - "2005-09-01": 115.6, - "2005-08-01": 114.3, - "2005-07-01": 113.7, - "2005-06-01": 113.2, - "2005-05-01": 113.3, - "2005-04-01": 113.4, - "2005-03-01": 112.6, - "2005-02-01": 111.9, - "2005-01-01": 111.3, - "2004-12-01": 111.2, - "2004-11-01": 111.6, - "2004-10-01": 111.6, - "2004-09-01": 111, - "2004-08-01": 110.7, - "2004-07-01": 110.7, - "2004-06-01": 110.8, - "2004-05-01": 110.6, - "2004-04-01": 110, - "2004-03-01": 109.7, - "2004-02-01": 109.1, - "2004-01-01": 108.5, - "2003-12-01": 107.8, - "2003-11-01": 108, - "2003-10-01": 108.4, - "2003-09-01": 108.5, - "2003-08-01": 108.2, - "2003-07-01": 107.7, - "2003-06-01": 107.6, - "2003-05-01": 107.5, - "2003-04-01": 107.7, - "2003-03-01": 107.9, - "2003-02-01": 107.3, - "2003-01-01": 106.5, - "2002-12-01": 106, - "2002-11-01": 106.3, - "2002-10-01": 106.4, - "2002-09-01": 106.3, - "2002-08-01": 106, - "2002-07-01": 105.7, - "2002-06-01": 105.6, - "2002-05-01": 105.6, - "2002-04-01": 105.6, - "2002-03-01": 105.1, - "2002-02-01": 104.5, - "2002-01-01": 104.2, - "2001-12-01": 103.9, - "2001-11-01": 104.4, - "2001-10-01": 104.7, - "2001-09-01": 104.9, - "2001-08-01": 104.6, - "2001-07-01": 104.5, - "2001-06-01": 104.8, - "2001-05-01": 104.6, - "2001-04-01": 104.2, - "2001-03-01": 103.9, - "2001-02-01": 103.7, - "2001-01-01": 103.3, - "2000-12-01": 102.6, - "2000-11-01": 102.8, - "2000-10-01": 102.9, - "2000-09-01": 102.8, - "2000-08-01": 102.3, - "2000-07-01": 102.3, - "2000-06-01": 102.1, - "2000-05-01": 101.7, - "2000-04-01": 101.6, - "2000-03-01": 101.6, - "2000-02-01": 100.9, - "2000-01-01": 100.3, - "1999-12-01": 100 - }, - "economy": false, - "household": true - }, - "gov.bls.cpi.cpi_w": { - "type": "parameter", - "parameter": "gov.bls.cpi.cpi_w", - "description": "The Bureau of Labor Statistics estimates this Consumer Price Index for Urban Wage Earners and Clerical Workers.", - "label": "CPI-W", - "unit": "currency-USD", - "period": null, - "values": { - "2035-11-01": 396.434, - "2035-08-01": 394.279, - "2035-05-01": 392.026, - "2035-02-01": 389.871, - "2034-11-01": 387.716, - "2034-08-01": 385.561, - "2034-05-01": 383.405, - "2034-02-01": 381.25, - "2033-11-01": 379.193, - "2033-08-01": 377.038, - "2033-05-01": 374.981, - "2033-02-01": 372.924, - "2032-11-01": 370.867, - "2032-08-01": 368.81, - "2032-05-01": 366.753, - "2032-02-01": 364.696, - "2031-11-01": 362.736, - "2031-08-01": 360.679, - "2031-05-01": 358.72, - "2031-02-01": 356.761, - "2030-11-01": 354.802, - "2030-08-01": 352.843, - "2030-05-01": 350.884, - "2030-02-01": 348.924, - "2029-11-01": 347.063, - "2029-08-01": 345.104, - "2029-05-01": 343.243, - "2029-02-01": 341.284, - "2028-11-01": 339.423, - "2028-08-01": 337.561, - "2028-05-01": 335.7, - "2028-02-01": 333.839, - "2027-11-01": 331.978, - "2027-08-01": 330.117, - "2027-05-01": 328.255, - "2027-02-01": 326.394, - "2026-11-01": 324.533, - "2026-08-01": 322.672, - "2026-05-01": 320.811, - "2026-02-01": 318.949, - "2025-11-01": 316.99, - "2025-08-01": 314.933, - "2025-05-01": 312.974, - "2025-02-01": 311.407, - "2024-12-01": 309.067, - "2024-11-01": 308.998, - "2024-10-01": 309.358, - "2024-09-01": 309.046, - "2024-08-01": 308.64, - "2024-07-01": 308.501, - "2024-06-01": 308.054, - "2024-05-01": 308.163, - "2024-04-01": 307.811, - "2024-03-01": 306.502, - "2024-02-01": 304.284, - "2024-01-01": 302.201, - "2023-12-01": 300.728, - "2023-11-01": 301.224, - "2023-10-01": 302.071, - "2023-09-01": 302.257, - "2023-08-01": 301.551, - "2023-07-01": 299.899, - "2023-06-01": 299.394, - "2023-05-01": 298.382, - "2023-04-01": 297.73, - "2023-03-01": 296.021, - "2023-02-01": 295.057, - "2023-01-01": 293.565, - "2022-12-01": 291.051, - "2022-11-01": 292.495, - "2022-10-01": 293.003, - "2022-09-01": 291.854, - "2022-08-01": 291.629, - "2022-07-01": 292.219, - "2022-06-01": 292.542, - "2022-05-01": 288.022, - "2022-04-01": 284.575, - "2022-03-01": 283.176, - "2022-02-01": 278.943, - "2022-01-01": 276.296, - "2021-12-01": 273.925, - "2021-11-01": 273.042, - "2021-10-01": 271.552, - "2021-09-01": 269.086, - "2021-08-01": 268.387, - "2021-07-01": 267.789, - "2021-06-01": 266.412, - "2021-05-01": 263.612, - "2021-04-01": 261.237, - "2021-03-01": 258.935, - "2021-02-01": 256.843, - "2021-01-01": 255.296, - "2020-12-01": 254.081, - "2020-11-01": 253.826, - "2020-10-01": 254.076, - "2020-09-01": 254.004, - "2020-08-01": 253.597, - "2020-07-01": 252.636, - "2020-06-01": 251.054, - "2020-05-01": 249.521, - "2020-04-01": 249.515, - "2020-03-01": 251.375, - "2020-02-01": 251.935, - "2020-01-01": 251.361, - "2019-12-01": 250.452, - "2019-11-01": 250.644, - "2019-10-01": 250.894, - "2019-09-01": 250.251, - "2019-08-01": 250.112, - "2019-07-01": 250.236, - "2019-06-01": 249.747, - "2019-05-01": 249.871, - "2019-04-01": 249.332, - "2019-03-01": 247.768, - "2019-02-01": 246.218, - "2019-01-01": 245.133, - "2018-12-01": 244.786, - "2018-11-01": 245.933, - "2018-10-01": 247.038, - "2018-09-01": 246.565, - "2018-08-01": 246.336, - "2018-07-01": 246.155, - "2018-06-01": 246.196, - "2018-05-01": 245.77, - "2018-04-01": 244.607, - "2018-03-01": 243.463, - "2018-02-01": 242.988, - "2018-01-01": 241.919, - "2017-12-01": 240.526, - "2017-11-01": 240.666, - "2017-10-01": 240.573, - "2017-09-01": 240.939, - "2017-08-01": 239.448, - "2017-07-01": 238.617, - "2017-06-01": 238.813, - "2017-05-01": 238.609, - "2017-04-01": 238.432, - "2017-03-01": 237.656, - "2017-02-01": 237.477, - "2017-01-01": 236.854, - "2016-12-01": 235.39, - "2016-11-01": 235.215, - "2016-10-01": 235.732, - "2016-09-01": 235.495, - "2016-08-01": 234.904, - "2016-07-01": 234.771, - "2016-06-01": 235.289, - "2016-05-01": 234.436, - "2016-04-01": 233.438, - "2016-03-01": 232.209, - "2016-02-01": 230.972, - "2016-01-01": 231.061, - "2015-12-01": 230.791, - "2015-11-01": 231.721, - "2015-10-01": 232.373, - "2015-09-01": 232.661, - "2015-08-01": 233.366, - "2015-07-01": 233.806, - "2015-06-01": 233.804, - "2015-05-01": 232.908, - "2015-04-01": 231.52, - "2015-03-01": 231.055, - "2015-02-01": 229.421, - "2015-01-01": 228.294, - "2014-12-01": 229.909, - "2014-11-01": 231.551, - "2014-10-01": 233.229, - "2014-09-01": 234.17, - "2014-08-01": 234.03, - "2014-07-01": 234.525, - "2014-06-01": 234.702, - "2014-05-01": 234.216, - "2014-04-01": 233.443, - "2014-03-01": 232.56, - "2014-02-01": 230.871, - "2014-01-01": 230.04, - "2013-12-01": 229.174, - "2013-11-01": 229.133, - "2013-10-01": 229.735, - "2013-09-01": 230.537, - "2013-08-01": 230.359, - "2013-07-01": 230.084, - "2013-06-01": 230.002, - "2013-05-01": 229.399, - "2013-04-01": 228.949, - "2013-03-01": 229.323, - "2013-02-01": 228.677, - "2013-01-01": 226.52, - "2012-12-01": 225.889, - "2012-11-01": 226.595, - "2012-10-01": 227.974, - "2012-09-01": 228.184, - "2012-08-01": 227.056, - "2012-07-01": 225.568, - "2012-06-01": 226.036, - "2012-05-01": 226.6, - "2012-04-01": 227.012, - "2012-03-01": 226.304, - "2012-02-01": 224.317, - "2012-01-01": 223.216, - "2011-12-01": 222.166, - "2011-11-01": 222.813, - "2011-10-01": 223.043, - "2011-09-01": 223.688, - "2011-08-01": 223.326, - "2011-07-01": 222.686, - "2011-06-01": 222.522, - "2011-05-01": 222.954, - "2011-04-01": 221.743, - "2011-03-01": 220.024, - "2011-02-01": 217.535, - "2011-01-01": 216.4, - "2010-12-01": 215.262, - "2010-11-01": 214.75, - "2010-10-01": 214.623, - "2010-09-01": 214.306, - "2010-08-01": 214.205, - "2010-07-01": 213.898, - "2010-06-01": 213.839, - "2010-05-01": 214.124, - "2010-04-01": 213.958, - "2010-03-01": 213.525, - "2010-02-01": 212.544, - "2010-01-01": 212.568, - "2009-12-01": 211.703, - "2009-11-01": 212.003, - "2009-10-01": 211.549, - "2009-09-01": 211.322, - "2009-08-01": 211.156, - "2009-07-01": 210.526, - "2009-06-01": 210.972, - "2009-05-01": 208.774, - "2009-04-01": 207.925, - "2009-03-01": 207.218, - "2009-02-01": 206.708, - "2009-01-01": 205.7, - "2008-12-01": 204.813, - "2008-11-01": 207.296, - "2008-10-01": 212.182, - "2008-09-01": 214.935, - "2008-08-01": 215.247, - "2008-07-01": 216.304, - "2008-06-01": 215.223, - "2008-05-01": 212.788, - "2008-04-01": 210.698, - "2008-03-01": 209.147, - "2008-02-01": 207.254, - "2008-01-01": 206.744, - "2007-12-01": 205.777, - "2007-11-01": 205.891, - "2007-10-01": 204.338, - "2007-09-01": 203.889, - "2007-08-01": 203.199, - "2007-07-01": 203.7, - "2007-06-01": 203.906, - "2007-05-01": 203.661, - "2007-04-01": 202.13, - "2007-03-01": 200.612, - "2007-02-01": 198.544, - "2007-01-01": 197.559, - "2006-12-01": 197.2, - "2006-11-01": 196.8, - "2006-10-01": 197, - "2006-09-01": 198.4, - "2006-08-01": 199.6, - "2006-07-01": 199.2, - "2006-06-01": 198.6, - "2006-05-01": 198.2, - "2006-04-01": 197.2, - "2006-03-01": 195.3, - "2006-02-01": 194.2, - "2006-01-01": 194, - "2005-12-01": 192.5, - "2005-11-01": 193.4, - "2005-10-01": 195.2, - "2005-09-01": 195, - "2005-08-01": 192.1, - "2005-07-01": 191, - "2005-06-01": 190.1, - "2005-05-01": 190, - "2005-04-01": 190.2, - "2005-03-01": 188.6, - "2005-02-01": 187.3, - "2005-01-01": 186.3, - "2004-12-01": 186, - "2004-11-01": 186.8, - "2004-10-01": 186.5, - "2004-09-01": 185.4, - "2004-08-01": 185, - "2004-07-01": 184.9, - "2004-06-01": 185.3, - "2004-05-01": 184.7, - "2004-04-01": 183.5, - "2004-03-01": 182.9, - "2004-02-01": 181.9, - "2004-01-01": 180.9, - "2003-12-01": 179.9, - "2003-11-01": 180.2, - "2003-10-01": 180.7, - "2003-09-01": 181, - "2003-08-01": 180.3, - "2003-07-01": 179.6, - "2003-06-01": 179.6, - "2003-05-01": 179.4, - "2003-04-01": 179.8, - "2003-03-01": 180.3, - "2003-02-01": 179.2, - "2003-01-01": 177.7, - "2002-12-01": 177, - "2002-11-01": 177.4, - "2002-10-01": 177.3, - "2002-09-01": 177, - "2002-08-01": 176.6, - "2002-07-01": 176.1, - "2002-06-01": 175.9, - "2002-05-01": 175.8, - "2002-04-01": 175.8, - "2002-03-01": 174.7, - "2002-02-01": 173.7, - "2002-01-01": 173.2, - "2001-12-01": 172.9, - "2001-11-01": 173.7, - "2001-10-01": 174, - "2001-09-01": 174.8, - "2001-08-01": 173.8, - "2001-07-01": 173.8, - "2001-06-01": 174.6, - "2001-05-01": 174.4, - "2001-04-01": 173.5, - "2001-03-01": 172.6, - "2001-02-01": 172.4, - "2001-01-01": 171.7, - "2000-12-01": 170.7, - "2000-11-01": 170.9, - "2000-10-01": 170.6, - "2000-09-01": 170.4, - "2000-08-01": 169.3, - "2000-07-01": 169.4, - "2000-06-01": 169.2, - "2000-05-01": 168.2, - "2000-04-01": 168, - "2000-03-01": 167.9, - "2000-02-01": 166.5, - "2000-01-01": 165.6, - "1999-12-01": 165.1, - "1999-11-01": 165.1, - "1999-10-01": 165, - "1999-09-01": 164.7, - "1999-08-01": 163.8, - "1999-07-01": 163.3, - "1999-06-01": 162.8, - "1999-05-01": 162.8, - "1999-04-01": 162.7, - "1999-03-01": 161.4, - "1999-02-01": 161.1, - "1999-01-01": 161, - "1998-12-01": 160.7, - "1998-11-01": 160.7, - "1998-10-01": 160.6, - "1998-09-01": 160.2, - "1998-08-01": 160, - "1998-07-01": 159.8, - "1998-06-01": 159.7, - "1998-05-01": 159.5, - "1998-04-01": 159.1, - "1998-03-01": 158.7, - "1998-02-01": 158.5, - "1998-01-01": 158.4, - "1997-12-01": 158.2, - "1997-11-01": 158.5, - "1997-10-01": 158.5, - "1997-09-01": 158.3, - "1997-08-01": 157.8, - "1997-07-01": 157.5, - "1997-06-01": 157.4, - "1997-05-01": 157.2, - "1997-04-01": 157.2, - "1997-03-01": 157, - "1997-02-01": 156.8, - "1997-01-01": 156.3, - "1996-12-01": 155.9, - "1996-11-01": 155.9, - "1996-10-01": 155.5, - "1996-09-01": 155.1, - "1996-08-01": 154.5, - "1996-07-01": 154.3, - "1996-06-01": 154.1, - "1996-05-01": 154, - "1996-04-01": 153.6, - "1996-03-01": 152.9, - "1996-02-01": 152.2, - "1996-01-01": 151.7, - "1995-12-01": 150.9, - "1995-11-01": 150.9, - "1995-10-01": 151, - "1995-09-01": 150.6, - "1995-08-01": 150.2, - "1995-07-01": 149.9, - "1995-06-01": 149.9, - "1995-05-01": 149.6, - "1995-04-01": 149.3, - "1995-03-01": 148.7, - "1995-02-01": 148.3, - "1995-01-01": 147.8, - "1994-12-01": 147.2, - "1994-11-01": 147.3, - "1994-10-01": 147, - "1994-09-01": 146.9, - "1994-08-01": 146.5, - "1994-07-01": 145.8, - "1994-06-01": 145.4, - "1994-05-01": 144.9, - "1994-04-01": 144.7, - "1994-03-01": 144.4, - "1994-02-01": 144, - "1994-01-01": 143.6, - "1993-12-01": 143.3, - "1993-11-01": 143.4, - "1993-10-01": 143.3, - "1993-09-01": 142.6, - "1993-08-01": 142.4, - "1993-07-01": 142.1, - "1993-06-01": 142, - "1993-05-01": 141.9, - "1993-04-01": 141.6, - "1993-03-01": 141.1, - "1993-02-01": 140.7, - "1993-01-01": 140.3, - "1992-12-01": 139.8, - "1992-11-01": 139.8, - "1992-10-01": 139.6, - "1992-09-01": 139.1, - "1992-08-01": 138.8, - "1992-07-01": 138.4, - "1992-06-01": 138.1, - "1992-05-01": 137.6, - "1992-04-01": 137.3, - "1992-03-01": 137, - "1992-02-01": 136.4, - "1992-01-01": 136, - "1991-12-01": 135.9, - "1991-11-01": 135.8, - "1991-10-01": 135.4, - "1991-09-01": 135.2, - "1991-08-01": 134.6, - "1991-07-01": 134.3, - "1991-06-01": 134.1, - "1991-05-01": 133.8, - "1991-04-01": 133.3, - "1991-03-01": 133, - "1991-02-01": 132.8, - "1991-01-01": 132.8, - "1990-12-01": 132.2, - "1990-11-01": 132.2, - "1990-10-01": 131.9, - "1990-09-01": 131.1, - "1990-08-01": 129.9, - "1990-07-01": 128.7, - "1990-06-01": 128.3, - "1990-05-01": 127.5, - "1990-04-01": 127.3, - "1990-03-01": 127.1, - "1990-02-01": 126.4, - "1990-01-01": 125.9, - "1989-12-01": 124.6, - "1989-11-01": 124.4, - "1989-10-01": 124.2, - "1989-09-01": 123.6, - "1989-08-01": 123.2, - "1989-07-01": 123.2, - "1989-06-01": 122.8, - "1989-05-01": 122.5, - "1989-04-01": 121.8, - "1989-03-01": 120.8, - "1989-02-01": 120.2, - "1989-01-01": 119.7, - "1988-12-01": 119.2, - "1988-11-01": 119, - "1988-10-01": 118.9, - "1988-09-01": 118.5, - "1988-08-01": 117.7, - "1988-07-01": 117.2, - "1988-06-01": 116.7, - "1988-05-01": 116.2, - "1988-04-01": 115.7, - "1988-03-01": 115.1, - "1988-02-01": 114.7, - "1988-01-01": 114.5, - "1987-12-01": 114.2, - "1987-11-01": 114.3, - "1987-10-01": 114.1, - "1987-09-01": 113.8, - "1987-08-01": 113.3, - "1987-07-01": 112.7, - "1987-06-01": 112.4, - "1987-05-01": 111.9, - "1987-04-01": 111.6, - "1987-03-01": 111, - "1987-02-01": 110.5, - "1987-01-01": 110, - "1986-12-01": 109.3, - "1986-11-01": 109.2, - "1986-10-01": 109.1, - "1986-09-01": 109.1, - "1986-08-01": 108.6, - "1986-07-01": 108.4, - "1986-06-01": 108.4, - "1986-05-01": 107.9, - "1986-04-01": 107.6, - "1986-03-01": 107.9, - "1986-02-01": 108.5, - "1986-01-01": 108.9, - "1985-12-01": 108.6, - "1985-11-01": 108.3, - "1985-10-01": 107.9, - "1985-09-01": 107.6, - "1985-08-01": 107.3, - "1985-07-01": 107.1, - "1985-06-01": 107, - "1985-05-01": 106.7, - "1985-04-01": 106.3, - "1985-03-01": 105.9, - "1985-02-01": 105.4, - "1985-01-01": 104.9, - "1984-12-01": 104.8, - "1984-11-01": 104.7, - "1984-10-01": 104.8, - "1984-09-01": 104.8, - "1984-08-01": 104.2, - "1984-07-01": 103.2, - "1984-06-01": 102.8, - "1984-05-01": 102.5, - "1984-04-01": 102.1, - "1984-03-01": 101.8, - "1984-02-01": 101.8, - "1984-01-01": 101.6, - "1983-12-01": 101.2, - "1983-11-01": 101.2, - "1983-10-01": 101.2, - "1983-09-01": 101, - "1983-08-01": 100.5, - "1983-07-01": 100.1, - "1983-06-01": 99.8, - "1983-05-01": 99.5, - "1983-04-01": 99, - "1983-03-01": 98.4, - "1983-02-01": 98.1, - "1983-01-01": 98.1, - "1982-12-01": 98, - "1982-11-01": 98.4, - "1982-10-01": 98.6, - "1982-09-01": 98.3, - "1982-08-01": 98.2, - "1982-07-01": 98, - "1982-06-01": 97.4, - "1982-05-01": 96.2, - "1982-04-01": 95.2, - "1982-03-01": 94.8, - "1982-02-01": 95, - "1982-01-01": 94.7, - "1981-12-01": 94.4, - "1981-11-01": 94.1, - "1981-10-01": 93.9, - "1981-09-01": 93.7, - "1981-08-01": 92.8, - "1981-07-01": 92.2, - "1981-06-01": 91.1, - "1981-05-01": 90.3, - "1981-04-01": 89.6, - "1981-03-01": 89, - "1981-02-01": 88.5, - "1981-01-01": 87.5, - "1980-12-01": 86.9, - "1980-11-01": 86.1, - "1980-10-01": 85.3, - "1980-09-01": 84.6, - "1980-08-01": 83.8, - "1980-07-01": 83.3, - "1980-06-01": 83.2, - "1980-05-01": 82.3, - "1980-04-01": 81.4, - "1980-03-01": 80.5, - "1980-02-01": 79.4, - "1980-01-01": 78.3, - "1979-12-01": 77.2, - "1979-11-01": 76.4, - "1979-10-01": 75.7, - "1979-09-01": 75.1, - "1979-08-01": 74.4, - "1979-07-01": 73.7, - "1979-06-01": 72.8, - "1979-05-01": 71.9, - "1979-04-01": 71.1, - "1979-03-01": 70.3, - "1979-02-01": 69.5, - "1979-01-01": 68.7, - "1978-12-01": 68.1, - "1978-11-01": 67.7, - "1978-10-01": 67.4, - "1978-09-01": 66.8, - "1978-08-01": 66.4, - "1978-07-01": 66, - "1978-06-01": 65.6, - "1978-05-01": 64.9, - "1978-04-01": 64.3, - "1978-03-01": 63.7, - "1978-02-01": 63.2, - "1978-01-01": 62.8, - "1977-12-01": 62.5, - "1977-11-01": 62.2, - "1977-10-01": 61.9, - "1977-09-01": 61.8, - "1977-08-01": 61.5, - "1977-07-01": 61.3, - "1977-06-01": 61, - "1977-05-01": 60.6, - "1977-04-01": 60.3, - "1977-03-01": 59.8, - "1977-02-01": 59.5, - "1977-01-01": 58.9, - "1976-12-01": 58.5, - "1976-11-01": 58.3, - "1976-10-01": 58.2, - "1976-09-01": 57.9, - "1976-08-01": 57.7, - "1976-07-01": 57.4, - "1976-06-01": 57.1, - "1976-05-01": 56.8, - "1976-04-01": 56.5, - "1976-03-01": 56.2, - "1976-02-01": 56.1, - "1976-01-01": 56, - "1975-12-01": 55.8, - "1975-11-01": 55.6, - "1975-10-01": 55.3, - "1975-09-01": 54.9, - "1975-08-01": 54.7, - "1975-07-01": 54.5, - "1975-06-01": 53.9, - "1975-05-01": 53.5, - "1975-04-01": 53.2, - "1975-03-01": 53, - "1975-02-01": 52.8, - "1975-01-01": 52.4, - "1974-12-01": 52.2, - "1974-11-01": 51.8, - "1974-10-01": 51.4, - "1974-09-01": 50.9, - "1974-08-01": 50.3, - "1974-07-01": 49.7, - "1974-06-01": 49.3, - "1974-05-01": 48.8, - "1974-04-01": 48.3, - "1974-03-01": 48, - "1974-02-01": 47.5, - "1974-01-01": 46.9, - "1973-12-01": 46.5, - "1973-11-01": 46.2, - "1973-10-01": 45.9, - "1973-09-01": 45.5, - "1973-08-01": 45.4, - "1973-07-01": 44.5, - "1973-06-01": 44.4, - "1973-05-01": 44.1, - "1973-04-01": 43.9, - "1973-03-01": 43.6, - "1973-02-01": 43.2, - "1973-01-01": 42.9, - "1972-12-01": 42.7, - "1972-11-01": 42.6, - "1972-10-01": 42.5, - "1972-09-01": 42.4, - "1972-08-01": 42.2, - "1972-07-01": 42.1, - "1972-06-01": 42, - "1972-05-01": 41.9, - "1972-04-01": 41.7, - "1972-03-01": 41.6, - "1972-02-01": 41.6, - "1972-01-01": 41.4, - "1971-12-01": 41.3, - "1971-11-01": 41.2, - "1971-10-01": 41.1, - "1971-09-01": 41, - "1971-08-01": 41, - "1971-07-01": 40.9, - "1971-06-01": 40.8, - "1971-05-01": 40.6, - "1971-04-01": 40.4, - "1971-03-01": 40.2, - "1971-02-01": 40.1, - "1971-01-01": 40, - "1970-12-01": 40, - "1970-11-01": 39.8, - "1970-10-01": 39.6, - "1970-09-01": 39.4, - "1970-08-01": 39.2, - "1970-07-01": 39.2, - "1970-06-01": 39, - "1970-05-01": 38.8, - "1970-04-01": 38.7, - "1970-03-01": 38.4, - "1970-02-01": 38.2, - "1970-01-01": 38, - "1969-12-01": 37.9, - "1969-11-01": 37.7, - "1969-10-01": 37.5, - "1969-09-01": 37.3, - "1969-08-01": 37.2, - "1969-07-01": 37, - "1969-06-01": 36.8, - "1969-05-01": 36.6, - "1969-04-01": 36.5, - "1969-03-01": 36.3, - "1969-02-01": 36, - "1969-01-01": 35.8, - "1968-12-01": 35.7, - "1968-11-01": 35.6, - "1968-10-01": 35.5, - "1968-09-01": 35.3, - "1968-08-01": 35.2, - "1968-07-01": 35.1, - "1968-06-01": 34.9, - "1968-05-01": 34.7, - "1968-04-01": 34.6, - "1968-03-01": 34.5, - "1968-02-01": 34.3, - "1968-01-01": 34.2, - "1967-12-01": 34.1, - "1967-11-01": 34, - "1967-10-01": 33.9, - "1967-09-01": 33.8, - "1967-08-01": 33.7, - "1967-07-01": 33.6, - "1967-06-01": 33.5, - "1967-05-01": 33.4, - "1967-04-01": 33.3, - "1967-03-01": 33.2, - "1967-02-01": 33.1, - "1967-01-01": 33.1, - "1966-12-01": 33.1, - "1966-11-01": 33.1, - "1966-10-01": 33.1, - "1966-09-01": 32.9, - "1966-08-01": 32.9, - "1966-07-01": 32.7, - "1966-06-01": 32.6, - "1966-05-01": 32.5, - "1966-04-01": 32.5, - "1966-03-01": 32.3, - "1966-02-01": 32.2, - "1966-01-01": 32, - "1965-12-01": 32, - "1965-11-01": 31.9, - "1965-10-01": 31.9, - "1965-09-01": 31.8, - "1965-08-01": 31.8, - "1965-07-01": 31.8, - "1965-06-01": 31.8, - "1965-05-01": 31.6, - "1965-04-01": 31.6, - "1965-03-01": 31.5, - "1965-02-01": 31.4, - "1965-01-01": 31.4, - "1964-12-01": 31.4, - "1964-11-01": 31.4, - "1964-10-01": 31.3, - "1964-09-01": 31.3, - "1964-08-01": 31.2, - "1964-07-01": 31.3, - "1964-06-01": 31.2, - "1964-05-01": 31.1, - "1964-04-01": 31.1, - "1964-03-01": 31.1, - "1964-02-01": 31.1, - "1964-01-01": 31.1, - "1963-12-01": 31.1, - "1963-11-01": 31, - "1963-10-01": 31, - "1963-09-01": 30.9, - "1963-08-01": 30.9, - "1963-07-01": 30.9, - "1963-06-01": 30.8, - "1963-05-01": 30.7, - "1963-04-01": 30.7, - "1963-03-01": 30.7, - "1963-02-01": 30.6, - "1963-01-01": 30.6, - "1962-12-01": 30.6, - "1962-11-01": 30.6, - "1962-10-01": 30.6, - "1962-09-01": 30.6, - "1962-08-01": 30.4, - "1962-07-01": 30.4, - "1962-06-01": 30.4, - "1962-05-01": 30.4, - "1962-04-01": 30.4, - "1962-03-01": 30.3, - "1962-02-01": 30.2, - "1962-01-01": 30.2, - "1961-12-01": 30.2, - "1961-11-01": 30.2, - "1961-10-01": 30.2, - "1961-09-01": 30.2, - "1961-08-01": 30.1, - "1961-07-01": 30.1, - "1961-06-01": 30, - "1961-05-01": 30, - "1961-04-01": 30, - "1961-03-01": 30, - "1961-02-01": 30, - "1961-01-01": 30, - "1960-12-01": 30, - "1960-11-01": 30, - "1960-10-01": 29.9, - "1960-09-01": 29.8, - "1960-08-01": 29.8, - "1960-07-01": 29.8, - "1960-06-01": 29.8, - "1960-05-01": 29.7, - "1960-04-01": 29.7, - "1960-03-01": 29.5, - "1960-02-01": 29.5, - "1960-01-01": 29.5, - "1959-12-01": 29.5, - "1959-11-01": 29.5, - "1959-10-01": 29.5, - "1959-09-01": 29.4, - "1959-08-01": 29.3, - "1959-07-01": 29.4, - "1959-06-01": 29.3, - "1959-05-01": 29.2, - "1959-04-01": 29.1, - "1959-03-01": 29.1, - "1959-02-01": 29.1, - "1959-01-01": 29.1, - "1958-12-01": 29.1, - "1958-11-01": 29.1, - "1958-10-01": 29.1, - "1958-09-01": 29.1, - "1958-08-01": 29.1, - "1958-07-01": 29.1, - "1958-06-01": 29.1, - "1958-05-01": 29.1, - "1958-04-01": 29.1, - "1958-03-01": 29, - "1958-02-01": 28.8, - "1958-01-01": 28.8, - "1957-12-01": 28.6, - "1957-11-01": 28.6, - "1957-10-01": 28.5, - "1957-09-01": 28.5, - "1957-08-01": 28.5, - "1957-07-01": 28.4, - "1957-06-01": 28.3, - "1957-05-01": 28.1, - "1957-04-01": 28.1, - "1957-03-01": 28, - "1957-02-01": 27.9, - "1957-01-01": 27.8, - "1956-12-01": 27.8, - "1956-11-01": 27.7, - "1956-10-01": 27.7, - "1956-09-01": 27.5, - "1956-08-01": 27.5, - "1956-07-01": 27.5, - "1956-06-01": 27.3, - "1956-05-01": 27.2, - "1956-04-01": 27, - "1956-03-01": 27, - "1956-02-01": 27, - "1956-01-01": 27, - "1955-12-01": 27, - "1955-11-01": 27.1, - "1955-10-01": 27, - "1955-09-01": 27, - "1955-08-01": 26.9, - "1955-07-01": 27, - "1955-06-01": 26.9, - "1955-05-01": 26.9, - "1955-04-01": 26.9, - "1955-03-01": 26.9, - "1955-02-01": 26.9, - "1955-01-01": 26.9, - "1954-12-01": 26.9, - "1954-11-01": 27, - "1954-10-01": 26.9, - "1954-09-01": 27, - "1954-08-01": 27.1, - "1954-07-01": 27.1, - "1954-06-01": 27.1, - "1954-05-01": 27.1, - "1954-04-01": 27, - "1954-03-01": 27, - "1954-02-01": 27.1, - "1954-01-01": 27.1, - "1953-12-01": 27, - "1953-11-01": 27.1, - "1953-10-01": 27.2, - "1953-09-01": 27.1, - "1953-08-01": 27.1, - "1953-07-01": 27, - "1953-06-01": 26.9, - "1953-05-01": 26.8, - "1953-04-01": 26.8, - "1953-03-01": 26.7, - "1953-02-01": 26.7, - "1953-01-01": 26.8, - "1952-12-01": 26.9, - "1952-11-01": 26.9, - "1952-10-01": 26.9, - "1952-09-01": 26.9, - "1952-08-01": 26.9, - "1952-07-01": 26.9, - "1952-06-01": 26.7, - "1952-05-01": 26.6, - "1952-04-01": 26.6, - "1952-03-01": 26.5, - "1952-02-01": 26.5, - "1952-01-01": 26.6, - "1951-12-01": 26.6, - "1951-11-01": 26.5, - "1951-10-01": 26.4, - "1951-09-01": 26.3, - "1951-08-01": 26.1, - "1951-07-01": 26.1, - "1951-06-01": 26.1, - "1951-05-01": 26.1, - "1951-04-01": 26, - "1951-03-01": 26, - "1951-02-01": 25.9, - "1951-01-01": 25.5, - "1950-12-01": 25.1, - "1950-11-01": 24.8, - "1950-10-01": 24.7, - "1950-09-01": 24.6, - "1950-08-01": 24.4, - "1950-07-01": 24.2, - "1950-06-01": 24, - "1950-05-01": 23.8, - "1950-04-01": 23.7, - "1950-03-01": 23.7, - "1950-02-01": 23.6, - "1950-01-01": 23.7, - "1949-12-01": 23.8, - "1949-11-01": 23.9, - "1949-10-01": 23.9, - "1949-09-01": 24, - "1949-08-01": 23.9, - "1949-07-01": 23.8, - "1949-06-01": 24, - "1949-05-01": 24, - "1949-04-01": 24, - "1949-03-01": 24, - "1949-02-01": 23.9, - "1949-01-01": 24.2, - "1948-12-01": 24.2, - "1948-11-01": 24.4, - "1948-10-01": 24.5, - "1948-09-01": 24.6, - "1948-08-01": 24.6, - "1948-07-01": 24.5, - "1948-06-01": 24.2, - "1948-05-01": 24.1, - "1948-04-01": 23.9, - "1948-03-01": 23.6, - "1948-02-01": 23.6, - "1948-01-01": 23.8, - "1947-12-01": 23.6, - "1947-11-01": 23.3, - "1947-10-01": 23.1, - "1947-09-01": 23.1, - "1947-08-01": 22.6, - "1947-07-01": 22.4, - "1947-06-01": 22.2, - "1947-05-01": 22, - "1947-04-01": 22.1, - "1947-03-01": 22.1, - "1947-02-01": 21.6, - "1947-01-01": 21.6, - "1946-12-01": 21.6, - "1946-11-01": 21.5, - "1946-10-01": 20.9, - "1946-09-01": 20.5, - "1946-08-01": 20.3, - "1946-07-01": 19.9, - "1946-06-01": 18.8, - "1946-05-01": 18.6, - "1946-04-01": 18.5, - "1946-03-01": 18.4, - "1946-02-01": 18.2, - "1946-01-01": 18.3, - "1945-12-01": 18.3, - "1945-11-01": 18.2, - "1945-10-01": 18.2, - "1945-09-01": 18.2, - "1945-08-01": 18.2, - "1945-07-01": 18.2, - "1945-06-01": 18.2, - "1945-05-01": 18, - "1945-04-01": 17.9, - "1945-03-01": 17.9, - "1945-02-01": 17.9, - "1945-01-01": 17.9, - "1944-12-01": 17.9, - "1944-11-01": 17.8, - "1944-10-01": 17.8, - "1944-09-01": 17.8, - "1944-08-01": 17.8, - "1944-07-01": 17.8, - "1944-06-01": 17.7, - "1944-05-01": 17.6, - "1944-04-01": 17.6, - "1944-03-01": 17.5, - "1944-02-01": 17.5, - "1944-01-01": 17.5, - "1943-12-01": 17.5, - "1943-11-01": 17.5, - "1943-10-01": 17.5, - "1943-09-01": 17.5, - "1943-08-01": 17.4, - "1943-07-01": 17.5, - "1943-06-01": 17.6, - "1943-05-01": 17.6, - "1943-04-01": 17.5, - "1943-03-01": 17.3, - "1943-02-01": 17, - "1943-01-01": 17, - "1942-12-01": 17, - "1942-11-01": 16.9, - "1942-10-01": 16.8, - "1942-09-01": 16.6, - "1942-08-01": 16.6, - "1942-07-01": 16.5, - "1942-06-01": 16.4, - "1942-05-01": 16.3, - "1942-04-01": 16.2, - "1942-03-01": 16.1, - "1942-02-01": 15.9, - "1942-01-01": 15.7, - "1941-12-01": 15.5, - "1941-11-01": 15.5, - "1941-10-01": 15.4, - "1941-09-01": 15.2, - "1941-08-01": 14.9, - "1941-07-01": 14.8, - "1941-06-01": 14.7, - "1941-05-01": 14.5, - "1941-04-01": 14.4, - "1941-03-01": 14.2, - "1941-02-01": 14.2, - "1941-01-01": 14.2, - "1940-12-01": 14.2, - "1940-11-01": 14.1, - "1940-10-01": 14.1, - "1940-09-01": 14.1, - "1940-08-01": 14.1, - "1940-07-01": 14.1, - "1940-06-01": 14.1, - "1940-05-01": 14.1, - "1940-04-01": 14.1, - "1940-03-01": 14.1, - "1940-02-01": 14.1, - "1940-01-01": 14, - "1939-12-01": 14, - "1939-11-01": 14.1, - "1939-10-01": 14.1, - "1939-09-01": 14.2, - "1939-08-01": 13.9, - "1939-07-01": 13.9, - "1939-06-01": 13.9, - "1939-05-01": 13.9, - "1939-04-01": 13.9, - "1939-03-01": 13.9, - "1939-02-01": 14, - "1939-01-01": 14, - "1938-12-01": 14.1, - "1938-11-01": 14.1, - "1938-10-01": 14.1, - "1938-09-01": 14.2, - "1938-08-01": 14.2, - "1938-07-01": 14.2, - "1938-06-01": 14.2, - "1938-05-01": 14.2, - "1938-04-01": 14.2, - "1938-03-01": 14.2, - "1938-02-01": 14.2, - "1938-01-01": 14.3, - "1937-12-01": 14.5, - "1937-11-01": 14.5, - "1937-10-01": 14.6, - "1937-09-01": 14.7, - "1937-08-01": 14.6, - "1937-07-01": 14.5, - "1937-06-01": 14.5, - "1937-05-01": 14.4, - "1937-04-01": 14.4, - "1937-03-01": 14.3, - "1937-02-01": 14.2, - "1937-01-01": 14.2, - "1936-12-01": 14.1, - "1936-11-01": 14.1, - "1936-10-01": 14.1, - "1936-09-01": 14.1, - "1936-08-01": 14.1, - "1936-07-01": 14, - "1936-06-01": 13.9, - "1936-05-01": 13.8, - "1936-04-01": 13.8, - "1936-03-01": 13.8, - "1936-02-01": 13.8, - "1936-01-01": 13.9, - "1935-12-01": 13.9, - "1935-11-01": 13.9, - "1935-10-01": 13.8, - "1935-09-01": 13.8, - "1935-08-01": 13.7, - "1935-07-01": 13.7, - "1935-06-01": 13.8, - "1935-05-01": 13.8, - "1935-04-01": 13.9, - "1935-03-01": 13.8, - "1935-02-01": 13.8, - "1935-01-01": 13.7, - "1934-12-01": 13.5, - "1934-11-01": 13.5, - "1934-10-01": 13.6, - "1934-09-01": 13.7, - "1934-08-01": 13.5, - "1934-07-01": 13.4, - "1934-06-01": 13.4, - "1934-05-01": 13.4, - "1934-04-01": 13.4, - "1934-03-01": 13.4, - "1934-02-01": 13.4, - "1934-01-01": 13.3, - "1933-12-01": 13.2, - "1933-11-01": 13.3, - "1933-10-01": 13.3, - "1933-09-01": 13.3, - "1933-08-01": 13.3, - "1933-07-01": 13.2, - "1933-06-01": 12.8, - "1933-05-01": 12.7, - "1933-04-01": 12.6, - "1933-03-01": 12.7, - "1933-02-01": 12.8, - "1933-01-01": 13, - "1932-12-01": 13.2, - "1932-11-01": 13.3, - "1932-10-01": 13.4, - "1932-09-01": 13.5, - "1932-08-01": 13.5, - "1932-07-01": 13.7, - "1932-06-01": 13.7, - "1932-05-01": 13.8, - "1932-04-01": 14, - "1932-03-01": 14.1, - "1932-02-01": 14.2, - "1932-01-01": 14.4, - "1931-12-01": 14.7, - "1931-11-01": 14.8, - "1931-10-01": 15, - "1931-09-01": 15.1, - "1931-08-01": 15.1, - "1931-07-01": 15.2, - "1931-06-01": 15.2, - "1931-05-01": 15.4, - "1931-04-01": 15.5, - "1931-03-01": 15.6, - "1931-02-01": 15.7, - "1931-01-01": 16, - "1930-12-01": 16.2, - "1930-11-01": 16.5, - "1930-10-01": 16.6, - "1930-09-01": 16.7, - "1930-08-01": 16.6, - "1930-07-01": 16.7, - "1930-06-01": 16.9, - "1930-05-01": 17, - "1930-04-01": 17.1, - "1930-03-01": 17, - "1930-02-01": 17.1, - "1930-01-01": 17.2, - "1929-12-01": 17.3, - "1929-11-01": 17.4, - "1929-10-01": 17.4, - "1929-09-01": 17.4, - "1929-08-01": 17.4, - "1929-07-01": 17.4, - "1929-06-01": 17.2, - "1929-05-01": 17.1, - "1929-04-01": 17, - "1929-03-01": 17.1, - "1929-02-01": 17.2, - "1929-01-01": 17.2, - "1928-12-01": 17.2, - "1928-11-01": 17.3, - "1928-10-01": 17.3, - "1928-09-01": 17.4, - "1928-08-01": 17.2, - "1928-07-01": 17.2, - "1928-06-01": 17.2, - "1928-05-01": 17.3, - "1928-04-01": 17.2, - "1928-03-01": 17.2, - "1928-02-01": 17.2, - "1928-01-01": 17.4, - "1927-12-01": 17.4, - "1927-11-01": 17.4, - "1927-10-01": 17.5, - "1927-09-01": 17.4, - "1927-08-01": 17.3, - "1927-07-01": 17.4, - "1927-06-01": 17.7, - "1927-05-01": 17.5, - "1927-04-01": 17.4, - "1927-03-01": 17.4, - "1927-02-01": 17.5, - "1927-01-01": 17.6, - "1926-12-01": 17.8, - "1926-11-01": 17.8, - "1926-10-01": 17.7, - "1926-09-01": 17.6, - "1926-08-01": 17.5, - "1926-07-01": 17.6, - "1926-06-01": 17.8, - "1926-05-01": 17.9, - "1926-04-01": 18, - "1926-03-01": 17.9, - "1926-02-01": 18, - "1926-01-01": 18, - "1925-12-01": 18, - "1925-11-01": 18.1, - "1925-10-01": 17.8, - "1925-09-01": 17.8, - "1925-08-01": 17.8, - "1925-07-01": 17.8, - "1925-06-01": 17.6, - "1925-05-01": 17.4, - "1925-04-01": 17.3, - "1925-03-01": 17.4, - "1925-02-01": 17.3, - "1925-01-01": 17.4, - "1924-12-01": 17.4, - "1924-11-01": 17.3, - "1924-10-01": 17.3, - "1924-09-01": 17.2, - "1924-08-01": 17.1, - "1924-07-01": 17.2, - "1924-06-01": 17.1, - "1924-05-01": 17.1, - "1924-04-01": 17.1, - "1924-03-01": 17.2, - "1924-02-01": 17.3, - "1924-01-01": 17.4, - "1923-12-01": 17.4, - "1923-11-01": 17.4, - "1923-10-01": 17.4, - "1923-09-01": 17.3, - "1923-08-01": 17.2, - "1923-07-01": 17.3, - "1923-06-01": 17.1, - "1923-05-01": 17, - "1923-04-01": 17, - "1923-03-01": 16.9, - "1923-02-01": 16.9, - "1923-01-01": 16.9, - "1922-12-01": 17, - "1922-11-01": 16.9, - "1922-10-01": 16.8, - "1922-09-01": 16.7, - "1922-08-01": 16.7, - "1922-07-01": 16.9, - "1922-06-01": 16.8, - "1922-05-01": 16.8, - "1922-04-01": 16.8, - "1922-03-01": 16.8, - "1922-02-01": 17, - "1922-01-01": 17, - "1921-12-01": 17.4, - "1921-11-01": 17.5, - "1921-10-01": 17.6, - "1921-09-01": 17.6, - "1921-08-01": 17.8, - "1921-07-01": 17.8, - "1921-06-01": 17.7, - "1921-05-01": 17.8, - "1921-04-01": 18.2, - "1921-03-01": 18.4, - "1921-02-01": 18.5, - "1921-01-01": 19.1, - "1920-12-01": 19.5, - "1920-11-01": 19.9, - "1920-10-01": 20, - "1920-09-01": 20.1, - "1920-08-01": 20.4, - "1920-07-01": 20.9, - "1920-06-01": 21, - "1920-05-01": 20.7, - "1920-04-01": 20.4, - "1920-03-01": 19.8, - "1920-02-01": 19.6, - "1920-01-01": 19.4, - "1919-12-01": 19, - "1919-11-01": 18.6, - "1919-10-01": 18.2, - "1919-09-01": 17.9, - "1919-08-01": 17.8, - "1919-07-01": 17.5, - "1919-06-01": 17, - "1919-05-01": 17, - "1919-04-01": 16.8, - "1919-03-01": 16.5, - "1919-02-01": 16.2, - "1919-01-01": 16.6, - "1918-12-01": 16.6, - "1918-11-01": 16.3, - "1918-10-01": 16.1, - "1918-09-01": 15.8, - "1918-08-01": 15.4, - "1918-07-01": 15.2, - "1918-06-01": 14.8, - "1918-05-01": 14.5, - "1918-04-01": 14.3, - "1918-03-01": 14.1, - "1918-02-01": 14.2, - "1918-01-01": 14, - "1917-12-01": 13.8, - "1917-11-01": 13.6, - "1917-10-01": 13.6, - "1917-09-01": 13.3, - "1917-08-01": 13.1, - "1917-07-01": 12.9, - "1917-06-01": 13, - "1917-05-01": 12.9, - "1917-04-01": 12.6, - "1917-03-01": 12.1, - "1917-02-01": 12, - "1917-01-01": 11.8, - "1916-12-01": 11.6, - "1916-11-01": 11.5, - "1916-10-01": 11.3, - "1916-09-01": 11.2, - "1916-08-01": 11, - "1916-07-01": 10.9, - "1916-06-01": 10.9, - "1916-05-01": 10.7, - "1916-04-01": 10.7, - "1916-03-01": 10.6, - "1916-02-01": 10.5, - "1916-01-01": 10.5, - "1915-12-01": 10.4, - "1915-11-01": 10.4, - "1915-10-01": 10.3, - "1915-09-01": 10.2, - "1915-08-01": 10.2, - "1915-07-01": 10.2, - "1915-06-01": 10.2, - "1915-05-01": 10.1, - "1915-04-01": 10.1, - "1915-03-01": 10, - "1915-02-01": 10.1, - "1915-01-01": 10.2, - "1914-12-01": 10.2, - "1914-11-01": 10.2, - "1914-10-01": 10.2, - "1914-09-01": 10.3, - "1914-08-01": 10.2, - "1914-07-01": 10.1, - "1914-06-01": 10, - "1914-05-01": 9.9, - "1914-04-01": 9.9, - "1914-03-01": 10, - "1914-02-01": 10, - "1914-01-01": 10.1, - "1913-12-01": 10.1, - "1913-11-01": 10.1, - "1913-10-01": 10.1, - "1913-09-01": 10, - "1913-08-01": 10, - "1913-07-01": 9.9, - "1913-06-01": 9.8, - "1913-05-01": 9.8, - "1913-04-01": 9.9, - "1913-03-01": 9.8, - "1913-02-01": 9.8, - "1913-01-01": 9.9 - }, - "economy": false, - "household": true - }, - "gov.local": { - "type": "parameterNode", - "parameter": "gov.local", - "description": null, - "label": "Local", - "economy": true, - "household": true - }, - "gov.local.co": { - "type": "parameterNode", - "parameter": "gov.local.co", - "description": null, - "label": "co", - "economy": true, - "household": true - }, - "gov.local.co.denver": { - "type": "parameterNode", - "parameter": "gov.local.co.denver", - "description": null, - "label": "denver", - "economy": true, - "household": true - }, - "gov.local.co.denver.dhs": { - "type": "parameterNode", - "parameter": "gov.local.co.denver.dhs", - "description": null, - "label": "dhs", - "economy": true, - "household": true - }, - "gov.local.co.denver.dhs.property_tax_relief": { - "type": "parameterNode", - "parameter": "gov.local.co.denver.dhs.property_tax_relief", - "description": null, - "label": "property tax relief", - "economy": true, - "household": true - }, - "gov.local.co.denver.dhs.property_tax_relief.income_sources": { - "type": "parameter", - "parameter": "gov.local.co.denver.dhs.property_tax_relief.income_sources", - "description": "Denver counts these sources as income under the property tax relief program.", - "label": "Denver property tax relief income sources", - "unit": null, - "period": "year", - "values": { - "2023-01-01": [ - "employment_income", - "self_employment_income", - "alimony_income", - "rental_income", - "disability_benefits", - "pension_income", - "veterans_benefits", - "interest_income", - "dividend_income", - "workers_compensation", - "unemployment_compensation" - ], - "2015-01-01": [ - "employment_income", - "self_employment_income", - "alimony_income", - "rental_income", - "disability_benefits", - "pension_income", - "veterans_benefits", - "interest_income", - "dividend_income", - "workers_compensation", - "unemployment_compensation" - ] - }, - "economy": true, - "household": true - }, - "gov.local.co.denver.dhs.property_tax_relief.amount": { - "type": "parameterNode", - "parameter": "gov.local.co.denver.dhs.property_tax_relief.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.local.co.denver.dhs.property_tax_relief.amount.renter": { - "type": "parameter", - "parameter": "gov.local.co.denver.dhs.property_tax_relief.amount.renter", - "description": "Denver provides the following Property Tax Relief Program amount for renters.", - "label": "Denver property tax relief program renter amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2023-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.local.co.denver.dhs.property_tax_relief.amount.homeowner": { - "type": "parameter", - "parameter": "gov.local.co.denver.dhs.property_tax_relief.amount.homeowner", - "description": "Denver provides the following Property Tax Relief Program amount for homeowners.", - "label": "Denver property tax relief program homeowner amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2023-01-01": 1800, - "2015-01-01": 1800 - }, - "economy": true, - "household": true - }, - "gov.local.co.denver.dhs.property_tax_relief.ami_rate": { - "type": "parameterNode", - "parameter": "gov.local.co.denver.dhs.property_tax_relief.ami_rate", - "description": null, - "label": "ami rate", - "economy": true, - "household": true - }, - "gov.local.co.denver.dhs.property_tax_relief.ami_rate.renter": { - "type": "parameterNode", - "parameter": "gov.local.co.denver.dhs.property_tax_relief.ami_rate.renter", - "description": "The Denver Property Tax Relief Program sets the renter income limit by multiplying the Denver average median income by this rate, based on household size.", - "label": "Denver renter AMI income limit" - }, - "gov.local.co.denver.dhs.property_tax_relief.ami_rate.renter[0]": { - "type": "parameterNode", - "parameter": "gov.local.co.denver.dhs.property_tax_relief.ami_rate.renter[0]", - "description": null, - "label": "bracket 1" - }, - "gov.local.co.denver.dhs.property_tax_relief.ami_rate.renter[0].threshold": { - "type": "parameter", - "parameter": "gov.local.co.denver.dhs.property_tax_relief.ami_rate.renter[0].threshold", - "description": null, - "label": "threshold", - "unit": "person", - "period": null, - "values": { - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.local.co.denver.dhs.property_tax_relief.ami_rate.renter[0].amount": { - "type": "parameter", - "parameter": "gov.local.co.denver.dhs.property_tax_relief.ami_rate.renter[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.local.co.denver.dhs.property_tax_relief.ami_rate.renter[1]": { - "type": "parameterNode", - "parameter": "gov.local.co.denver.dhs.property_tax_relief.ami_rate.renter[1]", - "description": null, - "label": "bracket 2" - }, - "gov.local.co.denver.dhs.property_tax_relief.ami_rate.renter[1].threshold": { - "type": "parameter", - "parameter": "gov.local.co.denver.dhs.property_tax_relief.ami_rate.renter[1].threshold", - "description": null, - "label": "threshold", - "unit": "person", - "period": null, - "values": { - "2023-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.local.co.denver.dhs.property_tax_relief.ami_rate.renter[1].amount": { - "type": "parameter", - "parameter": "gov.local.co.denver.dhs.property_tax_relief.ami_rate.renter[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.local.co.denver.dhs.property_tax_relief.ami_rate.renter[2]": { - "type": "parameterNode", - "parameter": "gov.local.co.denver.dhs.property_tax_relief.ami_rate.renter[2]", - "description": null, - "label": "bracket 3" - }, - "gov.local.co.denver.dhs.property_tax_relief.ami_rate.renter[2].threshold": { - "type": "parameter", - "parameter": "gov.local.co.denver.dhs.property_tax_relief.ami_rate.renter[2].threshold", - "description": null, - "label": "threshold", - "unit": "person", - "period": null, - "values": { - "2023-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.local.co.denver.dhs.property_tax_relief.ami_rate.renter[2].amount": { - "type": "parameter", - "parameter": "gov.local.co.denver.dhs.property_tax_relief.ami_rate.renter[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.3, - "2015-01-01": 0.3 - }, - "economy": true, - "household": true - }, - "gov.local.co.denver.dhs.property_tax_relief.ami_rate.homeowner": { - "type": "parameter", - "parameter": "gov.local.co.denver.dhs.property_tax_relief.ami_rate.homeowner", - "description": "Denver limits its Property Tax Relief Program to homeowners with income below this fraction of area median income.", - "label": "Denver homeowner AMI income limit", - "unit": "/1", - "period": "year", - "values": { - "2023-01-01": 0.6, - "2015-01-01": 0.6 - }, - "economy": true, - "household": true - }, - "gov.local.co.denver.dhs.elderly_age_threshold": { - "type": "parameter", - "parameter": "gov.local.co.denver.dhs.elderly_age_threshold", - "description": "Denver limits the property tax relief program to households with at least one person above this age threshold.", - "label": "Denver property tax relief program elderly age threshold", - "unit": "year", - "period": "year", - "values": { - "2023-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.local.ny": { - "type": "parameterNode", - "parameter": "gov.local.ny", - "description": null, - "label": "ny", - "economy": true, - "household": true - }, - "gov.local.ny.nyc": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc", - "description": null, - "label": "nyc", - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits", - "description": null, - "label": "credits", - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.eitc": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.eitc", - "description": null, - "label": "eitc", - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.eitc.percent": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.eitc.percent", - "description": "New York City matches this fraction of the federal Earned Income Tax Credit.", - "label": "NYC EITC rate" - }, - "gov.local.ny.nyc.tax.income.credits.eitc.percent[0]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.eitc.percent[0]", - "description": null, - "label": "bracket 1" - }, - "gov.local.ny.nyc.tax.income.credits.eitc.percent[0].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.eitc.percent[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.eitc.percent[0].amount": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.eitc.percent[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.3, - "2015-01-01": 0.3 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.eitc.percent[1]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.eitc.percent[1]", - "description": null, - "label": "bracket 2" - }, - "gov.local.ny.nyc.tax.income.credits.eitc.percent[1].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.eitc.percent[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 7500, - "2015-01-01": 7500 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.eitc.percent[1].amount": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.eitc.percent[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.eitc.percent[2]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.eitc.percent[2]", - "description": null, - "label": "bracket 3" - }, - "gov.local.ny.nyc.tax.income.credits.eitc.percent[2].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.eitc.percent[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 17500, - "2015-01-01": 17500 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.eitc.percent[2].amount": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.eitc.percent[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.eitc.percent[3]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.eitc.percent[3]", - "description": null, - "label": "bracket 4" - }, - "gov.local.ny.nyc.tax.income.credits.eitc.percent[3].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.eitc.percent[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 22500, - "2015-01-01": 22500 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.eitc.percent[3].amount": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.eitc.percent[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.15, - "2015-01-01": 0.15 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.eitc.percent[4]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.eitc.percent[4]", - "description": null, - "label": "bracket 5" - }, - "gov.local.ny.nyc.tax.income.credits.eitc.percent[4].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.eitc.percent[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 42500, - "2015-01-01": 42500 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.eitc.percent[4].amount": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.eitc.percent[4].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.eitc.percent_reduction": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.eitc.percent_reduction", - "description": "New York City reduces its earned income tax credit match by this fraction for filers with income above the threshold.", - "label": "NYC EITC reduction percentage", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.00002, - "2015-01-01": 0.00002 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold", - "description": "New York City reduces its earned income tax credit for filers with income above these thresholds.", - "label": "NYC EITC reduction threshold" - }, - "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[0]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[0]", - "description": null, - "label": "bracket 1" - }, - "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[0].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[0].amount": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[1]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[1]", - "description": null, - "label": "bracket 2" - }, - "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[1].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[1].amount": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 4999, - "2015-01-01": 4999 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[2]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[2]", - "description": null, - "label": "bracket 3" - }, - "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[2].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 7500, - "2015-01-01": 7500 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[2].amount": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[3]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[3]", - "description": null, - "label": "bracket 4" - }, - "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[3].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 15000, - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[3].amount": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 14999, - "2015-01-01": 14999 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[4]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[4]", - "description": null, - "label": "bracket 5" - }, - "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[4].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 17500, - "2015-01-01": 17500 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[4].amount": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[5]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[5]", - "description": null, - "label": "bracket 6" - }, - "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[5].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[5].amount": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 19999, - "2015-01-01": 19999 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[6]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[6]", - "description": null, - "label": "bracket 7" - }, - "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[6].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 22500, - "2015-01-01": 22500 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[6].amount": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[6].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[7]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[7]", - "description": null, - "label": "bracket 8" - }, - "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[7].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 40000, - "2015-01-01": 40000 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[7].amount": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[7].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 39999, - "2015-01-01": 39999 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[8]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[8]", - "description": null, - "label": "bracket 9" - }, - "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[8].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 42500, - "2015-01-01": 42500 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[8].amount": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.eitc.reduction_threshold[8].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.refundable": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.refundable", - "description": "NYC refundable tax credits.", - "label": "NYC refundable tax credits", - "unit": "list", - "period": null, - "values": { - "2022-01-01": ["nyc_cdcc", "nyc_eitc", "nyc_school_tax_credit"], - "2015-01-01": ["nyc_cdcc", "nyc_eitc", "nyc_school_tax_credit"] - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.household": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.household", - "description": null, - "label": "household", - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.household.flat_amount": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.household.flat_amount", - "description": "NYC provides a household credit of this fixed amount to single filers, based on recomputed federal AGI.", - "label": "NYC Household Credit Fixed Amount for single filers" - }, - "gov.local.ny.nyc.tax.income.credits.household.flat_amount[0]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.household.flat_amount[0]", - "description": null, - "label": "bracket 1" - }, - "gov.local.ny.nyc.tax.income.credits.household.flat_amount[0].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.household.flat_amount[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": -1, - "2015-01-01": -1 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.household.flat_amount[0].amount": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.household.flat_amount[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 15, - "2015-01-01": 15 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.household.flat_amount[1]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.household.flat_amount[1]", - "description": null, - "label": "bracket 2" - }, - "gov.local.ny.nyc.tax.income.credits.household.flat_amount[1].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.household.flat_amount[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.household.flat_amount[1].amount": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.household.flat_amount[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 10, - "2015-01-01": 10 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.household.flat_amount[2]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.household.flat_amount[2]", - "description": null, - "label": "bracket 3" - }, - "gov.local.ny.nyc.tax.income.credits.household.flat_amount[2].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.household.flat_amount[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 12500, - "2015-01-01": 12500 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.household.flat_amount[2].amount": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.household.flat_amount[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.household.separate_per_dependent": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.household.separate_per_dependent", - "description": "NYC provides a household credit of this amount per dependent for separate filers.", - "label": "NYC Household Credit for separate filers." - }, - "gov.local.ny.nyc.tax.income.credits.household.separate_per_dependent[0]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.household.separate_per_dependent[0]", - "description": null, - "label": "bracket 1" - }, - "gov.local.ny.nyc.tax.income.credits.household.separate_per_dependent[0].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.household.separate_per_dependent[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": -1, - "2015-01-01": -1 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.household.separate_per_dependent[0].amount": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.household.separate_per_dependent[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 15, - "2015-01-01": 15 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.household.separate_per_dependent[1]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.household.separate_per_dependent[1]", - "description": null, - "label": "bracket 2" - }, - "gov.local.ny.nyc.tax.income.credits.household.separate_per_dependent[1].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.household.separate_per_dependent[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 15000, - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.household.separate_per_dependent[1].amount": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.household.separate_per_dependent[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 13, - "2015-01-01": 13 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.household.separate_per_dependent[2]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.household.separate_per_dependent[2]", - "description": null, - "label": "bracket 3" - }, - "gov.local.ny.nyc.tax.income.credits.household.separate_per_dependent[2].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.household.separate_per_dependent[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 17500, - "2015-01-01": 17500 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.household.separate_per_dependent[2].amount": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.household.separate_per_dependent[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 8, - "2015-01-01": 8 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.household.separate_per_dependent[3]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.household.separate_per_dependent[3]", - "description": null, - "label": "bracket 4" - }, - "gov.local.ny.nyc.tax.income.credits.household.separate_per_dependent[3].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.household.separate_per_dependent[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.household.separate_per_dependent[3].amount": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.household.separate_per_dependent[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 5, - "2015-01-01": 5 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.household.separate_per_dependent[4]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.household.separate_per_dependent[4]", - "description": null, - "label": "bracket 5" - }, - "gov.local.ny.nyc.tax.income.credits.household.separate_per_dependent[4].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.household.separate_per_dependent[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 22500, - "2015-01-01": 22500 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.household.separate_per_dependent[4].amount": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.household.separate_per_dependent[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.household.other_per_dependent": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.household.other_per_dependent", - "description": "NYC provides a household credit of this amount per dependent for joint, suriving spouse, and head of household filers.", - "label": "NYC Household Credit for joint, suriving spouse, and head of household filers." - }, - "gov.local.ny.nyc.tax.income.credits.household.other_per_dependent[0]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.household.other_per_dependent[0]", - "description": null, - "label": "bracket 1" - }, - "gov.local.ny.nyc.tax.income.credits.household.other_per_dependent[0].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.household.other_per_dependent[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": -1, - "2015-01-01": -1 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.household.other_per_dependent[0].amount": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.household.other_per_dependent[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 30, - "2015-01-01": 30 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.household.other_per_dependent[1]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.household.other_per_dependent[1]", - "description": null, - "label": "bracket 2" - }, - "gov.local.ny.nyc.tax.income.credits.household.other_per_dependent[1].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.household.other_per_dependent[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 15000, - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.household.other_per_dependent[1].amount": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.household.other_per_dependent[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 25, - "2015-01-01": 25 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.household.other_per_dependent[2]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.household.other_per_dependent[2]", - "description": null, - "label": "bracket 3" - }, - "gov.local.ny.nyc.tax.income.credits.household.other_per_dependent[2].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.household.other_per_dependent[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 17500, - "2015-01-01": 17500 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.household.other_per_dependent[2].amount": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.household.other_per_dependent[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 15, - "2015-01-01": 15 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.household.other_per_dependent[3]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.household.other_per_dependent[3]", - "description": null, - "label": "bracket 4" - }, - "gov.local.ny.nyc.tax.income.credits.household.other_per_dependent[3].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.household.other_per_dependent[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.household.other_per_dependent[3].amount": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.household.other_per_dependent[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 10, - "2015-01-01": 10 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.household.other_per_dependent[4]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.household.other_per_dependent[4]", - "description": null, - "label": "bracket 5" - }, - "gov.local.ny.nyc.tax.income.credits.household.other_per_dependent[4].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.household.other_per_dependent[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 22500, - "2015-01-01": 22500 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.household.other_per_dependent[4].amount": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.household.other_per_dependent[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.cdcc": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.cdcc", - "description": null, - "label": "cdcc", - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.cdcc.phaseout_start": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.cdcc.phaseout_start", - "description": "New York City reduces its Child and Dependent Care Credit match for filers with income above the threshold.", - "label": "NYC Child and Dependent Care Credit phaseout start.", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.cdcc.max_rate": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.cdcc.max_rate", - "description": "New York City matches this fraction of the Child and Dependent Care Credit.", - "label": "NYC CDCC match", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.75, - "2015-01-01": 0.75 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.cdcc.child_age_restriction": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.cdcc.child_age_restriction", - "description": "New York City limits its child and dependent care to expenses for children under this age.", - "label": "NYC CDCC child age limit", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 4, - "2015-01-01": 4 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.cdcc.phaseout_end": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.cdcc.phaseout_end", - "description": "New York City fully phases out its Child and Dependent Care Credit for filers with this income.", - "label": "NYC Child and Dependent Care Credit income limit.", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.non_refundable": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.non_refundable", - "description": "NYC non-refundable tax credits.", - "label": "NYC non-refundable tax credits", - "unit": "list", - "period": null, - "values": { - "2022-01-01": ["nyc_household_credit", "nyc_unincorporated_business_credit"], - "2015-01-01": ["nyc_household_credit", "nyc_unincorporated_business_credit"] - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.school": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.school", - "description": null, - "label": "school", - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.school.fixed": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.school.fixed", - "description": null, - "label": "fixed", - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.school.fixed.income_limit": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.school.fixed.income_limit", - "description": "NYC limits its School Tax Credit Fixed Amount to filers with NY AGI of this amount or less.", - "label": "NYC School Tax Credit Fixed Amount Income Limit", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 250000, - "2015-01-01": 250000 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.school.fixed.amount": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.school.fixed.amount", - "description": "NYC provides a School Tax Credit of this fixed amount based on filing status.", - "label": "NYC School Tax Credit Fixed Amount", - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.school.fixed.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.school.fixed.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 63, - "2015-01-01": 63 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.school.fixed.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.school.fixed.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 63, - "2015-01-01": 63 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.school.fixed.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.school.fixed.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 63, - "2015-01-01": 63 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.school.fixed.amount.JOINT": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.school.fixed.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 125, - "2015-01-01": 125 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.school.fixed.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.school.fixed.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 125, - "2015-01-01": 125 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.school.rate_reduction": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.school.rate_reduction", - "description": null, - "label": "rate reduction", - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.head_of_household": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.head_of_household", - "description": "NYC provides a School Tax Credit reduction amount based on filing status.", - "label": "NYC School Tax Credit Reduction Amount (Head of Household)" - }, - "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.head_of_household[0]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.head_of_household[0]", - "description": null, - "label": "bracket 1" - }, - "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.head_of_household[0].rate": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.head_of_household[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.00171, - "2015-01-01": 0.00171 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.head_of_household[0].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.head_of_household[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.head_of_household[1]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.head_of_household[1]", - "description": null, - "label": "bracket 2" - }, - "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.head_of_household[1].rate": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.head_of_household[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.00228, - "2015-01-01": 0.00228 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.head_of_household[1].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.head_of_household[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 14400, - "2015-01-01": 14400 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.separate": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.separate", - "description": "NYC provides a School Tax Credit reduction amount based on filing status.", - "label": "NYC School Tax Credit Reduction Amount (Separate)" - }, - "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.separate[0]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.separate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.separate[0].rate": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.separate[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.00171, - "2015-01-01": 0.00171 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.separate[0].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.separate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.separate[1]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.separate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.separate[1].rate": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.separate[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.00228, - "2015-01-01": 0.00228 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.separate[1].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.separate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 12000, - "2015-01-01": 12000 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.joint": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.joint", - "description": "NYC provides a School Tax Credit reduction amount based on filing status.", - "label": "NYC School Tax Credit Reduction Amount (Joint)" - }, - "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.joint[0]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.joint[0].rate": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.joint[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.00171, - "2015-01-01": 0.00171 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.joint[1]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.joint[1].rate": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.joint[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.00228, - "2015-01-01": 0.00228 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 21600, - "2015-01-01": 21600 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.single": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.single", - "description": "NYC provides a School Tax Credit reduction amount based on filing status.", - "label": "NYC School Tax Credit Reduction Amount (Single)" - }, - "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.single[0]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.single[0]", - "description": null, - "label": "bracket 1" - }, - "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.single[0].rate": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.single[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.00171, - "2015-01-01": 0.00171 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.single[0].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.single[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.single[1]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.single[1]", - "description": null, - "label": "bracket 2" - }, - "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.single[1].rate": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.single[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.00228, - "2015-01-01": 0.00228 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.single[1].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.single[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 12000, - "2015-01-01": 12000 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.surviving_spouse": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.surviving_spouse", - "description": "NYC provides a School Tax Credit reduction amount based on filing status.", - "label": "NYC School Tax Credit Reduction Amount (Surviving Spouse)" - }, - "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.surviving_spouse[0]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.surviving_spouse[0]", - "description": null, - "label": "bracket 1" - }, - "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.surviving_spouse[0].rate": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.surviving_spouse[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.00171, - "2015-01-01": 0.00171 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.surviving_spouse[0].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.surviving_spouse[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.surviving_spouse[1]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.surviving_spouse[1]", - "description": null, - "label": "bracket 2" - }, - "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.surviving_spouse[1].rate": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.surviving_spouse[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.00228, - "2015-01-01": 0.00228 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.surviving_spouse[1].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.amount.surviving_spouse[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 21600, - "2015-01-01": 21600 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.income_limit": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.credits.school.rate_reduction.income_limit", - "description": "NYC limits its School Tax Credit Rate Reduction Amount to filers with NYC taxable income up to this amount.", - "label": "NYC School Tax Credit Rate Reduction Amount Income Limit", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 500000, - "2015-01-01": 500000 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.rates": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.rates", - "description": null, - "label": "rates", - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.rates.head_of_household": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.rates.head_of_household", - "description": "Progressive rate schedule for a head-of-household filer in NYC.", - "label": "NYC income tax rates for head-of-household filers" - }, - "gov.local.ny.nyc.tax.income.rates.head_of_household[0]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.rates.head_of_household[0]", - "description": null, - "label": "bracket 1" - }, - "gov.local.ny.nyc.tax.income.rates.head_of_household[0].rate": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.rates.head_of_household[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.013452, - "2017-01-01": 0.03078, - "2015-01-01": 0.03078 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.rates.head_of_household[0].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.rates.head_of_household[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2017-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.rates.head_of_household[1]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.rates.head_of_household[1]", - "description": null, - "label": "bracket 2" - }, - "gov.local.ny.nyc.tax.income.rates.head_of_household[1].rate": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.rates.head_of_household[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.016359, - "2017-01-01": 0.03762, - "2015-01-01": 0.03762 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.rates.head_of_household[1].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.rates.head_of_household[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2017-01-01": 14400, - "2015-01-01": 14400 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.rates.head_of_household[2]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.rates.head_of_household[2]", - "description": null, - "label": "bracket 3" - }, - "gov.local.ny.nyc.tax.income.rates.head_of_household[2].rate": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.rates.head_of_household[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.016587, - "2017-01-01": 0.03819, - "2015-01-01": 0.03819 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.rates.head_of_household[2].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.rates.head_of_household[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2017-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.rates.head_of_household[3]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.rates.head_of_household[3]", - "description": null, - "label": "bracket 4" - }, - "gov.local.ny.nyc.tax.income.rates.head_of_household[3].rate": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.rates.head_of_household[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.016872, - "2017-01-01": 0.03876, - "2015-01-01": 0.03876 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.rates.head_of_household[3].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.rates.head_of_household[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2017-01-01": 60000, - "2015-01-01": 60000 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.rates.separate": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.rates.separate", - "description": "Progressive rate schedule for a separate filer in NYC.", - "label": "NYC income tax rates for separate filers" - }, - "gov.local.ny.nyc.tax.income.rates.separate[0]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.rates.separate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.local.ny.nyc.tax.income.rates.separate[0].rate": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.rates.separate[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.013452, - "2017-01-01": 0.03078, - "2015-01-01": 0.03078 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.rates.separate[0].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.rates.separate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2017-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.rates.separate[1]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.rates.separate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.local.ny.nyc.tax.income.rates.separate[1].rate": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.rates.separate[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.016359, - "2017-01-01": 0.03762, - "2015-01-01": 0.03762 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.rates.separate[1].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.rates.separate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2017-01-01": 12000, - "2015-01-01": 12000 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.rates.separate[2]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.rates.separate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.local.ny.nyc.tax.income.rates.separate[2].rate": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.rates.separate[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.016587, - "2017-01-01": 0.03819, - "2015-01-01": 0.03819 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.rates.separate[2].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.rates.separate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2017-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.rates.separate[3]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.rates.separate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.local.ny.nyc.tax.income.rates.separate[3].rate": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.rates.separate[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.016872, - "2017-01-01": 0.03876, - "2015-01-01": 0.03876 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.rates.separate[3].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.rates.separate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2017-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.rates.joint": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.rates.joint", - "description": "Progressive rate schedule for a joint filer in NYC.", - "label": "NYC income tax rates for joint filers" - }, - "gov.local.ny.nyc.tax.income.rates.joint[0]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.rates.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.local.ny.nyc.tax.income.rates.joint[0].rate": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.rates.joint[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.013452, - "2017-01-01": 0.03078, - "2015-01-01": 0.03078 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.rates.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.rates.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2017-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.rates.joint[1]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.rates.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.local.ny.nyc.tax.income.rates.joint[1].rate": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.rates.joint[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.016359, - "2017-01-01": 0.03762, - "2015-01-01": 0.03762 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.rates.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.rates.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2017-01-01": 21600, - "2015-01-01": 21600 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.rates.joint[2]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.rates.joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.local.ny.nyc.tax.income.rates.joint[2].rate": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.rates.joint[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.016587, - "2017-01-01": 0.03819, - "2015-01-01": 0.03819 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.rates.joint[2].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.rates.joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2017-01-01": 45000, - "2015-01-01": 45000 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.rates.joint[3]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.rates.joint[3]", - "description": null, - "label": "bracket 4" - }, - "gov.local.ny.nyc.tax.income.rates.joint[3].rate": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.rates.joint[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.016872, - "2017-01-01": 0.03876, - "2015-01-01": 0.03876 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.rates.joint[3].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.rates.joint[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2017-01-01": 90000, - "2015-01-01": 90000 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.rates.single": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.rates.single", - "description": "Progressive rate schedule for a single filer in NYC.", - "label": "NYC State income tax rates for single filers" - }, - "gov.local.ny.nyc.tax.income.rates.single[0]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.rates.single[0]", - "description": null, - "label": "bracket 1" - }, - "gov.local.ny.nyc.tax.income.rates.single[0].rate": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.rates.single[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.013452, - "2017-01-01": 0.03078, - "2015-01-01": 0.03078 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.rates.single[0].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.rates.single[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2017-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.rates.single[1]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.rates.single[1]", - "description": null, - "label": "bracket 2" - }, - "gov.local.ny.nyc.tax.income.rates.single[1].rate": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.rates.single[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.016359, - "2017-01-01": 0.03762, - "2015-01-01": 0.03762 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.rates.single[1].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.rates.single[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2017-01-01": 12000, - "2015-01-01": 12000 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.rates.single[2]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.rates.single[2]", - "description": null, - "label": "bracket 3" - }, - "gov.local.ny.nyc.tax.income.rates.single[2].rate": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.rates.single[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.016587, - "2017-01-01": 0.03819, - "2015-01-01": 0.03819 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.rates.single[2].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.rates.single[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2017-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.rates.single[3]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.rates.single[3]", - "description": null, - "label": "bracket 4" - }, - "gov.local.ny.nyc.tax.income.rates.single[3].rate": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.rates.single[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.016872, - "2017-01-01": 0.03876, - "2015-01-01": 0.03876 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.rates.single[3].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.rates.single[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2017-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.rates.surviving_spouse": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.rates.surviving_spouse", - "description": "Progressive rate schedule for a surviving spouse in NYC.", - "label": "NYC income tax rates for single filers" - }, - "gov.local.ny.nyc.tax.income.rates.surviving_spouse[0]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.rates.surviving_spouse[0]", - "description": null, - "label": "bracket 1" - }, - "gov.local.ny.nyc.tax.income.rates.surviving_spouse[0].rate": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.rates.surviving_spouse[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.013452, - "2017-01-01": 0.03078, - "2015-01-01": 0.03078 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.rates.surviving_spouse[0].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.rates.surviving_spouse[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2017-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.rates.surviving_spouse[1]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.rates.surviving_spouse[1]", - "description": null, - "label": "bracket 2" - }, - "gov.local.ny.nyc.tax.income.rates.surviving_spouse[1].rate": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.rates.surviving_spouse[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.016359, - "2017-01-01": 0.03762, - "2015-01-01": 0.03762 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.rates.surviving_spouse[1].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.rates.surviving_spouse[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2017-01-01": 21600, - "2015-01-01": 21600 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.rates.surviving_spouse[2]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.rates.surviving_spouse[2]", - "description": null, - "label": "bracket 3" - }, - "gov.local.ny.nyc.tax.income.rates.surviving_spouse[2].rate": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.rates.surviving_spouse[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.016587, - "2017-01-01": 0.03819, - "2015-01-01": 0.03819 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.rates.surviving_spouse[2].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.rates.surviving_spouse[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2017-01-01": 45000, - "2015-01-01": 45000 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.rates.surviving_spouse[3]": { - "type": "parameterNode", - "parameter": "gov.local.ny.nyc.tax.income.rates.surviving_spouse[3]", - "description": null, - "label": "bracket 4" - }, - "gov.local.ny.nyc.tax.income.rates.surviving_spouse[3].rate": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.rates.surviving_spouse[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.016872, - "2017-01-01": 0.03876, - "2015-01-01": 0.03876 - }, - "economy": true, - "household": true - }, - "gov.local.ny.nyc.tax.income.rates.surviving_spouse[3].threshold": { - "type": "parameter", - "parameter": "gov.local.ny.nyc.tax.income.rates.surviving_spouse[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2017-01-01": 90000, - "2015-01-01": 90000 - }, - "economy": true, - "household": true - }, - "gov.local.tax": { - "type": "parameterNode", - "parameter": "gov.local.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.local.tax.income": { - "type": "parameterNode", - "parameter": "gov.local.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.local.tax.income.flat_tax_rate": { - "type": "parameterNode", - "parameter": "gov.local.tax.income.flat_tax_rate", - "description": "Flat income tax rate for counties in MD.", - "label": "Flat tax rate for counties in MD", - "economy": true, - "household": true - }, - "gov.local.tax.income.flat_tax_rate.ALLEGANY_COUNTY_MD": { - "type": "parameter", - "parameter": "gov.local.tax.income.flat_tax_rate.ALLEGANY_COUNTY_MD", - "description": null, - "label": "ALLEGANY COUNTY MD", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0305, - "2015-01-01": 0.0305 - }, - "economy": true, - "household": true - }, - "gov.local.tax.income.flat_tax_rate.ANNE_ARUNDEL_COUNTY_MD": { - "type": "parameter", - "parameter": "gov.local.tax.income.flat_tax_rate.ANNE_ARUNDEL_COUNTY_MD", - "description": null, - "label": "ANNE ARUNDEL COUNTY MD", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0281, - "2015-01-01": 0.0281 - }, - "economy": true, - "household": true - }, - "gov.local.tax.income.flat_tax_rate.BALTIMORE_CITY_MD": { - "type": "parameter", - "parameter": "gov.local.tax.income.flat_tax_rate.BALTIMORE_CITY_MD", - "description": null, - "label": "BALTIMORE CITY MD", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.032, - "2015-01-01": 0.032 - }, - "economy": true, - "household": true - }, - "gov.local.tax.income.flat_tax_rate.BALTIMORE_COUNTY_MD": { - "type": "parameter", - "parameter": "gov.local.tax.income.flat_tax_rate.BALTIMORE_COUNTY_MD", - "description": null, - "label": "BALTIMORE COUNTY MD", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.032, - "2015-01-01": 0.032 - }, - "economy": true, - "household": true - }, - "gov.local.tax.income.flat_tax_rate.CALVERT_COUNTY_MD": { - "type": "parameter", - "parameter": "gov.local.tax.income.flat_tax_rate.CALVERT_COUNTY_MD", - "description": null, - "label": "CALVERT COUNTY MD", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.local.tax.income.flat_tax_rate.CAROLINE_COUNTY_MD": { - "type": "parameter", - "parameter": "gov.local.tax.income.flat_tax_rate.CAROLINE_COUNTY_MD", - "description": null, - "label": "CAROLINE COUNTY MD", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.032, - "2015-01-01": 0.032 - }, - "economy": true, - "household": true - }, - "gov.local.tax.income.flat_tax_rate.CARROLL_COUNTY_MD": { - "type": "parameter", - "parameter": "gov.local.tax.income.flat_tax_rate.CARROLL_COUNTY_MD", - "description": null, - "label": "CARROLL COUNTY MD", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0303, - "2015-01-01": 0.0303 - }, - "economy": true, - "household": true - }, - "gov.local.tax.income.flat_tax_rate.CECIL_COUNTY_MD": { - "type": "parameter", - "parameter": "gov.local.tax.income.flat_tax_rate.CECIL_COUNTY_MD", - "description": null, - "label": "CECIL COUNTY MD", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.local.tax.income.flat_tax_rate.CHARLES_COUNTY_MD": { - "type": "parameter", - "parameter": "gov.local.tax.income.flat_tax_rate.CHARLES_COUNTY_MD", - "description": null, - "label": "CHARLES COUNTY MD", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0303, - "2015-01-01": 0.0303 - }, - "economy": true, - "household": true - }, - "gov.local.tax.income.flat_tax_rate.DORCHESTER_COUNTY_MD": { - "type": "parameter", - "parameter": "gov.local.tax.income.flat_tax_rate.DORCHESTER_COUNTY_MD", - "description": null, - "label": "DORCHESTER COUNTY MD", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.032, - "2015-01-01": 0.032 - }, - "economy": true, - "household": true - }, - "gov.local.tax.income.flat_tax_rate.FREDERICK_COUNTY_MD": { - "type": "parameter", - "parameter": "gov.local.tax.income.flat_tax_rate.FREDERICK_COUNTY_MD", - "description": null, - "label": "FREDERICK COUNTY MD", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0296, - "2015-01-01": 0.0296 - }, - "economy": true, - "household": true - }, - "gov.local.tax.income.flat_tax_rate.GARRETT_COUNTY_MD": { - "type": "parameter", - "parameter": "gov.local.tax.income.flat_tax_rate.GARRETT_COUNTY_MD", - "description": null, - "label": "GARRETT COUNTY MD", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0265, - "2015-01-01": 0.0265 - }, - "economy": true, - "household": true - }, - "gov.local.tax.income.flat_tax_rate.HARFORD_COUNTY_MD": { - "type": "parameter", - "parameter": "gov.local.tax.income.flat_tax_rate.HARFORD_COUNTY_MD", - "description": null, - "label": "HARFORD COUNTY MD", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0306, - "2015-01-01": 0.0306 - }, - "economy": true, - "household": true - }, - "gov.local.tax.income.flat_tax_rate.HOWARD_COUNTY_MD": { - "type": "parameter", - "parameter": "gov.local.tax.income.flat_tax_rate.HOWARD_COUNTY_MD", - "description": null, - "label": "HOWARD COUNTY MD", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.032, - "2015-01-01": 0.032 - }, - "economy": true, - "household": true - }, - "gov.local.tax.income.flat_tax_rate.KENT_COUNTY_MD": { - "type": "parameter", - "parameter": "gov.local.tax.income.flat_tax_rate.KENT_COUNTY_MD", - "description": null, - "label": "KENT COUNTY MD", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.032, - "2015-01-01": 0.032 - }, - "economy": true, - "household": true - }, - "gov.local.tax.income.flat_tax_rate.MONTGOMERY_COUNTY_MD": { - "type": "parameter", - "parameter": "gov.local.tax.income.flat_tax_rate.MONTGOMERY_COUNTY_MD", - "description": null, - "label": "MONTGOMERY COUNTY MD", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.032, - "2015-01-01": 0.032 - }, - "economy": true, - "household": true - }, - "gov.local.tax.income.flat_tax_rate.PRINCE_GEORGE_S_COUNTY_MD": { - "type": "parameter", - "parameter": "gov.local.tax.income.flat_tax_rate.PRINCE_GEORGE_S_COUNTY_MD", - "description": null, - "label": "PRINCE GEORGE S COUNTY MD", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.032, - "2015-01-01": 0.032 - }, - "economy": true, - "household": true - }, - "gov.local.tax.income.flat_tax_rate.QUEEN_ANNE_S_COUNTY_MD": { - "type": "parameter", - "parameter": "gov.local.tax.income.flat_tax_rate.QUEEN_ANNE_S_COUNTY_MD", - "description": null, - "label": "QUEEN ANNE S COUNTY MD", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.032, - "2015-01-01": 0.032 - }, - "economy": true, - "household": true - }, - "gov.local.tax.income.flat_tax_rate.ST_MARY_S_COUNTY_MD": { - "type": "parameter", - "parameter": "gov.local.tax.income.flat_tax_rate.ST_MARY_S_COUNTY_MD", - "description": null, - "label": "ST MARY S COUNTY MD", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.031, - "2021-01-01": 0.0317, - "2015-01-01": 0.0317 - }, - "economy": true, - "household": true - }, - "gov.local.tax.income.flat_tax_rate.SOMERSET_COUNTY_MD": { - "type": "parameter", - "parameter": "gov.local.tax.income.flat_tax_rate.SOMERSET_COUNTY_MD", - "description": null, - "label": "SOMERSET COUNTY MD", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.032, - "2015-01-01": 0.032 - }, - "economy": true, - "household": true - }, - "gov.local.tax.income.flat_tax_rate.TALBOT_COUNTY_MD": { - "type": "parameter", - "parameter": "gov.local.tax.income.flat_tax_rate.TALBOT_COUNTY_MD", - "description": null, - "label": "TALBOT COUNTY MD", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.024, - "2015-01-01": 0.024 - }, - "economy": true, - "household": true - }, - "gov.local.tax.income.flat_tax_rate.WASHINGTON_COUNTY_MD": { - "type": "parameter", - "parameter": "gov.local.tax.income.flat_tax_rate.WASHINGTON_COUNTY_MD", - "description": null, - "label": "WASHINGTON COUNTY MD", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.03, - "2021-01-01": 0.032, - "2015-01-01": 0.032 - }, - "economy": true, - "household": true - }, - "gov.local.tax.income.flat_tax_rate.WICOMICO_COUNTY_MD": { - "type": "parameter", - "parameter": "gov.local.tax.income.flat_tax_rate.WICOMICO_COUNTY_MD", - "description": null, - "label": "WICOMICO COUNTY MD", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.032, - "2015-01-01": 0.032 - }, - "economy": true, - "household": true - }, - "gov.local.tax.income.flat_tax_rate.WORCESTER_COUNTY_MD": { - "type": "parameter", - "parameter": "gov.local.tax.income.flat_tax_rate.WORCESTER_COUNTY_MD", - "description": null, - "label": "WORCESTER COUNTY MD", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0225, - "2015-01-01": 0.0225 - }, - "economy": true, - "household": true - }, - "gov.local.ca": { - "type": "parameterNode", - "parameter": "gov.local.ca", - "description": null, - "label": "ca", - "economy": true, - "household": true - }, - "gov.local.ca.riv": { - "type": "parameterNode", - "parameter": "gov.local.ca.riv", - "description": null, - "label": "Riverside", - "economy": true, - "household": true - }, - "gov.local.ca.riv.cap": { - "type": "parameterNode", - "parameter": "gov.local.ca.riv.cap", - "description": null, - "label": "Department of Community Action Partnership (CAP)", - "economy": true, - "household": true - }, - "gov.local.ca.riv.cap.share": { - "type": "parameterNode", - "parameter": "gov.local.ca.riv.cap.share", - "description": null, - "label": "Sharing Households Assist Riverside’s Energy", - "economy": true, - "household": true - }, - "gov.local.ca.riv.cap.share.countable_income": { - "type": "parameterNode", - "parameter": "gov.local.ca.riv.cap.share.countable_income", - "description": null, - "label": "countable income", - "economy": true, - "household": true - }, - "gov.local.ca.riv.cap.share.countable_income.sources": { - "type": "parameter", - "parameter": "gov.local.ca.riv.cap.share.countable_income.sources", - "description": "The Riverside Department of Community Action Partnership counts these income sources as countable income under the Sharing Households Assist Riverside's Energy program.", - "label": "Riverside County SHARE countable income sources", - "unit": "list", - "period": "year", - "values": { - "2024-01-01": [ - "employment_income", - "self_employment_income", - "alimony_income", - "child_support_received", - "pension_income", - "unemployment_compensation", - "social_security", - "ssi", - "ca_tanf" - ], - "2015-01-01": [ - "employment_income", - "self_employment_income", - "alimony_income", - "child_support_received", - "pension_income", - "unemployment_compensation", - "social_security", - "ssi", - "ca_tanf" - ] - }, - "economy": true, - "household": true - }, - "gov.local.ca.riv.cap.share.income_limit": { - "type": "parameter", - "parameter": "gov.local.ca.riv.cap.share.income_limit", - "description": "The Riverside Department of Community Action Partnership limits the Sharing Households Assist Riverside's Energy program to applicants with income below this percentage of the poverty line.", - "label": "Riverside County SHARE income limit", - "unit": "/1", - "period": "month", - "values": { - "2024-07-01": 2.5, - "2015-01-01": 2.5 - }, - "economy": true, - "household": true - }, - "gov.local.ca.riv.cap.share.payment": { - "type": "parameterNode", - "parameter": "gov.local.ca.riv.cap.share.payment", - "description": null, - "label": "payment", - "economy": true, - "household": true - }, - "gov.local.ca.riv.cap.share.payment.trash": { - "type": "parameter", - "parameter": "gov.local.ca.riv.cap.share.payment.trash", - "description": "The Riverside Department of Community Action Partnership provides these trash payment amount to applicants who qualify for the Sharing Households Assist Riverside's Energy program.", - "label": "Riverside County SHARE trash payment amount", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-07-01": 4.46, - "2015-01-01": 4.46 - }, - "economy": true, - "household": true - }, - "gov.local.ca.riv.cap.share.payment.water": { - "type": "parameter", - "parameter": "gov.local.ca.riv.cap.share.payment.water", - "description": "The Riverside Department of Community Action Partnership provides these water payment amount to applicants who qualify for the Sharing Households Assist Riverside's Energy program.", - "label": "Riverside County SHARE water payment amount", - "unit": "currency-USD", - "period": "month", - "values": { - "2027-07-01": 6.25, - "2026-07-01": 5.75, - "2025-07-01": 5.25, - "2024-07-01": 4.75, - "2023-10-01": 4.25, - "2022-07-01": 3.25, - "2015-01-01": 3.25 - }, - "economy": true, - "household": true - }, - "gov.local.ca.riv.cap.share.payment.electricity": { - "type": "parameter", - "parameter": "gov.local.ca.riv.cap.share.payment.electricity", - "description": "The Riverside Department of Community Action Partnership provides these electricity payment amount to applicants who qualify for the Sharing Households Assist Riverside's Energy program.", - "label": "Riverside County SHARE electricity payment amount", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-07-01": 24, - "2015-01-01": 24 - }, - "economy": true, - "household": true - }, - "gov.local.ca.riv.cap.share.payment.electricity_emergency": { - "type": "parameter", - "parameter": "gov.local.ca.riv.cap.share.payment.electricity_emergency", - "description": "The Riverside Department of Community Action Partnership provides these electricity emergency payment amount to applicants who qualify for the Sharing Households Assist Riverside's Energy program.", - "label": "Riverside County SHARE electricity emergency payment amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2024-07-01": 250, - "2015-01-01": 250 - }, - "economy": true, - "household": true - }, - "gov.local.ca.riv.cap.liheap": { - "type": "parameterNode", - "parameter": "gov.local.ca.riv.cap.liheap", - "description": null, - "label": "liheap", - "economy": true, - "household": true - }, - "gov.local.ca.riv.cap.liheap.countable_income": { - "type": "parameterNode", - "parameter": "gov.local.ca.riv.cap.liheap.countable_income", - "description": null, - "label": "countable income", - "economy": true, - "household": true - }, - "gov.local.ca.riv.cap.liheap.countable_income.sources": { - "type": "parameter", - "parameter": "gov.local.ca.riv.cap.liheap.countable_income.sources", - "description": "The Riverside Department of Community Action Partnership counts these income sources as countable income under the Low Income Home Energy Assistance Program.", - "label": "Riverside County LIHEAP countable income sources", - "unit": "list", - "period": "year", - "values": { - "2024-01-01": [ - "employment_income", - "self_employment_income", - "alimony_income", - "child_support_received", - "pension_income", - "unemployment_compensation", - "social_security", - "ssi", - "ca_tanf", - "ca_state_supplement" - ], - "2015-01-01": [ - "employment_income", - "self_employment_income", - "alimony_income", - "child_support_received", - "pension_income", - "unemployment_compensation", - "social_security", - "ssi", - "ca_tanf", - "ca_state_supplement" - ] - }, - "economy": true, - "household": true - }, - "gov.local.ca.sf": { - "type": "parameterNode", - "parameter": "gov.local.ca.sf", - "description": null, - "label": "sf", - "economy": true, - "household": true - }, - "gov.local.ca.sf.wftc": { - "type": "parameterNode", - "parameter": "gov.local.ca.sf.wftc", - "description": null, - "label": "wftc", - "economy": true, - "household": true - }, - "gov.local.ca.sf.wftc.amount": { - "type": "parameter", - "parameter": "gov.local.ca.sf.wftc.amount", - "description": "San Francisco provides this working families tax credit amount.", - "label": "San Francisco Working Families Tax Credit amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2022-01-01": 250, - "2015-01-01": 250 - }, - "economy": true, - "household": true - }, - "gov.local.ca.la": { - "type": "parameterNode", - "parameter": "gov.local.ca.la", - "description": null, - "label": "Los Angeles", - "economy": true, - "household": true - }, - "gov.local.ca.la.dss": { - "type": "parameterNode", - "parameter": "gov.local.ca.la.dss", - "description": null, - "label": "dss", - "economy": true, - "household": true - }, - "gov.local.ca.la.dss.expectant_parent_payment": { - "type": "parameterNode", - "parameter": "gov.local.ca.la.dss.expectant_parent_payment", - "description": null, - "label": "expectant parent payment", - "economy": true, - "household": true - }, - "gov.local.ca.la.dss.expectant_parent_payment.pregnancy_month": { - "type": "parameterNode", - "parameter": "gov.local.ca.la.dss.expectant_parent_payment.pregnancy_month", - "description": null, - "label": "pregnancy month", - "economy": true, - "household": true - }, - "gov.local.ca.la.dss.expectant_parent_payment.pregnancy_month.max": { - "type": "parameter", - "parameter": "gov.local.ca.la.dss.expectant_parent_payment.pregnancy_month.max", - "description": "The California Department of Social Services provides the Expectant Parent Payment on and before this pregnancy month.", - "label": "California Department of Social Services Expectant Parent Payment maximum pregnancy month", - "unit": "int", - "period": "year", - "values": { - "2022-01-01": 9, - "2015-01-01": 9 - }, - "economy": true, - "household": true - }, - "gov.local.ca.la.dss.expectant_parent_payment.pregnancy_month.min": { - "type": "parameter", - "parameter": "gov.local.ca.la.dss.expectant_parent_payment.pregnancy_month.min", - "description": "The California Department of Social Services provides the Expectant Parent Payment on and after this pregnancy month.", - "label": "California Department of Social Services Expectant Parent Payment pregnancy months", - "unit": "int", - "period": "year", - "values": { - "2022-01-01": 6, - "2015-01-01": 6 - }, - "economy": true, - "household": true - }, - "gov.local.ca.la.dss.expectant_parent_payment.amount": { - "type": "parameter", - "parameter": "gov.local.ca.la.dss.expectant_parent_payment.amount", - "description": "The California Department of Social Services provides the following Expectant Parent Payment.", - "label": "California Department of Social Services Expectant Parent Payment amount", - "unit": "currency-USD", - "period": "month", - "values": { - "2022-01-01": 900, - "2015-01-01": 900 - }, - "economy": true, - "household": true - }, - "gov.local.ca.la.dss.infant_supplement": { - "type": "parameterNode", - "parameter": "gov.local.ca.la.dss.infant_supplement", - "description": null, - "label": "infant supplement", - "economy": true, - "household": true - }, - "gov.local.ca.la.dss.infant_supplement.amount": { - "type": "parameterNode", - "parameter": "gov.local.ca.la.dss.infant_supplement.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.local.ca.la.dss.infant_supplement.amount.base": { - "type": "parameter", - "parameter": "gov.local.ca.la.dss.infant_supplement.amount.base", - "description": "The California Department of Social Services provides the following base Infant Supplement amount.", - "label": "California Department of Social Services Infant Supplement base amount", - "unit": "currency-USD", - "period": "month", - "values": { - "2022-01-01": 900, - "2015-01-01": 900 - }, - "economy": true, - "household": true - }, - "gov.local.ca.la.dss.infant_supplement.amount.group_home": { - "type": "parameter", - "parameter": "gov.local.ca.la.dss.infant_supplement.amount.group_home", - "description": "The California Department of Social Services provides the following Infant Supplement amount for filers in group homes or STRTP placements.", - "label": "California Department of Social Services Infant Supplement group home amount", - "unit": "currency-USD", - "period": "month", - "values": { - "2022-01-01": 1379, - "2015-01-01": 1379 - }, - "economy": true, - "household": true - }, - "gov.local.ca.la.general_relief": { - "type": "parameterNode", - "parameter": "gov.local.ca.la.general_relief", - "description": null, - "label": "general relief", - "economy": true, - "household": true - }, - "gov.local.ca.la.general_relief.income_sources": { - "type": "parameter", - "parameter": "gov.local.ca.la.general_relief.income_sources", - "description": "Los Angeles county accounts for these income sources after state and federal deductions under the general relief program.", - "label": "Los Angeles County general relief income sources", - "unit": "list", - "period": "year", - "values": { - "2021-07-01": [ - "veterans_benefits", - "unemployment_compensation", - "ca_state_disability_insurance", - "irs_employment_income", - "self_employment_income", - "ssi", - "social_security", - "tanf" - ], - "2015-01-01": [ - "veterans_benefits", - "unemployment_compensation", - "ca_state_disability_insurance", - "irs_employment_income", - "self_employment_income", - "ssi", - "social_security", - "tanf" - ] - }, - "economy": true, - "household": true - }, - "gov.local.ca.la.general_relief.amount": { - "type": "parameterNode", - "parameter": "gov.local.ca.la.general_relief.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.local.ca.la.general_relief.amount.married": { - "type": "parameter", - "parameter": "gov.local.ca.la.general_relief.amount.married", - "description": "Los Angeles county provides a cash grant of this amount to married filers under the general relief program.", - "label": "Los Angeles County general relief married amount", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-07-01": 375, - "2015-01-01": 375 - }, - "economy": true, - "household": true - }, - "gov.local.ca.la.general_relief.amount.single": { - "type": "parameter", - "parameter": "gov.local.ca.la.general_relief.amount.single", - "description": "Los Angeles county provides a cash grant of this amount to single filers under the general relief program.", - "label": "Los Angeles County general relief single amount", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-07-01": 221, - "2015-01-01": 221 - }, - "economy": true, - "household": true - }, - "gov.local.ca.la.general_relief.housing_subsidy": { - "type": "parameterNode", - "parameter": "gov.local.ca.la.general_relief.housing_subsidy", - "description": null, - "label": "housing subsidy", - "economy": true, - "household": true - }, - "gov.local.ca.la.general_relief.housing_subsidy.move_in_assistance": { - "type": "parameter", - "parameter": "gov.local.ca.la.general_relief.housing_subsidy.move_in_assistance", - "description": "Los Angeles county provides this once-in-a-lifetime move-in assistance payment.", - "label": "Los Angeles County general relief housing subsidy move-in assistance", - "unit": "currency_USD", - "period": "year", - "values": { - "2021-07-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.local.ca.la.general_relief.housing_subsidy.amount": { - "type": "parameterNode", - "parameter": "gov.local.ca.la.general_relief.housing_subsidy.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.local.ca.la.general_relief.housing_subsidy.amount.married": { - "type": "parameter", - "parameter": "gov.local.ca.la.general_relief.housing_subsidy.amount.married", - "description": "Los Angeles county provides a housing subsidy of this amount under the general relief program for couples.", - "label": "Los Angeles County general relief housing subsidy married amount", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-07-01": 950, - "2015-01-01": 950 - }, - "economy": true, - "household": true - }, - "gov.local.ca.la.general_relief.housing_subsidy.amount.single": { - "type": "parameter", - "parameter": "gov.local.ca.la.general_relief.housing_subsidy.amount.single", - "description": "Los Angeles county provides a housing subsidy of this amount under the general relief program for single filers.", - "label": "Los Angeles County general relief housing subsidy single amount", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-07-01": 475, - "2015-01-01": 475 - }, - "economy": true, - "household": true - }, - "gov.local.ca.la.general_relief.housing_subsidy.age_eligibility": { - "type": "parameterNode", - "parameter": "gov.local.ca.la.general_relief.housing_subsidy.age_eligibility", - "description": "Los Angeles county qualifies filers for the housing subsidy under the general relief program, based on their age.", - "label": "Los Angeles County general relief housing subsidy age eligibility" - }, - "gov.local.ca.la.general_relief.housing_subsidy.age_eligibility[0]": { - "type": "parameterNode", - "parameter": "gov.local.ca.la.general_relief.housing_subsidy.age_eligibility[0]", - "description": null, - "label": "bracket 1" - }, - "gov.local.ca.la.general_relief.housing_subsidy.age_eligibility[0].threshold": { - "type": "parameter", - "parameter": "gov.local.ca.la.general_relief.housing_subsidy.age_eligibility[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": "year", - "values": { - "2021-07-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.local.ca.la.general_relief.housing_subsidy.age_eligibility[0].amount": { - "type": "parameter", - "parameter": "gov.local.ca.la.general_relief.housing_subsidy.age_eligibility[0].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": "year", - "values": { - "2021-07-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.local.ca.la.general_relief.housing_subsidy.age_eligibility[1]": { - "type": "parameterNode", - "parameter": "gov.local.ca.la.general_relief.housing_subsidy.age_eligibility[1]", - "description": null, - "label": "bracket 2" - }, - "gov.local.ca.la.general_relief.housing_subsidy.age_eligibility[1].threshold": { - "type": "parameter", - "parameter": "gov.local.ca.la.general_relief.housing_subsidy.age_eligibility[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": "year", - "values": { - "2021-07-01": 18, - "2015-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.local.ca.la.general_relief.housing_subsidy.age_eligibility[1].amount": { - "type": "parameter", - "parameter": "gov.local.ca.la.general_relief.housing_subsidy.age_eligibility[1].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": "year", - "values": { - "2021-07-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.local.ca.la.general_relief.housing_subsidy.age_eligibility[2]": { - "type": "parameterNode", - "parameter": "gov.local.ca.la.general_relief.housing_subsidy.age_eligibility[2]", - "description": null, - "label": "bracket 3" - }, - "gov.local.ca.la.general_relief.housing_subsidy.age_eligibility[2].threshold": { - "type": "parameter", - "parameter": "gov.local.ca.la.general_relief.housing_subsidy.age_eligibility[2].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": "year", - "values": { - "2021-07-01": 25, - "2015-01-01": 25 - }, - "economy": true, - "household": true - }, - "gov.local.ca.la.general_relief.housing_subsidy.age_eligibility[2].amount": { - "type": "parameter", - "parameter": "gov.local.ca.la.general_relief.housing_subsidy.age_eligibility[2].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": "year", - "values": { - "2021-07-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.local.ca.la.general_relief.housing_subsidy.rent_contribution": { - "type": "parameterNode", - "parameter": "gov.local.ca.la.general_relief.housing_subsidy.rent_contribution", - "description": null, - "label": "rent contribution", - "economy": true, - "household": true - }, - "gov.local.ca.la.general_relief.housing_subsidy.rent_contribution.married": { - "type": "parameter", - "parameter": "gov.local.ca.la.general_relief.housing_subsidy.rent_contribution.married", - "description": "Los Angeles county requires married filers who receive the general relief grant to contribute this amout of the total garnt towards their rent.", - "label": "Los Angeles County general relief housing subsidy married rent contribution", - "unit": "currency_USD", - "period": "month", - "values": { - "2021-07-01": 200, - "2015-01-01": 200 - }, - "economy": true, - "household": true - }, - "gov.local.ca.la.general_relief.housing_subsidy.rent_contribution.single": { - "type": "parameter", - "parameter": "gov.local.ca.la.general_relief.housing_subsidy.rent_contribution.single", - "description": "Los Angeles county requires single filers who receive the general relief grant to contribute this amout of the total garnt towards their rent.", - "label": "Los Angeles County general relief housing subsidy single rent contribution", - "unit": "currency_USD", - "period": "month", - "values": { - "2021-07-01": 100, - "2015-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.local.ca.la.general_relief.eligibility": { - "type": "parameterNode", - "parameter": "gov.local.ca.la.general_relief.eligibility", - "description": null, - "label": "eligibility", - "economy": true, - "household": true - }, - "gov.local.ca.la.general_relief.eligibility.age_threshold": { - "type": "parameter", - "parameter": "gov.local.ca.la.general_relief.eligibility.age_threshold", - "description": "Los Angeles county qualifies filers for the general relief program at this age or older.", - "label": "Los Angeles County general relief age eligiblity threshold", - "unit": "year", - "period": "year", - "values": { - "2021-07-01": 18, - "2015-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.local.ca.la.general_relief.eligibility.limit": { - "type": "parameterNode", - "parameter": "gov.local.ca.la.general_relief.eligibility.limit", - "description": null, - "label": "limit", - "economy": true, - "household": true - }, - "gov.local.ca.la.general_relief.eligibility.limit.home_value": { - "type": "parameter", - "parameter": "gov.local.ca.la.general_relief.eligibility.limit.home_value", - "description": "Los Angeles county qualifies filers for the general relief program with home value at or below this limit.", - "label": "Los Angeles County general relief home value limit", - "unit": "currency_USD", - "period": "year", - "values": { - "2021-07-01": 34000, - "2015-01-01": 34000 - }, - "economy": true, - "household": true - }, - "gov.local.ca.la.general_relief.eligibility.limit.income": { - "type": "parameterNode", - "parameter": "gov.local.ca.la.general_relief.eligibility.limit.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.local.ca.la.general_relief.eligibility.limit.income.recipient": { - "type": "parameter", - "parameter": "gov.local.ca.la.general_relief.eligibility.limit.income.recipient", - "description": "Los Angeles county qualifies recipient filers for the general relief program with income below this limit.", - "label": "Los Angeles County general relief recipient income limit", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-07-01": 621, - "2015-01-01": 621 - }, - "economy": true, - "household": true - }, - "gov.local.ca.la.general_relief.eligibility.limit.income.applicant": { - "type": "parameterNode", - "parameter": "gov.local.ca.la.general_relief.eligibility.limit.income.applicant", - "description": null, - "label": "applicant", - "economy": true, - "household": true - }, - "gov.local.ca.la.general_relief.eligibility.limit.income.applicant.married": { - "type": "parameter", - "parameter": "gov.local.ca.la.general_relief.eligibility.limit.income.applicant.married", - "description": "Los Angeles county qualifies married applicant filers for the general relief program with income below this limit.", - "label": "Los Angeles County general relief married applicant income limit", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-07-01": 375, - "2015-01-01": 375 - }, - "economy": true, - "household": true - }, - "gov.local.ca.la.general_relief.eligibility.limit.income.applicant.single": { - "type": "parameter", - "parameter": "gov.local.ca.la.general_relief.eligibility.limit.income.applicant.single", - "description": "Los Angeles county qualifies single applicant filers for the general relief program with income below this limit.", - "label": "Los Angeles County general relief single applicant income limit", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-07-01": 221, - "2015-01-01": 221 - }, - "economy": true, - "household": true - }, - "gov.local.ca.la.general_relief.eligibility.limit.cash": { - "type": "parameterNode", - "parameter": "gov.local.ca.la.general_relief.eligibility.limit.cash", - "description": null, - "label": "cash", - "economy": true, - "household": true - }, - "gov.local.ca.la.general_relief.eligibility.limit.cash.recipient": { - "type": "parameter", - "parameter": "gov.local.ca.la.general_relief.eligibility.limit.cash.recipient", - "description": "Los Angeles county qualifies recipient filers for the general relief program with cash in addition to money in the bank account below this limit.", - "label": "Los Angeles County general relief recipient cash value limit", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-07-01": 1500, - "2015-01-01": 1500 - }, - "economy": true, - "household": true - }, - "gov.local.ca.la.general_relief.eligibility.limit.cash.applicant": { - "type": "parameterNode", - "parameter": "gov.local.ca.la.general_relief.eligibility.limit.cash.applicant", - "description": null, - "label": "applicant", - "economy": true, - "household": true - }, - "gov.local.ca.la.general_relief.eligibility.limit.cash.applicant.married": { - "type": "parameter", - "parameter": "gov.local.ca.la.general_relief.eligibility.limit.cash.applicant.married", - "description": "Los Angeles county qualifies married applicant filers for the general relief program with cash in addition to money in the bank account below this limit.", - "label": "Los Angeles County general relief married applicant cash value limit", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-07-01": 200, - "2015-01-01": 200 - }, - "economy": true, - "household": true - }, - "gov.local.ca.la.general_relief.eligibility.limit.cash.applicant.single": { - "type": "parameter", - "parameter": "gov.local.ca.la.general_relief.eligibility.limit.cash.applicant.single", - "description": "Los Angeles county qualifies single applicant filers for the general relief program with cash in addition to money in the bank account below this limit.", - "label": "Los Angeles County general relief single applicant cash value limit", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-07-01": 100, - "2015-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.local.ca.la.general_relief.eligibility.limit.motor_vehicle": { - "type": "parameterNode", - "parameter": "gov.local.ca.la.general_relief.eligibility.limit.motor_vehicle", - "description": null, - "label": "motor vehicle", - "economy": true, - "household": true - }, - "gov.local.ca.la.general_relief.eligibility.limit.motor_vehicle.value": { - "type": "parameterNode", - "parameter": "gov.local.ca.la.general_relief.eligibility.limit.motor_vehicle.value", - "description": null, - "label": "value", - "economy": true, - "household": true - }, - "gov.local.ca.la.general_relief.eligibility.limit.motor_vehicle.value.homeless": { - "type": "parameter", - "parameter": "gov.local.ca.la.general_relief.eligibility.limit.motor_vehicle.value.homeless", - "description": "Los Angeles county qualifies homeless filers for the general relief program with motor vehicle value below this limit.", - "label": "Los Angeles County general relief homeless motor vehicle value limit", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-07-01": 11500, - "2015-01-01": 11500 - }, - "economy": true, - "household": true - }, - "gov.local.ca.la.general_relief.eligibility.limit.motor_vehicle.value.resident": { - "type": "parameter", - "parameter": "gov.local.ca.la.general_relief.eligibility.limit.motor_vehicle.value.resident", - "description": "Los Angeles county qualifies resident filers for the general relief program with motor vehicle value below this limit.", - "label": "Los Angeles County general relief resident motor vehicle value limit", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-07-01": 4500, - "2015-01-01": 4500 - }, - "economy": true, - "household": true - }, - "gov.local.ca.la.general_relief.eligibility.limit.motor_vehicle.cap": { - "type": "parameter", - "parameter": "gov.local.ca.la.general_relief.eligibility.limit.motor_vehicle.cap", - "description": "Los Angeles county caps the number of motor vehicles that a filer can own to this number under the general relief program.", - "label": "Los Angeles County general relief resident motor vehicle cap", - "unit": "motor-vehicle", - "period": "year", - "values": { - "2021-07-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.local.ca.la.general_relief.eligibility.limit.personal_property": { - "type": "parameter", - "parameter": "gov.local.ca.la.general_relief.eligibility.limit.personal_property", - "description": "Los Angeles county qualifies filers for the general relief program with personal property value below this limit.", - "label": "Los Angeles County general relief personal property value limit", - "unit": "currency_USD", - "period": "year", - "values": { - "2021-07-01": 2000, - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.local.ca.la.general_relief.phase_out": { - "type": "parameterNode", - "parameter": "gov.local.ca.la.general_relief.phase_out", - "description": null, - "label": "phase out", - "economy": true, - "household": true - }, - "gov.local.ca.la.general_relief.phase_out.start": { - "type": "parameter", - "parameter": "gov.local.ca.la.general_relief.phase_out.start", - "description": "Los Angeles county phases the general relief out for recipients with net income starting at this amount.", - "label": "Los Angeles County general relief phase out start", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-07-01": 201, - "2015-01-01": 201 - }, - "economy": true, - "household": true - }, - "gov.local.ca.la.general_relief.phase_out.max": { - "type": "parameter", - "parameter": "gov.local.ca.la.general_relief.phase_out.max", - "description": "Los Angeles county phases the general relief out for recipients with net income of up to this amount.", - "label": "Los Angeles County general relief phase out max", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-07-01": 620, - "2015-01-01": 620 - }, - "economy": true, - "household": true - }, - "gov.local.ca.la.dwp": { - "type": "parameterNode", - "parameter": "gov.local.ca.la.dwp", - "description": null, - "label": "dwp", - "economy": true, - "household": true - }, - "gov.local.ca.la.dwp.ez_save": { - "type": "parameterNode", - "parameter": "gov.local.ca.la.dwp.ez_save", - "description": null, - "label": "ez save", - "economy": true, - "household": true - }, - "gov.local.ca.la.dwp.ez_save.income_sources": { - "type": "parameter", - "parameter": "gov.local.ca.la.dwp.ez_save.income_sources", - "description": "Los Angeles accounts for the following income sources under the EZ Save program.", - "label": "Los Angeles County EZ Save income sources", - "unit": "list", - "period": "year", - "values": { - "2022-01-01": [ - "irs_employment_income", - "self_employment_income", - "child_support_received", - "alimony_income", - "social_security", - "ssi", - "tanf", - "snap", - "veterans_benefits", - "unemployment_compensation", - "pension_income" - ], - "2015-01-01": [ - "irs_employment_income", - "self_employment_income", - "child_support_received", - "alimony_income", - "social_security", - "ssi", - "tanf", - "snap", - "veterans_benefits", - "unemployment_compensation", - "pension_income" - ] - }, - "economy": true, - "household": true - }, - "gov.local.ca.la.dwp.ez_save.eligibility": { - "type": "parameterNode", - "parameter": "gov.local.ca.la.dwp.ez_save.eligibility", - "description": null, - "label": "eligibility", - "economy": true, - "household": true - }, - "gov.local.ca.la.dwp.ez_save.eligibility.fpg_limit_increase": { - "type": "parameter", - "parameter": "gov.local.ca.la.dwp.ez_save.eligibility.fpg_limit_increase", - "description": "The Los Angeles Department of Water and Power limits the EZ Save program to households with income below this percentage of the federal poverty line.", - "label": "Los Angeles County EZ Save FPG limit", - "unit": "/1", - "period": "year", - "values": { - "2022-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.local.ca.la.dwp.ez_save.eligibility.household_size_floor": { - "type": "parameter", - "parameter": "gov.local.ca.la.dwp.ez_save.eligibility.household_size_floor", - "description": "Los Angeles County floors the household size to this number under the EZ Save program.", - "label": "Los Angeles County EZ Save household size floor", - "unit": "person", - "period": "year", - "values": { - "2022-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.local.ca.la.dwp.ez_save.amount": { - "type": "parameter", - "parameter": "gov.local.ca.la.dwp.ez_save.amount", - "description": "The Los Angeles Department of Water and Power discounts electricity bills by this amount each month for EZ Save participants.", - "label": "Los Angeles County EZ Save amount", - "unit": "currency-USD", - "period": "month", - "values": { - "2022-01-01": 8.17, - "2015-01-01": 8.17 - }, - "economy": true, - "household": true - }, - "gov.local.md": { - "type": "parameterNode", - "parameter": "gov.local.md", - "description": null, - "label": "md", - "economy": true, - "household": true - }, - "gov.local.md.montgomery": { - "type": "parameterNode", - "parameter": "gov.local.md.montgomery", - "description": null, - "label": "montgomery", - "economy": true, - "household": true - }, - "gov.local.md.montgomery.tax": { - "type": "parameterNode", - "parameter": "gov.local.md.montgomery.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.local.md.montgomery.tax.income": { - "type": "parameterNode", - "parameter": "gov.local.md.montgomery.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.local.md.montgomery.tax.income.credits": { - "type": "parameterNode", - "parameter": "gov.local.md.montgomery.tax.income.credits", - "description": null, - "label": "credits", - "economy": true, - "household": true - }, - "gov.local.md.montgomery.tax.income.credits.eitc": { - "type": "parameterNode", - "parameter": "gov.local.md.montgomery.tax.income.credits.eitc", - "description": null, - "label": "Earned Income Tax Credit", - "economy": true, - "household": true - }, - "gov.local.md.montgomery.tax.income.credits.eitc.refundable": { - "type": "parameterNode", - "parameter": "gov.local.md.montgomery.tax.income.credits.eitc.refundable", - "description": null, - "label": "refundable", - "economy": true, - "household": true - }, - "gov.local.md.montgomery.tax.income.credits.eitc.refundable.match": { - "type": "parameter", - "parameter": "gov.local.md.montgomery.tax.income.credits.eitc.refundable.match", - "description": "Montgomery County matches this percentage of the refundable Maryland Earned Income Tax Credit.", - "label": "Montgomery County EITC match", - "unit": "/1", - "period": "year", - "values": { - "2023-07-01": 0.56, - "2020-01-01": 1, - "2016-01-01": 0.95, - "2015-01-01": 0.9 - }, - "economy": true, - "household": true - }, - "gov.fcc": { - "type": "parameterNode", - "parameter": "gov.fcc", - "description": null, - "label": "Federal Communications Commission (FCC)", - "economy": false, - "household": true - }, - "gov.fcc.acp": { - "type": "parameterNode", - "parameter": "gov.fcc.acp", - "description": null, - "label": "Affordable Connectivity Program (ACP)", - "economy": false, - "household": true - }, - "gov.fcc.acp.amount": { - "type": "parameterNode", - "parameter": "gov.fcc.acp.amount", - "description": null, - "label": "amount", - "economy": false, - "household": true - }, - "gov.fcc.acp.amount.tribal": { - "type": "parameter", - "parameter": "gov.fcc.acp.amount.tribal", - "description": "Maximum monthly Affordable Connectivity Program (ACP) amount for Tribal lands", - "label": "Affordable Connectivity Program amount for households on Tribal lands", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-06-01": 0, - "2022-01-01": 75, - "2015-01-01": 75 - }, - "economy": false, - "household": true - }, - "gov.fcc.acp.amount.standard": { - "type": "parameter", - "parameter": "gov.fcc.acp.amount.standard", - "description": "Maximum monthly Affordable Connectivity Program (ACP) amount for non-Tribal lands", - "label": "Affordable Connectivity Program amount for households not on Tribal lands", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-06-01": 0, - "2022-01-01": 30, - "2015-01-01": 30 - }, - "economy": false, - "household": true - }, - "gov.fcc.acp.categorical_eligibility": { - "type": "parameter", - "parameter": "gov.fcc.acp.categorical_eligibility", - "description": "Program eligibility or participation that entitles a household to the Affordable Connectivity Program (ACP)", - "label": "categorical eligibility", - "unit": null, - "period": "month", - "values": { - "2022-01-01": [ - "lifeline", - "free_school_meals", - "reduced_price_school_meals", - "spm_unit_pell_grant", - "wic" - ], - "2015-01-01": [ - "lifeline", - "free_school_meals", - "reduced_price_school_meals", - "spm_unit_pell_grant", - "wic" - ] - }, - "economy": false, - "household": true - }, - "gov.fcc.acp.fpg_limit": { - "type": "parameter", - "parameter": "gov.fcc.acp.fpg_limit", - "description": "Maximum percent of the federal poverty guideline to be eligible for the Affordable Connectivity Program", - "label": "Affordable Connectivity Program income limit as a percent of the poverty line", - "unit": "/1", - "period": "month", - "values": { - "2022-01-01": 2, - "2015-01-01": 2 - }, - "economy": false, - "household": true - }, - "gov.fcc.lifeline": { - "type": "parameterNode", - "parameter": "gov.fcc.lifeline", - "description": null, - "label": "lifeline", - "economy": false, - "household": true - }, - "gov.fcc.lifeline.amount": { - "type": "parameterNode", - "parameter": "gov.fcc.lifeline.amount", - "description": null, - "label": "amount", - "economy": false, - "household": true - }, - "gov.fcc.lifeline.amount.rural_tribal_supplement": { - "type": "parameter", - "parameter": "gov.fcc.lifeline.amount.rural_tribal_supplement", - "description": "Lifeline supplement for rural Tribal areas", - "label": "Lifeline supplement for rural Tribal areas", - "unit": "currency-USD", - "period": "month", - "values": { - "2012-04-02": 25 - }, - "economy": false, - "household": true - }, - "gov.fcc.lifeline.amount.standard": { - "type": "parameter", - "parameter": "gov.fcc.lifeline.amount.standard", - "description": "Maximum Lifeline benefit amount", - "label": "Lifeline maximum benefit", - "unit": "currency-USD", - "period": "month", - "values": { - "2012-04-02": 9.25 - }, - "economy": false, - "household": true - }, - "gov.fcc.lifeline.categorical_eligibility": { - "type": "parameter", - "parameter": "gov.fcc.lifeline.categorical_eligibility", - "description": "Program participation that entitles a non-tribal household to the Lifeline program", - "label": "Lifeline non-tribal qualifying programs", - "unit": "list", - "period": "month", - "values": { - "2016-12-01": ["medicaid", "snap", "ssi"], - "2015-01-01": ["medicaid", "snap", "ssi"] - }, - "economy": false, - "household": true - }, - "gov.fcc.lifeline.fpg_limit": { - "type": "parameter", - "parameter": "gov.fcc.lifeline.fpg_limit", - "description": "Maximum percent of the federal poverty guideline to be eligible for Lifeline", - "label": "Lifeline maximum income as a percent of the poverty line", - "unit": "/1", - "period": "month", - "values": { - "2016-12-01": 1.35, - "2015-01-01": 1.35 - }, - "economy": false, - "household": true - }, - "gov.fcc.lifeline.tribal_categorical_eligibility": { - "type": "parameter", - "parameter": "gov.fcc.lifeline.tribal_categorical_eligibility", - "description": "Program participation that entitles a tribal household to the Lifeline program", - "label": "Lifeline tribal qualifying programs", - "unit": "list", - "period": "month", - "values": { - "2016-12-01": ["head_start", "fdpir", "tanf"], - "2015-01-01": ["head_start", "fdpir", "tanf"] - }, - "economy": false, - "household": true - }, - "gov.fcc.ebb": { - "type": "parameterNode", - "parameter": "gov.fcc.ebb", - "description": null, - "label": "Emergency Broadband Benefit (EBB)", - "economy": false, - "household": true - }, - "gov.fcc.ebb.prior_enrollment_required": { - "type": "parameter", - "parameter": "gov.fcc.ebb.prior_enrollment_required", - "description": "Whether a household must already be enrolled in the Emergency Broadband Benefit to receive it", - "label": "prior enrollment required", - "unit": null, - "period": null, - "values": { - "2022-01-01": true, - "2021-05-12": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.fcc.ebb.amount": { - "type": "parameterNode", - "parameter": "gov.fcc.ebb.amount", - "description": null, - "label": "amount", - "economy": false, - "household": true - }, - "gov.fcc.ebb.amount.tribal": { - "type": "parameter", - "parameter": "gov.fcc.ebb.amount.tribal", - "description": "Maximum monthly Emergency Broadband Benefit (EBB) amount for Tribal lands", - "label": "tribal", - "unit": "currency-USD", - "period": "month", - "values": { - "2022-03-01": 0, - "2021-05-12": 75, - "2015-01-01": 75 - }, - "economy": false, - "household": true - }, - "gov.fcc.ebb.amount.standard": { - "type": "parameter", - "parameter": "gov.fcc.ebb.amount.standard", - "description": "Maximum monthly Emergency Broadband Benefit (EBB) amount for non-Tribal lands", - "label": "standard", - "unit": "currency-USD", - "period": "month", - "values": { - "2022-03-01": 0, - "2021-05-12": 50, - "2015-01-01": 50 - }, - "economy": false, - "household": true - }, - "gov.fcc.ebb.categorical_eligibility": { - "type": "parameter", - "parameter": "gov.fcc.ebb.categorical_eligibility", - "description": "Program eligibility or participation that entitles a household to the Emergency Broadband Benefit (EBB) program", - "label": "categorical eligibility", - "unit": null, - "period": "month", - "values": { - "2021-05-12": [ - "is_lifeline_eligible", - "free_school_meals", - "reduced_price_school_meals", - "spm_unit_pell_grant", - "experienced_covid_income_loss" - ], - "2015-01-01": [ - "is_lifeline_eligible", - "free_school_meals", - "reduced_price_school_meals", - "spm_unit_pell_grant", - "experienced_covid_income_loss" - ] - }, - "economy": false, - "household": true - }, - "gov.territories": { - "type": "parameterNode", - "parameter": "gov.territories", - "description": null, - "label": "territories", - "economy": true, - "household": true - }, - "gov.territories.pr": { - "type": "parameterNode", - "parameter": "gov.territories.pr", - "description": null, - "label": "Puerto Rico", - "economy": true, - "household": true - }, - "gov.territories.pr.tax": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.gross_income": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.gross_income", - "description": null, - "label": "gross income", - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.gross_income.sources": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.gross_income.sources", - "description": "Puerto Rico accounts for the following gross income sources.", - "label": "Puerto Rico gross income sources", - "unit": "list", - "period": "year", - "values": { - "2019-02-20": [ - "irs_employment_income", - "self_employment_income", - "partnership_s_corp_income", - "taxable_retirement_distributions", - "capital_gains", - "taxable_interest_income", - "dividend_income", - "taxable_pension_income", - "miscellaneous_income", - "alimony_income", - "farm_income", - "rental_income", - "taxable_unemployment_compensation", - "taxable_social_security", - "illicit_income", - "estate_income", - "debt_relief" - ], - "2015-01-01": [ - "irs_employment_income", - "self_employment_income", - "partnership_s_corp_income", - "taxable_retirement_distributions", - "capital_gains", - "taxable_interest_income", - "dividend_income", - "taxable_pension_income", - "miscellaneous_income", - "alimony_income", - "farm_income", - "rental_income", - "taxable_unemployment_compensation", - "taxable_social_security", - "illicit_income", - "estate_income", - "debt_relief" - ] - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.credits", - "description": null, - "label": "credits", - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.refundable": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.refundable", - "description": "Puerto Rico provides the following refundable income tax credits.", - "label": "Puerto Rico refundable credits", - "unit": "list", - "period": "year", - "values": { - "2023-01-01": [ - "pr_low_income_credit", - "pr_compensatory_low_income_credit", - "pr_earned_income_credit" - ], - "2021-01-01": ["pr_low_income_credit", "pr_compensatory_low_income_credit"], - "2015-01-01": ["pr_low_income_credit", "pr_compensatory_low_income_credit"] - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.low_income": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.credits.low_income", - "description": null, - "label": "low income", - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.low_income.amount": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.credits.low_income.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.low_income.amount.base": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.low_income.amount.base", - "description": "Puerto Rico provides the following low income tax credit amount.", - "label": "Puerto Rico low income tax credit amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2011-01-01": 400 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.low_income.amount.additional": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.credits.low_income.amount.additional", - "description": "Puerto Rico provides a compensatory tax credit of this amount for low-income pensioners, based on pension income.", - "label": "Puerto Rico compensatory tax credit for low-income pensioners amount" - }, - "gov.territories.pr.tax.income.credits.low_income.amount.additional[0]": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.credits.low_income.amount.additional[0]", - "description": null, - "label": "bracket 1" - }, - "gov.territories.pr.tax.income.credits.low_income.amount.additional[0].threshold": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.low_income.amount.additional[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.low_income.amount.additional[0].amount": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.low_income.amount.additional[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 300, - "2015-01-01": 300 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.low_income.amount.additional[1]": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.credits.low_income.amount.additional[1]", - "description": null, - "label": "bracket 2" - }, - "gov.territories.pr.tax.income.credits.low_income.amount.additional[1].threshold": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.low_income.amount.additional[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 4800, - "2015-01-01": 4800 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.low_income.amount.additional[1].amount": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.low_income.amount.additional[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.low_income.age_threshold": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.low_income.age_threshold", - "description": "Puerto Rico limits the low income tax credit to filers at or above this age threshold.", - "label": "Puerto Rico low income tax credit age threshold", - "unit": "year", - "period": "year", - "values": { - "2011-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.low_income.income_limit": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.credits.low_income.income_limit", - "description": "Puerto Rico limits the low income tax credit to filers below this income limit, based on the number of eligible people.", - "label": "Puerto Rico low income tax credit income limit" - }, - "gov.territories.pr.tax.income.credits.low_income.income_limit[0]": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.credits.low_income.income_limit[0]", - "description": null, - "label": "bracket 1" - }, - "gov.territories.pr.tax.income.credits.low_income.income_limit[0].threshold": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.low_income.income_limit[0].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2011-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.low_income.income_limit[0].amount": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.low_income.income_limit[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2011-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.low_income.income_limit[1]": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.credits.low_income.income_limit[1]", - "description": null, - "label": "bracket 2" - }, - "gov.territories.pr.tax.income.credits.low_income.income_limit[1].threshold": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.low_income.income_limit[1].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2011-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.low_income.income_limit[1].amount": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.low_income.income_limit[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2011-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.credits.earned_income", - "description": null, - "label": "earned income", - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.unearned_income": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.unearned_income", - "description": null, - "label": "unearned income", - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.unearned_income.limit": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.unearned_income.limit", - "description": "Puerto Rico limits the earned income credit to filers with unearned income below this threshold.", - "label": "Puerto Rico earned income credit unearned income limit", - "unit": "currency-USD", - "period": "year", - "values": { - "2023-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.unearned_income.sources": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.unearned_income.sources", - "description": "Puerto Rico accounts for the following unearned income sources, under the earned income tax credit.", - "label": "Puerto Rico earned income credit unearned income sources", - "unit": "list", - "period": "year", - "values": { - "2023-01-01": [ - "interest_income", - "dividend_income", - "rental_income", - "capital_gains", - "child_support_received" - ], - "2015-01-01": [ - "interest_income", - "dividend_income", - "rental_income", - "capital_gains", - "child_support_received" - ] - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.max_amount": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.max_amount", - "description": "Puerto Rico provides the following maximum amount of earned income credit.", - "label": "Puerto Rico earned income credit max amount" - }, - "gov.territories.pr.tax.income.credits.earned_income.max_amount[0]": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.max_amount[0]", - "description": null, - "label": "bracket 1" - }, - "gov.territories.pr.tax.income.credits.earned_income.max_amount[0].threshold": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.max_amount[0].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.max_amount[0].amount": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.max_amount[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 1656, - "2015-01-01": 1656 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.max_amount[1]": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.max_amount[1]", - "description": null, - "label": "bracket 2" - }, - "gov.territories.pr.tax.income.credits.earned_income.max_amount[1].threshold": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.max_amount[1].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2023-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.max_amount[1].amount": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.max_amount[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 3864, - "2015-01-01": 3864 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.max_amount[2]": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.max_amount[2]", - "description": null, - "label": "bracket 3" - }, - "gov.territories.pr.tax.income.credits.earned_income.max_amount[2].threshold": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.max_amount[2].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2023-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.max_amount[2].amount": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.max_amount[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 6072, - "2015-01-01": 6072 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.max_amount[3]": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.max_amount[3]", - "description": null, - "label": "bracket 4" - }, - "gov.territories.pr.tax.income.credits.earned_income.max_amount[3].threshold": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.max_amount[3].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2023-01-01": 3, - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.max_amount[3].amount": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.max_amount[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 7173, - "2015-01-01": 7173 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_in_rate": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_in_rate", - "description": "Puerto Rico phases the earned income credit in at this rate of state gross income.", - "label": "Puerto Rico earned income credit phase in rate" - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_in_rate[0]": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_in_rate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_in_rate[0].threshold": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_in_rate[0].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_in_rate[0].amount": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_in_rate[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.15, - "2015-01-01": 0.15 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_in_rate[1]": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_in_rate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_in_rate[1].threshold": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_in_rate[1].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2023-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_in_rate[1].amount": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_in_rate[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.3398, - "2015-01-01": 0.3398 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_in_rate[2]": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_in_rate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_in_rate[2].threshold": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_in_rate[2].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2023-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_in_rate[2].amount": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_in_rate[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.4, - "2015-01-01": 0.4 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_in_rate[3]": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_in_rate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_in_rate[3].threshold": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_in_rate[3].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2023-01-01": 3, - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_in_rate[3].amount": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_in_rate[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.4483, - "2015-01-01": 0.4483 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.eligibility": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.eligibility", - "description": null, - "label": "eligibility", - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.eligibility.separate_filer": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.eligibility.separate_filer", - "description": "Puerto Rico allows married filing separate filers eligible for the EITC when this is true.", - "label": "Puerto Rico earned income credit separate filers eligible", - "unit": "bool", - "period": null, - "values": { - "2023-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.eligibility.min": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.eligibility.min", - "description": "Puerto Rico limits the Earned Income Tax Credit to filers of this age or older.", - "label": "Puerto Rico earned income credit minimum age", - "unit": "year", - "period": "year", - "values": { - "2023-01-01": 19, - "2015-01-01": 19 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_out": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_out", - "description": null, - "label": "phase out", - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_out.rate": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_out.rate", - "description": "Puerto Rico phases the earned income credit out at this rate of state gross income based on the filer's number of dependents.", - "label": "Puerto Rico earned income credit phase out rate" - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_out.rate[0]": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_out.rate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_out.rate[0].threshold": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_out.rate[0].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_out.rate[0].amount": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_out.rate[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.15, - "2015-01-01": 0.15 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_out.rate[1]": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_out.rate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_out.rate[1].threshold": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_out.rate[1].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2023-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_out.rate[1].amount": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_out.rate[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.2692, - "2015-01-01": 0.2692 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_out.rate[2]": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_out.rate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_out.rate[2].threshold": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_out.rate[2].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2023-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_out.rate[2].amount": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_out.rate[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.3438, - "2015-01-01": 0.3438 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_out.rate[3]": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_out.rate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_out.rate[3].threshold": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_out.rate[3].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2023-01-01": 3, - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_out.rate[3].amount": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_out.rate[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.3421, - "2015-01-01": 0.3421 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold", - "description": null, - "label": "threshold", - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.joint": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.joint", - "description": "Puerto Rico phases the earned income credit out above this threshold of state gross income.", - "label": "Puerto Rico earned income credit phase out threshold" - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.joint[0]": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.joint[0].amount": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.joint[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 19870, - "2015-01-01": 19870 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.joint[1]": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2023-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.joint[1].amount": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.joint[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 24280, - "2015-01-01": 24280 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.joint[2]": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.joint[2].threshold": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2023-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.joint[2].amount": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.joint[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 27590, - "2015-01-01": 27590 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.joint[3]": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.joint[3]", - "description": null, - "label": "bracket 4" - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.joint[3].threshold": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.joint[3].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2023-01-01": 3, - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.joint[3].amount": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.joint[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 27590, - "2015-01-01": 27590 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.single": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.single", - "description": "Puerto Rico phases the earned income credit above this threshold of state gross income.", - "label": "Puerto Rico earned income credit phase out threshold" - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.single[0]": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.single[0]", - "description": null, - "label": "bracket 1" - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.single[0].threshold": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.single[0].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.single[0].amount": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.single[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 17660, - "2015-01-01": 17660 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.single[1]": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.single[1]", - "description": null, - "label": "bracket 2" - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.single[1].threshold": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.single[1].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2023-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.single[1].amount": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.single[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 19870, - "2015-01-01": 19870 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.single[2]": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.single[2]", - "description": null, - "label": "bracket 3" - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.single[2].threshold": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.single[2].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2023-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.single[2].amount": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.single[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 23180, - "2015-01-01": 23180 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.single[3]": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.single[3]", - "description": null, - "label": "bracket 4" - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.single[3].threshold": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.single[3].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2023-01-01": 3, - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.single[3].amount": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.credits.earned_income.phase_out.threshold.single[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 23180, - "2015-01-01": 23180 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.taxable_income": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.taxable_income", - "description": null, - "label": "taxable income", - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.taxable_income.exemptions": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.taxable_income.exemptions", - "description": null, - "label": "exemptions", - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.taxable_income.exemptions.dependent": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.taxable_income.exemptions.dependent", - "description": null, - "label": "dependent", - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.taxable_income.exemptions.dependent.amount": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.taxable_income.exemptions.dependent.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.taxable_income.exemptions.dependent.amount.separate": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.taxable_income.exemptions.dependent.amount.separate", - "description": "Puerto Rico provides the following dependent exemption amount for separate filers.", - "label": "Puerto Rico dependent exemption separate filers amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2023-01-01": 1250, - "2015-01-01": 1250 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.taxable_income.exemptions.dependent.amount.non_separate": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.taxable_income.exemptions.dependent.amount.non_separate", - "description": "Puerto Rico provides the following dependent exemption amount for non-separate filers.", - "label": "Puerto Rico dependent exemption non-separate filers amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2023-01-01": 2500, - "2015-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.taxable_income.deductions": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.taxable_income.deductions", - "description": null, - "label": "deductions", - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.taxable_income.deductions.education": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.taxable_income.deductions.education", - "description": null, - "label": "education", - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.taxable_income.deductions.education.age_threshold": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.taxable_income.deductions.education.age_threshold", - "description": "Puerto Rico limits the education contribution deduction to taxpayers under this age.", - "label": "Puerto Rico education contribution deduction age threshold", - "unit": "year", - "period": "year", - "values": { - "2023-01-01": 26, - "2015-01-01": 26 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.taxable_income.deductions.education.max": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.taxable_income.deductions.education.max", - "description": "Puerto Rico allows this maximum amount for the education contribution deduction for each beneficiary.", - "label": "Puerto Rico education contribution deduction maximum", - "unit": "currency-USD", - "period": "year", - "values": { - "2023-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.taxable_income.deductions.charity": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.taxable_income.deductions.charity", - "description": null, - "label": "charity", - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.taxable_income.deductions.charity.floor": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.taxable_income.deductions.charity.floor", - "description": "Puerto Rico deducts charitable contributions exceeding this percentage of adjusted gross income from taxable income.", - "label": "Puerto Rico charity contributions deduction floor", - "unit": "/1", - "period": "year", - "values": { - "2023-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.taxable_income.deductions.mortgage": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.taxable_income.deductions.mortgage", - "description": null, - "label": "mortgage", - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.taxable_income.deductions.mortgage.age_threshold": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.taxable_income.deductions.mortgage.age_threshold", - "description": "Puerto Rico applies the mortgage deduction limitations to taxpayers under this age.", - "label": "Puerto Rico mortgage deduction age threshold", - "unit": "year", - "period": "year", - "values": { - "2023-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.taxable_income.deductions.mortgage.max": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.taxable_income.deductions.mortgage.max", - "description": "Puerto Rico allows this maximum amount for the mortgage interest deduction.", - "label": "Puerto Rico mortgage deduction maximum", - "unit": "currency-USD", - "period": "year", - "values": { - "2023-01-01": 35000, - "2015-01-01": 35000 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.taxable_income.deductions.mortgage.floor": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.taxable_income.deductions.mortgage.floor", - "description": "Puerto Rico limits home mortgage deduction to this percentage of the adjusted gross income.", - "label": "Puerto Rico mortgage deduction floor", - "unit": "/1", - "period": "year", - "values": { - "2023-01-01": 0.3, - "2015-01-01": 0.3 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.taxable_income.deductions.retirement": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.taxable_income.deductions.retirement", - "description": null, - "label": "retirement", - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.taxable_income.deductions.retirement.age_threshold": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.taxable_income.deductions.retirement.age_threshold", - "description": "Puerto Rico limits the retirement contribution deduction to taxpayers under this age.", - "label": "Puerto Rico retirement deduction age threshold", - "unit": "year", - "period": "year", - "values": { - "2023-01-01": 75, - "2015-01-01": 75 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.taxable_income.deductions.retirement.max": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.taxable_income.deductions.retirement.max", - "description": "Puerto Rico allows this maximum amount for the retirement contribution deduction.", - "label": "Puerto Rico retirement deduction maximum", - "unit": "currency-USD", - "period": "year", - "values": { - "2023-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.taxable_income.deductions.casualty_loss": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.taxable_income.deductions.casualty_loss", - "description": null, - "label": "casualty loss", - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.taxable_income.deductions.casualty_loss.separate_percentage": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.taxable_income.deductions.casualty_loss.separate_percentage", - "description": "Puerto Rico deducts this percentage of casualty loss for separate filers.", - "label": "Puerto Rico casualty loss deduction separate filing status percentage", - "unit": "/1", - "period": "year", - "values": { - "2023-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.taxable_income.deductions.medical": { - "type": "parameterNode", - "parameter": "gov.territories.pr.tax.income.taxable_income.deductions.medical", - "description": null, - "label": "medical", - "economy": true, - "household": true - }, - "gov.territories.pr.tax.income.taxable_income.deductions.medical.floor": { - "type": "parameter", - "parameter": "gov.territories.pr.tax.income.taxable_income.deductions.medical.floor", - "description": "Puerto Rico deducts medical expenses exceeding this percentage of adjusted gross income from taxable income.", - "label": "Puerto Rico medical expense deduction floor", - "unit": "/1", - "period": "year", - "values": { - "2023-01-01": 0.06, - "2015-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.hud": { - "type": "parameterNode", - "parameter": "gov.hud", - "description": null, - "label": "Department of Housing and Urban Development (HUD)", - "economy": false, - "household": false - }, - "gov.hud.abolition": { - "type": "parameter", - "parameter": "gov.hud.abolition", - "description": "HUD stops providing housing subsidies when this is toggled.", - "label": "Housing subsidy abolition", - "unit": "abolition", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hud.total_tenant_payment": { - "type": "parameterNode", - "parameter": "gov.hud.total_tenant_payment", - "description": null, - "label": "total tenant payment", - "economy": false, - "household": false - }, - "gov.hud.total_tenant_payment.income_share": { - "type": "parameter", - "parameter": "gov.hud.total_tenant_payment.income_share", - "description": "HUD total tenant payment share, monthly income", - "label": "TTP Income Share", - "unit": "/1", - "period": null, - "values": { - "2000-05-29": 0.1 - }, - "economy": false, - "household": false - }, - "gov.hud.total_tenant_payment.adjusted_income_share": { - "type": "parameter", - "parameter": "gov.hud.total_tenant_payment.adjusted_income_share", - "description": "HUD total tenant payment as a share of adjusted monthly income", - "label": "Total tenant payment adjusted income share", - "unit": "/1", - "period": null, - "values": { - "2000-05-29": 0.3 - }, - "economy": false, - "household": false - }, - "gov.hud.elderly_age_threshold": { - "type": "parameter", - "parameter": "gov.hud.elderly_age_threshold", - "description": "HUD applies special rules to people this age or older.", - "label": "HUD elderly age threshold", - "unit": "year", - "period": null, - "values": { - "2012-02-03": 62 - }, - "economy": false, - "household": false - }, - "gov.hud.ami_limit": { - "type": "parameterNode", - "parameter": "gov.hud.ami_limit", - "description": null, - "label": "Area Median Income (AMI) Limit", - "economy": false, - "household": false - }, - "gov.hud.ami_limit.per_person_exceeding_4": { - "type": "parameterNode", - "parameter": "gov.hud.ami_limit.per_person_exceeding_4", - "description": "Area median income limit increase for people exceeding 4.", - "label": "HUD area median income limit per person exceeding 4", - "economy": false, - "household": false - }, - "gov.hud.ami_limit.per_person_exceeding_4.MODERATE": { - "type": "parameter", - "parameter": "gov.hud.ami_limit.per_person_exceeding_4.MODERATE", - "description": null, - "label": "MODERATE", - "unit": "/1", - "period": null, - "values": { - "2000-10-31": 0.08 - }, - "economy": false, - "household": false - }, - "gov.hud.ami_limit.per_person_exceeding_4.LOW": { - "type": "parameter", - "parameter": "gov.hud.ami_limit.per_person_exceeding_4.LOW", - "description": null, - "label": "LOW", - "unit": "/1", - "period": null, - "values": { - "2000-10-31": 0.064 - }, - "economy": false, - "household": false - }, - "gov.hud.ami_limit.per_person_exceeding_4.VERY_LOW": { - "type": "parameter", - "parameter": "gov.hud.ami_limit.per_person_exceeding_4.VERY_LOW", - "description": null, - "label": "VERY LOW", - "unit": "/1", - "period": null, - "values": { - "2000-10-31": 0.048 - }, - "economy": false, - "household": false - }, - "gov.hud.ami_limit.per_person_exceeding_4.ESPECIALLY_LOW": { - "type": "parameter", - "parameter": "gov.hud.ami_limit.per_person_exceeding_4.ESPECIALLY_LOW", - "description": null, - "label": "ESPECIALLY LOW", - "unit": "/1", - "period": null, - "values": { - "2000-10-31": 0.04 - }, - "economy": false, - "household": false - }, - "gov.hud.ami_limit.per_person_exceeding_4.ABOVE_MODERATE": { - "type": "parameter", - "parameter": "gov.hud.ami_limit.per_person_exceeding_4.ABOVE_MODERATE", - "description": null, - "label": "ABOVE MODERATE", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hud.ami_limit.family_size": { - "type": "parameterNode", - "parameter": "gov.hud.ami_limit.family_size", - "description": "Area median income limit to qualify for HUD programs.", - "label": "HUD area median income limit", - "economy": false, - "household": false - }, - "gov.hud.ami_limit.family_size.MODERATE": { - "type": "parameterNode", - "parameter": "gov.hud.ami_limit.family_size.MODERATE", - "description": null, - "label": "MODERATE", - "economy": false, - "household": false - }, - "gov.hud.ami_limit.family_size.MODERATE.1": { - "type": "parameter", - "parameter": "gov.hud.ami_limit.family_size.MODERATE.1", - "description": null, - "label": "1", - "unit": "/1", - "period": null, - "values": { - "2000-10-31": 0.7 - }, - "economy": false, - "household": false - }, - "gov.hud.ami_limit.family_size.MODERATE.2": { - "type": "parameter", - "parameter": "gov.hud.ami_limit.family_size.MODERATE.2", - "description": null, - "label": "2", - "unit": "/1", - "period": null, - "values": { - "2000-10-31": 0.8 - }, - "economy": false, - "household": false - }, - "gov.hud.ami_limit.family_size.MODERATE.3": { - "type": "parameter", - "parameter": "gov.hud.ami_limit.family_size.MODERATE.3", - "description": null, - "label": "3", - "unit": "/1", - "period": null, - "values": { - "2000-10-31": 0.9 - }, - "economy": false, - "household": false - }, - "gov.hud.ami_limit.family_size.MODERATE.4": { - "type": "parameter", - "parameter": "gov.hud.ami_limit.family_size.MODERATE.4", - "description": null, - "label": "4", - "unit": "/1", - "period": null, - "values": { - "2000-10-31": 1 - }, - "economy": false, - "household": false - }, - "gov.hud.ami_limit.family_size.LOW": { - "type": "parameterNode", - "parameter": "gov.hud.ami_limit.family_size.LOW", - "description": null, - "label": "LOW", - "economy": false, - "household": false - }, - "gov.hud.ami_limit.family_size.LOW.1": { - "type": "parameter", - "parameter": "gov.hud.ami_limit.family_size.LOW.1", - "description": null, - "label": "1", - "unit": "/1", - "period": null, - "values": { - "2000-10-31": 0.56 - }, - "economy": false, - "household": false - }, - "gov.hud.ami_limit.family_size.LOW.2": { - "type": "parameter", - "parameter": "gov.hud.ami_limit.family_size.LOW.2", - "description": null, - "label": "2", - "unit": "/1", - "period": null, - "values": { - "2000-10-31": 0.64 - }, - "economy": false, - "household": false - }, - "gov.hud.ami_limit.family_size.LOW.3": { - "type": "parameter", - "parameter": "gov.hud.ami_limit.family_size.LOW.3", - "description": null, - "label": "3", - "unit": "/1", - "period": null, - "values": { - "2000-10-31": 0.72 - }, - "economy": false, - "household": false - }, - "gov.hud.ami_limit.family_size.LOW.4": { - "type": "parameter", - "parameter": "gov.hud.ami_limit.family_size.LOW.4", - "description": null, - "label": "4", - "unit": "/1", - "period": null, - "values": { - "2000-10-31": 0.8 - }, - "economy": false, - "household": false - }, - "gov.hud.ami_limit.family_size.VERY_LOW": { - "type": "parameterNode", - "parameter": "gov.hud.ami_limit.family_size.VERY_LOW", - "description": null, - "label": "VERY LOW", - "economy": false, - "household": false - }, - "gov.hud.ami_limit.family_size.VERY_LOW.1": { - "type": "parameter", - "parameter": "gov.hud.ami_limit.family_size.VERY_LOW.1", - "description": null, - "label": "1", - "unit": "/1", - "period": null, - "values": { - "2000-10-31": 0.42 - }, - "economy": false, - "household": false - }, - "gov.hud.ami_limit.family_size.VERY_LOW.2": { - "type": "parameter", - "parameter": "gov.hud.ami_limit.family_size.VERY_LOW.2", - "description": null, - "label": "2", - "unit": "/1", - "period": null, - "values": { - "2000-10-31": 0.48 - }, - "economy": false, - "household": false - }, - "gov.hud.ami_limit.family_size.VERY_LOW.3": { - "type": "parameter", - "parameter": "gov.hud.ami_limit.family_size.VERY_LOW.3", - "description": null, - "label": "3", - "unit": "/1", - "period": null, - "values": { - "2000-10-31": 0.54 - }, - "economy": false, - "household": false - }, - "gov.hud.ami_limit.family_size.VERY_LOW.4": { - "type": "parameter", - "parameter": "gov.hud.ami_limit.family_size.VERY_LOW.4", - "description": null, - "label": "4", - "unit": "/1", - "period": null, - "values": { - "2000-10-31": 0.6 - }, - "economy": false, - "household": false - }, - "gov.hud.ami_limit.family_size.ESPECIALLY_LOW": { - "type": "parameterNode", - "parameter": "gov.hud.ami_limit.family_size.ESPECIALLY_LOW", - "description": null, - "label": "ESPECIALLY LOW", - "economy": false, - "household": false - }, - "gov.hud.ami_limit.family_size.ESPECIALLY_LOW.1": { - "type": "parameter", - "parameter": "gov.hud.ami_limit.family_size.ESPECIALLY_LOW.1", - "description": null, - "label": "1", - "unit": "/1", - "period": null, - "values": { - "2000-10-31": 0.35 - }, - "economy": false, - "household": false - }, - "gov.hud.ami_limit.family_size.ESPECIALLY_LOW.2": { - "type": "parameter", - "parameter": "gov.hud.ami_limit.family_size.ESPECIALLY_LOW.2", - "description": null, - "label": "2", - "unit": "/1", - "period": null, - "values": { - "2000-10-31": 0.4 - }, - "economy": false, - "household": false - }, - "gov.hud.ami_limit.family_size.ESPECIALLY_LOW.3": { - "type": "parameter", - "parameter": "gov.hud.ami_limit.family_size.ESPECIALLY_LOW.3", - "description": null, - "label": "3", - "unit": "/1", - "period": null, - "values": { - "2000-10-31": 0.45 - }, - "economy": false, - "household": false - }, - "gov.hud.ami_limit.family_size.ESPECIALLY_LOW.4": { - "type": "parameter", - "parameter": "gov.hud.ami_limit.family_size.ESPECIALLY_LOW.4", - "description": null, - "label": "4", - "unit": "/1", - "period": null, - "values": { - "2000-10-31": 0.5 - }, - "economy": false, - "household": false - }, - "gov.hud.ami_limit.family_size.ABOVE_MODERATE": { - "type": "parameterNode", - "parameter": "gov.hud.ami_limit.family_size.ABOVE_MODERATE", - "description": null, - "label": "ABOVE MODERATE", - "economy": false, - "household": false - }, - "gov.hud.ami_limit.family_size.ABOVE_MODERATE.1": { - "type": "parameter", - "parameter": "gov.hud.ami_limit.family_size.ABOVE_MODERATE.1", - "description": null, - "label": "1", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hud.ami_limit.family_size.ABOVE_MODERATE.2": { - "type": "parameter", - "parameter": "gov.hud.ami_limit.family_size.ABOVE_MODERATE.2", - "description": null, - "label": "2", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hud.ami_limit.family_size.ABOVE_MODERATE.3": { - "type": "parameter", - "parameter": "gov.hud.ami_limit.family_size.ABOVE_MODERATE.3", - "description": null, - "label": "3", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hud.ami_limit.family_size.ABOVE_MODERATE.4": { - "type": "parameter", - "parameter": "gov.hud.ami_limit.family_size.ABOVE_MODERATE.4", - "description": null, - "label": "4", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hud.adjusted_income": { - "type": "parameterNode", - "parameter": "gov.hud.adjusted_income", - "description": null, - "label": "adjusted income", - "economy": false, - "household": false - }, - "gov.hud.adjusted_income.deductions": { - "type": "parameterNode", - "parameter": "gov.hud.adjusted_income.deductions", - "description": null, - "label": "deductions", - "economy": false, - "household": false - }, - "gov.hud.adjusted_income.deductions.elderly_disabled": { - "type": "parameterNode", - "parameter": "gov.hud.adjusted_income.deductions.elderly_disabled", - "description": null, - "label": "elderly disabled", - "economy": false, - "household": false - }, - "gov.hud.adjusted_income.deductions.elderly_disabled.amount": { - "type": "parameter", - "parameter": "gov.hud.adjusted_income.deductions.elderly_disabled.amount", - "description": "HUD adjusted income elderly or disabled deduction", - "label": "HUD elderly or disabled deduction", - "unit": "currency-USD", - "period": "year", - "values": { - "2001-01-19": 400 - }, - "economy": false, - "household": false - }, - "gov.hud.adjusted_income.deductions.moop": { - "type": "parameterNode", - "parameter": "gov.hud.adjusted_income.deductions.moop", - "description": null, - "label": "moop", - "economy": false, - "household": false - }, - "gov.hud.adjusted_income.deductions.moop.threshold": { - "type": "parameter", - "parameter": "gov.hud.adjusted_income.deductions.moop.threshold", - "description": "Percent of annual income beyond which medical expenses are deducted from HUD adjusted income.", - "label": "HUD medical expense deduction income threshold", - "unit": "/1", - "period": null, - "values": { - "2001-01-19": 0.03 - }, - "economy": false, - "household": false - }, - "gov.hud.adjusted_income.deductions.dependent": { - "type": "parameterNode", - "parameter": "gov.hud.adjusted_income.deductions.dependent", - "description": null, - "label": "dependent", - "economy": false, - "household": false - }, - "gov.hud.adjusted_income.deductions.dependent.amount": { - "type": "parameter", - "parameter": "gov.hud.adjusted_income.deductions.dependent.amount", - "description": "HUD adjusted income dependent deduction", - "label": "HUD dependent deduction", - "unit": "currency-USD", - "period": "year", - "values": { - "2001-01-19": 480 - }, - "economy": false, - "household": false - }, - "gov.ed": { - "type": "parameterNode", - "parameter": "gov.ed", - "description": null, - "label": "Department of Education", - "economy": false, - "household": false - }, - "gov.ed.pell_grant": { - "type": "parameterNode", - "parameter": "gov.ed.pell_grant", - "description": null, - "label": "Pell Grant", - "economy": false, - "household": false - }, - "gov.ed.pell_grant.months_in_school_year": { - "type": "parameter", - "parameter": "gov.ed.pell_grant.months_in_school_year", - "description": "The Department of Education defines a full school year as this number of months.", - "label": "Months in school year", - "unit": "int", - "period": null, - "values": { - "2023-01-01": 9, - "2015-01-01": 9 - }, - "economy": false, - "household": false - }, - "gov.ed.pell_grant.sai": { - "type": "parameterNode", - "parameter": "gov.ed.pell_grant.sai", - "description": null, - "label": "sai", - "economy": false, - "household": false - }, - "gov.ed.pell_grant.sai.limits": { - "type": "parameterNode", - "parameter": "gov.ed.pell_grant.sai.limits", - "description": null, - "label": "limits", - "economy": false, - "household": false - }, - "gov.ed.pell_grant.sai.limits.max_sai": { - "type": "parameter", - "parameter": "gov.ed.pell_grant.sai.limits.max_sai", - "description": "The Department of Eduction caps the Pell Grant student aid index at this amount.", - "label": "Pell Grant maximum SAI", - "unit": "currency-USD", - "period": "year", - "values": { - "2024-01-01": 999999, - "2015-01-01": 999999 - }, - "economy": false, - "household": false - }, - "gov.ed.pell_grant.sai.limits.min_sai": { - "type": "parameter", - "parameter": "gov.ed.pell_grant.sai.limits.min_sai", - "description": "The Department of Education floors the Pell Grant student aid index at this amount.", - "label": "Pell Grant minimum SAI", - "unit": "currency-USD", - "period": "year", - "values": { - "2024-01-01": -1500, - "2015-01-01": -1500 - }, - "economy": false, - "household": false - }, - "gov.ed.pell_grant.sai.fpg_fraction": { - "type": "parameterNode", - "parameter": "gov.ed.pell_grant.sai.fpg_fraction", - "description": null, - "label": "fpg fraction", - "economy": false, - "household": false - }, - "gov.ed.pell_grant.sai.fpg_fraction.min_pell_limits": { - "type": "parameterNode", - "parameter": "gov.ed.pell_grant.sai.fpg_fraction.min_pell_limits", - "description": "The Department of Eduction limits the Pell Grant to filers with adjust gross income above this fraction of federal poverty guidelines, based on filing and dependent status.", - "label": "Minimum Pell Grant income limits", - "economy": false, - "household": false - }, - "gov.ed.pell_grant.sai.fpg_fraction.min_pell_limits.DEPENDENT_SINGLE": { - "type": "parameter", - "parameter": "gov.ed.pell_grant.sai.fpg_fraction.min_pell_limits.DEPENDENT_SINGLE", - "description": null, - "label": "DEPENDENT SINGLE", - "unit": "/1", - "period": "year", - "values": { - "2024-01-01": 3.25, - "2015-01-01": 3.25 - }, - "economy": false, - "household": false - }, - "gov.ed.pell_grant.sai.fpg_fraction.min_pell_limits.DEPENDENT_NOT_SINGLE": { - "type": "parameter", - "parameter": "gov.ed.pell_grant.sai.fpg_fraction.min_pell_limits.DEPENDENT_NOT_SINGLE", - "description": null, - "label": "DEPENDENT NOT SINGLE", - "unit": "/1", - "period": "year", - "values": { - "2024-01-01": 2.75, - "2015-01-01": 2.75 - }, - "economy": false, - "household": false - }, - "gov.ed.pell_grant.sai.fpg_fraction.min_pell_limits.INDEPENDENT_SINGLE": { - "type": "parameter", - "parameter": "gov.ed.pell_grant.sai.fpg_fraction.min_pell_limits.INDEPENDENT_SINGLE", - "description": null, - "label": "INDEPENDENT SINGLE", - "unit": "/1", - "period": "year", - "values": { - "2024-01-01": 4, - "2015-01-01": 4 - }, - "economy": false, - "household": false - }, - "gov.ed.pell_grant.sai.fpg_fraction.min_pell_limits.INDEPENDENT_NOT_SINGLE": { - "type": "parameter", - "parameter": "gov.ed.pell_grant.sai.fpg_fraction.min_pell_limits.INDEPENDENT_NOT_SINGLE", - "description": null, - "label": "INDEPENDENT NOT SINGLE", - "unit": "/1", - "period": "year", - "values": { - "2024-01-01": 3.5, - "2015-01-01": 3.5 - }, - "economy": false, - "household": false - }, - "gov.ed.pell_grant.sai.fpg_fraction.min_pell_limits.INDEPENDENT_NOT_PARENT": { - "type": "parameter", - "parameter": "gov.ed.pell_grant.sai.fpg_fraction.min_pell_limits.INDEPENDENT_NOT_PARENT", - "description": null, - "label": "INDEPENDENT NOT PARENT", - "unit": "/1", - "period": "year", - "values": { - "2024-01-01": 2.75, - "2015-01-01": 2.75 - }, - "economy": false, - "household": false - }, - "gov.ed.pell_grant.sai.fpg_fraction.max_pell_limits": { - "type": "parameterNode", - "parameter": "gov.ed.pell_grant.sai.fpg_fraction.max_pell_limits", - "description": "The Department of Eduction limits the Pell Grant to filers with adjust gross income blow this fraction of federal poverty guidelines, based on filing and dependent status.", - "label": "Maximum Pell Grant income limits", - "economy": false, - "household": false - }, - "gov.ed.pell_grant.sai.fpg_fraction.max_pell_limits.DEPENDENT_SINGLE": { - "type": "parameter", - "parameter": "gov.ed.pell_grant.sai.fpg_fraction.max_pell_limits.DEPENDENT_SINGLE", - "description": null, - "label": "DEPENDENT SINGLE", - "unit": "/1", - "period": "year", - "values": { - "2024-01-01": 2.25, - "2015-01-01": 2.25 - }, - "economy": false, - "household": false - }, - "gov.ed.pell_grant.sai.fpg_fraction.max_pell_limits.DEPENDENT_NOT_SINGLE": { - "type": "parameter", - "parameter": "gov.ed.pell_grant.sai.fpg_fraction.max_pell_limits.DEPENDENT_NOT_SINGLE", - "description": null, - "label": "DEPENDENT NOT SINGLE", - "unit": "/1", - "period": "year", - "values": { - "2024-01-01": 1.75, - "2015-01-01": 1.75 - }, - "economy": false, - "household": false - }, - "gov.ed.pell_grant.sai.fpg_fraction.max_pell_limits.INDEPENDENT_SINGLE": { - "type": "parameter", - "parameter": "gov.ed.pell_grant.sai.fpg_fraction.max_pell_limits.INDEPENDENT_SINGLE", - "description": null, - "label": "INDEPENDENT SINGLE", - "unit": "/1", - "period": "year", - "values": { - "2024-01-01": 2.25, - "2015-01-01": 2.25 - }, - "economy": false, - "household": false - }, - "gov.ed.pell_grant.sai.fpg_fraction.max_pell_limits.INDEPENDENT_NOT_SINGLE": { - "type": "parameter", - "parameter": "gov.ed.pell_grant.sai.fpg_fraction.max_pell_limits.INDEPENDENT_NOT_SINGLE", - "description": null, - "label": "INDEPENDENT NOT SINGLE", - "unit": "/1", - "period": "year", - "values": { - "2024-01-01": 1.75, - "2015-01-01": 1.75 - }, - "economy": false, - "household": false - }, - "gov.ed.pell_grant.amount": { - "type": "parameterNode", - "parameter": "gov.ed.pell_grant.amount", - "description": null, - "label": "amount", - "economy": false, - "household": false - }, - "gov.ed.pell_grant.amount.max": { - "type": "parameter", - "parameter": "gov.ed.pell_grant.amount.max", - "description": "The Department of Education limits Pell Grants to this amount.", - "label": "Maximum value of the Pell Grant", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 7395, - "2015-01-01": 7395 - }, - "economy": false, - "household": false - }, - "gov.ed.pell_grant.amount.min": { - "type": "parameter", - "parameter": "gov.ed.pell_grant.amount.min", - "description": "The Department of Education does not provide Pell Grants if the calculated amount is less than this value.", - "label": "Minimum value of the Pell Grant", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 740, - "2023-01-01": 750, - "2015-01-01": 750 - }, - "economy": false, - "household": false - }, - "gov.ed.pell_grant.head": { - "type": "parameterNode", - "parameter": "gov.ed.pell_grant.head", - "description": null, - "label": "head", - "economy": false, - "household": false - }, - "gov.ed.pell_grant.head.negative_rate": { - "type": "parameter", - "parameter": "gov.ed.pell_grant.head.negative_rate", - "description": "The Department of Education defines the percent of negative available income that counts towards contibution as this value.", - "label": "Percent of income for negative head available income", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.22, - "2015-01-01": 0.22 - }, - "economy": false, - "household": false - }, - "gov.ed.pell_grant.head.marginal_rate": { - "type": "parameterNode", - "parameter": "gov.ed.pell_grant.head.marginal_rate", - "description": "The Department of Education calculates the contribution from available income with the following percents.", - "label": "EFC rate" - }, - "gov.ed.pell_grant.head.marginal_rate[0]": { - "type": "parameterNode", - "parameter": "gov.ed.pell_grant.head.marginal_rate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.ed.pell_grant.head.marginal_rate[0].rate": { - "type": "parameter", - "parameter": "gov.ed.pell_grant.head.marginal_rate[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.22, - "2015-01-01": 0.22 - }, - "economy": false, - "household": false - }, - "gov.ed.pell_grant.head.marginal_rate[0].threshold": { - "type": "parameter", - "parameter": "gov.ed.pell_grant.head.marginal_rate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2009-08-01": 0 - }, - "economy": false, - "household": false - }, - "gov.ed.pell_grant.head.marginal_rate[1]": { - "type": "parameterNode", - "parameter": "gov.ed.pell_grant.head.marginal_rate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.ed.pell_grant.head.marginal_rate[1].rate": { - "type": "parameter", - "parameter": "gov.ed.pell_grant.head.marginal_rate[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": false, - "household": false - }, - "gov.ed.pell_grant.head.marginal_rate[1].threshold": { - "type": "parameter", - "parameter": "gov.ed.pell_grant.head.marginal_rate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-08-01": 20600, - "2023-08-01": 18900, - "2022-08-01": 17500, - "2021-08-01": 17400, - "2020-08-01": 17000, - "2019-08-01": 16600, - "2018-08-01": 16400, - "2017-08-01": 16000, - "2016-08-01": 15900, - "2015-08-01": 15700, - "2014-08-01": 15600, - "2013-08-01": 15300, - "2012-08-01": 14600, - "2010-08-01": 14500, - "2009-08-01": 14200 - }, - "economy": false, - "household": false - }, - "gov.ed.pell_grant.head.marginal_rate[2]": { - "type": "parameterNode", - "parameter": "gov.ed.pell_grant.head.marginal_rate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.ed.pell_grant.head.marginal_rate[2].rate": { - "type": "parameter", - "parameter": "gov.ed.pell_grant.head.marginal_rate[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.29, - "2015-01-01": 0.29 - }, - "economy": false, - "household": false - }, - "gov.ed.pell_grant.head.marginal_rate[2].threshold": { - "type": "parameter", - "parameter": "gov.ed.pell_grant.head.marginal_rate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-08-01": 25800, - "2023-08-01": 23800, - "2022-08-01": 22000, - "2021-08-01": 21800, - "2020-08-01": 21400, - "2019-08-01": 20800, - "2018-08-01": 20500, - "2017-08-01": 20100, - "2016-08-01": 20000, - "2015-08-01": 19700, - "2014-08-01": 19600, - "2013-08-01": 19200, - "2012-08-01": 18400, - "2010-08-01": 18200, - "2009-08-01": 17800 - }, - "economy": false, - "household": false - }, - "gov.ed.pell_grant.head.marginal_rate[3]": { - "type": "parameterNode", - "parameter": "gov.ed.pell_grant.head.marginal_rate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.ed.pell_grant.head.marginal_rate[3].rate": { - "type": "parameter", - "parameter": "gov.ed.pell_grant.head.marginal_rate[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.34, - "2015-01-01": 0.34 - }, - "economy": false, - "household": false - }, - "gov.ed.pell_grant.head.marginal_rate[3].threshold": { - "type": "parameter", - "parameter": "gov.ed.pell_grant.head.marginal_rate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-08-01": 31000, - "2023-08-01": 28600, - "2022-08-01": 26500, - "2021-08-01": 26200, - "2020-08-01": 25700, - "2019-08-01": 25100, - "2018-08-01": 24700, - "2017-08-01": 24200, - "2016-08-01": 24100, - "2015-08-01": 23700, - "2014-08-01": 23500, - "2013-08-01": 23100, - "2012-08-01": 22100, - "2010-08-01": 21900, - "2009-08-01": 21400 - }, - "economy": false, - "household": false - }, - "gov.ed.pell_grant.head.marginal_rate[4]": { - "type": "parameterNode", - "parameter": "gov.ed.pell_grant.head.marginal_rate[4]", - "description": null, - "label": "bracket 5" - }, - "gov.ed.pell_grant.head.marginal_rate[4].rate": { - "type": "parameter", - "parameter": "gov.ed.pell_grant.head.marginal_rate[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.4, - "2015-01-01": 0.4 - }, - "economy": false, - "household": false - }, - "gov.ed.pell_grant.head.marginal_rate[4].threshold": { - "type": "parameter", - "parameter": "gov.ed.pell_grant.head.marginal_rate[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-08-01": 36300, - "2023-08-01": 33500, - "2022-08-01": 31000, - "2021-08-01": 30700, - "2020-08-01": 30100, - "2019-08-01": 29300, - "2018-08-01": 28900, - "2017-08-01": 28300, - "2016-08-01": 28200, - "2015-08-01": 27700, - "2014-08-01": 27500, - "2013-08-01": 27000, - "2012-08-01": 25900, - "2010-08-01": 25600, - "2009-08-01": 25000 - }, - "economy": false, - "household": false - }, - "gov.ed.pell_grant.head.marginal_rate[5]": { - "type": "parameterNode", - "parameter": "gov.ed.pell_grant.head.marginal_rate[5]", - "description": null, - "label": "bracket 6" - }, - "gov.ed.pell_grant.head.marginal_rate[5].rate": { - "type": "parameter", - "parameter": "gov.ed.pell_grant.head.marginal_rate[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.47, - "2015-01-01": 0.47 - }, - "economy": false, - "household": false - }, - "gov.ed.pell_grant.head.marginal_rate[5].threshold": { - "type": "parameter", - "parameter": "gov.ed.pell_grant.head.marginal_rate[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-08-01": 41500, - "2023-08-01": 38300, - "2022-08-01": 35500, - "2021-08-01": 35100, - "2020-08-01": 34500, - "2019-08-01": 33600, - "2018-08-01": 33100, - "2017-08-01": 32300, - "2016-08-01": 32200, - "2015-08-01": 31700, - "2014-08-01": 31500, - "2013-08-01": 30900, - "2012-08-01": 29600, - "2010-08-01": 29300, - "2009-08-01": 28600 - }, - "economy": false, - "household": false - }, - "gov.ed.pell_grant.head.asset_assessment_rate": { - "type": "parameterNode", - "parameter": "gov.ed.pell_grant.head.asset_assessment_rate", - "description": "The Department of Education counts this percent of assets of the head and their spouse towards the expected family contribution.", - "label": "Percent of head assets for the head contribution", - "economy": false, - "household": false - }, - "gov.ed.pell_grant.head.asset_assessment_rate.A": { - "type": "parameter", - "parameter": "gov.ed.pell_grant.head.asset_assessment_rate.A", - "description": null, - "label": "A", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.12, - "2015-01-01": 0.12 - }, - "economy": false, - "household": false - }, - "gov.ed.pell_grant.head.asset_assessment_rate.B": { - "type": "parameter", - "parameter": "gov.ed.pell_grant.head.asset_assessment_rate.B", - "description": null, - "label": "B", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": false, - "household": false - }, - "gov.ed.pell_grant.head.asset_assessment_rate.C": { - "type": "parameter", - "parameter": "gov.ed.pell_grant.head.asset_assessment_rate.C", - "description": null, - "label": "C", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.07, - "2015-01-01": 0.07 - }, - "economy": false, - "household": false - }, - "gov.ed.pell_grant.head.min_contribution": { - "type": "parameter", - "parameter": "gov.ed.pell_grant.head.min_contribution", - "description": "The Department of Education defines the minimum contribution as this value.", - "label": "Minimum head contribution", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": -1500, - "2023-01-01": -750, - "2015-01-01": -750 - }, - "economy": false, - "household": false - }, - "gov.ed.pell_grant.head.income_assessment_rate": { - "type": "parameterNode", - "parameter": "gov.ed.pell_grant.head.income_assessment_rate", - "description": "The Department of Education adjusts the income of the head and their spouse by these factors based on the formula being used.", - "label": "Income modification based off of the formula used", - "economy": false, - "household": false - }, - "gov.ed.pell_grant.head.income_assessment_rate.A": { - "type": "parameter", - "parameter": "gov.ed.pell_grant.head.income_assessment_rate.A", - "description": null, - "label": "A", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 1, - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.ed.pell_grant.head.income_assessment_rate.B": { - "type": "parameter", - "parameter": "gov.ed.pell_grant.head.income_assessment_rate.B", - "description": null, - "label": "B", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": false, - "household": false - }, - "gov.ed.pell_grant.head.income_assessment_rate.C": { - "type": "parameter", - "parameter": "gov.ed.pell_grant.head.income_assessment_rate.C", - "description": null, - "label": "C", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 1, - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.ed.pell_grant.dependent": { - "type": "parameterNode", - "parameter": "gov.ed.pell_grant.dependent", - "description": null, - "label": "dependent", - "economy": false, - "household": false - }, - "gov.ed.pell_grant.dependent.ipa": { - "type": "parameter", - "parameter": "gov.ed.pell_grant.dependent.ipa", - "description": "The Department of Education disregards this amount of income when computing the expected family contribution.", - "label": "Income protection allowance", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 7040, - "2015-01-01": 7040 - }, - "economy": false, - "household": false - }, - "gov.ed.pell_grant.dependent.asset_assessment_rate": { - "type": "parameter", - "parameter": "gov.ed.pell_grant.dependent.asset_assessment_rate", - "description": "The Department of Education counts this share of a dependent student's assets towards the expected family contribution.", - "label": "EFC dependent asset assessment rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": false, - "household": false - }, - "gov.ed.pell_grant.dependent.income_assessment_rate": { - "type": "parameter", - "parameter": "gov.ed.pell_grant.dependent.income_assessment_rate", - "description": "The Education Department counts this percent of a dependent student's income towards the Pell Grant expected family contribution.", - "label": "Pell Grant EFC dependent income assessment rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": false, - "household": false - }, - "gov.ed.pell_grant.efc": { - "type": "parameterNode", - "parameter": "gov.ed.pell_grant.efc", - "description": null, - "label": "Expected Family Contribution", - "economy": false, - "household": false - }, - "gov.ed.pell_grant.efc.simplified": { - "type": "parameterNode", - "parameter": "gov.ed.pell_grant.efc.simplified", - "description": null, - "label": "simplified", - "economy": false, - "household": false - }, - "gov.ed.pell_grant.efc.simplified.benefits": { - "type": "parameter", - "parameter": "gov.ed.pell_grant.efc.simplified.benefits", - "description": "The Department of Education will used a simplified formula if a household has any of these benefits.", - "label": "Qualifying benefits for EFC simplified formula", - "unit": "list", - "period": null, - "values": { - "2023-01-01": [ - "snap", - "school_meal_net_subsidy", - "tanf", - "spm_unit_wic", - "medicaid", - "ssi" - ], - "2015-01-01": [ - "snap", - "school_meal_net_subsidy", - "tanf", - "spm_unit_wic", - "medicaid", - "ssi" - ] - }, - "economy": false, - "household": false - }, - "gov.ed.pell_grant.efc.simplified.income_limit": { - "type": "parameter", - "parameter": "gov.ed.pell_grant.efc.simplified.income_limit", - "description": "The Department of Education uses the simplified formula if the head and spouse income are below this amount.", - "label": "Simplified formula max income", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": false, - "household": false - }, - "gov.ed.pell_grant.efc.simplified.applies": { - "type": "parameter", - "parameter": "gov.ed.pell_grant.efc.simplified.applies", - "description": "The simplified pell grant efc formula is applied if this is true.", - "label": "Pell Grant EFC simplified formula applies", - "unit": "bool", - "period": "year", - "values": { - "2024-01-01": false, - "0000-01-01": true - }, - "economy": false, - "household": false - }, - "gov.ed.pell_grant.efc.automatic_zero": { - "type": "parameter", - "parameter": "gov.ed.pell_grant.efc.automatic_zero", - "description": "The Department of Education sets the Expected Family Contribution to zero if a family has income below this value.", - "label": "Max income for an automatic 0 EFC", - "unit": "currency-USD", - "period": null, - "values": { - "2023-08-01": 29000, - "2021-08-01": 27000, - "2019-08-01": 26000, - "2016-08-01": 25000, - "2013-08-01": 24000, - "2012-08-01": 23000, - "2011-08-01": 31000, - "2009-08-01": 30000 - }, - "economy": false, - "household": false - }, - "gov.usda": { - "type": "parameterNode", - "parameter": "gov.usda", - "description": null, - "label": "US Department of Agriculture (USDA)", - "economy": true, - "household": true - }, - "gov.usda.csfp": { - "type": "parameterNode", - "parameter": "gov.usda.csfp", - "description": null, - "label": "csfp", - "economy": true, - "household": true - }, - "gov.usda.csfp.min_age": { - "type": "parameter", - "parameter": "gov.usda.csfp.min_age", - "description": "The Commodity Supplemental Food Program is limited to filers at or above this age.", - "label": "Commodity Supplemental Food Program min age", - "unit": "year", - "period": "year", - "values": { - "2024-01-01": 60, - "2015-01-01": 60 - }, - "economy": true, - "household": true - }, - "gov.usda.csfp.amount": { - "type": "parameter", - "parameter": "gov.usda.csfp.amount", - "description": "The following food value amount is provided under the Commodity Supplemental Food Program to each eligible person.", - "label": "Commodity Supplemental Food Program amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2024-01-01": 330, - "2015-01-01": 330 - }, - "economy": true, - "household": true - }, - "gov.usda.csfp.fpg_limit": { - "type": "parameter", - "parameter": "gov.usda.csfp.fpg_limit", - "description": "The US limits the Commodity Supplemental Food Program to individuals with household income below this percentage of the federal poverty guidelines.", - "label": "Commodity Supplemental Food Program FPG limit", - "unit": "/1", - "period": "year", - "values": { - "2025-01-01": 1.5, - "2024-01-01": 1.3, - "2015-01-01": 1.3 - }, - "economy": true, - "household": true - }, - "gov.usda.wic": { - "type": "parameterNode", - "parameter": "gov.usda.wic", - "description": null, - "label": "Special Supplemental Nutrition Program for Women, Infants, and Children (WIC)", - "economy": true, - "household": true - }, - "gov.usda.wic.takeup": { - "type": "parameterNode", - "parameter": "gov.usda.wic.takeup", - "description": "Percentage of WIC-eligible individuals that participate.", - "label": "WIC takeup rate", - "economy": false, - "household": false - }, - "gov.usda.wic.takeup.PREGNANT": { - "type": "parameter", - "parameter": "gov.usda.wic.takeup.PREGNANT", - "description": null, - "label": "PREGNANT", - "unit": null, - "period": null, - "values": { - "2022-01-01": 0.456, - "2021-01-01": 0.437, - "2020-01-01": 0.456, - "2019-01-01": 0.523, - "2018-01-01": 0.533, - "2015-01-01": 0.533 - }, - "economy": true, - "household": true - }, - "gov.usda.wic.takeup.POSTPARTUM": { - "type": "parameter", - "parameter": "gov.usda.wic.takeup.POSTPARTUM", - "description": null, - "label": "POSTPARTUM", - "unit": null, - "period": null, - "values": { - "2022-01-01": 0.689, - "2021-01-01": 0.672, - "2020-01-01": 0.685, - "2019-01-01": 0.847, - "2018-01-01": 0.844, - "2015-01-01": 0.844 - }, - "economy": true, - "household": true - }, - "gov.usda.wic.takeup.BREASTFEEDING": { - "type": "parameter", - "parameter": "gov.usda.wic.takeup.BREASTFEEDING", - "description": null, - "label": "BREASTFEEDING", - "unit": null, - "period": null, - "values": { - "2022-01-01": 0.663, - "2021-01-01": 0.608, - "2020-01-01": 0.604, - "2019-01-01": 0.684, - "2018-01-01": 0.687, - "2015-01-01": 0.687 - }, - "economy": true, - "household": true - }, - "gov.usda.wic.takeup.INFANT": { - "type": "parameter", - "parameter": "gov.usda.wic.takeup.INFANT", - "description": null, - "label": "INFANT", - "unit": null, - "period": null, - "values": { - "2022-01-01": 0.784, - "2021-01-01": 0.78, - "2020-01-01": 0.817, - "2019-01-01": 0.984, - "2018-01-01": 0.978, - "2015-01-01": 0.978 - }, - "economy": true, - "household": true - }, - "gov.usda.wic.takeup.CHILD": { - "type": "parameter", - "parameter": "gov.usda.wic.takeup.CHILD", - "description": null, - "label": "CHILD", - "unit": null, - "period": null, - "values": { - "2022-01-01": 0.46, - "2021-01-01": 0.432, - "2020-01-01": 0.406, - "2019-01-01": 0.448, - "2018-01-01": 0.442, - "2015-01-01": 0.442 - }, - "economy": true, - "household": true - }, - "gov.usda.wic.takeup.NONE": { - "type": "parameter", - "parameter": "gov.usda.wic.takeup.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.wic.abolish_wic": { - "type": "parameter", - "parameter": "gov.usda.wic.abolish_wic", - "description": "Abolish WIC payments.", - "label": "Abolish WIC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.wic.value": { - "type": "parameterNode", - "parameter": "gov.usda.wic.value", - "description": "Average monthly pre-rebate value of WIC packages.", - "label": "value", - "economy": true, - "household": true - }, - "gov.usda.wic.value.PREGNANT": { - "type": "parameter", - "parameter": "gov.usda.wic.value.PREGNANT", - "description": null, - "label": "PREGNANT", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-02-01": 60.0461981627244, - "2034-02-01": 58.6756930127851, - "2033-02-01": 57.3804903436117, - "2032-02-01": 56.1304691628978, - "2031-02-01": 54.8955084783372, - "2030-02-01": 53.6906687860829, - "2029-02-01": 52.5159500861349, - "2028-02-01": 51.3713523784933, - "2027-02-01": 50.2267546708517, - "2026-02-01": 49.0821569632101, - "2025-02-01": 47.9224987594153, - "2024-12-01": 47.5316788842403, - "2024-11-01": 47.5148111285488, - "2024-10-01": 47.5405645769707, - "2024-09-01": 47.4858949759347, - "2024-08-01": 47.4098394703611, - "2024-07-01": 47.371284600209, - "2024-06-01": 47.3163137892499, - "2024-05-01": 47.3003496633275, - "2024-04-01": 47.2218844783695, - "2024-03-01": 47.0387488451468, - "2024-02-01": 46.736635292314, - "2024-01-01": 46.4491304207498, - "2023-12-01": 46.1974695300302, - "2023-11-01": 46.2434040432974, - "2023-10-01": 46.3367791194471, - "2023-09-01": 46.3545505049079, - "2023-08-01": 46.2396389192591, - "2023-07-01": 46.0385812956142, - "2023-06-01": 45.9509292080027, - "2023-05-01": 45.8030351357785, - "2023-04-01": 45.6879729451682, - "2023-03-01": 45.4579991689091, - "2023-02-01": 45.3079966272235, - "2023-01-01": 45.0564863414654, - "2022-12-01": 44.6991007677505, - "2022-11-01": 44.8367537025905, - "2022-10-01": 44.8820857960116, - "2022-09-01": 44.7007574223273, - "2022-08-01": 44.6048220618316, - "2022-07-01": 44.6206355827924, - "2022-06-01": 44.625906756446, - "2022-05-01": 44.0212278358959, - "2022-04-01": 43.5412498234941, - "2022-03-01": 43.2995288602355, - "2022-02-01": 42.7290372659531, - "2022-01-01": 42.3422837247395, - "2021-12-01": 41.9889644849859, - "2021-11-01": 41.8603478478378, - "2021-10-01": 41.655675705116, - "2021-09-01": 41.3124469977851, - "2021-08-01": 41.200547511367, - "2021-07-01": 41.1156063130631, - "2021-06-01": 40.918765628341, - "2021-05-01": 40.54210261955, - "2021-04-01": 40.2196573969104, - "2021-03-01": 39.8917903956557, - "2021-02-01": 39.611213352322, - "2021-01-01": 39.3955470474085, - "2020-12-01": 39.2286767500313, - "2020-11-01": 39.191778534456, - "2020-10-01": 39.2157247233395, - "2020-09-01": 39.1994593874941, - "2020-08-01": 39.1449403914196, - "2020-07-01": 39.0218961378481, - "2020-06-01": 38.8255072680107, - "2020-05-01": 38.6142085069816, - "2020-04-01": 38.6134554821739, - "2020-03-01": 38.8733996457778, - "2020-02-01": 38.9581902391202, - "2020-01-01": 38.8517125313172, - "2019-12-01": 38.70155938467, - "2019-11-01": 38.7368009456685, - "2019-10-01": 38.7575844303598, - "2019-09-01": 38.6691793179407, - "2019-08-01": 38.6389077206728, - "2019-07-01": 38.6408655851727, - "2019-06-01": 38.5764066616371, - "2019-05-01": 38.568725808599, - "2019-04-01": 38.4867967095257, - "2019-03-01": 38.2840824313039, - "2019-02-01": 38.0693197561596, - "2019-01-01": 37.9090760770897, - "2018-12-01": 37.836936300516, - "2018-11-01": 37.9581732945491, - "2018-10-01": 38.0857356969665, - "2018-09-01": 38.0185658841233, - "2018-08-01": 37.9744386303945, - "2018-07-01": 37.9533539357801, - "2018-06-01": 37.950793651434, - "2018-05-01": 37.8904010618598, - "2018-04-01": 37.7334706919437, - "2018-03-01": 37.5840705701041, - "2018-02-01": 37.4992799767617, - "2018-01-01": 37.33, - "2015-01-01": 37.33 - }, - "economy": true, - "household": true - }, - "gov.usda.wic.value.BREASTFEEDING": { - "type": "parameter", - "parameter": "gov.usda.wic.value.BREASTFEEDING", - "description": null, - "label": "BREASTFEEDING", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-02-01": 60.7378634509636, - "2034-02-01": 59.3515716089677, - "2033-02-01": 58.0414496484001, - "2032-02-01": 56.7770296166896, - "2031-02-01": 55.5278435612647, - "2030-02-01": 54.3091254584112, - "2029-02-01": 53.120875308129, - "2028-02-01": 51.9630931104181, - "2027-02-01": 50.8053109127072, - "2026-02-01": 49.6475287149963, - "2025-02-01": 48.4745125409998, - "2024-12-01": 48.0791908563867, - "2024-11-01": 48.0621288029467, - "2024-10-01": 48.0881789023952, - "2024-09-01": 48.0328795684783, - "2024-08-01": 47.9559479882356, - "2024-07-01": 47.9169490089443, - "2024-06-01": 47.8613449955016, - "2024-05-01": 47.8451969806388, - "2024-04-01": 47.7658279641905, - "2024-03-01": 47.5805828125567, - "2024-02-01": 47.2749892482662, - "2024-01-01": 46.9841726409728, - "2023-12-01": 46.7296128972392, - "2023-11-01": 46.7760765249105, - "2023-10-01": 46.8705271778817, - "2023-09-01": 46.8885032698988, - "2023-08-01": 46.7722680308391, - "2023-07-01": 46.5688944474254, - "2023-06-01": 46.4802327054428, - "2023-05-01": 46.3306350583176, - "2023-04-01": 46.2142474794951, - "2023-03-01": 45.9816246616129, - "2023-02-01": 45.8298942578076, - "2023-01-01": 45.5754868538369, - "2022-12-01": 45.213984596578, - "2022-11-01": 45.353223139829, - "2022-10-01": 45.3990774084489, - "2022-09-01": 45.2156603339694, - "2022-08-01": 45.1186199050297, - "2022-07-01": 45.1346155801297, - "2022-06-01": 45.1399474718297, - "2022-05-01": 44.52830332396, - "2022-04-01": 44.0427964997357, - "2022-03-01": 43.7982911803508, - "2022-02-01": 43.2212281586496, - "2022-01-01": 42.8300196476336, - "2021-12-01": 42.4726305639718, - "2021-11-01": 42.3425324064922, - "2021-10-01": 42.1355026687699, - "2021-09-01": 41.7883203492195, - "2021-08-01": 41.675131905417, - "2021-07-01": 41.5892122791658, - "2021-06-01": 41.3901042091122, - "2021-05-01": 41.0091024622076, - "2021-04-01": 40.6829430299314, - "2021-03-01": 40.3512993661924, - "2021-02-01": 40.0674903879903, - "2021-01-01": 39.8493398475796, - "2020-12-01": 39.6805473903343, - "2020-11-01": 39.6432241484344, - "2020-10-01": 39.6674461707287, - "2020-09-01": 39.6509934763401, - "2020-08-01": 39.595846482186, - "2020-07-01": 39.4713848959321, - "2020-06-01": 39.272733845167, - "2020-05-01": 39.059001157879, - "2020-04-01": 39.0582394590647, - "2020-03-01": 39.3211778897554, - "2020-02-01": 39.4069451762437, - "2020-01-01": 39.299240963904, - "2019-12-01": 39.1473582203359, - "2019-11-01": 39.1830057248444, - "2019-10-01": 39.2040286121186, - "2019-09-01": 39.1146051713217, - "2019-08-01": 39.0839848789875, - "2019-07-01": 39.0859652959047, - "2019-06-01": 39.020763877402, - "2019-05-01": 39.0129945494963, - "2019-04-01": 38.9301217185023, - "2019-03-01": 38.7250723976972, - "2019-02-01": 38.5078358958635, - "2019-01-01": 38.345746388184, - "2018-12-01": 38.2727756417756, - "2018-11-01": 38.3954091508753, - "2018-10-01": 38.5244409300149, - "2018-09-01": 38.4564973957808, - "2018-08-01": 38.4118618452638, - "2018-07-01": 38.3905342784639, - "2018-06-01": 38.3879445024953, - "2018-05-01": 38.3268562575898, - "2018-04-01": 38.1681182246931, - "2018-03-01": 38.0169971799392, - "2018-02-01": 37.9312298934509, - "2018-01-01": 37.76, - "2015-01-01": 37.76 - }, - "economy": true, - "household": true - }, - "gov.usda.wic.value.POSTPARTUM": { - "type": "parameter", - "parameter": "gov.usda.wic.value.POSTPARTUM", - "description": null, - "label": "POSTPARTUM", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-02-01": 49.4138550109535, - "2034-02-01": 48.2860243598381, - "2033-02-01": 47.2201624258171, - "2032-02-01": 46.1914817220526, - "2031-02-01": 45.1751947617069, - "2030-02-01": 44.1836952881989, - "2029-02-01": 43.2169833015286, - "2028-02-01": 42.2750588016961, - "2027-02-01": 41.3331343018635, - "2026-02-01": 40.3912098020309, - "2025-02-01": 39.4368915587795, - "2024-12-01": 39.1152739170604, - "2024-11-01": 39.1013929244312, - "2024-10-01": 39.1225862256775, - "2024-09-01": 39.0775969370671, - "2024-08-01": 39.0150085328019, - "2024-07-01": 38.9832805496496, - "2024-06-01": 38.9380433861708, - "2024-05-01": 38.9249060181468, - "2024-04-01": 38.8603346149346, - "2024-03-01": 38.7096266949614, - "2024-02-01": 38.4610082019793, - "2024-01-01": 38.2244116401134, - "2023-12-01": 38.0173121875845, - "2023-11-01": 38.055113105012, - "2023-10-01": 38.1319543142088, - "2023-09-01": 38.1465789314431, - "2023-08-01": 38.0520146691572, - "2023-07-01": 37.8865581945156, - "2023-06-01": 37.8144266078179, - "2023-05-01": 37.6927200474448, - "2023-04-01": 37.5980318477248, - "2023-03-01": 37.408779385719, - "2023-02-01": 37.2853377012672, - "2023-01-01": 37.0783621861724, - "2022-12-01": 36.7842586548431, - "2022-11-01": 36.8975374696914, - "2022-10-01": 36.9348426373822, - "2022-09-01": 36.7856219666192, - "2022-08-01": 36.7066738210411, - "2022-07-01": 36.7196872516309, - "2022-06-01": 36.7240250618275, - "2022-05-01": 36.2264162635607, - "2022-04-01": 35.831427660802, - "2022-03-01": 35.6325080789294, - "2022-02-01": 35.1630330782234, - "2022-01-01": 34.8447617472273, - "2021-12-01": 34.5540045266211, - "2021-11-01": 34.4481619578242, - "2021-10-01": 34.279730984762, - "2021-09-01": 33.9972775722464, - "2021-08-01": 33.9051920586444, - "2021-07-01": 33.835291345762, - "2021-06-01": 33.6733051192777, - "2021-05-01": 33.3633375963723, - "2021-04-01": 33.0979875497747, - "2021-03-01": 32.8281757555463, - "2021-02-01": 32.5972803156532, - "2021-01-01": 32.4198019098952, - "2020-12-01": 32.2824792328144, - "2020-11-01": 32.2521145614382, - "2020-10-01": 32.2718206134742, - "2020-09-01": 32.2584353705818, - "2020-08-01": 32.2135700194056, - "2020-07-01": 32.1123131356736, - "2020-06-01": 31.9506987214918, - "2020-05-01": 31.7768145013253, - "2020-04-01": 31.7761948141544, - "2020-03-01": 31.9901108255637, - "2020-02-01": 32.0598876010118, - "2020-01-01": 31.9722638350406, - "2019-12-01": 31.8486982131546, - "2019-11-01": 31.8776995727547, - "2019-10-01": 31.8948029386728, - "2019-09-01": 31.8220516648041, - "2019-08-01": 31.7971402405322, - "2019-07-01": 31.7987514271767, - "2019-06-01": 31.745706205344, - "2019-05-01": 31.7393853962004, - "2019-04-01": 31.6719634320018, - "2019-03-01": 31.5051436455841, - "2019-02-01": 31.3284088644313, - "2019-01-01": 31.1965394344548, - "2018-12-01": 31.1371734034785, - "2018-11-01": 31.2369430380002, - "2018-10-01": 31.3419180447579, - "2018-09-01": 31.2866419491098, - "2018-08-01": 31.2503282808926, - "2018-07-01": 31.2329770401062, - "2018-06-01": 31.230870103725, - "2018-05-01": 31.1811711926154, - "2018-04-01": 31.052028386191, - "2018-03-01": 30.929082451476, - "2018-02-01": 30.8593056760279, - "2018-01-01": 30.72, - "2015-01-01": 30.72 - }, - "economy": true, - "household": true - }, - "gov.usda.wic.value.INFANT": { - "type": "parameter", - "parameter": "gov.usda.wic.value.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-02-01": 223.005757119746, - "2034-02-01": 217.91583389479, - "2033-02-01": 213.105576781096, - "2032-02-01": 208.463119334159, - "2031-02-01": 203.876595109474, - "2030-02-01": 199.401937329294, - "2029-02-01": 195.039145993618, - "2028-02-01": 190.788221102446, - "2027-02-01": 186.537296211275, - "2026-02-01": 182.286371320103, - "2025-02-01": 177.979513206679, - "2024-12-01": 176.528046089233, - "2024-11-01": 176.465400880311, - "2024-10-01": 176.561046690362, - "2024-09-01": 176.358009093586, - "2024-08-01": 176.075546321213, - "2024-07-01": 175.932357272247, - "2024-06-01": 175.728201011026, - "2024-05-01": 175.668911795439, - "2024-04-01": 175.377499707504, - "2024-03-01": 174.697351724917, - "2024-02-01": 173.575331286537, - "2024-01-01": 172.507566073741, - "2023-12-01": 171.572921929906, - "2023-11-01": 171.743518257775, - "2023-10-01": 172.090304235739, - "2023-09-01": 172.156305437997, - "2023-08-01": 171.729534952212, - "2023-07-01": 170.982826435145, - "2023-06-01": 170.657295081637, - "2023-05-01": 170.108030839119, - "2023-04-01": 169.680701021112, - "2023-03-01": 168.82660071732, - "2023-02-01": 168.269505823688, - "2023-01-01": 167.335421012075, - "2022-12-01": 166.008125648029, - "2022-11-01": 166.519355299415, - "2022-10-01": 166.687714298394, - "2022-09-01": 166.014278302477, - "2022-08-01": 165.65798367673, - "2022-07-01": 165.716713560095, - "2022-06-01": 165.736290187883, - "2022-05-01": 163.490571314455, - "2022-04-01": 161.707979521276, - "2022-03-01": 160.810251304127, - "2022-02-01": 158.691500845211, - "2022-01-01": 157.255135697773, - "2021-12-01": 155.942942303736, - "2021-11-01": 155.465272585701, - "2021-10-01": 154.705140095293, - "2021-09-01": 153.430421960164, - "2021-08-01": 153.01483811883, - "2021-07-01": 152.699374745327, - "2021-06-01": 151.96832753049, - "2021-05-01": 150.569437641961, - "2021-04-01": 149.37190735354, - "2021-03-01": 148.154241105109, - "2021-02-01": 147.112205174549, - "2021-01-01": 146.311241431897, - "2020-12-01": 145.691501329342, - "2020-11-01": 145.554464934824, - "2020-10-01": 145.643398758205, - "2020-09-01": 145.582990878173, - "2020-08-01": 145.380512613619, - "2020-07-01": 144.923538187818, - "2020-06-01": 144.194168969649, - "2020-05-01": 143.40942586145, - "2020-04-01": 143.406629200337, - "2020-03-01": 144.372036616411, - "2020-02-01": 144.686940657691, - "2020-01-01": 144.291492776368, - "2019-12-01": 143.733838550513, - "2019-11-01": 143.864722290583, - "2019-10-01": 143.941910137291, - "2019-09-01": 143.613582122671, - "2019-08-01": 143.501156345944, - "2019-07-01": 143.508427664836, - "2019-06-01": 143.269033473597, - "2019-05-01": 143.240507530248, - "2019-04-01": 142.936230801196, - "2019-03-01": 142.18336962968, - "2019-02-01": 141.385761880363, - "2019-01-01": 140.790632395599, - "2018-12-01": 140.522712261011, - "2018-11-01": 140.972974700142, - "2018-10-01": 141.446729092618, - "2018-09-01": 141.197266921373, - "2018-08-01": 141.033382580174, - "2018-07-01": 140.955076069021, - "2018-06-01": 140.945567421238, - "2018-05-01": 140.721275200006, - "2018-04-01": 140.138451024138, - "2018-03-01": 139.583593459396, - "2018-02-01": 139.268689418115, - "2018-01-01": 138.64, - "2015-01-01": 138.64 - }, - "economy": true, - "household": true - }, - "gov.usda.wic.value.CHILD": { - "type": "parameter", - "parameter": "gov.usda.wic.value.CHILD", - "description": null, - "label": "CHILD", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-02-01": 51.1188903726595, - "2034-02-01": 49.9521436899628, - "2033-02-01": 48.8495039678537, - "2032-02-01": 47.7853284220973, - "2031-02-01": 46.7339742684585, - "2030-02-01": 45.7082628990547, - "2029-02-01": 44.7081943138861, - "2028-02-01": 43.7337685129525, - "2027-02-01": 42.759342712019, - "2026-02-01": 41.7849169110854, - "2025-02-01": 40.7976697180343, - "2024-12-01": 40.4649545925839, - "2024-11-01": 40.4505946334123, - "2024-10-01": 40.4725192139333, - "2024-09-01": 40.4259775605466, - "2024-08-01": 40.361229530353, - "2024-07-01": 40.3284067665321, - "2024-06-01": 40.281608685303, - "2024-05-01": 40.2680180096584, - "2024-04-01": 40.201218556726, - "2024-03-01": 40.0453104285766, - "2024-02-01": 39.7881133026986, - "2024-01-01": 39.5433529271747, - "2023-12-01": 39.3291074648905, - "2023-11-01": 39.368212710849, - "2023-10-01": 39.4477053419778, - "2023-09-01": 39.4628345846765, - "2023-08-01": 39.3650073628196, - "2023-07-01": 39.1938417780503, - "2023-06-01": 39.1192212759262, - "2023-05-01": 38.9933152053319, - "2023-04-01": 38.8953597695538, - "2023-03-01": 38.6995771119189, - "2023-02-01": 38.5718760464281, - "2023-01-01": 38.3577587980651, - "2022-12-01": 38.0535071631157, - "2022-11-01": 38.1706946870701, - "2022-10-01": 38.2092870773439, - "2022-09-01": 38.0549175162486, - "2022-08-01": 37.9732452484599, - "2022-07-01": 37.9867077101833, - "2022-06-01": 37.9911951974244, - "2022-05-01": 37.4764163039049, - "2022-04-01": 37.0677985371187, - "2022-03-01": 36.8620151936321, - "2022-02-01": 36.3763408602194, - "2022-01-01": 36.0470875106408, - "2021-12-01": 35.7462976515632, - "2021-11-01": 35.6368029628793, - "2021-10-01": 35.4625602440018, - "2021-09-01": 35.1703607176429, - "2021-08-01": 35.0750977742096, - "2021-07-01": 35.0027851226666, - "2021-06-01": 34.8352095276903, - "2021-05-01": 34.5145465108304, - "2021-04-01": 34.2400405055937, - "2021-03-01": 33.9609187991947, - "2021-02-01": 33.7220562640448, - "2021-01-01": 33.5384539289216, - "2020-12-01": 33.3963929042591, - "2020-11-01": 33.3649804935712, - "2020-10-01": 33.385366507038, - "2020-09-01": 33.3715194035511, - "2020-08-01": 33.3251059640856, - "2020-07-01": 33.2203551904852, - "2020-06-01": 33.0531642372724, - "2020-05-01": 32.8732801058632, - "2020-04-01": 32.8726390362574, - "2020-03-01": 33.0939362642062, - "2020-02-01": 33.166120701828, - "2020-01-01": 33.0754734595569, - "2019-12-01": 32.947644180145, - "2019-11-01": 32.9776462377001, - "2019-10-01": 32.9953397588223, - "2019-09-01": 32.9200781870923, - "2019-08-01": 32.894307188936, - "2019-07-01": 32.8959739699113, - "2019-06-01": 32.8410984116482, - "2019-05-01": 32.8345595016682, - "2019-04-01": 32.7648111285488, - "2019-03-01": 32.5922351906466, - "2019-02-01": 32.4094021390504, - "2019-01-01": 32.2729825269197, - "2018-12-01": 32.2115680586766, - "2018-11-01": 32.3147802652229, - "2018-10-01": 32.4233774564585, - "2018-09-01": 32.3661940476143, - "2018-08-01": 32.3286273687098, - "2018-07-01": 32.3106774197453, - "2018-06-01": 32.3084977830853, - "2018-05-01": 32.2570840006939, - "2018-04-01": 32.1234850948291, - "2018-03-01": 31.996296885023, - "2018-02-01": 31.9241124474012, - "2018-01-01": 31.78, - "2015-01-01": 31.78 - }, - "economy": true, - "household": true - }, - "gov.usda.wic.value.I-FF-A": { - "type": "parameter", - "parameter": "gov.usda.wic.value.I-FF-A", - "description": null, - "label": "I-FF-A", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-02-01": 281.925988534174, - "2034-02-01": 275.491259425418, - "2033-02-01": 269.410086861099, - "2032-02-01": 263.541048223442, - "2031-02-01": 257.742720894673, - "2030-02-01": 252.085816183679, - "2029-02-01": 246.57033409046, - "2028-02-01": 241.196274615015, - "2027-02-01": 235.822215139571, - "2026-02-01": 230.448155664126, - "2025-02-01": 225.003384879794, - "2024-12-01": 223.168426414166, - "2024-11-01": 223.089229748212, - "2024-10-01": 223.210146086409, - "2024-09-01": 222.953464035148, - "2024-08-01": 222.596371925266, - "2024-07-01": 222.415350974515, - "2024-06-01": 222.157254697075, - "2024-05-01": 222.082300709655, - "2024-04-01": 221.713894790351, - "2024-03-01": 220.85404527428, - "2024-02-01": 219.435576417998, - "2024-01-01": 218.085697531337, - "2023-12-01": 216.904111559829, - "2023-11-01": 217.119781051935, - "2023-10-01": 217.558191167037, - "2023-09-01": 217.641630511524, - "2023-08-01": 217.102103224713, - "2023-07-01": 216.158107251066, - "2023-06-01": 215.746567433341, - "2023-05-01": 215.052182380067, - "2023-04-01": 214.511947980167, - "2023-03-01": 213.432186293456, - "2023-02-01": 212.727901656937, - "2023-01-01": 211.547022798517, - "2022-12-01": 209.869043438618, - "2022-11-01": 210.515344801849, - "2022-10-01": 210.728185841601, - "2022-09-01": 209.876821682596, - "2022-08-01": 209.426390644983, - "2022-07-01": 209.500637519315, - "2022-06-01": 209.525386477425, - "2022-05-01": 206.686327425595, - "2022-04-01": 204.432758011353, - "2022-03-01": 203.29784150371, - "2022-02-01": 200.619297123054, - "2022-01-01": 198.803430710825, - "2021-12-01": 197.144543404326, - "2021-11-01": 196.540668826427, - "2021-10-01": 195.579702138647, - "2021-09-01": 193.968191409102, - "2021-08-01": 193.442806384069, - "2021-07-01": 193.043994601944, - "2021-06-01": 192.119797794785, - "2021-05-01": 190.351307959511, - "2021-04-01": 188.837378836231, - "2021-03-01": 187.297993641751, - "2021-02-01": 185.980641957179, - "2021-01-01": 184.968056013911, - "2020-12-01": 184.184574711438, - "2020-11-01": 184.011332004664, - "2020-10-01": 184.123762985795, - "2020-09-01": 184.047394772196, - "2020-08-01": 183.791419834024, - "2020-07-01": 183.213708440414, - "2020-06-01": 182.291632972522, - "2020-05-01": 181.299553308831, - "2020-04-01": 181.296017743387, - "2020-03-01": 182.516494934784, - "2020-02-01": 182.91459960382, - "2020-01-01": 182.414670649986, - "2019-12-01": 181.709678900378, - "2019-11-01": 181.875143363175, - "2019-10-01": 181.972724969439, - "2019-09-01": 181.55764958627, - "2019-08-01": 181.415519855406, - "2019-07-01": 181.424712325562, - "2019-06-01": 181.122067923524, - "2019-05-01": 181.086005155991, - "2019-04-01": 180.701335635643, - "2019-03-01": 179.749561418019, - "2019-02-01": 178.741218153284, - "2019-01-01": 177.988849826722, - "2018-12-01": 177.650142657151, - "2018-11-01": 178.219368693695, - "2018-10-01": 178.818293479971, - "2018-09-01": 178.502921042333, - "2018-08-01": 178.295736907293, - "2018-07-01": 178.196741074851, - "2018-06-01": 178.18472015234, - "2018-05-01": 177.901167803701, - "2018-04-01": 177.164355965094, - "2018-03-01": 176.462899780931, - "2018-02-01": 176.064795111895, - "2018-01-01": 175.27, - "2015-01-01": 175.27 - }, - "economy": true, - "household": true - }, - "gov.usda.wic.value.I-FF-B": { - "type": "parameter", - "parameter": "gov.usda.wic.value.I-FF-B", - "description": null, - "label": "I-FF-B", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-02-01": 303.271101034022, - "2034-02-01": 296.349187265751, - "2033-02-01": 289.807598429803, - "2032-02-01": 283.494204553248, - "2031-02-01": 277.256875663158, - "2030-02-01": 271.171676745997, - "2029-02-01": 265.238607801765, - "2028-02-01": 259.457668830462, - "2027-02-01": 253.676729859158, - "2026-02-01": 247.895790887855, - "2025-02-01": 242.038786930088, - "2024-12-01": 240.064900531333, - "2024-11-01": 239.979707746493, - "2024-10-01": 240.109778873347, - "2024-09-01": 239.833662972481, - "2024-08-01": 239.449534790835, - "2024-07-01": 239.254808425486, - "2024-06-01": 238.977171224891, - "2024-05-01": 238.896542339238, - "2024-04-01": 238.500243759758, - "2024-03-01": 237.57529352435, - "2024-02-01": 236.049429895872, - "2024-01-01": 234.597349304264, - "2023-12-01": 233.326303380442, - "2023-11-01": 233.558301589159, - "2023-10-01": 234.029904505239, - "2023-09-01": 234.119661189267, - "2023-08-01": 233.539285342543, - "2023-07-01": 232.523817773241, - "2023-06-01": 232.081119552018, - "2023-05-01": 231.334161384936, - "2023-04-01": 230.753024888347, - "2023-03-01": 229.591512545034, - "2023-02-01": 228.833905279848, - "2023-01-01": 227.56362000589, - "2022-12-01": 225.758597877087, - "2022-11-01": 226.453831853373, - "2022-10-01": 226.682787462631, - "2022-09-01": 225.766965025598, - "2022-08-01": 225.282431061819, - "2022-07-01": 225.362299297607, - "2022-06-01": 225.38892204287, - "2022-05-01": 222.334912836319, - "2022-04-01": 219.910721717695, - "2022-03-01": 218.68987868494, - "2022-02-01": 215.808536997664, - "2022-01-01": 213.855188145255, - "2021-12-01": 212.070703562798, - "2021-11-01": 211.421108578391, - "2021-10-01": 210.387385412338, - "2021-09-01": 208.653864370812, - "2021-08-01": 208.08870152138, - "2021-07-01": 207.659694997721, - "2021-06-01": 206.665525624629, - "2021-05-01": 204.763140313152, - "2021-04-01": 203.134588952947, - "2021-03-01": 201.478654197614, - "2021-02-01": 200.06156349978, - "2021-01-01": 198.972312893608, - "2020-12-01": 198.129512843581, - "2020-11-01": 197.943153626743, - "2020-10-01": 198.064096955222, - "2020-09-01": 197.98194676984, - "2020-08-01": 197.706591518839, - "2020-07-01": 197.085140579424, - "2020-06-01": 196.093253155926, - "2020-05-01": 195.026061395829, - "2020-04-01": 195.022258146506, - "2020-03-01": 196.335139812884, - "2020-02-01": 196.763385686679, - "2020-01-01": 196.225606232375, - "2019-12-01": 195.467238317323, - "2019-11-01": 195.64523038565, - "2019-10-01": 195.750200066971, - "2019-09-01": 195.303698596425, - "2019-08-01": 195.150807973631, - "2019-07-01": 195.160696421871, - "2019-06-01": 194.835138279803, - "2019-05-01": 194.796345136706, - "2019-04-01": 194.382551610339, - "2019-03-01": 193.358716892527, - "2019-02-01": 192.274030185543, - "2019-01-01": 191.464698729561, - "2018-12-01": 191.100347444396, - "2018-11-01": 191.712670585435, - "2018-10-01": 192.356941020789, - "2018-09-01": 192.017691181158, - "2018-08-01": 191.794820770817, - "2018-07-01": 191.688329789766, - "2018-06-01": 191.675398742067, - "2018-05-01": 191.370378146345, - "2018-04-01": 190.577780987384, - "2018-03-01": 189.823216321656, - "2018-02-01": 189.394970447861, - "2018-01-01": 188.54, - "2015-01-01": 188.54 - }, - "economy": true, - "household": true - }, - "gov.usda.wic.value.I-BF/FF-A": { - "type": "parameter", - "parameter": "gov.usda.wic.value.I-BF/FF-A", - "description": null, - "label": "I-BF/FF-A", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-02-01": 131.705939072164, - "2034-02-01": 128.699859198683, - "2033-02-01": 125.85894854902, - "2032-02-01": 123.117139433648, - "2031-02-01": 120.408364163039, - "2030-02-01": 117.765656581957, - "2029-02-01": 115.189016690403, - "2028-02-01": 112.678444488375, - "2027-02-01": 110.167872286347, - "2026-02-01": 107.657300084319, - "2025-02-01": 105.113694037528, - "2024-12-01": 104.256465765915, - "2024-11-01": 104.21946785978, - "2024-10-01": 104.275955734325, - "2024-09-01": 104.156042877834, - "2024-08-01": 103.989221961778, - "2024-07-01": 103.904655319183, - "2024-06-01": 103.784081785796, - "2024-05-01": 103.749065910347, - "2024-04-01": 103.576959579129, - "2024-03-01": 103.175268026805, - "2024-02-01": 102.512609100848, - "2024-01-01": 101.881993004313, - "2023-12-01": 101.329997458314, - "2023-11-01": 101.430750684843, - "2023-10-01": 101.635560522377, - "2023-09-01": 101.674540459198, - "2023-08-01": 101.422492223652, - "2023-07-01": 100.981490396059, - "2023-06-01": 100.789233419535, - "2023-05-01": 100.464841063958, - "2023-04-01": 100.212462489964, - "2023-03-01": 99.7080356804254, - "2023-02-01": 99.3790185865807, - "2023-01-01": 98.8273533790299, - "2022-12-01": 98.0434602427915, - "2022-11-01": 98.3453895839301, - "2022-10-01": 98.4448214566683, - "2022-09-01": 98.0470939657155, - "2022-08-01": 97.8366683745718, - "2022-07-01": 97.8713539115736, - "2022-06-01": 97.8829157572408, - "2022-05-01": 96.5566068899854, - "2022-04-01": 95.5038182573719, - "2022-03-01": 94.9736250489174, - "2022-02-01": 93.7223030092751, - "2022-01-01": 92.8739938757479, - "2021-12-01": 92.0990198775957, - "2021-11-01": 91.8169108433152, - "2021-10-01": 91.3679808929789, - "2021-09-01": 90.6151395708182, - "2021-08-01": 90.3696981042253, - "2021-07-01": 90.183387219759, - "2021-06-01": 89.7516348686998, - "2021-05-01": 88.925458411164, - "2021-04-01": 88.218203794777, - "2021-03-01": 87.4990569942752, - "2021-02-01": 86.8836364663307, - "2021-01-01": 86.4105918093171, - "2020-12-01": 86.0445768093373, - "2020-11-01": 85.9636438896666, - "2020-10-01": 86.0161677028406, - "2020-09-01": 85.980491150496, - "2020-08-01": 85.8609086324521, - "2020-07-01": 85.5910221207341, - "2020-06-01": 85.1602607850178, - "2020-05-01": 84.6967959429856, - "2020-04-01": 84.6951442507474, - "2020-03-01": 85.2653084113658, - "2020-02-01": 85.4512889573844, - "2020-01-01": 85.2177396749063, - "2019-12-01": 84.888392242614, - "2019-11-01": 84.9656914393606, - "2019-10-01": 85.0112781451343, - "2019-09-01": 84.8173694763724, - "2019-08-01": 84.7509714483977, - "2019-07-01": 84.755265848217, - "2019-06-01": 84.6138809926291, - "2019-05-01": 84.5970337317997, - "2019-04-01": 84.4173296162862, - "2019-03-01": 83.9726940657691, - "2019-02-01": 83.5016314394413, - "2019-01-01": 83.1501513311575, - "2018-12-01": 82.9919192147402, - "2018-11-01": 83.2578416650865, - "2018-10-01": 83.5376383302336, - "2018-09-01": 83.3903073825883, - "2018-08-01": 83.2935182174311, - "2018-07-01": 83.2472708347622, - "2018-06-01": 83.2416550811524, - "2018-05-01": 83.1091893636507, - "2018-04-01": 82.7649767012148, - "2018-03-01": 82.4372809611606, - "2018-02-01": 82.251300415142, - "2018-01-01": 81.88, - "2015-01-01": 81.88 - }, - "economy": true, - "household": true - }, - "gov.usda.wic.value.I-BF/FF-B": { - "type": "parameter", - "parameter": "gov.usda.wic.value.I-BF/FF-B", - "description": null, - "label": "I-BF/FF-B", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-02-01": 192.58856967648, - "2034-02-01": 188.192893769643, - "2033-02-01": 184.038738517027, - "2032-02-01": 180.029495656945, - "2031-02-01": 176.068556927707, - "2030-02-01": 172.204226460158, - "2029-02-01": 168.436504254298, - "2028-02-01": 164.765390310126, - "2027-02-01": 161.094276365954, - "2026-02-01": 157.423162421783, - "2025-02-01": 153.703744346767, - "2024-12-01": 152.450252151355, - "2024-11-01": 152.39615152481, - "2024-10-01": 152.478751588554, - "2024-09-01": 152.303407593589, - "2024-08-01": 152.059471732824, - "2024-07-01": 151.935813157863, - "2024-06-01": 151.759503080281, - "2024-05-01": 151.708300701586, - "2024-04-01": 151.456636179887, - "2024-03-01": 150.869257948819, - "2024-02-01": 149.900277084081, - "2024-01-01": 148.978151226262, - "2023-12-01": 148.170989199853, - "2023-11-01": 148.318316798928, - "2023-10-01": 148.617802410164, - "2023-09-01": 148.67480128456, - "2023-08-01": 148.306240766217, - "2023-07-01": 147.661380619445, - "2023-06-01": 147.380250577931, - "2023-05-01": 146.905904013039, - "2023-04-01": 146.536860453388, - "2023-03-01": 145.799256375395, - "2023-02-01": 145.318147232185, - "2023-01-01": 144.511468247084, - "2022-12-01": 143.365211222147, - "2022-11-01": 143.806710978065, - "2022-10-01": 143.952106411906, - "2022-09-01": 143.37052467654, - "2022-08-01": 143.062827363062, - "2022-07-01": 143.113546700448, - "2022-06-01": 143.130453146244, - "2022-05-01": 141.191042292843, - "2022-04-01": 139.651589642833, - "2022-03-01": 138.876308342781, - "2022-02-01": 137.046547866396, - "2022-01-01": 135.806097786313, - "2021-12-01": 134.672882876704, - "2021-11-01": 134.260365599293, - "2021-10-01": 133.603912461118, - "2021-09-01": 132.503061319175, - "2021-08-01": 132.144161627002, - "2021-07-01": 131.871726329039, - "2021-06-01": 131.240391338904, - "2021-05-01": 130.032305026486, - "2021-04-01": 128.998113585108, - "2021-03-01": 127.946532656626, - "2021-02-01": 127.046626698996, - "2021-01-01": 126.354911545305, - "2020-12-01": 125.819701775549, - "2020-11-01": 125.70135665498, - "2020-10-01": 125.778160223023, - "2020-09-01": 125.725991761711, - "2020-08-01": 125.551130808054, - "2020-07-01": 125.156486059056, - "2020-06-01": 124.526600192845, - "2020-05-01": 123.848893237099, - "2020-04-01": 123.846478030557, - "2020-03-01": 124.68020732893, - "2020-02-01": 124.952159585584, - "2020-01-01": 124.610649380515, - "2019-12-01": 124.129057195996, - "2019-11-01": 124.242088862172, - "2019-10-01": 124.308748562737, - "2019-09-01": 124.025203314681, - "2019-08-01": 123.928112011684, - "2019-07-01": 123.934391548693, - "2019-06-01": 123.72764986868, - "2019-05-01": 123.703014761949, - "2019-04-01": 123.440240290156, - "2019-03-01": 122.79006668899, - "2019-02-01": 122.10124978315, - "2019-01-01": 121.587293830966, - "2018-12-01": 121.355917044221, - "2018-11-01": 121.744765297518, - "2018-10-01": 122.15390128577, - "2018-09-01": 121.938464862204, - "2018-08-01": 121.79693375883, - "2018-07-01": 121.729307975648, - "2018-06-01": 121.721096273405, - "2018-05-01": 121.527396708719, - "2018-04-01": 121.024067665321, - "2018-03-01": 120.544890687344, - "2018-02-01": 120.272938430691, - "2018-01-01": 119.73, - "2015-01-01": 119.73 - }, - "economy": true, - "household": true - }, - "gov.usda.wic.value.I-BF/FF-C": { - "type": "parameter", - "parameter": "gov.usda.wic.value.I-BF/FF-C", - "description": null, - "label": "I-BF/FF-C", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-02-01": 229.954580480661, - "2034-02-01": 224.706056070393, - "2033-02-01": 219.745912122227, - "2032-02-01": 214.958796451323, - "2031-02-01": 210.229356872839, - "2030-02-01": 205.615269479197, - "2029-02-01": 201.116534270395, - "2028-02-01": 196.733151246435, - "2027-02-01": 192.349768222474, - "2026-02-01": 187.966385198514, - "2025-02-01": 183.525326082133, - "2024-12-01": 182.02863148382, - "2024-11-01": 181.964034260309, - "2024-10-01": 182.062660378348, - "2024-09-01": 181.853296162862, - "2024-08-01": 181.562031896138, - "2024-07-01": 181.414381099541, - "2024-06-01": 181.203863362206, - "2024-05-01": 181.142726704241, - "2024-04-01": 180.84223426273, - "2024-03-01": 180.140892978896, - "2024-02-01": 178.98391056494, - "2024-01-01": 177.882873960632, - "2023-12-01": 176.919106456285, - "2023-11-01": 177.095018538168, - "2023-10-01": 177.452610311175, - "2023-09-01": 177.520668100231, - "2023-08-01": 177.080599515063, - "2023-07-01": 176.310623681248, - "2023-06-01": 175.974948823361, - "2023-05-01": 175.408569595791, - "2023-04-01": 174.967924249698, - "2023-03-01": 174.087210318437, - "2023-02-01": 173.512756437928, - "2023-01-01": 172.549565694506, - "2022-12-01": 171.180912021366, - "2022-11-01": 171.70807150609, - "2022-10-01": 171.881676544276, - "2022-09-01": 171.187256391533, - "2022-08-01": 170.819859682814, - "2022-07-01": 170.880419579855, - "2022-06-01": 170.900606212203, - "2022-05-01": 168.584911101518, - "2022-04-01": 166.746774036076, - "2022-03-01": 165.821072752726, - "2022-02-01": 163.636302371837, - "2022-01-01": 162.155180318477, - "2021-12-01": 160.802099190292, - "2021-11-01": 160.30954536102, - "2021-10-01": 159.525727265025, - "2021-09-01": 158.211289118761, - "2021-08-01": 157.782755752077, - "2021-07-01": 157.457462590825, - "2021-06-01": 156.703636062889, - "2021-05-01": 155.261156991451, - "2021-04-01": 154.026311852727, - "2021-03-01": 152.770703320733, - "2021-02-01": 151.696197718938, - "2021-01-01": 150.870276075476, - "2020-12-01": 150.231224971456, - "2020-11-01": 150.089918545026, - "2020-10-01": 150.181623531975, - "2020-09-01": 150.119333352161, - "2020-08-01": 149.910545897598, - "2020-07-01": 149.439332222523, - "2020-06-01": 148.687235977359, - "2020-05-01": 147.878040400699, - "2020-04-01": 147.875156596078, - "2020-03-01": 148.870645951256, - "2020-02-01": 149.195362351584, - "2020-01-01": 148.787592378171, - "2019-12-01": 148.212561736738, - "2019-11-01": 148.347523793002, - "2019-10-01": 148.427116800542, - "2019-09-01": 148.088558138034, - "2019-08-01": 147.972629192268, - "2019-07-01": 147.980127084283, - "2019-06-01": 147.733273408723, - "2019-05-01": 147.703858601589, - "2019-04-01": 147.390100658821, - "2019-03-01": 146.613780454841, - "2019-02-01": 145.791319376924, - "2019-01-01": 145.177645753569, - "2018-12-01": 144.901377270875, - "2018-11-01": 145.36566981486, - "2018-10-01": 145.854186317662, - "2018-09-01": 145.596950945467, - "2018-08-01": 145.427959994675, - "2018-07-01": 145.347213465286, - "2018-06-01": 145.337408529574, - "2018-05-01": 145.106127398968, - "2018-04-01": 144.505142515946, - "2018-03-01": 143.932995679134, - "2018-02-01": 143.608279278807, - "2018-01-01": 142.96, - "2015-01-01": 142.96 - }, - "economy": true, - "household": true - }, - "gov.usda.wic.value.I-BF-A": { - "type": "parameter", - "parameter": "gov.usda.wic.value.I-BF-A", - "description": null, - "label": "I-BF-A", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-02-01": 0, - "2034-02-01": 0, - "2033-02-01": 0, - "2032-02-01": 0, - "2031-02-01": 0, - "2030-02-01": 0, - "2029-02-01": 0, - "2028-02-01": 0, - "2027-02-01": 0, - "2026-02-01": 0, - "2025-02-01": 0, - "2024-12-01": 0, - "2024-11-01": 0, - "2024-10-01": 0, - "2024-09-01": 0, - "2024-08-01": 0, - "2024-07-01": 0, - "2024-06-01": 0, - "2024-05-01": 0, - "2024-04-01": 0, - "2024-03-01": 0, - "2024-02-01": 0, - "2024-01-01": 0, - "2023-12-01": 0, - "2023-11-01": 0, - "2023-10-01": 0, - "2023-09-01": 0, - "2023-08-01": 0, - "2023-07-01": 0, - "2023-06-01": 0, - "2023-05-01": 0, - "2023-04-01": 0, - "2023-03-01": 0, - "2023-02-01": 0, - "2023-01-01": 0, - "2022-12-01": 0, - "2022-11-01": 0, - "2022-10-01": 0, - "2022-09-01": 0, - "2022-08-01": 0, - "2022-07-01": 0, - "2022-06-01": 0, - "2022-05-01": 0, - "2022-04-01": 0, - "2022-03-01": 0, - "2022-02-01": 0, - "2022-01-01": 0, - "2021-12-01": 0, - "2021-11-01": 0, - "2021-10-01": 0, - "2021-09-01": 0, - "2021-08-01": 0, - "2021-07-01": 0, - "2021-06-01": 0, - "2021-05-01": 0, - "2021-04-01": 0, - "2021-03-01": 0, - "2021-02-01": 0, - "2021-01-01": 0, - "2020-12-01": 0, - "2020-11-01": 0, - "2020-10-01": 0, - "2020-09-01": 0, - "2020-08-01": 0, - "2020-07-01": 0, - "2020-06-01": 0, - "2020-05-01": 0, - "2020-04-01": 0, - "2020-03-01": 0, - "2020-02-01": 0, - "2020-01-01": 0, - "2019-12-01": 0, - "2019-11-01": 0, - "2019-10-01": 0, - "2019-09-01": 0, - "2019-08-01": 0, - "2019-07-01": 0, - "2019-06-01": 0, - "2019-05-01": 0, - "2019-04-01": 0, - "2019-03-01": 0, - "2019-02-01": 0, - "2019-01-01": 0, - "2018-12-01": 0, - "2018-11-01": 0, - "2018-10-01": 0, - "2018-09-01": 0, - "2018-08-01": 0, - "2018-07-01": 0, - "2018-06-01": 0, - "2018-05-01": 0, - "2018-04-01": 0, - "2018-03-01": 0, - "2018-02-01": 0, - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.wic.value.I-BF-B": { - "type": "parameter", - "parameter": "gov.usda.wic.value.I-BF-B", - "description": null, - "label": "I-BF-B", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-02-01": 0, - "2034-02-01": 0, - "2033-02-01": 0, - "2032-02-01": 0, - "2031-02-01": 0, - "2030-02-01": 0, - "2029-02-01": 0, - "2028-02-01": 0, - "2027-02-01": 0, - "2026-02-01": 0, - "2025-02-01": 0, - "2024-12-01": 0, - "2024-11-01": 0, - "2024-10-01": 0, - "2024-09-01": 0, - "2024-08-01": 0, - "2024-07-01": 0, - "2024-06-01": 0, - "2024-05-01": 0, - "2024-04-01": 0, - "2024-03-01": 0, - "2024-02-01": 0, - "2024-01-01": 0, - "2023-12-01": 0, - "2023-11-01": 0, - "2023-10-01": 0, - "2023-09-01": 0, - "2023-08-01": 0, - "2023-07-01": 0, - "2023-06-01": 0, - "2023-05-01": 0, - "2023-04-01": 0, - "2023-03-01": 0, - "2023-02-01": 0, - "2023-01-01": 0, - "2022-12-01": 0, - "2022-11-01": 0, - "2022-10-01": 0, - "2022-09-01": 0, - "2022-08-01": 0, - "2022-07-01": 0, - "2022-06-01": 0, - "2022-05-01": 0, - "2022-04-01": 0, - "2022-03-01": 0, - "2022-02-01": 0, - "2022-01-01": 0, - "2021-12-01": 0, - "2021-11-01": 0, - "2021-10-01": 0, - "2021-09-01": 0, - "2021-08-01": 0, - "2021-07-01": 0, - "2021-06-01": 0, - "2021-05-01": 0, - "2021-04-01": 0, - "2021-03-01": 0, - "2021-02-01": 0, - "2021-01-01": 0, - "2020-12-01": 0, - "2020-11-01": 0, - "2020-10-01": 0, - "2020-09-01": 0, - "2020-08-01": 0, - "2020-07-01": 0, - "2020-06-01": 0, - "2020-05-01": 0, - "2020-04-01": 0, - "2020-03-01": 0, - "2020-02-01": 0, - "2020-01-01": 0, - "2019-12-01": 0, - "2019-11-01": 0, - "2019-10-01": 0, - "2019-09-01": 0, - "2019-08-01": 0, - "2019-07-01": 0, - "2019-06-01": 0, - "2019-05-01": 0, - "2019-04-01": 0, - "2019-03-01": 0, - "2019-02-01": 0, - "2019-01-01": 0, - "2018-12-01": 0, - "2018-11-01": 0, - "2018-10-01": 0, - "2018-09-01": 0, - "2018-08-01": 0, - "2018-07-01": 0, - "2018-06-01": 0, - "2018-05-01": 0, - "2018-04-01": 0, - "2018-03-01": 0, - "2018-02-01": 0, - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.wic.value.II-FF": { - "type": "parameter", - "parameter": "gov.usda.wic.value.II-FF", - "description": null, - "label": "II-FF", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-02-01": 252.795620231818, - "2034-02-01": 247.025767851307, - "2033-02-01": 241.572940326869, - "2032-02-01": 236.310327716074, - "2031-02-01": 231.111120076493, - "2030-02-01": 226.038722379341, - "2029-02-01": 221.093134624617, - "2028-02-01": 216.274356812323, - "2027-02-01": 211.455579000028, - "2026-02-01": 206.636801187734, - "2025-02-01": 201.754618404225, - "2024-12-01": 200.109259401211, - "2024-11-01": 200.038245833451, - "2024-10-01": 200.146668334228, - "2024-09-01": 199.916508288719, - "2024-08-01": 199.596313184087, - "2024-07-01": 199.433996457778, - "2024-06-01": 199.202568312845, - "2024-05-01": 199.135359043358, - "2024-04-01": 198.805019143331, - "2024-03-01": 198.034014693364, - "2024-02-01": 196.762110970803, - "2024-01-01": 195.55171007032, - "2023-12-01": 194.492213001327, - "2023-11-01": 194.685598163531, - "2023-10-01": 195.078708985061, - "2023-09-01": 195.153526851094, - "2023-08-01": 194.669746920728, - "2023-07-01": 193.823290555015, - "2023-06-01": 193.454273622548, - "2023-05-01": 192.831636805222, - "2023-04-01": 192.347222825144, - "2023-03-01": 191.3790289147, - "2023-02-01": 190.747515401405, - "2023-01-01": 189.688652382124, - "2022-12-01": 188.184052415207, - "2022-11-01": 188.763573852106, - "2022-10-01": 188.954422815462, - "2022-09-01": 188.19102696204, - "2022-08-01": 187.787137295404, - "2022-07-01": 187.85371251518, - "2022-06-01": 187.875904255105, - "2022-05-01": 185.330194660846, - "2022-04-01": 183.309478228243, - "2022-03-01": 182.291828440252, - "2022-02-01": 179.890048130651, - "2022-01-01": 178.261808469865, - "2021-12-01": 176.774327845175, - "2021-11-01": 176.232849391004, - "2021-10-01": 175.3711758322, - "2021-09-01": 173.926176538224, - "2021-08-01": 173.455077602101, - "2021-07-01": 173.097473564452, - "2021-06-01": 172.26877059068, - "2021-05-01": 170.683012260607, - "2021-04-01": 169.325511826907, - "2021-03-01": 167.94518560357, - "2021-02-01": 166.763950989845, - "2021-01-01": 165.855991802055, - "2020-12-01": 165.153464721, - "2020-11-01": 164.998122541524, - "2020-10-01": 165.098936445755, - "2020-09-01": 165.030459076844, - "2020-08-01": 164.800933081048, - "2020-07-01": 164.282914466226, - "2020-06-01": 163.45611364159, - "2020-05-01": 162.566541895452, - "2020-04-01": 162.563371646891, - "2020-03-01": 163.657741450052, - "2020-02-01": 164.014711437989, - "2020-01-01": 163.566438291503, - "2019-12-01": 162.934290728496, - "2019-11-01": 163.082658361137, - "2019-10-01": 163.170157221413, - "2019-09-01": 162.797970040385, - "2019-08-01": 162.670526048244, - "2019-07-01": 162.678768694502, - "2019-06-01": 162.407395417704, - "2019-05-01": 162.375058882384, - "2019-04-01": 162.030135838978, - "2019-03-01": 161.176704926432, - "2019-02-01": 160.272550036915, - "2019-01-01": 159.597921143194, - "2018-12-01": 159.294211331077, - "2018-11-01": 159.804621349353, - "2018-10-01": 160.341661455539, - "2018-09-01": 160.058875283922, - "2018-08-01": 159.873098718264, - "2018-07-01": 159.784331758564, - "2018-06-01": 159.773552913458, - "2018-05-01": 159.519298978888, - "2018-04-01": 158.858619178834, - "2018-03-01": 158.229641864387, - "2018-02-01": 157.87267187645, - "2018-01-01": 157.16, - "2015-01-01": 157.16 - }, - "economy": true, - "household": true - }, - "gov.usda.wic.value.II-BF/FF": { - "type": "parameter", - "parameter": "gov.usda.wic.value.II-BF/FF", - "description": null, - "label": "II-BF/FF", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-02-01": 218.421463930253, - "2034-02-01": 213.436173431719, - "2033-02-01": 208.724799993545, - "2032-02-01": 204.177776791586, - "2031-02-01": 199.685537001698, - "2030-02-01": 195.302864035955, - "2029-02-01": 191.029757894355, - "2028-02-01": 186.866218576898, - "2027-02-01": 182.702679259442, - "2026-02-01": 178.539139941985, - "2025-02-01": 174.320817212457, - "2024-12-01": 172.899187669194, - "2024-11-01": 172.837830247673, - "2024-10-01": 172.931509882316, - "2024-09-01": 172.732646096495, - "2024-08-01": 172.455989865533, - "2024-07-01": 172.315744330629, - "2024-06-01": 172.115784876567, - "2024-05-01": 172.057714459771, - "2024-04-01": 171.772292882877, - "2024-03-01": 171.106126592084, - "2024-02-01": 170.007171345923, - "2024-01-01": 168.961356009473, - "2023-12-01": 168.045925193753, - "2023-11-01": 168.213014600572, - "2023-10-01": 168.552671755417, - "2023-09-01": 168.617316181662, - "2023-08-01": 168.199318747554, - "2023-07-01": 167.467960196396, - "2023-06-01": 167.149120738138, - "2023-05-01": 166.611147631593, - "2023-04-01": 166.192602363364, - "2023-03-01": 165.356059661028, - "2023-02-01": 164.810416876793, - "2023-01-01": 163.895533895194, - "2022-12-01": 162.59552352673, - "2022-11-01": 163.096243913066, - "2022-10-01": 163.261141983402, - "2022-09-01": 162.601549702058, - "2022-08-01": 162.252579367161, - "2022-07-01": 162.310101949836, - "2022-06-01": 162.329276144061, - "2022-05-01": 160.129722149378, - "2022-04-01": 158.38377480665, - "2022-03-01": 157.504501042898, - "2022-02-01": 155.429305393618, - "2022-01-01": 154.022467371615, - "2021-12-01": 152.73724852441, - "2021-11-01": 152.269398185317, - "2021-10-01": 151.524891615261, - "2021-09-01": 150.276377654145, - "2021-08-01": 149.869336902452, - "2021-07-01": 149.560358458367, - "2021-06-01": 148.844339262588, - "2021-05-01": 147.474206126673, - "2021-04-01": 146.301293274216, - "2021-03-01": 145.108658393413, - "2021-02-01": 144.088043426515, - "2021-01-01": 143.303544965647, - "2020-12-01": 142.696544759891, - "2020-11-01": 142.562325400316, - "2020-10-01": 142.64943102551, - "2020-09-01": 142.590264940472, - "2020-08-01": 142.391948988772, - "2020-07-01": 141.944368512146, - "2020-06-01": 141.229992818729, - "2020-05-01": 140.461381547362, - "2020-04-01": 140.458642376759, - "2020-03-01": 141.404204069118, - "2020-02-01": 141.712634679082, - "2020-01-01": 141.325315955734, - "2019-12-01": 140.779125337379, - "2019-11-01": 140.907318521627, - "2019-10-01": 140.982919630286, - "2019-09-01": 140.661341001424, - "2019-08-01": 140.55122634316, - "2019-07-01": 140.558348186729, - "2019-06-01": 140.323875183062, - "2019-05-01": 140.295935642905, - "2019-04-01": 139.997913881235, - "2019-03-01": 139.260529154748, - "2019-02-01": 138.479317698605, - "2019-01-01": 137.896422194161, - "2018-12-01": 137.634009650337, - "2018-11-01": 138.075016117515, - "2018-10-01": 138.539031617763, - "2018-09-01": 138.294697599923, - "2018-08-01": 138.134182202552, - "2018-07-01": 138.057485425652, - "2018-06-01": 138.048172245599, - "2018-05-01": 137.828490763192, - "2018-04-01": 137.257647609403, - "2018-03-01": 136.714196161651, - "2018-02-01": 136.405765551687, - "2018-01-01": 135.79, - "2015-01-01": 135.79 - }, - "economy": true, - "household": true - }, - "gov.usda.wic.value.II-BF": { - "type": "parameter", - "parameter": "gov.usda.wic.value.II-BF", - "description": null, - "label": "II-BF", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-02-01": 70.7750527500635, - "2034-02-01": 69.1596703070598, - "2033-02-01": 67.6330451411443, - "2032-02-01": 66.1596743414815, - "2031-02-01": 64.7040549972364, - "2030-02-01": 63.2839385638266, - "2029-02-01": 61.899325041252, - "2028-02-01": 60.5502144295126, - "2027-02-01": 59.2011038177732, - "2026-02-01": 57.8519932060339, - "2025-02-01": 56.4851311388769, - "2024-12-01": 56.0244808707896, - "2024-11-01": 56.0045992407218, - "2024-10-01": 56.034954229486, - "2024-09-01": 55.97051644632, - "2024-08-01": 55.880871596461, - "2024-07-01": 55.8354278705919, - "2024-06-01": 55.7706350583176, - "2024-05-01": 55.7518185155749, - "2024-04-01": 55.6593334328491, - "2024-03-01": 55.4434757349708, - "2024-02-01": 55.0873815392933, - "2024-01-01": 54.7485062553708, - "2023-12-01": 54.4518794353423, - "2023-11-01": 54.5060213743661, - "2023-10-01": 54.6160803979554, - "2023-09-01": 54.6370271153482, - "2023-08-01": 54.5015835105117, - "2023-07-01": 54.2646015806864, - "2023-06-01": 54.1612881101558, - "2023-05-01": 53.9869688179548, - "2023-04-01": 53.8513476985642, - "2023-03-01": 53.580282974337, - "2023-02-01": 53.4034784783775, - "2023-01-01": 53.1070291729032, - "2022-12-01": 52.685787135843, - "2022-11-01": 52.8480354383601, - "2022-10-01": 52.9014673191671, - "2022-09-01": 52.687739795939, - "2022-08-01": 52.5746630249287, - "2022-07-01": 52.5933020531172, - "2022-06-01": 52.5995150625134, - "2022-05-01": 51.8867941274958, - "2022-04-01": 51.3210552433362, - "2022-03-01": 51.0361443838833, - "2022-02-01": 50.3637192526637, - "2022-01-01": 49.9078618775392, - "2021-12-01": 49.4914127334417, - "2021-11-01": 49.3398153041752, - "2021-10-01": 49.0985730250497, - "2021-09-01": 48.6940173560821, - "2021-08-01": 48.5621240423292, - "2021-07-01": 48.4620058337738, - "2021-06-01": 48.2299943114654, - "2021-05-01": 47.7860304114707, - "2021-04-01": 47.4059717509794, - "2021-03-01": 47.0195225665377, - "2021-02-01": 46.6888129521074, - "2021-01-01": 46.434612110527, - "2020-12-01": 46.2379259844997, - "2020-11-01": 46.1944349187266, - "2020-10-01": 46.2226597328406, - "2020-09-01": 46.2034881609896, - "2020-08-01": 46.1392278923778, - "2020-07-01": 45.9941985016158, - "2020-06-01": 45.76271952297, - "2020-05-01": 45.5136666034607, - "2020-04-01": 45.5127790306899, - "2020-03-01": 45.819169151198, - "2020-02-01": 45.9191098451992, - "2020-01-01": 45.7936070553967, - "2019-12-01": 45.6166250448829, - "2019-11-01": 45.6581634505602, - "2019-10-01": 45.6826604590365, - "2019-09-01": 45.5784594157351, - "2019-08-01": 45.5427789903456, - "2019-07-01": 45.5450866795499, - "2019-06-01": 45.4691104503625, - "2019-05-01": 45.4600572080995, - "2019-04-01": 45.3634892906276, - "2019-03-01": 45.1245547007064, - "2019-02-01": 44.8714189464511, - "2019-01-01": 44.6825434608076, - "2018-12-01": 44.5975139893572, - "2018-11-01": 44.7404132054691, - "2018-10-01": 44.8907680328563, - "2018-09-01": 44.8115965416937, - "2018-08-01": 44.7595847773201, - "2018-07-01": 44.7347327397354, - "2018-06-01": 44.7317149923144, - "2018-05-01": 44.6605316560898, - "2018-04-01": 44.4755614906381, - "2018-03-01": 44.2994670528953, - "2018-02-01": 44.1995263588941, - "2018-01-01": 44, - "2015-01-01": 44 - }, - "economy": true, - "household": true - }, - "gov.usda.wic.value.IV-A": { - "type": "parameter", - "parameter": "gov.usda.wic.value.IV-A", - "description": null, - "label": "IV-A", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-02-01": 54.1107448752759, - "2034-02-01": 52.8757115711248, - "2033-02-01": 51.7085372397294, - "2032-02-01": 50.5820782919872, - "2031-02-01": 49.4691911387962, - "2030-02-01": 48.3834475747074, - "2029-02-01": 47.3248475997208, - "2028-02-01": 46.2933912138365, - "2027-02-01": 45.2619348279521, - "2026-02-01": 44.2304784420677, - "2025-02-01": 43.1854502616323, - "2024-12-01": 42.8332621930309, - "2024-11-01": 42.8180617831337, - "2024-10-01": 42.8412695518161, - "2024-09-01": 42.7920039375956, - "2024-08-01": 42.7234663751125, - "2024-07-01": 42.6887225810616, - "2024-06-01": 42.6391855309501, - "2024-05-01": 42.6247994287259, - "2024-04-01": 42.5540903791146, - "2024-03-01": 42.3890573573731, - "2024-02-01": 42.1168071586778, - "2024-01-01": 41.8577216006972, - "2023-12-01": 41.6309369137481, - "2023-11-01": 41.672330887129, - "2023-10-01": 41.7564760133459, - "2023-09-01": 41.7724907309162, - "2023-08-01": 41.6689379384912, - "2023-07-01": 41.4877544812339, - "2023-06-01": 41.4087666369464, - "2023-05-01": 41.2754916144545, - "2023-04-01": 41.1718031040841, - "2023-03-01": 40.9645618012886, - "2023-02-01": 40.8293867275595, - "2023-01-01": 40.602737758556, - "2022-12-01": 40.2806790738582, - "2022-11-01": 40.4047252760553, - "2022-10-01": 40.4455763776542, - "2022-09-01": 40.2821719712588, - "2022-08-01": 40.1957196399682, - "2022-07-01": 40.2099700242469, - "2022-06-01": 40.2147201523398, - "2022-05-01": 39.6698126011127, - "2022-04-01": 39.2372795087688, - "2022-03-01": 39.0194522062235, - "2022-02-01": 38.5053526286275, - "2022-01-01": 38.1568289445549, - "2021-12-01": 37.8384346443859, - "2021-11-01": 37.7225315189194, - "2021-10-01": 37.5380908309698, - "2021-09-01": 37.22878963315, - "2021-08-01": 37.1279511996353, - "2021-07-01": 37.051406278367, - "2021-06-01": 36.874022923584, - "2021-05-01": 36.5345923418608, - "2021-04-01": 36.2440202205215, - "2021-03-01": 35.9485622531438, - "2021-02-01": 35.6957197206567, - "2021-01-01": 35.5013716226848, - "2020-12-01": 35.3509961390584, - "2020-11-01": 35.3177452424082, - "2020-10-01": 35.3393243957445, - "2020-09-01": 35.3246668576293, - "2020-08-01": 35.2755369613543, - "2020-07-01": 35.1646553998717, - "2020-06-01": 34.9876791989252, - "2020-05-01": 34.7972669213732, - "2020-04-01": 34.7965883316456, - "2020-03-01": 35.0308375055978, - "2020-02-01": 35.1072467089205, - "2020-01-01": 35.0112941214442, - "2019-12-01": 34.8759833297696, - "2019-11-01": 34.9077413290192, - "2019-10-01": 34.9264704054997, - "2019-09-01": 34.8468039714847, - "2019-08-01": 34.819524664437, - "2019-07-01": 34.8212889977286, - "2019-06-01": 34.7632017170499, - "2019-05-01": 34.7562801018288, - "2019-04-01": 34.6824495394708, - "2019-03-01": 34.4997731848128, - "2019-02-01": 34.306239394514, - "2019-01-01": 34.1618355004902, - "2018-12-01": 34.0968266045904, - "2018-11-01": 34.2060795507268, - "2018-10-01": 34.3210326505747, - "2018-09-01": 34.2605024468768, - "2018-08-01": 34.220737088842, - "2018-07-01": 34.2017365764704, - "2018-06-01": 34.1994293713968, - "2018-05-01": 34.1450064752468, - "2018-04-01": 34.0035883760242, - "2018-03-01": 33.8689561740772, - "2018-02-01": 33.7925469707545, - "2018-01-01": 33.64, - "2015-01-01": 33.64 - }, - "economy": true, - "household": true - }, - "gov.usda.wic.value.IV-B": { - "type": "parameter", - "parameter": "gov.usda.wic.value.IV-B", - "description": null, - "label": "IV-B", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-02-01": 54.1268301145372, - "2034-02-01": 52.8914296780128, - "2033-02-01": 51.7239083863524, - "2032-02-01": 50.5971145816103, - "2031-02-01": 49.483896605841, - "2030-02-01": 48.3978302880174, - "2029-02-01": 47.3389156281393, - "2028-02-01": 46.3071526262068, - "2027-02-01": 45.2753896242743, - "2026-02-01": 44.2436266223418, - "2025-02-01": 43.1982877914365, - "2024-12-01": 42.8459950295925, - "2024-11-01": 42.830790101143, - "2024-10-01": 42.8540047686864, - "2024-09-01": 42.8047245095152, - "2024-08-01": 42.7361665732026, - "2024-07-01": 42.7014124510322, - "2024-06-01": 42.6518606752815, - "2024-05-01": 42.6374702965703, - "2024-04-01": 42.5667402276221, - "2024-03-01": 42.4016581473129, - "2024-02-01": 42.1293270181186, - "2024-01-01": 41.8701644430279, - "2023-12-01": 41.6433123408925, - "2023-11-01": 41.6847186192595, - "2023-10-01": 41.7688887588909, - "2023-09-01": 41.7849082370788, - "2023-08-01": 41.6813246620163, - "2023-07-01": 41.5000873452295, - "2023-06-01": 41.4210760206078, - "2023-05-01": 41.287761380095, - "2023-04-01": 41.1840420467428, - "2023-03-01": 40.9767391383282, - "2023-02-01": 40.8415238817592, - "2023-01-01": 40.6148075379135, - "2022-12-01": 40.292653116389, - "2022-11-01": 40.4167361932004, - "2022-10-01": 40.4575994384085, - "2022-09-01": 40.294146457576, - "2022-08-01": 40.2076684270193, - "2022-07-01": 40.2219230474408, - "2022-06-01": 40.2266745875812, - "2022-05-01": 39.6816050543235, - "2022-04-01": 39.2489433849605, - "2022-03-01": 39.0310513299471, - "2022-02-01": 38.5167989284576, - "2022-01-01": 38.1681716404362, - "2021-12-01": 37.8496826927344, - "2021-11-01": 37.7337451133067, - "2021-10-01": 37.5492495975664, - "2021-09-01": 37.2398564552764, - "2021-08-01": 37.1389880460085, - "2021-07-01": 37.062420370602, - "2021-06-01": 36.8849842859275, - "2021-05-01": 36.5454528033179, - "2021-04-01": 36.2547943050103, - "2021-03-01": 35.9592485082726, - "2021-02-01": 35.7063308145094, - "2021-01-01": 35.511924943619, - "2020-12-01": 35.3615047586004, - "2020-11-01": 35.328243977617, - "2020-10-01": 35.3498295456838, - "2020-09-01": 35.3351676503932, - "2020-08-01": 35.2860231495116, - "2020-07-01": 35.1751086268039, - "2020-06-01": 34.9980798169986, - "2020-05-01": 34.8076109365103, - "2020-04-01": 34.8069321450617, - "2020-03-01": 35.0412509531321, - "2020-02-01": 35.117682870249, - "2020-01-01": 35.0217017594113, - "2019-12-01": 34.8863507445525, - "2019-11-01": 34.9181181843489, - "2019-10-01": 34.9368528283313, - "2019-09-01": 34.857162712261, - "2019-08-01": 34.8298752960257, - "2019-07-01": 34.8316401537922, - "2019-06-01": 34.7735356057886, - "2019-05-01": 34.7666119330125, - "2019-04-01": 34.6927594234005, - "2019-03-01": 34.5100287654266, - "2019-02-01": 34.3164374442746, - "2019-01-01": 34.171990624004, - "2018-12-01": 34.1069624032243, - "2018-11-01": 34.2162478264553, - "2018-10-01": 34.3312350978549, - "2018-09-01": 34.2706869006362, - "2018-08-01": 34.2309097217459, - "2018-07-01": 34.211903561184, - "2018-06-01": 34.2095956702586, - "2018-05-01": 34.1551565960777, - "2018-04-01": 34.0136964581812, - "2018-03-01": 33.8790242347711, - "2018-02-01": 33.8025923176542, - "2018-01-01": 33.65, - "2015-01-01": 33.65 - }, - "economy": true, - "household": true - }, - "gov.usda.wic.value.V": { - "type": "parameter", - "parameter": "gov.usda.wic.value.V", - "description": null, - "label": "V", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-02-01": 62.925455990511, - "2034-02-01": 61.4892341457314, - "2033-02-01": 60.1319255891264, - "2032-02-01": 58.8219650054263, - "2031-02-01": 57.5277870793611, - "2030-02-01": 56.2651744685658, - "2029-02-01": 55.0341271730404, - "2028-02-01": 53.8346451927849, - "2027-02-01": 52.6351632125293, - "2026-02-01": 51.4356812322738, - "2025-02-01": 50.2204165943833, - "2024-12-01": 49.8108566287566, - "2024-11-01": 49.7931800522054, - "2024-10-01": 49.8201683967612, - "2024-09-01": 49.7628773495463, - "2024-08-01": 49.6831749284899, - "2024-07-01": 49.6427713249444, - "2024-06-01": 49.5851646245769, - "2024-05-01": 49.5684350074839, - "2024-04-01": 49.4862073612058, - "2024-03-01": 49.2942902443649, - "2024-02-01": 48.977690132208, - "2024-01-01": 48.676399197957, - "2023-12-01": 48.4126709888771, - "2023-11-01": 48.4608080946637, - "2023-10-01": 48.5586605720003, - "2023-09-01": 48.5772841080095, - "2023-08-01": 48.4568624302549, - "2023-07-01": 48.2461639508285, - "2023-06-01": 48.1543088833931, - "2023-05-01": 47.999323185418, - "2023-04-01": 47.878743681087, - "2023-03-01": 47.6377424990015, - "2023-02-01": 47.4805472289575, - "2023-01-01": 47.2169768464539, - "2022-12-01": 46.8424543807768, - "2022-11-01": 46.9867078715602, - "2022-10-01": 47.0342136710413, - "2022-09-01": 46.8441904731166, - "2022-08-01": 46.7436549439821, - "2022-07-01": 46.7602267344987, - "2022-06-01": 46.765750664671, - "2022-05-01": 46.1320769606281, - "2022-04-01": 45.6290836618025, - "2022-03-01": 45.3757720067617, - "2022-02-01": 44.7779249355501, - "2022-01-01": 44.3726262874848, - "2021-12-01": 44.0023651393691, - "2021-11-01": 43.8675812431667, - "2021-10-01": 43.6530949259078, - "2021-09-01": 43.2934081584075, - "2021-08-01": 43.1761430121799, - "2021-07-01": 43.0871288231188, - "2021-06-01": 42.8808494878302, - "2021-05-01": 42.4861252203803, - "2021-04-01": 42.1482185204162, - "2021-03-01": 41.8046300637035, - "2021-02-01": 41.5105991519646, - "2021-01-01": 41.2845914946322, - "2020-12-01": 41.109719648037, - "2020-11-01": 41.0710521368315, - "2020-10-01": 41.096146562471, - "2020-09-01": 41.0791012922253, - "2020-08-01": 41.0219680715868, - "2020-07-01": 40.8930237587093, - "2020-06-01": 40.6872179031497, - "2020-05-01": 40.4657872165314, - "2020-04-01": 40.4649980836497, - "2020-03-01": 40.7374067544288, - "2020-02-01": 40.8262631169135, - "2020-01-01": 40.7146797274345, - "2019-12-01": 40.5573266308141, - "2019-11-01": 40.5942580496799, - "2019-10-01": 40.6160381172161, - "2019-09-01": 40.523393916899, - "2019-08-01": 40.4916707750528, - "2019-07-01": 40.4937225205453, - "2019-06-01": 40.4261727458677, - "2019-05-01": 40.4181235904739, - "2019-04-01": 40.3322659329398, - "2019-03-01": 40.1198313611735, - "2019-02-01": 39.8947706632993, - "2019-01-01": 39.7268431860635, - "2018-12-01": 39.6512442559921, - "2018-11-01": 39.7782946499534, - "2018-10-01": 39.9119737601214, - "2018-09-01": 39.8415831070695, - "2018-08-01": 39.7953399201991, - "2018-07-01": 39.7732441995102, - "2018-06-01": 39.7705611477123, - "2018-05-01": 39.7072726905962, - "2018-04-01": 39.5428173980401, - "2018-03-01": 39.3862534343015, - "2018-02-01": 39.2973970718168, - "2018-01-01": 39.12, - "2015-01-01": 39.12 - }, - "economy": true, - "household": true - }, - "gov.usda.wic.value.VI": { - "type": "parameter", - "parameter": "gov.usda.wic.value.VI", - "description": null, - "label": "VI", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-02-01": 51.9070670964671, - "2034-02-01": 50.7223309274732, - "2033-02-01": 49.6026901523801, - "2032-02-01": 48.5221066136275, - "2031-02-01": 47.454542153655, - "2030-02-01": 46.4130158512428, - "2029-02-01": 45.3975277063909, - "2028-02-01": 44.4080777190994, - "2027-02-01": 43.4186277318078, - "2026-02-01": 42.4291777445162, - "2025-02-01": 41.4267086784445, - "2024-12-01": 41.0888635840995, - "2024-11-01": 41.0742822158658, - "2024-10-01": 41.0965448405798, - "2024-09-01": 41.0492855846079, - "2024-08-01": 40.9835392367681, - "2024-07-01": 40.9502103950909, - "2024-06-01": 40.9026907575434, - "2024-05-01": 40.8888905340364, - "2024-04-01": 40.8210611335918, - "2024-03-01": 40.6627491356252, - "2024-02-01": 40.4015864152953, - "2024-01-01": 40.1530522013822, - "2023-12-01": 39.9355033949659, - "2023-11-01": 39.9752115852453, - "2023-10-01": 40.0559298736823, - "2023-09-01": 40.0712923866428, - "2023-08-01": 39.9719568155503, - "2023-07-01": 39.7981521138352, - "2023-06-01": 39.7223810753348, - "2023-05-01": 39.5945337217137, - "2023-04-01": 39.4950679598333, - "2023-03-01": 39.2962666268604, - "2023-02-01": 39.1665966022101, - "2023-01-01": 38.9491779865815, - "2022-12-01": 38.6402352471285, - "2022-11-01": 38.7592296271791, - "2022-10-01": 38.7984170543074, - "2022-09-01": 38.6416673457943, - "2022-08-01": 38.5587358139648, - "2022-07-01": 38.5724058466839, - "2022-06-01": 38.576962524257, - "2022-05-01": 38.0542465112339, - "2022-04-01": 37.6393284705104, - "2022-03-01": 37.430372256089, - "2022-02-01": 36.9372095518968, - "2022-01-01": 36.6028796088225, - "2021-12-01": 36.2974520206401, - "2021-11-01": 36.1862690878576, - "2021-10-01": 36.0093398072353, - "2021-09-01": 35.7126350018357, - "2021-08-01": 35.6159032464991, - "2021-07-01": 35.5424756421791, - "2021-06-01": 35.3723162825225, - "2021-05-01": 35.0467091222309, - "2021-04-01": 34.7679706455478, - "2021-03-01": 34.4845453005039, - "2021-02-01": 34.2419998628297, - "2021-01-01": 34.0555666546979, - "2020-12-01": 33.9113152618138, - "2020-11-01": 33.8794185188024, - "2020-10-01": 33.9001188540629, - "2020-09-01": 33.8860582489803, - "2020-08-01": 33.8389291837962, - "2020-07-01": 33.7325633101623, - "2020-06-01": 33.5627945228691, - "2020-05-01": 33.3801368475836, - "2020-04-01": 33.3794858936446, - "2020-03-01": 33.60419519339, - "2020-02-01": 33.6774926069223, - "2020-01-01": 33.5854477199466, - "2019-12-01": 33.4556475045085, - "2019-11-01": 33.486112148854, - "2019-10-01": 33.5040784775706, - "2019-09-01": 33.4276564851311, - "2019-08-01": 33.401488136783, - "2019-07-01": 33.4031806170245, - "2019-06-01": 33.3474589598454, - "2019-05-01": 33.3408192296675, - "2019-04-01": 33.2699954411035, - "2019-03-01": 33.0947586407226, - "2019-02-01": 32.9091065773177, - "2019-01-01": 32.7705835790969, - "2018-12-01": 32.7082221917399, - "2018-11-01": 32.8130257759202, - "2018-10-01": 32.923297373188, - "2018-09-01": 32.8652322818286, - "2018-08-01": 32.8270863810027, - "2018-07-01": 32.8088596707105, - "2018-06-01": 32.8066464273179, - "2018-05-01": 32.7544399214095, - "2018-04-01": 32.6187811205203, - "2018-03-01": 32.4896318590212, - "2018-02-01": 32.4163344454889, - "2018-01-01": 32.27, - "2015-01-01": 32.27 - }, - "economy": true, - "household": true - }, - "gov.usda.wic.value.VII": { - "type": "parameter", - "parameter": "gov.usda.wic.value.VII", - "description": null, - "label": "VII", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-02-01": 78.6889904666616, - "2034-02-01": 76.8929788959402, - "2033-02-01": 75.195649279654, - "2032-02-01": 73.557528836029, - "2031-02-01": 71.939144783291, - "2030-02-01": 70.3602335123272, - "2029-02-01": 68.8207950231374, - "2028-02-01": 67.3208293157218, - "2027-02-01": 65.8208636083061, - "2026-02-01": 64.3208979008904, - "2025-02-01": 62.8011958025877, - "2024-12-01": 62.2890364590688, - "2024-11-01": 62.2669317012753, - "2024-10-01": 62.3006809296921, - "2024-09-01": 62.2290378307722, - "2024-08-01": 62.1293690567926, - "2024-07-01": 62.0788438961217, - "2024-06-01": 62.006806069384, - "2024-05-01": 61.9858854950437, - "2024-04-01": 61.8830588985222, - "2024-03-01": 61.6430643853357, - "2024-02-01": 61.2471523841415, - "2024-01-01": 60.8703846821077, - "2023-12-01": 60.5405895903852, - "2023-11-01": 60.6007855825907, - "2023-10-01": 60.7231512060904, - "2023-09-01": 60.7464401473371, - "2023-08-01": 60.5958514848689, - "2023-07-01": 60.3323706665268, - "2023-06-01": 60.2175048715642, - "2023-05-01": 60.0236935130534, - "2023-04-01": 59.8729074866763, - "2023-03-01": 59.5715327978311, - "2023-02-01": 59.3749583445961, - "2023-01-01": 59.0453606167824, - "2022-12-01": 58.5770160610327, - "2022-11-01": 58.7574066737404, - "2022-10-01": 58.8168132103104, - "2022-09-01": 58.5791870640303, - "2022-08-01": 58.4534662540798, - "2022-07-01": 58.4741894645112, - "2022-06-01": 58.4810972013217, - "2022-05-01": 57.6886811072067, - "2022-04-01": 57.0596823296365, - "2022-03-01": 56.7429132558993, - "2022-02-01": 55.995298769098, - "2022-01-01": 55.4884682511186, - "2021-12-01": 55.0254525209084, - "2021-11-01": 54.856903742733, - "2021-10-01": 54.588686190578, - "2021-09-01": 54.1388938422622, - "2021-08-01": 53.9922524579714, - "2021-07-01": 53.8809392133685, - "2021-06-01": 53.6229845844748, - "2021-05-01": 53.1293774483897, - "2021-04-01": 52.706821319498, - "2021-03-01": 52.2771600898869, - "2021-02-01": 51.9094711276612, - "2021-01-01": 51.6268460101587, - "2020-12-01": 51.4081667991302, - "2020-11-01": 51.3598126414569, - "2020-10-01": 51.3911935029673, - "2020-09-01": 51.3698782008093, - "2020-08-01": 51.2984324657982, - "2020-07-01": 51.137186152251, - "2020-06-01": 50.8798236150839, - "2020-05-01": 50.6029220509386, - "2020-04-01": 50.6019352313943, - "2020-03-01": 50.9425853381047, - "2020-02-01": 51.0537012187988, - "2020-01-01": 50.9141649352274, - "2019-12-01": 50.7173931180835, - "2019-11-01": 50.7635762727592, - "2019-10-01": 50.7908124921833, - "2019-09-01": 50.6749598776763, - "2019-08-01": 50.6352897319934, - "2019-07-01": 50.6378554628087, - "2019-06-01": 50.5533837098121, - "2019-05-01": 50.5433181504597, - "2019-04-01": 50.4359521840342, - "2019-03-01": 50.1703003626945, - "2019-02-01": 49.8888594286452, - "2019-01-01": 49.678864229607, - "2018-12-01": 49.584326917258, - "2018-11-01": 49.7432048638988, - "2018-10-01": 49.9103720947121, - "2018-09-01": 49.8223477913559, - "2018-08-01": 49.7645201660568, - "2018-07-01": 49.7368892188149, - "2018-06-01": 49.7335340323641, - "2018-05-01": 49.6543911049071, - "2018-04-01": 49.448737911864, - "2018-03-01": 49.2529529142645, - "2018-02-01": 49.1418370335704, - "2018-01-01": 48.92, - "2015-01-01": 48.92 - }, - "economy": true, - "household": true - }, - "gov.usda.wic.value.NONE": { - "type": "parameter", - "parameter": "gov.usda.wic.value.NONE", - "description": null, - "label": "NONE", - "unit": "currency-USD", - "period": "month", - "values": { - "2035-02-01": 0, - "2034-02-01": 0, - "2033-02-01": 0, - "2032-02-01": 0, - "2031-02-01": 0, - "2030-02-01": 0, - "2029-02-01": 0, - "2028-02-01": 0, - "2027-02-01": 0, - "2026-02-01": 0, - "2025-02-01": 0, - "2024-12-01": 0, - "2024-11-01": 0, - "2024-10-01": 0, - "2024-09-01": 0, - "2024-08-01": 0, - "2024-07-01": 0, - "2024-06-01": 0, - "2024-05-01": 0, - "2024-04-01": 0, - "2024-03-01": 0, - "2024-02-01": 0, - "2024-01-01": 0, - "2023-12-01": 0, - "2023-11-01": 0, - "2023-10-01": 0, - "2023-09-01": 0, - "2023-08-01": 0, - "2023-07-01": 0, - "2023-06-01": 0, - "2023-05-01": 0, - "2023-04-01": 0, - "2023-03-01": 0, - "2023-02-01": 0, - "2023-01-01": 0, - "2022-12-01": 0, - "2022-11-01": 0, - "2022-10-01": 0, - "2022-09-01": 0, - "2022-08-01": 0, - "2022-07-01": 0, - "2022-06-01": 0, - "2022-05-01": 0, - "2022-04-01": 0, - "2022-03-01": 0, - "2022-02-01": 0, - "2022-01-01": 0, - "2021-12-01": 0, - "2021-11-01": 0, - "2021-10-01": 0, - "2021-09-01": 0, - "2021-08-01": 0, - "2021-07-01": 0, - "2021-06-01": 0, - "2021-05-01": 0, - "2021-04-01": 0, - "2021-03-01": 0, - "2021-02-01": 0, - "2021-01-01": 0, - "2020-12-01": 0, - "2020-11-01": 0, - "2020-10-01": 0, - "2020-09-01": 0, - "2020-08-01": 0, - "2020-07-01": 0, - "2020-06-01": 0, - "2020-05-01": 0, - "2020-04-01": 0, - "2020-03-01": 0, - "2020-02-01": 0, - "2020-01-01": 0, - "2019-12-01": 0, - "2019-11-01": 0, - "2019-10-01": 0, - "2019-09-01": 0, - "2019-08-01": 0, - "2019-07-01": 0, - "2019-06-01": 0, - "2019-05-01": 0, - "2019-04-01": 0, - "2019-03-01": 0, - "2019-02-01": 0, - "2019-01-01": 0, - "2018-12-01": 0, - "2018-11-01": 0, - "2018-10-01": 0, - "2018-09-01": 0, - "2018-08-01": 0, - "2018-07-01": 0, - "2018-06-01": 0, - "2018-05-01": 0, - "2018-04-01": 0, - "2018-03-01": 0, - "2018-02-01": 0, - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.wic.nutritional_risk": { - "type": "parameterNode", - "parameter": "gov.usda.wic.nutritional_risk", - "description": "Percentage of otherwise-eligible children in WIC applicant families who are simulated to be found at nutritional risk.", - "label": "WIC nutritional risk", - "economy": true, - "household": true - }, - "gov.usda.wic.nutritional_risk.PREGNANT": { - "type": "parameter", - "parameter": "gov.usda.wic.nutritional_risk.PREGNANT", - "description": null, - "label": "PREGNANT", - "unit": null, - "period": null, - "values": { - "1980-01-01": 0.913 - }, - "economy": true, - "household": true - }, - "gov.usda.wic.nutritional_risk.POSTPARTUM": { - "type": "parameter", - "parameter": "gov.usda.wic.nutritional_risk.POSTPARTUM", - "description": null, - "label": "POSTPARTUM", - "unit": null, - "period": null, - "values": { - "1980-01-01": 0.933 - }, - "economy": true, - "household": true - }, - "gov.usda.wic.nutritional_risk.BREASTFEEDING": { - "type": "parameter", - "parameter": "gov.usda.wic.nutritional_risk.BREASTFEEDING", - "description": null, - "label": "BREASTFEEDING", - "unit": null, - "period": null, - "values": { - "1980-01-01": 0.889 - }, - "economy": true, - "household": true - }, - "gov.usda.wic.nutritional_risk.INFANT": { - "type": "parameter", - "parameter": "gov.usda.wic.nutritional_risk.INFANT", - "description": null, - "label": "INFANT", - "unit": null, - "period": null, - "values": { - "1980-01-01": 0.95 - }, - "economy": true, - "household": true - }, - "gov.usda.wic.nutritional_risk.CHILD": { - "type": "parameter", - "parameter": "gov.usda.wic.nutritional_risk.CHILD", - "description": null, - "label": "CHILD", - "unit": null, - "period": null, - "values": { - "1980-01-01": 0.752 - }, - "economy": true, - "household": true - }, - "gov.usda.wic.nutritional_risk.NONE": { - "type": "parameter", - "parameter": "gov.usda.wic.nutritional_risk.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "1980-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.school_meals": { - "type": "parameterNode", - "parameter": "gov.usda.school_meals", - "description": null, - "label": "school meals", - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount": { - "type": "parameterNode", - "parameter": "gov.usda.school_meals.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.sbp": { - "type": "parameterNode", - "parameter": "gov.usda.school_meals.amount.sbp", - "description": "The USDA's School Breakfast Program reimburses these amounts per meal per child.", - "label": "School Breakfast Program value", - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.sbp.CONTIGUOUS_US": { - "type": "parameterNode", - "parameter": "gov.usda.school_meals.amount.sbp.CONTIGUOUS_US", - "description": null, - "label": "CONTIGUOUS US", - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.sbp.CONTIGUOUS_US.PAID": { - "type": "parameter", - "parameter": "gov.usda.school_meals.amount.sbp.CONTIGUOUS_US.PAID", - "description": null, - "label": "PAID", - "unit": "currency-USD", - "period": "day", - "values": { - "2035-02-01": 0.495618124184225, - "2034-02-01": 0.484306047610169, - "2033-02-01": 0.473615513705016, - "2032-02-01": 0.463297905401206, - "2031-02-01": 0.453104605631177, - "2030-02-01": 0.443159922928709, - "2029-02-01": 0.433463857293803, - "2028-02-01": 0.424016408726459, - "2027-02-01": 0.414568960159115, - "2026-02-01": 0.405121511591771, - "2025-02-01": 0.395549754490646, - "2024-12-01": 0.392323948039033, - "2024-11-01": 0.392184722481198, - "2024-10-01": 0.392397290073964, - "2024-09-01": 0.391946050096339, - "2024-08-01": 0.391318292000746, - "2024-07-01": 0.391000062154267, - "2024-06-01": 0.390546336005967, - "2024-05-01": 0.390414568960159, - "2024-04-01": 0.389766921499161, - "2024-03-01": 0.388255329728386, - "2024-02-01": 0.385761700540742, - "2024-01-01": 0.383388650630866, - "2023-12-01": 0.381311455031388, - "2023-11-01": 0.38169059605942, - "2023-10-01": 0.382461308968861, - "2023-09-01": 0.382607993038722, - "2023-08-01": 0.381659518925974, - "2023-07-01": 0.38, - "2022-07-01": 0.35, - "2021-07-01": 0.33, - "2020-07-01": 0.32, - "2015-01-01": 0.32 - }, - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.sbp.CONTIGUOUS_US.REDUCED": { - "type": "parameter", - "parameter": "gov.usda.school_meals.amount.sbp.CONTIGUOUS_US.REDUCED", - "description": null, - "label": "REDUCED", - "unit": "currency-USD", - "period": "day", - "values": { - "2035-02-01": 2.58243127864412, - "2034-02-01": 2.52348940596877, - "2033-02-01": 2.46778609772614, - "2032-02-01": 2.41402592814312, - "2031-02-01": 2.36091347144666, - "2030-02-01": 2.30909644052327, - "2029-02-01": 2.25857483537297, - "2028-02-01": 2.20934865599576, - "2027-02-01": 2.16012247661855, - "2026-02-01": 2.11089629724133, - "2025-02-01": 2.06102240497758, - "2024-12-01": 2.0442142555718, - "2024-11-01": 2.04348881713888, - "2024-10-01": 2.04459640617486, - "2024-09-01": 2.04224520839671, - "2024-08-01": 2.03897425831968, - "2024-07-01": 2.03731611333013, - "2024-06-01": 2.03495196129425, - "2024-05-01": 2.03426538563451, - "2024-04-01": 2.03089080149563, - "2024-03-01": 2.02301461279527, - "2024-02-01": 2.01002149229124, - "2024-01-01": 1.99765665328714, - "2023-12-01": 1.98683337095302, - "2023-11-01": 1.98880889525698, - "2023-10-01": 1.99282471515354, - "2023-09-01": 1.99358901635966, - "2023-08-01": 1.98864696703534, - "2023-07-01": 1.98, - "2022-07-01": 1.81, - "2021-07-01": 1.67, - "2020-07-01": 1.59, - "2015-01-01": 1.59 - }, - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.sbp.CONTIGUOUS_US.FREE": { - "type": "parameter", - "parameter": "gov.usda.school_meals.amount.sbp.CONTIGUOUS_US.FREE", - "description": null, - "label": "FREE", - "unit": "currency-USD", - "period": "day", - "values": { - "2035-02-01": 2.97370874510535, - "2034-02-01": 2.90583628566101, - "2033-02-01": 2.8416930822301, - "2032-02-01": 2.77978743240723, - "2031-02-01": 2.71862763378706, - "2030-02-01": 2.65895953757225, - "2029-02-01": 2.60078314376282, - "2028-02-01": 2.54409845235875, - "2027-02-01": 2.48741376095469, - "2026-02-01": 2.43072906955062, - "2025-02-01": 2.37329852694388, - "2024-12-01": 2.3539436882342, - "2024-11-01": 2.35310833488719, - "2024-10-01": 2.35438374044378, - "2024-09-01": 2.35167630057803, - "2024-08-01": 2.34790975200447, - "2024-07-01": 2.3460003729256, - "2024-06-01": 2.3432780160358, - "2024-05-01": 2.34248741376095, - "2024-04-01": 2.33860152899497, - "2024-03-01": 2.32953197837032, - "2024-02-01": 2.31457020324445, - "2024-01-01": 2.30033190378519, - "2023-12-01": 2.28786873018833, - "2023-11-01": 2.29014357635652, - "2023-10-01": 2.29476785381316, - "2023-09-01": 2.29564795823233, - "2023-08-01": 2.28995711355585, - "2023-07-01": 2.28, - "2022-07-01": 2.11, - "2021-07-01": 1.97, - "2020-07-01": 1.89, - "2015-01-01": 1.89 - }, - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.sbp.AK": { - "type": "parameterNode", - "parameter": "gov.usda.school_meals.amount.sbp.AK", - "description": null, - "label": "AK", - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.sbp.AK.PAID": { - "type": "parameter", - "parameter": "gov.usda.school_meals.amount.sbp.AK.PAID", - "description": null, - "label": "PAID", - "unit": "currency-USD", - "period": "day", - "values": { - "2035-02-01": 0.756469768491712, - "2034-02-01": 0.739203967404994, - "2033-02-01": 0.722886836707656, - "2032-02-01": 0.707138908243946, - "2031-02-01": 0.691580713858112, - "2030-02-01": 0.67640198762803, - "2029-02-01": 0.6616027295537, - "2028-02-01": 0.647182939635122, - "2027-02-01": 0.632763149716544, - "2026-02-01": 0.618343359797966, - "2025-02-01": 0.603733835801512, - "2024-12-01": 0.598810236480629, - "2024-11-01": 0.598597734313408, - "2024-10-01": 0.598922179586576, - "2024-09-01": 0.598233444883886, - "2024-08-01": 0.597275287790612, - "2024-07-01": 0.59678956855125, - "2024-06-01": 0.596097039167002, - "2024-05-01": 0.595895921044453, - "2024-04-01": 0.594907406498719, - "2024-03-01": 0.592600240111747, - "2024-02-01": 0.588794174509554, - "2024-01-01": 0.5851721509629, - "2023-12-01": 0.582001694521592, - "2023-11-01": 0.582580383459114, - "2023-10-01": 0.583756734741945, - "2023-09-01": 0.583980620953839, - "2023-08-01": 0.582532949939645, - "2023-07-01": 0.58, - "2022-07-01": 0.54, - "2021-07-01": 0.5, - "2020-07-01": 0.49, - "2015-01-01": 0.49 - }, - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.sbp.AK.REDUCED": { - "type": "parameter", - "parameter": "gov.usda.school_meals.amount.sbp.AK.REDUCED", - "description": null, - "label": "REDUCED", - "unit": "currency-USD", - "period": "day", - "values": { - "2035-02-01": 4.38230762436578, - "2034-02-01": 4.28228505255307, - "2033-02-01": 4.18775822644435, - "2032-02-01": 4.09652884775803, - "2031-02-01": 4.00639861821251, - "2030-02-01": 3.91846668694859, - "2029-02-01": 3.83273305396626, - "2028-02-01": 3.74919771926553, - "2027-02-01": 3.66566238456481, - "2026-02-01": 3.58212704986408, - "2025-02-01": 3.49749256602255, - "2024-12-01": 3.46896964581882, - "2024-11-01": 3.46773859878112, - "2024-10-01": 3.46961814381189, - "2024-09-01": 3.46562823243079, - "2024-08-01": 3.46007752926975, - "2024-07-01": 3.45726370746931, - "2024-06-01": 3.45325181310539, - "2024-05-01": 3.45208671501614, - "2024-04-01": 3.44636014799258, - "2024-03-01": 3.43299449444047, - "2024-02-01": 3.41094556267604, - "2024-01-01": 3.38996280557818, - "2023-12-01": 3.37159602343543, - "2023-11-01": 3.37494842831487, - "2023-10-01": 3.38176315298782, - "2023-09-01": 3.38306014897396, - "2023-08-01": 3.37467364102967, - "2023-07-01": 3.36, - "2022-07-01": 3.08, - "2021-07-01": 2.85, - "2020-07-01": 2.73, - "2015-01-01": 2.73 - }, - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.sbp.AK.FREE": { - "type": "parameter", - "parameter": "gov.usda.school_meals.amount.sbp.AK.FREE", - "description": null, - "label": "FREE", - "unit": "currency-USD", - "period": "day", - "values": { - "2035-02-01": 4.77358509082701, - "2034-02-01": 4.66463193224531, - "2033-02-01": 4.56166521094831, - "2032-02-01": 4.46229035202214, - "2031-02-01": 4.36411278055291, - "2030-02-01": 4.26832978399757, - "2029-02-01": 4.17494136235611, - "2028-02-01": 4.08394751562853, - "2027-02-01": 3.99295366890095, - "2026-02-01": 3.90195982217337, - "2025-02-01": 3.80976868798885, - "2024-12-01": 3.77869907848121, - "2024-11-01": 3.77735811652944, - "2024-10-01": 3.77940547808081, - "2024-09-01": 3.77505932461211, - "2024-08-01": 3.76901302295455, - "2024-07-01": 3.76594796706478, - "2024-06-01": 3.76157786784694, - "2024-05-01": 3.76030874314259, - "2024-04-01": 3.75407087549192, - "2024-03-01": 3.73951186001551, - "2024-02-01": 3.71549427362925, - "2024-01-01": 3.69263805607623, - "2023-12-01": 3.67263138267074, - "2023-11-01": 3.67628310941441, - "2023-10-01": 3.68370629164745, - "2023-09-01": 3.68511909084664, - "2023-08-01": 3.67598378755017, - "2023-07-01": 3.66, - "2022-07-01": 3.38, - "2021-07-01": 3.15, - "2020-07-01": 3.03, - "2015-01-01": 3.03 - }, - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.sbp.HI": { - "type": "parameterNode", - "parameter": "gov.usda.school_meals.amount.sbp.HI", - "description": null, - "label": "HI", - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.sbp.HI.PAID": { - "type": "parameter", - "parameter": "gov.usda.school_meals.amount.sbp.HI.PAID", - "description": null, - "label": "PAID", - "unit": "currency-USD", - "period": "day", - "values": { - "2035-02-01": 0.613001364122594, - "2034-02-01": 0.59901011151784, - "2033-02-01": 0.585787609056204, - "2032-02-01": 0.573026356680439, - "2031-02-01": 0.560418854333297, - "2030-02-01": 0.548118852043403, - "2029-02-01": 0.536126349810757, - "2028-02-01": 0.524441347635357, - "2027-02-01": 0.512756345459958, - "2026-02-01": 0.501071343284559, - "2025-02-01": 0.489232591080536, - "2024-12-01": 0.485242777837751, - "2024-11-01": 0.485070577805693, - "2024-10-01": 0.485333490354639, - "2024-09-01": 0.484775377750735, - "2024-08-01": 0.483998940106186, - "2024-07-01": 0.483605340032909, - "2024-06-01": 0.483044152428433, - "2024-05-01": 0.482881177398092, - "2024-04-01": 0.482080139748962, - "2024-03-01": 0.480210539400898, - "2024-02-01": 0.477126313826707, - "2024-01-01": 0.474191225780281, - "2023-12-01": 0.47162206280198, - "2023-11-01": 0.472091000389282, - "2023-10-01": 0.473044250566749, - "2023-09-01": 0.473225675600525, - "2023-08-01": 0.472052562882126, - "2023-07-01": 0.47, - "2022-07-01": 0.4, - "2021-07-01": 0.38, - "2020-07-01": 0.37, - "2015-01-01": 0.37 - }, - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.sbp.HI.REDUCED": { - "type": "parameter", - "parameter": "gov.usda.school_meals.amount.sbp.HI.REDUCED", - "description": null, - "label": "REDUCED", - "unit": "currency-USD", - "period": "day", - "values": { - "2035-02-01": 3.4562842870742, - "2034-02-01": 3.37739743728144, - "2033-02-01": 3.30284502978498, - "2032-02-01": 3.2308932876663, - "2031-02-01": 3.15980843400689, - "2030-02-01": 3.090457357266, - "2029-02-01": 3.02284005744363, - "2028-02-01": 2.95695653453978, - "2027-02-01": 2.89107301163593, - "2026-02-01": 2.82518948873209, - "2025-02-01": 2.75843907736898, - "2024-12-01": 2.73594332185115, - "2024-11-01": 2.73497240677678, - "2024-10-01": 2.73645478604211, - "2024-09-01": 2.733307980935, - "2024-08-01": 2.72893019421573, - "2024-07-01": 2.72671095976002, - "2024-06-01": 2.72354681688372, - "2024-05-01": 2.7226279151169, - "2024-04-01": 2.71811142624415, - "2024-03-01": 2.70757006257953, - "2024-02-01": 2.69018028008675, - "2024-01-01": 2.67363137939946, - "2023-12-01": 2.65914567324521, - "2023-11-01": 2.66178968304595, - "2023-10-01": 2.66716439149337, - "2023-09-01": 2.6681873198753, - "2023-08-01": 2.66157296093114, - "2023-07-01": 2.65, - "2022-07-01": 2.16, - "2021-07-01": 1.99, - "2020-07-01": 1.91, - "2015-01-01": 1.91 - }, - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.sbp.HI.FREE": { - "type": "parameter", - "parameter": "gov.usda.school_meals.amount.sbp.HI.FREE", - "description": null, - "label": "FREE", - "unit": "currency-USD", - "period": "day", - "values": { - "2035-02-01": 3.84756175353543, - "2034-02-01": 3.75974431697368, - "2033-02-01": 3.67675201428894, - "2032-02-01": 3.59665479193041, - "2031-02-01": 3.51752259634729, - "2030-02-01": 3.44032045431498, - "2029-02-01": 3.36504836583347, - "2028-02-01": 3.29170633090278, - "2027-02-01": 3.21836429597208, - "2026-02-01": 3.14502226104138, - "2025-02-01": 3.07071519933528, - "2024-12-01": 3.04567275451355, - "2024-11-01": 3.04459192452509, - "2024-10-01": 3.04624212031103, - "2024-09-01": 3.04273907311632, - "2024-08-01": 3.03786568790053, - "2024-07-01": 3.03539521935549, - "2024-06-01": 3.03187287162527, - "2024-05-01": 3.03084994324334, - "2024-04-01": 3.02582215374349, - "2024-03-01": 3.01408742815458, - "2024-02-01": 2.99472899103997, - "2024-01-01": 2.97630662989751, - "2023-12-01": 2.96018103248051, - "2023-11-01": 2.96312436414549, - "2023-10-01": 2.969107530153, - "2023-09-01": 2.97024626174797, - "2023-08-01": 2.96288310745164, - "2023-07-01": 2.95, - "2022-07-01": 2.46, - "2021-07-01": 2.29, - "2020-07-01": 2.21, - "2015-01-01": 2.21 - }, - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.sbp.GU": { - "type": "parameterNode", - "parameter": "gov.usda.school_meals.amount.sbp.GU", - "description": null, - "label": "GU", - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.sbp.GU.FREE": { - "type": "parameter", - "parameter": "gov.usda.school_meals.amount.sbp.GU.FREE", - "description": null, - "label": "FREE", - "unit": "currency-USD", - "period": "day", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.sbp.GU.REDUCED": { - "type": "parameter", - "parameter": "gov.usda.school_meals.amount.sbp.GU.REDUCED", - "description": null, - "label": "REDUCED", - "unit": "currency-USD", - "period": "day", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.sbp.GU.PAID": { - "type": "parameter", - "parameter": "gov.usda.school_meals.amount.sbp.GU.PAID", - "description": null, - "label": "PAID", - "unit": "currency-USD", - "period": "day", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.sbp.VI": { - "type": "parameterNode", - "parameter": "gov.usda.school_meals.amount.sbp.VI", - "description": null, - "label": "VI", - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.sbp.VI.FREE": { - "type": "parameter", - "parameter": "gov.usda.school_meals.amount.sbp.VI.FREE", - "description": null, - "label": "FREE", - "unit": "currency-USD", - "period": "day", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.sbp.VI.REDUCED": { - "type": "parameter", - "parameter": "gov.usda.school_meals.amount.sbp.VI.REDUCED", - "description": null, - "label": "REDUCED", - "unit": "currency-USD", - "period": "day", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.sbp.VI.PAID": { - "type": "parameter", - "parameter": "gov.usda.school_meals.amount.sbp.VI.PAID", - "description": null, - "label": "PAID", - "unit": "currency-USD", - "period": "day", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.sbp.PR": { - "type": "parameterNode", - "parameter": "gov.usda.school_meals.amount.sbp.PR", - "description": null, - "label": "PR", - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.sbp.PR.FREE": { - "type": "parameter", - "parameter": "gov.usda.school_meals.amount.sbp.PR.FREE", - "description": null, - "label": "FREE", - "unit": "currency-USD", - "period": "day", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.sbp.PR.REDUCED": { - "type": "parameter", - "parameter": "gov.usda.school_meals.amount.sbp.PR.REDUCED", - "description": null, - "label": "REDUCED", - "unit": "currency-USD", - "period": "day", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.sbp.PR.PAID": { - "type": "parameter", - "parameter": "gov.usda.school_meals.amount.sbp.PR.PAID", - "description": null, - "label": "PAID", - "unit": "currency-USD", - "period": "day", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.nslp": { - "type": "parameterNode", - "parameter": "gov.usda.school_meals.amount.nslp", - "description": "The USDA's National School Lunch Program reimburses these amounts per meal per child.", - "label": "National School Lunch Program value", - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.nslp.CONTIGUOUS_US": { - "type": "parameterNode", - "parameter": "gov.usda.school_meals.amount.nslp.CONTIGUOUS_US", - "description": null, - "label": "CONTIGUOUS US", - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.nslp.CONTIGUOUS_US.PAID": { - "type": "parameter", - "parameter": "gov.usda.school_meals.amount.nslp.CONTIGUOUS_US.PAID", - "description": null, - "label": "PAID", - "unit": "currency-USD", - "period": "day", - "values": { - "2035-02-01": 0.521703288614974, - "2034-02-01": 0.509795839589651, - "2033-02-01": 0.49854264600528, - "2032-02-01": 0.48768200568548, - "2031-02-01": 0.47695221645387, - "2030-02-01": 0.466484129398641, - "2029-02-01": 0.456277744519793, - "2028-02-01": 0.446333061817325, - "2027-02-01": 0.436388379114858, - "2026-02-01": 0.42644369641239, - "2025-02-01": 0.416368162621733, - "2024-12-01": 0.412972576883193, - "2024-11-01": 0.412826023664419, - "2024-10-01": 0.413049779025225, - "2024-09-01": 0.412574789575094, - "2024-08-01": 0.411913991579733, - "2024-07-01": 0.411579012793965, - "2024-06-01": 0.41110140632207, - "2024-05-01": 0.410962704168589, - "2024-04-01": 0.410280969999117, - "2024-03-01": 0.408689820766722, - "2024-02-01": 0.406064947937623, - "2024-01-01": 0.403567000664069, - "2023-12-01": 0.401380478980408, - "2023-11-01": 0.401779574799389, - "2023-10-01": 0.402590851546169, - "2023-09-01": 0.402745255830234, - "2023-08-01": 0.401746862027341, - "2023-07-01": 0.4, - "2022-07-01": 0.37, - "2021-07-01": 0.35, - "2020-07-01": 0.33, - "2015-01-01": 0.33 - }, - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.nslp.CONTIGUOUS_US.REDUCED": { - "type": "parameter", - "parameter": "gov.usda.school_meals.amount.nslp.CONTIGUOUS_US.REDUCED", - "description": null, - "label": "REDUCED", - "unit": "currency-USD", - "period": "day", - "values": { - "2035-02-01": 5.02139415291912, - "2034-02-01": 4.90678495605039, - "2033-02-01": 4.79847296780082, - "2032-02-01": 4.69393930472274, - "2031-02-01": 4.5906650833685, - "2030-02-01": 4.48990974546192, - "2029-02-01": 4.39167329100301, - "2028-02-01": 4.29595571999176, - "2027-02-01": 4.20023814898051, - "2026-02-01": 4.10452057796926, - "2025-02-01": 4.00754356523418, - "2024-12-01": 3.97486105250073, - "2024-11-01": 3.97345047777004, - "2024-10-01": 3.97560412311779, - "2024-09-01": 3.97103234966028, - "2024-08-01": 3.96467216895493, - "2024-07-01": 3.96144799814192, - "2024-06-01": 3.95685103584993, - "2024-05-01": 3.95551602762267, - "2024-04-01": 3.9489543362415, - "2024-03-01": 3.9336395248797, - "2024-02-01": 3.90837512389962, - "2024-01-01": 3.88433238139167, - "2023-12-01": 3.86328711018643, - "2023-11-01": 3.86712840744412, - "2023-10-01": 3.87493694613188, - "2023-09-01": 3.876423087366, - "2023-08-01": 3.86681354701316, - "2023-07-01": 3.85, - "2022-07-01": 3.53, - "2021-07-01": 3.26, - "2020-07-01": 3.11, - "2015-01-01": 3.11 - }, - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.nslp.CONTIGUOUS_US.FREE": { - "type": "parameter", - "parameter": "gov.usda.school_meals.amount.nslp.CONTIGUOUS_US.FREE", - "description": null, - "label": "FREE", - "unit": "currency-USD", - "period": "day", - "values": { - "2035-02-01": 5.5430974415341, - "2034-02-01": 5.41658079564004, - "2033-02-01": 5.2970156138061, - "2032-02-01": 5.18162131040822, - "2031-02-01": 5.06761729982237, - "2030-02-01": 4.95639387486056, - "2029-02-01": 4.8479510355228, - "2028-02-01": 4.74228878180908, - "2027-02-01": 4.63662652809536, - "2026-02-01": 4.53096427438165, - "2025-02-01": 4.42391172785591, - "2024-12-01": 4.38783362938392, - "2024-11-01": 4.38627650143446, - "2024-10-01": 4.38865390214301, - "2024-09-01": 4.38360713923537, - "2024-08-01": 4.37658616053466, - "2024-07-01": 4.37302701093588, - "2024-06-01": 4.367952442172, - "2024-05-01": 4.36647873179125, - "2024-04-01": 4.35923530624062, - "2024-03-01": 4.34232934564642, - "2024-02-01": 4.31444007183725, - "2024-01-01": 4.28789938205574, - "2023-12-01": 4.26466758916684, - "2023-11-01": 4.26890798224351, - "2023-10-01": 4.27752779767805, - "2023-09-01": 4.27916834319623, - "2023-08-01": 4.2685604090405, - "2023-07-01": 4.25, - "2022-07-01": 3.93, - "2021-07-01": 3.66, - "2020-07-01": 3.51, - "2015-01-01": 3.51 - }, - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.nslp.AK": { - "type": "parameterNode", - "parameter": "gov.usda.school_meals.amount.nslp.AK", - "description": null, - "label": "AK", - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.nslp.AK.PAID": { - "type": "parameter", - "parameter": "gov.usda.school_meals.amount.nslp.AK.PAID", - "description": null, - "label": "PAID", - "unit": "currency-USD", - "period": "day", - "values": { - "2035-02-01": 0.860810426214707, - "2034-02-01": 0.841163135322924, - "2033-02-01": 0.822595365908712, - "2032-02-01": 0.804675309381042, - "2031-02-01": 0.786971157148886, - "2030-02-01": 0.769698813507758, - "2029-02-01": 0.752858278457658, - "2028-02-01": 0.736449551998587, - "2027-02-01": 0.720040825539515, - "2026-02-01": 0.703632099080444, - "2025-02-01": 0.687007468325859, - "2024-12-01": 0.681404751857268, - "2024-11-01": 0.681162939046292, - "2024-10-01": 0.681532135391621, - "2024-09-01": 0.680748402798905, - "2024-08-01": 0.679658086106559, - "2024-07-01": 0.679105371110043, - "2024-06-01": 0.678317320431416, - "2024-05-01": 0.678088461878171, - "2024-04-01": 0.676963600498543, - "2024-03-01": 0.674338204265091, - "2024-02-01": 0.670007164097079, - "2024-01-01": 0.665885551095714, - "2023-12-01": 0.662277790317674, - "2023-11-01": 0.662936298418992, - "2023-10-01": 0.664274905051179, - "2023-09-01": 0.664529672119886, - "2023-08-01": 0.662882322345113, - "2023-07-01": 0.66, - "2022-07-01": 0.61, - "2021-07-01": 0.57, - "2020-07-01": 0.54, - "2015-01-01": 0.54 - }, - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.nslp.AK.REDUCED": { - "type": "parameter", - "parameter": "gov.usda.school_meals.amount.nslp.AK.REDUCED", - "description": null, - "label": "REDUCED", - "unit": "currency-USD", - "period": "day", - "values": { - "2035-02-01": 8.47767843999333, - "2034-02-01": 8.28418239333183, - "2033-02-01": 8.1013179975858, - "2032-02-01": 7.92483259238905, - "2031-02-01": 7.75047351737539, - "2030-02-01": 7.58036710272792, - "2029-02-01": 7.41451334844664, - "2028-02-01": 7.25291225453154, - "2027-02-01": 7.09131116061644, - "2026-02-01": 6.92971006670134, - "2025-02-01": 6.76598264260315, - "2024-12-01": 6.71080437435188, - "2024-11-01": 6.70842288454681, - "2024-10-01": 6.7120589091599, - "2024-09-01": 6.70434033059527, - "2024-08-01": 6.69360236317065, - "2024-07-01": 6.68815895790194, - "2024-06-01": 6.68039785273365, - "2024-05-01": 6.67814394273956, - "2024-04-01": 6.66706576248565, - "2024-03-01": 6.64120958745923, - "2024-02-01": 6.59855540398638, - "2024-01-01": 6.55796376079113, - "2023-12-01": 6.52243278343163, - "2023-11-01": 6.52891809049007, - "2023-10-01": 6.54210133762525, - "2023-09-01": 6.5446104072413, - "2023-08-01": 6.5283865079443, - "2023-07-01": 6.5, - "2022-07-01": 5.97, - "2021-07-01": 5.54, - "2020-07-01": 5.3, - "2015-01-01": 5.3 - }, - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.nslp.AK.FREE": { - "type": "parameter", - "parameter": "gov.usda.school_meals.amount.nslp.AK.FREE", - "description": null, - "label": "FREE", - "unit": "currency-USD", - "period": "day", - "values": { - "2035-02-01": 8.9993817286083, - "2034-02-01": 8.79397823292148, - "2033-02-01": 8.59986064359108, - "2032-02-01": 8.41251459807453, - "2031-02-01": 8.22742573382926, - "2030-02-01": 8.04685123212656, - "2029-02-01": 7.87079109296643, - "2028-02-01": 7.69924531634886, - "2027-02-01": 7.5276995397313, - "2026-02-01": 7.35615376311373, - "2025-02-01": 7.18235080522489, - "2024-12-01": 7.12377695123507, - "2024-11-01": 7.12124890821123, - "2024-10-01": 7.12510868818513, - "2024-09-01": 7.11691512017037, - "2024-08-01": 7.10551635475039, - "2024-07-01": 7.0997379706959, - "2024-06-01": 7.09149925905572, - "2024-05-01": 7.08910664690815, - "2024-04-01": 7.07734673248477, - "2024-03-01": 7.04989940822596, - "2024-02-01": 7.004620351924, - "2024-01-01": 6.9615307614552, - "2023-12-01": 6.92381326241204, - "2023-11-01": 6.93069766528946, - "2023-10-01": 6.94469218917142, - "2023-09-01": 6.94735566307153, - "2023-08-01": 6.93013336997164, - "2023-07-01": 6.9, - "2022-07-01": 6.37, - "2021-07-01": 5.94, - "2020-07-01": 5.7, - "2015-01-01": 5.7 - }, - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.nslp.HI": { - "type": "parameterNode", - "parameter": "gov.usda.school_meals.amount.nslp.HI", - "description": null, - "label": "HI", - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.nslp.HI.PAID": { - "type": "parameter", - "parameter": "gov.usda.school_meals.amount.nslp.HI.PAID", - "description": null, - "label": "PAID", - "unit": "currency-USD", - "period": "day", - "values": { - "2035-02-01": 0.691256857414841, - "2034-02-01": 0.675479487456288, - "2033-02-01": 0.660569005956996, - "2032-02-01": 0.646178657533261, - "2031-02-01": 0.631961686801378, - "2030-02-01": 0.6180914714532, - "2029-02-01": 0.604568011488726, - "2028-02-01": 0.591391306907956, - "2027-02-01": 0.578214602327187, - "2026-02-01": 0.565037897746417, - "2025-02-01": 0.551687815473796, - "2024-12-01": 0.54718866437023, - "2024-11-01": 0.546994481355356, - "2024-10-01": 0.547290957208423, - "2024-09-01": 0.546661596186999, - "2024-08-01": 0.545786038843146, - "2024-07-01": 0.545342191952004, - "2024-06-01": 0.544709363376743, - "2024-05-01": 0.54452558302338, - "2024-04-01": 0.54362228524883, - "2024-03-01": 0.541514012515907, - "2024-02-01": 0.538036056017351, - "2024-01-01": 0.534726275879892, - "2023-12-01": 0.531829134649041, - "2023-11-01": 0.53235793660919, - "2023-10-01": 0.533432878298674, - "2023-09-01": 0.53363746397506, - "2023-08-01": 0.532314592186227, - "2023-07-01": 0.53, - "2022-07-01": 0.44, - "2021-07-01": 0.41, - "2020-07-01": 0.39, - "2015-01-01": 0.39 - }, - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.nslp.HI.REDUCED": { - "type": "parameter", - "parameter": "gov.usda.school_meals.amount.nslp.HI.REDUCED", - "description": null, - "label": "REDUCED", - "unit": "currency-USD", - "period": "day", - "values": { - "2035-02-01": 6.70388725870242, - "2034-02-01": 6.55087653872702, - "2033-02-01": 6.40627300116785, - "2032-02-01": 6.26671377305842, - "2031-02-01": 6.12883598143223, - "2030-02-01": 5.99432106277254, - "2029-02-01": 5.86316901707934, - "2028-02-01": 5.73537984435263, - "2027-02-01": 5.60759067162592, - "2026-02-01": 5.47980149889922, - "2025-02-01": 5.35033088968926, - "2024-12-01": 5.30669761294903, - "2024-11-01": 5.30481440408779, - "2024-10-01": 5.30768966047414, - "2024-09-01": 5.30158604603996, - "2024-08-01": 5.29309479179956, - "2024-07-01": 5.28879031440245, - "2024-06-01": 5.2826530712386, - "2024-05-01": 5.28087074856636, - "2024-04-01": 5.27211046448865, - "2024-03-01": 5.25166419685238, - "2024-02-01": 5.21793458099846, - "2024-01-01": 5.18583595853329, - "2023-12-01": 5.15773915489825, - "2023-11-01": 5.16286753617215, - "2023-10-01": 5.17329244236827, - "2023-09-01": 5.1752765374185, - "2023-08-01": 5.16244717705134, - "2023-07-01": 5.14, - "2022-07-01": 4.2, - "2021-07-01": 3.88, - "2020-07-01": 3.71, - "2015-01-01": 3.71 - }, - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.nslp.HI.FREE": { - "type": "parameter", - "parameter": "gov.usda.school_meals.amount.nslp.HI.FREE", - "description": null, - "label": "FREE", - "unit": "currency-USD", - "period": "day", - "values": { - "2035-02-01": 7.22559054731739, - "2034-02-01": 7.06067237831667, - "2033-02-01": 6.90481564717313, - "2032-02-01": 6.7543957787439, - "2031-02-01": 6.6057881978861, - "2030-02-01": 6.46080519217118, - "2029-02-01": 6.31944676159913, - "2028-02-01": 6.18171290616996, - "2027-02-01": 6.04397905074078, - "2026-02-01": 5.90624519531161, - "2025-02-01": 5.766699052311, - "2024-12-01": 5.71967018983222, - "2024-11-01": 5.71764042775221, - "2024-10-01": 5.72073943949936, - "2024-09-01": 5.71416083561505, - "2024-08-01": 5.7050087833793, - "2024-07-01": 5.70036932719642, - "2024-06-01": 5.69375447756068, - "2024-05-01": 5.69183345273495, - "2024-04-01": 5.68239143448777, - "2024-03-01": 5.6603540176191, - "2024-02-01": 5.62399952893608, - "2024-01-01": 5.58940295919736, - "2023-12-01": 5.55911963387866, - "2023-11-01": 5.56464711097154, - "2023-10-01": 5.57588329391444, - "2023-09-01": 5.57802179324874, - "2023-08-01": 5.56419403907868, - "2023-07-01": 5.54, - "2022-07-01": 4.6, - "2021-07-01": 4.28, - "2020-07-01": 4.11, - "2015-01-01": 4.11 - }, - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.nslp.GU": { - "type": "parameterNode", - "parameter": "gov.usda.school_meals.amount.nslp.GU", - "description": null, - "label": "GU", - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.nslp.GU.FREE": { - "type": "parameter", - "parameter": "gov.usda.school_meals.amount.nslp.GU.FREE", - "description": null, - "label": "FREE", - "unit": "currency-USD", - "period": "day", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.nslp.GU.REDUCED": { - "type": "parameter", - "parameter": "gov.usda.school_meals.amount.nslp.GU.REDUCED", - "description": null, - "label": "REDUCED", - "unit": "currency-USD", - "period": "day", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.nslp.GU.PAID": { - "type": "parameter", - "parameter": "gov.usda.school_meals.amount.nslp.GU.PAID", - "description": null, - "label": "PAID", - "unit": "currency-USD", - "period": "day", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.nslp.VI": { - "type": "parameterNode", - "parameter": "gov.usda.school_meals.amount.nslp.VI", - "description": null, - "label": "VI", - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.nslp.VI.FREE": { - "type": "parameter", - "parameter": "gov.usda.school_meals.amount.nslp.VI.FREE", - "description": null, - "label": "FREE", - "unit": "currency-USD", - "period": "day", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.nslp.VI.REDUCED": { - "type": "parameter", - "parameter": "gov.usda.school_meals.amount.nslp.VI.REDUCED", - "description": null, - "label": "REDUCED", - "unit": "currency-USD", - "period": "day", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.nslp.VI.PAID": { - "type": "parameter", - "parameter": "gov.usda.school_meals.amount.nslp.VI.PAID", - "description": null, - "label": "PAID", - "unit": "currency-USD", - "period": "day", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.nslp.PR": { - "type": "parameterNode", - "parameter": "gov.usda.school_meals.amount.nslp.PR", - "description": null, - "label": "PR", - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.nslp.PR.FREE": { - "type": "parameter", - "parameter": "gov.usda.school_meals.amount.nslp.PR.FREE", - "description": null, - "label": "FREE", - "unit": "currency-USD", - "period": "day", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.nslp.PR.REDUCED": { - "type": "parameter", - "parameter": "gov.usda.school_meals.amount.nslp.PR.REDUCED", - "description": null, - "label": "REDUCED", - "unit": "currency-USD", - "period": "day", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.school_meals.amount.nslp.PR.PAID": { - "type": "parameter", - "parameter": "gov.usda.school_meals.amount.nslp.PR.PAID", - "description": null, - "label": "PAID", - "unit": "currency-USD", - "period": "day", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.school_meals.school_days": { - "type": "parameter", - "parameter": "gov.usda.school_meals.school_days", - "description": "School days per year", - "label": "school days", - "unit": null, - "period": "year", - "values": { - "2020-01-01": 180, - "2015-01-01": 180 - }, - "economy": true, - "household": true - }, - "gov.usda.school_meals.income": { - "type": "parameterNode", - "parameter": "gov.usda.school_meals.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.usda.school_meals.income.limit": { - "type": "parameterNode", - "parameter": "gov.usda.school_meals.income.limit", - "description": "Income limit as share of poverty line", - "label": "limit", - "economy": true, - "household": true - }, - "gov.usda.school_meals.income.limit.FREE": { - "type": "parameter", - "parameter": "gov.usda.school_meals.income.limit.FREE", - "description": null, - "label": "Free school meal income limit as a percent of the poverty line", - "unit": "/1", - "period": null, - "values": { - "2011-01-01": 1.3 - }, - "economy": true, - "household": true - }, - "gov.usda.school_meals.income.limit.REDUCED": { - "type": "parameter", - "parameter": "gov.usda.school_meals.income.limit.REDUCED", - "description": null, - "label": "Reduced school meal income limit as a percent of the poverty line", - "unit": "/1", - "period": null, - "values": { - "2011-01-01": 1.85 - }, - "economy": true, - "household": true - }, - "gov.usda.school_meals.income.sources": { - "type": "parameter", - "parameter": "gov.usda.school_meals.income.sources", - "description": "Income sources that count as income for school meal subsidies.", - "label": "sources", - "unit": null, - "period": null, - "values": { - "2009-01-01": [ - "employment_income", - "self_employment_income", - "dividend_income", - "interest_income", - "gi_cash_assistance", - "social_security", - "ssi", - "tanf", - "pension_income", - "miscellaneous_income", - "veterans_benefits", - "unemployment_compensation", - "strike_benefits", - "rental_income", - "retirement_distributions" - ] - }, - "economy": true, - "household": true - }, - "gov.usda.school_meals.categorical_eligibility": { - "type": "parameter", - "parameter": "gov.usda.school_meals.categorical_eligibility", - "description": "Program participation that qualifies families for free school meals.", - "label": "Free school meals qualifying programs", - "unit": "list", - "period": "year", - "values": { - "2009-09-01": [ - "snap", - "tanf", - "fdpir", - "was_in_foster_care", - "is_homeless", - "is_runaway_child", - "is_migratory_child", - "is_head_start_eligible" - ] - }, - "economy": true, - "household": true - }, - "gov.usda.snap": { - "type": "parameterNode", - "parameter": "gov.usda.snap", - "description": null, - "label": "Supplemental Nutrition Assistance Program (SNAP)", - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment": { - "type": "parameterNode", - "parameter": "gov.usda.snap.max_allotment", - "description": "Maximum SNAP allotment by state group and household size.", - "label": "max allotment", - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main": { - "type": "parameterNode", - "parameter": "gov.usda.snap.max_allotment.main", - "description": "Maximum SNAP allotment by SNAP region and household size.", - "label": "SNAP max allotment", - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.CONTIGUOUS_US": { - "type": "parameterNode", - "parameter": "gov.usda.snap.max_allotment.main.CONTIGUOUS_US", - "description": null, - "label": "CONTIGUOUS US", - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.CONTIGUOUS_US.0": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.CONTIGUOUS_US.0", - "description": null, - "label": "0", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2022-10-01": 0, - "2021-10-01": 0, - "2020-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.CONTIGUOUS_US.1": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.CONTIGUOUS_US.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 364.232068855595, - "2033-10-01": 356.226968441186, - "2032-10-01": 348.408033152694, - "2031-10-01": 340.775262990118, - "2030-10-01": 333.328657953459, - "2029-10-01": 326.068218042716, - "2028-10-01": 318.99394325789, - "2027-10-01": 312.291998724896, - "2026-10-01": 305.683136754861, - "2025-10-01": 298.981192221868, - "2024-10-01": 292, - "2023-10-01": 291, - "2022-10-01": 281, - "2021-10-01": 250, - "2021-01-01": 234, - "2020-10-01": 204, - "2015-01-01": 204 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.CONTIGUOUS_US.2": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.CONTIGUOUS_US.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 668.590372967804, - "2033-10-01": 653.896079056423, - "2032-10-01": 639.543512910424, - "2031-10-01": 625.532674529806, - "2030-10-01": 611.863563914568, - "2029-10-01": 598.536181064712, - "2028-10-01": 585.550525980236, - "2027-10-01": 573.248326426522, - "2026-10-01": 561.116990755499, - "2025-10-01": 548.814791201785, - "2024-10-01": 536, - "2023-10-01": 535, - "2022-10-01": 516, - "2021-10-01": 459, - "2021-01-01": 430, - "2020-10-01": 374, - "2015-01-01": 374 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.CONTIGUOUS_US.3": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.CONTIGUOUS_US.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 957.980235894166, - "2033-10-01": 936.925725215174, - "2032-10-01": 916.360854319414, - "2031-10-01": 896.285623206886, - "2030-10-01": 876.70003187759, - "2029-10-01": 857.604080331527, - "2028-10-01": 838.997768568696, - "2027-10-01": 821.37073637233, - "2026-10-01": 803.98852406758, - "2025-10-01": 786.361491871215, - "2024-10-01": 768, - "2023-10-01": 766, - "2022-10-01": 740, - "2021-10-01": 658, - "2021-01-01": 616, - "2020-10-01": 535, - "2015-01-01": 535 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.CONTIGUOUS_US.4": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.CONTIGUOUS_US.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 1216.18584635002, - "2033-10-01": 1189.45648708958, - "2032-10-01": 1163.34874083519, - "2031-10-01": 1137.86260758687, - "2030-10-01": 1112.9980873446, - "2029-10-01": 1088.75518010838, - "2028-10-01": 1065.13388587823, - "2027-10-01": 1042.75581766019, - "2026-10-01": 1020.68855594517, - "2025-10-01": 998.310487727128, - "2024-10-01": 975, - "2023-10-01": 973, - "2022-10-01": 939, - "2021-10-01": 835, - "2021-01-01": 782, - "2020-10-01": 680, - "2015-01-01": 680 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.CONTIGUOUS_US.5": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.CONTIGUOUS_US.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 1444.45457443417, - "2033-10-01": 1412.708320051, - "2032-10-01": 1381.70035065349, - "2031-10-01": 1351.43066624163, - "2030-10-01": 1321.89926681543, - "2029-10-01": 1293.10615237488, - "2028-10-01": 1265.05132291999, - "2027-10-01": 1238.4730634364, - "2026-10-01": 1212.26394644565, - "2025-10-01": 1185.68568696207, - "2024-10-01": 1158, - "2023-10-01": 1155, - "2022-10-01": 1116, - "2021-10-01": 992, - "2021-01-01": 929, - "2020-10-01": 807, - "2015-01-01": 807 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.CONTIGUOUS_US.6": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.CONTIGUOUS_US.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 1733.84443736054, - "2033-10-01": 1695.73796620975, - "2032-10-01": 1658.51769206248, - "2031-10-01": 1622.18361491871, - "2030-10-01": 1586.73573477845, - "2029-10-01": 1552.1740516417, - "2028-10-01": 1518.49856550845, - "2027-10-01": 1486.59547338221, - "2026-10-01": 1455.13547975773, - "2025-10-01": 1423.2323876315, - "2024-10-01": 1390, - "2023-10-01": 1386, - "2022-10-01": 1339, - "2021-10-01": 1190, - "2021-01-01": 1114, - "2020-10-01": 969, - "2015-01-01": 969 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.CONTIGUOUS_US.7": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.CONTIGUOUS_US.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 1915.96047178833, - "2033-10-01": 1873.85145043035, - "2032-10-01": 1832.72170863883, - "2031-10-01": 1792.57124641377, - "2030-10-01": 1753.40006375518, - "2029-10-01": 1715.20816066305, - "2028-10-01": 1677.99553713739, - "2027-10-01": 1642.74147274466, - "2026-10-01": 1607.97704813516, - "2025-10-01": 1572.72298374243, - "2024-10-01": 1536, - "2023-10-01": 1532, - "2022-10-01": 1480, - "2021-10-01": 1316, - "2021-01-01": 1232, - "2020-10-01": 1071, - "2015-01-01": 1071 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.CONTIGUOUS_US.8": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.CONTIGUOUS_US.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 2190.38189352885, - "2033-10-01": 2142.24163213261, - "2032-10-01": 2095.22091169908, - "2031-10-01": 2049.31973222824, - "2030-10-01": 2004.53809372011, - "2029-10-01": 1960.87599617469, - "2028-10-01": 1918.33343959197, - "2027-10-01": 1878.02996493465, - "2026-10-01": 1838.28626075869, - "2025-10-01": 1797.98278610137, - "2024-10-01": 1756, - "2023-10-01": 1751, - "2022-10-01": 1691, - "2021-10-01": 1504, - "2021-01-01": 1408, - "2020-10-01": 1224, - "2015-01-01": 1224 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.AK_URBAN": { - "type": "parameterNode", - "parameter": "gov.usda.snap.max_allotment.main.AK_URBAN", - "description": null, - "label": "AK URBAN", - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.AK_URBAN.0": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.AK_URBAN.0", - "description": null, - "label": "0", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2022-10-01": 0, - "2021-10-01": 0, - "2020-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.AK_URBAN.1": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.AK_URBAN.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 470.25852725534, - "2033-10-01": 459.923175007969, - "2032-10-01": 449.828179789608, - "2031-10-01": 439.973541600255, - "2030-10-01": 430.359260439911, - "2029-10-01": 420.985336308575, - "2028-10-01": 411.851769206248, - "2027-10-01": 403.198916161938, - "2026-10-01": 394.666241632133, - "2025-10-01": 386.013388587823, - "2024-10-01": 377, - "2023-10-01": 374, - "2022-10-01": 351, - "2021-10-01": 322, - "2021-01-01": 289, - "2020-10-01": 251, - "2015-01-01": 251 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.AK_URBAN.2": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.AK_URBAN.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 863.180108383806, - "2033-10-01": 844.209116990756, - "2032-10-01": 825.679311444055, - "2031-10-01": 807.590691743704, - "2030-10-01": 789.943257889704, - "2029-10-01": 772.737009882053, - "2028-10-01": 755.971947720752, - "2027-10-01": 740.089257252152, - "2026-10-01": 724.427159706726, - "2025-10-01": 708.544469238126, - "2024-10-01": 692, - "2023-10-01": 686, - "2022-10-01": 644, - "2021-10-01": 591, - "2021-01-01": 530, - "2020-10-01": 460, - "2015-01-01": 460 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.AK_URBAN.3": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.AK_URBAN.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 1236.14376793114, - "2033-10-01": 1208.97577303156, - "2032-10-01": 1182.43959196685, - "2031-10-01": 1156.53522473701, - "2030-10-01": 1131.26267134205, - "2029-10-01": 1106.62193178196, - "2028-10-01": 1082.61300605674, - "2027-10-01": 1059.86770800128, - "2026-10-01": 1037.43831686325, - "2025-10-01": 1014.69301880778, - "2024-10-01": 991, - "2023-10-01": 983, - "2022-10-01": 923, - "2021-10-01": 846, - "2021-01-01": 758, - "2020-10-01": 659, - "2015-01-01": 659 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.AK_URBAN.4": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.AK_URBAN.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 1569.19158431623, - "2033-10-01": 1534.7038571884, - "2032-10-01": 1501.01817022633, - "2031-10-01": 1468.13452343003, - "2030-10-01": 1436.05291679949, - "2029-10-01": 1404.77335033471, - "2028-10-01": 1374.2958240357, - "2027-10-01": 1345.42237806822, - "2026-10-01": 1316.94995218361, - "2025-10-01": 1288.07650621613, - "2024-10-01": 1258, - "2023-10-01": 1248, - "2022-10-01": 1172, - "2021-10-01": 1074, - "2021-01-01": 963, - "2020-10-01": 837, - "2015-01-01": 837 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.AK_URBAN.5": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.AK_URBAN.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 1863.57092763787, - "2033-10-01": 1822.61332483264, - "2032-10-01": 1782.60822441823, - "2031-10-01": 1743.55562639464, - "2030-10-01": 1705.45553076187, - "2029-10-01": 1668.30793751992, - "2028-10-01": 1632.11284666879, - "2027-10-01": 1597.8227605993, - "2026-10-01": 1564.00892572522, - "2025-10-01": 1529.71883965572, - "2024-10-01": 1494, - "2023-10-01": 1482, - "2022-10-01": 1391, - "2021-10-01": 1276, - "2021-01-01": 1114, - "2020-10-01": 995, - "2015-01-01": 995 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.AK_URBAN.6": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.AK_URBAN.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 2236.53458718521, - "2033-10-01": 2187.37998087345, - "2032-10-01": 2139.36850494103, - "2031-10-01": 2092.50015938795, - "2030-10-01": 2046.77494421422, - "2029-10-01": 2002.19285941983, - "2028-10-01": 1958.75390500478, - "2027-10-01": 1917.60121134842, - "2026-10-01": 1877.02008288173, - "2025-10-01": 1835.86738922537, - "2024-10-01": 1793, - "2023-10-01": 1778, - "2022-10-01": 1670, - "2021-10-01": 1531, - "2021-01-01": 1373, - "2020-10-01": 1194, - "2015-01-01": 1194 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.AK_URBAN.7": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.AK_URBAN.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 2472.28753586229, - "2033-10-01": 2417.95154606312, - "2032-10-01": 2364.8791839337, - "2031-10-01": 2313.07044947402, - "2030-10-01": 2262.52534268409, - "2029-10-01": 2213.24386356391, - "2028-10-01": 2165.22601211348, - "2027-10-01": 2119.73541600255, - "2026-10-01": 2074.87663372649, - "2025-10-01": 2029.38603761556, - "2024-10-01": 1982, - "2023-10-01": 1966, - "2022-10-01": 1846, - "2021-10-01": 1692, - "2021-01-01": 1517, - "2020-10-01": 1319, - "2015-01-01": 1319 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.AK_URBAN.8": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.AK_URBAN.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 2825.2932738285, - "2033-10-01": 2763.19891616194, - "2032-10-01": 2702.54861332483, - "2031-10-01": 2643.34236531718, - "2030-10-01": 2585.58017213899, - "2029-10-01": 2529.26203379025, - "2028-10-01": 2474.38795027096, - "2027-10-01": 2422.40197641058, - "2026-10-01": 2371.13802996493, - "2025-10-01": 2319.15205610456, - "2024-10-01": 2265, - "2023-10-01": 2246, - "2022-10-01": 2109, - "2021-10-01": 1934, - "2021-01-01": 1734, - "2020-10-01": 1508, - "2015-01-01": 1508 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.AK_RURAL_1": { - "type": "parameterNode", - "parameter": "gov.usda.snap.max_allotment.main.AK_RURAL_1", - "description": null, - "label": "AK RURAL 1", - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.AK_RURAL_1.0": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.AK_RURAL_1.0", - "description": null, - "label": "0", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2022-10-01": 0, - "2021-10-01": 0, - "2020-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.AK_RURAL_1.1": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.AK_RURAL_1.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 599.985017532675, - "2033-10-01": 586.798533630858, - "2032-10-01": 573.918712145362, - "2031-10-01": 561.345553076188, - "2030-10-01": 549.079056423335, - "2029-10-01": 537.119222186803, - "2028-10-01": 525.466050366592, - "2027-10-01": 514.426203379025, - "2026-10-01": 503.539687599617, - "2025-10-01": 492.49984061205, - "2024-10-01": 481, - "2023-10-01": 477, - "2022-10-01": 448, - "2021-10-01": 411, - "2021-01-01": 368, - "2020-10-01": 320, - "2015-01-01": 320 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.AK_RURAL_1.2": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.AK_RURAL_1.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 1100.18042715971, - "2033-10-01": 1076.0006375518, - "2032-10-01": 1052.38316863245, - "2031-10-01": 1029.32802040166, - "2030-10-01": 1006.83519285942, - "2029-10-01": 984.904686005738, - "2028-10-01": 963.536499840612, - "2027-10-01": 943.292955052598, - "2026-10-01": 923.330570608862, - "2025-10-01": 903.087025820848, - "2024-10-01": 882, - "2023-10-01": 875, - "2022-10-01": 822, - "2021-10-01": 753, - "2021-01-01": 675, - "2020-10-01": 587, - "2015-01-01": 587 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.AK_RURAL_1.3": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.AK_RURAL_1.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 1575.42843481033, - "2033-10-01": 1540.80363404527, - "2032-10-01": 1506.98406120497, - "2031-10-01": 1473.96971628945, - "2030-10-01": 1441.76059929869, - "2029-10-01": 1410.35671023271, - "2028-10-01": 1379.75804909149, - "2027-10-01": 1350.76984379981, - "2026-10-01": 1322.18425247051, - "2025-10-01": 1293.19604717883, - "2024-10-01": 1263, - "2023-10-01": 1253, - "2022-10-01": 1177, - "2021-10-01": 1079, - "2021-01-01": 967, - "2020-10-01": 841, - "2015-01-01": 841 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.AK_RURAL_1.4": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.AK_RURAL_1.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 2000.78163850813, - "2033-10-01": 1956.80841568377, - "2032-10-01": 1913.85782594836, - "2031-10-01": 1871.92986930188, - "2030-10-01": 1831.02454574434, - "2029-10-01": 1791.14185527574, - "2028-10-01": 1752.28179789608, - "2027-10-01": 1715.46700669429, - "2026-10-01": 1679.16353203698, - "2025-10-01": 1642.34874083519, - "2024-10-01": 1604, - "2023-10-01": 1591, - "2022-10-01": 1494, - "2021-10-01": 1370, - "2021-01-01": 1228, - "2020-10-01": 1068, - "2015-01-01": 1068 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.AK_RURAL_1.5": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.AK_RURAL_1.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 2376.24003825311, - "2033-10-01": 2324.01498246733, - "2032-10-01": 2273.00446286261, - "2031-10-01": 2223.20847943896, - "2030-10-01": 2174.62703219637, - "2029-10-01": 2127.26012113484, - "2028-10-01": 2081.10774625438, - "2027-10-01": 2037.38444373605, - "2026-10-01": 1994.26840930826, - "2025-10-01": 1950.54510678993, - "2024-10-01": 1905, - "2023-10-01": 1890, - "2022-10-01": 1774, - "2021-10-01": 1627, - "2021-01-01": 1459, - "2020-10-01": 1268, - "2015-01-01": 1268 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.AK_RURAL_1.6": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.AK_RURAL_1.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 2852.73541600255, - "2033-10-01": 2790.03793433216, - "2032-10-01": 2728.79853363086, - "2031-10-01": 2669.01721389863, - "2030-10-01": 2610.69397513548, - "2029-10-01": 2553.82881734141, - "2028-10-01": 2498.42174051642, - "2027-10-01": 2445.93082562958, - "2026-10-01": 2394.16895122729, - "2025-10-01": 2341.67803634045, - "2024-10-01": 2287, - "2023-10-01": 2268, - "2022-10-01": 2129, - "2021-10-01": 1952, - "2021-01-01": 1751, - "2020-10-01": 1522, - "2015-01-01": 1522 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.AK_RURAL_1.7": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.AK_RURAL_1.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 3152.10423971948, - "2033-10-01": 3082.82722346191, - "2032-10-01": 3015.16130060567, - "2031-10-01": 2949.10647115078, - "2030-10-01": 2884.66273509723, - "2029-10-01": 2821.83009244501, - "2028-10-01": 2760.60854319413, - "2027-10-01": 2702.60918074594, - "2026-10-01": 2645.41536499841, - "2025-10-01": 2587.41600255021, - "2024-10-01": 2527, - "2023-10-01": 2506, - "2022-10-01": 2354, - "2021-10-01": 2158, - "2021-01-01": 1935, - "2020-10-01": 1682, - "2015-01-01": 1682 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.AK_RURAL_1.8": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.AK_RURAL_1.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 3602.40484539369, - "2033-10-01": 3523.23111252789, - "2032-10-01": 3445.89862926363, - "2031-10-01": 3370.40739560089, - "2030-10-01": 3296.75741153969, - "2029-10-01": 3224.94867708001, - "2028-10-01": 3154.98119222187, - "2027-10-01": 3088.69620656678, - "2026-10-01": 3023.33184571246, - "2025-10-01": 2957.04686005738, - "2024-10-01": 2888, - "2023-10-01": 2865, - "2022-10-01": 2690, - "2021-10-01": 2466, - "2021-01-01": 2211, - "2020-10-01": 1923, - "2015-01-01": 1923 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.AK_RURAL_2": { - "type": "parameterNode", - "parameter": "gov.usda.snap.max_allotment.main.AK_RURAL_2", - "description": null, - "label": "AK RURAL 2", - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.AK_RURAL_2.0": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.AK_RURAL_2.0", - "description": null, - "label": "0", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2022-10-01": 0, - "2021-10-01": 0, - "2020-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.AK_RURAL_2.1": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.AK_RURAL_2.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 730.95887790883, - "2033-10-01": 714.89384762512, - "2032-10-01": 699.202422696844, - "2031-10-01": 683.884603124004, - "2030-10-01": 668.940388906599, - "2029-10-01": 654.369780044629, - "2028-10-01": 640.172776538094, - "2027-10-01": 626.722983742429, - "2026-10-01": 613.459993624482, - "2025-10-01": 600.010200828817, - "2024-10-01": 586, - "2023-10-01": 581, - "2022-10-01": 545, - "2021-10-01": 500, - "2021-01-01": 448, - "2020-10-01": 390, - "2015-01-01": 390 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.AK_RURAL_2.2": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.AK_RURAL_2.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 1339.67548613325, - "2033-10-01": 1310.23206885559, - "2032-10-01": 1281.4733822123, - "2031-10-01": 1253.39942620338, - "2030-10-01": 1226.01020082882, - "2029-10-01": 1199.30570608862, - "2028-10-01": 1173.28594198279, - "2027-10-01": 1148.63563914568, - "2026-10-01": 1124.32770162576, - "2025-10-01": 1099.67739878865, - "2024-10-01": 1074, - "2023-10-01": 1065, - "2022-10-01": 1000, - "2021-10-01": 917, - "2021-01-01": 822, - "2020-10-01": 715, - "2015-01-01": 715 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.AK_RURAL_2.3": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.AK_RURAL_2.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 1918.45521198597, - "2033-10-01": 1876.2913611731, - "2032-10-01": 1835.10806503028, - "2031-10-01": 1794.90532355754, - "2030-10-01": 1755.68313675486, - "2029-10-01": 1717.44150462225, - "2028-10-01": 1680.18042715971, - "2027-10-01": 1644.8804590373, - "2026-10-01": 1610.07076824992, - "2025-10-01": 1574.77080012751, - "2024-10-01": 1538, - "2023-10-01": 1525, - "2022-10-01": 1432, - "2021-10-01": 1313, - "2021-01-01": 1177, - "2020-10-01": 1024, - "2015-01-01": 1024 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.AK_RURAL_2.4": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.AK_RURAL_2.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 2436.11380299649, - "2033-10-01": 2382.57284029327, - "2032-10-01": 2330.27701625757, - "2031-10-01": 2279.22633088939, - "2030-10-01": 2229.42078418872, - "2029-10-01": 2180.86037615556, - "2028-10-01": 2133.54510678993, - "2027-10-01": 2088.72011475932, - "2026-10-01": 2044.51769206248, - "2025-10-01": 1999.69270003188, - "2024-10-01": 1953, - "2023-10-01": 1937, - "2022-10-01": 1819, - "2021-10-01": 1667, - "2021-01-01": 1495, - "2020-10-01": 1300, - "2015-01-01": 1300 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.AK_RURAL_2.5": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.AK_RURAL_2.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 2892.65125916481, - "2033-10-01": 2829.07650621613, - "2032-10-01": 2766.98023589417, - "2031-10-01": 2706.36244819892, - "2030-10-01": 2647.22314313038, - "2029-10-01": 2589.56232068856, - "2028-10-01": 2533.37998087345, - "2027-10-01": 2480.15460631176, - "2026-10-01": 2427.66847306344, - "2025-10-01": 2374.44309850175, - "2024-10-01": 2319, - "2023-10-01": 2300, - "2022-10-01": 2160, - "2021-10-01": 1980, - "2021-01-01": 1776, - "2020-10-01": 1544, - "2015-01-01": 1544 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.AK_RURAL_2.6": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.AK_RURAL_2.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 3471.43098501753, - "2033-10-01": 3395.13579853363, - "2032-10-01": 3320.61491871215, - "2031-10-01": 3247.86834555308, - "2030-10-01": 3176.89607905642, - "2029-10-01": 3107.69811922219, - "2028-10-01": 3040.27446605037, - "2027-10-01": 2976.39942620338, - "2026-10-01": 2913.4115396876, - "2025-10-01": 2849.53649984061, - "2024-10-01": 2783, - "2023-10-01": 2760, - "2022-10-01": 2592, - "2021-10-01": 2376, - "2021-01-01": 2131, - "2020-10-01": 1853, - "2015-01-01": 1853 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.AK_RURAL_2.7": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.AK_RURAL_2.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 3836.91042397195, - "2033-10-01": 3752.58272234619, - "2032-10-01": 3670.21613006057, - "2031-10-01": 3589.81064711508, - "2030-10-01": 3511.36627350972, - "2029-10-01": 3434.8830092445, - "2028-10-01": 3360.36085431941, - "2027-10-01": 3289.76091807459, - "2026-10-01": 3220.14153649984, - "2025-10-01": 3149.54160025502, - "2024-10-01": 3076, - "2023-10-01": 3051, - "2022-10-01": 2865, - "2021-10-01": 2626, - "2021-01-01": 2355, - "2020-10-01": 2048, - "2015-01-01": 2048 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.AK_RURAL_2.8": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.AK_RURAL_2.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 4385.75326745298, - "2033-10-01": 4289.36308575072, - "2032-10-01": 4195.21453618107, - "2031-10-01": 4103.30761874402, - "2030-10-01": 4013.64233343959, - "2029-10-01": 3926.21868026777, - "2028-10-01": 3841.03665922856, - "2027-10-01": 3760.33790245457, - "2026-10-01": 3680.75996174689, - "2025-10-01": 3600.0612049729, - "2024-10-01": 3516, - "2023-10-01": 3487, - "2022-10-01": 3274, - "2021-10-01": 3002, - "2021-01-01": 2692, - "2020-10-01": 2340, - "2015-01-01": 2340 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.GU": { - "type": "parameterNode", - "parameter": "gov.usda.snap.max_allotment.main.GU", - "description": null, - "label": "GU", - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.GU.0": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.GU.0", - "description": null, - "label": "0", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2022-10-01": 0, - "2021-10-01": 0, - "2020-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.GU.1": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.GU.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 537.616512591648, - "2033-10-01": 525.800765062161, - "2032-10-01": 514.259802358942, - "2031-10-01": 502.993624481989, - "2030-10-01": 492.002231431304, - "2029-10-01": 481.285623206886, - "2028-10-01": 470.843799808734, - "2027-10-01": 460.951546063118, - "2026-10-01": 451.196684730634, - "2025-10-01": 441.304430985018, - "2024-10-01": 431, - "2023-10-01": 430, - "2022-10-01": 415, - "2021-10-01": 369, - "2021-01-01": 345, - "2020-10-01": 300, - "2015-01-01": 300 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.GU.2": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.GU.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 985.422378068218, - "2033-10-01": 963.7647433854, - "2032-10-01": 942.610774625439, - "2031-10-01": 921.960471788333, - "2030-10-01": 901.813834874084, - "2029-10-01": 882.170863882691, - "2028-10-01": 863.031558814154, - "2027-10-01": 844.899585591329, - "2026-10-01": 827.019445329933, - "2025-10-01": 808.887472107109, - "2024-10-01": 790, - "2023-10-01": 788, - "2022-10-01": 761, - "2021-10-01": 677, - "2021-01-01": 634, - "2020-10-01": 551, - "2015-01-01": 551 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.GU.3": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.GU.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 1412.02295186484, - "2033-10-01": 1380.98948039528, - "2032-10-01": 1350.67771756455, - "2031-10-01": 1321.08766337265, - "2030-10-01": 1292.21931781957, - "2029-10-01": 1264.07268090532, - "2028-10-01": 1236.6477526299, - "2027-10-01": 1210.66624163213, - "2026-10-01": 1185.04558495378, - "2025-10-01": 1159.06407395601, - "2024-10-01": 1132, - "2023-10-01": 1129, - "2022-10-01": 1090, - "2021-10-01": 969, - "2021-01-01": 908, - "2020-10-01": 789, - "2015-01-01": 789 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.GU.4": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.GU.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 1792.4708320051, - "2033-10-01": 1753.07586866433, - "2032-10-01": 1714.59706726172, - "2031-10-01": 1677.03442779726, - "2030-10-01": 1640.38795027096, - "2029-10-01": 1604.65763468282, - "2028-10-01": 1569.84348103283, - "2027-10-01": 1536.86165125916, - "2026-10-01": 1504.33790245457, - "2025-10-01": 1471.35607268091, - "2024-10-01": 1437, - "2023-10-01": 1434, - "2022-10-01": 1385, - "2021-10-01": 1231, - "2021-01-01": 1153, - "2020-10-01": 1002, - "2015-01-01": 1002 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.GU.5": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.GU.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 2129.26075868664, - "2033-10-01": 2082.46381893529, - "2032-10-01": 2036.75518010838, - "2031-10-01": 1992.13484220593, - "2030-10-01": 1948.60280522792, - "2029-10-01": 1906.15906917437, - "2028-10-01": 1864.80363404527, - "2027-10-01": 1825.62480076506, - "2026-10-01": 1786.99011794708, - "2025-10-01": 1747.81128466688, - "2024-10-01": 1707, - "2023-10-01": 1703, - "2022-10-01": 1644, - "2021-10-01": 1462, - "2021-01-01": 1369, - "2020-10-01": 1190, - "2015-01-01": 1190 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.GU.6": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.GU.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 2555.86133248326, - "2033-10-01": 2499.68855594517, - "2032-10-01": 2444.8221230475, - "2031-10-01": 2391.26203379025, - "2030-10-01": 2339.00828817341, - "2029-10-01": 2288.060886197, - "2028-10-01": 2238.41982786101, - "2027-10-01": 2191.39145680587, - "2026-10-01": 2145.01625757093, - "2025-10-01": 2097.98788651578, - "2024-10-01": 2049, - "2023-10-01": 2044, - "2022-10-01": 1973, - "2021-10-01": 1754, - "2021-01-01": 1643, - "2020-10-01": 1428, - "2015-01-01": 1428 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.GU.7": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.GU.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 2824.04590372968, - "2033-10-01": 2761.97896079056, - "2032-10-01": 2701.3554351291, - "2031-10-01": 2642.1753267453, - "2030-10-01": 2584.43863563915, - "2029-10-01": 2528.14536181065, - "2028-10-01": 2473.2955052598, - "2027-10-01": 2421.33248326427, - "2026-10-01": 2370.09116990756, - "2025-10-01": 2318.12814791202, - "2024-10-01": 2264, - "2023-10-01": 2259, - "2022-10-01": 2181, - "2021-10-01": 1939, - "2021-01-01": 1816, - "2020-10-01": 1579, - "2015-01-01": 1579 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.GU.8": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.GU.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 3228.19381574753, - "2033-10-01": 3157.24450111572, - "2032-10-01": 3087.94517054511, - "2031-10-01": 3020.2958240357, - "2030-10-01": 2954.2964615875, - "2029-10-01": 2889.94708320051, - "2028-10-01": 2827.24768887472, - "2027-10-01": 2767.84826267134, - "2026-10-01": 2709.27382849857, - "2025-10-01": 2649.87440229519, - "2024-10-01": 2588, - "2023-10-01": 2581, - "2022-10-01": 2493, - "2021-10-01": 2216, - "2021-01-01": 2075, - "2020-10-01": 1804, - "2015-01-01": 1804 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.HI": { - "type": "parameterNode", - "parameter": "gov.usda.snap.max_allotment.main.HI", - "description": null, - "label": "HI", - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.HI.0": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.HI.0", - "description": null, - "label": "0", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2022-10-01": 0, - "2021-10-01": 0, - "2020-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.HI.1": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.HI.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 644.890341090214, - "2033-10-01": 630.716927000319, - "2032-10-01": 616.873127191584, - "2031-10-01": 603.35894166401, - "2030-10-01": 590.174370417597, - "2029-10-01": 577.319413452343, - "2028-10-01": 564.79407076825, - "2027-10-01": 552.927956646478, - "2026-10-01": 541.226649665285, - "2025-10-01": 529.360535543513, - "2024-10-01": 517, - "2023-10-01": 527, - "2022-10-01": 538, - "2021-10-01": 472, - "2021-01-01": 432, - "2020-10-01": 375, - "2015-01-01": 375 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.HI.2": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.HI.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 1182.50685368186, - "2033-10-01": 1156.51769206248, - "2032-10-01": 1131.13292955053, - "2031-10-01": 1106.352566146, - "2030-10-01": 1082.1766018489, - "2029-10-01": 1058.60503665923, - "2028-10-01": 1035.63787057698, - "2027-10-01": 1013.8795027096, - "2026-10-01": 992.42333439592, - "2025-10-01": 970.66496652853, - "2024-10-01": 948, - "2023-10-01": 967, - "2022-10-01": 987, - "2021-10-01": 865, - "2021-01-01": 792, - "2020-10-01": 688, - "2015-01-01": 688 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.HI.3": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.HI.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 1692.68122409946, - "2033-10-01": 1655.47943895442, - "2032-10-01": 1619.14281160344, - "2031-10-01": 1583.67134204654, - "2030-10-01": 1549.06503028371, - "2029-10-01": 1515.32387631495, - "2028-10-01": 1482.44788014026, - "2027-10-01": 1451.30219955371, - "2026-10-01": 1420.5890978642, - "2025-10-01": 1389.44341727765, - "2024-10-01": 1357, - "2023-10-01": 1385, - "2022-10-01": 1413, - "2021-10-01": 1239, - "2021-01-01": 1134, - "2020-10-01": 986, - "2015-01-01": 986 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.HI.4": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.HI.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 2149.21868026777, - "2033-10-01": 2101.98310487727, - "2032-10-01": 2055.84603124004, - "2031-10-01": 2010.80745935607, - "2030-10-01": 1966.86738922537, - "2029-10-01": 1924.02582084794, - "2028-10-01": 1882.28275422378, - "2027-10-01": 1842.73669110615, - "2026-10-01": 1803.73987886516, - "2025-10-01": 1764.19381574753, - "2024-10-01": 1723, - "2023-10-01": 1759, - "2022-10-01": 1794, - "2021-10-01": 1573, - "2021-01-01": 1440, - "2020-10-01": 1252, - "2015-01-01": 1252 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.HI.5": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.HI.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 2552.1192221868, - "2033-10-01": 2496.02868983105, - "2032-10-01": 2441.24258846031, - "2031-10-01": 2387.76091807459, - "2030-10-01": 2335.58367867389, - "2029-10-01": 2284.71087025821, - "2028-10-01": 2235.14249282754, - "2027-10-01": 2188.18297736691, - "2026-10-01": 2141.87567739879, - "2025-10-01": 2094.91616193816, - "2024-10-01": 2046, - "2023-10-01": 2088, - "2022-10-01": 2131, - "2021-10-01": 1868, - "2021-01-01": 1710, - "2020-10-01": 1487, - "2015-01-01": 1487 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.HI.6": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.HI.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 3063.54096270322, - "2033-10-01": 2996.21039209436, - "2032-10-01": 2930.44564870896, - "2031-10-01": 2866.24673254702, - "2030-10-01": 2803.61364360854, - "2029-10-01": 2742.54638189353, - "2028-10-01": 2683.04494740198, - "2027-10-01": 2626.67516735735, - "2026-10-01": 2571.08830092445, - "2025-10-01": 2514.71852087982, - "2024-10-01": 2456, - "2023-10-01": 2506, - "2022-10-01": 2557, - "2021-10-01": 2242, - "2021-01-01": 2052, - "2020-10-01": 1784, - "2015-01-01": 1784 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.HI.7": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.HI.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 3385.36244819892, - "2033-10-01": 3310.95887790883, - "2032-10-01": 3238.28562320689, - "2031-10-01": 3167.34268409308, - "2030-10-01": 3098.13006056742, - "2029-10-01": 3030.6477526299, - "2028-10-01": 2964.89576028052, - "2027-10-01": 2902.60439910743, - "2026-10-01": 2841.1781957284, - "2025-10-01": 2778.88683455531, - "2024-10-01": 2714, - "2023-10-01": 2770, - "2022-10-01": 2826, - "2021-10-01": 2478, - "2021-01-01": 2268, - "2020-10-01": 1972, - "2015-01-01": 1972 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.HI.8": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.HI.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 3869.34204654128, - "2033-10-01": 3784.30156200191, - "2032-10-01": 3701.23876314951, - "2031-10-01": 3620.15364998406, - "2030-10-01": 3541.04622250558, - "2029-10-01": 3463.91648071406, - "2028-10-01": 3388.7644246095, - "2027-10-01": 3317.56773987887, - "2026-10-01": 3247.35989799171, - "2025-10-01": 3176.16321326108, - "2024-10-01": 3102, - "2023-10-01": 3166, - "2022-10-01": 3230, - "2021-10-01": 2832, - "2021-01-01": 2592, - "2020-10-01": 2254, - "2015-01-01": 2254 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.VI": { - "type": "parameterNode", - "parameter": "gov.usda.snap.max_allotment.main.VI", - "description": null, - "label": "VI", - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.VI.0": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.VI.0", - "description": null, - "label": "0", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2022-10-01": 0, - "2021-10-01": 0, - "2020-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.VI.1": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.VI.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 469.011157156519, - "2033-10-01": 458.703219636595, - "2032-10-01": 448.63500159388, - "2031-10-01": 438.806503028371, - "2030-10-01": 429.21772394007, - "2029-10-01": 419.868664328977, - "2028-10-01": 410.759324195091, - "2027-10-01": 402.12942301562, - "2026-10-01": 393.619381574753, - "2025-10-01": 384.989480395282, - "2024-10-01": 376, - "2023-10-01": 375, - "2022-10-01": 362, - "2021-10-01": 322, - "2021-01-01": 301, - "2020-10-01": 262, - "2015-01-01": 262 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.VI.2": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.VI.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 859.437998087345, - "2033-10-01": 840.549250876634, - "2032-10-01": 822.09977685687, - "2031-10-01": 804.089576028052, - "2030-10-01": 786.518648390182, - "2029-10-01": 769.386993943258, - "2028-10-01": 752.694612687281, - "2027-10-01": 736.880777813197, - "2026-10-01": 721.286579534587, - "2025-10-01": 705.472744660504, - "2024-10-01": 689, - "2023-10-01": 688, - "2022-10-01": 664, - "2021-10-01": 590, - "2021-01-01": 553, - "2020-10-01": 481, - "2015-01-01": 481 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.VI.3": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.VI.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 1231.15428753586, - "2033-10-01": 1204.09595154606, - "2032-10-01": 1177.66687918393, - "2031-10-01": 1151.86707044947, - "2030-10-01": 1126.69652534268, - "2029-10-01": 1102.15524386356, - "2028-10-01": 1078.24322601211, - "2027-10-01": 1055.589735416, - "2026-10-01": 1033.25087663373, - "2025-10-01": 1010.59738603762, - "2024-10-01": 987, - "2023-10-01": 985, - "2022-10-01": 951, - "2021-10-01": 845, - "2021-01-01": 792, - "2020-10-01": 688, - "2015-01-01": 688 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.VI.4": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.VI.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 1564.20210392094, - "2033-10-01": 1529.8240357029, - "2032-10-01": 1496.24545744342, - "2031-10-01": 1463.46636914249, - "2030-10-01": 1431.48677080013, - "2029-10-01": 1400.30666241632, - "2028-10-01": 1369.92604399107, - "2027-10-01": 1341.14440548295, - "2026-10-01": 1312.7625119541, - "2025-10-01": 1283.98087344597, - "2024-10-01": 1254, - "2023-10-01": 1251, - "2022-10-01": 1208, - "2021-10-01": 1074, - "2021-01-01": 1005, - "2020-10-01": 874, - "2015-01-01": 874 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.VI.5": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.VI.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 1857.33407714377, - "2033-10-01": 1816.51354797577, - "2032-10-01": 1776.64233343959, - "2031-10-01": 1737.72043353523, - "2030-10-01": 1699.74784826267, - "2029-10-01": 1662.72457762193, - "2028-10-01": 1626.65062161301, - "2027-10-01": 1592.47529486771, - "2026-10-01": 1558.77462543832, - "2025-10-01": 1524.59929869302, - "2024-10-01": 1489, - "2023-10-01": 1485, - "2022-10-01": 1434, - "2021-10-01": 1275, - "2021-01-01": 1194, - "2020-10-01": 1038, - "2015-01-01": 1038 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.VI.6": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.VI.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 2229.05036659229, - "2033-10-01": 2180.0602486452, - "2032-10-01": 2132.20943576666, - "2031-10-01": 2085.49792795665, - "2030-10-01": 2039.92572521517, - "2029-10-01": 1995.49282754224, - "2028-10-01": 1952.19923493784, - "2027-10-01": 1911.18425247051, - "2026-10-01": 1870.73892253746, - "2025-10-01": 1829.72394007013, - "2024-10-01": 1787, - "2023-10-01": 1782, - "2022-10-01": 1721, - "2021-10-01": 1530, - "2021-01-01": 1433, - "2020-10-01": 1246, - "2015-01-01": 1246 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.VI.7": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.VI.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 2463.55594517055, - "2033-10-01": 2409.4118584635, - "2032-10-01": 2356.5269365636, - "2031-10-01": 2304.90117947083, - "2030-10-01": 2254.53458718521, - "2029-10-01": 2205.42715970673, - "2028-10-01": 2157.57889703538, - "2027-10-01": 2112.24896397832, - "2026-10-01": 2067.54861332483, - "2025-10-01": 2022.21868026777, - "2024-10-01": 1975, - "2023-10-01": 1970, - "2022-10-01": 1903, - "2021-10-01": 1691, - "2021-01-01": 1584, - "2020-10-01": 1377, - "2015-01-01": 1377 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.main.VI.8": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.main.VI.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 2815.31431303793, - "2033-10-01": 2753.43927319095, - "2032-10-01": 2693.00318775901, - "2031-10-01": 2634.00605674211, - "2030-10-01": 2576.44788014026, - "2029-10-01": 2520.32865795346, - "2028-10-01": 2465.6483901817, - "2027-10-01": 2413.84603124004, - "2026-10-01": 2362.7631495059, - "2025-10-01": 2310.96079056423, - "2024-10-01": 2257, - "2023-10-01": 2252, - "2022-10-01": 2174, - "2021-10-01": 1933, - "2021-01-01": 1810, - "2020-10-01": 1574, - "2015-01-01": 1574 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.additional": { - "type": "parameterNode", - "parameter": "gov.usda.snap.max_allotment.additional", - "description": null, - "label": "additional", - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.additional.CONTIGUOUS_US": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.additional.CONTIGUOUS_US", - "description": null, - "label": "CONTIGUOUS US", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 274.421421740516, - "2033-10-01": 268.390181702263, - "2032-10-01": 262.499203060249, - "2031-10-01": 256.748485814473, - "2030-10-01": 251.138029964935, - "2029-10-01": 245.667835511635, - "2028-10-01": 240.337902454574, - "2027-10-01": 235.28849218999, - "2026-10-01": 230.309212623526, - "2025-10-01": 225.259802358942, - "2024-10-01": 220, - "2023-10-01": 219, - "2022-10-01": 211, - "2021-10-01": 188, - "2021-01-01": 176, - "2020-10-01": 153, - "2015-01-01": 153 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.additional.AK_URBAN": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.additional.AK_URBAN", - "description": null, - "label": "AK URBAN", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 353.00573796621, - "2033-10-01": 345.247370098821, - "2032-10-01": 337.669429391138, - "2031-10-01": 330.271915843162, - "2030-10-01": 323.054829454893, - "2029-10-01": 316.018170226331, - "2028-10-01": 309.161938157475, - "2027-10-01": 302.666560408033, - "2026-10-01": 296.261396238444, - "2025-10-01": 289.766018489002, - "2024-10-01": 283, - "2023-10-01": 281, - "2022-10-01": 264, - "2021-10-01": 242, - "2021-01-01": 217, - "2020-10-01": 189, - "2015-01-01": 189 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.additional.AK_RURAL_1": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.additional.AK_RURAL_1", - "description": null, - "label": "AK RURAL 1", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 450.300605674211, - "2033-10-01": 440.403889065987, - "2032-10-01": 430.737328657954, - "2031-10-01": 421.300924450112, - "2030-10-01": 412.094676442461, - "2029-10-01": 403.118584635002, - "2028-10-01": 394.372649027734, - "2027-10-01": 386.087025820848, - "2026-10-01": 377.916480714058, - "2025-10-01": 369.630857507172, - "2024-10-01": 361, - "2023-10-01": 358, - "2022-10-01": 336, - "2021-10-01": 308, - "2021-01-01": 276, - "2020-10-01": 240, - "2015-01-01": 240 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.additional.AK_RURAL_2": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.additional.AK_RURAL_2", - "description": null, - "label": "AK RURAL 2", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 548.842843481033, - "2033-10-01": 536.780363404527, - "2032-10-01": 524.998406120497, - "2031-10-01": 513.496971628945, - "2030-10-01": 502.276059929869, - "2029-10-01": 491.335671023271, - "2028-10-01": 480.675804909149, - "2027-10-01": 470.576984379981, - "2026-10-01": 460.618425247051, - "2025-10-01": 450.519604717883, - "2024-10-01": 440, - "2023-10-01": 436, - "2022-10-01": 409, - "2021-10-01": 375, - "2021-01-01": 337, - "2020-10-01": 293, - "2015-01-01": 293 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.additional.GU": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.additional.GU", - "description": null, - "label": "GU", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 404.147912017851, - "2033-10-01": 395.265540325151, - "2032-10-01": 386.589735416003, - "2031-10-01": 378.120497290405, - "2030-10-01": 369.857825948358, - "2029-10-01": 361.801721389863, - "2028-10-01": 353.952183614919, - "2027-10-01": 346.515779407077, - "2026-10-01": 339.182658591011, - "2025-10-01": 331.746254383169, - "2024-10-01": 324, - "2023-10-01": 323, - "2022-10-01": 312, - "2021-10-01": 277, - "2021-01-01": 259, - "2020-10-01": 226, - "2015-01-01": 226 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.additional.HI": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.additional.HI", - "description": null, - "label": "HI", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 483.979598342365, - "2033-10-01": 473.342684093083, - "2032-10-01": 462.95313994262, - "2031-10-01": 452.810965890979, - "2030-10-01": 442.916161938158, - "2029-10-01": 433.268728084157, - "2028-10-01": 423.868664328977, - "2027-10-01": 414.963340771438, - "2026-10-01": 406.181702263309, - "2025-10-01": 397.27637870577, - "2024-10-01": 388, - "2023-10-01": 396, - "2022-10-01": 404, - "2021-10-01": 354, - "2021-01-01": 324, - "2020-10-01": 558, - "2015-01-01": 558 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.max_allotment.additional.VI": { - "type": "parameter", - "parameter": "gov.usda.snap.max_allotment.additional.VI", - "description": null, - "label": "VI", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 351.758367867389, - "2033-10-01": 344.027414727447, - "2032-10-01": 336.47625119541, - "2031-10-01": 329.104877271278, - "2030-10-01": 321.913292955053, - "2029-10-01": 314.901498246733, - "2028-10-01": 308.069493146318, - "2027-10-01": 301.597067261715, - "2026-10-01": 295.214536181065, - "2025-10-01": 288.742110296462, - "2024-10-01": 282, - "2023-10-01": 282, - "2022-10-01": 272, - "2021-10-01": 242, - "2021-01-01": 226, - "2020-10-01": 197, - "2015-01-01": 197 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.abolish_snap": { - "type": "parameter", - "parameter": "gov.usda.snap.abolish_snap", - "description": "Abolish SNAP payments.", - "label": "Abolish SNAP", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.work_requirements": { - "type": "parameterNode", - "parameter": "gov.usda.snap.work_requirements", - "description": null, - "label": "work requirements", - "economy": true, - "household": true - }, - "gov.usda.snap.work_requirements.abawd": { - "type": "parameterNode", - "parameter": "gov.usda.snap.work_requirements.abawd", - "description": null, - "label": "Able-Bodied Adult Without Dependents", - "economy": true, - "household": true - }, - "gov.usda.snap.work_requirements.abawd.age_threshold": { - "type": "parameterNode", - "parameter": "gov.usda.snap.work_requirements.abawd.age_threshold", - "description": null, - "label": "age threshold", - "economy": true, - "household": true - }, - "gov.usda.snap.work_requirements.abawd.age_threshold.dependent": { - "type": "parameter", - "parameter": "gov.usda.snap.work_requirements.abawd.age_threshold.dependent", - "description": "The Department of Agriculture considers individuals who do not have any dependents under this age to be Able-Bodied Adult Without Dependents (ABAWD) under the Supplemental Nutrition Assistance Program.", - "label": "USDA SNAP ABAWD dependent age threshold", - "unit": "year", - "period": "year", - "values": { - "2027-01-01": 14, - "2019-01-01": 18, - "2015-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.work_requirements.abawd.age_threshold.exempted": { - "type": "parameterNode", - "parameter": "gov.usda.snap.work_requirements.abawd.age_threshold.exempted", - "description": "The Department of Agriculture exempts applicants who are within these age brackets from the Able-Bodied Adult Without Dependents (ABAWD) work requirements under the Supplemental Nutrition Assistance Program.", - "label": "USDA SNAP ABAWD work requirements work exempted age threshold" - }, - "gov.usda.snap.work_requirements.abawd.age_threshold.exempted[0]": { - "type": "parameterNode", - "parameter": "gov.usda.snap.work_requirements.abawd.age_threshold.exempted[0]", - "description": null, - "label": "bracket 1" - }, - "gov.usda.snap.work_requirements.abawd.age_threshold.exempted[0].threshold": { - "type": "parameter", - "parameter": "gov.usda.snap.work_requirements.abawd.age_threshold.exempted[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2019-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.work_requirements.abawd.age_threshold.exempted[0].amount": { - "type": "parameter", - "parameter": "gov.usda.snap.work_requirements.abawd.age_threshold.exempted[0].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2019-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.work_requirements.abawd.age_threshold.exempted[1]": { - "type": "parameterNode", - "parameter": "gov.usda.snap.work_requirements.abawd.age_threshold.exempted[1]", - "description": null, - "label": "bracket 2" - }, - "gov.usda.snap.work_requirements.abawd.age_threshold.exempted[1].threshold": { - "type": "parameter", - "parameter": "gov.usda.snap.work_requirements.abawd.age_threshold.exempted[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2019-01-01": 18, - "2015-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.work_requirements.abawd.age_threshold.exempted[1].amount": { - "type": "parameter", - "parameter": "gov.usda.snap.work_requirements.abawd.age_threshold.exempted[1].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2019-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.work_requirements.abawd.age_threshold.exempted[2]": { - "type": "parameterNode", - "parameter": "gov.usda.snap.work_requirements.abawd.age_threshold.exempted[2]", - "description": null, - "label": "bracket 3" - }, - "gov.usda.snap.work_requirements.abawd.age_threshold.exempted[2].threshold": { - "type": "parameter", - "parameter": "gov.usda.snap.work_requirements.abawd.age_threshold.exempted[2].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2027-01-01": 65, - "2019-01-01": 55, - "2015-01-01": 55 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.work_requirements.abawd.age_threshold.exempted[2].amount": { - "type": "parameter", - "parameter": "gov.usda.snap.work_requirements.abawd.age_threshold.exempted[2].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2019-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.work_requirements.abawd.exempt_states": { - "type": "parameter", - "parameter": "gov.usda.snap.work_requirements.abawd.exempt_states", - "description": "The Department of Agriculture exempts the Able-Bodied Adult Without Dependents (ABAWD) work requirements for these states under the Supplemental Nutrition Assistance Program.", - "label": "SNAP ABAWD work requirement exempt states", - "unit": "list", - "period": "year", - "values": { - "2027-01-01": ["HI", "AK"], - "2018-01-01": [], - "2015-01-01": [] - }, - "economy": true, - "household": true - }, - "gov.usda.snap.work_requirements.abawd.in_effect": { - "type": "parameter", - "parameter": "gov.usda.snap.work_requirements.abawd.in_effect", - "description": "The Department of Agriculture removes the exemption from Able-Bodied Adult Without Dependents (ABAWD) work requirements for homeless individuals or veterans under the Supplemental Nutrition Assistance Program, if this is true.", - "label": "SNAP ABAWD work requirement exemption removed for homeless or veterans", - "unit": "bool", - "period": "year", - "values": { - "2027-01-01": true, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.work_requirements.abawd.weekly_hours_threshold": { - "type": "parameter", - "parameter": "gov.usda.snap.work_requirements.abawd.weekly_hours_threshold", - "description": "The Department of Agriculture limits the Supplemental Nutrition Assistance Program to individuals working more than this number of hours per week, unless exempt.", - "label": "USDA SNAP ABAWD work requirements weekly hours threshold", - "unit": "hours", - "period": "week", - "values": { - "2019-01-01": 20, - "2015-01-01": 20 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.work_requirements.general": { - "type": "parameterNode", - "parameter": "gov.usda.snap.work_requirements.general", - "description": null, - "label": "general", - "economy": true, - "household": true - }, - "gov.usda.snap.work_requirements.general.age_threshold": { - "type": "parameterNode", - "parameter": "gov.usda.snap.work_requirements.general.age_threshold", - "description": null, - "label": "age threshold", - "economy": true, - "household": true - }, - "gov.usda.snap.work_requirements.general.age_threshold.exempted": { - "type": "parameterNode", - "parameter": "gov.usda.snap.work_requirements.general.age_threshold.exempted", - "description": "TThe Department of Agriculture exempts individuals within these age brackets from the general work requirements under the Supplemental Nutrition Assistance Program.", - "label": "USDA SNAP general work requirements work exempted age threshold" - }, - "gov.usda.snap.work_requirements.general.age_threshold.exempted[0]": { - "type": "parameterNode", - "parameter": "gov.usda.snap.work_requirements.general.age_threshold.exempted[0]", - "description": null, - "label": "bracket 1" - }, - "gov.usda.snap.work_requirements.general.age_threshold.exempted[0].threshold": { - "type": "parameter", - "parameter": "gov.usda.snap.work_requirements.general.age_threshold.exempted[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2019-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.work_requirements.general.age_threshold.exempted[0].amount": { - "type": "parameter", - "parameter": "gov.usda.snap.work_requirements.general.age_threshold.exempted[0].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2019-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.work_requirements.general.age_threshold.exempted[1]": { - "type": "parameterNode", - "parameter": "gov.usda.snap.work_requirements.general.age_threshold.exempted[1]", - "description": null, - "label": "bracket 2" - }, - "gov.usda.snap.work_requirements.general.age_threshold.exempted[1].threshold": { - "type": "parameter", - "parameter": "gov.usda.snap.work_requirements.general.age_threshold.exempted[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2019-01-01": 16, - "2015-01-01": 16 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.work_requirements.general.age_threshold.exempted[1].amount": { - "type": "parameter", - "parameter": "gov.usda.snap.work_requirements.general.age_threshold.exempted[1].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2019-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.work_requirements.general.age_threshold.exempted[2]": { - "type": "parameterNode", - "parameter": "gov.usda.snap.work_requirements.general.age_threshold.exempted[2]", - "description": null, - "label": "bracket 3" - }, - "gov.usda.snap.work_requirements.general.age_threshold.exempted[2].threshold": { - "type": "parameter", - "parameter": "gov.usda.snap.work_requirements.general.age_threshold.exempted[2].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2019-01-01": 60, - "2015-01-01": 60 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.work_requirements.general.age_threshold.exempted[2].amount": { - "type": "parameter", - "parameter": "gov.usda.snap.work_requirements.general.age_threshold.exempted[2].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2019-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.work_requirements.general.age_threshold.caring_dependent_child": { - "type": "parameter", - "parameter": "gov.usda.snap.work_requirements.general.age_threshold.caring_dependent_child", - "description": "TThe Department of Agriculture exempts individuals caring for a dependent child under this age from the general work requirements under the Supplemental Nutrition Assistance Program.", - "label": "USDA SNAP general work requirements caring dependent child age threshold", - "unit": "year", - "period": "year", - "values": { - "2019-01-01": 6, - "2015-01-01": 6 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.work_requirements.general.weekly_hours_threshold": { - "type": "parameter", - "parameter": "gov.usda.snap.work_requirements.general.weekly_hours_threshold", - "description": "TThe Department of Agriculture limits the Supplemental Nutrition Assistance Program to individuals working more than this number of weekly hours from the general work requirements.", - "label": "USDA SNAP general work requirements weekly hours threshold", - "unit": "hours", - "period": "week", - "values": { - "2019-01-01": 30, - "2015-01-01": 30 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.student": { - "type": "parameterNode", - "parameter": "gov.usda.snap.student", - "description": null, - "label": "student", - "economy": true, - "household": true - }, - "gov.usda.snap.student.age_threshold": { - "type": "parameterNode", - "parameter": "gov.usda.snap.student.age_threshold", - "description": "The United States includes students in the Supplemental Nutrition Assistance Program unit if their age falls into the following range.", - "label": "SNAP student age eligibility threshold" - }, - "gov.usda.snap.student.age_threshold[0]": { - "type": "parameterNode", - "parameter": "gov.usda.snap.student.age_threshold[0]", - "description": null, - "label": "bracket 1" - }, - "gov.usda.snap.student.age_threshold[0].threshold": { - "type": "parameter", - "parameter": "gov.usda.snap.student.age_threshold[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.student.age_threshold[0].amount": { - "type": "parameter", - "parameter": "gov.usda.snap.student.age_threshold[0].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2018-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.student.age_threshold[1]": { - "type": "parameterNode", - "parameter": "gov.usda.snap.student.age_threshold[1]", - "description": null, - "label": "bracket 2" - }, - "gov.usda.snap.student.age_threshold[1].threshold": { - "type": "parameter", - "parameter": "gov.usda.snap.student.age_threshold[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2018-01-01": 18, - "2015-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.student.age_threshold[1].amount": { - "type": "parameter", - "parameter": "gov.usda.snap.student.age_threshold[1].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2018-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.student.age_threshold[2]": { - "type": "parameterNode", - "parameter": "gov.usda.snap.student.age_threshold[2]", - "description": null, - "label": "bracket 3" - }, - "gov.usda.snap.student.age_threshold[2].threshold": { - "type": "parameter", - "parameter": "gov.usda.snap.student.age_threshold[2].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2018-01-01": 50, - "2015-01-01": 50 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.student.age_threshold[2].amount": { - "type": "parameter", - "parameter": "gov.usda.snap.student.age_threshold[2].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2018-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.student.working_hours_threshold": { - "type": "parameter", - "parameter": "gov.usda.snap.student.working_hours_threshold", - "description": "The United States includes students who work more than this number of weekly hours in the Supplemental Nutrition Assistance Program unit.", - "label": "SNAP student working hours threshold", - "unit": "hours", - "period": "week", - "values": { - "2005-01-01": 20 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.asset_test": { - "type": "parameterNode", - "parameter": "gov.usda.snap.asset_test", - "description": null, - "label": "asset test", - "economy": true, - "household": true - }, - "gov.usda.snap.asset_test.limit": { - "type": "parameterNode", - "parameter": "gov.usda.snap.asset_test.limit", - "description": "The USDA restricts SNAP to households with assets not exceeding this value.", - "label": "SNAP asset limit", - "economy": true, - "household": true - }, - "gov.usda.snap.asset_test.limit.standard": { - "type": "parameter", - "parameter": "gov.usda.snap.asset_test.limit.standard", - "description": "Maximum value of SNAP-visible assets for households without elderly or disabled members", - "label": "standard", - "unit": null, - "period": null, - "values": { - "2024-10-01": 3000, - "2022-10-01": 2750, - "2021-10-01": 2500, - "2020-10-01": 2250, - "2015-01-01": 2250 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.asset_test.limit.elderly_disabled": { - "type": "parameter", - "parameter": "gov.usda.snap.asset_test.limit.elderly_disabled", - "description": "Maximum value of SNAP-visible assets for households with elderly or disabled members", - "label": "elderly disabled", - "unit": null, - "period": null, - "values": { - "2024-10-01": 4500, - "2022-10-01": 4250, - "2021-10-01": 3750, - "2020-10-01": 3500, - "2015-01-01": 3500 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income": { - "type": "parameterNode", - "parameter": "gov.usda.snap.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.usda.snap.income.child_income_exclusion_age": { - "type": "parameter", - "parameter": "gov.usda.snap.income.child_income_exclusion_age", - "description": "The Department of Agriculture excludes earned income of a household member who is an elementary or secondary school student and younger than this age, under the Supplemental Nutrition Assistance Program.", - "label": "SNAP child earned income exclusion age threshold", - "unit": "year", - "period": "year", - "values": { - "2014-01-01": 17 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.limit": { - "type": "parameterNode", - "parameter": "gov.usda.snap.income.limit", - "description": null, - "label": "limit", - "economy": true, - "household": true - }, - "gov.usda.snap.income.limit.net": { - "type": "parameter", - "parameter": "gov.usda.snap.income.limit.net", - "description": "SNAP standard net income limit as a percentage of the poverty line.", - "label": "SNAP net income limit", - "unit": "/1", - "period": null, - "values": { - "2005-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.limit.gross": { - "type": "parameter", - "parameter": "gov.usda.snap.income.limit.gross", - "description": "SNAP gross income limit as a percentage of the poverty line.", - "label": "SNAP gross income limit", - "unit": "/1", - "period": null, - "values": { - "2005-01-01": 1.3 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.sources": { - "type": "parameterNode", - "parameter": "gov.usda.snap.income.sources", - "description": null, - "label": "sources", - "economy": true, - "household": true - }, - "gov.usda.snap.income.sources.earned": { - "type": "parameter", - "parameter": "gov.usda.snap.income.sources.earned", - "description": "Income sources that count as earned income for SNAP", - "label": "earned", - "unit": null, - "period": null, - "values": { - "2009-01-01": ["employment_income", "snap_self_employment_income_after_expense_deduction"] - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.sources.unearned": { - "type": "parameter", - "parameter": "gov.usda.snap.income.sources.unearned", - "description": "Income sources that count as unearned income for SNAP", - "label": "unearned", - "unit": null, - "period": null, - "values": { - "2009-01-01": [ - "ssi", - "tanf", - "general_assistance", - "pension_income", - "veterans_benefits", - "unemployment_compensation", - "disability_benefits", - "workers_compensation", - "social_security", - "retirement_distributions", - "rental_income", - "child_support_received", - "alimony_income", - "dividend_income", - "interest_income", - "miscellaneous_income" - ] - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions": { - "type": "parameterNode", - "parameter": "gov.usda.snap.income.deductions", - "description": null, - "label": "deductions", - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.allowed": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.allowed", - "description": "Deductions available for SNAP calculation", - "label": "SNAP deductions allowed", - "unit": "list", - "period": "year", - "values": { - "2008-01-01": [ - "snap_standard_deduction", - "snap_earned_income_deduction", - "snap_dependent_care_deduction", - "snap_child_support_deduction", - "snap_excess_medical_expense_deduction", - "snap_excess_shelter_expense_deduction", - "snap_self_employment_expense_deduction" - ] - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility": { - "type": "parameterNode", - "parameter": "gov.usda.snap.income.deductions.utility", - "description": null, - "label": "utility", - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard": { - "type": "parameterNode", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard", - "description": "The following states always use the standard utility allowance under the SNAP program.", - "label": "SNAP States using SUA", - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.AK": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.AK", - "description": null, - "label": "AK", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.AL": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.AL", - "description": null, - "label": "AL", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.AR": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.AR", - "description": null, - "label": "AR", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.AZ": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.AZ", - "description": null, - "label": "AZ", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.CA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.CA", - "description": null, - "label": "CA", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.CO": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.CO", - "description": null, - "label": "CO", - "unit": null, - "period": null, - "values": { - "2024-10-01": true, - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.CT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.CT", - "description": null, - "label": "CT", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.DC": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.DC", - "description": null, - "label": "DC", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.DE": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.DE", - "description": null, - "label": "DE", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.FL": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.FL", - "description": null, - "label": "FL", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.GA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.GA", - "description": null, - "label": "GA", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.GU": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.GU", - "description": null, - "label": "GU", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.HI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.HI", - "description": null, - "label": "HI", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.IA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.IA", - "description": null, - "label": "IA", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.ID": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.ID", - "description": null, - "label": "ID", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.IL": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.IL", - "description": null, - "label": "IL", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.IN": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.IN", - "description": null, - "label": "IN", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.KS": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.KS", - "description": null, - "label": "KS", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.KY": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.KY", - "description": null, - "label": "KY", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.LA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.LA", - "description": null, - "label": "LA", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.MA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.MA", - "description": null, - "label": "MA", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.MD": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.MD", - "description": null, - "label": "MD", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.ME": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.ME", - "description": null, - "label": "ME", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.MI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.MI", - "description": null, - "label": "MI", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.MN": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.MN", - "description": null, - "label": "MN", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.MO": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.MO", - "description": null, - "label": "MO", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.MS": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.MS", - "description": null, - "label": "MS", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.MT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.MT", - "description": null, - "label": "MT", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.NC": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.NC", - "description": null, - "label": "NC", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.ND": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.ND", - "description": null, - "label": "ND", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.NE": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.NE", - "description": null, - "label": "NE", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.NH": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.NH", - "description": null, - "label": "NH", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.NJ": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.NJ", - "description": null, - "label": "NJ", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.NM": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.NM", - "description": null, - "label": "NM", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.NV": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.NV", - "description": null, - "label": "NV", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.NY": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.NY", - "description": null, - "label": "NY", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.OH": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.OH", - "description": null, - "label": "OH", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.OK": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.OK", - "description": null, - "label": "OK", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.OR": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.OR", - "description": null, - "label": "OR", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.PA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.PA", - "description": null, - "label": "PA", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.RI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.RI", - "description": null, - "label": "RI", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.SC": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.SC", - "description": null, - "label": "SC", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.SD": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.SD", - "description": null, - "label": "SD", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.TN": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.TN", - "description": null, - "label": "TN", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.TX": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.TX", - "description": null, - "label": "TX", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.UT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.UT", - "description": null, - "label": "UT", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.VA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.VA", - "description": null, - "label": "VA", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.VI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.VI", - "description": null, - "label": "VI", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.VT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.VT", - "description": null, - "label": "VT", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.WA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.WA", - "description": null, - "label": "WA", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.WI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.WI", - "description": null, - "label": "WI", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.WV": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.WV", - "description": null, - "label": "WV", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.WY": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.WY", - "description": null, - "label": "WY", - "unit": null, - "period": null, - "values": { - "2020-10-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.PW": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.PW", - "description": null, - "label": "PW", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.PR": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.PR", - "description": null, - "label": "PR", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.AP": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.AP", - "description": null, - "label": "AP", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.AE": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.AE", - "description": null, - "label": "AE", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.MP": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.MP", - "description": null, - "label": "MP", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.always_standard.AA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.always_standard.AA", - "description": null, - "label": "AA", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited": { - "type": "parameterNode", - "parameter": "gov.usda.snap.income.deductions.utility.limited", - "description": null, - "label": "limited", - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main": { - "type": "parameterNode", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main", - "description": "A household is eligible for the Limited Utility Allowance if it does not have separate heating and cooling costs, but does have at least two other utilities. Also known as the 'basic' utility allowance.", - "label": "main", - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.AK": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.AK", - "description": null, - "label": "AK", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.AL": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.AL", - "description": null, - "label": "AL", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 566.30602486452, - "2033-10-01": 553.859738603762, - "2032-10-01": 541.702900860695, - "2031-10-01": 529.835511635321, - "2030-10-01": 518.257570927638, - "2029-10-01": 506.969078737647, - "2028-10-01": 495.970035065349, - "2027-10-01": 485.549888428435, - "2026-10-01": 475.274466050367, - "2025-10-01": 464.854319413452, - "2024-10-01": 454, - "2023-10-01": 434, - "2021-10-01": 389, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.AR": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.AR", - "description": null, - "label": "AR", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 333.047816385081, - "2033-10-01": 325.728084156838, - "2032-10-01": 318.578578259484, - "2031-10-01": 311.599298693019, - "2030-10-01": 304.790245457443, - "2029-10-01": 298.151418552757, - "2028-10-01": 291.682817978961, - "2027-10-01": 285.554670066943, - "2026-10-01": 279.51163532037, - "2025-10-01": 273.383487408352, - "2024-10-01": 267, - "2023-10-01": 263, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.AZ": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.AZ", - "description": null, - "label": "AZ", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 180.868664328977, - "2033-10-01": 176.893528849219, - "2032-10-01": 173.010838380618, - "2031-10-01": 169.220592923175, - "2030-10-01": 165.522792476889, - "2029-10-01": 161.91743704176, - "2028-10-01": 158.404526617788, - "2027-10-01": 155.07650621613, - "2026-10-01": 151.794708320051, - "2025-10-01": 148.466687918393, - "2024-10-01": 145, - "2023-10-01": 150, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.CA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.CA", - "description": null, - "label": "CA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 207.063436404208, - "2033-10-01": 202.512591648071, - "2032-10-01": 198.067580490915, - "2031-10-01": 193.728402932738, - "2030-10-01": 189.495058973542, - "2029-10-01": 185.367548613325, - "2028-10-01": 181.345871852088, - "2027-10-01": 177.535862288811, - "2026-10-01": 173.778769525024, - "2025-10-01": 169.968759961747, - "2024-10-01": 166, - "2023-10-01": 158, - "2021-10-01": 144, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.CO": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.CO", - "description": null, - "label": "CO", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 457.784826267134, - "2033-10-01": 447.72362129423, - "2032-10-01": 437.896397832324, - "2031-10-01": 428.303155881415, - "2030-10-01": 418.943895441505, - "2029-10-01": 409.818616512592, - "2028-10-01": 400.927319094676, - "2027-10-01": 392.503984698757, - "2026-10-01": 384.197641058336, - "2025-10-01": 375.774306662416, - "2024-10-01": 367, - "2023-10-01": 356, - "2022-10-01": 338, - "2021-10-01": 314, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.CT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.CT", - "description": null, - "label": "CT", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 522.648071405802, - "2033-10-01": 511.161300605674, - "2032-10-01": 499.941664010201, - "2031-10-01": 488.989161619382, - "2030-10-01": 478.303793433216, - "2029-10-01": 467.885559451706, - "2028-10-01": 457.734459674849, - "2027-10-01": 448.1176283073, - "2026-10-01": 438.634364042078, - "2025-10-01": 429.01753267453, - "2024-10-01": 419, - "2023-10-01": 402, - "2021-10-01": 345, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.DC": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.DC", - "description": null, - "label": "DC", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 422.858463500159, - "2033-10-01": 413.56487089576, - "2032-10-01": 404.487408351929, - "2031-10-01": 395.626075868664, - "2030-10-01": 386.980873445968, - "2029-10-01": 378.551801083838, - "2028-10-01": 370.338858782276, - "2027-10-01": 362.558176601849, - "2026-10-01": 354.885559451705, - "2025-10-01": 347.104877271278, - "2024-10-01": 339, - "2023-10-01": 323, - "2021-10-01": 292, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.DE": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.DE", - "description": null, - "label": "DE", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 447.80586547657, - "2033-10-01": 437.963978323239, - "2032-10-01": 428.350972266497, - "2031-10-01": 418.966847306344, - "2030-10-01": 409.81160344278, - "2029-10-01": 400.885240675805, - "2028-10-01": 392.187759005419, - "2027-10-01": 383.948039528212, - "2026-10-01": 375.822760599299, - "2025-10-01": 367.583041122091, - "2024-10-01": 359, - "2023-10-01": 367, - "2021-10-01": 294, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.FL": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.FL", - "description": null, - "label": "FL", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 422.858463500159, - "2033-10-01": 413.56487089576, - "2032-10-01": 404.487408351929, - "2031-10-01": 395.626075868664, - "2030-10-01": 386.980873445968, - "2029-10-01": 378.551801083838, - "2028-10-01": 370.338858782276, - "2027-10-01": 362.558176601849, - "2026-10-01": 354.885559451705, - "2025-10-01": 347.104877271278, - "2024-10-01": 339, - "2023-10-01": 340, - "2021-10-01": 298, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.GA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.GA", - "description": null, - "label": "GA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 447.589877715833, - "2033-10-01": 437.752737546254, - "2032-10-01": 428.144368078293, - "2031-10-01": 418.764769311951, - "2030-10-01": 409.613941247226, - "2029-10-01": 400.69188388412, - "2028-10-01": 391.998597222632, - "2027-10-01": 383.76285196438, - "2026-10-01": 375.641492056937, - "2025-10-01": 367.405746798685, - "2024-10-01": 358.826845488006, - "2023-10-01": 349, - "2021-10-01": 302, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.GU": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.GU", - "description": null, - "label": "GU", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.HI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.HI", - "description": null, - "label": "HI", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.IA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.IA", - "description": null, - "label": "IA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 354.25310806503, - "2033-10-01": 346.467325470194, - "2032-10-01": 338.862607586867, - "2031-10-01": 331.438954415046, - "2030-10-01": 324.196365954734, - "2029-10-01": 317.134842205929, - "2028-10-01": 310.254383168632, - "2027-10-01": 303.736053554351, - "2026-10-01": 297.308256295824, - "2025-10-01": 290.789926681543, - "2024-10-01": 284, - "2023-10-01": 277, - "2021-10-01": 270, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.ID": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.ID", - "description": null, - "label": "ID", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 380.447880140261, - "2033-10-01": 372.086388269047, - "2032-10-01": 363.919349697163, - "2031-10-01": 355.94676442461, - "2030-10-01": 348.168632451387, - "2029-10-01": 340.584953777494, - "2028-10-01": 333.195728402933, - "2027-10-01": 326.195409627032, - "2026-10-01": 319.292317500797, - "2025-10-01": 312.291998724896, - "2024-10-01": 305, - "2023-10-01": 301, - "2021-10-01": 299, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.IL": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.IL", - "description": null, - "label": "IL", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 555.079693975136, - "2033-10-01": 542.880140261396, - "2032-10-01": 530.964297099139, - "2031-10-01": 519.332164488365, - "2030-10-01": 507.983742429072, - "2029-10-01": 496.919030921262, - "2028-10-01": 486.138029964935, - "2027-10-01": 475.924450111572, - "2026-10-01": 465.85272553395, - "2025-10-01": 455.639145680587, - "2024-10-01": 445, - "2023-10-01": 386, - "2021-10-01": 341, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.IN": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.IN", - "description": null, - "label": "IN", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 341.779407076825, - "2033-10-01": 334.267771756455, - "2032-10-01": 326.930825629582, - "2031-10-01": 319.768568696207, - "2030-10-01": 312.781000956328, - "2029-10-01": 305.968122409946, - "2028-10-01": 299.329933057061, - "2027-10-01": 293.04112209117, - "2026-10-01": 286.839655722027, - "2025-10-01": 280.550844756136, - "2024-10-01": 274, - "2023-05-01": 276, - "2021-10-01": 259, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.KS": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.KS", - "description": null, - "label": "KS", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 419.116353203698, - "2033-10-01": 409.905004781639, - "2032-10-01": 400.907873764743, - "2031-10-01": 392.124960153012, - "2030-10-01": 383.556263946446, - "2029-10-01": 375.201785145043, - "2028-10-01": 367.061523748805, - "2027-10-01": 359.349697162895, - "2026-10-01": 351.744979279566, - "2025-10-01": 344.033152693656, - "2024-10-01": 336, - "2023-10-01": 327, - "2021-10-01": 286, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.KY": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.KY", - "description": null, - "label": "KY", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 401.65317182021, - "2033-10-01": 392.825629582404, - "2032-10-01": 384.203379024546, - "2031-10-01": 375.786420146637, - "2030-10-01": 367.574752948677, - "2029-10-01": 359.568377430666, - "2028-10-01": 351.767293592604, - "2027-10-01": 344.376793114441, - "2026-10-01": 337.088938476251, - "2025-10-01": 329.698437998087, - "2024-10-01": 322, - "2023-10-01": 395, - "2021-10-01": 281, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.LA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.LA", - "description": null, - "label": "LA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 313.089894803953, - "2033-10-01": 306.208798214855, - "2032-10-01": 299.487727127829, - "2031-10-01": 292.926681542875, - "2030-10-01": 286.525661459994, - "2029-10-01": 280.284666879184, - "2028-10-01": 274.203697800446, - "2027-10-01": 268.442779725853, - "2026-10-01": 262.761874402295, - "2025-10-01": 257.000956327702, - "2024-10-01": 251, - "2023-10-01": 230, - "2021-10-01": 203, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.MA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.MA", - "description": null, - "label": "MA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 676.074593560727, - "2033-10-01": 661.215811284667, - "2032-10-01": 646.702582084795, - "2031-10-01": 632.534905961109, - "2030-10-01": 618.712782913612, - "2029-10-01": 605.236212942302, - "2028-10-01": 592.105196047179, - "2027-10-01": 579.665285304431, - "2026-10-01": 567.398151099777, - "2025-10-01": 554.958240357029, - "2024-10-01": 542, - "2023-10-01": 520, - "2021-10-01": 421, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.MD": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.MD", - "description": null, - "label": "MD", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 445.032752749645, - "2033-10-01": 435.251813128774, - "2032-10-01": 425.698337220016, - "2031-10-01": 416.372325023371, - "2030-10-01": 407.273776538839, - "2029-10-01": 398.402691766421, - "2028-10-01": 389.759070706116, - "2027-10-01": 381.570377070038, - "2026-10-01": 373.495415290016, - "2025-10-01": 365.306721653938, - "2024-10-01": 356.77683244969, - "2023-10-01": 347.006128695863, - "2023-01-01": 337, - "2021-10-01": 238, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.ME": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.ME", - "description": null, - "label": "ME", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 440.321644883647, - "2033-10-01": 430.644246094995, - "2032-10-01": 421.191903092126, - "2031-10-01": 411.96461587504, - "2030-10-01": 402.962384443736, - "2029-10-01": 394.185208798215, - "2028-10-01": 385.633088938476, - "2027-10-01": 377.531080650303, - "2026-10-01": 369.541600255021, - "2025-10-01": 361.439591966847, - "2024-10-01": 353, - "2023-10-01": 341, - "2021-10-01": 285, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.MI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.MI", - "description": null, - "label": "MI", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.MN": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.MN", - "description": null, - "label": "MN", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.MO": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.MO", - "description": null, - "label": "MO", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 452.795345871852, - "2033-10-01": 442.843799808735, - "2032-10-01": 433.12368504941, - "2031-10-01": 423.63500159388, - "2030-10-01": 414.377749442142, - "2029-10-01": 405.351928594198, - "2028-10-01": 396.557539050048, - "2027-10-01": 388.226012113484, - "2026-10-01": 380.010200828817, - "2025-10-01": 371.678673892254, - "2024-10-01": 363, - "2023-10-01": 351, - "2021-10-01": 327, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.MS": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.MS", - "description": null, - "label": "MS", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 276.916161938158, - "2033-10-01": 270.830092445011, - "2032-10-01": 264.885559451706, - "2031-10-01": 259.08256295824, - "2030-10-01": 253.421102964616, - "2029-10-01": 247.901179470832, - "2028-10-01": 242.522792476889, - "2027-10-01": 237.427478482627, - "2026-10-01": 232.402932738285, - "2025-10-01": 227.307618744023, - "2024-10-01": 222, - "2023-10-01": 191, - "2021-10-01": 206, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.MT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.MT", - "description": null, - "label": "MT", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 324.316225693338, - "2033-10-01": 317.18839655722, - "2032-10-01": 310.226330889385, - "2031-10-01": 303.430028689831, - "2030-10-01": 296.799489958559, - "2029-10-01": 290.334714695569, - "2028-10-01": 284.035702900861, - "2027-10-01": 278.068218042716, - "2026-10-01": 272.183614918712, - "2025-10-01": 266.216130060567, - "2024-10-01": 260, - "2023-10-01": 244, - "2021-10-01": 214, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.NC": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.NC", - "description": null, - "label": "NC", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 476.495377749442, - "2033-10-01": 466.022951864839, - "2032-10-01": 455.79407076825, - "2031-10-01": 445.808734459675, - "2030-10-01": 436.066942939114, - "2029-10-01": 426.568696206567, - "2028-10-01": 417.313994262034, - "2027-10-01": 408.546381893529, - "2026-10-01": 399.900541919031, - "2025-10-01": 391.132929550526, - "2024-10-01": 382, - "2023-10-01": 371, - "2021-10-01": 331, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.ND": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.ND", - "description": null, - "label": "ND", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 348.016257570928, - "2033-10-01": 340.367548613325, - "2032-10-01": 332.896716608225, - "2031-10-01": 325.603761555626, - "2030-10-01": 318.488683455531, - "2029-10-01": 311.551482307938, - "2028-10-01": 304.792158112847, - "2027-10-01": 298.388587822761, - "2026-10-01": 292.073956008926, - "2025-10-01": 285.67038571884, - "2024-10-01": 279, - "2023-10-01": 270, - "2021-10-01": 242, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.NE": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.NE", - "description": null, - "label": "NE", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 390.426840930826, - "2033-10-01": 381.846031240038, - "2032-10-01": 373.46477526299, - "2031-10-01": 365.283072999681, - "2030-10-01": 357.300924450112, - "2029-10-01": 349.518329614281, - "2028-10-01": 341.93528849219, - "2027-10-01": 334.751354797577, - "2026-10-01": 327.667197959834, - "2025-10-01": 320.483264265222, - "2024-10-01": 313, - "2023-10-01": 303, - "2021-10-01": 267, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.NH": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.NH", - "description": null, - "label": "NH", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 452.795345871852, - "2033-10-01": 442.843799808735, - "2032-10-01": 433.12368504941, - "2031-10-01": 423.63500159388, - "2030-10-01": 414.377749442142, - "2029-10-01": 405.351928594198, - "2028-10-01": 396.557539050048, - "2027-10-01": 388.226012113484, - "2026-10-01": 380.010200828817, - "2025-10-01": 371.678673892254, - "2024-10-01": 363, - "2023-10-01": 350, - "2021-10-01": 277, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.NJ": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.NJ", - "description": null, - "label": "NJ", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 613.7060886197, - "2033-10-01": 600.218042715971, - "2032-10-01": 587.043672298374, - "2031-10-01": 574.182977366911, - "2030-10-01": 561.635957921581, - "2029-10-01": 549.402613962385, - "2028-10-01": 537.482945489321, - "2027-10-01": 526.190627988524, - "2026-10-01": 515.055148230794, - "2025-10-01": 503.762830729997, - "2024-10-01": 492, - "2023-10-01": 464, - "2021-10-01": 359, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.NM": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.NM", - "description": null, - "label": "NM", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 350.510997768569, - "2033-10-01": 342.807459356073, - "2032-10-01": 335.283072999681, - "2031-10-01": 327.937838699394, - "2030-10-01": 320.771756455212, - "2029-10-01": 313.784826267134, - "2028-10-01": 306.977048135161, - "2027-10-01": 300.527574115397, - "2026-10-01": 294.167676123685, - "2025-10-01": 287.718202103921, - "2024-10-01": 281, - "2023-10-01": 215, - "2021-10-01": 135, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.NV": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.NV", - "description": null, - "label": "NV", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 439.074274784826, - "2033-10-01": 429.424290723621, - "2032-10-01": 419.998724896398, - "2031-10-01": 410.797577303156, - "2030-10-01": 401.820847943895, - "2029-10-01": 393.068536818617, - "2028-10-01": 384.540643927319, - "2027-10-01": 376.461587503985, - "2026-10-01": 368.494740197641, - "2025-10-01": 360.415683774307, - "2024-10-01": 352, - "2023-10-01": 350, - "2021-10-01": 249, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.NY": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.NY", - "description": null, - "label": "NY", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 431.590054191903, - "2033-10-01": 422.104558495378, - "2032-10-01": 412.839655722028, - "2031-10-01": 403.795345871852, - "2030-10-01": 394.971628944852, - "2029-10-01": 386.368504941026, - "2028-10-01": 377.985973860376, - "2027-10-01": 370.044628626076, - "2026-10-01": 362.213579853363, - "2025-10-01": 354.272234619063, - "2024-10-01": 346, - "2023-10-01": 332, - "2021-10-01": 285, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.OH": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.OH", - "description": null, - "label": "OH", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 581.274466050367, - "2033-10-01": 568.499203060249, - "2032-10-01": 556.021039209436, - "2031-10-01": 543.839974497928, - "2030-10-01": 531.956008925725, - "2029-10-01": 520.369142492828, - "2028-10-01": 509.079375199235, - "2027-10-01": 498.383806184252, - "2026-10-01": 487.836786738923, - "2025-10-01": 477.14121772394, - "2024-10-01": 466, - "2023-10-01": 453, - "2021-10-01": 377, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.OK": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.OK", - "description": null, - "label": "OK", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 430.342684093083, - "2033-10-01": 420.884603124004, - "2032-10-01": 411.646477526299, - "2031-10-01": 402.628307299968, - "2030-10-01": 393.830092445011, - "2029-10-01": 385.251832961428, - "2028-10-01": 376.893528849219, - "2027-10-01": 368.975135479758, - "2026-10-01": 361.166719795983, - "2025-10-01": 353.248326426522, - "2024-10-01": 345, - "2023-10-01": 334, - "2021-10-01": 292, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.OR": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.OR", - "description": null, - "label": "OR", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 490.216448836468, - "2033-10-01": 479.442460949952, - "2032-10-01": 468.919030921262, - "2031-10-01": 458.646158750399, - "2030-10-01": 448.623844437361, - "2029-10-01": 438.852087982149, - "2028-10-01": 429.330889384763, - "2027-10-01": 420.310806503028, - "2026-10-01": 411.416002550207, - "2025-10-01": 402.395919668473, - "2024-10-01": 393, - "2023-10-01": 370, - "2021-10-01": 353, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.PA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.PA", - "description": null, - "label": "PA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 501.442779725853, - "2033-10-01": 490.422059292318, - "2032-10-01": 479.657634682818, - "2031-10-01": 469.149505897354, - "2030-10-01": 458.897672935926, - "2029-10-01": 448.902135798534, - "2028-10-01": 439.162894485177, - "2027-10-01": 429.936244819892, - "2026-10-01": 420.837743066624, - "2025-10-01": 411.611093401339, - "2024-10-01": 402, - "2023-10-01": 401, - "2021-10-01": 317, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.RI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.RI", - "description": null, - "label": "RI", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.SC": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.SC", - "description": null, - "label": "SC", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 321.821485495697, - "2033-10-01": 314.748485814472, - "2032-10-01": 307.839974497928, - "2031-10-01": 301.095951546063, - "2030-10-01": 294.516416958878, - "2029-10-01": 288.101370736372, - "2028-10-01": 281.850812878546, - "2027-10-01": 275.92923175008, - "2026-10-01": 270.089894803953, - "2025-10-01": 264.168313675486, - "2024-10-01": 258, - "2023-10-01": 247, - "2021-10-01": 216, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.SD": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.SD", - "description": null, - "label": "SD", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 321.821485495697, - "2033-10-01": 314.748485814472, - "2032-10-01": 307.839974497928, - "2031-10-01": 301.095951546063, - "2030-10-01": 294.516416958878, - "2029-10-01": 288.101370736372, - "2028-10-01": 281.850812878546, - "2027-10-01": 275.92923175008, - "2026-10-01": 270.089894803953, - "2025-10-01": 264.168313675486, - "2024-10-01": 258, - "2023-10-01": 250, - "2021-10-01": 220, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.TN": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.TN", - "description": null, - "label": "TN", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 197.084475613644, - "2033-10-01": 192.75294867708, - "2032-10-01": 188.522154925088, - "2031-10-01": 184.392094357667, - "2030-10-01": 180.362766974817, - "2029-10-01": 176.434172776538, - "2028-10-01": 172.606311762831, - "2027-10-01": 168.979917118266, - "2026-10-01": 165.403889065987, - "2025-10-01": 161.777494421422, - "2024-10-01": 158, - "2023-10-01": 164, - "2021-10-01": 136, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.TX": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.TX", - "description": null, - "label": "TX", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 486.474338540006, - "2033-10-01": 475.78259483583, - "2032-10-01": 465.339496334077, - "2031-10-01": 455.145043034747, - "2030-10-01": 445.199234937839, - "2029-10-01": 435.502072043354, - "2028-10-01": 426.053554351291, - "2027-10-01": 417.102327064074, - "2026-10-01": 408.275422378068, - "2025-10-01": 399.324195090851, - "2024-10-01": 390, - "2023-10-01": 391, - "2021-10-01": 345, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.UT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.UT", - "description": null, - "label": "UT", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 523.895441504622, - "2033-10-01": 512.381255977048, - "2032-10-01": 501.134842205929, - "2031-10-01": 490.156200191266, - "2030-10-01": 479.445329933057, - "2029-10-01": 469.002231431304, - "2028-10-01": 458.826904686006, - "2027-10-01": 449.187121453618, - "2026-10-01": 439.681224099458, - "2025-10-01": 430.04144086707, - "2024-10-01": 420, - "2023-10-01": 382, - "2021-10-01": 274, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.VA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.VA", - "description": null, - "label": "VA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.VI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.VI", - "description": null, - "label": "VI", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.VT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.VT", - "description": null, - "label": "VT", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 377.95313994262, - "2033-10-01": 369.646477526299, - "2032-10-01": 361.532993305706, - "2031-10-01": 353.612687280842, - "2030-10-01": 345.885559451706, - "2029-10-01": 338.351609818298, - "2028-10-01": 331.010838380618, - "2027-10-01": 324.056423334396, - "2026-10-01": 317.198597386038, - "2025-10-01": 310.244182339815, - "2024-10-01": 303, - "2023-10-01": 291, - "2021-10-01": 250, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.WA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.WA", - "description": null, - "label": "WA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 493.95855913293, - "2033-10-01": 483.102327064074, - "2032-10-01": 472.498565508448, - "2031-10-01": 462.14727446605, - "2030-10-01": 452.048453936882, - "2029-10-01": 442.202103920944, - "2028-10-01": 432.608224418234, - "2027-10-01": 423.519285941983, - "2026-10-01": 414.556582722346, - "2025-10-01": 405.467644246095, - "2024-10-01": 396, - "2023-10-01": 383, - "2021-10-01": 361, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.WI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.WI", - "description": null, - "label": "WI", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 467.763787057698, - "2033-10-01": 457.483264265222, - "2032-10-01": 447.441823398151, - "2031-10-01": 437.639464456487, - "2030-10-01": 428.07618744023, - "2029-10-01": 418.751992349378, - "2028-10-01": 409.666879183934, - "2027-10-01": 401.059929869302, - "2026-10-01": 392.572521517373, - "2025-10-01": 383.965572202741, - "2024-10-01": 375, - "2023-10-01": 347, - "2021-10-01": 317, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.WV": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.WV", - "description": null, - "label": "WV", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 400.40580172139, - "2033-10-01": 391.60567421103, - "2032-10-01": 383.010200828817, - "2031-10-01": 374.619381574753, - "2030-10-01": 366.433216448837, - "2029-10-01": 358.451705451068, - "2028-10-01": 350.674848581447, - "2027-10-01": 343.307299968122, - "2026-10-01": 336.042078418872, - "2025-10-01": 328.674529805547, - "2024-10-01": 321, - "2023-10-01": 305, - "2021-10-01": 280, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.WY": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.WY", - "description": null, - "label": "WY", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 411.632132610775, - "2033-10-01": 402.585272553395, - "2032-10-01": 393.748804590373, - "2031-10-01": 385.122728721709, - "2030-10-01": 376.707044947402, - "2029-10-01": 368.501753267453, - "2028-10-01": 360.506853681862, - "2027-10-01": 352.932738284986, - "2026-10-01": 345.463818935289, - "2025-10-01": 337.889703538413, - "2024-10-01": 330, - "2023-10-01": 317, - "2021-10-01": 291, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.PW": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.PW", - "description": null, - "label": "PW", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.PR": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.PR", - "description": null, - "label": "PR", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.AP": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.AP", - "description": null, - "label": "AP", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.AE": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.AE", - "description": null, - "label": "AE", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.MP": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.MP", - "description": null, - "label": "MP", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.main.AA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.main.AA", - "description": null, - "label": "AA", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.by_household_size": { - "type": "parameterNode", - "parameter": "gov.usda.snap.income.deductions.utility.limited.by_household_size", - "description": null, - "label": "by household size", - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.by_household_size.amount": { - "type": "parameterNode", - "parameter": "gov.usda.snap.income.deductions.utility.limited.by_household_size.amount", - "description": "States that define Supplemental Nutrition Assistance Program limited utility allowances by household size set these allowance values.", - "label": "SNAP LUAs by household size", - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.by_household_size.amount.NC": { - "type": "parameterNode", - "parameter": "gov.usda.snap.income.deductions.utility.limited.by_household_size.amount.NC", - "description": null, - "label": "NC", - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.by_household_size.amount.NC.1": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.by_household_size.amount.NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2024-10-01": 382, - "2023-10-01": 371, - "2015-01-01": 371 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.by_household_size.amount.NC.2": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.by_household_size.amount.NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2024-10-01": 420, - "2023-10-01": 408, - "2015-01-01": 408 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.by_household_size.amount.NC.3": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.by_household_size.amount.NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2024-10-01": 462, - "2023-10-01": 448, - "2015-01-01": 448 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.by_household_size.amount.NC.4": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.by_household_size.amount.NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2024-10-01": 504, - "2023-10-01": 488, - "2015-01-01": 488 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.by_household_size.amount.NC.5": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.by_household_size.amount.NC.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2024-10-01": 549, - "2023-10-01": 532, - "2015-01-01": 532 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.by_household_size.amount.NC.6": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.by_household_size.amount.NC.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2024-10-01": 549, - "2023-10-01": 532, - "2015-01-01": 532 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.by_household_size.amount.NC.7": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.by_household_size.amount.NC.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2024-10-01": 549, - "2023-10-01": 532, - "2015-01-01": 532 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.by_household_size.amount.NC.8": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.by_household_size.amount.NC.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2024-10-01": 549, - "2023-10-01": 532, - "2015-01-01": 532 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.by_household_size.amount.NC.9": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.by_household_size.amount.NC.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2024-10-01": 549, - "2023-10-01": 532, - "2015-01-01": 532 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.by_household_size.amount.NC.10": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.by_household_size.amount.NC.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2024-10-01": 549, - "2023-10-01": 532, - "2015-01-01": 532 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.by_household_size.participating_states": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.by_household_size.participating_states", - "description": "These states vary their Supplemental Nutrition Assistance Program limited utility allowances by household size.", - "label": "States with SNAP LUAs varying with household size", - "unit": "list", - "period": "year", - "values": { - "2024-01-01": ["NC"], - "2015-01-01": ["NC"] - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active": { - "type": "parameterNode", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active", - "description": "Whether households without heating/cooling expenses and at least two other utilities are given the Limited Utility Allowance.", - "label": "SNAP Limited Utility Allowance active", - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.AK": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.AK", - "description": null, - "label": "AK", - "unit": null, - "period": null, - "values": { - "2021-10-01": false, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.AL": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.AL", - "description": null, - "label": "AL", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.AR": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.AR", - "description": null, - "label": "AR", - "unit": null, - "period": null, - "values": { - "2021-10-01": false, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.AZ": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.AZ", - "description": null, - "label": "AZ", - "unit": null, - "period": null, - "values": { - "2021-10-01": false, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.CA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.CA", - "description": null, - "label": "CA", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.CO": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.CO", - "description": null, - "label": "CO", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.CT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.CT", - "description": null, - "label": "CT", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.DC": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.DC", - "description": null, - "label": "DC", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.DE": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.DE", - "description": null, - "label": "DE", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.FL": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.FL", - "description": null, - "label": "FL", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.GA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.GA", - "description": null, - "label": "GA", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.GU": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.GU", - "description": null, - "label": "GU", - "unit": null, - "period": null, - "values": { - "2021-10-01": false, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.HI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.HI", - "description": null, - "label": "HI", - "unit": null, - "period": null, - "values": { - "2021-10-01": false, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.IA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.IA", - "description": null, - "label": "IA", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.ID": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.ID", - "description": null, - "label": "ID", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.IL": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.IL", - "description": null, - "label": "IL", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.IN": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.IN", - "description": null, - "label": "IN", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.KS": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.KS", - "description": null, - "label": "KS", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.KY": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.KY", - "description": null, - "label": "KY", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.LA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.LA", - "description": null, - "label": "LA", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.MA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.MA", - "description": null, - "label": "MA", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.MD": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.MD", - "description": null, - "label": "MD", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.ME": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.ME", - "description": null, - "label": "ME", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.MI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.MI", - "description": null, - "label": "MI", - "unit": null, - "period": null, - "values": { - "2021-10-01": false, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.MN": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.MN", - "description": null, - "label": "MN", - "unit": null, - "period": null, - "values": { - "2021-10-01": false, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.MO": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.MO", - "description": null, - "label": "MO", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.MS": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.MS", - "description": null, - "label": "MS", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.MT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.MT", - "description": null, - "label": "MT", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.NC": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.NC", - "description": null, - "label": "NC", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.ND": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.ND", - "description": null, - "label": "ND", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.NE": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.NE", - "description": null, - "label": "NE", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.NH": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.NH", - "description": null, - "label": "NH", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.NJ": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.NJ", - "description": null, - "label": "NJ", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.NM": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.NM", - "description": null, - "label": "NM", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.NV": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.NV", - "description": null, - "label": "NV", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.NY": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.NY", - "description": null, - "label": "NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.OH": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.OH", - "description": null, - "label": "OH", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.OK": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.OK", - "description": null, - "label": "OK", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.OR": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.OR", - "description": null, - "label": "OR", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.PA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.PA", - "description": null, - "label": "PA", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.RI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.RI", - "description": null, - "label": "RI", - "unit": null, - "period": null, - "values": { - "2021-10-01": false, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.SC": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.SC", - "description": null, - "label": "SC", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.SD": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.SD", - "description": null, - "label": "SD", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.TN": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.TN", - "description": null, - "label": "TN", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.TX": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.TX", - "description": null, - "label": "TX", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.UT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.UT", - "description": null, - "label": "UT", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.VA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.VA", - "description": null, - "label": "VA", - "unit": null, - "period": null, - "values": { - "2021-10-01": false, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.VI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.VI", - "description": null, - "label": "VI", - "unit": null, - "period": null, - "values": { - "2021-10-01": false, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.VT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.VT", - "description": null, - "label": "VT", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.WA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.WA", - "description": null, - "label": "WA", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.WI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.WI", - "description": null, - "label": "WI", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.WV": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.WV", - "description": null, - "label": "WV", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.WY": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.WY", - "description": null, - "label": "WY", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.PW": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.PW", - "description": null, - "label": "PW", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.PR": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.PR", - "description": null, - "label": "PR", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.AP": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.AP", - "description": null, - "label": "AP", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.AE": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.AE", - "description": null, - "label": "AE", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.MP": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.MP", - "description": null, - "label": "MP", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.limited.active.AA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.limited.active.AA", - "description": null, - "label": "AA", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard": { - "type": "parameterNode", - "parameter": "gov.usda.snap.income.deductions.utility.standard", - "description": null, - "label": "standard", - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main": { - "type": "parameterNode", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main", - "description": "A household is eligible for the Standard Utility Allowance if it has separate heating and cooling costs.", - "label": "SNAP standard utility allowance", - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.AK": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.AK", - "description": null, - "label": "AK", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 609, - "2023-10-01": 638, - "2021-10-01": 349, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.AL": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.AL", - "description": null, - "label": "AL", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 616, - "2023-10-01": 601, - "2021-10-01": 431, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.AR": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.AR", - "description": null, - "label": "AR", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 333, - "2023-10-01": 329, - "2021-10-01": 283, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.AZ": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.AZ", - "description": null, - "label": "AZ", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 314, - "2023-10-01": 318, - "2021-10-01": 294, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.CA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.CA", - "description": null, - "label": "CA", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 645, - "2023-10-01": 596, - "2021-10-01": 487, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.CO": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.CO", - "description": null, - "label": "CO", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 578, - "2023-10-01": 560, - "2022-10-01": 531, - "2021-10-01": 493, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.CT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.CT", - "description": null, - "label": "CT", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 950, - "2023-10-01": 912, - "2021-10-01": 783, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.DC": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.DC", - "description": null, - "label": "DC", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 374, - "2023-10-01": 360, - "2021-10-01": 322, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.DE": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.DE", - "description": null, - "label": "DE", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 529, - "2023-10-01": 534, - "2021-10-01": 425, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.FL": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.FL", - "description": null, - "label": "FL", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 419, - "2023-10-01": 426, - "2021-10-01": 366, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.GA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.GA", - "description": null, - "label": "GA", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 394, - "2023-10-01": 412, - "2021-10-01": 339, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.GU": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.GU", - "description": null, - "label": "GU", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.HI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.HI", - "description": null, - "label": "HI", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.IA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.IA", - "description": null, - "label": "IA", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 539, - "2023-10-01": 530, - "2021-10-01": 494, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.ID": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.ID", - "description": null, - "label": "ID", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 379, - "2023-10-01": 376, - "2021-10-01": 361, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.IL": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.IL", - "description": null, - "label": "IL", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 532, - "2023-10-01": 577, - "2021-10-01": 529, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.IN": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.IN", - "description": null, - "label": "IN", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 502, - "2023-05-01": 473, - "2021-10-01": 417, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.KS": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.KS", - "description": null, - "label": "KS", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 456, - "2023-10-01": 462, - "2021-10-01": 392, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.KY": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.KY", - "description": null, - "label": "KY", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 378, - "2023-10-01": 452, - "2021-10-01": 325, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.LA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.LA", - "description": null, - "label": "LA", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 453, - "2023-10-01": 414, - "2021-10-01": 370, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.MA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.MA", - "description": null, - "label": "MA", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 890, - "2023-10-01": 852, - "2021-10-01": 688, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.MD": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.MD", - "description": null, - "label": "MD", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-01-01": 551, - "2023-01-01": 551, - "2021-10-01": 388, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.ME": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.ME", - "description": null, - "label": "ME", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 1047, - "2023-10-01": 1011, - "2021-10-01": 844, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.MI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.MI", - "description": null, - "label": "MI", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 664, - "2023-10-01": 686, - "2021-10-01": 569, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.MN": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.MN", - "description": null, - "label": "MN", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 649, - "2023-10-01": 651, - "2021-10-01": 488, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.MO": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.MO", - "description": null, - "label": "MO", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 495, - "2023-10-01": 475, - "2021-10-01": 415, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.MS": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.MS", - "description": null, - "label": "MS", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 300, - "2023-10-01": 287, - "2021-10-01": 277, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.MT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.MT", - "description": null, - "label": "MT", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 778, - "2023-10-01": 723, - "2021-10-01": 600, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.NC": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.NC", - "description": null, - "label": "NC", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 620, - "2023-10-01": 585, - "2021-10-01": 550, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.ND": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.ND", - "description": null, - "label": "ND", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 765, - "2023-10-01": 735, - "2021-10-01": 645, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.NE": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.NE", - "description": null, - "label": "NE", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 599, - "2023-10-01": 580, - "2021-10-01": 511, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.NH": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.NH", - "description": null, - "label": "NH", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 991, - "2023-10-01": 956, - "2021-10-01": 757, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.NJ": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.NJ", - "description": null, - "label": "NJ", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 878, - "2023-10-01": 850, - "2021-10-01": 583, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.NM": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.NM", - "description": null, - "label": "NM", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 408, - "2023-10-01": 417, - "2021-10-01": 385, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.NV": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.NV", - "description": null, - "label": "NV", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 434, - "2023-10-01": 412, - "2021-10-01": 284, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.NY": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.NY", - "description": null, - "label": "NY", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 962, - "2023-10-01": 819, - "2021-10-01": 703, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.OH": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.OH", - "description": null, - "label": "OH", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 746, - "2023-10-01": 724, - "2021-10-01": 580, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.OK": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.OK", - "description": null, - "label": "OK", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 401, - "2023-10-01": 388, - "2021-10-01": 340, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.OR": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.OR", - "description": null, - "label": "OR", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 502, - "2023-10-01": 469, - "2021-10-01": 450, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.PA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.PA", - "description": null, - "label": "PA", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 758, - "2023-10-01": 750, - "2021-10-01": 612, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.RI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.RI", - "description": null, - "label": "RI", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 822, - "2023-10-01": 787, - "2021-10-01": 676, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.SC": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.SC", - "description": null, - "label": "SC", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 378, - "2023-10-01": 369, - "2021-10-01": 313, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.SD": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.SD", - "description": null, - "label": "SD", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 922, - "2023-10-01": 892, - "2021-10-01": 784, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.TN": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.TN", - "description": null, - "label": "TN", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 439, - "2023-10-01": 430, - "2021-10-01": 320, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.TX": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.TX", - "description": null, - "label": "TX", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 434, - "2023-10-01": 424, - "2021-10-01": 367, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.UT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.UT", - "description": null, - "label": "UT", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 500, - "2023-10-01": 503, - "2021-10-01": 376, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.VA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.VA", - "description": null, - "label": "VA", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 369, - "2023-10-01": 414, - "2021-10-01": 322, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.VI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.VI", - "description": null, - "label": "VI", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.VT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.VT", - "description": null, - "label": "VT", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 1067, - "2023-10-01": 1020, - "2021-10-01": 875, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.WA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.WA", - "description": null, - "label": "WA", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 502, - "2023-10-01": 483, - "2021-10-01": 458, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.WI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.WI", - "description": null, - "label": "WI", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 538, - "2023-10-01": 502, - "2021-10-01": 462, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.WV": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.WV", - "description": null, - "label": "WV", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 504, - "2023-10-01": 496, - "2021-10-01": 436, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.WY": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.WY", - "description": null, - "label": "WY", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 497, - "2023-10-01": 478, - "2021-10-01": 417, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.PW": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.PW", - "description": null, - "label": "PW", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.PR": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.PR", - "description": null, - "label": "PR", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.AP": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.AP", - "description": null, - "label": "AP", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.AE": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.AE", - "description": null, - "label": "AE", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.MP": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.MP", - "description": null, - "label": "MP", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.main.AA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.main.AA", - "description": null, - "label": "AA", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.by_household_size": { - "type": "parameterNode", - "parameter": "gov.usda.snap.income.deductions.utility.standard.by_household_size", - "description": null, - "label": "by household size", - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.by_household_size.amount": { - "type": "parameterNode", - "parameter": "gov.usda.snap.income.deductions.utility.standard.by_household_size.amount", - "description": "States that define Supplemental Nutrition Assistance Program standard utility allowances by household size set these allowance values.", - "label": "SNAP SUAs by household size", - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.by_household_size.amount.NC": { - "type": "parameterNode", - "parameter": "gov.usda.snap.income.deductions.utility.standard.by_household_size.amount.NC", - "description": null, - "label": "NC", - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.by_household_size.amount.NC.1": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.by_household_size.amount.NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2024-10-01": 620, - "2023-10-01": 585, - "2015-01-01": 585 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.by_household_size.amount.NC.2": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.by_household_size.amount.NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2024-10-01": 681, - "2023-10-01": 643, - "2015-01-01": 643 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.by_household_size.amount.NC.3": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.by_household_size.amount.NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2024-10-01": 748, - "2023-10-01": 707, - "2015-01-01": 707 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.by_household_size.amount.NC.4": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.by_household_size.amount.NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2024-10-01": 815, - "2023-10-01": 770, - "2015-01-01": 770 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.by_household_size.amount.NC.5": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.by_household_size.amount.NC.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2024-10-01": 888, - "2023-10-01": 839, - "2015-01-01": 839 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.by_household_size.amount.NC.6": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.by_household_size.amount.NC.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2024-10-01": 888, - "2023-10-01": 839, - "2015-01-01": 839 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.by_household_size.amount.NC.7": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.by_household_size.amount.NC.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2024-10-01": 888, - "2023-10-01": 839, - "2015-01-01": 839 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.by_household_size.amount.NC.8": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.by_household_size.amount.NC.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2024-10-01": 888, - "2023-10-01": 839, - "2015-01-01": 839 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.by_household_size.amount.NC.9": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.by_household_size.amount.NC.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2024-10-01": 888, - "2023-10-01": 839, - "2015-01-01": 839 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.by_household_size.amount.NC.10": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.by_household_size.amount.NC.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2024-10-01": 888, - "2023-10-01": 839, - "2015-01-01": 839 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.standard.by_household_size.participating_states": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.standard.by_household_size.participating_states", - "description": "These states vary their Supplemental Nutrition Assistance Program standard utility allowances by household size.", - "label": "States with SNAP SUAs varying with household size", - "unit": "list", - "period": "year", - "values": { - "2024-01-01": ["NC"], - "2015-01-01": ["NC"] - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single": { - "type": "parameterNode", - "parameter": "gov.usda.snap.income.deductions.utility.single", - "description": null, - "label": "single", - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash": { - "type": "parameterNode", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash", - "description": "Utility allowance for households whose utility expenses are only trash-related (or, if the state does not have a defined limited utility allowance, households with trash expenses but not heating/cooling expenses).", - "label": "SNAP standard utility allowance for trash expenses", - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.AK": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.AK", - "description": null, - "label": "AK", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 46.1697295065042, - "2033-10-01": 45.155010176691, - "2032-10-01": 44.1638889708268, - "2031-10-01": 43.1963658889118, - "2030-10-01": 42.252440930946, - "2029-10-01": 41.3321140969293, - "2028-10-01": 40.4353853868617, - "2027-10-01": 39.5858529246925, - "2026-10-01": 38.7481195244978, - "2025-10-01": 37.8985870623285, - "2024-10-01": 37.0136574142356, - "2023-10-01": 36, - "2021-10-01": 12, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.AL": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.AL", - "description": null, - "label": "AL", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.AR": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.AR", - "description": null, - "label": "AR", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.AZ": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.AZ", - "description": null, - "label": "AZ", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.CA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.CA", - "description": null, - "label": "CA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.CO": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.CO", - "description": null, - "label": "CO", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 86.0685368186165, - "2033-10-01": 84.1769206248008, - "2032-10-01": 82.3292955052598, - "2031-10-01": 80.5256614599936, - "2030-10-01": 78.7660184890022, - "2029-10-01": 77.0503665922856, - "2028-10-01": 75.3787057698438, - "2027-10-01": 73.7950270959515, - "2026-10-01": 72.2333439591967, - "2025-10-01": 70.6496652853044, - "2024-10-01": 69, - "2023-10-01": 67, - "2022-10-01": 64, - "2021-10-01": 59, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.CT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.CT", - "description": null, - "label": "CT", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.DC": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.DC", - "description": null, - "label": "DC", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 109.768568696207, - "2033-10-01": 107.356072680905, - "2032-10-01": 104.999681224099, - "2031-10-01": 102.699394325789, - "2030-10-01": 100.455211985974, - "2029-10-01": 98.2671342046541, - "2028-10-01": 96.1351609818298, - "2027-10-01": 94.1153968759962, - "2026-10-01": 92.1236850494103, - "2025-10-01": 90.1039209435767, - "2024-10-01": 88, - "2023-10-01": 84, - "2021-10-01": 73, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.DE": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.DE", - "description": null, - "label": "DE", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 123.489639783232, - "2033-10-01": 120.775581766018, - "2032-10-01": 118.124641377112, - "2031-10-01": 115.536818616513, - "2030-10-01": 113.012113484221, - "2029-10-01": 110.550525980236, - "2028-10-01": 108.152056104558, - "2027-10-01": 105.879821485496, - "2026-10-01": 103.639145680587, - "2025-10-01": 101.366911061524, - "2024-10-01": 99, - "2023-10-01": 82, - "2021-10-01": 75, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.FL": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.FL", - "description": null, - "label": "FL", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.GA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.GA", - "description": null, - "label": "GA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.GU": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.GU", - "description": null, - "label": "GU", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 38.4747745887535, - "2033-10-01": 37.6291751472425, - "2032-10-01": 36.8032408090224, - "2031-10-01": 35.9969715740932, - "2030-10-01": 35.210367442455, - "2029-10-01": 34.4434284141077, - "2028-10-01": 33.6961544890515, - "2027-10-01": 32.9882107705771, - "2026-10-01": 32.2900996037482, - "2025-10-01": 31.5821558852738, - "2024-10-01": 30.844714511863, - "2023-10-01": 30, - "2021-10-01": 30, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.HI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.HI", - "description": null, - "label": "HI", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 120.994899585591, - "2033-10-01": 118.335671023271, - "2032-10-01": 115.738284985655, - "2031-10-01": 113.202741472745, - "2030-10-01": 110.729040484539, - "2029-10-01": 108.317182021039, - "2028-10-01": 105.967166082244, - "2027-10-01": 103.740835192859, - "2026-10-01": 101.545425565827, - "2025-10-01": 99.3190946764425, - "2024-10-01": 97, - "2023-10-01": 95, - "2021-10-01": 94, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.IA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.IA", - "description": null, - "label": "IA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.ID": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.ID", - "description": null, - "label": "ID", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 165.44153073164, - "2033-10-01": 161.805453133143, - "2032-10-01": 158.253935478796, - "2031-10-01": 154.786977768601, - "2030-10-01": 151.404580002557, - "2029-10-01": 148.106742180663, - "2028-10-01": 144.893464302921, - "2027-10-01": 141.849306313481, - "2026-10-01": 138.847428296117, - "2025-10-01": 135.803270306677, - "2024-10-01": 132.632272401011, - "2023-10-01": 129, - "2021-10-01": 135, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.IL": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.IL", - "description": null, - "label": "IL", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 94.8001275103602, - "2033-10-01": 92.7166082244182, - "2032-10-01": 90.6815428753586, - "2031-10-01": 88.6949314631814, - "2030-10-01": 86.7567739878865, - "2029-10-01": 84.867070449474, - "2028-10-01": 83.0258208479439, - "2027-10-01": 81.2814791201785, - "2026-10-01": 79.5613643608543, - "2025-10-01": 77.8170226330889, - "2024-10-01": 76, - "2023-10-01": 62, - "2021-10-01": 59, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.IN": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.IN", - "description": null, - "label": "IN", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 79.2343179969694, - "2033-10-01": 77.4929044146184, - "2032-10-01": 75.7919888225547, - "2031-10-01": 74.1315712207782, - "2030-10-01": 72.5116516092889, - "2029-10-01": 70.9322299880869, - "2028-10-01": 69.393306357172, - "2027-10-01": 67.9353787068317, - "2026-10-01": 66.4977000516349, - "2025-10-01": 65.0397724012946, - "2024-10-01": 63.5210977655234, - "2023-10-01": 61.7815065927353, - "2023-05-01": 60, - "2021-10-01": 57, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.KS": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.KS", - "description": null, - "label": "KS", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.KY": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.KY", - "description": null, - "label": "KY", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.LA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.LA", - "description": null, - "label": "LA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.MA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.MA", - "description": null, - "label": "MA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.MD": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.MD", - "description": null, - "label": "MD", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2024-01-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.ME": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.ME", - "description": null, - "label": "ME", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.MI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.MI", - "description": null, - "label": "MI", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 36.1737328657953, - "2033-10-01": 35.3787057698438, - "2032-10-01": 34.6021676761237, - "2031-10-01": 33.844118584635, - "2030-10-01": 33.1045584953778, - "2029-10-01": 32.3834874083519, - "2028-10-01": 31.6809053235575, - "2027-10-01": 31.015301243226, - "2026-10-01": 30.3589416640102, - "2025-10-01": 29.6933375836787, - "2024-10-01": 29, - "2023-10-01": 37, - "2021-10-01": 21, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.MN": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.MN", - "description": null, - "label": "MN", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.MO": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.MO", - "description": null, - "label": "MO", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 197.084475613644, - "2033-10-01": 192.75294867708, - "2032-10-01": 188.522154925088, - "2031-10-01": 184.392094357667, - "2030-10-01": 180.362766974817, - "2029-10-01": 176.434172776538, - "2028-10-01": 172.606311762831, - "2027-10-01": 168.979917118266, - "2026-10-01": 165.403889065987, - "2025-10-01": 161.777494421422, - "2024-10-01": 158, - "2023-10-01": 153, - "2021-10-01": 134, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.MS": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.MS", - "description": null, - "label": "MS", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.MT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.MT", - "description": null, - "label": "MT", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 140.95282116672, - "2033-10-01": 137.854956965253, - "2032-10-01": 134.82913611731, - "2031-10-01": 131.875358622888, - "2030-10-01": 128.993624481989, - "2029-10-01": 126.183933694613, - "2028-10-01": 123.446286260759, - "2027-10-01": 120.85272553395, - "2026-10-01": 118.295186483902, - "2025-10-01": 115.701625757093, - "2024-10-01": 113, - "2023-10-01": 105, - "2021-10-01": 180, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.NC": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.NC", - "description": null, - "label": "NC", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.ND": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.ND", - "description": null, - "label": "ND", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 153.426522154925, - "2033-10-01": 150.054510678993, - "2032-10-01": 146.760918074594, - "2031-10-01": 143.545744341728, - "2030-10-01": 140.408989480395, - "2029-10-01": 137.350653490596, - "2028-10-01": 134.37073637233, - "2027-10-01": 131.547656997131, - "2026-10-01": 128.763787057698, - "2025-10-01": 125.940707682499, - "2024-10-01": 123, - "2023-10-01": 118, - "2021-10-01": 208, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.NE": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.NE", - "description": null, - "label": "NE", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 77.3369461268728, - "2033-10-01": 75.6372330251833, - "2032-10-01": 73.977048135161, - "2031-10-01": 72.3563914568059, - "2030-10-01": 70.775262990118, - "2029-10-01": 69.2336627350972, - "2028-10-01": 67.7315906917437, - "2027-10-01": 66.3085750717246, - "2026-10-01": 64.9053235575391, - "2025-10-01": 63.4823079375199, - "2024-10-01": 62, - "2023-10-01": 60, - "2021-10-01": 54, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.NH": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.NH", - "description": null, - "label": "NH", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.NJ": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.NJ", - "description": null, - "label": "NJ", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.NM": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.NM", - "description": null, - "label": "NM", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.NV": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.NV", - "description": null, - "label": "NV", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 93.5527574115397, - "2033-10-01": 91.4966528530443, - "2032-10-01": 89.4883646796302, - "2031-10-01": 87.5278928912974, - "2030-10-01": 85.6152374880459, - "2029-10-01": 83.7503984698757, - "2028-10-01": 81.9333758367867, - "2027-10-01": 80.2119859738604, - "2026-10-01": 78.5145043034747, - "2025-10-01": 76.7931144405483, - "2024-10-01": 75, - "2023-10-01": 81, - "2021-10-01": 56, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.NY": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.NY", - "description": null, - "label": "NY", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.OH": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.OH", - "description": null, - "label": "OH", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 130.973860376156, - "2033-10-01": 128.095313994262, - "2032-10-01": 125.283710551482, - "2031-10-01": 122.539050047816, - "2030-10-01": 119.861332483264, - "2029-10-01": 117.250557857826, - "2028-10-01": 114.706726171501, - "2027-10-01": 112.296780363405, - "2026-10-01": 109.920306024865, - "2025-10-01": 107.510360216768, - "2024-10-01": 105, - "2023-10-01": 102, - "2021-10-01": 84, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.OK": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.OK", - "description": null, - "label": "OK", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.OR": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.OR", - "description": null, - "label": "OR", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 78.5843162256933, - "2033-10-01": 76.8571883965572, - "2032-10-01": 75.1702263308894, - "2031-10-01": 73.5234300286898, - "2030-10-01": 71.9167994899586, - "2029-10-01": 70.3503347146956, - "2028-10-01": 68.8240357029009, - "2027-10-01": 67.3780682180427, - "2026-10-01": 65.9521836149187, - "2025-10-01": 64.5062161300606, - "2024-10-01": 63, - "2023-10-01": 59, - "2021-10-01": 57, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.PA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.PA", - "description": null, - "label": "PA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 89.8106471150781, - "2033-10-01": 87.8367867389225, - "2032-10-01": 85.908830092445, - "2031-10-01": 84.0267771756455, - "2030-10-01": 82.1906279885241, - "2029-10-01": 80.4003825310807, - "2028-10-01": 78.6560408033153, - "2027-10-01": 77.003506534906, - "2026-10-01": 75.3739241313357, - "2025-10-01": 73.7213898629264, - "2024-10-01": 72, - "2023-10-01": 70, - "2021-10-01": 60, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.RI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.RI", - "description": null, - "label": "RI", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.SC": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.SC", - "description": null, - "label": "SC", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.SD": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.SD", - "description": null, - "label": "SD", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 132.221230474976, - "2033-10-01": 129.315269365636, - "2032-10-01": 126.476888747211, - "2031-10-01": 123.7060886197, - "2030-10-01": 121.002868983105, - "2029-10-01": 118.367229837424, - "2028-10-01": 115.799171182659, - "2027-10-01": 113.366273509723, - "2026-10-01": 110.967166082244, - "2025-10-01": 108.534268409308, - "2024-10-01": 106, - "2023-10-01": 103, - "2021-10-01": 91, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.TN": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.TN", - "description": null, - "label": "TN", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.TX": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.TX", - "description": null, - "label": "TX", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.UT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.UT", - "description": null, - "label": "UT", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.VA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.VA", - "description": null, - "label": "VA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.VI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.VI", - "description": null, - "label": "VI", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.VT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.VT", - "description": null, - "label": "VT", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.WA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.WA", - "description": null, - "label": "WA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.WI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.WI", - "description": null, - "label": "WI", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 33.6789926681543, - "2033-10-01": 32.938795027096, - "2032-10-01": 32.2158112846669, - "2031-10-01": 31.5100414408671, - "2030-10-01": 30.8214854956965, - "2029-10-01": 30.1501434491552, - "2028-10-01": 29.4960153012432, - "2027-10-01": 28.8763149505897, - "2026-10-01": 28.2652215492509, - "2025-10-01": 27.6455211985974, - "2024-10-01": 27, - "2023-10-01": 26, - "2021-10-01": 24, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.WV": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.WV", - "description": null, - "label": "WV", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 107.273828498566, - "2033-10-01": 104.916161938157, - "2032-10-01": 102.613324832643, - "2031-10-01": 100.365317182021, - "2030-10-01": 98.1721389862926, - "2029-10-01": 96.0337902454575, - "2028-10-01": 93.9502709595155, - "2027-10-01": 91.9764105833599, - "2026-10-01": 90.0299649346509, - "2025-10-01": 88.0561045584954, - "2024-10-01": 86, - "2023-10-01": 79, - "2021-10-01": 77, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.WY": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.WY", - "description": null, - "label": "WY", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.PW": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.PW", - "description": null, - "label": "PW", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.PR": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.PR", - "description": null, - "label": "PR", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.AP": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.AP", - "description": null, - "label": "AP", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.AE": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.AE", - "description": null, - "label": "AE", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.MP": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.MP", - "description": null, - "label": "MP", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.trash.AA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.trash.AA", - "description": null, - "label": "AA", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water": { - "type": "parameterNode", - "parameter": "gov.usda.snap.income.deductions.utility.single.water", - "description": "Utility allowance for households whose utility expenses are only water-related (or, if the state does not have a defined limited utility allowance, households with water expenses but not heating/cooling expenses).", - "label": "SNAP standard utility allowance for water expenses", - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.AK": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.AK", - "description": null, - "label": "AK", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 73.1020717186317, - "2033-10-01": 71.4954327797607, - "2032-10-01": 69.9261575371425, - "2031-10-01": 68.3942459907771, - "2030-10-01": 66.8996981406645, - "2029-10-01": 65.4425139868047, - "2028-10-01": 64.0226935291978, - "2027-10-01": 62.6776004640964, - "2026-10-01": 61.3511892471215, - "2025-10-01": 60.0060961820202, - "2024-10-01": 58.6049575725397, - "2023-10-01": 57, - "2021-10-01": 37, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.AL": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.AL", - "description": null, - "label": "AL", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.AR": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.AR", - "description": null, - "label": "AR", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.AZ": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.AZ", - "description": null, - "label": "AZ", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.CA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.CA", - "description": null, - "label": "CA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.CO": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.CO", - "description": null, - "label": "CO", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 86.0685368186165, - "2033-10-01": 84.1769206248008, - "2032-10-01": 82.3292955052598, - "2031-10-01": 80.5256614599936, - "2030-10-01": 78.7660184890022, - "2029-10-01": 77.0503665922856, - "2028-10-01": 75.3787057698438, - "2027-10-01": 73.7950270959515, - "2026-10-01": 72.2333439591967, - "2025-10-01": 70.6496652853044, - "2024-10-01": 69, - "2023-10-01": 67, - "2022-10-01": 64, - "2021-10-01": 59, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.CT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.CT", - "description": null, - "label": "CT", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.DC": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.DC", - "description": null, - "label": "DC", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 109.768568696207, - "2033-10-01": 107.356072680905, - "2032-10-01": 104.999681224099, - "2031-10-01": 102.699394325789, - "2030-10-01": 100.455211985974, - "2029-10-01": 98.2671342046541, - "2028-10-01": 96.1351609818298, - "2027-10-01": 94.1153968759962, - "2026-10-01": 92.1236850494103, - "2025-10-01": 90.1039209435767, - "2024-10-01": 88, - "2023-10-01": 84, - "2021-10-01": 73, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.DE": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.DE", - "description": null, - "label": "DE", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 123.489639783232, - "2033-10-01": 120.775581766018, - "2032-10-01": 118.124641377112, - "2031-10-01": 115.536818616513, - "2030-10-01": 113.012113484221, - "2029-10-01": 110.550525980236, - "2028-10-01": 108.152056104558, - "2027-10-01": 105.879821485496, - "2026-10-01": 103.639145680587, - "2025-10-01": 101.366911061524, - "2024-10-01": 99, - "2023-10-01": 82, - "2021-10-01": 75, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.FL": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.FL", - "description": null, - "label": "FL", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.GA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.GA", - "description": null, - "label": "GA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.GU": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.GU", - "description": null, - "label": "GU", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 48.7347144790878, - "2033-10-01": 47.6636218531738, - "2032-10-01": 46.617438358095, - "2031-10-01": 45.5961639938514, - "2030-10-01": 44.599798760443, - "2029-10-01": 43.6283426578698, - "2028-10-01": 42.6817956861319, - "2027-10-01": 41.7850669760643, - "2026-10-01": 40.9007928314144, - "2025-10-01": 40.0040641213468, - "2024-10-01": 39.0699717150264, - "2023-10-01": 38, - "2021-10-01": 38, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.HI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.HI", - "description": null, - "label": "HI", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 81.0790564233344, - "2033-10-01": 79.2970991393051, - "2032-10-01": 77.5565827223462, - "2031-10-01": 75.8575071724578, - "2030-10-01": 74.1998724896398, - "2029-10-01": 72.5836786738923, - "2028-10-01": 71.0089257252152, - "2027-10-01": 69.517054510679, - "2026-10-01": 68.045903729678, - "2025-10-01": 66.5540325151419, - "2024-10-01": 65, - "2023-10-01": 57, - "2021-10-01": 46, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.IA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.IA", - "description": null, - "label": "IA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.ID": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.ID", - "description": null, - "label": "ID", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 165.44153073164, - "2033-10-01": 161.805453133143, - "2032-10-01": 158.253935478796, - "2031-10-01": 154.786977768601, - "2030-10-01": 151.404580002557, - "2029-10-01": 148.106742180663, - "2028-10-01": 144.893464302921, - "2027-10-01": 141.849306313481, - "2026-10-01": 138.847428296117, - "2025-10-01": 135.803270306677, - "2024-10-01": 132.632272401011, - "2023-10-01": 129, - "2021-10-01": 135, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.IL": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.IL", - "description": null, - "label": "IL", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 94.8001275103602, - "2033-10-01": 92.7166082244182, - "2032-10-01": 90.6815428753586, - "2031-10-01": 88.6949314631814, - "2030-10-01": 86.7567739878865, - "2029-10-01": 84.867070449474, - "2028-10-01": 83.0258208479439, - "2027-10-01": 81.2814791201785, - "2026-10-01": 79.5613643608543, - "2025-10-01": 77.8170226330889, - "2024-10-01": 76, - "2023-10-01": 62, - "2021-10-01": 59, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.IN": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.IN", - "description": null, - "label": "IN", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 79.2343179969694, - "2033-10-01": 77.4929044146184, - "2032-10-01": 75.7919888225547, - "2031-10-01": 74.1315712207782, - "2030-10-01": 72.5116516092889, - "2029-10-01": 70.9322299880869, - "2028-10-01": 69.393306357172, - "2027-10-01": 67.9353787068317, - "2026-10-01": 66.4977000516349, - "2025-10-01": 65.0397724012946, - "2024-10-01": 63.5210977655234, - "2023-10-01": 61.7815065927353, - "2023-05-01": 60, - "2021-10-01": 57, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.KS": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.KS", - "description": null, - "label": "KS", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.KY": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.KY", - "description": null, - "label": "KY", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.LA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.LA", - "description": null, - "label": "LA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.MA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.MA", - "description": null, - "label": "MA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.MD": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.MD", - "description": null, - "label": "MD", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.ME": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.ME", - "description": null, - "label": "ME", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.MI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.MI", - "description": null, - "label": "MI", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 143.447561364361, - "2033-10-01": 140.294867708001, - "2032-10-01": 137.215492508766, - "2031-10-01": 134.209435766656, - "2030-10-01": 131.27669748167, - "2029-10-01": 128.417277653809, - "2028-10-01": 125.631176283073, - "2027-10-01": 122.991711826586, - "2026-10-01": 120.388906598661, - "2025-10-01": 117.749442142174, - "2024-10-01": 115, - "2023-10-01": 109, - "2021-10-01": 100, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.MN": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.MN", - "description": null, - "label": "MN", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.MO": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.MO", - "description": null, - "label": "MO", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 197.084475613644, - "2033-10-01": 192.75294867708, - "2032-10-01": 188.522154925088, - "2031-10-01": 184.392094357667, - "2030-10-01": 180.362766974817, - "2029-10-01": 176.434172776538, - "2028-10-01": 172.606311762831, - "2027-10-01": 168.979917118266, - "2026-10-01": 165.403889065987, - "2025-10-01": 161.777494421422, - "2024-10-01": 158, - "2023-10-01": 153, - "2021-10-01": 134, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.MS": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.MS", - "description": null, - "label": "MS", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.MT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.MT", - "description": null, - "label": "MT", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 140.95282116672, - "2033-10-01": 137.854956965253, - "2032-10-01": 134.82913611731, - "2031-10-01": 131.875358622888, - "2030-10-01": 128.993624481989, - "2029-10-01": 126.183933694613, - "2028-10-01": 123.446286260759, - "2027-10-01": 120.85272553395, - "2026-10-01": 118.295186483902, - "2025-10-01": 115.701625757093, - "2024-10-01": 113, - "2023-10-01": 105, - "2021-10-01": 180, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.NC": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.NC", - "description": null, - "label": "NC", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.ND": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.ND", - "description": null, - "label": "ND", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 153.426522154925, - "2033-10-01": 150.054510678993, - "2032-10-01": 146.760918074594, - "2031-10-01": 143.545744341728, - "2030-10-01": 140.408989480395, - "2029-10-01": 137.350653490596, - "2028-10-01": 134.37073637233, - "2027-10-01": 131.547656997131, - "2026-10-01": 128.763787057698, - "2025-10-01": 125.940707682499, - "2024-10-01": 123, - "2023-10-01": 118, - "2021-10-01": 208, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.NE": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.NE", - "description": null, - "label": "NE", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 77.3369461268728, - "2033-10-01": 75.6372330251833, - "2032-10-01": 73.977048135161, - "2031-10-01": 72.3563914568059, - "2030-10-01": 70.775262990118, - "2029-10-01": 69.2336627350972, - "2028-10-01": 67.7315906917437, - "2027-10-01": 66.3085750717246, - "2026-10-01": 64.9053235575391, - "2025-10-01": 63.4823079375199, - "2024-10-01": 62, - "2023-10-01": 60, - "2021-10-01": 54, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.NH": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.NH", - "description": null, - "label": "NH", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.NJ": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.NJ", - "description": null, - "label": "NJ", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.NM": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.NM", - "description": null, - "label": "NM", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.NV": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.NV", - "description": null, - "label": "NV", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 93.5527574115397, - "2033-10-01": 91.4966528530443, - "2032-10-01": 89.4883646796302, - "2031-10-01": 87.5278928912974, - "2030-10-01": 85.6152374880459, - "2029-10-01": 83.7503984698757, - "2028-10-01": 81.9333758367867, - "2027-10-01": 80.2119859738604, - "2026-10-01": 78.5145043034747, - "2025-10-01": 76.7931144405483, - "2024-10-01": 75, - "2023-10-01": 81, - "2021-10-01": 56, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.NY": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.NY", - "description": null, - "label": "NY", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.OH": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.OH", - "description": null, - "label": "OH", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 130.973860376156, - "2033-10-01": 128.095313994262, - "2032-10-01": 125.283710551482, - "2031-10-01": 122.539050047816, - "2030-10-01": 119.861332483264, - "2029-10-01": 117.250557857826, - "2028-10-01": 114.706726171501, - "2027-10-01": 112.296780363405, - "2026-10-01": 109.920306024865, - "2025-10-01": 107.510360216768, - "2024-10-01": 105, - "2023-10-01": 102, - "2021-10-01": 84, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.OK": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.OK", - "description": null, - "label": "OK", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.OR": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.OR", - "description": null, - "label": "OR", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 78.5843162256933, - "2033-10-01": 76.8571883965572, - "2032-10-01": 75.1702263308894, - "2031-10-01": 73.5234300286898, - "2030-10-01": 71.9167994899586, - "2029-10-01": 70.3503347146956, - "2028-10-01": 68.8240357029009, - "2027-10-01": 67.3780682180427, - "2026-10-01": 65.9521836149187, - "2025-10-01": 64.5062161300606, - "2024-10-01": 63, - "2023-10-01": 59, - "2021-10-01": 57, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.PA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.PA", - "description": null, - "label": "PA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 89.8106471150781, - "2033-10-01": 87.8367867389225, - "2032-10-01": 85.908830092445, - "2031-10-01": 84.0267771756455, - "2030-10-01": 82.1906279885241, - "2029-10-01": 80.4003825310807, - "2028-10-01": 78.6560408033153, - "2027-10-01": 77.003506534906, - "2026-10-01": 75.3739241313357, - "2025-10-01": 73.7213898629264, - "2024-10-01": 72, - "2023-10-01": 70, - "2021-10-01": 60, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.RI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.RI", - "description": null, - "label": "RI", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.SC": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.SC", - "description": null, - "label": "SC", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.SD": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.SD", - "description": null, - "label": "SD", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 132.221230474976, - "2033-10-01": 129.315269365636, - "2032-10-01": 126.476888747211, - "2031-10-01": 123.7060886197, - "2030-10-01": 121.002868983105, - "2029-10-01": 118.367229837424, - "2028-10-01": 115.799171182659, - "2027-10-01": 113.366273509723, - "2026-10-01": 110.967166082244, - "2025-10-01": 108.534268409308, - "2024-10-01": 106, - "2023-10-01": 103, - "2021-10-01": 91, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.TN": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.TN", - "description": null, - "label": "TN", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.TX": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.TX", - "description": null, - "label": "TX", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.UT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.UT", - "description": null, - "label": "UT", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.VA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.VA", - "description": null, - "label": "VA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.VI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.VI", - "description": null, - "label": "VI", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.VT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.VT", - "description": null, - "label": "VT", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.WA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.WA", - "description": null, - "label": "WA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.WI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.WI", - "description": null, - "label": "WI", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 128.479120178515, - "2033-10-01": 125.655403251514, - "2032-10-01": 122.897354160026, - "2031-10-01": 120.204972904048, - "2030-10-01": 117.578259483583, - "2029-10-01": 115.017213898629, - "2028-10-01": 112.521836149187, - "2027-10-01": 110.157794070768, - "2026-10-01": 107.826585910105, - "2025-10-01": 105.462543831686, - "2024-10-01": 103, - "2023-10-01": 99, - "2021-10-01": 93, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.WV": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.WV", - "description": null, - "label": "WV", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 107.273828498566, - "2033-10-01": 104.916161938157, - "2032-10-01": 102.613324832643, - "2031-10-01": 100.365317182021, - "2030-10-01": 98.1721389862926, - "2029-10-01": 96.0337902454575, - "2028-10-01": 93.9502709595155, - "2027-10-01": 91.9764105833599, - "2026-10-01": 90.0299649346509, - "2025-10-01": 88.0561045584954, - "2024-10-01": 86, - "2023-10-01": 79, - "2021-10-01": 77, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.WY": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.WY", - "description": null, - "label": "WY", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.PW": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.PW", - "description": null, - "label": "PW", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.PR": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.PR", - "description": null, - "label": "PR", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.AP": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.AP", - "description": null, - "label": "AP", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.AE": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.AE", - "description": null, - "label": "AE", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.MP": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.MP", - "description": null, - "label": "MP", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.water.AA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.water.AA", - "description": null, - "label": "AA", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone": { - "type": "parameterNode", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone", - "description": "Utility allowance for households whose utility expenses are only phone-related (or, if the state does not have a defined limited utility allowance, households with phone expenses but not heating/cooling expenses).", - "label": "SNAP standard utility allowance for phone expenses", - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.AK": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.AK", - "description": null, - "label": "AK", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 32.0623121572946, - "2033-10-01": 31.3576459560354, - "2032-10-01": 30.669367340852, - "2031-10-01": 29.9974763117443, - "2030-10-01": 29.3419728687125, - "2029-10-01": 28.7028570117565, - "2028-10-01": 28.0801287408762, - "2027-10-01": 27.4901756421476, - "2026-10-01": 26.9084163364568, - "2025-10-01": 26.3184632377282, - "2024-10-01": 25.7039287598858, - "2023-10-01": 25, - "2021-10-01": 15, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.AL": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.AL", - "description": null, - "label": "AL", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 66.6896092871728, - "2033-10-01": 65.2239035885536, - "2032-10-01": 63.7922840689721, - "2031-10-01": 62.3947507284282, - "2030-10-01": 61.031303566922, - "2029-10-01": 59.7019425844534, - "2028-10-01": 58.4066677810225, - "2027-10-01": 57.1795653356669, - "2026-10-01": 55.9695059798302, - "2025-10-01": 54.7424035344746, - "2024-10-01": 53.4641718205625, - "2023-10-01": 52, - "2021-10-01": 46, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.AR": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.AR", - "description": null, - "label": "AR", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 64.1246243145892, - "2033-10-01": 62.7152919120708, - "2032-10-01": 61.3387346817039, - "2031-10-01": 59.9949526234887, - "2030-10-01": 58.683945737425, - "2029-10-01": 57.4057140235129, - "2028-10-01": 56.1602574817524, - "2027-10-01": 54.9803512842951, - "2026-10-01": 53.8168326729136, - "2025-10-01": 52.6369264754563, - "2024-10-01": 51.4078575197716, - "2023-10-01": 50, - "2021-10-01": 50, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.AZ": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.AZ", - "description": null, - "label": "AZ", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 53.6369142492828, - "2033-10-01": 52.4580809690787, - "2032-10-01": 51.3066624163213, - "2031-10-01": 50.1826585910105, - "2030-10-01": 49.0860694931463, - "2029-10-01": 48.0168951227287, - "2028-10-01": 46.9751354797577, - "2027-10-01": 45.98820529168, - "2026-10-01": 45.0149824673255, - "2025-10-01": 44.0280522792477, - "2024-10-01": 43, - "2023-10-01": 47, - "2021-10-01": 44, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.CA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.CA", - "description": null, - "label": "CA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 24.3673572395439, - "2033-10-01": 23.8318109265869, - "2032-10-01": 23.3087191790475, - "2031-10-01": 22.7980819969257, - "2030-10-01": 22.2998993802215, - "2029-10-01": 21.8141713289349, - "2028-10-01": 21.3408978430659, - "2027-10-01": 20.8925334880321, - "2026-10-01": 20.4503964157072, - "2025-10-01": 20.0020320606734, - "2024-10-01": 19.5349858575132, - "2023-10-01": 19, - "2021-10-01": 19, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.CO": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.CO", - "description": null, - "label": "CO", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 117.25278928913, - "2033-10-01": 114.675804909149, - "2032-10-01": 112.15875039847, - "2031-10-01": 109.701625757093, - "2030-10-01": 107.304430985018, - "2029-10-01": 104.967166082244, - "2028-10-01": 102.689831048773, - "2027-10-01": 100.532355753905, - "2026-10-01": 98.4048453936882, - "2025-10-01": 96.2473700988205, - "2024-10-01": 94, - "2023-10-01": 91, - "2022-10-01": 86, - "2021-10-01": 80, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.CT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.CT", - "description": null, - "label": "CT", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 43.6579534587185, - "2033-10-01": 42.6984379980873, - "2032-10-01": 41.7612368504941, - "2031-10-01": 40.8463500159388, - "2030-10-01": 39.9537774944214, - "2029-10-01": 39.083519285942, - "2028-10-01": 38.2355753905005, - "2027-10-01": 37.4322601211348, - "2026-10-01": 36.6401020082882, - "2025-10-01": 35.8367867389225, - "2024-10-01": 35, - "2023-10-01": 34, - "2021-10-01": 29, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.DC": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.DC", - "description": null, - "label": "DC", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 92.3053873127192, - "2033-10-01": 90.2766974816704, - "2032-10-01": 88.2951864839018, - "2031-10-01": 86.3608543194135, - "2030-10-01": 84.4737009882053, - "2029-10-01": 82.6337264902773, - "2028-10-01": 80.8409308256296, - "2027-10-01": 79.1424928275422, - "2026-10-01": 77.467644246095, - "2025-10-01": 75.7692062480077, - "2024-10-01": 74, - "2023-10-01": 72, - "2021-10-01": 72, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.DE": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.DE", - "description": null, - "label": "DE", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 28.6895122728722, - "2033-10-01": 28.0589735416003, - "2032-10-01": 27.4430985017533, - "2031-10-01": 26.8418871533312, - "2030-10-01": 26.2553394963341, - "2029-10-01": 25.6834555307619, - "2028-10-01": 25.1262352566146, - "2027-10-01": 24.5983423653172, - "2026-10-01": 24.0777813197322, - "2025-10-01": 23.5498884284348, - "2024-10-01": 23, - "2023-10-01": 39, - "2021-10-01": 36, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.FL": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.FL", - "description": null, - "label": "FL", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 68.6053554351291, - "2033-10-01": 67.0975454255658, - "2032-10-01": 65.6248007650622, - "2031-10-01": 64.1871214536181, - "2030-10-01": 62.7845074912337, - "2029-10-01": 61.4169588779088, - "2028-10-01": 60.0844756136436, - "2027-10-01": 58.8221230474976, - "2026-10-01": 57.5773031558814, - "2025-10-01": 56.3149505897354, - "2024-10-01": 55, - "2023-10-01": 49, - "2021-10-01": 52, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.GA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.GA", - "description": null, - "label": "GA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 57.3790245457443, - "2033-10-01": 56.1179470832005, - "2032-10-01": 54.8861970035065, - "2031-10-01": 53.6837743066624, - "2030-10-01": 52.5106789926682, - "2029-10-01": 51.3669110615238, - "2028-10-01": 50.2524705132292, - "2027-10-01": 49.1966847306344, - "2026-10-01": 48.1555626394645, - "2025-10-01": 47.0997768568696, - "2024-10-01": 46, - "2023-10-01": 42, - "2021-10-01": 41, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.GU": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.GU", - "description": null, - "label": "GU", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 35.90978961617, - "2033-10-01": 35.1205634707596, - "2032-10-01": 34.3496914217542, - "2031-10-01": 33.5971734691537, - "2030-10-01": 32.863009612958, - "2029-10-01": 32.1471998531672, - "2028-10-01": 31.4497441897814, - "2027-10-01": 30.7889967192053, - "2026-10-01": 30.1374262968316, - "2025-10-01": 29.4766788262555, - "2024-10-01": 28.7884002110721, - "2023-10-01": 28, - "2021-10-01": 28, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.HI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.HI", - "description": null, - "label": "HI", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 52.3895441504622, - "2033-10-01": 51.2381255977048, - "2032-10-01": 50.1134842205929, - "2031-10-01": 49.0156200191266, - "2030-10-01": 47.9445329933057, - "2029-10-01": 46.9002231431304, - "2028-10-01": 45.8826904686006, - "2027-10-01": 44.9187121453618, - "2026-10-01": 43.9681224099458, - "2025-10-01": 43.004144086707, - "2024-10-01": 42, - "2023-10-01": 40, - "2021-10-01": 36, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.IA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.IA", - "description": null, - "label": "IA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 43.6579534587185, - "2033-10-01": 42.6984379980873, - "2032-10-01": 41.7612368504941, - "2031-10-01": 40.8463500159388, - "2030-10-01": 39.9537774944214, - "2029-10-01": 39.083519285942, - "2028-10-01": 38.2355753905005, - "2027-10-01": 37.4322601211348, - "2026-10-01": 36.6401020082882, - "2025-10-01": 35.8367867389225, - "2024-10-01": 35, - "2023-10-01": 33, - "2021-10-01": 30, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.ID": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.ID", - "description": null, - "label": "ID", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 58.6263946445649, - "2033-10-01": 57.3379024545744, - "2032-10-01": 56.0793751992349, - "2031-10-01": 54.8508128785464, - "2030-10-01": 53.6522154925088, - "2029-10-01": 52.4835830411221, - "2028-10-01": 51.3449155243864, - "2027-10-01": 50.2661778769525, - "2026-10-01": 49.2024226968441, - "2025-10-01": 48.1236850494103, - "2024-10-01": 47, - "2023-10-01": 42, - "2021-10-01": 29, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.IL": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.IL", - "description": null, - "label": "IL", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 81.0790564233344, - "2033-10-01": 79.2970991393051, - "2032-10-01": 77.5565827223462, - "2031-10-01": 75.8575071724578, - "2030-10-01": 74.1998724896398, - "2029-10-01": 72.5836786738923, - "2028-10-01": 71.0089257252152, - "2027-10-01": 69.517054510679, - "2026-10-01": 68.045903729678, - "2025-10-01": 66.5540325151419, - "2024-10-01": 65, - "2023-10-01": 75, - "2021-10-01": 44, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.IN": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.IN", - "description": null, - "label": "IN", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 46.2200188315655, - "2033-10-01": 45.2041942418608, - "2032-10-01": 44.2119934798236, - "2031-10-01": 43.2434165454539, - "2030-10-01": 42.2984634387519, - "2029-10-01": 41.3771341597173, - "2028-10-01": 40.4794287083504, - "2027-10-01": 39.6289709123185, - "2026-10-01": 38.7903250301204, - "2025-10-01": 37.9398672340885, - "2024-10-01": 37.0539736965553, - "2023-10-01": 36.0392121790956, - "2023-05-01": 35, - "2021-10-01": 32, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.KS": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.KS", - "description": null, - "label": "KS", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 53.6369142492828, - "2033-10-01": 52.4580809690787, - "2032-10-01": 51.3066624163213, - "2031-10-01": 50.1826585910105, - "2030-10-01": 49.0860694931463, - "2029-10-01": 48.0168951227287, - "2028-10-01": 46.9751354797577, - "2027-10-01": 45.98820529168, - "2026-10-01": 45.0149824673255, - "2025-10-01": 44.0280522792477, - "2024-10-01": 43, - "2023-10-01": 42, - "2021-10-01": 37, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.KY": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.KY", - "description": null, - "label": "KY", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 77.3369461268728, - "2033-10-01": 75.6372330251833, - "2032-10-01": 73.977048135161, - "2031-10-01": 72.3563914568059, - "2030-10-01": 70.775262990118, - "2029-10-01": 69.2336627350972, - "2028-10-01": 67.7315906917437, - "2027-10-01": 66.3085750717246, - "2026-10-01": 64.9053235575391, - "2025-10-01": 63.4823079375199, - "2024-10-01": 62, - "2023-10-01": 66, - "2021-10-01": 45, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.LA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.LA", - "description": null, - "label": "LA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 94.904443985592, - "2033-10-01": 92.8186320298647, - "2032-10-01": 90.7813273289218, - "2031-10-01": 88.7925298827632, - "2030-10-01": 86.852239691389, - "2029-10-01": 84.9604567547991, - "2028-10-01": 83.1171810729936, - "2027-10-01": 81.3709199007568, - "2026-10-01": 79.6489123559122, - "2025-10-01": 77.9026511836754, - "2024-10-01": 76.083629129262, - "2023-10-01": 74, - "2021-10-01": 67, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.MA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.MA", - "description": null, - "label": "MA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 77.3369461268728, - "2033-10-01": 75.6372330251833, - "2032-10-01": 73.977048135161, - "2031-10-01": 72.3563914568059, - "2030-10-01": 70.775262990118, - "2029-10-01": 69.2336627350972, - "2028-10-01": 67.7315906917437, - "2027-10-01": 66.3085750717246, - "2026-10-01": 64.9053235575391, - "2025-10-01": 63.4823079375199, - "2024-10-01": 62, - "2023-10-01": 59, - "2021-10-01": 48, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.MD": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.MD", - "description": null, - "label": "MD", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 52.8228786646463, - "2033-10-01": 51.6619362764123, - "2032-10-01": 50.5279925483698, - "2031-10-01": 49.4210474805188, - "2030-10-01": 48.3411010728593, - "2029-10-01": 47.2881533253912, - "2028-10-01": 46.2622042381147, - "2027-10-01": 45.2902524712211, - "2026-10-01": 44.3318000344233, - "2025-10-01": 43.3598482675297, - "2024-10-01": 42.3473985103489, - "2023-10-01": 41.1876710618236, - "2023-01-01": 40, - "2021-10-01": 40, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.ME": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.ME", - "description": null, - "label": "ME", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 74.8422059292318, - "2033-10-01": 73.1973222824355, - "2032-10-01": 71.5906917437042, - "2031-10-01": 70.022314313038, - "2030-10-01": 68.4921899904367, - "2029-10-01": 67.0003187759005, - "2028-10-01": 65.5467006694294, - "2027-10-01": 64.1695887790883, - "2026-10-01": 62.8116034427797, - "2025-10-01": 61.4344915524386, - "2024-10-01": 60, - "2023-10-01": 58, - "2021-10-01": 49, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.MI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.MI", - "description": null, - "label": "MI", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 37.4211029646159, - "2033-10-01": 36.5986611412177, - "2032-10-01": 35.7953458718521, - "2031-10-01": 35.011157156519, - "2030-10-01": 34.2460949952184, - "2029-10-01": 33.5001593879503, - "2028-10-01": 32.7733503347147, - "2027-10-01": 32.0847943895442, - "2026-10-01": 31.4058017213899, - "2025-10-01": 30.7172457762193, - "2024-10-01": 30, - "2023-10-01": 31, - "2021-10-01": 30, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.MN": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.MN", - "description": null, - "label": "MN", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 74.8422059292318, - "2033-10-01": 73.1973222824355, - "2032-10-01": 71.5906917437042, - "2031-10-01": 70.022314313038, - "2030-10-01": 68.4921899904367, - "2029-10-01": 67.0003187759005, - "2028-10-01": 65.5467006694294, - "2027-10-01": 64.1695887790883, - "2026-10-01": 62.8116034427797, - "2025-10-01": 61.4344915524386, - "2024-10-01": 60, - "2023-10-01": 54, - "2021-10-01": 56, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.MO": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.MO", - "description": null, - "label": "MO", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 98.5422378068218, - "2033-10-01": 96.37647433854, - "2032-10-01": 94.2610774625439, - "2031-10-01": 92.1960471788333, - "2030-10-01": 90.1813834874084, - "2029-10-01": 88.2170863882691, - "2028-10-01": 86.3031558814154, - "2027-10-01": 84.4899585591329, - "2026-10-01": 82.7019445329933, - "2025-10-01": 80.8887472107109, - "2024-10-01": 79, - "2023-10-01": 76, - "2021-10-01": 67, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.MS": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.MS", - "description": null, - "label": "MS", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 61.1211348422059, - "2033-10-01": 59.7778131973223, - "2032-10-01": 58.4657315906918, - "2031-10-01": 57.1848900223143, - "2030-10-01": 55.93528849219, - "2029-10-01": 54.7169270003188, - "2028-10-01": 53.5298055467007, - "2027-10-01": 52.4051641695888, - "2026-10-01": 51.2961428116034, - "2025-10-01": 50.1715014344916, - "2024-10-01": 49, - "2023-10-01": 45, - "2021-10-01": 34, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.MT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.MT", - "description": null, - "label": "MT", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 41.1632132610775, - "2033-10-01": 40.2585272553395, - "2032-10-01": 39.3748804590373, - "2031-10-01": 38.5122728721709, - "2030-10-01": 37.6707044947402, - "2029-10-01": 36.8501753267453, - "2028-10-01": 36.0506853681862, - "2027-10-01": 35.2932738284986, - "2026-10-01": 34.5463818935288, - "2025-10-01": 33.7889703538413, - "2024-10-01": 33, - "2023-10-01": 34, - "2021-10-01": 33, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.NC": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.NC", - "description": null, - "label": "NC", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 52.5821919379632, - "2033-10-01": 51.426539367898, - "2032-10-01": 50.2977624389972, - "2031-10-01": 49.1958611512607, - "2030-10-01": 48.1208355046885, - "2029-10-01": 47.0726854992806, - "2028-10-01": 46.051411135037, - "2027-10-01": 45.083888053122, - "2026-10-01": 44.1298027917892, - "2025-10-01": 43.1622797098742, - "2024-10-01": 42.1544431662127, - "2023-10-01": 41, - "2021-10-01": 29, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.ND": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.ND", - "description": null, - "label": "ND", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 43.6047445339207, - "2033-10-01": 42.6463985002081, - "2032-10-01": 41.7103395835587, - "2031-10-01": 40.7965677839723, - "2030-10-01": 39.905083101449, - "2029-10-01": 39.0358855359888, - "2028-10-01": 38.1889750875917, - "2027-10-01": 37.3866388733207, - "2026-10-01": 36.5954462175813, - "2025-10-01": 35.7931100033103, - "2024-10-01": 34.9573431134447, - "2023-10-01": 34, - "2021-10-01": 34, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.NE": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.NE", - "description": null, - "label": "NE", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 66.1106152374881, - "2033-10-01": 64.657634682818, - "2032-10-01": 63.2384443736054, - "2031-10-01": 61.8530443098502, - "2030-10-01": 60.5014344915524, - "2029-10-01": 59.1836149187121, - "2028-10-01": 57.8995855913293, - "2027-10-01": 56.6831367548613, - "2026-10-01": 55.4835830411221, - "2025-10-01": 54.2671342046541, - "2024-10-01": 53, - "2023-10-01": 52, - "2021-10-01": 47, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.NH": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.NH", - "description": null, - "label": "NH", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 47.4000637551801, - "2033-10-01": 46.3583041122091, - "2032-10-01": 45.3407714376793, - "2031-10-01": 44.3474657315907, - "2030-10-01": 43.3783869939433, - "2029-10-01": 42.433535224737, - "2028-10-01": 41.5129104239719, - "2027-10-01": 40.6407395600893, - "2026-10-01": 39.7806821804272, - "2025-10-01": 38.9085113165445, - "2024-10-01": 38, - "2023-10-01": 37, - "2021-10-01": 29, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.NJ": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.NJ", - "description": null, - "label": "NJ", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 41.0397595613371, - "2033-10-01": 40.1377868237253, - "2032-10-01": 39.2567901962905, - "2031-10-01": 38.3967696790327, - "2030-10-01": 37.557725271952, - "2029-10-01": 36.7396569750483, - "2028-10-01": 35.9425647883216, - "2027-10-01": 35.1874248219489, - "2026-10-01": 34.4427729106647, - "2025-10-01": 33.687632944292, - "2024-10-01": 32.9010288126538, - "2023-10-01": 32, - "2021-10-01": 31, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.NM": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.NM", - "description": null, - "label": "NM", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 62.3685049410265, - "2033-10-01": 60.9977685686962, - "2032-10-01": 59.6589097864202, - "2031-10-01": 58.3519285941983, - "2030-10-01": 57.0768249920306, - "2029-10-01": 55.8335989799171, - "2028-10-01": 54.6222505578578, - "2027-10-01": 53.4746573159069, - "2026-10-01": 52.3430028689831, - "2025-10-01": 51.1954096270322, - "2024-10-01": 50, - "2023-10-01": 46, - "2021-10-01": 59, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.NV": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.NV", - "description": null, - "label": "NV", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 63.615875039847, - "2033-10-01": 62.2177239400701, - "2032-10-01": 60.8520879821486, - "2031-10-01": 59.5189671660823, - "2030-10-01": 58.2183614918712, - "2029-10-01": 56.9502709595155, - "2028-10-01": 55.714695569015, - "2027-10-01": 54.5441504622251, - "2026-10-01": 53.3898629263628, - "2025-10-01": 52.2193178195728, - "2024-10-01": 51, - "2023-10-01": 27, - "2021-10-01": 25, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.NY": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.NY", - "description": null, - "label": "NY", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 39.7572670750453, - "2033-10-01": 38.8834809854839, - "2032-10-01": 38.0300155026564, - "2031-10-01": 37.196870626563, - "2030-10-01": 36.3840463572035, - "2029-10-01": 35.591542694578, - "2028-10-01": 34.8193596386865, - "2027-10-01": 34.087817796263, - "2026-10-01": 33.3664362572064, - "2025-10-01": 32.6348944147829, - "2024-10-01": 31.8728716622584, - "2023-10-01": 31, - "2021-10-01": 31, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.OH": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.OH", - "description": null, - "label": "OH", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 57.7121618831303, - "2033-10-01": 56.4437627208637, - "2032-10-01": 55.2048612135335, - "2031-10-01": 53.9954573611398, - "2030-10-01": 52.8155511636825, - "2029-10-01": 51.6651426211616, - "2028-10-01": 50.5442317335772, - "2027-10-01": 49.4823161558656, - "2026-10-01": 48.4351494056223, - "2025-10-01": 47.3732338279107, - "2024-10-01": 46.2670717677945, - "2023-10-01": 45, - "2021-10-01": 42, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.OK": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.OK", - "description": null, - "label": "OK", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 61.5596393420057, - "2033-10-01": 60.2066802355879, - "2032-10-01": 58.8851852944358, - "2031-10-01": 57.5951545185491, - "2030-10-01": 56.336587907928, - "2029-10-01": 55.1094854625724, - "2028-10-01": 53.9138471824823, - "2027-10-01": 52.7811372329233, - "2026-10-01": 51.6641593659971, - "2025-10-01": 50.5314494164381, - "2024-10-01": 49.3515432189808, - "2023-10-01": 48, - "2021-10-01": 48, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.OR": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.OR", - "description": null, - "label": "OR", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 98.5422378068218, - "2033-10-01": 96.37647433854, - "2032-10-01": 94.2610774625439, - "2031-10-01": 92.1960471788333, - "2030-10-01": 90.1813834874084, - "2029-10-01": 88.2170863882691, - "2028-10-01": 86.3031558814154, - "2027-10-01": 84.4899585591329, - "2026-10-01": 82.7019445329933, - "2025-10-01": 80.8887472107109, - "2024-10-01": 79, - "2023-10-01": 76, - "2021-10-01": 70, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.PA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.PA", - "description": null, - "label": "PA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 43.6047445339207, - "2033-10-01": 42.6463985002081, - "2032-10-01": 41.7103395835587, - "2031-10-01": 40.7965677839723, - "2030-10-01": 39.905083101449, - "2029-10-01": 39.0358855359888, - "2028-10-01": 38.1889750875917, - "2027-10-01": 37.3866388733207, - "2026-10-01": 36.5954462175813, - "2025-10-01": 35.7931100033103, - "2024-10-01": 34.9573431134447, - "2023-10-01": 34, - "2021-10-01": 34, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.RI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.RI", - "description": null, - "label": "RI", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 32.4316225693338, - "2033-10-01": 31.718839655722, - "2032-10-01": 31.0226330889385, - "2031-10-01": 30.3430028689831, - "2030-10-01": 29.6799489958559, - "2029-10-01": 29.0334714695569, - "2028-10-01": 28.4035702900861, - "2027-10-01": 27.8068218042716, - "2026-10-01": 27.2183614918712, - "2025-10-01": 26.6216130060567, - "2024-10-01": 26, - "2023-10-01": 25, - "2021-10-01": 24, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.SC": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.SC", - "description": null, - "label": "SC", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 32.4316225693338, - "2033-10-01": 31.718839655722, - "2032-10-01": 31.0226330889385, - "2031-10-01": 30.3430028689831, - "2030-10-01": 29.6799489958559, - "2029-10-01": 29.0334714695569, - "2028-10-01": 28.4035702900861, - "2027-10-01": 27.8068218042716, - "2026-10-01": 27.2183614918712, - "2025-10-01": 26.6216130060567, - "2024-10-01": 26, - "2023-10-01": 27, - "2021-10-01": 26, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.SD": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.SD", - "description": null, - "label": "SD", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 73.5948358304112, - "2033-10-01": 71.9773669110615, - "2032-10-01": 70.3975135479758, - "2031-10-01": 68.855275741154, - "2030-10-01": 67.3506534905961, - "2029-10-01": 65.8836467963022, - "2028-10-01": 64.4542556582722, - "2027-10-01": 63.1000956327702, - "2026-10-01": 61.7647433854001, - "2025-10-01": 60.410583359898, - "2024-10-01": 59, - "2023-10-01": 57, - "2021-10-01": 50, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.TN": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.TN", - "description": null, - "label": "TN", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 44.8872370202125, - "2033-10-01": 43.9007043384495, - "2032-10-01": 42.9371142771928, - "2031-10-01": 41.9964668364421, - "2030-10-01": 41.0787620161975, - "2029-10-01": 40.183999816459, - "2028-10-01": 39.3121802372267, - "2027-10-01": 38.4862458990066, - "2026-10-01": 37.6717828710395, - "2025-10-01": 36.8458485328194, - "2024-10-01": 35.9855002638401, - "2023-10-01": 35, - "2021-10-01": 28, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.TX": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.TX", - "description": null, - "label": "TX", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 76.0895760280523, - "2033-10-01": 74.4172776538094, - "2032-10-01": 72.7838699394326, - "2031-10-01": 71.1893528849219, - "2030-10-01": 69.6337264902773, - "2029-10-01": 68.1169907554989, - "2028-10-01": 66.6391456805865, - "2027-10-01": 65.2390819254064, - "2026-10-01": 63.8584635001594, - "2025-10-01": 62.4583997449793, - "2024-10-01": 61, - "2023-10-01": 60, - "2021-10-01": 38, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.UT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.UT", - "description": null, - "label": "UT", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 71.1000956327702, - "2033-10-01": 69.5374561683137, - "2032-10-01": 68.011157156519, - "2031-10-01": 66.5211985973861, - "2030-10-01": 65.0675804909149, - "2029-10-01": 63.6503028371055, - "2028-10-01": 62.2693656359579, - "2027-10-01": 60.9611093401339, - "2026-10-01": 59.6710232706407, - "2025-10-01": 58.3627669748167, - "2024-10-01": 57, - "2023-10-01": 55, - "2021-10-01": 54, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.VA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.VA", - "description": null, - "label": "VA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 64.8632451386675, - "2033-10-01": 63.4376793114441, - "2032-10-01": 62.045266177877, - "2031-10-01": 60.6860057379662, - "2030-10-01": 59.3598979917118, - "2029-10-01": 58.0669429391138, - "2028-10-01": 56.8071405801721, - "2027-10-01": 55.6136436085432, - "2026-10-01": 54.4367229837424, - "2025-10-01": 53.2432260121135, - "2024-10-01": 52, - "2023-10-01": 51, - "2021-10-01": 61, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.VI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.VI", - "description": null, - "label": "VI", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 42.3222520476289, - "2033-10-01": 41.3920926619667, - "2032-10-01": 40.4835648899246, - "2031-10-01": 39.5966687315025, - "2030-10-01": 38.7314041867005, - "2029-10-01": 37.8877712555185, - "2028-10-01": 37.0657699379566, - "2027-10-01": 36.2870318476348, - "2026-10-01": 35.519109564123, - "2025-10-01": 34.7403714738012, - "2024-10-01": 33.9291859630493, - "2023-10-01": 33, - "2021-10-01": 36, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.VT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.VT", - "description": null, - "label": "VT", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 46.1697295065042, - "2033-10-01": 45.155010176691, - "2032-10-01": 44.1638889708268, - "2031-10-01": 43.1963658889118, - "2030-10-01": 42.252440930946, - "2029-10-01": 41.3321140969293, - "2028-10-01": 40.4353853868617, - "2027-10-01": 39.5858529246925, - "2026-10-01": 38.7481195244978, - "2025-10-01": 37.8985870623285, - "2024-10-01": 37.0136574142356, - "2023-10-01": 36, - "2021-10-01": 36, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.WA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.WA", - "description": null, - "label": "WA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 69.8527255339496, - "2033-10-01": 68.3175007969398, - "2032-10-01": 66.8179789607906, - "2031-10-01": 65.3541600255021, - "2030-10-01": 63.9260439910743, - "2029-10-01": 62.5336308575072, - "2028-10-01": 61.1769206248008, - "2027-10-01": 59.8916161938157, - "2026-10-01": 58.6241632132611, - "2025-10-01": 57.3388587822761, - "2024-10-01": 56, - "2023-10-01": 58, - "2021-10-01": 59, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.WI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.WI", - "description": null, - "label": "WI", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 38.4747745887535, - "2033-10-01": 37.6291751472425, - "2032-10-01": 36.8032408090224, - "2031-10-01": 35.9969715740932, - "2030-10-01": 35.210367442455, - "2029-10-01": 34.4434284141077, - "2028-10-01": 33.6961544890515, - "2027-10-01": 32.9882107705771, - "2026-10-01": 32.2900996037482, - "2025-10-01": 31.5821558852738, - "2024-10-01": 30.844714511863, - "2023-10-01": 30, - "2021-10-01": 29, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.WV": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.WV", - "description": null, - "label": "WV", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 77, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.WY": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.WY", - "description": null, - "label": "WY", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 68.6053554351291, - "2033-10-01": 67.0975454255658, - "2032-10-01": 65.6248007650622, - "2031-10-01": 64.1871214536181, - "2030-10-01": 62.7845074912337, - "2029-10-01": 61.4169588779088, - "2028-10-01": 60.0844756136436, - "2027-10-01": 58.8221230474976, - "2026-10-01": 57.5773031558814, - "2025-10-01": 56.3149505897354, - "2024-10-01": 55, - "2023-10-01": 56, - "2021-10-01": 55, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.PW": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.PW", - "description": null, - "label": "PW", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.PR": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.PR", - "description": null, - "label": "PR", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.AP": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.AP", - "description": null, - "label": "AP", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.AE": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.AE", - "description": null, - "label": "AE", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.MP": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.MP", - "description": null, - "label": "MP", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.phone.AA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.phone.AA", - "description": null, - "label": "AA", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.utility_types": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.utility_types", - "description": "Utility cost types which entitle the payer to a specific utility allowance.", - "label": "SNAP utility types", - "unit": "list", - "period": null, - "values": { - "2010-01-01": [ - "electricity_expense", - "gas_and_fuel_expense", - "water_expense", - "sewage_expense", - "phone_expense", - "trash_expense" - ] - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity": { - "type": "parameterNode", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity", - "description": "Utility allowance for households whose utility expenses are only electricity-related (or, if the state does not have a defined limited utility allowance, households with electricity expenses but not heating/cooling expenses).", - "label": "SNAP standard utility allowance for electricity expenses", - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.AK": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.AK", - "description": null, - "label": "AK", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 162.158112846669, - "2033-10-01": 158.59419827861, - "2032-10-01": 155.113165444692, - "2031-10-01": 151.715014344916, - "2030-10-01": 148.39974497928, - "2029-10-01": 145.167357347785, - "2028-10-01": 142.01785145043, - "2027-10-01": 139.034109021358, - "2026-10-01": 136.091807459356, - "2025-10-01": 133.108065030284, - "2024-10-01": 130, - "2023-10-01": 131, - "2021-10-01": 85, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.AL": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.AL", - "description": null, - "label": "AL", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.AR": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.AR", - "description": null, - "label": "AR", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.AZ": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.AZ", - "description": null, - "label": "AZ", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.CA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.CA", - "description": null, - "label": "CA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.CO": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.CO", - "description": null, - "label": "CO", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 86.0685368186165, - "2033-10-01": 84.1769206248008, - "2032-10-01": 82.3292955052598, - "2031-10-01": 80.5256614599936, - "2030-10-01": 78.7660184890022, - "2029-10-01": 77.0503665922856, - "2028-10-01": 75.3787057698438, - "2027-10-01": 73.7950270959515, - "2026-10-01": 72.2333439591967, - "2025-10-01": 70.6496652853044, - "2024-10-01": 69, - "2023-10-01": 67, - "2022-10-01": 64, - "2021-10-01": 59, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.CT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.CT", - "description": null, - "label": "CT", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.DC": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.DC", - "description": null, - "label": "DC", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 109.768568696207, - "2033-10-01": 107.356072680905, - "2032-10-01": 104.999681224099, - "2031-10-01": 102.699394325789, - "2030-10-01": 100.455211985974, - "2029-10-01": 98.2671342046541, - "2028-10-01": 96.1351609818298, - "2027-10-01": 94.1153968759962, - "2026-10-01": 92.1236850494103, - "2025-10-01": 90.1039209435767, - "2024-10-01": 88, - "2023-10-01": 84, - "2021-10-01": 73, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.DE": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.DE", - "description": null, - "label": "DE", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 123.489639783232, - "2033-10-01": 120.775581766018, - "2032-10-01": 118.124641377112, - "2031-10-01": 115.536818616513, - "2030-10-01": 113.012113484221, - "2029-10-01": 110.550525980236, - "2028-10-01": 108.152056104558, - "2027-10-01": 105.879821485496, - "2026-10-01": 103.639145680587, - "2025-10-01": 101.366911061524, - "2024-10-01": 99, - "2023-10-01": 82, - "2021-10-01": 75, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.FL": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.FL", - "description": null, - "label": "FL", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.GA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.GA", - "description": null, - "label": "GA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.GU": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.GU", - "description": null, - "label": "GU", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 234.505578578259, - "2033-10-01": 229.351609818298, - "2032-10-01": 224.31750079694, - "2031-10-01": 219.403251514186, - "2030-10-01": 214.608861970035, - "2029-10-01": 209.934332164488, - "2028-10-01": 205.379662097545, - "2027-10-01": 201.06471150781, - "2026-10-01": 196.809690787376, - "2025-10-01": 192.494740197641, - "2024-10-01": 188, - "2023-10-01": 173, - "2021-10-01": 133, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.HI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.HI", - "description": null, - "label": "HI", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 362.984698756774, - "2033-10-01": 355.007013069812, - "2032-10-01": 347.214854956965, - "2031-10-01": 339.608224418234, - "2030-10-01": 332.187121453618, - "2029-10-01": 324.951546063118, - "2028-10-01": 317.901498246733, - "2027-10-01": 311.222505578578, - "2026-10-01": 304.636276697482, - "2025-10-01": 297.957284029327, - "2024-10-01": 291, - "2023-10-01": 300, - "2021-10-01": 230, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.IA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.IA", - "description": null, - "label": "IA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.ID": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.ID", - "description": null, - "label": "ID", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 165.44153073164, - "2033-10-01": 161.805453133143, - "2032-10-01": 158.253935478796, - "2031-10-01": 154.786977768601, - "2030-10-01": 151.404580002557, - "2029-10-01": 148.106742180663, - "2028-10-01": 144.893464302921, - "2027-10-01": 141.849306313481, - "2026-10-01": 138.847428296117, - "2025-10-01": 135.803270306677, - "2024-10-01": 132.632272401011, - "2023-10-01": 129, - "2021-10-01": 135, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.IL": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.IL", - "description": null, - "label": "IL", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 94.8001275103602, - "2033-10-01": 92.7166082244182, - "2032-10-01": 90.6815428753586, - "2031-10-01": 88.6949314631814, - "2030-10-01": 86.7567739878865, - "2029-10-01": 84.867070449474, - "2028-10-01": 83.0258208479439, - "2027-10-01": 81.2814791201785, - "2026-10-01": 79.5613643608543, - "2025-10-01": 77.8170226330889, - "2024-10-01": 76, - "2023-10-01": 62, - "2021-10-01": 59, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.IN": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.IN", - "description": null, - "label": "IN", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 79.2343179969694, - "2033-10-01": 77.4929044146184, - "2032-10-01": 75.7919888225547, - "2031-10-01": 74.1315712207782, - "2030-10-01": 72.5116516092889, - "2029-10-01": 70.9322299880869, - "2028-10-01": 69.393306357172, - "2027-10-01": 67.9353787068317, - "2026-10-01": 66.4977000516349, - "2025-10-01": 65.0397724012946, - "2024-10-01": 63.5210977655234, - "2023-10-01": 61.7815065927353, - "2023-05-01": 60, - "2021-10-01": 57, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.KS": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.KS", - "description": null, - "label": "KS", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.KY": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.KY", - "description": null, - "label": "KY", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.LA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.LA", - "description": null, - "label": "LA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.MA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.MA", - "description": null, - "label": "MA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.MD": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.MD", - "description": null, - "label": "MD", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.ME": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.ME", - "description": null, - "label": "ME", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.MI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.MI", - "description": null, - "label": "MI", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 219.537137392413, - "2033-10-01": 214.712145361811, - "2032-10-01": 209.999362448199, - "2031-10-01": 205.398788651578, - "2030-10-01": 200.910423971948, - "2029-10-01": 196.534268409308, - "2028-10-01": 192.27032196366, - "2027-10-01": 188.230793751992, - "2026-10-01": 184.247370098821, - "2025-10-01": 180.207841887153, - "2024-10-01": 176, - "2023-10-01": 157, - "2021-10-01": 150, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.MN": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.MN", - "description": null, - "label": "MN", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 285.647752629901, - "2033-10-01": 279.369780044629, - "2032-10-01": 273.237806821804, - "2031-10-01": 267.251832961428, - "2030-10-01": 261.4118584635, - "2029-10-01": 255.71788332802, - "2028-10-01": 250.169907554989, - "2027-10-01": 244.913930506854, - "2026-10-01": 239.730953139943, - "2025-10-01": 234.474976091807, - "2024-10-01": 229, - "2023-10-01": 213, - "2021-10-01": 149, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.MO": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.MO", - "description": null, - "label": "MO", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 197.084475613644, - "2033-10-01": 192.75294867708, - "2032-10-01": 188.522154925088, - "2031-10-01": 184.392094357667, - "2030-10-01": 180.362766974817, - "2029-10-01": 176.434172776538, - "2028-10-01": 172.606311762831, - "2027-10-01": 168.979917118266, - "2026-10-01": 165.403889065987, - "2025-10-01": 161.777494421422, - "2024-10-01": 158, - "2023-10-01": 153, - "2021-10-01": 134, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.MS": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.MS", - "description": null, - "label": "MS", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.MT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.MT", - "description": null, - "label": "MT", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 140.95282116672, - "2033-10-01": 137.854956965253, - "2032-10-01": 134.82913611731, - "2031-10-01": 131.875358622888, - "2030-10-01": 128.993624481989, - "2029-10-01": 126.183933694613, - "2028-10-01": 123.446286260759, - "2027-10-01": 120.85272553395, - "2026-10-01": 118.295186483902, - "2025-10-01": 115.701625757093, - "2024-10-01": 113, - "2023-10-01": 105, - "2021-10-01": 180, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.NC": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.NC", - "description": null, - "label": "NC", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.ND": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.ND", - "description": null, - "label": "ND", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 153.426522154925, - "2033-10-01": 150.054510678993, - "2032-10-01": 146.760918074594, - "2031-10-01": 143.545744341728, - "2030-10-01": 140.408989480395, - "2029-10-01": 137.350653490596, - "2028-10-01": 134.37073637233, - "2027-10-01": 131.547656997131, - "2026-10-01": 128.763787057698, - "2025-10-01": 125.940707682499, - "2024-10-01": 123, - "2023-10-01": 118, - "2021-10-01": 208, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.NE": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.NE", - "description": null, - "label": "NE", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 77.3369461268728, - "2033-10-01": 75.6372330251833, - "2032-10-01": 73.977048135161, - "2031-10-01": 72.3563914568059, - "2030-10-01": 70.775262990118, - "2029-10-01": 69.2336627350972, - "2028-10-01": 67.7315906917437, - "2027-10-01": 66.3085750717246, - "2026-10-01": 64.9053235575391, - "2025-10-01": 63.4823079375199, - "2024-10-01": 62, - "2023-10-01": 60, - "2021-10-01": 54, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.NH": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.NH", - "description": null, - "label": "NH", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 263.195090851132, - "2033-10-01": 257.410583359898, - "2032-10-01": 251.760599298693, - "2031-10-01": 246.245138667517, - "2030-10-01": 240.864201466369, - "2029-10-01": 235.61778769525, - "2028-10-01": 230.50589735416, - "2027-10-01": 225.663053873127, - "2026-10-01": 220.887472107109, - "2025-10-01": 216.044628626076, - "2024-10-01": 211, - "2023-10-01": 204, - "2021-10-01": 162, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.NJ": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.NJ", - "description": null, - "label": "NJ", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.NM": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.NM", - "description": null, - "label": "NM", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.NV": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.NV", - "description": null, - "label": "NV", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 93.5527574115397, - "2033-10-01": 91.4966528530443, - "2032-10-01": 89.4883646796302, - "2031-10-01": 87.5278928912974, - "2030-10-01": 85.6152374880459, - "2029-10-01": 83.7503984698757, - "2028-10-01": 81.9333758367867, - "2027-10-01": 80.2119859738604, - "2026-10-01": 78.5145043034747, - "2025-10-01": 76.7931144405483, - "2024-10-01": 75, - "2023-10-01": 81, - "2021-10-01": 56, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.NY": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.NY", - "description": null, - "label": "NY", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.OH": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.OH", - "description": null, - "label": "OH", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 130.973860376156, - "2033-10-01": 128.095313994262, - "2032-10-01": 125.283710551482, - "2031-10-01": 122.539050047816, - "2030-10-01": 119.861332483264, - "2029-10-01": 117.250557857826, - "2028-10-01": 114.706726171501, - "2027-10-01": 112.296780363405, - "2026-10-01": 109.920306024865, - "2025-10-01": 107.510360216768, - "2024-10-01": 105, - "2023-10-01": 102, - "2021-10-01": 84, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.OK": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.OK", - "description": null, - "label": "OK", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.OR": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.OR", - "description": null, - "label": "OR", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 78.5843162256933, - "2033-10-01": 76.8571883965572, - "2032-10-01": 75.1702263308894, - "2031-10-01": 73.5234300286898, - "2030-10-01": 71.9167994899586, - "2029-10-01": 70.3503347146956, - "2028-10-01": 68.8240357029009, - "2027-10-01": 67.3780682180427, - "2026-10-01": 65.9521836149187, - "2025-10-01": 64.5062161300606, - "2024-10-01": 63, - "2023-10-01": 59, - "2021-10-01": 57, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.PA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.PA", - "description": null, - "label": "PA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 89.8106471150781, - "2033-10-01": 87.8367867389225, - "2032-10-01": 85.908830092445, - "2031-10-01": 84.0267771756455, - "2030-10-01": 82.1906279885241, - "2029-10-01": 80.4003825310807, - "2028-10-01": 78.6560408033153, - "2027-10-01": 77.003506534906, - "2026-10-01": 75.3739241313357, - "2025-10-01": 73.7213898629264, - "2024-10-01": 72, - "2023-10-01": 70, - "2021-10-01": 60, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.RI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.RI", - "description": null, - "label": "RI", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.SC": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.SC", - "description": null, - "label": "SC", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.SD": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.SD", - "description": null, - "label": "SD", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 132.221230474976, - "2033-10-01": 129.315269365636, - "2032-10-01": 126.476888747211, - "2031-10-01": 123.7060886197, - "2030-10-01": 121.002868983105, - "2029-10-01": 118.367229837424, - "2028-10-01": 115.799171182659, - "2027-10-01": 113.366273509723, - "2026-10-01": 110.967166082244, - "2025-10-01": 108.534268409308, - "2024-10-01": 106, - "2023-10-01": 103, - "2021-10-01": 91, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.TN": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.TN", - "description": null, - "label": "TN", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.TX": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.TX", - "description": null, - "label": "TX", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.UT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.UT", - "description": null, - "label": "UT", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.VA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.VA", - "description": null, - "label": "VA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.VI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.VI", - "description": null, - "label": "VI", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.VT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.VT", - "description": null, - "label": "VT", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.WA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.WA", - "description": null, - "label": "WA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.WI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.WI", - "description": null, - "label": "WI", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 188.3528849219, - "2033-10-01": 184.213261077463, - "2032-10-01": 180.169907554989, - "2031-10-01": 176.222824354479, - "2030-10-01": 172.372011475932, - "2029-10-01": 168.61746891935, - "2028-10-01": 164.959196684731, - "2027-10-01": 161.493465094039, - "2026-10-01": 158.075868664329, - "2025-10-01": 154.610137073637, - "2024-10-01": 151, - "2023-10-01": 144, - "2021-10-01": 140, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.WV": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.WV", - "description": null, - "label": "WV", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 107.273828498566, - "2033-10-01": 104.916161938157, - "2032-10-01": 102.613324832643, - "2031-10-01": 100.365317182021, - "2030-10-01": 98.1721389862926, - "2029-10-01": 96.0337902454575, - "2028-10-01": 93.9502709595155, - "2027-10-01": 91.9764105833599, - "2026-10-01": 90.0299649346509, - "2025-10-01": 88.0561045584954, - "2024-10-01": 86, - "2023-10-01": 79, - "2021-10-01": 77, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.WY": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.WY", - "description": null, - "label": "WY", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.PW": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.PW", - "description": null, - "label": "PW", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.PR": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.PR", - "description": null, - "label": "PR", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.AP": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.AP", - "description": null, - "label": "AP", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.AE": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.AE", - "description": null, - "label": "AE", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.MP": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.MP", - "description": null, - "label": "MP", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.electricity.AA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.electricity.AA", - "description": null, - "label": "AA", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage": { - "type": "parameterNode", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage", - "description": "Utility allowance for households whose utility expenses are only sewage-related (or, if the state does not have a defined limited utility allowance, households with sewage expenses but not heating/cooling expenses).", - "label": "SNAP standard utility allowance for sewage expenses", - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.AK": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.AK", - "description": null, - "label": "AK", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 75.6670566912153, - "2033-10-01": 74.0040444562435, - "2032-10-01": 72.3797069244106, - "2031-10-01": 70.7940440957166, - "2030-10-01": 69.2470559701615, - "2029-10-01": 67.7387425477452, - "2028-10-01": 66.2691038284679, - "2027-10-01": 64.8768145154683, - "2026-10-01": 63.5038625540381, - "2025-10-01": 62.1115732410385, - "2024-10-01": 60.6612718733305, - "2023-10-01": 59, - "2021-10-01": 37, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.AL": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.AL", - "description": null, - "label": "AL", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.AR": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.AR", - "description": null, - "label": "AR", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.AZ": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.AZ", - "description": null, - "label": "AZ", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.CA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.CA", - "description": null, - "label": "CA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.CO": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.CO", - "description": null, - "label": "CO", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 86.0685368186165, - "2033-10-01": 84.1769206248008, - "2032-10-01": 82.3292955052598, - "2031-10-01": 80.5256614599936, - "2030-10-01": 78.7660184890022, - "2029-10-01": 77.0503665922856, - "2028-10-01": 75.3787057698438, - "2027-10-01": 73.7950270959515, - "2026-10-01": 72.2333439591967, - "2025-10-01": 70.6496652853044, - "2024-10-01": 69, - "2023-10-01": 67, - "2022-10-01": 64, - "2021-10-01": 59, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.CT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.CT", - "description": null, - "label": "CT", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.DC": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.DC", - "description": null, - "label": "DC", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 109.768568696207, - "2033-10-01": 107.356072680905, - "2032-10-01": 104.999681224099, - "2031-10-01": 102.699394325789, - "2030-10-01": 100.455211985974, - "2029-10-01": 98.2671342046541, - "2028-10-01": 96.1351609818298, - "2027-10-01": 94.1153968759962, - "2026-10-01": 92.1236850494103, - "2025-10-01": 90.1039209435767, - "2024-10-01": 88, - "2023-10-01": 84, - "2021-10-01": 73, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.DE": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.DE", - "description": null, - "label": "DE", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 123.489639783232, - "2033-10-01": 120.775581766018, - "2032-10-01": 118.124641377112, - "2031-10-01": 115.536818616513, - "2030-10-01": 113.012113484221, - "2029-10-01": 110.550525980236, - "2028-10-01": 108.152056104558, - "2027-10-01": 105.879821485496, - "2026-10-01": 103.639145680587, - "2025-10-01": 101.366911061524, - "2024-10-01": 99, - "2023-10-01": 82, - "2021-10-01": 75, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.FL": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.FL", - "description": null, - "label": "FL", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.GA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.GA", - "description": null, - "label": "GA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.GU": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.GU", - "description": null, - "label": "GU", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 35.90978961617, - "2033-10-01": 35.1205634707596, - "2032-10-01": 34.3496914217542, - "2031-10-01": 33.5971734691537, - "2030-10-01": 32.863009612958, - "2029-10-01": 32.1471998531672, - "2028-10-01": 31.4497441897814, - "2027-10-01": 30.7889967192053, - "2026-10-01": 30.1374262968316, - "2025-10-01": 29.4766788262555, - "2024-10-01": 28.7884002110721, - "2023-10-01": 28, - "2021-10-01": 28, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.HI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.HI", - "description": null, - "label": "HI", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 120.994899585591, - "2033-10-01": 118.335671023271, - "2032-10-01": 115.738284985655, - "2031-10-01": 113.202741472745, - "2030-10-01": 110.729040484539, - "2029-10-01": 108.317182021039, - "2028-10-01": 105.967166082244, - "2027-10-01": 103.740835192859, - "2026-10-01": 101.545425565827, - "2025-10-01": 99.3190946764425, - "2024-10-01": 97, - "2023-10-01": 95, - "2021-10-01": 94, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.IA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.IA", - "description": null, - "label": "IA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.ID": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.ID", - "description": null, - "label": "ID", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 165.44153073164, - "2033-10-01": 161.805453133143, - "2032-10-01": 158.253935478796, - "2031-10-01": 154.786977768601, - "2030-10-01": 151.404580002557, - "2029-10-01": 148.106742180663, - "2028-10-01": 144.893464302921, - "2027-10-01": 141.849306313481, - "2026-10-01": 138.847428296117, - "2025-10-01": 135.803270306677, - "2024-10-01": 132.632272401011, - "2023-10-01": 129, - "2021-10-01": 135, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.IL": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.IL", - "description": null, - "label": "IL", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 94.8001275103602, - "2033-10-01": 92.7166082244182, - "2032-10-01": 90.6815428753586, - "2031-10-01": 88.6949314631814, - "2030-10-01": 86.7567739878865, - "2029-10-01": 84.867070449474, - "2028-10-01": 83.0258208479439, - "2027-10-01": 81.2814791201785, - "2026-10-01": 79.5613643608543, - "2025-10-01": 77.8170226330889, - "2024-10-01": 76, - "2023-10-01": 62, - "2021-10-01": 59, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.IN": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.IN", - "description": null, - "label": "IN", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 79.2343179969694, - "2033-10-01": 77.4929044146184, - "2032-10-01": 75.7919888225547, - "2031-10-01": 74.1315712207782, - "2030-10-01": 72.5116516092889, - "2029-10-01": 70.9322299880869, - "2028-10-01": 69.393306357172, - "2027-10-01": 67.9353787068317, - "2026-10-01": 66.4977000516349, - "2025-10-01": 65.0397724012946, - "2024-10-01": 63.5210977655234, - "2023-10-01": 61.7815065927353, - "2023-05-01": 60, - "2021-10-01": 57, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.KS": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.KS", - "description": null, - "label": "KS", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.KY": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.KY", - "description": null, - "label": "KY", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.LA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.LA", - "description": null, - "label": "LA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.MA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.MA", - "description": null, - "label": "MA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.MD": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.MD", - "description": null, - "label": "MD", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.ME": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.ME", - "description": null, - "label": "ME", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.MI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.MI", - "description": null, - "label": "MI", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 143.447561364361, - "2033-10-01": 140.294867708001, - "2032-10-01": 137.215492508766, - "2031-10-01": 134.209435766656, - "2030-10-01": 131.27669748167, - "2029-10-01": 128.417277653809, - "2028-10-01": 125.631176283073, - "2027-10-01": 122.991711826586, - "2026-10-01": 120.388906598661, - "2025-10-01": 117.749442142174, - "2024-10-01": 115, - "2023-10-01": 109, - "2021-10-01": 100, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.MN": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.MN", - "description": null, - "label": "MN", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.MO": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.MO", - "description": null, - "label": "MO", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 197.084475613644, - "2033-10-01": 192.75294867708, - "2032-10-01": 188.522154925088, - "2031-10-01": 184.392094357667, - "2030-10-01": 180.362766974817, - "2029-10-01": 176.434172776538, - "2028-10-01": 172.606311762831, - "2027-10-01": 168.979917118266, - "2026-10-01": 165.403889065987, - "2025-10-01": 161.777494421422, - "2024-10-01": 158, - "2023-10-01": 153, - "2021-10-01": 134, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.MS": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.MS", - "description": null, - "label": "MS", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.MT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.MT", - "description": null, - "label": "MT", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 140.95282116672, - "2033-10-01": 137.854956965253, - "2032-10-01": 134.82913611731, - "2031-10-01": 131.875358622888, - "2030-10-01": 128.993624481989, - "2029-10-01": 126.183933694613, - "2028-10-01": 123.446286260759, - "2027-10-01": 120.85272553395, - "2026-10-01": 118.295186483902, - "2025-10-01": 115.701625757093, - "2024-10-01": 113, - "2023-10-01": 105, - "2021-10-01": 180, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.NC": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.NC", - "description": null, - "label": "NC", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.ND": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.ND", - "description": null, - "label": "ND", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 153.426522154925, - "2033-10-01": 150.054510678993, - "2032-10-01": 146.760918074594, - "2031-10-01": 143.545744341728, - "2030-10-01": 140.408989480395, - "2029-10-01": 137.350653490596, - "2028-10-01": 134.37073637233, - "2027-10-01": 131.547656997131, - "2026-10-01": 128.763787057698, - "2025-10-01": 125.940707682499, - "2024-10-01": 123, - "2023-10-01": 118, - "2021-10-01": 208, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.NE": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.NE", - "description": null, - "label": "NE", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 77.3369461268728, - "2033-10-01": 75.6372330251833, - "2032-10-01": 73.977048135161, - "2031-10-01": 72.3563914568059, - "2030-10-01": 70.775262990118, - "2029-10-01": 69.2336627350972, - "2028-10-01": 67.7315906917437, - "2027-10-01": 66.3085750717246, - "2026-10-01": 64.9053235575391, - "2025-10-01": 63.4823079375199, - "2024-10-01": 62, - "2023-10-01": 60, - "2021-10-01": 54, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.NH": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.NH", - "description": null, - "label": "NH", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.NJ": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.NJ", - "description": null, - "label": "NJ", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.NM": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.NM", - "description": null, - "label": "NM", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.NV": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.NV", - "description": null, - "label": "NV", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 93.5527574115397, - "2033-10-01": 91.4966528530443, - "2032-10-01": 89.4883646796302, - "2031-10-01": 87.5278928912974, - "2030-10-01": 85.6152374880459, - "2029-10-01": 83.7503984698757, - "2028-10-01": 81.9333758367867, - "2027-10-01": 80.2119859738604, - "2026-10-01": 78.5145043034747, - "2025-10-01": 76.7931144405483, - "2024-10-01": 75, - "2023-10-01": 81, - "2021-10-01": 56, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.NY": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.NY", - "description": null, - "label": "NY", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.OH": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.OH", - "description": null, - "label": "OH", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 130.973860376156, - "2033-10-01": 128.095313994262, - "2032-10-01": 125.283710551482, - "2031-10-01": 122.539050047816, - "2030-10-01": 119.861332483264, - "2029-10-01": 117.250557857826, - "2028-10-01": 114.706726171501, - "2027-10-01": 112.296780363405, - "2026-10-01": 109.920306024865, - "2025-10-01": 107.510360216768, - "2024-10-01": 105, - "2023-10-01": 102, - "2021-10-01": 84, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.OK": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.OK", - "description": null, - "label": "OK", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.OR": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.OR", - "description": null, - "label": "OR", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 78.5843162256933, - "2033-10-01": 76.8571883965572, - "2032-10-01": 75.1702263308894, - "2031-10-01": 73.5234300286898, - "2030-10-01": 71.9167994899586, - "2029-10-01": 70.3503347146956, - "2028-10-01": 68.8240357029009, - "2027-10-01": 67.3780682180427, - "2026-10-01": 65.9521836149187, - "2025-10-01": 64.5062161300606, - "2024-10-01": 63, - "2023-10-01": 59, - "2021-10-01": 57, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.PA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.PA", - "description": null, - "label": "PA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 89.8106471150781, - "2033-10-01": 87.8367867389225, - "2032-10-01": 85.908830092445, - "2031-10-01": 84.0267771756455, - "2030-10-01": 82.1906279885241, - "2029-10-01": 80.4003825310807, - "2028-10-01": 78.6560408033153, - "2027-10-01": 77.003506534906, - "2026-10-01": 75.3739241313357, - "2025-10-01": 73.7213898629264, - "2024-10-01": 72, - "2023-10-01": 70, - "2021-10-01": 60, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.RI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.RI", - "description": null, - "label": "RI", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.SC": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.SC", - "description": null, - "label": "SC", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.SD": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.SD", - "description": null, - "label": "SD", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 132.221230474976, - "2033-10-01": 129.315269365636, - "2032-10-01": 126.476888747211, - "2031-10-01": 123.7060886197, - "2030-10-01": 121.002868983105, - "2029-10-01": 118.367229837424, - "2028-10-01": 115.799171182659, - "2027-10-01": 113.366273509723, - "2026-10-01": 110.967166082244, - "2025-10-01": 108.534268409308, - "2024-10-01": 106, - "2023-10-01": 103, - "2021-10-01": 91, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.TN": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.TN", - "description": null, - "label": "TN", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.TX": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.TX", - "description": null, - "label": "TX", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.UT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.UT", - "description": null, - "label": "UT", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.VA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.VA", - "description": null, - "label": "VA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.VI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.VI", - "description": null, - "label": "VI", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.VT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.VT", - "description": null, - "label": "VT", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.WA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.WA", - "description": null, - "label": "WA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.WI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.WI", - "description": null, - "label": "WI", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 128.479120178515, - "2033-10-01": 125.655403251514, - "2032-10-01": 122.897354160026, - "2031-10-01": 120.204972904048, - "2030-10-01": 117.578259483583, - "2029-10-01": 115.017213898629, - "2028-10-01": 112.521836149187, - "2027-10-01": 110.157794070768, - "2026-10-01": 107.826585910105, - "2025-10-01": 105.462543831686, - "2024-10-01": 103, - "2023-10-01": 99, - "2021-10-01": 93, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.WV": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.WV", - "description": null, - "label": "WV", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 107.273828498566, - "2033-10-01": 104.916161938157, - "2032-10-01": 102.613324832643, - "2031-10-01": 100.365317182021, - "2030-10-01": 98.1721389862926, - "2029-10-01": 96.0337902454575, - "2028-10-01": 93.9502709595155, - "2027-10-01": 91.9764105833599, - "2026-10-01": 90.0299649346509, - "2025-10-01": 88.0561045584954, - "2024-10-01": 86, - "2023-10-01": 79, - "2021-10-01": 77, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.WY": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.WY", - "description": null, - "label": "WY", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.PW": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.PW", - "description": null, - "label": "PW", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.PR": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.PR", - "description": null, - "label": "PR", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.AP": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.AP", - "description": null, - "label": "AP", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.AE": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.AE", - "description": null, - "label": "AE", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.MP": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.MP", - "description": null, - "label": "MP", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.sewage.AA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.sewage.AA", - "description": null, - "label": "AA", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel": { - "type": "parameterNode", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel", - "description": "Utility allowance for households whose utility expenses are only gas and fuel-related (or, if the state does not have a defined limited utility allowance, households with gas and fuel expenses but not heating/cooling expenses).", - "label": "SNAP standard utility allowance for gas and fuel expenses", - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.AK": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.AK", - "description": null, - "label": "AK", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 376.7057698438, - "2033-10-01": 368.426522154925, - "2032-10-01": 360.339815109978, - "2031-10-01": 352.445648708958, - "2030-10-01": 344.744022951865, - "2029-10-01": 337.234937838699, - "2028-10-01": 329.918393369461, - "2027-10-01": 322.986930188078, - "2026-10-01": 316.151737328658, - "2025-10-01": 309.220274147274, - "2024-10-01": 302, - "2023-10-01": 330, - "2021-10-01": 113, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.AL": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.AL", - "description": null, - "label": "AL", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.AR": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.AR", - "description": null, - "label": "AR", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.AZ": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.AZ", - "description": null, - "label": "AZ", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.CA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.CA", - "description": null, - "label": "CA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.CO": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.CO", - "description": null, - "label": "CO", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 86.0685368186165, - "2033-10-01": 84.1769206248008, - "2032-10-01": 82.3292955052598, - "2031-10-01": 80.5256614599936, - "2030-10-01": 78.7660184890022, - "2029-10-01": 77.0503665922856, - "2028-10-01": 75.3787057698438, - "2027-10-01": 73.7950270959515, - "2026-10-01": 72.2333439591967, - "2025-10-01": 70.6496652853044, - "2024-10-01": 69, - "2023-10-01": 67, - "2022-10-01": 64, - "2021-10-01": 59, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.CT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.CT", - "description": null, - "label": "CT", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.DC": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.DC", - "description": null, - "label": "DC", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 109.768568696207, - "2033-10-01": 107.356072680905, - "2032-10-01": 104.999681224099, - "2031-10-01": 102.699394325789, - "2030-10-01": 100.455211985974, - "2029-10-01": 98.2671342046541, - "2028-10-01": 96.1351609818298, - "2027-10-01": 94.1153968759962, - "2026-10-01": 92.1236850494103, - "2025-10-01": 90.1039209435767, - "2024-10-01": 88, - "2023-10-01": 84, - "2021-10-01": 73, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.DE": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.DE", - "description": null, - "label": "DE", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 123.489639783232, - "2033-10-01": 120.775581766018, - "2032-10-01": 118.124641377112, - "2031-10-01": 115.536818616513, - "2030-10-01": 113.012113484221, - "2029-10-01": 110.550525980236, - "2028-10-01": 108.152056104558, - "2027-10-01": 105.879821485496, - "2026-10-01": 103.639145680587, - "2025-10-01": 101.366911061524, - "2024-10-01": 99, - "2023-10-01": 82, - "2021-10-01": 75, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.FL": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.FL", - "description": null, - "label": "FL", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.GA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.GA", - "description": null, - "label": "GA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.GU": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.GU", - "description": null, - "label": "GU", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 46.1697295065042, - "2033-10-01": 45.155010176691, - "2032-10-01": 44.1638889708268, - "2031-10-01": 43.1963658889118, - "2030-10-01": 42.252440930946, - "2029-10-01": 41.3321140969293, - "2028-10-01": 40.4353853868617, - "2027-10-01": 39.5858529246925, - "2026-10-01": 38.7481195244978, - "2025-10-01": 37.8985870623285, - "2024-10-01": 37.0136574142356, - "2023-10-01": 36, - "2021-10-01": 30, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.HI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.HI", - "description": null, - "label": "HI", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 362.984698756774, - "2033-10-01": 355.007013069812, - "2032-10-01": 347.214854956965, - "2031-10-01": 339.608224418234, - "2030-10-01": 332.187121453618, - "2029-10-01": 324.951546063118, - "2028-10-01": 317.901498246733, - "2027-10-01": 311.222505578578, - "2026-10-01": 304.636276697482, - "2025-10-01": 297.957284029327, - "2024-10-01": 291, - "2023-10-01": 300, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.IA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.IA", - "description": null, - "label": "IA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.ID": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.ID", - "description": null, - "label": "ID", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 165.44153073164, - "2033-10-01": 161.805453133143, - "2032-10-01": 158.253935478796, - "2031-10-01": 154.786977768601, - "2030-10-01": 151.404580002557, - "2029-10-01": 148.106742180663, - "2028-10-01": 144.893464302921, - "2027-10-01": 141.849306313481, - "2026-10-01": 138.847428296117, - "2025-10-01": 135.803270306677, - "2024-10-01": 132.632272401011, - "2023-10-01": 129, - "2021-10-01": 135, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.IL": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.IL", - "description": null, - "label": "IL", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 94.8001275103602, - "2033-10-01": 92.7166082244182, - "2032-10-01": 90.6815428753586, - "2031-10-01": 88.6949314631814, - "2030-10-01": 86.7567739878865, - "2029-10-01": 84.867070449474, - "2028-10-01": 83.0258208479439, - "2027-10-01": 81.2814791201785, - "2026-10-01": 79.5613643608543, - "2025-10-01": 77.8170226330889, - "2024-10-01": 76, - "2023-10-01": 62, - "2021-10-01": 59, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.IN": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.IN", - "description": null, - "label": "IN", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 79.2343179969694, - "2033-10-01": 77.4929044146184, - "2032-10-01": 75.7919888225547, - "2031-10-01": 74.1315712207782, - "2030-10-01": 72.5116516092889, - "2029-10-01": 70.9322299880869, - "2028-10-01": 69.393306357172, - "2027-10-01": 67.9353787068317, - "2026-10-01": 66.4977000516349, - "2025-10-01": 65.0397724012946, - "2024-10-01": 63.5210977655234, - "2023-10-01": 61.7815065927353, - "2023-05-01": 60, - "2021-10-01": 57, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.KS": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.KS", - "description": null, - "label": "KS", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.KY": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.KY", - "description": null, - "label": "KY", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.LA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.LA", - "description": null, - "label": "LA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.MA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.MA", - "description": null, - "label": "MA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.MD": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.MD", - "description": null, - "label": "MD", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.ME": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.ME", - "description": null, - "label": "ME", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.MI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.MI", - "description": null, - "label": "MI", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 39.9158431622569, - "2033-10-01": 39.0385718839656, - "2032-10-01": 38.1817022633089, - "2031-10-01": 37.3452343002869, - "2030-10-01": 36.5291679948996, - "2029-10-01": 35.733503347147, - "2028-10-01": 34.958240357029, - "2027-10-01": 34.2237806821804, - "2026-10-01": 33.4995218361492, - "2025-10-01": 32.7650621613006, - "2024-10-01": 32, - "2023-10-01": 34, - "2021-10-01": 31, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.MN": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.MN", - "description": null, - "label": "MN", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.MO": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.MO", - "description": null, - "label": "MO", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 197.084475613644, - "2033-10-01": 192.75294867708, - "2032-10-01": 188.522154925088, - "2031-10-01": 184.392094357667, - "2030-10-01": 180.362766974817, - "2029-10-01": 176.434172776538, - "2028-10-01": 172.606311762831, - "2027-10-01": 168.979917118266, - "2026-10-01": 165.403889065987, - "2025-10-01": 161.777494421422, - "2024-10-01": 158, - "2023-10-01": 153, - "2021-10-01": 134, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.MS": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.MS", - "description": null, - "label": "MS", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.MT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.MT", - "description": null, - "label": "MT", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 140.95282116672, - "2033-10-01": 137.854956965253, - "2032-10-01": 134.82913611731, - "2031-10-01": 131.875358622888, - "2030-10-01": 128.993624481989, - "2029-10-01": 126.183933694613, - "2028-10-01": 123.446286260759, - "2027-10-01": 120.85272553395, - "2026-10-01": 118.295186483902, - "2025-10-01": 115.701625757093, - "2024-10-01": 113, - "2023-10-01": 105, - "2021-10-01": 180, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.NC": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.NC", - "description": null, - "label": "NC", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.ND": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.ND", - "description": null, - "label": "ND", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 153.426522154925, - "2033-10-01": 150.054510678993, - "2032-10-01": 146.760918074594, - "2031-10-01": 143.545744341728, - "2030-10-01": 140.408989480395, - "2029-10-01": 137.350653490596, - "2028-10-01": 134.37073637233, - "2027-10-01": 131.547656997131, - "2026-10-01": 128.763787057698, - "2025-10-01": 125.940707682499, - "2024-10-01": 123, - "2023-10-01": 118, - "2021-10-01": 208, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.NE": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.NE", - "description": null, - "label": "NE", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 77.3369461268728, - "2033-10-01": 75.6372330251833, - "2032-10-01": 73.977048135161, - "2031-10-01": 72.3563914568059, - "2030-10-01": 70.775262990118, - "2029-10-01": 69.2336627350972, - "2028-10-01": 67.7315906917437, - "2027-10-01": 66.3085750717246, - "2026-10-01": 64.9053235575391, - "2025-10-01": 63.4823079375199, - "2024-10-01": 62, - "2023-10-01": 60, - "2021-10-01": 54, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.NH": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.NH", - "description": null, - "label": "NH", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.NJ": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.NJ", - "description": null, - "label": "NJ", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.NM": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.NM", - "description": null, - "label": "NM", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.NV": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.NV", - "description": null, - "label": "NV", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 93.5527574115397, - "2033-10-01": 91.4966528530443, - "2032-10-01": 89.4883646796302, - "2031-10-01": 87.5278928912974, - "2030-10-01": 85.6152374880459, - "2029-10-01": 83.7503984698757, - "2028-10-01": 81.9333758367867, - "2027-10-01": 80.2119859738604, - "2026-10-01": 78.5145043034747, - "2025-10-01": 76.7931144405483, - "2024-10-01": 75, - "2023-10-01": 81, - "2021-10-01": 56, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.NY": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.NY", - "description": null, - "label": "NY", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.OH": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.OH", - "description": null, - "label": "OH", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 130.973860376156, - "2033-10-01": 128.095313994262, - "2032-10-01": 125.283710551482, - "2031-10-01": 122.539050047816, - "2030-10-01": 119.861332483264, - "2029-10-01": 117.250557857826, - "2028-10-01": 114.706726171501, - "2027-10-01": 112.296780363405, - "2026-10-01": 109.920306024865, - "2025-10-01": 107.510360216768, - "2024-10-01": 105, - "2023-10-01": 102, - "2021-10-01": 84, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.OK": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.OK", - "description": null, - "label": "OK", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.OR": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.OR", - "description": null, - "label": "OR", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 78.5843162256933, - "2033-10-01": 76.8571883965572, - "2032-10-01": 75.1702263308894, - "2031-10-01": 73.5234300286898, - "2030-10-01": 71.9167994899586, - "2029-10-01": 70.3503347146956, - "2028-10-01": 68.8240357029009, - "2027-10-01": 67.3780682180427, - "2026-10-01": 65.9521836149187, - "2025-10-01": 64.5062161300606, - "2024-10-01": 63, - "2023-10-01": 59, - "2021-10-01": 57, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.PA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.PA", - "description": null, - "label": "PA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 89.8106471150781, - "2033-10-01": 87.8367867389225, - "2032-10-01": 85.908830092445, - "2031-10-01": 84.0267771756455, - "2030-10-01": 82.1906279885241, - "2029-10-01": 80.4003825310807, - "2028-10-01": 78.6560408033153, - "2027-10-01": 77.003506534906, - "2026-10-01": 75.3739241313357, - "2025-10-01": 73.7213898629264, - "2024-10-01": 72, - "2023-10-01": 70, - "2021-10-01": 60, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.RI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.RI", - "description": null, - "label": "RI", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.SC": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.SC", - "description": null, - "label": "SC", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.SD": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.SD", - "description": null, - "label": "SD", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 132.221230474976, - "2033-10-01": 129.315269365636, - "2032-10-01": 126.476888747211, - "2031-10-01": 123.7060886197, - "2030-10-01": 121.002868983105, - "2029-10-01": 118.367229837424, - "2028-10-01": 115.799171182659, - "2027-10-01": 113.366273509723, - "2026-10-01": 110.967166082244, - "2025-10-01": 108.534268409308, - "2024-10-01": 106, - "2023-10-01": 103, - "2021-10-01": 91, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.TN": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.TN", - "description": null, - "label": "TN", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.TX": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.TX", - "description": null, - "label": "TX", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.UT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.UT", - "description": null, - "label": "UT", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.VA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.VA", - "description": null, - "label": "VA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.VI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.VI", - "description": null, - "label": "VI", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.VT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.VT", - "description": null, - "label": "VT", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.WA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.WA", - "description": null, - "label": "WA", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.WI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.WI", - "description": null, - "label": "WI", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 58.6263946445649, - "2033-10-01": 57.3379024545744, - "2032-10-01": 56.0793751992349, - "2031-10-01": 54.8508128785464, - "2030-10-01": 53.6522154925088, - "2029-10-01": 52.4835830411221, - "2028-10-01": 51.3449155243864, - "2027-10-01": 50.2661778769525, - "2026-10-01": 49.2024226968441, - "2025-10-01": 48.1236850494103, - "2024-10-01": 47, - "2023-10-01": 42, - "2021-10-01": 37, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.WV": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.WV", - "description": null, - "label": "WV", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 107.273828498566, - "2033-10-01": 104.916161938157, - "2032-10-01": 102.613324832643, - "2031-10-01": 100.365317182021, - "2030-10-01": 98.1721389862926, - "2029-10-01": 96.0337902454575, - "2028-10-01": 93.9502709595155, - "2027-10-01": 91.9764105833599, - "2026-10-01": 90.0299649346509, - "2025-10-01": 88.0561045584954, - "2024-10-01": 86, - "2023-10-01": 79, - "2021-10-01": 77, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.WY": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.WY", - "description": null, - "label": "WY", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 0, - "2033-10-01": 0, - "2032-10-01": 0, - "2031-10-01": 0, - "2030-10-01": 0, - "2029-10-01": 0, - "2028-10-01": 0, - "2027-10-01": 0, - "2026-10-01": 0, - "2025-10-01": 0, - "2024-10-01": 0, - "2023-10-01": 0, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.PW": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.PW", - "description": null, - "label": "PW", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.PR": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.PR", - "description": null, - "label": "PR", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.AP": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.AP", - "description": null, - "label": "AP", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.AE": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.AE", - "description": null, - "label": "AE", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.MP": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.MP", - "description": null, - "label": "MP", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.AA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.utility.single.gas_and_fuel.AA", - "description": null, - "label": "AA", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.earned_income": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.earned_income", - "description": "Share of earned income that can be deducted from gross income for SNAP", - "label": "SNAP earned income deduction", - "unit": "/1", - "period": null, - "values": { - "2005-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense": { - "type": "parameterNode", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense", - "description": null, - "label": "excess medical expense", - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard": { - "type": "parameterNode", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard", - "description": "SNAP standard medical deduction (SMD) for households with medical expenses exceeding the threshold.", - "label": "standard", - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.AK": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.AK", - "description": null, - "label": "AK", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.AL": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.AL", - "description": null, - "label": "AL", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-10-01": 175, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.AR": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.AR", - "description": null, - "label": "AR", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-10-01": 138, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.AZ": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.AZ", - "description": null, - "label": "AZ", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 145, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.CA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.CA", - "description": null, - "label": "CA", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 150, - "2021-10-01": 120, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.CO": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.CO", - "description": null, - "label": "CO", - "unit": "currency-USD", - "period": "month", - "values": { - "2022-10-01": 165, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.CT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.CT", - "description": null, - "label": "CT", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.DC": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.DC", - "description": null, - "label": "DC", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.DE": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.DE", - "description": null, - "label": "DE", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.FL": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.FL", - "description": null, - "label": "FL", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.GA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.GA", - "description": null, - "label": "GA", - "unit": "currency-USD", - "period": "month", - "values": { - "2023-10-01": 136, - "2021-10-01": 150, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.GU": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.GU", - "description": null, - "label": "GU", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.HI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.HI", - "description": null, - "label": "HI", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.IA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.IA", - "description": null, - "label": "IA", - "unit": "currency-USD", - "period": "month", - "values": { - "2023-10-01": 125, - "2021-10-01": 110, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.ID": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.ID", - "description": null, - "label": "ID", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-10-01": 144, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.IL": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.IL", - "description": null, - "label": "IL", - "unit": "currency-USD", - "period": "month", - "values": { - "2023-10-01": 185, - "2021-10-01": 200, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.IN": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.IN", - "description": null, - "label": "IN", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.KS": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.KS", - "description": null, - "label": "KS", - "unit": "currency-USD", - "period": "month", - "values": { - "2023-10-01": 175, - "2021-10-01": 140, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.KY": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.KY", - "description": null, - "label": "KY", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.LA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.LA", - "description": null, - "label": "LA", - "unit": "currency-USD", - "period": "month", - "values": { - "2023-10-01": 161, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.MA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.MA", - "description": null, - "label": "MA", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-10-01": 155, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.MD": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.MD", - "description": null, - "label": "MD", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.ME": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.ME", - "description": null, - "label": "ME", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.MI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.MI", - "description": null, - "label": "MI", - "unit": "currency-USD", - "period": "month", - "values": { - "2023-10-01": 165, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.MN": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.MN", - "description": null, - "label": "MN", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.MO": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.MO", - "description": null, - "label": "MO", - "unit": "currency-USD", - "period": "month", - "values": { - "2023-10-01": 135, - "2021-10-01": 170, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.MS": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.MS", - "description": null, - "label": "MS", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.MT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.MT", - "description": null, - "label": "MT", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.NC": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.NC", - "description": null, - "label": "NC", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.ND": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.ND", - "description": null, - "label": "ND", - "unit": "currency-USD", - "period": "month", - "values": { - "2023-10-01": 200, - "2021-10-01": 165, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.NE": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.NE", - "description": null, - "label": "NE", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.NH": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.NH", - "description": null, - "label": "NH", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-10-01": 115, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.NJ": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.NJ", - "description": null, - "label": "NJ", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.NM": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.NM", - "description": null, - "label": "NM", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.NV": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.NV", - "description": null, - "label": "NV", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.NY": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.NY", - "description": null, - "label": "NY", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.OH": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.OH", - "description": null, - "label": "OH", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.OK": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.OK", - "description": null, - "label": "OK", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.OR": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.OR", - "description": null, - "label": "OR", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-10-01": 170, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.PA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.PA", - "description": null, - "label": "PA", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.RI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.RI", - "description": null, - "label": "RI", - "unit": "currency-USD", - "period": "month", - "values": { - "2023-10-01": 183, - "2021-10-01": 141, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.SC": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.SC", - "description": null, - "label": "SC", - "unit": "currency-USD", - "period": "month", - "values": { - "2023-10-01": 175, - "2021-10-01": 170, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.SD": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.SD", - "description": null, - "label": "SD", - "unit": "currency-USD", - "period": "month", - "values": { - "2023-10-01": 180, - "2021-10-01": 165, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.TN": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.TN", - "description": null, - "label": "TN", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.TX": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.TX", - "description": null, - "label": "TX", - "unit": "currency-USD", - "period": "month", - "values": { - "2023-10-01": 135, - "2021-10-01": 137, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.UT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.UT", - "description": null, - "label": "UT", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.VA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.VA", - "description": null, - "label": "VA", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-10-01": 200, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.VI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.VI", - "description": null, - "label": "VI", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.VT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.VT", - "description": null, - "label": "VT", - "unit": "currency-USD", - "period": "month", - "values": { - "2023-10-01": 156, - "2021-10-01": 138, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.WA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.WA", - "description": null, - "label": "WA", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.WI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.WI", - "description": null, - "label": "WI", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.WV": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.WV", - "description": null, - "label": "WV", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.WY": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.WY", - "description": null, - "label": "WY", - "unit": "currency-USD", - "period": "month", - "values": { - "2023-01-01": 138, - "2021-10-01": 0, - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.PW": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.PW", - "description": null, - "label": "PW", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.PR": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.PR", - "description": null, - "label": "PR", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.AP": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.AP", - "description": null, - "label": "AP", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.AE": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.AE", - "description": null, - "label": "AE", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.MP": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.MP", - "description": null, - "label": "MP", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.standard.AA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.standard.AA", - "description": null, - "label": "AA", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_medical_expense.disregard": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_medical_expense.disregard", - "description": "Monthly medical expenses disregarded for claiming SNAP excess medical expense deduction", - "label": "Medical expense disregard for SNAP excess medical expense deduction", - "unit": "currency-USD", - "period": "month", - "values": { - "2018-01-01": 35, - "2015-01-01": 35 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.standard": { - "type": "parameterNode", - "parameter": "gov.usda.snap.income.deductions.standard", - "description": "The USDA deducts this amount from net income when computing SNAP benefits.", - "label": "SNAP standard deduction", - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.standard.CONTIGUOUS_US": { - "type": "parameterNode", - "parameter": "gov.usda.snap.income.deductions.standard.CONTIGUOUS_US", - "description": null, - "label": "CONTIGUOUS US", - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.standard.CONTIGUOUS_US.1": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.standard.CONTIGUOUS_US.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 254.463500159388, - "2033-10-01": 248.870895760281, - "2032-10-01": 243.408351928594, - "2031-10-01": 238.075868664329, - "2030-10-01": 232.873445967485, - "2029-10-01": 227.801083838062, - "2028-10-01": 222.85878227606, - "2027-10-01": 218.1766018489, - "2026-10-01": 213.559451705451, - "2025-10-01": 208.877271278291, - "2024-10-01": 204, - "2023-10-01": 198, - "2022-10-01": 193, - "2021-10-01": 177, - "2020-10-01": 167, - "2015-01-01": 167 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.standard.CONTIGUOUS_US.2": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.standard.CONTIGUOUS_US.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 254.463500159388, - "2033-10-01": 248.870895760281, - "2032-10-01": 243.408351928594, - "2031-10-01": 238.075868664329, - "2030-10-01": 232.873445967485, - "2029-10-01": 227.801083838062, - "2028-10-01": 222.85878227606, - "2027-10-01": 218.1766018489, - "2026-10-01": 213.559451705451, - "2025-10-01": 208.877271278291, - "2024-10-01": 204, - "2023-10-01": 198, - "2022-10-01": 193, - "2021-10-01": 177, - "2020-10-01": 167, - "2015-01-01": 167 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.standard.CONTIGUOUS_US.3": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.standard.CONTIGUOUS_US.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 254.463500159388, - "2033-10-01": 248.870895760281, - "2032-10-01": 243.408351928594, - "2031-10-01": 238.075868664329, - "2030-10-01": 232.873445967485, - "2029-10-01": 227.801083838062, - "2028-10-01": 222.85878227606, - "2027-10-01": 218.1766018489, - "2026-10-01": 213.559451705451, - "2025-10-01": 208.877271278291, - "2024-10-01": 204, - "2023-10-01": 198, - "2022-10-01": 193, - "2021-10-01": 177, - "2020-10-01": 167, - "2015-01-01": 167 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.standard.CONTIGUOUS_US.4": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.standard.CONTIGUOUS_US.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 270.679311444055, - "2033-10-01": 264.730315588142, - "2032-10-01": 258.919668473064, - "2031-10-01": 253.247370098821, - "2030-10-01": 247.713420465413, - "2029-10-01": 242.31781957284, - "2028-10-01": 237.060567421103, - "2027-10-01": 232.080012751036, - "2026-10-01": 227.168632451387, - "2025-10-01": 222.18807778132, - "2024-10-01": 217, - "2023-10-01": 208, - "2022-10-01": 193, - "2021-10-01": 184, - "2020-10-01": 181, - "2015-01-01": 181 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.standard.CONTIGUOUS_US.5": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.standard.CONTIGUOUS_US.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 316.832005100414, - "2033-10-01": 309.868664328977, - "2032-10-01": 303.067261715014, - "2031-10-01": 296.427797258527, - "2030-10-01": 289.950270959516, - "2029-10-01": 283.634682817979, - "2028-10-01": 277.481032833918, - "2027-10-01": 271.651259164807, - "2026-10-01": 265.902454574434, - "2025-10-01": 260.072680905324, - "2024-10-01": 254, - "2023-10-01": 244, - "2022-10-01": 225, - "2021-10-01": 215, - "2020-10-01": 212, - "2015-01-01": 212 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.standard.CONTIGUOUS_US.6": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.standard.CONTIGUOUS_US.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 362.984698756774, - "2033-10-01": 355.007013069812, - "2032-10-01": 347.214854956965, - "2031-10-01": 339.608224418234, - "2030-10-01": 332.187121453618, - "2029-10-01": 324.951546063118, - "2028-10-01": 317.901498246733, - "2027-10-01": 311.222505578578, - "2026-10-01": 304.636276697482, - "2025-10-01": 297.957284029327, - "2024-10-01": 291, - "2023-10-01": 279, - "2022-10-01": 258, - "2021-10-01": 246, - "2020-10-01": 243, - "2015-01-01": 243 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.standard.AK": { - "type": "parameterNode", - "parameter": "gov.usda.snap.income.deductions.standard.AK", - "description": null, - "label": "AK", - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.standard.AK.1": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.standard.AK.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 434.084794389544, - "2033-10-01": 424.544469238126, - "2032-10-01": 415.226012113484, - "2031-10-01": 406.12942301562, - "2030-10-01": 397.254701944533, - "2029-10-01": 388.601848900223, - "2028-10-01": 380.17086388269, - "2027-10-01": 372.183614918712, - "2026-10-01": 364.307299968122, - "2025-10-01": 356.320051004144, - "2024-10-01": 348, - "2023-10-01": 338, - "2022-10-01": 330, - "2021-10-01": 303, - "2020-10-01": 286, - "2015-01-01": 286 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.standard.AK.2": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.standard.AK.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 434.084794389544, - "2033-10-01": 424.544469238126, - "2032-10-01": 415.226012113484, - "2031-10-01": 406.12942301562, - "2030-10-01": 397.254701944533, - "2029-10-01": 388.601848900223, - "2028-10-01": 380.17086388269, - "2027-10-01": 372.183614918712, - "2026-10-01": 364.307299968122, - "2025-10-01": 356.320051004144, - "2024-10-01": 348, - "2023-10-01": 338, - "2022-10-01": 330, - "2021-10-01": 303, - "2020-10-01": 286, - "2015-01-01": 286 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.standard.AK.3": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.standard.AK.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 434.084794389544, - "2033-10-01": 424.544469238126, - "2032-10-01": 415.226012113484, - "2031-10-01": 406.12942301562, - "2030-10-01": 397.254701944533, - "2029-10-01": 388.601848900223, - "2028-10-01": 380.17086388269, - "2027-10-01": 372.183614918712, - "2026-10-01": 364.307299968122, - "2025-10-01": 356.320051004144, - "2024-10-01": 348, - "2023-10-01": 338, - "2022-10-01": 330, - "2021-10-01": 303, - "2020-10-01": 286, - "2015-01-01": 286 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.standard.AK.4": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.standard.AK.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 434.084794389544, - "2033-10-01": 424.544469238126, - "2032-10-01": 415.226012113484, - "2031-10-01": 406.12942301562, - "2030-10-01": 397.254701944533, - "2029-10-01": 388.601848900223, - "2028-10-01": 380.17086388269, - "2027-10-01": 372.183614918712, - "2026-10-01": 364.307299968122, - "2025-10-01": 356.320051004144, - "2024-10-01": 348, - "2023-10-01": 338, - "2022-10-01": 330, - "2021-10-01": 303, - "2020-10-01": 286, - "2015-01-01": 286 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.standard.AK.5": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.standard.AK.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 434.084794389544, - "2033-10-01": 424.544469238126, - "2032-10-01": 415.226012113484, - "2031-10-01": 406.12942301562, - "2030-10-01": 397.254701944533, - "2029-10-01": 388.601848900223, - "2028-10-01": 380.17086388269, - "2027-10-01": 372.183614918712, - "2026-10-01": 364.307299968122, - "2025-10-01": 356.320051004144, - "2024-10-01": 348, - "2023-10-01": 338, - "2022-10-01": 330, - "2021-10-01": 303, - "2020-10-01": 286, - "2015-01-01": 286 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.standard.AK.6": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.standard.AK.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 454.042715970673, - "2033-10-01": 444.063755180108, - "2032-10-01": 434.316863245139, - "2031-10-01": 424.802040165764, - "2030-10-01": 415.519285941983, - "2029-10-01": 406.468600573797, - "2028-10-01": 397.649984061205, - "2027-10-01": 389.295505259802, - "2026-10-01": 381.057060886197, - "2025-10-01": 372.702582084794, - "2024-10-01": 364, - "2023-10-01": 349, - "2022-10-01": 330, - "2021-10-01": 308, - "2020-10-01": 304, - "2015-01-01": 304 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.standard.GU": { - "type": "parameterNode", - "parameter": "gov.usda.snap.income.deductions.standard.GU", - "description": null, - "label": "GU", - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.standard.GU.1": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.standard.GU.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 510.174370417596, - "2033-10-01": 498.961746891935, - "2032-10-01": 488.009882052917, - "2031-10-01": 477.318775900542, - "2030-10-01": 466.88842843481, - "2029-10-01": 456.718839655722, - "2028-10-01": 446.810009563277, - "2027-10-01": 437.422696844119, - "2026-10-01": 428.165763468282, - "2025-10-01": 418.778450749123, - "2024-10-01": 409, - "2023-10-01": 397, - "2022-10-01": 387, - "2021-10-01": 356, - "2020-10-01": 336, - "2015-01-01": 336 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.standard.GU.2": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.standard.GU.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 510.174370417596, - "2033-10-01": 498.961746891935, - "2032-10-01": 488.009882052917, - "2031-10-01": 477.318775900542, - "2030-10-01": 466.88842843481, - "2029-10-01": 456.718839655722, - "2028-10-01": 446.810009563277, - "2027-10-01": 437.422696844119, - "2026-10-01": 428.165763468282, - "2025-10-01": 418.778450749123, - "2024-10-01": 409, - "2023-10-01": 397, - "2022-10-01": 387, - "2021-10-01": 356, - "2020-10-01": 336, - "2015-01-01": 336 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.standard.GU.3": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.standard.GU.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 510.174370417596, - "2033-10-01": 498.961746891935, - "2032-10-01": 488.009882052917, - "2031-10-01": 477.318775900542, - "2030-10-01": 466.88842843481, - "2029-10-01": 456.718839655722, - "2028-10-01": 446.810009563277, - "2027-10-01": 437.422696844119, - "2026-10-01": 428.165763468282, - "2025-10-01": 418.778450749123, - "2024-10-01": 409, - "2023-10-01": 397, - "2022-10-01": 387, - "2021-10-01": 356, - "2020-10-01": 336, - "2015-01-01": 336 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.standard.GU.4": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.standard.GU.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 538.863882690469, - "2033-10-01": 527.020720433535, - "2032-10-01": 515.45298055467, - "2031-10-01": 504.160663053873, - "2030-10-01": 493.143767931144, - "2029-10-01": 482.402295186484, - "2028-10-01": 471.936244819892, - "2027-10-01": 462.021039209436, - "2026-10-01": 452.243544788014, - "2025-10-01": 442.328339177558, - "2024-10-01": 432, - "2023-10-01": 416, - "2022-10-01": 387, - "2021-10-01": 367, - "2020-10-01": 363, - "2015-01-01": 363 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.standard.GU.5": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.standard.GU.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 632.416640102008, - "2033-10-01": 618.51737328658, - "2032-10-01": 604.9413452343, - "2031-10-01": 591.688555945171, - "2030-10-01": 578.75900541919, - "2029-10-01": 566.15269365636, - "2028-10-01": 553.869620656678, - "2027-10-01": 542.233025183296, - "2026-10-01": 530.758049091489, - "2025-10-01": 519.121453618106, - "2024-10-01": 507, - "2023-10-01": 487, - "2022-10-01": 450, - "2021-10-01": 430, - "2020-10-01": 425, - "2015-01-01": 425 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.standard.GU.6": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.standard.GU.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 724.722027414727, - "2033-10-01": 708.79407076825, - "2032-10-01": 693.236531718202, - "2031-10-01": 678.049410264584, - "2030-10-01": 663.232706407396, - "2029-10-01": 648.786420146637, - "2028-10-01": 634.710551482308, - "2027-10-01": 621.375518010838, - "2026-10-01": 608.225693337584, - "2025-10-01": 594.890659866114, - "2024-10-01": 581, - "2023-10-01": 558, - "2022-10-01": 515, - "2021-10-01": 493, - "2020-10-01": 487, - "2015-01-01": 487 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.standard.HI": { - "type": "parameterNode", - "parameter": "gov.usda.snap.income.deductions.standard.HI", - "description": null, - "label": "HI", - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.standard.HI.1": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.standard.HI.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 357.995218361492, - "2033-10-01": 350.127191584316, - "2032-10-01": 342.442142174052, - "2031-10-01": 334.940070130698, - "2030-10-01": 327.620975454256, - "2029-10-01": 320.484858144724, - "2028-10-01": 313.531718202104, - "2027-10-01": 306.944532993306, - "2026-10-01": 300.448836467963, - "2025-10-01": 293.861651259165, - "2024-10-01": 287, - "2023-10-01": 279, - "2022-10-01": 272, - "2021-10-01": 250, - "2020-10-01": 236, - "2015-01-01": 236 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.standard.HI.2": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.standard.HI.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 357.995218361492, - "2033-10-01": 350.127191584316, - "2032-10-01": 342.442142174052, - "2031-10-01": 334.940070130698, - "2030-10-01": 327.620975454256, - "2029-10-01": 320.484858144724, - "2028-10-01": 313.531718202104, - "2027-10-01": 306.944532993306, - "2026-10-01": 300.448836467963, - "2025-10-01": 293.861651259165, - "2024-10-01": 287, - "2023-10-01": 279, - "2022-10-01": 272, - "2021-10-01": 250, - "2020-10-01": 236, - "2015-01-01": 236 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.standard.HI.3": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.standard.HI.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 357.995218361492, - "2033-10-01": 350.127191584316, - "2032-10-01": 342.442142174052, - "2031-10-01": 334.940070130698, - "2030-10-01": 327.620975454256, - "2029-10-01": 320.484858144724, - "2028-10-01": 313.531718202104, - "2027-10-01": 306.944532993306, - "2026-10-01": 300.448836467963, - "2025-10-01": 293.861651259165, - "2024-10-01": 287, - "2023-10-01": 279, - "2022-10-01": 272, - "2021-10-01": 250, - "2020-10-01": 236, - "2015-01-01": 236 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.standard.HI.4": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.standard.HI.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 357.995218361492, - "2033-10-01": 350.127191584316, - "2032-10-01": 342.442142174052, - "2031-10-01": 334.940070130698, - "2030-10-01": 327.620975454256, - "2029-10-01": 320.484858144724, - "2028-10-01": 313.531718202104, - "2027-10-01": 306.944532993306, - "2026-10-01": 300.448836467963, - "2025-10-01": 293.861651259165, - "2024-10-01": 287, - "2023-10-01": 279, - "2022-10-01": 272, - "2021-10-01": 250, - "2020-10-01": 236, - "2015-01-01": 236 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.standard.HI.5": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.standard.HI.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 364.232068855595, - "2033-10-01": 356.226968441186, - "2032-10-01": 348.408033152694, - "2031-10-01": 340.775262990118, - "2030-10-01": 333.328657953459, - "2029-10-01": 326.068218042716, - "2028-10-01": 318.99394325789, - "2027-10-01": 312.291998724896, - "2026-10-01": 305.683136754861, - "2025-10-01": 298.981192221868, - "2024-10-01": 292, - "2023-10-01": 280, - "2022-10-01": 272, - "2021-10-01": 250, - "2020-10-01": 244, - "2015-01-01": 244 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.standard.HI.6": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.standard.HI.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 417.868983104877, - "2033-10-01": 408.685049410265, - "2032-10-01": 399.714695569015, - "2031-10-01": 390.957921581129, - "2030-10-01": 382.414727446605, - "2029-10-01": 374.085113165445, - "2028-10-01": 365.969078737647, - "2027-10-01": 358.280204016576, - "2026-10-01": 350.698119222187, - "2025-10-01": 343.009244501116, - "2024-10-01": 335, - "2023-10-01": 321, - "2022-10-01": 296, - "2021-10-01": 283, - "2020-10-01": 280, - "2015-01-01": 280 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.standard.VI": { - "type": "parameterNode", - "parameter": "gov.usda.snap.income.deductions.standard.VI", - "description": null, - "label": "VI", - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.standard.VI.1": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.standard.VI.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 224.526617787695, - "2033-10-01": 219.591966847306, - "2032-10-01": 214.772075231113, - "2031-10-01": 210.066942939114, - "2030-10-01": 205.47656997131, - "2029-10-01": 201.000956327702, - "2028-10-01": 196.640102008288, - "2027-10-01": 192.508766337265, - "2026-10-01": 188.434810328339, - "2025-10-01": 184.303474657316, - "2024-10-01": 180, - "2023-10-01": 174, - "2022-10-01": 170, - "2021-10-01": 156, - "2020-10-01": 147, - "2015-01-01": 147 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.standard.VI.2": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.standard.VI.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 224.526617787695, - "2033-10-01": 219.591966847306, - "2032-10-01": 214.772075231113, - "2031-10-01": 210.066942939114, - "2030-10-01": 205.47656997131, - "2029-10-01": 201.000956327702, - "2028-10-01": 196.640102008288, - "2027-10-01": 192.508766337265, - "2026-10-01": 188.434810328339, - "2025-10-01": 184.303474657316, - "2024-10-01": 180, - "2023-10-01": 174, - "2022-10-01": 170, - "2021-10-01": 156, - "2020-10-01": 147, - "2015-01-01": 147 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.standard.VI.3": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.standard.VI.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 224.526617787695, - "2033-10-01": 219.591966847306, - "2032-10-01": 214.772075231113, - "2031-10-01": 210.066942939114, - "2030-10-01": 205.47656997131, - "2029-10-01": 201.000956327702, - "2028-10-01": 196.640102008288, - "2027-10-01": 192.508766337265, - "2026-10-01": 188.434810328339, - "2025-10-01": 184.303474657316, - "2024-10-01": 180, - "2023-10-01": 174, - "2022-10-01": 170, - "2021-10-01": 156, - "2020-10-01": 150, - "2015-01-01": 150 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.standard.VI.4": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.standard.VI.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 270.679311444055, - "2033-10-01": 264.730315588142, - "2032-10-01": 258.919668473064, - "2031-10-01": 253.247370098821, - "2030-10-01": 247.713420465413, - "2029-10-01": 242.31781957284, - "2028-10-01": 237.060567421103, - "2027-10-01": 232.080012751036, - "2026-10-01": 227.168632451387, - "2025-10-01": 222.18807778132, - "2024-10-01": 217, - "2023-10-01": 208, - "2022-10-01": 192, - "2021-10-01": 184, - "2020-10-01": 181, - "2015-01-01": 181 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.standard.VI.5": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.standard.VI.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 316.832005100414, - "2033-10-01": 309.868664328977, - "2032-10-01": 303.067261715014, - "2031-10-01": 296.427797258527, - "2030-10-01": 289.950270959516, - "2029-10-01": 283.634682817979, - "2028-10-01": 277.481032833918, - "2027-10-01": 271.651259164807, - "2026-10-01": 265.902454574434, - "2025-10-01": 260.072680905324, - "2024-10-01": 254, - "2023-10-01": 244, - "2022-10-01": 225, - "2021-10-01": 215, - "2020-10-01": 212, - "2015-01-01": 212 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.standard.VI.6": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.standard.VI.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 362.984698756774, - "2033-10-01": 355.007013069812, - "2032-10-01": 347.214854956965, - "2031-10-01": 339.608224418234, - "2030-10-01": 332.187121453618, - "2029-10-01": 324.951546063118, - "2028-10-01": 317.901498246733, - "2027-10-01": 311.222505578578, - "2026-10-01": 304.636276697482, - "2025-10-01": 297.957284029327, - "2024-10-01": 291, - "2023-10-01": 279, - "2022-10-01": 258, - "2021-10-01": 246, - "2020-10-01": 243, - "2015-01-01": 243 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.standard.PR": { - "type": "parameterNode", - "parameter": "gov.usda.snap.income.deductions.standard.PR", - "description": null, - "label": "PR", - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.standard.PR.1": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.standard.PR.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.standard.PR.2": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.standard.PR.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.standard.PR.3": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.standard.PR.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.standard.PR.4": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.standard.PR.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.standard.PR.5": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.standard.PR.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.standard.PR.6": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.standard.PR.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support": { - "type": "parameterNode", - "parameter": "gov.usda.snap.income.deductions.child_support", - "description": "Whether legally mandated child support payments can be deducted from gross income for SNAP.", - "label": "SNAP child support gross income deduction", - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.AK": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.AK", - "description": null, - "label": "AK", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.AL": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.AL", - "description": null, - "label": "AL", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.AR": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.AR", - "description": null, - "label": "AR", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.AZ": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.AZ", - "description": null, - "label": "AZ", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.CA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.CA", - "description": null, - "label": "CA", - "unit": null, - "period": null, - "values": { - "2021-10-01": false, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.CO": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.CO", - "description": null, - "label": "CO", - "unit": null, - "period": null, - "values": { - "2022-11-30": true, - "2021-10-01": false, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.CT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.CT", - "description": null, - "label": "CT", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.DC": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.DC", - "description": null, - "label": "DC", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.DE": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.DE", - "description": null, - "label": "DE", - "unit": null, - "period": null, - "values": { - "2021-10-01": false, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.FL": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.FL", - "description": null, - "label": "FL", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.GA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.GA", - "description": null, - "label": "GA", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.GU": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.GU", - "description": null, - "label": "GU", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.HI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.HI", - "description": null, - "label": "HI", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.IA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.IA", - "description": null, - "label": "IA", - "unit": null, - "period": null, - "values": { - "2021-10-01": false, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.ID": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.ID", - "description": null, - "label": "ID", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.IL": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.IL", - "description": null, - "label": "IL", - "unit": null, - "period": null, - "values": { - "2021-10-01": false, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.IN": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.IN", - "description": null, - "label": "IN", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.KS": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.KS", - "description": null, - "label": "KS", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.KY": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.KY", - "description": null, - "label": "KY", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.LA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.LA", - "description": null, - "label": "LA", - "unit": null, - "period": null, - "values": { - "2021-10-01": false, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.MA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.MA", - "description": null, - "label": "MA", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.MD": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.MD", - "description": null, - "label": "MD", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.ME": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.ME", - "description": null, - "label": "ME", - "unit": null, - "period": null, - "values": { - "2021-10-01": false, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.MI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.MI", - "description": null, - "label": "MI", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.MN": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.MN", - "description": null, - "label": "MN", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.MO": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.MO", - "description": null, - "label": "MO", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.MS": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.MS", - "description": null, - "label": "MS", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.MT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.MT", - "description": null, - "label": "MT", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.NC": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.NC", - "description": null, - "label": "NC", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.ND": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.ND", - "description": null, - "label": "ND", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.NE": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.NE", - "description": null, - "label": "NE", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.NH": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.NH", - "description": null, - "label": "NH", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.NJ": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.NJ", - "description": null, - "label": "NJ", - "unit": null, - "period": null, - "values": { - "2021-10-01": false, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.NM": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.NM", - "description": null, - "label": "NM", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.NV": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.NV", - "description": null, - "label": "NV", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.NY": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.NY", - "description": null, - "label": "NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": false, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.OH": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.OH", - "description": null, - "label": "OH", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.OK": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.OK", - "description": null, - "label": "OK", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.OR": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.OR", - "description": null, - "label": "OR", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.PA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.PA", - "description": null, - "label": "PA", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.RI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.RI", - "description": null, - "label": "RI", - "unit": null, - "period": null, - "values": { - "2021-10-01": false, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.SC": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.SC", - "description": null, - "label": "SC", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.SD": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.SD", - "description": null, - "label": "SD", - "unit": null, - "period": null, - "values": { - "2021-10-01": false, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.TN": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.TN", - "description": null, - "label": "TN", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.TX": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.TX", - "description": null, - "label": "TX", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.UT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.UT", - "description": null, - "label": "UT", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.VA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.VA", - "description": null, - "label": "VA", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.VI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.VI", - "description": null, - "label": "VI", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.VT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.VT", - "description": null, - "label": "VT", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.WA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.WA", - "description": null, - "label": "WA", - "unit": null, - "period": null, - "values": { - "2021-10-01": false, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.WI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.WI", - "description": null, - "label": "WI", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.WV": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.WV", - "description": null, - "label": "WV", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.WY": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.WY", - "description": null, - "label": "WY", - "unit": null, - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.PW": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.PW", - "description": null, - "label": "PW", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.PR": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.PR", - "description": null, - "label": "PR", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.AP": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.AP", - "description": null, - "label": "AP", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.AE": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.AE", - "description": null, - "label": "AE", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.MP": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.MP", - "description": null, - "label": "MP", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.child_support.AA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.child_support.AA", - "description": null, - "label": "AA", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment": { - "type": "parameterNode", - "parameter": "gov.usda.snap.income.deductions.self_employment", - "description": null, - "label": "self employment", - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate": { - "type": "parameterNode", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate", - "description": "States deduct the following percentage of self-employment income for SNAP under the simplified self-employment deduction.", - "label": "SNAP self-employment simplified deduction rate", - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.AK": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.AK", - "description": null, - "label": "AK", - "unit": null, - "period": null, - "values": { - "1997-10-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.AL": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.AL", - "description": null, - "label": "AL", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0.4, - "2015-01-01": 0.4 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.AR": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.AR", - "description": null, - "label": "AR", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.AZ": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.AZ", - "description": null, - "label": "AZ", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0.4, - "2015-01-01": 0.4 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.CA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.CA", - "description": null, - "label": "CA", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0.4, - "2015-01-01": 0.4 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.CO": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.CO", - "description": null, - "label": "CO", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.CT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.CT", - "description": null, - "label": "CT", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.DC": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.DC", - "description": null, - "label": "DC", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.DE": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.DE", - "description": null, - "label": "DE", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0.43, - "2015-01-01": 0.43 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.FL": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.FL", - "description": null, - "label": "FL", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.GA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.GA", - "description": null, - "label": "GA", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0.4, - "2015-01-01": 0.4 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.GU": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.GU", - "description": null, - "label": "GU", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.HI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.HI", - "description": null, - "label": "HI", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.IA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.IA", - "description": null, - "label": "IA", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.ID": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.ID", - "description": null, - "label": "ID", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.IL": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.IL", - "description": null, - "label": "IL", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.IN": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.IN", - "description": null, - "label": "IN", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0.4, - "2015-01-01": 0.4 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.KS": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.KS", - "description": null, - "label": "KS", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.KY": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.KY", - "description": null, - "label": "KY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.LA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.LA", - "description": null, - "label": "LA", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.MA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.MA", - "description": null, - "label": "MA", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.MD": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.MD", - "description": null, - "label": "MD", - "unit": null, - "period": null, - "values": { - "2016-10-01": 0.5, - "2010-01-01": 0.3 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.ME": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.ME", - "description": null, - "label": "ME", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.MI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.MI", - "description": null, - "label": "MI", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.MN": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.MN", - "description": null, - "label": "MN", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.MO": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.MO", - "description": null, - "label": "MO", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.MS": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.MS", - "description": null, - "label": "MS", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.MT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.MT", - "description": null, - "label": "MT", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.NC": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.NC", - "description": null, - "label": "NC", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.ND": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.ND", - "description": null, - "label": "ND", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.NE": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.NE", - "description": null, - "label": "NE", - "unit": null, - "period": null, - "values": { - "2016-10-01": 0.49, - "2015-01-01": 0.49 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.NH": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.NH", - "description": null, - "label": "NH", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.NJ": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.NJ", - "description": null, - "label": "NJ", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.NM": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.NM", - "description": null, - "label": "NM", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.NV": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.NV", - "description": null, - "label": "NV", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.NY": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.NY", - "description": null, - "label": "NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.OH": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.OH", - "description": null, - "label": "OH", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.OK": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.OK", - "description": null, - "label": "OK", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.OR": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.OR", - "description": null, - "label": "OR", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.PA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.PA", - "description": null, - "label": "PA", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.RI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.RI", - "description": null, - "label": "RI", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.SC": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.SC", - "description": null, - "label": "SC", - "unit": null, - "period": null, - "values": { - "2005-10-01": 0.4 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.SD": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.SD", - "description": null, - "label": "SD", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0.55, - "2015-01-01": 0.55 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.TN": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.TN", - "description": null, - "label": "TN", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.TX": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.TX", - "description": null, - "label": "TX", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.UT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.UT", - "description": null, - "label": "UT", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0.4, - "2015-01-01": 0.4 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.VA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.VA", - "description": null, - "label": "VA", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.VI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.VI", - "description": null, - "label": "VI", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.VT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.VT", - "description": null, - "label": "VT", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.WA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.WA", - "description": null, - "label": "WA", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.WI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.WI", - "description": null, - "label": "WI", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.WV": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.WV", - "description": null, - "label": "WV", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.WY": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.WY", - "description": null, - "label": "WY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.PW": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.PW", - "description": null, - "label": "PW", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.PR": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.PR", - "description": null, - "label": "PR", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.AP": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.AP", - "description": null, - "label": "AP", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.AE": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.AE", - "description": null, - "label": "AE", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.MP": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.MP", - "description": null, - "label": "MP", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.rate.AA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.rate.AA", - "description": null, - "label": "AA", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies": { - "type": "parameterNode", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies", - "description": "Whether states allow to deduct actual self employment expenses in addition to the flat percentage deduction on gross self-employment income, under the SNAP program.", - "label": "SNAP self-employment expense-based deduction applies", - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.AK": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.AK", - "description": null, - "label": "AK", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.AL": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.AL", - "description": null, - "label": "AL", - "unit": null, - "period": null, - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.AR": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.AR", - "description": null, - "label": "AR", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.AZ": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.AZ", - "description": null, - "label": "AZ", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.CA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.CA", - "description": null, - "label": "CA", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.CO": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.CO", - "description": null, - "label": "CO", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.CT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.CT", - "description": null, - "label": "CT", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.DC": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.DC", - "description": null, - "label": "DC", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.DE": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.DE", - "description": null, - "label": "DE", - "unit": null, - "period": null, - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.FL": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.FL", - "description": null, - "label": "FL", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.GA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.GA", - "description": null, - "label": "GA", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.GU": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.GU", - "description": null, - "label": "GU", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.HI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.HI", - "description": null, - "label": "HI", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.IA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.IA", - "description": null, - "label": "IA", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.ID": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.ID", - "description": null, - "label": "ID", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.IL": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.IL", - "description": null, - "label": "IL", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.IN": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.IN", - "description": null, - "label": "IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.KS": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.KS", - "description": null, - "label": "KS", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.KY": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.KY", - "description": null, - "label": "KY", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.LA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.LA", - "description": null, - "label": "LA", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.MA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.MA", - "description": null, - "label": "MA", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.MD": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.MD", - "description": null, - "label": "MD", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.ME": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.ME", - "description": null, - "label": "ME", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.MI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.MI", - "description": null, - "label": "MI", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.MN": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.MN", - "description": null, - "label": "MN", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.MO": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.MO", - "description": null, - "label": "MO", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.MS": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.MS", - "description": null, - "label": "MS", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.MT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.MT", - "description": null, - "label": "MT", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.NC": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.NC", - "description": null, - "label": "NC", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.ND": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.ND", - "description": null, - "label": "ND", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.NE": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.NE", - "description": null, - "label": "NE", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.NH": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.NH", - "description": null, - "label": "NH", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.NJ": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.NJ", - "description": null, - "label": "NJ", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.NM": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.NM", - "description": null, - "label": "NM", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.NV": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.NV", - "description": null, - "label": "NV", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.NY": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.NY", - "description": null, - "label": "NY", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.OH": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.OH", - "description": null, - "label": "OH", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.OK": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.OK", - "description": null, - "label": "OK", - "unit": null, - "period": null, - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.OR": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.OR", - "description": null, - "label": "OR", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.PA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.PA", - "description": null, - "label": "PA", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.RI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.RI", - "description": null, - "label": "RI", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.SC": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.SC", - "description": null, - "label": "SC", - "unit": null, - "period": null, - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.SD": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.SD", - "description": null, - "label": "SD", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.TN": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.TN", - "description": null, - "label": "TN", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.TX": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.TX", - "description": null, - "label": "TX", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.UT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.UT", - "description": null, - "label": "UT", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.VA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.VA", - "description": null, - "label": "VA", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.VI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.VI", - "description": null, - "label": "VI", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.VT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.VT", - "description": null, - "label": "VT", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.WA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.WA", - "description": null, - "label": "WA", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.WI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.WI", - "description": null, - "label": "WI", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.WV": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.WV", - "description": null, - "label": "WV", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.WY": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.WY", - "description": null, - "label": "WY", - "unit": null, - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.PW": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.PW", - "description": null, - "label": "PW", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.PR": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.PR", - "description": null, - "label": "PR", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.AP": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.AP", - "description": null, - "label": "AP", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.AE": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.AE", - "description": null, - "label": "AE", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.MP": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.MP", - "description": null, - "label": "MP", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.AA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.self_employment.expense_based_deduction_applies.AA", - "description": null, - "label": "AA", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense": { - "type": "parameterNode", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense", - "description": null, - "label": "excess shelter expense", - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless": { - "type": "parameterNode", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless", - "description": null, - "label": "homeless", - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.deduction": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.deduction", - "description": "SNAP homeless shelter deduction amount.", - "label": "SNAP homeless shelter deduction", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 237.374529805547, - "2033-10-01": 232.157507172458, - "2032-10-01": 227.061810647115, - "2031-10-01": 222.087440229519, - "2030-10-01": 217.234395919669, - "2029-10-01": 212.502677717565, - "2028-10-01": 207.892285623207, - "2027-10-01": 203.524545744342, - "2026-10-01": 199.21746891935, - "2025-10-01": 194.849729040485, - "2024-10-01": 190.3, - "2023-10-01": 179.66, - "2022-10-01": 166.81, - "2021-10-01": 159.73, - "2020-10-01": 156.74, - "2019-01-01": 143, - "2015-01-01": 143 - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available": { - "type": "parameterNode", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available", - "description": "Whether homeless households can choose to receive a standard shelter deduction.", - "label": "SNAP homeless shelter deduction available", - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.AK": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.AK", - "description": null, - "label": "AK", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.AL": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.AL", - "description": null, - "label": "AL", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": false, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.AR": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.AR", - "description": null, - "label": "AR", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": false, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.AZ": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.AZ", - "description": null, - "label": "AZ", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.CA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.CA", - "description": null, - "label": "CA", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.CO": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.CO", - "description": null, - "label": "CO", - "unit": "bool", - "period": null, - "values": { - "2022-11-30": true, - "2021-10-01": true, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.CT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.CT", - "description": null, - "label": "CT", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": false, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.DC": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.DC", - "description": null, - "label": "DC", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.DE": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.DE", - "description": null, - "label": "DE", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.FL": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.FL", - "description": null, - "label": "FL", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.GA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.GA", - "description": null, - "label": "GA", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": false, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.GU": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.GU", - "description": null, - "label": "GU", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.HI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.HI", - "description": null, - "label": "HI", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.IA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.IA", - "description": null, - "label": "IA", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": false, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.ID": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.ID", - "description": null, - "label": "ID", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.IL": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.IL", - "description": null, - "label": "IL", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": false, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.IN": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.IN", - "description": null, - "label": "IN", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": false, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.KS": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.KS", - "description": null, - "label": "KS", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": false, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.KY": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.KY", - "description": null, - "label": "KY", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.LA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.LA", - "description": null, - "label": "LA", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": false, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.MA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.MA", - "description": null, - "label": "MA", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.MD": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.MD", - "description": null, - "label": "MD", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.ME": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.ME", - "description": null, - "label": "ME", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.MI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.MI", - "description": null, - "label": "MI", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": false, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.MN": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.MN", - "description": null, - "label": "MN", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": false, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.MO": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.MO", - "description": null, - "label": "MO", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": false, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.MS": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.MS", - "description": null, - "label": "MS", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": false, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.MT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.MT", - "description": null, - "label": "MT", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": false, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.NC": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.NC", - "description": null, - "label": "NC", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": false, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.ND": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.ND", - "description": null, - "label": "ND", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": false, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.NE": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.NE", - "description": null, - "label": "NE", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.NH": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.NH", - "description": null, - "label": "NH", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.NJ": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.NJ", - "description": null, - "label": "NJ", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.NM": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.NM", - "description": null, - "label": "NM", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.NV": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.NV", - "description": null, - "label": "NV", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.NY": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.NY", - "description": null, - "label": "NY", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.OH": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.OH", - "description": null, - "label": "OH", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.OK": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.OK", - "description": null, - "label": "OK", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": false, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.OR": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.OR", - "description": null, - "label": "OR", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": false, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.PA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.PA", - "description": null, - "label": "PA", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.RI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.RI", - "description": null, - "label": "RI", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.SC": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.SC", - "description": null, - "label": "SC", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.SD": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.SD", - "description": null, - "label": "SD", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": false, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.TN": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.TN", - "description": null, - "label": "TN", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.TX": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.TX", - "description": null, - "label": "TX", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.UT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.UT", - "description": null, - "label": "UT", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.VA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.VA", - "description": null, - "label": "VA", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.VI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.VI", - "description": null, - "label": "VI", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.VT": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.VT", - "description": null, - "label": "VT", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": false, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.WA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.WA", - "description": null, - "label": "WA", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": false, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.WI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.WI", - "description": null, - "label": "WI", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": false, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.WV": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.WV", - "description": null, - "label": "WV", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": true, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.WY": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.WY", - "description": null, - "label": "WY", - "unit": "bool", - "period": null, - "values": { - "2021-10-01": false, - "2010-01-01": false - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.PW": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.PW", - "description": null, - "label": "PW", - "unit": "bool", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.PR": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.PR", - "description": null, - "label": "PR", - "unit": "bool", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.AP": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.AP", - "description": null, - "label": "AP", - "unit": "bool", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.AE": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.AE", - "description": null, - "label": "AE", - "unit": "bool", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.MP": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.MP", - "description": null, - "label": "MP", - "unit": "bool", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.AA": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.homeless.available.AA", - "description": null, - "label": "AA", - "unit": "bool", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.elderly_or_disabled_exempt": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.elderly_or_disabled_exempt", - "description": "Whether elderly and disabled people are exempt from the SNAP shelter deduction cap", - "label": "elderly or disabled exempt", - "unit": null, - "period": null, - "values": { - "2018-01-01": true, - "2015-01-01": true - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.income_share_disregard": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.income_share_disregard", - "description": "Share of income disregarded for SNAP shelter deduction", - "label": "Share of income disregarded for SNAP shelter deduction", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.cap": { - "type": "parameterNode", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.cap", - "description": "The USDA allows an excess shelter deduction of up to this amount when computing SNAP benefits.", - "label": "SNAP maximum shelter deduction", - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.cap.CONTIGUOUS_US": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.cap.CONTIGUOUS_US", - "description": null, - "label": "CONTIGUOUS US", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 888.127510360217, - "2033-10-01": 868.608224418234, - "2032-10-01": 849.542875358623, - "2031-10-01": 830.931463181384, - "2030-10-01": 812.773987886516, - "2029-10-01": 795.07044947402, - "2028-10-01": 777.820847943895, - "2027-10-01": 761.479120178514, - "2026-10-01": 745.364360854319, - "2025-10-01": 729.022633088939, - "2024-10-01": 712, - "2023-10-01": 672, - "2022-10-01": 624, - "2021-10-01": 597, - "2020-10-01": 586, - "2000-10-01": 340, - "1999-10-01": 280, - "1998-10-01": 275, - "1997-01-01": 250, - "1996-08-22": 247 - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.cap.AK_URBAN": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.cap.AK_URBAN", - "description": null, - "label": "AK URBAN", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 1418.25980235894, - "2033-10-01": 1387.08925725215, - "2032-10-01": 1356.64360854319, - "2031-10-01": 1326.92285623207, - "2030-10-01": 1297.92700031878, - "2029-10-01": 1269.65604080332, - "2028-10-01": 1242.10997768569, - "2027-10-01": 1216.01370736372, - "2026-10-01": 1190.27988524068, - "2025-10-01": 1164.18361491871, - "2024-10-01": 1137, - "2023-10-01": 1073, - "2022-10-01": 996, - "2021-10-01": 954, - "2020-01-01": 936, - "2000-10-01": 543, - "1999-10-01": 483, - "1998-10-01": 478, - "1997-01-01": 434, - "1996-08-22": 429 - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.cap.AK_RURAL_1": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.cap.AK_RURAL_1", - "description": null, - "label": "AK RURAL 1", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 1418.25980235894, - "2033-10-01": 1387.08925725215, - "2032-10-01": 1356.64360854319, - "2031-10-01": 1326.92285623207, - "2030-10-01": 1297.92700031878, - "2029-10-01": 1269.65604080332, - "2028-10-01": 1242.10997768569, - "2027-10-01": 1216.01370736372, - "2026-10-01": 1190.27988524068, - "2025-10-01": 1164.18361491871, - "2024-10-01": 1137, - "2023-10-01": 1073, - "2022-10-01": 996, - "2021-10-01": 954, - "2020-10-01": 936, - "2000-10-01": 543, - "1999-10-01": 483, - "1998-10-01": 478, - "1997-01-01": 434, - "1996-08-22": 429 - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.cap.AK_RURAL_2": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.cap.AK_RURAL_2", - "description": null, - "label": "AK RURAL 2", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 1418.25980235894, - "2033-10-01": 1387.08925725215, - "2032-10-01": 1356.64360854319, - "2031-10-01": 1326.92285623207, - "2030-10-01": 1297.92700031878, - "2029-10-01": 1269.65604080332, - "2028-10-01": 1242.10997768569, - "2027-10-01": 1216.01370736372, - "2026-10-01": 1190.27988524068, - "2025-10-01": 1164.18361491871, - "2024-10-01": 1137, - "2023-10-01": 1073, - "2022-10-01": 996, - "2021-10-01": 954, - "2020-10-01": 936, - "2000-10-01": 543, - "1999-10-01": 483, - "1998-10-01": 478, - "1997-01-01": 434, - "1996-08-22": 429 - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.cap.GU": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.cap.GU", - "description": null, - "label": "GU", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 1041.55403251514, - "2033-10-01": 1018.66273509723, - "2032-10-01": 996.303793433217, - "2031-10-01": 974.477207523111, - "2030-10-01": 953.182977366911, - "2029-10-01": 932.421102964616, - "2028-10-01": 912.191584316226, - "2027-10-01": 893.026777175646, - "2026-10-01": 874.128147912018, - "2025-10-01": 854.963340771438, - "2024-10-01": 835, - "2023-10-01": 789, - "2022-10-01": 732, - "2021-10-01": 701, - "2020-10-01": 688, - "2000-10-01": 399, - "1999-10-01": 339, - "1998-10-01": 334, - "1997-01-01": 304, - "1996-08-22": 300 - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.cap.HI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.cap.HI", - "description": null, - "label": "HI", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 1196.22792476889, - "2033-10-01": 1169.93720114759, - "2032-10-01": 1144.25788970354, - "2031-10-01": 1119.18999043672, - "2030-10-01": 1094.73350334715, - "2029-10-01": 1070.88842843481, - "2028-10-01": 1047.65476569971, - "2027-10-01": 1025.64392731909, - "2026-10-01": 1003.9387950271, - "2025-10-01": 981.927956646478, - "2024-10-01": 959, - "2023-10-01": 905, - "2022-10-01": 840, - "2021-10-01": 805, - "2020-10-01": 790, - "2000-10-01": 458, - "1999-10-01": 398, - "1998-10-01": 393, - "1997-01-01": 357, - "1996-08-22": 353 - }, - "economy": false, - "household": true - }, - "gov.usda.snap.income.deductions.excess_shelter_expense.cap.VI": { - "type": "parameter", - "parameter": "gov.usda.snap.income.deductions.excess_shelter_expense.cap.VI", - "description": null, - "label": "VI", - "unit": "currency-USD", - "period": "month", - "values": { - "2034-10-01": 699.774625438317, - "2033-10-01": 684.394963340772, - "2032-10-01": 669.372967803634, - "2031-10-01": 654.708638826905, - "2030-10-01": 640.401976410583, - "2029-10-01": 626.45298055467, - "2028-10-01": 612.861651259165, - "2027-10-01": 599.985655084476, - "2026-10-01": 587.28849218999, - "2025-10-01": 574.412496015301, - "2024-10-01": 561, - "2023-10-01": 529, - "2022-10-01": 492, - "2021-10-01": 471, - "2020-10-01": 462, - "2000-10-01": 268, - "1999-10-01": 208, - "1998-10-01": 203, - "1997-01-01": 184, - "1996-08-22": 182 - }, - "economy": false, - "household": true - }, - "gov.usda.snap.min_allotment": { - "type": "parameterNode", - "parameter": "gov.usda.snap.min_allotment", - "description": null, - "label": "Minimum allotment", - "economy": true, - "household": true - }, - "gov.usda.snap.min_allotment.relevant_max_allotment_household_size": { - "type": "parameter", - "parameter": "gov.usda.snap.min_allotment.relevant_max_allotment_household_size", - "description": "In calculating a SNAP minimum allotment, the household size to look up the relevant maximum allotment", - "label": "relevant max allotment household size", - "unit": "persons", - "period": null, - "values": { - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.min_allotment.rate": { - "type": "parameter", - "parameter": "gov.usda.snap.min_allotment.rate", - "description": "Minimum SNAP allotment as a fraction of maximum allotment", - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.08, - "2015-01-01": 0.08 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.min_allotment.maximum_household_size": { - "type": "parameter", - "parameter": "gov.usda.snap.min_allotment.maximum_household_size", - "description": "Maximum household size for SNAP minimum allotments", - "label": "maximum household size", - "unit": "persons", - "period": null, - "values": { - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.categorical_eligibility": { - "type": "parameter", - "parameter": "gov.usda.snap.categorical_eligibility", - "description": "Program participation that qualify families for SNAP via categorical eligibility.", - "label": "categorical eligibility", - "unit": null, - "period": null, - "values": { - "2009-01-01": ["ssi", "is_tanf_non_cash_eligible"] - }, - "economy": true, - "household": true - }, - "gov.usda.snap.expected_contribution": { - "type": "parameter", - "parameter": "gov.usda.snap.expected_contribution", - "description": "Expected food contribution per dollar of earnings (i.e., marginal tax rate)", - "label": "expected contribution", - "unit": "/1", - "period": null, - "values": { - "2005-01-01": 0.3 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.uprating": { - "type": "parameter", - "parameter": "gov.usda.snap.uprating", - "description": "The US sets SNAP benefits at the Thrifty Food Plan each year, updating in October. This approximates that uprating via CPI-U.", - "label": "SNAP uprating", - "unit": "currency-USD", - "period": null, - "values": { - "2034-10-01": 391.3, - "2033-10-01": 382.7, - "2032-10-01": 374.3, - "2031-10-01": 366.1, - "2030-10-01": 358.1, - "2029-10-01": 350.3, - "2028-10-01": 342.7, - "2027-10-01": 335.5, - "2026-10-01": 328.4, - "2025-10-01": 321.2, - "2024-10-01": 313.7, - "2023-10-01": 305.109, - "2022-10-01": 296.311, - "2021-10-01": 271.696, - "2020-10-01": 257.797, - "2015-01-01": 257.797 - }, - "economy": false, - "household": true - }, - "gov.usda.snap.emergency_allotment": { - "type": "parameterNode", - "parameter": "gov.usda.snap.emergency_allotment", - "description": null, - "label": "emergency allotment", - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.allowed": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.allowed", - "description": "The federal government allows states to apply for SNAP emergency allotments when this is true.", - "label": "SNAP emergency allotment allowed", - "unit": "bool", - "period": null, - "values": { - "2023-03-01": false, - "2020-03-01": true, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.minimum": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.minimum", - "description": "States provide SNAP emergency allotments of at least this amount.", - "label": "SNAP emergency allotment minimum", - "unit": "currency-USD", - "period": "month", - "values": { - "2020-01-01": 95, - "2015-01-01": 95 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect": { - "type": "parameterNode", - "parameter": "gov.usda.snap.emergency_allotment.in_effect", - "description": "States have secured SNAP emergency allotment approval from the USDA in these periods.", - "label": "SNAP emergency allotment in effect", - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.AK": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.AK", - "description": null, - "label": "AK", - "unit": null, - "period": null, - "values": { - "2022-09-01": false, - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.AL": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.AL", - "description": null, - "label": "AL", - "unit": null, - "period": null, - "values": { - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.AR": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.AR", - "description": null, - "label": "AR", - "unit": null, - "period": null, - "values": { - "2021-07-01": false, - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.AZ": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.AZ", - "description": null, - "label": "AZ", - "unit": null, - "period": null, - "values": { - "2022-04-01": false, - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.CA": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.CA", - "description": null, - "label": "CA", - "unit": null, - "period": null, - "values": { - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.CO": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.CO", - "description": null, - "label": "CO", - "unit": null, - "period": null, - "values": { - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.CT": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.CT", - "description": null, - "label": "CT", - "unit": null, - "period": null, - "values": { - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.DC": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.DC", - "description": null, - "label": "DC", - "unit": null, - "period": null, - "values": { - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.DE": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.DE", - "description": null, - "label": "DE", - "unit": null, - "period": null, - "values": { - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.FL": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.FL", - "description": null, - "label": "FL", - "unit": null, - "period": null, - "values": { - "2021-08-01": false, - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.GA": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.GA", - "description": null, - "label": "GA", - "unit": null, - "period": null, - "values": { - "2022-07-01": false, - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.GU": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.GU", - "description": null, - "label": "GU", - "unit": null, - "period": null, - "values": { - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.HI": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.HI", - "description": null, - "label": "HI", - "unit": null, - "period": null, - "values": { - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.IA": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.IA", - "description": null, - "label": "IA", - "unit": null, - "period": null, - "values": { - "2022-03-01": false, - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.ID": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.ID", - "description": null, - "label": "ID", - "unit": null, - "period": null, - "values": { - "2021-04-01": false, - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.IL": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.IL", - "description": null, - "label": "IL", - "unit": null, - "period": null, - "values": { - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.IN": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.IN", - "description": null, - "label": "IN", - "unit": null, - "period": null, - "values": { - "2022-06-01": false, - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.KS": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.KS", - "description": null, - "label": "KS", - "unit": null, - "period": null, - "values": { - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.KY": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.KY", - "description": null, - "label": "KY", - "unit": null, - "period": null, - "values": { - "2022-05-01": false, - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.LA": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.LA", - "description": null, - "label": "LA", - "unit": null, - "period": null, - "values": { - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.MA": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.MA", - "description": null, - "label": "MA", - "unit": null, - "period": null, - "values": { - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.MD": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.MD", - "description": null, - "label": "MD", - "unit": null, - "period": null, - "values": { - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.ME": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.ME", - "description": null, - "label": "ME", - "unit": null, - "period": null, - "values": { - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.MI": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.MI", - "description": null, - "label": "MI", - "unit": null, - "period": null, - "values": { - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.MN": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.MN", - "description": null, - "label": "MN", - "unit": null, - "period": null, - "values": { - "2020-04-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.MO": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.MO", - "description": null, - "label": "MO", - "unit": null, - "period": null, - "values": { - "2021-09-01": false, - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.MS": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.MS", - "description": null, - "label": "MS", - "unit": null, - "period": null, - "values": { - "2021-12-01": false, - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.MT": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.MT", - "description": null, - "label": "MT", - "unit": null, - "period": null, - "values": { - "2021-08-01": false, - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.NC": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.NC", - "description": null, - "label": "NC", - "unit": null, - "period": null, - "values": { - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.ND": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.ND", - "description": null, - "label": "ND", - "unit": null, - "period": null, - "values": { - "2021-06-01": false, - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.NE": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.NE", - "description": null, - "label": "NE", - "unit": null, - "period": null, - "values": { - "2021-08-01": false, - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.NH": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.NH", - "description": null, - "label": "NH", - "unit": null, - "period": null, - "values": { - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.NJ": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.NJ", - "description": null, - "label": "NJ", - "unit": null, - "period": null, - "values": { - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.NM": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.NM", - "description": null, - "label": "NM", - "unit": null, - "period": null, - "values": { - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.NV": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.NV", - "description": null, - "label": "NV", - "unit": null, - "period": null, - "values": { - "2022-09-01": false, - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.NY": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.NY", - "description": null, - "label": "NY", - "unit": null, - "period": null, - "values": { - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.OH": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.OH", - "description": null, - "label": "OH", - "unit": null, - "period": null, - "values": { - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.OK": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.OK", - "description": null, - "label": "OK", - "unit": null, - "period": null, - "values": { - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.OR": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.OR", - "description": null, - "label": "OR", - "unit": null, - "period": null, - "values": { - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.PA": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.PA", - "description": null, - "label": "PA", - "unit": null, - "period": null, - "values": { - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.RI": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.RI", - "description": null, - "label": "RI", - "unit": null, - "period": null, - "values": { - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.SC": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.SC", - "description": null, - "label": "SC", - "unit": null, - "period": null, - "values": { - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.SD": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.SD", - "description": null, - "label": "SD", - "unit": null, - "period": null, - "values": { - "2021-08-01": false, - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.TN": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.TN", - "description": null, - "label": "TN", - "unit": null, - "period": null, - "values": { - "2021-12-01": false, - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.TX": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.TX", - "description": null, - "label": "TX", - "unit": null, - "period": null, - "values": { - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.UT": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.UT", - "description": null, - "label": "UT", - "unit": null, - "period": null, - "values": { - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.VA": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.VA", - "description": null, - "label": "VA", - "unit": null, - "period": null, - "values": { - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.VI": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.VI", - "description": null, - "label": "VI", - "unit": null, - "period": null, - "values": { - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.VT": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.VT", - "description": null, - "label": "VT", - "unit": null, - "period": null, - "values": { - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.WA": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.WA", - "description": null, - "label": "WA", - "unit": null, - "period": null, - "values": { - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.WI": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.WI", - "description": null, - "label": "WI", - "unit": null, - "period": null, - "values": { - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.WV": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.WV", - "description": null, - "label": "WV", - "unit": null, - "period": null, - "values": { - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.WY": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.WY", - "description": null, - "label": "WY", - "unit": null, - "period": null, - "values": { - "2021-05-01": false, - "2020-03-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.PW": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.PW", - "description": null, - "label": "PW", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.PR": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.PR", - "description": null, - "label": "PR", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.AP": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.AP", - "description": null, - "label": "AP", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.AE": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.AE", - "description": null, - "label": "AE", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.MP": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.MP", - "description": null, - "label": "MP", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.emergency_allotment.in_effect.AA": { - "type": "parameter", - "parameter": "gov.usda.snap.emergency_allotment.in_effect.AA", - "description": null, - "label": "AA", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.usda.snap.takeup_rate": { - "type": "parameter", - "parameter": "gov.usda.snap.takeup_rate", - "description": "Percentage of eligible SNAP recipients who do not claim SNAP.", - "label": "SNAP takeup rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.82, - "2015-01-01": 0.82 - }, - "economy": false, - "household": false - }, - "gov.usda.elderly_age_threshold": { - "type": "parameter", - "parameter": "gov.usda.elderly_age_threshold", - "description": "USDA age threshold for elderly classification", - "label": "elderly age threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": true, - "household": true - }, - "gov.usda.disabled_programs": { - "type": "parameter", - "parameter": "gov.usda.disabled_programs", - "description": "Program participation that qualify individuals as disabled under USDA rules", - "label": "disabled programs", - "unit": null, - "period": null, - "values": { - "2021-01-01": [ - "is_ssi_disabled", - "social_security_disability", - "is_permanently_disabled_veteran", - "is_surviving_spouse_of_disabled_veteran", - "is_surviving_child_of_disabled_veteran" - ], - "2015-01-01": [ - "is_ssi_disabled", - "social_security_disability", - "is_permanently_disabled_veteran", - "is_surviving_spouse_of_disabled_veteran", - "is_surviving_child_of_disabled_veteran" - ] - }, - "economy": true, - "household": true - }, - "gov.states": { - "type": "parameterNode", - "parameter": "gov.states", - "description": null, - "label": "States", - "economy": true, - "household": true - }, - "gov.states.nd": { - "type": "parameterNode", - "parameter": "gov.states.nd", - "description": null, - "label": "North Dakota", - "economy": true, - "household": true - }, - "gov.states.nd.tax": { - "type": "parameterNode", - "parameter": "gov.states.nd.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.states.nd.tax.income": { - "type": "parameterNode", - "parameter": "gov.states.nd.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.credits": { - "type": "parameterNode", - "parameter": "gov.states.nd.tax.income.credits", - "description": null, - "label": "credits", - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.credits.marriage_penalty": { - "type": "parameterNode", - "parameter": "gov.states.nd.tax.income.credits.marriage_penalty", - "description": null, - "label": "marriage penalty", - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.credits.marriage_penalty.taxable_income_base": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.credits.marriage_penalty.taxable_income_base", - "description": "North Dakota has a nonrefundable marriage-penalty credit for joint filers in which this is the base taxable income amount.", - "label": "North Dakota marriage-penalty credit taxable income base amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 18150, - "2034-01-01": 17800, - "2033-01-01": 17450, - "2032-01-01": 17100, - "2031-01-01": 16800, - "2030-01-01": 16450, - "2029-01-01": 16150, - "2028-01-01": 15800, - "2027-01-01": 15500, - "2026-01-01": 15150, - "2025-01-01": 14900, - "2024-01-01": 14600, - "2023-01-01": 13850, - "2022-01-01": 12950, - "2021-01-01": 12550, - "2015-01-01": 12550 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.credits.marriage_penalty.taxable_income_threshold": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.credits.marriage_penalty.taxable_income_threshold", - "description": "North Dakota has a nonrefundable marriage-penalty credit for joint filers with state taxable income more than this amount.", - "label": "North Dakota marriage-penalty credit taxable income threshold", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 98172.5696951113, - "2034-01-01": 96271.5469494015, - "2033-01-01": 94393.9936203055, - "2032-01-01": 92563.3791244368, - "2031-01-01": 90779.7034617955, - "2030-01-01": 89019.4972157679, - "2029-01-01": 87282.7603863541, - "2028-01-01": 85569.4929735539, - "2027-01-01": 83832.75614414, - "2026-01-01": 81816.7332570231, - "2025-01-01": 80584.8626946643, - "2024-01-01": 78836, - "2023-01-01": 74862, - "2022-01-01": 69812, - "2021-01-01": 67812, - "2015-01-01": 67812 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.credits.marriage_penalty.maximum": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.credits.marriage_penalty.maximum", - "description": "North Dakota has a nonrefundable marriage-penalty credit for joint filers in which this is the maximum credit amount.", - "label": "North Dakota marriage-penalty credit maximum amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 377.318593252052, - "2034-01-01": 370.012161013606, - "2033-01-01": 362.795931642302, - "2032-01-01": 355.760108005281, - "2031-01-01": 348.904690102543, - "2030-01-01": 342.139475066945, - "2029-01-01": 335.464462898489, - "2028-01-01": 328.879653597174, - "2027-01-01": 322.204641428718, - "2026-01-01": 314.456215141281, - "2025-01-01": 309.721616983146, - "2024-01-01": 303, - "2023-01-01": 287, - "2022-01-01": 208, - "2021-01-01": 201, - "2015-01-01": 201 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.credits.marriage_penalty.qualified_income_threshold": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.credits.marriage_penalty.qualified_income_threshold", - "description": "North Dakota has a nonrefundable marriage-penalty credit for joint filers with smaller of head and spouse qualified income more than this amount.", - "label": "North Dakota marriage-penalty credit qualified income threshold", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 57625.141593197, - "2034-01-01": 56509.2830062859, - "2033-01-01": 55407.200451312, - "2032-01-01": 54332.6699602125, - "2031-01-01": 53285.6915329873, - "2030-01-01": 52252.4891376993, - "2029-01-01": 51233.0627743484, - "2028-01-01": 50227.4124429348, - "2027-01-01": 49207.9860795839, - "2026-01-01": 48024.6249361807, - "2025-01-01": 47301.5439798517, - "2024-01-01": 46275, - "2023-01-01": 43980, - "2022-01-01": 40979, - "2021-01-01": 39830, - "2015-01-01": 39830 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.credits.resident_tax_relief": { - "type": "parameterNode", - "parameter": "gov.states.nd.tax.income.credits.resident_tax_relief", - "description": null, - "label": "resident tax relief", - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.credits.resident_tax_relief.joint_amount": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.credits.resident_tax_relief.joint_amount", - "description": "North Dakota had for 2021-2022 a nonrefundable resident-tax-relief credit of this amount for joint filing units.", - "label": "North Dakota resident-tax-relief credit amount for joint filing units", - "unit": "currency-USD", - "period": "year", - "values": { - "2023-01-01": 0, - "2022-01-01": 700, - "2021-01-01": 700, - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.credits.resident_tax_relief.other_amount": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.credits.resident_tax_relief.other_amount", - "description": "North Dakota had for 2021-2022 a nonrefundable resident-tax-relief credit of this amount for non-joint filing units.", - "label": "North Dakota resident-tax-relief credit amount for non-joint filing units", - "unit": "currency-USD", - "period": "year", - "values": { - "2023-01-01": 0, - "2022-01-01": 350, - "2021-01-01": 350, - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.credits.nonrefundable": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.credits.nonrefundable", - "description": "North Dakota non-refundable credits.", - "label": "North Dakota non-refundable credits", - "unit": "list", - "period": "year", - "values": { - "2023-01-01": ["nd_mpc"], - "2021-01-01": ["nd_mpc", "nd_rtrc"], - "2015-01-01": ["nd_mpc", "nd_rtrc"] - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.taxable_income": { - "type": "parameterNode", - "parameter": "gov.states.nd.tax.income.taxable_income", - "description": null, - "label": "taxable income", - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.taxable_income.subtractions": { - "type": "parameterNode", - "parameter": "gov.states.nd.tax.income.taxable_income.subtractions", - "description": null, - "label": "subtractions", - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.taxable_income.subtractions.sources": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.taxable_income.subtractions.sources", - "description": "North Dakota subtracts these variables from US taxable income when computing its taxable income.", - "label": "North Dakota subtractions from federal taxable income", - "unit": "list", - "period": "year", - "values": { - "2023-01-01": [ - "us_govt_interest", - "nd_ltcg_subtraction", - "nd_qdiv_subtraction", - "taxable_social_security", - "military_retirement_pay", - "military_service_income" - ], - "2021-01-01": [ - "us_govt_interest", - "nd_ltcg_subtraction", - "nd_qdiv_subtraction", - "taxable_social_security", - "military_retirement_pay" - ], - "2015-01-01": [ - "us_govt_interest", - "nd_ltcg_subtraction", - "nd_qdiv_subtraction", - "taxable_social_security", - "military_retirement_pay" - ] - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.taxable_income.subtractions.ltcg_fraction": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.taxable_income.subtractions.ltcg_fraction", - "description": "North Dakota subtracts this fraction of long-term capital gains from US taxable income when calculating its taxable income.", - "label": "North Dakota fraction of long-term capital gains that can be subtracted from taxable income", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.4, - "2015-01-01": 0.4 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.taxable_income.subtractions.qdiv_fraction": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.taxable_income.subtractions.qdiv_fraction", - "description": "North Dakota subtracts this fraction of qualified dividends from US taxable income when calculating its taxable income.", - "label": "North Dakota fraction of qualified dividends that can be subtracted from taxable income", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.4, - "2015-01-01": 0.4 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.taxable_income.additions": { - "type": "parameterNode", - "parameter": "gov.states.nd.tax.income.taxable_income.additions", - "description": null, - "label": "additions", - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.taxable_income.additions.sources": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.taxable_income.additions.sources", - "description": "North Dakota adds these variables to US taxable income when computing its taxable income.", - "label": "North Dakota additions to US taxable income", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": ["form_4972_lumpsum_distributions"], - "2015-01-01": ["form_4972_lumpsum_distributions"] - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates": { - "type": "parameterNode", - "parameter": "gov.states.nd.tax.income.rates", - "description": null, - "label": "rates", - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.head_of_household": { - "type": "parameterNode", - "parameter": "gov.states.nd.tax.income.rates.head_of_household", - "description": "North Dakota taxes income at these rates for head-of-household filing units.", - "label": "North Dakota income tax rates for head-of-household filing units" - }, - "gov.states.nd.tax.income.rates.head_of_household[0]": { - "type": "parameterNode", - "parameter": "gov.states.nd.tax.income.rates.head_of_household[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nd.tax.income.rates.head_of_household[0].rate": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.head_of_household[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0, - "2021-01-01": 0.011, - "2015-01-01": 0.011 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.head_of_household[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.head_of_household[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.head_of_household[1]": { - "type": "parameterNode", - "parameter": "gov.states.nd.tax.income.rates.head_of_household[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nd.tax.income.rates.head_of_household[1].rate": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.head_of_household[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.0195, - "2021-01-01": 0.0204, - "2015-01-01": 0.0204 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.head_of_household[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.head_of_household[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 63175, - "2023-01-01": 59950, - "2022-01-01": 55900, - "2021-01-01": 54300, - "2015-01-01": 54300 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.head_of_household[2]": { - "type": "parameterNode", - "parameter": "gov.states.nd.tax.income.rates.head_of_household[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nd.tax.income.rates.head_of_household[2].rate": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.head_of_household[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.025, - "2021-01-01": 0.0227, - "2015-01-01": 0.0227 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.head_of_household[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.head_of_household[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 264100, - "2023-01-01": 250550, - "2022-01-01": 144400, - "2021-01-01": 140200, - "2015-01-01": 140200 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.head_of_household[3]": { - "type": "parameterNode", - "parameter": "gov.states.nd.tax.income.rates.head_of_household[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.nd.tax.income.rates.head_of_household[3].rate": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.head_of_household[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.025, - "2021-01-01": 0.0264, - "2015-01-01": 0.0264 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.head_of_household[3].threshold": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.head_of_household[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": "Infinity", - "2022-01-01": 233750, - "2021-01-01": 226950, - "2015-01-01": 226950 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.head_of_household[4]": { - "type": "parameterNode", - "parameter": "gov.states.nd.tax.income.rates.head_of_household[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.nd.tax.income.rates.head_of_household[4].rate": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.head_of_household[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.025, - "2021-01-01": 0.029, - "2015-01-01": 0.029 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.head_of_household[4].threshold": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.head_of_household[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": "Infinity", - "2022-01-01": 458350, - "2021-01-01": 445000, - "2015-01-01": 445000 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.separate": { - "type": "parameterNode", - "parameter": "gov.states.nd.tax.income.rates.separate", - "description": "North Dakota taxes income at these rates for separate filing units.", - "label": "North Dakota income tax rates for separate filing units" - }, - "gov.states.nd.tax.income.rates.separate[0]": { - "type": "parameterNode", - "parameter": "gov.states.nd.tax.income.rates.separate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nd.tax.income.rates.separate[0].rate": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.separate[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0, - "2021-01-01": 0.011, - "2015-01-01": 0.011 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.separate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.separate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.separate[1]": { - "type": "parameterNode", - "parameter": "gov.states.nd.tax.income.rates.separate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nd.tax.income.rates.separate[1].rate": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.separate[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.0195, - "2021-01-01": 0.0204, - "2015-01-01": 0.0204 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.separate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.separate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 39375, - "2023-01-01": 37375, - "2022-01-01": 34850, - "2021-01-01": 33850, - "2015-01-01": 33850 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.separate[2]": { - "type": "parameterNode", - "parameter": "gov.states.nd.tax.income.rates.separate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nd.tax.income.rates.separate[2].rate": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.separate[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.025, - "2021-01-01": 0.0227, - "2015-01-01": 0.0227 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.separate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.separate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 144975, - "2023-01-01": 137550, - "2022-01-01": 84225, - "2021-01-01": 81775, - "2015-01-01": 81775 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.separate[3]": { - "type": "parameterNode", - "parameter": "gov.states.nd.tax.income.rates.separate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.nd.tax.income.rates.separate[3].rate": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.separate[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.025, - "2021-01-01": 0.0264, - "2015-01-01": 0.0264 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.separate[3].threshold": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.separate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": "Infinity", - "2022-01-01": 128325, - "2021-01-01": 124575, - "2015-01-01": 124575 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.separate[4]": { - "type": "parameterNode", - "parameter": "gov.states.nd.tax.income.rates.separate[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.nd.tax.income.rates.separate[4].rate": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.separate[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.025, - "2021-01-01": 0.029, - "2015-01-01": 0.029 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.separate[4].threshold": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.separate[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": "Infinity", - "2022-01-01": 229175, - "2021-01-01": 222500, - "2015-01-01": 222500 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.joint": { - "type": "parameterNode", - "parameter": "gov.states.nd.tax.income.rates.joint", - "description": "North Dakota taxes income at these rates for joint filing units.", - "label": "North Dakota income tax rates for joint filing units" - }, - "gov.states.nd.tax.income.rates.joint[0]": { - "type": "parameterNode", - "parameter": "gov.states.nd.tax.income.rates.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nd.tax.income.rates.joint[0].rate": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.joint[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0, - "2021-01-01": 0.011, - "2015-01-01": 0.011 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.joint[1]": { - "type": "parameterNode", - "parameter": "gov.states.nd.tax.income.rates.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nd.tax.income.rates.joint[1].rate": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.joint[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.0195, - "2021-01-01": 0.0204, - "2015-01-01": 0.0204 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 78775, - "2023-01-01": 74750, - "2022-01-01": 69700, - "2021-01-01": 67700, - "2015-01-01": 67700 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.joint[2]": { - "type": "parameterNode", - "parameter": "gov.states.nd.tax.income.rates.joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nd.tax.income.rates.joint[2].rate": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.joint[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.025, - "2021-01-01": 0.0227, - "2015-01-01": 0.0227 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.joint[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 289975, - "2023-01-01": 275100, - "2022-01-01": 168450, - "2021-01-01": 163550, - "2015-01-01": 163550 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.joint[3]": { - "type": "parameterNode", - "parameter": "gov.states.nd.tax.income.rates.joint[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.nd.tax.income.rates.joint[3].rate": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.joint[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.025, - "2021-01-01": 0.0264, - "2015-01-01": 0.0264 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.joint[3].threshold": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.joint[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": "Infinity", - "2022-01-01": 256650, - "2021-01-01": 249150, - "2015-01-01": 249150 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.joint[4]": { - "type": "parameterNode", - "parameter": "gov.states.nd.tax.income.rates.joint[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.nd.tax.income.rates.joint[4].rate": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.joint[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.025, - "2021-01-01": 0.029, - "2015-01-01": 0.029 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.joint[4].threshold": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.joint[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": "Infinity", - "2022-01-01": 458350, - "2021-01-01": 445000, - "2015-01-01": 445000 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.single": { - "type": "parameterNode", - "parameter": "gov.states.nd.tax.income.rates.single", - "description": "North Dakota taxes income at these rates for single filing units.", - "label": "North Dakota income tax rates for single filing units" - }, - "gov.states.nd.tax.income.rates.single[0]": { - "type": "parameterNode", - "parameter": "gov.states.nd.tax.income.rates.single[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nd.tax.income.rates.single[0].rate": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.single[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0, - "2021-01-01": 0.011, - "2015-01-01": 0.011 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.single[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.single[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.single[1]": { - "type": "parameterNode", - "parameter": "gov.states.nd.tax.income.rates.single[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nd.tax.income.rates.single[1].rate": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.single[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.0195, - "2021-01-01": 0.0204, - "2015-01-01": 0.0204 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.single[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.single[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 47150, - "2023-01-01": 44725, - "2022-01-01": 41775, - "2021-01-01": 40525, - "2015-01-01": 40525 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.single[2]": { - "type": "parameterNode", - "parameter": "gov.states.nd.tax.income.rates.single[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nd.tax.income.rates.single[2].rate": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.single[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.025, - "2021-01-01": 0.0227, - "2015-01-01": 0.0227 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.single[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.single[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 238200, - "2023-01-01": 225975, - "2022-01-01": 101050, - "2021-01-01": 98100, - "2015-01-01": 98100 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.single[3]": { - "type": "parameterNode", - "parameter": "gov.states.nd.tax.income.rates.single[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.nd.tax.income.rates.single[3].rate": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.single[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.025, - "2021-01-01": 0.0264, - "2015-01-01": 0.0264 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.single[3].threshold": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.single[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": "Infinity", - "2022-01-01": 210825, - "2021-01-01": 204675, - "2015-01-01": 204675 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.single[4]": { - "type": "parameterNode", - "parameter": "gov.states.nd.tax.income.rates.single[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.nd.tax.income.rates.single[4].rate": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.single[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.025, - "2021-01-01": 0.029, - "2015-01-01": 0.029 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.single[4].threshold": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.single[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": "Infinity", - "2022-01-01": 458350, - "2021-01-01": 445000, - "2015-01-01": 445000 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.surviving_spouse": { - "type": "parameterNode", - "parameter": "gov.states.nd.tax.income.rates.surviving_spouse", - "description": "North Dakota taxes income at these rates for surviving spouse filing units.", - "label": "North Dakota income tax rates for surviving spouse filing units" - }, - "gov.states.nd.tax.income.rates.surviving_spouse[0]": { - "type": "parameterNode", - "parameter": "gov.states.nd.tax.income.rates.surviving_spouse[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nd.tax.income.rates.surviving_spouse[0].rate": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.surviving_spouse[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0, - "2021-01-01": 0.011, - "2015-01-01": 0.011 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.surviving_spouse[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.surviving_spouse[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.surviving_spouse[1]": { - "type": "parameterNode", - "parameter": "gov.states.nd.tax.income.rates.surviving_spouse[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nd.tax.income.rates.surviving_spouse[1].rate": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.surviving_spouse[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.0195, - "2021-01-01": 0.0204, - "2015-01-01": 0.0204 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.surviving_spouse[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.surviving_spouse[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 78775, - "2023-01-01": 74750, - "2022-01-01": 69700, - "2021-01-01": 67700, - "2015-01-01": 67700 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.surviving_spouse[2]": { - "type": "parameterNode", - "parameter": "gov.states.nd.tax.income.rates.surviving_spouse[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nd.tax.income.rates.surviving_spouse[2].rate": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.surviving_spouse[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.025, - "2021-01-01": 0.0227, - "2015-01-01": 0.0227 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.surviving_spouse[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.surviving_spouse[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 289975, - "2023-01-01": 275100, - "2022-01-01": 168450, - "2021-01-01": 163550, - "2015-01-01": 163550 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.surviving_spouse[3]": { - "type": "parameterNode", - "parameter": "gov.states.nd.tax.income.rates.surviving_spouse[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.nd.tax.income.rates.surviving_spouse[3].rate": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.surviving_spouse[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.025, - "2021-01-01": 0.0264, - "2015-01-01": 0.0264 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.surviving_spouse[3].threshold": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.surviving_spouse[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": "Infinity", - "2022-01-01": 256650, - "2021-01-01": 249150, - "2015-01-01": 249150 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.surviving_spouse[4]": { - "type": "parameterNode", - "parameter": "gov.states.nd.tax.income.rates.surviving_spouse[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.nd.tax.income.rates.surviving_spouse[4].rate": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.surviving_spouse[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.025, - "2021-01-01": 0.029, - "2015-01-01": 0.029 - }, - "economy": true, - "household": true - }, - "gov.states.nd.tax.income.rates.surviving_spouse[4].threshold": { - "type": "parameter", - "parameter": "gov.states.nd.tax.income.rates.surviving_spouse[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": "Infinity", - "2022-01-01": 458350, - "2021-01-01": 445000, - "2015-01-01": 445000 - }, - "economy": true, - "household": true - }, - "gov.states.co": { - "type": "parameterNode", - "parameter": "gov.states.co", - "description": null, - "label": "Colorado", - "economy": true, - "household": true - }, - "gov.states.co.ssa": { - "type": "parameterNode", - "parameter": "gov.states.co.ssa", - "description": null, - "label": "Social Security Administration", - "economy": true, - "household": true - }, - "gov.states.co.ssa.state_supplement": { - "type": "parameterNode", - "parameter": "gov.states.co.ssa.state_supplement", - "description": null, - "label": "state supplement", - "economy": true, - "household": true - }, - "gov.states.co.ssa.state_supplement.grant_standard": { - "type": "parameter", - "parameter": "gov.states.co.ssa.state_supplement.grant_standard", - "description": "Grant Standard for Colorado State Supplement", - "label": "Colorado State Supplement grant standard", - "unit": "currency-USD", - "period": "month", - "values": { - "2025-01-01": 967, - "2024-01-01": 943, - "2023-01-01": 914, - "2015-01-01": 914 - }, - "economy": true, - "household": true - }, - "gov.states.co.ssa.state_supplement.age_range": { - "type": "parameterNode", - "parameter": "gov.states.co.ssa.state_supplement.age_range", - "description": "Age range defining someone eligible for Colorado SSI State Supplement", - "label": "Colorado State Supplement age range" - }, - "gov.states.co.ssa.state_supplement.age_range[0]": { - "type": "parameterNode", - "parameter": "gov.states.co.ssa.state_supplement.age_range[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.co.ssa.state_supplement.age_range[0].threshold": { - "type": "parameter", - "parameter": "gov.states.co.ssa.state_supplement.age_range[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.co.ssa.state_supplement.age_range[0].amount": { - "type": "parameter", - "parameter": "gov.states.co.ssa.state_supplement.age_range[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.states.co.ssa.state_supplement.age_range[1]": { - "type": "parameterNode", - "parameter": "gov.states.co.ssa.state_supplement.age_range[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.co.ssa.state_supplement.age_range[1].threshold": { - "type": "parameter", - "parameter": "gov.states.co.ssa.state_supplement.age_range[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2023-01-01": 60, - "2015-01-01": 60 - }, - "economy": true, - "household": true - }, - "gov.states.co.ssa.state_supplement.age_range[1].amount": { - "type": "parameter", - "parameter": "gov.states.co.ssa.state_supplement.age_range[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.co.ssa.oap": { - "type": "parameterNode", - "parameter": "gov.states.co.ssa.oap", - "description": null, - "label": "Old Age Pension", - "economy": true, - "household": true - }, - "gov.states.co.ssa.oap.grant_standard": { - "type": "parameter", - "parameter": "gov.states.co.ssa.oap.grant_standard", - "description": "Grant Standard for OAP", - "label": "Colorado OAP grant standard", - "unit": "currency-USD", - "period": "month", - "values": { - "2025-01-01": 1005, - "2024-01-01": 982, - "2023-01-01": 952, - "2015-01-01": 952 - }, - "economy": true, - "household": true - }, - "gov.states.co.ssa.oap.age_range": { - "type": "parameterNode", - "parameter": "gov.states.co.ssa.oap.age_range", - "description": "Colorado limits its Old Age Pension to individuals in this age range.", - "label": "Colorado OAP age range" - }, - "gov.states.co.ssa.oap.age_range[0]": { - "type": "parameterNode", - "parameter": "gov.states.co.ssa.oap.age_range[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.co.ssa.oap.age_range[0].threshold": { - "type": "parameter", - "parameter": "gov.states.co.ssa.oap.age_range[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.co.ssa.oap.age_range[0].amount": { - "type": "parameter", - "parameter": "gov.states.co.ssa.oap.age_range[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.co.ssa.oap.age_range[1]": { - "type": "parameterNode", - "parameter": "gov.states.co.ssa.oap.age_range[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.co.ssa.oap.age_range[1].threshold": { - "type": "parameter", - "parameter": "gov.states.co.ssa.oap.age_range[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2023-01-01": 60, - "2015-01-01": 60 - }, - "economy": true, - "household": true - }, - "gov.states.co.ssa.oap.age_range[1].amount": { - "type": "parameter", - "parameter": "gov.states.co.ssa.oap.age_range[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.states.co.ssa.oap.resources": { - "type": "parameterNode", - "parameter": "gov.states.co.ssa.oap.resources", - "description": null, - "label": "resources", - "economy": true, - "household": true - }, - "gov.states.co.ssa.oap.resources.couple": { - "type": "parameter", - "parameter": "gov.states.co.ssa.oap.resources.couple", - "description": "Colorado OAP resource limit for couples.", - "label": "Colorado OAP resource limit for couples", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 3000, - "2015-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.co.ssa.oap.resources.single": { - "type": "parameter", - "parameter": "gov.states.co.ssa.oap.resources.single", - "description": "Colorado OAP resource limit for singles.", - "label": "Colorado OAP resource limit for singles", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 2000, - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs": { - "type": "parameterNode", - "parameter": "gov.states.co.cdhs", - "description": null, - "label": "Colorado Department of Human Services", - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf": { - "type": "parameterNode", - "parameter": "gov.states.co.cdhs.tanf", - "description": null, - "label": "Temporary Assistance for Needy Families", - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.income": { - "type": "parameterNode", - "parameter": "gov.states.co.cdhs.tanf.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.income.earned": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.income.earned", - "description": "Colorado TANF counts these income sources as earned income.", - "label": "earned", - "unit": "list", - "period": null, - "values": { - "2010-01-01": ["employment_income", "self_employment_income"] - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.income.earned_exclusion": { - "type": "parameterNode", - "parameter": "gov.states.co.cdhs.tanf.income.earned_exclusion", - "description": null, - "label": "earned exclusion", - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.income.earned_exclusion.percent": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.income.earned_exclusion.percent", - "description": "Colorado excludes this share of earnings from TANF countable income, except for determining need for new applicants.", - "label": "Colorado TANF earnings exclusion percent", - "unit": "/1", - "period": "month", - "values": { - "2022-03-01": 0.67, - "2015-01-01": 0.67 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.income.earned_exclusion.flat": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.income.earned_exclusion.flat", - "description": "Colorado excludes this amount of earnings from TANF countable income when determining need for new applicants.", - "label": "Colorado TANF flat earnings exclusion", - "unit": "currency-USD", - "period": "month", - "values": { - "2022-03-01": 90, - "2015-01-01": 90 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.income.unearned": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.income.unearned", - "description": "Colorado TANF counts these income sources as unearned income.", - "label": "unearned", - "unit": "list", - "period": null, - "values": { - "2021-01-01": [ - "veterans_benefits", - "rental_income", - "alimony_income", - "dividend_income", - "interest_income", - "miscellaneous_income", - "pension_income", - "unemployment_compensation", - "gi_cash_assistance", - "social_security", - "ssi" - ], - "2015-01-01": [ - "veterans_benefits", - "rental_income", - "alimony_income", - "dividend_income", - "interest_income", - "miscellaneous_income", - "pension_income", - "unemployment_compensation", - "gi_cash_assistance", - "social_security", - "ssi" - ] - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.grant_standard": { - "type": "parameterNode", - "parameter": "gov.states.co.cdhs.tanf.grant_standard", - "description": null, - "label": "grant standard", - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.grant_standard.pregnancy_allowance": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.grant_standard.pregnancy_allowance", - "description": "Colorado TANF grant standard additional amount for pregnant women.", - "label": "pregnancy allowance", - "unit": "currency-USD", - "period": "month", - "values": { - "2022-03-01": 10, - "2015-01-01": 10 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.grant_standard.main": { - "type": "parameterNode", - "parameter": "gov.states.co.cdhs.tanf.grant_standard.main", - "description": "Colorado TANF grant standard by number of caretakers and children.", - "label": "main", - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.grant_standard.main.0": { - "type": "parameterNode", - "parameter": "gov.states.co.cdhs.tanf.grant_standard.main.0", - "description": null, - "label": "0", - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.grant_standard.main.0.0": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.grant_standard.main.0.0", - "description": null, - "label": "0", - "unit": null, - "period": null, - "values": { - "2024-07-01": 0, - "2022-03-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.grant_standard.main.0.1": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.grant_standard.main.0.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2024-07-01": 165, - "2022-03-01": 156, - "2015-01-01": 156 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.grant_standard.main.0.2": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.grant_standard.main.0.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2024-07-01": 345, - "2022-03-01": 326, - "2015-01-01": 326 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.grant_standard.main.0.3": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.grant_standard.main.0.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2024-07-01": 518, - "2022-03-01": 489, - "2015-01-01": 489 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.grant_standard.main.0.4": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.grant_standard.main.0.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2024-07-01": 691, - "2022-03-01": 653, - "2015-01-01": 653 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.grant_standard.main.0.5": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.grant_standard.main.0.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2024-07-01": 829, - "2022-03-01": 783, - "2015-01-01": 783 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.grant_standard.main.0.6": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.grant_standard.main.0.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2024-07-01": 957, - "2022-03-01": 904, - "2015-01-01": 904 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.grant_standard.main.0.7": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.grant_standard.main.0.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2024-07-01": 1066, - "2022-03-01": 1007, - "2015-01-01": 1007 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.grant_standard.main.0.8": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.grant_standard.main.0.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2024-07-01": 1170, - "2022-03-01": 1105, - "2015-01-01": 1105 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.grant_standard.main.0.9": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.grant_standard.main.0.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2024-07-01": 1276, - "2022-03-01": 1205, - "2015-01-01": 1205 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.grant_standard.main.0.10": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.grant_standard.main.0.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2024-07-01": 1393, - "2022-03-01": 1315, - "2015-01-01": 1315 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.grant_standard.main.1": { - "type": "parameterNode", - "parameter": "gov.states.co.cdhs.tanf.grant_standard.main.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.grant_standard.main.1.0": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.grant_standard.main.1.0", - "description": null, - "label": "0", - "unit": null, - "period": null, - "values": { - "2024-07-01": 357, - "2022-03-01": 337, - "2015-01-01": 337 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.grant_standard.main.1.1": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.grant_standard.main.1.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2024-07-01": 466, - "2022-03-01": 440, - "2015-01-01": 440 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.grant_standard.main.1.2": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.grant_standard.main.1.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2024-07-01": 592, - "2022-03-01": 559, - "2015-01-01": 559 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.grant_standard.main.1.3": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.grant_standard.main.1.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2024-07-01": 719, - "2022-03-01": 679, - "2015-01-01": 679 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.grant_standard.main.1.4": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.grant_standard.main.1.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2024-07-01": 853, - "2022-03-01": 806, - "2015-01-01": 806 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.grant_standard.main.1.5": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.grant_standard.main.1.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2024-07-01": 984, - "2022-03-01": 929, - "2015-01-01": 929 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.grant_standard.main.1.6": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.grant_standard.main.1.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2024-07-01": 1086, - "2022-03-01": 1026, - "2015-01-01": 1026 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.grant_standard.main.1.7": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.grant_standard.main.1.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2024-07-01": 1191, - "2022-03-01": 1125, - "2015-01-01": 1125 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.grant_standard.main.1.8": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.grant_standard.main.1.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2024-07-01": 1297, - "2022-03-01": 1225, - "2015-01-01": 1225 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.grant_standard.main.1.9": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.grant_standard.main.1.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2024-07-01": 1400, - "2022-03-01": 1322, - "2015-01-01": 1322 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.grant_standard.main.1.10": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.grant_standard.main.1.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2024-07-01": 1502, - "2022-03-01": 1418, - "2015-01-01": 1418 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.grant_standard.main.2": { - "type": "parameterNode", - "parameter": "gov.states.co.cdhs.tanf.grant_standard.main.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.grant_standard.main.2.0": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.grant_standard.main.2.0", - "description": null, - "label": "0", - "unit": null, - "period": null, - "values": { - "2024-07-01": 503, - "2022-03-01": 475, - "2015-01-01": 475 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.grant_standard.main.2.1": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.grant_standard.main.2.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2024-07-01": 619, - "2022-03-01": 585, - "2015-01-01": 585 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.grant_standard.main.2.2": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.grant_standard.main.2.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2024-07-01": 752, - "2022-03-01": 710, - "2015-01-01": 710 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.grant_standard.main.2.3": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.grant_standard.main.2.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2024-07-01": 885, - "2022-03-01": 836, - "2015-01-01": 836 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.grant_standard.main.2.4": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.grant_standard.main.2.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2024-07-01": 1009, - "2022-03-01": 953, - "2015-01-01": 953 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.grant_standard.main.2.5": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.grant_standard.main.2.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2024-07-01": 1110, - "2022-03-01": 1048, - "2015-01-01": 1048 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.grant_standard.main.2.6": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.grant_standard.main.2.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2024-07-01": 1215, - "2022-03-01": 1147, - "2015-01-01": 1147 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.grant_standard.main.2.7": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.grant_standard.main.2.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2024-07-01": 1323, - "2022-03-01": 1249, - "2015-01-01": 1249 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.grant_standard.main.2.8": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.grant_standard.main.2.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2024-07-01": 1424, - "2022-03-01": 1345, - "2015-01-01": 1345 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.grant_standard.main.2.9": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.grant_standard.main.2.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2024-07-01": 1525, - "2022-03-01": 1440, - "2015-01-01": 1440 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.grant_standard.main.2.10": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.grant_standard.main.2.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2024-07-01": 1629, - "2022-03-01": 1538, - "2015-01-01": 1538 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.grant_standard.additional_child": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.grant_standard.additional_child", - "description": "Colorado TANF grant standard additional amount per child over 10.", - "label": "additional child", - "unit": "currency-USD", - "period": "month", - "values": { - "2022-03-01": 82, - "2015-01-01": 82 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.need_standard": { - "type": "parameterNode", - "parameter": "gov.states.co.cdhs.tanf.need_standard", - "description": null, - "label": "need standard", - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.need_standard.main": { - "type": "parameterNode", - "parameter": "gov.states.co.cdhs.tanf.need_standard.main", - "description": "Colorado TANF need standard by number of caretakers and children.", - "label": "main", - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.need_standard.main.0": { - "type": "parameterNode", - "parameter": "gov.states.co.cdhs.tanf.need_standard.main.0", - "description": null, - "label": "0", - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.need_standard.main.0.0": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.need_standard.main.0.0", - "description": null, - "label": "0", - "unit": null, - "period": null, - "values": { - "2022-03-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.need_standard.main.0.1": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.need_standard.main.0.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2022-03-01": 117, - "2015-01-01": 117 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.need_standard.main.0.2": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.need_standard.main.0.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2022-03-01": 245, - "2015-01-01": 245 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.need_standard.main.0.3": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.need_standard.main.0.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2022-03-01": 368, - "2015-01-01": 368 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.need_standard.main.0.4": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.need_standard.main.0.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2022-03-01": 490, - "2015-01-01": 490 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.need_standard.main.0.5": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.need_standard.main.0.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2022-03-01": 587, - "2015-01-01": 587 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.need_standard.main.0.6": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.need_standard.main.0.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2022-03-01": 678, - "2015-01-01": 678 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.need_standard.main.0.7": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.need_standard.main.0.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2022-03-01": 755, - "2015-01-01": 755 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.need_standard.main.0.8": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.need_standard.main.0.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2022-03-01": 830, - "2015-01-01": 830 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.need_standard.main.0.9": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.need_standard.main.0.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2022-03-01": 904, - "2015-01-01": 904 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.need_standard.main.0.10": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.need_standard.main.0.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2022-03-01": 977, - "2015-01-01": 977 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.need_standard.main.1": { - "type": "parameterNode", - "parameter": "gov.states.co.cdhs.tanf.need_standard.main.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.need_standard.main.1.0": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.need_standard.main.1.0", - "description": null, - "label": "0", - "unit": null, - "period": null, - "values": { - "2022-03-01": 253, - "2015-01-01": 253 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.need_standard.main.1.1": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.need_standard.main.1.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2022-03-01": 331, - "2015-01-01": 331 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.need_standard.main.1.2": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.need_standard.main.1.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2022-03-01": 421, - "2015-01-01": 421 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.need_standard.main.1.3": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.need_standard.main.1.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2022-03-01": 510, - "2015-01-01": 510 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.need_standard.main.1.4": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.need_standard.main.1.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2022-03-01": 605, - "2015-01-01": 605 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.need_standard.main.1.5": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.need_standard.main.1.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2022-03-01": 697, - "2015-01-01": 697 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.need_standard.main.1.6": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.need_standard.main.1.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2022-03-01": 770, - "2015-01-01": 770 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.need_standard.main.1.7": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.need_standard.main.1.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2022-03-01": 844, - "2015-01-01": 844 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.need_standard.main.1.8": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.need_standard.main.1.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2022-03-01": 920, - "2015-01-01": 920 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.need_standard.main.1.9": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.need_standard.main.1.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2022-03-01": 992, - "2015-01-01": 992 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.need_standard.main.1.10": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.need_standard.main.1.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2022-03-01": 1065, - "2015-01-01": 1065 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.need_standard.main.2": { - "type": "parameterNode", - "parameter": "gov.states.co.cdhs.tanf.need_standard.main.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.need_standard.main.2.0": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.need_standard.main.2.0", - "description": null, - "label": "0", - "unit": null, - "period": null, - "values": { - "2022-03-01": 357, - "2015-01-01": 357 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.need_standard.main.2.1": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.need_standard.main.2.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2022-03-01": 439, - "2015-01-01": 439 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.need_standard.main.2.2": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.need_standard.main.2.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2022-03-01": 533, - "2015-01-01": 533 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.need_standard.main.2.3": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.need_standard.main.2.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2022-03-01": 628, - "2015-01-01": 628 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.need_standard.main.2.4": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.need_standard.main.2.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2022-03-01": 716, - "2015-01-01": 716 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.need_standard.main.2.5": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.need_standard.main.2.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2022-03-01": 787, - "2015-01-01": 787 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.need_standard.main.2.6": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.need_standard.main.2.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2022-03-01": 861, - "2015-01-01": 861 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.need_standard.main.2.7": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.need_standard.main.2.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2022-03-01": 937, - "2015-01-01": 937 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.need_standard.main.2.8": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.need_standard.main.2.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2022-03-01": 1009, - "2015-01-01": 1009 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.need_standard.main.2.9": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.need_standard.main.2.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2022-03-01": 1082, - "2015-01-01": 1082 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.need_standard.main.2.10": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.need_standard.main.2.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2022-03-01": 1155, - "2015-01-01": 1155 - }, - "economy": true, - "household": true - }, - "gov.states.co.cdhs.tanf.need_standard.additional_child": { - "type": "parameter", - "parameter": "gov.states.co.cdhs.tanf.need_standard.additional_child", - "description": "Colorado TANF need standard additional amount per child over 10.", - "label": "additional child", - "unit": "currency-USD", - "period": "month", - "values": { - "2022-03-01": 67, - "2015-01-01": 67 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf", - "description": null, - "label": "hcpf", - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp", - "description": null, - "label": "chp", - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays", - "description": null, - "label": "copays", - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.lab": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.lab", - "description": "Colorado limits the lab co-pay under the Child Health Plan Plus to this amount, based on income as a percent of the poverty line.", - "label": "Colorado CHP+ lab co-pay" - }, - "gov.states.co.hcpf.chp.copays.lab[0]": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.lab[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.co.hcpf.chp.copays.lab[0].threshold": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.lab[0].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.lab[0].amount": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.lab[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.lab[1]": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.lab[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.co.hcpf.chp.copays.lab[1].threshold": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.lab[1].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 1.57, - "2015-01-01": 1.57 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.lab[1].amount": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.lab[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": 5, - "2015-01-01": 5 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.lab[2]": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.lab[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.co.hcpf.chp.copays.lab[2].threshold": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.lab[2].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 2.01, - "2015-01-01": 2.01 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.lab[2].amount": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.lab[2].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": 10, - "2015-01-01": 10 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.lab[3]": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.lab[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.co.hcpf.chp.copays.lab[3].threshold": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.lab[3].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 2.61, - "2015-01-01": 2.61 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.lab[3].amount": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.lab[3].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.prescription": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.prescription", - "description": "Colorado limits the prescription co-pay under the Child Health Plan Plus to this amount, based on income as a percent of the poverty line.", - "label": "Colorado CHP+ mean prescription co-pay" - }, - "gov.states.co.hcpf.chp.copays.prescription[0]": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.prescription[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.co.hcpf.chp.copays.prescription[0].threshold": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.prescription[0].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.prescription[0].amount": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.prescription[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.prescription[1]": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.prescription[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.co.hcpf.chp.copays.prescription[1].threshold": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.prescription[1].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 1.01, - "2015-01-01": 1.01 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.prescription[1].amount": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.prescription[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.prescription[2]": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.prescription[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.co.hcpf.chp.copays.prescription[2].threshold": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.prescription[2].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 1.57, - "2015-01-01": 1.57 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.prescription[2].amount": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.prescription[2].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": 6.5, - "2015-01-01": 6.5 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.prescription[3]": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.prescription[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.co.hcpf.chp.copays.prescription[3].threshold": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.prescription[3].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 2.01, - "2015-01-01": 2.01 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.prescription[3].amount": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.prescription[3].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": 10, - "2015-01-01": 10 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.prescription[4]": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.prescription[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.co.hcpf.chp.copays.prescription[4].threshold": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.prescription[4].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 2.61, - "2015-01-01": 2.61 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.prescription[4].amount": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.prescription[4].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.physician_services": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.physician_services", - "description": "Colorado limits the physician services co-pay under the Child Health Plan Plus to this amount, based on income as a percent of the poverty line.", - "label": "Colorado CHP+ physician services co-pay" - }, - "gov.states.co.hcpf.chp.copays.physician_services[0]": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.physician_services[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.co.hcpf.chp.copays.physician_services[0].threshold": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.physician_services[0].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.physician_services[0].amount": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.physician_services[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.physician_services[1]": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.physician_services[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.co.hcpf.chp.copays.physician_services[1].threshold": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.physician_services[1].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 1.01, - "2015-01-01": 1.01 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.physician_services[1].amount": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.physician_services[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.physician_services[2]": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.physician_services[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.co.hcpf.chp.copays.physician_services[2].threshold": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.physician_services[2].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 1.57, - "2015-01-01": 1.57 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.physician_services[2].amount": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.physician_services[2].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": 5, - "2015-01-01": 5 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.physician_services[3]": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.physician_services[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.co.hcpf.chp.copays.physician_services[3].threshold": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.physician_services[3].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 2.01, - "2015-01-01": 2.01 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.physician_services[3].amount": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.physician_services[3].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": 10, - "2015-01-01": 10 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.physician_services[4]": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.physician_services[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.co.hcpf.chp.copays.physician_services[4].threshold": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.physician_services[4].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 2.61, - "2015-01-01": 2.61 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.physician_services[4].amount": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.physician_services[4].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.outpatient": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.outpatient", - "description": "Colorado limits the outpatient co-pay under the Child Health Plan Plus to this amount, based on income as a percent of the poverty line.", - "label": "Colorado CHP+ outpatient hospital co-pay" - }, - "gov.states.co.hcpf.chp.copays.outpatient[0]": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.outpatient[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.co.hcpf.chp.copays.outpatient[0].threshold": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.outpatient[0].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.outpatient[0].amount": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.outpatient[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.outpatient[1]": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.outpatient[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.co.hcpf.chp.copays.outpatient[1].threshold": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.outpatient[1].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 1.01, - "2015-01-01": 1.01 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.outpatient[1].amount": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.outpatient[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.outpatient[2]": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.outpatient[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.co.hcpf.chp.copays.outpatient[2].threshold": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.outpatient[2].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 1.57, - "2015-01-01": 1.57 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.outpatient[2].amount": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.outpatient[2].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": 5, - "2015-01-01": 5 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.outpatient[3]": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.outpatient[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.co.hcpf.chp.copays.outpatient[3].threshold": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.outpatient[3].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 2.01, - "2015-01-01": 2.01 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.outpatient[3].amount": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.outpatient[3].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": 10, - "2015-01-01": 10 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.outpatient[4]": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.outpatient[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.co.hcpf.chp.copays.outpatient[4].threshold": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.outpatient[4].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 2.61, - "2015-01-01": 2.61 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.outpatient[4].amount": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.outpatient[4].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.urgent_care": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.urgent_care", - "description": "Colorado limits the urgent care co-pay under the Child Health Plan Plus to this amount, based on income as a percent of the poverty line.", - "label": "Colorado CHP+ urgent care co-pay" - }, - "gov.states.co.hcpf.chp.copays.urgent_care[0]": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.urgent_care[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.co.hcpf.chp.copays.urgent_care[0].threshold": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.urgent_care[0].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.urgent_care[0].amount": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.urgent_care[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.urgent_care[1]": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.urgent_care[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.co.hcpf.chp.copays.urgent_care[1].threshold": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.urgent_care[1].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 1.57, - "2015-01-01": 1.57 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.urgent_care[1].amount": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.urgent_care[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": 20, - "2015-01-01": 20 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.urgent_care[2]": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.urgent_care[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.co.hcpf.chp.copays.urgent_care[2].threshold": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.urgent_care[2].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 2.01, - "2015-01-01": 2.01 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.urgent_care[2].amount": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.urgent_care[2].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": 30, - "2015-01-01": 30 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.urgent_care[3]": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.urgent_care[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.co.hcpf.chp.copays.urgent_care[3].threshold": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.urgent_care[3].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 2.61, - "2015-01-01": 2.61 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.urgent_care[3].amount": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.urgent_care[3].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.imaging": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.imaging", - "description": "Colorado limits the imaging co-pay under the Child Health Plan Plus to this amount, based on income as a percent of the poverty line.", - "label": "Colorado CHP+ Imaging co-pay" - }, - "gov.states.co.hcpf.chp.copays.imaging[0]": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.imaging[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.co.hcpf.chp.copays.imaging[0].threshold": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.imaging[0].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.imaging[0].amount": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.imaging[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.imaging[1]": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.imaging[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.co.hcpf.chp.copays.imaging[1].threshold": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.imaging[1].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 1.57, - "2015-01-01": 1.57 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.imaging[1].amount": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.imaging[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": 5, - "2015-01-01": 5 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.imaging[2]": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.imaging[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.co.hcpf.chp.copays.imaging[2].threshold": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.imaging[2].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 2.01, - "2015-01-01": 2.01 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.imaging[2].amount": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.imaging[2].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": 10, - "2015-01-01": 10 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.imaging[3]": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.imaging[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.co.hcpf.chp.copays.imaging[3].threshold": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.imaging[3].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 2.61, - "2015-01-01": 2.61 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.imaging[3].amount": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.imaging[3].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.inpatient": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.inpatient", - "description": "Colorado limits the inpatient co-pay under the Child Health Plan Plus to this amount, based on income as a percent of the poverty line.", - "label": "Colorado CHP+ inpatient hospital co-pay" - }, - "gov.states.co.hcpf.chp.copays.inpatient[0]": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.inpatient[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.co.hcpf.chp.copays.inpatient[0].threshold": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.inpatient[0].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.inpatient[0].amount": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.inpatient[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.inpatient[1]": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.inpatient[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.co.hcpf.chp.copays.inpatient[1].threshold": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.inpatient[1].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 1.01, - "2015-01-01": 1.01 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.inpatient[1].amount": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.inpatient[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.inpatient[2]": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.inpatient[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.co.hcpf.chp.copays.inpatient[2].threshold": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.inpatient[2].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 1.57, - "2015-01-01": 1.57 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.inpatient[2].amount": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.inpatient[2].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": 20, - "2015-01-01": 20 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.inpatient[3]": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.inpatient[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.co.hcpf.chp.copays.inpatient[3].threshold": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.inpatient[3].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 2.01, - "2015-01-01": 2.01 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.inpatient[3].amount": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.inpatient[3].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": 50, - "2015-01-01": 50 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.inpatient[4]": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.inpatient[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.co.hcpf.chp.copays.inpatient[4].threshold": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.inpatient[4].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 2.61, - "2015-01-01": 2.61 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.inpatient[4].amount": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.inpatient[4].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.ambulance": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.ambulance", - "description": "Colorado limits the ambulance co-pay under the Child Health Plan Plus to this amount, based on income as a percent of the poverty line.", - "label": "Colorado CHP+ ambulance co-pay" - }, - "gov.states.co.hcpf.chp.copays.ambulance[0]": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.ambulance[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.co.hcpf.chp.copays.ambulance[0].threshold": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.ambulance[0].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.ambulance[0].amount": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.ambulance[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.ambulance[1]": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.ambulance[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.co.hcpf.chp.copays.ambulance[1].threshold": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.ambulance[1].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 1.01, - "2015-01-01": 1.01 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.ambulance[1].amount": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.ambulance[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.ambulance[2]": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.ambulance[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.co.hcpf.chp.copays.ambulance[2].threshold": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.ambulance[2].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 1.57, - "2015-01-01": 1.57 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.ambulance[2].amount": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.ambulance[2].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": 15, - "2015-01-01": 15 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.ambulance[3]": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.ambulance[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.co.hcpf.chp.copays.ambulance[3].threshold": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.ambulance[3].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 2.01, - "2015-01-01": 2.01 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.ambulance[3].amount": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.ambulance[3].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": 25, - "2015-01-01": 25 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.ambulance[4]": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.ambulance[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.co.hcpf.chp.copays.ambulance[4].threshold": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.ambulance[4].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 2.61, - "2015-01-01": 2.61 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.ambulance[4].amount": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.ambulance[4].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.er_visit": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.er_visit", - "description": "Colorado limits the emergency room visit co-pay under the Child Health Plan Plus to this amount, based on income as a percent of the poverty line.", - "label": "Colorado CHP+ emergency room co-pay" - }, - "gov.states.co.hcpf.chp.copays.er_visit[0]": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.er_visit[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.co.hcpf.chp.copays.er_visit[0].threshold": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.er_visit[0].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.er_visit[0].amount": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.er_visit[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": 3, - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.er_visit[1]": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.er_visit[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.co.hcpf.chp.copays.er_visit[1].threshold": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.er_visit[1].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 1.57, - "2015-01-01": 1.57 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.er_visit[1].amount": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.er_visit[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": 30, - "2015-01-01": 30 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.er_visit[2]": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.er_visit[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.co.hcpf.chp.copays.er_visit[2].threshold": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.er_visit[2].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 2.01, - "2015-01-01": 2.01 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.er_visit[2].amount": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.er_visit[2].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": 50, - "2015-01-01": 50 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.er_visit[3]": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.copays.er_visit[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.co.hcpf.chp.copays.er_visit[3].threshold": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.er_visit[3].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 2.61, - "2015-01-01": 2.61 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.copays.er_visit[3].amount": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.copays.er_visit[3].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2023-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.expenses": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.expenses", - "description": "Colorado Child Health Plan Plus has co-pays for the following expenses.", - "label": "Colorado CHP+ co-pays", - "unit": "list", - "period": null, - "values": { - "2023-01-01": [ - "ambulance", - "er_visit", - "imaging", - "inpatient", - "lab", - "outpatient", - "physician_services", - "prescription", - "urgent_care" - ], - "2015-01-01": [ - "ambulance", - "er_visit", - "imaging", - "inpatient", - "lab", - "outpatient", - "physician_services", - "prescription", - "urgent_care" - ] - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.income_limit": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.income_limit", - "description": "Colorado limits the Child Health Plan Plus to households with income up to this percentage of the federal poverty level.", - "label": "Colorado CHP+ maximum household income as percent of FPL", - "unit": null, - "period": null, - "values": { - "2022-04-01": 2.65, - "2015-01-01": 2.65 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.out_of_pocket": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.out_of_pocket", - "description": "Colorado limits its Child Health Plan Plus out of pocket expense to this fraction of income.", - "label": "Colorado CHP+ out of pocket maximum percent", - "unit": null, - "period": null, - "values": { - "2023-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.child": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.child", - "description": "Colorado limits eligibility for its Child Health Plan Plus to children in this age range.", - "label": "Colorado CHP+ child age range" - }, - "gov.states.co.hcpf.chp.child[0]": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.child[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.co.hcpf.chp.child[0].threshold": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.child[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.child[0].amount": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.child[0].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2023-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.child[1]": { - "type": "parameterNode", - "parameter": "gov.states.co.hcpf.chp.child[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.co.hcpf.chp.child[1].threshold": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.child[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2023-01-01": 19, - "2015-01-01": 19 - }, - "economy": true, - "household": true - }, - "gov.states.co.hcpf.chp.child[1].amount": { - "type": "parameter", - "parameter": "gov.states.co.hcpf.chp.child[1].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2023-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.co.tax": { - "type": "parameterNode", - "parameter": "gov.states.co.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.states.co.tax.income": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits", - "description": null, - "label": "credits", - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.eitc": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.eitc", - "description": null, - "label": "Earned Income Tax Credit", - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.eitc.match": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.eitc.match", - "description": "Colorado matches this fraction of the federal Earned Income Tax Credit.", - "label": "Colorado EITC match", - "unit": "/1", - "period": "year", - "values": { - "2034-01-01": 0.1, - "2026-01-01": 0.25, - "2025-01-01": 0.35, - "2024-01-01": 0.5, - "2023-01-01": 0.5, - "2022-01-01": 0.2, - "2021-01-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.refundable": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.refundable", - "description": "Colorado refundable tax credits.", - "label": "Colorado refundable credits", - "unit": "list", - "period": "year", - "values": { - "2024-01-01": [ - "co_ctc", - "co_cdcc", - "co_family_affordability_credit", - "co_low_income_cdcc", - "co_income_qualified_senior_housing_credit", - "co_eitc", - "co_sales_tax_refund" - ], - "2023-01-01": [ - "co_ctc", - "co_cdcc", - "co_low_income_cdcc", - "co_eitc", - "co_sales_tax_refund" - ], - "2022-01-01": [ - "co_ctc", - "co_cdcc", - "co_low_income_cdcc", - "co_eitc", - "co_income_qualified_senior_housing_credit", - "co_sales_tax_refund" - ], - "2021-01-01": ["co_cdcc", "co_low_income_cdcc", "co_eitc", "co_sales_tax_refund"], - "2015-01-01": ["co_cdcc", "co_low_income_cdcc", "co_eitc", "co_sales_tax_refund"] - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.sales_tax_refund": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.sales_tax_refund", - "description": null, - "label": "sales tax refund", - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.sales_tax_refund.amount": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.sales_tax_refund.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.sales_tax_refund.amount.scale": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.sales_tax_refund.amount.scale", - "description": "Colorado provides this base sales tax refund amount, based on modified adjusted gross income.", - "label": "Colorado sales tax refund base amount" - }, - "gov.states.co.tax.income.credits.sales_tax_refund.amount.scale[0]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.sales_tax_refund.amount.scale[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.co.tax.income.credits.sales_tax_refund.amount.scale[0].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.sales_tax_refund.amount.scale[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.sales_tax_refund.amount.scale[0].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.sales_tax_refund.amount.scale[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 177, - "2023-01-01": 0, - "2022-01-01": 153, - "2021-01-01": 37, - "2015-01-01": 37 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.sales_tax_refund.amount.scale[1]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.sales_tax_refund.amount.scale[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.co.tax.income.credits.sales_tax_refund.amount.scale[1].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.sales_tax_refund.amount.scale[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 53001, - "2022-01-01": 48001, - "2021-01-01": 44001, - "2015-01-01": 44001 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.sales_tax_refund.amount.scale[1].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.sales_tax_refund.amount.scale[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 240, - "2023-01-01": 0, - "2022-01-01": 208, - "2021-01-01": 49, - "2015-01-01": 49 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.sales_tax_refund.amount.scale[2]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.sales_tax_refund.amount.scale[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.co.tax.income.credits.sales_tax_refund.amount.scale[2].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.sales_tax_refund.amount.scale[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 105001, - "2022-01-01": 95001, - "2021-01-01": 88001, - "2015-01-01": 88001 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.sales_tax_refund.amount.scale[2].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.sales_tax_refund.amount.scale[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 277, - "2023-01-01": 0, - "2022-01-01": 234, - "2021-01-01": 56, - "2015-01-01": 56 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.sales_tax_refund.amount.scale[3]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.sales_tax_refund.amount.scale[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.co.tax.income.credits.sales_tax_refund.amount.scale[3].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.sales_tax_refund.amount.scale[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 166001, - "2022-01-01": 151001, - "2021-01-01": 139001, - "2015-01-01": 139001 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.sales_tax_refund.amount.scale[3].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.sales_tax_refund.amount.scale[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 323, - "2023-01-01": 0, - "2022-01-01": 285, - "2021-01-01": 68, - "2015-01-01": 68 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.sales_tax_refund.amount.scale[4]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.sales_tax_refund.amount.scale[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.co.tax.income.credits.sales_tax_refund.amount.scale[4].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.sales_tax_refund.amount.scale[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 233001, - "2022-01-01": 209001, - "2021-01-01": 193001, - "2015-01-01": 193001 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.sales_tax_refund.amount.scale[4].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.sales_tax_refund.amount.scale[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 350, - "2023-01-01": 0, - "2022-01-01": 300, - "2021-01-01": 74, - "2015-01-01": 74 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.sales_tax_refund.amount.scale[5]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.sales_tax_refund.amount.scale[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.co.tax.income.credits.sales_tax_refund.amount.scale[5].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.sales_tax_refund.amount.scale[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 302001, - "2022-01-01": 268001, - "2021-01-01": 246001, - "2015-01-01": 246001 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.sales_tax_refund.amount.scale[5].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.sales_tax_refund.amount.scale[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 565, - "2023-01-01": 0, - "2022-01-01": 486, - "2021-01-01": 117, - "2015-01-01": 117 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.sales_tax_refund.amount.multiplier": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.sales_tax_refund.amount.multiplier", - "description": "Colorado multiplies the base sales tax refund amount by this amount, based on filing status.", - "label": "Colorado sales tax refund filing status multiplier", - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.sales_tax_refund.amount.multiplier.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.sales_tax_refund.amount.multiplier.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.sales_tax_refund.amount.multiplier.JOINT": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.sales_tax_refund.amount.multiplier.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.sales_tax_refund.amount.multiplier.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.sales_tax_refund.amount.multiplier.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.sales_tax_refund.amount.multiplier.SINGLE": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.sales_tax_refund.amount.multiplier.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.sales_tax_refund.amount.multiplier.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.sales_tax_refund.amount.multiplier.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.sales_tax_refund.amount.flat_amount_enabled": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.sales_tax_refund.amount.flat_amount_enabled", - "description": "Colorado allows for a flat sales tax refund credit if this is true.", - "label": "Colorado sales tax refund credit flat amount enabled", - "unit": "bool", - "period": "year", - "values": { - "2024-01-01": false, - "2023-01-01": true, - "2021-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.sales_tax_refund.amount.amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.sales_tax_refund.amount.amount", - "description": "Colorado provides a flat sales tax refund credit of this amount.", - "label": "Colorado sales tax refund credit flat amount", - "unit": "year", - "period": "year", - "values": { - "2023-01-01": 800, - "2015-01-01": 800 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.sales_tax_refund.age_threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.sales_tax_refund.age_threshold", - "description": "Colorado limits its sales tax refund to filers this age or older.", - "label": "Colorado sales tax refund age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 18, - "2015-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.sales_tax_refund.magi_sources": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.sales_tax_refund.magi_sources", - "description": "Colorado accounts for these income sources for the modified adjusted gross income.", - "label": "Colorado modified adjusted gross income sources", - "unit": "list", - "period": "year", - "values": { - "1999-01-01": ["adjusted_gross_income", "tax_exempt_social_security"] - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc", - "description": null, - "label": "Child Tax Credit", - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.amount": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.amount.head_of_household": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.head_of_household", - "description": "Colorado provides this child tax credit per child for head of household filers, depending on federal adjusted gross income.", - "label": "Colorado child tax credit head of household amount" - }, - "gov.states.co.tax.income.credits.ctc.amount.head_of_household[0]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.head_of_household[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.co.tax.income.credits.ctc.amount.head_of_household[0].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.head_of_household[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.amount.head_of_household[0].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.head_of_household[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1200, - "2015-01-01": 1200 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.amount.head_of_household[1]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.head_of_household[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.co.tax.income.credits.ctc.amount.head_of_household[1].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.head_of_household[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.amount.head_of_household[1].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.head_of_household[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 600, - "2015-01-01": 600 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.amount.head_of_household[2]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.head_of_household[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.co.tax.income.credits.ctc.amount.head_of_household[2].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.head_of_household[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.amount.head_of_household[2].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.head_of_household[2].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 200, - "2015-01-01": 200 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.amount.head_of_household[3]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.head_of_household[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.co.tax.income.credits.ctc.amount.head_of_household[3].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.head_of_household[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 75000, - "2015-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.amount.head_of_household[3].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.head_of_household[3].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.amount.separate": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.separate", - "description": "Colorado provides this child tax credit per child for separate filers, depending on federal adjusted gross income.", - "label": "Colorado child tax credit separate amount" - }, - "gov.states.co.tax.income.credits.ctc.amount.separate[0]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.separate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.co.tax.income.credits.ctc.amount.separate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.separate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.amount.separate[0].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.separate[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1200, - "2015-01-01": 1200 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.amount.separate[1]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.separate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.co.tax.income.credits.ctc.amount.separate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.separate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.amount.separate[1].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.separate[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 600, - "2015-01-01": 600 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.amount.separate[2]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.separate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.co.tax.income.credits.ctc.amount.separate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.separate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.amount.separate[2].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.separate[2].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 200, - "2015-01-01": 200 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.amount.separate[3]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.separate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.co.tax.income.credits.ctc.amount.separate[3].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.separate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 75000, - "2015-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.amount.separate[3].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.separate[3].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.amount.joint": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.joint", - "description": "Colorado provides this child tax credit per child for joint filers, depending on federal adjusted gross income.", - "label": "Colorado child tax credit joint amount" - }, - "gov.states.co.tax.income.credits.ctc.amount.joint[0]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.co.tax.income.credits.ctc.amount.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.amount.joint[0].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.joint[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1200, - "2015-01-01": 1200 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.amount.joint[1]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.co.tax.income.credits.ctc.amount.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 35000, - "2015-01-01": 35000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.amount.joint[1].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.joint[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 600, - "2015-01-01": 600 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.amount.joint[2]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.co.tax.income.credits.ctc.amount.joint[2].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 60000, - "2015-01-01": 60000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.amount.joint[2].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.joint[2].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 200, - "2015-01-01": 200 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.amount.joint[3]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.joint[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.co.tax.income.credits.ctc.amount.joint[3].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.joint[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 85000, - "2015-01-01": 85000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.amount.joint[3].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.joint[3].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.amount.single": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.single", - "description": "Colorado provides this child tax credit per child for single filers, depending on federal adjusted gross income.", - "label": "Colorado child tax credit single amount" - }, - "gov.states.co.tax.income.credits.ctc.amount.single[0]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.single[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.co.tax.income.credits.ctc.amount.single[0].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.single[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.amount.single[0].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.single[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1200, - "2015-01-01": 1200 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.amount.single[1]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.single[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.co.tax.income.credits.ctc.amount.single[1].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.single[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.amount.single[1].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.single[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 600, - "2015-01-01": 600 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.amount.single[2]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.single[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.co.tax.income.credits.ctc.amount.single[2].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.single[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.amount.single[2].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.single[2].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 200, - "2015-01-01": 200 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.amount.single[3]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.single[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.co.tax.income.credits.ctc.amount.single[3].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.single[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 75000, - "2015-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.amount.single[3].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.single[3].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.amount.surviving_spouse": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.surviving_spouse", - "description": "Colorado provides this child tax credit per child for surviving spouse filers, depending on federal adjusted gross income.", - "label": "Colorado child tax credit surviving spouse amount" - }, - "gov.states.co.tax.income.credits.ctc.amount.surviving_spouse[0]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.surviving_spouse[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.co.tax.income.credits.ctc.amount.surviving_spouse[0].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.surviving_spouse[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.amount.surviving_spouse[0].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.surviving_spouse[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1200, - "2015-01-01": 1200 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.amount.surviving_spouse[1]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.surviving_spouse[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.co.tax.income.credits.ctc.amount.surviving_spouse[1].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.surviving_spouse[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.amount.surviving_spouse[1].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.surviving_spouse[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 600, - "2015-01-01": 600 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.amount.surviving_spouse[2]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.surviving_spouse[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.co.tax.income.credits.ctc.amount.surviving_spouse[2].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.surviving_spouse[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.amount.surviving_spouse[2].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.surviving_spouse[2].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 200, - "2015-01-01": 200 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.amount.surviving_spouse[3]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.surviving_spouse[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.co.tax.income.credits.ctc.amount.surviving_spouse[3].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.surviving_spouse[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 75000, - "2015-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.amount.surviving_spouse[3].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.amount.surviving_spouse[3].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.ctc_matched_federal_credit": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.ctc_matched_federal_credit", - "description": "Colorado matches a fraction of the federal child tax credit when this is true; otherwise, Colorado provides an amount based on income.", - "label": "Colorado child tax credit federal CTC match", - "unit": "bool", - "period": "year", - "values": { - "2024-01-01": false, - "2022-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.rate": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.rate", - "description": null, - "label": "rate", - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.rate.head_of_household": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.head_of_household", - "description": "Colorado matches this fraction of the federal child tax credit for head of household filers, depending on federal adjusted gross income.", - "label": "Colorado child tax credit head of household rate" - }, - "gov.states.co.tax.income.credits.ctc.rate.head_of_household[0]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.head_of_household[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.co.tax.income.credits.ctc.rate.head_of_household[0].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.head_of_household[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.rate.head_of_household[0].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.head_of_household[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2022-01-01": 0.6, - "2015-01-01": 0.6 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.rate.head_of_household[1]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.head_of_household[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.co.tax.income.credits.ctc.rate.head_of_household[1].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.head_of_household[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.rate.head_of_household[1].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.head_of_household[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2022-01-01": 0.3, - "2015-01-01": 0.3 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.rate.head_of_household[2]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.head_of_household[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.co.tax.income.credits.ctc.rate.head_of_household[2].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.head_of_household[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.rate.head_of_household[2].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.head_of_household[2].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2022-01-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.rate.head_of_household[3]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.head_of_household[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.co.tax.income.credits.ctc.rate.head_of_household[3].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.head_of_household[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 75000, - "2015-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.rate.head_of_household[3].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.head_of_household[3].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.rate.separate": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.separate", - "description": "Colorado matches this fraction of the federal child tax credit for separate filers, depending on federal adjusted gross income.", - "label": "Colorado child tax credit separate rate" - }, - "gov.states.co.tax.income.credits.ctc.rate.separate[0]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.separate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.co.tax.income.credits.ctc.rate.separate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.separate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.rate.separate[0].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.separate[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2022-01-01": 0.6, - "2015-01-01": 0.6 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.rate.separate[1]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.separate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.co.tax.income.credits.ctc.rate.separate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.separate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.rate.separate[1].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.separate[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2022-01-01": 0.3, - "2015-01-01": 0.3 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.rate.separate[2]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.separate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.co.tax.income.credits.ctc.rate.separate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.separate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.rate.separate[2].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.separate[2].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2022-01-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.rate.separate[3]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.separate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.co.tax.income.credits.ctc.rate.separate[3].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.separate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 75000, - "2015-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.rate.separate[3].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.separate[3].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.rate.joint": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.joint", - "description": "Colorado matches this fraction of the federal child tax credit for joint filers, depending on federal adjusted gross income.", - "label": "Colorado child tax credit joint rate" - }, - "gov.states.co.tax.income.credits.ctc.rate.joint[0]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.co.tax.income.credits.ctc.rate.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.rate.joint[0].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.joint[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2022-01-01": 0.6, - "2015-01-01": 0.6 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.rate.joint[1]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.co.tax.income.credits.ctc.rate.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 35000, - "2015-01-01": 35000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.rate.joint[1].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.joint[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2022-01-01": 0.3, - "2015-01-01": 0.3 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.rate.joint[2]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.co.tax.income.credits.ctc.rate.joint[2].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 60000, - "2015-01-01": 60000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.rate.joint[2].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.joint[2].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2022-01-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.rate.joint[3]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.joint[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.co.tax.income.credits.ctc.rate.joint[3].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.joint[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 85000, - "2015-01-01": 85000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.rate.joint[3].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.joint[3].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.rate.single": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.single", - "description": "Colorado matches this fraction of the federal child tax credit for single filers, depending on federal adjusted gross income.", - "label": "Colorado child tax credit single rate" - }, - "gov.states.co.tax.income.credits.ctc.rate.single[0]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.single[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.co.tax.income.credits.ctc.rate.single[0].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.single[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.rate.single[0].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.single[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2022-01-01": 0.6, - "2015-01-01": 0.6 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.rate.single[1]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.single[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.co.tax.income.credits.ctc.rate.single[1].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.single[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.rate.single[1].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.single[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2022-01-01": 0.3, - "2015-01-01": 0.3 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.rate.single[2]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.single[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.co.tax.income.credits.ctc.rate.single[2].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.single[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.rate.single[2].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.single[2].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2022-01-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.rate.single[3]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.single[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.co.tax.income.credits.ctc.rate.single[3].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.single[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 75000, - "2015-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.rate.single[3].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.single[3].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.rate.surviving_spouse": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.surviving_spouse", - "description": "Colorado matches this fraction of the federal child tax credit for surviving spouse filers, depending on federal adjusted gross income.", - "label": "Colorado child tax credit surviving spouse rate" - }, - "gov.states.co.tax.income.credits.ctc.rate.surviving_spouse[0]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.surviving_spouse[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.co.tax.income.credits.ctc.rate.surviving_spouse[0].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.surviving_spouse[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.rate.surviving_spouse[0].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.surviving_spouse[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2022-01-01": 0.6, - "2015-01-01": 0.6 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.rate.surviving_spouse[1]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.surviving_spouse[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.co.tax.income.credits.ctc.rate.surviving_spouse[1].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.surviving_spouse[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.rate.surviving_spouse[1].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.surviving_spouse[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2022-01-01": 0.3, - "2015-01-01": 0.3 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.rate.surviving_spouse[2]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.surviving_spouse[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.co.tax.income.credits.ctc.rate.surviving_spouse[2].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.surviving_spouse[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.rate.surviving_spouse[2].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.surviving_spouse[2].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2022-01-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.rate.surviving_spouse[3]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.surviving_spouse[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.co.tax.income.credits.ctc.rate.surviving_spouse[3].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.surviving_spouse[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 75000, - "2015-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.rate.surviving_spouse[3].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.rate.surviving_spouse[3].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.age_threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.age_threshold", - "description": "Colorado issues the child tax credit to taxpayers with children below this age.", - "label": "Colorado child tax credit age threshold", - "unit": "year", - "period": "year", - "values": { - "2022-01-01": 6, - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.ctc.eligible_child": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.ctc.eligible_child", - "description": "Colorado qualifies children for the child tax credit under this federal eligibility.", - "label": "Colorado child tax credit child eligibility", - "unit": "list", - "period": "year", - "values": { - "2024-01-01": ["is_child_dependent"], - "2022-01-01": ["ctc_qualifying_child"], - "2015-01-01": ["ctc_qualifying_child"] - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.cdcc": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.cdcc", - "description": null, - "label": "Child and Dependent Care Credit", - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.cdcc.low_income": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.cdcc.low_income", - "description": null, - "label": "low income", - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.cdcc.low_income.federal_agi_threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.cdcc.low_income.federal_agi_threshold", - "description": "Colorado limits the low-income child care expenses credit to filers with adjusted gross income up to this amount.", - "label": "Colorado low-income child care expenses credit income threshold", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.cdcc.low_income.max_amount": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.cdcc.low_income.max_amount", - "description": "Colorado allows for the following low income child care expense credit maximum amount, based on the number of dependents.", - "label": "Colorado low income child care expense credit max amount" - }, - "gov.states.co.tax.income.credits.cdcc.low_income.max_amount[0]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.cdcc.low_income.max_amount[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.co.tax.income.credits.cdcc.low_income.max_amount[0].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.cdcc.low_income.max_amount[0].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.cdcc.low_income.max_amount[0].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.cdcc.low_income.max_amount[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.cdcc.low_income.max_amount[1]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.cdcc.low_income.max_amount[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.co.tax.income.credits.cdcc.low_income.max_amount[1].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.cdcc.low_income.max_amount[1].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2018-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.cdcc.low_income.max_amount[1].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.cdcc.low_income.max_amount[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2018-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.cdcc.low_income.max_amount[2]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.cdcc.low_income.max_amount[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.co.tax.income.credits.cdcc.low_income.max_amount[2].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.cdcc.low_income.max_amount[2].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2018-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.cdcc.low_income.max_amount[2].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.cdcc.low_income.max_amount[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2018-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.cdcc.low_income.child_age_threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.cdcc.low_income.child_age_threshold", - "description": "Colorado qualifies children for the low-income family child care expenses credit below this age threshold.", - "label": "Colorado low-income child care expenses credit child age threshold", - "unit": "year", - "period": "year", - "values": { - "2018-01-01": 13, - "2015-01-01": 13 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.cdcc.low_income.rate": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.cdcc.low_income.rate", - "description": "Colorado matches up to this fraction of qualifying child care expenses in its low income child care expenses credit.", - "label": "Colorado low income child care expense credit rate", - "unit": "/1", - "period": "year", - "values": { - "2018-01-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.cdcc.match": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.cdcc.match", - "description": "Colorado matches this percentage of the child care credit, depending on federal AGI.", - "label": "Colorado child care credit match" - }, - "gov.states.co.tax.income.credits.cdcc.match[0]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.cdcc.match[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.co.tax.income.credits.cdcc.match[0].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.cdcc.match[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1996-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.cdcc.match[0].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.cdcc.match[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "1996-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.cdcc.match[1]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.cdcc.match[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.co.tax.income.credits.cdcc.match[1].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.cdcc.match[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1996-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.cdcc.match[1].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.cdcc.match[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2019-01-01": 0.5, - "1996-01-01": 0.3 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.cdcc.match[2]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.cdcc.match[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.co.tax.income.credits.cdcc.match[2].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.cdcc.match[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1996-01-01": 35000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.cdcc.match[2].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.cdcc.match[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2019-01-01": 0.5, - "1996-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.cdcc.match[3]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.cdcc.match[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.co.tax.income.credits.cdcc.match[3].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.cdcc.match[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1996-01-01": 60000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.cdcc.match[3].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.cdcc.match[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "1996-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.family_affordability": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.family_affordability", - "description": null, - "label": "Family Affordability Credit", - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.family_affordability.reduction": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.family_affordability.reduction", - "description": null, - "label": "reduction", - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.family_affordability.reduction.increment": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.family_affordability.reduction.increment", - "description": "Colorado reduces the family affordability tax credit in these increments of adjusted gross income exceeding the threshold.", - "label": "Colorado family affordability tax credit reduction increment", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 6000, - "2034-01-01": 6000, - "2033-01-01": 5000, - "2032-01-01": 5000, - "2031-01-01": 5000, - "2030-01-01": 5000, - "2029-01-01": 5000, - "2028-01-01": 5000, - "2027-01-01": 5000, - "2026-01-01": 5000, - "2025-01-01": 5000, - "2024-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.family_affordability.reduction.rate": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.family_affordability.reduction.rate", - "description": "Colorado reduces the family affordability tax credit by this rate for each increment above the adjusted gross income threshold.", - "label": "Colorado family affordability tax credit reduction rate", - "unit": "/1", - "period": "year", - "values": { - "2024-01-01": 0.06875, - "2015-01-01": 0.06875 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.family_affordability.reduction.threshold": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.family_affordability.reduction.threshold", - "description": "Colorado reduces the family affordability tax credit starting at this adjusted gross income threshold, based on filing status.", - "label": "Colorado family affordability tax credit income-based reduction start", - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.family_affordability.reduction.threshold.SINGLE": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.family_affordability.reduction.threshold.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 19000, - "2034-01-01": 18000, - "2033-01-01": 18000, - "2032-01-01": 18000, - "2031-01-01": 17000, - "2030-01-01": 17000, - "2029-01-01": 17000, - "2028-01-01": 16000, - "2027-01-01": 16000, - "2026-01-01": 16000, - "2025-01-01": 15000, - "2024-01-01": 15000, - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.family_affordability.reduction.threshold.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.family_affordability.reduction.threshold.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2035-01-01": 19000, - "2034-01-01": 18000, - "2033-01-01": 18000, - "2032-01-01": 18000, - "2031-01-01": 17000, - "2030-01-01": 17000, - "2029-01-01": 17000, - "2028-01-01": 16000, - "2027-01-01": 16000, - "2026-01-01": 16000, - "2025-01-01": 15000, - "2024-01-01": 15000, - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.family_affordability.reduction.threshold.JOINT": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.family_affordability.reduction.threshold.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2035-01-01": 31000, - "2034-01-01": 31000, - "2033-01-01": 30000, - "2032-01-01": 29000, - "2031-01-01": 29000, - "2030-01-01": 28000, - "2029-01-01": 28000, - "2028-01-01": 27000, - "2027-01-01": 27000, - "2026-01-01": 26000, - "2025-01-01": 26000, - "2024-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.family_affordability.reduction.threshold.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.family_affordability.reduction.threshold.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 19000, - "2034-01-01": 18000, - "2033-01-01": 18000, - "2032-01-01": 18000, - "2031-01-01": 17000, - "2030-01-01": 17000, - "2029-01-01": 17000, - "2028-01-01": 16000, - "2027-01-01": 16000, - "2026-01-01": 16000, - "2025-01-01": 15000, - "2024-01-01": 15000, - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.family_affordability.reduction.threshold.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.family_affordability.reduction.threshold.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 19000, - "2034-01-01": 18000, - "2033-01-01": 18000, - "2032-01-01": 18000, - "2031-01-01": 17000, - "2030-01-01": 17000, - "2029-01-01": 17000, - "2028-01-01": 16000, - "2027-01-01": 16000, - "2026-01-01": 16000, - "2025-01-01": 15000, - "2024-01-01": 15000, - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.family_affordability.amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.family_affordability.amount", - "description": "Colorado provides this family affordability tax credit base amount for each younger child.", - "label": "Colorado family affordability tax credit young child amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2024-01-01": 3200, - "2015-01-01": 3200 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.family_affordability.age_multiplier": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.family_affordability.age_multiplier", - "description": "Colorado multiplies the maximum family affordability tax credit by this fraction, based on the child's age.", - "label": "Colorado family affordability tax credit age-based multiplier" - }, - "gov.states.co.tax.income.credits.family_affordability.age_multiplier[0]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.family_affordability.age_multiplier[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.co.tax.income.credits.family_affordability.age_multiplier[0].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.family_affordability.age_multiplier[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2024-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.family_affordability.age_multiplier[0].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.family_affordability.age_multiplier[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.family_affordability.age_multiplier[1]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.family_affordability.age_multiplier[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.co.tax.income.credits.family_affordability.age_multiplier[1].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.family_affordability.age_multiplier[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2024-01-01": 6, - "2015-01-01": 6 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.family_affordability.age_multiplier[1].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.family_affordability.age_multiplier[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.75, - "2015-01-01": 0.75 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.family_affordability.age_multiplier[2]": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.family_affordability.age_multiplier[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.co.tax.income.credits.family_affordability.age_multiplier[2].threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.family_affordability.age_multiplier[2].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2024-01-01": 17, - "2015-01-01": 17 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.family_affordability.age_multiplier[2].amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.family_affordability.age_multiplier[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.income_qualified_senior_housing": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.income_qualified_senior_housing", - "description": null, - "label": "income qualified senior housing", - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.income_qualified_senior_housing.reduction": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.income_qualified_senior_housing.reduction", - "description": null, - "label": "reduction", - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.income_qualified_senior_housing.reduction.increment": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.income_qualified_senior_housing.reduction.increment", - "description": "Colorado reduces the income qualified senior housing income tax credit for each of these increments of adjusted gross income exceeding the threshold.", - "label": "Colorado income qualified senior housing income tax credit increment amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2025-01-01": 0, - "2024-01-01": 500, - "2023-01-01": 0, - "2022-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.income_qualified_senior_housing.reduction.max_amount": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.income_qualified_senior_housing.reduction.max_amount", - "description": "Colorado allows for the following maximum income qualified senior housing income tax credit, based on filing status.", - "label": "Colorado income qualified senior housing income tax credit max amount", - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.income_qualified_senior_housing.reduction.max_amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.income_qualified_senior_housing.reduction.max_amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2025-01-01": 0, - "2024-01-01": 800, - "2023-01-01": 0, - "2022-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.income_qualified_senior_housing.reduction.max_amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.income_qualified_senior_housing.reduction.max_amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2025-01-01": 0, - "2024-01-01": 800, - "2023-01-01": 0, - "2022-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.income_qualified_senior_housing.reduction.max_amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.income_qualified_senior_housing.reduction.max_amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2025-01-01": 0, - "2024-01-01": 800, - "2023-01-01": 0, - "2022-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.income_qualified_senior_housing.reduction.max_amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.income_qualified_senior_housing.reduction.max_amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2025-01-01": 0, - "2024-01-01": 800, - "2023-01-01": 0, - "2022-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.income_qualified_senior_housing.reduction.max_amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.income_qualified_senior_housing.reduction.max_amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2025-01-01": 0, - "2024-01-01": 400, - "2023-01-01": 0, - "2022-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.income_qualified_senior_housing.reduction.start": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.income_qualified_senior_housing.reduction.start", - "description": "Colorado reduces the income qualified senior housing income tax credit for filers with adjusted gross income above this amount, based on filing status.", - "label": "Colorado personal income qualified senior housing income tax credit start", - "unit": "currency-USD", - "period": "year", - "values": { - "2025-01-01": 0, - "2024-01-01": 25499, - "2023-01-01": 0, - "2022-01-01": 25499, - "2015-01-01": 25499 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.income_qualified_senior_housing.reduction.amount": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.credits.income_qualified_senior_housing.reduction.amount", - "description": "Colorado reduces the income qualified senior housing income tax credit amount by this amount for each increment of adjusted gross income exceeding the threshold.", - "label": "Colorado income qualified senior housing income tax credit reduction amount", - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.income_qualified_senior_housing.reduction.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.income_qualified_senior_housing.reduction.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2025-01-01": 0, - "2024-01-01": 8, - "2023-01-01": 0, - "2022-01-01": 10, - "2015-01-01": 10 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.income_qualified_senior_housing.reduction.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.income_qualified_senior_housing.reduction.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2025-01-01": 0, - "2024-01-01": 8, - "2023-01-01": 0, - "2022-01-01": 10, - "2015-01-01": 10 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.income_qualified_senior_housing.reduction.amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.income_qualified_senior_housing.reduction.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2025-01-01": 0, - "2024-01-01": 4, - "2023-01-01": 0, - "2022-01-01": 10, - "2015-01-01": 10 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.income_qualified_senior_housing.reduction.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.income_qualified_senior_housing.reduction.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2025-01-01": 0, - "2024-01-01": 4, - "2023-01-01": 0, - "2022-01-01": 10, - "2015-01-01": 10 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.income_qualified_senior_housing.reduction.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.income_qualified_senior_housing.reduction.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2025-01-01": 0, - "2024-01-01": 4, - "2023-01-01": 0, - "2022-01-01": 5, - "2015-01-01": 5 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.income_qualified_senior_housing.income_threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.income_qualified_senior_housing.income_threshold", - "description": "Colorado provides the Income Qualified Senior Housing Tax Credit for filers with adjusted gross income at or below this threshold.", - "label": "Colorado Income Qualified Senior Housing Tax Credit AGI threshold", - "unit": "currency-USD", - "period": "year", - "values": { - "2025-01-01": 0, - "2024-01-01": 125000, - "2023-01-01": 0, - "2022-01-01": 75000, - "2015-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.credits.income_qualified_senior_housing.age_limit": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.credits.income_qualified_senior_housing.age_limit", - "description": "Colorado provides the Income Qualified Senior Housing Tax Credit for filers' at or above this age threshold.", - "label": "Colorado Age Income-Qualified Senior Housing Tax Credit age threshold", - "unit": "year", - "period": "year", - "values": { - "2022-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.subtractions": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.subtractions", - "description": null, - "label": "subtractions", - "economy": true, - "household": true - }, - "gov.states.co.tax.income.subtractions.military_retirement": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.subtractions.military_retirement", - "description": null, - "label": "military retirement", - "economy": true, - "household": true - }, - "gov.states.co.tax.income.subtractions.military_retirement.max_amount": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.subtractions.military_retirement.max_amount", - "description": "Colorado allows for this maximum military retirement subtraction for each eligible individual.", - "label": "Colorado military retirement subtraction max amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2022-01-01": 15000, - "2021-01-01": 10000, - "2020-01-01": 7500, - "2019-01-01": 4500, - "2015-01-01": 4500 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.subtractions.military_retirement.age_threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.subtractions.military_retirement.age_threshold", - "description": "Colorado limits its military retirement subtraction to filers below this age.", - "label": "Colorado military retirement subtraction age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 55, - "2015-01-01": 55 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.subtractions.charitable_contribution": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.subtractions.charitable_contribution", - "description": null, - "label": "charitable contribution", - "economy": true, - "household": true - }, - "gov.states.co.tax.income.subtractions.charitable_contribution.adjustment": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.subtractions.charitable_contribution.adjustment", - "description": "Colorado subtracts charitable contributions above this amount from the adjusted gross income of filers who do not itemize on their federal return.", - "label": "Colorado charitable contributions subtraction adjustment", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.subtractions.collegeinvest_contribution": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.subtractions.collegeinvest_contribution", - "description": null, - "label": "collegeinvest contribution", - "economy": true, - "household": true - }, - "gov.states.co.tax.income.subtractions.collegeinvest_contribution.max_amount": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.subtractions.collegeinvest_contribution.max_amount", - "description": "Colorado limits the CollegeInvest contribution subtraction to this maximum amount.", - "label": "Colorado CollegeInvest contribution subtraction max amount", - "economy": true, - "household": true - }, - "gov.states.co.tax.income.subtractions.collegeinvest_contribution.max_amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.subtractions.collegeinvest_contribution.max_amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2024-01-01": 22700, - "2023-01-01": 20700, - "2022-01-01": 20000, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.subtractions.collegeinvest_contribution.max_amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.subtractions.collegeinvest_contribution.max_amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 34000, - "2023-01-01": 31000, - "2022-01-01": 30000, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.subtractions.collegeinvest_contribution.max_amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.subtractions.collegeinvest_contribution.max_amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 22700, - "2023-01-01": 20700, - "2022-01-01": 20000, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.subtractions.collegeinvest_contribution.max_amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.subtractions.collegeinvest_contribution.max_amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 22700, - "2023-01-01": 20700, - "2022-01-01": 20000, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.subtractions.collegeinvest_contribution.max_amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.subtractions.collegeinvest_contribution.max_amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 22700, - "2023-01-01": 20700, - "2022-01-01": 20000, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.subtractions.subtractions": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.subtractions.subtractions", - "description": "Colorado counts these sources as subtractions.", - "label": "subtractions", - "unit": "list", - "period": "year", - "values": { - "2023-01-01": [ - "us_govt_interest", - "co_pension_subtraction", - "co_military_retirement_subtraction", - "co_collegeinvest_subtraction", - "co_charitable_contribution_subtraction", - "co_able_contribution_subtraction" - ], - "2021-01-01": [ - "us_govt_interest", - "co_pension_subtraction", - "co_military_retirement_subtraction", - "co_collegeinvest_subtraction", - "co_charitable_contribution_subtraction" - ], - "2015-01-01": [ - "us_govt_interest", - "co_pension_subtraction", - "co_military_retirement_subtraction", - "co_collegeinvest_subtraction", - "co_charitable_contribution_subtraction" - ] - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.subtractions.able_contribution": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.subtractions.able_contribution", - "description": null, - "label": "able contribution", - "economy": true, - "household": true - }, - "gov.states.co.tax.income.subtractions.able_contribution.cap": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.subtractions.able_contribution.cap", - "description": "Colorado caps the ABLE contribution subtraction to this amount, based on filing status.", - "label": "Colorado ABLE contribution subtraction cap", - "economy": true, - "household": true - }, - "gov.states.co.tax.income.subtractions.able_contribution.cap.JOINT": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.subtractions.able_contribution.cap.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 34000, - "2023-01-01": 31000, - "2015-01-01": 31000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.subtractions.able_contribution.cap.SINGLE": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.subtractions.able_contribution.cap.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 22700, - "2023-01-01": 20700, - "2015-01-01": 20700 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.subtractions.able_contribution.cap.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.subtractions.able_contribution.cap.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 22700, - "2023-01-01": 20700, - "2015-01-01": 20700 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.subtractions.able_contribution.cap.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.subtractions.able_contribution.cap.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2024-01-01": 22700, - "2023-01-01": 20700, - "2015-01-01": 20700 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.subtractions.able_contribution.cap.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.subtractions.able_contribution.cap.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 22700, - "2023-01-01": 20700, - "2015-01-01": 20700 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.subtractions.pension": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.subtractions.pension", - "description": null, - "label": "pension", - "economy": true, - "household": true - }, - "gov.states.co.tax.income.subtractions.pension.cap": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.subtractions.pension.cap", - "description": null, - "label": "cap", - "economy": true, - "household": true - }, - "gov.states.co.tax.income.subtractions.pension.cap.younger": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.subtractions.pension.cap.younger", - "description": "Colorado allows a pension and annuity subtraction to get its net income that is capped at this amount.", - "label": "Colorado capped pension and annuity income amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.subtractions.pension.cap.older": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.subtractions.pension.cap.older", - "description": "Colorado allows a pension and annuity subtraction to get its net income that is capped at this amount.", - "label": "Colorado capped pension and annuity income amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 24000, - "2015-01-01": 24000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.subtractions.pension.age_threshold": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.subtractions.pension.age_threshold", - "description": null, - "label": "age threshold", - "economy": true, - "household": true - }, - "gov.states.co.tax.income.subtractions.pension.age_threshold.younger": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.subtractions.pension.age_threshold.younger", - "description": "Colorado limits its younger pension subtraction to filers below this age threshold.", - "label": "Colorado pension subtraction lower age threshold", - "unit": "year", - "period": "year", - "values": { - "2019-01-01": 55, - "2015-01-01": 55 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.subtractions.pension.age_threshold.older": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.subtractions.pension.age_threshold.older", - "description": "Colorado limits its older pension subtraction to filers above this age threshold.", - "label": "Colorado pension subtraction upper age threshold", - "unit": "year", - "period": "year", - "values": { - "2019-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.subtractions.pension.income_sources": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.subtractions.pension.income_sources", - "description": "Colorado counts these income sources for the pension subtraction.", - "label": "Colorado pension subtraction income sources", - "unit": "list", - "period": "year", - "values": { - "2022-01-01": [ - "taxable_pension_income", - "taxable_ira_distributions", - "disability_benefits" - ], - "2021-01-01": [ - "taxable_pension_income", - "taxable_social_security", - "taxable_ira_distributions", - "disability_benefits" - ], - "2015-01-01": [ - "taxable_pension_income", - "taxable_social_security", - "taxable_ira_distributions", - "disability_benefits" - ] - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.subtractions.pension.social_security_subtraction_available": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.subtractions.pension.social_security_subtraction_available", - "description": "Colorado separates Social Security income from pension income for the pension subtraction if this is true.", - "label": "Colorado social security subtraction available", - "unit": "bool", - "period": "year", - "values": { - "2022-01-01": true, - "2021-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.additions": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.additions", - "description": null, - "label": "additions", - "economy": true, - "household": true - }, - "gov.states.co.tax.income.additions.qualified_business_income_deduction": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.additions.qualified_business_income_deduction", - "description": null, - "label": "qualified business income deduction", - "economy": true, - "household": true - }, - "gov.states.co.tax.income.additions.qualified_business_income_deduction.agi_threshold": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.additions.qualified_business_income_deduction.agi_threshold", - "description": "Colorado adds back the qualified business income deduction for filers with adjusted gross income above this threshold, based on filing status.", - "label": "Colorado qualified business income deduction addback AGI threshold", - "economy": true, - "household": true - }, - "gov.states.co.tax.income.additions.qualified_business_income_deduction.agi_threshold.SINGLE": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.additions.qualified_business_income_deduction.agi_threshold.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 500000, - "2015-01-01": 500000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.additions.qualified_business_income_deduction.agi_threshold.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.additions.qualified_business_income_deduction.agi_threshold.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 500000, - "2015-01-01": 500000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.additions.qualified_business_income_deduction.agi_threshold.JOINT": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.additions.qualified_business_income_deduction.agi_threshold.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 1000000, - "2015-01-01": 1000000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.additions.qualified_business_income_deduction.agi_threshold.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.additions.qualified_business_income_deduction.agi_threshold.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 500000, - "2015-01-01": 500000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.additions.qualified_business_income_deduction.agi_threshold.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.additions.qualified_business_income_deduction.agi_threshold.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 500000, - "2015-01-01": 500000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.additions.federal_deductions": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.additions.federal_deductions", - "description": null, - "label": "federal deductions", - "economy": true, - "household": true - }, - "gov.states.co.tax.income.additions.federal_deductions.exemption": { - "type": "parameterNode", - "parameter": "gov.states.co.tax.income.additions.federal_deductions.exemption", - "description": "Colorado adds back federal deductions above this exemption amount for filers, based on filing status.", - "label": "Colorado itemized or standard deduction add back exemption", - "economy": true, - "household": true - }, - "gov.states.co.tax.income.additions.federal_deductions.exemption.JOINT": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.additions.federal_deductions.exemption.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2023-01-01": 16000, - "2022-01-01": 60000, - "2015-01-01": 60000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.additions.federal_deductions.exemption.SINGLE": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.additions.federal_deductions.exemption.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2023-01-01": 12000, - "2022-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.additions.federal_deductions.exemption.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.additions.federal_deductions.exemption.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2023-01-01": 12000, - "2022-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.additions.federal_deductions.exemption.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.additions.federal_deductions.exemption.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2023-01-01": 12000, - "2022-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.additions.federal_deductions.exemption.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.additions.federal_deductions.exemption.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2023-01-01": 12000, - "2022-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.additions.federal_deductions.agi_threshold": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.additions.federal_deductions.agi_threshold", - "description": "Colorado adds back federal deductions for filers with adjusted gross income above this threshold.", - "label": "Colorado federal deductions add-back AGI threshold", - "unit": "currency-USD", - "period": "year", - "values": { - "2023-01-01": 300000, - "2022-01-01": 400000, - "2015-01-01": 400000 - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.additions.federal_deductions.itemized_only": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.additions.federal_deductions.itemized_only", - "description": "Whether the Colorado federal deductions addback is only itemized.", - "label": "Colorado federal deduction addback itemized only", - "unit": "bool", - "period": "year", - "values": { - "2023-01-01": false, - "2022-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.additions.additions": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.additions.additions", - "description": "Colorado adds these variables to the federal taxable income when computing the state taxable income.", - "label": "Colorado federal taxable income additions", - "unit": "list", - "period": "year", - "values": { - "2022-01-01": [ - "co_state_addback", - "co_qualified_business_income_deduction_addback", - "co_federal_deduction_addback" - ], - "2021-01-01": ["co_state_addback", "co_qualified_business_income_deduction_addback"], - "2015-01-01": ["co_state_addback", "co_qualified_business_income_deduction_addback"] - }, - "economy": true, - "household": true - }, - "gov.states.co.tax.income.rate": { - "type": "parameter", - "parameter": "gov.states.co.tax.income.rate", - "description": "Colorado taxes personal income at this flat rate.", - "label": "Colorado income tax rate", - "unit": "/1", - "period": "year", - "values": { - "2025-01-01": 0.044, - "2024-01-01": 0.0425, - "2022-01-01": 0.044, - "2021-01-01": 0.045, - "2020-01-01": 0.0455, - "2019-01-01": 0.045, - "2000-01-01": 0.0463, - "1999-01-01": 0.0475, - "1987-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap": { - "type": "parameterNode", - "parameter": "gov.states.co.ccap", - "description": null, - "label": "ccap", - "economy": true, - "household": true - }, - "gov.states.co.ccap.age_limit": { - "type": "parameter", - "parameter": "gov.states.co.ccap.age_limit", - "description": "Colorado limits its Child Care Assistance Program to non-disabled children below this age.", - "label": "Colorado Child Care Assistance Program non-disabled child age limit", - "unit": "year", - "period": null, - "values": { - "2022-10-01": 13, - "2015-01-01": 13 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.is_quality_rating_discounted": { - "type": "parameterNode", - "parameter": "gov.states.co.ccap.is_quality_rating_discounted", - "description": "The Colorado Child Care Assistance Program uses this discount rate based on the value of the maximum child care facility rating for an SPM unit compared to the outlined thresholds.", - "label": "Colorado Child Care Assistance Program offers discount to quality rating child care facilities" - }, - "gov.states.co.ccap.is_quality_rating_discounted[0]": { - "type": "parameterNode", - "parameter": "gov.states.co.ccap.is_quality_rating_discounted[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.co.ccap.is_quality_rating_discounted[0].threshold": { - "type": "parameter", - "parameter": "gov.states.co.ccap.is_quality_rating_discounted[0].threshold", - "description": null, - "label": "threshold", - "unit": "Child care facility quality rating", - "period": null, - "values": { - "2022-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.is_quality_rating_discounted[0].amount": { - "type": "parameter", - "parameter": "gov.states.co.ccap.is_quality_rating_discounted[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-10-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.is_quality_rating_discounted[1]": { - "type": "parameterNode", - "parameter": "gov.states.co.ccap.is_quality_rating_discounted[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.co.ccap.is_quality_rating_discounted[1].threshold": { - "type": "parameter", - "parameter": "gov.states.co.ccap.is_quality_rating_discounted[1].threshold", - "description": null, - "label": "threshold", - "unit": "Child care facility quality rating", - "period": null, - "values": { - "2022-10-01": 3, - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.is_quality_rating_discounted[1].amount": { - "type": "parameter", - "parameter": "gov.states.co.ccap.is_quality_rating_discounted[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-10-01": 0.8, - "2015-01-01": 0.8 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.parent_fee": { - "type": "parameterNode", - "parameter": "gov.states.co.ccap.parent_fee", - "description": null, - "label": "parent fee", - "economy": true, - "household": true - }, - "gov.states.co.ccap.parent_fee.add_on": { - "type": "parameter", - "parameter": "gov.states.co.ccap.parent_fee.add_on", - "description": "Colorado multiplies the number of additional eligible children by this amount under the Child Care Assistance Program to calculate add on parent fee.", - "label": "Colorado Child Care Assistance Program parent fee add on rate", - "unit": "currency-USD", - "period": "month", - "values": { - "2022-10-01": 15, - "2015-01-01": 15 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.parent_fee.base": { - "type": "parameterNode", - "parameter": "gov.states.co.ccap.parent_fee.base", - "description": "Colorado multiplies the ratio of countable income to the federal poverty guideline by this rate under the Child Care Assistance Program to calculate the base parent fee.", - "label": "Colorado Child Care Assistance Program parent fee base rate" - }, - "gov.states.co.ccap.parent_fee.base[0]": { - "type": "parameterNode", - "parameter": "gov.states.co.ccap.parent_fee.base[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.co.ccap.parent_fee.base[0].rate": { - "type": "parameter", - "parameter": "gov.states.co.ccap.parent_fee.base[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-10-01": 0.01, - "2015-01-01": 0.01 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.parent_fee.base[0].threshold": { - "type": "parameter", - "parameter": "gov.states.co.ccap.parent_fee.base[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.parent_fee.base[1]": { - "type": "parameterNode", - "parameter": "gov.states.co.ccap.parent_fee.base[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.co.ccap.parent_fee.base[1].rate": { - "type": "parameter", - "parameter": "gov.states.co.ccap.parent_fee.base[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-10-01": 0.14, - "2015-01-01": 0.14 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.parent_fee.base[1].threshold": { - "type": "parameter", - "parameter": "gov.states.co.ccap.parent_fee.base[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-10-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.re_determination": { - "type": "parameterNode", - "parameter": "gov.states.co.ccap.re_determination", - "description": null, - "label": "re determination", - "economy": true, - "household": true - }, - "gov.states.co.ccap.re_determination.smi_rate": { - "type": "parameter", - "parameter": "gov.states.co.ccap.re_determination.smi_rate", - "description": "Colorado limits its Child Care Assistance Program re-determination to households with income below this fraction of state median income.", - "label": "Colorado Child Care Assistance Program household size state median income re-determination rate", - "unit": "/1", - "period": "year", - "values": { - "2022-10-01": 0.85, - "2015-01-01": 0.85 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry": { - "type": "parameterNode", - "parameter": "gov.states.co.ccap.entry", - "description": null, - "label": "entry", - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.smi_rate": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.smi_rate", - "description": "Colorado limits its Child Care Assistance Program application to applicants with adjusted gross income lower than these rates of household size state median income.", - "label": "Colorado Child Care Assistance Program household size state median income entry rate", - "unit": "/1", - "period": "year", - "values": { - "2022-10-01": 0.85, - "2015-01-01": 0.85 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate": { - "type": "parameterNode", - "parameter": "gov.states.co.ccap.entry.fpg_rate", - "description": "Colorado limits its Child Care Assistance Program application to applicants with adjusted gross income lower than these rates of household size federal poverty guidelines by county.", - "label": "Colorado Child Care Assistance Program household size federal poverty guidelines entry rate", - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.ADAMS_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.ADAMS_COUNTY_CO", - "description": null, - "label": "ADAMS COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2.35, - "2015-01-01": 2.35 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.ALAMOSA_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.ALAMOSA_COUNTY_CO", - "description": null, - "label": "ALAMOSA COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.ARAPAHOE_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.ARAPAHOE_COUNTY_CO", - "description": null, - "label": "ARAPAHOE COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2.35, - "2015-01-01": 2.35 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.ARCHULETA_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.ARCHULETA_COUNTY_CO", - "description": null, - "label": "ARCHULETA COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.BACA_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.BACA_COUNTY_CO", - "description": null, - "label": "BACA COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.BENT_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.BENT_COUNTY_CO", - "description": null, - "label": "BENT COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.BOULDER_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.BOULDER_COUNTY_CO", - "description": null, - "label": "BOULDER COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2.7, - "2015-01-01": 2.7 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.BROOMFIELD_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.BROOMFIELD_COUNTY_CO", - "description": null, - "label": "BROOMFIELD COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2.7, - "2015-01-01": 2.7 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.CHAFFEE_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.CHAFFEE_COUNTY_CO", - "description": null, - "label": "CHAFFEE COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.CHEYENNE_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.CHEYENNE_COUNTY_CO", - "description": null, - "label": "CHEYENNE COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.CLEAR_CREEK_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.CLEAR_CREEK_COUNTY_CO", - "description": null, - "label": "CLEAR CREEK COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2.35, - "2015-01-01": 2.35 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.CONEJOS_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.CONEJOS_COUNTY_CO", - "description": null, - "label": "CONEJOS COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.COSTILLA_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.COSTILLA_COUNTY_CO", - "description": null, - "label": "COSTILLA COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.CROWLEY_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.CROWLEY_COUNTY_CO", - "description": null, - "label": "CROWLEY COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.CUSTER_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.CUSTER_COUNTY_CO", - "description": null, - "label": "CUSTER COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.DELTA_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.DELTA_COUNTY_CO", - "description": null, - "label": "DELTA COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.DENVER_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.DENVER_COUNTY_CO", - "description": null, - "label": "DENVER COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2.35, - "2015-01-01": 2.35 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.DOLORES_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.DOLORES_COUNTY_CO", - "description": null, - "label": "DOLORES COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.DOUGLAS_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.DOUGLAS_COUNTY_CO", - "description": null, - "label": "DOUGLAS COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2.7, - "2015-01-01": 2.7 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.EAGLE_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.EAGLE_COUNTY_CO", - "description": null, - "label": "EAGLE COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2.35, - "2015-01-01": 2.35 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.EL_PASO_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.EL_PASO_COUNTY_CO", - "description": null, - "label": "EL PASO COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.ELBERT_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.ELBERT_COUNTY_CO", - "description": null, - "label": "ELBERT COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2.35, - "2015-01-01": 2.35 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.FREMONT_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.FREMONT_COUNTY_CO", - "description": null, - "label": "FREMONT COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.GARFIELD_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.GARFIELD_COUNTY_CO", - "description": null, - "label": "GARFIELD COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2.35, - "2015-01-01": 2.35 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.GILPIN_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.GILPIN_COUNTY_CO", - "description": null, - "label": "GILPIN COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2.35, - "2015-01-01": 2.35 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.GRAND_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.GRAND_COUNTY_CO", - "description": null, - "label": "GRAND COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2.35, - "2015-01-01": 2.35 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.GUNNISON_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.GUNNISON_COUNTY_CO", - "description": null, - "label": "GUNNISON COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.HINSDALE_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.HINSDALE_COUNTY_CO", - "description": null, - "label": "HINSDALE COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.HUERFANO_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.HUERFANO_COUNTY_CO", - "description": null, - "label": "HUERFANO COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.JACKSON_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.JACKSON_COUNTY_CO", - "description": null, - "label": "JACKSON COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2.35, - "2015-01-01": 2.35 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.JEFFERSON_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.JEFFERSON_COUNTY_CO", - "description": null, - "label": "JEFFERSON COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2.35, - "2015-01-01": 2.35 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.KIOWA_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.KIOWA_COUNTY_CO", - "description": null, - "label": "KIOWA COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.KIT_CARSON_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.KIT_CARSON_COUNTY_CO", - "description": null, - "label": "KIT CARSON COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.LA_PLATA_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.LA_PLATA_COUNTY_CO", - "description": null, - "label": "LA PLATA COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2.35, - "2015-01-01": 2.35 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.LAKE_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.LAKE_COUNTY_CO", - "description": null, - "label": "LAKE COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.LARIMER_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.LARIMER_COUNTY_CO", - "description": null, - "label": "LARIMER COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2.35, - "2015-01-01": 2.35 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.LAS_ANIMAS_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.LAS_ANIMAS_COUNTY_CO", - "description": null, - "label": "LAS ANIMAS COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.LINCOLN_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.LINCOLN_COUNTY_CO", - "description": null, - "label": "LINCOLN COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.LOGAN_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.LOGAN_COUNTY_CO", - "description": null, - "label": "LOGAN COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.MESA_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.MESA_COUNTY_CO", - "description": null, - "label": "MESA COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.MINERAL_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.MINERAL_COUNTY_CO", - "description": null, - "label": "MINERAL COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.MOFFAT_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.MOFFAT_COUNTY_CO", - "description": null, - "label": "MOFFAT COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.MONTEZUMA_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.MONTEZUMA_COUNTY_CO", - "description": null, - "label": "MONTEZUMA COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.MONTROSE_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.MONTROSE_COUNTY_CO", - "description": null, - "label": "MONTROSE COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.MORGAN_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.MORGAN_COUNTY_CO", - "description": null, - "label": "MORGAN COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.OTERO_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.OTERO_COUNTY_CO", - "description": null, - "label": "OTERO COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.OURAY_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.OURAY_COUNTY_CO", - "description": null, - "label": "OURAY COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.PARK_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.PARK_COUNTY_CO", - "description": null, - "label": "PARK COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2.35, - "2015-01-01": 2.35 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.PHILLIPS_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.PHILLIPS_COUNTY_CO", - "description": null, - "label": "PHILLIPS COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.PITKIN_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.PITKIN_COUNTY_CO", - "description": null, - "label": "PITKIN COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2.7, - "2015-01-01": 2.7 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.PROWERS_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.PROWERS_COUNTY_CO", - "description": null, - "label": "PROWERS COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.PUEBLO_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.PUEBLO_COUNTY_CO", - "description": null, - "label": "PUEBLO COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.RIO_BLANCO_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.RIO_BLANCO_COUNTY_CO", - "description": null, - "label": "RIO BLANCO COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.RIO_GRANDE_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.RIO_GRANDE_COUNTY_CO", - "description": null, - "label": "RIO GRANDE COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.ROUTT_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.ROUTT_COUNTY_CO", - "description": null, - "label": "ROUTT COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2.7, - "2015-01-01": 2.7 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.SAGUACHE_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.SAGUACHE_COUNTY_CO", - "description": null, - "label": "SAGUACHE COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.SAN_JUAN_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.SAN_JUAN_COUNTY_CO", - "description": null, - "label": "SAN JUAN COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2.35, - "2015-01-01": 2.35 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.SAN_MIGUEL_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.SAN_MIGUEL_COUNTY_CO", - "description": null, - "label": "SAN MIGUEL COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2.35, - "2015-01-01": 2.35 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.SEDGWICK_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.SEDGWICK_COUNTY_CO", - "description": null, - "label": "SEDGWICK COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.SUMMIT_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.SUMMIT_COUNTY_CO", - "description": null, - "label": "SUMMIT COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2.7, - "2015-01-01": 2.7 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.TELLER_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.TELLER_COUNTY_CO", - "description": null, - "label": "TELLER COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.WASHINGTON_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.WASHINGTON_COUNTY_CO", - "description": null, - "label": "WASHINGTON COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.WELD_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.WELD_COUNTY_CO", - "description": null, - "label": "WELD COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.entry.fpg_rate.YUMA_COUNTY_CO": { - "type": "parameter", - "parameter": "gov.states.co.ccap.entry.fpg_rate.YUMA_COUNTY_CO", - "description": null, - "label": "YUMA COUNTY CO", - "unit": null, - "period": null, - "values": { - "2022-10-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.parent_fee_rate_by_child_care_hours": { - "type": "parameterNode", - "parameter": "gov.states.co.ccap.parent_fee_rate_by_child_care_hours", - "description": "Colorado Child Care Assistance Program issues these rates when calculating parent fee, depending on child care hours per day.", - "label": "Colorado Child Care Assistance Program parent fee rate by hours" - }, - "gov.states.co.ccap.parent_fee_rate_by_child_care_hours[0]": { - "type": "parameterNode", - "parameter": "gov.states.co.ccap.parent_fee_rate_by_child_care_hours[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.co.ccap.parent_fee_rate_by_child_care_hours[0].threshold": { - "type": "parameter", - "parameter": "gov.states.co.ccap.parent_fee_rate_by_child_care_hours[0].threshold", - "description": null, - "label": "threshold", - "unit": "hours", - "period": null, - "values": { - "2022-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.parent_fee_rate_by_child_care_hours[0].amount": { - "type": "parameter", - "parameter": "gov.states.co.ccap.parent_fee_rate_by_child_care_hours[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-10-01": 0.55, - "2015-01-01": 0.55 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.parent_fee_rate_by_child_care_hours[1]": { - "type": "parameterNode", - "parameter": "gov.states.co.ccap.parent_fee_rate_by_child_care_hours[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.co.ccap.parent_fee_rate_by_child_care_hours[1].threshold": { - "type": "parameter", - "parameter": "gov.states.co.ccap.parent_fee_rate_by_child_care_hours[1].threshold", - "description": null, - "label": "threshold", - "unit": "hours", - "period": null, - "values": { - "2022-10-01": 5, - "2015-01-01": 5 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.parent_fee_rate_by_child_care_hours[1].amount": { - "type": "parameter", - "parameter": "gov.states.co.ccap.parent_fee_rate_by_child_care_hours[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-10-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.parent_fee_rate_by_child_care_hours[2]": { - "type": "parameterNode", - "parameter": "gov.states.co.ccap.parent_fee_rate_by_child_care_hours[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.co.ccap.parent_fee_rate_by_child_care_hours[2].threshold": { - "type": "parameter", - "parameter": "gov.states.co.ccap.parent_fee_rate_by_child_care_hours[2].threshold", - "description": null, - "label": "threshold", - "unit": "hours", - "period": null, - "values": { - "2022-10-01": 12, - "2015-01-01": 12 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.parent_fee_rate_by_child_care_hours[2].amount": { - "type": "parameter", - "parameter": "gov.states.co.ccap.parent_fee_rate_by_child_care_hours[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-10-01": 1.55, - "2015-01-01": 1.55 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.parent_fee_rate_by_child_care_hours[3]": { - "type": "parameterNode", - "parameter": "gov.states.co.ccap.parent_fee_rate_by_child_care_hours[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.co.ccap.parent_fee_rate_by_child_care_hours[3].threshold": { - "type": "parameter", - "parameter": "gov.states.co.ccap.parent_fee_rate_by_child_care_hours[3].threshold", - "description": null, - "label": "threshold", - "unit": "hours", - "period": null, - "values": { - "2022-10-01": 17, - "2015-01-01": 17 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.parent_fee_rate_by_child_care_hours[3].amount": { - "type": "parameter", - "parameter": "gov.states.co.ccap.parent_fee_rate_by_child_care_hours[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-10-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.implementing_month": { - "type": "parameter", - "parameter": "gov.states.co.ccap.implementing_month", - "description": "Colorado Child Care Assistance Program annually implements in this month.", - "label": "Colorado Child Care Assistance Program implementing month", - "unit": null, - "period": null, - "values": { - "2022-10-01": 10, - "2015-01-01": 10 - }, - "economy": true, - "household": true - }, - "gov.states.co.ccap.disabled_age_limit": { - "type": "parameter", - "parameter": "gov.states.co.ccap.disabled_age_limit", - "description": "Colorado limits its Child Care Assistance Program to disabled children below this age.", - "label": "Colorado Child Care Assistance Program disabled child age limit", - "unit": "year", - "period": null, - "values": { - "2022-10-01": 19, - "2015-01-01": 19 - }, - "economy": true, - "household": true - }, - "gov.states.household": { - "type": "parameterNode", - "parameter": "gov.states.household", - "description": null, - "label": "household", - "economy": false, - "household": false - }, - "gov.states.household.state_ctcs": { - "type": "parameter", - "parameter": "gov.states.household.state_ctcs", - "description": "All state Child Tax Credits.", - "label": "State CTCs", - "unit": "list", - "period": "year", - "values": { - "0000-01-01": [ - "az_dependent_tax_credit", - "ca_yctc", - "co_ctc", - "co_family_affordability_credit", - "ct_child_tax_rebate", - "dc_ctc", - "id_ctc", - "il_ctc", - "ma_child_and_family_credit", - "md_ctc", - "mn_child_and_working_families_credits", - "ne_refundable_ctc", - "nj_ctc", - "nm_ctc", - "ny_ctc", - "ok_child_care_child_tax_credit", - "or_ctc", - "ri_child_tax_rebate", - "ut_ctc", - "vt_ctc" - ] - }, - "economy": false, - "household": false - }, - "gov.states.household.state_eitcs": { - "type": "parameter", - "parameter": "gov.states.household.state_eitcs", - "description": "All state Earned Income Tax Credits.", - "label": "State EITCs", - "unit": "list", - "period": "year", - "values": { - "0000-01-01": [ - "ca_eitc", - "co_eitc", - "ct_eitc", - "dc_eitc", - "de_eitc", - "hi_eitc", - "il_eitc", - "in_eitc", - "ia_eitc", - "ks_total_eitc", - "la_eitc", - "ma_eitc", - "md_eitc", - "me_eitc", - "mi_eitc", - "mn_wfc", - "mn_child_and_working_families_credits", - "mo_wftc", - "mt_eitc", - "ne_eitc", - "nj_eitc", - "nm_eitc", - "ny_eitc", - "oh_eitc", - "ok_eitc", - "or_eitc", - "ri_eitc", - "sc_eitc", - "vt_eitc", - "va_eitc", - "wa_working_families_tax_credit", - "wi_earned_income_credit" - ] - }, - "economy": false, - "household": false - }, - "gov.states.household.state_agis": { - "type": "parameter", - "parameter": "gov.states.household.state_agis", - "description": "All state adjusted gross income variables.", - "label": "State Adjusted Gross Income Variables", - "unit": "list", - "period": "year", - "values": { - "0000-01-01": [ - "al_agi", - "ar_agi", - "az_agi", - "ca_agi", - "ct_agi", - "dc_agi", - "de_agi", - "ga_agi", - "hi_agi", - "ia_net_income", - "id_agi", - "il_base_income", - "in_agi", - "ks_agi", - "ky_agi", - "la_agi", - "ma_agi", - "md_agi", - "me_agi", - "mo_adjusted_gross_income", - "ms_agi", - "mt_agi", - "ne_agi", - "nj_agi", - "nm_modified_gross_income", - "ny_agi", - "oh_agi", - "ok_agi", - "or_agi", - "pa_eligibility_income", - "ri_agi", - "ut_total_income", - "va_agi", - "vt_agi", - "wi_agi", - "wv_agi" - ] - }, - "economy": false, - "household": false - }, - "gov.states.household.states_with_married_filing_separately_on_same_return": { - "type": "parameter", - "parameter": "gov.states.household.states_with_married_filing_separately_on_same_return", - "description": "States that allow married couples to file separately on the same return.", - "label": "States with married filing separately on the same return", - "unit": "list", - "period": "year", - "values": { - "0000-01-01": ["ar", "de", "ia", "ky", "ms", "mt"] - }, - "economy": false, - "household": false - }, - "gov.states.household.state_cdccs": { - "type": "parameter", - "parameter": "gov.states.household.state_cdccs", - "description": "All state Child and Dependent Care Credits and related credits.", - "label": "State Child and Dependent Care Credits", - "unit": "list", - "period": "year", - "values": { - "0000-01-01": [ - "ar_cdcc", - "ca_cdcc", - "co_cdcc", - "co_low_income_cdcc", - "dc_cdcc", - "dc_kccatc", - "de_cdcc", - "ga_cdcc", - "hi_cdcc", - "ia_cdcc", - "ks_cdcc", - "ky_cdcc", - "la_non_refundable_cdcc", - "la_refundable_cdcc", - "ma_dependent_care_credit", - "md_cdcc", - "me_child_care_credit", - "mn_cdcc", - "ne_cdcc_nonrefundable", - "ne_cdcc_refundable", - "nj_cdcc", - "nm_cdcc", - "ny_cdcc", - "oh_cdcc", - "ok_child_care_child_tax_credit", - "or_working_family_household_and_dependent_care_credit", - "pa_cdcc", - "ri_cdcc", - "sc_cdcc", - "vt_cdcc", - "vt_low_income_cdcc", - "wi_childcare_expense_credit" - ] - }, - "economy": false, - "household": false - }, - "gov.states.household.state_refundable_credits": { - "type": "parameter", - "parameter": "gov.states.household.state_refundable_credits", - "description": "All state refundable credits.", - "label": "State refundable credits", - "unit": "list", - "period": "year", - "values": { - "0000-01-01": [ - "al_refundable_credits", - "ar_refundable_credits", - "az_refundable_credits", - "ca_refundable_credits", - "co_refundable_credits", - "ct_refundable_credits", - "dc_refundable_credits", - "de_refundable_credits", - "ga_refundable_credits", - "hi_refundable_credits", - "ia_refundable_credits", - "id_refundable_credits", - "il_refundable_credits", - "in_refundable_credits", - "ks_refundable_credits", - "ky_refundable_credits", - "la_refundable_credits", - "ma_refundable_credits", - "me_refundable_credits", - "md_refundable_credits", - "mi_refundable_credits", - "mn_refundable_credits", - "mo_refundable_credits", - "ms_refundable_credits", - "mt_refundable_credits", - "nd_refundable_credits", - "ne_refundable_credits", - "nh_refundable_credits", - "nm_refundable_credits", - "nj_refundable_credits", - "ny_refundable_credits", - "oh_refundable_credits", - "ok_refundable_credits", - "or_refundable_credits", - "ri_refundable_credits", - "sc_refundable_credits", - "wa_refundable_credits", - "nyc_refundable_credits", - "ut_refundable_credits", - "va_refundable_credits", - "vt_refundable_credits", - "wi_refundable_credits", - "wv_refundable_credits" - ] - }, - "economy": false, - "household": false - }, - "gov.states.household.state_standard_deductions": { - "type": "parameter", - "parameter": "gov.states.household.state_standard_deductions", - "description": "All state standard deduction variables.", - "label": "State Standard Deduction Variables", - "unit": "list", - "period": "year", - "values": { - "0000-01-01": [ - "al_standard_deduction", - "ar_standard_deduction", - "az_standard_deduction", - "ca_standard_deduction", - "dc_standard_deduction", - "de_standard_deduction", - "ga_standard_deduction", - "hi_standard_deduction", - "ia_standard_deduction", - "ks_standard_deduction", - "ky_standard_deduction", - "la_standard_deduction", - "md_standard_deduction", - "mi_standard_deduction", - "mn_standard_deduction", - "ms_standard_deduction", - "mt_standard_deduction", - "nc_standard_deduction", - "ne_standard_deduction", - "ny_standard_deduction", - "ok_standard_deduction", - "or_standard_deduction", - "ri_standard_deduction", - "va_standard_deduction", - "vt_standard_deduction", - "wi_standard_deduction" - ] - }, - "economy": false, - "household": false - }, - "gov.states.household.state_withheld_income_tax": { - "type": "parameter", - "parameter": "gov.states.household.state_withheld_income_tax", - "description": "All state withheld income tax.", - "label": "State withheld income tax", - "unit": "list", - "period": "year", - "values": { - "0000-01-01": [ - "al_withheld_income_tax", - "ar_withheld_income_tax", - "az_withheld_income_tax", - "ca_withheld_income_tax", - "co_withheld_income_tax", - "ct_withheld_income_tax", - "dc_withheld_income_tax", - "de_withheld_income_tax", - "ga_withheld_income_tax", - "hi_withheld_income_tax", - "ia_withheld_income_tax", - "id_withheld_income_tax", - "il_withheld_income_tax", - "in_withheld_income_tax", - "ks_withheld_income_tax", - "ky_withheld_income_tax", - "la_withheld_income_tax", - "ma_withheld_income_tax", - "md_withheld_income_tax", - "me_withheld_income_tax", - "mi_withheld_income_tax", - "mn_withheld_income_tax", - "mo_withheld_income_tax", - "ms_withheld_income_tax", - "mt_withheld_income_tax", - "nc_withheld_income_tax", - "nd_withheld_income_tax", - "ne_withheld_income_tax", - "nj_withheld_income_tax", - "nm_withheld_income_tax", - "ny_withheld_income_tax", - "oh_withheld_income_tax", - "ok_withheld_income_tax", - "or_withheld_income_tax", - "pa_withheld_income_tax", - "ri_withheld_income_tax", - "sc_withheld_income_tax", - "ut_withheld_income_tax", - "va_withheld_income_tax", - "vt_withheld_income_tax", - "wi_withheld_income_tax", - "wv_withheld_income_tax" - ] - }, - "economy": false, - "household": false - }, - "gov.states.household.state_property_tax_credits": { - "type": "parameter", - "parameter": "gov.states.household.state_property_tax_credits", - "description": "All state property tax credits and circuit breaker programs.", - "label": "State Property Tax Credits and Circuit Breakers", - "unit": "list", - "period": "year", - "values": { - "0000-01-01": [ - "az_property_tax_credit", - "ct_property_tax_credit", - "dc_ptc", - "ma_senior_circuit_breaker", - "me_property_tax_fairness_credit", - "mi_homestead_property_tax_credit", - "mo_property_tax_credit", - "mt_elderly_homeowner_or_renter_credit", - "nj_property_tax_credit", - "nm_property_tax_rebate", - "ny_real_property_tax_credit", - "ri_property_tax_credit", - "wi_homestead_credit", - "wi_property_tax_credit", - "wv_homestead_excess_property_tax_credit" - ] - }, - "economy": false, - "household": false - }, - "gov.states.household.state_income_tax_before_refundable_credits": { - "type": "parameter", - "parameter": "gov.states.household.state_income_tax_before_refundable_credits", - "description": "All state income tax calculations before refundable credits.", - "label": "State income tax before refundable credits", - "unit": "list", - "period": "year", - "values": { - "0000-01-01": [ - "al_income_tax_before_refundable_credits", - "ar_income_tax_before_refundable_credits", - "az_income_tax_before_refundable_credits", - "ca_income_tax_before_refundable_credits", - "co_income_tax_before_refundable_credits", - "ct_income_tax_before_refundable_credits", - "dc_income_tax_before_refundable_credits", - "de_income_tax_before_refundable_credits", - "ga_income_tax_before_refundable_credits", - "hi_income_tax_before_refundable_credits", - "ia_income_tax_before_refundable_credits", - "id_income_tax_before_refundable_credits", - "il_total_tax", - "in_income_tax_before_refundable_credits", - "ks_income_tax_before_refundable_credits", - "ky_income_tax_before_refundable_credits", - "la_income_tax_before_refundable_credits", - "me_income_tax_before_refundable_credits", - "ma_income_tax_before_refundable_credits", - "md_income_tax_before_refundable_credits", - "mi_income_tax_before_refundable_credits", - "mn_income_tax_before_refundable_credits", - "mo_income_tax_before_refundable_credits", - "ms_income_tax_before_credits_unit", - "mt_income_tax_before_refundable_credits_unit", - "nc_income_tax", - "nd_income_tax_before_refundable_credits", - "ne_income_tax_before_refundable_credits", - "nh_income_tax_before_refundable_credits", - "nj_income_tax_before_refundable_credits", - "nm_income_tax_before_refundable_credits", - "ny_income_tax_before_refundable_credits", - "oh_income_tax_before_refundable_credits", - "or_income_tax_before_refundable_credits", - "ok_income_tax_before_refundable_credits", - "pa_income_tax", - "ri_income_tax_before_refundable_credits", - "sc_income_tax_before_refundable_credits", - "wa_income_tax_before_refundable_credits", - "nyc_income_tax_before_refundable_credits", - "ut_income_tax_before_refundable_credits", - "va_income_tax_before_refundable_credits", - "vt_income_tax_before_refundable_credits", - "wi_income_tax_before_refundable_credits", - "wv_income_tax_before_refundable_credits" - ] - }, - "economy": false, - "household": false - }, - "gov.states.household.state_itemized_deductions": { - "type": "parameter", - "parameter": "gov.states.household.state_itemized_deductions", - "description": "All state itemized deduction variables.", - "label": "State Itemized Deduction Variables", - "unit": "list", - "period": "year", - "values": { - "0000-01-01": [ - "al_itemized_deductions", - "ar_itemized_deductions", - "az_itemized_deductions", - "ca_itemized_deductions", - "dc_itemized_deductions", - "de_itemized_deductions", - "hi_itemized_deductions", - "ia_itemized_deductions", - "id_itemized_deductions", - "ks_itemized_deductions", - "ky_itemized_deductions", - "la_itemized_deductions", - "md_itemized_deductions", - "me_itemized_deductions_pre_phaseout", - "mn_itemized_deductions", - "mo_itemized_deductions", - "ms_itemized_deductions", - "mt_itemized_deductions", - "nc_itemized_deductions", - "ne_itemized_deductions", - "ny_itemized_deductions", - "ok_itemized_deductions", - "or_itemized_deductions", - "va_itemized_deductions" - ] - }, - "economy": false, - "household": false - }, - "gov.states.household.state_taxable_incomes": { - "type": "parameter", - "parameter": "gov.states.household.state_taxable_incomes", - "description": "All state taxable income variables.", - "label": "State Taxable Income Variables", - "unit": "list", - "period": "year", - "values": { - "0000-01-01": [ - "al_taxable_income", - "ar_taxable_income", - "az_taxable_income", - "ca_taxable_income", - "co_taxable_income", - "ct_taxable_income", - "dc_taxable_income", - "de_taxable_income", - "ga_taxable_income", - "hi_taxable_income", - "ia_taxable_income", - "id_taxable_income", - "il_taxable_income", - "in_agi", - "ks_taxable_income", - "ky_taxable_income", - "la_taxable_income", - "md_taxable_income", - "me_taxable_income", - "mi_taxable_income", - "mn_taxable_income", - "mo_taxable_income", - "ms_taxable_income", - "mt_taxable_income", - "nc_taxable_income", - "nd_taxable_income", - "ne_taxable_income", - "nj_taxable_income", - "nm_taxable_income", - "ny_taxable_income", - "oh_taxable_income", - "ok_taxable_income", - "or_taxable_income", - "ri_taxable_income", - "sc_taxable_income", - "ut_taxable_income", - "va_taxable_income", - "vt_taxable_income", - "wi_taxable_income", - "wv_taxable_income" - ] - }, - "economy": false, - "household": false - }, - "gov.states.de": { - "type": "parameterNode", - "parameter": "gov.states.de", - "description": null, - "label": "Delaware", - "economy": true, - "household": true - }, - "gov.states.de.tax": { - "type": "parameterNode", - "parameter": "gov.states.de.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.states.de.tax.income": { - "type": "parameterNode", - "parameter": "gov.states.de.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.de.tax.income.credits": { - "type": "parameterNode", - "parameter": "gov.states.de.tax.income.credits", - "description": null, - "label": "credits", - "economy": true, - "household": true - }, - "gov.states.de.tax.income.credits.eitc": { - "type": "parameterNode", - "parameter": "gov.states.de.tax.income.credits.eitc", - "description": null, - "label": "Earned Income Tax Credit", - "economy": true, - "household": true - }, - "gov.states.de.tax.income.credits.eitc.refundable": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.credits.eitc.refundable", - "description": "Delaware matches this percent of the federal Earned Income Tax Credit as a refundable credit.", - "label": "Delaware refundable EITC match", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.045, - "2015-01-01": 0.045 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.credits.eitc.non_refundable": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.credits.eitc.non_refundable", - "description": "Delaware matches this percent of the federal Earned Income Tax Credit as a non-refundable credit.", - "label": "Delaware non-refundable EITC match", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.credits.refundable": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.credits.refundable", - "description": "Delaware refundable tax credits.", - "label": "Delaware refundable tax credits", - "unit": "list", - "period": "year", - "values": { - "2023-01-01": ["de_refundable_eitc"], - "2022-01-01": ["de_refundable_eitc", "de_relief_rebate"], - "2019-01-01": ["de_refundable_eitc"], - "2015-01-01": ["de_refundable_eitc"] - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.credits.relief_rebate": { - "type": "parameterNode", - "parameter": "gov.states.de.tax.income.credits.relief_rebate", - "description": null, - "label": "relief rebate", - "economy": true, - "household": true - }, - "gov.states.de.tax.income.credits.relief_rebate.amount": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.credits.relief_rebate.amount", - "description": "Delaware provides a relief rebate of this amount to each adult in the household.", - "label": "Delaware relief rebate amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2022-01-01": 300, - "2015-01-01": 300 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.credits.cdcc": { - "type": "parameterNode", - "parameter": "gov.states.de.tax.income.credits.cdcc", - "description": null, - "label": "Child and Dependent Care Credit", - "economy": true, - "household": true - }, - "gov.states.de.tax.income.credits.cdcc.match": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.credits.cdcc.match", - "description": "Delaware matches up to this share of the federal Child and Dependent Care Credit.", - "label": "Delaware federal CDCC match", - "unit": "/1", - "period": "year", - "values": { - "2023-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.credits.personal_credits": { - "type": "parameterNode", - "parameter": "gov.states.de.tax.income.credits.personal_credits", - "description": null, - "label": "personal credits", - "economy": true, - "household": true - }, - "gov.states.de.tax.income.credits.personal_credits.personal": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.credits.personal_credits.personal", - "description": "Delaware provides this personal credit amount.", - "label": "Delaware personal credits amount", - "unit": "currency-USD", - "period": "year", - "values": { - "1996-01-01": 110 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.credits.personal_credits.aged": { - "type": "parameterNode", - "parameter": "gov.states.de.tax.income.credits.personal_credits.aged", - "description": "Delaware provides this aged additional personal credit amount to the head and spouse of a filing unit based on their age.", - "label": "Delaware additional aged personal credits age eligibility" - }, - "gov.states.de.tax.income.credits.personal_credits.aged[0]": { - "type": "parameterNode", - "parameter": "gov.states.de.tax.income.credits.personal_credits.aged[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.de.tax.income.credits.personal_credits.aged[0].threshold": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.credits.personal_credits.aged[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.credits.personal_credits.aged[0].amount": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.credits.personal_credits.aged[0].amount", - "description": null, - "label": "amount", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.credits.personal_credits.aged[1]": { - "type": "parameterNode", - "parameter": "gov.states.de.tax.income.credits.personal_credits.aged[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.de.tax.income.credits.personal_credits.aged[1].threshold": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.credits.personal_credits.aged[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.credits.personal_credits.aged[1].amount": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.credits.personal_credits.aged[1].amount", - "description": null, - "label": "amount", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 110, - "2015-01-01": 110 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.credits.non_refundable": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.credits.non_refundable", - "description": "Delaware non-refundable tax credits.", - "label": "Delaware non-refundable tax credits", - "unit": "list", - "period": "year", - "values": { - "2019-01-01": [ - "de_cdcc", - "de_non_refundable_eitc", - "de_personal_credit", - "de_aged_personal_credit" - ], - "2015-01-01": [ - "de_cdcc", - "de_non_refundable_eitc", - "de_personal_credit", - "de_aged_personal_credit" - ] - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.subtractions": { - "type": "parameterNode", - "parameter": "gov.states.de.tax.income.subtractions", - "description": null, - "label": "subtractions", - "economy": true, - "household": true - }, - "gov.states.de.tax.income.subtractions.subtractions": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.subtractions.subtractions", - "description": "Delaware subtracts these items when calculating state adjusted gross income.", - "label": "Delaware adjusted gross income subtractions", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": ["de_pension_exclusion", "taxable_social_security"], - "2015-01-01": ["de_pension_exclusion", "taxable_social_security"] - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.subtractions.exclusions": { - "type": "parameterNode", - "parameter": "gov.states.de.tax.income.subtractions.exclusions", - "description": null, - "label": "exclusions", - "economy": true, - "household": true - }, - "gov.states.de.tax.income.subtractions.exclusions.elderly_or_disabled": { - "type": "parameterNode", - "parameter": "gov.states.de.tax.income.subtractions.exclusions.elderly_or_disabled", - "description": null, - "label": "elderly or disabled", - "economy": true, - "household": true - }, - "gov.states.de.tax.income.subtractions.exclusions.elderly_or_disabled.eligibility": { - "type": "parameterNode", - "parameter": "gov.states.de.tax.income.subtractions.exclusions.elderly_or_disabled.eligibility", - "description": null, - "label": "eligibility", - "economy": true, - "household": true - }, - "gov.states.de.tax.income.subtractions.exclusions.elderly_or_disabled.eligibility.agi_limit": { - "type": "parameterNode", - "parameter": "gov.states.de.tax.income.subtractions.exclusions.elderly_or_disabled.eligibility.agi_limit", - "description": "Delaware limits its elderly and disabled exclusion to filers with adjusted gross income below this amount, based on filing status.", - "label": "Delaware aged or disabled exclusion subtraction adjusted gross income limit", - "economy": true, - "household": true - }, - "gov.states.de.tax.income.subtractions.exclusions.elderly_or_disabled.eligibility.agi_limit.JOINT": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.subtractions.exclusions.elderly_or_disabled.eligibility.agi_limit.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.subtractions.exclusions.elderly_or_disabled.eligibility.agi_limit.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.subtractions.exclusions.elderly_or_disabled.eligibility.agi_limit.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.subtractions.exclusions.elderly_or_disabled.eligibility.agi_limit.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.subtractions.exclusions.elderly_or_disabled.eligibility.agi_limit.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.subtractions.exclusions.elderly_or_disabled.eligibility.agi_limit.SINGLE": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.subtractions.exclusions.elderly_or_disabled.eligibility.agi_limit.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.subtractions.exclusions.elderly_or_disabled.eligibility.agi_limit.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.subtractions.exclusions.elderly_or_disabled.eligibility.agi_limit.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.subtractions.exclusions.elderly_or_disabled.eligibility.age_threshold": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.subtractions.exclusions.elderly_or_disabled.eligibility.age_threshold", - "description": "Delaware qualifies filers above his age threshold to receive the aged or disabled exclusion.", - "label": "Delaware aged or disabled exclusion age threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.subtractions.exclusions.elderly_or_disabled.eligibility.earned_income_limit": { - "type": "parameterNode", - "parameter": "gov.states.de.tax.income.subtractions.exclusions.elderly_or_disabled.eligibility.earned_income_limit", - "description": "Delaware limits its elderly and disabled exclusion to filers with earned income below this amount, depending on filing status.", - "label": "Delaware aged or disabled exclusion earned income limit", - "economy": true, - "household": true - }, - "gov.states.de.tax.income.subtractions.exclusions.elderly_or_disabled.eligibility.earned_income_limit.JOINT": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.subtractions.exclusions.elderly_or_disabled.eligibility.earned_income_limit.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.subtractions.exclusions.elderly_or_disabled.eligibility.earned_income_limit.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.subtractions.exclusions.elderly_or_disabled.eligibility.earned_income_limit.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 2500, - "2015-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.subtractions.exclusions.elderly_or_disabled.eligibility.earned_income_limit.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.subtractions.exclusions.elderly_or_disabled.eligibility.earned_income_limit.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 2500, - "2015-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.subtractions.exclusions.elderly_or_disabled.eligibility.earned_income_limit.SINGLE": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.subtractions.exclusions.elderly_or_disabled.eligibility.earned_income_limit.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 2500, - "2015-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.subtractions.exclusions.elderly_or_disabled.eligibility.earned_income_limit.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.subtractions.exclusions.elderly_or_disabled.eligibility.earned_income_limit.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 2500, - "2015-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.subtractions.exclusions.elderly_or_disabled.amount": { - "type": "parameterNode", - "parameter": "gov.states.de.tax.income.subtractions.exclusions.elderly_or_disabled.amount", - "description": "Delaware provides this income exclusion to elderly and disabled filers, based on filing status.", - "label": "Delaware aged or disabled exclusion amount", - "economy": true, - "household": true - }, - "gov.states.de.tax.income.subtractions.exclusions.elderly_or_disabled.amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.subtractions.exclusions.elderly_or_disabled.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 2000, - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.subtractions.exclusions.elderly_or_disabled.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.subtractions.exclusions.elderly_or_disabled.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 2000, - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.subtractions.exclusions.elderly_or_disabled.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.subtractions.exclusions.elderly_or_disabled.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 2000, - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.subtractions.exclusions.elderly_or_disabled.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.subtractions.exclusions.elderly_or_disabled.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 2000, - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.subtractions.exclusions.elderly_or_disabled.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.subtractions.exclusions.elderly_or_disabled.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 2000, - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.subtractions.exclusions.pension": { - "type": "parameterNode", - "parameter": "gov.states.de.tax.income.subtractions.exclusions.pension", - "description": null, - "label": "pension", - "economy": true, - "household": true - }, - "gov.states.de.tax.income.subtractions.exclusions.pension.military_retirement_exclusion_available": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.subtractions.exclusions.pension.military_retirement_exclusion_available", - "description": "Delaware allows for an exclusion of military retirement pay under the pension exclusion if this is true.", - "label": "Delaware military retirement exclusion available", - "unit": "bool", - "period": null, - "values": { - "2022-01-01": true, - "2021-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.subtractions.exclusions.pension.cap": { - "type": "parameterNode", - "parameter": "gov.states.de.tax.income.subtractions.exclusions.pension.cap", - "description": null, - "label": "cap", - "economy": true, - "household": true - }, - "gov.states.de.tax.income.subtractions.exclusions.pension.cap.military": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.subtractions.exclusions.pension.cap.military", - "description": "Delaware caps the military pension income exclusion at this amount.", - "label": "Delaware military pension exclusion cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2022-01-01": 12500, - "2015-01-01": 12500 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.subtractions.exclusions.pension.cap.amount": { - "type": "parameterNode", - "parameter": "gov.states.de.tax.income.subtractions.exclusions.pension.cap.amount", - "description": "Delaware excludes up to this amount of taxable pension and retirement income from adjusted gross income, based on age.", - "label": "Delaware pension exclusion cap" - }, - "gov.states.de.tax.income.subtractions.exclusions.pension.cap.amount[0]": { - "type": "parameterNode", - "parameter": "gov.states.de.tax.income.subtractions.exclusions.pension.cap.amount[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.de.tax.income.subtractions.exclusions.pension.cap.amount[0].threshold": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.subtractions.exclusions.pension.cap.amount[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2007-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.subtractions.exclusions.pension.cap.amount[0].amount": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.subtractions.exclusions.pension.cap.amount[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.subtractions.exclusions.pension.cap.amount[1]": { - "type": "parameterNode", - "parameter": "gov.states.de.tax.income.subtractions.exclusions.pension.cap.amount[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.de.tax.income.subtractions.exclusions.pension.cap.amount[1].threshold": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.subtractions.exclusions.pension.cap.amount[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2007-01-01": 60 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.subtractions.exclusions.pension.cap.amount[1].amount": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.subtractions.exclusions.pension.cap.amount[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 12500 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.subtractions.exclusions.pension.income_sources": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.subtractions.exclusions.pension.income_sources", - "description": "Delaware counts these income sources for the pension exclusion.", - "label": "Delaware pension exclusion income sources", - "unit": "list", - "period": null, - "values": { - "2021-01-01": [ - "dividend_income", - "capital_gains", - "taxable_interest_income", - "rental_income", - "taxable_pension_income" - ], - "2015-01-01": [ - "dividend_income", - "capital_gains", - "taxable_interest_income", - "rental_income", - "taxable_pension_income" - ] - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.subtractions.exclusions.pension.age_threshold": { - "type": "parameterNode", - "parameter": "gov.states.de.tax.income.subtractions.exclusions.pension.age_threshold", - "description": "Delaware determines its exclusion of taxable pension income to filers based on this age threshold.", - "label": "Delaware pension exclusion age threshold" - }, - "gov.states.de.tax.income.subtractions.exclusions.pension.age_threshold[0]": { - "type": "parameterNode", - "parameter": "gov.states.de.tax.income.subtractions.exclusions.pension.age_threshold[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.de.tax.income.subtractions.exclusions.pension.age_threshold[0].threshold": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.subtractions.exclusions.pension.age_threshold[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2007-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.subtractions.exclusions.pension.age_threshold[0].amount": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.subtractions.exclusions.pension.age_threshold[0].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2007-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.subtractions.exclusions.pension.age_threshold[1]": { - "type": "parameterNode", - "parameter": "gov.states.de.tax.income.subtractions.exclusions.pension.age_threshold[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.de.tax.income.subtractions.exclusions.pension.age_threshold[1].threshold": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.subtractions.exclusions.pension.age_threshold[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2007-01-01": 60 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.subtractions.exclusions.pension.age_threshold[1].amount": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.subtractions.exclusions.pension.age_threshold[1].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2007-01-01": true - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.rate": { - "type": "parameterNode", - "parameter": "gov.states.de.tax.income.rate", - "description": "Delaware taxes personal income according to this rate schedule.", - "label": "Delaware personal income tax rate" - }, - "gov.states.de.tax.income.rate[0]": { - "type": "parameterNode", - "parameter": "gov.states.de.tax.income.rate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.de.tax.income.rate[0].rate": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.rate[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "1996-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.rate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.rate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1996-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.rate[1]": { - "type": "parameterNode", - "parameter": "gov.states.de.tax.income.rate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.de.tax.income.rate[1].rate": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.rate[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2014-01-01": 0.022, - "1999-01-01": 0.026, - "1996-01-01": 0.031 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.rate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.rate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1996-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.rate[2]": { - "type": "parameterNode", - "parameter": "gov.states.de.tax.income.rate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.de.tax.income.rate[2].rate": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.rate[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2014-01-01": 0.039, - "1996-01-01": 0.0485 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.rate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.rate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1996-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.rate[3]": { - "type": "parameterNode", - "parameter": "gov.states.de.tax.income.rate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.de.tax.income.rate[3].rate": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.rate[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2014-01-01": 0.048, - "1999-01-01": 0.043, - "1996-01-01": 0.058 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.rate[3].threshold": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.rate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1996-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.rate[4]": { - "type": "parameterNode", - "parameter": "gov.states.de.tax.income.rate[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.de.tax.income.rate[4].rate": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.rate[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2014-01-01": 0.052, - "1999-01-01": 0.052, - "1996-01-01": 0.0615 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.rate[4].threshold": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.rate[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1996-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.rate[5]": { - "type": "parameterNode", - "parameter": "gov.states.de.tax.income.rate[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.de.tax.income.rate[5].rate": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.rate[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2014-01-01": 0.0555, - "1996-01-01": 0.0645 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.rate[5].threshold": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.rate[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1996-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.rate[6]": { - "type": "parameterNode", - "parameter": "gov.states.de.tax.income.rate[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.de.tax.income.rate[6].rate": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.rate[6].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2014-01-01": 0.066, - "1996-01-01": 0.069 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.rate[6].threshold": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.rate[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2014-01-01": 60000, - "1996-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.deductions": { - "type": "parameterNode", - "parameter": "gov.states.de.tax.income.deductions", - "description": null, - "label": "deductions", - "economy": true, - "household": true - }, - "gov.states.de.tax.income.deductions.itemized": { - "type": "parameterNode", - "parameter": "gov.states.de.tax.income.deductions.itemized", - "description": null, - "label": "itemized", - "economy": true, - "household": true - }, - "gov.states.de.tax.income.deductions.itemized.sources": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.deductions.itemized.sources", - "description": "Delaware accounts for the following itemized deductions.", - "label": "Delaware itemized deduction sources", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": [ - "de_capped_real_estate_tax", - "charitable_deduction", - "interest_deduction", - "casualty_loss_deduction" - ], - "2015-01-01": [ - "de_capped_real_estate_tax", - "charitable_deduction", - "interest_deduction", - "casualty_loss_deduction" - ] - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.deductions.standard": { - "type": "parameterNode", - "parameter": "gov.states.de.tax.income.deductions.standard", - "description": null, - "label": "standard", - "economy": true, - "household": true - }, - "gov.states.de.tax.income.deductions.standard.amount": { - "type": "parameterNode", - "parameter": "gov.states.de.tax.income.deductions.standard.amount", - "description": "Delaware provides this standard deduction based on filing status.", - "label": "Delaware Standard Deduction", - "economy": true, - "household": true - }, - "gov.states.de.tax.income.deductions.standard.amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.deductions.standard.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2000-01-01": 6500 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.deductions.standard.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.deductions.standard.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2000-01-01": 3250 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.deductions.standard.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.deductions.standard.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2000-01-01": 3250 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.deductions.standard.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.deductions.standard.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2000-01-01": 3250 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.deductions.standard.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.deductions.standard.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2000-01-01": 3250 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.deductions.standard.additional": { - "type": "parameterNode", - "parameter": "gov.states.de.tax.income.deductions.standard.additional", - "description": null, - "label": "additional", - "economy": true, - "household": true - }, - "gov.states.de.tax.income.deductions.standard.additional.age_threshold": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.deductions.standard.additional.age_threshold", - "description": "Delaware provides the aged deduction amount to filers at or above this age.", - "label": "Delaware additional aged deduction age eligibility", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.de.tax.income.deductions.standard.additional.amount": { - "type": "parameter", - "parameter": "gov.states.de.tax.income.deductions.standard.additional.amount", - "description": "Delaware provides this deduction amount for aged or blind filers.", - "label": "Delaware aged deduction amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 2500, - "2015-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.states.ks": { - "type": "parameterNode", - "parameter": "gov.states.ks", - "description": null, - "label": "Kansas", - "economy": true, - "household": true - }, - "gov.states.ks.tax": { - "type": "parameterNode", - "parameter": "gov.states.ks.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.states.ks.tax.income": { - "type": "parameterNode", - "parameter": "gov.states.ks.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.agi": { - "type": "parameterNode", - "parameter": "gov.states.ks.tax.income.agi", - "description": null, - "label": "agi", - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.agi.subtractions": { - "type": "parameterNode", - "parameter": "gov.states.ks.tax.income.agi.subtractions", - "description": null, - "label": "subtractions", - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.agi.subtractions.oasdi": { - "type": "parameterNode", - "parameter": "gov.states.ks.tax.income.agi.subtractions.oasdi", - "description": null, - "label": "oasdi", - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.agi.subtractions.oasdi.agi_limit": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.agi.subtractions.oasdi.agi_limit", - "description": "Kansas limits its taxable OASDI subtraction to filers with AGI at or below this amount.", - "label": "Kansas federal AGI limit for taxable social security AGI subtraction", - "unit": "currency-USD", - "period": "year", - "values": { - "2024-01-01": "Infinity", - "2021-01-01": 75000, - "2015-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.credits": { - "type": "parameterNode", - "parameter": "gov.states.ks.tax.income.credits", - "description": null, - "label": "credits", - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.credits.refundable": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.credits.refundable", - "description": "Kansas provides these refundable credits.", - "label": "Kansas refundable credits", - "unit": "list", - "period": null, - "values": { - "2021-01-01": ["ks_refundable_eitc"], - "2015-01-01": ["ks_refundable_eitc"] - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.credits.nonrefundable_before_eitc": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.credits.nonrefundable_before_eitc", - "description": "Kansas provides these nonrefundable credits before the EITC.", - "label": "Kansas nonrefundable credits before EITC", - "unit": "list", - "period": null, - "values": { - "2021-01-01": ["ks_cdcc"], - "2015-01-01": ["ks_cdcc"] - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.credits.food_sales_tax": { - "type": "parameterNode", - "parameter": "gov.states.ks.tax.income.credits.food_sales_tax", - "description": null, - "label": "food sales tax", - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.credits.food_sales_tax.child_age": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.credits.food_sales_tax.child_age", - "description": "Kansas considers people children for the purposes of the food sales tax credit if they are below this age.", - "label": "Kansas food sales tax credit adult age", - "unit": null, - "period": "year", - "values": { - "2015-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.credits.food_sales_tax.agi_limit": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.credits.food_sales_tax.agi_limit", - "description": "Kansas limits its food sales tax credit to filers with federal AGI below this amount.", - "label": "Kansas food sales tax credit AGI limit", - "unit": "currency-USD", - "period": "year", - "values": { - "2015-01-01": 30615 - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.credits.food_sales_tax.min_adult_age": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.credits.food_sales_tax.min_adult_age", - "description": "Kansas limits its food sales tax credit to adults of this age and above.", - "label": "Kansas food sales tax credit adult age", - "unit": null, - "period": "year", - "values": { - "2015-01-01": 55 - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.credits.food_sales_tax.amount": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.credits.food_sales_tax.amount", - "description": "Kansas provides a food sales tax credit of this amount per qualifying exemption.", - "label": "Kansas food sales tax credit amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2015-01-01": 125 - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.credits.cdcc_fraction": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.credits.cdcc_fraction", - "description": "Kansas matches this percentage of the federal Child and Dependent Care Credit.", - "label": "Kansas CDCC match", - "unit": "/1", - "period": "year", - "values": { - "2024-01-01": 0.5, - "2020-01-01": 0.25, - "2019-01-01": 0.1875, - "2018-01-01": 0.125, - "2015-01-01": 0.125 - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.credits.nonrefundable_after_eitc": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.credits.nonrefundable_after_eitc", - "description": "Kansas provides these nonrefundable credits after the EITC.", - "label": "Kansas nonrefundable credits after EITC", - "unit": "list", - "period": null, - "values": { - "2021-01-01": ["ks_fstc"], - "2015-01-01": ["ks_fstc"] - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.credits.eitc_fraction": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.credits.eitc_fraction", - "description": "Kansas matches this percentage of the federal EITC.", - "label": "Kansas EITC match", - "unit": "/1", - "period": "year", - "values": { - "2013-01-01": 0.17, - "2010-01-01": 0.18 - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.exemptions": { - "type": "parameterNode", - "parameter": "gov.states.ks.tax.income.exemptions", - "description": null, - "label": "exemptions", - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.exemptions.base": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.exemptions.base", - "description": "Kansas provides the following exemption amount for each person in a filing unit.", - "label": "Kansas personal exemption", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 2250, - "2015-01-01": 2250 - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.exemptions.consolidated": { - "type": "parameterNode", - "parameter": "gov.states.ks.tax.income.exemptions.consolidated", - "description": null, - "label": "consolidated", - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.exemptions.consolidated.amount": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.exemptions.consolidated.amount", - "description": "Kansas provides this exemption for each person in a filing unit, pre 2024.", - "label": "Kansas personal exemption consolidated amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 2250, - "2015-01-01": 2250 - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.exemptions.by_filing_status": { - "type": "parameterNode", - "parameter": "gov.states.ks.tax.income.exemptions.by_filing_status", - "description": null, - "label": "by filing status", - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.exemptions.by_filing_status.dependent": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.exemptions.by_filing_status.dependent", - "description": "Kansas provides this exemption amount for each dependent in a filing unit post 2024.", - "label": "Kansas personal exemption by filing status dependent amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 2320, - "2015-01-01": 2320 - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.exemptions.by_filing_status.hoh_additional_amount": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.exemptions.by_filing_status.hoh_additional_amount", - "description": "Kansas provides this additional exemption amount for head of household filers.", - "label": "Kansas head of household personal exemption additional amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2024-01-01": 2320, - "2015-01-01": 2320 - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.exemptions.by_filing_status.in_effect": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.exemptions.by_filing_status.in_effect", - "description": "Kansas provides an updated personal exemption structure by filing status as well as a separate dependent exemption amount if this is true.", - "label": "Kansas personal exemption by filing status in effect", - "unit": "bool", - "period": "year", - "values": { - "2024-01-01": true, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.exemptions.by_filing_status.amount": { - "type": "parameterNode", - "parameter": "gov.states.ks.tax.income.exemptions.by_filing_status.amount", - "description": "Kansas provides this personal exemption amount, based on filing status, post 2024.", - "label": "Kansas personal exemption by filing status amount", - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.exemptions.by_filing_status.amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.exemptions.by_filing_status.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 18320, - "2021-01-01": 2250, - "2015-01-01": 2250 - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.exemptions.by_filing_status.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.exemptions.by_filing_status.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2024-01-01": 9160, - "2021-01-01": 2250, - "2015-01-01": 2250 - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.exemptions.by_filing_status.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.exemptions.by_filing_status.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 9160, - "2021-01-01": 2250, - "2015-01-01": 2250 - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.exemptions.by_filing_status.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.exemptions.by_filing_status.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 9160, - "2021-01-01": 2250, - "2015-01-01": 2250 - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.exemptions.by_filing_status.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.exemptions.by_filing_status.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 9160, - "2021-01-01": 2250, - "2015-01-01": 2250 - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.exemptions.disabled_veteran": { - "type": "parameterNode", - "parameter": "gov.states.ks.tax.income.exemptions.disabled_veteran", - "description": null, - "label": "disabled veteran", - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.exemptions.disabled_veteran.base": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.exemptions.disabled_veteran.base", - "description": "Kansas provides the following exemption amount for disabled veterans.", - "label": "Kansas disabled veteran exemption amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2023-01-01": 2250, - "2015-01-01": 2250 - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.exemptions.disabled_veteran.in_effect": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.exemptions.disabled_veteran.in_effect", - "description": "Kansas provides additional exemptions for disabled veterans if this is true.", - "label": "Kansas additional exemptions for disabled veterans in effect", - "unit": "bool", - "period": "year", - "values": { - "2023-01-01": true, - "2021-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.rates": { - "type": "parameterNode", - "parameter": "gov.states.ks.tax.income.rates", - "description": null, - "label": "rates", - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.rates.other": { - "type": "parameterNode", - "parameter": "gov.states.ks.tax.income.rates.other", - "description": "Kansas levies income taxes at these rates for filers who do not file as joint.", - "label": "Kansas non-joint income tax rates" - }, - "gov.states.ks.tax.income.rates.other[0]": { - "type": "parameterNode", - "parameter": "gov.states.ks.tax.income.rates.other[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ks.tax.income.rates.other[0].rate": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.rates.other[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.052, - "2018-01-01": 0.031, - "2015-01-01": 0.031 - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.rates.other[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.rates.other[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.rates.other[1]": { - "type": "parameterNode", - "parameter": "gov.states.ks.tax.income.rates.other[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ks.tax.income.rates.other[1].rate": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.rates.other[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.0558, - "2018-01-01": 0.0525, - "2015-01-01": 0.0525 - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.rates.other[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.rates.other[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2024-01-01": 23001, - "2018-01-01": 15000, - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.rates.other[2]": { - "type": "parameterNode", - "parameter": "gov.states.ks.tax.income.rates.other[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ks.tax.income.rates.other[2].rate": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.rates.other[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.0558, - "2018-01-01": 0.057, - "2015-01-01": 0.057 - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.rates.other[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.rates.other[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2024-01-01": "Infinity", - "2018-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.rates.joint": { - "type": "parameterNode", - "parameter": "gov.states.ks.tax.income.rates.joint", - "description": "Kansas levies income taxes at these rates for filers who file as joint.", - "label": "Kansas joint income tax rates" - }, - "gov.states.ks.tax.income.rates.joint[0]": { - "type": "parameterNode", - "parameter": "gov.states.ks.tax.income.rates.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ks.tax.income.rates.joint[0].rate": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.rates.joint[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.052, - "2018-01-01": 0.031, - "2015-01-01": 0.031 - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.rates.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.rates.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.rates.joint[1]": { - "type": "parameterNode", - "parameter": "gov.states.ks.tax.income.rates.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ks.tax.income.rates.joint[1].rate": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.rates.joint[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.0558, - "2018-01-01": 0.0525, - "2015-01-01": 0.0525 - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.rates.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.rates.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2024-01-01": 46001, - "2018-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.rates.joint[2]": { - "type": "parameterNode", - "parameter": "gov.states.ks.tax.income.rates.joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ks.tax.income.rates.joint[2].rate": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.rates.joint[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.0558, - "2018-01-01": 0.057, - "2015-01-01": 0.057 - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.rates.joint[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.rates.joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2024-01-01": "Infinity", - "2018-01-01": 60000, - "2015-01-01": 60000 - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.rates.zero_tax_threshold": { - "type": "parameterNode", - "parameter": "gov.states.ks.tax.income.rates.zero_tax_threshold", - "description": "Kansas only levies taxes on filers with at least this much taxable income.", - "label": "KS zero-tax taxable-income threshold", - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.rates.zero_tax_threshold.JOINT": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.rates.zero_tax_threshold.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 26560, - "2018-01-01": 5000, - "2016-01-01": 12500, - "2015-01-01": 12500 - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.rates.zero_tax_threshold.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.rates.zero_tax_threshold.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2024-01-01": 17660, - "2018-01-01": 2500, - "2016-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.rates.zero_tax_threshold.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.rates.zero_tax_threshold.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 12765, - "2018-01-01": 2500, - "2016-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.rates.zero_tax_threshold.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.rates.zero_tax_threshold.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 12765, - "2018-01-01": 2500, - "2016-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.rates.zero_tax_threshold.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.rates.zero_tax_threshold.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 13280, - "2018-01-01": 2500, - "2016-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.deductions": { - "type": "parameterNode", - "parameter": "gov.states.ks.tax.income.deductions", - "description": null, - "label": "deductions", - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.deductions.standard": { - "type": "parameterNode", - "parameter": "gov.states.ks.tax.income.deductions.standard", - "description": null, - "label": "standard", - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.deductions.standard.extra_amount": { - "type": "parameterNode", - "parameter": "gov.states.ks.tax.income.deductions.standard.extra_amount", - "description": "Kansas provides this additional standard deduction to elderly and blind filers.", - "label": "Kansas extra standard deduction for elderly and blind", - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.deductions.standard.extra_amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.deductions.standard.extra_amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "1998-01-01": 700 - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.deductions.standard.extra_amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.deductions.standard.extra_amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "1998-01-01": 850 - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.deductions.standard.extra_amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.deductions.standard.extra_amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "1998-01-01": 850 - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.deductions.standard.extra_amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.deductions.standard.extra_amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "1998-01-01": 850 - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.deductions.standard.extra_amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.deductions.standard.extra_amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "1998-01-01": 700 - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.deductions.standard.base_amount": { - "type": "parameterNode", - "parameter": "gov.states.ks.tax.income.deductions.standard.base_amount", - "description": "Kansas provides this base standard deduction.", - "label": "Kansas base standard deduction", - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.deductions.standard.base_amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.deductions.standard.base_amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 8240, - "2021-01-01": 8000, - "2013-01-01": 7500 - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.deductions.standard.base_amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.deductions.standard.base_amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2024-01-01": 6180, - "2021-01-01": 6000, - "2013-01-01": 5500 - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.deductions.standard.base_amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.deductions.standard.base_amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 8240, - "2021-01-01": 8000, - "2013-01-01": 7500 - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.deductions.standard.base_amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.deductions.standard.base_amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 3605, - "2021-01-01": 3500, - "2013-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.ks.tax.income.deductions.standard.base_amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ks.tax.income.deductions.standard.base_amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 4120, - "2021-01-01": 4000, - "2013-01-01": 3750 - }, - "economy": true, - "household": true - }, - "gov.states.me": { - "type": "parameterNode", - "parameter": "gov.states.me", - "description": null, - "label": "Maine", - "economy": true, - "household": true - }, - "gov.states.me.tax": { - "type": "parameterNode", - "parameter": "gov.states.me.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.states.me.tax.income": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.me.tax.income.agi": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.agi", - "description": null, - "label": "agi", - "economy": true, - "household": true - }, - "gov.states.me.tax.income.agi.subtractions": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.agi.subtractions", - "description": null, - "label": "subtractions", - "economy": true, - "household": true - }, - "gov.states.me.tax.income.agi.subtractions.pension_exclusion": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.agi.subtractions.pension_exclusion", - "description": null, - "label": "pension exclusion", - "economy": true, - "household": true - }, - "gov.states.me.tax.income.agi.subtractions.pension_exclusion.cap": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.agi.subtractions.pension_exclusion.cap", - "description": "Maine subtracts this amount from pensions and annuities included in federal AGI from Maine AGI.", - "label": "Maine pension exclusion cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2024-01-01": 45864, - "2023-01-01": 30000, - "2022-01-01": 25000, - "2014-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.credits", - "description": null, - "label": "credits", - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.eitc": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.credits.eitc", - "description": null, - "label": "Earned Income Tax Credit", - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.eitc.rate": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.credits.eitc.rate", - "description": null, - "label": "rate", - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.eitc.rate.no_qualifying_child": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.eitc.rate.no_qualifying_child", - "description": "Maine matches this share of the federal EITC for filers without qualifying children.", - "label": "Maine EITC percent", - "unit": "/1", - "period": "year", - "values": { - "2022-01-01": 0.5, - "2021-01-01": 0.2, - "2020-01-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.eitc.rate.with_qualifying_child": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.eitc.rate.with_qualifying_child", - "description": "Maine matches this share of the federal EITC for filers with qualifying children.", - "label": "Maine EITC percent", - "unit": "/1", - "period": "year", - "values": { - "2022-01-01": 0.25, - "2021-01-01": 0.2, - "2020-01-01": 0.12, - "2015-01-01": 0.12 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.credits.fairness", - "description": null, - "label": "fairness", - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.income_sources": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.income_sources", - "description": "Maine accounts for the following income sources for the sales and property tax credits.", - "label": "Maine sales and property tax credit income sources", - "unit": "list", - "period": null, - "values": { - "2021-01-01": [ - "irs_gross_income", - "tax_exempt_social_security", - "tax_exempt_interest_income" - ], - "2015-01-01": [ - "irs_gross_income", - "tax_exempt_social_security", - "tax_exempt_interest_income" - ] - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.property_tax": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.credits.fairness.property_tax", - "description": null, - "label": "property tax", - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.property_tax.dependent_count_threshold": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.property_tax.dependent_count_threshold", - "description": "Maine assigns same amount of benefit base for household who have dependent of more than this value.", - "label": "Maine property tax fairness credit dependent amount threshold", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.property_tax.benefit_base": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.credits.fairness.property_tax.benefit_base", - "description": null, - "label": "benefit base", - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.property_tax.benefit_base.head_of_household_one_child": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.property_tax.benefit_base.head_of_household_one_child", - "description": "Maine allows for this property tax fairness credit benefit base for head of household with one child or joint filers with no child", - "label": "Maine property tax fairness credit benefit base for household with one child or joint filers with no child", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3950, - "2034-01-01": 3900, - "2033-01-01": 3800, - "2032-01-01": 3750, - "2031-01-01": 3650, - "2030-01-01": 3600, - "2029-01-01": 3500, - "2028-01-01": 3450, - "2027-01-01": 3400, - "2026-01-01": 3300, - "2025-01-01": 3250, - "2024-01-01": 3200, - "2023-01-01": 3000, - "2022-01-01": 2800, - "2021-01-01": 2750, - "2015-01-01": 2750 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.property_tax.benefit_base.senior": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.credits.fairness.property_tax.benefit_base.senior", - "description": "Maine allows for this property tax fairness credit benefit base for seniors.", - "label": "Maine property tax fairness credit benefit base for senior" - }, - "gov.states.me.tax.income.credits.fairness.property_tax.benefit_base.senior[0]": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.credits.fairness.property_tax.benefit_base.senior[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.me.tax.income.credits.fairness.property_tax.benefit_base.senior[0].threshold": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.property_tax.benefit_base.senior[0].threshold", - "description": null, - "label": "threshold", - "unit": null, - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.property_tax.benefit_base.senior[0].amount": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.property_tax.benefit_base.senior[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.property_tax.benefit_base.senior[1]": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.credits.fairness.property_tax.benefit_base.senior[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.me.tax.income.credits.fairness.property_tax.benefit_base.senior[1].threshold": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.property_tax.benefit_base.senior[1].threshold", - "description": null, - "label": "threshold", - "unit": null, - "period": null, - "values": { - "2018-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.property_tax.benefit_base.senior[1].amount": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.property_tax.benefit_base.senior[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 4000, - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.property_tax.benefit_base.joint_or_head_of_household_multiple_children": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.property_tax.benefit_base.joint_or_head_of_household_multiple_children", - "description": "Maine allows for this property tax fairness credit benefit base for head of household with multiple children or joint filers with one child or more.", - "label": "Maine property tax fairness credit benefit base for household with multiple children or joint filers with one child or more", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 4850, - "2034-01-01": 4750, - "2033-01-01": 4650, - "2032-01-01": 4550, - "2031-01-01": 4450, - "2030-01-01": 4400, - "2029-01-01": 4300, - "2028-01-01": 4200, - "2027-01-01": 4100, - "2026-01-01": 4000, - "2025-01-01": 3950, - "2024-01-01": 3900, - "2023-01-01": 3700, - "2022-01-01": 3450, - "2021-01-01": 3400, - "2015-01-01": 3400 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.property_tax.benefit_base.single": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.property_tax.benefit_base.single", - "description": "Maine allows for this property tax fairness credit benefit base for single filers", - "label": "Maine property tax fairness credit benefit base for single filers", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3050, - "2034-01-01": 2950, - "2033-01-01": 2900, - "2032-01-01": 2850, - "2031-01-01": 2800, - "2030-01-01": 2750, - "2029-01-01": 2700, - "2028-01-01": 2650, - "2027-01-01": 2600, - "2026-01-01": 2500, - "2025-01-01": 2500, - "2024-01-01": 2450, - "2023-01-01": 2300, - "2022-01-01": 2200, - "2021-01-01": 2100, - "2015-01-01": 2100 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.property_tax.rate": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.credits.fairness.property_tax.rate", - "description": null, - "label": "rate", - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.property_tax.rate.rent": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.property_tax.rate.rent", - "description": "Maine considers this percentage of the gross rent as rent constituting property taxes under the property tax fairness credit.", - "label": "Maine property tax fairness credit income rate", - "unit": "/1", - "period": "year", - "values": { - "2014-01-01": 0.15 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.property_tax.rate.income": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.property_tax.rate.income", - "description": "Maine allows for a the property tax fairness credit amount which exceedes this rate of the filers income.", - "label": "Maine property tax fairness credit income rate", - "unit": "/1", - "period": "year", - "values": { - "2022-01-01": 0.04, - "2020-01-01": 0.05, - "2014-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.property_tax.veterans_matched": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.property_tax.veterans_matched", - "description": "Maine provides additional credit for permanently and totally disabled veterans if this is true.", - "label": "Maine additional credit for permanently and totally disabled veterans in effect", - "unit": "bool", - "period": "year", - "values": { - "2023-01-01": true, - "2021-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.property_tax.cap": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.credits.fairness.property_tax.cap", - "description": "Maine caps the property tax fairness credit at this amount, based on age.", - "label": "Maine property tax fairness credit age threshold" - }, - "gov.states.me.tax.income.credits.fairness.property_tax.cap[0]": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.credits.fairness.property_tax.cap[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.me.tax.income.credits.fairness.property_tax.cap[0].threshold": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.property_tax.cap[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2014-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.property_tax.cap[0].amount": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.property_tax.cap[0].amount", - "description": null, - "label": "amount", - "unit": "currency_USD", - "period": null, - "values": { - "2021-01-01": 1000, - "2018-01-01": 740, - "2014-01-01": 600 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.property_tax.cap[1]": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.credits.fairness.property_tax.cap[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.me.tax.income.credits.fairness.property_tax.cap[1].threshold": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.property_tax.cap[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2014-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.property_tax.cap[1].amount": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.property_tax.cap[1].amount", - "description": null, - "label": "amount", - "unit": "currency_USD", - "period": null, - "values": { - "2024-01-01": 2000, - "2021-01-01": 1500, - "2018-01-01": 1200, - "2014-01-01": 900 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.sales_tax": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax", - "description": null, - "label": "sales tax", - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.reduction": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.reduction", - "description": null, - "label": "reduction", - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.reduction.increment": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.reduction.increment", - "description": "Maine reduces the sales tax fairness credit for each of these increments of income exceeding the threshold, based on filing status.", - "label": "Maine sales tax fairness credit phase-out increment", - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.reduction.increment.SINGLE": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.reduction.increment.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.reduction.increment.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.reduction.increment.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.reduction.increment.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.reduction.increment.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 750, - "2015-01-01": 750 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.reduction.increment.JOINT": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.reduction.increment.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.reduction.increment.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.reduction.increment.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.reduction.start": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.reduction.start", - "description": "Maine reduces the sales tax fairness credit for filers with income above this amount, based on filing status.", - "label": "Maine sales tax fairness credit phase-out start", - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.reduction.start.SINGLE": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.reduction.start.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 24750, - "2023-01-01": 23300, - "2022-01-01": 21850, - "2021-01-01": 21350, - "2015-01-01": 21350 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.reduction.start.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.reduction.start.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.reduction.start.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.reduction.start.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2024-01-01": 37100, - "2023-01-01": 34950, - "2022-01-01": 32800, - "2021-01-01": 32000, - "2015-01-01": 32000 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.reduction.start.JOINT": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.reduction.start.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 49500, - "2023-01-01": 46600, - "2022-01-01": 43700, - "2021-01-01": 42700, - "2015-01-01": 42700 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.reduction.start.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.reduction.start.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 49500, - "2023-01-01": 46600, - "2022-01-01": 43700, - "2021-01-01": 42700, - "2015-01-01": 42700 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.reduction.amount": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.reduction.amount", - "description": "Maine reduces the sales tax fairness credit by this amount for each increment of income exceeding the threshold, based on filing status.", - "label": "Maine sales tax fairness credit phase-out amount", - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.reduction.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.reduction.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 10, - "2015-01-01": 10 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.reduction.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.reduction.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.reduction.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.reduction.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 15, - "2015-01-01": 15 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.reduction.amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.reduction.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 20, - "2015-01-01": 20 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.reduction.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.reduction.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 20, - "2015-01-01": 20 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.amount": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.amount.base": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.amount.base", - "description": "Maine provides this sales tax fairness credit base amount to filers, based on the filing status.", - "label": "Maine sales tax fairness credit base amount", - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.amount.base.SINGLE": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.amount.base.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 150, - "2023-01-01": 140, - "2021-01-01": 130, - "2015-01-01": 130 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.amount.base.JOINT": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.amount.base.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 210, - "2023-01-01": 200, - "2022-01-01": 185, - "2021-01-01": 180, - "2015-01-01": 180 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.amount.base.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.amount.base.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.amount.base.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.amount.base.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2024-01-01": 210, - "2023-01-01": 200, - "2022-01-01": 185, - "2021-01-01": 180, - "2015-01-01": 180 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.amount.base.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.amount.base.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 210, - "2023-01-01": 200, - "2022-01-01": 185, - "2021-01-01": 180, - "2015-01-01": 180 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional", - "description": null, - "label": "additional", - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.head_of_household": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.head_of_household", - "description": "Maine provides this additional sales tax fairness credit amount to head of household filers, based on the number of dependents.", - "label": "Maine sales tax fairness credit head of household additional amount" - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.head_of_household[0]": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.head_of_household[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.head_of_household[0].threshold": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.head_of_household[0].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.head_of_household[0].amount": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.head_of_household[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.head_of_household[1]": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.head_of_household[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.head_of_household[1].threshold": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.head_of_household[1].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.head_of_household[1].amount": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.head_of_household[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 30, - "2021-01-01": 25, - "2015-01-01": 25 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.head_of_household[2]": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.head_of_household[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.head_of_household[2].threshold": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.head_of_household[2].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2021-01-01": 3, - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.head_of_household[2].amount": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.head_of_household[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 60, - "2021-01-01": 55, - "2015-01-01": 55 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.joint": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.joint", - "description": "Maine provides this additional sales tax fairness credit amount to joint filers, based on the number of dependents.", - "label": "Maine sales tax fairness credit joint additional amount" - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.joint[0]": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.joint[0].amount": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.joint[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.joint[1]": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.joint[1].amount": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.joint[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 30, - "2021-01-01": 25, - "2015-01-01": 25 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.joint[2]": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.joint[2].threshold": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.joint[2].amount": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.joint[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 60, - "2021-01-01": 55, - "2015-01-01": 55 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.surviving_spouse": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.surviving_spouse", - "description": "Maine provides this additional sales tax fairness credit amount to surviving spouse filers, based on the number of dependents.", - "label": "Maine sales tax fairness credit surviving spouse additional amount" - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.surviving_spouse[0]": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.surviving_spouse[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.surviving_spouse[0].threshold": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.surviving_spouse[0].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.surviving_spouse[0].amount": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.surviving_spouse[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.surviving_spouse[1]": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.surviving_spouse[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.surviving_spouse[1].threshold": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.surviving_spouse[1].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.surviving_spouse[1].amount": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.surviving_spouse[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 30, - "2021-01-01": 25, - "2015-01-01": 25 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.surviving_spouse[2]": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.surviving_spouse[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.surviving_spouse[2].threshold": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.surviving_spouse[2].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.surviving_spouse[2].amount": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.fairness.sales_tax.amount.additional.surviving_spouse[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 60, - "2021-01-01": 55, - "2015-01-01": 55 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.refundable": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.refundable", - "description": "Maine refundable tax credits.", - "label": "Maine refundable tax credits", - "unit": "list", - "period": null, - "values": { - "2024-01-01": [ - "me_refundable_child_care_credit", - "me_eitc", - "me_sales_tax_fairness_credit", - "me_property_tax_fairness_credit", - "me_dependent_exemption_credit" - ], - "2021-01-01": [ - "me_refundable_child_care_credit", - "me_eitc", - "me_sales_tax_fairness_credit", - "me_property_tax_fairness_credit" - ], - "2015-01-01": [ - "me_refundable_child_care_credit", - "me_eitc", - "me_sales_tax_fairness_credit", - "me_property_tax_fairness_credit" - ] - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.dependent_exemption": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.credits.dependent_exemption", - "description": null, - "label": "dependent exemption", - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.dependent_exemption.multiplier": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.credits.dependent_exemption.multiplier", - "description": "Maine applies this age-based multiplier to the Dependent Exemption Tax Credit.", - "label": "Maine Dependent Exemption Tax Credit multiplier" - }, - "gov.states.me.tax.income.credits.dependent_exemption.multiplier[0]": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.credits.dependent_exemption.multiplier[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.me.tax.income.credits.dependent_exemption.multiplier[0].threshold": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.dependent_exemption.multiplier[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.dependent_exemption.multiplier[0].amount": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.dependent_exemption.multiplier[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2025-01-01": 2, - "2018-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.dependent_exemption.multiplier[1]": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.credits.dependent_exemption.multiplier[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.me.tax.income.credits.dependent_exemption.multiplier[1].threshold": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.dependent_exemption.multiplier[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2018-01-01": 6, - "2015-01-01": 6 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.dependent_exemption.multiplier[1].amount": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.dependent_exemption.multiplier[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.dependent_exemption.phase_out": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.credits.dependent_exemption.phase_out", - "description": null, - "label": "phase out", - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.dependent_exemption.phase_out.increment": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.dependent_exemption.phase_out.increment", - "description": "Maine reduces the dependent exemption credit by an amount for each of these increments of Maine adjusted gross income exceeding the threshold.", - "label": "Maine dependent exemption phaseout increment", - "unit": "currency-USD", - "period": "year", - "values": { - "2025-01-01": 500, - "2018-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.dependent_exemption.phase_out.step": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.dependent_exemption.phase_out.step", - "description": "Maine reduces the dependent exemption credit by this amount for each increment in of Maine adjusted gross income above the threshold.", - "label": "Maine dependent exemption phaseout amount per phaseout increment", - "unit": "currency-USD", - "period": "year", - "values": { - "2025-01-01": 20, - "2018-01-01": 7.5, - "2015-01-01": 7.5 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.dependent_exemption.phase_out.start": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.credits.dependent_exemption.phase_out.start", - "description": "Maine reduces its dependent exemption credit for filers with Maine adjusted gross income above this threshold.", - "label": "Maine dependents exemption phase-out start", - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.dependent_exemption.phase_out.start.SINGLE": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.dependent_exemption.phase_out.start.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 121825.075345834, - "2034-01-01": 119466.043286782, - "2033-01-01": 117136.135080311, - "2032-01-01": 114864.474579003, - "2031-01-01": 112651.061782855, - "2030-01-01": 110466.772839289, - "2029-01-01": 108311.607748304, - "2028-01-01": 106185.566509899, - "2027-01-01": 104030.401418914, - "2026-01-01": 101528.662482216, - "2025-01-01": 100000, - "2018-01-01": 200000, - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.dependent_exemption.phase_out.start.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.dependent_exemption.phase_out.start.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 91368.8065093752, - "2034-01-01": 89599.5324650865, - "2033-01-01": 87852.1013102335, - "2032-01-01": 86148.3559342519, - "2031-01-01": 84488.2963371416, - "2030-01-01": 82850.0796294669, - "2029-01-01": 81233.7058112279, - "2028-01-01": 79639.1748824245, - "2027-01-01": 78022.8010641856, - "2026-01-01": 76146.4968616622, - "2025-01-01": 75000, - "2018-01-01": 200000, - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.dependent_exemption.phase_out.start.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.dependent_exemption.phase_out.start.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 152281.344182292, - "2034-01-01": 149332.554108478, - "2033-01-01": 146420.168850389, - "2032-01-01": 143580.593223753, - "2031-01-01": 140813.827228569, - "2030-01-01": 138083.466049112, - "2029-01-01": 135389.50968538, - "2028-01-01": 132731.958137374, - "2027-01-01": 130038.001773643, - "2026-01-01": 126910.82810277, - "2025-01-01": 125000, - "2018-01-01": 200000, - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.dependent_exemption.phase_out.start.JOINT": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.dependent_exemption.phase_out.start.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 182737.61301875, - "2034-01-01": 179199.064930173, - "2033-01-01": 175704.202620467, - "2032-01-01": 172296.711868504, - "2031-01-01": 168976.592674283, - "2030-01-01": 165700.159258934, - "2029-01-01": 162467.411622456, - "2028-01-01": 159278.349764849, - "2027-01-01": 156045.602128371, - "2026-01-01": 152292.993723324, - "2025-01-01": 150000, - "2018-01-01": 400000, - "2015-01-01": 400000 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.dependent_exemption.phase_out.start.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.dependent_exemption.phase_out.start.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 182737.61301875, - "2034-01-01": 179199.064930173, - "2033-01-01": 175704.202620467, - "2032-01-01": 172296.711868504, - "2031-01-01": 168976.592674283, - "2030-01-01": 165700.159258934, - "2029-01-01": 162467.411622456, - "2028-01-01": 159278.349764849, - "2027-01-01": 156045.602128371, - "2026-01-01": 152292.993723324, - "2025-01-01": 150000, - "2018-01-01": 200000, - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.dependent_exemption.amount": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.dependent_exemption.amount", - "description": "Maine provides up to this dependent exemption credit amount.", - "label": "Maine dependent exemption credit amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 365, - "2034-01-01": 355, - "2033-01-01": 350, - "2032-01-01": 340, - "2031-01-01": 335, - "2030-01-01": 330, - "2029-01-01": 320, - "2028-01-01": 315, - "2027-01-01": 310, - "2026-01-01": 300, - "2025-01-01": 300, - "2018-01-01": 300, - "2015-01-01": 300 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.non_refundable": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.non_refundable", - "description": "Maine non-refundable tax credits.", - "label": "Maine non-refundable tax credits", - "unit": "list", - "period": null, - "values": { - "2024-01-01": ["me_non_refundable_child_care_credit"], - "2021-01-01": ["me_dependent_exemption_credit", "me_non_refundable_child_care_credit"], - "2015-01-01": ["me_dependent_exemption_credit", "me_non_refundable_child_care_credit"] - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.child_care": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.credits.child_care", - "description": null, - "label": "Child and Dependent Care Credit", - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.child_care.share_of_federal_credit": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.credits.child_care.share_of_federal_credit", - "description": null, - "label": "share of federal credit", - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.child_care.share_of_federal_credit.non_step_4": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.child_care.share_of_federal_credit.non_step_4", - "description": "Maine matches this share of the federal child and dependent care credit for child care expenses that don't qualify as Step 4.", - "label": "Maine child care credit match for non-Step 4 child care expenses", - "unit": "/1", - "period": "year", - "values": { - "2006-01-01": 0.25, - "2003-01-01": 0.215 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.child_care.share_of_federal_credit.step_4": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.child_care.share_of_federal_credit.step_4", - "description": "Maine matches this share of the federal child and dependent care credit for child care expenses that qualify as Step 4.", - "label": "Maine child care credit match for step 4 child care expenses", - "unit": "/1", - "period": "year", - "values": { - "2018-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.credits.child_care.max_amount": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.credits.child_care.max_amount", - "description": "Maine provides up to this amount in its child care credit.", - "label": "Maine child care credit amount refundable max", - "unit": "currency-USD", - "period": "year", - "values": { - "2003-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.main": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.main", - "description": null, - "label": "main", - "economy": true, - "household": true - }, - "gov.states.me.tax.income.main.head_of_household": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.main.head_of_household", - "description": "Progressive rate schedule for a head-of-household filer in Maine.", - "label": "Maine State income tax rates for head-of-household filers" - }, - "gov.states.me.tax.income.main.head_of_household[0]": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.main.head_of_household[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.me.tax.income.main.head_of_household[0].rate": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.main.head_of_household[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2017-01-01": 0.058, - "2015-01-01": 0.058 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.main.head_of_household[0].threshold": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.main.head_of_household[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2017-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.main.head_of_household[1]": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.main.head_of_household[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.me.tax.income.main.head_of_household[1].rate": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.main.head_of_household[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2017-01-01": 0.0675, - "2015-01-01": 0.0675 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.main.head_of_household[1].threshold": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.main.head_of_household[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 39050, - "2023-01-01": 36750, - "2022-01-01": 34500, - "2021-01-01": 33650, - "2017-01-01": 31550, - "2015-01-01": 31550 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.main.head_of_household[2]": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.main.head_of_household[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.me.tax.income.main.head_of_household[2].rate": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.main.head_of_household[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2017-01-01": 0.0715, - "2015-01-01": 0.0715 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.main.head_of_household[2].threshold": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.main.head_of_household[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 92450, - "2023-01-01": 87100, - "2022-01-01": 81700, - "2021-01-01": 79750, - "2017-01-01": 75000, - "2015-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.main.separate": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.main.separate", - "description": "Progressive rate schedule for a separate filer in Maine.", - "label": "Maine State income tax rates for separate filers" - }, - "gov.states.me.tax.income.main.separate[0]": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.main.separate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.me.tax.income.main.separate[0].rate": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.main.separate[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2017-01-01": 0.058, - "2015-01-01": 0.058 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.main.separate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.main.separate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2017-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.main.separate[1]": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.main.separate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.me.tax.income.main.separate[1].rate": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.main.separate[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2017-01-01": 0.0675, - "2015-01-01": 0.0675 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.main.separate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.main.separate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 26050, - "2023-01-01": 24500, - "2022-01-01": 23000, - "2021-01-01": 22450, - "2017-01-01": 21050, - "2015-01-01": 21050 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.main.separate[2]": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.main.separate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.me.tax.income.main.separate[2].rate": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.main.separate[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2017-01-01": 0.0715, - "2015-01-01": 0.0715 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.main.separate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.main.separate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 61600, - "2023-01-01": 58050, - "2022-01-01": 54450, - "2021-01-01": 53150, - "2017-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.main.joint": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.main.joint", - "description": "Progressive rate schedule for a joint filer in Maine.", - "label": "Maine State income tax rates for joint filers" - }, - "gov.states.me.tax.income.main.joint[0]": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.main.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.me.tax.income.main.joint[0].rate": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.main.joint[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2017-01-01": 0.058, - "2015-01-01": 0.058 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.main.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.main.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2017-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.main.joint[1]": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.main.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.me.tax.income.main.joint[1].rate": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.main.joint[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2017-01-01": 0.0675, - "2015-01-01": 0.0675 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.main.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.main.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 52100, - "2023-01-01": 49050, - "2022-01-01": 46000, - "2021-01-01": 44950, - "2017-01-01": 42100, - "2015-01-01": 42100 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.main.joint[2]": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.main.joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.me.tax.income.main.joint[2].rate": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.main.joint[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2017-01-01": 0.0715, - "2015-01-01": 0.0715 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.main.joint[2].threshold": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.main.joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 123250, - "2023-01-01": 116100, - "2022-01-01": 108900, - "2021-01-01": 106350, - "2017-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.main.single": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.main.single", - "description": "Progressive rate schedule for a single filer in Maine.", - "label": "Maine State income tax rates for single filers" - }, - "gov.states.me.tax.income.main.single[0]": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.main.single[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.me.tax.income.main.single[0].rate": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.main.single[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2017-01-01": 0.058, - "2015-01-01": 0.058 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.main.single[0].threshold": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.main.single[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2017-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.main.single[1]": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.main.single[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.me.tax.income.main.single[1].rate": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.main.single[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2017-01-01": 0.0675, - "2015-01-01": 0.0675 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.main.single[1].threshold": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.main.single[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 26050, - "2023-01-01": 24500, - "2022-01-01": 23000, - "2021-01-01": 22450, - "2017-01-01": 21050, - "2015-01-01": 21050 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.main.single[2]": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.main.single[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.me.tax.income.main.single[2].rate": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.main.single[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2017-01-01": 0.0715, - "2015-01-01": 0.0715 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.main.single[2].threshold": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.main.single[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 61600, - "2023-01-01": 58050, - "2022-01-01": 54450, - "2021-01-01": 53150, - "2017-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.main.surviving_spouse": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.main.surviving_spouse", - "description": "Progressive rate schedule for a surviving spouse in Maine.", - "label": "Maine State income tax rates for surviving spouse filers" - }, - "gov.states.me.tax.income.main.surviving_spouse[0]": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.main.surviving_spouse[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.me.tax.income.main.surviving_spouse[0].rate": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.main.surviving_spouse[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2017-01-01": 0.058, - "2015-01-01": 0.058 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.main.surviving_spouse[0].threshold": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.main.surviving_spouse[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2017-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.main.surviving_spouse[1]": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.main.surviving_spouse[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.me.tax.income.main.surviving_spouse[1].rate": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.main.surviving_spouse[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2017-01-01": 0.0675, - "2015-01-01": 0.0675 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.main.surviving_spouse[1].threshold": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.main.surviving_spouse[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 52100, - "2023-01-01": 49050, - "2022-01-01": 46000, - "2021-01-01": 44950, - "2017-01-01": 42100, - "2015-01-01": 42100 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.main.surviving_spouse[2]": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.main.surviving_spouse[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.me.tax.income.main.surviving_spouse[2].rate": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.main.surviving_spouse[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2017-01-01": 0.0715, - "2015-01-01": 0.0715 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.main.surviving_spouse[2].threshold": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.main.surviving_spouse[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 123250, - "2023-01-01": 116100, - "2022-01-01": 108900, - "2021-01-01": 106350, - "2017-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.deductions": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.deductions", - "description": null, - "label": "deductions", - "economy": true, - "household": true - }, - "gov.states.me.tax.income.deductions.itemized": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.deductions.itemized", - "description": null, - "label": "itemized", - "economy": true, - "household": true - }, - "gov.states.me.tax.income.deductions.itemized.cap": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.deductions.itemized.cap", - "description": "Maine caps its itemized deductions before medical and dental expenses at this amount.", - "label": "Maine itemized deduction pre medical and dental expenses cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 43850, - "2034-01-01": 43000, - "2033-01-01": 42200, - "2032-01-01": 41350, - "2031-01-01": 40550, - "2030-01-01": 39800, - "2029-01-01": 39000, - "2028-01-01": 38250, - "2027-01-01": 37450, - "2026-01-01": 36550, - "2025-01-01": 36000, - "2024-01-01": 35250, - "2023-01-01": 33200, - "2022-01-01": 31150, - "2021-01-01": 30400, - "2020-01-01": 30050, - "2019-01-01": 29550, - "2018-01-01": 29050, - "2017-01-01": 28600, - "2016-01-01": 28450, - "2015-01-01": 28350, - "2014-01-01": 27950, - "2013-01-01": 27500 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.deductions.phase_out": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.deductions.phase_out", - "description": null, - "label": "phase out", - "economy": true, - "household": true - }, - "gov.states.me.tax.income.deductions.phase_out.start": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.deductions.phase_out.start", - "description": "Maine starts phasing out its standard/itemized deduction for filers with Maine AGI above this threshold.", - "label": "Maine standard/itemized exemption phase-out start", - "economy": true, - "household": true - }, - "gov.states.me.tax.income.deductions.phase_out.start.SINGLE": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.deductions.phase_out.start.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 97150, - "2023-01-01": 91500, - "2022-01-01": 85850, - "2021-01-01": 83850, - "2020-01-01": 82900, - "2019-01-01": 81450, - "2018-01-01": 80000, - "2016-01-01": 70000, - "2015-01-01": 70000 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.deductions.phase_out.start.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.deductions.phase_out.start.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 97150, - "2023-01-01": 91500, - "2022-01-01": 85850, - "2021-01-01": 83850, - "2020-01-01": 82900, - "2019-01-01": 81450, - "2018-01-01": 80000, - "2016-01-01": 70000, - "2015-01-01": 70000 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.deductions.phase_out.start.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.deductions.phase_out.start.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2024-01-01": 145750, - "2023-01-01": 137300, - "2022-01-01": 128750, - "2021-01-01": 125750, - "2020-01-01": 124350, - "2019-01-01": 122200, - "2018-01-01": 120000, - "2016-01-01": 105000, - "2015-01-01": 105000 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.deductions.phase_out.start.JOINT": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.deductions.phase_out.start.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 194300, - "2023-01-01": 183050, - "2022-01-01": 171700, - "2021-01-01": 167700, - "2020-01-01": 165800, - "2019-01-01": 162950, - "2018-01-01": 160000, - "2016-01-01": 140000, - "2015-01-01": 140000 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.deductions.phase_out.start.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.deductions.phase_out.start.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 194300, - "2023-01-01": 183050, - "2022-01-01": 171700, - "2021-01-01": 167700, - "2020-01-01": 165800, - "2019-01-01": 162950, - "2018-01-01": 160000, - "2016-01-01": 140000, - "2015-01-01": 140000 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.deductions.phase_out.width": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.deductions.phase_out.width", - "description": "Maine phases out its standard/itemized deduction over this amount of Maine AGI above the threshold.", - "label": "Maine standard/itemized deduction phase-out width", - "economy": true, - "household": true - }, - "gov.states.me.tax.income.deductions.phase_out.width.SINGLE": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.deductions.phase_out.width.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2016-01-01": 75000, - "2015-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.deductions.phase_out.width.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.deductions.phase_out.width.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2016-01-01": 75000, - "2015-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.deductions.phase_out.width.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.deductions.phase_out.width.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2016-01-01": 112500, - "2015-01-01": 112500 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.deductions.phase_out.width.JOINT": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.deductions.phase_out.width.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2016-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.deductions.phase_out.width.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.deductions.phase_out.width.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2016-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.deductions.personal_exemption": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.deductions.personal_exemption", - "description": null, - "label": "personal exemption", - "economy": true, - "household": true - }, - "gov.states.me.tax.income.deductions.personal_exemption.phaseout": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.deductions.personal_exemption.phaseout", - "description": null, - "label": "phaseout", - "economy": true, - "household": true - }, - "gov.states.me.tax.income.deductions.personal_exemption.phaseout.start": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.deductions.personal_exemption.phaseout.start", - "description": "Maine starts phasing out its personal exemption for filers with Maine AGI above this threshold.", - "label": "Maine personal exemption phase-out start", - "economy": true, - "household": true - }, - "gov.states.me.tax.income.deductions.personal_exemption.phaseout.start.SINGLE": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.deductions.personal_exemption.phaseout.start.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 323900, - "2023-01-01": 305150, - "2022-01-01": 286200, - "2021-01-01": 279500, - "2015-01-01": 279500 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.deductions.personal_exemption.phaseout.start.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.deductions.personal_exemption.phaseout.start.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 194325, - "2023-01-01": 183050, - "2022-01-01": 171700, - "2021-01-01": 167700, - "2015-01-01": 167700 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.deductions.personal_exemption.phaseout.start.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.deductions.personal_exemption.phaseout.start.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2024-01-01": 356300, - "2023-01-01": 335650, - "2022-01-01": 314800, - "2021-01-01": 307450, - "2015-01-01": 307450 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.deductions.personal_exemption.phaseout.start.JOINT": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.deductions.personal_exemption.phaseout.start.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 388650, - "2023-01-01": 366100, - "2022-01-01": 343400, - "2021-01-01": 335400, - "2015-01-01": 335400 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.deductions.personal_exemption.phaseout.start.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.deductions.personal_exemption.phaseout.start.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 388650, - "2023-01-01": 366100, - "2022-01-01": 343400, - "2021-01-01": 335400, - "2015-01-01": 335400 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.deductions.personal_exemption.phaseout.width": { - "type": "parameterNode", - "parameter": "gov.states.me.tax.income.deductions.personal_exemption.phaseout.width", - "description": "Maine phases out its personal exemption over this amount of Maine AGI above the threshold.", - "label": "Maine personal exemption phase-out width", - "economy": true, - "household": true - }, - "gov.states.me.tax.income.deductions.personal_exemption.phaseout.width.SINGLE": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.deductions.personal_exemption.phaseout.width.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 125000, - "2015-01-01": 125000 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.deductions.personal_exemption.phaseout.width.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.deductions.personal_exemption.phaseout.width.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 62500, - "2015-01-01": 62500 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.deductions.personal_exemption.phaseout.width.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.deductions.personal_exemption.phaseout.width.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 125000, - "2015-01-01": 125000 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.deductions.personal_exemption.phaseout.width.JOINT": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.deductions.personal_exemption.phaseout.width.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 125000, - "2015-01-01": 125000 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.deductions.personal_exemption.phaseout.width.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.deductions.personal_exemption.phaseout.width.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 125000, - "2015-01-01": 125000 - }, - "economy": true, - "household": true - }, - "gov.states.me.tax.income.deductions.personal_exemption.amount": { - "type": "parameter", - "parameter": "gov.states.me.tax.income.deductions.personal_exemption.amount", - "description": "Maine personal exemption amount", - "label": "Maine Personal Exemption Amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 6200, - "2034-01-01": 6100, - "2033-01-01": 5950, - "2032-01-01": 5850, - "2031-01-01": 5750, - "2030-01-01": 5600, - "2029-01-01": 5500, - "2028-01-01": 5400, - "2027-01-01": 5300, - "2026-01-01": 5150, - "2025-01-01": 5100, - "2024-01-01": 5000, - "2023-01-01": 4700, - "2022-01-01": 4450, - "2021-01-01": 4300, - "2018-01-01": 4150, - "2015-01-01": 4150 - }, - "economy": true, - "household": true - }, - "gov.states.or": { - "type": "parameterNode", - "parameter": "gov.states.or", - "description": null, - "label": "Oregon", - "economy": true, - "household": true - }, - "gov.states.or.tax": { - "type": "parameterNode", - "parameter": "gov.states.or.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.states.or.tax.income": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.credits", - "description": null, - "label": "credits", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.eitc": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.credits.eitc", - "description": null, - "label": "Earned Income Tax Credit", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.eitc.match": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.credits.eitc.match", - "description": null, - "label": "match", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.eitc.match.has_young_child": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.eitc.match.has_young_child", - "description": "Oregon matches the federal Earned Income Tax Credit at this rate for filers with young children.", - "label": "Oregon EITC match for filers with young children", - "unit": "/1", - "period": "year", - "values": { - "2001-01-01": 0.12 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.eitc.match.no_young_child": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.eitc.match.no_young_child", - "description": "Oregon matches the federal Earned Income Tax Credit at this rate for filers with no young children.", - "label": "Oregon EITC match for filers with no young children", - "unit": "/1", - "period": "year", - "values": { - "2001-01-01": 0.09 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.eitc.old_child_age": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.eitc.old_child_age", - "description": "Oregon defines young children as those up to this age for its Earned Income Tax Credit match.", - "label": "Oregon EITC young child age limit", - "unit": "year", - "period": "year", - "values": { - "2001-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.refundable": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.refundable", - "description": "Oregon provides these refundable tax credits.", - "label": "Oregon refundable tax credits", - "unit": "list", - "period": "year", - "values": { - "2029-01-01": [ - "or_eitc", - "or_kicker", - "or_working_family_household_and_dependent_care_credit" - ], - "2023-01-01": [ - "or_eitc", - "or_kicker", - "or_ctc", - "or_working_family_household_and_dependent_care_credit" - ], - "2019-01-01": [ - "or_eitc", - "or_kicker", - "or_working_family_household_and_dependent_care_credit" - ], - "2015-01-01": [ - "or_eitc", - "or_kicker", - "or_working_family_household_and_dependent_care_credit" - ] - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.ctc": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.credits.ctc", - "description": null, - "label": "ctc", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.ctc.child_limit": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.ctc.child_limit", - "description": "Oregon caps its Child Tax Credit at this number of children per filer.", - "label": "Oregon Child Tax Credit child limit", - "unit": "person", - "period": "year", - "values": { - "2023-01-01": 5, - "2015-01-01": 5 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.ctc.ineligible_age": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.ctc.ineligible_age", - "description": "Oregon provides this Child Tax Credit to children below this age.", - "label": "Oregon Child Tax Credit ineligible age", - "unit": "year", - "period": "year", - "values": { - "2023-01-01": 6, - "2015-01-01": 6 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.ctc.reduction": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.credits.ctc.reduction", - "description": null, - "label": "reduction", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.ctc.reduction.start": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.ctc.reduction.start", - "description": "Oregon reduces its Child Tax Credit for filers with Oregon adjusted gross income exceeding this amount.", - "label": "Oregon Child Tax Credit phase-out start", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 32065.8540469978, - "2034-01-01": 31444.9278749187, - "2033-01-01": 30831.6674580505, - "2032-01-01": 30233.7385516039, - "2031-01-01": 29651.1411555791, - "2030-01-01": 29076.2095147651, - "2029-01-01": 28508.943629162, - "2028-01-01": 27949.3434987698, - "2027-01-01": 27382.0776131666, - "2026-01-01": 26723.5892405544, - "2025-01-01": 26321.2265257954, - "2024-01-01": 25750, - "2023-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.ctc.reduction.width": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.ctc.reduction.width", - "description": "Oregon reduces its Child Tax Credit over this income range exceeding the phase-out start.", - "label": "Oregon Child Tax Credit phase-out width", - "unit": "currency-USD", - "period": "year", - "values": { - "2023-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.ctc.amount": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.ctc.amount", - "description": "Oregon provides this maximum Child Tax Credit per qualifying child.", - "label": "Oregon Child Tax Credit amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2023-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.credits.wfhdc", - "description": null, - "label": "Working family household and dependent care credit", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.min_tax_unit_size": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.min_tax_unit_size", - "description": "Oregon limits its working family household and dependent care credit to filers with at least this number of people.", - "label": "Oregon working family household and dependent care credit minimum household size", - "unit": "people", - "period": "year", - "values": { - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match", - "description": "Oregon matches this fraction of qualifying childcare expenses based on income and eligibility categories.", - "label": "Oregon working family household and dependent care credit credit rate", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.0": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.0", - "description": null, - "label": "0", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.0.YOUNGEST": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.0.YOUNGEST", - "description": null, - "label": "YOUNGEST", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.0.YOUNG": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.0.YOUNG", - "description": null, - "label": "YOUNG", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.08, - "2015-01-01": 0.08 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.0.OLD": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.0.OLD", - "description": null, - "label": "OLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.0.DISABLED_TEENS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.0.DISABLED_TEENS", - "description": null, - "label": "DISABLED TEENS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.0.DISABLED_ADULTS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.0.DISABLED_ADULTS", - "description": null, - "label": "DISABLED ADULTS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.0.NONE": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.0.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.1": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.1.YOUNGEST": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.1.YOUNGEST", - "description": null, - "label": "YOUNGEST", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.1.YOUNG": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.1.YOUNG", - "description": null, - "label": "YOUNG", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.08, - "2015-01-01": 0.08 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.1.OLD": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.1.OLD", - "description": null, - "label": "OLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.1.DISABLED_TEENS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.1.DISABLED_TEENS", - "description": null, - "label": "DISABLED TEENS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.1.DISABLED_ADULTS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.1.DISABLED_ADULTS", - "description": null, - "label": "DISABLED ADULTS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.1.NONE": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.1.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.2": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.2.YOUNGEST": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.2.YOUNGEST", - "description": null, - "label": "YOUNGEST", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.2.YOUNG": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.2.YOUNG", - "description": null, - "label": "YOUNG", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.18, - "2015-01-01": 0.18 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.2.OLD": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.2.OLD", - "description": null, - "label": "OLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.15, - "2015-01-01": 0.15 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.2.DISABLED_TEENS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.2.DISABLED_TEENS", - "description": null, - "label": "DISABLED TEENS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.15, - "2015-01-01": 0.15 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.2.DISABLED_ADULTS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.2.DISABLED_ADULTS", - "description": null, - "label": "DISABLED ADULTS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.2.NONE": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.2.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.3": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.3.YOUNGEST": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.3.YOUNGEST", - "description": null, - "label": "YOUNGEST", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.3, - "2015-01-01": 0.3 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.3.YOUNG": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.3.YOUNG", - "description": null, - "label": "YOUNG", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.28, - "2015-01-01": 0.28 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.3.OLD": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.3.OLD", - "description": null, - "label": "OLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.3.DISABLED_TEENS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.3.DISABLED_TEENS", - "description": null, - "label": "DISABLED TEENS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.3.DISABLED_ADULTS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.3.DISABLED_ADULTS", - "description": null, - "label": "DISABLED ADULTS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.3.NONE": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.3.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.4": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.4.YOUNGEST": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.4.YOUNGEST", - "description": null, - "label": "YOUNGEST", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.4, - "2015-01-01": 0.4 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.4.YOUNG": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.4.YOUNG", - "description": null, - "label": "YOUNG", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.38, - "2015-01-01": 0.38 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.4.OLD": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.4.OLD", - "description": null, - "label": "OLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.35, - "2015-01-01": 0.35 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.4.DISABLED_TEENS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.4.DISABLED_TEENS", - "description": null, - "label": "DISABLED TEENS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.35, - "2015-01-01": 0.35 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.4.DISABLED_ADULTS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.4.DISABLED_ADULTS", - "description": null, - "label": "DISABLED ADULTS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.4.NONE": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.4.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.5": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.5.YOUNGEST": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.5.YOUNGEST", - "description": null, - "label": "YOUNGEST", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.5.YOUNG": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.5.YOUNG", - "description": null, - "label": "YOUNG", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.48, - "2015-01-01": 0.48 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.5.OLD": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.5.OLD", - "description": null, - "label": "OLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.45, - "2015-01-01": 0.45 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.5.DISABLED_TEENS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.5.DISABLED_TEENS", - "description": null, - "label": "DISABLED TEENS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.45, - "2015-01-01": 0.45 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.5.DISABLED_ADULTS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.5.DISABLED_ADULTS", - "description": null, - "label": "DISABLED ADULTS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.3, - "2015-01-01": 0.3 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.5.NONE": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.5.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.6": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.6.YOUNGEST": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.6.YOUNGEST", - "description": null, - "label": "YOUNGEST", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.55, - "2015-01-01": 0.55 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.6.YOUNG": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.6.YOUNG", - "description": null, - "label": "YOUNG", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.53, - "2015-01-01": 0.53 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.6.OLD": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.6.OLD", - "description": null, - "label": "OLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.6.DISABLED_TEENS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.6.DISABLED_TEENS", - "description": null, - "label": "DISABLED TEENS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.6.DISABLED_ADULTS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.6.DISABLED_ADULTS", - "description": null, - "label": "DISABLED ADULTS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.35, - "2015-01-01": 0.35 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.6.NONE": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.6.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.7": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.7", - "description": null, - "label": "7", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.7.YOUNGEST": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.7.YOUNGEST", - "description": null, - "label": "YOUNGEST", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.6, - "2015-01-01": 0.6 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.7.YOUNG": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.7.YOUNG", - "description": null, - "label": "YOUNG", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.58, - "2015-01-01": 0.58 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.7.OLD": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.7.OLD", - "description": null, - "label": "OLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.55, - "2015-01-01": 0.55 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.7.DISABLED_TEENS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.7.DISABLED_TEENS", - "description": null, - "label": "DISABLED TEENS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.55, - "2015-01-01": 0.55 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.7.DISABLED_ADULTS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.7.DISABLED_ADULTS", - "description": null, - "label": "DISABLED ADULTS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.4, - "2015-01-01": 0.4 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.7.NONE": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.7.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.8": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.8", - "description": null, - "label": "8", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.8.YOUNGEST": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.8.YOUNGEST", - "description": null, - "label": "YOUNGEST", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.65, - "2015-01-01": 0.65 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.8.YOUNG": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.8.YOUNG", - "description": null, - "label": "YOUNG", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.63, - "2015-01-01": 0.63 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.8.OLD": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.8.OLD", - "description": null, - "label": "OLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.6, - "2015-01-01": 0.6 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.8.DISABLED_TEENS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.8.DISABLED_TEENS", - "description": null, - "label": "DISABLED TEENS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.6, - "2015-01-01": 0.6 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.8.DISABLED_ADULTS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.8.DISABLED_ADULTS", - "description": null, - "label": "DISABLED ADULTS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.45, - "2015-01-01": 0.45 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.8.NONE": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.8.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.9": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.9", - "description": null, - "label": "9", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.9.YOUNGEST": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.9.YOUNGEST", - "description": null, - "label": "YOUNGEST", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.7, - "2015-01-01": 0.7 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.9.YOUNG": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.9.YOUNG", - "description": null, - "label": "YOUNG", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.68, - "2015-01-01": 0.68 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.9.OLD": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.9.OLD", - "description": null, - "label": "OLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.65, - "2015-01-01": 0.65 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.9.DISABLED_TEENS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.9.DISABLED_TEENS", - "description": null, - "label": "DISABLED TEENS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.65, - "2015-01-01": 0.65 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.9.DISABLED_ADULTS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.9.DISABLED_ADULTS", - "description": null, - "label": "DISABLED ADULTS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.9.NONE": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.9.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.10": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.10", - "description": null, - "label": "10", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.10.YOUNGEST": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.10.YOUNGEST", - "description": null, - "label": "YOUNGEST", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.75, - "2015-01-01": 0.75 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.10.YOUNG": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.10.YOUNG", - "description": null, - "label": "YOUNG", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.73, - "2015-01-01": 0.73 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.10.OLD": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.10.OLD", - "description": null, - "label": "OLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.7, - "2015-01-01": 0.7 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.10.DISABLED_TEENS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.10.DISABLED_TEENS", - "description": null, - "label": "DISABLED TEENS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.7, - "2015-01-01": 0.7 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.10.DISABLED_ADULTS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.10.DISABLED_ADULTS", - "description": null, - "label": "DISABLED ADULTS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.55, - "2015-01-01": 0.55 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.10.NONE": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.10.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.11": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.11", - "description": null, - "label": "11", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.11.YOUNGEST": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.11.YOUNGEST", - "description": null, - "label": "YOUNGEST", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.75, - "2015-01-01": 0.75 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.11.YOUNG": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.11.YOUNG", - "description": null, - "label": "YOUNG", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.73, - "2015-01-01": 0.73 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.11.OLD": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.11.OLD", - "description": null, - "label": "OLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.7, - "2015-01-01": 0.7 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.11.DISABLED_TEENS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.11.DISABLED_TEENS", - "description": null, - "label": "DISABLED TEENS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.7, - "2015-01-01": 0.7 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.11.DISABLED_ADULTS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.11.DISABLED_ADULTS", - "description": null, - "label": "DISABLED ADULTS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.55, - "2015-01-01": 0.55 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.11.NONE": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.11.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.12": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.12", - "description": null, - "label": "12", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.12.YOUNGEST": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.12.YOUNGEST", - "description": null, - "label": "YOUNGEST", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.71, - "2015-01-01": 0.71 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.12.YOUNG": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.12.YOUNG", - "description": null, - "label": "YOUNG", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.69, - "2015-01-01": 0.69 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.12.OLD": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.12.OLD", - "description": null, - "label": "OLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.66, - "2015-01-01": 0.66 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.12.DISABLED_TEENS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.12.DISABLED_TEENS", - "description": null, - "label": "DISABLED TEENS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.66, - "2015-01-01": 0.66 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.12.DISABLED_ADULTS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.12.DISABLED_ADULTS", - "description": null, - "label": "DISABLED ADULTS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.12.NONE": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.12.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.13": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.13", - "description": null, - "label": "13", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.13.YOUNGEST": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.13.YOUNGEST", - "description": null, - "label": "YOUNGEST", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.66, - "2015-01-01": 0.66 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.13.YOUNG": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.13.YOUNG", - "description": null, - "label": "YOUNG", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.64, - "2015-01-01": 0.64 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.13.OLD": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.13.OLD", - "description": null, - "label": "OLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.61, - "2015-01-01": 0.61 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.13.DISABLED_TEENS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.13.DISABLED_TEENS", - "description": null, - "label": "DISABLED TEENS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.61, - "2015-01-01": 0.61 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.13.DISABLED_ADULTS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.13.DISABLED_ADULTS", - "description": null, - "label": "DISABLED ADULTS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.45, - "2015-01-01": 0.45 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.13.NONE": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.13.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.14": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.14", - "description": null, - "label": "14", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.14.YOUNGEST": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.14.YOUNGEST", - "description": null, - "label": "YOUNGEST", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.61, - "2015-01-01": 0.61 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.14.YOUNG": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.14.YOUNG", - "description": null, - "label": "YOUNG", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.59, - "2015-01-01": 0.59 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.14.OLD": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.14.OLD", - "description": null, - "label": "OLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.56, - "2015-01-01": 0.56 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.14.DISABLED_TEENS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.14.DISABLED_TEENS", - "description": null, - "label": "DISABLED TEENS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.56, - "2015-01-01": 0.56 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.14.DISABLED_ADULTS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.14.DISABLED_ADULTS", - "description": null, - "label": "DISABLED ADULTS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.39, - "2015-01-01": 0.39 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.14.NONE": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.14.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.15": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.15", - "description": null, - "label": "15", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.15.YOUNGEST": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.15.YOUNGEST", - "description": null, - "label": "YOUNGEST", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.55, - "2015-01-01": 0.55 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.15.YOUNG": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.15.YOUNG", - "description": null, - "label": "YOUNG", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.53, - "2015-01-01": 0.53 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.15.OLD": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.15.OLD", - "description": null, - "label": "OLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.15.DISABLED_TEENS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.15.DISABLED_TEENS", - "description": null, - "label": "DISABLED TEENS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.15.DISABLED_ADULTS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.15.DISABLED_ADULTS", - "description": null, - "label": "DISABLED ADULTS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.33, - "2015-01-01": 0.33 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.15.NONE": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.15.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.16": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.16", - "description": null, - "label": "16", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.16.YOUNGEST": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.16.YOUNGEST", - "description": null, - "label": "YOUNGEST", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.16.YOUNG": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.16.YOUNG", - "description": null, - "label": "YOUNG", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.48, - "2015-01-01": 0.48 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.16.OLD": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.16.OLD", - "description": null, - "label": "OLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.45, - "2015-01-01": 0.45 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.16.DISABLED_TEENS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.16.DISABLED_TEENS", - "description": null, - "label": "DISABLED TEENS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.45, - "2015-01-01": 0.45 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.16.DISABLED_ADULTS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.16.DISABLED_ADULTS", - "description": null, - "label": "DISABLED ADULTS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.28, - "2015-01-01": 0.28 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.16.NONE": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.16.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.17": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.17", - "description": null, - "label": "17", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.17.YOUNGEST": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.17.YOUNGEST", - "description": null, - "label": "YOUNGEST", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.47, - "2015-01-01": 0.47 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.17.YOUNG": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.17.YOUNG", - "description": null, - "label": "YOUNG", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.45, - "2015-01-01": 0.45 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.17.OLD": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.17.OLD", - "description": null, - "label": "OLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.42, - "2015-01-01": 0.42 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.17.DISABLED_TEENS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.17.DISABLED_TEENS", - "description": null, - "label": "DISABLED TEENS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.42, - "2015-01-01": 0.42 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.17.DISABLED_ADULTS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.17.DISABLED_ADULTS", - "description": null, - "label": "DISABLED ADULTS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.17.NONE": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.17.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.18": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.18", - "description": null, - "label": "18", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.18.YOUNGEST": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.18.YOUNGEST", - "description": null, - "label": "YOUNGEST", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.47, - "2015-01-01": 0.47 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.18.YOUNG": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.18.YOUNG", - "description": null, - "label": "YOUNG", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.45, - "2015-01-01": 0.45 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.18.OLD": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.18.OLD", - "description": null, - "label": "OLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.42, - "2015-01-01": 0.42 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.18.DISABLED_TEENS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.18.DISABLED_TEENS", - "description": null, - "label": "DISABLED TEENS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.42, - "2015-01-01": 0.42 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.18.DISABLED_ADULTS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.18.DISABLED_ADULTS", - "description": null, - "label": "DISABLED ADULTS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.18.NONE": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.18.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.19": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.19", - "description": null, - "label": "19", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.19.YOUNGEST": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.19.YOUNGEST", - "description": null, - "label": "YOUNGEST", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.47, - "2015-01-01": 0.47 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.19.YOUNG": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.19.YOUNG", - "description": null, - "label": "YOUNG", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.45, - "2015-01-01": 0.45 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.19.OLD": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.19.OLD", - "description": null, - "label": "OLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.42, - "2015-01-01": 0.42 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.19.DISABLED_TEENS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.19.DISABLED_TEENS", - "description": null, - "label": "DISABLED TEENS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.42, - "2015-01-01": 0.42 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.19.DISABLED_ADULTS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.19.DISABLED_ADULTS", - "description": null, - "label": "DISABLED ADULTS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.19.NONE": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.19.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.20": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.20", - "description": null, - "label": "20", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.20.YOUNGEST": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.20.YOUNGEST", - "description": null, - "label": "YOUNGEST", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.47, - "2015-01-01": 0.47 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.20.YOUNG": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.20.YOUNG", - "description": null, - "label": "YOUNG", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.45, - "2015-01-01": 0.45 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.20.OLD": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.20.OLD", - "description": null, - "label": "OLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.42, - "2015-01-01": 0.42 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.20.DISABLED_TEENS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.20.DISABLED_TEENS", - "description": null, - "label": "DISABLED TEENS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.42, - "2015-01-01": 0.42 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.20.DISABLED_ADULTS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.20.DISABLED_ADULTS", - "description": null, - "label": "DISABLED ADULTS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.20.NONE": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.20.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.21": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.21", - "description": null, - "label": "21", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.21.YOUNGEST": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.21.YOUNGEST", - "description": null, - "label": "YOUNGEST", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.45, - "2015-01-01": 0.45 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.21.YOUNG": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.21.YOUNG", - "description": null, - "label": "YOUNG", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.43, - "2015-01-01": 0.43 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.21.OLD": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.21.OLD", - "description": null, - "label": "OLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.4, - "2015-01-01": 0.4 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.21.DISABLED_TEENS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.21.DISABLED_TEENS", - "description": null, - "label": "DISABLED TEENS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.4, - "2015-01-01": 0.4 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.21.DISABLED_ADULTS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.21.DISABLED_ADULTS", - "description": null, - "label": "DISABLED ADULTS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.22, - "2015-01-01": 0.22 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.21.NONE": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.21.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.22": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.22", - "description": null, - "label": "22", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.22.YOUNGEST": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.22.YOUNGEST", - "description": null, - "label": "YOUNGEST", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.3, - "2015-01-01": 0.3 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.22.YOUNG": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.22.YOUNG", - "description": null, - "label": "YOUNG", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.38, - "2015-01-01": 0.38 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.22.OLD": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.22.OLD", - "description": null, - "label": "OLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.35, - "2015-01-01": 0.35 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.22.DISABLED_TEENS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.22.DISABLED_TEENS", - "description": null, - "label": "DISABLED TEENS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.35, - "2015-01-01": 0.35 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.22.DISABLED_ADULTS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.22.DISABLED_ADULTS", - "description": null, - "label": "DISABLED ADULTS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.22.NONE": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.22.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.23": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.23", - "description": null, - "label": "23", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.23.YOUNGEST": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.23.YOUNGEST", - "description": null, - "label": "YOUNGEST", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.35, - "2015-01-01": 0.35 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.23.YOUNG": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.23.YOUNG", - "description": null, - "label": "YOUNG", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.33, - "2015-01-01": 0.33 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.23.OLD": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.23.OLD", - "description": null, - "label": "OLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.3, - "2015-01-01": 0.3 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.23.DISABLED_TEENS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.23.DISABLED_TEENS", - "description": null, - "label": "DISABLED TEENS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.3, - "2015-01-01": 0.3 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.23.DISABLED_ADULTS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.23.DISABLED_ADULTS", - "description": null, - "label": "DISABLED ADULTS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.15, - "2015-01-01": 0.15 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.23.NONE": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.23.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.24": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.24", - "description": null, - "label": "24", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.24.YOUNGEST": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.24.YOUNGEST", - "description": null, - "label": "YOUNGEST", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.3, - "2015-01-01": 0.3 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.24.YOUNG": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.24.YOUNG", - "description": null, - "label": "YOUNG", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.28, - "2015-01-01": 0.28 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.24.OLD": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.24.OLD", - "description": null, - "label": "OLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.24.DISABLED_TEENS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.24.DISABLED_TEENS", - "description": null, - "label": "DISABLED TEENS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.24.DISABLED_ADULTS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.24.DISABLED_ADULTS", - "description": null, - "label": "DISABLED ADULTS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.24.NONE": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.24.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.25": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.25", - "description": null, - "label": "25", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.25.YOUNGEST": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.25.YOUNGEST", - "description": null, - "label": "YOUNGEST", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.25.YOUNG": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.25.YOUNG", - "description": null, - "label": "YOUNG", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.18, - "2015-01-01": 0.18 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.25.OLD": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.25.OLD", - "description": null, - "label": "OLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.15, - "2015-01-01": 0.15 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.25.DISABLED_TEENS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.25.DISABLED_TEENS", - "description": null, - "label": "DISABLED TEENS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.15, - "2015-01-01": 0.15 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.25.DISABLED_ADULTS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.25.DISABLED_ADULTS", - "description": null, - "label": "DISABLED ADULTS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.25.NONE": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.25.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.26": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.26", - "description": null, - "label": "26", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.26.YOUNGEST": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.26.YOUNGEST", - "description": null, - "label": "YOUNGEST", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.26.YOUNG": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.26.YOUNG", - "description": null, - "label": "YOUNG", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.08, - "2015-01-01": 0.08 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.26.OLD": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.26.OLD", - "description": null, - "label": "OLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.26.DISABLED_TEENS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.26.DISABLED_TEENS", - "description": null, - "label": "DISABLED TEENS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.26.DISABLED_ADULTS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.26.DISABLED_ADULTS", - "description": null, - "label": "DISABLED ADULTS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.26.NONE": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.26.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.27": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.27", - "description": null, - "label": "27", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.27.YOUNGEST": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.27.YOUNGEST", - "description": null, - "label": "YOUNGEST", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.06, - "2015-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.27.YOUNG": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.27.YOUNG", - "description": null, - "label": "YOUNG", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.06, - "2015-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.27.OLD": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.27.OLD", - "description": null, - "label": "OLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.27.DISABLED_TEENS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.27.DISABLED_TEENS", - "description": null, - "label": "DISABLED TEENS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.27.DISABLED_ADULTS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.27.DISABLED_ADULTS", - "description": null, - "label": "DISABLED ADULTS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.27.NONE": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.27.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.28": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.28", - "description": null, - "label": "28", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.28.YOUNGEST": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.28.YOUNGEST", - "description": null, - "label": "YOUNGEST", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.06, - "2015-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.28.YOUNG": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.28.YOUNG", - "description": null, - "label": "YOUNG", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.06, - "2015-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.28.OLD": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.28.OLD", - "description": null, - "label": "OLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.28.DISABLED_TEENS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.28.DISABLED_TEENS", - "description": null, - "label": "DISABLED TEENS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.28.DISABLED_ADULTS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.28.DISABLED_ADULTS", - "description": null, - "label": "DISABLED ADULTS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.28.NONE": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.28.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.29": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.29", - "description": null, - "label": "29", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.29.YOUNGEST": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.29.YOUNGEST", - "description": null, - "label": "YOUNGEST", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.29.YOUNG": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.29.YOUNG", - "description": null, - "label": "YOUNG", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.29.OLD": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.29.OLD", - "description": null, - "label": "OLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.29.DISABLED_TEENS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.29.DISABLED_TEENS", - "description": null, - "label": "DISABLED TEENS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.29.DISABLED_ADULTS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.29.DISABLED_ADULTS", - "description": null, - "label": "DISABLED ADULTS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.29.NONE": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.29.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.30": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.30", - "description": null, - "label": "30", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.30.YOUNGEST": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.30.YOUNGEST", - "description": null, - "label": "YOUNGEST", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.30.YOUNG": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.30.YOUNG", - "description": null, - "label": "YOUNG", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.30.OLD": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.30.OLD", - "description": null, - "label": "OLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.30.DISABLED_TEENS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.30.DISABLED_TEENS", - "description": null, - "label": "DISABLED TEENS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.30.DISABLED_ADULTS": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.30.DISABLED_ADULTS", - "description": null, - "label": "DISABLED ADULTS", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.match.30.NONE": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.match.30.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.age_range": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.credits.wfhdc.age_range", - "description": null, - "label": "age range", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.age_range.old": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.age_range.old", - "description": "Oregon assigns filers a percentage value when the youngest qualifying individual is below this old age threshold under the working family household and dependent care credit.", - "label": "Oregon working family household and dependent care credit youngest qualifying individual old age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 13, - "2015-01-01": 13 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.age_range.young": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.age_range.young", - "description": "Oregon assigns filers a percentage value when the youngest qualifying individual is below this young age threshold under the working family household and dependent care credit.", - "label": "Oregon working family household and dependent care credit youngest qualifying individual young age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 6, - "2015-01-01": 6 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.age_range.youngest": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.age_range.youngest", - "description": "Oregon assigns filers a percentage value when the youngest qualifying individual is below this youngest age threshold under the working family household and dependent care credit.", - "label": "Oregon working family household and dependent care credit youngest qualifying individual youngest age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 3, - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.age_range.oldest": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.age_range.oldest", - "description": "Oregon assigns filers a percentage value when the youngest qualifying individual is below this oldest age threshold under the working family household and dependent care credit.", - "label": "Oregon working family household and dependent care credit youngest qualifying individual oldest age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 18, - "2015-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.cap": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.cap", - "description": "Oregon caps the childcare expenses under the working family household and dependent care at this amount, for each dependent.", - "label": "Oregon working family household and dependent care expense credit child and dependent care expense cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2028-01-01": 0, - "2016-01-01": 12000, - "2015-01-01": 12000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.fpg_limit": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.fpg_limit", - "description": "Oregon limits the working family household and dependent care credit to filers with the greater of federal or state adjusted gross income below this percentage of the federal poverty guidelines.", - "label": "Oregon working family household and dependent care credit federal poverty guidelines rate", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 3, - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.wfhdc.child_age_limit": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.wfhdc.child_age_limit", - "description": "Oregon qualifies children without disabilities for the working family household and dependent care credit at or below this age.", - "label": "Oregon working family household and dependent care credit child age threshold", - "unit": "year", - "period": "year", - "values": { - "2015-01-01": 12 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.exemption": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.credits.exemption", - "description": null, - "label": "exemption", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.exemption.income_limit": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.credits.exemption.income_limit", - "description": null, - "label": "income limit", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.exemption.income_limit.regular": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.credits.exemption.income_limit.regular", - "description": "Oregon limits its regular exemption credit to filers with adjusted gross income below this threshold.", - "label": "Oregon exemption credit income limit (regular)", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.exemption.income_limit.regular.JOINT": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.exemption.income_limit.regular.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "1986-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.exemption.income_limit.regular.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.exemption.income_limit.regular.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "1986-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.exemption.income_limit.regular.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.exemption.income_limit.regular.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "1986-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.exemption.income_limit.regular.SINGLE": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.exemption.income_limit.regular.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "1986-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.exemption.income_limit.regular.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.exemption.income_limit.regular.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "1986-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.exemption.income_limit.disabled_child_dependent": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.exemption.income_limit.disabled_child_dependent", - "description": "Oregon limits its disabled child exemption credit to filers with adjusted gross income below this threshold.", - "label": "Oregon exemption credit income limit (disabled child dependent)", - "unit": "currency-USD", - "period": "year", - "values": { - "1986-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.exemption.income_limit.severely_disabled": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.exemption.income_limit.severely_disabled", - "description": "Oregon limits its severely disabled exemption credit to filers with adjusted gross income below this threshold.", - "label": "Oregon exemption credit income limit (severely disabled)", - "unit": "currency-USD", - "period": "year", - "values": { - "1986-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.exemption.amount": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.exemption.amount", - "description": "Oregon provides a nonrefundable tax credit of this amount per exemption.", - "label": "Oregon exemption amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 310.073695444755, - "2034-01-01": 304.069399644845, - "2033-01-01": 298.139230953575, - "2032-01-01": 292.357316479588, - "2031-01-01": 286.723656222882, - "2030-01-01": 281.164123074816, - "2029-01-01": 275.678717035392, - "2028-01-01": 270.267438104608, - "2027-01-01": 264.782032065184, - "2026-01-01": 258.414513432934, - "2025-01-01": 254.523705045556, - "2024-01-01": 249, - "2023-01-01": 236, - "2022-01-01": 219, - "2021-01-01": 213, - "2015-01-01": 213 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.kicker": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.credits.kicker", - "description": null, - "label": "kicker", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.kicker.percent": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.kicker.percent", - "description": "Oregon returns this portion of the filer's prior-year tax liability before credits via its kicker credit.", - "label": "Oregon kicker rate", - "unit": "/1", - "period": "year", - "values": { - "2024-01-01": 0, - "2023-01-01": 0.4428, - "2022-01-01": 0, - "2021-01-01": 0.17341, - "2015-01-01": 0.17341 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.retirement_income": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.credits.retirement_income", - "description": null, - "label": "retirement income", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.retirement_income.income_threshold": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.credits.retirement_income.income_threshold", - "description": "Oregon reduces the retirement income credit for filers with household income above the following threshold, based on filing status.", - "label": "Oregon retirement income credit income threshold", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.retirement_income.income_threshold.JOINT": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.retirement_income.income_threshold.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2018-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.retirement_income.income_threshold.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.retirement_income.income_threshold.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2018-01-01": 15000, - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.retirement_income.income_threshold.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.retirement_income.income_threshold.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2018-01-01": 15000, - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.retirement_income.income_threshold.SINGLE": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.retirement_income.income_threshold.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2018-01-01": 15000, - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.retirement_income.income_threshold.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.retirement_income.income_threshold.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2018-01-01": 15000, - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.retirement_income.base": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.credits.retirement_income.base", - "description": "Oregon allows for the following retirement income credit base amount, based on filing status.", - "label": "Oregon retirement income credit base", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.retirement_income.base.JOINT": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.retirement_income.base.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2018-01-01": 15000, - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.retirement_income.base.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.retirement_income.base.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2018-01-01": 7500, - "2015-01-01": 7500 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.retirement_income.base.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.retirement_income.base.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2018-01-01": 7500, - "2015-01-01": 7500 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.retirement_income.base.SINGLE": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.retirement_income.base.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2018-01-01": 7500, - "2015-01-01": 7500 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.retirement_income.base.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.retirement_income.base.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2018-01-01": 7500, - "2015-01-01": 7500 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.retirement_income.percentage": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.retirement_income.percentage", - "description": "Oregon multplies the lesser of the retirement income base credit amount or the filers retirement income by the following percentage.", - "label": "Oregon retirement income credit percentage", - "unit": "/1", - "period": "year", - "values": { - "2018-01-01": 0.09, - "2015-01-01": 0.09 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.retirement_income.age_threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.retirement_income.age_threshold", - "description": "Oregon qualifies filers for the retirement income credit at or above this age threshold.", - "label": "Oregon retirement income credit age threshold", - "unit": "year", - "period": "year", - "values": { - "1999-01-01": 62, - "1997-01-01": 61, - "1995-01-01": 60, - "1993-01-01": 59, - "1991-01-01": 58 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.credits.nonrefundable": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.credits.nonrefundable", - "description": "Oregon provides these non-refundable tax credits.", - "label": "Oregon non-refundable tax credits", - "unit": "list", - "period": "year", - "values": { - "2019-01-01": ["or_exemption_credit", "or_retirement_credit"], - "2015-01-01": ["or_exemption_credit", "or_retirement_credit"] - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.rates": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.rates", - "description": null, - "label": "rates", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.rates.head_of_household": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.rates.head_of_household", - "description": "Oregon taxes income at these rates for individuals filing as head of household.", - "label": "Oregon State income tax rate for head of household filers." - }, - "gov.states.or.tax.income.rates.head_of_household[0]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.rates.head_of_household[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.or.tax.income.rates.head_of_household[0].rate": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.rates.head_of_household[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.0475, - "2017-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.rates.head_of_household[0].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.rates.head_of_household[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1993-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.rates.head_of_household[1]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.rates.head_of_household[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.or.tax.income.rates.head_of_household[1].rate": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.rates.head_of_household[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.0675, - "2017-01-01": 0.07, - "2015-01-01": 0.07 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.rates.head_of_household[1].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.rates.head_of_household[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 10700, - "2034-01-01": 10500, - "2033-01-01": 10200, - "2032-01-01": 10000, - "2031-01-01": 9900, - "2030-01-01": 9700, - "2029-01-01": 9500, - "2028-01-01": 9300, - "2027-01-01": 9100, - "2026-01-01": 8900, - "2025-01-01": 8700, - "2024-01-01": 8600, - "2023-01-01": 8100, - "2022-01-01": 7500, - "2021-01-01": 7300, - "2020-01-01": 7200, - "2019-01-01": 7100, - "2018-01-01": 6900, - "2017-01-01": 6800, - "1993-01-01": 4000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.rates.head_of_household[2]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.rates.head_of_household[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.or.tax.income.rates.head_of_household[2].rate": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.rates.head_of_household[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.0875, - "2017-01-01": 0.09, - "2015-01-01": 0.09 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.rates.head_of_household[2].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.rates.head_of_household[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 26700, - "2034-01-01": 26200, - "2033-01-01": 25700, - "2032-01-01": 25200, - "2031-01-01": 24700, - "2030-01-01": 24200, - "2029-01-01": 23800, - "2028-01-01": 23300, - "2027-01-01": 22800, - "2026-01-01": 22300, - "2025-01-01": 21900, - "2024-01-01": 21500, - "2023-01-01": 20400, - "2022-01-01": 18900, - "2021-01-01": 18400, - "2020-01-01": 18100, - "2019-01-01": 17800, - "2018-01-01": 17400, - "2017-01-01": 17000, - "1993-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.rates.head_of_household[3]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.rates.head_of_household[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.or.tax.income.rates.head_of_household[3].rate": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.rates.head_of_household[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2017-01-01": 0.099, - "2015-01-01": 0.099 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.rates.head_of_household[3].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.rates.head_of_household[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1993-01-01": 250000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.rates.separate": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.rates.separate", - "description": "Oregon taxes income at these rates for filers that are married filing separately.", - "label": "Oregon State income tax rate for married filing separate filers" - }, - "gov.states.or.tax.income.rates.separate[0]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.rates.separate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.or.tax.income.rates.separate[0].rate": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.rates.separate[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.0475, - "2017-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.rates.separate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.rates.separate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1993-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.rates.separate[1]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.rates.separate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.or.tax.income.rates.separate[1].rate": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.rates.separate[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.0675, - "2017-01-01": 0.07, - "2015-01-01": 0.07 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.rates.separate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.rates.separate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 5350, - "2034-01-01": 5250, - "2033-01-01": 5100, - "2032-01-01": 5000, - "2031-01-01": 4950, - "2030-01-01": 4850, - "2029-01-01": 4750, - "2028-01-01": 4650, - "2027-01-01": 4550, - "2026-01-01": 4450, - "2025-01-01": 4350, - "2024-01-01": 4300, - "2023-01-01": 4050, - "2022-01-01": 3750, - "2021-01-01": 3650, - "2020-01-01": 3600, - "2019-01-01": 3550, - "2018-01-01": 3450, - "2017-01-01": 3400, - "1993-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.rates.separate[2]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.rates.separate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.or.tax.income.rates.separate[2].rate": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.rates.separate[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.0875, - "2017-01-01": 0.09, - "2015-01-01": 0.09 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.rates.separate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.rates.separate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 13350, - "2034-01-01": 13100, - "2033-01-01": 12850, - "2032-01-01": 12600, - "2031-01-01": 12350, - "2030-01-01": 12100, - "2029-01-01": 11900, - "2028-01-01": 11650, - "2027-01-01": 11400, - "2026-01-01": 11150, - "2025-01-01": 10950, - "2024-01-01": 10750, - "2023-01-01": 10200, - "2022-01-01": 9450, - "2021-01-01": 9200, - "2020-01-01": 9050, - "2019-01-01": 8900, - "2018-01-01": 8700, - "2017-01-01": 8500, - "1993-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.rates.separate[3]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.rates.separate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.or.tax.income.rates.separate[3].rate": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.rates.separate[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2017-01-01": 0.099, - "2015-01-01": 0.099 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.rates.separate[3].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.rates.separate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1993-01-01": 125000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.rates.joint": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.rates.joint", - "description": "Oregon taxes income at these rates for joint filers.", - "label": "Oregon State income tax rate for joint filers" - }, - "gov.states.or.tax.income.rates.joint[0]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.rates.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.or.tax.income.rates.joint[0].rate": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.rates.joint[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.0475, - "2017-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.rates.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.rates.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1993-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.rates.joint[1]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.rates.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.or.tax.income.rates.joint[1].rate": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.rates.joint[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.0675, - "2017-01-01": 0.07, - "2015-01-01": 0.07 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.rates.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.rates.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 10700, - "2034-01-01": 10500, - "2033-01-01": 10200, - "2032-01-01": 10000, - "2031-01-01": 9900, - "2030-01-01": 9700, - "2029-01-01": 9500, - "2028-01-01": 9300, - "2027-01-01": 9100, - "2026-01-01": 8900, - "2025-01-01": 8700, - "2024-01-01": 8600, - "2023-01-01": 8100, - "2022-01-01": 7500, - "2021-01-01": 7300, - "2020-01-01": 7200, - "2019-01-01": 7100, - "2018-01-01": 6900, - "2017-01-01": 6800, - "1993-01-01": 4000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.rates.joint[2]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.rates.joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.or.tax.income.rates.joint[2].rate": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.rates.joint[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.0875, - "2017-01-01": 0.09, - "2015-01-01": 0.09 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.rates.joint[2].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.rates.joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 26700, - "2034-01-01": 26200, - "2033-01-01": 25700, - "2032-01-01": 25200, - "2031-01-01": 24700, - "2030-01-01": 24200, - "2029-01-01": 23800, - "2028-01-01": 23300, - "2027-01-01": 22800, - "2026-01-01": 22300, - "2025-01-01": 21900, - "2024-01-01": 21500, - "2023-01-01": 20400, - "2022-01-01": 18900, - "2021-01-01": 18400, - "2020-01-01": 18100, - "2019-01-01": 17800, - "2018-01-01": 17400, - "2017-01-01": 17000, - "1993-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.rates.joint[3]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.rates.joint[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.or.tax.income.rates.joint[3].rate": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.rates.joint[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2017-01-01": 0.099, - "2015-01-01": 0.099 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.rates.joint[3].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.rates.joint[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1993-01-01": 250000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.rates.single": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.rates.single", - "description": "Oregon taxes income at these rates for single filers.", - "label": "Oregon State income tax rate for single filers." - }, - "gov.states.or.tax.income.rates.single[0]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.rates.single[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.or.tax.income.rates.single[0].rate": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.rates.single[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.0475, - "2017-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.rates.single[0].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.rates.single[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1993-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.rates.single[1]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.rates.single[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.or.tax.income.rates.single[1].rate": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.rates.single[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.0675, - "2017-01-01": 0.07, - "2015-01-01": 0.07 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.rates.single[1].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.rates.single[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 5350, - "2034-01-01": 5250, - "2033-01-01": 5100, - "2032-01-01": 5000, - "2031-01-01": 4950, - "2030-01-01": 4850, - "2029-01-01": 4750, - "2028-01-01": 4650, - "2027-01-01": 4550, - "2026-01-01": 4450, - "2025-01-01": 4350, - "2024-01-01": 4300, - "2023-01-01": 4050, - "2022-01-01": 3750, - "2021-01-01": 3650, - "2020-01-01": 3600, - "2019-01-01": 3550, - "2018-01-01": 3450, - "2017-01-01": 3400, - "1993-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.rates.single[2]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.rates.single[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.or.tax.income.rates.single[2].rate": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.rates.single[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.0875, - "2017-01-01": 0.09, - "2015-01-01": 0.09 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.rates.single[2].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.rates.single[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 13400, - "2034-01-01": 13150, - "2033-01-01": 12900, - "2032-01-01": 12650, - "2031-01-01": 12400, - "2030-01-01": 12150, - "2029-01-01": 11900, - "2028-01-01": 11700, - "2027-01-01": 11450, - "2026-01-01": 11150, - "2025-01-01": 11000, - "2024-01-01": 10750, - "2023-01-01": 10200, - "2022-01-01": 9450, - "2021-01-01": 9200, - "2020-01-01": 9050, - "2019-01-01": 8900, - "2018-01-01": 8700, - "2017-01-01": 8500, - "1993-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.rates.single[3]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.rates.single[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.or.tax.income.rates.single[3].rate": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.rates.single[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2017-01-01": 0.099, - "2015-01-01": 0.099 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.rates.single[3].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.rates.single[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1993-01-01": 125000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.rates.surviving_spouse": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.rates.surviving_spouse", - "description": "Oregon taxes income at these rates for surviving spouse filers.", - "label": "Oregon State income tax rate for surviving spouse filers" - }, - "gov.states.or.tax.income.rates.surviving_spouse[0]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.rates.surviving_spouse[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.or.tax.income.rates.surviving_spouse[0].rate": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.rates.surviving_spouse[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.0475, - "2017-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.rates.surviving_spouse[0].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.rates.surviving_spouse[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1993-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.rates.surviving_spouse[1]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.rates.surviving_spouse[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.or.tax.income.rates.surviving_spouse[1].rate": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.rates.surviving_spouse[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.0675, - "2017-01-01": 0.07, - "2015-01-01": 0.07 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.rates.surviving_spouse[1].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.rates.surviving_spouse[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 10700, - "2034-01-01": 10500, - "2033-01-01": 10200, - "2032-01-01": 10000, - "2031-01-01": 9900, - "2030-01-01": 9700, - "2029-01-01": 9500, - "2028-01-01": 9300, - "2027-01-01": 9100, - "2026-01-01": 8900, - "2025-01-01": 8700, - "2024-01-01": 8600, - "2023-01-01": 8100, - "2022-01-01": 7500, - "2021-01-01": 7300, - "2020-01-01": 7200, - "2019-01-01": 7100, - "2018-01-01": 6900, - "2017-01-01": 6800, - "1993-01-01": 4000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.rates.surviving_spouse[2]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.rates.surviving_spouse[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.or.tax.income.rates.surviving_spouse[2].rate": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.rates.surviving_spouse[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.0875, - "2017-01-01": 0.09, - "2015-01-01": 0.09 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.rates.surviving_spouse[2].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.rates.surviving_spouse[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 26700, - "2034-01-01": 26200, - "2033-01-01": 25700, - "2032-01-01": 25200, - "2031-01-01": 24700, - "2030-01-01": 24200, - "2029-01-01": 23800, - "2028-01-01": 23300, - "2027-01-01": 22800, - "2026-01-01": 22300, - "2025-01-01": 21900, - "2024-01-01": 21500, - "2023-01-01": 20400, - "2022-01-01": 18900, - "2021-01-01": 18400, - "2020-01-01": 18100, - "2019-01-01": 17800, - "2018-01-01": 17400, - "2017-01-01": 17000, - "1993-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.rates.surviving_spouse[3]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.rates.surviving_spouse[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.or.tax.income.rates.surviving_spouse[3].rate": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.rates.surviving_spouse[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2017-01-01": 0.099, - "2015-01-01": 0.099 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.rates.surviving_spouse[3].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.rates.surviving_spouse[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1993-01-01": 250000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.subtractions", - "description": null, - "label": "subtractions", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability", - "description": null, - "label": "federal tax liability", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap", - "description": null, - "label": "cap", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.head_of_household": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.head_of_household", - "description": "Oregon caps its federal tax liability subtraction for head of household filers at this amount, depending on federal AGI.", - "label": "Oregon federal tax liability subtraction cap for head of household filers" - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.head_of_household[0]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.head_of_household[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.head_of_household[0].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.head_of_household[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.head_of_household[0].amount": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.head_of_household[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 10250, - "2034-01-01": 10050, - "2033-01-01": 9850, - "2032-01-01": 9650, - "2031-01-01": 9450, - "2030-01-01": 9300, - "2029-01-01": 9100, - "2028-01-01": 8950, - "2027-01-01": 8750, - "2026-01-01": 8550, - "2025-01-01": 8400, - "2024-01-01": 8250, - "2023-01-01": 7800, - "2022-01-01": 7250, - "2021-01-01": 7050, - "2015-01-01": 7050 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.head_of_household[1]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.head_of_household[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.head_of_household[1].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.head_of_household[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 250000, - "2015-01-01": 250000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.head_of_household[1].amount": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.head_of_household[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 8200, - "2034-01-01": 8050, - "2033-01-01": 7900, - "2032-01-01": 7700, - "2031-01-01": 7550, - "2030-01-01": 7450, - "2029-01-01": 7300, - "2028-01-01": 7150, - "2027-01-01": 7000, - "2026-01-01": 6800, - "2025-01-01": 6700, - "2024-01-01": 6600, - "2023-01-01": 6250, - "2022-01-01": 5800, - "2021-01-01": 5650, - "2015-01-01": 5650 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.head_of_household[2]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.head_of_household[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.head_of_household[2].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.head_of_household[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 260000, - "2015-01-01": 260000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.head_of_household[2].amount": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.head_of_household[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 6200, - "2034-01-01": 6100, - "2033-01-01": 5950, - "2032-01-01": 5850, - "2031-01-01": 5750, - "2030-01-01": 5600, - "2029-01-01": 5500, - "2028-01-01": 5400, - "2027-01-01": 5300, - "2026-01-01": 5150, - "2025-01-01": 5100, - "2024-01-01": 5000, - "2023-01-01": 4700, - "2022-01-01": 4350, - "2021-01-01": 4200, - "2015-01-01": 4200 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.head_of_household[3]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.head_of_household[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.head_of_household[3].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.head_of_household[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 270000, - "2015-01-01": 270000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.head_of_household[3].amount": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.head_of_household[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 4100, - "2034-01-01": 4000, - "2033-01-01": 3950, - "2032-01-01": 3850, - "2031-01-01": 3750, - "2030-01-01": 3700, - "2029-01-01": 3650, - "2028-01-01": 3550, - "2027-01-01": 3500, - "2026-01-01": 3400, - "2025-01-01": 3350, - "2024-01-01": 3300, - "2023-01-01": 3100, - "2022-01-01": 2900, - "2021-01-01": 2800, - "2015-01-01": 2800 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.head_of_household[4]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.head_of_household[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.head_of_household[4].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.head_of_household[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 280000, - "2015-01-01": 280000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.head_of_household[4].amount": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.head_of_household[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 2050, - "2034-01-01": 2000, - "2033-01-01": 1950, - "2032-01-01": 1900, - "2031-01-01": 1850, - "2030-01-01": 1850, - "2029-01-01": 1800, - "2028-01-01": 1750, - "2027-01-01": 1750, - "2026-01-01": 1700, - "2025-01-01": 1650, - "2024-01-01": 1650, - "2023-01-01": 1550, - "2022-01-01": 1450, - "2021-01-01": 1400, - "2015-01-01": 1400 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.head_of_household[5]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.head_of_household[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.head_of_household[5].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.head_of_household[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 290000, - "2015-01-01": 290000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.head_of_household[5].amount": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.head_of_household[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.separate": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.separate", - "description": "Oregon caps its federal tax liability subtraction for married filing separately filers at this amount, depending on federal AGI.", - "label": "Oregon federal tax liability subtraction cap for married filing separately filers" - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.separate[0]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.separate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.separate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.separate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.separate[0].amount": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.separate[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 5125, - "2034-01-01": 5025, - "2033-01-01": 4925, - "2032-01-01": 4825, - "2031-01-01": 4725, - "2030-01-01": 4650, - "2029-01-01": 4550, - "2028-01-01": 4475, - "2027-01-01": 4375, - "2026-01-01": 4275, - "2025-01-01": 4200, - "2024-01-01": 4125, - "2023-01-01": 3900, - "2022-01-01": 3625, - "2021-01-01": 3525, - "2015-01-01": 3525 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.separate[1]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.separate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.separate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.separate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 125000, - "2015-01-01": 125000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.separate[1].amount": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.separate[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 4100, - "2034-01-01": 4025, - "2033-01-01": 3950, - "2032-01-01": 3850, - "2031-01-01": 3775, - "2030-01-01": 3725, - "2029-01-01": 3650, - "2028-01-01": 3575, - "2027-01-01": 3500, - "2026-01-01": 3400, - "2025-01-01": 3350, - "2024-01-01": 3300, - "2023-01-01": 3125, - "2022-01-01": 2900, - "2021-01-01": 2825, - "2015-01-01": 2825 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.separate[2]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.separate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.separate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.separate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 130000, - "2015-01-01": 130000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.separate[2].amount": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.separate[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 3100, - "2034-01-01": 3000, - "2033-01-01": 2900, - "2032-01-01": 2900, - "2031-01-01": 2800, - "2030-01-01": 2800, - "2029-01-01": 2700, - "2028-01-01": 2700, - "2027-01-01": 2600, - "2026-01-01": 2500, - "2025-01-01": 2500, - "2024-01-01": 2500, - "2023-01-01": 2350, - "2022-01-01": 2175, - "2021-01-01": 2100, - "2015-01-01": 2100 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.separate[3]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.separate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.separate[3].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.separate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 135000, - "2015-01-01": 135000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.separate[3].amount": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.separate[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 2000, - "2034-01-01": 2000, - "2033-01-01": 1900, - "2032-01-01": 1900, - "2031-01-01": 1800, - "2030-01-01": 1800, - "2029-01-01": 1800, - "2028-01-01": 1700, - "2027-01-01": 1700, - "2026-01-01": 1700, - "2025-01-01": 1600, - "2024-01-01": 1650, - "2023-01-01": 1550, - "2022-01-01": 1450, - "2021-01-01": 1400, - "2015-01-01": 1400 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.separate[4]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.separate[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.separate[4].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.separate[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 140000, - "2015-01-01": 140000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.separate[4].amount": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.separate[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 1000, - "2034-01-01": 1000, - "2033-01-01": 900, - "2032-01-01": 900, - "2031-01-01": 900, - "2030-01-01": 900, - "2029-01-01": 900, - "2028-01-01": 800, - "2027-01-01": 800, - "2026-01-01": 800, - "2025-01-01": 800, - "2024-01-01": 825, - "2023-01-01": 775, - "2022-01-01": 725, - "2021-01-01": 700, - "2015-01-01": 700 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.separate[5]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.separate[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.separate[5].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.separate[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 145000, - "2015-01-01": 145000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.separate[5].amount": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.separate[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.joint": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.joint", - "description": "Oregon caps its federal tax liability subtraction for joint filers at this amount, depending on federal AGI.", - "label": "Oregon federal tax liability subtraction cap for joint filers" - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.joint[0]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.joint[0].amount": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.joint[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 10250, - "2034-01-01": 10050, - "2033-01-01": 9850, - "2032-01-01": 9650, - "2031-01-01": 9450, - "2030-01-01": 9300, - "2029-01-01": 9100, - "2028-01-01": 8950, - "2027-01-01": 8750, - "2026-01-01": 8550, - "2025-01-01": 8400, - "2024-01-01": 8250, - "2023-01-01": 7800, - "2022-01-01": 7250, - "2021-01-01": 7050, - "2015-01-01": 7050 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.joint[1]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 250000, - "2015-01-01": 250000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.joint[1].amount": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.joint[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 8200, - "2034-01-01": 8050, - "2033-01-01": 7900, - "2032-01-01": 7700, - "2031-01-01": 7550, - "2030-01-01": 7450, - "2029-01-01": 7300, - "2028-01-01": 7150, - "2027-01-01": 7000, - "2026-01-01": 6800, - "2025-01-01": 6700, - "2024-01-01": 6600, - "2023-01-01": 6250, - "2022-01-01": 5800, - "2021-01-01": 5650, - "2015-01-01": 5650 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.joint[2]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.joint[2].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 260000, - "2015-01-01": 260000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.joint[2].amount": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.joint[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 6200, - "2034-01-01": 6100, - "2033-01-01": 5950, - "2032-01-01": 5850, - "2031-01-01": 5750, - "2030-01-01": 5600, - "2029-01-01": 5500, - "2028-01-01": 5400, - "2027-01-01": 5300, - "2026-01-01": 5150, - "2025-01-01": 5100, - "2024-01-01": 5000, - "2023-01-01": 4700, - "2022-01-01": 4350, - "2021-01-01": 4200, - "2015-01-01": 4200 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.joint[3]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.joint[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.joint[3].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.joint[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 270000, - "2015-01-01": 270000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.joint[3].amount": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.joint[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 4100, - "2034-01-01": 4000, - "2033-01-01": 3950, - "2032-01-01": 3850, - "2031-01-01": 3750, - "2030-01-01": 3700, - "2029-01-01": 3650, - "2028-01-01": 3550, - "2027-01-01": 3500, - "2026-01-01": 3400, - "2025-01-01": 3350, - "2024-01-01": 3300, - "2023-01-01": 3100, - "2022-01-01": 2900, - "2021-01-01": 2800, - "2015-01-01": 2800 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.joint[4]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.joint[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.joint[4].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.joint[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 280000, - "2015-01-01": 280000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.joint[4].amount": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.joint[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 2050, - "2034-01-01": 2000, - "2033-01-01": 1950, - "2032-01-01": 1900, - "2031-01-01": 1850, - "2030-01-01": 1850, - "2029-01-01": 1800, - "2028-01-01": 1750, - "2027-01-01": 1750, - "2026-01-01": 1700, - "2025-01-01": 1650, - "2024-01-01": 1650, - "2023-01-01": 1550, - "2022-01-01": 1450, - "2021-01-01": 1400, - "2015-01-01": 1400 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.joint[5]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.joint[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.joint[5].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.joint[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 290000, - "2015-01-01": 290000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.joint[5].amount": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.joint[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.single": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.single", - "description": "Oregon caps its federal tax liability subtraction for single filers at this amount, depending on federal AGI.", - "label": "Oregon federal tax liability subtraction cap for single filers" - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.single[0]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.single[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.single[0].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.single[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.single[0].amount": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.single[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 10250, - "2034-01-01": 10050, - "2033-01-01": 9850, - "2032-01-01": 9650, - "2031-01-01": 9450, - "2030-01-01": 9300, - "2029-01-01": 9100, - "2028-01-01": 8950, - "2027-01-01": 8750, - "2026-01-01": 8550, - "2025-01-01": 8400, - "2024-01-01": 8250, - "2023-01-01": 7800, - "2022-01-01": 7250, - "2021-01-01": 7050, - "2015-01-01": 7050 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.single[1]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.single[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.single[1].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.single[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 125000, - "2015-01-01": 125000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.single[1].amount": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.single[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 8200, - "2034-01-01": 8050, - "2033-01-01": 7900, - "2032-01-01": 7700, - "2031-01-01": 7550, - "2030-01-01": 7450, - "2029-01-01": 7300, - "2028-01-01": 7150, - "2027-01-01": 7000, - "2026-01-01": 6800, - "2025-01-01": 6700, - "2024-01-01": 6600, - "2023-01-01": 6250, - "2022-01-01": 5800, - "2021-01-01": 5650, - "2015-01-01": 5650 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.single[2]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.single[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.single[2].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.single[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 130000, - "2015-01-01": 130000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.single[2].amount": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.single[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 6226.37942660151, - "2034-01-01": 6105.81123784829, - "2033-01-01": 5986.73154525252, - "2032-01-01": 5870.62884497164, - "2031-01-01": 5757.50313700565, - "2030-01-01": 5645.86592519711, - "2029-01-01": 5535.71720954602, - "2028-01-01": 5427.05699005238, - "2027-01-01": 5316.90827440129, - "2026-01-01": 5189.04645447658, - "2025-01-01": 5110.91777199911, - "2024-01-01": 5000, - "2023-01-01": 4700, - "2022-01-01": 4350, - "2021-01-01": 4200, - "2015-01-01": 4200 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.single[3]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.single[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.single[3].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.single[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 135000, - "2015-01-01": 135000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.single[3].amount": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.single[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 4100, - "2034-01-01": 4000, - "2033-01-01": 3950, - "2032-01-01": 3850, - "2031-01-01": 3750, - "2030-01-01": 3700, - "2029-01-01": 3650, - "2028-01-01": 3550, - "2027-01-01": 3500, - "2026-01-01": 3400, - "2025-01-01": 3350, - "2024-01-01": 3300, - "2023-01-01": 3100, - "2022-01-01": 2900, - "2021-01-01": 2800, - "2015-01-01": 2800 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.single[4]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.single[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.single[4].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.single[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 140000, - "2015-01-01": 140000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.single[4].amount": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.single[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 2050, - "2034-01-01": 2000, - "2033-01-01": 1950, - "2032-01-01": 1900, - "2031-01-01": 1850, - "2030-01-01": 1850, - "2029-01-01": 1800, - "2028-01-01": 1750, - "2027-01-01": 1750, - "2026-01-01": 1700, - "2025-01-01": 1650, - "2024-01-01": 1650, - "2023-01-01": 1550, - "2022-01-01": 1450, - "2021-01-01": 1400, - "2015-01-01": 1400 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.single[5]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.single[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.single[5].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.single[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 145000, - "2015-01-01": 145000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.single[5].amount": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.single[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.surviving_spouse": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.surviving_spouse", - "description": "Oregon caps its federal tax liability subtraction for surviving spouse filers at this amount, depending on federal AGI.", - "label": "Oregon federal tax liability subtraction cap for surviving spouse filers" - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.surviving_spouse[0]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.surviving_spouse[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.surviving_spouse[0].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.surviving_spouse[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.surviving_spouse[0].amount": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.surviving_spouse[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 10250, - "2034-01-01": 10050, - "2033-01-01": 9850, - "2032-01-01": 9650, - "2031-01-01": 9450, - "2030-01-01": 9300, - "2029-01-01": 9100, - "2028-01-01": 8950, - "2027-01-01": 8750, - "2026-01-01": 8550, - "2025-01-01": 8400, - "2024-01-01": 8250, - "2023-01-01": 7800, - "2022-01-01": 7250, - "2021-01-01": 7050, - "2015-01-01": 7050 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.surviving_spouse[1]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.surviving_spouse[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.surviving_spouse[1].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.surviving_spouse[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 250000, - "2015-01-01": 250000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.surviving_spouse[1].amount": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.surviving_spouse[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 6600, - "2023-01-01": 6250, - "2022-01-01": 5800, - "2021-01-01": 5650, - "2015-01-01": 5650 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.surviving_spouse[2]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.surviving_spouse[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.surviving_spouse[2].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.surviving_spouse[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 260000, - "2015-01-01": 260000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.surviving_spouse[2].amount": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.surviving_spouse[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 6200, - "2034-01-01": 6100, - "2033-01-01": 5950, - "2032-01-01": 5850, - "2031-01-01": 5750, - "2030-01-01": 5600, - "2029-01-01": 5500, - "2028-01-01": 5400, - "2027-01-01": 5300, - "2026-01-01": 5150, - "2025-01-01": 5100, - "2024-01-01": 5000, - "2023-01-01": 4700, - "2022-01-01": 4350, - "2021-01-01": 4200, - "2015-01-01": 4200 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.surviving_spouse[3]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.surviving_spouse[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.surviving_spouse[3].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.surviving_spouse[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 270000, - "2015-01-01": 270000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.surviving_spouse[3].amount": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.surviving_spouse[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 4100, - "2034-01-01": 4000, - "2033-01-01": 3950, - "2032-01-01": 3850, - "2031-01-01": 3750, - "2030-01-01": 3700, - "2029-01-01": 3650, - "2028-01-01": 3550, - "2027-01-01": 3500, - "2026-01-01": 3400, - "2025-01-01": 3350, - "2024-01-01": 3300, - "2023-01-01": 3100, - "2022-01-01": 2900, - "2021-01-01": 2800, - "2015-01-01": 2800 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.surviving_spouse[4]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.surviving_spouse[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.surviving_spouse[4].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.surviving_spouse[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 280000, - "2015-01-01": 280000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.surviving_spouse[4].amount": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.surviving_spouse[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 2050, - "2034-01-01": 2000, - "2033-01-01": 1950, - "2032-01-01": 1900, - "2031-01-01": 1850, - "2030-01-01": 1850, - "2029-01-01": 1800, - "2028-01-01": 1750, - "2027-01-01": 1750, - "2026-01-01": 1700, - "2025-01-01": 1650, - "2024-01-01": 1650, - "2023-01-01": 1550, - "2022-01-01": 1450, - "2021-01-01": 1400, - "2015-01-01": 1400 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.surviving_spouse[5]": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.surviving_spouse[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.surviving_spouse[5].threshold": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.surviving_spouse[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 290000, - "2015-01-01": 290000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.surviving_spouse[5].amount": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.federal_tax_liability.cap.surviving_spouse[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.subtractions.subtractions": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.subtractions.subtractions", - "description": "Oregon caps its federal tax liability subtraction for surviving spouse filers at this amount, depending on federal AGI.", - "label": "Oregon subtractions", - "unit": "list", - "period": "year", - "values": { - "2020-01-01": ["or_federal_tax_liability_subtraction", "taxable_social_security"], - "2015-01-01": ["or_federal_tax_liability_subtraction", "taxable_social_security"] - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.deductions": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.deductions", - "description": null, - "label": "deductions", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.deductions.standard": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.deductions.standard", - "description": null, - "label": "standard", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.deductions.standard.claimable_as_dependent": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.deductions.standard.claimable_as_dependent", - "description": null, - "label": "claimable as dependent", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.deductions.standard.claimable_as_dependent.earned_income_addition": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.deductions.standard.claimable_as_dependent.earned_income_addition", - "description": "Oregon adds this to your earned income for you total standard deduction if you can be claimed as a dependent, up to the filing status maximum.", - "label": "Oregon earned income addition if claimable as dependent", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 550, - "2034-01-01": 500, - "2033-01-01": 500, - "2032-01-01": 500, - "2031-01-01": 500, - "2030-01-01": 500, - "2029-01-01": 450, - "2028-01-01": 450, - "2027-01-01": 450, - "2026-01-01": 450, - "2025-01-01": 450, - "2024-01-01": 450, - "2023-01-01": 400, - "2022-01-01": 400, - "2021-01-01": 350, - "2015-01-01": 350 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.deductions.standard.claimable_as_dependent.min": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.deductions.standard.claimable_as_dependent.min", - "description": "Oregon provides a minimum standard deduction of this amount for filers who are claimable as a dependent.", - "label": "Oregon minimum deduction if claimable as dependent", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1618.85865091639, - "2034-01-01": 1587.51092184055, - "2033-01-01": 1556.55020176565, - "2032-01-01": 1526.36349969263, - "2031-01-01": 1496.95081562147, - "2030-01-01": 1467.92514055125, - "2029-01-01": 1439.28647448197, - "2028-01-01": 1411.03481741362, - "2027-01-01": 1382.39615134434, - "2026-01-01": 1349.15207816391, - "2025-01-01": 1328.83862071977, - "2024-01-01": 1300, - "2023-01-01": 1250, - "2022-01-01": 1150, - "2021-01-01": 1100, - "2015-01-01": 1100 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.deductions.standard.amount": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.deductions.standard.amount", - "description": "Oregon provides a standard deduction of this amount.", - "label": "Oregon standard deduction", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.deductions.standard.amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.deductions.standard.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 6840, - "2034-01-01": 6710, - "2033-01-01": 6575, - "2032-01-01": 6450, - "2031-01-01": 6325, - "2030-01-01": 6200, - "2029-01-01": 6080, - "2028-01-01": 5960, - "2027-01-01": 5840, - "2026-01-01": 5700, - "2025-01-01": 5615, - "2024-01-01": 5495, - "2023-01-01": 5210, - "2022-01-01": 4840, - "2021-01-01": 4700, - "2020-01-01": 4630, - "2019-01-01": 4545, - "2018-01-01": 4435, - "2003-01-01": 3280 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.deductions.standard.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.deductions.standard.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 5500, - "2034-01-01": 5395, - "2033-01-01": 5290, - "2032-01-01": 5185, - "2031-01-01": 5085, - "2030-01-01": 4990, - "2029-01-01": 4890, - "2028-01-01": 4795, - "2027-01-01": 4700, - "2026-01-01": 4585, - "2025-01-01": 4515, - "2024-01-01": 4420, - "2022-01-01": 3895, - "2021-01-01": 3780, - "2020-01-01": 3725, - "2019-01-01": 3655, - "2018-01-01": 3570, - "2003-01-01": 2640 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.deductions.standard.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.deductions.standard.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 6840, - "2034-01-01": 6710, - "2033-01-01": 6575, - "2032-01-01": 6450, - "2031-01-01": 6325, - "2030-01-01": 6200, - "2029-01-01": 6080, - "2028-01-01": 5960, - "2027-01-01": 5840, - "2026-01-01": 5700, - "2025-01-01": 5615, - "2024-01-01": 5495, - "2023-01-01": 5210, - "2022-01-01": 4840, - "2021-01-01": 4700, - "2020-01-01": 4630, - "2019-01-01": 4545, - "2018-01-01": 4435, - "2003-01-01": 3280 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.deductions.standard.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.deductions.standard.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3415, - "2034-01-01": 3350, - "2033-01-01": 3285, - "2032-01-01": 3220, - "2031-01-01": 3160, - "2030-01-01": 3095, - "2029-01-01": 3035, - "2028-01-01": 2975, - "2027-01-01": 2915, - "2026-01-01": 2845, - "2025-01-01": 2805, - "2024-01-01": 2745, - "2023-01-01": 2605, - "2022-01-01": 2420, - "2021-01-01": 2350, - "2020-01-01": 2315, - "2019-01-01": 2270, - "2018-01-01": 2215, - "2003-01-01": 1640 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.deductions.standard.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.deductions.standard.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3415, - "2034-01-01": 3350, - "2033-01-01": 3285, - "2032-01-01": 3220, - "2031-01-01": 3160, - "2030-01-01": 3095, - "2029-01-01": 3035, - "2028-01-01": 2975, - "2027-01-01": 2915, - "2026-01-01": 2845, - "2025-01-01": 2805, - "2024-01-01": 2745, - "2023-01-01": 2605, - "2022-01-01": 2420, - "2021-01-01": 2350, - "2020-01-01": 2315, - "2019-01-01": 2270, - "2018-01-01": 2215, - "2003-01-01": 1640 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.deductions.standard.aged_or_blind": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.deductions.standard.aged_or_blind", - "description": null, - "label": "aged or blind", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.deductions.standard.aged_or_blind.age": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.deductions.standard.aged_or_blind.age", - "description": "Oregon provides a standard deduction addition at this age threshold.", - "label": "Oregon standard deduction addition age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.deductions.standard.aged_or_blind.amount": { - "type": "parameterNode", - "parameter": "gov.states.or.tax.income.deductions.standard.aged_or_blind.amount", - "description": "Oregon provides an addition to the standard deduction of this amount if you or your spouse are 65 or older or blind.", - "label": "Oregon standard deduction addition for 65 or older or blind", - "economy": true, - "household": true - }, - "gov.states.or.tax.income.deductions.standard.aged_or_blind.amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.deductions.standard.aged_or_blind.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.deductions.standard.aged_or_blind.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.deductions.standard.aged_or_blind.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 1200, - "2015-01-01": 1200 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.deductions.standard.aged_or_blind.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.deductions.standard.aged_or_blind.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.deductions.standard.aged_or_blind.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.deductions.standard.aged_or_blind.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 1200, - "2015-01-01": 1200 - }, - "economy": true, - "household": true - }, - "gov.states.or.tax.income.deductions.standard.aged_or_blind.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.or.tax.income.deductions.standard.aged_or_blind.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.or.fcc": { - "type": "parameterNode", - "parameter": "gov.states.or.fcc", - "description": null, - "label": "fcc", - "economy": true, - "household": true - }, - "gov.states.or.fcc.lifeline": { - "type": "parameterNode", - "parameter": "gov.states.or.fcc.lifeline", - "description": null, - "label": "lifeline", - "economy": true, - "household": true - }, - "gov.states.or.fcc.lifeline.max_amount": { - "type": "parameter", - "parameter": "gov.states.or.fcc.lifeline.max_amount", - "description": "Oregon provides the following maximum Lifeline benefit amount.", - "label": "Oregon Lifeline maximum benefit", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-01-01": 15.25, - "2015-01-01": 15.25 - }, - "economy": true, - "household": true - }, - "gov.states.or.fcc.lifeline.in_effect": { - "type": "parameter", - "parameter": "gov.states.or.fcc.lifeline.in_effect", - "description": "Oregon provides a separate maximum Lifeline benefit amount if this is true.", - "label": "Oregon Lifeline maximum benefit in effect", - "unit": "bool", - "period": "year", - "values": { - "2024-01-01": true, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.ga": { - "type": "parameterNode", - "parameter": "gov.states.ga", - "description": null, - "label": "Georgia", - "economy": true, - "household": true - }, - "gov.states.ga.tax": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.states.ga.tax.income": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.agi": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.agi", - "description": null, - "label": "agi", - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.agi.exclusions": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.agi.exclusions", - "description": null, - "label": "exclusions", - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.agi.exclusions.military_retirement": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.agi.exclusions.military_retirement", - "description": null, - "label": "military retirement", - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.agi.exclusions.military_retirement.base": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.agi.exclusions.military_retirement.base", - "description": "Georgia provides military retirement income exclusion for the age filer at this amount.", - "label": "Georgia military retirement income exclusion base amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2022-01-01": 17500, - "2015-01-01": 17500 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.agi.exclusions.military_retirement.age_limit": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.agi.exclusions.military_retirement.age_limit", - "description": "Georgia qualifies filers for the military retirement income exclusions below the following age.", - "label": "Georgia military retirement income exclusion age limit", - "unit": "year", - "period": "year", - "values": { - "2022-01-01": 62, - "2015-01-01": 62 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.agi.exclusions.military_retirement.additional": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.agi.exclusions.military_retirement.additional", - "description": null, - "label": "additional", - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.agi.exclusions.military_retirement.additional.earned_income_threshold": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.agi.exclusions.military_retirement.additional.earned_income_threshold", - "description": "Georgia qualifies filers for the additional military retirement income exclusion with earned income above this threshold.", - "label": "Georgia additional retirement exclusion earned income threshold", - "unit": "currency-USD", - "period": "year", - "values": { - "2022-01-01": 17500, - "2015-01-01": 17500 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.agi.exclusions.military_retirement.additional.amount": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.agi.exclusions.military_retirement.additional.amount", - "description": "Georgia subtracts this additional amount of military retirement income exclusion from adjusted gross income.", - "label": "Georgia military retirement income exclusion additional amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2022-01-01": 17500, - "2015-01-01": 17500 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.agi.exclusions.retirement": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.agi.exclusions.retirement", - "description": null, - "label": "retirement", - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.agi.exclusions.retirement.cap": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.agi.exclusions.retirement.cap", - "description": null, - "label": "cap", - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.agi.exclusions.retirement.cap.earned_income": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.agi.exclusions.retirement.cap.earned_income", - "description": "Georgia limits the earned income portion of the retirement exclusion to the following amount.", - "label": "Georgia retirement exclusion earned income cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2024-01-01": 5000, - "2021-01-01": 4000, - "2015-01-01": 4000 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.agi.exclusions.retirement.cap.younger": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.agi.exclusions.retirement.cap.younger", - "description": "Georgia subtracts this lower retirement income amount for filers meeting the younger age threshold.", - "label": "Georgia retirement income exclusion younger cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2012-01-01": 35000, - "2008-01-01": 30000, - "2007-01-01": 25000, - "2006-01-01": 15000, - "2003-01-01": 14500, - "2002-01-01": 14000, - "2001-01-01": 13500, - "2000-01-01": 13000, - "1999-01-01": 12000, - "1995-01-01": 11000, - "1994-01-01": 11000, - "1990-01-01": 10000, - "1989-01-01": 8000 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.agi.exclusions.retirement.cap.older": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.agi.exclusions.retirement.cap.older", - "description": "Georgia subtracts this higher retirement income amount for filers meeting the older age threshold.", - "label": "Georgia retirement income exclusion older cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2012-01-01": 65000 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.agi.exclusions.retirement.age_threshold": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.agi.exclusions.retirement.age_threshold", - "description": null, - "label": "age threshold", - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.agi.exclusions.retirement.age_threshold.younger": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.agi.exclusions.retirement.age_threshold.younger", - "description": "Georgia allows filers to receive the lower retirement income exclusion amount at or above the following younger age threshold.", - "label": "Georgia retirement income exclusion younger age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 62, - "2015-01-01": 62 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.agi.exclusions.retirement.age_threshold.older": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.agi.exclusions.retirement.age_threshold.older", - "description": "Georgia allows filers to receive the higher retirement income exclusion amount at or above the following older age threshold.", - "label": "Georgia retirement income exclusion older age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.agi.exclusions.retirement.sources": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.agi.exclusions.retirement.sources", - "description": "Georgia accounts for the following income sources under the retirement exclusion.", - "label": "Georgia retirement income exclusion income sources", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": [ - "interest_income", - "dividend_income", - "rental_income", - "capital_gains", - "alimony_income", - "taxable_pension_income", - "taxable_ira_distributions", - "ga_retirement_exclusion_countable_earned_income" - ], - "2015-01-01": [ - "interest_income", - "dividend_income", - "rental_income", - "capital_gains", - "alimony_income", - "taxable_pension_income", - "taxable_ira_distributions", - "ga_retirement_exclusion_countable_earned_income" - ] - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.credits": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.credits", - "description": null, - "label": "credits", - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.credits.low_income": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.credits.low_income", - "description": null, - "label": "low income", - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.credits.low_income.amount": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.credits.low_income.amount", - "description": "Georgia provides the following low income tax credit amount based on adjusted gross income.", - "label": "Georgia low income tax credit amount" - }, - "gov.states.ga.tax.income.credits.low_income.amount[0]": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.credits.low_income.amount[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ga.tax.income.credits.low_income.amount[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.credits.low_income.amount[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.credits.low_income.amount[0].amount": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.credits.low_income.amount[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 26, - "2015-01-01": 26 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.credits.low_income.amount[1]": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.credits.low_income.amount[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ga.tax.income.credits.low_income.amount[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.credits.low_income.amount[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 6000, - "2015-01-01": 6000 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.credits.low_income.amount[1].amount": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.credits.low_income.amount[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 20, - "2015-01-01": 20 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.credits.low_income.amount[2]": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.credits.low_income.amount[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ga.tax.income.credits.low_income.amount[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.credits.low_income.amount[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 8000, - "2015-01-01": 8000 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.credits.low_income.amount[2].amount": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.credits.low_income.amount[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.credits.low_income.amount[3]": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.credits.low_income.amount[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ga.tax.income.credits.low_income.amount[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.credits.low_income.amount[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.credits.low_income.amount[3].amount": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.credits.low_income.amount[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 8, - "2015-01-01": 8 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.credits.low_income.amount[4]": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.credits.low_income.amount[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ga.tax.income.credits.low_income.amount[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.credits.low_income.amount[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 15000, - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.credits.low_income.amount[4].amount": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.credits.low_income.amount[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 5, - "2015-01-01": 5 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.credits.low_income.amount[5]": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.credits.low_income.amount[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ga.tax.income.credits.low_income.amount[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.credits.low_income.amount[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.credits.low_income.amount[5].amount": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.credits.low_income.amount[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.credits.low_income.supplement_age_eligibility": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.credits.low_income.supplement_age_eligibility", - "description": "Georgia provides an additional exemption under the low income credit for head and spouse at or above this age threshold.", - "label": "Georgia low income credit supplement age eligibility", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.credits.cdcc": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.credits.cdcc", - "description": null, - "label": "Child and Dependent Care Credit", - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.credits.cdcc.rate": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.credits.cdcc.rate", - "description": "Georgia matches this percentage of the federal child and dependent care credit.", - "label": "Georgia tax credits for qualified child and dependent care expenses", - "unit": "/1", - "period": "year", - "values": { - "2008-01-01": 0.3, - "2007-01-01": 0.2, - "2006-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.credits.non_refundable": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.credits.non_refundable", - "description": "Georgia provides these non-refundable income tax credits.", - "label": "Georgia non-refundable tax credits", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": ["ga_cdcc", "ga_low_income_credit"], - "2015-01-01": ["ga_cdcc", "ga_low_income_credit"] - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.exemptions": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.exemptions", - "description": null, - "label": "exemptions", - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.exemptions.dependent": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.exemptions.dependent", - "description": "Georgia issues the following exemption amount for each dependent.", - "label": "Georgia dependent exemption amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2024-01-01": 4000, - "2003-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.exemptions.personal": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.exemptions.personal", - "description": null, - "label": "personal", - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.exemptions.personal.availability": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.exemptions.personal.availability", - "description": "Georgia issues a personal exemption amount if this is true.", - "label": "Georgia personal exemption availability", - "unit": "bool", - "period": "year", - "values": { - "2024-01-01": false, - "2003-01-01": true - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.exemptions.personal.amount": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.exemptions.personal.amount", - "description": "Georgia issues the following exemption amount depending on the filing status.", - "label": "Georgia personal exemption amount", - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.exemptions.personal.amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.exemptions.personal.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7400, - "2015-01-01": 7400 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.exemptions.personal.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.exemptions.personal.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2020-01-01": 2700, - "2015-01-01": 2700 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.exemptions.personal.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.exemptions.personal.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2020-01-01": 2700, - "2015-01-01": 2700 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.exemptions.personal.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.exemptions.personal.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2020-01-01": 3700, - "2015-01-01": 3700 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.exemptions.personal.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.exemptions.personal.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2020-01-01": 2700, - "2015-01-01": 2700 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.subtractions": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.subtractions", - "description": null, - "label": "subtractions", - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.subtractions.subtractions": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.subtractions.subtractions", - "description": "Georgia subtracts these sources from adjusted gross income.", - "label": "Georgia adjusted gross income subtractions", - "unit": "list", - "period": "year", - "values": { - "2022-01-01": [ - "us_govt_interest", - "ga_retirement_exclusion", - "ga_military_retirement_exclusion", - "taxable_social_security", - "ga_investment_in_529_plan_deduction" - ], - "2021-01-01": [ - "us_govt_interest", - "ga_retirement_exclusion", - "taxable_social_security", - "ga_investment_in_529_plan_deduction" - ], - "2015-01-01": [ - "us_govt_interest", - "ga_retirement_exclusion", - "taxable_social_security", - "ga_investment_in_529_plan_deduction" - ] - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.additions": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.additions", - "description": null, - "label": "additions", - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.additions.additions": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.additions.additions", - "description": "Georgia adds these variables to the federal taxable income when computing the state taxable income.", - "label": "Georgia adjusted gross income additions", - "unit": "list", - "period": null, - "values": { - "2021-01-01": ["form_4972_lumpsum_distributions"], - "2015-01-01": ["form_4972_lumpsum_distributions"] - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.main", - "description": null, - "label": "main", - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.head_of_household": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.main.head_of_household", - "description": "Georgia taxes the personal income of head of household filers at this rate.", - "label": "Georgia income tax rate head of household filers" - }, - "gov.states.ga.tax.income.main.head_of_household[0]": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.main.head_of_household[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ga.tax.income.main.head_of_household[0].rate": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.head_of_household[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2028-01-01": 0.0499, - "2027-01-01": 0.0509, - "2026-01-01": 0.0519, - "2025-01-01": 0.0529, - "2024-01-01": 0.0539, - "2022-01-01": 0.01, - "2015-01-01": 0.01 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.head_of_household[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.head_of_household[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.head_of_household[1]": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.main.head_of_household[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ga.tax.income.main.head_of_household[1].rate": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.head_of_household[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2028-01-01": 0.0499, - "2027-01-01": 0.0509, - "2026-01-01": 0.0519, - "2025-01-01": 0.0529, - "2024-01-01": 0.0539, - "2022-01-01": 0.02, - "2015-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.head_of_household[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.head_of_household[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.head_of_household[2]": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.main.head_of_household[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ga.tax.income.main.head_of_household[2].rate": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.head_of_household[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2028-01-01": 0.0499, - "2027-01-01": 0.0509, - "2026-01-01": 0.0519, - "2025-01-01": 0.0529, - "2024-01-01": 0.0539, - "2022-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.head_of_household[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.head_of_household[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 3000, - "2015-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.head_of_household[3]": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.main.head_of_household[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ga.tax.income.main.head_of_household[3].rate": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.head_of_household[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2028-01-01": 0.0499, - "2027-01-01": 0.0509, - "2026-01-01": 0.0519, - "2025-01-01": 0.0529, - "2024-01-01": 0.0539, - "2022-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.head_of_household[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.head_of_household[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.head_of_household[4]": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.main.head_of_household[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ga.tax.income.main.head_of_household[4].rate": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.head_of_household[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2028-01-01": 0.0499, - "2027-01-01": 0.0509, - "2026-01-01": 0.0519, - "2025-01-01": 0.0529, - "2024-01-01": 0.0539, - "2022-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.head_of_household[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.head_of_household[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 7000, - "2015-01-01": 7000 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.head_of_household[5]": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.main.head_of_household[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ga.tax.income.main.head_of_household[5].rate": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.head_of_household[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2028-01-01": 0.0499, - "2027-01-01": 0.0509, - "2026-01-01": 0.0519, - "2025-01-01": 0.0529, - "2024-01-01": 0.0539, - "2022-01-01": 0.0575, - "2015-01-01": 0.0575 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.head_of_household[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.head_of_household[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.separate": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.main.separate", - "description": "Georgia taxes the personal income of married couples filing separately at this rate.", - "label": "Georgia income tax rate separate filers" - }, - "gov.states.ga.tax.income.main.separate[0]": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.main.separate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ga.tax.income.main.separate[0].rate": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.separate[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2028-01-01": 0.0499, - "2027-01-01": 0.0509, - "2026-01-01": 0.0519, - "2025-01-01": 0.0529, - "2024-01-01": 0.0539, - "2022-01-01": 0.01, - "2015-01-01": 0.01 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.separate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.separate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.separate[1]": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.main.separate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ga.tax.income.main.separate[1].rate": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.separate[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2028-01-01": 0.0499, - "2027-01-01": 0.0509, - "2026-01-01": 0.0519, - "2025-01-01": 0.0529, - "2024-01-01": 0.0539, - "2022-01-01": 0.02, - "2015-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.separate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.separate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.separate[2]": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.main.separate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ga.tax.income.main.separate[2].rate": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.separate[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2028-01-01": 0.0499, - "2027-01-01": 0.0509, - "2026-01-01": 0.0519, - "2025-01-01": 0.0529, - "2024-01-01": 0.0539, - "2022-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.separate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.separate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 1500, - "2015-01-01": 1500 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.separate[3]": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.main.separate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ga.tax.income.main.separate[3].rate": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.separate[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2028-01-01": 0.0499, - "2027-01-01": 0.0509, - "2026-01-01": 0.0519, - "2025-01-01": 0.0529, - "2024-01-01": 0.0539, - "2022-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.separate[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.separate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 2500, - "2015-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.separate[4]": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.main.separate[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ga.tax.income.main.separate[4].rate": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.separate[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2028-01-01": 0.0499, - "2027-01-01": 0.0509, - "2026-01-01": 0.0519, - "2025-01-01": 0.0529, - "2024-01-01": 0.0539, - "2022-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.separate[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.separate[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 3500, - "2015-01-01": 3500 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.separate[5]": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.main.separate[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ga.tax.income.main.separate[5].rate": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.separate[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2028-01-01": 0.0499, - "2027-01-01": 0.0509, - "2026-01-01": 0.0519, - "2025-01-01": 0.0529, - "2024-01-01": 0.0539, - "2022-01-01": 0.0575, - "2015-01-01": 0.0575 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.separate[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.separate[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.joint": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.main.joint", - "description": "Georgia taxes the personal income of joint filers at this rate.", - "label": "Georgia income tax rate joint filers" - }, - "gov.states.ga.tax.income.main.joint[0]": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.main.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ga.tax.income.main.joint[0].rate": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.joint[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2028-01-01": 0.0499, - "2027-01-01": 0.0509, - "2026-01-01": 0.0519, - "2025-01-01": 0.0529, - "2024-01-01": 0.0539, - "2022-01-01": 0.01, - "2015-01-01": 0.01 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.joint[1]": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.main.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ga.tax.income.main.joint[1].rate": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.joint[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2028-01-01": 0.0499, - "2027-01-01": 0.0509, - "2026-01-01": 0.0519, - "2025-01-01": 0.0529, - "2024-01-01": 0.0539, - "2022-01-01": 0.02, - "2015-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.joint[2]": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.main.joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ga.tax.income.main.joint[2].rate": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.joint[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2028-01-01": 0.0499, - "2027-01-01": 0.0509, - "2026-01-01": 0.0519, - "2025-01-01": 0.0529, - "2024-01-01": 0.0539, - "2022-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.joint[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 3000, - "2015-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.joint[3]": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.main.joint[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ga.tax.income.main.joint[3].rate": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.joint[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2028-01-01": 0.0499, - "2027-01-01": 0.0509, - "2026-01-01": 0.0519, - "2025-01-01": 0.0529, - "2024-01-01": 0.0539, - "2022-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.joint[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.joint[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.joint[4]": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.main.joint[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ga.tax.income.main.joint[4].rate": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.joint[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2028-01-01": 0.0499, - "2027-01-01": 0.0509, - "2026-01-01": 0.0519, - "2025-01-01": 0.0529, - "2024-01-01": 0.0539, - "2022-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.joint[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.joint[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 7000, - "2015-01-01": 7000 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.joint[5]": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.main.joint[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ga.tax.income.main.joint[5].rate": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.joint[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2028-01-01": 0.0499, - "2027-01-01": 0.0509, - "2026-01-01": 0.0519, - "2025-01-01": 0.0529, - "2024-01-01": 0.0539, - "2022-01-01": 0.0575, - "2015-01-01": 0.0575 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.joint[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.joint[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.single": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.main.single", - "description": "Georgia taxes the personal income of single filers at this rate.", - "label": "Georgia income tax rate single filers" - }, - "gov.states.ga.tax.income.main.single[0]": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.main.single[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ga.tax.income.main.single[0].rate": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.single[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2028-01-01": 0.0499, - "2027-01-01": 0.0509, - "2026-01-01": 0.0519, - "2025-01-01": 0.0529, - "2024-01-01": 0.0539, - "2022-01-01": 0.01, - "2015-01-01": 0.01 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.single[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.single[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.single[1]": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.main.single[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ga.tax.income.main.single[1].rate": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.single[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2028-01-01": 0.0499, - "2027-01-01": 0.0509, - "2026-01-01": 0.0519, - "2025-01-01": 0.0529, - "2024-01-01": 0.0539, - "2022-01-01": 0.02, - "2015-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.single[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.single[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 750, - "2015-01-01": 750 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.single[2]": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.main.single[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ga.tax.income.main.single[2].rate": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.single[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2028-01-01": 0.0499, - "2027-01-01": 0.0509, - "2026-01-01": 0.0519, - "2025-01-01": 0.0529, - "2024-01-01": 0.0539, - "2022-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.single[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.single[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 2250, - "2015-01-01": 2250 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.single[3]": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.main.single[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ga.tax.income.main.single[3].rate": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.single[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2028-01-01": 0.0499, - "2027-01-01": 0.0509, - "2026-01-01": 0.0519, - "2025-01-01": 0.0529, - "2024-01-01": 0.0539, - "2022-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.single[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.single[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 3750, - "2015-01-01": 3750 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.single[4]": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.main.single[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ga.tax.income.main.single[4].rate": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.single[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2028-01-01": 0.0499, - "2027-01-01": 0.0509, - "2026-01-01": 0.0519, - "2025-01-01": 0.0529, - "2024-01-01": 0.0539, - "2022-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.single[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.single[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 5250, - "2015-01-01": 5250 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.single[5]": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.main.single[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ga.tax.income.main.single[5].rate": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.single[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2028-01-01": 0.0499, - "2027-01-01": 0.0509, - "2026-01-01": 0.0519, - "2025-01-01": 0.0529, - "2024-01-01": 0.0539, - "2022-01-01": 0.0575, - "2015-01-01": 0.0575 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.single[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.single[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 7000, - "2015-01-01": 7000 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.surviving_spouse": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.main.surviving_spouse", - "description": "Georgia taxes the personal income of surviving spouses at this rate.", - "label": "Georgia income tax rate surviving spouse filers" - }, - "gov.states.ga.tax.income.main.surviving_spouse[0]": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.main.surviving_spouse[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ga.tax.income.main.surviving_spouse[0].rate": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.surviving_spouse[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2028-01-01": 0.0499, - "2027-01-01": 0.0509, - "2026-01-01": 0.0519, - "2025-01-01": 0.0529, - "2024-01-01": 0.0539, - "2022-01-01": 0.01, - "2015-01-01": 0.01 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.surviving_spouse[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.surviving_spouse[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.surviving_spouse[1]": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.main.surviving_spouse[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ga.tax.income.main.surviving_spouse[1].rate": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.surviving_spouse[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2028-01-01": 0.0499, - "2027-01-01": 0.0509, - "2026-01-01": 0.0519, - "2025-01-01": 0.0529, - "2024-01-01": 0.0539, - "2022-01-01": 0.02, - "2015-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.surviving_spouse[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.surviving_spouse[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.surviving_spouse[2]": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.main.surviving_spouse[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ga.tax.income.main.surviving_spouse[2].rate": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.surviving_spouse[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2028-01-01": 0.0499, - "2027-01-01": 0.0509, - "2026-01-01": 0.0519, - "2025-01-01": 0.0529, - "2024-01-01": 0.0539, - "2022-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.surviving_spouse[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.surviving_spouse[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 3000, - "2015-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.surviving_spouse[3]": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.main.surviving_spouse[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ga.tax.income.main.surviving_spouse[3].rate": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.surviving_spouse[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2028-01-01": 0.0499, - "2027-01-01": 0.0509, - "2026-01-01": 0.0519, - "2025-01-01": 0.0529, - "2024-01-01": 0.0539, - "2022-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.surviving_spouse[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.surviving_spouse[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.surviving_spouse[4]": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.main.surviving_spouse[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ga.tax.income.main.surviving_spouse[4].rate": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.surviving_spouse[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2028-01-01": 0.0499, - "2027-01-01": 0.0509, - "2026-01-01": 0.0519, - "2025-01-01": 0.0529, - "2024-01-01": 0.0539, - "2022-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.surviving_spouse[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.surviving_spouse[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 7000, - "2015-01-01": 7000 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.surviving_spouse[5]": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.main.surviving_spouse[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ga.tax.income.main.surviving_spouse[5].rate": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.surviving_spouse[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2028-01-01": 0.0499, - "2027-01-01": 0.0509, - "2026-01-01": 0.0519, - "2025-01-01": 0.0529, - "2024-01-01": 0.0539, - "2022-01-01": 0.0575, - "2015-01-01": 0.0575 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.main.surviving_spouse[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.main.surviving_spouse[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.deductions": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.deductions", - "description": null, - "label": "deductions", - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.deductions.standard": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.deductions.standard", - "description": null, - "label": "standard", - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.deductions.standard.aged": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.deductions.standard.aged", - "description": null, - "label": "aged", - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.deductions.standard.aged.amount": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.deductions.standard.aged.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.deductions.standard.aged.amount.spouse": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.deductions.standard.aged.amount.spouse", - "description": "Georgia provides this additional standard deduction for the aged spouse.", - "label": "Georgia additional standard deduction for aged spouse", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 1300, - "2015-01-01": 1300 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.deductions.standard.aged.amount.head": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.deductions.standard.aged.amount.head", - "description": "Georgia provides this additional standard deduction for aged filers.", - "label": "Georgia additional standard deduction for aged head", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 1300, - "2015-01-01": 1300 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.deductions.standard.aged.age_threshold": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.deductions.standard.aged.age_threshold", - "description": "Georgia provides additional standard deduction for the taxpayer or spouse at or above the following age.", - "label": "Georgia additional standard deduction age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.deductions.standard.blind": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.deductions.standard.blind", - "description": null, - "label": "blind", - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.deductions.standard.blind.spouse": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.deductions.standard.blind.spouse", - "description": "Georgia allows for this additional standard deduction for the blind spouse.", - "label": "Georgia additional standard deduction for blind spouse", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 1300, - "2015-01-01": 1300 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.deductions.standard.blind.head": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.deductions.standard.blind.head", - "description": "Georgia allows for this additional standard deduction for blind filers.", - "label": "Georgia additional standard deduction for blind head", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 1300, - "2015-01-01": 1300 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.deductions.standard.amount": { - "type": "parameterNode", - "parameter": "gov.states.ga.tax.income.deductions.standard.amount", - "description": "Georgia provides filers a standard deduction of this amount, depending on filing status.", - "label": "Georgia standard deduction amount", - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.deductions.standard.amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.deductions.standard.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 24000, - "2022-01-01": 7100, - "2021-01-01": 6000, - "2015-01-01": 6000 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.deductions.standard.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.deductions.standard.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2024-01-01": 12000, - "2022-01-01": 5400, - "2021-01-01": 4600, - "2015-01-01": 4600 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.deductions.standard.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.deductions.standard.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 12000, - "2022-01-01": 5400, - "2021-01-01": 4600, - "2015-01-01": 4600 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.deductions.standard.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.deductions.standard.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 12000, - "2022-01-01": 3550, - "2021-01-01": 3000, - "2015-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.deductions.standard.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.deductions.standard.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 12000, - "2022-01-01": 5400, - "2021-01-01": 4600, - "2015-01-01": 4600 - }, - "economy": true, - "household": true - }, - "gov.states.ga.tax.income.deductions.standard.applies": { - "type": "parameter", - "parameter": "gov.states.ga.tax.income.deductions.standard.applies", - "description": "Georgia provides an additional standard deduction for filers and their spouses who are over 65 or blind, if this is true.", - "label": "Georgia additional standard deduction for over 65 or blind applies", - "unit": "bool", - "period": "year", - "values": { - "2024-01-01": false, - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.states.vt": { - "type": "parameterNode", - "parameter": "gov.states.vt", - "description": null, - "label": "Vermont", - "economy": true, - "household": true - }, - "gov.states.vt.tax": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.agi": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.agi", - "description": null, - "label": "agi", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.agi.subtractions": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.agi.subtractions", - "description": "Vermont subtracts these sources from adjusted gross income.", - "label": "Vermont subtractions", - "unit": "list", - "period": null, - "values": { - "2021-01-01": [ - "us_govt_interest", - "vt_medical_expense_deduction", - "student_loan_interest", - "vt_capital_gains_exclusion", - "vt_retirement_income_exemption" - ], - "2015-01-01": [ - "us_govt_interest", - "vt_medical_expense_deduction", - "student_loan_interest", - "vt_capital_gains_exclusion", - "vt_retirement_income_exemption" - ] - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.agi.exclusions": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.agi.exclusions", - "description": null, - "label": "exclusions", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.agi.exclusions.capital_gain": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.agi.exclusions.capital_gain", - "description": null, - "label": "capital gain", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.agi.exclusions.capital_gain.percentage": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.agi.exclusions.capital_gain.percentage", - "description": null, - "label": "percentage", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.agi.exclusions.capital_gain.percentage.cap": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.agi.exclusions.capital_gain.percentage.cap", - "description": "Vermont caps the capital gains percentage exclusion at this amount.", - "label": "Vermont capital gains percentage exclusion max amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 350000, - "2015-01-01": 350000 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.agi.exclusions.capital_gain.percentage.rate": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.agi.exclusions.capital_gain.percentage.rate", - "description": "Vermont multiplies the adjusted net capital gains by this rate under the capital gains percentage exclusion.", - "label": "Vermont capital gains percentage exclusion calculation rate", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.4, - "2015-01-01": 0.4 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.agi.exclusions.capital_gain.income_share_cap": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.agi.exclusions.capital_gain.income_share_cap", - "description": "Vermont caps the net capital gains exclusion at this fraction of federal taxable income.", - "label": "Vermont capital gains exclusion cap as fraction of taxable income", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.4, - "2015-01-01": 0.4 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.agi.exclusions.capital_gain.flat": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.agi.exclusions.capital_gain.flat", - "description": null, - "label": "flat", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.agi.exclusions.capital_gain.flat.cap": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.agi.exclusions.capital_gain.flat.cap", - "description": "Vermont caps the flat capital gains exclusion at this amount.", - "label": "Vermont flat capital gains exclusion cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.agi.retirement_income_exemption": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.agi.retirement_income_exemption", - "description": null, - "label": "retirement income exemption", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.agi.retirement_income_exemption.csrs": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.agi.retirement_income_exemption.csrs", - "description": null, - "label": "csrs", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.agi.retirement_income_exemption.csrs.reduction": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.agi.retirement_income_exemption.csrs.reduction", - "description": null, - "label": "reduction", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.agi.retirement_income_exemption.csrs.reduction.start": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.agi.retirement_income_exemption.csrs.reduction.start", - "description": "Vermont reduces the retirement income exemption from Civil Service Retirement System (CSRS) and military retirement for filers with income above this threshold, based on filing status.", - "label": "Vermont CSRS and military retirement income exemption reduction threshold", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.agi.retirement_income_exemption.csrs.reduction.start.JOINT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.agi.retirement_income_exemption.csrs.reduction.start.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2022-01-01": 65000, - "2021-01-01": 60000, - "2015-01-01": 60000 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.agi.retirement_income_exemption.csrs.reduction.start.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.agi.retirement_income_exemption.csrs.reduction.start.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2022-01-01": 50000, - "2021-01-01": 45000, - "2015-01-01": 45000 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.agi.retirement_income_exemption.csrs.reduction.start.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.agi.retirement_income_exemption.csrs.reduction.start.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 50000, - "2021-01-01": 45000, - "2015-01-01": 45000 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.agi.retirement_income_exemption.csrs.reduction.start.SINGLE": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.agi.retirement_income_exemption.csrs.reduction.start.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 50000, - "2021-01-01": 45000, - "2015-01-01": 45000 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.agi.retirement_income_exemption.csrs.reduction.start.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.agi.retirement_income_exemption.csrs.reduction.start.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 50000, - "2021-01-01": 45000, - "2015-01-01": 45000 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.agi.retirement_income_exemption.csrs.reduction.end": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.agi.retirement_income_exemption.csrs.reduction.end", - "description": "Vermont qualifies filers for the retirement income exemption from Civil Service Retirement System (CSRS) and military retirement with income below this threshold, based on filing status.", - "label": "Vermont CSRS and military retirement income exemption income threshold", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.agi.retirement_income_exemption.csrs.reduction.end.JOINT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.agi.retirement_income_exemption.csrs.reduction.end.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2022-01-01": 75000, - "2021-01-01": 70000, - "2015-01-01": 70000 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.agi.retirement_income_exemption.csrs.reduction.end.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.agi.retirement_income_exemption.csrs.reduction.end.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2022-01-01": 60000, - "2021-01-01": 55000, - "2015-01-01": 55000 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.agi.retirement_income_exemption.csrs.reduction.end.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.agi.retirement_income_exemption.csrs.reduction.end.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 60000, - "2021-01-01": 55000, - "2015-01-01": 55000 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.agi.retirement_income_exemption.csrs.reduction.end.SINGLE": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.agi.retirement_income_exemption.csrs.reduction.end.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 60000, - "2021-01-01": 55000, - "2015-01-01": 55000 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.agi.retirement_income_exemption.csrs.reduction.end.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.agi.retirement_income_exemption.csrs.reduction.end.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 60000, - "2021-01-01": 55000, - "2015-01-01": 55000 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.agi.retirement_income_exemption.csrs.amount": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.agi.retirement_income_exemption.csrs.amount", - "description": "Vermont caps the retirement income exemption from Civil Service Retirement System (CSRS) retirement system at this amount.", - "label": "Vermont CSRS retirement income exemption cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2022-01-01": 10000, - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.agi.retirement_income_exemption.divisor": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.agi.retirement_income_exemption.divisor", - "description": "Vermont divides the retirement income by this amount under the retirement income exemption.", - "label": "Vermont retirement income exemption divisor", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.agi.retirement_income_exemption.military_retirement": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.agi.retirement_income_exemption.military_retirement", - "description": null, - "label": "military retirement", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.agi.retirement_income_exemption.military_retirement.income_based_structure": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.agi.retirement_income_exemption.military_retirement.income_based_structure", - "description": null, - "label": "income based structure", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.agi.retirement_income_exemption.military_retirement.income_based_structure.in_effect": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.agi.retirement_income_exemption.military_retirement.income_based_structure.in_effect", - "description": "Vermont implements an income-based military pension exemption structure, if this is true.", - "label": "Vermont military pension income-based exemption structure in effect", - "unit": "bool", - "period": "year", - "values": { - "2025-01-01": true, - "2021-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.agi.retirement_income_exemption.military_retirement.partial_exemption_threshold": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.agi.retirement_income_exemption.military_retirement.partial_exemption_threshold", - "description": "Vermont partially exempts military pensions from state taxation for households with adjusted gross income below this threshold.", - "label": "Vermont military pension partial exemption AGI threshold", - "unit": "currency-USD", - "period": "year", - "values": { - "2025-01-01": 175000, - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.agi.retirement_income_exemption.military_retirement.full_exemption_threshold": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.agi.retirement_income_exemption.military_retirement.full_exemption_threshold", - "description": "Vermont fully exempts military pensions from state taxation for households with adjusted gross income below this threshold.", - "label": "Vermont military pension full exemption AGI threshold", - "unit": "currency-USD", - "period": "year", - "values": { - "2025-01-01": 125000, - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.agi.retirement_income_exemption.military_retirement.amount": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.agi.retirement_income_exemption.military_retirement.amount", - "description": "Vermont caps the retirement income exemption from military retirement system at this amount.", - "label": "Vermont military retirement income exemption cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2022-01-01": 10000, - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.agi.retirement_income_exemption.social_security": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.agi.retirement_income_exemption.social_security", - "description": null, - "label": "social security", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.agi.retirement_income_exemption.social_security.reduction": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.agi.retirement_income_exemption.social_security.reduction", - "description": null, - "label": "reduction", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.agi.retirement_income_exemption.social_security.reduction.start": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.agi.retirement_income_exemption.social_security.reduction.start", - "description": "Vermont reduces the retirement income exemption from social security for filers with income above this threshold, based on filing status.", - "label": "Vermont social security retirement income exemption reduction threshold", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.agi.retirement_income_exemption.social_security.reduction.start.JOINT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.agi.retirement_income_exemption.social_security.reduction.start.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2025-01-01": 70000, - "2022-01-01": 65000, - "2021-01-01": 60000, - "2015-01-01": 60000 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.agi.retirement_income_exemption.social_security.reduction.start.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.agi.retirement_income_exemption.social_security.reduction.start.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2025-01-01": 55000, - "2022-01-01": 50000, - "2021-01-01": 45000, - "2015-01-01": 45000 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.agi.retirement_income_exemption.social_security.reduction.start.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.agi.retirement_income_exemption.social_security.reduction.start.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2025-01-01": 55000, - "2022-01-01": 50000, - "2021-01-01": 45000, - "2015-01-01": 45000 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.agi.retirement_income_exemption.social_security.reduction.start.SINGLE": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.agi.retirement_income_exemption.social_security.reduction.start.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2025-01-01": 55000, - "2022-01-01": 50000, - "2021-01-01": 45000, - "2015-01-01": 45000 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.agi.retirement_income_exemption.social_security.reduction.start.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.agi.retirement_income_exemption.social_security.reduction.start.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2025-01-01": 55000, - "2022-01-01": 50000, - "2021-01-01": 45000, - "2015-01-01": 45000 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.agi.retirement_income_exemption.social_security.reduction.end": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.agi.retirement_income_exemption.social_security.reduction.end", - "description": "Vermont qualifies filers for the retirement income exemption from social security with income below this threshold, based on filing status.", - "label": "Vermont social security retirement income exemption income threshold", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.agi.retirement_income_exemption.social_security.reduction.end.JOINT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.agi.retirement_income_exemption.social_security.reduction.end.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2025-01-01": 80000, - "2022-01-01": 75000, - "2021-01-01": 70000, - "2015-01-01": 70000 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.agi.retirement_income_exemption.social_security.reduction.end.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.agi.retirement_income_exemption.social_security.reduction.end.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2025-01-01": 65000, - "2022-01-01": 60000, - "2021-01-01": 55000, - "2015-01-01": 55000 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.agi.retirement_income_exemption.social_security.reduction.end.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.agi.retirement_income_exemption.social_security.reduction.end.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2025-01-01": 65000, - "2022-01-01": 60000, - "2021-01-01": 55000, - "2015-01-01": 55000 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.agi.retirement_income_exemption.social_security.reduction.end.SINGLE": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.agi.retirement_income_exemption.social_security.reduction.end.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2025-01-01": 65000, - "2022-01-01": 60000, - "2021-01-01": 55000, - "2015-01-01": 55000 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.agi.retirement_income_exemption.social_security.reduction.end.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.agi.retirement_income_exemption.social_security.reduction.end.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2025-01-01": 65000, - "2022-01-01": 60000, - "2021-01-01": 55000, - "2015-01-01": 55000 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.credits", - "description": null, - "label": "credits", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.eitc": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.credits.eitc", - "description": null, - "label": "eitc", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.eitc.enhanced_structure": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.credits.eitc.enhanced_structure", - "description": null, - "label": "enhanced structure", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.eitc.enhanced_structure.in_effect": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.eitc.enhanced_structure.in_effect", - "description": "Vermont implements the enhanced earned income tax credit for workers without children, if this is true.", - "label": "Vermont enhanced EITC in effect", - "unit": "bool", - "period": "year", - "values": { - "2025-01-01": true, - "2021-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.eitc.enhanced_structure.rate": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.credits.eitc.enhanced_structure.rate", - "description": "Vermont enhanced EITC match rate based on number of child dependents.", - "label": "Vermont enhanced EITC rate" - }, - "gov.states.vt.tax.income.credits.eitc.enhanced_structure.rate[0]": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.credits.eitc.enhanced_structure.rate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.vt.tax.income.credits.eitc.enhanced_structure.rate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.eitc.enhanced_structure.rate[0].threshold", - "description": null, - "label": "threshold", - "unit": "person", - "period": null, - "values": { - "2025-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.eitc.enhanced_structure.rate[0].amount": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.eitc.enhanced_structure.rate[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2025-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.eitc.enhanced_structure.rate[1]": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.credits.eitc.enhanced_structure.rate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.vt.tax.income.credits.eitc.enhanced_structure.rate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.eitc.enhanced_structure.rate[1].threshold", - "description": null, - "label": "threshold", - "unit": "person", - "period": null, - "values": { - "2025-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.eitc.enhanced_structure.rate[1].amount": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.eitc.enhanced_structure.rate[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2025-01-01": 0.38, - "2015-01-01": 0.38 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.eitc.match": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.eitc.match", - "description": "Vermont matches this fraction of the federal earned income tax credit.", - "label": "Vermont earned income tax credit match", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.38, - "2021-01-01": 0.36, - "2015-01-01": 0.36 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.refundable": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.refundable", - "description": "Vermont provides these tax credits as refundable credits.", - "label": "Vermont refundable tax credits", - "unit": "list", - "period": null, - "values": { - "2025-01-01": ["vt_eitc", "vt_cdcc", "vt_ctc", "vt_veteran_tax_credit"], - "2022-01-01": ["vt_eitc", "vt_cdcc", "vt_ctc"], - "2021-01-01": ["vt_eitc", "vt_low_income_cdcc"], - "2015-01-01": ["vt_eitc", "vt_low_income_cdcc"] - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.charitable": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.credits.charitable", - "description": "Vermont provides a credit for this fraction of charitable contributions, depending on the amount.", - "label": "Vermont charitable contribution credit rate" - }, - "gov.states.vt.tax.income.credits.charitable[0]": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.credits.charitable[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.vt.tax.income.credits.charitable[0].rate": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.charitable[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.charitable[0].threshold": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.charitable[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.charitable[1]": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.credits.charitable[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.vt.tax.income.credits.charitable[1].rate": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.charitable[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.charitable[1].threshold": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.charitable[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2018-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.ctc": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.credits.ctc", - "description": null, - "label": "Child Tax Credit", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.ctc.reduction": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.credits.ctc.reduction", - "description": null, - "label": "reduction", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.ctc.reduction.increment": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.ctc.reduction.increment", - "description": "Vermont reduces the Child Tax Credit for each of these increments of adjusted gross income exceeding the threshold.", - "label": "Vermont CTC reduction increment", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.ctc.reduction.start": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.ctc.reduction.start", - "description": "Vermont reduces the Child Tax Credit for filers with adjusted gross income above this amount.", - "label": "Vermont CTC reduction threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 125000, - "2015-01-01": 125000 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.ctc.reduction.amount": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.ctc.reduction.amount", - "description": "Vermont reduces the Child Tax Credit by this amount for each increment of adjusted gross income exceeding the threshold.", - "label": "Vermont CTC reduction amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 20, - "2015-01-01": 20 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.ctc.age_limit": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.ctc.age_limit", - "description": "Vermont limits its Child Tax Credit to children this age or younger.", - "label": "Vermont CTC age limit", - "unit": "year", - "period": null, - "values": { - "2025-01-01": 6, - "2022-01-01": 5, - "2015-01-01": 5 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.ctc.amount": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.ctc.amount", - "description": "Vermont provides this amount per qualifying child under the Child Tax Credit.", - "label": "Vermont CTC amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.cdcc": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.credits.cdcc", - "description": null, - "label": "cdcc", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.cdcc.low_income": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.credits.cdcc.low_income", - "description": null, - "label": "low income", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.cdcc.low_income.income_threshold": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.credits.cdcc.low_income.income_threshold", - "description": "Vermont limits the low-income Child and Dependent Care Credit to filers with federal adjusted gross income less than this amount.", - "label": "Vermont low-income CDCC AGI limit", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.cdcc.low_income.income_threshold.JOINT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.cdcc.low_income.income_threshold.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2005-01-01": 40000 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.cdcc.low_income.income_threshold.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.cdcc.low_income.income_threshold.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2005-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.cdcc.low_income.income_threshold.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.cdcc.low_income.income_threshold.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2005-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.cdcc.low_income.income_threshold.SINGLE": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.cdcc.low_income.income_threshold.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2005-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.cdcc.low_income.income_threshold.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.cdcc.low_income.income_threshold.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2005-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.cdcc.low_income.rate": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.cdcc.low_income.rate", - "description": "Vermont matches this percent of the federal Child and Cependent Care Credit for low-income filers.", - "label": "Vermont low-income CDCC match", - "unit": "/1", - "period": null, - "values": { - "2005-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.cdcc.rate": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.cdcc.rate", - "description": "Vermont matches this percent of the federal Child and Dependent Care Credit.", - "label": "Vermont CDCC match", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.72, - "2015-01-01": 0.72 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.credits.renter", - "description": null, - "label": "renter", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fmr_rate": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fmr_rate", - "description": "Vermont provides a renter credit of this fraction of fair market rent.", - "label": "Vermont renter credit fair market rent rate", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami", - "description": null, - "label": "income limit ami", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent", - "description": "Vermont limits the full renter credit to filers with income below this threshold, based on the county and household size.", - "label": "Vermont full renter credit income limit", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.1": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.1.ADDISON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.1.ADDISON_COUNTY_VT", - "description": null, - "label": "ADDISON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 22900, - "2023-01-01": 20850, - "2022-01-01": 19700, - "2021-01-01": 17600, - "2015-01-01": 17600 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.1.BENNINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.1.BENNINGTON_COUNTY_VT", - "description": null, - "label": "BENNINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 20950, - "2023-01-01": 19050, - "2022-01-01": 18000, - "2021-01-01": 16450, - "2015-01-01": 16450 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.1.CALEDONIA_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.1.CALEDONIA_COUNTY_VT", - "description": null, - "label": "CALEDONIA COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 19950, - "2023-01-01": 19050, - "2022-01-01": 18000, - "2021-01-01": 16450, - "2015-01-01": 16450 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.1.CHITTENDEN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.1.CHITTENDEN_COUNTY_VT", - "description": null, - "label": "CHITTENDEN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 25000, - "2023-01-01": 23900, - "2022-01-01": 22550, - "2021-01-01": 20150, - "2015-01-01": 20150 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.1.ESSEX_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.1.ESSEX_COUNTY_VT", - "description": null, - "label": "ESSEX COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 19950, - "2023-01-01": 19050, - "2022-01-01": 18000, - "2021-01-01": 16450, - "2015-01-01": 16450 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.1.FRANKLIN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.1.FRANKLIN_COUNTY_VT", - "description": null, - "label": "FRANKLIN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 20980, - "2023-01-01": 19760, - "2022-01-01": 18670, - "2021-01-01": 16940, - "2015-01-01": 16940 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.1.GRAND_ISLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.1.GRAND_ISLE_COUNTY_VT", - "description": null, - "label": "GRAND ISLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 20980, - "2023-01-01": 19760, - "2022-01-01": 18670, - "2021-01-01": 16940, - "2015-01-01": 16940 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.1.LAMOILLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.1.LAMOILLE_COUNTY_VT", - "description": null, - "label": "LAMOILLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 19950, - "2023-01-01": 19050, - "2022-01-01": 18000, - "2021-01-01": 16450, - "2015-01-01": 16450 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.1.ORANGE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.1.ORANGE_COUNTY_VT", - "description": null, - "label": "ORANGE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 19950, - "2023-01-01": 19050, - "2022-01-01": 18000, - "2021-01-01": 16450, - "2015-01-01": 16450 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.1.ORLEANS_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.1.ORLEANS_COUNTY_VT", - "description": null, - "label": "ORLEANS COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 19950, - "2023-01-01": 19050, - "2022-01-01": 18000, - "2021-01-01": 16450, - "2015-01-01": 16450 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.1.RUTLAND_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.1.RUTLAND_COUNTY_VT", - "description": null, - "label": "RUTLAND COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 19950, - "2023-01-01": 19050, - "2022-01-01": 18000, - "2021-01-01": 16450, - "2015-01-01": 16450 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.1.WASHINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.1.WASHINGTON_COUNTY_VT", - "description": null, - "label": "WASHINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 22150, - "2023-01-01": 20350, - "2022-01-01": 19200, - "2021-01-01": 17300, - "2015-01-01": 17300 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.1.WINDHAM_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.1.WINDHAM_COUNTY_VT", - "description": null, - "label": "WINDHAM COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 19950, - "2023-01-01": 19050, - "2022-01-01": 18000, - "2021-01-01": 16450, - "2015-01-01": 16450 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.1.WINDSOR_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.1.WINDSOR_COUNTY_VT", - "description": null, - "label": "WINDSOR COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 21150, - "2023-01-01": 19600, - "2022-01-01": 18550, - "2021-01-01": 16600, - "2015-01-01": 16600 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.2": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.2.ADDISON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.2.ADDISON_COUNTY_VT", - "description": null, - "label": "ADDISON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 26200, - "2023-01-01": 23800, - "2022-01-01": 22500, - "2021-01-01": 20100, - "2015-01-01": 20100 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.2.BENNINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.2.BENNINGTON_COUNTY_VT", - "description": null, - "label": "BENNINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 23950, - "2023-01-01": 21800, - "2022-01-01": 20600, - "2021-01-01": 18800, - "2015-01-01": 18800 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.2.CALEDONIA_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.2.CALEDONIA_COUNTY_VT", - "description": null, - "label": "CALEDONIA COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 22800, - "2023-01-01": 21800, - "2022-01-01": 20600, - "2021-01-01": 18800, - "2015-01-01": 18800 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.2.CHITTENDEN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.2.CHITTENDEN_COUNTY_VT", - "description": null, - "label": "CHITTENDEN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 28550, - "2023-01-01": 27300, - "2022-01-01": 25800, - "2021-01-01": 23000, - "2015-01-01": 23000 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.2.ESSEX_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.2.ESSEX_COUNTY_VT", - "description": null, - "label": "ESSEX COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 22800, - "2023-01-01": 21800, - "2022-01-01": 20600, - "2021-01-01": 18800, - "2015-01-01": 18800 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.2.FRANKLIN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.2.FRANKLIN_COUNTY_VT", - "description": null, - "label": "FRANKLIN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 23980, - "2023-01-01": 22600, - "2022-01-01": 21350, - "2021-01-01": 19350, - "2015-01-01": 19350 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.2.GRAND_ISLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.2.GRAND_ISLE_COUNTY_VT", - "description": null, - "label": "GRAND ISLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 23980, - "2023-01-01": 22600, - "2022-01-01": 21350, - "2021-01-01": 19350, - "2015-01-01": 19350 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.2.LAMOILLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.2.LAMOILLE_COUNTY_VT", - "description": null, - "label": "LAMOILLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 22800, - "2023-01-01": 21800, - "2022-01-01": 20600, - "2021-01-01": 18800, - "2015-01-01": 18800 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.2.ORANGE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.2.ORANGE_COUNTY_VT", - "description": null, - "label": "ORANGE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 22800, - "2023-01-01": 21800, - "2022-01-01": 20600, - "2021-01-01": 18800, - "2015-01-01": 18800 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.2.ORLEANS_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.2.ORLEANS_COUNTY_VT", - "description": null, - "label": "ORLEANS COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 22800, - "2023-01-01": 21800, - "2022-01-01": 20600, - "2021-01-01": 18800, - "2015-01-01": 18800 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.2.RUTLAND_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.2.RUTLAND_COUNTY_VT", - "description": null, - "label": "RUTLAND COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 22800, - "2023-01-01": 21800, - "2022-01-01": 20600, - "2021-01-01": 18800, - "2015-01-01": 18800 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.2.WASHINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.2.WASHINGTON_COUNTY_VT", - "description": null, - "label": "WASHINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 25300, - "2023-01-01": 23250, - "2022-01-01": 21950, - "2021-01-01": 19750, - "2015-01-01": 19750 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.2.WINDHAM_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.2.WINDHAM_COUNTY_VT", - "description": null, - "label": "WINDHAM COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 22800, - "2023-01-01": 21800, - "2022-01-01": 20600, - "2021-01-01": 18800, - "2015-01-01": 18800 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.2.WINDSOR_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.2.WINDSOR_COUNTY_VT", - "description": null, - "label": "WINDSOR COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 24150, - "2023-01-01": 22400, - "2022-01-01": 21200, - "2021-01-01": 18950, - "2015-01-01": 18950 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.3": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.3.ADDISON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.3.ADDISON_COUNTY_VT", - "description": null, - "label": "ADDISON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 29450, - "2023-01-01": 26800, - "2022-01-01": 25300, - "2021-01-01": 22600, - "2015-01-01": 22600 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.3.BENNINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.3.BENNINGTON_COUNTY_VT", - "description": null, - "label": "BENNINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 26950, - "2023-01-01": 24860, - "2022-01-01": 23150, - "2021-01-01": 21960, - "2015-01-01": 21960 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.3.CALEDONIA_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.3.CALEDONIA_COUNTY_VT", - "description": null, - "label": "CALEDONIA COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 25820, - "2023-01-01": 24860, - "2022-01-01": 23150, - "2021-01-01": 21960, - "2015-01-01": 21960 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.3.CHITTENDEN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.3.CHITTENDEN_COUNTY_VT", - "description": null, - "label": "CHITTENDEN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 32100, - "2023-01-01": 30700, - "2022-01-01": 29000, - "2021-01-01": 25900, - "2015-01-01": 25900 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.3.ESSEX_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.3.ESSEX_COUNTY_VT", - "description": null, - "label": "ESSEX COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 25820, - "2023-01-01": 24860, - "2022-01-01": 23150, - "2021-01-01": 21960, - "2015-01-01": 21960 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.3.FRANKLIN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.3.FRANKLIN_COUNTY_VT", - "description": null, - "label": "FRANKLIN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 27070, - "2023-01-01": 25640, - "2022-01-01": 24000, - "2021-01-01": 22360, - "2015-01-01": 22360 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.3.GRAND_ISLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.3.GRAND_ISLE_COUNTY_VT", - "description": null, - "label": "GRAND ISLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 27070, - "2023-01-01": 25640, - "2022-01-01": 24000, - "2021-01-01": 22360, - "2015-01-01": 22360 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.3.LAMOILLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.3.LAMOILLE_COUNTY_VT", - "description": null, - "label": "LAMOILLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 25820, - "2023-01-01": 24860, - "2022-01-01": 23150, - "2021-01-01": 21960, - "2015-01-01": 21960 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.3.ORANGE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.3.ORANGE_COUNTY_VT", - "description": null, - "label": "ORANGE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 25820, - "2023-01-01": 24860, - "2022-01-01": 23150, - "2021-01-01": 21960, - "2015-01-01": 21960 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.3.ORLEANS_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.3.ORLEANS_COUNTY_VT", - "description": null, - "label": "ORLEANS COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 25820, - "2023-01-01": 24860, - "2022-01-01": 23150, - "2021-01-01": 21960, - "2015-01-01": 21960 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.3.RUTLAND_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.3.RUTLAND_COUNTY_VT", - "description": null, - "label": "RUTLAND COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 25820, - "2023-01-01": 24860, - "2022-01-01": 23150, - "2021-01-01": 21960, - "2015-01-01": 21960 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.3.WASHINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.3.WASHINGTON_COUNTY_VT", - "description": null, - "label": "WASHINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 28450, - "2023-01-01": 26150, - "2022-01-01": 24700, - "2021-01-01": 22200, - "2015-01-01": 22200 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.3.WINDHAM_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.3.WINDHAM_COUNTY_VT", - "description": null, - "label": "WINDHAM COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 25820, - "2023-01-01": 24860, - "2022-01-01": 23150, - "2021-01-01": 21960, - "2015-01-01": 21960 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.3.WINDSOR_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.3.WINDSOR_COUNTY_VT", - "description": null, - "label": "WINDSOR COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 27150, - "2023-01-01": 25200, - "2022-01-01": 23850, - "2021-01-01": 21960, - "2015-01-01": 21960 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.4": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.4.ADDISON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.4.ADDISON_COUNTY_VT", - "description": null, - "label": "ADDISON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 32700, - "2023-01-01": 30000, - "2022-01-01": 28100, - "2021-01-01": 26500, - "2015-01-01": 26500 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.4.BENNINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.4.BENNINGTON_COUNTY_VT", - "description": null, - "label": "BENNINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 31200, - "2023-01-01": 30000, - "2022-01-01": 27750, - "2021-01-01": 26500, - "2015-01-01": 26500 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.4.CALEDONIA_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.4.CALEDONIA_COUNTY_VT", - "description": null, - "label": "CALEDONIA COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 30000, - "2023-01-01": 30000, - "2022-01-01": 27750, - "2021-01-01": 26500, - "2015-01-01": 26500 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.4.CHITTENDEN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.4.CHITTENDEN_COUNTY_VT", - "description": null, - "label": "CHITTENDEN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 35650, - "2023-01-01": 34100, - "2022-01-01": 32200, - "2021-01-01": 28750, - "2015-01-01": 28750 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.4.ESSEX_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.4.ESSEX_COUNTY_VT", - "description": null, - "label": "ESSEX COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 31200, - "2023-01-01": 30000, - "2022-01-01": 27750, - "2021-01-01": 26500, - "2015-01-01": 26500 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.4.FRANKLIN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.4.FRANKLIN_COUNTY_VT", - "description": null, - "label": "FRANKLIN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 31730, - "2023-01-01": 30340, - "2022-01-01": 28150, - "2021-01-01": 26690, - "2015-01-01": 26690 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.4.GRAND_ISLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.4.GRAND_ISLE_COUNTY_VT", - "description": null, - "label": "GRAND ISLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 31730, - "2023-01-01": 30340, - "2022-01-01": 28150, - "2021-01-01": 26690, - "2015-01-01": 26690 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.4.LAMOILLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.4.LAMOILLE_COUNTY_VT", - "description": null, - "label": "LAMOILLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 31200, - "2023-01-01": 30000, - "2022-01-01": 27750, - "2021-01-01": 26500, - "2015-01-01": 26500 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.4.ORANGE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.4.ORANGE_COUNTY_VT", - "description": null, - "label": "ORANGE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 31200, - "2023-01-01": 30000, - "2022-01-01": 27750, - "2021-01-01": 26500, - "2015-01-01": 26500 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.4.ORLEANS_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.4.ORLEANS_COUNTY_VT", - "description": null, - "label": "ORLEANS COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 31200, - "2023-01-01": 30000, - "2022-01-01": 27750, - "2021-01-01": 26500, - "2015-01-01": 26500 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.4.RUTLAND_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.4.RUTLAND_COUNTY_VT", - "description": null, - "label": "RUTLAND COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 31200, - "2023-01-01": 30000, - "2022-01-01": 27750, - "2021-01-01": 26500, - "2015-01-01": 26500 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.4.WASHINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.4.WASHINGTON_COUNTY_VT", - "description": null, - "label": "WASHINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 31600, - "2023-01-01": 30000, - "2022-01-01": 27750, - "2021-01-01": 26500, - "2015-01-01": 26500 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.4.WINDHAM_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.4.WINDHAM_COUNTY_VT", - "description": null, - "label": "WINDHAM COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 31200, - "2023-01-01": 30000, - "2022-01-01": 27750, - "2021-01-01": 26500, - "2015-01-01": 26500 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.4.WINDSOR_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.4.WINDSOR_COUNTY_VT", - "description": null, - "label": "WINDSOR COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 31200, - "2023-01-01": 30000, - "2022-01-01": 27750, - "2021-01-01": 26500, - "2015-01-01": 26500 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.5": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.5.ADDISON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.5.ADDISON_COUNTY_VT", - "description": null, - "label": "ADDISON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 36580, - "2023-01-01": 35140, - "2022-01-01": 32470, - "2021-01-01": 31040, - "2015-01-01": 31040 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.5.BENNINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.5.BENNINGTON_COUNTY_VT", - "description": null, - "label": "BENNINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 36580, - "2023-01-01": 35140, - "2022-01-01": 32470, - "2021-01-01": 31040, - "2015-01-01": 31040 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.5.CALEDONIA_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.5.CALEDONIA_COUNTY_VT", - "description": null, - "label": "CALEDONIA COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 36580, - "2023-01-01": 35140, - "2022-01-01": 32470, - "2021-01-01": 31040, - "2015-01-01": 31040 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.5.CHITTENDEN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.5.CHITTENDEN_COUNTY_VT", - "description": null, - "label": "CHITTENDEN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 38550, - "2023-01-01": 36850, - "2022-01-01": 34800, - "2021-01-01": 31040, - "2015-01-01": 31040 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.5.ESSEX_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.5.ESSEX_COUNTY_VT", - "description": null, - "label": "ESSEX COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 36580, - "2023-01-01": 35140, - "2022-01-01": 32470, - "2021-01-01": 31040, - "2015-01-01": 31040 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.5.FRANKLIN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.5.FRANKLIN_COUNTY_VT", - "description": null, - "label": "FRANKLIN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 36740, - "2023-01-01": 35280, - "2022-01-01": 32660, - "2021-01-01": 31040, - "2015-01-01": 31040 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.5.GRAND_ISLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.5.GRAND_ISLE_COUNTY_VT", - "description": null, - "label": "GRAND ISLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 36740, - "2023-01-01": 35280, - "2022-01-01": 32660, - "2021-01-01": 31040, - "2015-01-01": 31040 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.5.LAMOILLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.5.LAMOILLE_COUNTY_VT", - "description": null, - "label": "LAMOILLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 36580, - "2023-01-01": 35140, - "2022-01-01": 32470, - "2021-01-01": 31040, - "2015-01-01": 31040 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.5.ORANGE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.5.ORANGE_COUNTY_VT", - "description": null, - "label": "ORANGE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 36580, - "2023-01-01": 35140, - "2022-01-01": 32470, - "2021-01-01": 31040, - "2015-01-01": 31040 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.5.ORLEANS_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.5.ORLEANS_COUNTY_VT", - "description": null, - "label": "ORLEANS COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 36580, - "2023-01-01": 35140, - "2022-01-01": 32470, - "2021-01-01": 31040, - "2015-01-01": 31040 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.5.RUTLAND_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.5.RUTLAND_COUNTY_VT", - "description": null, - "label": "RUTLAND COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 36580, - "2023-01-01": 35140, - "2022-01-01": 32470, - "2021-01-01": 31040, - "2015-01-01": 31040 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.5.WASHINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.5.WASHINGTON_COUNTY_VT", - "description": null, - "label": "WASHINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 36580, - "2023-01-01": 35140, - "2022-01-01": 32470, - "2021-01-01": 31040, - "2015-01-01": 31040 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.5.WINDHAM_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.5.WINDHAM_COUNTY_VT", - "description": null, - "label": "WINDHAM COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 36580, - "2023-01-01": 35140, - "2022-01-01": 32470, - "2021-01-01": 31040, - "2015-01-01": 31040 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.5.WINDSOR_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.5.WINDSOR_COUNTY_VT", - "description": null, - "label": "WINDSOR COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 36580, - "2023-01-01": 35140, - "2022-01-01": 32470, - "2021-01-01": 31040, - "2015-01-01": 31040 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.6": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.6.ADDISON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.6.ADDISON_COUNTY_VT", - "description": null, - "label": "ADDISON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 41960, - "2023-01-01": 40280, - "2022-01-01": 37190, - "2021-01-01": 35580, - "2015-01-01": 35580 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.6.BENNINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.6.BENNINGTON_COUNTY_VT", - "description": null, - "label": "BENNINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 41960, - "2023-01-01": 40280, - "2022-01-01": 37190, - "2021-01-01": 35580, - "2015-01-01": 35580 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.6.CALEDONIA_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.6.CALEDONIA_COUNTY_VT", - "description": null, - "label": "CALEDONIA COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 41960, - "2023-01-01": 40280, - "2022-01-01": 37190, - "2021-01-01": 35580, - "2015-01-01": 35580 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.6.CHITTENDEN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.6.CHITTENDEN_COUNTY_VT", - "description": null, - "label": "CHITTENDEN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 41960, - "2023-01-01": 40280, - "2022-01-01": 37400, - "2021-01-01": 35580, - "2015-01-01": 35580 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.6.ESSEX_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.6.ESSEX_COUNTY_VT", - "description": null, - "label": "ESSEX COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 41960, - "2023-01-01": 40280, - "2022-01-01": 37190, - "2021-01-01": 35580, - "2015-01-01": 35580 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.6.FRANKLIN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.6.FRANKLIN_COUNTY_VT", - "description": null, - "label": "FRANKLIN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 41960, - "2023-01-01": 40280, - "2022-01-01": 37210, - "2021-01-01": 35580, - "2015-01-01": 35580 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.6.GRAND_ISLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.6.GRAND_ISLE_COUNTY_VT", - "description": null, - "label": "GRAND ISLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 41960, - "2023-01-01": 40280, - "2022-01-01": 37210, - "2021-01-01": 35580, - "2015-01-01": 35580 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.6.LAMOILLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.6.LAMOILLE_COUNTY_VT", - "description": null, - "label": "LAMOILLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 41960, - "2023-01-01": 40280, - "2022-01-01": 37190, - "2021-01-01": 35580, - "2015-01-01": 35580 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.6.ORANGE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.6.ORANGE_COUNTY_VT", - "description": null, - "label": "ORANGE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 41960, - "2023-01-01": 40280, - "2022-01-01": 37190, - "2021-01-01": 35580, - "2015-01-01": 35580 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.6.ORLEANS_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.6.ORLEANS_COUNTY_VT", - "description": null, - "label": "ORLEANS COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 41960, - "2023-01-01": 40280, - "2022-01-01": 37190, - "2021-01-01": 35580, - "2015-01-01": 35580 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.6.RUTLAND_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.6.RUTLAND_COUNTY_VT", - "description": null, - "label": "RUTLAND COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 41960, - "2023-01-01": 40280, - "2022-01-01": 37190, - "2021-01-01": 35580, - "2015-01-01": 35580 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.6.WASHINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.6.WASHINGTON_COUNTY_VT", - "description": null, - "label": "WASHINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 41960, - "2023-01-01": 40280, - "2022-01-01": 37190, - "2021-01-01": 35580, - "2015-01-01": 35580 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.6.WINDHAM_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.6.WINDHAM_COUNTY_VT", - "description": null, - "label": "WINDHAM COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 41960, - "2023-01-01": 40280, - "2022-01-01": 37190, - "2021-01-01": 35580, - "2015-01-01": 35580 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.6.WINDSOR_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.6.WINDSOR_COUNTY_VT", - "description": null, - "label": "WINDSOR COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 41960, - "2023-01-01": 40280, - "2022-01-01": 37190, - "2021-01-01": 35580, - "2015-01-01": 35580 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.7": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.7", - "description": null, - "label": "7", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.7.ADDISON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.7.ADDISON_COUNTY_VT", - "description": null, - "label": "ADDISON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 47340, - "2023-01-01": 45420, - "2022-01-01": 41910, - "2021-01-01": 40120, - "2015-01-01": 40120 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.7.BENNINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.7.BENNINGTON_COUNTY_VT", - "description": null, - "label": "BENNINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 47340, - "2023-01-01": 45420, - "2022-01-01": 41910, - "2021-01-01": 40120, - "2015-01-01": 40120 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.7.CALEDONIA_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.7.CALEDONIA_COUNTY_VT", - "description": null, - "label": "CALEDONIA COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 47340, - "2023-01-01": 45420, - "2022-01-01": 41910, - "2021-01-01": 40120, - "2015-01-01": 40120 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.7.CHITTENDEN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.7.CHITTENDEN_COUNTY_VT", - "description": null, - "label": "CHITTENDEN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 47340, - "2023-01-01": 45420, - "2022-01-01": 41910, - "2021-01-01": 40120, - "2015-01-01": 40120 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.7.ESSEX_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.7.ESSEX_COUNTY_VT", - "description": null, - "label": "ESSEX COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 47340, - "2023-01-01": 45420, - "2022-01-01": 41910, - "2021-01-01": 40120, - "2015-01-01": 40120 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.7.FRANKLIN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.7.FRANKLIN_COUNTY_VT", - "description": null, - "label": "FRANKLIN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 47340, - "2023-01-01": 45420, - "2022-01-01": 41910, - "2021-01-01": 40120, - "2015-01-01": 40120 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.7.GRAND_ISLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.7.GRAND_ISLE_COUNTY_VT", - "description": null, - "label": "GRAND ISLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 47340, - "2023-01-01": 45420, - "2022-01-01": 41910, - "2021-01-01": 40120, - "2015-01-01": 40120 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.7.LAMOILLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.7.LAMOILLE_COUNTY_VT", - "description": null, - "label": "LAMOILLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 47340, - "2023-01-01": 45420, - "2022-01-01": 41910, - "2021-01-01": 40120, - "2015-01-01": 40120 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.7.ORANGE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.7.ORANGE_COUNTY_VT", - "description": null, - "label": "ORANGE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 47340, - "2023-01-01": 45420, - "2022-01-01": 41910, - "2021-01-01": 40120, - "2015-01-01": 40120 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.7.ORLEANS_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.7.ORLEANS_COUNTY_VT", - "description": null, - "label": "ORLEANS COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 47340, - "2023-01-01": 45420, - "2022-01-01": 41910, - "2021-01-01": 40120, - "2015-01-01": 40120 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.7.RUTLAND_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.7.RUTLAND_COUNTY_VT", - "description": null, - "label": "RUTLAND COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 47340, - "2023-01-01": 45420, - "2022-01-01": 41910, - "2021-01-01": 40120, - "2015-01-01": 40120 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.7.WASHINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.7.WASHINGTON_COUNTY_VT", - "description": null, - "label": "WASHINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 47340, - "2023-01-01": 45420, - "2022-01-01": 41910, - "2021-01-01": 40120, - "2015-01-01": 40120 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.7.WINDHAM_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.7.WINDHAM_COUNTY_VT", - "description": null, - "label": "WINDHAM COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 47340, - "2023-01-01": 45420, - "2022-01-01": 41910, - "2021-01-01": 40120, - "2015-01-01": 40120 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.7.WINDSOR_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.7.WINDSOR_COUNTY_VT", - "description": null, - "label": "WINDSOR COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 47340, - "2023-01-01": 45420, - "2022-01-01": 41910, - "2021-01-01": 40120, - "2015-01-01": 40120 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.8": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.8", - "description": null, - "label": "8", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.8.ADDISON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.8.ADDISON_COUNTY_VT", - "description": null, - "label": "ADDISON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 52720, - "2023-01-01": 50560, - "2022-01-01": 46630, - "2021-01-01": 44660, - "2015-01-01": 44660 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.8.BENNINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.8.BENNINGTON_COUNTY_VT", - "description": null, - "label": "BENNINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 52720, - "2023-01-01": 50560, - "2022-01-01": 46630, - "2021-01-01": 44660, - "2015-01-01": 44660 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.8.CALEDONIA_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.8.CALEDONIA_COUNTY_VT", - "description": null, - "label": "CALEDONIA COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 52720, - "2023-01-01": 50560, - "2022-01-01": 46630, - "2021-01-01": 44660, - "2015-01-01": 44660 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.8.CHITTENDEN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.8.CHITTENDEN_COUNTY_VT", - "description": null, - "label": "CHITTENDEN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 52720, - "2023-01-01": 50560, - "2022-01-01": 46630, - "2021-01-01": 44660, - "2015-01-01": 44660 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.8.ESSEX_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.8.ESSEX_COUNTY_VT", - "description": null, - "label": "ESSEX COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 52720, - "2023-01-01": 50560, - "2022-01-01": 46630, - "2021-01-01": 44660, - "2015-01-01": 44660 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.8.FRANKLIN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.8.FRANKLIN_COUNTY_VT", - "description": null, - "label": "FRANKLIN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 52720, - "2023-01-01": 50560, - "2022-01-01": 46630, - "2021-01-01": 44660, - "2015-01-01": 44660 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.8.GRAND_ISLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.8.GRAND_ISLE_COUNTY_VT", - "description": null, - "label": "GRAND ISLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 52720, - "2023-01-01": 50560, - "2022-01-01": 46630, - "2021-01-01": 44660, - "2015-01-01": 44660 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.8.LAMOILLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.8.LAMOILLE_COUNTY_VT", - "description": null, - "label": "LAMOILLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 52720, - "2023-01-01": 50560, - "2022-01-01": 46630, - "2021-01-01": 44660, - "2015-01-01": 44660 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.8.ORANGE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.8.ORANGE_COUNTY_VT", - "description": null, - "label": "ORANGE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 52720, - "2023-01-01": 50560, - "2022-01-01": 46630, - "2021-01-01": 44660, - "2015-01-01": 44660 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.8.ORLEANS_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.8.ORLEANS_COUNTY_VT", - "description": null, - "label": "ORLEANS COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 52720, - "2023-01-01": 50560, - "2022-01-01": 46630, - "2021-01-01": 44660, - "2015-01-01": 44660 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.8.RUTLAND_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.8.RUTLAND_COUNTY_VT", - "description": null, - "label": "RUTLAND COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 52720, - "2023-01-01": 50560, - "2022-01-01": 46630, - "2021-01-01": 44660, - "2015-01-01": 44660 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.8.WASHINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.8.WASHINGTON_COUNTY_VT", - "description": null, - "label": "WASHINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 52720, - "2023-01-01": 50560, - "2022-01-01": 46630, - "2021-01-01": 44660, - "2015-01-01": 44660 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.8.WINDHAM_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.8.WINDHAM_COUNTY_VT", - "description": null, - "label": "WINDHAM COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 52720, - "2023-01-01": 50560, - "2022-01-01": 46630, - "2021-01-01": 44660, - "2015-01-01": 44660 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.8.WINDSOR_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.thirty_percent.8.WINDSOR_COUNTY_VT", - "description": null, - "label": "WINDSOR COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 52720, - "2023-01-01": 50560, - "2022-01-01": 46630, - "2021-01-01": 44660, - "2015-01-01": 44660 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent", - "description": "Vermont limits the partial renter credit to filers with income below this amount, based on the county and household size.", - "label": "Vermont partial renter credit income limit", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.1": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.1.ADDISON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.1.ADDISON_COUNTY_VT", - "description": null, - "label": "ADDISON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 49600, - "2023-01-01": 34700, - "2022-01-01": 32800, - "2021-01-01": 29300, - "2015-01-01": 29300 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.1.BENNINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.1.BENNINGTON_COUNTY_VT", - "description": null, - "label": "BENNINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 45370, - "2023-01-01": 31750, - "2022-01-01": 30000, - "2021-01-01": 27450, - "2015-01-01": 27450 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.1.CALEDONIA_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.1.CALEDONIA_COUNTY_VT", - "description": null, - "label": "CALEDONIA COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 43230, - "2023-01-01": 31750, - "2022-01-01": 30000, - "2021-01-01": 27450, - "2015-01-01": 27450 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.1.CHITTENDEN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.1.CHITTENDEN_COUNTY_VT", - "description": null, - "label": "CHITTENDEN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 54150, - "2023-01-01": 39800, - "2022-01-01": 37600, - "2021-01-01": 33600, - "2015-01-01": 33600 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.1.ESSEX_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.1.ESSEX_COUNTY_VT", - "description": null, - "label": "ESSEX COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 43230, - "2023-01-01": 31750, - "2022-01-01": 30000, - "2021-01-01": 27450, - "2015-01-01": 27450 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.1.FRANKLIN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.1.FRANKLIN_COUNTY_VT", - "description": null, - "label": "FRANKLIN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 45450, - "2023-01-01": 32930, - "2022-01-01": 31100, - "2021-01-01": 28240, - "2015-01-01": 28240 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.1.GRAND_ISLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.1.GRAND_ISLE_COUNTY_VT", - "description": null, - "label": "GRAND ISLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 45450, - "2023-01-01": 32930, - "2022-01-01": 31100, - "2021-01-01": 28240, - "2015-01-01": 28240 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.1.LAMOILLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.1.LAMOILLE_COUNTY_VT", - "description": null, - "label": "LAMOILLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 43230, - "2023-01-01": 31750, - "2022-01-01": 30000, - "2021-01-01": 27450, - "2015-01-01": 27450 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.1.ORANGE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.1.ORANGE_COUNTY_VT", - "description": null, - "label": "ORANGE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 43230, - "2023-01-01": 31750, - "2022-01-01": 30000, - "2021-01-01": 27450, - "2015-01-01": 27450 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.1.ORLEANS_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.1.ORLEANS_COUNTY_VT", - "description": null, - "label": "ORLEANS COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 43230, - "2023-01-01": 31750, - "2022-01-01": 30000, - "2021-01-01": 27450, - "2015-01-01": 27450 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.1.RUTLAND_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.1.RUTLAND_COUNTY_VT", - "description": null, - "label": "RUTLAND COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 43230, - "2023-01-01": 31750, - "2022-01-01": 30000, - "2021-01-01": 27450, - "2015-01-01": 27450 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.1.WASHINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.1.WASHINGTON_COUNTY_VT", - "description": null, - "label": "WASHINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 47970, - "2023-01-01": 33900, - "2022-01-01": 32000, - "2021-01-01": 28800, - "2015-01-01": 28800 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.1.WINDHAM_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.1.WINDHAM_COUNTY_VT", - "description": null, - "label": "WINDHAM COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 43230, - "2023-01-01": 31750, - "2022-01-01": 30000, - "2021-01-01": 27450, - "2015-01-01": 27450 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.1.WINDSOR_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.1.WINDSOR_COUNTY_VT", - "description": null, - "label": "WINDSOR COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 45760, - "2023-01-01": 32700, - "2022-01-01": 30850, - "2021-01-01": 27600, - "2015-01-01": 27600 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.2": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.2.ADDISON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.2.ADDISON_COUNTY_VT", - "description": null, - "label": "ADDISON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 56680, - "2023-01-01": 39650, - "2022-01-01": 37450, - "2021-01-01": 33500, - "2015-01-01": 33500 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.2.BENNINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.2.BENNINGTON_COUNTY_VT", - "description": null, - "label": "BENNINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 51870, - "2023-01-01": 36300, - "2022-01-01": 34300, - "2021-01-01": 31350, - "2015-01-01": 31350 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.2.CALEDONIA_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.2.CALEDONIA_COUNTY_VT", - "description": null, - "label": "CALEDONIA COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 49400, - "2023-01-01": 36300, - "2022-01-01": 34300, - "2021-01-01": 31350, - "2015-01-01": 31350 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.2.CHITTENDEN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.2.CHITTENDEN_COUNTY_VT", - "description": null, - "label": "CHITTENDEN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 61880, - "2023-01-01": 45450, - "2022-01-01": 42950, - "2021-01-01": 38400, - "2015-01-01": 38400 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.2.ESSEX_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.2.ESSEX_COUNTY_VT", - "description": null, - "label": "ESSEX COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 49400, - "2023-01-01": 36300, - "2022-01-01": 34300, - "2021-01-01": 31350, - "2015-01-01": 31350 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.2.FRANKLIN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.2.FRANKLIN_COUNTY_VT", - "description": null, - "label": "FRANKLIN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 51950, - "2023-01-01": 37630, - "2022-01-01": 35550, - "2021-01-01": 32260, - "2015-01-01": 32260 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.2.GRAND_ISLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.2.GRAND_ISLE_COUNTY_VT", - "description": null, - "label": "GRAND ISLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 51950, - "2023-01-01": 37630, - "2022-01-01": 35550, - "2021-01-01": 32260, - "2015-01-01": 32260 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.2.LAMOILLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.2.LAMOILLE_COUNTY_VT", - "description": null, - "label": "LAMOILLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 49400, - "2023-01-01": 36300, - "2022-01-01": 34300, - "2021-01-01": 31350, - "2015-01-01": 31350 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.2.ORANGE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.2.ORANGE_COUNTY_VT", - "description": null, - "label": "ORANGE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 49400, - "2023-01-01": 36300, - "2022-01-01": 34300, - "2021-01-01": 31350, - "2015-01-01": 31350 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.2.ORLEANS_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.2.ORLEANS_COUNTY_VT", - "description": null, - "label": "ORLEANS COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 49400, - "2023-01-01": 36300, - "2022-01-01": 34300, - "2021-01-01": 31350, - "2015-01-01": 31350 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.2.RUTLAND_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.2.RUTLAND_COUNTY_VT", - "description": null, - "label": "RUTLAND COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 49400, - "2023-01-01": 36300, - "2022-01-01": 34300, - "2021-01-01": 31350, - "2015-01-01": 31350 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.2.WASHINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.2.WASHINGTON_COUNTY_VT", - "description": null, - "label": "WASHINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 54860, - "2023-01-01": 38750, - "2022-01-01": 36600, - "2021-01-01": 32900, - "2015-01-01": 32900 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.2.WINDHAM_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.2.WINDHAM_COUNTY_VT", - "description": null, - "label": "WINDHAM COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 49400, - "2023-01-01": 36300, - "2022-01-01": 34300, - "2021-01-01": 31350, - "2015-01-01": 31350 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.2.WINDSOR_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.2.WINDSOR_COUNTY_VT", - "description": null, - "label": "WINDSOR COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 52260, - "2023-01-01": 37350, - "2022-01-01": 35250, - "2021-01-01": 31350, - "2015-01-01": 31350 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.3": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.3.ADDISON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.3.ADDISON_COUNTY_VT", - "description": null, - "label": "ADDISON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 63770, - "2023-01-01": 44600, - "2022-01-01": 42150, - "2021-01-01": 37700, - "2015-01-01": 37700 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.3.BENNINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.3.BENNINGTON_COUNTY_VT", - "description": null, - "label": "BENNINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 58370, - "2023-01-01": 40850, - "2022-01-01": 38600, - "2021-01-01": 35250, - "2015-01-01": 35250 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.3.CALEDONIA_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.3.CALEDONIA_COUNTY_VT", - "description": null, - "label": "CALEDONIA COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 55580, - "2023-01-01": 40850, - "2022-01-01": 38600, - "2021-01-01": 35250, - "2015-01-01": 35250 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.3.CHITTENDEN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.3.CHITTENDEN_COUNTY_VT", - "description": null, - "label": "CHITTENDEN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 69620, - "2023-01-01": 51150, - "2022-01-01": 48300, - "2021-01-01": 43200, - "2015-01-01": 43200 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.3.ESSEX_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.3.ESSEX_COUNTY_VT", - "description": null, - "label": "ESSEX COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 55580, - "2023-01-01": 40850, - "2022-01-01": 38600, - "2021-01-01": 35250, - "2015-01-01": 35250 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.3.FRANKLIN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.3.FRANKLIN_COUNTY_VT", - "description": null, - "label": "FRANKLIN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 58440, - "2023-01-01": 42350, - "2022-01-01": 40000, - "2021-01-01": 36280, - "2015-01-01": 36280 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.3.GRAND_ISLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.3.GRAND_ISLE_COUNTY_VT", - "description": null, - "label": "GRAND ISLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 58440, - "2023-01-01": 42350, - "2022-01-01": 40000, - "2021-01-01": 36280, - "2015-01-01": 36280 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.3.LAMOILLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.3.LAMOILLE_COUNTY_VT", - "description": null, - "label": "LAMOILLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 55580, - "2023-01-01": 40850, - "2022-01-01": 38600, - "2021-01-01": 35250, - "2015-01-01": 35250 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.3.ORANGE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.3.ORANGE_COUNTY_VT", - "description": null, - "label": "ORANGE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 55580, - "2023-01-01": 40850, - "2022-01-01": 38600, - "2021-01-01": 35250, - "2015-01-01": 35250 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.3.ORLEANS_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.3.ORLEANS_COUNTY_VT", - "description": null, - "label": "ORLEANS COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 55580, - "2023-01-01": 40850, - "2022-01-01": 38600, - "2021-01-01": 35250, - "2015-01-01": 35250 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.3.RUTLAND_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.3.RUTLAND_COUNTY_VT", - "description": null, - "label": "RUTLAND COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 55580, - "2023-01-01": 40850, - "2022-01-01": 38600, - "2021-01-01": 35250, - "2015-01-01": 35250 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.3.WASHINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.3.WASHINGTON_COUNTY_VT", - "description": null, - "label": "WASHINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 61960, - "2023-01-01": 43600, - "2022-01-01": 41150, - "2021-01-01": 37000, - "2015-01-01": 37000 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.3.WINDHAM_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.3.WINDHAM_COUNTY_VT", - "description": null, - "label": "WINDHAM COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 55580, - "2023-01-01": 40850, - "2022-01-01": 38600, - "2021-01-01": 35250, - "2015-01-01": 35250 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.3.WINDSOR_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.3.WINDSOR_COUNTY_VT", - "description": null, - "label": "WINDSOR COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 58830, - "2023-01-01": 42000, - "2022-01-01": 39650, - "2021-01-01": 35500, - "2015-01-01": 35500 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.4": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.4.ADDISON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.4.ADDISON_COUNTY_VT", - "description": null, - "label": "ADDISON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 70850, - "2023-01-01": 49550, - "2022-01-01": 46800, - "2021-01-01": 41850, - "2015-01-01": 41850 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.4.BENNINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.4.BENNINGTON_COUNTY_VT", - "description": null, - "label": "BENNINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 64810, - "2023-01-01": 45350, - "2022-01-01": 42850, - "2021-01-01": 39150, - "2015-01-01": 39150 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.4.CALEDONIA_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.4.CALEDONIA_COUNTY_VT", - "description": null, - "label": "CALEDONIA COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 61750, - "2023-01-01": 45350, - "2022-01-01": 42850, - "2021-01-01": 39150, - "2015-01-01": 39150 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.4.CHITTENDEN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.4.CHITTENDEN_COUNTY_VT", - "description": null, - "label": "CHITTENDEN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 77290, - "2023-01-01": 56800, - "2022-01-01": 53650, - "2021-01-01": 47950, - "2015-01-01": 47950 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.4.ESSEX_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.4.ESSEX_COUNTY_VT", - "description": null, - "label": "ESSEX COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 61750, - "2023-01-01": 45350, - "2022-01-01": 42850, - "2021-01-01": 39150, - "2015-01-01": 39150 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.4.FRANKLIN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.4.FRANKLIN_COUNTY_VT", - "description": null, - "label": "FRANKLIN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 64920, - "2023-01-01": 47020, - "2022-01-01": 44420, - "2021-01-01": 40290, - "2015-01-01": 40290 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.4.GRAND_ISLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.4.GRAND_ISLE_COUNTY_VT", - "description": null, - "label": "GRAND ISLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 64920, - "2023-01-01": 47020, - "2022-01-01": 44420, - "2021-01-01": 40290, - "2015-01-01": 40290 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.4.LAMOILLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.4.LAMOILLE_COUNTY_VT", - "description": null, - "label": "LAMOILLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 61750, - "2023-01-01": 45350, - "2022-01-01": 42850, - "2021-01-01": 39150, - "2015-01-01": 39150 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.4.ORANGE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.4.ORANGE_COUNTY_VT", - "description": null, - "label": "ORANGE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 61750, - "2023-01-01": 45350, - "2022-01-01": 42850, - "2021-01-01": 39150, - "2015-01-01": 39150 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.4.ORLEANS_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.4.ORLEANS_COUNTY_VT", - "description": null, - "label": "ORLEANS COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 61750, - "2023-01-01": 45350, - "2022-01-01": 42850, - "2021-01-01": 39150, - "2015-01-01": 39150 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.4.RUTLAND_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.4.RUTLAND_COUNTY_VT", - "description": null, - "label": "RUTLAND COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 61750, - "2023-01-01": 45350, - "2022-01-01": 42850, - "2021-01-01": 39150, - "2015-01-01": 39150 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.4.WASHINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.4.WASHINGTON_COUNTY_VT", - "description": null, - "label": "WASHINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 68510, - "2023-01-01": 48400, - "2022-01-01": 45700, - "2021-01-01": 41100, - "2015-01-01": 41100 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.4.WINDHAM_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.4.WINDHAM_COUNTY_VT", - "description": null, - "label": "WINDHAM COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 61750, - "2023-01-01": 45350, - "2022-01-01": 42850, - "2021-01-01": 39150, - "2015-01-01": 39150 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.4.WINDSOR_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.4.WINDSOR_COUNTY_VT", - "description": null, - "label": "WINDSOR COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 65330, - "2023-01-01": 46650, - "2022-01-01": 44050, - "2021-01-01": 39400, - "2015-01-01": 39400 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.5": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.5.ADDISON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.5.ADDISON_COUNTY_VT", - "description": null, - "label": "ADDISON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 76570, - "2023-01-01": 53550, - "2022-01-01": 50550, - "2021-01-01": 45200, - "2015-01-01": 45200 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.5.BENNINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.5.BENNINGTON_COUNTY_VT", - "description": null, - "label": "BENNINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 70010, - "2023-01-01": 49000, - "2022-01-01": 46300, - "2021-01-01": 42300, - "2015-01-01": 42300 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.5.CALEDONIA_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.5.CALEDONIA_COUNTY_VT", - "description": null, - "label": "CALEDONIA COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 66690, - "2023-01-01": 49000, - "2022-01-01": 46300, - "2021-01-01": 42300, - "2015-01-01": 42300 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.5.CHITTENDEN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.5.CHITTENDEN_COUNTY_VT", - "description": null, - "label": "CHITTENDEN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 83530, - "2023-01-01": 61350, - "2022-01-01": 57950, - "2021-01-01": 51800, - "2015-01-01": 51800 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.5.ESSEX_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.5.ESSEX_COUNTY_VT", - "description": null, - "label": "ESSEX COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 66690, - "2023-01-01": 49000, - "2022-01-01": 46300, - "2021-01-01": 42300, - "2015-01-01": 42300 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.5.FRANKLIN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.5.FRANKLIN_COUNTY_VT", - "description": null, - "label": "FRANKLIN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 70140, - "2023-01-01": 50800, - "2022-01-01": 47990, - "2021-01-01": 43530, - "2015-01-01": 43530 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.5.GRAND_ISLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.5.GRAND_ISLE_COUNTY_VT", - "description": null, - "label": "GRAND ISLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 70140, - "2023-01-01": 50800, - "2022-01-01": 47990, - "2021-01-01": 43530, - "2015-01-01": 43530 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.5.LAMOILLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.5.LAMOILLE_COUNTY_VT", - "description": null, - "label": "LAMOILLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 66690, - "2023-01-01": 49000, - "2022-01-01": 46300, - "2021-01-01": 42300, - "2015-01-01": 42300 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.5.ORANGE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.5.ORANGE_COUNTY_VT", - "description": null, - "label": "ORANGE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 66690, - "2023-01-01": 49000, - "2022-01-01": 46300, - "2021-01-01": 42300, - "2015-01-01": 42300 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.5.ORLEANS_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.5.ORLEANS_COUNTY_VT", - "description": null, - "label": "ORLEANS COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 66690, - "2023-01-01": 49000, - "2022-01-01": 46300, - "2021-01-01": 42300, - "2015-01-01": 42300 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.5.RUTLAND_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.5.RUTLAND_COUNTY_VT", - "description": null, - "label": "RUTLAND COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 66690, - "2023-01-01": 49000, - "2022-01-01": 46300, - "2021-01-01": 42300, - "2015-01-01": 42300 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.5.WASHINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.5.WASHINGTON_COUNTY_VT", - "description": null, - "label": "WASHINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 74040, - "2023-01-01": 52300, - "2022-01-01": 49400, - "2021-01-01": 44400, - "2015-01-01": 44400 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.5.WINDHAM_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.5.WINDHAM_COUNTY_VT", - "description": null, - "label": "WINDHAM COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 66690, - "2023-01-01": 49000, - "2022-01-01": 46300, - "2021-01-01": 42300, - "2015-01-01": 42300 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.5.WINDSOR_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.5.WINDSOR_COUNTY_VT", - "description": null, - "label": "WINDSOR COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 70590, - "2023-01-01": 50400, - "2022-01-01": 47600, - "2021-01-01": 42600, - "2015-01-01": 42600 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.6": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.6.ADDISON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.6.ADDISON_COUNTY_VT", - "description": null, - "label": "ADDISON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 82230, - "2023-01-01": 57500, - "2022-01-01": 54300, - "2021-01-01": 48550, - "2015-01-01": 48550 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.6.BENNINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.6.BENNINGTON_COUNTY_VT", - "description": null, - "label": "BENNINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 75210, - "2023-01-01": 52650, - "2022-01-01": 49750, - "2021-01-01": 45450, - "2015-01-01": 45450 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.6.CALEDONIA_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.6.CALEDONIA_COUNTY_VT", - "description": null, - "label": "CALEDONIA COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 71630, - "2023-01-01": 52650, - "2022-01-01": 49750, - "2021-01-01": 45450, - "2015-01-01": 45450 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.6.CHITTENDEN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.6.CHITTENDEN_COUNTY_VT", - "description": null, - "label": "CHITTENDEN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 89700, - "2023-01-01": 65900, - "2022-01-01": 62250, - "2021-01-01": 55650, - "2015-01-01": 55650 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.6.ESSEX_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.6.ESSEX_COUNTY_VT", - "description": null, - "label": "ESSEX COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 71630, - "2023-01-01": 52650, - "2022-01-01": 49750, - "2021-01-01": 45450, - "2015-01-01": 45450 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.6.FRANKLIN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.6.FRANKLIN_COUNTY_VT", - "description": null, - "label": "FRANKLIN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 75320, - "2023-01-01": 54580, - "2022-01-01": 51560, - "2021-01-01": 46770, - "2015-01-01": 46770 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.6.GRAND_ISLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.6.GRAND_ISLE_COUNTY_VT", - "description": null, - "label": "GRAND ISLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 75320, - "2023-01-01": 54580, - "2022-01-01": 51560, - "2021-01-01": 46770, - "2015-01-01": 46770 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.6.LAMOILLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.6.LAMOILLE_COUNTY_VT", - "description": null, - "label": "LAMOILLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 71630, - "2023-01-01": 52650, - "2022-01-01": 49750, - "2021-01-01": 45450, - "2015-01-01": 45450 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.6.ORANGE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.6.ORANGE_COUNTY_VT", - "description": null, - "label": "ORANGE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 71630, - "2023-01-01": 52650, - "2022-01-01": 49750, - "2021-01-01": 45450, - "2015-01-01": 45450 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.6.ORLEANS_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.6.ORLEANS_COUNTY_VT", - "description": null, - "label": "ORLEANS COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 71630, - "2023-01-01": 52650, - "2022-01-01": 49750, - "2021-01-01": 45450, - "2015-01-01": 45450 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.6.RUTLAND_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.6.RUTLAND_COUNTY_VT", - "description": null, - "label": "RUTLAND COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 71630, - "2023-01-01": 52650, - "2022-01-01": 49750, - "2021-01-01": 45450, - "2015-01-01": 45450 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.6.WASHINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.6.WASHINGTON_COUNTY_VT", - "description": null, - "label": "WASHINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 79500, - "2023-01-01": 56150, - "2022-01-01": 53050, - "2021-01-01": 47700, - "2015-01-01": 47700 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.6.WINDHAM_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.6.WINDHAM_COUNTY_VT", - "description": null, - "label": "WINDHAM COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 71630, - "2023-01-01": 52650, - "2022-01-01": 49750, - "2021-01-01": 45450, - "2015-01-01": 45450 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.6.WINDSOR_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.6.WINDSOR_COUNTY_VT", - "description": null, - "label": "WINDSOR COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 75790, - "2023-01-01": 54150, - "2022-01-01": 51100, - "2021-01-01": 45750, - "2015-01-01": 45750 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.7": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.7", - "description": null, - "label": "7", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.7.ADDISON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.7.ADDISON_COUNTY_VT", - "description": null, - "label": "ADDISON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 87820, - "2023-01-01": 61450, - "2022-01-01": 58050, - "2021-01-01": 51900, - "2015-01-01": 51900 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.7.BENNINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.7.BENNINGTON_COUNTY_VT", - "description": null, - "label": "BENNINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 80410, - "2023-01-01": 56250, - "2022-01-01": 53150, - "2021-01-01": 48550, - "2015-01-01": 48550 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.7.CALEDONIA_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.7.CALEDONIA_COUNTY_VT", - "description": null, - "label": "CALEDONIA COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 76570, - "2023-01-01": 56250, - "2022-01-01": 53150, - "2021-01-01": 48550, - "2015-01-01": 48550 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.7.CHITTENDEN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.7.CHITTENDEN_COUNTY_VT", - "description": null, - "label": "CHITTENDEN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 95880, - "2023-01-01": 70450, - "2022-01-01": 66550, - "2021-01-01": 59500, - "2015-01-01": 59500 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.7.ESSEX_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.7.ESSEX_COUNTY_VT", - "description": null, - "label": "ESSEX COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 76570, - "2023-01-01": 56250, - "2022-01-01": 53150, - "2021-01-01": 48550, - "2015-01-01": 48550 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.7.FRANKLIN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.7.FRANKLIN_COUNTY_VT", - "description": null, - "label": "FRANKLIN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 80510, - "2023-01-01": 56250, - "2022-01-01": 55100, - "2021-01-01": 49980, - "2015-01-01": 49980 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.7.GRAND_ISLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.7.GRAND_ISLE_COUNTY_VT", - "description": null, - "label": "GRAND ISLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 80510, - "2023-01-01": 58320, - "2022-01-01": 55100, - "2021-01-01": 49980, - "2015-01-01": 49980 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.7.LAMOILLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.7.LAMOILLE_COUNTY_VT", - "description": null, - "label": "LAMOILLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 76570, - "2023-01-01": 58320, - "2022-01-01": 53150, - "2021-01-01": 48550, - "2015-01-01": 48550 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.7.ORANGE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.7.ORANGE_COUNTY_VT", - "description": null, - "label": "ORANGE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 76570, - "2023-01-01": 56250, - "2022-01-01": 53150, - "2021-01-01": 48550, - "2015-01-01": 48550 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.7.ORLEANS_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.7.ORLEANS_COUNTY_VT", - "description": null, - "label": "ORLEANS COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 76570, - "2023-01-01": 56250, - "2022-01-01": 53150, - "2021-01-01": 48550, - "2015-01-01": 48550 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.7.RUTLAND_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.7.RUTLAND_COUNTY_VT", - "description": null, - "label": "RUTLAND COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 76570, - "2023-01-01": 56250, - "2022-01-01": 53150, - "2021-01-01": 48550, - "2015-01-01": 48550 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.7.WASHINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.7.WASHINGTON_COUNTY_VT", - "description": null, - "label": "WASHINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 84960, - "2023-01-01": 60050, - "2022-01-01": 56700, - "2021-01-01": 51000, - "2015-01-01": 51000 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.7.WINDHAM_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.7.WINDHAM_COUNTY_VT", - "description": null, - "label": "WINDHAM COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 76570, - "2023-01-01": 56250, - "2022-01-01": 53150, - "2021-01-01": 48550, - "2015-01-01": 48550 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.7.WINDSOR_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.7.WINDSOR_COUNTY_VT", - "description": null, - "label": "WINDSOR COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 81060, - "2023-01-01": 57850, - "2022-01-01": 54650, - "2021-01-01": 48900, - "2015-01-01": 48900 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.8": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.8", - "description": null, - "label": "8", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.8.ADDISON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.8.ADDISON_COUNTY_VT", - "description": null, - "label": "ADDISON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 93540, - "2023-01-01": 65450, - "2022-01-01": 61800, - "2021-01-01": 55250, - "2015-01-01": 55250 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.8.BENNINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.8.BENNINGTON_COUNTY_VT", - "description": null, - "label": "BENNINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 85610, - "2023-01-01": 59900, - "2022-01-01": 56600, - "2021-01-01": 51700, - "2015-01-01": 51700 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.8.CALEDONIA_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.8.CALEDONIA_COUNTY_VT", - "description": null, - "label": "CALEDONIA COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 81510, - "2023-01-01": 59900, - "2022-01-01": 56600, - "2021-01-01": 51700, - "2015-01-01": 51700 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.8.CHITTENDEN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.8.CHITTENDEN_COUNTY_VT", - "description": null, - "label": "CHITTENDEN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 102850, - "2023-01-01": 75000, - "2022-01-01": 70850, - "2021-01-01": 63300, - "2015-01-01": 63300 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.8.ESSEX_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.8.ESSEX_COUNTY_VT", - "description": null, - "label": "ESSEX COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 81510, - "2023-01-01": 59900, - "2022-01-01": 56600, - "2021-01-01": 51700, - "2015-01-01": 51700 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.8.FRANKLIN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.8.FRANKLIN_COUNTY_VT", - "description": null, - "label": "FRANKLIN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 85710, - "2023-01-01": 62100, - "2022-01-01": 58660, - "2021-01-01": 53210, - "2015-01-01": 53210 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.8.GRAND_ISLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.8.GRAND_ISLE_COUNTY_VT", - "description": null, - "label": "GRAND ISLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 85710, - "2023-01-01": 62100, - "2022-01-01": 58660, - "2021-01-01": 53210, - "2015-01-01": 53210 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.8.LAMOILLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.8.LAMOILLE_COUNTY_VT", - "description": null, - "label": "LAMOILLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 81510, - "2023-01-01": 59900, - "2022-01-01": 56600, - "2021-01-01": 51700, - "2015-01-01": 51700 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.8.ORANGE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.8.ORANGE_COUNTY_VT", - "description": null, - "label": "ORANGE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 81510, - "2023-01-01": 59900, - "2022-01-01": 56600, - "2021-01-01": 51700, - "2015-01-01": 51700 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.8.ORLEANS_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.8.ORLEANS_COUNTY_VT", - "description": null, - "label": "ORLEANS COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 81510, - "2023-01-01": 59900, - "2022-01-01": 56600, - "2021-01-01": 51700, - "2015-01-01": 51700 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.8.RUTLAND_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.8.RUTLAND_COUNTY_VT", - "description": null, - "label": "RUTLAND COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 81510, - "2023-01-01": 59900, - "2022-01-01": 56600, - "2021-01-01": 51700, - "2015-01-01": 51700 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.8.WASHINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.8.WASHINGTON_COUNTY_VT", - "description": null, - "label": "WASHINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 90480, - "2023-01-01": 63900, - "2022-01-01": 60350, - "2021-01-01": 54300, - "2015-01-01": 54300 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.8.WINDHAM_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.8.WINDHAM_COUNTY_VT", - "description": null, - "label": "WINDHAM COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 81510, - "2023-01-01": 59900, - "2022-01-01": 56600, - "2021-01-01": 51700, - "2015-01-01": 51700 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.8.WINDSOR_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.income_limit_ami.fifty_percent.8.WINDSOR_COUNTY_VT", - "description": null, - "label": "WINDSOR COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 86260, - "2023-01-01": 61600, - "2022-01-01": 58150, - "2021-01-01": 52050, - "2015-01-01": 52050 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent", - "description": "Vermont sets these fair market rent amounts, based on the county and household size.", - "label": "Vermont fair market rent amount", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.1": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.1.ADDISON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.1.ADDISON_COUNTY_VT", - "description": null, - "label": "ADDISON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1062, - "2023-01-01": 947, - "2022-01-01": 878, - "2021-01-01": 846, - "2015-01-01": 846 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.1.BENNINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.1.BENNINGTON_COUNTY_VT", - "description": null, - "label": "BENNINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1006, - "2023-01-01": 886, - "2022-01-01": 822, - "2021-01-01": 819, - "2015-01-01": 819 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.1.CALEDONIA_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.1.CALEDONIA_COUNTY_VT", - "description": null, - "label": "CALEDONIA COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 922, - "2023-01-01": 845, - "2022-01-01": 770, - "2021-01-01": 739, - "2015-01-01": 739 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.1.CHITTENDEN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.1.CHITTENDEN_COUNTY_VT", - "description": null, - "label": "CHITTENDEN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1441, - "2023-01-01": 1238, - "2022-01-01": 1163, - "2021-01-01": 1265, - "2015-01-01": 1265 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.1.ESSEX_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.1.ESSEX_COUNTY_VT", - "description": null, - "label": "ESSEX COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 834, - "2023-01-01": 746, - "2022-01-01": 654, - "2021-01-01": 583, - "2015-01-01": 583 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.1.FRANKLIN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.1.FRANKLIN_COUNTY_VT", - "description": null, - "label": "FRANKLIN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1045, - "2023-01-01": 919, - "2022-01-01": 838, - "2021-01-01": 810, - "2015-01-01": 810 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.1.GRAND_ISLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.1.GRAND_ISLE_COUNTY_VT", - "description": null, - "label": "GRAND ISLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1045, - "2023-01-01": 919, - "2022-01-01": 838, - "2021-01-01": 810, - "2015-01-01": 810 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.1.LAMOILLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.1.LAMOILLE_COUNTY_VT", - "description": null, - "label": "LAMOILLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 983, - "2023-01-01": 880, - "2022-01-01": 806, - "2021-01-01": 793, - "2015-01-01": 793 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.1.ORANGE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.1.ORANGE_COUNTY_VT", - "description": null, - "label": "ORANGE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1003, - "2023-01-01": 857, - "2022-01-01": 793, - "2021-01-01": 745, - "2015-01-01": 745 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.1.ORLEANS_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.1.ORLEANS_COUNTY_VT", - "description": null, - "label": "ORLEANS COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 963, - "2023-01-01": 844, - "2022-01-01": 747, - "2021-01-01": 688, - "2015-01-01": 688 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.1.RUTLAND_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.1.RUTLAND_COUNTY_VT", - "description": null, - "label": "RUTLAND COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 997, - "2023-01-01": 911, - "2022-01-01": 834, - "2021-01-01": 779, - "2015-01-01": 779 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.1.WASHINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.1.WASHINGTON_COUNTY_VT", - "description": null, - "label": "WASHINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1106, - "2023-01-01": 953, - "2022-01-01": 869, - "2021-01-01": 824, - "2015-01-01": 824 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.1.WINDHAM_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.1.WINDHAM_COUNTY_VT", - "description": null, - "label": "WINDHAM COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1091, - "2023-01-01": 945, - "2022-01-01": 873, - "2021-01-01": 798, - "2015-01-01": 798 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.1.WINDSOR_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.1.WINDSOR_COUNTY_VT", - "description": null, - "label": "WINDSOR COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1136, - "2023-01-01": 982, - "2022-01-01": 891, - "2021-01-01": 837, - "2015-01-01": 837 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.2": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.2.ADDISON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.2.ADDISON_COUNTY_VT", - "description": null, - "label": "ADDISON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1332, - "2023-01-01": 1192, - "2022-01-01": 1117, - "2021-01-01": 1058, - "2015-01-01": 1058 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.2.BENNINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.2.BENNINGTON_COUNTY_VT", - "description": null, - "label": "BENNINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1241, - "2023-01-01": 1120, - "2022-01-01": 1018, - "2021-01-01": 940, - "2015-01-01": 940 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.2.CALEDONIA_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.2.CALEDONIA_COUNTY_VT", - "description": null, - "label": "CALEDONIA COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1068, - "2023-01-01": 954, - "2022-01-01": 877, - "2021-01-01": 842, - "2015-01-01": 842 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.2.CHITTENDEN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.2.CHITTENDEN_COUNTY_VT", - "description": null, - "label": "CHITTENDEN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1887, - "2023-01-01": 1615, - "2022-01-01": 1500, - "2021-01-01": 1628, - "2015-01-01": 1628 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.2.ESSEX_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.2.ESSEX_COUNTY_VT", - "description": null, - "label": "ESSEX COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 936, - "2023-01-01": 843, - "2022-01-01": 781, - "2021-01-01": 741, - "2015-01-01": 741 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.2.FRANKLIN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.2.FRANKLIN_COUNTY_VT", - "description": null, - "label": "FRANKLIN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1283, - "2023-01-01": 1132, - "2022-01-01": 1035, - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.2.GRAND_ISLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.2.GRAND_ISLE_COUNTY_VT", - "description": null, - "label": "GRAND ISLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1283, - "2023-01-01": 1132, - "2022-01-01": 1035, - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.2.LAMOILLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.2.LAMOILLE_COUNTY_VT", - "description": null, - "label": "LAMOILLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1291, - "2023-01-01": 1158, - "2022-01-01": 1061, - "2021-01-01": 1016, - "2015-01-01": 1016 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.2.ORANGE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.2.ORANGE_COUNTY_VT", - "description": null, - "label": "ORANGE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1244, - "2023-01-01": 1125, - "2022-01-01": 1043, - "2021-01-01": 982, - "2015-01-01": 982 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.2.ORLEANS_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.2.ORLEANS_COUNTY_VT", - "description": null, - "label": "ORLEANS COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1081, - "2023-01-01": 953, - "2022-01-01": 851, - "2021-01-01": 784, - "2015-01-01": 784 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.2.RUTLAND_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.2.RUTLAND_COUNTY_VT", - "description": null, - "label": "RUTLAND COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1224, - "2023-01-01": 1088, - "2022-01-01": 981, - "2021-01-01": 918, - "2015-01-01": 918 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.2.WASHINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.2.WASHINGTON_COUNTY_VT", - "description": null, - "label": "WASHINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1453, - "2023-01-01": 1255, - "2022-01-01": 1144, - "2021-01-01": 1086, - "2015-01-01": 1086 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.2.WINDHAM_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.2.WINDHAM_COUNTY_VT", - "description": null, - "label": "WINDHAM COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1340, - "2023-01-01": 1150, - "2022-01-01": 1089, - "2021-01-01": 993, - "2015-01-01": 993 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.2.WINDSOR_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.2.WINDSOR_COUNTY_VT", - "description": null, - "label": "WINDSOR COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1300, - "2023-01-01": 1129, - "2022-01-01": 1044, - "2021-01-01": 1007, - "2015-01-01": 1007 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.3": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.3.ADDISON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.3.ADDISON_COUNTY_VT", - "description": null, - "label": "ADDISON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1741, - "2023-01-01": 1549, - "2022-01-01": 1429, - "2021-01-01": 1322, - "2015-01-01": 1322 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.3.BENNINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.3.BENNINGTON_COUNTY_VT", - "description": null, - "label": "BENNINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1642, - "2023-01-01": 1455, - "2022-01-01": 1337, - "2021-01-01": 1270, - "2015-01-01": 1270 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.3.CALEDONIA_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.3.CALEDONIA_COUNTY_VT", - "description": null, - "label": "CALEDONIA COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1390, - "2023-01-01": 1167, - "2022-01-01": 1084, - "2021-01-01": 1047, - "2015-01-01": 1047 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.3.CHITTENDEN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.3.CHITTENDEN_COUNTY_VT", - "description": null, - "label": "CHITTENDEN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 2083, - "2023-01-01": 1982, - "2022-01-01": 1854, - "2021-01-01": 2025, - "2015-01-01": 2025 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.3.ESSEX_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.3.ESSEX_COUNTY_VT", - "description": null, - "label": "ESSEX COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1301, - "2023-01-01": 1143, - "2022-01-01": 1032, - "2021-01-01": 985, - "2015-01-01": 985 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.3.FRANKLIN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.3.FRANKLIN_COUNTY_VT", - "description": null, - "label": "FRANKLIN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1663, - "2023-01-01": 1458, - "2022-01-01": 1335, - "2021-01-01": 1291, - "2015-01-01": 1291 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.3.GRAND_ISLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.3.GRAND_ISLE_COUNTY_VT", - "description": null, - "label": "GRAND ISLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1663, - "2023-01-01": 1458, - "2022-01-01": 1335, - "2021-01-01": 1291, - "2015-01-01": 1291 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.3.LAMOILLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.3.LAMOILLE_COUNTY_VT", - "description": null, - "label": "LAMOILLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1713, - "2023-01-01": 1544, - "2022-01-01": 1343, - "2021-01-01": 1264, - "2015-01-01": 1264 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.3.ORANGE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.3.ORANGE_COUNTY_VT", - "description": null, - "label": "ORANGE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1601, - "2023-01-01": 1427, - "2022-01-01": 1304, - "2021-01-01": 1250, - "2015-01-01": 1250 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.3.ORLEANS_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.3.ORLEANS_COUNTY_VT", - "description": null, - "label": "ORLEANS COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1401, - "2023-01-01": 1241, - "2022-01-01": 1132, - "2021-01-01": 1066, - "2015-01-01": 1066 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.3.RUTLAND_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.3.RUTLAND_COUNTY_VT", - "description": null, - "label": "RUTLAND COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1561, - "2023-01-01": 1440, - "2022-01-01": 1344, - "2021-01-01": 1252, - "2015-01-01": 1252 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.3.WASHINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.3.WASHINGTON_COUNTY_VT", - "description": null, - "label": "WASHINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1832, - "2023-01-01": 1584, - "2022-01-01": 1454, - "2021-01-01": 1358, - "2015-01-01": 1358 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.3.WINDHAM_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.3.WINDHAM_COUNTY_VT", - "description": null, - "label": "WINDHAM COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1655, - "2023-01-01": 1426, - "2022-01-01": 1346, - "2021-01-01": 1235, - "2015-01-01": 1235 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.3.WINDSOR_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.3.WINDSOR_COUNTY_VT", - "description": null, - "label": "WINDSOR COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1725, - "2023-01-01": 1536, - "2022-01-01": 1454, - "2021-01-01": 1416, - "2015-01-01": 1416 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.4": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.4.ADDISON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.4.ADDISON_COUNTY_VT", - "description": null, - "label": "ADDISON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1774, - "2023-01-01": 1601, - "2022-01-01": 1515, - "2021-01-01": 1435, - "2015-01-01": 1435 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.4.BENNINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.4.BENNINGTON_COUNTY_VT", - "description": null, - "label": "BENNINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1929, - "2023-01-01": 1578, - "2022-01-01": 1380, - "2021-01-01": 1275, - "2015-01-01": 1275 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.4.CALEDONIA_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.4.CALEDONIA_COUNTY_VT", - "description": null, - "label": "CALEDONIA COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1657, - "2023-01-01": 1625, - "2022-01-01": 1501, - "2021-01-01": 1431, - "2015-01-01": 1431 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.4.CHITTENDEN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.4.CHITTENDEN_COUNTY_VT", - "description": null, - "label": "CHITTENDEN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 2083, - "2023-01-01": 2083, - "2022-01-01": 2034, - "2021-01-01": 2083, - "2015-01-01": 2083 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.4.ESSEX_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.4.ESSEX_COUNTY_VT", - "description": null, - "label": "ESSEX COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1319, - "2023-01-01": 1169, - "2022-01-01": 1085, - "2021-01-01": 1026, - "2015-01-01": 1026 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.4.FRANKLIN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.4.FRANKLIN_COUNTY_VT", - "description": null, - "label": "FRANKLIN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1800, - "2023-01-01": 1587, - "2022-01-01": 1478, - "2021-01-01": 1419, - "2015-01-01": 1419 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.4.GRAND_ISLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.4.GRAND_ISLE_COUNTY_VT", - "description": null, - "label": "GRAND ISLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1800, - "2023-01-01": 1587, - "2022-01-01": 1478, - "2021-01-01": 1419, - "2015-01-01": 1419 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.4.LAMOILLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.4.LAMOILLE_COUNTY_VT", - "description": null, - "label": "LAMOILLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1719, - "2023-01-01": 1556, - "2022-01-01": 1439, - "2021-01-01": 1378, - "2015-01-01": 1378 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.4.ORANGE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.4.ORANGE_COUNTY_VT", - "description": null, - "label": "ORANGE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1671, - "2023-01-01": 1511, - "2022-01-01": 1436, - "2021-01-01": 1352, - "2015-01-01": 1352 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.4.ORLEANS_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.4.ORLEANS_COUNTY_VT", - "description": null, - "label": "ORLEANS COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1524, - "2023-01-01": 1318, - "2022-01-01": 1244, - "2021-01-01": 1222, - "2015-01-01": 1222 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.4.RUTLAND_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.4.RUTLAND_COUNTY_VT", - "description": null, - "label": "RUTLAND COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 2004, - "2023-01-01": 1825, - "2022-01-01": 1620, - "2021-01-01": 1378, - "2015-01-01": 1378 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.4.WASHINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.4.WASHINGTON_COUNTY_VT", - "description": null, - "label": "WASHINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1975, - "2023-01-01": 1690, - "2022-01-01": 1551, - "2021-01-01": 1532, - "2015-01-01": 1532 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.4.WINDHAM_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.4.WINDHAM_COUNTY_VT", - "description": null, - "label": "WINDHAM COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1785, - "2023-01-01": 1545, - "2022-01-01": 1477, - "2021-01-01": 1347, - "2015-01-01": 1347 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.4.WINDSOR_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.4.WINDSOR_COUNTY_VT", - "description": null, - "label": "WINDSOR COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1731, - "2023-01-01": 1542, - "2022-01-01": 1490, - "2021-01-01": 1441, - "2015-01-01": 1441 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.5": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.5.ADDISON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.5.ADDISON_COUNTY_VT", - "description": null, - "label": "ADDISON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1774, - "2023-01-01": 1601, - "2022-01-01": 1515, - "2021-01-01": 1435, - "2015-01-01": 1435 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.5.BENNINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.5.BENNINGTON_COUNTY_VT", - "description": null, - "label": "BENNINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1929, - "2023-01-01": 1578, - "2022-01-01": 1380, - "2021-01-01": 1275, - "2015-01-01": 1275 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.5.CALEDONIA_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.5.CALEDONIA_COUNTY_VT", - "description": null, - "label": "CALEDONIA COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1657, - "2023-01-01": 1625, - "2022-01-01": 1501, - "2021-01-01": 1431, - "2015-01-01": 1431 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.5.CHITTENDEN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.5.CHITTENDEN_COUNTY_VT", - "description": null, - "label": "CHITTENDEN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 2083, - "2023-01-01": 2083, - "2022-01-01": 2034, - "2021-01-01": 2083, - "2015-01-01": 2083 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.5.ESSEX_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.5.ESSEX_COUNTY_VT", - "description": null, - "label": "ESSEX COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1319, - "2023-01-01": 1169, - "2022-01-01": 1085, - "2021-01-01": 1026, - "2015-01-01": 1026 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.5.FRANKLIN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.5.FRANKLIN_COUNTY_VT", - "description": null, - "label": "FRANKLIN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1800, - "2023-01-01": 1587, - "2022-01-01": 1478, - "2021-01-01": 1419, - "2015-01-01": 1419 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.5.GRAND_ISLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.5.GRAND_ISLE_COUNTY_VT", - "description": null, - "label": "GRAND ISLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1800, - "2023-01-01": 1587, - "2022-01-01": 1478, - "2021-01-01": 1419, - "2015-01-01": 1419 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.5.LAMOILLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.5.LAMOILLE_COUNTY_VT", - "description": null, - "label": "LAMOILLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1719, - "2023-01-01": 1556, - "2022-01-01": 1439, - "2021-01-01": 1378, - "2015-01-01": 1378 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.5.ORANGE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.5.ORANGE_COUNTY_VT", - "description": null, - "label": "ORANGE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1671, - "2023-01-01": 1511, - "2022-01-01": 1436, - "2021-01-01": 1352, - "2015-01-01": 1352 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.5.ORLEANS_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.5.ORLEANS_COUNTY_VT", - "description": null, - "label": "ORLEANS COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1524, - "2023-01-01": 1318, - "2022-01-01": 1244, - "2021-01-01": 1222, - "2015-01-01": 1222 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.5.RUTLAND_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.5.RUTLAND_COUNTY_VT", - "description": null, - "label": "RUTLAND COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 2004, - "2023-01-01": 1825, - "2022-01-01": 1620, - "2021-01-01": 1378, - "2015-01-01": 1378 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.5.WASHINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.5.WASHINGTON_COUNTY_VT", - "description": null, - "label": "WASHINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1975, - "2023-01-01": 1690, - "2022-01-01": 1551, - "2021-01-01": 1532, - "2015-01-01": 1532 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.5.WINDHAM_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.5.WINDHAM_COUNTY_VT", - "description": null, - "label": "WINDHAM COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1785, - "2023-01-01": 1545, - "2022-01-01": 1477, - "2021-01-01": 1347, - "2015-01-01": 1347 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.5.WINDSOR_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.5.WINDSOR_COUNTY_VT", - "description": null, - "label": "WINDSOR COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1731, - "2023-01-01": 1542, - "2022-01-01": 1490, - "2021-01-01": 1441, - "2015-01-01": 1441 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.6": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.6.ADDISON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.6.ADDISON_COUNTY_VT", - "description": null, - "label": "ADDISON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1774, - "2023-01-01": 1601, - "2022-01-01": 1515, - "2021-01-01": 1435, - "2015-01-01": 1435 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.6.BENNINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.6.BENNINGTON_COUNTY_VT", - "description": null, - "label": "BENNINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1929, - "2023-01-01": 1578, - "2022-01-01": 1380, - "2021-01-01": 1275, - "2015-01-01": 1275 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.6.CALEDONIA_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.6.CALEDONIA_COUNTY_VT", - "description": null, - "label": "CALEDONIA COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1657, - "2023-01-01": 1625, - "2022-01-01": 1501, - "2021-01-01": 1431, - "2015-01-01": 1431 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.6.CHITTENDEN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.6.CHITTENDEN_COUNTY_VT", - "description": null, - "label": "CHITTENDEN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 2083, - "2023-01-01": 2083, - "2022-01-01": 2034, - "2021-01-01": 2083, - "2015-01-01": 2083 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.6.ESSEX_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.6.ESSEX_COUNTY_VT", - "description": null, - "label": "ESSEX COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1319, - "2023-01-01": 1169, - "2022-01-01": 1085, - "2021-01-01": 1026, - "2015-01-01": 1026 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.6.FRANKLIN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.6.FRANKLIN_COUNTY_VT", - "description": null, - "label": "FRANKLIN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1800, - "2023-01-01": 1587, - "2022-01-01": 1478, - "2021-01-01": 1419, - "2015-01-01": 1419 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.6.GRAND_ISLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.6.GRAND_ISLE_COUNTY_VT", - "description": null, - "label": "GRAND ISLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1800, - "2023-01-01": 1587, - "2022-01-01": 1478, - "2021-01-01": 1419, - "2015-01-01": 1419 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.6.LAMOILLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.6.LAMOILLE_COUNTY_VT", - "description": null, - "label": "LAMOILLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1719, - "2023-01-01": 1556, - "2022-01-01": 1439, - "2021-01-01": 1378, - "2015-01-01": 1378 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.6.ORANGE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.6.ORANGE_COUNTY_VT", - "description": null, - "label": "ORANGE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1671, - "2023-01-01": 1511, - "2022-01-01": 1436, - "2021-01-01": 1352, - "2015-01-01": 1352 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.6.ORLEANS_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.6.ORLEANS_COUNTY_VT", - "description": null, - "label": "ORLEANS COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1524, - "2023-01-01": 1318, - "2022-01-01": 1244, - "2021-01-01": 1222, - "2015-01-01": 1222 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.6.RUTLAND_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.6.RUTLAND_COUNTY_VT", - "description": null, - "label": "RUTLAND COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 2004, - "2023-01-01": 1825, - "2022-01-01": 1620, - "2021-01-01": 1378, - "2015-01-01": 1378 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.6.WASHINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.6.WASHINGTON_COUNTY_VT", - "description": null, - "label": "WASHINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1975, - "2023-01-01": 1690, - "2022-01-01": 1551, - "2021-01-01": 1532, - "2015-01-01": 1532 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.6.WINDHAM_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.6.WINDHAM_COUNTY_VT", - "description": null, - "label": "WINDHAM COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1785, - "2023-01-01": 1545, - "2022-01-01": 1477, - "2021-01-01": 1347, - "2015-01-01": 1347 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.6.WINDSOR_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.6.WINDSOR_COUNTY_VT", - "description": null, - "label": "WINDSOR COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1731, - "2023-01-01": 1542, - "2022-01-01": 1490, - "2021-01-01": 1441, - "2015-01-01": 1441 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.7": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.7", - "description": null, - "label": "7", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.7.ADDISON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.7.ADDISON_COUNTY_VT", - "description": null, - "label": "ADDISON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1774, - "2023-01-01": 1601, - "2022-01-01": 1515, - "2021-01-01": 1435, - "2015-01-01": 1435 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.7.BENNINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.7.BENNINGTON_COUNTY_VT", - "description": null, - "label": "BENNINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1929, - "2023-01-01": 1578, - "2022-01-01": 1380, - "2021-01-01": 1275, - "2015-01-01": 1275 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.7.CALEDONIA_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.7.CALEDONIA_COUNTY_VT", - "description": null, - "label": "CALEDONIA COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1657, - "2023-01-01": 1625, - "2022-01-01": 1501, - "2021-01-01": 1431, - "2015-01-01": 1431 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.7.CHITTENDEN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.7.CHITTENDEN_COUNTY_VT", - "description": null, - "label": "CHITTENDEN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 2083, - "2023-01-01": 2083, - "2022-01-01": 2034, - "2021-01-01": 2083, - "2015-01-01": 2083 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.7.ESSEX_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.7.ESSEX_COUNTY_VT", - "description": null, - "label": "ESSEX COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1319, - "2023-01-01": 1169, - "2022-01-01": 1085, - "2021-01-01": 1026, - "2015-01-01": 1026 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.7.FRANKLIN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.7.FRANKLIN_COUNTY_VT", - "description": null, - "label": "FRANKLIN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1800, - "2023-01-01": 1587, - "2022-01-01": 1478, - "2021-01-01": 1419, - "2015-01-01": 1419 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.7.GRAND_ISLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.7.GRAND_ISLE_COUNTY_VT", - "description": null, - "label": "GRAND ISLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1800, - "2023-01-01": 1587, - "2022-01-01": 1478, - "2021-01-01": 1419, - "2015-01-01": 1419 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.7.LAMOILLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.7.LAMOILLE_COUNTY_VT", - "description": null, - "label": "LAMOILLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1719, - "2023-01-01": 1556, - "2022-01-01": 1439, - "2021-01-01": 1378, - "2015-01-01": 1378 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.7.ORANGE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.7.ORANGE_COUNTY_VT", - "description": null, - "label": "ORANGE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1671, - "2023-01-01": 1511, - "2022-01-01": 1436, - "2021-01-01": 1352, - "2015-01-01": 1352 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.7.ORLEANS_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.7.ORLEANS_COUNTY_VT", - "description": null, - "label": "ORLEANS COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1524, - "2023-01-01": 1318, - "2022-01-01": 1244, - "2021-01-01": 1222, - "2015-01-01": 1222 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.7.RUTLAND_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.7.RUTLAND_COUNTY_VT", - "description": null, - "label": "RUTLAND COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 2004, - "2023-01-01": 1825, - "2022-01-01": 1620, - "2021-01-01": 1378, - "2015-01-01": 1378 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.7.WASHINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.7.WASHINGTON_COUNTY_VT", - "description": null, - "label": "WASHINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1975, - "2023-01-01": 1690, - "2022-01-01": 1551, - "2021-01-01": 1532, - "2015-01-01": 1532 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.7.WINDHAM_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.7.WINDHAM_COUNTY_VT", - "description": null, - "label": "WINDHAM COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1785, - "2023-01-01": 1545, - "2022-01-01": 1477, - "2021-01-01": 1347, - "2015-01-01": 1347 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.7.WINDSOR_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.7.WINDSOR_COUNTY_VT", - "description": null, - "label": "WINDSOR COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1731, - "2023-01-01": 1542, - "2022-01-01": 1490, - "2021-01-01": 1441, - "2015-01-01": 1441 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.8": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.8", - "description": null, - "label": "8", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.8.ADDISON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.8.ADDISON_COUNTY_VT", - "description": null, - "label": "ADDISON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1774, - "2023-01-01": 1601, - "2022-01-01": 1515, - "2021-01-01": 1435, - "2015-01-01": 1435 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.8.BENNINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.8.BENNINGTON_COUNTY_VT", - "description": null, - "label": "BENNINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1929, - "2023-01-01": 1578, - "2022-01-01": 1380, - "2021-01-01": 1275, - "2015-01-01": 1275 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.8.CALEDONIA_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.8.CALEDONIA_COUNTY_VT", - "description": null, - "label": "CALEDONIA COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1657, - "2023-01-01": 1625, - "2022-01-01": 1501, - "2021-01-01": 1431, - "2015-01-01": 1431 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.8.CHITTENDEN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.8.CHITTENDEN_COUNTY_VT", - "description": null, - "label": "CHITTENDEN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 2083, - "2023-01-01": 2083, - "2022-01-01": 2034, - "2021-01-01": 2083, - "2015-01-01": 2083 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.8.ESSEX_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.8.ESSEX_COUNTY_VT", - "description": null, - "label": "ESSEX COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1319, - "2023-01-01": 1169, - "2022-01-01": 1085, - "2021-01-01": 1026, - "2015-01-01": 1026 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.8.FRANKLIN_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.8.FRANKLIN_COUNTY_VT", - "description": null, - "label": "FRANKLIN COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1800, - "2023-01-01": 1587, - "2022-01-01": 1478, - "2021-01-01": 1419, - "2015-01-01": 1419 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.8.GRAND_ISLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.8.GRAND_ISLE_COUNTY_VT", - "description": null, - "label": "GRAND ISLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1800, - "2023-01-01": 1587, - "2022-01-01": 1478, - "2021-01-01": 1419, - "2015-01-01": 1419 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.8.LAMOILLE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.8.LAMOILLE_COUNTY_VT", - "description": null, - "label": "LAMOILLE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1719, - "2023-01-01": 1556, - "2022-01-01": 1439, - "2021-01-01": 1378, - "2015-01-01": 1378 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.8.ORANGE_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.8.ORANGE_COUNTY_VT", - "description": null, - "label": "ORANGE COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1671, - "2023-01-01": 1511, - "2022-01-01": 1436, - "2021-01-01": 1352, - "2015-01-01": 1352 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.8.ORLEANS_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.8.ORLEANS_COUNTY_VT", - "description": null, - "label": "ORLEANS COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1524, - "2023-01-01": 1318, - "2022-01-01": 1244, - "2021-01-01": 1222, - "2015-01-01": 1222 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.8.RUTLAND_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.8.RUTLAND_COUNTY_VT", - "description": null, - "label": "RUTLAND COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 2004, - "2023-01-01": 1825, - "2022-01-01": 1620, - "2021-01-01": 1378, - "2015-01-01": 1378 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.8.WASHINGTON_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.8.WASHINGTON_COUNTY_VT", - "description": null, - "label": "WASHINGTON COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1975, - "2023-01-01": 1690, - "2022-01-01": 1551, - "2021-01-01": 1532, - "2015-01-01": 1532 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.8.WINDHAM_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.8.WINDHAM_COUNTY_VT", - "description": null, - "label": "WINDHAM COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1785, - "2023-01-01": 1545, - "2022-01-01": 1477, - "2021-01-01": 1347, - "2015-01-01": 1347 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.fair_market_rent.8.WINDSOR_COUNTY_VT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.fair_market_rent.8.WINDSOR_COUNTY_VT", - "description": null, - "label": "WINDSOR COUNTY VT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1731, - "2023-01-01": 1542, - "2022-01-01": 1490, - "2021-01-01": 1441, - "2015-01-01": 1441 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.countable_tax_exempt_ss_fraction": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.countable_tax_exempt_ss_fraction", - "description": "Vermont counts this fraction of tax-exempt social security benefits as income for the renter credit.", - "label": "Vermont renter credit non-taxable social security rate", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.75, - "2015-01-01": 0.75 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.renter.shared_residence_reduction": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.renter.shared_residence_reduction", - "description": "Vermont reduces the renter credit by this fraction for filers who reside with people outside their filing unit.", - "label": "Vermont renter credit shared rent fraction", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.veteran": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.credits.veteran", - "description": null, - "label": "veteran", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.veteran.reduction_per_increment": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.veteran.reduction_per_increment", - "description": "Vermont veteran tax credit is reduced by this dollar amount per income increment above the full credit threshold.", - "label": "Vermont veteran tax credit reduction per increment", - "unit": "currency-USD", - "period": "year", - "values": { - "2025-01-01": 5, - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.veteran.full_credit_threshold": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.veteran.full_credit_threshold", - "description": "Vermont provides the full veteran tax credit for filers with adjusted gross income below this threshold.", - "label": "Vermont veteran tax credit full credit threshold", - "unit": "currency-USD", - "period": "year", - "values": { - "2025-01-01": 25000, - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.veteran.partial_credit_threshold": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.veteran.partial_credit_threshold", - "description": "Vermont phases out the veteran tax credit for filers with adjusted gross income above this threshold.", - "label": "Vermont veteran tax credit partial credit threshold", - "unit": "currency-USD", - "period": "year", - "values": { - "2025-01-01": 30000, - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.veteran.amount": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.veteran.amount", - "description": "Vermont provides this amount as a tax credit for eligible veterans.", - "label": "Vermont veteran tax credit amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2025-01-01": 250, - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.veteran.income_increment": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.veteran.income_increment", - "description": "Vermont veteran tax credit phases out in increments of this dollar amount above the full credit threshold.", - "label": "Vermont veteran tax credit income increment", - "unit": "currency-USD", - "period": "year", - "values": { - "2025-01-01": 100, - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.non_refundable": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.non_refundable", - "description": "Vermont non-refundable tax credits.", - "label": "Vermont non-refundable tax credits", - "unit": "list", - "period": null, - "values": { - "2021-01-01": ["vt_charitable_contribution_credit"], - "2015-01-01": ["vt_charitable_contribution_credit"] - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.credits.elderly_or_disabled": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.credits.elderly_or_disabled", - "description": "Vermont matches this fraction of the federal credit for elderly or the disabled.", - "label": "Vermont elderly or the disabled tax credit match", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.24, - "2015-01-01": 0.24 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.exemption": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.exemption", - "description": null, - "label": "exemption", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.exemption.personal": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.exemption.personal", - "description": "Vermont provides the following personal exemption amount.", - "label": "Vermont personal exemption amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 6350, - "2034-01-01": 6200, - "2033-01-01": 6100, - "2032-01-01": 5950, - "2031-01-01": 5850, - "2030-01-01": 5750, - "2029-01-01": 5600, - "2028-01-01": 5500, - "2027-01-01": 5400, - "2026-01-01": 5250, - "2025-01-01": 5200, - "2024-01-01": 5100, - "2023-01-01": 4850, - "2022-01-01": 4500, - "2021-01-01": 4350, - "2015-01-01": 4350 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.rates": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.rates", - "description": null, - "label": "rates", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.rates.amt": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.rates.amt", - "description": "Vermont levies an alternative minimum tax of this rate above the threshold.", - "label": "Vermont alternative minimum tax rate" - }, - "gov.states.vt.tax.income.rates.amt[0]": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.rates.amt[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.vt.tax.income.rates.amt[0].threshold": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.rates.amt[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.rates.amt[0].amount": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.rates.amt[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.rates.amt[1]": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.rates.amt[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.vt.tax.income.rates.amt[1].threshold": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.rates.amt[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.rates.amt[1].amount": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.rates.amt[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.rates.head_of_household": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.rates.head_of_household", - "description": "Vermont taxes income of head of household filers at this rate.", - "label": "Vermont income tax rates head of household filers" - }, - "gov.states.vt.tax.income.rates.head_of_household[0]": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.rates.head_of_household[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.vt.tax.income.rates.head_of_household[0].rate": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.rates.head_of_household[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0335, - "2015-01-01": 0.0335 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.rates.head_of_household[0].threshold": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.rates.head_of_household[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.rates.head_of_household[1]": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.rates.head_of_household[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.vt.tax.income.rates.head_of_household[1].rate": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.rates.head_of_household[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.066, - "2015-01-01": 0.066 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.rates.head_of_household[1].threshold": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.rates.head_of_household[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 79946.7118375634, - "2034-01-01": 78398.616293972, - "2033-01-01": 76869.6330410423, - "2032-01-01": 75378.8743694358, - "2031-01-01": 73926.3402791526, - "2030-01-01": 72492.918479531, - "2029-01-01": 71078.6089705709, - "2028-01-01": 69683.4117522725, - "2027-01-01": 68269.1022433126, - "2026-01-01": 66627.3564754793, - "2025-01-01": 65624.1841924685, - "2024-01-01": 64200, - "2023-01-01": 60850, - "2022-01-01": 56500, - "2021-01-01": 54850, - "2015-01-01": 54850 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.rates.head_of_household[2]": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.rates.head_of_household[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.vt.tax.income.rates.head_of_household[2].rate": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.rates.head_of_household[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.076, - "2015-01-01": 0.076 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.rates.head_of_household[2].threshold": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.rates.head_of_household[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 206342.214197574, - "2034-01-01": 202346.584422292, - "2033-01-01": 198400.283409668, - "2032-01-01": 194552.63992236, - "2031-01-01": 190803.653960367, - "2030-01-01": 187103.996761032, - "2029-01-01": 183453.668324355, - "2028-01-01": 179852.668650336, - "2027-01-01": 176202.340213659, - "2026-01-01": 171964.999501354, - "2025-01-01": 169375.81496405, - "2024-01-01": 165700, - "2023-01-01": 157150, - "2022-01-01": 145950, - "2021-01-01": 141700, - "2015-01-01": 141700 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.rates.head_of_household[3]": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.rates.head_of_household[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.vt.tax.income.rates.head_of_household[3].rate": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.rates.head_of_household[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0875, - "2015-01-01": 0.0875 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.rates.head_of_household[3].threshold": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.rates.head_of_household[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 334107.520031437, - "2034-01-01": 327637.831022939, - "2033-01-01": 321248.01471825, - "2032-01-01": 315017.943821178, - "2031-01-01": 308947.618331723, - "2030-01-01": 302957.165546077, - "2029-01-01": 297046.58546424, - "2028-01-01": 291215.878086211, - "2027-01-01": 285305.298004373, - "2026-01-01": 278444.232747213, - "2025-01-01": 274251.847645472, - "2024-01-01": 268300, - "2023-01-01": 254500, - "2022-01-01": 236350, - "2021-01-01": 229450, - "2015-01-01": 229450 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.rates.separate": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.rates.separate", - "description": "Vermont taxes income of separate filers at this rate.", - "label": "Vermont income tax rates separate filers" - }, - "gov.states.vt.tax.income.rates.separate[0]": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.rates.separate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.vt.tax.income.rates.separate[0].rate": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.rates.separate[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0335, - "2015-01-01": 0.0335 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.rates.separate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.rates.separate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.rates.separate[1]": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.rates.separate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.vt.tax.income.rates.separate[1].rate": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.rates.separate[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.066, - "2015-01-01": 0.066 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.rates.separate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.rates.separate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 49779.9035156791, - "2034-01-01": 48815.9608465971, - "2033-01-01": 47863.9187042939, - "2032-01-01": 46935.6776155482, - "2031-01-01": 46031.2375803602, - "2030-01-01": 45138.6980719509, - "2029-01-01": 44258.0590903205, - "2028-01-01": 43389.3206354688, - "2027-01-01": 42508.6816538383, - "2026-01-01": 41486.4264035403, - "2025-01-01": 40861.7875871329, - "2024-01-01": 39975, - "2023-01-01": 37925, - "2022-01-01": 35225, - "2021-01-01": 34200, - "2015-01-01": 34200 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.rates.separate[2]": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.rates.separate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.vt.tax.income.rates.separate[2].rate": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.rates.separate[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.076, - "2015-01-01": 0.076 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.rates.separate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.rates.separate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 120355.914316207, - "2034-01-01": 118025.331227607, - "2033-01-01": 115723.520769731, - "2032-01-01": 113479.255573302, - "2031-01-01": 111292.535638319, - "2030-01-01": 109134.58833406, - "2029-01-01": 107005.413660525, - "2028-01-01": 104905.011617712, - "2027-01-01": 102775.836944177, - "2026-01-01": 100304.267965032, - "2025-01-01": 98794.0405327427, - "2024-01-01": 96650, - "2023-01-01": 91700, - "2022-01-01": 85150, - "2021-01-01": 82675, - "2015-01-01": 82675 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.rates.separate[3]": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.rates.separate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.vt.tax.income.rates.separate[3].rate": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.rates.separate[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.0875, - "2015-01-01": 0.0875 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.rates.separate[3].threshold": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.rates.separate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 183429.137907681, - "2034-01-01": 179877.199067011, - "2033-01-01": 176369.111323139, - "2032-01-01": 172948.725772864, - "2031-01-01": 169616.042416187, - "2030-01-01": 166327.210156307, - "2029-01-01": 163082.228993226, - "2028-01-01": 159881.098926943, - "2027-01-01": 156636.117763862, - "2026-01-01": 152869.30854888, - "2025-01-01": 150567.637563094, - "2024-01-01": 147300, - "2023-01-01": 139725, - "2022-01-01": 129750, - "2021-01-01": 125975, - "2015-01-01": 125975 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.rates.joint": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.rates.joint", - "description": "Vermont taxes income of joint filers at this rate.", - "label": "Vermont State income tax rates for joint filers" - }, - "gov.states.vt.tax.income.rates.joint[0]": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.rates.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.vt.tax.income.rates.joint[0].rate": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.rates.joint[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0335, - "2015-01-01": 0.0335 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.rates.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.rates.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.rates.joint[1]": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.rates.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.vt.tax.income.rates.joint[1].rate": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.rates.joint[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.066, - "2015-01-01": 0.066 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.rates.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.rates.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 99559.8070313582, - "2034-01-01": 97631.9216931941, - "2033-01-01": 95727.8374085877, - "2032-01-01": 93871.3552310965, - "2031-01-01": 92062.4751607204, - "2030-01-01": 90277.3961439019, - "2029-01-01": 88516.1181806409, - "2028-01-01": 86778.6412709375, - "2027-01-01": 85017.3633076766, - "2026-01-01": 82972.8528070805, - "2025-01-01": 81723.5751742657, - "2024-01-01": 79950, - "2023-01-01": 75850, - "2022-01-01": 70450, - "2021-01-01": 68400, - "2015-01-01": 68400 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.rates.joint[2]": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.rates.joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.vt.tax.income.rates.joint[2].rate": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.rates.joint[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.076, - "2015-01-01": 0.076 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.rates.joint[2].threshold": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.rates.joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 240711.828632414, - "2034-01-01": 236050.662455215, - "2033-01-01": 231447.041539462, - "2032-01-01": 226958.511146603, - "2031-01-01": 222585.071276639, - "2030-01-01": 218269.17666812, - "2029-01-01": 214010.827321049, - "2028-01-01": 209810.023235425, - "2027-01-01": 205551.673888354, - "2026-01-01": 200608.535930065, - "2025-01-01": 197588.081065485, - "2024-01-01": 193300, - "2023-01-01": 183400, - "2022-01-01": 170300, - "2021-01-01": 165350, - "2015-01-01": 165350 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.rates.joint[3]": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.rates.joint[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.vt.tax.income.rates.joint[3].rate": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.rates.joint[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0875, - "2015-01-01": 0.0875 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.rates.joint[3].threshold": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.rates.joint[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 366858.275815361, - "2034-01-01": 359754.398134021, - "2033-01-01": 352738.222646278, - "2032-01-01": 345897.451545729, - "2031-01-01": 339232.084832373, - "2030-01-01": 332654.420312614, - "2029-01-01": 326164.457986452, - "2028-01-01": 319762.197853886, - "2027-01-01": 313272.235527724, - "2026-01-01": 305738.61709776, - "2025-01-01": 301135.275126187, - "2024-01-01": 294600, - "2023-01-01": 279450, - "2022-01-01": 259500, - "2021-01-01": 251950, - "2015-01-01": 251950 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.rates.single": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.rates.single", - "description": "Vermont taxes income of single filers at this rate.", - "label": "Vermont income tax rates single filers" - }, - "gov.states.vt.tax.income.rates.single[0]": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.rates.single[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.vt.tax.income.rates.single[0].rate": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.rates.single[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0335, - "2015-01-01": 0.0335 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.rates.single[0].threshold": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.rates.single[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.rates.single[1]": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.rates.single[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.vt.tax.income.rates.single[1].rate": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.rates.single[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.066, - "2015-01-01": 0.066 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.rates.single[1].threshold": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.rates.single[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 59648.7149068425, - "2034-01-01": 58493.6716585866, - "2033-01-01": 57352.8882035191, - "2032-01-01": 56240.6243348283, - "2031-01-01": 55156.8800525142, - "2030-01-01": 54087.3955633884, - "2029-01-01": 53032.1708674509, - "2028-01-01": 51991.2059647018, - "2027-01-01": 50935.9812687644, - "2026-01-01": 49711.0650338856, - "2025-01-01": 48962.5922557514, - "2024-01-01": 47900, - "2023-01-01": 45400, - "2022-01-01": 42150, - "2021-01-01": 40950, - "2015-01-01": 40950 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.rates.single[2]": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.rates.single[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.vt.tax.income.rates.single[2].rate": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.rates.single[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.076, - "2015-01-01": 0.076 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.rates.single[2].threshold": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.rates.single[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 144452.002697155, - "2034-01-01": 141654.82071808, - "2033-01-01": 138892.171849858, - "2032-01-01": 136198.589203342, - "2031-01-01": 133574.072778531, - "2030-01-01": 130984.089464573, - "2029-01-01": 128428.639261468, - "2028-01-01": 125907.722169215, - "2027-01-01": 123352.27196611, - "2026-01-01": 120385.877743857, - "2025-01-01": 118573.292310379, - "2024-01-01": 116000, - "2023-01-01": 110050, - "2022-01-01": 102200, - "2021-01-01": 99200, - "2015-01-01": 99200 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.rates.single[3]": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.rates.single[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.vt.tax.income.rates.single[3].rate": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.rates.single[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.0875, - "2015-01-01": 0.0875 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.rates.single[3].threshold": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.rates.single[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 301356.764247513, - "2034-01-01": 295521.263911857, - "2033-01-01": 289757.806790222, - "2032-01-01": 284138.436096627, - "2031-01-01": 278663.151831074, - "2030-01-01": 273259.91077954, - "2029-01-01": 267928.712942028, - "2028-01-01": 262669.558318535, - "2027-01-01": 257338.360481022, - "2026-01-01": 251149.848396666, - "2025-01-01": 247368.420164757, - "2024-01-01": 242000, - "2023-01-01": 229550, - "2022-01-01": 213150, - "2021-01-01": 206950, - "2015-01-01": 206950 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.rates.surviving_spouse": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.rates.surviving_spouse", - "description": "Vermont taxes income of surviving spouse filers at this rate.", - "label": "Vermont income tax rates surviving spouse filers" - }, - "gov.states.vt.tax.income.rates.surviving_spouse[0]": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.rates.surviving_spouse[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.vt.tax.income.rates.surviving_spouse[0].rate": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.rates.surviving_spouse[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0335, - "2015-01-01": 0.0335 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.rates.surviving_spouse[0].threshold": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.rates.surviving_spouse[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.rates.surviving_spouse[1]": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.rates.surviving_spouse[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.vt.tax.income.rates.surviving_spouse[1].rate": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.rates.surviving_spouse[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.066, - "2015-01-01": 0.066 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.rates.surviving_spouse[1].threshold": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.rates.surviving_spouse[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 99559.8070313582, - "2034-01-01": 97631.9216931941, - "2033-01-01": 95727.8374085877, - "2032-01-01": 93871.3552310965, - "2031-01-01": 92062.4751607204, - "2030-01-01": 90277.3961439019, - "2029-01-01": 88516.1181806409, - "2028-01-01": 86778.6412709375, - "2027-01-01": 85017.3633076766, - "2026-01-01": 82972.8528070805, - "2025-01-01": 81723.5751742657, - "2024-01-01": 79950, - "2023-01-01": 75850, - "2022-01-01": 70450, - "2021-01-01": 68400, - "2015-01-01": 68400 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.rates.surviving_spouse[2]": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.rates.surviving_spouse[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.vt.tax.income.rates.surviving_spouse[2].rate": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.rates.surviving_spouse[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.076, - "2015-01-01": 0.076 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.rates.surviving_spouse[2].threshold": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.rates.surviving_spouse[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 240711.828632414, - "2034-01-01": 236050.662455215, - "2033-01-01": 231447.041539462, - "2032-01-01": 226958.511146603, - "2031-01-01": 222585.071276639, - "2030-01-01": 218269.17666812, - "2029-01-01": 214010.827321049, - "2028-01-01": 209810.023235425, - "2027-01-01": 205551.673888354, - "2026-01-01": 200608.535930065, - "2025-01-01": 197588.081065485, - "2024-01-01": 193300, - "2023-01-01": 183400, - "2022-01-01": 170300, - "2021-01-01": 165350, - "2015-01-01": 165350 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.rates.surviving_spouse[3]": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.rates.surviving_spouse[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.vt.tax.income.rates.surviving_spouse[3].rate": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.rates.surviving_spouse[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0875, - "2015-01-01": 0.0875 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.rates.surviving_spouse[3].threshold": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.rates.surviving_spouse[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 366858.275815361, - "2034-01-01": 359754.398134021, - "2033-01-01": 352738.222646278, - "2032-01-01": 345897.451545729, - "2031-01-01": 339232.084832373, - "2030-01-01": 332654.420312614, - "2029-01-01": 326164.457986452, - "2028-01-01": 319762.197853886, - "2027-01-01": 313272.235527724, - "2026-01-01": 305738.61709776, - "2025-01-01": 301135.275126187, - "2024-01-01": 294600, - "2023-01-01": 279450, - "2022-01-01": 259500, - "2021-01-01": 251950, - "2015-01-01": 251950 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.deductions": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.deductions", - "description": null, - "label": "deductions", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.deductions.standard": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.deductions.standard", - "description": null, - "label": "standard", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.deductions.standard.base": { - "type": "parameterNode", - "parameter": "gov.states.vt.tax.income.deductions.standard.base", - "description": "Vermont provides this standard deduction based on filing status.", - "label": "Vermont standard deduction", - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.deductions.standard.base.JOINT": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.deductions.standard.base.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2035-01-01": 18492.3468970065, - "2034-01-01": 18134.2593764094, - "2033-01-01": 17780.5926894, - "2032-01-01": 17435.7676695658, - "2031-01-01": 17099.7843169068, - "2030-01-01": 16768.2217978354, - "2029-01-01": 16441.0801123517, - "2028-01-01": 16118.3592604556, - "2027-01-01": 15791.2175749718, - "2026-01-01": 15411.4679697954, - "2025-01-01": 15179.4257828373, - "2024-01-01": 14850, - "2023-01-01": 14050, - "2022-01-01": 13050, - "2021-01-01": 12700, - "2015-01-01": 12700 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.deductions.standard.base.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.deductions.standard.base.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2035-01-01": 13822.5623270554, - "2034-01-01": 13554.9009480232, - "2033-01-01": 13290.5440304606, - "2032-01-01": 13032.796035837, - "2031-01-01": 12781.6569641526, - "2030-01-01": 12533.8223539376, - "2029-01-01": 12289.2922051922, - "2028-01-01": 12048.0665179163, - "2027-01-01": 11803.5363691709, - "2026-01-01": 11519.683128938, - "2025-01-01": 11346.237453838, - "2024-01-01": 11100, - "2023-01-01": 10550, - "2022-01-01": 9800, - "2021-01-01": 9500, - "2015-01-01": 9500 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.deductions.standard.base.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.deductions.standard.base.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 18492.3468970065, - "2034-01-01": 18134.2593764094, - "2033-01-01": 17780.5926894, - "2032-01-01": 17435.7676695658, - "2031-01-01": 17099.7843169068, - "2030-01-01": 16768.2217978354, - "2029-01-01": 16441.0801123517, - "2028-01-01": 16118.3592604556, - "2027-01-01": 15791.2175749718, - "2026-01-01": 15411.4679697954, - "2025-01-01": 15179.4257828373, - "2024-01-01": 14850, - "2023-01-01": 14050, - "2022-01-01": 13050, - "2021-01-01": 12700, - "2015-01-01": 12700 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.deductions.standard.base.SINGLE": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.deductions.standard.base.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 9215.04155137024, - "2034-01-01": 9036.60063201547, - "2033-01-01": 8860.36268697372, - "2032-01-01": 8688.53069055802, - "2031-01-01": 8521.10464276837, - "2030-01-01": 8355.88156929173, - "2029-01-01": 8192.86147012811, - "2028-01-01": 8032.04434527752, - "2027-01-01": 7869.02424611391, - "2026-01-01": 7679.78875262534, - "2025-01-01": 7564.15830255868, - "2024-01-01": 7400, - "2023-01-01": 7000, - "2022-01-01": 6500, - "2021-01-01": 6350, - "2015-01-01": 6350 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.deductions.standard.base.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.deductions.standard.base.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 9215.04155137024, - "2034-01-01": 9036.60063201547, - "2033-01-01": 8860.36268697372, - "2032-01-01": 8688.53069055802, - "2031-01-01": 8521.10464276837, - "2030-01-01": 8355.88156929173, - "2029-01-01": 8192.86147012811, - "2028-01-01": 8032.04434527752, - "2027-01-01": 7869.02424611391, - "2026-01-01": 7679.78875262534, - "2025-01-01": 7564.15830255868, - "2024-01-01": 7400, - "2023-01-01": 7000, - "2022-01-01": 6500, - "2021-01-01": 6350, - "2015-01-01": 6350 - }, - "economy": true, - "household": true - }, - "gov.states.vt.tax.income.deductions.standard.additional": { - "type": "parameter", - "parameter": "gov.states.vt.tax.income.deductions.standard.additional", - "description": "Vermont provides this additional standard deduction amount for each aged or blind head or spouse.", - "label": "Vermont additional aged or blind, head or spouse, standard deduction amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1494.33106238436, - "2034-01-01": 1465.39469708359, - "2033-01-01": 1436.8155708606, - "2032-01-01": 1408.95092279319, - "2031-01-01": 1381.80075288136, - "2030-01-01": 1355.00782204731, - "2029-01-01": 1328.57213029105, - "2028-01-01": 1302.49367761257, - "2027-01-01": 1276.05798585631, - "2026-01-01": 1245.37114907438, - "2025-01-01": 1226.62026527979, - "2024-01-01": 1200, - "2023-01-01": 1150, - "2021-01-01": 1050, - "2015-01-01": 1050 - }, - "economy": true, - "household": true - }, - "gov.states.ct": { - "type": "parameterNode", - "parameter": "gov.states.ct", - "description": null, - "label": "Connecticut", - "economy": true, - "household": true - }, - "gov.states.ct.tax": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.states.ct.tax.income": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.recapture", - "description": null, - "label": "recapture", - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.high": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.recapture.high", - "description": null, - "label": "high", - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.high.increment": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.recapture.high.increment", - "description": "Connecticut increases the bracket threshold, among the high brackets, in these increments of State adjusted gross income, based on filing status.", - "label": "Connecticut income tax recapture high bracket increment", - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.high.increment.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.high.increment.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.high.increment.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.high.increment.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2015-01-01": 8000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.high.increment.JOINT": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.high.increment.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.high.increment.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.high.increment.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.high.increment.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.high.increment.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.high.max_amount": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.recapture.high.max_amount", - "description": "Connecticut provides a tax recapture amount of up to this maximum amount for filers in the high brackets, based on filing status.", - "label": "Connecticut income tax recapture high bracket max amount", - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.high.max_amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.high.max_amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2015-01-01": 450 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.high.max_amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.high.max_amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2015-01-01": 720 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.high.max_amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.high.max_amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2015-01-01": 900 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.high.max_amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.high.max_amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2015-01-01": 900 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.high.max_amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.high.max_amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2015-01-01": 450 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.high.start": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.recapture.high.start", - "description": "Connecticut allows a tax recapture amount, for filers in the high brackets, with income above this threshold, based on filing status.", - "label": "Connecticut income tax recapture high bracket start", - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.high.start.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.high.start.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2015-01-01": 500000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.high.start.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.high.start.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2015-01-01": 800000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.high.start.JOINT": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.high.start.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2015-01-01": 1000000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.high.start.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.high.start.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2015-01-01": 1000000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.high.start.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.high.start.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2015-01-01": 500000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.high.amount": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.recapture.high.amount", - "description": "Connecticut adds this tax recapture amount to filers in the high brackets, for each additional increment of state adjusted gross income, based on filing status.", - "label": "Connecticut income tax recapture high bracket increment", - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.high.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.high.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2015-01-01": 50 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.high.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.high.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2015-01-01": 80 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.high.amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.high.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2015-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.high.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.high.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2015-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.high.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.high.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2015-01-01": 50 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.middle": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.recapture.middle", - "description": null, - "label": "middle", - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.middle.increment": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.recapture.middle.increment", - "description": "Connecticut increases the bracket threshold, among the middle brackets, in these increments of State adjusted gross income, based on filing status.", - "label": "Connecticut income tax recapture middle bracket increment", - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.middle.increment.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.middle.increment.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.middle.increment.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.middle.increment.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2015-01-01": 8000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.middle.increment.JOINT": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.middle.increment.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.middle.increment.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.middle.increment.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.middle.increment.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.middle.increment.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.middle.max_amount": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.recapture.middle.max_amount", - "description": "Connecticut provides a tax recapture amount of up to this maximum amount for filers in the middle brackets, based on filing status.", - "label": "Connecticut income tax recapture middle bracket max amount", - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.middle.max_amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.middle.max_amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2015-01-01": 2700 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.middle.max_amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.middle.max_amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2015-01-01": 4200 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.middle.max_amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.middle.max_amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2015-01-01": 5400 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.middle.max_amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.middle.max_amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2015-01-01": 5400 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.middle.max_amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.middle.max_amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2015-01-01": 2700 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.middle.start": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.recapture.middle.start", - "description": "Connecticut allows a tax recapture amount, for filers in middle brackets, with income above this threshold, based on filing status.", - "label": "Connecticut income tax recapture middle bracket start", - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.middle.start.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.middle.start.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.middle.start.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.middle.start.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2015-01-01": 320000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.middle.start.JOINT": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.middle.start.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2015-01-01": 400000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.middle.start.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.middle.start.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2015-01-01": 400000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.middle.start.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.middle.start.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.middle.amount": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.recapture.middle.amount", - "description": "Connecticut adds this tax recapture amount to filers in the middle brackets, for each additional increment of state adjusted gross income, based on filing status.", - "label": "Connecticut income tax recapture middle bracket amount", - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.middle.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.middle.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2015-01-01": 90 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.middle.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.middle.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2015-01-01": 140 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.middle.amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.middle.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2015-01-01": 180 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.middle.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.middle.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2015-01-01": 180 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.middle.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.middle.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2015-01-01": 90 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.low": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.recapture.low", - "description": null, - "label": "low", - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.low.increment": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.recapture.low.increment", - "description": "Connecticut increases the bracket threshold, among the low brackets, in these increments of State adjusted gross income, based on filing status.", - "label": "Connecticut income tax recapture low bracket increment", - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.low.increment.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.low.increment.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.low.increment.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.low.increment.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2024-01-01": 8000, - "2015-01-01": 8000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.low.increment.JOINT": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.low.increment.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.low.increment.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.low.increment.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.low.increment.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.low.increment.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.low.max_amount": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.recapture.low.max_amount", - "description": "Connecticut provides a tax recapture amount of up to this maximum amount for filers in the low brackets, based on filing status.", - "label": "Connecticut income tax recapture low bracket max amount", - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.low.max_amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.low.max_amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 250, - "2015-01-01": 250 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.low.max_amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.low.max_amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2024-01-01": 400, - "2015-01-01": 400 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.low.max_amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.low.max_amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.low.max_amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.low.max_amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.low.max_amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.low.max_amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 250, - "2015-01-01": 250 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.low.start": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.recapture.low.start", - "description": "Connecticut allows a tax recapture amount, for filers in the low brackets, with income above this threshold, based on filing status.", - "label": "Connecticut income tax recapture low bracket start", - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.low.start.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.low.start.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 105000, - "2015-01-01": 105000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.low.start.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.low.start.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2024-01-01": 168000, - "2015-01-01": 168000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.low.start.JOINT": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.low.start.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 210000, - "2015-01-01": 210000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.low.start.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.low.start.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 210000, - "2015-01-01": 210000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.low.start.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.low.start.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 105000, - "2015-01-01": 105000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.low.in_effect": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.low.in_effect", - "description": "Connecticut applies recapture to filers in the low brackets if this is true.", - "label": "Connecticut recapture on filers in the low brackets in effect", - "unit": "bool", - "period": "year", - "values": { - "2024-01-01": true, - "2021-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.low.amount": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.recapture.low.amount", - "description": "Connecticut adds this tax recapture amount to filers in the low brackets, for each additional increment of state adjusted gross income, based on filing status.", - "label": "Connecticut income tax recapture low bracket amount", - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.low.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.low.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 25, - "2015-01-01": 25 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.low.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.low.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2024-01-01": 40, - "2015-01-01": 40 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.low.amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.low.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 50, - "2015-01-01": 50 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.low.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.low.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 50, - "2015-01-01": 50 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.recapture.low.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.recapture.low.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 25, - "2015-01-01": 25 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi", - "description": null, - "label": "agi", - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.head_of_household", - "description": "Connecticut provides head of household filers a credit for this fraction of taxes, depending on their adjusted gross income.", - "label": "Connecticut AGI credit for head of household filers" - }, - "gov.states.ct.tax.income.agi.head_of_household[0]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ct.tax.income.agi.head_of_household[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 19000, - "2015-01-01": 19000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[0].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.75, - "2015-01-01": 0.75 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[1]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ct.tax.income.agi.head_of_household[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 24000, - "2015-01-01": 24000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[1].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.7, - "2015-01-01": 0.7 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[2]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ct.tax.income.agi.head_of_household[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 24500, - "2015-01-01": 24500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[2].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.65, - "2015-01-01": 0.65 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[3]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ct.tax.income.agi.head_of_household[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[3].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.6, - "2015-01-01": 0.6 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[4]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ct.tax.income.agi.head_of_household[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 25500, - "2015-01-01": 25500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[4].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[4].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.55, - "2015-01-01": 0.55 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[5]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ct.tax.income.agi.head_of_household[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 26000, - "2015-01-01": 26000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[5].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[5].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[6]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.ct.tax.income.agi.head_of_household[6].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 26500, - "2015-01-01": 26500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[6].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[6].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.45, - "2015-01-01": 0.45 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[7]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.ct.tax.income.agi.head_of_household[7].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 27000, - "2015-01-01": 27000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[7].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[7].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.4, - "2015-01-01": 0.4 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[8]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.ct.tax.income.agi.head_of_household[8].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 27500, - "2015-01-01": 27500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[8].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[8].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.35, - "2015-01-01": 0.35 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[9]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.ct.tax.income.agi.head_of_household[9].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 34000, - "2015-01-01": 34000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[9].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[9].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.3, - "2015-01-01": 0.3 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[10]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[10]", - "description": null, - "label": "bracket 11" - }, - "gov.states.ct.tax.income.agi.head_of_household[10].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[10].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 34500, - "2015-01-01": 34500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[10].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[10].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[11]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[11]", - "description": null, - "label": "bracket 12" - }, - "gov.states.ct.tax.income.agi.head_of_household[11].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[11].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 35000, - "2015-01-01": 35000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[11].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[11].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[12]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[12]", - "description": null, - "label": "bracket 13" - }, - "gov.states.ct.tax.income.agi.head_of_household[12].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[12].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 35500, - "2015-01-01": 35500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[12].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[12].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.15, - "2015-01-01": 0.15 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[13]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[13]", - "description": null, - "label": "bracket 14" - }, - "gov.states.ct.tax.income.agi.head_of_household[13].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[13].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 44000, - "2015-01-01": 44000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[13].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[13].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.14, - "2015-01-01": 0.14 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[14]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[14]", - "description": null, - "label": "bracket 15" - }, - "gov.states.ct.tax.income.agi.head_of_household[14].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[14].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 44500, - "2015-01-01": 44500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[14].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[14].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.13, - "2015-01-01": 0.13 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[15]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[15]", - "description": null, - "label": "bracket 16" - }, - "gov.states.ct.tax.income.agi.head_of_household[15].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[15].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 45000, - "2015-01-01": 45000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[15].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[15].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.12, - "2015-01-01": 0.12 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[16]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[16]", - "description": null, - "label": "bracket 17" - }, - "gov.states.ct.tax.income.agi.head_of_household[16].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[16].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 45500, - "2015-01-01": 45500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[16].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[16].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.11, - "2015-01-01": 0.11 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[17]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[17]", - "description": null, - "label": "bracket 18" - }, - "gov.states.ct.tax.income.agi.head_of_household[17].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[17].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 46000, - "2015-01-01": 46000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[17].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[17].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[18]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[18]", - "description": null, - "label": "bracket 19" - }, - "gov.states.ct.tax.income.agi.head_of_household[18].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[18].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 74000, - "2015-01-01": 74000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[18].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[18].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.09, - "2015-01-01": 0.09 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[19]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[19]", - "description": null, - "label": "bracket 20" - }, - "gov.states.ct.tax.income.agi.head_of_household[19].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[19].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 74500, - "2015-01-01": 74500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[19].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[19].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.08, - "2015-01-01": 0.08 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[20]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[20]", - "description": null, - "label": "bracket 21" - }, - "gov.states.ct.tax.income.agi.head_of_household[20].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[20].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 75000, - "2015-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[20].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[20].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.07, - "2015-01-01": 0.07 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[21]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[21]", - "description": null, - "label": "bracket 22" - }, - "gov.states.ct.tax.income.agi.head_of_household[21].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[21].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 75500, - "2015-01-01": 75500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[21].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[21].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.06, - "2015-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[22]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[22]", - "description": null, - "label": "bracket 23" - }, - "gov.states.ct.tax.income.agi.head_of_household[22].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[22].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 76000, - "2015-01-01": 76000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[22].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[22].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[23]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[23]", - "description": null, - "label": "bracket 24" - }, - "gov.states.ct.tax.income.agi.head_of_household[23].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[23].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 76500, - "2015-01-01": 76500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[23].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[23].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[24]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[24]", - "description": null, - "label": "bracket 25" - }, - "gov.states.ct.tax.income.agi.head_of_household[24].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[24].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 77000, - "2015-01-01": 77000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[24].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[24].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[25]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[25]", - "description": null, - "label": "bracket 26" - }, - "gov.states.ct.tax.income.agi.head_of_household[25].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[25].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 77500, - "2015-01-01": 77500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[25].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[25].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.02, - "2015-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[26]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[26]", - "description": null, - "label": "bracket 27" - }, - "gov.states.ct.tax.income.agi.head_of_household[26].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[26].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 78000, - "2015-01-01": 78000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[26].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[26].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.01, - "2015-01-01": 0.01 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[27]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[27]", - "description": null, - "label": "bracket 28" - }, - "gov.states.ct.tax.income.agi.head_of_household[27].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[27].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 78500, - "2015-01-01": 78500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.head_of_household[27].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.head_of_household[27].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.separate", - "description": "Connecticut provides separate filers a credit for this fraction of taxes, depending on their adjusted gross income.", - "label": "Connecticut AGI credit for separate filers" - }, - "gov.states.ct.tax.income.agi.separate[0]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.separate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ct.tax.income.agi.separate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 12000, - "2015-01-01": 12000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[0].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.75, - "2015-01-01": 0.75 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[1]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.separate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ct.tax.income.agi.separate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 15000, - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[1].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.7, - "2015-01-01": 0.7 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[2]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.separate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ct.tax.income.agi.separate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 15500, - "2015-01-01": 15500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[2].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.65, - "2015-01-01": 0.65 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[3]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.separate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ct.tax.income.agi.separate[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 16000, - "2015-01-01": 16000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[3].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.6, - "2015-01-01": 0.6 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[4]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.separate[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ct.tax.income.agi.separate[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 16500, - "2015-01-01": 16500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[4].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[4].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.55, - "2015-01-01": 0.55 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[5]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.separate[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ct.tax.income.agi.separate[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 17000, - "2015-01-01": 17000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[5].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[5].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[6]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.separate[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.ct.tax.income.agi.separate[6].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 17500, - "2015-01-01": 17500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[6].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[6].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.45, - "2015-01-01": 0.45 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[7]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.separate[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.ct.tax.income.agi.separate[7].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 18000, - "2015-01-01": 18000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[7].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[7].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.4, - "2015-01-01": 0.4 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[8]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.separate[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.ct.tax.income.agi.separate[8].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 18500, - "2015-01-01": 18500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[8].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[8].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.35, - "2015-01-01": 0.35 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[9]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.separate[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.ct.tax.income.agi.separate[9].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[9].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[9].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.3, - "2015-01-01": 0.3 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[10]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.separate[10]", - "description": null, - "label": "bracket 11" - }, - "gov.states.ct.tax.income.agi.separate[10].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[10].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 20500, - "2015-01-01": 20500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[10].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[10].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[11]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.separate[11]", - "description": null, - "label": "bracket 12" - }, - "gov.states.ct.tax.income.agi.separate[11].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[11].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 21000, - "2015-01-01": 21000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[11].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[11].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[12]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.separate[12]", - "description": null, - "label": "bracket 13" - }, - "gov.states.ct.tax.income.agi.separate[12].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[12].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 21500, - "2015-01-01": 21500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[12].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[12].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.15, - "2015-01-01": 0.15 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[13]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.separate[13]", - "description": null, - "label": "bracket 14" - }, - "gov.states.ct.tax.income.agi.separate[13].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[13].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[13].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[13].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.14, - "2015-01-01": 0.14 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[14]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.separate[14]", - "description": null, - "label": "bracket 15" - }, - "gov.states.ct.tax.income.agi.separate[14].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[14].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 25500, - "2015-01-01": 25500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[14].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[14].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.13, - "2015-01-01": 0.13 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[15]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.separate[15]", - "description": null, - "label": "bracket 16" - }, - "gov.states.ct.tax.income.agi.separate[15].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[15].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 26000, - "2015-01-01": 26000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[15].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[15].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.12, - "2015-01-01": 0.12 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[16]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.separate[16]", - "description": null, - "label": "bracket 17" - }, - "gov.states.ct.tax.income.agi.separate[16].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[16].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 26500, - "2015-01-01": 26500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[16].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[16].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.11, - "2015-01-01": 0.11 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[17]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.separate[17]", - "description": null, - "label": "bracket 18" - }, - "gov.states.ct.tax.income.agi.separate[17].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[17].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 27000, - "2015-01-01": 27000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[17].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[17].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[18]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.separate[18]", - "description": null, - "label": "bracket 19" - }, - "gov.states.ct.tax.income.agi.separate[18].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[18].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 48000, - "2015-01-01": 48000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[18].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[18].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.09, - "2015-01-01": 0.09 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[19]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.separate[19]", - "description": null, - "label": "bracket 20" - }, - "gov.states.ct.tax.income.agi.separate[19].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[19].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 48500, - "2015-01-01": 48500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[19].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[19].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.08, - "2015-01-01": 0.08 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[20]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.separate[20]", - "description": null, - "label": "bracket 21" - }, - "gov.states.ct.tax.income.agi.separate[20].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[20].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 49000, - "2015-01-01": 49000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[20].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[20].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.07, - "2015-01-01": 0.07 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[21]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.separate[21]", - "description": null, - "label": "bracket 22" - }, - "gov.states.ct.tax.income.agi.separate[21].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[21].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 49500, - "2015-01-01": 49500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[21].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[21].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.06, - "2015-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[22]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.separate[22]", - "description": null, - "label": "bracket 23" - }, - "gov.states.ct.tax.income.agi.separate[22].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[22].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[22].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[22].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[23]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.separate[23]", - "description": null, - "label": "bracket 24" - }, - "gov.states.ct.tax.income.agi.separate[23].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[23].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 50500, - "2015-01-01": 50500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[23].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[23].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[24]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.separate[24]", - "description": null, - "label": "bracket 25" - }, - "gov.states.ct.tax.income.agi.separate[24].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[24].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 51000, - "2015-01-01": 51000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[24].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[24].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[25]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.separate[25]", - "description": null, - "label": "bracket 26" - }, - "gov.states.ct.tax.income.agi.separate[25].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[25].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 51500, - "2015-01-01": 51500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[25].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[25].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.02, - "2015-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[26]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.separate[26]", - "description": null, - "label": "bracket 27" - }, - "gov.states.ct.tax.income.agi.separate[26].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[26].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 52000, - "2015-01-01": 52000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[26].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[26].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.01, - "2015-01-01": 0.01 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[27]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.separate[27]", - "description": null, - "label": "bracket 28" - }, - "gov.states.ct.tax.income.agi.separate[27].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[27].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 52500, - "2015-01-01": 52500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.separate[27].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.separate[27].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.joint", - "description": "Connecticut provides joint filers a credit for this fraction of taxes, depending on their adjusted gross income.", - "label": "Connecticut AGI credit for joint filers" - }, - "gov.states.ct.tax.income.agi.joint[0]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ct.tax.income.agi.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 24000, - "2015-01-01": 24000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[0].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.75, - "2015-01-01": 0.75 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[1]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ct.tax.income.agi.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[1].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.7, - "2015-01-01": 0.7 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[2]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ct.tax.income.agi.joint[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 30500, - "2015-01-01": 30500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[2].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.65, - "2015-01-01": 0.65 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[3]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.joint[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ct.tax.income.agi.joint[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 31000, - "2015-01-01": 31000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[3].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.6, - "2015-01-01": 0.6 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[4]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.joint[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ct.tax.income.agi.joint[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 31500, - "2015-01-01": 31500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[4].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[4].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.55, - "2015-01-01": 0.55 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[5]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.joint[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ct.tax.income.agi.joint[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 32000, - "2015-01-01": 32000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[5].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[5].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[6]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.joint[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.ct.tax.income.agi.joint[6].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 32500, - "2015-01-01": 32500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[6].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[6].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.45, - "2015-01-01": 0.45 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[7]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.joint[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.ct.tax.income.agi.joint[7].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 33000, - "2015-01-01": 33000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[7].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[7].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.4, - "2015-01-01": 0.4 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[8]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.joint[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.ct.tax.income.agi.joint[8].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 33500, - "2015-01-01": 33500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[8].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[8].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.35, - "2015-01-01": 0.35 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[9]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.joint[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.ct.tax.income.agi.joint[9].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 40000, - "2015-01-01": 40000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[9].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[9].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.3, - "2015-01-01": 0.3 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[10]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.joint[10]", - "description": null, - "label": "bracket 11" - }, - "gov.states.ct.tax.income.agi.joint[10].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[10].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 40500, - "2015-01-01": 40500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[10].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[10].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[11]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.joint[11]", - "description": null, - "label": "bracket 12" - }, - "gov.states.ct.tax.income.agi.joint[11].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[11].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 41000, - "2015-01-01": 41000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[11].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[11].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[12]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.joint[12]", - "description": null, - "label": "bracket 13" - }, - "gov.states.ct.tax.income.agi.joint[12].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[12].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 41500, - "2015-01-01": 41500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[12].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[12].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.15, - "2015-01-01": 0.15 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[13]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.joint[13]", - "description": null, - "label": "bracket 14" - }, - "gov.states.ct.tax.income.agi.joint[13].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[13].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[13].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[13].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.14, - "2015-01-01": 0.14 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[14]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.joint[14]", - "description": null, - "label": "bracket 15" - }, - "gov.states.ct.tax.income.agi.joint[14].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[14].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 50500, - "2015-01-01": 50500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[14].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[14].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.13, - "2015-01-01": 0.13 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[15]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.joint[15]", - "description": null, - "label": "bracket 16" - }, - "gov.states.ct.tax.income.agi.joint[15].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[15].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 51000, - "2015-01-01": 51000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[15].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[15].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.12, - "2015-01-01": 0.12 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[16]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.joint[16]", - "description": null, - "label": "bracket 17" - }, - "gov.states.ct.tax.income.agi.joint[16].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[16].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 51500, - "2015-01-01": 51500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[16].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[16].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.11, - "2015-01-01": 0.11 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[17]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.joint[17]", - "description": null, - "label": "bracket 18" - }, - "gov.states.ct.tax.income.agi.joint[17].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[17].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 52000, - "2015-01-01": 52000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[17].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[17].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[18]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.joint[18]", - "description": null, - "label": "bracket 19" - }, - "gov.states.ct.tax.income.agi.joint[18].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[18].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 96000, - "2015-01-01": 96000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[18].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[18].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.09, - "2015-01-01": 0.09 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[19]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.joint[19]", - "description": null, - "label": "bracket 20" - }, - "gov.states.ct.tax.income.agi.joint[19].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[19].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 96500, - "2015-01-01": 96500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[19].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[19].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.08, - "2015-01-01": 0.08 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[20]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.joint[20]", - "description": null, - "label": "bracket 21" - }, - "gov.states.ct.tax.income.agi.joint[20].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[20].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 97000, - "2015-01-01": 97000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[20].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[20].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.07, - "2015-01-01": 0.07 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[21]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.joint[21]", - "description": null, - "label": "bracket 22" - }, - "gov.states.ct.tax.income.agi.joint[21].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[21].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 97500, - "2015-01-01": 97500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[21].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[21].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.06, - "2015-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[22]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.joint[22]", - "description": null, - "label": "bracket 23" - }, - "gov.states.ct.tax.income.agi.joint[22].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[22].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 98000, - "2015-01-01": 98000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[22].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[22].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[23]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.joint[23]", - "description": null, - "label": "bracket 24" - }, - "gov.states.ct.tax.income.agi.joint[23].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[23].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 98500, - "2015-01-01": 98500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[23].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[23].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[24]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.joint[24]", - "description": null, - "label": "bracket 25" - }, - "gov.states.ct.tax.income.agi.joint[24].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[24].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 99000, - "2015-01-01": 99000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[24].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[24].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[25]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.joint[25]", - "description": null, - "label": "bracket 26" - }, - "gov.states.ct.tax.income.agi.joint[25].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[25].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 99500, - "2015-01-01": 99500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[25].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[25].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.02, - "2015-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[26]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.joint[26]", - "description": null, - "label": "bracket 27" - }, - "gov.states.ct.tax.income.agi.joint[26].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[26].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[26].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[26].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.01, - "2015-01-01": 0.01 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[27]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.joint[27]", - "description": null, - "label": "bracket 28" - }, - "gov.states.ct.tax.income.agi.joint[27].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[27].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 100500, - "2015-01-01": 100500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.joint[27].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.joint[27].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.single", - "description": "Connecticut provides single filers a credit for this fraction of taxes, depending on their adjusted gross income.", - "label": "Connecticut AGI credit for single filers" - }, - "gov.states.ct.tax.income.agi.single[0]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.single[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ct.tax.income.agi.single[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 15000, - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[0].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.75, - "2015-01-01": 0.75 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[1]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.single[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ct.tax.income.agi.single[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 18800, - "2015-01-01": 18800 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[1].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.7, - "2015-01-01": 0.7 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[2]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.single[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ct.tax.income.agi.single[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 19300, - "2015-01-01": 19300 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[2].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.65, - "2015-01-01": 0.65 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[3]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.single[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ct.tax.income.agi.single[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 19800, - "2015-01-01": 19800 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[3].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.6, - "2015-01-01": 0.6 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[4]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.single[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ct.tax.income.agi.single[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 20300, - "2015-01-01": 20300 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[4].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[4].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.55, - "2015-01-01": 0.55 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[5]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.single[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ct.tax.income.agi.single[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 20800, - "2015-01-01": 20800 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[5].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[5].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[6]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.single[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.ct.tax.income.agi.single[6].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 21300, - "2015-01-01": 21300 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[6].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[6].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.45, - "2015-01-01": 0.45 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[7]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.single[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.ct.tax.income.agi.single[7].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 21800, - "2015-01-01": 21800 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[7].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[7].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.4, - "2015-01-01": 0.4 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[8]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.single[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.ct.tax.income.agi.single[8].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 22300, - "2015-01-01": 22300 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[8].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[8].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.35, - "2015-01-01": 0.35 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[9]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.single[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.ct.tax.income.agi.single[9].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[9].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[9].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.3, - "2015-01-01": 0.3 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[10]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.single[10]", - "description": null, - "label": "bracket 11" - }, - "gov.states.ct.tax.income.agi.single[10].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[10].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 25500, - "2015-01-01": 25500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[10].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[10].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[11]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.single[11]", - "description": null, - "label": "bracket 12" - }, - "gov.states.ct.tax.income.agi.single[11].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[11].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 26000, - "2015-01-01": 26000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[11].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[11].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[12]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.single[12]", - "description": null, - "label": "bracket 13" - }, - "gov.states.ct.tax.income.agi.single[12].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[12].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 26500, - "2015-01-01": 26500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[12].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[12].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.15, - "2015-01-01": 0.15 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[13]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.single[13]", - "description": null, - "label": "bracket 14" - }, - "gov.states.ct.tax.income.agi.single[13].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[13].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 31300, - "2015-01-01": 31300 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[13].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[13].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.14, - "2015-01-01": 0.14 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[14]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.single[14]", - "description": null, - "label": "bracket 15" - }, - "gov.states.ct.tax.income.agi.single[14].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[14].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 31800, - "2015-01-01": 31800 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[14].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[14].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.13, - "2015-01-01": 0.13 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[15]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.single[15]", - "description": null, - "label": "bracket 16" - }, - "gov.states.ct.tax.income.agi.single[15].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[15].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 32300, - "2015-01-01": 32300 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[15].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[15].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.12, - "2015-01-01": 0.12 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[16]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.single[16]", - "description": null, - "label": "bracket 17" - }, - "gov.states.ct.tax.income.agi.single[16].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[16].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 32800, - "2015-01-01": 32800 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[16].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[16].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.11, - "2015-01-01": 0.11 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[17]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.single[17]", - "description": null, - "label": "bracket 18" - }, - "gov.states.ct.tax.income.agi.single[17].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[17].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 33300, - "2015-01-01": 33300 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[17].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[17].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[18]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.single[18]", - "description": null, - "label": "bracket 19" - }, - "gov.states.ct.tax.income.agi.single[18].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[18].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 60000, - "2015-01-01": 60000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[18].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[18].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.09, - "2015-01-01": 0.09 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[19]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.single[19]", - "description": null, - "label": "bracket 20" - }, - "gov.states.ct.tax.income.agi.single[19].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[19].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 60500, - "2015-01-01": 60500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[19].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[19].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.08, - "2015-01-01": 0.08 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[20]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.single[20]", - "description": null, - "label": "bracket 21" - }, - "gov.states.ct.tax.income.agi.single[20].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[20].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 61000, - "2015-01-01": 61000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[20].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[20].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.07, - "2015-01-01": 0.07 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[21]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.single[21]", - "description": null, - "label": "bracket 22" - }, - "gov.states.ct.tax.income.agi.single[21].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[21].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 61500, - "2015-01-01": 61500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[21].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[21].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.06, - "2015-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[22]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.single[22]", - "description": null, - "label": "bracket 23" - }, - "gov.states.ct.tax.income.agi.single[22].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[22].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 62000, - "2015-01-01": 62000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[22].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[22].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[23]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.single[23]", - "description": null, - "label": "bracket 24" - }, - "gov.states.ct.tax.income.agi.single[23].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[23].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 62500, - "2015-01-01": 62500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[23].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[23].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[24]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.single[24]", - "description": null, - "label": "bracket 25" - }, - "gov.states.ct.tax.income.agi.single[24].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[24].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 63000, - "2015-01-01": 63000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[24].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[24].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[25]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.single[25]", - "description": null, - "label": "bracket 26" - }, - "gov.states.ct.tax.income.agi.single[25].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[25].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 63500, - "2015-01-01": 63500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[25].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[25].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.02, - "2015-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[26]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.single[26]", - "description": null, - "label": "bracket 27" - }, - "gov.states.ct.tax.income.agi.single[26].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[26].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 64000, - "2015-01-01": 64000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[26].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[26].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.01, - "2015-01-01": 0.01 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[27]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.single[27]", - "description": null, - "label": "bracket 28" - }, - "gov.states.ct.tax.income.agi.single[27].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[27].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 64500, - "2015-01-01": 64500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.single[27].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.single[27].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse", - "description": "Connecticut provides surviving spouse filers a credit for this fraction of taxes, depending on their adjusted gross income.", - "label": "Connecticut AGI credit for surviving spouse filers" - }, - "gov.states.ct.tax.income.agi.surviving_spouse[0]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ct.tax.income.agi.surviving_spouse[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 24000, - "2015-01-01": 24000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[0].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.75, - "2015-01-01": 0.75 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[1]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ct.tax.income.agi.surviving_spouse[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[1].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.7, - "2015-01-01": 0.7 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[2]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ct.tax.income.agi.surviving_spouse[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 30500, - "2015-01-01": 30500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[2].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.65, - "2015-01-01": 0.65 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[3]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ct.tax.income.agi.surviving_spouse[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 31000, - "2015-01-01": 31000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[3].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.6, - "2015-01-01": 0.6 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[4]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ct.tax.income.agi.surviving_spouse[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 31500, - "2015-01-01": 31500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[4].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[4].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.55, - "2015-01-01": 0.55 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[5]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ct.tax.income.agi.surviving_spouse[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 32000, - "2015-01-01": 32000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[5].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[5].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[6]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.ct.tax.income.agi.surviving_spouse[6].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 32500, - "2015-01-01": 32500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[6].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[6].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.45, - "2015-01-01": 0.45 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[7]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.ct.tax.income.agi.surviving_spouse[7].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 33000, - "2015-01-01": 33000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[7].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[7].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.4, - "2015-01-01": 0.4 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[8]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.ct.tax.income.agi.surviving_spouse[8].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 33500, - "2015-01-01": 33500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[8].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[8].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.35, - "2015-01-01": 0.35 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[9]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.ct.tax.income.agi.surviving_spouse[9].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 40000, - "2015-01-01": 40000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[9].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[9].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.3, - "2015-01-01": 0.3 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[10]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[10]", - "description": null, - "label": "bracket 11" - }, - "gov.states.ct.tax.income.agi.surviving_spouse[10].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[10].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 40500, - "2015-01-01": 40500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[10].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[10].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[11]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[11]", - "description": null, - "label": "bracket 12" - }, - "gov.states.ct.tax.income.agi.surviving_spouse[11].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[11].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 41000, - "2015-01-01": 41000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[11].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[11].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[12]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[12]", - "description": null, - "label": "bracket 13" - }, - "gov.states.ct.tax.income.agi.surviving_spouse[12].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[12].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 41500, - "2015-01-01": 41500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[12].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[12].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.15, - "2015-01-01": 0.15 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[13]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[13]", - "description": null, - "label": "bracket 14" - }, - "gov.states.ct.tax.income.agi.surviving_spouse[13].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[13].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[13].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[13].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.14, - "2015-01-01": 0.14 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[14]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[14]", - "description": null, - "label": "bracket 15" - }, - "gov.states.ct.tax.income.agi.surviving_spouse[14].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[14].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 50500, - "2015-01-01": 50500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[14].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[14].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.13, - "2015-01-01": 0.13 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[15]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[15]", - "description": null, - "label": "bracket 16" - }, - "gov.states.ct.tax.income.agi.surviving_spouse[15].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[15].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 51000, - "2015-01-01": 51000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[15].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[15].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.12, - "2015-01-01": 0.12 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[16]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[16]", - "description": null, - "label": "bracket 17" - }, - "gov.states.ct.tax.income.agi.surviving_spouse[16].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[16].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 51500, - "2015-01-01": 51500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[16].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[16].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.11, - "2015-01-01": 0.11 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[17]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[17]", - "description": null, - "label": "bracket 18" - }, - "gov.states.ct.tax.income.agi.surviving_spouse[17].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[17].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 52000, - "2015-01-01": 52000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[17].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[17].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[18]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[18]", - "description": null, - "label": "bracket 19" - }, - "gov.states.ct.tax.income.agi.surviving_spouse[18].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[18].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 96000, - "2015-01-01": 96000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[18].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[18].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.09, - "2015-01-01": 0.09 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[19]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[19]", - "description": null, - "label": "bracket 20" - }, - "gov.states.ct.tax.income.agi.surviving_spouse[19].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[19].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 96500, - "2015-01-01": 96500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[19].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[19].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.08, - "2015-01-01": 0.08 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[20]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[20]", - "description": null, - "label": "bracket 21" - }, - "gov.states.ct.tax.income.agi.surviving_spouse[20].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[20].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 97000, - "2015-01-01": 97000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[20].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[20].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.07, - "2015-01-01": 0.07 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[21]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[21]", - "description": null, - "label": "bracket 22" - }, - "gov.states.ct.tax.income.agi.surviving_spouse[21].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[21].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 97500, - "2015-01-01": 97500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[21].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[21].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.06, - "2015-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[22]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[22]", - "description": null, - "label": "bracket 23" - }, - "gov.states.ct.tax.income.agi.surviving_spouse[22].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[22].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 98000, - "2015-01-01": 98000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[22].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[22].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[23]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[23]", - "description": null, - "label": "bracket 24" - }, - "gov.states.ct.tax.income.agi.surviving_spouse[23].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[23].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 98500, - "2015-01-01": 98500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[23].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[23].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[24]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[24]", - "description": null, - "label": "bracket 25" - }, - "gov.states.ct.tax.income.agi.surviving_spouse[24].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[24].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 99000, - "2015-01-01": 99000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[24].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[24].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[25]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[25]", - "description": null, - "label": "bracket 26" - }, - "gov.states.ct.tax.income.agi.surviving_spouse[25].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[25].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 99500, - "2015-01-01": 99500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[25].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[25].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.02, - "2015-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[26]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[26]", - "description": null, - "label": "bracket 27" - }, - "gov.states.ct.tax.income.agi.surviving_spouse[26].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[26].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[26].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[26].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0.01, - "2015-01-01": 0.01 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[27]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[27]", - "description": null, - "label": "bracket 28" - }, - "gov.states.ct.tax.income.agi.surviving_spouse[27].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[27].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2016-01-01": 100500, - "2015-01-01": 100500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.agi.surviving_spouse[27].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.agi.surviving_spouse[27].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.credits": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.credits", - "description": null, - "label": "credits", - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.credits.eitc": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.credits.eitc", - "description": null, - "label": "Earned Income Tax Credit", - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.credits.eitc.match": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.credits.eitc.match", - "description": "Connecticut matches this percent of the federal earned income tax credit.", - "label": "Connecticut EITC match", - "unit": "/1", - "period": "year", - "values": { - "2023-01-01": 0.4, - "2021-01-01": 0.305, - "2017-01-01": 0.23, - "2015-01-01": 0.23 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.credits.refundable": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.credits.refundable", - "description": "Connecticut provides the following refundable tax credits.", - "label": "Connecticut refundable credits", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": ["ct_eitc"], - "2015-01-01": ["ct_eitc"] - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.credits.property_tax": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.credits.property_tax", - "description": null, - "label": "property tax", - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.credits.property_tax.reduction": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.credits.property_tax.reduction", - "description": null, - "label": "reduction", - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.credits.property_tax.reduction.increment": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.credits.property_tax.reduction.increment", - "description": "Connecticut reduces the property tax credit in this increment of state adjusted gross income exceeding the threshold, based on filing status.", - "label": "Connecticut property tax reduction increment", - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.credits.property_tax.reduction.increment.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.credits.property_tax.reduction.increment.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.credits.property_tax.reduction.increment.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.credits.property_tax.reduction.increment.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.credits.property_tax.reduction.increment.JOINT": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.credits.property_tax.reduction.increment.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.credits.property_tax.reduction.increment.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.credits.property_tax.reduction.increment.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.credits.property_tax.reduction.increment.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.credits.property_tax.reduction.increment.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.credits.property_tax.reduction.start": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.credits.property_tax.reduction.start", - "description": "Connecticut reduces the property tax credit for filers with state adjusted gross income above this amount, based on filing status.", - "label": "Connecticut Property Tax Credit reduction start", - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.credits.property_tax.reduction.start.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.credits.property_tax.reduction.start.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 49500, - "2015-01-01": 49500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.credits.property_tax.reduction.start.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.credits.property_tax.reduction.start.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 54500, - "2015-01-01": 54500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.credits.property_tax.reduction.start.JOINT": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.credits.property_tax.reduction.start.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 70500, - "2015-01-01": 70500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.credits.property_tax.reduction.start.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.credits.property_tax.reduction.start.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 70500, - "2015-01-01": 70500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.credits.property_tax.reduction.start.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.credits.property_tax.reduction.start.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 35250, - "2015-01-01": 35250 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.credits.property_tax.reduction.rate": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.credits.property_tax.reduction.rate", - "description": "Connecticut reduces its property tax credit by this percentage for each increment of state adjusted gross income exceeding the threshold.", - "label": "Connecticut Property Tax Credit reduction rate", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.15, - "2015-01-01": 0.15 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.credits.property_tax.age_threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.credits.property_tax.age_threshold", - "description": "Connecticut limits its property tax credit to filers at or above this age.", - "label": "Connecticut property tax credit age threshold", - "unit": "year", - "period": "year", - "values": { - "2022-01-01": 0, - "2017-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.credits.property_tax.cap": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.credits.property_tax.cap", - "description": "Connecticut caps the property tax credit at this amount.", - "label": "Connecticut property tax credit cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2022-01-01": 300, - "2016-01-01": 200, - "2011-01-01": 300 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.credits.non_refundable": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.credits.non_refundable", - "description": "Connecticut provides the following non-refundable tax credits.", - "label": "Connecticut non-refundable credits", - "unit": "list", - "period": "year", - "values": { - "2023-01-01": ["ct_property_tax_credit"], - "2022-01-01": ["ct_property_tax_credit", "ct_child_tax_rebate"], - "2021-01-01": ["ct_property_tax_credit"], - "2015-01-01": ["ct_property_tax_credit"] - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.exemptions": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.exemptions", - "description": null, - "label": "exemptions", - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.exemptions.personal": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.exemptions.personal", - "description": null, - "label": "personal", - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.exemptions.personal.reduction": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.exemptions.personal.reduction", - "description": null, - "label": "reduction", - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.exemptions.personal.reduction.increment": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.exemptions.personal.reduction.increment", - "description": "Connecticut reduces the personal exemption amount for each of these increments of state adjusted gross income exceeding the threshold.", - "label": "Connecticut personal exemption reduction increment", - "unit": "currency-USD", - "period": "year", - "values": { - "2016-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.exemptions.personal.reduction.start": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.exemptions.personal.reduction.start", - "description": "Connecticut reduces the personal exemption for filers with state adjusted gross income above this amount, based on filing status.", - "label": "Connecticut personal exemption reduction start", - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.exemptions.personal.reduction.start.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.exemptions.personal.reduction.start.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2016-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.exemptions.personal.reduction.start.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.exemptions.personal.reduction.start.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2016-01-01": 38000, - "2015-01-01": 38000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.exemptions.personal.reduction.start.JOINT": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.exemptions.personal.reduction.start.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2016-01-01": 48000, - "2015-01-01": 48000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.exemptions.personal.reduction.start.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.exemptions.personal.reduction.start.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2016-01-01": 48000, - "2015-01-01": 48000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.exemptions.personal.reduction.start.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.exemptions.personal.reduction.start.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2016-01-01": 24000, - "2015-01-01": 24000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.exemptions.personal.reduction.amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.exemptions.personal.reduction.amount", - "description": "Connecticut reduces the personal exemption amount by this amount for each increment of state adjusted gross income exceeding the threshold.", - "label": "Connecticut personal exemption reduction amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2016-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.exemptions.personal.max_amount": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.exemptions.personal.max_amount", - "description": "Connecticut allows for the following maximum personal exemption amount, based on filing status.", - "label": "Connecticut personal exemption max amount", - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.exemptions.personal.max_amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.exemptions.personal.max_amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2016-01-01": 15000, - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.exemptions.personal.max_amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.exemptions.personal.max_amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2016-01-01": 19000, - "2015-01-01": 19000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.exemptions.personal.max_amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.exemptions.personal.max_amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2016-01-01": 24000, - "2015-01-01": 24000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.exemptions.personal.max_amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.exemptions.personal.max_amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2016-01-01": 24000, - "2015-01-01": 24000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.exemptions.personal.max_amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.exemptions.personal.max_amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2016-01-01": 12000, - "2015-01-01": 12000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.rates", - "description": null, - "label": "rates", - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.head_of_household": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.rates.head_of_household", - "description": "Connecticut taxes income of head of household filers at these rates.", - "label": "Connecticut income tax rate head of household filers" - }, - "gov.states.ct.tax.income.rates.head_of_household[0]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.rates.head_of_household[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ct.tax.income.rates.head_of_household[0].rate": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.head_of_household[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.02, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.head_of_household[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.head_of_household[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.head_of_household[1]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.rates.head_of_household[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ct.tax.income.rates.head_of_household[1].rate": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.head_of_household[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.045, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.head_of_household[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.head_of_household[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 16000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.head_of_household[2]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.rates.head_of_household[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ct.tax.income.rates.head_of_household[2].rate": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.head_of_household[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2015-01-01": 0.055 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.head_of_household[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.head_of_household[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 80000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.head_of_household[3]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.rates.head_of_household[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ct.tax.income.rates.head_of_household[3].rate": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.head_of_household[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2015-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.head_of_household[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.head_of_household[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 160000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.head_of_household[4]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.rates.head_of_household[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ct.tax.income.rates.head_of_household[4].rate": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.head_of_household[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2015-01-01": 0.065 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.head_of_household[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.head_of_household[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 320000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.head_of_household[5]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.rates.head_of_household[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ct.tax.income.rates.head_of_household[5].rate": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.head_of_household[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2015-01-01": 0.069 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.head_of_household[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.head_of_household[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 400000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.head_of_household[6]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.rates.head_of_household[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.ct.tax.income.rates.head_of_household[6].rate": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.head_of_household[6].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2015-01-01": 0.0699 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.head_of_household[6].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.head_of_household[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 800000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.separate": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.rates.separate", - "description": "Connecticut taxes income of separate filers at these rates.", - "label": "Connecticut income tax rate separate filers" - }, - "gov.states.ct.tax.income.rates.separate[0]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.rates.separate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ct.tax.income.rates.separate[0].rate": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.separate[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.02, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.separate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.separate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.separate[1]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.rates.separate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ct.tax.income.rates.separate[1].rate": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.separate[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.045, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.separate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.separate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.separate[2]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.rates.separate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ct.tax.income.rates.separate[2].rate": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.separate[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2015-01-01": 0.055 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.separate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.separate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.separate[3]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.rates.separate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ct.tax.income.rates.separate[3].rate": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.separate[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2015-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.separate[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.separate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.separate[4]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.rates.separate[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ct.tax.income.rates.separate[4].rate": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.separate[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2015-01-01": 0.065 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.separate[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.separate[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.separate[5]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.rates.separate[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ct.tax.income.rates.separate[5].rate": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.separate[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2015-01-01": 0.069 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.separate[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.separate[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 250000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.separate[6]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.rates.separate[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.ct.tax.income.rates.separate[6].rate": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.separate[6].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2015-01-01": 0.0699 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.separate[6].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.separate[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 500000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.joint": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.rates.joint", - "description": "Connecticut taxes income of head of household filers at these rates.", - "label": "Connecticut income tax rate joint filers" - }, - "gov.states.ct.tax.income.rates.joint[0]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.rates.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ct.tax.income.rates.joint[0].rate": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.joint[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.02, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.joint[1]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.rates.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ct.tax.income.rates.joint[1].rate": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.joint[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.045, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.joint[2]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.rates.joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ct.tax.income.rates.joint[2].rate": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.joint[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2015-01-01": 0.055 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.joint[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.joint[3]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.rates.joint[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ct.tax.income.rates.joint[3].rate": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.joint[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2015-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.joint[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.joint[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.joint[4]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.rates.joint[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ct.tax.income.rates.joint[4].rate": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.joint[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2015-01-01": 0.065 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.joint[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.joint[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 400000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.joint[5]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.rates.joint[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ct.tax.income.rates.joint[5].rate": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.joint[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2015-01-01": 0.069 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.joint[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.joint[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 500000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.joint[6]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.rates.joint[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.ct.tax.income.rates.joint[6].rate": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.joint[6].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2015-01-01": 0.0699 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.joint[6].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.joint[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 1000000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.single": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.rates.single", - "description": "Connecticut taxes income of single filers at these rates.", - "label": "Connecticut income tax rate single filers" - }, - "gov.states.ct.tax.income.rates.single[0]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.rates.single[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ct.tax.income.rates.single[0].rate": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.single[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.02, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.single[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.single[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.single[1]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.rates.single[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ct.tax.income.rates.single[1].rate": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.single[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.045, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.single[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.single[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.single[2]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.rates.single[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ct.tax.income.rates.single[2].rate": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.single[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2015-01-01": 0.055 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.single[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.single[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.single[3]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.rates.single[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ct.tax.income.rates.single[3].rate": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.single[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2015-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.single[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.single[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.single[4]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.rates.single[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ct.tax.income.rates.single[4].rate": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.single[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2015-01-01": 0.065 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.single[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.single[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.single[5]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.rates.single[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ct.tax.income.rates.single[5].rate": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.single[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2015-01-01": 0.069 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.single[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.single[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 250000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.single[6]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.rates.single[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.ct.tax.income.rates.single[6].rate": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.single[6].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2015-01-01": 0.0699 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.single[6].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.single[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 500000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.surviving_spouse": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.rates.surviving_spouse", - "description": "Connecticut taxes income of surviving spouses at these rates.", - "label": "Connecticut income tax rate surviving spouses" - }, - "gov.states.ct.tax.income.rates.surviving_spouse[0]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.rates.surviving_spouse[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ct.tax.income.rates.surviving_spouse[0].rate": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.surviving_spouse[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.02, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.surviving_spouse[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.surviving_spouse[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.surviving_spouse[1]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.rates.surviving_spouse[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ct.tax.income.rates.surviving_spouse[1].rate": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.surviving_spouse[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.045, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.surviving_spouse[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.surviving_spouse[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.surviving_spouse[2]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.rates.surviving_spouse[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ct.tax.income.rates.surviving_spouse[2].rate": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.surviving_spouse[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2015-01-01": 0.055 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.surviving_spouse[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.surviving_spouse[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.surviving_spouse[3]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.rates.surviving_spouse[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ct.tax.income.rates.surviving_spouse[3].rate": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.surviving_spouse[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2015-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.surviving_spouse[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.surviving_spouse[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.surviving_spouse[4]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.rates.surviving_spouse[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ct.tax.income.rates.surviving_spouse[4].rate": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.surviving_spouse[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2015-01-01": 0.065 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.surviving_spouse[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.surviving_spouse[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 400000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.surviving_spouse[5]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.rates.surviving_spouse[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ct.tax.income.rates.surviving_spouse[5].rate": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.surviving_spouse[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2015-01-01": 0.069 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.surviving_spouse[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.surviving_spouse[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 500000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.surviving_spouse[6]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.rates.surviving_spouse[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.ct.tax.income.rates.surviving_spouse[6].rate": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.surviving_spouse[6].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2015-01-01": 0.0699 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rates.surviving_spouse[6].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rates.surviving_spouse[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 1000000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.subtractions", - "description": null, - "label": "subtractions", - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.tuition": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.subtractions.tuition", - "description": null, - "label": "tuition", - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.tuition.cap": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.subtractions.tuition.cap", - "description": "Connecticut limits the state tuition subtraction to this amount, based on filing status.", - "label": "Connecticut state tuition subtraction max amount", - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.tuition.cap.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.tuition.cap.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.tuition.cap.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.tuition.cap.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.tuition.cap.JOINT": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.tuition.cap.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.tuition.cap.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.tuition.cap.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.tuition.cap.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.tuition.cap.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity", - "description": null, - "label": "pensions or annuity", - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint", - "description": "Connecticut subtracts this fraction of annuity and pension income from adjusted gross income, for filers who do not file as married filing jointly.", - "label": "Connecticut annuity and pension subtraction rate for single, married filing separately, and head of household" - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[0]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2019-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[0].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 1, - "2021-01-01": 0.42, - "2020-01-01": 0.28, - "2019-01-01": 0.14, - "2015-01-01": 0.14 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[1]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2019-01-01": 75000, - "2015-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[1].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.85, - "2019-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[2]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 77500, - "2015-01-01": 77500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[2].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.7, - "2015-01-01": 0.7 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[3]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 80000, - "2015-01-01": 80000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[3].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.55, - "2015-01-01": 0.55 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[4]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 82500, - "2015-01-01": 82500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[4].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[4].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.4, - "2015-01-01": 0.4 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[5]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 85000, - "2015-01-01": 85000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[5].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[5].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[6]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[6].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 87500, - "2015-01-01": 87500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[6].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[6].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[7]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[7].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 90000, - "2015-01-01": 90000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[7].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[7].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[8]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[8].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 95000, - "2015-01-01": 95000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[8].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[8].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.025, - "2015-01-01": 0.025 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[9]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[9].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[9].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.non_joint[9].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint", - "description": "Connecticut subtracts this fraction of annuity and pension income from adjusted gross income, for joint filers.", - "label": "Connecticut annuity and pension subtraction rate for joint filers." - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[0]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2019-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[0].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 1, - "2021-01-01": 0.42, - "2020-01-01": 0.28, - "2019-01-01": 0.14, - "2015-01-01": 0.14 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[1]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2019-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[1].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.85, - "2019-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[2]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 105000, - "2015-01-01": 105000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[2].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.7, - "2015-01-01": 0.7 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[3]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 110000, - "2015-01-01": 110000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[3].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.55, - "2015-01-01": 0.55 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[4]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 115000, - "2015-01-01": 115000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[4].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[4].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.4, - "2015-01-01": 0.4 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[5]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 120000, - "2015-01-01": 120000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[5].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[5].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[6]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[6].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 125000, - "2015-01-01": 125000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[6].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[6].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[7]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[7].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 130000, - "2015-01-01": 130000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[7].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[7].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[8]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[8].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 140000, - "2015-01-01": 140000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[8].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[8].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.025, - "2015-01-01": 0.025 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[9]": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[9].threshold": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[9].amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.pensions_or_annuity.joint[9].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.subtractions": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.subtractions", - "description": "Connecticut subtracts these sources from the adjusted gross income.", - "label": "Connecticut adjusted gross income subtractions", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": [ - "us_govt_interest", - "ct_social_security_benefit_adjustment", - "military_retirement_pay", - "ct_pension_annuity_subtraction" - ], - "2015-01-01": [ - "us_govt_interest", - "ct_social_security_benefit_adjustment", - "military_retirement_pay", - "ct_pension_annuity_subtraction" - ] - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.social_security": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.subtractions.social_security", - "description": null, - "label": "social security", - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.social_security.rate": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.social_security.rate", - "description": "Connecticut multiplies the lesser of the taxable social security amount and the combined income excess amount by this rate under the social security benefit adjustment.", - "label": "Connecticut social security benefit adjustment rate", - "unit": "/1", - "period": "year", - "values": { - "2019-01-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.social_security.reduction_threshold": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.subtractions.social_security.reduction_threshold", - "description": "Connecticut reduces the amount of subtracted taxable social security benefits from state adjusted gross income for filers with adjusted gross income above this amount, based on filing status.", - "label": "Connecticut social security subtraction reduction threshold", - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.social_security.reduction_threshold.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.social_security.reduction_threshold.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2015-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.social_security.reduction_threshold.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.social_security.reduction_threshold.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.social_security.reduction_threshold.JOINT": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.social_security.reduction_threshold.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.social_security.reduction_threshold.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.social_security.reduction_threshold.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.subtractions.social_security.reduction_threshold.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.subtractions.social_security.reduction_threshold.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2015-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rebate": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.rebate", - "description": null, - "label": "rebate", - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rebate.reduction": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.rebate.reduction", - "description": null, - "label": "reduction", - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rebate.reduction.increment": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rebate.reduction.increment", - "description": "Connecticut reduces the child tax rebate amount for each of these increments of state adjusted gross income exceeding the threshold.", - "label": "Connecticut child tax rebate reduction increment", - "unit": "currency-USD", - "period": "year", - "values": { - "2022-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rebate.reduction.start": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.rebate.reduction.start", - "description": "Connecticut reduces the child tax rebate for filers with state adjusted gross income above this amount, based on filing status.", - "label": "Connecticut child tax rebate reduction start", - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rebate.reduction.start.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rebate.reduction.start.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rebate.reduction.start.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rebate.reduction.start.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2022-01-01": 160000, - "2015-01-01": 160000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rebate.reduction.start.JOINT": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rebate.reduction.start.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2022-01-01": 200000, - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rebate.reduction.start.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rebate.reduction.start.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 200000, - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rebate.reduction.start.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rebate.reduction.start.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rebate.reduction.rate": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rebate.reduction.rate", - "description": "Connecticut reduces the personal exemption amount by this rate for each increment of state adjusted gross income exceeding the threshold.", - "label": "Connecticut child tax rebate reduction rate", - "unit": "/1", - "period": "year", - "values": { - "2022-01-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rebate.child_cap": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rebate.child_cap", - "description": "Connecticut caps the child for tax rebate at this number.", - "label": "Connecticut tax rebate child cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2022-01-01": 3, - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.rebate.amount": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.rebate.amount", - "description": "Connecticut provides a child tax rebate of this amount, for each eligible child.", - "label": "Connecticut child tax rebate amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2022-01-01": 250, - "2015-01-01": 250 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.additions": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.additions", - "description": null, - "label": "additions", - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.additions.additions": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.additions.additions", - "description": "Connecticut counts these sources as additions.", - "label": "Connecticut AGI additions", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": ["ct_section_179_expense_add_back"], - "2015-01-01": ["ct_section_179_expense_add_back"] - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.add_back": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.add_back", - "description": null, - "label": "add back", - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.add_back.increment": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.add_back.increment", - "description": "Connecticut phases its bottom income tax rate out in these increments, based on filing status.", - "label": "Connecticut income tax phase out brackets", - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.add_back.increment.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.add_back.increment.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.add_back.increment.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.add_back.increment.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2015-01-01": 4000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.add_back.increment.JOINT": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.add_back.increment.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.add_back.increment.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.add_back.increment.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.add_back.increment.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.add_back.increment.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2015-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.add_back.max_amount": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.add_back.max_amount", - "description": "Connecticut has an phase-out add-back of this maximum amount, based on filing status.", - "label": "Connecticut income tax phase out max amount", - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.add_back.max_amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.add_back.max_amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 250, - "2015-01-01": 200 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.add_back.max_amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.add_back.max_amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2024-01-01": 400, - "2015-01-01": 320 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.add_back.max_amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.add_back.max_amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 500, - "2015-01-01": 400 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.add_back.max_amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.add_back.max_amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 500, - "2015-01-01": 400 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.add_back.max_amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.add_back.max_amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 250, - "2015-01-01": 200 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.add_back.start": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.add_back.start", - "description": "Connecticut phases its bottom income tax rate out for filers with adjusted gross income above this threshold, based on filing status.", - "label": "Connecticut income tax phase out start", - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.add_back.start.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.add_back.start.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2015-01-01": 56500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.add_back.start.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.add_back.start.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2015-01-01": 78500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.add_back.start.JOINT": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.add_back.start.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2015-01-01": 100500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.add_back.start.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.add_back.start.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2015-01-01": 100500 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.add_back.start.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.add_back.start.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2015-01-01": 50250 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.add_back.amount": { - "type": "parameterNode", - "parameter": "gov.states.ct.tax.income.add_back.amount", - "description": "Connecticut phases its bottom income tax rate out by this amount, based on filing status.", - "label": "Connecticut bottom income tax phase out amount", - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.add_back.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.add_back.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 25, - "2015-01-01": 20 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.add_back.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.add_back.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2024-01-01": 40, - "2015-01-01": 32 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.add_back.amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.add_back.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 50, - "2015-01-01": 40 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.add_back.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.add_back.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 50, - "2015-01-01": 40 - }, - "economy": true, - "household": true - }, - "gov.states.ct.tax.income.add_back.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ct.tax.income.add_back.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 25, - "2015-01-01": 20 - }, - "economy": true, - "household": true - }, - "gov.states.ny": { - "type": "parameterNode", - "parameter": "gov.states.ny", - "description": null, - "label": "New York", - "economy": true, - "household": true - }, - "gov.states.ny.nyserda": { - "type": "parameterNode", - "parameter": "gov.states.ny.nyserda", - "description": null, - "label": "nyserda", - "economy": true, - "household": true - }, - "gov.states.ny.nyserda.drive_clean": { - "type": "parameterNode", - "parameter": "gov.states.ny.nyserda.drive_clean", - "description": null, - "label": "drive clean", - "economy": true, - "household": true - }, - "gov.states.ny.nyserda.drive_clean.flat_rebate": { - "type": "parameterNode", - "parameter": "gov.states.ny.nyserda.drive_clean.flat_rebate", - "description": null, - "label": "flat rebate", - "economy": true, - "household": true - }, - "gov.states.ny.nyserda.drive_clean.flat_rebate.amount": { - "type": "parameter", - "parameter": "gov.states.ny.nyserda.drive_clean.flat_rebate.amount", - "description": "New York provides the following flat Drive Clean point-of-sale rebate vehicles with a base MSRP over a certain threshold.", - "label": "New York Drive Clean point-of-sale flat rebate MSRP amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2017-03-21": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.ny.nyserda.drive_clean.flat_rebate.msrp_threshold": { - "type": "parameter", - "parameter": "gov.states.ny.nyserda.drive_clean.flat_rebate.msrp_threshold", - "description": "New York provides a flat Drive Clean point-of-sale rebate for vehicles with base MSRP over this amount.", - "label": "New York Drive Clean point-of-sale flat rebate MSRP threshold", - "unit": "miles", - "period": "year", - "values": { - "2021-06-30": 42000, - "2017-03-21": 60000, - "2015-01-01": 60000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.nyserda.drive_clean.amount": { - "type": "parameterNode", - "parameter": "gov.states.ny.nyserda.drive_clean.amount", - "description": "New York provides the following Drive Clean point-of-sale rebate amount, based on the all-electric range of the vehicle.", - "label": "New York Drive Clean point-of-sale rebate amount" - }, - "gov.states.ny.nyserda.drive_clean.amount[0]": { - "type": "parameterNode", - "parameter": "gov.states.ny.nyserda.drive_clean.amount[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ny.nyserda.drive_clean.amount[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.nyserda.drive_clean.amount[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2017-03-21": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ny.nyserda.drive_clean.amount[0].amount": { - "type": "parameter", - "parameter": "gov.states.ny.nyserda.drive_clean.amount[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2017-03-21": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.ny.nyserda.drive_clean.amount[1]": { - "type": "parameterNode", - "parameter": "gov.states.ny.nyserda.drive_clean.amount[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ny.nyserda.drive_clean.amount[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.nyserda.drive_clean.amount[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2017-03-21": 20, - "2015-01-01": 20 - }, - "economy": true, - "household": true - }, - "gov.states.ny.nyserda.drive_clean.amount[1].amount": { - "type": "parameter", - "parameter": "gov.states.ny.nyserda.drive_clean.amount[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-06-30": 500, - "2017-03-21": 1100, - "2015-01-01": 1100 - }, - "economy": true, - "household": true - }, - "gov.states.ny.nyserda.drive_clean.amount[2]": { - "type": "parameterNode", - "parameter": "gov.states.ny.nyserda.drive_clean.amount[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ny.nyserda.drive_clean.amount[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.nyserda.drive_clean.amount[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2017-03-21": 40, - "2015-01-01": 40 - }, - "economy": true, - "household": true - }, - "gov.states.ny.nyserda.drive_clean.amount[2].amount": { - "type": "parameter", - "parameter": "gov.states.ny.nyserda.drive_clean.amount[2].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-06-31": 1000, - "2017-03-21": 1700, - "2015-01-01": 1700 - }, - "economy": true, - "household": true - }, - "gov.states.ny.nyserda.drive_clean.amount[3]": { - "type": "parameterNode", - "parameter": "gov.states.ny.nyserda.drive_clean.amount[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ny.nyserda.drive_clean.amount[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.nyserda.drive_clean.amount[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2017-03-21": 119, - "2015-01-01": 119 - }, - "economy": true, - "household": true - }, - "gov.states.ny.nyserda.drive_clean.amount[3].amount": { - "type": "parameter", - "parameter": "gov.states.ny.nyserda.drive_clean.amount[3].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-06-31": 1000, - "2017-03-21": 2000, - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.nyserda.drive_clean.amount[4]": { - "type": "parameterNode", - "parameter": "gov.states.ny.nyserda.drive_clean.amount[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ny.nyserda.drive_clean.amount[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.nyserda.drive_clean.amount[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2017-03-21": 200, - "2015-01-01": 200 - }, - "economy": true, - "household": true - }, - "gov.states.ny.nyserda.drive_clean.amount[4].amount": { - "type": "parameter", - "parameter": "gov.states.ny.nyserda.drive_clean.amount[4].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2017-03-21": 2000, - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.states.ny.tax.income": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.agi": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.agi", - "description": null, - "label": "AGI", - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.agi.subtractions": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.agi.subtractions", - "description": null, - "label": "subtractions", - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.agi.subtractions.sources": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.agi.subtractions.sources", - "description": "New York subtracts the following sources from federal adjusted gross income.", - "label": "New York AGI Subtractions", - "unit": "currency-USD", - "period": "year", - "values": { - "2020-01-01": [ - "taxable_social_security", - "us_govt_interest", - "investment_in_529_plan", - "ny_pension_exclusion" - ], - "2015-01-01": [ - "taxable_social_security", - "us_govt_interest", - "investment_in_529_plan", - "ny_pension_exclusion" - ] - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.agi.subtractions.pension_exclusion": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.agi.subtractions.pension_exclusion", - "description": null, - "label": "pension exclusion", - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.agi.subtractions.pension_exclusion.min_age": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.agi.subtractions.pension_exclusion.min_age", - "description": "New York State residents over this age can make use of the NY State AGI exclusion for pensions and annuities.", - "label": "New York pension exclusion minimum age", - "unit": "year", - "period": "year", - "values": { - "2020-01-01": 59.5, - "2015-01-01": 59.5 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.agi.subtractions.pension_exclusion.cap": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.agi.subtractions.pension_exclusion.cap", - "description": "New York State residents can subtract this amount from pensions and annuities included in federal AGI from their NY State AGI.", - "label": "New York pension exclusion cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2020-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits", - "description": null, - "label": "credits", - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.eitc": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.eitc", - "description": null, - "label": "Earned Income Tax Credit", - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.eitc.supplemental_match": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.eitc.supplemental_match", - "description": "New York matches this fraction of the federal earned income tax credit in its supplemental EITC.", - "label": "New York supplemental EITC match", - "unit": "/1", - "period": "year", - "values": { - "2022-01-01": 0, - "2021-01-01": 0.25, - "2019-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.eitc.match": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.eitc.match", - "description": "New York matches this fraction of the federal Earned Income Tax Credit.", - "label": "New York EITC percent", - "unit": "/1", - "period": "year", - "values": { - "2003-01-01": 0.3, - "2002-01-01": 0.275, - "2001-01-01": 0.25, - "2000-01-01": 0.225, - "1996-01-01": 0.2, - "1995-01-01": 0.1, - "1994-01-01": 0.075 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.solar_energy_systems_equipment": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.solar_energy_systems_equipment", - "description": null, - "label": "solar energy systems equipment", - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.solar_energy_systems_equipment.cap": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.solar_energy_systems_equipment.cap", - "description": "New York caps the solar energy systems equipment credit at this amount.", - "label": "New York solar energy systems equipment credit cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2006-09-01": 5000, - "2006-01-01": 3750 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.solar_energy_systems_equipment.rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.solar_energy_systems_equipment.rate", - "description": "New York provides a credit for this fraction of total solar energy systems equipment expenditures.", - "label": "New York solar energy systems equipment credit rate", - "unit": "/1", - "period": "year", - "values": { - "2006-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.refundable": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.refundable", - "description": "New York provides the following refundable tax credits.", - "label": "New York refundable tax credits", - "unit": "list", - "period": "year", - "values": { - "2026-01-01": [ - "ny_eitc", - "ny_supplemental_eitc", - "ny_ctc", - "ny_cdcc", - "ny_real_property_tax_credit", - "ny_college_tuition_credit" - ], - "2025-01-01": [ - "ny_eitc", - "ny_supplemental_eitc", - "ny_ctc", - "ny_cdcc", - "ny_real_property_tax_credit", - "ny_college_tuition_credit", - "ny_inflation_refund_credit" - ], - "2024-01-01": [ - "ny_eitc", - "ny_supplemental_eitc", - "ny_ctc", - "ny_cdcc", - "ny_real_property_tax_credit", - "ny_college_tuition_credit" - ], - "2023-01-01": [ - "ny_eitc", - "ny_supplemental_eitc", - "ny_ctc", - "ny_cdcc", - "ny_real_property_tax_credit", - "ny_college_tuition_credit", - "ny_additional_ctc" - ], - "2022-01-01": [ - "ny_eitc", - "ny_supplemental_eitc", - "ny_ctc", - "ny_cdcc", - "ny_real_property_tax_credit", - "ny_college_tuition_credit" - ], - "2021-01-01": [ - "ny_eitc", - "ny_supplemental_eitc", - "ny_ctc", - "ny_cdcc", - "ny_real_property_tax_credit", - "ny_college_tuition_credit", - "ny_additional_ctc" - ], - "2019-01-01": [ - "ny_eitc", - "ny_supplemental_eitc", - "ny_ctc", - "ny_cdcc", - "ny_real_property_tax_credit", - "ny_college_tuition_credit" - ], - "2015-01-01": [ - "ny_eitc", - "ny_supplemental_eitc", - "ny_ctc", - "ny_cdcc", - "ny_real_property_tax_credit", - "ny_college_tuition_credit" - ] - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.inflation_refund": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund", - "description": null, - "label": "inflation refund", - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.inflation_refund.head_of_household": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.head_of_household", - "description": "New York provides the following inflation refund credit amount for head of household filers, based on adjusted gross income.", - "label": "New York 2025 inflation refund credits head of household amount" - }, - "gov.states.ny.tax.income.credits.inflation_refund.head_of_household[0]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.head_of_household[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ny.tax.income.credits.inflation_refund.head_of_household[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.head_of_household[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.inflation_refund.head_of_household[0].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.head_of_household[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": 200, - "2015-01-01": 200 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.inflation_refund.head_of_household[1]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.head_of_household[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ny.tax.income.credits.inflation_refund.head_of_household[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.head_of_household[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": 75000, - "2015-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.inflation_refund.head_of_household[1].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.head_of_household[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": 150, - "2015-01-01": 150 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.inflation_refund.head_of_household[2]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.head_of_household[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ny.tax.income.credits.inflation_refund.head_of_household[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.head_of_household[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.inflation_refund.head_of_household[2].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.head_of_household[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.inflation_refund.separate": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.separate", - "description": "New York provides the following inflation refund credit amount for married filing separate filers, based on adjusted gross income.", - "label": "New York 2025 inflation refund credits separate amount" - }, - "gov.states.ny.tax.income.credits.inflation_refund.separate[0]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.separate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ny.tax.income.credits.inflation_refund.separate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.separate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.inflation_refund.separate[0].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.separate[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": 200, - "2015-01-01": 200 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.inflation_refund.separate[1]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.separate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ny.tax.income.credits.inflation_refund.separate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.separate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": 75000, - "2015-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.inflation_refund.separate[1].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.separate[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": 150, - "2015-01-01": 150 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.inflation_refund.separate[2]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.separate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ny.tax.income.credits.inflation_refund.separate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.separate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.inflation_refund.separate[2].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.separate[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.inflation_refund.joint": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.joint", - "description": "New York provides the following inflation refund credit amount for joint filers, based on adjusted gross income.", - "label": "New York 2025 inflation refund credits joint amount" - }, - "gov.states.ny.tax.income.credits.inflation_refund.joint[0]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ny.tax.income.credits.inflation_refund.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.inflation_refund.joint[0].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.joint[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": 400, - "2015-01-01": 400 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.inflation_refund.joint[1]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ny.tax.income.credits.inflation_refund.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.inflation_refund.joint[1].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.joint[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": 300, - "2015-01-01": 300 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.inflation_refund.joint[2]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ny.tax.income.credits.inflation_refund.joint[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": 300000, - "2015-01-01": 300000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.inflation_refund.joint[2].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.joint[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.inflation_refund.single": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.single", - "description": "New York provides the following inflation refund credit amount for single filers, based on adjusted gross income.", - "label": "New York 2025 inflation refund credits single amount" - }, - "gov.states.ny.tax.income.credits.inflation_refund.single[0]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.single[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ny.tax.income.credits.inflation_refund.single[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.single[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.inflation_refund.single[0].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.single[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": 200, - "2015-01-01": 200 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.inflation_refund.single[1]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.single[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ny.tax.income.credits.inflation_refund.single[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.single[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": 75000, - "2015-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.inflation_refund.single[1].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.single[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": 150, - "2015-01-01": 150 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.inflation_refund.single[2]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.single[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ny.tax.income.credits.inflation_refund.single[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.single[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.inflation_refund.single[2].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.single[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.inflation_refund.surviving_spouse": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.surviving_spouse", - "description": "New York provides the following inflation refund credit amount for surviving spouses, based on adjusted gross income.", - "label": "New York 2025 inflation refund credits surviving spouse amount" - }, - "gov.states.ny.tax.income.credits.inflation_refund.surviving_spouse[0]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.surviving_spouse[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ny.tax.income.credits.inflation_refund.surviving_spouse[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.surviving_spouse[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.inflation_refund.surviving_spouse[0].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.surviving_spouse[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": 400, - "2015-01-01": 400 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.inflation_refund.surviving_spouse[1]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.surviving_spouse[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ny.tax.income.credits.inflation_refund.surviving_spouse[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.surviving_spouse[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.inflation_refund.surviving_spouse[1].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.surviving_spouse[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": 300, - "2015-01-01": 300 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.inflation_refund.surviving_spouse[2]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.surviving_spouse[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ny.tax.income.credits.inflation_refund.surviving_spouse[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.surviving_spouse[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": 300000, - "2015-01-01": 300000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.inflation_refund.surviving_spouse[2].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.inflation_refund.surviving_spouse[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.ctc": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.ctc", - "description": null, - "label": "Empire State Child Credit", - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.ctc.amount": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.ctc.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.ctc.amount.percent": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.ctc.amount.percent", - "description": "New York's Empire State Child Credit share of federal credit.", - "label": "New York CTC share of federal credit", - "unit": "/1", - "period": "year", - "values": { - "2018-01-01": 0.33, - "2015-01-01": 0.33 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.ctc.amount.minimum": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.ctc.amount.minimum", - "description": "New York sets this minimum amount per child for its Empire State Child Credit.", - "label": "New York CTC minimum amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2018-01-01": 100, - "2015-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.ctc.minimum_age": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.ctc.minimum_age", - "description": "New York provides the Empire State Child Credit for children at or above this age threshold.", - "label": "NY CTC minimum age", - "unit": "year", - "period": "year", - "values": { - "2023-01-01": 0, - "2018-01-01": 4, - "2015-01-01": 4 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.ctc.post_2024": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.ctc.post_2024", - "description": null, - "label": "post 2024", - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.ctc.post_2024.in_effect": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.ctc.post_2024.in_effect", - "description": "New York applies an updated Child Tax Credit structure, if this is true.", - "label": "New York updated CTC rules in effect post 2024", - "unit": "bool", - "period": "year", - "values": { - "2028-01-01": false, - "2025-01-01": true, - "2000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.ctc.post_2024.phase_out": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.ctc.post_2024.phase_out", - "description": null, - "label": "phase out", - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.ctc.post_2024.phase_out.increment": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.ctc.post_2024.phase_out.increment", - "description": "New York reduces the Child Tax Credit by a certain amount for each increment by which adjusted gross income exceeds the phase-out thresholds.", - "label": "New York CTC post 2024 phase-out increment", - "unit": "currency-USD", - "period": "year", - "values": { - "2028-01-01": 1, - "2025-01-01": 1000, - "2000-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.ctc.post_2024.phase_out.rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.ctc.post_2024.phase_out.rate", - "description": "New York reduces the Child Tax Credit by this percentage of each increment above the adjusted gross income threshold.", - "label": "New York CTC post 2024 phase-out rate", - "unit": "/1", - "period": "year", - "values": { - "2028-01-01": 0, - "2025-01-01": 16.5, - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.ctc.post_2024.phase_out.threshold": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.ctc.post_2024.phase_out.threshold", - "description": "New York applies the Child Tax Credit phase-out above these adjusted gross income thresholds by filing status.", - "label": "New York CTC post 2024 phase-out thresholds", - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.ctc.post_2024.phase_out.threshold.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.ctc.post_2024.phase_out.threshold.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2028-01-01": 0, - "2025-01-01": 75000, - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.ctc.post_2024.phase_out.threshold.JOINT": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.ctc.post_2024.phase_out.threshold.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2028-01-01": 0, - "2025-01-01": 110000, - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.ctc.post_2024.phase_out.threshold.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.ctc.post_2024.phase_out.threshold.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2028-01-01": 0, - "2025-01-01": 75000, - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.ctc.post_2024.phase_out.threshold.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.ctc.post_2024.phase_out.threshold.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2028-01-01": 0, - "2025-01-01": 55000, - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.ctc.post_2024.phase_out.threshold.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.ctc.post_2024.phase_out.threshold.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2028-01-01": 0, - "2025-01-01": 110000, - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.ctc.post_2024.amount": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.ctc.post_2024.amount", - "description": "New York provides these Child Tax Credit amounts by child age.", - "label": "New York CTC post 2024 amount" - }, - "gov.states.ny.tax.income.credits.ctc.post_2024.amount[0]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.ctc.post_2024.amount[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ny.tax.income.credits.ctc.post_2024.amount[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.ctc.post_2024.amount[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.ctc.post_2024.amount[0].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.ctc.post_2024.amount[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2028-01-01": 0, - "2026-01-01": 1000, - "2025-01-01": 1000, - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.ctc.post_2024.amount[1]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.ctc.post_2024.amount[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ny.tax.income.credits.ctc.post_2024.amount[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.ctc.post_2024.amount[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2000-01-01": 4 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.ctc.post_2024.amount[1].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.ctc.post_2024.amount[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2028-01-01": 0, - "2026-01-01": 500, - "2025-01-01": 330, - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.ctc.post_2024.amount[2]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.ctc.post_2024.amount[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ny.tax.income.credits.ctc.post_2024.amount[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.ctc.post_2024.amount[2].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2000-01-01": 17 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.ctc.post_2024.amount[2].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.ctc.post_2024.amount[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.ctc.pre_tcja": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.ctc.pre_tcja", - "description": "Whether the NY CTC uses pre-TCJA parameters to calculate the federal CTC.", - "label": "Use pre-TCJA parameters for the federal CTC", - "unit": "bool", - "period": "year", - "values": { - "2018-01-01": true, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.ctc.additional": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.ctc.additional", - "description": null, - "label": "additional", - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.ctc.additional.min_credit_value": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.ctc.additional.min_credit_value", - "description": "New York provides the additional Empire State Child Credit if the calculated credit value meets this minimum threshold.", - "label": "New York additional Empire State Child Credit minimum credit", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 25, - "2015-01-01": 25 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.ctc.additional.amount": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.ctc.additional.amount", - "description": "New York State matches this fraction of the Empire State Credit as an additional credit, based on the federal adjusted gross income.", - "label": "New York additional Empire State Child Credit match" - }, - "gov.states.ny.tax.income.credits.ctc.additional.amount[0]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.ctc.additional.amount[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ny.tax.income.credits.ctc.additional.amount[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.ctc.additional.amount[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.ctc.additional.amount[0].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.ctc.additional.amount[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.ctc.additional.amount[1]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.ctc.additional.amount[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ny.tax.income.credits.ctc.additional.amount[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.ctc.additional.amount[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.ctc.additional.amount[1].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.ctc.additional.amount[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.75, - "2015-01-01": 0.75 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.ctc.additional.amount[2]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.ctc.additional.amount[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ny.tax.income.credits.ctc.additional.amount[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.ctc.additional.amount[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.ctc.additional.amount[2].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.ctc.additional.amount[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.ctc.additional.amount[3]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.ctc.additional.amount[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ny.tax.income.credits.ctc.additional.amount[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.ctc.additional.amount[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.ctc.additional.amount[3].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.ctc.additional.amount[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax", - "description": null, - "label": "real property tax", - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.max_property_value": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.max_property_value", - "description": "New York disqualifies property owners who own property valued above this amount from receiving the real property tax credit.", - "label": "New York real property tax credit maximum property value", - "unit": "currency-USD", - "period": "year", - "values": { - "2019-01-01": 85000, - "2015-01-01": 85000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.elderly_age": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.elderly_age", - "description": "New York applies the maximum real property tax credit for the elderly at this age or older.", - "label": "New York real property tax credit elderly age", - "unit": "year", - "period": "year", - "values": { - "2000-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.rent_tax_equivalent": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.rent_tax_equivalent", - "description": "New York deems this percentage of rent as equivalent to property tax for the real property tax credit.", - "label": "New York real property tax rent equivalent", - "unit": "/1", - "period": "year", - "values": { - "2000-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.max_rent": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.max_rent", - "description": "New York disqualifies renters whose annual rent exceeds this value from receiving the real property tax credit.", - "label": "New York real property tax maximum rent", - "unit": "currency-USD", - "period": "year", - "values": { - "2019-01-01": 5400, - "2015-01-01": 5400 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.excess_real_property_tax": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.excess_real_property_tax", - "description": "New York deems real property taxes (or rent equivalent) over this percentage of household gross income as 'excess' for the real property tax credit.", - "label": "New York real property tax credit excess level" - }, - "gov.states.ny.tax.income.credits.real_property_tax.excess_real_property_tax[0]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.excess_real_property_tax[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ny.tax.income.credits.real_property_tax.excess_real_property_tax[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.excess_real_property_tax[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.excess_real_property_tax[0].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.excess_real_property_tax[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2000-01-01": 0.035 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.excess_real_property_tax[1]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.excess_real_property_tax[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ny.tax.income.credits.real_property_tax.excess_real_property_tax[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.excess_real_property_tax[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.excess_real_property_tax[1].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.excess_real_property_tax[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2000-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.excess_real_property_tax[2]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.excess_real_property_tax[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ny.tax.income.credits.real_property_tax.excess_real_property_tax[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.excess_real_property_tax[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.excess_real_property_tax[2].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.excess_real_property_tax[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2000-01-01": 0.045 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.excess_real_property_tax[3]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.excess_real_property_tax[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ny.tax.income.credits.real_property_tax.excess_real_property_tax[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.excess_real_property_tax[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 7000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.excess_real_property_tax[3].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.excess_real_property_tax[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2000-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.excess_real_property_tax[4]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.excess_real_property_tax[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ny.tax.income.credits.real_property_tax.excess_real_property_tax[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.excess_real_property_tax[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 9000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.excess_real_property_tax[4].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.excess_real_property_tax[4].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2000-01-01": 0.055 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.excess_real_property_tax[5]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.excess_real_property_tax[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ny.tax.income.credits.real_property_tax.excess_real_property_tax[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.excess_real_property_tax[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 11000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.excess_real_property_tax[5].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.excess_real_property_tax[5].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2000-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.excess_real_property_tax[6]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.excess_real_property_tax[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.ny.tax.income.credits.real_property_tax.excess_real_property_tax[6].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.excess_real_property_tax[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 14000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.excess_real_property_tax[6].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.excess_real_property_tax[6].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2000-01-01": 0.065 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum", - "description": null, - "label": "maximum", - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly", - "description": "New York sets this maximum real property tax credit for filers with one elderly taxpayer.", - "label": "New York real property tax credit elderly maximum amount" - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[0]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[0].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 375 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[1]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[1].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 358 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[2]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[2].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 341 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[3]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[3].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 324 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[4]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 4000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[4].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 307 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[5]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[5].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 290 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[6]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[6].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 6000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[6].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[6].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 273 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[7]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[7].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 7000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[7].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[7].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 256 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[8]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[8].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 8000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[8].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[8].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 239 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[9]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[9].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 9000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[9].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[9].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 222 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[10]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[10]", - "description": null, - "label": "bracket 11" - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[10].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[10].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[10].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[10].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 205 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[11]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[11]", - "description": null, - "label": "bracket 12" - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[11].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[11].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 11000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[11].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[11].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 188 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[12]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[12]", - "description": null, - "label": "bracket 13" - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[12].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[12].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 12000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[12].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[12].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 171 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[13]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[13]", - "description": null, - "label": "bracket 14" - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[13].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[13].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 13000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[13].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[13].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 154 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[14]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[14]", - "description": null, - "label": "bracket 15" - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[14].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[14].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 14000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[14].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[14].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 137 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[15]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[15]", - "description": null, - "label": "bracket 16" - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[15].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[15].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[15].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[15].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 120 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[16]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[16]", - "description": null, - "label": "bracket 17" - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[16].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[16].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 16000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[16].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[16].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 103 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[17]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[17]", - "description": null, - "label": "bracket 18" - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[17].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[17].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 17000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[17].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.elderly[17].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 86 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly", - "description": "New York sets this maximum real property tax credit for filers without an elderly taxpayer.", - "label": "NY real property tax credit non-elderly maximum amount" - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[0]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[0].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 75 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[1]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[1].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 73 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[2]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[2].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 71 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[3]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[3].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 69 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[4]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 4000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[4].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 67 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[5]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[5].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[6]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[6].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 6000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[6].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[6].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 63 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[7]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[7].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 7000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[7].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[7].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 61 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[8]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[8].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 8000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[8].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[8].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 59 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[9]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[9].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 9000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[9].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[9].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 57 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[10]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[10]", - "description": null, - "label": "bracket 11" - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[10].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[10].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[10].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[10].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 55 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[11]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[11]", - "description": null, - "label": "bracket 12" - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[11].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[11].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 11000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[11].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[11].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 53 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[12]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[12]", - "description": null, - "label": "bracket 13" - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[12].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[12].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 12000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[12].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[12].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 51 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[13]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[13]", - "description": null, - "label": "bracket 14" - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[13].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[13].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 13000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[13].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[13].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 49 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[14]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[14]", - "description": null, - "label": "bracket 15" - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[14].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[14].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 14000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[14].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[14].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 47 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[15]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[15]", - "description": null, - "label": "bracket 16" - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[15].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[15].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[15].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[15].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 45 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[16]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[16]", - "description": null, - "label": "bracket 17" - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[16].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[16].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 16000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[16].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[16].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 43 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[17]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[17]", - "description": null, - "label": "bracket 18" - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[17].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[17].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 17000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[17].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.maximum.non_elderly[17].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 41 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.max_agi": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.max_agi", - "description": "New York sets this maximum AGI for eligibility for the real property tax credit.", - "label": "New York real property tax credit maximum AGI", - "unit": "currency-USD", - "period": "year", - "values": { - "2019-01-01": 18000, - "2015-01-01": 18000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.real_property_tax.rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.real_property_tax.rate", - "description": "New York credits this percentage of excess real property tax (or rent equivalent) from the New York State income tax as the real property tax credit.", - "label": "New York real property tax credit rate", - "unit": "/1", - "period": "year", - "values": { - "2000-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.cdcc": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.cdcc", - "description": null, - "label": "Child and Dependent Care Credit", - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.cdcc.percentage": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.cdcc.percentage", - "description": null, - "label": "percentage", - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.cdcc.percentage.alternate": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.cdcc.percentage.alternate", - "description": null, - "label": "alternate", - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.cdcc.percentage.alternate.fraction": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.cdcc.percentage.alternate.fraction", - "description": null, - "label": "fraction", - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.cdcc.percentage.alternate.fraction.numerator": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.cdcc.percentage.alternate.fraction.numerator", - "description": null, - "label": "numerator", - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.cdcc.percentage.alternate.fraction.numerator.top": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.cdcc.percentage.alternate.fraction.numerator.top", - "description": "New York AGI is subtracted from this to determine the NY CDCC percentage under the alternate fraction.", - "label": "New York CDCC alternate fraction numerator top", - "unit": "currency-USD", - "period": "year", - "values": { - "2000-01-01": 40000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.cdcc.percentage.alternate.fraction.numerator.min": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.cdcc.percentage.alternate.fraction.numerator.min", - "description": "New York sets this minimum numerator for the alternate fraction for the CDCC.", - "label": "New York CDCC alternate fraction numerator minimum", - "unit": "currency-USD", - "period": "year", - "values": { - "2000-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.cdcc.percentage.alternate.fraction.denominator": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.cdcc.percentage.alternate.fraction.denominator", - "description": "New York sets this denominator for the alternate fraction for the CDCC.", - "label": "New York CDCC alternate fraction denominator", - "unit": "currency-USD", - "period": "year", - "values": { - "2000-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.cdcc.percentage.alternate.base_percentage": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.cdcc.percentage.alternate.base_percentage", - "description": "New York sets this base percentage for the alternate fraction for the CDCC.", - "label": "New York CDCC alternate base percentage", - "unit": "/1", - "period": "year", - "values": { - "2000-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.cdcc.percentage.alternate.multiplier": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.cdcc.percentage.alternate.multiplier", - "description": "New York sets this minimum numerator for the alternate fraction for the CDCC.", - "label": "New York CDCC alternate maximum AGI", - "unit": "/1", - "period": "year", - "values": { - "2000-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.cdcc.percentage.alternate.max_agi": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.cdcc.percentage.alternate.max_agi", - "description": "New York filers with AGI under this amount use the alternate parameters.", - "label": "New York CDCC alternate maximum AGI", - "unit": "currency-USD", - "period": "year", - "values": { - "2000-01-01": 40000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.cdcc.percentage.multiplier": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.cdcc.percentage.multiplier", - "description": "New York CDCC rate is multiplied by this amount, given New York AGI.", - "label": "New York CDCC multiplier" - }, - "gov.states.ny.tax.income.credits.cdcc.percentage.multiplier[0]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.cdcc.percentage.multiplier[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ny.tax.income.credits.cdcc.percentage.multiplier[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.cdcc.percentage.multiplier[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1999-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.cdcc.percentage.multiplier[0].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.cdcc.percentage.multiplier[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "1999-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.cdcc.percentage.multiplier[1]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.cdcc.percentage.multiplier[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ny.tax.income.credits.cdcc.percentage.multiplier[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.cdcc.percentage.multiplier[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1999-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.cdcc.percentage.multiplier[1].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.cdcc.percentage.multiplier[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "1999-01-01": 1.1682 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.cdcc.percentage.multiplier[2]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.cdcc.percentage.multiplier[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ny.tax.income.credits.cdcc.percentage.multiplier[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.cdcc.percentage.multiplier[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1999-01-01": 55000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.cdcc.percentage.multiplier[2].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.cdcc.percentage.multiplier[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "1999-01-01": 1.2733 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.cdcc.percentage.multiplier[3]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.cdcc.percentage.multiplier[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ny.tax.income.credits.cdcc.percentage.multiplier[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.cdcc.percentage.multiplier[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1999-01-01": 60000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.cdcc.percentage.multiplier[3].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.cdcc.percentage.multiplier[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "1999-01-01": 2.322 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.cdcc.percentage.multiplier[4]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.cdcc.percentage.multiplier[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ny.tax.income.credits.cdcc.percentage.multiplier[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.cdcc.percentage.multiplier[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1999-01-01": 65000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.cdcc.percentage.multiplier[4].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.cdcc.percentage.multiplier[4].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "1999-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.cdcc.percentage.multiplier[5]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.cdcc.percentage.multiplier[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ny.tax.income.credits.cdcc.percentage.multiplier[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.cdcc.percentage.multiplier[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1999-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.cdcc.percentage.multiplier[5].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.cdcc.percentage.multiplier[5].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "1999-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.cdcc.percentage.main": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.cdcc.percentage.main", - "description": null, - "label": "main", - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.cdcc.percentage.main.fraction": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.cdcc.percentage.main.fraction", - "description": null, - "label": "fraction", - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.cdcc.percentage.main.fraction.numerator": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.cdcc.percentage.main.fraction.numerator", - "description": null, - "label": "numerator", - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.cdcc.percentage.main.fraction.numerator.top": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.cdcc.percentage.main.fraction.numerator.top", - "description": "New York AGI is subtracted from this to determine the NY CDCC percentage under the main fraction.", - "label": "New York CDCC main fraction numerator top", - "unit": "currency-USD", - "period": "year", - "values": { - "2000-01-01": 65000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.cdcc.percentage.main.fraction.numerator.min": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.cdcc.percentage.main.fraction.numerator.min", - "description": "New York sets this minimum numerator for the main fraction for the CDCC.", - "label": "New York CDCC main fraction numerator minimum", - "unit": "currency-USD", - "period": "year", - "values": { - "2000-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.cdcc.percentage.main.fraction.denominator": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.cdcc.percentage.main.fraction.denominator", - "description": "New York sets this denominator for the main fraction for the CDCC.", - "label": "New York CDCC main fraction denominator", - "unit": "currency-USD", - "period": "year", - "values": { - "2000-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.cdcc.percentage.main.base_percentage": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.cdcc.percentage.main.base_percentage", - "description": "New York sets this base percentage for the main fraction for the CDCC.", - "label": "New York CDCC main base percentage", - "unit": "/1", - "period": "year", - "values": { - "2000-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.cdcc.percentage.main.multiplier": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.cdcc.percentage.main.multiplier", - "description": "New York sets this minimum numerator for the main fraction for the CDCC.", - "label": "New York CDCC main maximum AGI", - "unit": "/1", - "period": "year", - "values": { - "2000-01-01": 0.8 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.cdcc.max": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.cdcc.max", - "description": "New York sets this maximum CDCC based on the number of qualifying dependents.", - "label": "New York CDCC max amount" - }, - "gov.states.ny.tax.income.credits.cdcc.max[0]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.cdcc.max[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ny.tax.income.credits.cdcc.max[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.cdcc.max[0].threshold", - "description": null, - "label": "threshold", - "unit": "dependent", - "period": null, - "values": { - "2019-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.cdcc.max[0].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.cdcc.max[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2019-01-01": 3000, - "2015-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.cdcc.max[1]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.cdcc.max[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ny.tax.income.credits.cdcc.max[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.cdcc.max[1].threshold", - "description": null, - "label": "threshold", - "unit": "dependent", - "period": null, - "values": { - "2019-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.cdcc.max[1].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.cdcc.max[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2019-01-01": 6000, - "2015-01-01": 6000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.cdcc.max[2]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.cdcc.max[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ny.tax.income.credits.cdcc.max[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.cdcc.max[2].threshold", - "description": null, - "label": "threshold", - "unit": "dependent", - "period": null, - "values": { - "2019-01-01": 3, - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.cdcc.max[2].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.cdcc.max[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2019-01-01": 7500, - "2015-01-01": 7500 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.cdcc.max[3]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.cdcc.max[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ny.tax.income.credits.cdcc.max[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.cdcc.max[3].threshold", - "description": null, - "label": "threshold", - "unit": "dependent", - "period": null, - "values": { - "2019-01-01": 4, - "2015-01-01": 4 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.cdcc.max[3].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.cdcc.max[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2019-01-01": 8500, - "2015-01-01": 8500 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.cdcc.max[4]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.cdcc.max[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ny.tax.income.credits.cdcc.max[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.cdcc.max[4].threshold", - "description": null, - "label": "threshold", - "unit": "dependent", - "period": null, - "values": { - "2019-01-01": 5, - "2015-01-01": 5 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.cdcc.max[4].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.cdcc.max[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2019-01-01": 9000, - "2015-01-01": 9000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.household_credit": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.household_credit", - "description": null, - "label": "household credit", - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.household_credit.non_single": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.household_credit.non_single", - "description": null, - "label": "Non-single", - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.household_credit.non_single.base": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.household_credit.non_single.base", - "description": "New York State household credit base amount for non-single filers.", - "label": "New York household credit base for non-single filers" - }, - "gov.states.ny.tax.income.credits.household_credit.non_single.base[0]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.household_credit.non_single.base[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ny.tax.income.credits.household_credit.non_single.base[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.household_credit.non_single.base[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1986-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.household_credit.non_single.base[0].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.household_credit.non_single.base[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1986-01-01": 90 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.household_credit.non_single.base[1]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.household_credit.non_single.base[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ny.tax.income.credits.household_credit.non_single.base[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.household_credit.non_single.base[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1986-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.household_credit.non_single.base[1].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.household_credit.non_single.base[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1986-01-01": 75 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.household_credit.non_single.base[2]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.household_credit.non_single.base[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ny.tax.income.credits.household_credit.non_single.base[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.household_credit.non_single.base[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1986-01-01": 6000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.household_credit.non_single.base[2].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.household_credit.non_single.base[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1986-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.household_credit.non_single.base[3]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.household_credit.non_single.base[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ny.tax.income.credits.household_credit.non_single.base[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.household_credit.non_single.base[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1986-01-01": 7000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.household_credit.non_single.base[3].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.household_credit.non_single.base[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1986-01-01": 60 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.household_credit.non_single.base[4]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.household_credit.non_single.base[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ny.tax.income.credits.household_credit.non_single.base[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.household_credit.non_single.base[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1986-01-01": 22000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.household_credit.non_single.base[4].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.household_credit.non_single.base[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1986-01-01": 50 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.household_credit.non_single.base[5]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.household_credit.non_single.base[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ny.tax.income.credits.household_credit.non_single.base[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.household_credit.non_single.base[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1986-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.household_credit.non_single.base[5].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.household_credit.non_single.base[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1986-01-01": 40 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.household_credit.non_single.base[6]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.household_credit.non_single.base[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.ny.tax.income.credits.household_credit.non_single.base[6].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.household_credit.non_single.base[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1986-01-01": 28000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.household_credit.non_single.base[6].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.household_credit.non_single.base[6].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1986-01-01": 20 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.household_credit.non_single.base[7]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.household_credit.non_single.base[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.ny.tax.income.credits.household_credit.non_single.base[7].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.household_credit.non_single.base[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1986-01-01": 32000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.household_credit.non_single.base[7].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.household_credit.non_single.base[7].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1986-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.household_credit.non_single.additional": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.household_credit.non_single.additional", - "description": "New York State household credit additional amount per person for non-single filers.", - "label": "New York household credit additional amount for non-single filers" - }, - "gov.states.ny.tax.income.credits.household_credit.non_single.additional[0]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.household_credit.non_single.additional[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ny.tax.income.credits.household_credit.non_single.additional[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.household_credit.non_single.additional[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1986-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.household_credit.non_single.additional[0].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.household_credit.non_single.additional[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1986-01-01": 15 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.household_credit.non_single.additional[1]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.household_credit.non_single.additional[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ny.tax.income.credits.household_credit.non_single.additional[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.household_credit.non_single.additional[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1986-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.household_credit.non_single.additional[1].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.household_credit.non_single.additional[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1986-01-01": 10 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.household_credit.non_single.additional[2]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.household_credit.non_single.additional[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ny.tax.income.credits.household_credit.non_single.additional[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.household_credit.non_single.additional[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1986-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.household_credit.non_single.additional[2].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.household_credit.non_single.additional[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1986-01-01": 5 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.household_credit.non_single.additional[3]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.household_credit.non_single.additional[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ny.tax.income.credits.household_credit.non_single.additional[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.household_credit.non_single.additional[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1986-01-01": 32000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.household_credit.non_single.additional[3].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.household_credit.non_single.additional[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1986-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.household_credit.single": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.household_credit.single", - "description": "New York State household credit for single filers.", - "label": "New York household credit for single filers" - }, - "gov.states.ny.tax.income.credits.household_credit.single[0]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.household_credit.single[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ny.tax.income.credits.household_credit.single[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.household_credit.single[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1986-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.household_credit.single[0].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.household_credit.single[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1986-01-01": 75 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.household_credit.single[1]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.household_credit.single[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ny.tax.income.credits.household_credit.single[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.household_credit.single[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1986-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.household_credit.single[1].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.household_credit.single[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1986-01-01": 60 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.household_credit.single[2]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.household_credit.single[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ny.tax.income.credits.household_credit.single[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.household_credit.single[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1986-01-01": 6000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.household_credit.single[2].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.household_credit.single[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1986-01-01": 50 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.household_credit.single[3]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.household_credit.single[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ny.tax.income.credits.household_credit.single[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.household_credit.single[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1986-01-01": 7000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.household_credit.single[3].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.household_credit.single[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1986-01-01": 45 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.household_credit.single[4]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.household_credit.single[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ny.tax.income.credits.household_credit.single[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.household_credit.single[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1986-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.household_credit.single[4].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.household_credit.single[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1986-01-01": 40 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.household_credit.single[5]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.household_credit.single[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ny.tax.income.credits.household_credit.single[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.household_credit.single[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1986-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.household_credit.single[5].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.household_credit.single[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1986-01-01": 20 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.household_credit.single[6]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.household_credit.single[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.ny.tax.income.credits.household_credit.single[6].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.household_credit.single[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1986-01-01": 28000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.household_credit.single[6].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.household_credit.single[6].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1986-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.non_refundable": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.non_refundable", - "description": "New York provides the following non-refundable tax credits.", - "label": "New York non-refundable tax credits", - "unit": "list", - "period": "year", - "values": { - "2019-01-01": [ - "ny_household_credit", - "ny_solar_energy_systems_equipment_credit", - "ny_geothermal_energy_system_credit" - ], - "2015-01-01": [ - "ny_household_credit", - "ny_solar_energy_systems_equipment_credit", - "ny_geothermal_energy_system_credit" - ] - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.college_tuition": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.college_tuition", - "description": null, - "label": "college tuition", - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.college_tuition.applicable_percentage": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.college_tuition.applicable_percentage", - "description": "New York provides a credit for this fraction of allowable college tuition expenses, after applying the rate structure.", - "label": "New York college tuition credit applicable percentage", - "unit": "/1", - "period": "year", - "values": { - "2004-01-01": 1, - "2003-01-01": 0.75, - "2002-01-01": 0.5, - "2001-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.college_tuition.rate": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.college_tuition.rate", - "description": "New York marginal percentage of college tuition which is credited.", - "label": "New York college tuition credit rate" - }, - "gov.states.ny.tax.income.credits.college_tuition.rate[0]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.college_tuition.rate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ny.tax.income.credits.college_tuition.rate[0].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.college_tuition.rate[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2001-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.college_tuition.rate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.college_tuition.rate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2001-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.college_tuition.rate[1]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.college_tuition.rate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ny.tax.income.credits.college_tuition.rate[1].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.college_tuition.rate[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2001-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.college_tuition.rate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.college_tuition.rate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2001-01-01": 200 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.college_tuition.rate[2]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.college_tuition.rate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ny.tax.income.credits.college_tuition.rate[2].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.college_tuition.rate[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2001-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.college_tuition.rate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.college_tuition.rate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2001-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.geothermal_energy_system": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.credits.geothermal_energy_system", - "description": null, - "label": "geothermal energy system", - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.geothermal_energy_system.cap": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.geothermal_energy_system.cap", - "description": "New York caps the geothermal energy system credit at this amount.", - "label": "New York geothermal energy system equipment credit cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2022-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.credits.geothermal_energy_system.rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.credits.geothermal_energy_system.rate", - "description": "New York provides a geothermal energy systems credit of this percentage of total solar geothermal systems equipment expenditures.", - "label": "New York geothermal energy system equipment credit rate", - "unit": "/1", - "period": "year", - "values": { - "2022-01-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.exemptions": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.exemptions", - "description": null, - "label": "exemptions", - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.exemptions.dependent": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.exemptions.dependent", - "description": "New York dependent exemption amount.", - "label": "New York dependent exemption amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.college_tuition": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.college_tuition", - "description": null, - "label": "college tuition", - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.college_tuition.cap": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.college_tuition.cap", - "description": "New York caps college tuition expenses at this amount per eligible student when calculating the credit and deduction.", - "label": "New York allowable college tuition expenses cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2019-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental", - "description": null, - "label": "supplemental", - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.min_agi": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.min_agi", - "description": "New York imposes the NY supplemental tax on filers with AGI over this amount.", - "label": "New York State supplemental tax minimum AGI", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 107650, - "2015-01-01": 107650 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.recapture_base": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base", - "description": null, - "label": "recapture base", - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.recapture_base.head_of_household": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.head_of_household", - "description": "New York recaptures this base amount for head of household filers under the supplemental tax.", - "label": "New York supplemental tax recapture base head of household amount" - }, - "gov.states.ny.tax.income.supplemental.recapture_base.head_of_household[0]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.head_of_household[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ny.tax.income.supplemental.recapture_base.head_of_household[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.head_of_household[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.recapture_base.head_of_household[0].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.head_of_household[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.recapture_base.head_of_household[1]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.head_of_household[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ny.tax.income.supplemental.recapture_base.head_of_household[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.head_of_household[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 269300, - "2015-01-01": 269300 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.recapture_base.head_of_household[1].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.head_of_household[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 787, - "2022-01-01": 752, - "2021-01-01": 742, - "2015-01-01": 742 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.recapture_base.head_of_household[2]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.head_of_household[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ny.tax.income.supplemental.recapture_base.head_of_household[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.head_of_household[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 1616450, - "2015-01-01": 1616450 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.recapture_base.head_of_household[2].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.head_of_household[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2027-01-01": 3614, - "2026-01-01": 3346, - "2023-01-01": 3076, - "2022-01-01": 2368, - "2021-01-01": 2143, - "2015-01-01": 2143 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.recapture_base.head_of_household[3]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.head_of_household[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ny.tax.income.supplemental.recapture_base.head_of_household[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.head_of_household[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2033-01-01": "Infinity", - "2021-01-01": 5000000, - "2015-01-01": 5000000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.recapture_base.head_of_household[3].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.head_of_household[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2027-01-01": 48874, - "2026-01-01": 48606, - "2023-01-01": 48337, - "2022-01-01": 47629, - "2021-01-01": 47403, - "2015-01-01": 47403 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.recapture_base.separate": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.separate", - "description": "New York recaptures this base amount for separate filers under the supplemental tax.", - "label": "New York supplemental tax recapture base separate amount" - }, - "gov.states.ny.tax.income.supplemental.recapture_base.separate[0]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.separate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ny.tax.income.supplemental.recapture_base.separate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.separate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.recapture_base.separate[0].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.separate[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.recapture_base.separate[1]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.separate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ny.tax.income.supplemental.recapture_base.separate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.separate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 215400, - "2015-01-01": 215400 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.recapture_base.separate[1].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.separate[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2027-01-01": 568, - "2026-01-01": 567, - "2023-01-01": 568, - "2022-01-01": 536, - "2021-01-01": 526, - "2015-01-01": 526 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.recapture_base.separate[2]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.separate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ny.tax.income.supplemental.recapture_base.separate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.separate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 1077550, - "2015-01-01": 1077550 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.recapture_base.separate[2].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.separate[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2027-01-01": 2829, - "2026-01-01": 2614, - "2023-01-01": 2399, - "2022-01-01": 1829, - "2021-01-01": 1646, - "2015-01-01": 1646 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.recapture_base.separate[3]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.separate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ny.tax.income.supplemental.recapture_base.separate[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.separate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2033-01-01": "Infinity", - "2021-01-01": 5000000, - "2015-01-01": 5000000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.recapture_base.separate[3].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.separate[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2027-01-01": 33001, - "2026-01-01": 32786, - "2023-01-01": 32571, - "2022-01-01": 32000, - "2021-01-01": 31817, - "2015-01-01": 31817 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.recapture_base.joint": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.joint", - "description": "New York recaptures this base amount for joint filers under the supplemental tax.", - "label": "New York supplemental tax recapture base joint amount" - }, - "gov.states.ny.tax.income.supplemental.recapture_base.joint[0]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ny.tax.income.supplemental.recapture_base.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.recapture_base.joint[0].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.joint[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.recapture_base.joint[1]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ny.tax.income.supplemental.recapture_base.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 161550, - "2015-01-01": 161550 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.recapture_base.joint[1].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.joint[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 333, - "2022-01-01": 430, - "2021-01-01": 474, - "2015-01-01": 474 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.recapture_base.joint[2]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ny.tax.income.supplemental.recapture_base.joint[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 323300, - "2015-01-01": 323300 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.recapture_base.joint[2].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.joint[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2027-01-01": 1141, - "2023-01-01": 1140, - "2022-01-01": 1076, - "2021-01-01": 1056, - "2015-01-01": 1056 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.recapture_base.joint[3]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.joint[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ny.tax.income.supplemental.recapture_base.joint[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.joint[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 2155350, - "2015-01-01": 2155350 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.recapture_base.joint[3].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.joint[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2027-01-01": 4534, - "2026-01-01": 4211, - "2023-01-01": 3887, - "2022-01-01": 3016, - "2021-01-01": 2736, - "2015-01-01": 2736 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.recapture_base.joint[4]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.joint[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ny.tax.income.supplemental.recapture_base.joint[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.joint[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2033-01-01": "Infinity", - "2021-01-01": 5000000, - "2015-01-01": 5000000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.recapture_base.joint[4].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.joint[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2027-01-01": 64884, - "2026-01-01": 64561, - "2023-01-01": 64237, - "2022-01-01": 63365, - "2021-01-01": 63086, - "2015-01-01": 63086 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.recapture_base.single": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.single", - "description": "New York recaptures this base amount for single filers under the supplemental tax.", - "label": "New York supplemental tax recapture base single amount" - }, - "gov.states.ny.tax.income.supplemental.recapture_base.single[0]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.single[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ny.tax.income.supplemental.recapture_base.single[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.single[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.recapture_base.single[0].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.single[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.recapture_base.single[1]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.single[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ny.tax.income.supplemental.recapture_base.single[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.single[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 215400, - "2015-01-01": 215400 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.recapture_base.single[1].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.single[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2027-01-01": 568, - "2026-01-01": 567, - "2023-01-01": 568, - "2022-01-01": 536, - "2021-01-01": 526, - "2015-01-01": 526 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.recapture_base.single[2]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.single[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ny.tax.income.supplemental.recapture_base.single[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.single[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 1077550, - "2015-01-01": 1077550 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.recapture_base.single[2].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.single[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2027-01-01": 2829, - "2026-01-01": 2614, - "2023-01-01": 2399, - "2022-01-01": 1829, - "2021-01-01": 1646, - "2015-01-01": 1646 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.recapture_base.single[3]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.single[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ny.tax.income.supplemental.recapture_base.single[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.single[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2033-01-01": "Infinity", - "2021-01-01": 5000000, - "2015-01-01": 5000000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.recapture_base.single[3].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.single[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2027-01-01": 33001, - "2026-01-01": 32786, - "2023-01-01": 32571, - "2022-01-01": 32000, - "2021-01-01": 31817, - "2015-01-01": 31817 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.recapture_base.surviving_spouse": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.surviving_spouse", - "description": "New York recaptures this base amount for surviving spouse filers under the supplemental tax.", - "label": "New York supplemental tax recapture base surviving spouse amount" - }, - "gov.states.ny.tax.income.supplemental.recapture_base.surviving_spouse[0]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.surviving_spouse[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ny.tax.income.supplemental.recapture_base.surviving_spouse[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.surviving_spouse[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.recapture_base.surviving_spouse[0].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.surviving_spouse[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.recapture_base.surviving_spouse[1]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.surviving_spouse[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ny.tax.income.supplemental.recapture_base.surviving_spouse[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.surviving_spouse[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 161550, - "2015-01-01": 161550 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.recapture_base.surviving_spouse[1].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.surviving_spouse[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 333, - "2022-01-01": 430, - "2021-01-01": 474, - "2015-01-01": 474 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.recapture_base.surviving_spouse[2]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.surviving_spouse[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ny.tax.income.supplemental.recapture_base.surviving_spouse[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.surviving_spouse[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 323300, - "2015-01-01": 323300 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.recapture_base.surviving_spouse[2].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.surviving_spouse[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2027-01-01": 1141, - "2023-01-01": 1140, - "2022-01-01": 1076, - "2021-01-01": 1056, - "2015-01-01": 1056 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.recapture_base.surviving_spouse[3]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.surviving_spouse[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ny.tax.income.supplemental.recapture_base.surviving_spouse[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.surviving_spouse[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 2155350, - "2015-01-01": 2155350 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.recapture_base.surviving_spouse[3].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.surviving_spouse[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2027-01-01": 4534, - "2026-01-01": 4211, - "2023-01-01": 3887, - "2022-01-01": 3016, - "2021-01-01": 2736, - "2015-01-01": 2736 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.recapture_base.surviving_spouse[4]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.surviving_spouse[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ny.tax.income.supplemental.recapture_base.surviving_spouse[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.surviving_spouse[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2033-01-01": "Infinity", - "2021-01-01": 5000000, - "2015-01-01": 5000000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.recapture_base.surviving_spouse[4].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.recapture_base.surviving_spouse[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2027-01-01": 64884, - "2026-01-01": 64561, - "2023-01-01": 64237, - "2022-01-01": 63365, - "2021-01-01": 63086, - "2015-01-01": 63086 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.in_effect": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.in_effect", - "description": "New York state provides a incremental benefit under the supplemental tax if this is true.", - "label": "New York supplemental tax availability", - "unit": "bool", - "period": "year", - "values": { - "2011-01-01": true - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit", - "description": null, - "label": "incremental benefit", - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.head_of_household": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.head_of_household", - "description": "New York provides this supplemental tax incremental benefit amount for head of household filers.", - "label": "New York supplemental tax incremental benefit head of household amount" - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.head_of_household[0]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.head_of_household[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.head_of_household[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.head_of_household[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.head_of_household[0].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.head_of_household[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 787, - "2022-01-01": 752, - "2021-01-01": 742, - "2015-01-01": 742 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.head_of_household[1]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.head_of_household[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.head_of_household[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.head_of_household[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 269300, - "2015-01-01": 269300 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.head_of_household[1].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.head_of_household[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2027-01-01": 2827, - "2026-01-01": 2559, - "2023-01-01": 2289, - "2022-01-01": 1616, - "2021-01-01": 1401, - "2015-01-01": 1401 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.head_of_household[2]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.head_of_household[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.head_of_household[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.head_of_household[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 1616450, - "2015-01-01": 1616450 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.head_of_household[2].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.head_of_household[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2033-01-01": 31844, - "2026-01-01": 45260, - "2022-01-01": 45261, - "2021-01-01": 45260, - "2015-01-01": 45260 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.head_of_household[3]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.head_of_household[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.head_of_household[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.head_of_household[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2033-01-01": "Infinity", - "2021-01-01": 5000000, - "2015-01-01": 5000000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.head_of_household[3].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.head_of_household[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 32500, - "2015-01-01": 32500 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.separate": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.separate", - "description": "New York provides this supplemental tax incremental benefit amount for separate filers.", - "label": "New York supplemental tax incremental benefit separate amount" - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.separate[0]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.separate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.separate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.separate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.separate[0].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.separate[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2027-01-01": 568, - "2026-01-01": 567, - "2023-01-01": 568, - "2022-01-01": 536, - "2021-01-01": 526, - "2015-01-01": 526 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.separate[1]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.separate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.separate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.separate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 215400, - "2015-01-01": 215400 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.separate[1].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.separate[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2027-01-01": 2261, - "2026-01-01": 2047, - "2023-01-01": 1831, - "2022-01-01": 1293, - "2021-01-01": 1120, - "2015-01-01": 1120 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.separate[2]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.separate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.separate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.separate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 1077550, - "2015-01-01": 1077550 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.separate[2].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.separate[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2033-01-01": 21228, - "2023-01-01": 30172, - "2021-01-01": 30171, - "2015-01-01": 30171 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.separate[3]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.separate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.separate[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.separate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2033-01-01": "Infinity", - "2021-01-01": 5000000, - "2015-01-01": 5000000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.separate[3].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.separate[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 32500, - "2015-01-01": 32500 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.joint": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.joint", - "description": "New York provides this supplemental tax incremental benefit amount for joint filers.", - "label": "New York supplemental tax incremental benefit joint amount" - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.joint[0]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.joint[0].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.joint[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 333, - "2022-01-01": 430, - "2021-01-01": 474, - "2015-01-01": 474 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.joint[1]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 161550, - "2015-01-01": 161550 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.joint[1].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.joint[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2027-01-01": 808, - "2023-01-01": 807, - "2022-01-01": 646, - "2021-01-01": 582, - "2015-01-01": 582 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.joint[2]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.joint[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 323300, - "2015-01-01": 323300 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.joint[2].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.joint[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2027-01-01": 3393, - "2026-01-01": 3071, - "2023-01-01": 2747, - "2022-01-01": 1940, - "2021-01-01": 1680, - "2015-01-01": 1680 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.joint[3]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.joint[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.joint[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.joint[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 2155350, - "2015-01-01": 2155350 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.joint[3].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.joint[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2033-01-01": 42461, - "2023-01-01": 60350, - "2022-01-01": 60349, - "2021-01-01": 60350, - "2015-01-01": 60350 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.joint[4]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.joint[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.joint[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.joint[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2033-01-01": "Infinity", - "2021-01-01": 5000000, - "2015-01-01": 5000000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.joint[4].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.joint[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 32500, - "2015-01-01": 32500 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.single": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.single", - "description": "New York provides this supplemental tax incremental benefit amount for single filers.", - "label": "New York supplemental tax incremental benefit single amount" - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.single[0]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.single[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.single[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.single[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.single[0].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.single[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2027-01-01": 568, - "2026-01-01": 567, - "2023-01-01": 568, - "2022-01-01": 536, - "2021-01-01": 526, - "2015-01-01": 526 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.single[1]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.single[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.single[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.single[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 215400, - "2015-01-01": 215400 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.single[1].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.single[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2027-01-01": 2261, - "2026-01-01": 2047, - "2023-01-01": 1831, - "2022-01-01": 1293, - "2021-01-01": 1120, - "2015-01-01": 1120 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.single[2]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.single[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.single[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.single[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 1077550, - "2015-01-01": 1077550 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.single[2].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.single[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2033-01-01": 21228, - "2023-01-01": 30172, - "2021-01-01": 30171, - "2015-01-01": 30171 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.single[3]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.single[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.single[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.single[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2033-01-01": "Infinity", - "2021-01-01": 5000000, - "2015-01-01": 5000000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.single[3].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.single[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 32500, - "2015-01-01": 32500 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.surviving_spouse": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.surviving_spouse", - "description": "New York provides this supplemental tax incremental benefit amount for surviving spouse filers.", - "label": "New York supplemental tax incremental benefit surviving spouse amount" - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.surviving_spouse[0]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.surviving_spouse[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.surviving_spouse[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.surviving_spouse[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.surviving_spouse[0].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.surviving_spouse[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 333, - "2022-01-01": 430, - "2021-01-01": 474, - "2015-01-01": 474 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.surviving_spouse[1]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.surviving_spouse[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.surviving_spouse[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.surviving_spouse[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 161550, - "2015-01-01": 161550 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.surviving_spouse[1].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.surviving_spouse[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2027-01-01": 808, - "2023-01-01": 807, - "2022-01-01": 646, - "2021-01-01": 582, - "2015-01-01": 582 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.surviving_spouse[2]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.surviving_spouse[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.surviving_spouse[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.surviving_spouse[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 323300, - "2015-01-01": 323300 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.surviving_spouse[2].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.surviving_spouse[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2027-01-01": 3393, - "2026-01-01": 3071, - "2023-01-01": 2747, - "2022-01-01": 1940, - "2021-01-01": 1680, - "2015-01-01": 1680 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.surviving_spouse[3]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.surviving_spouse[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.surviving_spouse[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.surviving_spouse[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 2155350, - "2015-01-01": 2155350 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.surviving_spouse[3].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.surviving_spouse[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2033-01-01": 42461, - "2023-01-01": 60350, - "2022-01-01": 60349, - "2021-01-01": 60350, - "2015-01-01": 60350 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.surviving_spouse[4]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.surviving_spouse[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.surviving_spouse[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.surviving_spouse[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2033-01-01": "Infinity", - "2021-01-01": 5000000, - "2015-01-01": 5000000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.incremental_benefit.surviving_spouse[4].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.incremental_benefit.surviving_spouse[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 32500, - "2015-01-01": 32500 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.supplemental.phase_in_length": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.supplemental.phase_in_length", - "description": "Each bracket of the New York supplemental tax phases in over this length.", - "label": "New York State supplemental tax phase-in length", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main", - "description": null, - "label": "main", - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.head_of_household": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.head_of_household", - "description": "New York taxes the income of head of household filers at this rate.", - "label": "New York State income tax rates for head-of-household filers" - }, - "gov.states.ny.tax.income.main.head_of_household[0]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.head_of_household[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ny.tax.income.main.head_of_household[0].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.head_of_household[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.038, - "2026-01-01": 0.039, - "2021-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.head_of_household[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.head_of_household[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.head_of_household[1]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.head_of_household[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ny.tax.income.main.head_of_household[1].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.head_of_household[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.043, - "2026-01-01": 0.044, - "2021-01-01": 0.045, - "2015-01-01": 0.045 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.head_of_household[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.head_of_household[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 12800, - "2015-01-01": 12800 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.head_of_household[2]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.head_of_household[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ny.tax.income.main.head_of_household[2].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.head_of_household[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.0505, - "2026-01-01": 0.0515, - "2021-01-01": 0.0525, - "2015-01-01": 0.0525 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.head_of_household[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.head_of_household[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 17650, - "2015-01-01": 17650 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.head_of_household[3]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.head_of_household[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ny.tax.income.main.head_of_household[3].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.head_of_household[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.053, - "2026-01-01": 0.054, - "2023-01-01": 0.055, - "2022-01-01": 0.0585, - "2021-01-01": 0.059, - "2015-01-01": 0.059 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.head_of_household[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.head_of_household[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 20900, - "2015-01-01": 20900 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.head_of_household[4]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.head_of_household[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ny.tax.income.main.head_of_household[4].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.head_of_household[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.058, - "2026-01-01": 0.059, - "2023-01-01": 0.06, - "2022-01-01": 0.0625, - "2021-01-01": 0.0597, - "2015-01-01": 0.0597 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.head_of_household[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.head_of_household[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 107650, - "2021-01-01": 32200, - "2015-01-01": 32200 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.head_of_household[5]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.head_of_household[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ny.tax.income.main.head_of_household[5].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.head_of_household[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.0685, - "2021-01-01": 0.0633, - "2015-01-01": 0.0633 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.head_of_household[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.head_of_household[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 269300, - "2021-01-01": 107650, - "2015-01-01": 107650 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.head_of_household[6]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.head_of_household[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.ny.tax.income.main.head_of_household[6].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.head_of_household[6].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2033-01-01": 0.0882, - "2022-01-01": 0.0965, - "2021-01-01": 0.0685, - "2015-01-01": 0.0685 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.head_of_household[6].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.head_of_household[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 1616450, - "2021-01-01": 269300, - "2015-01-01": 269300 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.head_of_household[7]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.head_of_household[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.ny.tax.income.main.head_of_household[7].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.head_of_household[7].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.103, - "2021-01-01": 0.0965, - "2015-01-01": 0.0965 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.head_of_household[7].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.head_of_household[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2033-01-01": "Infinity", - "2022-01-01": 5000000, - "2021-01-01": 1616450, - "2015-01-01": 1616450 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.head_of_household[8]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.head_of_household[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.ny.tax.income.main.head_of_household[8].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.head_of_household[8].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.109, - "2021-01-01": 0.103, - "2015-01-01": 0.103 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.head_of_household[8].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.head_of_household[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2033-01-01": "Infinity", - "2022-01-01": 25000000, - "2021-01-01": 5000000, - "2015-01-01": 5000000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.head_of_household[9]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.head_of_household[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.ny.tax.income.main.head_of_household[9].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.head_of_household[9].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.109, - "2015-01-01": 0.109 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.head_of_household[9].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.head_of_household[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": "Infinity", - "2021-01-01": 25000000, - "2015-01-01": 25000000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.separate": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.separate", - "description": "New York taxes the income of separate filers at this rate.", - "label": "New York State income tax rates for separate filers" - }, - "gov.states.ny.tax.income.main.separate[0]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.separate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ny.tax.income.main.separate[0].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.separate[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.038, - "2026-01-01": 0.039, - "2021-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.separate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.separate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.separate[1]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.separate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ny.tax.income.main.separate[1].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.separate[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.043, - "2026-01-01": 0.044, - "2021-01-01": 0.045, - "2015-01-01": 0.045 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.separate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.separate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 8500, - "2015-01-01": 8500 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.separate[2]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.separate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ny.tax.income.main.separate[2].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.separate[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.0505, - "2026-01-01": 0.0515, - "2021-01-01": 0.0525, - "2015-01-01": 0.0525 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.separate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.separate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 11700, - "2015-01-01": 11700 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.separate[3]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.separate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ny.tax.income.main.separate[3].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.separate[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.053, - "2026-01-01": 0.054, - "2023-01-01": 0.055, - "2022-01-01": 0.0585, - "2021-01-01": 0.059, - "2015-01-01": 0.059 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.separate[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.separate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 13900, - "2015-01-01": 13900 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.separate[4]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.separate[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ny.tax.income.main.separate[4].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.separate[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.058, - "2026-01-01": 0.059, - "2023-01-01": 0.06, - "2022-01-01": 0.0625, - "2021-01-01": 0.0597, - "2015-01-01": 0.0597 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.separate[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.separate[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 80650, - "2021-01-01": 21400, - "2015-01-01": 21400 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.separate[5]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.separate[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ny.tax.income.main.separate[5].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.separate[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.0685, - "2021-01-01": 0.0633, - "2015-01-01": 0.0633 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.separate[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.separate[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 215400, - "2021-01-01": 80650, - "2015-01-01": 80650 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.separate[6]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.separate[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.ny.tax.income.main.separate[6].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.separate[6].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2033-01-01": 0.0882, - "2022-01-01": 0.0965, - "2021-01-01": 0.0685, - "2015-01-01": 0.0685 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.separate[6].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.separate[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 1077550, - "2021-01-01": 215400, - "2015-01-01": 215400 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.separate[7]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.separate[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.ny.tax.income.main.separate[7].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.separate[7].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.103, - "2021-01-01": 0.0965, - "2015-01-01": 0.0965 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.separate[7].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.separate[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2033-01-01": "Infinity", - "2022-01-01": 5000000, - "2021-01-01": 1077550, - "2015-01-01": 1077550 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.separate[8]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.separate[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.ny.tax.income.main.separate[8].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.separate[8].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.109, - "2021-01-01": 0.103, - "2015-01-01": 0.103 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.separate[8].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.separate[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2033-01-01": "Infinity", - "2022-01-01": 25000000, - "2021-01-01": 5000000, - "2015-01-01": 5000000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.separate[9]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.separate[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.ny.tax.income.main.separate[9].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.separate[9].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.109, - "2015-01-01": 0.109 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.separate[9].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.separate[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": "Infinity", - "2021-01-01": 25000000, - "2015-01-01": 25000000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.joint": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.joint", - "description": "New York taxes the income of joint filers at this rate.", - "label": "New York State income tax rates for joint filers" - }, - "gov.states.ny.tax.income.main.joint[0]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ny.tax.income.main.joint[0].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.joint[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.038, - "2026-01-01": 0.039, - "2021-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.joint[1]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ny.tax.income.main.joint[1].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.joint[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.043, - "2026-01-01": 0.044, - "2021-01-01": 0.045, - "2015-01-01": 0.045 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 17150, - "2015-01-01": 17150 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.joint[2]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ny.tax.income.main.joint[2].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.joint[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.0505, - "2026-01-01": 0.0515, - "2021-01-01": 0.0525, - "2015-01-01": 0.0525 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.joint[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 23600, - "2015-01-01": 23600 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.joint[3]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.joint[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ny.tax.income.main.joint[3].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.joint[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.053, - "2026-01-01": 0.054, - "2023-01-01": 0.055, - "2022-01-01": 0.0585, - "2021-01-01": 0.059, - "2015-01-01": 0.059 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.joint[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.joint[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 27900, - "2015-01-01": 27900 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.joint[4]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.joint[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ny.tax.income.main.joint[4].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.joint[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.058, - "2026-01-01": 0.059, - "2023-01-01": 0.06, - "2022-01-01": 0.0625, - "2021-01-01": 0.0597, - "2015-01-01": 0.0597 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.joint[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.joint[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 161550, - "2021-01-01": 43000, - "2015-01-01": 43000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.joint[5]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.joint[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ny.tax.income.main.joint[5].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.joint[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.0685, - "2021-01-01": 0.0633, - "2015-01-01": 0.0633 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.joint[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.joint[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 323200, - "2021-01-01": 161550, - "2015-01-01": 161550 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.joint[6]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.joint[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.ny.tax.income.main.joint[6].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.joint[6].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2033-01-01": 0.0882, - "2022-01-01": 0.0965, - "2021-01-01": 0.0685, - "2015-01-01": 0.0685 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.joint[6].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.joint[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 2155350, - "2021-01-01": 323200, - "2015-01-01": 323200 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.joint[7]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.joint[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.ny.tax.income.main.joint[7].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.joint[7].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.103, - "2021-01-01": 0.0965, - "2015-01-01": 0.0965 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.joint[7].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.joint[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2033-01-01": "Infinity", - "2022-01-01": 5000000, - "2021-01-01": 2155350, - "2015-01-01": 2155350 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.joint[8]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.joint[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.ny.tax.income.main.joint[8].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.joint[8].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.109, - "2021-01-01": 0.103, - "2015-01-01": 0.103 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.joint[8].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.joint[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2033-01-01": "Infinity", - "2022-01-01": 25000000, - "2021-01-01": 5000000, - "2015-01-01": 5000000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.joint[9]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.joint[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.ny.tax.income.main.joint[9].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.joint[9].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.109, - "2015-01-01": 0.109 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.joint[9].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.joint[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": "Infinity", - "2021-01-01": 25000000, - "2015-01-01": 25000000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.single": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.single", - "description": "New York taxes the income of single filers at this rate.", - "label": "New York State income tax rates for single filers" - }, - "gov.states.ny.tax.income.main.single[0]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.single[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ny.tax.income.main.single[0].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.single[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.038, - "2026-01-01": 0.039, - "2021-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.single[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.single[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.single[1]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.single[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ny.tax.income.main.single[1].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.single[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.043, - "2026-01-01": 0.044, - "2021-01-01": 0.045, - "2015-01-01": 0.045 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.single[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.single[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 8500, - "2015-01-01": 8500 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.single[2]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.single[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ny.tax.income.main.single[2].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.single[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.0505, - "2026-01-01": 0.0515, - "2021-01-01": 0.0525, - "2015-01-01": 0.0525 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.single[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.single[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 11700, - "2015-01-01": 11700 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.single[3]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.single[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ny.tax.income.main.single[3].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.single[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.053, - "2026-01-01": 0.054, - "2023-01-01": 0.055, - "2022-01-01": 0.0585, - "2021-01-01": 0.059, - "2015-01-01": 0.059 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.single[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.single[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 13900, - "2015-01-01": 13900 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.single[4]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.single[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ny.tax.income.main.single[4].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.single[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.058, - "2026-01-01": 0.059, - "2023-01-01": 0.06, - "2022-01-01": 0.0625, - "2021-01-01": 0.0597, - "2015-01-01": 0.0597 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.single[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.single[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 80650, - "2021-01-01": 21400, - "2015-01-01": 21400 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.single[5]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.single[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ny.tax.income.main.single[5].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.single[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.0685, - "2021-01-01": 0.0633, - "2015-01-01": 0.0633 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.single[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.single[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 215400, - "2021-01-01": 80650, - "2015-01-01": 80650 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.single[6]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.single[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.ny.tax.income.main.single[6].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.single[6].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2033-01-01": 0.0882, - "2022-01-01": 0.0965, - "2021-01-01": 0.0685, - "2015-01-01": 0.0685 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.single[6].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.single[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 1077550, - "2021-01-01": 215400, - "2015-01-01": 215400 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.single[7]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.single[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.ny.tax.income.main.single[7].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.single[7].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.103, - "2021-01-01": 0.0965, - "2015-01-01": 0.0965 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.single[7].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.single[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2033-01-01": "Infinity", - "2022-01-01": 5000000, - "2021-01-01": 1077550, - "2015-01-01": 1077550 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.single[8]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.single[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.ny.tax.income.main.single[8].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.single[8].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.109, - "2021-01-01": 0.103, - "2015-01-01": 0.103 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.single[8].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.single[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2033-01-01": "Infinity", - "2022-01-01": 25000000, - "2021-01-01": 5000000, - "2015-01-01": 5000000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.single[9]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.single[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.ny.tax.income.main.single[9].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.single[9].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.109, - "2015-01-01": 0.109 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.single[9].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.single[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": "Infinity", - "2021-01-01": 25000000, - "2015-01-01": 25000000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.surviving_spouse": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.surviving_spouse", - "description": "New York taxes the income of surviving spouse filers at this rate.", - "label": "New York State income tax rates for surviving spouse filers" - }, - "gov.states.ny.tax.income.main.surviving_spouse[0]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.surviving_spouse[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ny.tax.income.main.surviving_spouse[0].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.surviving_spouse[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.038, - "2026-01-01": 0.039, - "2021-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.surviving_spouse[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.surviving_spouse[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.surviving_spouse[1]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.surviving_spouse[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ny.tax.income.main.surviving_spouse[1].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.surviving_spouse[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.043, - "2026-01-01": 0.044, - "2021-01-01": 0.045, - "2015-01-01": 0.045 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.surviving_spouse[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.surviving_spouse[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 17150, - "2015-01-01": 17150 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.surviving_spouse[2]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.surviving_spouse[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ny.tax.income.main.surviving_spouse[2].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.surviving_spouse[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.0505, - "2026-01-01": 0.0515, - "2021-01-01": 0.0525, - "2015-01-01": 0.0525 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.surviving_spouse[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.surviving_spouse[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 23600, - "2015-01-01": 23600 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.surviving_spouse[3]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.surviving_spouse[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ny.tax.income.main.surviving_spouse[3].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.surviving_spouse[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.053, - "2026-01-01": 0.054, - "2023-01-01": 0.055, - "2022-01-01": 0.0585, - "2021-01-01": 0.059, - "2015-01-01": 0.059 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.surviving_spouse[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.surviving_spouse[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 27900, - "2015-01-01": 27900 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.surviving_spouse[4]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.surviving_spouse[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ny.tax.income.main.surviving_spouse[4].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.surviving_spouse[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.058, - "2026-01-01": 0.059, - "2023-01-01": 0.06, - "2022-01-01": 0.0625, - "2021-01-01": 0.0597, - "2015-01-01": 0.0597 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.surviving_spouse[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.surviving_spouse[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 161550, - "2021-01-01": 43000, - "2015-01-01": 43000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.surviving_spouse[5]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.surviving_spouse[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ny.tax.income.main.surviving_spouse[5].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.surviving_spouse[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.0685, - "2021-01-01": 0.0633, - "2015-01-01": 0.0633 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.surviving_spouse[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.surviving_spouse[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 323200, - "2021-01-01": 161550, - "2015-01-01": 161550 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.surviving_spouse[6]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.surviving_spouse[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.ny.tax.income.main.surviving_spouse[6].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.surviving_spouse[6].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2033-01-01": 0.0882, - "2022-01-01": 0.0965, - "2021-01-01": 0.0685, - "2015-01-01": 0.0685 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.surviving_spouse[6].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.surviving_spouse[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 2155350, - "2021-01-01": 323200, - "2015-01-01": 323200 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.surviving_spouse[7]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.surviving_spouse[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.ny.tax.income.main.surviving_spouse[7].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.surviving_spouse[7].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.103, - "2021-01-01": 0.0965, - "2015-01-01": 0.0965 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.surviving_spouse[7].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.surviving_spouse[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2033-01-01": "Infinity", - "2022-01-01": 5000000, - "2021-01-01": 2155350, - "2015-01-01": 2155350 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.surviving_spouse[8]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.surviving_spouse[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.ny.tax.income.main.surviving_spouse[8].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.surviving_spouse[8].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.109, - "2021-01-01": 0.103, - "2015-01-01": 0.103 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.surviving_spouse[8].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.surviving_spouse[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2033-01-01": "Infinity", - "2022-01-01": 25000000, - "2021-01-01": 5000000, - "2015-01-01": 5000000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.surviving_spouse[9]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.main.surviving_spouse[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.ny.tax.income.main.surviving_spouse[9].rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.surviving_spouse[9].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.109, - "2015-01-01": 0.109 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.main.surviving_spouse[9].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.main.surviving_spouse[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": "Infinity", - "2021-01-01": 25000000, - "2015-01-01": 25000000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.deductions": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.deductions", - "description": null, - "label": "deductions", - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.deductions.itemized": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.deductions.itemized", - "description": null, - "label": "itemized", - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.deductions.itemized.reduction": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.deductions.itemized.reduction", - "description": null, - "label": "reduction", - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.deductions.itemized.reduction.incremental": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.deductions.itemized.reduction.incremental", - "description": null, - "label": "incremental", - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.deductions.itemized.reduction.incremental.higher": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.deductions.itemized.reduction.incremental.higher", - "description": null, - "label": "higher", - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.deductions.itemized.reduction.incremental.higher.income_threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.deductions.itemized.reduction.incremental.higher.income_threshold", - "description": "New York reduces the itemized deductions by an additional amount for filers with adjusted gross income exceeding this income threshold.", - "label": "New York itemized deduction higher incremental reduction higher income threshold", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 475000, - "2015-01-01": 475000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.deductions.itemized.reduction.incremental.higher.numerator": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.deductions.itemized.reduction.incremental.higher.numerator", - "description": "New York reduces the itemized deductions by an additional amount including a fraction with the lesser of adjusted gross income exceeding the higher income threshold or this value as the numerator.", - "label": "New York itemized deduction incremental reduction higher numerator", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.deductions.itemized.reduction.incremental.higher.rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.deductions.itemized.reduction.incremental.higher.rate", - "description": "New York reduces the itemized deductions by an additional amount of this rate multiplied by the computed fraction.", - "label": "New York itemized deduction incremental reduction higher rate", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.deductions.itemized.reduction.incremental.higher.denominator": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.deductions.itemized.reduction.incremental.higher.denominator", - "description": "New York reduces the itemized deductions by an additional amount with a rate with a fraction with this denominator.", - "label": "New York itemized deduction incremental reduction higher denominator", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.deductions.itemized.reduction.incremental.lower": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.deductions.itemized.reduction.incremental.lower", - "description": null, - "label": "lower", - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.deductions.itemized.reduction.incremental.lower.income_threshold": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.deductions.itemized.reduction.incremental.lower.income_threshold", - "description": "New York reduces the itemized deductions by a lower amount for filers with adjusted gross income exceeding this income threshold, based on filing status.", - "label": "New York itemized deduction higher incremental reduction lower income threshold", - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.deductions.itemized.reduction.incremental.lower.income_threshold.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.deductions.itemized.reduction.incremental.lower.income_threshold.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.deductions.itemized.reduction.incremental.lower.income_threshold.JOINT": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.deductions.itemized.reduction.incremental.lower.income_threshold.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 200000, - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.deductions.itemized.reduction.incremental.lower.income_threshold.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.deductions.itemized.reduction.incremental.lower.income_threshold.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 200000, - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.deductions.itemized.reduction.incremental.lower.income_threshold.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.deductions.itemized.reduction.incremental.lower.income_threshold.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.deductions.itemized.reduction.incremental.lower.income_threshold.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.deductions.itemized.reduction.incremental.lower.income_threshold.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.deductions.itemized.reduction.incremental.lower.numerator": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.deductions.itemized.reduction.incremental.lower.numerator", - "description": "New York reduces the itemized deductions by an amount including a fraction with the lesser of adjusted gross income exceeding the lower income threshold or this value as the numerator.", - "label": "New York itemized deduction incremental reduction lower numerator", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.deductions.itemized.reduction.incremental.lower.rate": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.deductions.itemized.reduction.incremental.lower.rate", - "description": "New York reduces the itemized deductions by a lower amount of this rate multiplied by the computed fraction.", - "label": "New York itemized deduction incremental reduction lower rate", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.deductions.itemized.reduction.incremental.lower.denominator": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.deductions.itemized.reduction.incremental.lower.denominator", - "description": "New York reduces the itemized deductions by a higher rate with a fraction with this denominator.", - "label": "New York itemized deduction incremental reduction lower denominator", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.deductions.itemized.reduction.charitable_deduction_rate": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.deductions.itemized.reduction.charitable_deduction_rate", - "description": "New York reduces the itemized deductions by this rate of the federal charitable deduction for filers with adjusted gross income exceeding the first threshold.", - "label": "New York itemized deduction reduction based on charitable deduction rate" - }, - "gov.states.ny.tax.income.deductions.itemized.reduction.charitable_deduction_rate[0]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.deductions.itemized.reduction.charitable_deduction_rate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ny.tax.income.deductions.itemized.reduction.charitable_deduction_rate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.deductions.itemized.reduction.charitable_deduction_rate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.deductions.itemized.reduction.charitable_deduction_rate[0].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.deductions.itemized.reduction.charitable_deduction_rate[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.deductions.itemized.reduction.charitable_deduction_rate[1]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.deductions.itemized.reduction.charitable_deduction_rate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ny.tax.income.deductions.itemized.reduction.charitable_deduction_rate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.deductions.itemized.reduction.charitable_deduction_rate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 1000000, - "2015-01-01": 1000000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.deductions.itemized.reduction.charitable_deduction_rate[1].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.deductions.itemized.reduction.charitable_deduction_rate[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.deductions.itemized.reduction.charitable_deduction_rate[2]": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.deductions.itemized.reduction.charitable_deduction_rate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ny.tax.income.deductions.itemized.reduction.charitable_deduction_rate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.deductions.itemized.reduction.charitable_deduction_rate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 10000000, - "2015-01-01": 10000000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.deductions.itemized.reduction.charitable_deduction_rate[2].amount": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.deductions.itemized.reduction.charitable_deduction_rate[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.deductions.itemized.college_tuition": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.deductions.itemized.college_tuition", - "description": null, - "label": "college tuition", - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.deductions.itemized.college_tuition.applicable_percentage": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.deductions.itemized.college_tuition.applicable_percentage", - "description": "New York provides an itemized deduction for this fraction of allowable college tuition expenses.", - "label": "New York college tuition deduction applicable percentage", - "unit": "/1", - "period": "year", - "values": { - "2004-01-01": 1, - "2003-01-01": 0.75, - "2002-01-01": 0.5, - "2001-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.deductions.itemized.phase_out": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.deductions.itemized.phase_out", - "description": null, - "label": "Phase-out", - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.deductions.itemized.phase_out.start": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.deductions.itemized.phase_out.start", - "description": "New York phases out itemized deductions for filers with federal adjusted gross income exceeding this threshold.", - "label": "New York itemized deduction AGI phase out threshold", - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.deductions.itemized.phase_out.start.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.deductions.itemized.phase_out.start.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2023-01-01": 313200, - "2022-01-01": 290850, - "2021-01-01": 282400, - "2015-01-01": 282400 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.deductions.itemized.phase_out.start.JOINT": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.deductions.itemized.phase_out.start.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2023-01-01": 375850, - "2022-01-01": 349000, - "2021-01-01": 338850, - "2015-01-01": 338850 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.deductions.itemized.phase_out.start.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.deductions.itemized.phase_out.start.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2023-01-01": 375850, - "2022-01-01": 349000, - "2021-01-01": 338850, - "2015-01-01": 338850 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.deductions.itemized.phase_out.start.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.deductions.itemized.phase_out.start.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2023-01-01": 187900, - "2022-01-01": 174500, - "2021-01-01": 169400, - "2015-01-01": 169400 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.deductions.itemized.phase_out.start.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.deductions.itemized.phase_out.start.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2023-01-01": 344500, - "2022-01-01": 319950, - "2021-01-01": 310600, - "2015-01-01": 310600 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.deductions.standard": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.deductions.standard", - "description": null, - "label": "standard", - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.deductions.standard.dependent_elsewhere": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.deductions.standard.dependent_elsewhere", - "description": "New York standard deduction for filers who can be claimed as a dependent elsewhere.", - "label": "New York standard deduction for dependent filers", - "unit": "currency-USD", - "period": "year", - "values": { - "2020-01-01": 3100, - "2015-01-01": 3100 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.deductions.standard.amount": { - "type": "parameterNode", - "parameter": "gov.states.ny.tax.income.deductions.standard.amount", - "description": "New York standard deduction for state tax.", - "label": "New York standard deduction", - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.deductions.standard.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.deductions.standard.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 8000, - "2015-01-01": 8000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.deductions.standard.amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.deductions.standard.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 16050, - "2015-01-01": 16050 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.deductions.standard.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.deductions.standard.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 8000, - "2015-01-01": 8000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.deductions.standard.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.deductions.standard.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 11200, - "2015-01-01": 11200 - }, - "economy": true, - "household": true - }, - "gov.states.ny.tax.income.deductions.standard.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ny.tax.income.deductions.standard.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 16050, - "2015-01-01": 16050 - }, - "economy": true, - "household": true - }, - "gov.states.ny.otda": { - "type": "parameterNode", - "parameter": "gov.states.ny.otda", - "description": null, - "label": "Office of Temporary and Disability Assistance", - "economy": true, - "household": true - }, - "gov.states.ny.otda.tanf": { - "type": "parameterNode", - "parameter": "gov.states.ny.otda.tanf", - "description": null, - "label": "Temporary Assistance for Needy Families", - "economy": true, - "household": true - }, - "gov.states.ny.otda.tanf.income": { - "type": "parameterNode", - "parameter": "gov.states.ny.otda.tanf.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.ny.otda.tanf.income.earned": { - "type": "parameter", - "parameter": "gov.states.ny.otda.tanf.income.earned", - "description": "New York TANF counts these income sources as earned income.", - "label": "earned", - "unit": "list", - "period": null, - "values": { - "2023-03-22": ["employment_income", "self_employment_income"], - "2015-01-01": ["employment_income", "self_employment_income"] - }, - "economy": true, - "household": true - }, - "gov.states.ny.otda.tanf.income.earned_income_deduction": { - "type": "parameterNode", - "parameter": "gov.states.ny.otda.tanf.income.earned_income_deduction", - "description": null, - "label": "earned income deduction", - "economy": true, - "household": true - }, - "gov.states.ny.otda.tanf.income.earned_income_deduction.percent": { - "type": "parameter", - "parameter": "gov.states.ny.otda.tanf.income.earned_income_deduction.percent", - "description": "New York excludes this percentage of earned income for the purposes of its TANF program.", - "label": "New York TANF earned income deduction", - "unit": "/1", - "period": null, - "values": { - "2022-10-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.ny.otda.tanf.income.earned_income_deduction.flat": { - "type": "parameter", - "parameter": "gov.states.ny.otda.tanf.income.earned_income_deduction.flat", - "description": "New York excludes this amount of earned income for the purposes of its TANF program, after the percentage deduction.", - "label": "New York TANF flat earnings exclusion", - "unit": "currency-USD", - "period": "month", - "values": { - "2022-03-01": 150, - "2015-01-01": 150 - }, - "economy": true, - "household": true - }, - "gov.states.ny.otda.tanf.income.unearned": { - "type": "parameter", - "parameter": "gov.states.ny.otda.tanf.income.unearned", - "description": "New York TANF counts these income sources as unearned income.", - "label": "unearned", - "unit": "list", - "period": null, - "values": { - "2021-01-01": [ - "veterans_benefits", - "rental_income", - "alimony_income", - "dividend_income", - "interest_income", - "miscellaneous_income", - "pension_income", - "unemployment_compensation", - "gi_cash_assistance", - "social_security", - "ssi" - ], - "2015-01-01": [ - "veterans_benefits", - "rental_income", - "alimony_income", - "dividend_income", - "interest_income", - "miscellaneous_income", - "pension_income", - "unemployment_compensation", - "gi_cash_assistance", - "social_security", - "ssi" - ] - }, - "economy": true, - "household": true - }, - "gov.states.ny.otda.tanf.eligibility": { - "type": "parameterNode", - "parameter": "gov.states.ny.otda.tanf.eligibility", - "description": null, - "label": "eligibility", - "economy": true, - "household": true - }, - "gov.states.ny.otda.tanf.eligibility.resources": { - "type": "parameterNode", - "parameter": "gov.states.ny.otda.tanf.eligibility.resources", - "description": null, - "label": "resources", - "economy": true, - "household": true - }, - "gov.states.ny.otda.tanf.eligibility.resources.lower_limit": { - "type": "parameter", - "parameter": "gov.states.ny.otda.tanf.eligibility.resources.lower_limit", - "description": "New York limits its TANF eligibility to households with up to this amount of resources, if they have no elderly members.", - "label": "New York TANF resource limit for households without elderly people", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 2000, - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.otda.tanf.eligibility.resources.higher_limit": { - "type": "parameter", - "parameter": "gov.states.ny.otda.tanf.eligibility.resources.higher_limit", - "description": "New York limits TANF to households with up to this resource amount if they have elderly members.", - "label": "New York TANF resource limit for households with elderly people", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 3000, - "2015-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.ny.otda.tanf.eligibility.resources.higher_resource_limit_age_threshold": { - "type": "parameter", - "parameter": "gov.states.ny.otda.tanf.eligibility.resources.higher_resource_limit_age_threshold", - "description": "New York provide higher limit for amount of asset to households with family members over this age.", - "label": "New York TANF asset limit elderly age", - "unit": "year", - "period": null, - "values": { - "2021-10-01": 60, - "2015-01-01": 60 - }, - "economy": true, - "household": true - }, - "gov.states.ny.otda.tanf.grant_standard": { - "type": "parameterNode", - "parameter": "gov.states.ny.otda.tanf.grant_standard", - "description": null, - "label": "grant standard", - "economy": true, - "household": true - }, - "gov.states.ny.otda.tanf.grant_standard.main": { - "type": "parameterNode", - "parameter": "gov.states.ny.otda.tanf.grant_standard.main", - "description": "New York limits its TANF grant standard to households with up to this income level, by household size.", - "label": "New York TANF monthly income limit", - "economy": true, - "household": true - }, - "gov.states.ny.otda.tanf.grant_standard.main.1": { - "type": "parameter", - "parameter": "gov.states.ny.otda.tanf.grant_standard.main.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2012-10-01": 158 - }, - "economy": true, - "household": true - }, - "gov.states.ny.otda.tanf.grant_standard.main.2": { - "type": "parameter", - "parameter": "gov.states.ny.otda.tanf.grant_standard.main.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2012-10-01": 252 - }, - "economy": true, - "household": true - }, - "gov.states.ny.otda.tanf.grant_standard.main.3": { - "type": "parameter", - "parameter": "gov.states.ny.otda.tanf.grant_standard.main.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2012-10-01": 336 - }, - "economy": true, - "household": true - }, - "gov.states.ny.otda.tanf.grant_standard.main.4": { - "type": "parameter", - "parameter": "gov.states.ny.otda.tanf.grant_standard.main.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2012-10-01": 433 - }, - "economy": true, - "household": true - }, - "gov.states.ny.otda.tanf.grant_standard.main.5": { - "type": "parameter", - "parameter": "gov.states.ny.otda.tanf.grant_standard.main.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2012-10-01": 534 - }, - "economy": true, - "household": true - }, - "gov.states.ny.otda.tanf.grant_standard.main.6": { - "type": "parameter", - "parameter": "gov.states.ny.otda.tanf.grant_standard.main.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2012-10-01": 617 - }, - "economy": true, - "household": true - }, - "gov.states.ny.otda.tanf.grant_standard.additional": { - "type": "parameter", - "parameter": "gov.states.ny.otda.tanf.grant_standard.additional", - "description": "New York limits its TANF grant standard to households with up to this income level for people beyond size.", - "label": "New York TANF monthly income limit per additional person", - "unit": "currency-USD", - "period": "month", - "values": { - "2012-10-01": 85 - }, - "economy": true, - "household": true - }, - "gov.states.ny.otda.tanf.need_standard": { - "type": "parameterNode", - "parameter": "gov.states.ny.otda.tanf.need_standard", - "description": null, - "label": "need standard", - "economy": true, - "household": true - }, - "gov.states.ny.otda.tanf.need_standard.main": { - "type": "parameterNode", - "parameter": "gov.states.ny.otda.tanf.need_standard.main", - "description": "New York limits its TANF program to households with up to this income level, by household size.", - "label": "New York TANF monthly income limit", - "economy": true, - "household": true - }, - "gov.states.ny.otda.tanf.need_standard.main.1": { - "type": "parameter", - "parameter": "gov.states.ny.otda.tanf.need_standard.main.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2012-10-01": 158 - }, - "economy": true, - "household": true - }, - "gov.states.ny.otda.tanf.need_standard.main.2": { - "type": "parameter", - "parameter": "gov.states.ny.otda.tanf.need_standard.main.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2012-10-01": 252 - }, - "economy": true, - "household": true - }, - "gov.states.ny.otda.tanf.need_standard.main.3": { - "type": "parameter", - "parameter": "gov.states.ny.otda.tanf.need_standard.main.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2012-10-01": 336 - }, - "economy": true, - "household": true - }, - "gov.states.ny.otda.tanf.need_standard.main.4": { - "type": "parameter", - "parameter": "gov.states.ny.otda.tanf.need_standard.main.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2012-10-01": 433 - }, - "economy": true, - "household": true - }, - "gov.states.ny.otda.tanf.need_standard.main.5": { - "type": "parameter", - "parameter": "gov.states.ny.otda.tanf.need_standard.main.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2012-10-01": 534 - }, - "economy": true, - "household": true - }, - "gov.states.ny.otda.tanf.need_standard.main.6": { - "type": "parameter", - "parameter": "gov.states.ny.otda.tanf.need_standard.main.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2012-10-01": 617 - }, - "economy": true, - "household": true - }, - "gov.states.ny.otda.tanf.need_standard.additional": { - "type": "parameter", - "parameter": "gov.states.ny.otda.tanf.need_standard.additional", - "description": "New York limits its TANF program to households with up to this income level for people beyond size.", - "label": "New York TANF monthly income limit per additional person", - "unit": "currency-USD", - "period": "month", - "values": { - "2012-10-01": 85 - }, - "economy": true, - "household": true - }, - "gov.states.va": { - "type": "parameterNode", - "parameter": "gov.states.va", - "description": null, - "label": "Virginia", - "economy": true, - "household": true - }, - "gov.states.va.tax": { - "type": "parameterNode", - "parameter": "gov.states.va.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.states.va.tax.income": { - "type": "parameterNode", - "parameter": "gov.states.va.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.va.tax.income.credits": { - "type": "parameterNode", - "parameter": "gov.states.va.tax.income.credits", - "description": null, - "label": "credits", - "economy": true, - "household": true - }, - "gov.states.va.tax.income.credits.eitc": { - "type": "parameterNode", - "parameter": "gov.states.va.tax.income.credits.eitc", - "description": null, - "label": "eitc", - "economy": true, - "household": true - }, - "gov.states.va.tax.income.credits.eitc.match": { - "type": "parameterNode", - "parameter": "gov.states.va.tax.income.credits.eitc.match", - "description": null, - "label": "match", - "economy": true, - "household": true - }, - "gov.states.va.tax.income.credits.eitc.match.refundable": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.credits.eitc.match.refundable", - "description": "Virginia matches this percent of the federal earned income tax credit as a refundable credit.", - "label": "Virginia refundable earned income tax credit match", - "unit": "/1", - "period": "year", - "values": { - "2027-01-01": 0.15, - "2025-01-01": 0.2, - "2022-01-01": 0.15, - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.credits.eitc.match.non_refundable": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.credits.eitc.match.non_refundable", - "description": "Virginia matches this percent of the federal earned income tax credit as a non-refundable credit.", - "label": "Virginia non-refundable earned income tax credit match", - "unit": "/1", - "period": "year", - "values": { - "2006-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.credits.eitc.low_income_tax": { - "type": "parameterNode", - "parameter": "gov.states.va.tax.income.credits.eitc.low_income_tax", - "description": null, - "label": "low income tax", - "economy": true, - "household": true - }, - "gov.states.va.tax.income.credits.eitc.low_income_tax.ineligible_programs": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.credits.eitc.low_income_tax.ineligible_programs", - "description": "Virginia disqualifies filers from the low income tax credit receiving amounts from these programs.", - "label": "Virginia low income tax credit ineligible programs", - "unit": "list", - "period": "year", - "values": { - "2022-01-01": [ - "va_aged_blind_exemption", - "va_age_deduction", - "va_military_benefit_subtraction", - "va_federal_state_employees_subtraction" - ], - "2015-01-01": [ - "va_aged_blind_exemption", - "va_age_deduction", - "va_military_benefit_subtraction", - "va_federal_state_employees_subtraction" - ] - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.credits.eitc.low_income_tax.base": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.credits.eitc.low_income_tax.base", - "description": "Virginia multiplies the number of personal exemptions by this amount under the low income tax credit.", - "label": "Virginia earned income tax credit low income credit base", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 300, - "2015-01-01": 300 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.credits.refundable": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.credits.refundable", - "description": "Virginia refundable tax credits.", - "label": "Virginia refundable tax credits", - "unit": "list", - "period": "year", - "values": { - "2022-01-01": ["va_refundable_eitc"], - "2015-01-01": ["va_refundable_eitc"] - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.credits.non_refundable": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.credits.non_refundable", - "description": "Virginia non-refundable tax credits.", - "label": "Virginia non-refundable tax credits", - "unit": "list", - "period": "year", - "values": { - "2025-01-01": ["va_non_refundable_eitc"], - "2023-01-01": ["va_non_refundable_eitc", "va_rebate"], - "2021-01-01": ["va_non_refundable_eitc"], - "2015-01-01": ["va_non_refundable_eitc"] - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.exemptions": { - "type": "parameterNode", - "parameter": "gov.states.va.tax.income.exemptions", - "description": null, - "label": "exemptions", - "economy": true, - "household": true - }, - "gov.states.va.tax.income.exemptions.personal": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.exemptions.personal", - "description": "Virginia provides an income tax exemption of this value for each person in the filing unit.", - "label": "Virginia personal exemption amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 930, - "2015-01-01": 930 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.exemptions.aged_blind": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.exemptions.aged_blind", - "description": "Virginia provides an income tax exemption of this value for each aged and blind head or spouse in the filing unit.", - "label": "Virginia aged and blind exemption", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 800, - "2015-01-01": 800 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.exemptions.spouse_tax_adjustment": { - "type": "parameterNode", - "parameter": "gov.states.va.tax.income.exemptions.spouse_tax_adjustment", - "description": null, - "label": "spouse tax adjustment", - "economy": true, - "household": true - }, - "gov.states.va.tax.income.exemptions.spouse_tax_adjustment.divisor": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.exemptions.spouse_tax_adjustment.divisor", - "description": "Virginia divides the taxable income by this amount when calculating the spouse tax adjustment.", - "label": "Virginia spouse tax adjustment divisor", - "unit": "int", - "period": "year", - "values": { - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.exemptions.spouse_tax_adjustment.cap": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.exemptions.spouse_tax_adjustment.cap", - "description": "Virginia caps the spouse tax adjustment at the following amount.", - "label": "Virginia spouse tax adjustment cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 259, - "2015-01-01": 259 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.subtractions": { - "type": "parameterNode", - "parameter": "gov.states.va.tax.income.subtractions", - "description": null, - "label": "subtractions", - "economy": true, - "household": true - }, - "gov.states.va.tax.income.subtractions.national_guard_pay": { - "type": "parameterNode", - "parameter": "gov.states.va.tax.income.subtractions.national_guard_pay", - "description": null, - "label": "national guard pay", - "economy": true, - "household": true - }, - "gov.states.va.tax.income.subtractions.national_guard_pay.cap": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.subtractions.national_guard_pay.cap", - "description": "Virginia caps the national guard pay subtraction to this amount.", - "label": "Virginia national guard pay subtraction cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2023-01-01": 5500, - "2021-01-01": 3000, - "2015-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.subtractions.disability_income": { - "type": "parameterNode", - "parameter": "gov.states.va.tax.income.subtractions.disability_income", - "description": null, - "label": "disability income", - "economy": true, - "household": true - }, - "gov.states.va.tax.income.subtractions.disability_income.amount": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.subtractions.disability_income.amount", - "description": "Virginia provides a disability income subtraction up to this amount for personnel with permanent and total disability on federal return", - "label": "Virginia disability income subtraction", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.subtractions.age_deduction": { - "type": "parameterNode", - "parameter": "gov.states.va.tax.income.subtractions.age_deduction", - "description": null, - "label": "age deduction", - "economy": true, - "household": true - }, - "gov.states.va.tax.income.subtractions.age_deduction.amount": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.subtractions.age_deduction.amount", - "description": "Virginia provides an age deduction of up to this amount.", - "label": "Virginia age deduction amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 12000, - "2015-01-01": 12000 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.subtractions.age_deduction.birth_year_limit_for_full_amount": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.subtractions.age_deduction.birth_year_limit_for_full_amount", - "description": "Virginia allows a full age deduction for taxpayers born before this year.", - "label": "Birth year threshold for Virginia Age Deduction.", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 1939, - "2015-01-01": 1939 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.subtractions.age_deduction.threshold": { - "type": "parameterNode", - "parameter": "gov.states.va.tax.income.subtractions.age_deduction.threshold", - "description": "Virginia reduces its age deduction for filers of different filling statuses with adjusted federal AGI exceeding this amount.", - "label": "Adjusted federal AGI threshold for VA taxpayers eligible for an age deduction", - "economy": true, - "household": true - }, - "gov.states.va.tax.income.subtractions.age_deduction.threshold.JOINT": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.subtractions.age_deduction.threshold.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 75000, - "2015-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.subtractions.age_deduction.threshold.SINGLE": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.subtractions.age_deduction.threshold.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.subtractions.age_deduction.threshold.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.subtractions.age_deduction.threshold.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 75000, - "2015-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.subtractions.age_deduction.threshold.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.subtractions.age_deduction.threshold.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.subtractions.age_deduction.threshold.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.subtractions.age_deduction.threshold.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.subtractions.age_deduction.age_minimum": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.subtractions.age_deduction.age_minimum", - "description": "Virginia allows an age deduction for taxpayers this age and older.", - "label": "Age threshold for Virginia Age Deduction", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.subtractions.military_basic_pay": { - "type": "parameterNode", - "parameter": "gov.states.va.tax.income.subtractions.military_basic_pay", - "description": null, - "label": "military basic pay", - "economy": true, - "household": true - }, - "gov.states.va.tax.income.subtractions.military_basic_pay.threshold": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.subtractions.military_basic_pay.threshold", - "description": "Virginia provides a military basic pay subtraction up to this amount for military personnel stationed inside or outside Virginia.", - "label": "Virginia military basic pay subtraction", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 15000, - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.subtractions.subtractions": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.subtractions.subtractions", - "description": "Virginia subtracts these sources from federal adjusted gross income.", - "label": "Virginia adjusted gross income subtractions", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": [ - "us_govt_interest", - "va_military_basic_pay_subtraction", - "va_disability_income_subtraction", - "railroad_benefits", - "va_national_guard_subtraction", - "unemployment_compensation", - "va_federal_state_employees_subtraction", - "va_military_benefit_subtraction", - "investment_in_529_plan", - "va_age_deduction", - "taxable_social_security" - ], - "2015-01-01": [ - "us_govt_interest", - "va_military_basic_pay_subtraction", - "va_disability_income_subtraction", - "railroad_benefits", - "va_national_guard_subtraction", - "unemployment_compensation", - "va_federal_state_employees_subtraction", - "va_military_benefit_subtraction", - "investment_in_529_plan", - "va_age_deduction", - "taxable_social_security" - ] - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.subtractions.military_benefit": { - "type": "parameterNode", - "parameter": "gov.states.va.tax.income.subtractions.military_benefit", - "description": null, - "label": "military benefit", - "economy": true, - "household": true - }, - "gov.states.va.tax.income.subtractions.military_benefit.availability": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.subtractions.military_benefit.availability", - "description": "Virginia allows for the military benefit subtraction to be claimed regardless of age if this is true.", - "label": "Virginia military benefit subtraction age threshold availability", - "unit": "bool", - "period": "year", - "values": { - "2024-01-01": false, - "2022-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.subtractions.military_benefit.age_threshold": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.subtractions.military_benefit.age_threshold", - "description": "Virginia provides a military benefit subtraction for military personnel of this age or older.", - "label": "Virginia military benefit subtraction age threshold", - "unit": "year", - "period": "year", - "values": { - "2022-01-01": 55, - "2015-01-01": 55 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.subtractions.military_benefit.amount": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.subtractions.military_benefit.amount", - "description": "Virginia provides a military benefit subtraction up to this amount.", - "label": "Virginia military benefit subtraction amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2025-01-01": 40000, - "2024-01-01": 30000, - "2023-01-01": 20000, - "2022-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.subtractions.federal_state_employees": { - "type": "parameterNode", - "parameter": "gov.states.va.tax.income.subtractions.federal_state_employees", - "description": null, - "label": "federal state employees", - "economy": true, - "household": true - }, - "gov.states.va.tax.income.subtractions.federal_state_employees.amount": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.subtractions.federal_state_employees.amount", - "description": "Virginia provides a federal state employees subtraction up to this amount for head and spouse who is a federal or state employee.", - "label": "Virginia federal state employees subtraction", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 15000, - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.rebate": { - "type": "parameterNode", - "parameter": "gov.states.va.tax.income.rebate", - "description": null, - "label": "rebate", - "economy": true, - "household": true - }, - "gov.states.va.tax.income.rebate.amount": { - "type": "parameterNode", - "parameter": "gov.states.va.tax.income.rebate.amount", - "description": "Virginia provides an individual income tax rebate of this amount, based on filing status.", - "label": "Virginia rebate amount", - "economy": true, - "household": true - }, - "gov.states.va.tax.income.rebate.amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.rebate.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2023-01-01": 400, - "2015-01-01": 400 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.rebate.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.rebate.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2023-01-01": 200, - "2015-01-01": 200 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.rebate.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.rebate.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2023-01-01": 200, - "2015-01-01": 200 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.rebate.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.rebate.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2023-01-01": 200, - "2015-01-01": 200 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.rebate.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.rebate.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2023-01-01": 200, - "2015-01-01": 200 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.filing_requirement": { - "type": "parameterNode", - "parameter": "gov.states.va.tax.income.filing_requirement", - "description": "Virginia requires tax units to file a return if their state adjusted gross income meets or exceeds this amount.", - "label": "Virginia filing requirement", - "economy": true, - "household": true - }, - "gov.states.va.tax.income.filing_requirement.JOINT": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.filing_requirement.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 23900, - "2015-01-01": 23900 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.filing_requirement.SINGLE": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.filing_requirement.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 11950, - "2015-01-01": 11950 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.filing_requirement.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.filing_requirement.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 11950, - "2015-01-01": 11950 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.filing_requirement.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.filing_requirement.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 11950, - "2015-01-01": 11950 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.filing_requirement.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.filing_requirement.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 11950, - "2015-01-01": 11950 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.rates": { - "type": "parameterNode", - "parameter": "gov.states.va.tax.income.rates", - "description": "Virginia taxes personal taxable income at these rates.", - "label": "Virginia income tax rate" - }, - "gov.states.va.tax.income.rates[0]": { - "type": "parameterNode", - "parameter": "gov.states.va.tax.income.rates[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.va.tax.income.rates[0].rate": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.rates[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.02, - "2015-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.rates[0].threshold": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.rates[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.rates[1]": { - "type": "parameterNode", - "parameter": "gov.states.va.tax.income.rates[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.va.tax.income.rates[1].rate": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.rates[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.rates[1].threshold": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.rates[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 3000, - "2015-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.rates[2]": { - "type": "parameterNode", - "parameter": "gov.states.va.tax.income.rates[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.va.tax.income.rates[2].rate": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.rates[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.rates[2].threshold": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.rates[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.rates[3]": { - "type": "parameterNode", - "parameter": "gov.states.va.tax.income.rates[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.va.tax.income.rates[3].rate": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.rates[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0575, - "2015-01-01": 0.0575 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.rates[3].threshold": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.rates[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 17000, - "2015-01-01": 17000 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.deductions": { - "type": "parameterNode", - "parameter": "gov.states.va.tax.income.deductions", - "description": null, - "label": "deductions", - "economy": true, - "household": true - }, - "gov.states.va.tax.income.deductions.standard": { - "type": "parameterNode", - "parameter": "gov.states.va.tax.income.deductions.standard", - "description": "Virginia provides a standard deduction of this amount.", - "label": "Virginia standard deduction", - "economy": true, - "household": true - }, - "gov.states.va.tax.income.deductions.standard.JOINT": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.deductions.standard.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2027-01-01": 6000, - "2025-01-01": 17500, - "2024-01-01": 17000, - "2022-01-01": 16000, - "2021-01-01": 9000, - "2015-01-01": 9000 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.deductions.standard.SINGLE": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.deductions.standard.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2027-01-01": 3000, - "2025-01-01": 8750, - "2024-01-01": 8500, - "2022-01-01": 8000, - "2021-01-01": 4500, - "2015-01-01": 4500 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.deductions.standard.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.deductions.standard.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2027-01-01": 3000, - "2025-01-01": 8750, - "2024-01-01": 8500, - "2022-01-01": 8000, - "2021-01-01": 4500, - "2015-01-01": 4500 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.deductions.standard.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.deductions.standard.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2027-01-01": 3000, - "2025-01-01": 8750, - "2024-01-01": 8500, - "2022-01-01": 8000, - "2021-01-01": 4500, - "2015-01-01": 4500 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.deductions.standard.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.deductions.standard.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2027-01-01": 3000, - "2025-01-01": 8750, - "2024-01-01": 8500, - "2022-01-01": 8000, - "2021-01-01": 4500, - "2015-01-01": 4500 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.deductions.itemized": { - "type": "parameterNode", - "parameter": "gov.states.va.tax.income.deductions.itemized", - "description": null, - "label": "itemized", - "economy": true, - "household": true - }, - "gov.states.va.tax.income.deductions.itemized.reduction": { - "type": "parameterNode", - "parameter": "gov.states.va.tax.income.deductions.itemized.reduction", - "description": null, - "label": "reduction", - "economy": true, - "household": true - }, - "gov.states.va.tax.income.deductions.itemized.reduction.reducible": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.deductions.itemized.reduction.reducible", - "description": "Virginia reduced the applicable itemized deductions by the following deductions to compute the itemized deductions reduction amount.", - "label": "Virginia itemized deductions reduction reducible deduction sources", - "unit": "list", - "period": "year", - "values": { - "2013-01-01": [ - "medical_expense_deduction", - "investment_interest_expense", - "gambling_losses", - "casualty_loss_deduction" - ] - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.deductions.itemized.reduction.applicable": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.deductions.itemized.reduction.applicable", - "description": "Virginia sums up the following deductions to compute the itemized deductions reduction amount.", - "label": "Virginia itemized deductions reduction applicable deduction sources", - "unit": "list", - "period": "year", - "values": { - "2013-01-01": [ - "medical_expense_deduction", - "interest_deduction", - "charitable_deduction", - "real_estate_taxes", - "casualty_loss_deduction", - "va_capped_state_and_local_sales_or_income_tax" - ] - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.deductions.itemized.applicable_amount": { - "type": "parameterNode", - "parameter": "gov.states.va.tax.income.deductions.itemized.applicable_amount", - "description": "Virginia limits the value of itemized deductions if federal adjusted gross income exceeds this amount, which varies by filing status.", - "label": "Virginia itemized deduction applicable amount", - "economy": true, - "household": true - }, - "gov.states.va.tax.income.deductions.itemized.applicable_amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.deductions.itemized.applicable_amount.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 483650, - "2034-01-01": 474250, - "2033-01-01": 465000, - "2032-01-01": 456000, - "2031-01-01": 447200, - "2030-01-01": 438550, - "2029-01-01": 430000, - "2028-01-01": 421550, - "2027-01-01": 413000, - "2026-01-01": 403050, - "2025-01-01": 397000, - "2024-01-01": 388400, - "2023-01-01": 368900, - "2022-01-01": 343950, - "2021-01-01": 334150, - "2019-01-01": 326050, - "2018-01-01": "Infinity", - "2017-01-01": 313800, - "2016-01-01": 311300, - "2015-01-01": 309900, - "2014-01-01": 305050, - "2013-01-01": 300000 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.deductions.itemized.applicable_amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.deductions.itemized.applicable_amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 403000, - "2034-01-01": 395200, - "2033-01-01": 387500, - "2032-01-01": 380000, - "2031-01-01": 372650, - "2030-01-01": 365450, - "2029-01-01": 358300, - "2028-01-01": 351250, - "2027-01-01": 344150, - "2026-01-01": 335850, - "2025-01-01": 330800, - "2024-01-01": 323650, - "2023-01-01": 307400, - "2022-01-01": 286600, - "2021-01-01": 278450, - "2019-01-01": 271700, - "2018-01-01": "Infinity", - "2017-01-01": 261500, - "2016-01-01": 259400, - "2015-01-01": 258250, - "2014-01-01": 254200, - "2013-01-01": 250000 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.deductions.itemized.applicable_amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.deductions.itemized.applicable_amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 241800, - "2034-01-01": 237100, - "2033-01-01": 232500, - "2032-01-01": 228000, - "2031-01-01": 223600, - "2030-01-01": 219250, - "2029-01-01": 215000, - "2028-01-01": 210750, - "2027-01-01": 206500, - "2026-01-01": 201500, - "2025-01-01": 198500, - "2024-01-01": 194200, - "2023-01-01": 184450, - "2022-01-01": 171975, - "2021-01-01": 167075, - "2019-01-01": 163025, - "2018-01-01": "Infinity", - "2017-01-01": 156900, - "2016-01-01": 155650, - "2015-01-01": 154950, - "2014-01-01": 152525, - "2013-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.deductions.itemized.applicable_amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.deductions.itemized.applicable_amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 443300, - "2034-01-01": 434700, - "2033-01-01": 426250, - "2032-01-01": 417950, - "2031-01-01": 409900, - "2030-01-01": 401950, - "2029-01-01": 394100, - "2028-01-01": 386400, - "2027-01-01": 378550, - "2026-01-01": 369450, - "2025-01-01": 363850, - "2024-01-01": 356000, - "2023-01-01": 338150, - "2022-01-01": 315300, - "2021-01-01": 306300, - "2019-01-01": 298850, - "2018-01-01": "Infinity", - "2017-01-01": 287650, - "2016-01-01": 285350, - "2015-01-01": 284050, - "2014-01-01": 279650, - "2013-01-01": 275000 - }, - "economy": true, - "household": true - }, - "gov.states.va.tax.income.deductions.itemized.applicable_amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.va.tax.income.deductions.itemized.applicable_amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 483650, - "2034-01-01": 474250, - "2033-01-01": 465000, - "2032-01-01": 456000, - "2031-01-01": 447200, - "2030-01-01": 438550, - "2029-01-01": 430000, - "2028-01-01": 421550, - "2027-01-01": 413000, - "2026-01-01": 403050, - "2025-01-01": 397000, - "2024-01-01": 388400, - "2023-01-01": 368900, - "2022-01-01": 343950, - "2021-01-01": 334150, - "2019-01-01": 326050, - "2018-01-01": "Infinity", - "2017-01-01": 313800, - "2016-01-01": 311300, - "2015-01-01": 309900, - "2014-01-01": 305050, - "2013-01-01": 300000 - }, - "economy": true, - "household": true - }, - "gov.states.ar": { - "type": "parameterNode", - "parameter": "gov.states.ar", - "description": null, - "label": "Arkansas", - "economy": true, - "household": true - }, - "gov.states.ar.tax": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.states.ar.tax.income": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.gross_income": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.gross_income", - "description": null, - "label": "gross income", - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.gross_income.capital_gains": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.gross_income.capital_gains", - "description": null, - "label": "capital gains", - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.gross_income.capital_gains.loss_cap": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.gross_income.capital_gains.loss_cap", - "description": "Arkansas taxes the capital gain loss up to this amount, based on filing status.", - "label": "Arkansas long-term capital gains tax loss cap", - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.gross_income.capital_gains.loss_cap.JOINT": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.gross_income.capital_gains.loss_cap.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 3000, - "2015-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.gross_income.capital_gains.loss_cap.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.gross_income.capital_gains.loss_cap.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 3000, - "2015-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.gross_income.capital_gains.loss_cap.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.gross_income.capital_gains.loss_cap.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 3000, - "2015-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.gross_income.capital_gains.loss_cap.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.gross_income.capital_gains.loss_cap.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 3000, - "2015-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.gross_income.capital_gains.loss_cap.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.gross_income.capital_gains.loss_cap.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 1500, - "2015-01-01": 1500 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.gross_income.capital_gains.exempt": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.gross_income.capital_gains.exempt", - "description": null, - "label": "exempt", - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.gross_income.capital_gains.exempt.cap": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.gross_income.capital_gains.exempt.cap", - "description": "Arkansas exempts all net capital gains in excess of this threshold.", - "label": "Arkansas long-term capital gains tax exempt cap", - "unit": "/1", - "period": "year", - "values": { - "2014-01-01": 10000000 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.gross_income.capital_gains.exempt.rate": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.gross_income.capital_gains.exempt.rate", - "description": "Arkansas exempts this percentage of long-term capital gains.", - "label": "Arkansas long-term capital gains tax exempt rate", - "unit": "/1", - "period": "year", - "values": { - "2016-07-01": 0.5, - "2015-02-01": 0.45, - "2015-01-01": 0.5, - "1999-01-01": 0.3 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.gross_income.sources": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.gross_income.sources", - "description": null, - "label": "sources", - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.gross_income.sources.individual": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.gross_income.sources.individual", - "description": "Arkansas accounts for these sources when calculating the gross income.", - "label": "Arkansas gross income sources when married filing separately", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": [ - "irs_employment_income", - "self_employment_income", - "military_service_income", - "interest_income", - "dividend_income", - "alimony_income", - "ar_taxable_capital_gains_indiv", - "taxable_ira_distributions", - "military_retirement_pay", - "taxable_pension_income", - "disability_benefits", - "rental_income", - "farm_rent_income", - "unemployment_compensation" - ], - "2015-01-01": [ - "irs_employment_income", - "self_employment_income", - "military_service_income", - "interest_income", - "dividend_income", - "alimony_income", - "ar_taxable_capital_gains_indiv", - "taxable_ira_distributions", - "military_retirement_pay", - "taxable_pension_income", - "disability_benefits", - "rental_income", - "farm_rent_income", - "unemployment_compensation" - ] - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.gross_income.sources.joint": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.gross_income.sources.joint", - "description": "Arkansas accounts for these sources when calculating the gross income.", - "label": "Arkansas gross income sources when married filing jointly", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": [ - "irs_employment_income", - "self_employment_income", - "military_service_income", - "interest_income", - "dividend_income", - "alimony_income", - "ar_taxable_capital_gains_joint", - "taxable_ira_distributions", - "military_retirement_pay", - "taxable_pension_income", - "disability_benefits", - "rental_income", - "farm_rent_income", - "unemployment_compensation" - ], - "2015-01-01": [ - "irs_employment_income", - "self_employment_income", - "military_service_income", - "interest_income", - "dividend_income", - "alimony_income", - "ar_taxable_capital_gains_joint", - "taxable_ira_distributions", - "military_retirement_pay", - "taxable_pension_income", - "disability_benefits", - "rental_income", - "farm_rent_income", - "unemployment_compensation" - ] - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.credits": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.credits", - "description": null, - "label": "credits", - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.credits.refundable": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.credits.refundable", - "description": "Arkansas provides these refundable income tax credits.", - "label": "Arkansas refundable income tax credits", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": [], - "2015-01-01": [] - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.credits.inflationary_relief": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.credits.inflationary_relief", - "description": null, - "label": "inflationary relief", - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.credits.inflationary_relief.reduction": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.credits.inflationary_relief.reduction", - "description": null, - "label": "reduction", - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.credits.inflationary_relief.reduction.increment": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.credits.inflationary_relief.reduction.increment", - "description": "Arkansas reduces the inflationary relief tax credit for each of these increments of taxable income above the threshold, based on filing status.", - "label": "Arkansas income reduction increment", - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.credits.inflationary_relief.reduction.increment.JOINT": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.credits.inflationary_relief.reduction.increment.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2022-01-01": 2000, - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.credits.inflationary_relief.reduction.increment.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.credits.inflationary_relief.reduction.increment.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.credits.inflationary_relief.reduction.increment.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.credits.inflationary_relief.reduction.increment.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2022-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.credits.inflationary_relief.reduction.increment.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.credits.inflationary_relief.reduction.increment.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.credits.inflationary_relief.reduction.increment.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.credits.inflationary_relief.reduction.increment.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.credits.inflationary_relief.reduction.start": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.credits.inflationary_relief.reduction.start", - "description": "Arkansas provides inflationary relief tax credit to filers with taxable income above this amount, based on filing status.", - "label": "Arkansas inflation reduction credit reduction start", - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.credits.inflationary_relief.reduction.start.JOINT": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.credits.inflationary_relief.reduction.start.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2022-01-01": 174000, - "2015-01-01": 174000 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.credits.inflationary_relief.reduction.start.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.credits.inflationary_relief.reduction.start.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2023-01-01": 89600, - "2022-01-01": 87000, - "2015-01-01": 87000 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.credits.inflationary_relief.reduction.start.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.credits.inflationary_relief.reduction.start.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2023-01-01": 89600, - "2022-01-01": 87000, - "2015-01-01": 87000 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.credits.inflationary_relief.reduction.start.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.credits.inflationary_relief.reduction.start.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2023-01-01": 89600, - "2022-01-01": 87000, - "2015-01-01": 87000 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.credits.inflationary_relief.reduction.start.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.credits.inflationary_relief.reduction.start.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2023-01-01": 89600, - "2022-01-01": 87000, - "2015-01-01": 87000 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.credits.inflationary_relief.reduction.amount": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.credits.inflationary_relief.reduction.amount", - "description": "Arkansas reduces the inflationary relief tax credit by this amount for each increment of taxable income above the threshold, based on the filing status.", - "label": "Arkansas inflation relief credit reduction amount", - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.credits.inflationary_relief.reduction.amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.credits.inflationary_relief.reduction.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2022-01-01": 20, - "2015-01-01": 20 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.credits.inflationary_relief.reduction.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.credits.inflationary_relief.reduction.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 10, - "2015-01-01": 10 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.credits.inflationary_relief.reduction.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.credits.inflationary_relief.reduction.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2022-01-01": 10, - "2015-01-01": 10 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.credits.inflationary_relief.reduction.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.credits.inflationary_relief.reduction.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 10, - "2015-01-01": 10 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.credits.inflationary_relief.reduction.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.credits.inflationary_relief.reduction.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 10, - "2015-01-01": 10 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.credits.inflationary_relief.max_amount": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.credits.inflationary_relief.max_amount", - "description": "Arkansas allows for this maximum inflationary relief tax credit amount, based on filing status.", - "label": "Arkansas income-tax credit maximum amount", - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.credits.inflationary_relief.max_amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.credits.inflationary_relief.max_amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2023-01-01": 100, - "2022-01-01": 300, - "2015-01-01": 300 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.credits.inflationary_relief.max_amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.credits.inflationary_relief.max_amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2023-01-01": 50, - "2022-01-01": 150, - "2015-01-01": 150 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.credits.inflationary_relief.max_amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.credits.inflationary_relief.max_amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2023-01-01": 50, - "2022-01-01": 150, - "2015-01-01": 150 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.credits.inflationary_relief.max_amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.credits.inflationary_relief.max_amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2023-01-01": 50, - "2022-01-01": 150, - "2015-01-01": 150 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.credits.inflationary_relief.max_amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.credits.inflationary_relief.max_amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2023-01-01": 50, - "2022-01-01": 150, - "2015-01-01": 150 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.credits.cdcc": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.credits.cdcc", - "description": null, - "label": "Child and Dependent Care Credit", - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.credits.cdcc.match": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.credits.cdcc.match", - "description": "Arkansas matches this percentage of the federal child and dependent care credit.", - "label": "Arkansas household and dependents care credit match", - "unit": "/1", - "period": "year", - "values": { - "2013-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.credits.non_refundable": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.credits.non_refundable", - "description": "Arkansas provides these non-refundable income tax credits.", - "label": "Arkansas non-refundable income tax credits", - "unit": "list", - "period": "year", - "values": { - "2024-01-01": ["ar_personal_credits", "ar_cdcc"], - "2022-01-01": ["ar_inflation_relief_credit", "ar_personal_credits", "ar_cdcc"], - "2021-01-01": ["ar_personal_credits", "ar_cdcc"], - "2015-01-01": ["ar_personal_credits", "ar_cdcc"] - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.credits.personal": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.credits.personal", - "description": null, - "label": "personal", - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.credits.personal.amount": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.credits.personal.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.credits.personal.amount.disabled_dependent": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.credits.personal.amount.disabled_dependent", - "description": "Arkansas provides this personal tax credit amount to each disabled dependent.", - "label": "Arkansas disabled dependent personal tax credit amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.credits.personal.amount.base": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.credits.personal.amount.base", - "description": "Arkansas provides this base personal tax credit amount.", - "label": "Arkansas personal tax credit base amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 29, - "2015-01-01": 29 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.credits.personal.age_threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.credits.personal.age_threshold", - "description": "Arkansas limits its aged personal credit to filers this age or older.", - "label": "Arkansas aged personal credit age threshold", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.exemptions": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.exemptions", - "description": null, - "label": "exemptions", - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.exemptions.exemptions": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.exemptions.exemptions", - "description": "Arkansas exempts these sources from state gross income.", - "label": "Arkansas gross income exemptions", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": ["ar_capped_retirement_or_disability_benefits_exemption_person"], - "2015-01-01": ["ar_capped_retirement_or_disability_benefits_exemption_person"] - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.exemptions.retirement_or_disability_benefits": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.exemptions.retirement_or_disability_benefits", - "description": null, - "label": "retirement or disability benefits", - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.exemptions.retirement_or_disability_benefits.cap": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.exemptions.retirement_or_disability_benefits.cap", - "description": "Arkansas caps the retirement and benefit exemption at this amount.", - "label": "Arkansas retirement or disability benefits exemption cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 6000, - "2015-01-01": 6000 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates", - "description": null, - "label": "rates", - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables", - "description": null, - "label": "low income tax tables", - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse", - "description": null, - "label": "surviving spouse", - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents", - "description": "Arkansas reduces the tax liability of low-income surviving spouse filers with two or more dependents to the following amount, in lieu of a standard or itemized deduction.", - "label": "Arkansas low income tax table surviving spouse amount two or more dependents" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[0]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 0, - "2034-02-01": 0, - "2033-02-01": 0, - "2032-02-01": 0, - "2031-02-01": 0, - "2030-02-01": 0, - "2029-02-01": 0, - "2028-02-01": 0, - "2027-02-01": 0, - "2026-02-01": 0, - "2025-02-01": 0, - "2024-12-01": 0, - "2024-11-01": 0, - "2024-10-01": 0, - "2024-09-01": 0, - "2024-08-01": 0, - "2024-07-01": 0, - "2024-06-01": 0, - "2024-05-01": 0, - "2024-04-01": 0, - "2024-03-01": 0, - "2024-02-01": 0, - "2024-01-01": 0, - "2023-12-01": 0, - "2023-11-01": 0, - "2023-10-01": 0, - "2023-09-01": 0, - "2023-08-01": 0, - "2023-07-01": 0, - "2023-06-01": 0, - "2023-05-01": 0, - "2023-04-01": 0, - "2023-03-01": 0, - "2023-02-01": 0, - "2023-01-01": 0, - "2022-12-01": 0, - "2022-11-01": 0, - "2022-10-01": 0, - "2022-09-01": 0, - "2022-08-01": 0, - "2022-07-01": 0, - "2022-06-01": 0, - "2022-05-01": 0, - "2022-04-01": 0, - "2022-03-01": 0, - "2022-02-01": 0, - "2022-01-01": 0, - "2021-12-01": 0, - "2021-11-01": 0, - "2021-10-01": 0, - "2021-09-01": 0, - "2021-08-01": 0, - "2021-07-01": 0, - "2021-06-01": 0, - "2021-05-01": 0, - "2021-04-01": 0, - "2021-03-01": 0, - "2021-02-01": 0, - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[0].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 0, - "2034-02-01": 0, - "2033-02-01": 0, - "2032-02-01": 0, - "2031-02-01": 0, - "2030-02-01": 0, - "2029-02-01": 0, - "2028-02-01": 0, - "2027-02-01": 0, - "2026-02-01": 0, - "2025-02-01": 0, - "2024-12-01": 0, - "2024-11-01": 0, - "2024-10-01": 0, - "2024-09-01": 0, - "2024-08-01": 0, - "2024-07-01": 0, - "2024-06-01": 0, - "2024-05-01": 0, - "2024-04-01": 0, - "2024-03-01": 0, - "2024-02-01": 0, - "2024-01-01": 0, - "2023-12-01": 0, - "2023-11-01": 0, - "2023-10-01": 0, - "2023-09-01": 0, - "2023-08-01": 0, - "2023-07-01": 0, - "2023-06-01": 0, - "2023-05-01": 0, - "2023-04-01": 0, - "2023-03-01": 0, - "2023-02-01": 0, - "2023-01-01": 0, - "2022-12-01": 0, - "2022-11-01": 0, - "2022-10-01": 0, - "2022-09-01": 0, - "2022-08-01": 0, - "2022-07-01": 0, - "2022-06-01": 0, - "2022-05-01": 0, - "2022-04-01": 0, - "2022-03-01": 0, - "2022-02-01": 0, - "2022-01-01": 0, - "2021-12-01": 0, - "2021-11-01": 0, - "2021-10-01": 0, - "2021-09-01": 0, - "2021-08-01": 0, - "2021-07-01": 0, - "2021-06-01": 0, - "2021-05-01": 0, - "2021-04-01": 0, - "2021-03-01": 0, - "2021-02-01": 0, - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[1]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 31284.0731866272, - "2034-02-01": 30570.0399134937, - "2033-02-01": 29895.2392377852, - "2032-02-01": 29243.9781205316, - "2031-02-01": 28600.563522763, - "2030-02-01": 27972.8419639644, - "2029-02-01": 27360.8134441357, - "2028-02-01": 26764.477963277, - "2027-02-01": 26168.1424824183, - "2026-02-01": 25571.8070015596, - "2025-02-01": 24967.6250012159, - "2024-12-01": 24764.0078205806, - "2024-11-01": 24755.2197187574, - "2024-10-01": 24768.6372670767, - "2024-09-01": 24740.1544013462, - "2024-08-01": 24700.5294779471, - "2024-07-01": 24680.4423880655, - "2024-06-01": 24651.8025919453, - "2024-05-01": 24643.4852812912, - "2024-04-01": 24602.6049147745, - "2024-03-01": 24507.1912378371, - "2024-02-01": 24349.7900569683, - "2024-01-01": 24200, - "2023-01-01": 23472, - "2022-01-01": 22789, - "2021-01-01": 22125, - "2015-01-01": 22125 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[1].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 118.931187321062, - "2034-02-01": 116.216680662869, - "2033-02-01": 113.651322722159, - "2032-02-01": 111.175454011938, - "2031-02-01": 108.729415045215, - "2030-02-01": 106.343035565484, - "2029-02-01": 104.016315572747, - "2028-02-01": 101.749255067003, - "2027-02-01": 99.4821945612596, - "2026-02-01": 97.2151340555158, - "2025-02-01": 94.9182438062753, - "2024-12-01": 94.1441619625378, - "2024-11-01": 94.1107526498215, - "2024-10-01": 94.1617615112007, - "2024-09-01": 94.053479542308, - "2024-08-01": 93.90283933765, - "2024-07-01": 93.8264751942987, - "2024-06-01": 93.717596630536, - "2024-05-01": 93.6859771024295, - "2024-04-01": 93.5305641388121, - "2024-03-01": 93.1678344578931, - "2024-02-01": 92.5694498033507, - "2024-01-01": 92, - "2023-01-01": 89, - "2021-01-01": 86, - "2015-01-01": 86 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[2]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 31284.0731866272, - "2034-02-01": 30570.0399134937, - "2033-02-01": 29895.2392377852, - "2032-02-01": 29243.9781205316, - "2031-02-01": 28600.563522763, - "2030-02-01": 27972.8419639644, - "2029-02-01": 27360.8134441357, - "2028-02-01": 26764.477963277, - "2027-02-01": 26168.1424824183, - "2026-02-01": 25571.8070015596, - "2025-02-01": 24967.6250012159, - "2024-12-01": 24764.0078205806, - "2024-11-01": 24755.2197187574, - "2024-10-01": 24768.6372670767, - "2024-09-01": 24740.1544013462, - "2024-08-01": 24700.5294779471, - "2024-07-01": 24680.4423880655, - "2024-06-01": 24651.8025919453, - "2024-05-01": 24643.4852812912, - "2024-04-01": 24602.6049147745, - "2024-03-01": 24507.1912378371, - "2024-02-01": 24349.7900569683, - "2024-01-01": 24200, - "2023-01-01": 23500, - "2022-01-01": 22800, - "2021-01-01": 22200, - "2015-01-01": 22200 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[2].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 134.443950884679, - "2034-02-01": 131.375378140634, - "2033-02-01": 128.475408294614, - "2032-02-01": 125.676600187409, - "2031-02-01": 122.911512659808, - "2030-02-01": 120.213866291417, - "2029-02-01": 117.583661082236, - "2028-02-01": 115.020897032265, - "2027-02-01": 112.458132982293, - "2026-02-01": 109.895368932322, - "2025-02-01": 107.298884302746, - "2024-12-01": 106.423835261999, - "2024-11-01": 106.386068212842, - "2024-10-01": 106.443730403966, - "2024-09-01": 106.3213247, - "2024-08-01": 106.151035772996, - "2024-07-01": 106.064711089207, - "2024-06-01": 105.941630973649, - "2024-05-01": 105.905887159268, - "2024-04-01": 105.730202939527, - "2024-03-01": 105.320160691531, - "2024-02-01": 104.643725864657, - "2024-01-01": 104, - "2023-01-01": 102, - "2022-01-01": 98, - "2021-01-01": 99, - "2015-01-01": 99 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[3]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 31413.346216324, - "2034-02-01": 30696.3623924751, - "2033-02-01": 30018.7732842223, - "2032-02-01": 29364.8210053272, - "2031-02-01": 28718.7476695513, - "2030-02-01": 28088.4322200138, - "2029-02-01": 27473.8746567148, - "2028-02-01": 26875.0749796542, - "2027-02-01": 26276.2753025936, - "2026-02-01": 25677.475625533, - "2025-02-01": 25070.7970053531, - "2024-12-01": 24866.3384314094, - "2024-11-01": 24857.5140151159, - "2024-10-01": 24870.9870078498, - "2024-09-01": 24842.386444327, - "2024-08-01": 24802.5977815749, - "2024-07-01": 24782.4276871898, - "2024-06-01": 24753.6695448046, - "2024-05-01": 24745.3178650982, - "2024-04-01": 24704.2685714471, - "2024-03-01": 24608.4606231174, - "2024-02-01": 24450.4090241459, - "2024-01-01": 24300, - "2023-01-01": 23600, - "2022-01-01": 22900, - "2021-01-01": 22300, - "2015-01-01": 22300 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[3].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 149.956714448296, - "2034-02-01": 146.5340756184, - "2033-02-01": 143.29949386707, - "2032-02-01": 140.177746362879, - "2031-02-01": 137.093610274401, - "2030-02-01": 134.08469701735, - "2029-02-01": 131.151006591725, - "2028-02-01": 128.292538997526, - "2027-02-01": 125.434071403327, - "2026-02-01": 122.575603809129, - "2025-02-01": 119.679524799217, - "2024-12-01": 118.703508561461, - "2024-11-01": 118.661383775862, - "2024-10-01": 118.725699296731, - "2024-09-01": 118.589169857693, - "2024-08-01": 118.399232208341, - "2024-07-01": 118.302946984116, - "2024-06-01": 118.165665316763, - "2024-05-01": 118.125797216107, - "2024-04-01": 117.929841740241, - "2024-03-01": 117.47248692517, - "2024-02-01": 116.718001925964, - "2024-01-01": 116, - "2023-01-01": 114, - "2022-01-01": 110, - "2021-01-01": 111, - "2015-01-01": 111 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[4]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 31542.6192460208, - "2034-02-01": 30822.6848714565, - "2033-02-01": 30142.3073306595, - "2032-02-01": 29485.6638901228, - "2031-02-01": 28836.9318163396, - "2030-02-01": 28204.0224760633, - "2029-02-01": 27586.9358692938, - "2028-02-01": 26985.6719960314, - "2027-02-01": 26384.4081227689, - "2026-02-01": 25783.1442495064, - "2025-02-01": 25173.9690094904, - "2024-12-01": 24968.6690422383, - "2024-11-01": 24959.8083114744, - "2024-10-01": 24973.3367486228, - "2024-09-01": 24944.6184873078, - "2024-08-01": 24904.6660852028, - "2024-07-01": 24884.412986314, - "2024-06-01": 24855.5364976639, - "2024-05-01": 24847.1504489052, - "2024-04-01": 24805.9322281197, - "2024-03-01": 24709.7300083977, - "2024-02-01": 24551.0279913234, - "2024-01-01": 24400, - "2023-01-01": 23700, - "2022-01-01": 23000, - "2021-01-01": 22400, - "2015-01-01": 22400 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[4].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 166.762208308881, - "2034-02-01": 162.955997885979, - "2033-02-01": 159.358919903896, - "2032-02-01": 155.887321386305, - "2031-02-01": 152.457549356877, - "2030-02-01": 149.111430303777, - "2029-02-01": 145.848964227004, - "2028-02-01": 142.670151126559, - "2027-02-01": 139.491338026114, - "2026-02-01": 136.312524925669, - "2025-02-01": 133.09188533706, - "2024-12-01": 132.006487969211, - "2024-11-01": 131.959642302467, - "2024-10-01": 132.031165597227, - "2024-09-01": 131.879335445193, - "2024-08-01": 131.668111679966, - "2024-07-01": 131.561035870267, - "2024-06-01": 131.408369188469, - "2024-05-01": 131.364033111015, - "2024-04-01": 131.146117107682, - "2024-03-01": 130.637507011611, - "2024-02-01": 129.798467659046, - "2024-01-01": 129, - "2023-01-01": 127, - "2021-01-01": 123, - "2015-01-01": 123 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[5]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 31671.8922757176, - "2034-02-01": 30949.0073504379, - "2033-02-01": 30265.8413770966, - "2032-02-01": 29606.5067749184, - "2031-02-01": 28955.1159631278, - "2030-02-01": 28319.6127321127, - "2029-02-01": 27699.9970818729, - "2028-02-01": 27096.2690124085, - "2027-02-01": 26492.5409429441, - "2026-02-01": 25888.8128734797, - "2025-02-01": 25277.1410136277, - "2024-12-01": 25070.9996530671, - "2024-11-01": 25062.1026078329, - "2024-10-01": 25075.6864893959, - "2024-09-01": 25046.8505302885, - "2024-08-01": 25006.7343888307, - "2024-07-01": 24986.3982854382, - "2024-06-01": 24957.4034505232, - "2024-05-01": 24948.9830327122, - "2024-04-01": 24907.5958847923, - "2024-03-01": 24810.999393678, - "2024-02-01": 24651.646958501, - "2024-01-01": 24500, - "2023-01-01": 23800, - "2022-01-01": 23100, - "2021-01-01": 22500, - "2015-01-01": 22500 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[5].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 182.274971872497, - "2034-02-01": 178.114695363745, - "2033-02-01": 174.183005476352, - "2032-02-01": 170.388467561775, - "2031-02-01": 166.63964697147, - "2030-02-01": 162.98226102971, - "2029-02-01": 159.416309736493, - "2028-02-01": 155.941793091821, - "2027-02-01": 152.467276447148, - "2026-02-01": 148.992759802475, - "2025-02-01": 145.472525833531, - "2024-12-01": 144.286161268672, - "2024-11-01": 144.234957865487, - "2024-10-01": 144.313134489992, - "2024-09-01": 144.147180602885, - "2024-08-01": 143.916308115311, - "2024-07-01": 143.799271765175, - "2024-06-01": 143.632403531582, - "2024-05-01": 143.583943167854, - "2024-04-01": 143.345755908397, - "2024-03-01": 142.789833245249, - "2024-02-01": 141.872743720353, - "2024-01-01": 141, - "2023-01-01": 139, - "2022-01-01": 135, - "2021-01-01": 136, - "2015-01-01": 136 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[6]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[6].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 31801.1653054144, - "2034-02-01": 31075.3298294193, - "2033-02-01": 30389.3754235337, - "2032-02-01": 29727.349659714, - "2031-02-01": 29073.3001099161, - "2030-02-01": 28435.2029881621, - "2029-02-01": 27813.058294452, - "2028-02-01": 27206.8660287857, - "2027-02-01": 26600.6737631194, - "2026-02-01": 25994.4814974531, - "2025-02-01": 25380.3130177649, - "2024-12-01": 25173.330263896, - "2024-11-01": 25164.3969041914, - "2024-10-01": 25178.0362301689, - "2024-09-01": 25149.0825732693, - "2024-08-01": 25108.8026924586, - "2024-07-01": 25088.3835845625, - "2024-06-01": 25059.2704033824, - "2024-05-01": 25050.8156165192, - "2024-04-01": 25009.259541465, - "2024-03-01": 24912.2687789584, - "2024-02-01": 24752.2659256786, - "2024-01-01": 24600, - "2023-01-01": 23900, - "2022-01-01": 23200, - "2021-01-01": 22600, - "2015-01-01": 22600 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[6].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[6].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 199.080465733082, - "2034-02-01": 194.536617631324, - "2033-02-01": 190.242431513179, - "2032-02-01": 186.098042585201, - "2031-02-01": 182.003586053946, - "2030-02-01": 178.008994316137, - "2029-02-01": 174.114267371773, - "2028-02-01": 170.319405220854, - "2027-02-01": 166.524543069935, - "2026-02-01": 162.729680919016, - "2025-02-01": 158.884886371374, - "2024-12-01": 157.589140676422, - "2024-11-01": 157.533216392093, - "2024-10-01": 157.618600790488, - "2024-09-01": 157.437346190385, - "2024-08-01": 157.185187586936, - "2024-07-01": 157.057360651326, - "2024-06-01": 156.875107403288, - "2024-05-01": 156.822179062762, - "2024-04-01": 156.562031275838, - "2024-03-01": 155.954853331691, - "2024-02-01": 154.953209453435, - "2024-01-01": 154, - "2023-01-01": 151, - "2021-01-01": 148, - "2015-01-01": 148 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[7]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[7].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 31930.4383351112, - "2034-02-01": 31201.6523084006, - "2033-02-01": 30512.9094699709, - "2032-02-01": 29848.1925445095, - "2031-02-01": 29191.4842567044, - "2030-02-01": 28550.7932442116, - "2029-02-01": 27926.1195070311, - "2028-02-01": 27317.4630451629, - "2027-02-01": 26708.8065832947, - "2026-02-01": 26100.1501214265, - "2025-02-01": 25483.4850219022, - "2024-12-01": 25275.6608747248, - "2024-11-01": 25266.6912005499, - "2024-10-01": 25280.3859709419, - "2024-09-01": 25251.3146162501, - "2024-08-01": 25210.8709960865, - "2024-07-01": 25190.3688836867, - "2024-06-01": 25161.1373562417, - "2024-05-01": 25152.6482003262, - "2024-04-01": 25110.9231981376, - "2024-03-01": 25013.5381642387, - "2024-02-01": 24852.8848928561, - "2024-01-01": 24700, - "2023-01-01": 24000, - "2022-01-01": 23300, - "2021-01-01": 22700, - "2015-01-01": 22700 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[7].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[7].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 214.593229296699, - "2034-02-01": 209.695315109089, - "2033-02-01": 205.066517085634, - "2032-02-01": 200.599188760671, - "2031-02-01": 196.18568366854, - "2030-02-01": 191.87982504207, - "2029-02-01": 187.681612881261, - "2028-02-01": 183.591047186115, - "2027-02-01": 179.500481490968, - "2026-02-01": 175.409915795822, - "2025-02-01": 171.265526867845, - "2024-12-01": 169.868813975883, - "2024-11-01": 169.808531955113, - "2024-10-01": 169.900569683254, - "2024-09-01": 169.705191348077, - "2024-08-01": 169.433384022282, - "2024-07-01": 169.295596546235, - "2024-06-01": 169.099141746402, - "2024-05-01": 169.042089119601, - "2024-04-01": 168.761670076552, - "2024-03-01": 168.107179565329, - "2024-02-01": 167.027485514741, - "2024-01-01": 166, - "2023-01-01": 164, - "2022-01-01": 160, - "2021-01-01": 161, - "2015-01-01": 161 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[8]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[8].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 32059.711364808, - "2034-02-01": 31327.974787382, - "2033-02-01": 30636.443516408, - "2032-02-01": 29969.0354293051, - "2031-02-01": 29309.6684034927, - "2030-02-01": 28666.383500261, - "2029-02-01": 28039.1807196101, - "2028-02-01": 27428.0600615401, - "2027-02-01": 26816.93940347, - "2026-02-01": 26205.8187453999, - "2025-02-01": 25586.6570260394, - "2024-12-01": 25377.9914855537, - "2024-11-01": 25368.9854969084, - "2024-10-01": 25382.735711715, - "2024-09-01": 25353.5466592309, - "2024-08-01": 25312.9392997143, - "2024-07-01": 25292.3541828109, - "2024-06-01": 25263.004309101, - "2024-05-01": 25254.4807841332, - "2024-04-01": 25212.5868548102, - "2024-03-01": 25114.807549519, - "2024-02-01": 24953.5038600337, - "2024-01-01": 24800, - "2023-01-01": 24100, - "2022-01-01": 23400, - "2021-01-01": 22800, - "2015-01-01": 22800 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[8].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[8].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 230.105992860316, - "2034-02-01": 224.854012586855, - "2033-02-01": 219.89060265809, - "2032-02-01": 215.100334936142, - "2031-02-01": 210.367781283133, - "2030-02-01": 205.750655768002, - "2029-02-01": 201.24895839075, - "2028-02-01": 196.862689151376, - "2027-02-01": 192.476419912002, - "2026-02-01": 188.090150672628, - "2025-02-01": 183.646167364315, - "2024-12-01": 182.148487275345, - "2024-11-01": 182.083847518133, - "2024-10-01": 182.182538576019, - "2024-09-01": 181.97303650577, - "2024-08-01": 181.681580457627, - "2024-07-01": 181.533832441143, - "2024-06-01": 181.323176089515, - "2024-05-01": 181.26199917644, - "2024-04-01": 180.961308877267, - "2024-03-01": 180.259505798967, - "2024-02-01": 179.101761576048, - "2024-01-01": 178, - "2023-01-01": 176, - "2022-01-01": 172, - "2021-01-01": 173, - "2015-01-01": 173 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[9]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[9].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 32188.9843945048, - "2034-02-01": 31454.2972663634, - "2033-02-01": 30759.9775628451, - "2032-02-01": 30089.8783141007, - "2031-02-01": 29427.852550281, - "2030-02-01": 28781.9737563105, - "2029-02-01": 28152.2419321892, - "2028-02-01": 27538.6570779172, - "2027-02-01": 26925.0722236453, - "2026-02-01": 26311.4873693733, - "2025-02-01": 25689.8290301767, - "2024-12-01": 25480.3220963825, - "2024-11-01": 25471.2797932669, - "2024-10-01": 25485.085452488, - "2024-09-01": 25455.7787022116, - "2024-08-01": 25415.0076033422, - "2024-07-01": 25394.3394819352, - "2024-06-01": 25364.8712619603, - "2024-05-01": 25356.3133679402, - "2024-04-01": 25314.2505114828, - "2024-03-01": 25216.0769347993, - "2024-02-01": 25054.1228272112, - "2024-01-01": 24900, - "2023-01-01": 24200, - "2022-01-01": 23500, - "2021-01-01": 22900, - "2015-01-01": 22900 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[9].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[9].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 246.911486720901, - "2034-02-01": 241.275934854434, - "2033-02-01": 235.950028694916, - "2032-02-01": 230.809909959568, - "2031-02-01": 225.731720365609, - "2030-02-01": 220.77738905443, - "2029-02-01": 215.94691602603, - "2028-02-01": 211.240301280409, - "2027-02-01": 206.533686534789, - "2026-02-01": 201.827071789169, - "2025-02-01": 197.058527902158, - "2024-12-01": 195.451466683095, - "2024-11-01": 195.382106044738, - "2024-10-01": 195.488004876515, - "2024-09-01": 195.26320209327, - "2024-08-01": 194.950459929252, - "2024-07-01": 194.791921327294, - "2024-06-01": 194.565879961221, - "2024-05-01": 194.500235071348, - "2024-04-01": 194.177584244708, - "2024-03-01": 193.424525885408, - "2024-02-01": 192.18222730913, - "2024-01-01": 191, - "2023-01-01": 189, - "2022-01-01": 185, - "2021-01-01": 185, - "2015-01-01": 185 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[10]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[10]", - "description": null, - "label": "bracket 11" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[10].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[10].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 32318.2574242017, - "2034-02-01": 31580.6197453448, - "2033-02-01": 30883.5116092822, - "2032-02-01": 30210.7211988963, - "2031-02-01": 29546.0366970692, - "2030-02-01": 28897.5640123599, - "2029-02-01": 28265.3031447683, - "2028-02-01": 27649.2540942944, - "2027-02-01": 27033.2050438205, - "2026-02-01": 26417.1559933467, - "2025-02-01": 25793.0010343139, - "2024-12-01": 25582.6527072113, - "2024-11-01": 25573.5740896254, - "2024-10-01": 25587.4351932611, - "2024-09-01": 25558.0107451924, - "2024-08-01": 25517.0759069701, - "2024-07-01": 25496.3247810594, - "2024-06-01": 25466.7382148196, - "2024-05-01": 25458.1459517472, - "2024-04-01": 25415.9141681555, - "2024-03-01": 25317.3463200796, - "2024-02-01": 25154.7417943888, - "2024-01-01": 25000, - "2023-01-01": 24300, - "2022-01-01": 23600, - "2021-01-01": 23000, - "2015-01-01": 23000 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[10].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[10].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 262.424250284517, - "2034-02-01": 256.4346323322, - "2033-02-01": 250.774114267372, - "2032-02-01": 245.311056135038, - "2031-02-01": 239.913817980202, - "2030-02-01": 234.648219780362, - "2029-02-01": 229.514261535518, - "2028-02-01": 224.511943245671, - "2027-02-01": 219.509624955823, - "2026-02-01": 214.507306665975, - "2025-02-01": 209.439168398629, - "2024-12-01": 207.731139982556, - "2024-11-01": 207.657421607758, - "2024-10-01": 207.76997376928, - "2024-09-01": 207.531047250962, - "2024-08-01": 207.198656364597, - "2024-07-01": 207.030157222202, - "2024-06-01": 206.789914304335, - "2024-05-01": 206.720145128187, - "2024-04-01": 206.377223045422, - "2024-03-01": 205.576852119047, - "2024-02-01": 204.256503370437, - "2024-01-01": 203, - "2023-01-01": 201, - "2022-01-01": 197, - "2021-01-01": 198, - "2015-01-01": 198 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[11]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[11]", - "description": null, - "label": "bracket 12" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[11].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[11].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 32447.5304538985, - "2034-02-01": 31706.9422243262, - "2033-02-01": 31007.0456557194, - "2032-02-01": 30331.5640836919, - "2031-02-01": 29664.2208438575, - "2030-02-01": 29013.1542684093, - "2029-02-01": 28378.3643573474, - "2028-02-01": 27759.8511106716, - "2027-02-01": 27141.3378639958, - "2026-02-01": 26522.8246173201, - "2025-02-01": 25896.1730384512, - "2024-12-01": 25684.9833180402, - "2024-11-01": 25675.8683859839, - "2024-10-01": 25689.7849340341, - "2024-09-01": 25660.2427881732, - "2024-08-01": 25619.144210598, - "2024-07-01": 25598.3100801837, - "2024-06-01": 25568.6051676788, - "2024-05-01": 25559.9785355541, - "2024-04-01": 25517.5778248281, - "2024-03-01": 25418.61570536, - "2024-02-01": 25255.3607615663, - "2024-01-01": 25100, - "2023-01-01": 24400, - "2022-01-01": 23700, - "2021-01-01": 23100, - "2015-01-01": 23100 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[11].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[11].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 279.229744145102, - "2034-02-01": 272.856554599779, - "2033-02-01": 266.833540304199, - "2032-02-01": 261.020631158464, - "2031-02-01": 255.277757062678, - "2030-02-01": 249.67495306679, - "2029-02-01": 244.212219170798, - "2028-02-01": 238.889555374704, - "2027-02-01": 233.56689157861, - "2026-02-01": 228.244227782515, - "2025-02-01": 222.851528936472, - "2024-12-01": 221.034119390306, - "2024-11-01": 220.955680134364, - "2024-10-01": 221.075440069776, - "2024-09-01": 220.821212838462, - "2024-08-01": 220.467535836222, - "2024-07-01": 220.288246108353, - "2024-06-01": 220.032618176041, - "2024-05-01": 219.958381023095, - "2024-04-01": 219.593498412863, - "2024-03-01": 218.741872205488, - "2024-02-01": 217.336969103519, - "2024-01-01": 216, - "2023-01-01": 213, - "2021-01-01": 210, - "2015-01-01": 210 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[12]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[12]", - "description": null, - "label": "bracket 13" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[12].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[12].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 32576.8034835953, - "2034-02-01": 31833.2647033075, - "2033-02-01": 31130.5797021565, - "2032-02-01": 30452.4069684875, - "2031-02-01": 29782.4049906458, - "2030-02-01": 29128.7445244588, - "2029-02-01": 28491.4255699264, - "2028-02-01": 27870.4481270488, - "2027-02-01": 27249.4706841711, - "2026-02-01": 26628.4932412934, - "2025-02-01": 25999.3450425884, - "2024-12-01": 25787.313928869, - "2024-11-01": 25778.1626823424, - "2024-10-01": 25792.1346748072, - "2024-09-01": 25762.4748311539, - "2024-08-01": 25721.2125142259, - "2024-07-01": 25700.2953793079, - "2024-06-01": 25670.4721205381, - "2024-05-01": 25661.8111193611, - "2024-04-01": 25619.2414815007, - "2024-03-01": 25519.8850906403, - "2024-02-01": 25355.9797287439, - "2024-01-01": 25200, - "2023-01-01": 24500, - "2022-01-01": 23800, - "2021-01-01": 23200, - "2015-01-01": 23200 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[12].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[12].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 294.742507708719, - "2034-02-01": 288.015252077544, - "2033-02-01": 281.657625876654, - "2032-02-01": 275.521777333934, - "2031-02-01": 269.459854677271, - "2030-02-01": 263.545783792722, - "2029-02-01": 257.779564680287, - "2028-02-01": 252.161197339965, - "2027-02-01": 246.542829999643, - "2026-02-01": 240.924462659322, - "2025-02-01": 235.232169432943, - "2024-12-01": 233.313792689767, - "2024-11-01": 233.230995697384, - "2024-10-01": 233.357408962541, - "2024-09-01": 233.089057996155, - "2024-08-01": 232.715732271567, - "2024-07-01": 232.526482003262, - "2024-06-01": 232.256652519154, - "2024-05-01": 232.178291079934, - "2024-04-01": 231.793137213578, - "2024-03-01": 230.894198439126, - "2024-02-01": 229.411245164826, - "2024-01-01": 228, - "2023-01-01": 226, - "2022-01-01": 222, - "2021-01-01": 223, - "2015-01-01": 223 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[13]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[13]", - "description": null, - "label": "bracket 14" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[13].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[13].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 32706.0765132921, - "2034-02-01": 31959.5871822889, - "2033-02-01": 31254.1137485936, - "2032-02-01": 30573.2498532831, - "2031-02-01": 29900.5891374341, - "2030-02-01": 29244.3347805082, - "2029-02-01": 28604.4867825055, - "2028-02-01": 27981.045143426, - "2027-02-01": 27357.6035043464, - "2026-02-01": 26734.1618652668, - "2025-02-01": 26102.5170467257, - "2024-12-01": 25889.6445396979, - "2024-11-01": 25880.4569787009, - "2024-10-01": 25894.4844155802, - "2024-09-01": 25864.7068741347, - "2024-08-01": 25823.2808178538, - "2024-07-01": 25802.2806784321, - "2024-06-01": 25772.3390733974, - "2024-05-01": 25763.6437031681, - "2024-04-01": 25720.9051381733, - "2024-03-01": 25621.1544759206, - "2024-02-01": 25456.5986959214, - "2024-01-01": 25300, - "2023-01-01": 24600, - "2022-01-01": 23900, - "2021-01-01": 23300, - "2015-01-01": 23300 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[13].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[13].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 310.255271272336, - "2034-02-01": 303.17394955531, - "2033-02-01": 296.481711449109, - "2032-02-01": 290.022923509405, - "2031-02-01": 283.641952291865, - "2030-02-01": 277.416614518655, - "2029-02-01": 271.346910189776, - "2028-02-01": 265.432839305226, - "2027-02-01": 259.518768420677, - "2026-02-01": 253.604697536128, - "2025-02-01": 247.612809929414, - "2024-12-01": 245.593465989229, - "2024-11-01": 245.506311260404, - "2024-10-01": 245.639377855306, - "2024-09-01": 245.356903153847, - "2024-08-01": 244.963928706913, - "2024-07-01": 244.76471789817, - "2024-06-01": 244.480686862268, - "2024-05-01": 244.398201136773, - "2024-04-01": 243.992776014292, - "2024-03-01": 243.046524672765, - "2024-02-01": 241.485521226132, - "2024-01-01": 240, - "2023-01-01": 238, - "2022-01-01": 234, - "2021-01-01": 235, - "2015-01-01": 235 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[14]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[14]", - "description": null, - "label": "bracket 15" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[14].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[14].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 32835.3495429889, - "2034-02-01": 32085.9096612703, - "2033-02-01": 31377.6477950308, - "2032-02-01": 30694.0927380786, - "2031-02-01": 30018.7732842223, - "2030-02-01": 29359.9250365577, - "2029-02-01": 28717.5479950846, - "2028-02-01": 28091.6421598031, - "2027-02-01": 27465.7363245217, - "2026-02-01": 26839.8304892402, - "2025-02-01": 26205.689050863, - "2024-12-01": 25991.9751505267, - "2024-11-01": 25982.7512750594, - "2024-10-01": 25996.8341563533, - "2024-09-01": 25966.9389171155, - "2024-08-01": 25925.3491214816, - "2024-07-01": 25904.2659775564, - "2024-06-01": 25874.2060262567, - "2024-05-01": 25865.4762869751, - "2024-04-01": 25822.5687948459, - "2024-03-01": 25722.4238612009, - "2024-02-01": 25557.217663099, - "2024-01-01": 25400, - "2023-01-01": 24700, - "2022-01-01": 24000, - "2021-01-01": 23400, - "2015-01-01": 23400 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[14].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[14].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 327.060765132921, - "2034-02-01": 319.595871822889, - "2033-02-01": 312.541137485936, - "2032-02-01": 305.732498532831, - "2031-02-01": 299.005891374341, - "2030-02-01": 292.443347805082, - "2029-02-01": 286.044867825055, - "2028-02-01": 279.81045143426, - "2027-02-01": 273.576035043464, - "2026-02-01": 267.341618652668, - "2025-02-01": 261.025170467257, - "2024-12-01": 258.896445396979, - "2024-11-01": 258.804569787009, - "2024-10-01": 258.944844155802, - "2024-09-01": 258.647068741347, - "2024-08-01": 258.232808178538, - "2024-07-01": 258.022806784321, - "2024-06-01": 257.723390733974, - "2024-05-01": 257.636437031681, - "2024-04-01": 257.209051381733, - "2024-03-01": 256.211544759206, - "2024-02-01": 254.565986959214, - "2024-01-01": 253, - "2023-01-01": 251, - "2021-01-01": 247, - "2015-01-01": 247 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[15]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[15]", - "description": null, - "label": "bracket 16" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[15].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[15].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 32964.6225726857, - "2034-02-01": 32212.2321402517, - "2033-02-01": 31501.1818414679, - "2032-02-01": 30814.9356228742, - "2031-02-01": 30136.9574310106, - "2030-02-01": 29475.5152926071, - "2029-02-01": 28830.6092076637, - "2028-02-01": 28202.2391761803, - "2027-02-01": 27573.869144697, - "2026-02-01": 26945.4991132136, - "2025-02-01": 26308.8610550002, - "2024-12-01": 26094.3057613556, - "2024-11-01": 26085.0455714179, - "2024-10-01": 26099.1838971263, - "2024-09-01": 26069.1709600962, - "2024-08-01": 26027.4174251095, - "2024-07-01": 26006.2512766806, - "2024-06-01": 25976.0729791159, - "2024-05-01": 25967.3088707821, - "2024-04-01": 25924.2324515186, - "2024-03-01": 25823.6932464812, - "2024-02-01": 25657.8366302765, - "2024-01-01": 25500, - "2023-01-01": 24800, - "2022-01-01": 24100, - "2021-01-01": 23500, - "2015-01-01": 23500 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[15].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[15].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 342.573528696538, - "2034-02-01": 334.754569300655, - "2033-02-01": 327.365223058392, - "2032-02-01": 320.233644708301, - "2031-02-01": 313.187988988934, - "2030-02-01": 306.314178531015, - "2029-02-01": 299.612213334544, - "2028-02-01": 293.082093399521, - "2027-02-01": 286.551973464498, - "2026-02-01": 280.021853529475, - "2025-02-01": 273.405810963728, - "2024-12-01": 271.17611869644, - "2024-11-01": 271.079885350029, - "2024-10-01": 271.226813048567, - "2024-09-01": 270.914913899039, - "2024-08-01": 270.481004613883, - "2024-07-01": 270.26104267923, - "2024-06-01": 269.947425077087, - "2024-05-01": 269.85634708852, - "2024-04-01": 269.408690182448, - "2024-03-01": 268.363870992844, - "2024-02-01": 266.640263020521, - "2024-01-01": 265, - "2023-01-01": 263, - "2022-01-01": 259, - "2021-01-01": 260, - "2015-01-01": 260 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[16]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[16]", - "description": null, - "label": "bracket 17" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[16].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[16].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 33093.8956023825, - "2034-02-01": 32338.5546192331, - "2033-02-01": 31624.715887905, - "2032-02-01": 30935.7785076698, - "2031-02-01": 30255.1415777989, - "2030-02-01": 29591.1055486565, - "2029-02-01": 28943.6704202427, - "2028-02-01": 28312.8361925575, - "2027-02-01": 27682.0019648722, - "2026-02-01": 27051.167737187, - "2025-02-01": 26412.0330591375, - "2024-12-01": 26196.6363721844, - "2024-11-01": 26187.3398677764, - "2024-10-01": 26201.5336378993, - "2024-09-01": 26171.403003077, - "2024-08-01": 26129.4857287374, - "2024-07-01": 26108.2365758048, - "2024-06-01": 26077.9399319752, - "2024-05-01": 26069.1414545891, - "2024-04-01": 26025.8961081912, - "2024-03-01": 25924.9626317615, - "2024-02-01": 25758.4555974541, - "2024-01-01": 25600, - "2023-01-01": 24900, - "2022-01-01": 24200, - "2021-01-01": 23600, - "2015-01-01": 23600 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[16].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[16].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 359.379022557122, - "2034-02-01": 351.176491568234, - "2033-02-01": 343.424649095219, - "2032-02-01": 335.943219731727, - "2031-02-01": 328.55192807141, - "2030-02-01": 321.340911817442, - "2029-02-01": 314.310170969823, - "2028-02-01": 307.459705528554, - "2027-02-01": 300.609240087285, - "2026-02-01": 293.758774646015, - "2025-02-01": 286.818171501571, - "2024-12-01": 284.47909810419, - "2024-11-01": 284.378143876635, - "2024-10-01": 284.532279349063, - "2024-09-01": 284.205079486539, - "2024-08-01": 283.749884085508, - "2024-07-01": 283.519131565381, - "2024-06-01": 283.190128948793, - "2024-05-01": 283.094582983428, - "2024-04-01": 282.624965549889, - "2024-03-01": 281.528891079286, - "2024-02-01": 279.720728753603, - "2024-01-01": 278, - "2023-01-01": 275, - "2021-01-01": 272, - "2015-01-01": 272 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[17]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[17]", - "description": null, - "label": "bracket 18" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[17].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[17].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 33223.1686320793, - "2034-02-01": 32464.8770982144, - "2033-02-01": 31748.2499343421, - "2032-02-01": 31056.6213924654, - "2031-02-01": 30373.3257245872, - "2030-02-01": 29706.695804706, - "2029-02-01": 29056.7316328218, - "2028-02-01": 28423.4332089347, - "2027-02-01": 27790.1347850475, - "2026-02-01": 27156.8363611604, - "2025-02-01": 26515.2050632747, - "2024-12-01": 26298.9669830133, - "2024-11-01": 26289.6341641349, - "2024-10-01": 26303.8833786724, - "2024-09-01": 26273.6350460578, - "2024-08-01": 26231.5540323653, - "2024-07-01": 26210.2218749291, - "2024-06-01": 26179.8068848345, - "2024-05-01": 26170.9740383961, - "2024-04-01": 26127.5597648638, - "2024-03-01": 26026.2320170419, - "2024-02-01": 25859.0745646317, - "2024-01-01": 25700, - "2023-01-01": 25000, - "2022-01-01": 24300, - "2021-01-01": 23700, - "2015-01-01": 23700 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[17].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[17].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 374.891786120739, - "2034-02-01": 366.335189045999, - "2033-02-01": 358.248734667674, - "2032-02-01": 350.444365907197, - "2031-02-01": 342.734025686003, - "2030-02-01": 335.211742543375, - "2029-02-01": 327.877516479312, - "2028-02-01": 320.731347493815, - "2027-02-01": 313.585178508318, - "2026-02-01": 306.439009522821, - "2025-02-01": 299.198811998042, - "2024-12-01": 296.758771403652, - "2024-11-01": 296.653459439655, - "2024-10-01": 296.814248241828, - "2024-09-01": 296.472924644232, - "2024-08-01": 295.998080520853, - "2024-07-01": 295.757367460289, - "2024-06-01": 295.414163291907, - "2024-05-01": 295.314493040267, - "2024-04-01": 294.824604350603, - "2024-03-01": 293.681217312924, - "2024-02-01": 291.79500481491, - "2024-01-01": 290, - "2023-01-01": 288, - "2022-01-01": 284, - "2021-01-01": 285, - "2015-01-01": 285 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[18]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[18]", - "description": null, - "label": "bracket 19" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[18].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[18].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 33352.4416617761, - "2034-02-01": 32591.1995771958, - "2033-02-01": 31871.7839807793, - "2032-02-01": 31177.464277261, - "2031-02-01": 30491.5098713754, - "2030-02-01": 29822.2860607554, - "2029-02-01": 29169.7928454009, - "2028-02-01": 28534.0302253118, - "2027-02-01": 27898.2676052228, - "2026-02-01": 27262.5049851338, - "2025-02-01": 26618.377067412, - "2024-12-01": 26401.2975938421, - "2024-11-01": 26391.9284604934, - "2024-10-01": 26406.2331194454, - "2024-09-01": 26375.8670890385, - "2024-08-01": 26333.6223359932, - "2024-07-01": 26312.2071740533, - "2024-06-01": 26281.6738376938, - "2024-05-01": 26272.8066222031, - "2024-04-01": 26229.2234215364, - "2024-03-01": 26127.5014023222, - "2024-02-01": 25959.6935318092, - "2024-01-01": 25800, - "2023-01-01": 25100, - "2022-01-01": 24400, - "2021-01-01": 23800, - "2015-01-01": 23800 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[18].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[18].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 390.404549684356, - "2034-02-01": 381.493886523765, - "2033-02-01": 373.072820240129, - "2032-02-01": 364.945512082667, - "2031-02-01": 356.916123300596, - "2030-02-01": 349.082573269308, - "2029-02-01": 341.444861988801, - "2028-02-01": 334.002989459077, - "2027-02-01": 326.561116929352, - "2026-02-01": 319.119244399628, - "2025-02-01": 311.579452494512, - "2024-12-01": 309.038444703113, - "2024-11-01": 308.928775002675, - "2024-10-01": 309.096217134594, - "2024-09-01": 308.740769801924, - "2024-08-01": 308.246276956199, - "2024-07-01": 307.995603355198, - "2024-06-01": 307.63819763502, - "2024-05-01": 307.534403097106, - "2024-04-01": 307.024243151318, - "2024-03-01": 305.833543546562, - "2024-02-01": 303.869280876216, - "2024-01-01": 302, - "2023-01-01": 300, - "2022-01-01": 296, - "2021-01-01": 297, - "2015-01-01": 297 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[19]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[19]", - "description": null, - "label": "bracket 20" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[19].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[19].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 33481.7146914729, - "2034-02-01": 32717.5220561772, - "2033-02-01": 31995.3180272164, - "2032-02-01": 31298.3071620566, - "2031-02-01": 30609.6940181637, - "2030-02-01": 29937.8763168049, - "2029-02-01": 29282.8540579799, - "2028-02-01": 28644.627241689, - "2027-02-01": 28006.4004253981, - "2026-02-01": 27368.1736091072, - "2025-02-01": 26721.5490715492, - "2024-12-01": 26503.628204671, - "2024-11-01": 26494.2227568519, - "2024-10-01": 26508.5828602185, - "2024-09-01": 26478.0991320193, - "2024-08-01": 26435.690639621, - "2024-07-01": 26414.1924731776, - "2024-06-01": 26383.5407905531, - "2024-05-01": 26374.63920601, - "2024-04-01": 26330.8870782091, - "2024-03-01": 26228.7707876025, - "2024-02-01": 26060.3124989868, - "2024-01-01": 25900, - "2023-01-01": 25200, - "2022-01-01": 24500, - "2021-01-01": 23900, - "2015-01-01": 23900 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[19].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[19].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 407.210043544941, - "2034-02-01": 397.915808791344, - "2033-02-01": 389.132246276956, - "2032-02-01": 380.655087106093, - "2031-02-01": 372.280062383072, - "2030-02-01": 364.109306555735, - "2029-02-01": 356.14281962408, - "2028-02-01": 348.38060158811, - "2027-02-01": 340.618383552139, - "2026-02-01": 332.856165516168, - "2025-02-01": 324.991813032356, - "2024-12-01": 322.341424110863, - "2024-11-01": 322.22703352928, - "2024-10-01": 322.40168343509, - "2024-09-01": 322.030935389424, - "2024-08-01": 321.515156427823, - "2024-07-01": 321.253692241349, - "2024-06-01": 320.880901506726, - "2024-05-01": 320.772638992014, - "2024-04-01": 320.240518518759, - "2024-03-01": 318.998563633003, - "2024-02-01": 316.949746609299, - "2024-01-01": 315, - "2023-01-01": 313, - "2021-01-01": 309, - "2015-01-01": 309 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[20]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[20]", - "description": null, - "label": "bracket 21" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[20].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[20].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 33610.9877211697, - "2034-02-01": 32843.8445351586, - "2033-02-01": 32118.8520736535, - "2032-02-01": 31419.1500468522, - "2031-02-01": 30727.878164952, - "2030-02-01": 30053.4665728543, - "2029-02-01": 29395.915270559, - "2028-02-01": 28755.2242580662, - "2027-02-01": 28114.5332455734, - "2026-02-01": 27473.8422330805, - "2025-02-01": 26824.7210756865, - "2024-12-01": 26605.9588154998, - "2024-11-01": 26596.5170532104, - "2024-10-01": 26610.9326009915, - "2024-09-01": 26580.3311750001, - "2024-08-01": 26537.7589432489, - "2024-07-01": 26516.1777723018, - "2024-06-01": 26485.4077434123, - "2024-05-01": 26476.471789817, - "2024-04-01": 26432.5507348817, - "2024-03-01": 26330.0401728828, - "2024-02-01": 26160.9314661643, - "2024-01-01": 26000, - "2023-01-01": 25300, - "2022-01-01": 24600, - "2021-01-01": 24000, - "2015-01-01": 24000 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[20].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[20].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 422.722807108558, - "2034-02-01": 413.07450626911, - "2033-02-01": 403.956331849412, - "2032-02-01": 395.156233281564, - "2031-02-01": 386.462159997666, - "2030-02-01": 377.980137281667, - "2029-02-01": 369.710165133569, - "2028-02-01": 361.652243553371, - "2027-02-01": 353.594321973173, - "2026-02-01": 345.536400392974, - "2025-02-01": 337.372453528826, - "2024-12-01": 334.621097410324, - "2024-11-01": 334.5023490923, - "2024-10-01": 334.683652327855, - "2024-09-01": 334.298780547116, - "2024-08-01": 333.763352863169, - "2024-07-01": 333.491928136257, - "2024-06-01": 333.10493584984, - "2024-05-01": 332.992549048853, - "2024-04-01": 332.440157319473, - "2024-03-01": 331.150889866642, - "2024-02-01": 329.024022670605, - "2024-01-01": 327, - "2023-01-01": 325, - "2022-01-01": 321, - "2021-01-01": 322, - "2015-01-01": 322 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[21]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[21]", - "description": null, - "label": "bracket 22" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[21].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[21].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 33740.2607508665, - "2034-02-01": 32970.16701414, - "2033-02-01": 32242.3861200907, - "2032-02-01": 31539.9929316477, - "2031-02-01": 30846.0623117403, - "2030-02-01": 30169.0568289037, - "2029-02-01": 29508.9764831381, - "2028-02-01": 28865.8212744434, - "2027-02-01": 28222.6660657487, - "2026-02-01": 27579.5108570539, - "2025-02-01": 26927.8930798237, - "2024-12-01": 26708.2894263286, - "2024-11-01": 26698.8113495689, - "2024-10-01": 26713.2823417646, - "2024-09-01": 26682.5632179809, - "2024-08-01": 26639.8272468768, - "2024-07-01": 26618.163071426, - "2024-06-01": 26587.2746962716, - "2024-05-01": 26578.304373624, - "2024-04-01": 26534.2143915543, - "2024-03-01": 26431.3095581631, - "2024-02-01": 26261.5504333419, - "2024-01-01": 26100, - "2023-01-01": 25400, - "2022-01-01": 24700, - "2021-01-01": 24100, - "2015-01-01": 24100 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[21].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[21].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 439.528300969143, - "2034-02-01": 429.496428536689, - "2033-02-01": 420.015757886238, - "2032-02-01": 410.86580830499, - "2031-02-01": 401.826099080142, - "2030-02-01": 393.006870568095, - "2029-02-01": 384.408122768849, - "2028-02-01": 376.029855682404, - "2027-02-01": 367.651588595959, - "2026-02-01": 359.273321509515, - "2025-02-01": 350.78481406667, - "2024-12-01": 347.924076818074, - "2024-11-01": 347.800607618906, - "2024-10-01": 347.989118628351, - "2024-09-01": 347.588946134617, - "2024-08-01": 347.032232334794, - "2024-07-01": 346.750017022408, - "2024-06-01": 346.347639721546, - "2024-05-01": 346.230784943761, - "2024-04-01": 345.656432686914, - "2024-03-01": 344.315909953083, - "2024-02-01": 342.104488403687, - "2024-01-01": 340, - "2023-01-01": 337, - "2021-01-01": 334, - "2015-01-01": 334 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[22]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[22]", - "description": null, - "label": "bracket 23" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[22].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[22].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 33869.5337805633, - "2034-02-01": 33096.4894931213, - "2033-02-01": 32365.9201665278, - "2032-02-01": 31660.8358164433, - "2031-02-01": 30964.2464585286, - "2030-02-01": 30284.6470849532, - "2029-02-01": 29622.0376957172, - "2028-02-01": 28976.4182908206, - "2027-02-01": 28330.7988859239, - "2026-02-01": 27685.1794810273, - "2025-02-01": 27031.065083961, - "2024-12-01": 26810.6200371575, - "2024-11-01": 26801.1056459274, - "2024-10-01": 26815.6320825376, - "2024-09-01": 26784.7952609616, - "2024-08-01": 26741.8955505047, - "2024-07-01": 26720.1483705503, - "2024-06-01": 26689.1416491309, - "2024-05-01": 26680.136957431, - "2024-04-01": 26635.8780482269, - "2024-03-01": 26532.5789434435, - "2024-02-01": 26362.1694005194, - "2024-01-01": 26200, - "2023-01-01": 25500, - "2022-01-01": 24800, - "2021-01-01": 24200, - "2015-01-01": 24200 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[22].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[22].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 455.041064532759, - "2034-02-01": 444.655126014455, - "2033-02-01": 434.839843458694, - "2032-02-01": 425.36695448046, - "2031-02-01": 416.008196694735, - "2030-02-01": 406.877701294027, - "2029-02-01": 397.975468278337, - "2028-02-01": 389.301497647665, - "2027-02-01": 380.627527016993, - "2026-02-01": 371.953556386321, - "2025-02-01": 363.16545456314, - "2024-12-01": 360.203750117536, - "2024-11-01": 360.075923181926, - "2024-10-01": 360.271087521116, - "2024-09-01": 359.856791292309, - "2024-08-01": 359.280428770139, - "2024-07-01": 358.988252917317, - "2024-06-01": 358.571674064659, - "2024-05-01": 358.4506950006, - "2024-04-01": 357.856071487629, - "2024-03-01": 356.468236186721, - "2024-02-01": 354.178764464994, - "2024-01-01": 352, - "2023-01-01": 350, - "2022-01-01": 346, - "2021-01-01": 347, - "2015-01-01": 347 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[23]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[23]", - "description": null, - "label": "bracket 24" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[23].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[23].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 33998.8068102601, - "2034-02-01": 33222.8119721027, - "2033-02-01": 32489.4542129649, - "2032-02-01": 31781.6787012389, - "2031-02-01": 31082.4306053168, - "2030-02-01": 30400.2373410026, - "2029-02-01": 29735.0989082962, - "2028-02-01": 29087.0153071977, - "2027-02-01": 28438.9317060992, - "2026-02-01": 27790.8481050007, - "2025-02-01": 27134.2370880983, - "2024-12-01": 26912.9506479863, - "2024-11-01": 26903.3999422859, - "2024-10-01": 26917.9818233106, - "2024-09-01": 26887.0273039424, - "2024-08-01": 26843.9638541326, - "2024-07-01": 26822.1336696745, - "2024-06-01": 26791.0086019902, - "2024-05-01": 26781.969541238, - "2024-04-01": 26737.5417048995, - "2024-03-01": 26633.8483287238, - "2024-02-01": 26462.788367697, - "2024-01-01": 26300, - "2023-01-01": 25600, - "2022-01-01": 24900, - "2021-01-01": 24300, - "2015-01-01": 24300 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[23].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[23].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 470.553828096376, - "2034-02-01": 459.81382349222, - "2033-02-01": 449.663929031149, - "2032-02-01": 439.86810065593, - "2031-02-01": 430.190294309328, - "2030-02-01": 420.74853201996, - "2029-02-01": 411.542813787826, - "2028-02-01": 402.573139612927, - "2027-02-01": 393.603465438027, - "2026-02-01": 384.633791263128, - "2025-02-01": 375.546095059611, - "2024-12-01": 372.483423416997, - "2024-11-01": 372.351238744946, - "2024-10-01": 372.553056413881, - "2024-09-01": 372.124636450001, - "2024-08-01": 371.528625205485, - "2024-07-01": 371.226488812225, - "2024-06-01": 370.795708407773, - "2024-05-01": 370.670605057439, - "2024-04-01": 370.055710288343, - "2024-03-01": 368.62056242036, - "2024-02-01": 366.253040526301, - "2024-01-01": 364, - "2023-01-01": 362, - "2022-01-01": 358, - "2021-01-01": 359, - "2015-01-01": 359 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[24]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[24]", - "description": null, - "label": "bracket 25" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[24].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[24].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 34128.079839957, - "2034-02-01": 33349.1344510841, - "2033-02-01": 32612.988259402, - "2032-02-01": 31902.5215860345, - "2031-02-01": 31200.6147521051, - "2030-02-01": 30515.827597052, - "2029-02-01": 29848.1601208753, - "2028-02-01": 29197.6123235749, - "2027-02-01": 28547.0645262745, - "2026-02-01": 27896.5167289741, - "2025-02-01": 27237.4090922355, - "2024-12-01": 27015.2812588152, - "2024-11-01": 27005.6942386444, - "2024-10-01": 27020.3315640837, - "2024-09-01": 26989.2593469232, - "2024-08-01": 26946.0321577604, - "2024-07-01": 26924.1189687987, - "2024-06-01": 26892.8755548494, - "2024-05-01": 26883.802125045, - "2024-04-01": 26839.2053615722, - "2024-03-01": 26735.1177140041, - "2024-02-01": 26563.4073348745, - "2024-01-01": 26400, - "2023-01-01": 25700, - "2022-01-01": 25000, - "2021-01-01": 24400, - "2015-01-01": 24400 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[24].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[24].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 487.359321956961, - "2034-02-01": 476.235745759799, - "2033-02-01": 465.723355067976, - "2032-02-01": 455.577675679356, - "2031-02-01": 445.554233391804, - "2030-02-01": 435.775265306387, - "2029-02-01": 426.240771423106, - "2028-02-01": 416.95075174196, - "2027-02-01": 407.660732060814, - "2026-02-01": 398.370712379668, - "2025-02-01": 388.958455597454, - "2024-12-01": 385.786402824747, - "2024-11-01": 385.649497271551, - "2024-10-01": 385.858522714377, - "2024-09-01": 385.414802037501, - "2024-08-01": 384.797504677109, - "2024-07-01": 384.484577698376, - "2024-06-01": 384.038412279479, - "2024-05-01": 383.908840952347, - "2024-04-01": 383.271985655784, - "2024-03-01": 381.785582506801, - "2024-02-01": 379.333506259383, - "2024-01-01": 377, - "2023-01-01": 375, - "2021-01-01": 371, - "2015-01-01": 371 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[25]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[25]", - "description": null, - "label": "bracket 26" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[25].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[25].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 34257.3528696538, - "2034-02-01": 33475.4569300655, - "2033-02-01": 32736.5223058392, - "2032-02-01": 32023.3644708301, - "2031-02-01": 31318.7988988934, - "2030-02-01": 30631.4178531015, - "2029-02-01": 29961.2213334544, - "2028-02-01": 29308.2093399521, - "2027-02-01": 28655.1973464498, - "2026-02-01": 28002.1853529475, - "2025-02-01": 27340.5810963728, - "2024-12-01": 27117.611869644, - "2024-11-01": 27107.9885350029, - "2024-10-01": 27122.6813048567, - "2024-09-01": 27091.4913899039, - "2024-08-01": 27048.1004613883, - "2024-07-01": 27026.104267923, - "2024-06-01": 26994.7425077087, - "2024-05-01": 26985.634708852, - "2024-04-01": 26940.8690182448, - "2024-03-01": 26836.3870992844, - "2024-02-01": 26664.0263020521, - "2024-01-01": 26500, - "2023-01-01": 25800, - "2022-01-01": 25100, - "2021-01-01": 24500, - "2015-01-01": 24500 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[25].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[25].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 502.872085520578, - "2034-02-01": 491.394443237565, - "2033-02-01": 480.547440640432, - "2032-02-01": 470.078821854826, - "2031-02-01": 459.736331006397, - "2030-02-01": 449.64609603232, - "2029-02-01": 439.808116932595, - "2028-02-01": 430.222393707221, - "2027-02-01": 420.636670481848, - "2026-02-01": 411.050947256474, - "2025-02-01": 401.339096093925, - "2024-12-01": 398.066076124209, - "2024-11-01": 397.924812834571, - "2024-10-01": 398.140491607142, - "2024-09-01": 397.682647195194, - "2024-08-01": 397.045701112455, - "2024-07-01": 396.722813593285, - "2024-06-01": 396.262446622592, - "2024-05-01": 396.128751009186, - "2024-04-01": 395.471624456499, - "2024-03-01": 393.937908740439, - "2024-02-01": 391.407782320689, - "2024-01-01": 389, - "2023-01-01": 387, - "2022-01-01": 383, - "2021-01-01": 384, - "2015-01-01": 384 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[26]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[26]", - "description": null, - "label": "bracket 27" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[26].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[26].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 34386.6258993506, - "2034-02-01": 33601.7794090468, - "2033-02-01": 32860.0563522763, - "2032-02-01": 32144.2073556257, - "2031-02-01": 31436.9830456817, - "2030-02-01": 30747.0081091509, - "2029-02-01": 30074.2825460335, - "2028-02-01": 29418.8063563293, - "2027-02-01": 28763.3301666251, - "2026-02-01": 28107.8539769209, - "2025-02-01": 27443.75310051, - "2024-12-01": 27219.9424804729, - "2024-11-01": 27210.2828313614, - "2024-10-01": 27225.0310456298, - "2024-09-01": 27193.7234328847, - "2024-08-01": 27150.1687650162, - "2024-07-01": 27128.0895670472, - "2024-06-01": 27096.609460568, - "2024-05-01": 27087.467292659, - "2024-04-01": 27042.5326749174, - "2024-03-01": 26937.6564845647, - "2024-02-01": 26764.6452692296, - "2024-01-01": 26600, - "2023-01-01": 25900, - "2022-01-01": 25200, - "2021-01-01": 24600, - "2015-01-01": 24600 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[26].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[26].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 519.677579381163, - "2034-02-01": 507.816365505144, - "2033-02-01": 496.606866677258, - "2032-02-01": 485.788396878253, - "2031-02-01": 475.100270088873, - "2030-02-01": 464.672829318747, - "2029-02-01": 454.506074567874, - "2028-02-01": 444.600005836254, - "2027-02-01": 434.693937104634, - "2026-02-01": 424.787868373014, - "2025-02-01": 414.751456631768, - "2024-12-01": 411.369055531958, - "2024-11-01": 411.223071361177, - "2024-10-01": 411.445957907638, - "2024-09-01": 410.972812782694, - "2024-08-01": 410.314580584079, - "2024-07-01": 409.980902479435, - "2024-06-01": 409.505150494298, - "2024-05-01": 409.366986904094, - "2024-04-01": 408.68789982394, - "2024-03-01": 407.102928826881, - "2024-02-01": 404.488248053771, - "2024-01-01": 402, - "2023-01-01": 399, - "2021-01-01": 396, - "2015-01-01": 396 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[27]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[27]", - "description": null, - "label": "bracket 28" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[27].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[27].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 34515.8989290474, - "2034-02-01": 33728.1018880282, - "2033-02-01": 32983.5903987134, - "2032-02-01": 32265.0502404213, - "2031-02-01": 31555.1671924699, - "2030-02-01": 30862.5983652004, - "2029-02-01": 30187.3437586125, - "2028-02-01": 29529.4033727064, - "2027-02-01": 28871.4629868003, - "2026-02-01": 28213.5226008942, - "2025-02-01": 27546.9251046473, - "2024-12-01": 27322.2730913017, - "2024-11-01": 27312.5771277199, - "2024-10-01": 27327.3807864028, - "2024-09-01": 27295.9554758655, - "2024-08-01": 27252.2370686441, - "2024-07-01": 27230.0748661715, - "2024-06-01": 27198.4764134273, - "2024-05-01": 27189.299876466, - "2024-04-01": 27144.19633159, - "2024-03-01": 27038.9258698451, - "2024-02-01": 26865.2642364072, - "2024-01-01": 26700, - "2023-01-01": 26000, - "2022-01-01": 25300, - "2021-01-01": 24700, - "2015-01-01": 24700 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[27].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[27].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 535.190342944779, - "2034-02-01": 522.97506298291, - "2033-02-01": 511.430952249714, - "2032-02-01": 500.289543053723, - "2031-02-01": 489.282367703466, - "2030-02-01": 478.54366004468, - "2029-02-01": 468.073420077363, - "2028-02-01": 457.871647801516, - "2027-02-01": 447.669875525668, - "2026-02-01": 437.468103249821, - "2025-02-01": 427.132097128239, - "2024-12-01": 423.64872883142, - "2024-11-01": 423.498386924197, - "2024-10-01": 423.727926800403, - "2024-09-01": 423.240657940386, - "2024-08-01": 422.562777019425, - "2024-07-01": 422.219138374344, - "2024-06-01": 421.729184837412, - "2024-05-01": 421.586896960933, - "2024-04-01": 420.887538624654, - "2024-03-01": 419.255255060519, - "2024-02-01": 416.562524115078, - "2024-01-01": 414, - "2023-01-01": 412, - "2022-01-01": 408, - "2021-01-01": 409, - "2015-01-01": 409 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[28]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[28]", - "description": null, - "label": "bracket 29" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[28].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[28].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 34645.1719587442, - "2034-02-01": 33854.4243670096, - "2033-02-01": 33107.1244451506, - "2032-02-01": 32385.8931252168, - "2031-02-01": 31673.3513392582, - "2030-02-01": 30978.1886212498, - "2029-02-01": 30300.4049711916, - "2028-02-01": 29640.0003890836, - "2027-02-01": 28979.5958069756, - "2026-02-01": 28319.1912248676, - "2025-02-01": 27650.0971087845, - "2024-12-01": 27424.6037021306, - "2024-11-01": 27414.8714240784, - "2024-10-01": 27429.7305271759, - "2024-09-01": 27398.1875188462, - "2024-08-01": 27354.305372272, - "2024-07-01": 27332.0601652957, - "2024-06-01": 27300.3433662866, - "2024-05-01": 27291.1324602729, - "2024-04-01": 27245.8599882627, - "2024-03-01": 27140.1952551254, - "2024-02-01": 26965.8832035848, - "2024-01-01": 26800, - "2023-01-01": 26100, - "2022-01-01": 25400, - "2021-01-01": 24800, - "2015-01-01": 24800 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[28].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[28].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 550.703106508396, - "2034-02-01": 538.133760460675, - "2033-02-01": 526.255037822169, - "2032-02-01": 514.790689229193, - "2031-02-01": 503.46446531806, - "2030-02-01": 492.414490770613, - "2029-02-01": 481.640765586852, - "2028-02-01": 471.143289766777, - "2027-02-01": 460.645813946702, - "2026-02-01": 450.148338126627, - "2025-02-01": 439.512737624709, - "2024-12-01": 435.928402130881, - "2024-11-01": 435.773702487217, - "2024-10-01": 436.009895693169, - "2024-09-01": 435.508503098078, - "2024-08-01": 434.810973454771, - "2024-07-01": 434.457374269252, - "2024-06-01": 433.953219180525, - "2024-05-01": 433.806807017771, - "2024-04-01": 433.087177425369, - "2024-03-01": 431.407581294157, - "2024-02-01": 428.636800176385, - "2024-01-01": 426, - "2023-01-01": 424, - "2022-01-01": 420, - "2021-01-01": 421, - "2015-01-01": 421 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[29]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[29]", - "description": null, - "label": "bracket 30" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[29].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[29].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 34774.444988441, - "2034-02-01": 33980.746845991, - "2033-02-01": 33230.6584915877, - "2032-02-01": 32506.7360100124, - "2031-02-01": 31791.5354860465, - "2030-02-01": 31093.7788772992, - "2029-02-01": 30413.4661837707, - "2028-02-01": 29750.5974054608, - "2027-02-01": 29087.7286271509, - "2026-02-01": 28424.859848841, - "2025-02-01": 27753.2691129218, - "2024-12-01": 27526.9343129594, - "2024-11-01": 27517.1657204369, - "2024-10-01": 27532.0802679489, - "2024-09-01": 27500.419561827, - "2024-08-01": 27456.3736758998, - "2024-07-01": 27434.0454644199, - "2024-06-01": 27402.2103191458, - "2024-05-01": 27392.9650440799, - "2024-04-01": 27347.5236449353, - "2024-03-01": 27241.4646404057, - "2024-02-01": 27066.5021707623, - "2024-01-01": 26900, - "2023-01-01": 26200, - "2022-01-01": 25500, - "2021-01-01": 24900, - "2015-01-01": 24900 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[29].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[29].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 567.508600368981, - "2034-02-01": 554.555682728254, - "2033-02-01": 542.314463858996, - "2032-02-01": 530.500264252619, - "2031-02-01": 518.828404400536, - "2030-02-01": 507.44122405704, - "2029-02-01": 496.338723222131, - "2028-02-01": 485.52090189581, - "2027-02-01": 474.703080569489, - "2026-02-01": 463.885259243168, - "2025-02-01": 452.925098162553, - "2024-12-01": 449.231381538631, - "2024-11-01": 449.071961013822, - "2024-10-01": 449.315361993664, - "2024-09-01": 448.798668685578, - "2024-08-01": 448.079852926395, - "2024-07-01": 447.715463155403, - "2024-06-01": 447.195923052231, - "2024-05-01": 447.04504291268, - "2024-04-01": 446.30345279281, - "2024-03-01": 444.572601380598, - "2024-02-01": 441.717265909467, - "2024-01-01": 439, - "2023-01-01": 437, - "2021-01-01": 433, - "2015-01-01": 433 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[30]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[30]", - "description": null, - "label": "bracket 31" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[30].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[30].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 34903.7180181378, - "2034-02-01": 34107.0693249724, - "2033-02-01": 33354.1925380248, - "2032-02-01": 32627.578894808, - "2031-02-01": 31909.7196328348, - "2030-02-01": 31209.3691333487, - "2029-02-01": 30526.5273963497, - "2028-02-01": 29861.194421838, - "2027-02-01": 29195.8614473262, - "2026-02-01": 28530.5284728144, - "2025-02-01": 27856.4411170591, - "2024-12-01": 27629.2649237883, - "2024-11-01": 27619.4600167954, - "2024-10-01": 27634.430008722, - "2024-09-01": 27602.6516048078, - "2024-08-01": 27558.4419795277, - "2024-07-01": 27536.0307635442, - "2024-06-01": 27504.0772720051, - "2024-05-01": 27494.7976278869, - "2024-04-01": 27449.1873016079, - "2024-03-01": 27342.734025686, - "2024-02-01": 27167.1211379399, - "2024-01-01": 27000, - "2023-01-01": 26300, - "2022-01-01": 25600, - "2021-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[30].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[30].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 583.021363932598, - "2034-02-01": 569.71438020602, - "2033-02-01": 557.138549431452, - "2032-02-01": 545.001410428089, - "2031-02-01": 533.010502015129, - "2030-02-01": 521.312054782973, - "2029-02-01": 509.90606873162, - "2028-02-01": 498.792543861071, - "2027-02-01": 487.679018990523, - "2026-02-01": 476.565494119974, - "2025-02-01": 465.305738659023, - "2024-12-01": 461.511054838093, - "2024-11-01": 461.347276576842, - "2024-10-01": 461.59733088643, - "2024-09-01": 461.066513843271, - "2024-08-01": 460.328049361741, - "2024-07-01": 459.953699050312, - "2024-06-01": 459.419957395345, - "2024-05-01": 459.264952969519, - "2024-04-01": 458.503091593524, - "2024-03-01": 456.724927614237, - "2024-02-01": 453.791541970773, - "2024-01-01": 451, - "2023-01-01": 449, - "2022-01-01": 445, - "2021-01-01": 446, - "2015-01-01": 446 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[31]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[31]", - "description": null, - "label": "bracket 32" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[31].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[31].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 35032.9910478346, - "2034-02-01": 34233.3918039537, - "2033-02-01": 33477.726584462, - "2032-02-01": 32748.4217796036, - "2031-02-01": 32027.903779623, - "2030-02-01": 31324.9593893981, - "2029-02-01": 30639.5886089288, - "2028-02-01": 29971.7914382152, - "2027-02-01": 29303.9942675015, - "2026-02-01": 28636.1970967878, - "2025-02-01": 27959.6131211963, - "2024-12-01": 27731.5955346171, - "2024-11-01": 27721.7543131539, - "2024-10-01": 27736.779749495, - "2024-09-01": 27704.8836477886, - "2024-08-01": 27660.5102831556, - "2024-07-01": 27638.0160626684, - "2024-06-01": 27605.9442248644, - "2024-05-01": 27596.6302116939, - "2024-04-01": 27550.8509582805, - "2024-03-01": 27444.0034109663, - "2024-02-01": 27267.7401051174, - "2024-01-01": 27100, - "2023-01-01": 26400, - "2022-01-01": 25700, - "2021-01-01": 25100, - "2015-01-01": 25100 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[31].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[31].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 599.826857793183, - "2034-02-01": 586.136302473599, - "2033-02-01": 573.197975468278, - "2032-02-01": 560.710985451515, - "2031-02-01": 548.374441097605, - "2030-02-01": 536.3387880694, - "2029-02-01": 524.604026366899, - "2028-02-01": 513.170155990104, - "2027-02-01": 501.736285613309, - "2026-02-01": 490.302415236514, - "2025-02-01": 478.718099196867, - "2024-12-01": 474.814034245843, - "2024-11-01": 474.645535103448, - "2024-10-01": 474.902797186925, - "2024-09-01": 474.356679430771, - "2024-08-01": 473.596928833365, - "2024-07-01": 473.211787936463, - "2024-06-01": 472.662661267051, - "2024-05-01": 472.503188864427, - "2024-04-01": 471.719366960965, - "2024-03-01": 469.889947700678, - "2024-02-01": 466.872007703856, - "2024-01-01": 464, - "2023-01-01": 461, - "2021-01-01": 458, - "2015-01-01": 458 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[32]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[32]", - "description": null, - "label": "bracket 33" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[32].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[32].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 35162.2640775314, - "2034-02-01": 34359.7142829351, - "2033-02-01": 33601.2606308991, - "2032-02-01": 32869.2646643992, - "2031-02-01": 32146.0879264113, - "2030-02-01": 31440.5496454476, - "2029-02-01": 30752.6498215079, - "2028-02-01": 30082.3884545923, - "2027-02-01": 29412.1270876768, - "2026-02-01": 28741.8657207612, - "2025-02-01": 28062.7851253336, - "2024-12-01": 27833.9261454459, - "2024-11-01": 27824.0486095124, - "2024-10-01": 27839.129490268, - "2024-09-01": 27807.1156907693, - "2024-08-01": 27762.5785867835, - "2024-07-01": 27740.0013617926, - "2024-06-01": 27707.8111777237, - "2024-05-01": 27698.4627955009, - "2024-04-01": 27652.5146149531, - "2024-03-01": 27545.2727962466, - "2024-02-01": 27368.359072295, - "2024-01-01": 27200, - "2023-01-01": 26500, - "2022-01-01": 25800, - "2021-01-01": 25200, - "2015-01-01": 25200 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[32].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[32].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 615.339621356799, - "2034-02-01": 601.294999951365, - "2033-02-01": 588.022061040734, - "2032-02-01": 575.212131626986, - "2031-02-01": 562.556538712198, - "2030-02-01": 550.209618795332, - "2029-02-01": 538.171371876388, - "2028-02-01": 526.441797955366, - "2027-02-01": 514.712224034343, - "2026-02-01": 502.982650113321, - "2025-02-01": 491.098739693337, - "2024-12-01": 487.093707545304, - "2024-11-01": 486.920850666468, - "2024-10-01": 487.184766079691, - "2024-09-01": 486.624524588463, - "2024-08-01": 485.845125268711, - "2024-07-01": 485.450023831371, - "2024-06-01": 484.886695610164, - "2024-05-01": 484.723098921266, - "2024-04-01": 483.91900576168, - "2024-03-01": 482.042273934316, - "2024-02-01": 478.946283765162, - "2024-01-01": 476, - "2023-01-01": 474, - "2022-01-01": 470, - "2021-01-01": 471, - "2015-01-01": 471 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[33]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[33]", - "description": null, - "label": "bracket 34" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[33].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[33].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 35291.5371072282, - "2034-02-01": 34486.0367619165, - "2033-02-01": 33724.7946773362, - "2032-02-01": 32990.1075491948, - "2031-02-01": 32264.2720731996, - "2030-02-01": 31556.139901497, - "2029-02-01": 30865.711034087, - "2028-02-01": 30192.9854709695, - "2027-02-01": 29520.259907852, - "2026-02-01": 28847.5343447346, - "2025-02-01": 28165.9571294708, - "2024-12-01": 27936.2567562748, - "2024-11-01": 27926.3429058709, - "2024-10-01": 27941.4792310411, - "2024-09-01": 27909.3477337501, - "2024-08-01": 27864.6468904114, - "2024-07-01": 27841.9866609169, - "2024-06-01": 27809.678130583, - "2024-05-01": 27800.2953793079, - "2024-04-01": 27754.1782716258, - "2024-03-01": 27646.542181527, - "2024-02-01": 27468.9780394725, - "2024-01-01": 27300, - "2023-01-01": 26600, - "2022-01-01": 25900, - "2021-01-01": 25300, - "2015-01-01": 25300 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[33].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[33].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 630.852384920416, - "2034-02-01": 616.45369742913, - "2033-02-01": 602.846146613189, - "2032-02-01": 589.713277802456, - "2031-02-01": 576.738636326791, - "2030-02-01": 564.080449521265, - "2029-02-01": 551.738717385877, - "2028-02-01": 539.713439920627, - "2027-02-01": 527.688162455377, - "2026-02-01": 515.662884990127, - "2025-02-01": 503.479380189808, - "2024-12-01": 499.373380844765, - "2024-11-01": 499.196166229488, - "2024-10-01": 499.466734972456, - "2024-09-01": 498.892369746155, - "2024-08-01": 498.093321704057, - "2024-07-01": 497.68825972628, - "2024-06-01": 497.110729953278, - "2024-05-01": 496.943008978104, - "2024-04-01": 496.118644562395, - "2024-03-01": 494.194600167955, - "2024-02-01": 491.020559826469, - "2024-01-01": 488, - "2023-01-01": 486, - "2022-01-01": 482, - "2021-01-01": 483, - "2015-01-01": 483 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[34]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[34]", - "description": null, - "label": "bracket 35" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[34].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[34].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 35420.810136925, - "2034-02-01": 34612.3592408979, - "2033-02-01": 33848.3287237733, - "2032-02-01": 33110.9504339903, - "2031-02-01": 32382.4562199879, - "2030-02-01": 31671.7301575464, - "2029-02-01": 30978.772246666, - "2028-02-01": 30303.5824873467, - "2027-02-01": 29628.3927280273, - "2026-02-01": 28953.202968708, - "2025-02-01": 28269.1291336081, - "2024-12-01": 28038.5873671036, - "2024-11-01": 28028.6372022295, - "2024-10-01": 28043.8289718141, - "2024-09-01": 28011.5797767309, - "2024-08-01": 27966.7151940392, - "2024-07-01": 27943.9719600411, - "2024-06-01": 27911.5450834422, - "2024-05-01": 27902.1279631149, - "2024-04-01": 27855.8419282984, - "2024-03-01": 27747.8115668073, - "2024-02-01": 27569.5970066501, - "2024-01-01": 27400, - "2023-01-01": 26700, - "2022-01-01": 26000, - "2021-01-01": 25400, - "2015-01-01": 25400 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[34].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[34].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 647.657878781001, - "2034-02-01": 632.875619696709, - "2033-02-01": 618.905572650016, - "2032-02-01": 605.422852825882, - "2031-02-01": 592.102575409267, - "2030-02-01": 579.107182807692, - "2029-02-01": 566.436675021156, - "2028-02-01": 554.09105204966, - "2027-02-01": 541.745429078164, - "2026-02-01": 529.399806106667, - "2025-02-01": 516.891740727651, - "2024-12-01": 512.676360252515, - "2024-11-01": 512.494424756093, - "2024-10-01": 512.772201272952, - "2024-09-01": 512.182535333655, - "2024-08-01": 511.362201175681, - "2024-07-01": 510.946348612431, - "2024-06-01": 510.353433824984, - "2024-05-01": 510.181244873013, - "2024-04-01": 509.334919929835, - "2024-03-01": 507.359620254396, - "2024-02-01": 504.101025559551, - "2024-01-01": 501, - "2023-01-01": 499, - "2021-01-01": 495, - "2015-01-01": 495 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[35]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[35]", - "description": null, - "label": "bracket 36" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[35].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[35].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 35550.0831666218, - "2034-02-01": 34738.6817198793, - "2033-02-01": 33971.8627702105, - "2032-02-01": 33231.7933187859, - "2031-02-01": 32500.6403667762, - "2030-02-01": 31787.3204135959, - "2029-02-01": 31091.8334592451, - "2028-02-01": 30414.1795037239, - "2027-02-01": 29736.5255482026, - "2026-02-01": 29058.8715926813, - "2025-02-01": 28372.3011377453, - "2024-12-01": 28140.9179779325, - "2024-11-01": 28130.931498588, - "2024-10-01": 28146.1787125872, - "2024-09-01": 28113.8118197116, - "2024-08-01": 28068.7834976671, - "2024-07-01": 28045.9572591654, - "2024-06-01": 28013.4120363015, - "2024-05-01": 28003.9605469219, - "2024-04-01": 27957.505584971, - "2024-03-01": 27849.0809520876, - "2024-02-01": 27670.2159738276, - "2024-01-01": 27500, - "2023-01-01": 26800, - "2022-01-01": 26100, - "2021-01-01": 25500, - "2015-01-01": 25500 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[35].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[35].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 663.170642344618, - "2034-02-01": 648.034317174475, - "2033-02-01": 633.729658222472, - "2032-02-01": 619.923999001352, - "2031-02-01": 606.284673023861, - "2030-02-01": 592.978013533625, - "2029-02-01": 580.004020530645, - "2028-02-01": 567.362694014921, - "2027-02-01": 554.721367499198, - "2026-02-01": 542.080040983474, - "2025-02-01": 529.272381224122, - "2024-12-01": 524.956033551977, - "2024-11-01": 524.769740319114, - "2024-10-01": 525.054170165717, - "2024-09-01": 524.450380491348, - "2024-08-01": 523.610397611027, - "2024-07-01": 523.184584507339, - "2024-06-01": 522.577468168097, - "2024-05-01": 522.401154929852, - "2024-04-01": 521.53455873055, - "2024-03-01": 519.511946488034, - "2024-02-01": 516.175301620858, - "2024-01-01": 513, - "2023-01-01": 511, - "2022-01-01": 507, - "2021-01-01": 508, - "2015-01-01": 508 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[36]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[36]", - "description": null, - "label": "bracket 37" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[36].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[36].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 35679.3561963186, - "2034-02-01": 34865.0041988606, - "2033-02-01": 34095.3968166476, - "2032-02-01": 33352.6362035815, - "2031-02-01": 32618.8245135644, - "2030-02-01": 31902.9106696453, - "2029-02-01": 31204.8946718242, - "2028-02-01": 30524.776520101, - "2027-02-01": 29844.6583683779, - "2026-02-01": 29164.5402166547, - "2025-02-01": 28475.4731418826, - "2024-12-01": 28243.2485887613, - "2024-11-01": 28233.2257949465, - "2024-10-01": 28248.5284533602, - "2024-09-01": 28216.0438626924, - "2024-08-01": 28170.851801295, - "2024-07-01": 28147.9425582896, - "2024-06-01": 28115.2789891608, - "2024-05-01": 28105.7931307289, - "2024-04-01": 28059.1692416436, - "2024-03-01": 27950.3503373679, - "2024-02-01": 27770.8349410052, - "2024-01-01": 27600, - "2023-01-01": 26900, - "2022-01-01": 26200, - "2021-01-01": 25600, - "2015-01-01": 25600 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[36].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[36].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 679.976136205203, - "2034-02-01": 664.456239442054, - "2033-02-01": 649.789084259298, - "2032-02-01": 635.633574024778, - "2031-02-01": 621.648612106337, - "2030-02-01": 608.004746820052, - "2029-02-01": 594.701978165925, - "2028-02-01": 581.740306143955, - "2027-02-01": 568.778634121984, - "2026-02-01": 555.816962100014, - "2025-02-01": 542.684741761965, - "2024-12-01": 538.259012959727, - "2024-11-01": 538.067998845719, - "2024-10-01": 538.359636466213, - "2024-09-01": 537.740546078848, - "2024-08-01": 536.879277082651, - "2024-07-01": 536.44267339349, - "2024-06-01": 535.820172039803, - "2024-05-01": 535.63939082476, - "2024-04-01": 534.750834097991, - "2024-03-01": 532.676966574476, - "2024-02-01": 529.25576735394, - "2024-01-01": 526, - "2023-01-01": 523, - "2021-01-01": 520, - "2015-01-01": 520 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[37]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[37]", - "description": null, - "label": "bracket 38" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[37].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[37].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 35808.6292260154, - "2034-02-01": 34991.326677842, - "2033-02-01": 34218.9308630847, - "2032-02-01": 33473.4790883771, - "2031-02-01": 32737.0086603527, - "2030-02-01": 32018.5009256948, - "2029-02-01": 31317.9558844033, - "2028-02-01": 30635.3735364782, - "2027-02-01": 29952.7911885532, - "2026-02-01": 29270.2088406281, - "2025-02-01": 28578.6451460198, - "2024-12-01": 28345.5791995902, - "2024-11-01": 28335.520091305, - "2024-10-01": 28350.8781941333, - "2024-09-01": 28318.2759056732, - "2024-08-01": 28272.9201049229, - "2024-07-01": 28249.9278574138, - "2024-06-01": 28217.1459420201, - "2024-05-01": 28207.6257145358, - "2024-04-01": 28160.8328983162, - "2024-03-01": 28051.6197226482, - "2024-02-01": 27871.4539081828, - "2024-01-01": 27700, - "2023-01-01": 27000, - "2022-01-01": 26300, - "2021-01-01": 25700, - "2015-01-01": 25700 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[37].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[37].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 695.48889976882, - "2034-02-01": 679.61493691982, - "2033-02-01": 664.613169831754, - "2032-02-01": 650.134720200248, - "2031-02-01": 635.83070972093, - "2030-02-01": 621.875577545985, - "2029-02-01": 608.269323675414, - "2028-02-01": 595.011948109216, - "2027-02-01": 581.754572543018, - "2026-02-01": 568.49719697682, - "2025-02-01": 555.065382258436, - "2024-12-01": 550.538686259188, - "2024-11-01": 550.343314408739, - "2024-10-01": 550.641605358978, - "2024-09-01": 550.00839123654, - "2024-08-01": 549.127473517997, - "2024-07-01": 548.680909288399, - "2024-06-01": 548.044206382917, - "2024-05-01": 547.859300881599, - "2024-04-01": 546.950472898706, - "2024-03-01": 544.829292808114, - "2024-02-01": 541.330043415246, - "2024-01-01": 538, - "2023-01-01": 536, - "2022-01-01": 532, - "2021-01-01": 533, - "2015-01-01": 533 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[38]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[38]", - "description": null, - "label": "bracket 39" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[38].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[38].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 35937.9022557122, - "2034-02-01": 35117.6491568234, - "2033-02-01": 34342.4649095219, - "2032-02-01": 33594.3219731727, - "2031-02-01": 32855.192807141, - "2030-02-01": 32134.0911817442, - "2029-02-01": 31431.0170969823, - "2028-02-01": 30745.9705528554, - "2027-02-01": 30060.9240087285, - "2026-02-01": 29375.8774646015, - "2025-02-01": 28681.8171501571, - "2024-12-01": 28447.909810419, - "2024-11-01": 28437.8143876635, - "2024-10-01": 28453.2279349063, - "2024-09-01": 28420.5079486539, - "2024-08-01": 28374.9884085508, - "2024-07-01": 28351.9131565381, - "2024-06-01": 28319.0128948793, - "2024-05-01": 28309.4582983428, - "2024-04-01": 28262.4965549889, - "2024-03-01": 28152.8891079286, - "2024-02-01": 27972.0728753603, - "2024-01-01": 27800, - "2023-01-01": 27100, - "2022-01-01": 26400, - "2021-01-01": 25800, - "2015-01-01": 25800 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[38].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[38].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 711.001663332436, - "2034-02-01": 694.773634397585, - "2033-02-01": 679.437255404209, - "2032-02-01": 664.635866375719, - "2031-02-01": 650.012807335523, - "2030-02-01": 635.746408271918, - "2029-02-01": 621.836669184902, - "2028-02-01": 608.283590074477, - "2027-02-01": 594.730510964052, - "2026-02-01": 581.177431853627, - "2025-02-01": 567.446022754907, - "2024-12-01": 562.81835955865, - "2024-11-01": 562.618629971759, - "2024-10-01": 562.923574251744, - "2024-09-01": 562.276236394233, - "2024-08-01": 561.375669953343, - "2024-07-01": 560.919145183307, - "2024-06-01": 560.26824072603, - "2024-05-01": 560.079210938437, - "2024-04-01": 559.15011169942, - "2024-03-01": 556.981619041752, - "2024-02-01": 553.404319476553, - "2024-01-01": 550, - "2023-01-01": 548, - "2022-01-01": 544, - "2021-01-01": 732, - "2015-01-01": 732 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[39]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[39]", - "description": null, - "label": "bracket 40" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[39].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[39].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 36067.175285409, - "2034-02-01": 35243.9716358048, - "2033-02-01": 34465.998955959, - "2032-02-01": 33715.1648579683, - "2031-02-01": 32973.3769539293, - "2030-02-01": 32249.6814377936, - "2029-02-01": 31544.0783095614, - "2028-02-01": 30856.5675692326, - "2027-02-01": 30169.0568289037, - "2026-02-01": 29481.5460885749, - "2025-02-01": 28784.9891542944, - "2024-12-01": 28550.2404212479, - "2024-11-01": 28540.108684022, - "2024-10-01": 28555.5776756794, - "2024-09-01": 28522.7399916347, - "2024-08-01": 28477.0567121786, - "2024-07-01": 28453.8984556623, - "2024-06-01": 28420.8798477386, - "2024-05-01": 28411.2908821498, - "2024-04-01": 28364.1602116615, - "2024-03-01": 28254.1584932089, - "2024-02-01": 28072.6918425379, - "2024-01-01": 27900, - "2023-01-01": 27200, - "2022-01-01": 26500, - "2021-01-01": 25900, - "2015-01-01": 25900 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[39].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[39].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 727.807157193021, - "2034-02-01": 711.195556665164, - "2033-02-01": 695.496681441036, - "2032-02-01": 680.345441399145, - "2031-02-01": 665.376746417999, - "2030-02-01": 650.773141558345, - "2029-02-01": 636.534626820182, - "2028-02-01": 622.66120220351, - "2027-02-01": 608.787777586839, - "2026-02-01": 594.914352970167, - "2025-02-01": 580.85838329275, - "2024-12-01": 576.1213389664, - "2024-11-01": 575.916888498364, - "2024-10-01": 576.229040552239, - "2024-09-01": 575.566401981733, - "2024-08-01": 574.644549424967, - "2024-07-01": 574.177234069458, - "2024-06-01": 573.510944597736, - "2024-05-01": 573.317446833346, - "2024-04-01": 572.366387066861, - "2024-03-01": 570.146639128193, - "2024-02-01": 566.484785209635, - "2024-01-01": 563, - "2023-01-01": 561, - "2022-01-01": 557, - "2021-01-01": 746, - "2015-01-01": 746 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[40]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[40]", - "description": null, - "label": "bracket 41" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[40].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[40].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 36196.4483151059, - "2034-02-01": 35370.2941147862, - "2033-02-01": 34589.5330023961, - "2032-02-01": 33836.0077427639, - "2031-02-01": 33091.5611007175, - "2030-02-01": 32365.2716938431, - "2029-02-01": 31657.1395221405, - "2028-02-01": 30967.1645856098, - "2027-02-01": 30277.189649079, - "2026-02-01": 29587.2147125483, - "2025-02-01": 28888.1611584316, - "2024-12-01": 28652.5710320767, - "2024-11-01": 28642.4029803805, - "2024-10-01": 28657.9274164524, - "2024-09-01": 28624.9720346155, - "2024-08-01": 28579.1250158065, - "2024-07-01": 28555.8837547865, - "2024-06-01": 28522.7468005979, - "2024-05-01": 28513.1234659568, - "2024-04-01": 28465.8238683341, - "2024-03-01": 28355.4278784892, - "2024-02-01": 28173.3108097154, - "2024-01-01": 28000, - "2023-01-01": 27300, - "2022-01-01": 26600, - "2021-01-01": 26000, - "2015-01-01": 26000 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[40].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[40].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 743.319920756638, - "2034-02-01": 726.35425414293, - "2033-02-01": 710.320767013492, - "2032-02-01": 694.846587574615, - "2031-02-01": 679.558844032592, - "2030-02-01": 664.643972284278, - "2029-02-01": 650.101972329671, - "2028-02-01": 635.932844168772, - "2027-02-01": 621.763716007873, - "2026-02-01": 607.594587846973, - "2025-02-01": 593.239023789221, - "2024-12-01": 588.401012265861, - "2024-11-01": 588.192204061385, - "2024-10-01": 588.511009445005, - "2024-09-01": 587.834247139425, - "2024-08-01": 586.892745860313, - "2024-07-01": 586.415469964367, - "2024-06-01": 585.73497894085, - "2024-05-01": 585.537356890185, - "2024-04-01": 584.566025867576, - "2024-03-01": 582.298965361832, - "2024-02-01": 578.559061270942, - "2024-01-01": 575, - "2023-01-01": 574, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[41]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[41]", - "description": null, - "label": "bracket 42" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[41].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[41].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 36325.7213448027, - "2034-02-01": 35496.6165937675, - "2033-02-01": 34713.0670488332, - "2032-02-01": 33956.8506275594, - "2031-02-01": 33209.7452475058, - "2030-02-01": 32480.8619498925, - "2029-02-01": 31770.2007347196, - "2028-02-01": 31077.7616019869, - "2027-02-01": 30385.3224692543, - "2026-02-01": 29692.8833365217, - "2025-02-01": 28991.3331625689, - "2024-12-01": 28754.9016429056, - "2024-11-01": 28744.697276739, - "2024-10-01": 28760.2771572254, - "2024-09-01": 28727.2040775962, - "2024-08-01": 28681.1933194344, - "2024-07-01": 28657.8690539108, - "2024-06-01": 28624.6137534572, - "2024-05-01": 28614.9560497638, - "2024-04-01": 28567.4875250067, - "2024-03-01": 28456.6972637695, - "2024-02-01": 28273.929776893, - "2024-01-01": 28100, - "2023-01-01": 27400, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[41].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[41].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 760.125414617223, - "2034-02-01": 742.776176410509, - "2033-02-01": 726.380193050318, - "2032-02-01": 710.556162598041, - "2031-02-01": 694.922783115068, - "2030-02-01": 679.670705570705, - "2029-02-01": 664.79992996495, - "2028-02-01": 650.310456297805, - "2027-02-01": 635.820982630659, - "2026-02-01": 621.331508963514, - "2025-02-01": 606.651384327064, - "2024-12-01": 601.703991673611, - "2024-11-01": 601.49046258799, - "2024-10-01": 601.8164757455, - "2024-09-01": 601.124412726925, - "2024-08-01": 600.161625331937, - "2024-07-01": 599.673558850518, - "2024-06-01": 598.977682812556, - "2024-05-01": 598.775592785093, - "2024-04-01": 597.782301235016, - "2024-03-01": 595.463985448273, - "2024-02-01": 591.639527004024, - "2024-01-01": 588, - "2023-01-01": "Infinity", - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[42]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[42]", - "description": null, - "label": "bracket 43" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[42].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[42].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 36454.9943744995, - "2034-02-01": 35622.9390727489, - "2033-02-01": 34836.6010952704, - "2032-02-01": 34077.693512355, - "2031-02-01": 33327.9293942941, - "2030-02-01": 32596.452205942, - "2029-02-01": 31883.2619472986, - "2028-02-01": 31188.3586183641, - "2027-02-01": 30493.4552894296, - "2026-02-01": 29798.551960495, - "2025-02-01": 29094.5051667061, - "2024-12-01": 28857.2322537344, - "2024-11-01": 28846.9915730975, - "2024-10-01": 28862.6268979985, - "2024-09-01": 28829.436120577, - "2024-08-01": 28783.2616230623, - "2024-07-01": 28759.854353035, - "2024-06-01": 28726.4807063165, - "2024-05-01": 28716.7886335708, - "2024-04-01": 28669.1511816794, - "2024-03-01": 28557.9666490498, - "2024-02-01": 28374.5487440705, - "2024-01-01": 28200, - "2015-01-01": 28200 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[42].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.two_or_more_dependents[42].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": "Infinity", - "2034-02-01": "Infinity", - "2033-02-01": "Infinity", - "2032-02-01": "Infinity", - "2031-02-01": "Infinity", - "2030-02-01": "Infinity", - "2029-02-01": "Infinity", - "2028-02-01": "Infinity", - "2027-02-01": "Infinity", - "2026-02-01": "Infinity", - "2025-02-01": "Infinity", - "2024-12-01": "Infinity", - "2024-11-01": "Infinity", - "2024-10-01": "Infinity", - "2024-09-01": "Infinity", - "2024-08-01": "Infinity", - "2024-07-01": "Infinity", - "2024-06-01": "Infinity", - "2024-05-01": "Infinity", - "2024-04-01": "Infinity", - "2024-03-01": "Infinity", - "2024-02-01": "Infinity", - "2024-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent", - "description": "Arkansas reduces the tax liability of low-income surviving spouse filers with up to one dependent to the following amount, in lieu of a standard or itemized deduction.", - "label": "Arkansas low income tax table surviving spouse amount no or one dependent" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[0]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 0, - "2034-02-01": 0, - "2033-02-01": 0, - "2032-02-01": 0, - "2031-02-01": 0, - "2030-02-01": 0, - "2029-02-01": 0, - "2028-02-01": 0, - "2027-02-01": 0, - "2026-02-01": 0, - "2025-02-01": 0, - "2024-12-01": 0, - "2024-11-01": 0, - "2024-10-01": 0, - "2024-09-01": 0, - "2024-08-01": 0, - "2024-07-01": 0, - "2024-06-01": 0, - "2024-05-01": 0, - "2024-04-01": 0, - "2024-03-01": 0, - "2024-02-01": 0, - "2024-01-01": 0, - "2023-12-01": 0, - "2023-11-01": 0, - "2023-10-01": 0, - "2023-09-01": 0, - "2023-08-01": 0, - "2023-07-01": 0, - "2023-06-01": 0, - "2023-05-01": 0, - "2023-04-01": 0, - "2023-03-01": 0, - "2023-02-01": 0, - "2023-01-01": 0, - "2022-12-01": 0, - "2022-11-01": 0, - "2022-10-01": 0, - "2022-09-01": 0, - "2022-08-01": 0, - "2022-07-01": 0, - "2022-06-01": 0, - "2022-05-01": 0, - "2022-04-01": 0, - "2022-03-01": 0, - "2022-02-01": 0, - "2022-01-01": 0, - "2021-12-01": 0, - "2021-11-01": 0, - "2021-10-01": 0, - "2021-09-01": 0, - "2021-08-01": 0, - "2021-07-01": 0, - "2021-06-01": 0, - "2021-05-01": 0, - "2021-04-01": 0, - "2021-03-01": 0, - "2021-02-01": 0, - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[0].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 0, - "2034-02-01": 0, - "2033-02-01": 0, - "2032-02-01": 0, - "2031-02-01": 0, - "2030-02-01": 0, - "2029-02-01": 0, - "2028-02-01": 0, - "2027-02-01": 0, - "2026-02-01": 0, - "2025-02-01": 0, - "2024-12-01": 0, - "2024-11-01": 0, - "2024-10-01": 0, - "2024-09-01": 0, - "2024-08-01": 0, - "2024-07-01": 0, - "2024-06-01": 0, - "2024-05-01": 0, - "2024-04-01": 0, - "2024-03-01": 0, - "2024-02-01": 0, - "2024-01-01": 0, - "2023-12-01": 0, - "2023-11-01": 0, - "2023-10-01": 0, - "2023-09-01": 0, - "2023-08-01": 0, - "2023-07-01": 0, - "2023-06-01": 0, - "2023-05-01": 0, - "2023-04-01": 0, - "2023-03-01": 0, - "2023-02-01": 0, - "2023-01-01": 0, - "2022-12-01": 0, - "2022-11-01": 0, - "2022-10-01": 0, - "2022-09-01": 0, - "2022-08-01": 0, - "2022-07-01": 0, - "2022-06-01": 0, - "2022-05-01": 0, - "2022-04-01": 0, - "2022-03-01": 0, - "2022-02-01": 0, - "2022-01-01": 0, - "2021-12-01": 0, - "2021-11-01": 0, - "2021-10-01": 0, - "2021-09-01": 0, - "2021-08-01": 0, - "2021-07-01": 0, - "2021-06-01": 0, - "2021-05-01": 0, - "2021-04-01": 0, - "2021-03-01": 0, - "2021-02-01": 0, - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[1]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 26219.1558831063, - "2034-02-01": 25620.7251870033, - "2033-02-01": 25055.1752983785, - "2032-02-01": 24509.3538942406, - "2031-02-01": 23970.1086515983, - "2030-02-01": 23444.0157319473, - "2029-02-01": 22931.0751352876, - "2028-02-01": 22431.2868616192, - "2027-02-01": 21931.4985879507, - "2026-02-01": 21431.7103142823, - "2025-02-01": 20925.3458791182, - "2024-12-01": 20754.6944883064, - "2024-11-01": 20747.3291874313, - "2024-10-01": 20758.5744235888, - "2024-09-01": 20734.7029573597, - "2024-08-01": 20701.4933418067, - "2024-07-01": 20684.6583683779, - "2024-06-01": 20660.6553789188, - "2024-05-01": 20653.6846477334, - "2024-04-01": 20619.4228463412, - "2024-03-01": 20539.4567225542, - "2024-02-01": 20407.5389229517, - "2024-01-01": 20282, - "2023-01-01": 19691, - "2022-01-01": 19117, - "2021-01-01": 18560, - "2015-01-01": 18560 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[1].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 84.0274693029243, - "2034-02-01": 82.1096113378964, - "2033-02-01": 80.2971301841338, - "2032-02-01": 78.5478751171304, - "2031-02-01": 76.81969541238, - "2030-02-01": 75.1336664321357, - "2029-02-01": 73.4897881763975, - "2028-02-01": 71.8880606451655, - "2027-02-01": 70.2863331139334, - "2026-02-01": 68.6846055827013, - "2025-02-01": 67.0618026892162, - "2024-12-01": 66.5148970387495, - "2024-11-01": 66.4912926330261, - "2024-10-01": 66.5273315024788, - "2024-09-01": 66.4508279375002, - "2024-08-01": 66.3443973581223, - "2024-07-01": 66.2904444307545, - "2024-06-01": 66.2135193585308, - "2024-05-01": 66.1911794745426, - "2024-04-01": 66.0813768372042, - "2024-03-01": 65.8251004322071, - "2024-02-01": 65.4023286654108, - "2024-01-01": 65, - "2023-01-01": 64, - "2021-01-01": 62, - "2015-01-01": 62 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[2]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 26242.4250284517, - "2034-02-01": 25643.46323322, - "2033-02-01": 25077.4114267372, - "2032-02-01": 24531.1056135038, - "2031-02-01": 23991.3817980202, - "2030-02-01": 23464.8219780362, - "2029-02-01": 22951.4261535518, - "2028-02-01": 22451.1943245671, - "2027-02-01": 21950.9624955823, - "2026-02-01": 21450.7306665975, - "2025-02-01": 20943.9168398629, - "2024-12-01": 20773.1139982556, - "2024-11-01": 20765.7421607758, - "2024-10-01": 20776.997376928, - "2024-09-01": 20753.1047250962, - "2024-08-01": 20719.8656364597, - "2024-07-01": 20703.0157222202, - "2024-06-01": 20678.9914304335, - "2024-05-01": 20672.0145128187, - "2024-04-01": 20637.7223045422, - "2024-03-01": 20557.6852119047, - "2024-02-01": 20425.6503370437, - "2024-01-01": 20300, - "2023-01-01": 19700, - "2022-01-01": 19200, - "2021-01-01": 18600, - "2015-01-01": 18600 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[2].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 96.954772272605, - "2034-02-01": 94.7418592360343, - "2033-02-01": 92.6505348278467, - "2032-02-01": 90.6321635966889, - "2031-02-01": 88.6381100912077, - "2030-02-01": 86.6926920370797, - "2029-02-01": 84.7959094343049, - "2028-02-01": 82.9477622828833, - "2027-02-01": 81.0996151314616, - "2026-02-01": 79.25146798004, - "2025-02-01": 77.3790031029418, - "2024-12-01": 76.747958121634, - "2024-11-01": 76.7207222688762, - "2024-10-01": 76.7623055797832, - "2024-09-01": 76.6740322355772, - "2024-08-01": 76.5512277209103, - "2024-07-01": 76.4889743431782, - "2024-06-01": 76.4002146444587, - "2024-05-01": 76.3744378552415, - "2024-04-01": 76.2477425044664, - "2024-03-01": 75.9520389602389, - "2024-02-01": 75.4642253831663, - "2024-01-01": 75, - "2023-01-01": 73, - "2022-01-01": 72, - "2021-01-01": 71, - "2015-01-01": 71 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[3]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 26371.6980581485, - "2034-02-01": 25769.7857122013, - "2033-02-01": 25200.9454731743, - "2032-02-01": 24651.9484982994, - "2031-02-01": 24109.5659448085, - "2030-02-01": 23580.4122340857, - "2029-02-01": 23064.4873661309, - "2028-02-01": 22561.7913409442, - "2027-02-01": 22059.0953157576, - "2026-02-01": 21556.3992905709, - "2025-02-01": 21047.0888440002, - "2024-12-01": 20875.4446090845, - "2024-11-01": 20868.0364571343, - "2024-10-01": 20879.347117701, - "2024-09-01": 20855.336768077, - "2024-08-01": 20821.9339400876, - "2024-07-01": 20805.0010213445, - "2024-06-01": 20780.8583832928, - "2024-05-01": 20773.8470966257, - "2024-04-01": 20739.3859612149, - "2024-03-01": 20658.954597185, - "2024-02-01": 20526.2693042212, - "2024-01-01": 20400, - "2023-01-01": 19800, - "2022-01-01": 19300, - "2021-01-01": 18700, - "2015-01-01": 18700 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[3].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 108.589344945318, - "2034-02-01": 106.110882344358, - "2033-02-01": 103.768599007188, - "2032-02-01": 101.508023228292, - "2031-02-01": 99.2746833021526, - "2030-02-01": 97.0958150815292, - "2029-02-01": 94.9714185664214, - "2028-02-01": 92.9014937568292, - "2027-02-01": 90.831568947237, - "2026-02-01": 88.7616441376448, - "2025-02-01": 86.6644834752948, - "2024-12-01": 85.9577130962301, - "2024-11-01": 85.9272089411414, - "2024-10-01": 85.9737822493572, - "2024-09-01": 85.8749161038464, - "2024-08-01": 85.7373750474196, - "2024-07-01": 85.6676512643596, - "2024-06-01": 85.5682404017937, - "2024-05-01": 85.5393703978704, - "2024-04-01": 85.3974716050023, - "2024-03-01": 85.0662836354676, - "2024-02-01": 84.5199324291463, - "2024-01-01": 84, - "2023-01-01": 82, - "2021-01-01": 81, - "2015-01-01": 81 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[4]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 26500.9710878454, - "2034-02-01": 25896.1081911827, - "2033-02-01": 25324.4795196114, - "2032-02-01": 24772.791383095, - "2031-02-01": 24227.7500915968, - "2030-02-01": 23696.0024901351, - "2029-02-01": 23177.54857871, - "2028-02-01": 22672.3883573214, - "2027-02-01": 22167.2281359328, - "2026-02-01": 21662.0679145443, - "2025-02-01": 21150.2608481374, - "2024-12-01": 20977.7752199133, - "2024-11-01": 20970.3307534928, - "2024-10-01": 20981.6968584741, - "2024-09-01": 20957.5688110578, - "2024-08-01": 20924.0022437155, - "2024-07-01": 20906.9863204687, - "2024-06-01": 20882.725336152, - "2024-05-01": 20875.6796804327, - "2024-04-01": 20841.0496178875, - "2024-03-01": 20760.2239824653, - "2024-02-01": 20626.8882713988, - "2024-01-01": 20500, - "2023-01-01": 19900, - "2022-01-01": 19400, - "2021-01-01": 18800, - "2015-01-01": 18800 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[4].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 120.22391761803, - "2034-02-01": 117.479905452683, - "2033-02-01": 114.88666318653, - "2032-02-01": 112.383882859894, - "2031-02-01": 109.911256513098, - "2030-02-01": 107.498938125979, - "2029-02-01": 105.146927698538, - "2028-02-01": 102.855225230775, - "2027-02-01": 100.563522763012, - "2026-02-01": 98.2718202952496, - "2025-02-01": 95.9499638476478, - "2024-12-01": 95.1674680708262, - "2024-11-01": 95.1336956134065, - "2024-10-01": 95.1852589189312, - "2024-09-01": 95.0757999721157, - "2024-08-01": 94.9235223739288, - "2024-07-01": 94.846328185541, - "2024-06-01": 94.7362661591287, - "2024-05-01": 94.7043029404994, - "2024-04-01": 94.5472007055383, - "2024-03-01": 94.1805283106963, - "2024-02-01": 93.5756394751262, - "2024-01-01": 93, - "2023-01-01": 92, - "2021-01-01": 90, - "2015-01-01": 90 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[5]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 26630.2441175422, - "2034-02-01": 26022.4306701641, - "2033-02-01": 25448.0135660486, - "2032-02-01": 24893.6342678906, - "2031-02-01": 24345.934238385, - "2030-02-01": 23811.5927461846, - "2029-02-01": 23290.6097912891, - "2028-02-01": 22782.9853736986, - "2027-02-01": 22275.3609561081, - "2026-02-01": 21767.7365385177, - "2025-02-01": 21253.4328522747, - "2024-12-01": 21080.1058307421, - "2024-11-01": 21072.6250498513, - "2024-10-01": 21084.0465992471, - "2024-09-01": 21059.8008540385, - "2024-08-01": 21026.0705473434, - "2024-07-01": 21008.971619593, - "2024-06-01": 20984.5922890113, - "2024-05-01": 20977.5122642397, - "2024-04-01": 20942.7132745601, - "2024-03-01": 20861.4933677456, - "2024-02-01": 20727.5072385763, - "2024-01-01": 20600, - "2023-01-01": 20000, - "2022-01-01": 19500, - "2021-01-01": 18900, - "2015-01-01": 18900 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[5].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 133.151220587711, - "2034-02-01": 130.11215335082, - "2033-02-01": 127.240067830243, - "2032-02-01": 124.468171339453, - "2031-02-01": 121.729671191925, - "2030-02-01": 119.057963730923, - "2029-02-01": 116.453048956445, - "2028-02-01": 113.914926868493, - "2027-02-01": 111.376804780541, - "2026-02-01": 108.838682692588, - "2025-02-01": 106.267164261373, - "2024-12-01": 105.400529153711, - "2024-11-01": 105.363125249257, - "2024-10-01": 105.420232996236, - "2024-09-01": 105.299004270193, - "2024-08-01": 105.130352736717, - "2024-07-01": 105.044858097965, - "2024-06-01": 104.922961445057, - "2024-05-01": 104.887561321198, - "2024-04-01": 104.7135663728, - "2024-03-01": 104.307466838728, - "2024-02-01": 103.637536192882, - "2024-01-01": 103, - "2023-01-01": 101, - "2022-01-01": 100, - "2021-01-01": 99, - "2015-01-01": 99 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[6]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[6].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 26759.517147239, - "2034-02-01": 26148.7531491455, - "2033-02-01": 25571.5476124857, - "2032-02-01": 25014.4771526861, - "2031-02-01": 24464.1183851733, - "2030-02-01": 23927.183002234, - "2029-02-01": 23403.6710038681, - "2028-02-01": 22893.5823900758, - "2027-02-01": 22383.4937762834, - "2026-02-01": 21873.405162491, - "2025-02-01": 21356.6048564119, - "2024-12-01": 21182.436441571, - "2024-11-01": 21174.9193462098, - "2024-10-01": 21186.3963400202, - "2024-09-01": 21162.0328970193, - "2024-08-01": 21128.1388509713, - "2024-07-01": 21110.9569187172, - "2024-06-01": 21086.4592418706, - "2024-05-01": 21079.3448480466, - "2024-04-01": 21044.3769312327, - "2024-03-01": 20962.7627530259, - "2024-02-01": 20828.1262057539, - "2024-01-01": 20700, - "2023-01-01": 20100, - "2022-01-01": 19600, - "2021-01-01": 19000, - "2015-01-01": 19000 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[6].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[6].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 144.785793260423, - "2034-02-01": 141.481176459145, - "2033-02-01": 138.358132009584, - "2032-02-01": 135.344030971055, - "2031-02-01": 132.36624440287, - "2030-02-01": 129.461086775372, - "2029-02-01": 126.628558088562, - "2028-02-01": 123.868658342439, - "2027-02-01": 121.108758596316, - "2026-02-01": 118.348858850193, - "2025-02-01": 115.552644633726, - "2024-12-01": 114.610284128307, - "2024-11-01": 114.569611921522, - "2024-10-01": 114.63170966581, - "2024-09-01": 114.499888138462, - "2024-08-01": 114.316500063226, - "2024-07-01": 114.223535019146, - "2024-06-01": 114.090987202392, - "2024-05-01": 114.052493863827, - "2024-04-01": 113.863295473336, - "2024-03-01": 113.421711513957, - "2024-02-01": 112.693243238862, - "2024-01-01": 112, - "2023-01-01": 111, - "2021-01-01": 109, - "2015-01-01": 109 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[7]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[7].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 26888.7901769358, - "2034-02-01": 26275.0756281269, - "2033-02-01": 25695.0816589228, - "2032-02-01": 25135.3200374817, - "2031-02-01": 24582.3025319616, - "2030-02-01": 24042.7732582834, - "2029-02-01": 23516.7322164472, - "2028-02-01": 23004.179406453, - "2027-02-01": 22491.6265964587, - "2026-02-01": 21979.0737864644, - "2025-02-01": 21459.7768605492, - "2024-12-01": 21284.7670523998, - "2024-11-01": 21277.2136425683, - "2024-10-01": 21288.7460807932, - "2024-09-01": 21264.2649400001, - "2024-08-01": 21230.2071545991, - "2024-07-01": 21212.9422178414, - "2024-06-01": 21188.3261947299, - "2024-05-01": 21181.1774318536, - "2024-04-01": 21146.0405879053, - "2024-03-01": 21064.0321383063, - "2024-02-01": 20928.7451729315, - "2024-01-01": 20800, - "2023-01-01": 20200, - "2022-01-01": 19700, - "2021-01-01": 19100, - "2015-01-01": 19100 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[7].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[7].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 157.713096230104, - "2034-02-01": 154.113424357283, - "2033-02-01": 150.711536653297, - "2032-02-01": 147.428319450614, - "2031-02-01": 144.184659081698, - "2030-02-01": 141.020112380316, - "2029-02-01": 137.934679346469, - "2028-02-01": 134.928359980157, - "2027-02-01": 131.922040613844, - "2026-02-01": 128.915721247532, - "2025-02-01": 125.869845047452, - "2024-12-01": 124.843345211191, - "2024-11-01": 124.799041557372, - "2024-10-01": 124.866683743114, - "2024-09-01": 124.723092436539, - "2024-08-01": 124.523330426014, - "2024-07-01": 124.42206493157, - "2024-06-01": 124.277682488319, - "2024-05-01": 124.235752244526, - "2024-04-01": 124.029661140599, - "2024-03-01": 123.548650041989, - "2024-02-01": 122.755139956617, - "2024-01-01": 122, - "2023-01-01": 120, - "2022-01-01": 119, - "2021-01-01": 118, - "2015-01-01": 118 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[8]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[8].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 27018.0632066326, - "2034-02-01": 26401.3981071082, - "2033-02-01": 25818.61570536, - "2032-02-01": 25256.1629222773, - "2031-02-01": 24700.4866787499, - "2030-02-01": 24158.3635143329, - "2029-02-01": 23629.7934290263, - "2028-02-01": 23114.7764228301, - "2027-02-01": 22599.759416634, - "2026-02-01": 22084.7424104378, - "2025-02-01": 21562.9488646865, - "2024-12-01": 21387.0976632287, - "2024-11-01": 21379.5079389268, - "2024-10-01": 21391.0958215663, - "2024-09-01": 21366.4969829808, - "2024-08-01": 21332.275458227, - "2024-07-01": 21314.9275169657, - "2024-06-01": 21290.1931475891, - "2024-05-01": 21283.0100156606, - "2024-04-01": 21247.704244578, - "2024-03-01": 21165.3015235866, - "2024-02-01": 21029.364140109, - "2024-01-01": 20900, - "2023-01-01": 20300, - "2022-01-01": 19800, - "2021-01-01": 19200, - "2015-01-01": 19200 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[8].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[8].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 169.347668902817, - "2034-02-01": 165.482447465607, - "2033-02-01": 161.829600832639, - "2032-02-01": 158.304179082217, - "2031-02-01": 154.821232292643, - "2030-02-01": 151.423235424766, - "2029-02-01": 148.110188478586, - "2028-02-01": 144.882091454103, - "2027-02-01": 141.65399442962, - "2026-02-01": 138.425897405137, - "2025-02-01": 135.155325419805, - "2024-12-01": 134.053100185787, - "2024-11-01": 134.005528229637, - "2024-10-01": 134.078160412688, - "2024-09-01": 133.923976304808, - "2024-08-01": 133.709477752523, - "2024-07-01": 133.600741852751, - "2024-06-01": 133.445708245654, - "2024-05-01": 133.400684787155, - "2024-04-01": 133.179390241135, - "2024-03-01": 132.662894717217, - "2024-02-01": 131.810847002597, - "2024-01-01": 131, - "2023-01-01": 129, - "2021-01-01": 128, - "2015-01-01": 128 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[9]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[9].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 27147.3362363294, - "2034-02-01": 26527.7205860896, - "2033-02-01": 25942.1497517971, - "2032-02-01": 25377.0058070729, - "2031-02-01": 24818.6708255382, - "2030-02-01": 24273.9537703823, - "2029-02-01": 23742.8546416054, - "2028-02-01": 23225.3734392073, - "2027-02-01": 22707.8922368093, - "2026-02-01": 22190.4110344112, - "2025-02-01": 21666.1208688237, - "2024-12-01": 21489.4282740575, - "2024-11-01": 21481.8022352853, - "2024-10-01": 21493.4455623393, - "2024-09-01": 21468.7290259616, - "2024-08-01": 21434.3437618549, - "2024-07-01": 21416.9128160899, - "2024-06-01": 21392.0601004484, - "2024-05-01": 21384.8425994676, - "2024-04-01": 21349.3679012506, - "2024-03-01": 21266.5709088669, - "2024-02-01": 21129.9831072866, - "2024-01-01": 21000, - "2023-01-01": 20400, - "2022-01-01": 19900, - "2021-01-01": 19300, - "2015-01-01": 19300 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[9].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[9].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 180.982241575529, - "2034-02-01": 176.851470573931, - "2033-02-01": 172.947665011981, - "2032-02-01": 169.180038713819, - "2031-02-01": 165.457805503588, - "2030-02-01": 161.826358469215, - "2029-02-01": 158.285697610702, - "2028-02-01": 154.835822928049, - "2027-02-01": 151.385948245395, - "2026-02-01": 147.936073562741, - "2025-02-01": 144.440805792158, - "2024-12-01": 143.262855160384, - "2024-11-01": 143.212014901902, - "2024-10-01": 143.289637082262, - "2024-09-01": 143.124860173077, - "2024-08-01": 142.895625079033, - "2024-07-01": 142.779418773933, - "2024-06-01": 142.613734002989, - "2024-05-01": 142.565617329784, - "2024-04-01": 142.329119341671, - "2024-03-01": 141.777139392446, - "2024-02-01": 140.866554048577, - "2024-01-01": 140, - "2023-01-01": 139, - "2021-01-01": 137, - "2015-01-01": 137 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[10]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[10]", - "description": null, - "label": "bracket 11" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[10].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[10].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 27276.6092660262, - "2034-02-01": 26654.043065071, - "2033-02-01": 26065.6837982342, - "2032-02-01": 25497.8486918685, - "2031-02-01": 24936.8549723264, - "2030-02-01": 24389.5440264318, - "2029-02-01": 23855.9158541844, - "2028-02-01": 23335.9704555845, - "2027-02-01": 22816.0250569845, - "2026-02-01": 22296.0796583846, - "2025-02-01": 21769.292872961, - "2024-12-01": 21591.7588848864, - "2024-11-01": 21584.0965316439, - "2024-10-01": 21595.7953031123, - "2024-09-01": 21570.9610689424, - "2024-08-01": 21536.4120654828, - "2024-07-01": 21518.8981152141, - "2024-06-01": 21493.9270533077, - "2024-05-01": 21486.6751832746, - "2024-04-01": 21451.0315579232, - "2024-03-01": 21367.8402941472, - "2024-02-01": 21230.6020744641, - "2024-01-01": 21100, - "2023-01-01": 20500, - "2022-01-01": 20000, - "2021-01-01": 19400, - "2015-01-01": 19400 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[10].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[10].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 193.90954454521, - "2034-02-01": 189.483718472069, - "2033-02-01": 185.301069655693, - "2032-02-01": 181.264327193378, - "2031-02-01": 177.276220182415, - "2030-02-01": 173.385384074159, - "2029-02-01": 169.59181886861, - "2028-02-01": 165.895524565767, - "2027-02-01": 162.199230262923, - "2026-02-01": 158.50293596008, - "2025-02-01": 154.758006205884, - "2024-12-01": 153.495916243268, - "2024-11-01": 153.441444537752, - "2024-10-01": 153.524611159566, - "2024-09-01": 153.348064471154, - "2024-08-01": 153.102455441821, - "2024-07-01": 152.977948686356, - "2024-06-01": 152.800429288917, - "2024-05-01": 152.748875710483, - "2024-04-01": 152.495485008933, - "2024-03-01": 151.904077920478, - "2024-02-01": 150.928450766333, - "2024-01-01": 150, - "2023-01-01": 148, - "2022-01-01": 147, - "2021-01-01": 146, - "2015-01-01": 146 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[11]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[11]", - "description": null, - "label": "bracket 12" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[11].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[11].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 27405.882295723, - "2034-02-01": 26780.3655440524, - "2033-02-01": 26189.2178446713, - "2032-02-01": 25618.6915766641, - "2031-02-01": 25055.0391191147, - "2030-02-01": 24505.1342824812, - "2029-02-01": 23968.9770667635, - "2028-02-01": 23446.5674719617, - "2027-02-01": 22924.1578771598, - "2026-02-01": 22401.748282358, - "2025-02-01": 21872.4648770982, - "2024-12-01": 21694.0894957152, - "2024-11-01": 21686.3908280024, - "2024-10-01": 21698.1450438854, - "2024-09-01": 21673.1931119231, - "2024-08-01": 21638.4803691107, - "2024-07-01": 21620.8834143384, - "2024-06-01": 21595.794006167, - "2024-05-01": 21588.5077670816, - "2024-04-01": 21552.6952145958, - "2024-03-01": 21469.1096794275, - "2024-02-01": 21331.2210416417, - "2024-01-01": 21200, - "2023-01-01": 20600, - "2022-01-01": 20100, - "2021-01-01": 19500, - "2015-01-01": 19500 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[11].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[11].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 205.544117217923, - "2034-02-01": 200.852741580393, - "2033-02-01": 196.419133835035, - "2032-02-01": 192.14018682498, - "2031-02-01": 187.91279339336, - "2030-02-01": 183.788507118609, - "2029-02-01": 179.767328000726, - "2028-02-01": 175.849256039713, - "2027-02-01": 171.931184078699, - "2026-02-01": 168.013112117685, - "2025-02-01": 164.043486578237, - "2024-12-01": 162.705671217864, - "2024-11-01": 162.647931210018, - "2024-10-01": 162.73608782914, - "2024-09-01": 162.548948339424, - "2024-08-01": 162.28860276833, - "2024-07-01": 162.156625607538, - "2024-06-01": 161.968455046252, - "2024-05-01": 161.913808253112, - "2024-04-01": 161.645214109469, - "2024-03-01": 161.018322595706, - "2024-02-01": 159.984157812313, - "2024-01-01": 159, - "2023-01-01": 158, - "2021-01-01": 156, - "2015-01-01": 156 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[12]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[12]", - "description": null, - "label": "bracket 13" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[12].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[12].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 27535.1553254198, - "2034-02-01": 26906.6880230338, - "2033-02-01": 26312.7518911085, - "2032-02-01": 25739.5344614596, - "2031-02-01": 25173.223265903, - "2030-02-01": 24620.7245385306, - "2029-02-01": 24082.0382793426, - "2028-02-01": 23557.1644883388, - "2027-02-01": 23032.2906973351, - "2026-02-01": 22507.4169063314, - "2025-02-01": 21975.6368812355, - "2024-12-01": 21796.4201065441, - "2024-11-01": 21788.6851243609, - "2024-10-01": 21800.4947846584, - "2024-09-01": 21775.4251549039, - "2024-08-01": 21740.5486727385, - "2024-07-01": 21722.8687134626, - "2024-06-01": 21697.6609590263, - "2024-05-01": 21690.3403508886, - "2024-04-01": 21654.3588712685, - "2024-03-01": 21570.3790647079, - "2024-02-01": 21431.8400088192, - "2024-01-01": 21300, - "2023-01-01": 20700, - "2022-01-01": 20200, - "2021-01-01": 19600, - "2015-01-01": 19600 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[12].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[12].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 218.471420187603, - "2034-02-01": 213.484989478531, - "2033-02-01": 208.772538478748, - "2032-02-01": 204.224475304539, - "2031-02-01": 199.731208072188, - "2030-02-01": 195.347532723553, - "2029-02-01": 191.073449258634, - "2028-02-01": 186.90895767743, - "2027-02-01": 182.744466096227, - "2026-02-01": 178.579974515023, - "2025-02-01": 174.360686991962, - "2024-12-01": 172.938732300749, - "2024-11-01": 172.877360845868, - "2024-10-01": 172.971061906445, - "2024-09-01": 172.772152637501, - "2024-08-01": 172.495433131118, - "2024-07-01": 172.355155519962, - "2024-06-01": 172.15515033218, - "2024-05-01": 172.097066633811, - "2024-04-01": 171.811579776731, - "2024-03-01": 171.145261123738, - "2024-02-01": 170.046054530068, - "2024-01-01": 169, - "2023-01-01": 167, - "2022-01-01": 166, - "2021-01-01": 165, - "2015-01-01": 165 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[13]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[13]", - "description": null, - "label": "bracket 14" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[13].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[13].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 27664.4283551166, - "2034-02-01": 27033.0105020151, - "2033-02-01": 26436.2859375456, - "2032-02-01": 25860.3773462552, - "2031-02-01": 25291.4074126913, - "2030-02-01": 24736.3147945801, - "2029-02-01": 24195.0994919217, - "2028-02-01": 23667.761504716, - "2027-02-01": 23140.4235175104, - "2026-02-01": 22613.0855303048, - "2025-02-01": 22078.8088853727, - "2024-12-01": 21898.7507173729, - "2024-11-01": 21890.9794207194, - "2024-10-01": 21902.8445254315, - "2024-09-01": 21877.6571978847, - "2024-08-01": 21842.6169763664, - "2024-07-01": 21824.8540125869, - "2024-06-01": 21799.5279118855, - "2024-05-01": 21792.1729346956, - "2024-04-01": 21756.0225279411, - "2024-03-01": 21671.6484499882, - "2024-02-01": 21532.4589759968, - "2024-01-01": 21400, - "2023-01-01": 20800, - "2022-01-01": 20300, - "2021-01-01": 19700, - "2015-01-01": 19700 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[13].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[13].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 230.105992860316, - "2034-02-01": 224.854012586855, - "2033-02-01": 219.89060265809, - "2032-02-01": 215.100334936142, - "2031-02-01": 210.367781283133, - "2030-02-01": 205.750655768002, - "2029-02-01": 201.24895839075, - "2028-02-01": 196.862689151376, - "2027-02-01": 192.476419912002, - "2026-02-01": 188.090150672628, - "2025-02-01": 183.646167364315, - "2024-12-01": 182.148487275345, - "2024-11-01": 182.083847518133, - "2024-10-01": 182.182538576019, - "2024-09-01": 181.97303650577, - "2024-08-01": 181.681580457627, - "2024-07-01": 181.533832441143, - "2024-06-01": 181.323176089515, - "2024-05-01": 181.26199917644, - "2024-04-01": 180.961308877267, - "2024-03-01": 180.259505798967, - "2024-02-01": 179.101761576048, - "2024-01-01": 178, - "2023-01-01": 176, - "2021-01-01": 175, - "2015-01-01": 175 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[14]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[14]", - "description": null, - "label": "bracket 15" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[14].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[14].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 27793.7013848134, - "2034-02-01": 27159.3329809965, - "2033-02-01": 26559.8199839827, - "2032-02-01": 25981.2202310508, - "2031-02-01": 25409.5915594795, - "2030-02-01": 24851.9050506295, - "2029-02-01": 24308.1607045007, - "2028-02-01": 23778.3585210932, - "2027-02-01": 23248.5563376857, - "2026-02-01": 22718.7541542781, - "2025-02-01": 22181.98088951, - "2024-12-01": 22001.0813282018, - "2024-11-01": 21993.2737170779, - "2024-10-01": 22005.1942662045, - "2024-09-01": 21979.8892408655, - "2024-08-01": 21944.6852799943, - "2024-07-01": 21926.8393117111, - "2024-06-01": 21901.3948647448, - "2024-05-01": 21894.0055185026, - "2024-04-01": 21857.6861846137, - "2024-03-01": 21772.9178352685, - "2024-02-01": 21633.0779431743, - "2024-01-01": 21500, - "2023-01-01": 20900, - "2022-01-01": 20400, - "2021-01-01": 19800, - "2015-01-01": 19800 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[14].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[14].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 241.740565533028, - "2034-02-01": 236.223035695179, - "2033-02-01": 231.008666837431, - "2032-02-01": 225.976194567744, - "2031-02-01": 221.004354494078, - "2030-02-01": 216.153778812452, - "2029-02-01": 211.424467522867, - "2028-02-01": 206.816420625322, - "2027-02-01": 202.208373727778, - "2026-02-01": 197.600326830233, - "2025-02-01": 192.931647736668, - "2024-12-01": 191.358242249941, - "2024-11-01": 191.290334190398, - "2024-10-01": 191.394015245593, - "2024-09-01": 191.173920374039, - "2024-08-01": 190.867727784136, - "2024-07-01": 190.712509362324, - "2024-06-01": 190.49120184685, - "2024-05-01": 190.426931719069, - "2024-04-01": 190.111037977803, - "2024-03-01": 189.373750474196, - "2024-02-01": 188.157468622028, - "2024-01-01": 187, - "2023-01-01": 186, - "2021-01-01": 184, - "2015-01-01": 184 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[15]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[15]", - "description": null, - "label": "bracket 16" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[15].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[15].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 27922.9744145102, - "2034-02-01": 27285.6554599779, - "2033-02-01": 26683.3540304199, - "2032-02-01": 26102.0631158464, - "2031-02-01": 25527.7757062678, - "2030-02-01": 24967.495306679, - "2029-02-01": 24421.2219170798, - "2028-02-01": 23888.9555374704, - "2027-02-01": 23356.689157861, - "2026-02-01": 22824.4227782515, - "2025-02-01": 22285.1528936472, - "2024-12-01": 22103.4119390306, - "2024-11-01": 22095.5680134364, - "2024-10-01": 22107.5440069776, - "2024-09-01": 22082.1212838462, - "2024-08-01": 22046.7535836222, - "2024-07-01": 22028.8246108353, - "2024-06-01": 22003.2618176041, - "2024-05-01": 21995.8381023095, - "2024-04-01": 21959.3498412863, - "2024-03-01": 21874.1872205488, - "2024-02-01": 21733.6969103519, - "2024-01-01": 21600, - "2023-01-01": 21000, - "2022-01-01": 20500, - "2021-01-01": 19900, - "2015-01-01": 19900 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[15].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[15].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 254.667868502709, - "2034-02-01": 248.855283593317, - "2033-02-01": 243.362071481144, - "2032-02-01": 238.060483047303, - "2031-02-01": 232.822769172906, - "2030-02-01": 227.712804417396, - "2029-02-01": 222.730588780774, - "2028-02-01": 217.87612226304, - "2027-02-01": 213.021655745306, - "2026-02-01": 208.167189227572, - "2025-02-01": 203.248848150394, - "2024-12-01": 201.591303332825, - "2024-11-01": 201.519763826248, - "2024-10-01": 201.628989322897, - "2024-09-01": 201.397124672116, - "2024-08-01": 201.074558146924, - "2024-07-01": 200.911039274748, - "2024-06-01": 200.677897132778, - "2024-05-01": 200.610190099768, - "2024-04-01": 200.277403645065, - "2024-03-01": 199.500689002228, - "2024-02-01": 198.219365339784, - "2024-01-01": 197, - "2023-01-01": 195, - "2022-01-01": 194, - "2021-01-01": 193, - "2015-01-01": 193 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[16]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[16]", - "description": null, - "label": "bracket 17" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[16].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[16].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 28052.247444207, - "2034-02-01": 27411.9779389593, - "2033-02-01": 26806.888076857, - "2032-02-01": 26222.906000642, - "2031-02-01": 25645.9598530561, - "2030-02-01": 25083.0855627284, - "2029-02-01": 24534.2831296589, - "2028-02-01": 23999.5525538476, - "2027-02-01": 23464.8219780362, - "2026-02-01": 22930.0914022249, - "2025-02-01": 22388.3248977845, - "2024-12-01": 22205.7425498595, - "2024-11-01": 22197.8623097949, - "2024-10-01": 22209.8937477506, - "2024-09-01": 22184.353326827, - "2024-08-01": 22148.8218872501, - "2024-07-01": 22130.8099099596, - "2024-06-01": 22105.1287704634, - "2024-05-01": 22097.6706861165, - "2024-04-01": 22061.0134979589, - "2024-03-01": 21975.4566058291, - "2024-02-01": 21834.3158775295, - "2024-01-01": 21700, - "2023-01-01": 21100, - "2022-01-01": 20600, - "2021-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[16].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[16].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 266.302441175422, - "2034-02-01": 260.224306701641, - "2033-02-01": 254.480135660486, - "2032-02-01": 248.936342678906, - "2031-02-01": 243.45934238385, - "2030-02-01": 238.115927461846, - "2029-02-01": 232.906097912891, - "2028-02-01": 227.829853736986, - "2027-02-01": 222.753609561081, - "2026-02-01": 217.677365385177, - "2025-02-01": 212.534328522747, - "2024-12-01": 210.801058307421, - "2024-11-01": 210.726250498513, - "2024-10-01": 210.840465992471, - "2024-09-01": 210.598008540385, - "2024-08-01": 210.260705473434, - "2024-07-01": 210.08971619593, - "2024-06-01": 209.845922890113, - "2024-05-01": 209.775122642397, - "2024-04-01": 209.427132745601, - "2024-03-01": 208.614933677456, - "2024-02-01": 207.275072385763, - "2024-01-01": 206, - "2023-01-01": 205, - "2021-01-01": 203, - "2015-01-01": 203 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[17]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[17]", - "description": null, - "label": "bracket 18" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[17].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[17].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 28181.5204739038, - "2034-02-01": 27538.3004179407, - "2033-02-01": 26930.4221232941, - "2032-02-01": 26343.7488854376, - "2031-02-01": 25764.1439998444, - "2030-02-01": 25198.6758187778, - "2029-02-01": 24647.3443422379, - "2028-02-01": 24110.1495702247, - "2027-02-01": 23572.9547982115, - "2026-02-01": 23035.7600261983, - "2025-02-01": 22491.4969019218, - "2024-12-01": 22308.0731606883, - "2024-11-01": 22300.1566061534, - "2024-10-01": 22312.2434885237, - "2024-09-01": 22286.5853698078, - "2024-08-01": 22250.8901908779, - "2024-07-01": 22232.7952090838, - "2024-06-01": 22206.9957233227, - "2024-05-01": 22199.5032699235, - "2024-04-01": 22162.6771546316, - "2024-03-01": 22076.7259911094, - "2024-02-01": 21934.934844707, - "2024-01-01": 21800, - "2023-01-01": 21200, - "2022-01-01": 20700, - "2021-01-01": 20100, - "2015-01-01": 20100 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[17].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[17].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 279.229744145102, - "2034-02-01": 272.856554599779, - "2033-02-01": 266.833540304199, - "2032-02-01": 261.020631158464, - "2031-02-01": 255.277757062678, - "2030-02-01": 249.67495306679, - "2029-02-01": 244.212219170798, - "2028-02-01": 238.889555374704, - "2027-02-01": 233.56689157861, - "2026-02-01": 228.244227782515, - "2025-02-01": 222.851528936472, - "2024-12-01": 221.034119390306, - "2024-11-01": 220.955680134364, - "2024-10-01": 221.075440069776, - "2024-09-01": 220.821212838462, - "2024-08-01": 220.467535836222, - "2024-07-01": 220.288246108353, - "2024-06-01": 220.032618176041, - "2024-05-01": 219.958381023095, - "2024-04-01": 219.593498412863, - "2024-03-01": 218.741872205488, - "2024-02-01": 217.336969103519, - "2024-01-01": 216, - "2023-01-01": 214, - "2022-01-01": 213, - "2021-01-01": 212, - "2015-01-01": 212 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[18]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[18]", - "description": null, - "label": "bracket 19" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[18].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[18].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 28310.7935036006, - "2034-02-01": 27664.622896922, - "2033-02-01": 27053.9561697312, - "2032-02-01": 26464.5917702332, - "2031-02-01": 25882.3281466326, - "2030-02-01": 25314.2660748273, - "2029-02-01": 24760.405554817, - "2028-02-01": 24220.7465866019, - "2027-02-01": 23681.0876183868, - "2026-02-01": 23141.4286501717, - "2025-02-01": 22594.668906059, - "2024-12-01": 22410.4037715171, - "2024-11-01": 22402.4509025119, - "2024-10-01": 22414.5932292967, - "2024-09-01": 22388.8174127885, - "2024-08-01": 22352.9584945058, - "2024-07-01": 22334.7805082081, - "2024-06-01": 22308.8626761819, - "2024-05-01": 22301.3358537305, - "2024-04-01": 22264.3408113042, - "2024-03-01": 22177.9953763898, - "2024-02-01": 22035.5538118846, - "2024-01-01": 21900, - "2023-01-01": 21300, - "2022-01-01": 20800, - "2021-01-01": 20200, - "2015-01-01": 20200 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[18].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[18].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 290.864316817815, - "2034-02-01": 284.225577708103, - "2033-02-01": 277.95160448354, - "2032-02-01": 271.896490790067, - "2031-02-01": 265.914330273623, - "2030-02-01": 260.078076111239, - "2029-02-01": 254.387728302915, - "2028-02-01": 248.84328684865, - "2027-02-01": 243.298845394385, - "2026-02-01": 237.75440394012, - "2025-02-01": 232.137009308825, - "2024-12-01": 230.243874364902, - "2024-11-01": 230.162166806629, - "2024-10-01": 230.28691673935, - "2024-09-01": 230.022096706732, - "2024-08-01": 229.653683162731, - "2024-07-01": 229.466923029535, - "2024-06-01": 229.200643933376, - "2024-05-01": 229.123313565724, - "2024-04-01": 228.743227513399, - "2024-03-01": 227.856116880717, - "2024-02-01": 226.392676149499, - "2024-01-01": 225, - "2023-01-01": 223, - "2021-01-01": 222, - "2015-01-01": 222 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[19]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[19]", - "description": null, - "label": "bracket 20" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[19].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[19].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 28440.0665332975, - "2034-02-01": 27790.9453759034, - "2033-02-01": 27177.4902161684, - "2032-02-01": 26585.4346550287, - "2031-02-01": 26000.5122934209, - "2030-02-01": 25429.8563308767, - "2029-02-01": 24873.4667673961, - "2028-02-01": 24331.3436029791, - "2027-02-01": 23789.2204385621, - "2026-02-01": 23247.0972741451, - "2025-02-01": 22697.8409101963, - "2024-12-01": 22512.734382346, - "2024-11-01": 22504.7451988704, - "2024-10-01": 22516.9429700697, - "2024-09-01": 22491.0494557693, - "2024-08-01": 22455.0267981337, - "2024-07-01": 22436.7658073323, - "2024-06-01": 22410.7296290412, - "2024-05-01": 22403.1684375375, - "2024-04-01": 22366.0044679768, - "2024-03-01": 22279.2647616701, - "2024-02-01": 22136.1727790621, - "2024-01-01": 22000, - "2023-01-01": 21400, - "2022-01-01": 20900, - "2021-01-01": 20300, - "2015-01-01": 20300 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[19].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[19].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 302.498889490527, - "2034-02-01": 295.594600816427, - "2033-02-01": 289.069668662882, - "2032-02-01": 282.772350421669, - "2031-02-01": 276.550903484568, - "2030-02-01": 270.481199155689, - "2029-02-01": 264.563237435031, - "2028-02-01": 258.797018322596, - "2027-02-01": 253.03079921016, - "2026-02-01": 247.264580097725, - "2025-02-01": 241.422489681178, - "2024-12-01": 239.453629339498, - "2024-11-01": 239.368653478894, - "2024-10-01": 239.498393408924, - "2024-09-01": 239.222980575001, - "2024-08-01": 238.83983048924, - "2024-07-01": 238.645599950716, - "2024-06-01": 238.368669690711, - "2024-05-01": 238.288246108353, - "2024-04-01": 237.892956613935, - "2024-03-01": 236.970361555945, - "2024-02-01": 235.448383195479, - "2024-01-01": 234, - "2023-01-01": 233, - "2021-01-01": 231, - "2015-01-01": 231 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[20]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[20]", - "description": null, - "label": "bracket 21" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[20].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[20].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 28569.3395629943, - "2034-02-01": 27917.2678548848, - "2033-02-01": 27301.0242626055, - "2032-02-01": 26706.2775398243, - "2031-02-01": 26118.6964402092, - "2030-02-01": 25545.4465869261, - "2029-02-01": 24986.5279799752, - "2028-02-01": 24441.9406193563, - "2027-02-01": 23897.3532587374, - "2026-02-01": 23352.7658981185, - "2025-02-01": 22801.0129143335, - "2024-12-01": 22615.0649931748, - "2024-11-01": 22607.0394952289, - "2024-10-01": 22619.2927108428, - "2024-09-01": 22593.2814987501, - "2024-08-01": 22557.0951017616, - "2024-07-01": 22538.7511064565, - "2024-06-01": 22512.5965819005, - "2024-05-01": 22505.0010213445, - "2024-04-01": 22467.6681246494, - "2024-03-01": 22380.5341469504, - "2024-02-01": 22236.7917462397, - "2024-01-01": 22100, - "2023-01-01": 21500, - "2022-01-01": 21000, - "2021-01-01": 20400, - "2015-01-01": 20400 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[20].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[20].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 315.426192460208, - "2034-02-01": 308.226848714565, - "2033-02-01": 301.423073306595, - "2032-02-01": 294.856638901228, - "2031-02-01": 288.369318163396, - "2030-02-01": 282.040224760633, - "2029-02-01": 275.869358692938, - "2028-02-01": 269.856719960314, - "2027-02-01": 263.844081227689, - "2026-02-01": 257.831442495063, - "2025-02-01": 251.739690094904, - "2024-12-01": 249.686690422383, - "2024-11-01": 249.598083114744, - "2024-10-01": 249.733367486228, - "2024-09-01": 249.446184873078, - "2024-08-01": 249.046660852028, - "2024-07-01": 248.84412986314, - "2024-06-01": 248.555364976639, - "2024-05-01": 248.471504489052, - "2024-04-01": 248.059322281197, - "2024-03-01": 247.097300083977, - "2024-02-01": 245.510279913234, - "2024-01-01": 244, - "2023-01-01": 242, - "2022-01-01": 241, - "2021-01-01": 240, - "2015-01-01": 240 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[21]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[21]", - "description": null, - "label": "bracket 22" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[21].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[21].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 28698.6125926911, - "2034-02-01": 28043.5903338662, - "2033-02-01": 27424.5583090426, - "2032-02-01": 26827.1204246199, - "2031-02-01": 26236.8805869975, - "2030-02-01": 25661.0368429756, - "2029-02-01": 25099.5891925542, - "2028-02-01": 24552.5376357334, - "2027-02-01": 24005.4860789126, - "2026-02-01": 23458.4345220918, - "2025-02-01": 22904.1849184708, - "2024-12-01": 22717.3956040037, - "2024-11-01": 22709.3337915874, - "2024-10-01": 22721.6424516158, - "2024-09-01": 22695.5135417308, - "2024-08-01": 22659.1634053895, - "2024-07-01": 22640.7364055808, - "2024-06-01": 22614.4635347598, - "2024-05-01": 22606.8336051515, - "2024-04-01": 22569.331781322, - "2024-03-01": 22481.8035322307, - "2024-02-01": 22337.4107134172, - "2024-01-01": 22200, - "2023-01-01": 21600, - "2022-01-01": 21100, - "2021-01-01": 20500, - "2015-01-01": 20500 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[21].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[21].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 327.060765132921, - "2034-02-01": 319.595871822889, - "2033-02-01": 312.541137485936, - "2032-02-01": 305.732498532831, - "2031-02-01": 299.005891374341, - "2030-02-01": 292.443347805082, - "2029-02-01": 286.044867825055, - "2028-02-01": 279.81045143426, - "2027-02-01": 273.576035043464, - "2026-02-01": 267.341618652668, - "2025-02-01": 261.025170467257, - "2024-12-01": 258.896445396979, - "2024-11-01": 258.804569787009, - "2024-10-01": 258.944844155802, - "2024-09-01": 258.647068741347, - "2024-08-01": 258.232808178538, - "2024-07-01": 258.022806784321, - "2024-06-01": 257.723390733974, - "2024-05-01": 257.636437031681, - "2024-04-01": 257.209051381733, - "2024-03-01": 256.211544759206, - "2024-02-01": 254.565986959214, - "2024-01-01": 253, - "2023-01-01": 252, - "2021-01-01": 250, - "2015-01-01": 250 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[22]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[22]", - "description": null, - "label": "bracket 23" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[22].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[22].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 28827.8856223879, - "2034-02-01": 28169.9128128475, - "2033-02-01": 27548.0923554798, - "2032-02-01": 26947.9633094155, - "2031-02-01": 26355.0647337858, - "2030-02-01": 25776.627099025, - "2029-02-01": 25212.6504051333, - "2028-02-01": 24663.1346521106, - "2027-02-01": 24113.6188990879, - "2026-02-01": 23564.1031460652, - "2025-02-01": 23007.356922608, - "2024-12-01": 22819.7262148325, - "2024-11-01": 22811.6280879459, - "2024-10-01": 22823.9921923889, - "2024-09-01": 22797.7455847116, - "2024-08-01": 22761.2317090173, - "2024-07-01": 22742.721704705, - "2024-06-01": 22716.330487619, - "2024-05-01": 22708.6661889585, - "2024-04-01": 22670.9954379947, - "2024-03-01": 22583.072917511, - "2024-02-01": 22438.0296805948, - "2024-01-01": 22300, - "2023-01-01": 21700, - "2022-01-01": 21200, - "2021-01-01": 20600, - "2015-01-01": 20600 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[22].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[22].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 339.988068102601, - "2034-02-01": 332.228119721027, - "2033-02-01": 324.894542129649, - "2032-02-01": 317.816787012389, - "2031-02-01": 310.824306053168, - "2030-02-01": 304.002373410026, - "2029-02-01": 297.350989082962, - "2028-02-01": 290.870153071977, - "2027-02-01": 284.389317060992, - "2026-02-01": 277.908481050007, - "2025-02-01": 271.342370880983, - "2024-12-01": 269.129506479863, - "2024-11-01": 269.033999422859, - "2024-10-01": 269.179818233106, - "2024-09-01": 268.870273039424, - "2024-08-01": 268.439638541326, - "2024-07-01": 268.221336696745, - "2024-06-01": 267.910086019902, - "2024-05-01": 267.81969541238, - "2024-04-01": 267.375417048995, - "2024-03-01": 266.338483287238, - "2024-02-01": 264.62788367697, - "2024-01-01": 263, - "2023-01-01": 261, - "2022-01-01": 260, - "2021-01-01": 259, - "2015-01-01": 259 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[23]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[23]", - "description": null, - "label": "bracket 24" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[23].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[23].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 28957.1586520847, - "2034-02-01": 28296.2352918289, - "2033-02-01": 27671.6264019169, - "2032-02-01": 27068.8061942111, - "2031-02-01": 26473.248880574, - "2030-02-01": 25892.2173550745, - "2029-02-01": 25325.7116177124, - "2028-02-01": 24773.7316684878, - "2027-02-01": 24221.7517192632, - "2026-02-01": 23669.7717700386, - "2025-02-01": 23110.5289267453, - "2024-12-01": 22922.0568256614, - "2024-11-01": 22913.9223843044, - "2024-10-01": 22926.3419331619, - "2024-09-01": 22899.9776276924, - "2024-08-01": 22863.3000126452, - "2024-07-01": 22844.7070038292, - "2024-06-01": 22818.1974404783, - "2024-05-01": 22810.4987727654, - "2024-04-01": 22772.6590946673, - "2024-03-01": 22684.3423027914, - "2024-02-01": 22538.6486477723, - "2024-01-01": 22400, - "2023-01-01": 21800, - "2022-01-01": 21300, - "2021-01-01": 20700, - "2015-01-01": 20700 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[23].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[23].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 351.622640775314, - "2034-02-01": 343.597142829351, - "2033-02-01": 336.012606308991, - "2032-02-01": 328.692646643992, - "2031-02-01": 321.460879264113, - "2030-02-01": 314.405496454476, - "2029-02-01": 307.526498215079, - "2028-02-01": 300.823884545923, - "2027-02-01": 294.121270876768, - "2026-02-01": 287.418657207612, - "2025-02-01": 280.627851253336, - "2024-12-01": 278.339261454459, - "2024-11-01": 278.240486095125, - "2024-10-01": 278.39129490268, - "2024-09-01": 278.071156907693, - "2024-08-01": 277.625785867835, - "2024-07-01": 277.400013617926, - "2024-06-01": 277.078111777237, - "2024-05-01": 276.984627955009, - "2024-04-01": 276.525146149531, - "2024-03-01": 275.452727962466, - "2024-02-01": 273.68359072295, - "2024-01-01": 272, - "2023-01-01": 270, - "2021-01-01": 269, - "2015-01-01": 269 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[24]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[24]", - "description": null, - "label": "bracket 25" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[24].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[24].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 29086.4316817815, - "2034-02-01": 28422.5577708103, - "2033-02-01": 27795.160448354, - "2032-02-01": 27189.6490790067, - "2031-02-01": 26591.4330273623, - "2030-02-01": 26007.8076111239, - "2029-02-01": 25438.7728302915, - "2028-02-01": 24884.328684865, - "2027-02-01": 24329.8845394385, - "2026-02-01": 23775.440394012, - "2025-02-01": 23213.7009308825, - "2024-12-01": 23024.3874364902, - "2024-11-01": 23016.2166806629, - "2024-10-01": 23028.691673935, - "2024-09-01": 23002.2096706732, - "2024-08-01": 22965.3683162731, - "2024-07-01": 22946.6923029535, - "2024-06-01": 22920.0643933376, - "2024-05-01": 22912.3313565724, - "2024-04-01": 22874.3227513399, - "2024-03-01": 22785.6116880717, - "2024-02-01": 22639.2676149499, - "2024-01-01": 22500, - "2023-01-01": 21900, - "2022-01-01": 21400, - "2021-01-01": 20800, - "2015-01-01": 20800 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[24].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[24].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 363.257213448027, - "2034-02-01": 354.966165937675, - "2033-02-01": 347.130670488332, - "2032-02-01": 339.568506275594, - "2031-02-01": 332.097452475058, - "2030-02-01": 324.808619498925, - "2029-02-01": 317.702007347196, - "2028-02-01": 310.777616019869, - "2027-02-01": 303.853224692543, - "2026-02-01": 296.928833365217, - "2025-02-01": 289.913331625689, - "2024-12-01": 287.549016429056, - "2024-11-01": 287.44697276739, - "2024-10-01": 287.602771572254, - "2024-09-01": 287.272040775962, - "2024-08-01": 286.811933194344, - "2024-07-01": 286.578690539108, - "2024-06-01": 286.246137534572, - "2024-05-01": 286.149560497638, - "2024-04-01": 285.674875250067, - "2024-03-01": 284.566972637695, - "2024-02-01": 282.73929776893, - "2024-01-01": 281, - "2023-01-01": 280, - "2021-01-01": 278, - "2015-01-01": 278 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[25]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[25]", - "description": null, - "label": "bracket 26" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[25].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[25].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 29215.7047114783, - "2034-02-01": 28548.8802497917, - "2033-02-01": 27918.6944947911, - "2032-02-01": 27310.4919638023, - "2031-02-01": 26709.6171741506, - "2030-02-01": 26123.3978671733, - "2029-02-01": 25551.8340428705, - "2028-02-01": 24994.9257012422, - "2027-02-01": 24438.0173596138, - "2026-02-01": 23881.1090179854, - "2025-02-01": 23316.8729350198, - "2024-12-01": 23126.7180473191, - "2024-11-01": 23118.5109770214, - "2024-10-01": 23131.041414708, - "2024-09-01": 23104.4417136539, - "2024-08-01": 23067.436619901, - "2024-07-01": 23048.6776020777, - "2024-06-01": 23021.9313461969, - "2024-05-01": 23014.1639403794, - "2024-04-01": 22975.9864080125, - "2024-03-01": 22886.881073352, - "2024-02-01": 22739.8865821275, - "2024-01-01": 22600, - "2023-01-01": 22000, - "2022-01-01": 21500, - "2021-01-01": 20900, - "2015-01-01": 20900 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[25].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[25].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 376.184516417707, - "2034-02-01": 367.598413835813, - "2033-02-01": 359.484075132045, - "2032-02-01": 351.652794755153, - "2031-02-01": 343.915867153886, - "2030-02-01": 336.367645103869, - "2029-02-01": 329.008128605103, - "2028-02-01": 321.837317657587, - "2027-02-01": 314.666506710071, - "2026-02-01": 307.495695762555, - "2025-02-01": 300.230532039414, - "2024-12-01": 297.78207751194, - "2024-11-01": 297.67640240324, - "2024-10-01": 297.837745649559, - "2024-09-01": 297.495245074039, - "2024-08-01": 297.018763557132, - "2024-07-01": 296.777220451532, - "2024-06-01": 296.4328328205, - "2024-05-01": 296.332818878337, - "2024-04-01": 295.84124091733, - "2024-03-01": 294.693911165727, - "2024-02-01": 292.801194486685, - "2024-01-01": 291, - "2023-01-01": 289, - "2022-01-01": 288, - "2021-01-01": 287, - "2015-01-01": 287 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[26]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[26]", - "description": null, - "label": "bracket 27" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[26].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[26].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 29344.9777411751, - "2034-02-01": 28675.2027287731, - "2033-02-01": 28042.2285412283, - "2032-02-01": 27431.3348485978, - "2031-02-01": 26827.8013209389, - "2030-02-01": 26238.9881232228, - "2029-02-01": 25664.8952554496, - "2028-02-01": 25105.5227176193, - "2027-02-01": 24546.1501797891, - "2026-02-01": 23986.7776419588, - "2025-02-01": 23420.0449391571, - "2024-12-01": 23229.0486581479, - "2024-11-01": 23220.8052733799, - "2024-10-01": 23233.3911554811, - "2024-09-01": 23206.6737566347, - "2024-08-01": 23169.5049235289, - "2024-07-01": 23150.6629012019, - "2024-06-01": 23123.7982990562, - "2024-05-01": 23115.9965241864, - "2024-04-01": 23077.6500646852, - "2024-03-01": 22988.1504586323, - "2024-02-01": 22840.505549305, - "2024-01-01": 22700, - "2023-01-01": 22100, - "2022-01-01": 21600, - "2021-01-01": 21000, - "2015-01-01": 21000 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[26].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[26].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 387.81908909042, - "2034-02-01": 378.967436944137, - "2033-02-01": 370.602139311387, - "2032-02-01": 362.528654386756, - "2031-02-01": 354.552440364831, - "2030-02-01": 346.770768148319, - "2029-02-01": 339.183637737219, - "2028-02-01": 331.791049131533, - "2027-02-01": 324.398460525847, - "2026-02-01": 317.00587192016, - "2025-02-01": 309.516012411767, - "2024-12-01": 306.991832486536, - "2024-11-01": 306.882889075505, - "2024-10-01": 307.049222319133, - "2024-09-01": 306.696128942309, - "2024-08-01": 306.204910883641, - "2024-07-01": 305.955897372713, - "2024-06-01": 305.600858577835, - "2024-05-01": 305.497751420966, - "2024-04-01": 304.990970017866, - "2024-03-01": 303.808155840956, - "2024-02-01": 301.856901532665, - "2024-01-01": 300, - "2023-01-01": 299, - "2021-01-01": 297, - "2015-01-01": 297 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[27]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[27]", - "description": null, - "label": "bracket 28" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[27].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[27].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 29474.2507708719, - "2034-02-01": 28801.5252077544, - "2033-02-01": 28165.7625876654, - "2032-02-01": 27552.1777333934, - "2031-02-01": 26945.9854677271, - "2030-02-01": 26354.5783792722, - "2029-02-01": 25777.9564680287, - "2028-02-01": 25216.1197339965, - "2027-02-01": 24654.2829999643, - "2026-02-01": 24092.4462659322, - "2025-02-01": 23523.2169432943, - "2024-12-01": 23331.3792689767, - "2024-11-01": 23323.0995697384, - "2024-10-01": 23335.7408962541, - "2024-09-01": 23308.9057996155, - "2024-08-01": 23271.5732271567, - "2024-07-01": 23252.6482003262, - "2024-06-01": 23225.6652519154, - "2024-05-01": 23217.8291079934, - "2024-04-01": 23179.3137213578, - "2024-03-01": 23089.4198439126, - "2024-02-01": 22941.1245164826, - "2024-01-01": 22800, - "2023-01-01": 22200, - "2022-01-01": 21700, - "2021-01-01": 21100, - "2015-01-01": 21100 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[27].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[27].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 400.746392060101, - "2034-02-01": 391.599684842275, - "2033-02-01": 382.9555439551, - "2032-02-01": 374.612942866314, - "2031-02-01": 366.370855043658, - "2030-02-01": 358.329793753263, - "2029-02-01": 350.489758995127, - "2028-02-01": 342.850750769251, - "2027-02-01": 335.211742543375, - "2026-02-01": 327.572734317499, - "2025-02-01": 319.833212825493, - "2024-12-01": 317.224893569421, - "2024-11-01": 317.112318711355, - "2024-10-01": 317.284196396437, - "2024-09-01": 316.919333240386, - "2024-08-01": 316.411741246429, - "2024-07-01": 316.154427285137, - "2024-06-01": 315.787553863762, - "2024-05-01": 315.681009801665, - "2024-04-01": 315.157335685128, - "2024-03-01": 313.935094368988, - "2024-02-01": 311.918798250421, - "2024-01-01": 310, - "2023-01-01": 308, - "2022-01-01": 307, - "2021-01-01": 306, - "2015-01-01": 306 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[28]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[28]", - "description": null, - "label": "bracket 29" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[28].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[28].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 29603.5238005687, - "2034-02-01": 28927.8476867358, - "2033-02-01": 28289.2966341025, - "2032-02-01": 27673.020618189, - "2031-02-01": 27064.1696145154, - "2030-02-01": 26470.1686353217, - "2029-02-01": 25891.0176806077, - "2028-02-01": 25326.7167503737, - "2027-02-01": 24762.4158201396, - "2026-02-01": 24198.1148899055, - "2025-02-01": 23626.3889474316, - "2024-12-01": 23433.7098798056, - "2024-11-01": 23425.3938660969, - "2024-10-01": 23438.0906370271, - "2024-09-01": 23411.1378425962, - "2024-08-01": 23373.6415307846, - "2024-07-01": 23354.6334994504, - "2024-06-01": 23327.5322047747, - "2024-05-01": 23319.6616918004, - "2024-04-01": 23280.9773780304, - "2024-03-01": 23190.6892291929, - "2024-02-01": 23041.7434836601, - "2024-01-01": 22900, - "2023-01-01": 22300, - "2022-01-01": 21800, - "2021-01-01": 21200, - "2015-01-01": 21200 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[28].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[28].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 412.380964732813, - "2034-02-01": 402.968707950599, - "2033-02-01": 394.073608134441, - "2032-02-01": 385.488802497917, - "2031-02-01": 377.007428254603, - "2030-02-01": 368.732916797712, - "2029-02-01": 360.665268127243, - "2028-02-01": 352.804482243197, - "2027-02-01": 344.94369635915, - "2026-02-01": 337.082910475104, - "2025-02-01": 329.118693197846, - "2024-12-01": 326.434648544017, - "2024-11-01": 326.31880538362, - "2024-10-01": 326.495673066011, - "2024-09-01": 326.120217108655, - "2024-08-01": 325.597888572939, - "2024-07-01": 325.333104206318, - "2024-06-01": 324.955579621097, - "2024-05-01": 324.845942344294, - "2024-04-01": 324.307064785664, - "2024-03-01": 323.049339044216, - "2024-02-01": 320.974505296401, - "2024-01-01": 319, - "2023-01-01": 317, - "2021-01-01": 316, - "2015-01-01": 316 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[29]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[29]", - "description": null, - "label": "bracket 30" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[29].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[29].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 29732.7968302655, - "2034-02-01": 29054.1701657172, - "2033-02-01": 28412.8306805397, - "2032-02-01": 27793.8635029846, - "2031-02-01": 27182.3537613037, - "2030-02-01": 26585.7588913711, - "2029-02-01": 26004.0788931868, - "2028-02-01": 25437.3137667509, - "2027-02-01": 24870.5486403149, - "2026-02-01": 24303.7835138789, - "2025-02-01": 23729.5609515688, - "2024-12-01": 23536.0404906344, - "2024-11-01": 23527.6881624554, - "2024-10-01": 23540.4403778002, - "2024-09-01": 23513.369885577, - "2024-08-01": 23475.7098344125, - "2024-07-01": 23456.6187985747, - "2024-06-01": 23429.399157634, - "2024-05-01": 23421.4942756074, - "2024-04-01": 23382.641034703, - "2024-03-01": 23291.9586144733, - "2024-02-01": 23142.3624508377, - "2024-01-01": 23000, - "2023-01-01": 22400, - "2022-01-01": 21900, - "2021-01-01": 21300, - "2015-01-01": 21300 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[29].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[29].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 424.015537405526, - "2034-02-01": 414.337731058924, - "2033-02-01": 405.191672313783, - "2032-02-01": 396.364662129519, - "2031-02-01": 387.644001465548, - "2030-02-01": 379.136039842162, - "2029-02-01": 370.84077725936, - "2028-02-01": 362.758213717143, - "2027-02-01": 354.675650174926, - "2026-02-01": 346.593086632708, - "2025-02-01": 338.404173570199, - "2024-12-01": 335.644403518613, - "2024-11-01": 335.525292055885, - "2024-10-01": 335.707149735585, - "2024-09-01": 335.321100976924, - "2024-08-01": 334.784035899448, - "2024-07-01": 334.5117811275, - "2024-06-01": 334.123605378433, - "2024-05-01": 334.010874886923, - "2024-04-01": 333.4567938862, - "2024-03-01": 332.163583719445, - "2024-02-01": 330.030212342381, - "2024-01-01": 328, - "2023-01-01": 327, - "2021-01-01": 325, - "2015-01-01": 325 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[30]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[30]", - "description": null, - "label": "bracket 31" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[30].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[30].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 29862.0698599623, - "2034-02-01": 29180.4926446986, - "2033-02-01": 28536.3647269768, - "2032-02-01": 27914.7063877802, - "2031-02-01": 27300.537908092, - "2030-02-01": 26701.3491474205, - "2029-02-01": 26117.1401057659, - "2028-02-01": 25547.910783128, - "2027-02-01": 24978.6814604902, - "2026-02-01": 24409.4521378523, - "2025-02-01": 23832.7329557061, - "2024-12-01": 23638.3711014633, - "2024-11-01": 23629.9824588139, - "2024-10-01": 23642.7901185732, - "2024-09-01": 23615.6019285578, - "2024-08-01": 23577.7781380404, - "2024-07-01": 23558.6040976989, - "2024-06-01": 23531.2661104933, - "2024-05-01": 23523.3268594144, - "2024-04-01": 23484.3046913756, - "2024-03-01": 23393.2279997536, - "2024-02-01": 23242.9814180152, - "2024-01-01": 23100, - "2023-01-01": 22500, - "2022-01-01": 22000, - "2021-01-01": 21400, - "2015-01-01": 21400 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[30].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[30].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 436.942840375206, - "2034-02-01": 426.969978957061, - "2033-02-01": 417.545076957496, - "2032-02-01": 408.448950609078, - "2031-02-01": 399.462416144376, - "2030-02-01": 390.695065447106, - "2029-02-01": 382.146898517267, - "2028-02-01": 373.817915354861, - "2027-02-01": 365.488932192454, - "2026-02-01": 357.159949030047, - "2025-02-01": 348.721373983924, - "2024-12-01": 345.877464601497, - "2024-11-01": 345.754721691736, - "2024-10-01": 345.94212381289, - "2024-09-01": 345.544305275001, - "2024-08-01": 344.990866262236, - "2024-07-01": 344.710311039923, - "2024-06-01": 344.31030066436, - "2024-05-01": 344.194133267622, - "2024-04-01": 343.623159553462, - "2024-03-01": 342.290522247477, - "2024-02-01": 340.092109060136, - "2024-01-01": 338, - "2023-01-01": 336, - "2022-01-01": 335, - "2021-01-01": 334, - "2015-01-01": 334 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[31]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[31]", - "description": null, - "label": "bracket 32" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[31].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[31].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 29991.3428896591, - "2034-02-01": 29306.81512368, - "2033-02-01": 28659.8987734139, - "2032-02-01": 28035.5492725758, - "2031-02-01": 27418.7220548802, - "2030-02-01": 26816.93940347, - "2029-02-01": 26230.201318345, - "2028-02-01": 25658.5077995052, - "2027-02-01": 25086.8142806655, - "2026-02-01": 24515.1207618257, - "2025-02-01": 23935.9049598433, - "2024-12-01": 23740.7017122921, - "2024-11-01": 23732.2767551724, - "2024-10-01": 23745.1398593463, - "2024-09-01": 23717.8339715385, - "2024-08-01": 23679.8464416683, - "2024-07-01": 23660.5893968231, - "2024-06-01": 23633.1330633525, - "2024-05-01": 23625.1594432214, - "2024-04-01": 23585.9683480483, - "2024-03-01": 23494.4973850339, - "2024-02-01": 23343.6003851928, - "2024-01-01": 23200, - "2023-01-01": 22600, - "2022-01-01": 22100, - "2021-01-01": 21500, - "2015-01-01": 21500 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[31].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[31].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 448.577413047919, - "2034-02-01": 438.339002065386, - "2033-02-01": 428.663141136837, - "2032-02-01": 419.324810240681, - "2031-02-01": 410.098989355321, - "2030-02-01": 401.098188491555, - "2029-02-01": 392.322407649384, - "2028-02-01": 383.771646828807, - "2027-02-01": 375.220886008229, - "2026-02-01": 366.670125187652, - "2025-02-01": 358.006854356277, - "2024-12-01": 355.087219576093, - "2024-11-01": 354.961208364001, - "2024-10-01": 355.153600482464, - "2024-09-01": 354.74518914327, - "2024-08-01": 354.177013588745, - "2024-07-01": 353.888987961105, - "2024-06-01": 353.478326421695, - "2024-05-01": 353.35906581025, - "2024-04-01": 352.772888653998, - "2024-03-01": 351.404766922705, - "2024-02-01": 349.147816106116, - "2024-01-01": 347, - "2023-01-01": 346, - "2021-01-01": 344, - "2015-01-01": 344 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[32]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[32]", - "description": null, - "label": "bracket 33" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[32].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[32].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 30120.6159193559, - "2034-02-01": 29433.1376026613, - "2033-02-01": 28783.432819851, - "2032-02-01": 28156.3921573714, - "2031-02-01": 27536.9062016685, - "2030-02-01": 26932.5296595194, - "2029-02-01": 26343.262530924, - "2028-02-01": 25769.1048158824, - "2027-02-01": 25194.9471008408, - "2026-02-01": 24620.7893857991, - "2025-02-01": 24039.0769639806, - "2024-12-01": 23843.032323121, - "2024-11-01": 23834.5710515309, - "2024-10-01": 23847.4896001193, - "2024-09-01": 23820.0660145193, - "2024-08-01": 23781.9147452961, - "2024-07-01": 23762.5746959474, - "2024-06-01": 23735.0000162118, - "2024-05-01": 23726.9920270283, - "2024-04-01": 23687.6320047209, - "2024-03-01": 23595.7667703142, - "2024-02-01": 23444.2193523703, - "2024-01-01": 23300, - "2023-01-01": 22700, - "2022-01-01": 22200, - "2021-01-01": 21600, - "2015-01-01": 21600 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[32].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[32].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 461.5047160176, - "2034-02-01": 450.971249963523, - "2033-02-01": 441.01654578055, - "2032-02-01": 431.409098720239, - "2031-02-01": 421.917404034149, - "2030-02-01": 412.657214096499, - "2029-02-01": 403.628528907291, - "2028-02-01": 394.831348466524, - "2027-02-01": 386.034168025757, - "2026-02-01": 377.23698758499, - "2025-02-01": 368.324054770003, - "2024-12-01": 365.320280658978, - "2024-11-01": 365.190637999851, - "2024-10-01": 365.388574559768, - "2024-09-01": 364.968393441347, - "2024-08-01": 364.383843951533, - "2024-07-01": 364.087517873528, - "2024-06-01": 363.665021707623, - "2024-05-01": 363.542324190949, - "2024-04-01": 362.93925432126, - "2024-03-01": 361.531705450737, - "2024-02-01": 359.209712823872, - "2024-01-01": 357, - "2023-01-01": 355, - "2022-01-01": 354, - "2021-01-01": 353, - "2015-01-01": 353 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[33]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[33]", - "description": null, - "label": "bracket 34" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[33].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[33].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 30249.8889490527, - "2034-02-01": 29559.4600816427, - "2033-02-01": 28906.9668662882, - "2032-02-01": 28277.2350421669, - "2031-02-01": 27655.0903484568, - "2030-02-01": 27048.1199155689, - "2029-02-01": 26456.3237435031, - "2028-02-01": 25879.7018322596, - "2027-02-01": 25303.079921016, - "2026-02-01": 24726.4580097725, - "2025-02-01": 24142.2489681178, - "2024-12-01": 23945.3629339498, - "2024-11-01": 23936.8653478894, - "2024-10-01": 23949.8393408924, - "2024-09-01": 23922.2980575001, - "2024-08-01": 23883.983048924, - "2024-07-01": 23864.5599950716, - "2024-06-01": 23836.8669690711, - "2024-05-01": 23828.8246108353, - "2024-04-01": 23789.2956613935, - "2024-03-01": 23697.0361555945, - "2024-02-01": 23544.8383195479, - "2024-01-01": 23400, - "2023-01-01": 22800, - "2022-01-01": 22300, - "2021-01-01": 21700, - "2015-01-01": 21700 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[33].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[33].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 473.139288690312, - "2034-02-01": 462.340273071848, - "2033-02-01": 452.134609959892, - "2032-02-01": 442.284958351842, - "2031-02-01": 432.553977245094, - "2030-02-01": 423.060337140949, - "2029-02-01": 413.804038039408, - "2028-02-01": 404.78507994047, - "2027-02-01": 395.766121841533, - "2026-02-01": 386.747163742595, - "2025-02-01": 377.609535142356, - "2024-12-01": 374.530035633574, - "2024-11-01": 374.397124672116, - "2024-10-01": 374.600051229342, - "2024-09-01": 374.169277309617, - "2024-08-01": 373.569991278042, - "2024-07-01": 373.26619479471, - "2024-06-01": 372.833047464958, - "2024-05-01": 372.707256733578, - "2024-04-01": 372.088983421796, - "2024-03-01": 370.645950125966, - "2024-02-01": 368.265419869852, - "2024-01-01": 366, - "2023-01-01": 364, - "2021-01-01": 363, - "2015-01-01": 363 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[34]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[34]", - "description": null, - "label": "bracket 35" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[34].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[34].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 30379.1619787496, - "2034-02-01": 29685.7825606241, - "2033-02-01": 29030.5009127253, - "2032-02-01": 28398.0779269625, - "2031-02-01": 27773.2744952451, - "2030-02-01": 27163.7101716183, - "2029-02-01": 26569.3849560822, - "2028-02-01": 25990.2988486368, - "2027-02-01": 25411.2127411913, - "2026-02-01": 24832.1266337459, - "2025-02-01": 24245.4209722551, - "2024-12-01": 24047.6935447787, - "2024-11-01": 24039.1596442479, - "2024-10-01": 24052.1890816654, - "2024-09-01": 24024.5301004808, - "2024-08-01": 23986.0513525519, - "2024-07-01": 23966.5452941959, - "2024-06-01": 23938.7339219304, - "2024-05-01": 23930.6571946423, - "2024-04-01": 23890.9593180661, - "2024-03-01": 23798.3055408749, - "2024-02-01": 23645.4572867254, - "2024-01-01": 23500, - "2023-01-01": 22900, - "2022-01-01": 22400, - "2021-01-01": 21800, - "2015-01-01": 21800 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[34].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[34].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 484.773861363025, - "2034-02-01": 473.709296180172, - "2033-02-01": 463.252674139234, - "2032-02-01": 453.160817983445, - "2031-02-01": 443.190550456038, - "2030-02-01": 433.463460185398, - "2029-02-01": 423.979547171524, - "2028-02-01": 414.738811414416, - "2027-02-01": 405.498075657308, - "2026-02-01": 396.2573399002, - "2025-02-01": 386.895015514709, - "2024-12-01": 383.73979060817, - "2024-11-01": 383.603611344381, - "2024-10-01": 383.811527898916, - "2024-09-01": 383.370161177886, - "2024-08-01": 382.756138604552, - "2024-07-01": 382.444871715891, - "2024-06-01": 382.001073222293, - "2024-05-01": 381.872189276207, - "2024-04-01": 381.238712522332, - "2024-03-01": 379.760194801195, - "2024-02-01": 377.321126915832, - "2024-01-01": 375, - "2023-01-01": 374, - "2021-01-01": 372, - "2015-01-01": 372 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[35]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[35]", - "description": null, - "label": "bracket 36" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[35].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[35].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 30508.4350084464, - "2034-02-01": 29812.1050396055, - "2033-02-01": 29154.0349591624, - "2032-02-01": 28518.9208117581, - "2031-02-01": 27891.4586420334, - "2030-02-01": 27279.3004276677, - "2029-02-01": 26682.4461686613, - "2028-02-01": 26100.8958650139, - "2027-02-01": 25519.3455613666, - "2026-02-01": 24937.7952577193, - "2025-02-01": 24348.5929763924, - "2024-12-01": 24150.0241556075, - "2024-11-01": 24141.4539406064, - "2024-10-01": 24154.5388224385, - "2024-09-01": 24126.7621434616, - "2024-08-01": 24088.1196561798, - "2024-07-01": 24068.5305933201, - "2024-06-01": 24040.6008747897, - "2024-05-01": 24032.4897784493, - "2024-04-01": 23992.6229747388, - "2024-03-01": 23899.5749261552, - "2024-02-01": 23746.076253903, - "2024-01-01": 23600, - "2023-01-01": 23000, - "2022-01-01": 22500, - "2021-01-01": 21900, - "2015-01-01": 21900 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[35].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[35].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 497.701164332705, - "2034-02-01": 486.34154407831, - "2033-02-01": 475.606078782946, - "2032-02-01": 465.245106463003, - "2031-02-01": 455.008965134866, - "2030-02-01": 445.022485790342, - "2029-02-01": 435.285668429432, - "2028-02-01": 425.798513052134, - "2027-02-01": 416.311357674836, - "2026-02-01": 406.824202297539, - "2025-02-01": 397.212215928435, - "2024-12-01": 393.972851691055, - "2024-11-01": 393.833040980231, - "2024-10-01": 394.046501976221, - "2024-09-01": 393.593365475963, - "2024-08-01": 392.96296896734, - "2024-07-01": 392.643401628315, - "2024-06-01": 392.187768508221, - "2024-05-01": 392.055447656906, - "2024-04-01": 391.405078189594, - "2024-03-01": 389.887133329226, - "2024-02-01": 387.383023633587, - "2024-01-01": 385, - "2023-01-01": 383, - "2022-01-01": 382, - "2021-01-01": 381, - "2015-01-01": 381 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[36]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[36]", - "description": null, - "label": "bracket 37" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[36].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[36].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 30637.7080381432, - "2034-02-01": 29938.4275185869, - "2033-02-01": 29277.5690055996, - "2032-02-01": 28639.7636965537, - "2031-02-01": 28009.6427888216, - "2030-02-01": 27394.8906837172, - "2029-02-01": 26795.5073812403, - "2028-02-01": 26211.4928813911, - "2027-02-01": 25627.4783815419, - "2026-02-01": 25043.4638816926, - "2025-02-01": 24451.7649805296, - "2024-12-01": 24252.3547664364, - "2024-11-01": 24243.7482369649, - "2024-10-01": 24256.8885632115, - "2024-09-01": 24228.9941864424, - "2024-08-01": 24190.1879598077, - "2024-07-01": 24170.5158924443, - "2024-06-01": 24142.4678276489, - "2024-05-01": 24134.3223622563, - "2024-04-01": 24094.2866314114, - "2024-03-01": 24000.8443114355, - "2024-02-01": 23846.6952210806, - "2024-01-01": 23700, - "2023-01-01": 23100, - "2022-01-01": 22600, - "2021-01-01": 22000, - "2015-01-01": 22000 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[36].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[36].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 509.335737005418, - "2034-02-01": 497.710567186634, - "2033-02-01": 486.724142962288, - "2032-02-01": 476.120966094606, - "2031-02-01": 465.645538345811, - "2030-02-01": 455.425608834792, - "2029-02-01": 445.461177561548, - "2028-02-01": 435.75224452608, - "2027-02-01": 426.043311490612, - "2026-02-01": 416.334378455144, - "2025-02-01": 406.497696300788, - "2024-12-01": 403.182606665651, - "2024-11-01": 403.039527652497, - "2024-10-01": 403.257978645795, - "2024-09-01": 402.794249344232, - "2024-08-01": 402.149116293849, - "2024-07-01": 401.822078549496, - "2024-06-01": 401.355794265556, - "2024-05-01": 401.220380199535, - "2024-04-01": 400.55480729013, - "2024-03-01": 399.001378004455, - "2024-02-01": 396.438730679567, - "2024-01-01": 394, - "2023-01-01": 393, - "2021-01-01": 391, - "2015-01-01": 391 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[37]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[37]", - "description": null, - "label": "bracket 38" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[37].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[37].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 30766.98106784, - "2034-02-01": 30064.7499975682, - "2033-02-01": 29401.1030520367, - "2032-02-01": 28760.6065813493, - "2031-02-01": 28127.8269356099, - "2030-02-01": 27510.4809397666, - "2029-02-01": 26908.5685938194, - "2028-02-01": 26322.0898977683, - "2027-02-01": 25735.6112017172, - "2026-02-01": 25149.132505666, - "2025-02-01": 24554.9369846669, - "2024-12-01": 24354.6853772652, - "2024-11-01": 24346.0425333234, - "2024-10-01": 24359.2383039845, - "2024-09-01": 24331.2262294232, - "2024-08-01": 24292.2562634355, - "2024-07-01": 24272.5011915686, - "2024-06-01": 24244.3347805082, - "2024-05-01": 24236.1549460633, - "2024-04-01": 24195.950288084, - "2024-03-01": 24102.1136967158, - "2024-02-01": 23947.3141882581, - "2024-01-01": 23800, - "2023-01-01": 23200, - "2022-01-01": 22700, - "2021-01-01": 22100, - "2015-01-01": 22100 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[37].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[37].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 522.263039975099, - "2034-02-01": 510.342815084772, - "2033-02-01": 499.077547606001, - "2032-02-01": 488.205254574164, - "2031-02-01": 477.463953024639, - "2030-02-01": 466.984634439736, - "2029-02-01": 456.767298819455, - "2028-02-01": 446.811946163798, - "2027-02-01": 436.85659350814, - "2026-02-01": 426.901240852482, - "2025-02-01": 416.814896714513, - "2024-12-01": 413.415667748535, - "2024-11-01": 413.268957288347, - "2024-10-01": 413.492952723099, - "2024-09-01": 413.017453642309, - "2024-08-01": 412.355946656637, - "2024-07-01": 412.02060846192, - "2024-06-01": 411.542489551484, - "2024-05-01": 411.403638580234, - "2024-04-01": 410.721172957392, - "2024-03-01": 409.128316532487, - "2024-02-01": 406.500627397323, - "2024-01-01": 404, - "2023-01-01": 402, - "2022-01-01": 401, - "2021-01-01": 400, - "2015-01-01": 400 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[38]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[38]", - "description": null, - "label": "bracket 39" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[38].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[38].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 30896.2540975368, - "2034-02-01": 30191.0724765496, - "2033-02-01": 29524.6370984738, - "2032-02-01": 28881.4494661449, - "2031-02-01": 28246.0110823982, - "2030-02-01": 27626.0711958161, - "2029-02-01": 27021.6298063985, - "2028-02-01": 26432.6869141455, - "2027-02-01": 25843.7440218924, - "2026-02-01": 25254.8011296394, - "2025-02-01": 24658.1089888041, - "2024-12-01": 24457.015988094, - "2024-11-01": 24448.3368296819, - "2024-10-01": 24461.5880447576, - "2024-09-01": 24433.4582724039, - "2024-08-01": 24394.3245670634, - "2024-07-01": 24374.4864906928, - "2024-06-01": 24346.2017333675, - "2024-05-01": 24337.9875298703, - "2024-04-01": 24297.6139447566, - "2024-03-01": 24203.3830819961, - "2024-02-01": 24047.9331554357, - "2024-01-01": 23900, - "2023-01-01": 23300, - "2022-01-01": 22800, - "2021-01-01": 22200, - "2015-01-01": 22200 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[38].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[38].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 533.897612647811, - "2034-02-01": 521.711838193096, - "2033-02-01": 510.195611785343, - "2032-02-01": 499.081114205767, - "2031-02-01": 488.100526235584, - "2030-02-01": 477.387757484185, - "2029-02-01": 466.942807951572, - "2028-02-01": 456.765677637744, - "2027-02-01": 446.588547323915, - "2026-02-01": 436.411417010087, - "2025-02-01": 426.100377086866, - "2024-12-01": 422.625422723131, - "2024-11-01": 422.475443960612, - "2024-10-01": 422.704429392673, - "2024-09-01": 422.218337510578, - "2024-08-01": 421.542093983146, - "2024-07-01": 421.199285383102, - "2024-06-01": 420.710515308819, - "2024-05-01": 420.568571122863, - "2024-04-01": 419.870902057928, - "2024-03-01": 418.242561207716, - "2024-02-01": 415.556334443302, - "2024-01-01": 413, - "2023-01-01": 411, - "2021-01-01": 410, - "2015-01-01": 410 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[39]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[39]", - "description": null, - "label": "bracket 40" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[39].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[39].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 31025.5271272336, - "2034-02-01": 30317.394955531, - "2033-02-01": 29648.171144911, - "2032-02-01": 29002.2923509405, - "2031-02-01": 28364.1952291865, - "2030-02-01": 27741.6614518655, - "2029-02-01": 27134.6910189776, - "2028-02-01": 26543.2839305226, - "2027-02-01": 25951.8768420677, - "2026-02-01": 25360.4697536128, - "2025-02-01": 24761.2809929414, - "2024-12-01": 24559.3465989229, - "2024-11-01": 24550.6311260404, - "2024-10-01": 24563.9377855306, - "2024-09-01": 24535.6903153847, - "2024-08-01": 24496.3928706913, - "2024-07-01": 24476.471789817, - "2024-06-01": 24448.0686862268, - "2024-05-01": 24439.8201136773, - "2024-04-01": 24399.2776014292, - "2024-03-01": 24304.6524672765, - "2024-02-01": 24148.5521226132, - "2024-01-01": 24000, - "2023-01-01": 23400, - "2022-01-01": 22900, - "2021-01-01": 22300, - "2015-01-01": 22300 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[39].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[39].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 545.532185320524, - "2034-02-01": 533.08086130142, - "2033-02-01": 521.313675964684, - "2032-02-01": 509.95697383737, - "2031-02-01": 498.737099446529, - "2030-02-01": 487.790880528635, - "2029-02-01": 477.118317083689, - "2028-02-01": 466.71940911169, - "2027-02-01": 456.320501139691, - "2026-02-01": 445.921593167692, - "2025-02-01": 435.385857459219, - "2024-12-01": 431.835177697728, - "2024-11-01": 431.681930632877, - "2024-10-01": 431.915906062247, - "2024-09-01": 431.419221378848, - "2024-08-01": 430.728241309655, - "2024-07-01": 430.377962304283, - "2024-06-01": 429.878541066154, - "2024-05-01": 429.733503665492, - "2024-04-01": 429.020631158464, - "2024-03-01": 427.356805882944, - "2024-02-01": 424.612041489282, - "2024-01-01": 422, - "2023-01-01": 421, - "2021-01-01": 419, - "2015-01-01": 419 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[40]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[40]", - "description": null, - "label": "bracket 41" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[40].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[40].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 31154.8001569304, - "2034-02-01": 30443.7174345124, - "2033-02-01": 29771.7051913481, - "2032-02-01": 29123.135235736, - "2031-02-01": 28482.3793759747, - "2030-02-01": 27857.2517079149, - "2029-02-01": 27247.7522315566, - "2028-02-01": 26653.8809468998, - "2027-02-01": 26060.009662243, - "2026-02-01": 25466.1383775862, - "2025-02-01": 24864.4529970786, - "2024-12-01": 24661.6772097517, - "2024-11-01": 24652.9254223989, - "2024-10-01": 24666.2875263037, - "2024-09-01": 24637.9223583655, - "2024-08-01": 24598.4611743192, - "2024-07-01": 24578.4570889413, - "2024-06-01": 24549.9356390861, - "2024-05-01": 24541.6526974843, - "2024-04-01": 24500.9412581019, - "2024-03-01": 24405.9218525568, - "2024-02-01": 24249.1710897908, - "2024-01-01": 24100, - "2023-01-01": 23500, - "2022-01-01": 23000, - "2021-01-01": 22400, - "2015-01-01": 22400 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[40].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[40].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 558.459488290205, - "2034-02-01": 545.713109199558, - "2033-02-01": 533.667080608397, - "2032-02-01": 522.041262316928, - "2031-02-01": 510.555514125356, - "2030-02-01": 499.349906133579, - "2029-02-01": 488.424438341596, - "2028-02-01": 477.779110749408, - "2027-02-01": 467.133783157219, - "2026-02-01": 456.48845556503, - "2025-02-01": 445.703057872945, - "2024-12-01": 442.068238780612, - "2024-11-01": 441.911360268727, - "2024-10-01": 442.150880139551, - "2024-09-01": 441.642425676924, - "2024-08-01": 440.935071672444, - "2024-07-01": 440.576492216707, - "2024-06-01": 440.065236352082, - "2024-05-01": 439.916762046191, - "2024-04-01": 439.186996825726, - "2024-03-01": 437.483744410976, - "2024-02-01": 434.673938207038, - "2024-01-01": 432, - "2023-01-01": 430, - "2022-01-01": 429, - "2021-01-01": 428, - "2015-01-01": 428 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[41]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[41]", - "description": null, - "label": "bracket 42" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[41].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[41].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 31284.0731866272, - "2034-02-01": 30570.0399134937, - "2033-02-01": 29895.2392377852, - "2032-02-01": 29243.9781205316, - "2031-02-01": 28600.563522763, - "2030-02-01": 27972.8419639644, - "2029-02-01": 27360.8134441357, - "2028-02-01": 26764.477963277, - "2027-02-01": 26168.1424824183, - "2026-02-01": 25571.8070015596, - "2025-02-01": 24967.6250012159, - "2024-12-01": 24764.0078205806, - "2024-11-01": 24755.2197187574, - "2024-10-01": 24768.6372670767, - "2024-09-01": 24740.1544013462, - "2024-08-01": 24700.5294779471, - "2024-07-01": 24680.4423880655, - "2024-06-01": 24651.8025919453, - "2024-05-01": 24643.4852812912, - "2024-04-01": 24602.6049147745, - "2024-03-01": 24507.1912378371, - "2024-02-01": 24349.7900569683, - "2024-01-01": 24200, - "2023-01-01": 23600, - "2022-01-01": 23100, - "2021-01-01": 22500, - "2015-01-01": 22500 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[41].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[41].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 570.094060962917, - "2034-02-01": 557.082132307882, - "2033-02-01": 544.785144787739, - "2032-02-01": 532.917121948531, - "2031-02-01": 521.192087336301, - "2030-02-01": 509.753029178029, - "2029-02-01": 498.599947473713, - "2028-02-01": 487.732842223354, - "2027-02-01": 476.865736972994, - "2026-02-01": 465.998631722635, - "2025-02-01": 454.988538245298, - "2024-12-01": 451.277993755208, - "2024-11-01": 451.117846940992, - "2024-10-01": 451.362356809125, - "2024-09-01": 450.843309545194, - "2024-08-01": 450.121218998953, - "2024-07-01": 449.755169137888, - "2024-06-01": 449.233262109417, - "2024-05-01": 449.08169458882, - "2024-04-01": 448.336725926262, - "2024-03-01": 446.597989086205, - "2024-02-01": 443.729645253018, - "2024-01-01": 441, - "2023-01-01": 440, - "2021-01-01": 438, - "2015-01-01": 438 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[42]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[42]", - "description": null, - "label": "bracket 43" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[42].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[42].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 31413.346216324, - "2034-02-01": 30696.3623924751, - "2033-02-01": 30018.7732842223, - "2032-02-01": 29364.8210053272, - "2031-02-01": 28718.7476695513, - "2030-02-01": 28088.4322200138, - "2029-02-01": 27473.8746567148, - "2028-02-01": 26875.0749796542, - "2027-02-01": 26276.2753025936, - "2026-02-01": 25677.475625533, - "2025-02-01": 25070.7970053531, - "2024-12-01": 24866.3384314094, - "2024-11-01": 24857.5140151159, - "2024-10-01": 24870.9870078498, - "2024-09-01": 24842.386444327, - "2024-08-01": 24802.5977815749, - "2024-07-01": 24782.4276871898, - "2024-06-01": 24753.6695448046, - "2024-05-01": 24745.3178650982, - "2024-04-01": 24704.2685714471, - "2024-03-01": 24608.4606231174, - "2024-02-01": 24450.4090241459, - "2024-01-01": 24300, - "2023-01-01": 23700, - "2022-01-01": 23200, - "2021-01-01": 22600, - "2015-01-01": 22600 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[42].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[42].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 583.021363932598, - "2034-02-01": 569.71438020602, - "2033-02-01": 557.138549431452, - "2032-02-01": 545.001410428089, - "2031-02-01": 533.010502015129, - "2030-02-01": 521.312054782973, - "2029-02-01": 509.90606873162, - "2028-02-01": 498.792543861071, - "2027-02-01": 487.679018990523, - "2026-02-01": 476.565494119974, - "2025-02-01": 465.305738659023, - "2024-12-01": 461.511054838093, - "2024-11-01": 461.347276576842, - "2024-10-01": 461.59733088643, - "2024-09-01": 461.066513843271, - "2024-08-01": 460.328049361741, - "2024-07-01": 459.953699050312, - "2024-06-01": 459.419957395345, - "2024-05-01": 459.264952969519, - "2024-04-01": 458.503091593524, - "2024-03-01": 456.724927614237, - "2024-02-01": 453.791541970773, - "2024-01-01": 451, - "2023-01-01": 449, - "2022-01-01": 448, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[43]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[43]", - "description": null, - "label": "bracket 44" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[43].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[43].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 31542.6192460208, - "2034-02-01": 30822.6848714565, - "2033-02-01": 30142.3073306595, - "2032-02-01": 29485.6638901228, - "2031-02-01": 28836.9318163396, - "2030-02-01": 28204.0224760633, - "2029-02-01": 27586.9358692938, - "2028-02-01": 26985.6719960314, - "2027-02-01": 26384.4081227689, - "2026-02-01": 25783.1442495064, - "2025-02-01": 25173.9690094904, - "2024-12-01": 24968.6690422383, - "2024-11-01": 24959.8083114744, - "2024-10-01": 24973.3367486228, - "2024-09-01": 24944.6184873078, - "2024-08-01": 24904.6660852028, - "2024-07-01": 24884.412986314, - "2024-06-01": 24855.5364976639, - "2024-05-01": 24847.1504489052, - "2024-04-01": 24805.9322281197, - "2024-03-01": 24709.7300083977, - "2024-02-01": 24551.0279913234, - "2024-01-01": 24400, - "2023-01-01": 23800, - "2022-01-01": 23300, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[43].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[43].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 594.65593660531, - "2034-02-01": 581.083403314344, - "2033-02-01": 568.256613610793, - "2032-02-01": 555.877270059692, - "2031-02-01": 543.647075226074, - "2030-02-01": 531.715177827422, - "2029-02-01": 520.081577863737, - "2028-02-01": 508.746275335017, - "2027-02-01": 497.410972806298, - "2026-02-01": 486.075670277579, - "2025-02-01": 474.591219031376, - "2024-12-01": 470.720809812689, - "2024-11-01": 470.553763249108, - "2024-10-01": 470.808807556004, - "2024-09-01": 470.26739771154, - "2024-08-01": 469.51419668825, - "2024-07-01": 469.132375971493, - "2024-06-01": 468.58798315268, - "2024-05-01": 468.429885512148, - "2024-04-01": 467.65282069406, - "2024-03-01": 465.839172289465, - "2024-02-01": 462.847249016753, - "2024-01-01": 460, - "2023-01-01": 458, - "2022-01-01": "Infinity", - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[44]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[44]", - "description": null, - "label": "bracket 45" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[44].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[44].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 31671.8922757176, - "2034-02-01": 30949.0073504379, - "2033-02-01": 30265.8413770966, - "2032-02-01": 29606.5067749184, - "2031-02-01": 28955.1159631278, - "2030-02-01": 28319.6127321127, - "2029-02-01": 27699.9970818729, - "2028-02-01": 27096.2690124085, - "2027-02-01": 26492.5409429441, - "2026-02-01": 25888.8128734797, - "2025-02-01": 25277.1410136277, - "2024-12-01": 25070.9996530671, - "2024-11-01": 25062.1026078329, - "2024-10-01": 25075.6864893959, - "2024-09-01": 25046.8505302885, - "2024-08-01": 25006.7343888307, - "2024-07-01": 24986.3982854382, - "2024-06-01": 24957.4034505232, - "2024-05-01": 24948.9830327122, - "2024-04-01": 24907.5958847923, - "2024-03-01": 24810.999393678, - "2024-02-01": 24651.646958501, - "2024-01-01": 24500, - "2023-01-01": 23900, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[44].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[44].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 606.290509278023, - "2034-02-01": 592.452426422668, - "2033-02-01": 579.374677790135, - "2032-02-01": 566.753129691295, - "2031-02-01": 554.283648437019, - "2030-02-01": 542.118300871872, - "2029-02-01": 530.257086995853, - "2028-02-01": 518.700006808963, - "2027-02-01": 507.142926622073, - "2026-02-01": 495.585846435184, - "2025-02-01": 483.876699403729, - "2024-12-01": 479.930564787285, - "2024-11-01": 479.760249921373, - "2024-10-01": 480.020284225578, - "2024-09-01": 479.468281579809, - "2024-08-01": 478.700344014759, - "2024-07-01": 478.311052892675, - "2024-06-01": 477.756008910015, - "2024-05-01": 477.594818054777, - "2024-04-01": 476.802549794596, - "2024-03-01": 474.953416964694, - "2024-02-01": 471.902956062733, - "2024-01-01": 469, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[45]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[45]", - "description": null, - "label": "bracket 46" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[45].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[45].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 31801.1653054144, - "2034-02-01": 31075.3298294193, - "2033-02-01": 30389.3754235337, - "2032-02-01": 29727.349659714, - "2031-02-01": 29073.3001099161, - "2030-02-01": 28435.2029881621, - "2029-02-01": 27813.058294452, - "2028-02-01": 27206.8660287857, - "2027-02-01": 26600.6737631194, - "2026-02-01": 25994.4814974531, - "2025-02-01": 25380.3130177649, - "2024-12-01": 25173.330263896, - "2024-11-01": 25164.3969041914, - "2024-10-01": 25178.0362301689, - "2024-09-01": 25149.0825732693, - "2024-08-01": 25108.8026924586, - "2024-07-01": 25088.3835845625, - "2024-06-01": 25059.2704033824, - "2024-05-01": 25050.8156165192, - "2024-04-01": 25009.259541465, - "2024-03-01": 24912.2687789584, - "2024-02-01": 24752.2659256786, - "2024-01-01": 24600, - "2015-01-01": 24600 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[45].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.surviving_spouse.no_or_one_dependent[45].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": "Infinity", - "2034-02-01": "Infinity", - "2033-02-01": "Infinity", - "2032-02-01": "Infinity", - "2031-02-01": "Infinity", - "2030-02-01": "Infinity", - "2029-02-01": "Infinity", - "2028-02-01": "Infinity", - "2027-02-01": "Infinity", - "2026-02-01": "Infinity", - "2025-02-01": "Infinity", - "2024-12-01": "Infinity", - "2024-11-01": "Infinity", - "2024-10-01": "Infinity", - "2024-09-01": "Infinity", - "2024-08-01": "Infinity", - "2024-07-01": "Infinity", - "2024-06-01": "Infinity", - "2024-05-01": "Infinity", - "2024-04-01": "Infinity", - "2024-03-01": "Infinity", - "2024-02-01": "Infinity", - "2024-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household", - "description": null, - "label": "head of household", - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents", - "description": "Arkansas reduces the tax liability of low-income head of household filers with two or more dependents to the following amount, in lieu of a standard or itemized deduction.", - "label": "Arkansas low income tax table head of household amount two or more dependents" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[0]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 0, - "2034-02-01": 0, - "2033-02-01": 0, - "2032-02-01": 0, - "2031-02-01": 0, - "2030-02-01": 0, - "2029-02-01": 0, - "2028-02-01": 0, - "2027-02-01": 0, - "2026-02-01": 0, - "2025-02-01": 0, - "2024-12-01": 0, - "2024-11-01": 0, - "2024-10-01": 0, - "2024-09-01": 0, - "2024-08-01": 0, - "2024-07-01": 0, - "2024-06-01": 0, - "2024-05-01": 0, - "2024-04-01": 0, - "2024-03-01": 0, - "2024-02-01": 0, - "2024-01-01": 0, - "2023-12-01": 0, - "2023-11-01": 0, - "2023-10-01": 0, - "2023-09-01": 0, - "2023-08-01": 0, - "2023-07-01": 0, - "2023-06-01": 0, - "2023-05-01": 0, - "2023-04-01": 0, - "2023-03-01": 0, - "2023-02-01": 0, - "2023-01-01": 0, - "2022-12-01": 0, - "2022-11-01": 0, - "2022-10-01": 0, - "2022-09-01": 0, - "2022-08-01": 0, - "2022-07-01": 0, - "2022-06-01": 0, - "2022-05-01": 0, - "2022-04-01": 0, - "2022-03-01": 0, - "2022-02-01": 0, - "2022-01-01": 0, - "2021-12-01": 0, - "2021-11-01": 0, - "2021-10-01": 0, - "2021-09-01": 0, - "2021-08-01": 0, - "2021-07-01": 0, - "2021-06-01": 0, - "2021-05-01": 0, - "2021-04-01": 0, - "2021-03-01": 0, - "2021-02-01": 0, - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[0].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 0, - "2034-02-01": 0, - "2033-02-01": 0, - "2032-02-01": 0, - "2031-02-01": 0, - "2030-02-01": 0, - "2029-02-01": 0, - "2028-02-01": 0, - "2027-02-01": 0, - "2026-02-01": 0, - "2025-02-01": 0, - "2024-12-01": 0, - "2024-11-01": 0, - "2024-10-01": 0, - "2024-09-01": 0, - "2024-08-01": 0, - "2024-07-01": 0, - "2024-06-01": 0, - "2024-05-01": 0, - "2024-04-01": 0, - "2024-03-01": 0, - "2024-02-01": 0, - "2024-01-01": 0, - "2023-12-01": 0, - "2023-11-01": 0, - "2023-10-01": 0, - "2023-09-01": 0, - "2023-08-01": 0, - "2023-07-01": 0, - "2023-06-01": 0, - "2023-05-01": 0, - "2023-04-01": 0, - "2023-03-01": 0, - "2023-02-01": 0, - "2023-01-01": 0, - "2022-12-01": 0, - "2022-11-01": 0, - "2022-10-01": 0, - "2022-09-01": 0, - "2022-08-01": 0, - "2022-07-01": 0, - "2022-06-01": 0, - "2022-05-01": 0, - "2022-04-01": 0, - "2022-03-01": 0, - "2022-02-01": 0, - "2022-01-01": 0, - "2021-12-01": 0, - "2021-11-01": 0, - "2021-10-01": 0, - "2021-09-01": 0, - "2021-08-01": 0, - "2021-07-01": 0, - "2021-06-01": 0, - "2021-05-01": 0, - "2021-04-01": 0, - "2021-03-01": 0, - "2021-02-01": 0, - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[1]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 31284.0731866272, - "2034-02-01": 30570.0399134937, - "2033-02-01": 29895.2392377852, - "2032-02-01": 29243.9781205316, - "2031-02-01": 28600.563522763, - "2030-02-01": 27972.8419639644, - "2029-02-01": 27360.8134441357, - "2028-02-01": 26764.477963277, - "2027-02-01": 26168.1424824183, - "2026-02-01": 25571.8070015596, - "2025-02-01": 24967.6250012159, - "2024-12-01": 24764.0078205806, - "2024-11-01": 24755.2197187574, - "2024-10-01": 24768.6372670767, - "2024-09-01": 24740.1544013462, - "2024-08-01": 24700.5294779471, - "2024-07-01": 24680.4423880655, - "2024-06-01": 24651.8025919453, - "2024-05-01": 24643.4852812912, - "2024-04-01": 24602.6049147745, - "2024-03-01": 24507.1912378371, - "2024-02-01": 24349.7900569683, - "2024-01-01": 24200, - "2023-01-01": 23472, - "2022-01-01": 22789, - "2021-01-01": 22125, - "2015-01-01": 22125 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[1].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 118.931187321062, - "2034-02-01": 116.216680662869, - "2033-02-01": 113.651322722159, - "2032-02-01": 111.175454011938, - "2031-02-01": 108.729415045215, - "2030-02-01": 106.343035565484, - "2029-02-01": 104.016315572747, - "2028-02-01": 101.749255067003, - "2027-02-01": 99.4821945612596, - "2026-02-01": 97.2151340555158, - "2025-02-01": 94.9182438062753, - "2024-12-01": 94.1441619625378, - "2024-11-01": 94.1107526498215, - "2024-10-01": 94.1617615112007, - "2024-09-01": 94.053479542308, - "2024-08-01": 93.90283933765, - "2024-07-01": 93.8264751942987, - "2024-06-01": 93.717596630536, - "2024-05-01": 93.6859771024295, - "2024-04-01": 93.5305641388121, - "2024-03-01": 93.1678344578931, - "2024-02-01": 92.5694498033507, - "2024-01-01": 92, - "2023-01-01": 89, - "2021-01-01": 86, - "2015-01-01": 86 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[2]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 31284.0731866272, - "2034-02-01": 30570.0399134937, - "2033-02-01": 29895.2392377852, - "2032-02-01": 29243.9781205316, - "2031-02-01": 28600.563522763, - "2030-02-01": 27972.8419639644, - "2029-02-01": 27360.8134441357, - "2028-02-01": 26764.477963277, - "2027-02-01": 26168.1424824183, - "2026-02-01": 25571.8070015596, - "2025-02-01": 24967.6250012159, - "2024-12-01": 24764.0078205806, - "2024-11-01": 24755.2197187574, - "2024-10-01": 24768.6372670767, - "2024-09-01": 24740.1544013462, - "2024-08-01": 24700.5294779471, - "2024-07-01": 24680.4423880655, - "2024-06-01": 24651.8025919453, - "2024-05-01": 24643.4852812912, - "2024-04-01": 24602.6049147745, - "2024-03-01": 24507.1912378371, - "2024-02-01": 24349.7900569683, - "2024-01-01": 24200, - "2023-01-01": 23500, - "2022-01-01": 22800, - "2021-01-01": 22200, - "2015-01-01": 22200 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[2].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 134.443950884679, - "2034-02-01": 131.375378140634, - "2033-02-01": 128.475408294614, - "2032-02-01": 125.676600187409, - "2031-02-01": 122.911512659808, - "2030-02-01": 120.213866291417, - "2029-02-01": 117.583661082236, - "2028-02-01": 115.020897032265, - "2027-02-01": 112.458132982293, - "2026-02-01": 109.895368932322, - "2025-02-01": 107.298884302746, - "2024-12-01": 106.423835261999, - "2024-11-01": 106.386068212842, - "2024-10-01": 106.443730403966, - "2024-09-01": 106.3213247, - "2024-08-01": 106.151035772996, - "2024-07-01": 106.064711089207, - "2024-06-01": 105.941630973649, - "2024-05-01": 105.905887159268, - "2024-04-01": 105.730202939527, - "2024-03-01": 105.320160691531, - "2024-02-01": 104.643725864657, - "2024-01-01": 104, - "2023-01-01": 102, - "2022-01-01": 98, - "2021-01-01": 99, - "2015-01-01": 99 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[3]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 31413.346216324, - "2034-02-01": 30696.3623924751, - "2033-02-01": 30018.7732842223, - "2032-02-01": 29364.8210053272, - "2031-02-01": 28718.7476695513, - "2030-02-01": 28088.4322200138, - "2029-02-01": 27473.8746567148, - "2028-02-01": 26875.0749796542, - "2027-02-01": 26276.2753025936, - "2026-02-01": 25677.475625533, - "2025-02-01": 25070.7970053531, - "2024-12-01": 24866.3384314094, - "2024-11-01": 24857.5140151159, - "2024-10-01": 24870.9870078498, - "2024-09-01": 24842.386444327, - "2024-08-01": 24802.5977815749, - "2024-07-01": 24782.4276871898, - "2024-06-01": 24753.6695448046, - "2024-05-01": 24745.3178650982, - "2024-04-01": 24704.2685714471, - "2024-03-01": 24608.4606231174, - "2024-02-01": 24450.4090241459, - "2024-01-01": 24300, - "2023-01-01": 23600, - "2022-01-01": 22900, - "2021-01-01": 22300, - "2015-01-01": 22300 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[3].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 149.956714448296, - "2034-02-01": 146.5340756184, - "2033-02-01": 143.29949386707, - "2032-02-01": 140.177746362879, - "2031-02-01": 137.093610274401, - "2030-02-01": 134.08469701735, - "2029-02-01": 131.151006591725, - "2028-02-01": 128.292538997526, - "2027-02-01": 125.434071403327, - "2026-02-01": 122.575603809129, - "2025-02-01": 119.679524799217, - "2024-12-01": 118.703508561461, - "2024-11-01": 118.661383775862, - "2024-10-01": 118.725699296731, - "2024-09-01": 118.589169857693, - "2024-08-01": 118.399232208341, - "2024-07-01": 118.302946984116, - "2024-06-01": 118.165665316763, - "2024-05-01": 118.125797216107, - "2024-04-01": 117.929841740241, - "2024-03-01": 117.47248692517, - "2024-02-01": 116.718001925964, - "2024-01-01": 116, - "2023-01-01": 114, - "2022-01-01": 110, - "2021-01-01": 111, - "2015-01-01": 111 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[4]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 31542.6192460208, - "2034-02-01": 30822.6848714565, - "2033-02-01": 30142.3073306595, - "2032-02-01": 29485.6638901228, - "2031-02-01": 28836.9318163396, - "2030-02-01": 28204.0224760633, - "2029-02-01": 27586.9358692938, - "2028-02-01": 26985.6719960314, - "2027-02-01": 26384.4081227689, - "2026-02-01": 25783.1442495064, - "2025-02-01": 25173.9690094904, - "2024-12-01": 24968.6690422383, - "2024-11-01": 24959.8083114744, - "2024-10-01": 24973.3367486228, - "2024-09-01": 24944.6184873078, - "2024-08-01": 24904.6660852028, - "2024-07-01": 24884.412986314, - "2024-06-01": 24855.5364976639, - "2024-05-01": 24847.1504489052, - "2024-04-01": 24805.9322281197, - "2024-03-01": 24709.7300083977, - "2024-02-01": 24551.0279913234, - "2024-01-01": 24400, - "2023-01-01": 23700, - "2022-01-01": 23000, - "2021-01-01": 22400, - "2015-01-01": 22400 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[4].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 166.762208308881, - "2034-02-01": 162.955997885979, - "2033-02-01": 159.358919903896, - "2032-02-01": 155.887321386305, - "2031-02-01": 152.457549356877, - "2030-02-01": 149.111430303777, - "2029-02-01": 145.848964227004, - "2028-02-01": 142.670151126559, - "2027-02-01": 139.491338026114, - "2026-02-01": 136.312524925669, - "2025-02-01": 133.09188533706, - "2024-12-01": 132.006487969211, - "2024-11-01": 131.959642302467, - "2024-10-01": 132.031165597227, - "2024-09-01": 131.879335445193, - "2024-08-01": 131.668111679966, - "2024-07-01": 131.561035870267, - "2024-06-01": 131.408369188469, - "2024-05-01": 131.364033111015, - "2024-04-01": 131.146117107682, - "2024-03-01": 130.637507011611, - "2024-02-01": 129.798467659046, - "2024-01-01": 129, - "2023-01-01": 127, - "2021-01-01": 123, - "2015-01-01": 123 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[5]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 31671.8922757176, - "2034-02-01": 30949.0073504379, - "2033-02-01": 30265.8413770966, - "2032-02-01": 29606.5067749184, - "2031-02-01": 28955.1159631278, - "2030-02-01": 28319.6127321127, - "2029-02-01": 27699.9970818729, - "2028-02-01": 27096.2690124085, - "2027-02-01": 26492.5409429441, - "2026-02-01": 25888.8128734797, - "2025-02-01": 25277.1410136277, - "2024-12-01": 25070.9996530671, - "2024-11-01": 25062.1026078329, - "2024-10-01": 25075.6864893959, - "2024-09-01": 25046.8505302885, - "2024-08-01": 25006.7343888307, - "2024-07-01": 24986.3982854382, - "2024-06-01": 24957.4034505232, - "2024-05-01": 24948.9830327122, - "2024-04-01": 24907.5958847923, - "2024-03-01": 24810.999393678, - "2024-02-01": 24651.646958501, - "2024-01-01": 24500, - "2023-01-01": 23800, - "2022-01-01": 23100, - "2021-01-01": 22500, - "2015-01-01": 22500 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[5].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 182.274971872497, - "2034-02-01": 178.114695363745, - "2033-02-01": 174.183005476352, - "2032-02-01": 170.388467561775, - "2031-02-01": 166.63964697147, - "2030-02-01": 162.98226102971, - "2029-02-01": 159.416309736493, - "2028-02-01": 155.941793091821, - "2027-02-01": 152.467276447148, - "2026-02-01": 148.992759802475, - "2025-02-01": 145.472525833531, - "2024-12-01": 144.286161268672, - "2024-11-01": 144.234957865487, - "2024-10-01": 144.313134489992, - "2024-09-01": 144.147180602885, - "2024-08-01": 143.916308115311, - "2024-07-01": 143.799271765175, - "2024-06-01": 143.632403531582, - "2024-05-01": 143.583943167854, - "2024-04-01": 143.345755908397, - "2024-03-01": 142.789833245249, - "2024-02-01": 141.872743720353, - "2024-01-01": 141, - "2023-01-01": 139, - "2022-01-01": 135, - "2021-01-01": 136, - "2015-01-01": 136 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[6]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[6].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 31801.1653054144, - "2034-02-01": 31075.3298294193, - "2033-02-01": 30389.3754235337, - "2032-02-01": 29727.349659714, - "2031-02-01": 29073.3001099161, - "2030-02-01": 28435.2029881621, - "2029-02-01": 27813.058294452, - "2028-02-01": 27206.8660287857, - "2027-02-01": 26600.6737631194, - "2026-02-01": 25994.4814974531, - "2025-02-01": 25380.3130177649, - "2024-12-01": 25173.330263896, - "2024-11-01": 25164.3969041914, - "2024-10-01": 25178.0362301689, - "2024-09-01": 25149.0825732693, - "2024-08-01": 25108.8026924586, - "2024-07-01": 25088.3835845625, - "2024-06-01": 25059.2704033824, - "2024-05-01": 25050.8156165192, - "2024-04-01": 25009.259541465, - "2024-03-01": 24912.2687789584, - "2024-02-01": 24752.2659256786, - "2024-01-01": 24600, - "2023-01-01": 23900, - "2022-01-01": 23200, - "2021-01-01": 22600, - "2015-01-01": 22600 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[6].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[6].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 199.080465733082, - "2034-02-01": 194.536617631324, - "2033-02-01": 190.242431513179, - "2032-02-01": 186.098042585201, - "2031-02-01": 182.003586053946, - "2030-02-01": 178.008994316137, - "2029-02-01": 174.114267371773, - "2028-02-01": 170.319405220854, - "2027-02-01": 166.524543069935, - "2026-02-01": 162.729680919016, - "2025-02-01": 158.884886371374, - "2024-12-01": 157.589140676422, - "2024-11-01": 157.533216392093, - "2024-10-01": 157.618600790488, - "2024-09-01": 157.437346190385, - "2024-08-01": 157.185187586936, - "2024-07-01": 157.057360651326, - "2024-06-01": 156.875107403288, - "2024-05-01": 156.822179062762, - "2024-04-01": 156.562031275838, - "2024-03-01": 155.954853331691, - "2024-02-01": 154.953209453435, - "2024-01-01": 154, - "2023-01-01": 151, - "2021-01-01": 148, - "2015-01-01": 148 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[7]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[7].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 31930.4383351112, - "2034-02-01": 31201.6523084006, - "2033-02-01": 30512.9094699709, - "2032-02-01": 29848.1925445095, - "2031-02-01": 29191.4842567044, - "2030-02-01": 28550.7932442116, - "2029-02-01": 27926.1195070311, - "2028-02-01": 27317.4630451629, - "2027-02-01": 26708.8065832947, - "2026-02-01": 26100.1501214265, - "2025-02-01": 25483.4850219022, - "2024-12-01": 25275.6608747248, - "2024-11-01": 25266.6912005499, - "2024-10-01": 25280.3859709419, - "2024-09-01": 25251.3146162501, - "2024-08-01": 25210.8709960865, - "2024-07-01": 25190.3688836867, - "2024-06-01": 25161.1373562417, - "2024-05-01": 25152.6482003262, - "2024-04-01": 25110.9231981376, - "2024-03-01": 25013.5381642387, - "2024-02-01": 24852.8848928561, - "2024-01-01": 24700, - "2023-01-01": 24000, - "2022-01-01": 23300, - "2021-01-01": 22700, - "2015-01-01": 22700 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[7].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[7].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 214.593229296699, - "2034-02-01": 209.695315109089, - "2033-02-01": 205.066517085634, - "2032-02-01": 200.599188760671, - "2031-02-01": 196.18568366854, - "2030-02-01": 191.87982504207, - "2029-02-01": 187.681612881261, - "2028-02-01": 183.591047186115, - "2027-02-01": 179.500481490968, - "2026-02-01": 175.409915795822, - "2025-02-01": 171.265526867845, - "2024-12-01": 169.868813975883, - "2024-11-01": 169.808531955113, - "2024-10-01": 169.900569683254, - "2024-09-01": 169.705191348077, - "2024-08-01": 169.433384022282, - "2024-07-01": 169.295596546235, - "2024-06-01": 169.099141746402, - "2024-05-01": 169.042089119601, - "2024-04-01": 168.761670076552, - "2024-03-01": 168.107179565329, - "2024-02-01": 167.027485514741, - "2024-01-01": 166, - "2023-01-01": 164, - "2022-01-01": 160, - "2021-01-01": 161, - "2015-01-01": 161 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[8]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[8].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 32059.711364808, - "2034-02-01": 31327.974787382, - "2033-02-01": 30636.443516408, - "2032-02-01": 29969.0354293051, - "2031-02-01": 29309.6684034927, - "2030-02-01": 28666.383500261, - "2029-02-01": 28039.1807196101, - "2028-02-01": 27428.0600615401, - "2027-02-01": 26816.93940347, - "2026-02-01": 26205.8187453999, - "2025-02-01": 25586.6570260394, - "2024-12-01": 25377.9914855537, - "2024-11-01": 25368.9854969084, - "2024-10-01": 25382.735711715, - "2024-09-01": 25353.5466592309, - "2024-08-01": 25312.9392997143, - "2024-07-01": 25292.3541828109, - "2024-06-01": 25263.004309101, - "2024-05-01": 25254.4807841332, - "2024-04-01": 25212.5868548102, - "2024-03-01": 25114.807549519, - "2024-02-01": 24953.5038600337, - "2024-01-01": 24800, - "2023-01-01": 24100, - "2022-01-01": 23400, - "2021-01-01": 22800, - "2015-01-01": 22800 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[8].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[8].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 230.105992860316, - "2034-02-01": 224.854012586855, - "2033-02-01": 219.89060265809, - "2032-02-01": 215.100334936142, - "2031-02-01": 210.367781283133, - "2030-02-01": 205.750655768002, - "2029-02-01": 201.24895839075, - "2028-02-01": 196.862689151376, - "2027-02-01": 192.476419912002, - "2026-02-01": 188.090150672628, - "2025-02-01": 183.646167364315, - "2024-12-01": 182.148487275345, - "2024-11-01": 182.083847518133, - "2024-10-01": 182.182538576019, - "2024-09-01": 181.97303650577, - "2024-08-01": 181.681580457627, - "2024-07-01": 181.533832441143, - "2024-06-01": 181.323176089515, - "2024-05-01": 181.26199917644, - "2024-04-01": 180.961308877267, - "2024-03-01": 180.259505798967, - "2024-02-01": 179.101761576048, - "2024-01-01": 178, - "2023-01-01": 176, - "2022-01-01": 172, - "2021-01-01": 173, - "2015-01-01": 173 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[9]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[9].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 32188.9843945048, - "2034-02-01": 31454.2972663634, - "2033-02-01": 30759.9775628451, - "2032-02-01": 30089.8783141007, - "2031-02-01": 29427.852550281, - "2030-02-01": 28781.9737563105, - "2029-02-01": 28152.2419321892, - "2028-02-01": 27538.6570779172, - "2027-02-01": 26925.0722236453, - "2026-02-01": 26311.4873693733, - "2025-02-01": 25689.8290301767, - "2024-12-01": 25480.3220963825, - "2024-11-01": 25471.2797932669, - "2024-10-01": 25485.085452488, - "2024-09-01": 25455.7787022116, - "2024-08-01": 25415.0076033422, - "2024-07-01": 25394.3394819352, - "2024-06-01": 25364.8712619603, - "2024-05-01": 25356.3133679402, - "2024-04-01": 25314.2505114828, - "2024-03-01": 25216.0769347993, - "2024-02-01": 25054.1228272112, - "2024-01-01": 24900, - "2023-01-01": 24200, - "2022-01-01": 23500, - "2021-01-01": 22900, - "2015-01-01": 22900 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[9].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[9].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 246.911486720901, - "2034-02-01": 241.275934854434, - "2033-02-01": 235.950028694916, - "2032-02-01": 230.809909959568, - "2031-02-01": 225.731720365609, - "2030-02-01": 220.77738905443, - "2029-02-01": 215.94691602603, - "2028-02-01": 211.240301280409, - "2027-02-01": 206.533686534789, - "2026-02-01": 201.827071789169, - "2025-02-01": 197.058527902158, - "2024-12-01": 195.451466683095, - "2024-11-01": 195.382106044738, - "2024-10-01": 195.488004876515, - "2024-09-01": 195.26320209327, - "2024-08-01": 194.950459929252, - "2024-07-01": 194.791921327294, - "2024-06-01": 194.565879961221, - "2024-05-01": 194.500235071348, - "2024-04-01": 194.177584244708, - "2024-03-01": 193.424525885408, - "2024-02-01": 192.18222730913, - "2024-01-01": 191, - "2023-01-01": 189, - "2021-01-01": 185, - "2015-01-01": 185 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[10]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[10]", - "description": null, - "label": "bracket 11" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[10].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[10].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 32318.2574242017, - "2034-02-01": 31580.6197453448, - "2033-02-01": 30883.5116092822, - "2032-02-01": 30210.7211988963, - "2031-02-01": 29546.0366970692, - "2030-02-01": 28897.5640123599, - "2029-02-01": 28265.3031447683, - "2028-02-01": 27649.2540942944, - "2027-02-01": 27033.2050438205, - "2026-02-01": 26417.1559933467, - "2025-02-01": 25793.0010343139, - "2024-12-01": 25582.6527072113, - "2024-11-01": 25573.5740896254, - "2024-10-01": 25587.4351932611, - "2024-09-01": 25558.0107451924, - "2024-08-01": 25517.0759069701, - "2024-07-01": 25496.3247810594, - "2024-06-01": 25466.7382148196, - "2024-05-01": 25458.1459517472, - "2024-04-01": 25415.9141681555, - "2024-03-01": 25317.3463200796, - "2024-02-01": 25154.7417943888, - "2024-01-01": 25000, - "2023-01-01": 24300, - "2022-01-01": 23600, - "2021-01-01": 23000, - "2015-01-01": 23000 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[10].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[10].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 262.424250284517, - "2034-02-01": 256.4346323322, - "2033-02-01": 250.774114267372, - "2032-02-01": 245.311056135038, - "2031-02-01": 239.913817980202, - "2030-02-01": 234.648219780362, - "2029-02-01": 229.514261535518, - "2028-02-01": 224.511943245671, - "2027-02-01": 219.509624955823, - "2026-02-01": 214.507306665975, - "2025-02-01": 209.439168398629, - "2024-12-01": 207.731139982556, - "2024-11-01": 207.657421607758, - "2024-10-01": 207.76997376928, - "2024-09-01": 207.531047250962, - "2024-08-01": 207.198656364597, - "2024-07-01": 207.030157222202, - "2024-06-01": 206.789914304335, - "2024-05-01": 206.720145128187, - "2024-04-01": 206.377223045422, - "2024-03-01": 205.576852119047, - "2024-02-01": 204.256503370437, - "2024-01-01": 203, - "2023-01-01": 201, - "2022-01-01": 197, - "2021-01-01": 198, - "2015-01-01": 198 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[11]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[11]", - "description": null, - "label": "bracket 12" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[11].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[11].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 32447.5304538985, - "2034-02-01": 31706.9422243262, - "2033-02-01": 31007.0456557194, - "2032-02-01": 30331.5640836919, - "2031-02-01": 29664.2208438575, - "2030-02-01": 29013.1542684093, - "2029-02-01": 28378.3643573474, - "2028-02-01": 27759.8511106716, - "2027-02-01": 27141.3378639958, - "2026-02-01": 26522.8246173201, - "2025-02-01": 25896.1730384512, - "2024-12-01": 25684.9833180402, - "2024-11-01": 25675.8683859839, - "2024-10-01": 25689.7849340341, - "2024-09-01": 25660.2427881732, - "2024-08-01": 25619.144210598, - "2024-07-01": 25598.3100801837, - "2024-06-01": 25568.6051676788, - "2024-05-01": 25559.9785355541, - "2024-04-01": 25517.5778248281, - "2024-03-01": 25418.61570536, - "2024-02-01": 25255.3607615663, - "2024-01-01": 25100, - "2023-01-01": 24400, - "2022-01-01": 23700, - "2021-01-01": 23100, - "2015-01-01": 23100 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[11].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[11].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 279.229744145102, - "2034-02-01": 272.856554599779, - "2033-02-01": 266.833540304199, - "2032-02-01": 261.020631158464, - "2031-02-01": 255.277757062678, - "2030-02-01": 249.67495306679, - "2029-02-01": 244.212219170798, - "2028-02-01": 238.889555374704, - "2027-02-01": 233.56689157861, - "2026-02-01": 228.244227782515, - "2025-02-01": 222.851528936472, - "2024-12-01": 221.034119390306, - "2024-11-01": 220.955680134364, - "2024-10-01": 221.075440069776, - "2024-09-01": 220.821212838462, - "2024-08-01": 220.467535836222, - "2024-07-01": 220.288246108353, - "2024-06-01": 220.032618176041, - "2024-05-01": 219.958381023095, - "2024-04-01": 219.593498412863, - "2024-03-01": 218.741872205488, - "2024-02-01": 217.336969103519, - "2024-01-01": 216, - "2023-01-01": 213, - "2021-01-01": 210, - "2015-01-01": 210 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[12]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[12]", - "description": null, - "label": "bracket 13" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[12].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[12].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 32576.8034835953, - "2034-02-01": 31833.2647033075, - "2033-02-01": 31130.5797021565, - "2032-02-01": 30452.4069684875, - "2031-02-01": 29782.4049906458, - "2030-02-01": 29128.7445244588, - "2029-02-01": 28491.4255699264, - "2028-02-01": 27870.4481270488, - "2027-02-01": 27249.4706841711, - "2026-02-01": 26628.4932412934, - "2025-02-01": 25999.3450425884, - "2024-12-01": 25787.313928869, - "2024-11-01": 25778.1626823424, - "2024-10-01": 25792.1346748072, - "2024-09-01": 25762.4748311539, - "2024-08-01": 25721.2125142259, - "2024-07-01": 25700.2953793079, - "2024-06-01": 25670.4721205381, - "2024-05-01": 25661.8111193611, - "2024-04-01": 25619.2414815007, - "2024-03-01": 25519.8850906403, - "2024-02-01": 25355.9797287439, - "2024-01-01": 25200, - "2023-01-01": 24500, - "2022-01-01": 23800, - "2021-01-01": 23200, - "2015-01-01": 23200 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[12].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[12].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 294.742507708719, - "2034-02-01": 288.015252077544, - "2033-02-01": 281.657625876654, - "2032-02-01": 275.521777333934, - "2031-02-01": 269.459854677271, - "2030-02-01": 263.545783792722, - "2029-02-01": 257.779564680287, - "2028-02-01": 252.161197339965, - "2027-02-01": 246.542829999643, - "2026-02-01": 240.924462659322, - "2025-02-01": 235.232169432943, - "2024-12-01": 233.313792689767, - "2024-11-01": 233.230995697384, - "2024-10-01": 233.357408962541, - "2024-09-01": 233.089057996155, - "2024-08-01": 232.715732271567, - "2024-07-01": 232.526482003262, - "2024-06-01": 232.256652519154, - "2024-05-01": 232.178291079934, - "2024-04-01": 231.793137213578, - "2024-03-01": 230.894198439126, - "2024-02-01": 229.411245164826, - "2024-01-01": 228, - "2023-01-01": 226, - "2022-01-01": 222, - "2021-01-01": 223, - "2015-01-01": 223 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[13]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[13]", - "description": null, - "label": "bracket 14" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[13].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[13].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 32706.0765132921, - "2034-02-01": 31959.5871822889, - "2033-02-01": 31254.1137485936, - "2032-02-01": 30573.2498532831, - "2031-02-01": 29900.5891374341, - "2030-02-01": 29244.3347805082, - "2029-02-01": 28604.4867825055, - "2028-02-01": 27981.045143426, - "2027-02-01": 27357.6035043464, - "2026-02-01": 26734.1618652668, - "2025-02-01": 26102.5170467257, - "2024-12-01": 25889.6445396979, - "2024-11-01": 25880.4569787009, - "2024-10-01": 25894.4844155802, - "2024-09-01": 25864.7068741347, - "2024-08-01": 25823.2808178538, - "2024-07-01": 25802.2806784321, - "2024-06-01": 25772.3390733974, - "2024-05-01": 25763.6437031681, - "2024-04-01": 25720.9051381733, - "2024-03-01": 25621.1544759206, - "2024-02-01": 25456.5986959214, - "2024-01-01": 25300, - "2023-01-01": 24600, - "2022-01-01": 23900, - "2021-01-01": 23300, - "2015-01-01": 23300 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[13].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[13].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 310.255271272336, - "2034-02-01": 303.17394955531, - "2033-02-01": 296.481711449109, - "2032-02-01": 290.022923509405, - "2031-02-01": 283.641952291865, - "2030-02-01": 277.416614518655, - "2029-02-01": 271.346910189776, - "2028-02-01": 265.432839305226, - "2027-02-01": 259.518768420677, - "2026-02-01": 253.604697536128, - "2025-02-01": 247.612809929414, - "2024-12-01": 245.593465989229, - "2024-11-01": 245.506311260404, - "2024-10-01": 245.639377855306, - "2024-09-01": 245.356903153847, - "2024-08-01": 244.963928706913, - "2024-07-01": 244.76471789817, - "2024-06-01": 244.480686862268, - "2024-05-01": 244.398201136773, - "2024-04-01": 243.992776014292, - "2024-03-01": 243.046524672765, - "2024-02-01": 241.485521226132, - "2024-01-01": 240, - "2023-01-01": 238, - "2022-01-01": 234, - "2021-01-01": 235, - "2015-01-01": 235 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[14]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[14]", - "description": null, - "label": "bracket 15" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[14].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[14].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 32835.3495429889, - "2034-02-01": 32085.9096612703, - "2033-02-01": 31377.6477950308, - "2032-02-01": 30694.0927380786, - "2031-02-01": 30018.7732842223, - "2030-02-01": 29359.9250365577, - "2029-02-01": 28717.5479950846, - "2028-02-01": 28091.6421598031, - "2027-02-01": 27465.7363245217, - "2026-02-01": 26839.8304892402, - "2025-02-01": 26205.689050863, - "2024-12-01": 25991.9751505267, - "2024-11-01": 25982.7512750594, - "2024-10-01": 25996.8341563533, - "2024-09-01": 25966.9389171155, - "2024-08-01": 25925.3491214816, - "2024-07-01": 25904.2659775564, - "2024-06-01": 25874.2060262567, - "2024-05-01": 25865.4762869751, - "2024-04-01": 25822.5687948459, - "2024-03-01": 25722.4238612009, - "2024-02-01": 25557.217663099, - "2024-01-01": 25400, - "2023-01-01": 24700, - "2022-01-01": 24000, - "2021-01-01": 23400, - "2015-01-01": 23400 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[14].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[14].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 327.060765132921, - "2034-02-01": 319.595871822889, - "2033-02-01": 312.541137485936, - "2032-02-01": 305.732498532831, - "2031-02-01": 299.005891374341, - "2030-02-01": 292.443347805082, - "2029-02-01": 286.044867825055, - "2028-02-01": 279.81045143426, - "2027-02-01": 273.576035043464, - "2026-02-01": 267.341618652668, - "2025-02-01": 261.025170467257, - "2024-12-01": 258.896445396979, - "2024-11-01": 258.804569787009, - "2024-10-01": 258.944844155802, - "2024-09-01": 258.647068741347, - "2024-08-01": 258.232808178538, - "2024-07-01": 258.022806784321, - "2024-06-01": 257.723390733974, - "2024-05-01": 257.636437031681, - "2024-04-01": 257.209051381733, - "2024-03-01": 256.211544759206, - "2024-02-01": 254.565986959214, - "2024-01-01": 253, - "2023-01-01": 251, - "2021-01-01": 247, - "2015-01-01": 247 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[15]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[15]", - "description": null, - "label": "bracket 16" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[15].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[15].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 32964.6225726857, - "2034-02-01": 32212.2321402517, - "2033-02-01": 31501.1818414679, - "2032-02-01": 30814.9356228742, - "2031-02-01": 30136.9574310106, - "2030-02-01": 29475.5152926071, - "2029-02-01": 28830.6092076637, - "2028-02-01": 28202.2391761803, - "2027-02-01": 27573.869144697, - "2026-02-01": 26945.4991132136, - "2025-02-01": 26308.8610550002, - "2024-12-01": 26094.3057613556, - "2024-11-01": 26085.0455714179, - "2024-10-01": 26099.1838971263, - "2024-09-01": 26069.1709600962, - "2024-08-01": 26027.4174251095, - "2024-07-01": 26006.2512766806, - "2024-06-01": 25976.0729791159, - "2024-05-01": 25967.3088707821, - "2024-04-01": 25924.2324515186, - "2024-03-01": 25823.6932464812, - "2024-02-01": 25657.8366302765, - "2024-01-01": 25500, - "2023-01-01": 24800, - "2022-01-01": 24100, - "2021-01-01": 23500, - "2015-01-01": 23500 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[15].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[15].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 342.573528696538, - "2034-02-01": 334.754569300655, - "2033-02-01": 327.365223058392, - "2032-02-01": 320.233644708301, - "2031-02-01": 313.187988988934, - "2030-02-01": 306.314178531015, - "2029-02-01": 299.612213334544, - "2028-02-01": 293.082093399521, - "2027-02-01": 286.551973464498, - "2026-02-01": 280.021853529475, - "2025-02-01": 273.405810963728, - "2024-12-01": 271.17611869644, - "2024-11-01": 271.079885350029, - "2024-10-01": 271.226813048567, - "2024-09-01": 270.914913899039, - "2024-08-01": 270.481004613883, - "2024-07-01": 270.26104267923, - "2024-06-01": 269.947425077087, - "2024-05-01": 269.85634708852, - "2024-04-01": 269.408690182448, - "2024-03-01": 268.363870992844, - "2024-02-01": 266.640263020521, - "2024-01-01": 265, - "2023-01-01": 263, - "2022-01-01": 259, - "2021-01-01": 260, - "2015-01-01": 260 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[16]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[16]", - "description": null, - "label": "bracket 17" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[16].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[16].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 33093.8956023825, - "2034-02-01": 32338.5546192331, - "2033-02-01": 31624.715887905, - "2032-02-01": 30935.7785076698, - "2031-02-01": 30255.1415777989, - "2030-02-01": 29591.1055486565, - "2029-02-01": 28943.6704202427, - "2028-02-01": 28312.8361925575, - "2027-02-01": 27682.0019648722, - "2026-02-01": 27051.167737187, - "2025-02-01": 26412.0330591375, - "2024-12-01": 26196.6363721844, - "2024-11-01": 26187.3398677764, - "2024-10-01": 26201.5336378993, - "2024-09-01": 26171.403003077, - "2024-08-01": 26129.4857287374, - "2024-07-01": 26108.2365758048, - "2024-06-01": 26077.9399319752, - "2024-05-01": 26069.1414545891, - "2024-04-01": 26025.8961081912, - "2024-03-01": 25924.9626317615, - "2024-02-01": 25758.4555974541, - "2024-01-01": 25600, - "2023-01-01": 24900, - "2022-01-01": 24200, - "2021-01-01": 23600, - "2015-01-01": 23600 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[16].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[16].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 359.379022557122, - "2034-02-01": 351.176491568234, - "2033-02-01": 343.424649095219, - "2032-02-01": 335.943219731727, - "2031-02-01": 328.55192807141, - "2030-02-01": 321.340911817442, - "2029-02-01": 314.310170969823, - "2028-02-01": 307.459705528554, - "2027-02-01": 300.609240087285, - "2026-02-01": 293.758774646015, - "2025-02-01": 286.818171501571, - "2024-12-01": 284.47909810419, - "2024-11-01": 284.378143876635, - "2024-10-01": 284.532279349063, - "2024-09-01": 284.205079486539, - "2024-08-01": 283.749884085508, - "2024-07-01": 283.519131565381, - "2024-06-01": 283.190128948793, - "2024-05-01": 283.094582983428, - "2024-04-01": 282.624965549889, - "2024-03-01": 281.528891079286, - "2024-02-01": 279.720728753603, - "2024-01-01": 278, - "2023-01-01": 275, - "2021-01-01": 272, - "2015-01-01": 272 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[17]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[17]", - "description": null, - "label": "bracket 18" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[17].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[17].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 33223.1686320793, - "2034-02-01": 32464.8770982144, - "2033-02-01": 31748.2499343421, - "2032-02-01": 31056.6213924654, - "2031-02-01": 30373.3257245872, - "2030-02-01": 29706.695804706, - "2029-02-01": 29056.7316328218, - "2028-02-01": 28423.4332089347, - "2027-02-01": 27790.1347850475, - "2026-02-01": 27156.8363611604, - "2025-02-01": 26515.2050632747, - "2024-12-01": 26298.9669830133, - "2024-11-01": 26289.6341641349, - "2024-10-01": 26303.8833786724, - "2024-09-01": 26273.6350460578, - "2024-08-01": 26231.5540323653, - "2024-07-01": 26210.2218749291, - "2024-06-01": 26179.8068848345, - "2024-05-01": 26170.9740383961, - "2024-04-01": 26127.5597648638, - "2024-03-01": 26026.2320170419, - "2024-02-01": 25859.0745646317, - "2024-01-01": 25700, - "2023-01-01": 25000, - "2022-01-01": 24300, - "2021-01-01": 23700, - "2015-01-01": 23700 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[17].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[17].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 374.891786120739, - "2034-02-01": 366.335189045999, - "2033-02-01": 358.248734667674, - "2032-02-01": 350.444365907197, - "2031-02-01": 342.734025686003, - "2030-02-01": 335.211742543375, - "2029-02-01": 327.877516479312, - "2028-02-01": 320.731347493815, - "2027-02-01": 313.585178508318, - "2026-02-01": 306.439009522821, - "2025-02-01": 299.198811998042, - "2024-12-01": 296.758771403652, - "2024-11-01": 296.653459439655, - "2024-10-01": 296.814248241828, - "2024-09-01": 296.472924644232, - "2024-08-01": 295.998080520853, - "2024-07-01": 295.757367460289, - "2024-06-01": 295.414163291907, - "2024-05-01": 295.314493040267, - "2024-04-01": 294.824604350603, - "2024-03-01": 293.681217312924, - "2024-02-01": 291.79500481491, - "2024-01-01": 290, - "2023-01-01": 288, - "2022-01-01": 284, - "2021-01-01": 285, - "2015-01-01": 285 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[18]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[18]", - "description": null, - "label": "bracket 19" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[18].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[18].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 33352.4416617761, - "2034-02-01": 32591.1995771958, - "2033-02-01": 31871.7839807793, - "2032-02-01": 31177.464277261, - "2031-02-01": 30491.5098713754, - "2030-02-01": 29822.2860607554, - "2029-02-01": 29169.7928454009, - "2028-02-01": 28534.0302253118, - "2027-02-01": 27898.2676052228, - "2026-02-01": 27262.5049851338, - "2025-02-01": 26618.377067412, - "2024-12-01": 26401.2975938421, - "2024-11-01": 26391.9284604934, - "2024-10-01": 26406.2331194454, - "2024-09-01": 26375.8670890385, - "2024-08-01": 26333.6223359932, - "2024-07-01": 26312.2071740533, - "2024-06-01": 26281.6738376938, - "2024-05-01": 26272.8066222031, - "2024-04-01": 26229.2234215364, - "2024-03-01": 26127.5014023222, - "2024-02-01": 25959.6935318092, - "2024-01-01": 25800, - "2023-01-01": 25100, - "2022-01-01": 24400, - "2021-01-01": 23800, - "2015-01-01": 23800 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[18].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[18].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 390.404549684356, - "2034-02-01": 381.493886523765, - "2033-02-01": 373.072820240129, - "2032-02-01": 364.945512082667, - "2031-02-01": 356.916123300596, - "2030-02-01": 349.082573269308, - "2029-02-01": 341.444861988801, - "2028-02-01": 334.002989459077, - "2027-02-01": 326.561116929352, - "2026-02-01": 319.119244399628, - "2025-02-01": 311.579452494512, - "2024-12-01": 309.038444703113, - "2024-11-01": 308.928775002675, - "2024-10-01": 309.096217134594, - "2024-09-01": 308.740769801924, - "2024-08-01": 308.246276956199, - "2024-07-01": 307.995603355198, - "2024-06-01": 307.63819763502, - "2024-05-01": 307.534403097106, - "2024-04-01": 307.024243151318, - "2024-03-01": 305.833543546562, - "2024-02-01": 303.869280876216, - "2024-01-01": 302, - "2023-01-01": 300, - "2022-01-01": 296, - "2021-01-01": 297, - "2015-01-01": 297 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[19]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[19]", - "description": null, - "label": "bracket 20" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[19].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[19].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 33481.7146914729, - "2034-02-01": 32717.5220561772, - "2033-02-01": 31995.3180272164, - "2032-02-01": 31298.3071620566, - "2031-02-01": 30609.6940181637, - "2030-02-01": 29937.8763168049, - "2029-02-01": 29282.8540579799, - "2028-02-01": 28644.627241689, - "2027-02-01": 28006.4004253981, - "2026-02-01": 27368.1736091072, - "2025-02-01": 26721.5490715492, - "2024-12-01": 26503.628204671, - "2024-11-01": 26494.2227568519, - "2024-10-01": 26508.5828602185, - "2024-09-01": 26478.0991320193, - "2024-08-01": 26435.690639621, - "2024-07-01": 26414.1924731776, - "2024-06-01": 26383.5407905531, - "2024-05-01": 26374.63920601, - "2024-04-01": 26330.8870782091, - "2024-03-01": 26228.7707876025, - "2024-02-01": 26060.3124989868, - "2024-01-01": 25900, - "2023-01-01": 25200, - "2022-01-01": 24500, - "2021-01-01": 23900, - "2015-01-01": 23900 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[19].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[19].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 407.210043544941, - "2034-02-01": 397.915808791344, - "2033-02-01": 389.132246276956, - "2032-02-01": 380.655087106093, - "2031-02-01": 372.280062383072, - "2030-02-01": 364.109306555735, - "2029-02-01": 356.14281962408, - "2028-02-01": 348.38060158811, - "2027-02-01": 340.618383552139, - "2026-02-01": 332.856165516168, - "2025-02-01": 324.991813032356, - "2024-12-01": 322.341424110863, - "2024-11-01": 322.22703352928, - "2024-10-01": 322.40168343509, - "2024-09-01": 322.030935389424, - "2024-08-01": 321.515156427823, - "2024-07-01": 321.253692241349, - "2024-06-01": 320.880901506726, - "2024-05-01": 320.772638992014, - "2024-04-01": 320.240518518759, - "2024-03-01": 318.998563633003, - "2024-02-01": 316.949746609299, - "2024-01-01": 315, - "2023-01-01": 313, - "2021-01-01": 309, - "2015-01-01": 309 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[20]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[20]", - "description": null, - "label": "bracket 21" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[20].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[20].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 33610.9877211697, - "2034-02-01": 32843.8445351586, - "2033-02-01": 32118.8520736535, - "2032-02-01": 31419.1500468522, - "2031-02-01": 30727.878164952, - "2030-02-01": 30053.4665728543, - "2029-02-01": 29395.915270559, - "2028-02-01": 28755.2242580662, - "2027-02-01": 28114.5332455734, - "2026-02-01": 27473.8422330805, - "2025-02-01": 26824.7210756865, - "2024-12-01": 26605.9588154998, - "2024-11-01": 26596.5170532104, - "2024-10-01": 26610.9326009915, - "2024-09-01": 26580.3311750001, - "2024-08-01": 26537.7589432489, - "2024-07-01": 26516.1777723018, - "2024-06-01": 26485.4077434123, - "2024-05-01": 26476.471789817, - "2024-04-01": 26432.5507348817, - "2024-03-01": 26330.0401728828, - "2024-02-01": 26160.9314661643, - "2024-01-01": 26000, - "2023-01-01": 25300, - "2022-01-01": 24600, - "2021-01-01": 24000, - "2015-01-01": 24000 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[20].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[20].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 422.722807108558, - "2034-02-01": 413.07450626911, - "2033-02-01": 403.956331849412, - "2032-02-01": 395.156233281564, - "2031-02-01": 386.462159997666, - "2030-02-01": 377.980137281667, - "2029-02-01": 369.710165133569, - "2028-02-01": 361.652243553371, - "2027-02-01": 353.594321973173, - "2026-02-01": 345.536400392974, - "2025-02-01": 337.372453528826, - "2024-12-01": 334.621097410324, - "2024-11-01": 334.5023490923, - "2024-10-01": 334.683652327855, - "2024-09-01": 334.298780547116, - "2024-08-01": 333.763352863169, - "2024-07-01": 333.491928136257, - "2024-06-01": 333.10493584984, - "2024-05-01": 332.992549048853, - "2024-04-01": 332.440157319473, - "2024-03-01": 331.150889866642, - "2024-02-01": 329.024022670605, - "2024-01-01": 327, - "2023-01-01": 325, - "2022-01-01": 321, - "2021-01-01": 322, - "2015-01-01": 322 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[21]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[21]", - "description": null, - "label": "bracket 22" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[21].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[21].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 33740.2607508665, - "2034-02-01": 32970.16701414, - "2033-02-01": 32242.3861200907, - "2032-02-01": 31539.9929316477, - "2031-02-01": 30846.0623117403, - "2030-02-01": 30169.0568289037, - "2029-02-01": 29508.9764831381, - "2028-02-01": 28865.8212744434, - "2027-02-01": 28222.6660657487, - "2026-02-01": 27579.5108570539, - "2025-02-01": 26927.8930798237, - "2024-12-01": 26708.2894263286, - "2024-11-01": 26698.8113495689, - "2024-10-01": 26713.2823417646, - "2024-09-01": 26682.5632179809, - "2024-08-01": 26639.8272468768, - "2024-07-01": 26618.163071426, - "2024-06-01": 26587.2746962716, - "2024-05-01": 26578.304373624, - "2024-04-01": 26534.2143915543, - "2024-03-01": 26431.3095581631, - "2024-02-01": 26261.5504333419, - "2024-01-01": 26100, - "2023-01-01": 25400, - "2022-01-01": 24700, - "2021-01-01": 24100, - "2015-01-01": 24100 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[21].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[21].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 439.528300969143, - "2034-02-01": 429.496428536689, - "2033-02-01": 420.015757886238, - "2032-02-01": 410.86580830499, - "2031-02-01": 401.826099080142, - "2030-02-01": 393.006870568095, - "2029-02-01": 384.408122768849, - "2028-02-01": 376.029855682404, - "2027-02-01": 367.651588595959, - "2026-02-01": 359.273321509515, - "2025-02-01": 350.78481406667, - "2024-12-01": 347.924076818074, - "2024-11-01": 347.800607618906, - "2024-10-01": 347.989118628351, - "2024-09-01": 347.588946134617, - "2024-08-01": 347.032232334794, - "2024-07-01": 346.750017022408, - "2024-06-01": 346.347639721546, - "2024-05-01": 346.230784943761, - "2024-04-01": 345.656432686914, - "2024-03-01": 344.315909953083, - "2024-02-01": 342.104488403687, - "2024-01-01": 340, - "2023-01-01": 337, - "2021-01-01": 334, - "2015-01-01": 334 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[22]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[22]", - "description": null, - "label": "bracket 23" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[22].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[22].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 33869.5337805633, - "2034-02-01": 33096.4894931213, - "2033-02-01": 32365.9201665278, - "2032-02-01": 31660.8358164433, - "2031-02-01": 30964.2464585286, - "2030-02-01": 30284.6470849532, - "2029-02-01": 29622.0376957172, - "2028-02-01": 28976.4182908206, - "2027-02-01": 28330.7988859239, - "2026-02-01": 27685.1794810273, - "2025-02-01": 27031.065083961, - "2024-12-01": 26810.6200371575, - "2024-11-01": 26801.1056459274, - "2024-10-01": 26815.6320825376, - "2024-09-01": 26784.7952609616, - "2024-08-01": 26741.8955505047, - "2024-07-01": 26720.1483705503, - "2024-06-01": 26689.1416491309, - "2024-05-01": 26680.136957431, - "2024-04-01": 26635.8780482269, - "2024-03-01": 26532.5789434435, - "2024-02-01": 26362.1694005194, - "2024-01-01": 26200, - "2023-01-01": 25500, - "2022-01-01": 24800, - "2021-01-01": 24200, - "2015-01-01": 24200 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[22].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[22].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 455.041064532759, - "2034-02-01": 444.655126014455, - "2033-02-01": 434.839843458694, - "2032-02-01": 425.36695448046, - "2031-02-01": 416.008196694735, - "2030-02-01": 406.877701294027, - "2029-02-01": 397.975468278337, - "2028-02-01": 389.301497647665, - "2027-02-01": 380.627527016993, - "2026-02-01": 371.953556386321, - "2025-02-01": 363.16545456314, - "2024-12-01": 360.203750117536, - "2024-11-01": 360.075923181926, - "2024-10-01": 360.271087521116, - "2024-09-01": 359.856791292309, - "2024-08-01": 359.280428770139, - "2024-07-01": 358.988252917317, - "2024-06-01": 358.571674064659, - "2024-05-01": 358.4506950006, - "2024-04-01": 357.856071487629, - "2024-03-01": 356.468236186721, - "2024-02-01": 354.178764464994, - "2024-01-01": 352, - "2023-01-01": 350, - "2022-01-01": 346, - "2021-01-01": 347, - "2015-01-01": 347 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[23]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[23]", - "description": null, - "label": "bracket 24" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[23].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[23].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 33998.8068102601, - "2034-02-01": 33222.8119721027, - "2033-02-01": 32489.4542129649, - "2032-02-01": 31781.6787012389, - "2031-02-01": 31082.4306053168, - "2030-02-01": 30400.2373410026, - "2029-02-01": 29735.0989082962, - "2028-02-01": 29087.0153071977, - "2027-02-01": 28438.9317060992, - "2026-02-01": 27790.8481050007, - "2025-02-01": 27134.2370880983, - "2024-12-01": 26912.9506479863, - "2024-11-01": 26903.3999422859, - "2024-10-01": 26917.9818233106, - "2024-09-01": 26887.0273039424, - "2024-08-01": 26843.9638541326, - "2024-07-01": 26822.1336696745, - "2024-06-01": 26791.0086019902, - "2024-05-01": 26781.969541238, - "2024-04-01": 26737.5417048995, - "2024-03-01": 26633.8483287238, - "2024-02-01": 26462.788367697, - "2024-01-01": 26300, - "2023-01-01": 25600, - "2022-01-01": 24900, - "2021-01-01": 24300, - "2015-01-01": 24300 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[23].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[23].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 470.553828096376, - "2034-02-01": 459.81382349222, - "2033-02-01": 449.663929031149, - "2032-02-01": 439.86810065593, - "2031-02-01": 430.190294309328, - "2030-02-01": 420.74853201996, - "2029-02-01": 411.542813787826, - "2028-02-01": 402.573139612927, - "2027-02-01": 393.603465438027, - "2026-02-01": 384.633791263128, - "2025-02-01": 375.546095059611, - "2024-12-01": 372.483423416997, - "2024-11-01": 372.351238744946, - "2024-10-01": 372.553056413881, - "2024-09-01": 372.124636450001, - "2024-08-01": 371.528625205485, - "2024-07-01": 371.226488812225, - "2024-06-01": 370.795708407773, - "2024-05-01": 370.670605057439, - "2024-04-01": 370.055710288343, - "2024-03-01": 368.62056242036, - "2024-02-01": 366.253040526301, - "2024-01-01": 364, - "2023-01-01": 362, - "2022-01-01": 358, - "2021-01-01": 359, - "2015-01-01": 359 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[24]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[24]", - "description": null, - "label": "bracket 25" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[24].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[24].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 34128.079839957, - "2034-02-01": 33349.1344510841, - "2033-02-01": 32612.988259402, - "2032-02-01": 31902.5215860345, - "2031-02-01": 31200.6147521051, - "2030-02-01": 30515.827597052, - "2029-02-01": 29848.1601208753, - "2028-02-01": 29197.6123235749, - "2027-02-01": 28547.0645262745, - "2026-02-01": 27896.5167289741, - "2025-02-01": 27237.4090922355, - "2024-12-01": 27015.2812588152, - "2024-11-01": 27005.6942386444, - "2024-10-01": 27020.3315640837, - "2024-09-01": 26989.2593469232, - "2024-08-01": 26946.0321577604, - "2024-07-01": 26924.1189687987, - "2024-06-01": 26892.8755548494, - "2024-05-01": 26883.802125045, - "2024-04-01": 26839.2053615722, - "2024-03-01": 26735.1177140041, - "2024-02-01": 26563.4073348745, - "2024-01-01": 26400, - "2023-01-01": 25700, - "2022-01-01": 25000, - "2021-01-01": 24400, - "2015-01-01": 24400 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[24].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[24].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 487.359321956961, - "2034-02-01": 476.235745759799, - "2033-02-01": 465.723355067976, - "2032-02-01": 455.577675679356, - "2031-02-01": 445.554233391804, - "2030-02-01": 435.775265306387, - "2029-02-01": 426.240771423106, - "2028-02-01": 416.95075174196, - "2027-02-01": 407.660732060814, - "2026-02-01": 398.370712379668, - "2025-02-01": 388.958455597454, - "2024-12-01": 385.786402824747, - "2024-11-01": 385.649497271551, - "2024-10-01": 385.858522714377, - "2024-09-01": 385.414802037501, - "2024-08-01": 384.797504677109, - "2024-07-01": 384.484577698376, - "2024-06-01": 384.038412279479, - "2024-05-01": 383.908840952347, - "2024-04-01": 383.271985655784, - "2024-03-01": 381.785582506801, - "2024-02-01": 379.333506259383, - "2024-01-01": 377, - "2023-01-01": 375, - "2021-01-01": 371, - "2015-01-01": 371 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[25]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[25]", - "description": null, - "label": "bracket 26" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[25].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[25].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 34257.3528696538, - "2034-02-01": 33475.4569300655, - "2033-02-01": 32736.5223058392, - "2032-02-01": 32023.3644708301, - "2031-02-01": 31318.7988988934, - "2030-02-01": 30631.4178531015, - "2029-02-01": 29961.2213334544, - "2028-02-01": 29308.2093399521, - "2027-02-01": 28655.1973464498, - "2026-02-01": 28002.1853529475, - "2025-02-01": 27340.5810963728, - "2024-12-01": 27117.611869644, - "2024-11-01": 27107.9885350029, - "2024-10-01": 27122.6813048567, - "2024-09-01": 27091.4913899039, - "2024-08-01": 27048.1004613883, - "2024-07-01": 27026.104267923, - "2024-06-01": 26994.7425077087, - "2024-05-01": 26985.634708852, - "2024-04-01": 26940.8690182448, - "2024-03-01": 26836.3870992844, - "2024-02-01": 26664.0263020521, - "2024-01-01": 26500, - "2023-01-01": 25800, - "2022-01-01": 25100, - "2021-01-01": 24500, - "2015-01-01": 24500 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[25].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[25].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 502.872085520578, - "2034-02-01": 491.394443237565, - "2033-02-01": 480.547440640432, - "2032-02-01": 470.078821854826, - "2031-02-01": 459.736331006397, - "2030-02-01": 449.64609603232, - "2029-02-01": 439.808116932595, - "2028-02-01": 430.222393707221, - "2027-02-01": 420.636670481848, - "2026-02-01": 411.050947256474, - "2025-02-01": 401.339096093925, - "2024-12-01": 398.066076124209, - "2024-11-01": 397.924812834571, - "2024-10-01": 398.140491607142, - "2024-09-01": 397.682647195194, - "2024-08-01": 397.045701112455, - "2024-07-01": 396.722813593285, - "2024-06-01": 396.262446622592, - "2024-05-01": 396.128751009186, - "2024-04-01": 395.471624456499, - "2024-03-01": 393.937908740439, - "2024-02-01": 391.407782320689, - "2024-01-01": 389, - "2023-01-01": 387, - "2022-01-01": 383, - "2021-01-01": 384, - "2015-01-01": 384 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[26]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[26]", - "description": null, - "label": "bracket 27" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[26].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[26].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 34386.6258993506, - "2034-02-01": 33601.7794090468, - "2033-02-01": 32860.0563522763, - "2032-02-01": 32144.2073556257, - "2031-02-01": 31436.9830456817, - "2030-02-01": 30747.0081091509, - "2029-02-01": 30074.2825460335, - "2028-02-01": 29418.8063563293, - "2027-02-01": 28763.3301666251, - "2026-02-01": 28107.8539769209, - "2025-02-01": 27443.75310051, - "2024-12-01": 27219.9424804729, - "2024-11-01": 27210.2828313614, - "2024-10-01": 27225.0310456298, - "2024-09-01": 27193.7234328847, - "2024-08-01": 27150.1687650162, - "2024-07-01": 27128.0895670472, - "2024-06-01": 27096.609460568, - "2024-05-01": 27087.467292659, - "2024-04-01": 27042.5326749174, - "2024-03-01": 26937.6564845647, - "2024-02-01": 26764.6452692296, - "2024-01-01": 26600, - "2023-01-01": 25900, - "2022-01-01": 25200, - "2021-01-01": 24600, - "2015-01-01": 24600 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[26].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[26].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 519.677579381163, - "2034-02-01": 507.816365505144, - "2033-02-01": 496.606866677258, - "2032-02-01": 485.788396878253, - "2031-02-01": 475.100270088873, - "2030-02-01": 464.672829318747, - "2029-02-01": 454.506074567874, - "2028-02-01": 444.600005836254, - "2027-02-01": 434.693937104634, - "2026-02-01": 424.787868373014, - "2025-02-01": 414.751456631768, - "2024-12-01": 411.369055531958, - "2024-11-01": 411.223071361177, - "2024-10-01": 411.445957907638, - "2024-09-01": 410.972812782694, - "2024-08-01": 410.314580584079, - "2024-07-01": 409.980902479435, - "2024-06-01": 409.505150494298, - "2024-05-01": 409.366986904094, - "2024-04-01": 408.68789982394, - "2024-03-01": 407.102928826881, - "2024-02-01": 404.488248053771, - "2024-01-01": 402, - "2023-01-01": 399, - "2021-01-01": 396, - "2015-01-01": 396 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[27]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[27]", - "description": null, - "label": "bracket 28" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[27].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[27].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 34515.8989290474, - "2034-02-01": 33728.1018880282, - "2033-02-01": 32983.5903987134, - "2032-02-01": 32265.0502404213, - "2031-02-01": 31555.1671924699, - "2030-02-01": 30862.5983652004, - "2029-02-01": 30187.3437586125, - "2028-02-01": 29529.4033727064, - "2027-02-01": 28871.4629868003, - "2026-02-01": 28213.5226008942, - "2025-02-01": 27546.9251046473, - "2024-12-01": 27322.2730913017, - "2024-11-01": 27312.5771277199, - "2024-10-01": 27327.3807864028, - "2024-09-01": 27295.9554758655, - "2024-08-01": 27252.2370686441, - "2024-07-01": 27230.0748661715, - "2024-06-01": 27198.4764134273, - "2024-05-01": 27189.299876466, - "2024-04-01": 27144.19633159, - "2024-03-01": 27038.9258698451, - "2024-02-01": 26865.2642364072, - "2024-01-01": 26700, - "2023-01-01": 26000, - "2022-01-01": 25300, - "2021-01-01": 24700, - "2015-01-01": 24700 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[27].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[27].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 535.190342944779, - "2034-02-01": 522.97506298291, - "2033-02-01": 511.430952249714, - "2032-02-01": 500.289543053723, - "2031-02-01": 489.282367703466, - "2030-02-01": 478.54366004468, - "2029-02-01": 468.073420077363, - "2028-02-01": 457.871647801516, - "2027-02-01": 447.669875525668, - "2026-02-01": 437.468103249821, - "2025-02-01": 427.132097128239, - "2024-12-01": 423.64872883142, - "2024-11-01": 423.498386924197, - "2024-10-01": 423.727926800403, - "2024-09-01": 423.240657940386, - "2024-08-01": 422.562777019425, - "2024-07-01": 422.219138374344, - "2024-06-01": 421.729184837412, - "2024-05-01": 421.586896960933, - "2024-04-01": 420.887538624654, - "2024-03-01": 419.255255060519, - "2024-02-01": 416.562524115078, - "2024-01-01": 414, - "2023-01-01": 412, - "2022-01-01": 408, - "2021-01-01": 409, - "2015-01-01": 409 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[28]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[28]", - "description": null, - "label": "bracket 29" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[28].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[28].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 34645.1719587442, - "2034-02-01": 33854.4243670096, - "2033-02-01": 33107.1244451506, - "2032-02-01": 32385.8931252168, - "2031-02-01": 31673.3513392582, - "2030-02-01": 30978.1886212498, - "2029-02-01": 30300.4049711916, - "2028-02-01": 29640.0003890836, - "2027-02-01": 28979.5958069756, - "2026-02-01": 28319.1912248676, - "2025-02-01": 27650.0971087845, - "2024-12-01": 27424.6037021306, - "2024-11-01": 27414.8714240784, - "2024-10-01": 27429.7305271759, - "2024-09-01": 27398.1875188462, - "2024-08-01": 27354.305372272, - "2024-07-01": 27332.0601652957, - "2024-06-01": 27300.3433662866, - "2024-05-01": 27291.1324602729, - "2024-04-01": 27245.8599882627, - "2024-03-01": 27140.1952551254, - "2024-02-01": 26965.8832035848, - "2024-01-01": 26800, - "2023-01-01": 26100, - "2022-01-01": 25400, - "2021-01-01": 24800, - "2015-01-01": 24800 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[28].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[28].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 550.703106508396, - "2034-02-01": 538.133760460675, - "2033-02-01": 526.255037822169, - "2032-02-01": 514.790689229193, - "2031-02-01": 503.46446531806, - "2030-02-01": 492.414490770613, - "2029-02-01": 481.640765586852, - "2028-02-01": 471.143289766777, - "2027-02-01": 460.645813946702, - "2026-02-01": 450.148338126627, - "2025-02-01": 439.512737624709, - "2024-12-01": 435.928402130881, - "2024-11-01": 435.773702487217, - "2024-10-01": 436.009895693169, - "2024-09-01": 435.508503098078, - "2024-08-01": 434.810973454771, - "2024-07-01": 434.457374269252, - "2024-06-01": 433.953219180525, - "2024-05-01": 433.806807017771, - "2024-04-01": 433.087177425369, - "2024-03-01": 431.407581294157, - "2024-02-01": 428.636800176385, - "2024-01-01": 426, - "2023-01-01": 424, - "2022-01-01": 420, - "2021-01-01": 421, - "2015-01-01": 421 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[29]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[29]", - "description": null, - "label": "bracket 30" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[29].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[29].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 34774.444988441, - "2034-02-01": 33980.746845991, - "2033-02-01": 33230.6584915877, - "2032-02-01": 32506.7360100124, - "2031-02-01": 31791.5354860465, - "2030-02-01": 31093.7788772992, - "2029-02-01": 30413.4661837707, - "2028-02-01": 29750.5974054608, - "2027-02-01": 29087.7286271509, - "2026-02-01": 28424.859848841, - "2025-02-01": 27753.2691129218, - "2024-12-01": 27526.9343129594, - "2024-11-01": 27517.1657204369, - "2024-10-01": 27532.0802679489, - "2024-09-01": 27500.419561827, - "2024-08-01": 27456.3736758998, - "2024-07-01": 27434.0454644199, - "2024-06-01": 27402.2103191458, - "2024-05-01": 27392.9650440799, - "2024-04-01": 27347.5236449353, - "2024-03-01": 27241.4646404057, - "2024-02-01": 27066.5021707623, - "2024-01-01": 26900, - "2023-01-01": 26200, - "2022-01-01": 25500, - "2021-01-01": 24900, - "2015-01-01": 24900 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[29].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[29].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 567.508600368981, - "2034-02-01": 554.555682728254, - "2033-02-01": 542.314463858996, - "2032-02-01": 530.500264252619, - "2031-02-01": 518.828404400536, - "2030-02-01": 507.44122405704, - "2029-02-01": 496.338723222131, - "2028-02-01": 485.52090189581, - "2027-02-01": 474.703080569489, - "2026-02-01": 463.885259243168, - "2025-02-01": 452.925098162553, - "2024-12-01": 449.231381538631, - "2024-11-01": 449.071961013822, - "2024-10-01": 449.315361993664, - "2024-09-01": 448.798668685578, - "2024-08-01": 448.079852926395, - "2024-07-01": 447.715463155403, - "2024-06-01": 447.195923052231, - "2024-05-01": 447.04504291268, - "2024-04-01": 446.30345279281, - "2024-03-01": 444.572601380598, - "2024-02-01": 441.717265909467, - "2024-01-01": 439, - "2023-01-01": 437, - "2021-01-01": 433, - "2015-01-01": 433 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[30]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[30]", - "description": null, - "label": "bracket 31" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[30].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[30].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 34903.7180181378, - "2034-02-01": 34107.0693249724, - "2033-02-01": 33354.1925380248, - "2032-02-01": 32627.578894808, - "2031-02-01": 31909.7196328348, - "2030-02-01": 31209.3691333487, - "2029-02-01": 30526.5273963497, - "2028-02-01": 29861.194421838, - "2027-02-01": 29195.8614473262, - "2026-02-01": 28530.5284728144, - "2025-02-01": 27856.4411170591, - "2024-12-01": 27629.2649237883, - "2024-11-01": 27619.4600167954, - "2024-10-01": 27634.430008722, - "2024-09-01": 27602.6516048078, - "2024-08-01": 27558.4419795277, - "2024-07-01": 27536.0307635442, - "2024-06-01": 27504.0772720051, - "2024-05-01": 27494.7976278869, - "2024-04-01": 27449.1873016079, - "2024-03-01": 27342.734025686, - "2024-02-01": 27167.1211379399, - "2024-01-01": 27000, - "2023-01-01": 26300, - "2022-01-01": 25600, - "2021-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[30].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[30].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 583.021363932598, - "2034-02-01": 569.71438020602, - "2033-02-01": 557.138549431452, - "2032-02-01": 545.001410428089, - "2031-02-01": 533.010502015129, - "2030-02-01": 521.312054782973, - "2029-02-01": 509.90606873162, - "2028-02-01": 498.792543861071, - "2027-02-01": 487.679018990523, - "2026-02-01": 476.565494119974, - "2025-02-01": 465.305738659023, - "2024-12-01": 461.511054838093, - "2024-11-01": 461.347276576842, - "2024-10-01": 461.59733088643, - "2024-09-01": 461.066513843271, - "2024-08-01": 460.328049361741, - "2024-07-01": 459.953699050312, - "2024-06-01": 459.419957395345, - "2024-05-01": 459.264952969519, - "2024-04-01": 458.503091593524, - "2024-03-01": 456.724927614237, - "2024-02-01": 453.791541970773, - "2024-01-01": 451, - "2023-01-01": 449, - "2022-01-01": 445, - "2021-01-01": 446, - "2015-01-01": 446 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[31]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[31]", - "description": null, - "label": "bracket 32" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[31].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[31].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 35032.9910478346, - "2034-02-01": 34233.3918039537, - "2033-02-01": 33477.726584462, - "2032-02-01": 32748.4217796036, - "2031-02-01": 32027.903779623, - "2030-02-01": 31324.9593893981, - "2029-02-01": 30639.5886089288, - "2028-02-01": 29971.7914382152, - "2027-02-01": 29303.9942675015, - "2026-02-01": 28636.1970967878, - "2025-02-01": 27959.6131211963, - "2024-12-01": 27731.5955346171, - "2024-11-01": 27721.7543131539, - "2024-10-01": 27736.779749495, - "2024-09-01": 27704.8836477886, - "2024-08-01": 27660.5102831556, - "2024-07-01": 27638.0160626684, - "2024-06-01": 27605.9442248644, - "2024-05-01": 27596.6302116939, - "2024-04-01": 27550.8509582805, - "2024-03-01": 27444.0034109663, - "2024-02-01": 27267.7401051174, - "2024-01-01": 27100, - "2023-01-01": 26400, - "2022-01-01": 25700, - "2021-01-01": 25100, - "2015-01-01": 25100 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[31].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[31].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 599.826857793183, - "2034-02-01": 586.136302473599, - "2033-02-01": 573.197975468278, - "2032-02-01": 560.710985451515, - "2031-02-01": 548.374441097605, - "2030-02-01": 536.3387880694, - "2029-02-01": 524.604026366899, - "2028-02-01": 513.170155990104, - "2027-02-01": 501.736285613309, - "2026-02-01": 490.302415236514, - "2025-02-01": 478.718099196867, - "2024-12-01": 474.814034245843, - "2024-11-01": 474.645535103448, - "2024-10-01": 474.902797186925, - "2024-09-01": 474.356679430771, - "2024-08-01": 473.596928833365, - "2024-07-01": 473.211787936463, - "2024-06-01": 472.662661267051, - "2024-05-01": 472.503188864427, - "2024-04-01": 471.719366960965, - "2024-03-01": 469.889947700678, - "2024-02-01": 466.872007703856, - "2024-01-01": 464, - "2023-01-01": 461, - "2021-01-01": 458, - "2015-01-01": 458 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[32]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[32]", - "description": null, - "label": "bracket 33" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[32].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[32].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 35162.2640775314, - "2034-02-01": 34359.7142829351, - "2033-02-01": 33601.2606308991, - "2032-02-01": 32869.2646643992, - "2031-02-01": 32146.0879264113, - "2030-02-01": 31440.5496454476, - "2029-02-01": 30752.6498215079, - "2028-02-01": 30082.3884545923, - "2027-02-01": 29412.1270876768, - "2026-02-01": 28741.8657207612, - "2025-02-01": 28062.7851253336, - "2024-12-01": 27833.9261454459, - "2024-11-01": 27824.0486095124, - "2024-10-01": 27839.129490268, - "2024-09-01": 27807.1156907693, - "2024-08-01": 27762.5785867835, - "2024-07-01": 27740.0013617926, - "2024-06-01": 27707.8111777237, - "2024-05-01": 27698.4627955009, - "2024-04-01": 27652.5146149531, - "2024-03-01": 27545.2727962466, - "2024-02-01": 27368.359072295, - "2024-01-01": 27200, - "2023-01-01": 26500, - "2022-01-01": 25800, - "2021-01-01": 25200, - "2015-01-01": 25200 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[32].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[32].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 615.339621356799, - "2034-02-01": 601.294999951365, - "2033-02-01": 588.022061040734, - "2032-02-01": 575.212131626986, - "2031-02-01": 562.556538712198, - "2030-02-01": 550.209618795332, - "2029-02-01": 538.171371876388, - "2028-02-01": 526.441797955366, - "2027-02-01": 514.712224034343, - "2026-02-01": 502.982650113321, - "2025-02-01": 491.098739693337, - "2024-12-01": 487.093707545304, - "2024-11-01": 486.920850666468, - "2024-10-01": 487.184766079691, - "2024-09-01": 486.624524588463, - "2024-08-01": 485.845125268711, - "2024-07-01": 485.450023831371, - "2024-06-01": 484.886695610164, - "2024-05-01": 484.723098921266, - "2024-04-01": 483.91900576168, - "2024-03-01": 482.042273934316, - "2024-02-01": 478.946283765162, - "2024-01-01": 476, - "2023-01-01": 474, - "2022-01-01": 470, - "2021-01-01": 471, - "2015-01-01": 471 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[33]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[33]", - "description": null, - "label": "bracket 34" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[33].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[33].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 35291.5371072282, - "2034-02-01": 34486.0367619165, - "2033-02-01": 33724.7946773362, - "2032-02-01": 32990.1075491948, - "2031-02-01": 32264.2720731996, - "2030-02-01": 31556.139901497, - "2029-02-01": 30865.711034087, - "2028-02-01": 30192.9854709695, - "2027-02-01": 29520.259907852, - "2026-02-01": 28847.5343447346, - "2025-02-01": 28165.9571294708, - "2024-12-01": 27936.2567562748, - "2024-11-01": 27926.3429058709, - "2024-10-01": 27941.4792310411, - "2024-09-01": 27909.3477337501, - "2024-08-01": 27864.6468904114, - "2024-07-01": 27841.9866609169, - "2024-06-01": 27809.678130583, - "2024-05-01": 27800.2953793079, - "2024-04-01": 27754.1782716258, - "2024-03-01": 27646.542181527, - "2024-02-01": 27468.9780394725, - "2024-01-01": 27300, - "2023-01-01": 26600, - "2022-01-01": 25900, - "2021-01-01": 25300, - "2015-01-01": 25300 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[33].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[33].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 630.852384920416, - "2034-02-01": 616.45369742913, - "2033-02-01": 602.846146613189, - "2032-02-01": 589.713277802456, - "2031-02-01": 576.738636326791, - "2030-02-01": 564.080449521265, - "2029-02-01": 551.738717385877, - "2028-02-01": 539.713439920627, - "2027-02-01": 527.688162455377, - "2026-02-01": 515.662884990127, - "2025-02-01": 503.479380189808, - "2024-12-01": 499.373380844765, - "2024-11-01": 499.196166229488, - "2024-10-01": 499.466734972456, - "2024-09-01": 498.892369746155, - "2024-08-01": 498.093321704057, - "2024-07-01": 497.68825972628, - "2024-06-01": 497.110729953278, - "2024-05-01": 496.943008978104, - "2024-04-01": 496.118644562395, - "2024-03-01": 494.194600167955, - "2024-02-01": 491.020559826469, - "2024-01-01": 488, - "2023-01-01": 486, - "2022-01-01": 482, - "2021-01-01": 483, - "2015-01-01": 483 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[34]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[34]", - "description": null, - "label": "bracket 35" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[34].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[34].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 35420.810136925, - "2034-02-01": 34612.3592408979, - "2033-02-01": 33848.3287237733, - "2032-02-01": 33110.9504339903, - "2031-02-01": 32382.4562199879, - "2030-02-01": 31671.7301575464, - "2029-02-01": 30978.772246666, - "2028-02-01": 30303.5824873467, - "2027-02-01": 29628.3927280273, - "2026-02-01": 28953.202968708, - "2025-02-01": 28269.1291336081, - "2024-12-01": 28038.5873671036, - "2024-11-01": 28028.6372022295, - "2024-10-01": 28043.8289718141, - "2024-09-01": 28011.5797767309, - "2024-08-01": 27966.7151940392, - "2024-07-01": 27943.9719600411, - "2024-06-01": 27911.5450834422, - "2024-05-01": 27902.1279631149, - "2024-04-01": 27855.8419282984, - "2024-03-01": 27747.8115668073, - "2024-02-01": 27569.5970066501, - "2024-01-01": 27400, - "2023-01-01": 26700, - "2022-01-01": 26000, - "2021-01-01": 25400, - "2015-01-01": 25400 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[34].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[34].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 647.657878781001, - "2034-02-01": 632.875619696709, - "2033-02-01": 618.905572650016, - "2032-02-01": 605.422852825882, - "2031-02-01": 592.102575409267, - "2030-02-01": 579.107182807692, - "2029-02-01": 566.436675021156, - "2028-02-01": 554.09105204966, - "2027-02-01": 541.745429078164, - "2026-02-01": 529.399806106667, - "2025-02-01": 516.891740727651, - "2024-12-01": 512.676360252515, - "2024-11-01": 512.494424756093, - "2024-10-01": 512.772201272952, - "2024-09-01": 512.182535333655, - "2024-08-01": 511.362201175681, - "2024-07-01": 510.946348612431, - "2024-06-01": 510.353433824984, - "2024-05-01": 510.181244873013, - "2024-04-01": 509.334919929835, - "2024-03-01": 507.359620254396, - "2024-02-01": 504.101025559551, - "2024-01-01": 501, - "2023-01-01": 499, - "2021-01-01": 495, - "2015-01-01": 495 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[35]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[35]", - "description": null, - "label": "bracket 36" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[35].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[35].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 35550.0831666218, - "2034-02-01": 34738.6817198793, - "2033-02-01": 33971.8627702105, - "2032-02-01": 33231.7933187859, - "2031-02-01": 32500.6403667762, - "2030-02-01": 31787.3204135959, - "2029-02-01": 31091.8334592451, - "2028-02-01": 30414.1795037239, - "2027-02-01": 29736.5255482026, - "2026-02-01": 29058.8715926813, - "2025-02-01": 28372.3011377453, - "2024-12-01": 28140.9179779325, - "2024-11-01": 28130.931498588, - "2024-10-01": 28146.1787125872, - "2024-09-01": 28113.8118197116, - "2024-08-01": 28068.7834976671, - "2024-07-01": 28045.9572591654, - "2024-06-01": 28013.4120363015, - "2024-05-01": 28003.9605469219, - "2024-04-01": 27957.505584971, - "2024-03-01": 27849.0809520876, - "2024-02-01": 27670.2159738276, - "2024-01-01": 27500, - "2023-01-01": 26800, - "2022-01-01": 26100, - "2021-01-01": 25500, - "2015-01-01": 25500 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[35].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[35].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 663.170642344618, - "2034-02-01": 648.034317174475, - "2033-02-01": 633.729658222472, - "2032-02-01": 619.923999001352, - "2031-02-01": 606.284673023861, - "2030-02-01": 592.978013533625, - "2029-02-01": 580.004020530645, - "2028-02-01": 567.362694014921, - "2027-02-01": 554.721367499198, - "2026-02-01": 542.080040983474, - "2025-02-01": 529.272381224122, - "2024-12-01": 524.956033551977, - "2024-11-01": 524.769740319114, - "2024-10-01": 525.054170165717, - "2024-09-01": 524.450380491348, - "2024-08-01": 523.610397611027, - "2024-07-01": 523.184584507339, - "2024-06-01": 522.577468168097, - "2024-05-01": 522.401154929852, - "2024-04-01": 521.53455873055, - "2024-03-01": 519.511946488034, - "2024-02-01": 516.175301620858, - "2024-01-01": 513, - "2023-01-01": 511, - "2022-01-01": 507, - "2021-01-01": 508, - "2015-01-01": 508 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[36]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[36]", - "description": null, - "label": "bracket 37" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[36].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[36].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 35679.3561963186, - "2034-02-01": 34865.0041988606, - "2033-02-01": 34095.3968166476, - "2032-02-01": 33352.6362035815, - "2031-02-01": 32618.8245135644, - "2030-02-01": 31902.9106696453, - "2029-02-01": 31204.8946718242, - "2028-02-01": 30524.776520101, - "2027-02-01": 29844.6583683779, - "2026-02-01": 29164.5402166547, - "2025-02-01": 28475.4731418826, - "2024-12-01": 28243.2485887613, - "2024-11-01": 28233.2257949465, - "2024-10-01": 28248.5284533602, - "2024-09-01": 28216.0438626924, - "2024-08-01": 28170.851801295, - "2024-07-01": 28147.9425582896, - "2024-06-01": 28115.2789891608, - "2024-05-01": 28105.7931307289, - "2024-04-01": 28059.1692416436, - "2024-03-01": 27950.3503373679, - "2024-02-01": 27770.8349410052, - "2024-01-01": 27600, - "2023-01-01": 26900, - "2022-01-01": 26200, - "2021-01-01": 25600, - "2015-01-01": 25600 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[36].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[36].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 679.976136205203, - "2034-02-01": 664.456239442054, - "2033-02-01": 649.789084259298, - "2032-02-01": 635.633574024778, - "2031-02-01": 621.648612106337, - "2030-02-01": 608.004746820052, - "2029-02-01": 594.701978165925, - "2028-02-01": 581.740306143955, - "2027-02-01": 568.778634121984, - "2026-02-01": 555.816962100014, - "2025-02-01": 542.684741761965, - "2024-12-01": 538.259012959727, - "2024-11-01": 538.067998845719, - "2024-10-01": 538.359636466213, - "2024-09-01": 537.740546078848, - "2024-08-01": 536.879277082651, - "2024-07-01": 536.44267339349, - "2024-06-01": 535.820172039803, - "2024-05-01": 535.63939082476, - "2024-04-01": 534.750834097991, - "2024-03-01": 532.676966574476, - "2024-02-01": 529.25576735394, - "2024-01-01": 526, - "2023-01-01": 523, - "2021-01-01": 520, - "2015-01-01": 520 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[37]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[37]", - "description": null, - "label": "bracket 38" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[37].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[37].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 35808.6292260154, - "2034-02-01": 34991.326677842, - "2033-02-01": 34218.9308630847, - "2032-02-01": 33473.4790883771, - "2031-02-01": 32737.0086603527, - "2030-02-01": 32018.5009256948, - "2029-02-01": 31317.9558844033, - "2028-02-01": 30635.3735364782, - "2027-02-01": 29952.7911885532, - "2026-02-01": 29270.2088406281, - "2025-02-01": 28578.6451460198, - "2024-12-01": 28345.5791995902, - "2024-11-01": 28335.520091305, - "2024-10-01": 28350.8781941333, - "2024-09-01": 28318.2759056732, - "2024-08-01": 28272.9201049229, - "2024-07-01": 28249.9278574138, - "2024-06-01": 28217.1459420201, - "2024-05-01": 28207.6257145358, - "2024-04-01": 28160.8328983162, - "2024-03-01": 28051.6197226482, - "2024-02-01": 27871.4539081828, - "2024-01-01": 27700, - "2023-01-01": 27000, - "2022-01-01": 26300, - "2021-01-01": 25700, - "2015-01-01": 25700 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[37].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[37].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 695.48889976882, - "2034-02-01": 679.61493691982, - "2033-02-01": 664.613169831754, - "2032-02-01": 650.134720200248, - "2031-02-01": 635.83070972093, - "2030-02-01": 621.875577545985, - "2029-02-01": 608.269323675414, - "2028-02-01": 595.011948109216, - "2027-02-01": 581.754572543018, - "2026-02-01": 568.49719697682, - "2025-02-01": 555.065382258436, - "2024-12-01": 550.538686259188, - "2024-11-01": 550.343314408739, - "2024-10-01": 550.641605358978, - "2024-09-01": 550.00839123654, - "2024-08-01": 549.127473517997, - "2024-07-01": 548.680909288399, - "2024-06-01": 548.044206382917, - "2024-05-01": 547.859300881599, - "2024-04-01": 546.950472898706, - "2024-03-01": 544.829292808114, - "2024-02-01": 541.330043415246, - "2024-01-01": 538, - "2023-01-01": 536, - "2022-01-01": 532, - "2021-01-01": 533, - "2015-01-01": 533 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[38]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[38]", - "description": null, - "label": "bracket 39" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[38].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[38].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 35937.9022557122, - "2034-02-01": 35117.6491568234, - "2033-02-01": 34342.4649095219, - "2032-02-01": 33594.3219731727, - "2031-02-01": 32855.192807141, - "2030-02-01": 32134.0911817442, - "2029-02-01": 31431.0170969823, - "2028-02-01": 30745.9705528554, - "2027-02-01": 30060.9240087285, - "2026-02-01": 29375.8774646015, - "2025-02-01": 28681.8171501571, - "2024-12-01": 28447.909810419, - "2024-11-01": 28437.8143876635, - "2024-10-01": 28453.2279349063, - "2024-09-01": 28420.5079486539, - "2024-08-01": 28374.9884085508, - "2024-07-01": 28351.9131565381, - "2024-06-01": 28319.0128948793, - "2024-05-01": 28309.4582983428, - "2024-04-01": 28262.4965549889, - "2024-03-01": 28152.8891079286, - "2024-02-01": 27972.0728753603, - "2024-01-01": 27800, - "2023-01-01": 27100, - "2022-01-01": 26400, - "2021-01-01": 25800, - "2015-01-01": 25800 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[38].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[38].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 711.001663332436, - "2034-02-01": 694.773634397585, - "2033-02-01": 679.437255404209, - "2032-02-01": 664.635866375719, - "2031-02-01": 650.012807335523, - "2030-02-01": 635.746408271918, - "2029-02-01": 621.836669184902, - "2028-02-01": 608.283590074477, - "2027-02-01": 594.730510964052, - "2026-02-01": 581.177431853627, - "2025-02-01": 567.446022754907, - "2024-12-01": 562.81835955865, - "2024-11-01": 562.618629971759, - "2024-10-01": 562.923574251744, - "2024-09-01": 562.276236394233, - "2024-08-01": 561.375669953343, - "2024-07-01": 560.919145183307, - "2024-06-01": 560.26824072603, - "2024-05-01": 560.079210938437, - "2024-04-01": 559.15011169942, - "2024-03-01": 556.981619041752, - "2024-02-01": 553.404319476553, - "2024-01-01": 550, - "2023-01-01": 548, - "2022-01-01": 544, - "2021-01-01": 732, - "2015-01-01": 732 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[39]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[39]", - "description": null, - "label": "bracket 40" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[39].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[39].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 36067.175285409, - "2034-02-01": 35243.9716358048, - "2033-02-01": 34465.998955959, - "2032-02-01": 33715.1648579683, - "2031-02-01": 32973.3769539293, - "2030-02-01": 32249.6814377936, - "2029-02-01": 31544.0783095614, - "2028-02-01": 30856.5675692326, - "2027-02-01": 30169.0568289037, - "2026-02-01": 29481.5460885749, - "2025-02-01": 28784.9891542944, - "2024-12-01": 28550.2404212479, - "2024-11-01": 28540.108684022, - "2024-10-01": 28555.5776756794, - "2024-09-01": 28522.7399916347, - "2024-08-01": 28477.0567121786, - "2024-07-01": 28453.8984556623, - "2024-06-01": 28420.8798477386, - "2024-05-01": 28411.2908821498, - "2024-04-01": 28364.1602116615, - "2024-03-01": 28254.1584932089, - "2024-02-01": 28072.6918425379, - "2024-01-01": 27900, - "2023-01-01": 27200, - "2022-01-01": 26500, - "2021-01-01": 25900, - "2015-01-01": 25900 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[39].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[39].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 727.807157193021, - "2034-02-01": 711.195556665164, - "2033-02-01": 695.496681441036, - "2032-02-01": 680.345441399145, - "2031-02-01": 665.376746417999, - "2030-02-01": 650.773141558345, - "2029-02-01": 636.534626820182, - "2028-02-01": 622.66120220351, - "2027-02-01": 608.787777586839, - "2026-02-01": 594.914352970167, - "2025-02-01": 580.85838329275, - "2024-12-01": 576.1213389664, - "2024-11-01": 575.916888498364, - "2024-10-01": 576.229040552239, - "2024-09-01": 575.566401981733, - "2024-08-01": 574.644549424967, - "2024-07-01": 574.177234069458, - "2024-06-01": 573.510944597736, - "2024-05-01": 573.317446833346, - "2024-04-01": 572.366387066861, - "2024-03-01": 570.146639128193, - "2024-02-01": 566.484785209635, - "2024-01-01": 563, - "2023-01-01": 561, - "2022-01-01": 557, - "2021-01-01": 746, - "2015-01-01": 746 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[40]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[40]", - "description": null, - "label": "bracket 41" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[40].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[40].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 36196.4483151059, - "2034-02-01": 35370.2941147862, - "2033-02-01": 34589.5330023961, - "2032-02-01": 33836.0077427639, - "2031-02-01": 33091.5611007175, - "2030-02-01": 32365.2716938431, - "2029-02-01": 31657.1395221405, - "2028-02-01": 30967.1645856098, - "2027-02-01": 30277.189649079, - "2026-02-01": 29587.2147125483, - "2025-02-01": 28888.1611584316, - "2024-12-01": 28652.5710320767, - "2024-11-01": 28642.4029803805, - "2024-10-01": 28657.9274164524, - "2024-09-01": 28624.9720346155, - "2024-08-01": 28579.1250158065, - "2024-07-01": 28555.8837547865, - "2024-06-01": 28522.7468005979, - "2024-05-01": 28513.1234659568, - "2024-04-01": 28465.8238683341, - "2024-03-01": 28355.4278784892, - "2024-02-01": 28173.3108097154, - "2024-01-01": 28000, - "2023-01-01": 27300, - "2022-01-01": 26600, - "2021-01-01": 26000, - "2015-01-01": 26000 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[40].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[40].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 743.319920756638, - "2034-02-01": 726.35425414293, - "2033-02-01": 710.320767013492, - "2032-02-01": 694.846587574615, - "2031-02-01": 679.558844032592, - "2030-02-01": 664.643972284278, - "2029-02-01": 650.101972329671, - "2028-02-01": 635.932844168772, - "2027-02-01": 621.763716007873, - "2026-02-01": 607.594587846973, - "2025-02-01": 593.239023789221, - "2024-12-01": 588.401012265861, - "2024-11-01": 588.192204061385, - "2024-10-01": 588.511009445005, - "2024-09-01": 587.834247139425, - "2024-08-01": 586.892745860313, - "2024-07-01": 586.415469964367, - "2024-06-01": 585.73497894085, - "2024-05-01": 585.537356890185, - "2024-04-01": 584.566025867576, - "2024-03-01": 582.298965361832, - "2024-02-01": 578.559061270942, - "2024-01-01": 575, - "2023-01-01": 574, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[41]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[41]", - "description": null, - "label": "bracket 42" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[41].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[41].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 36325.7213448027, - "2034-02-01": 35496.6165937675, - "2033-02-01": 34713.0670488332, - "2032-02-01": 33956.8506275594, - "2031-02-01": 33209.7452475058, - "2030-02-01": 32480.8619498925, - "2029-02-01": 31770.2007347196, - "2028-02-01": 31077.7616019869, - "2027-02-01": 30385.3224692543, - "2026-02-01": 29692.8833365217, - "2025-02-01": 28991.3331625689, - "2024-12-01": 28754.9016429056, - "2024-11-01": 28744.697276739, - "2024-10-01": 28760.2771572254, - "2024-09-01": 28727.2040775962, - "2024-08-01": 28681.1933194344, - "2024-07-01": 28657.8690539108, - "2024-06-01": 28624.6137534572, - "2024-05-01": 28614.9560497638, - "2024-04-01": 28567.4875250067, - "2024-03-01": 28456.6972637695, - "2024-02-01": 28273.929776893, - "2024-01-01": 28100, - "2023-01-01": 27400, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[41].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[41].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 760.125414617223, - "2034-02-01": 742.776176410509, - "2033-02-01": 726.380193050318, - "2032-02-01": 710.556162598041, - "2031-02-01": 694.922783115068, - "2030-02-01": 679.670705570705, - "2029-02-01": 664.79992996495, - "2028-02-01": 650.310456297805, - "2027-02-01": 635.820982630659, - "2026-02-01": 621.331508963514, - "2025-02-01": 606.651384327064, - "2024-12-01": 601.703991673611, - "2024-11-01": 601.49046258799, - "2024-10-01": 601.8164757455, - "2024-09-01": 601.124412726925, - "2024-08-01": 600.161625331937, - "2024-07-01": 599.673558850518, - "2024-06-01": 598.977682812556, - "2024-05-01": 598.775592785093, - "2024-04-01": 597.782301235016, - "2024-03-01": 595.463985448273, - "2024-02-01": 591.639527004024, - "2024-01-01": 588, - "2023-01-01": "Infinity", - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[42]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[42]", - "description": null, - "label": "bracket 43" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[42].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[42].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 36454.9943744995, - "2034-02-01": 35622.9390727489, - "2033-02-01": 34836.6010952704, - "2032-02-01": 34077.693512355, - "2031-02-01": 33327.9293942941, - "2030-02-01": 32596.452205942, - "2029-02-01": 31883.2619472986, - "2028-02-01": 31188.3586183641, - "2027-02-01": 30493.4552894296, - "2026-02-01": 29798.551960495, - "2025-02-01": 29094.5051667061, - "2024-12-01": 28857.2322537344, - "2024-11-01": 28846.9915730975, - "2024-10-01": 28862.6268979985, - "2024-09-01": 28829.436120577, - "2024-08-01": 28783.2616230623, - "2024-07-01": 28759.854353035, - "2024-06-01": 28726.4807063165, - "2024-05-01": 28716.7886335708, - "2024-04-01": 28669.1511816794, - "2024-03-01": 28557.9666490498, - "2024-02-01": 28374.5487440705, - "2024-01-01": 28200, - "2015-01-01": 28200 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[42].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.two_or_more_dependents[42].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": "Infinity", - "2034-02-01": "Infinity", - "2033-02-01": "Infinity", - "2032-02-01": "Infinity", - "2031-02-01": "Infinity", - "2030-02-01": "Infinity", - "2029-02-01": "Infinity", - "2028-02-01": "Infinity", - "2027-02-01": "Infinity", - "2026-02-01": "Infinity", - "2025-02-01": "Infinity", - "2024-12-01": "Infinity", - "2024-11-01": "Infinity", - "2024-10-01": "Infinity", - "2024-09-01": "Infinity", - "2024-08-01": "Infinity", - "2024-07-01": "Infinity", - "2024-06-01": "Infinity", - "2024-05-01": "Infinity", - "2024-04-01": "Infinity", - "2024-03-01": "Infinity", - "2024-02-01": "Infinity", - "2024-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent", - "description": "Arkansas reduces the tax liability of low-income head of household filers with up to one dependent to the following amount, in lieu of a standard or itemized deduction.", - "label": "Arkansas low income tax table head of household amount no or one dependent" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[0]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 0, - "2034-02-01": 0, - "2033-02-01": 0, - "2032-02-01": 0, - "2031-02-01": 0, - "2030-02-01": 0, - "2029-02-01": 0, - "2028-02-01": 0, - "2027-02-01": 0, - "2026-02-01": 0, - "2025-02-01": 0, - "2024-12-01": 0, - "2024-11-01": 0, - "2024-10-01": 0, - "2024-09-01": 0, - "2024-08-01": 0, - "2024-07-01": 0, - "2024-06-01": 0, - "2024-05-01": 0, - "2024-04-01": 0, - "2024-03-01": 0, - "2024-02-01": 0, - "2024-01-01": 0, - "2023-12-01": 0, - "2023-11-01": 0, - "2023-10-01": 0, - "2023-09-01": 0, - "2023-08-01": 0, - "2023-07-01": 0, - "2023-06-01": 0, - "2023-05-01": 0, - "2023-04-01": 0, - "2023-03-01": 0, - "2023-02-01": 0, - "2023-01-01": 0, - "2022-12-01": 0, - "2022-11-01": 0, - "2022-10-01": 0, - "2022-09-01": 0, - "2022-08-01": 0, - "2022-07-01": 0, - "2022-06-01": 0, - "2022-05-01": 0, - "2022-04-01": 0, - "2022-03-01": 0, - "2022-02-01": 0, - "2022-01-01": 0, - "2021-12-01": 0, - "2021-11-01": 0, - "2021-10-01": 0, - "2021-09-01": 0, - "2021-08-01": 0, - "2021-07-01": 0, - "2021-06-01": 0, - "2021-05-01": 0, - "2021-04-01": 0, - "2021-03-01": 0, - "2021-02-01": 0, - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[0].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 0, - "2034-02-01": 0, - "2033-02-01": 0, - "2032-02-01": 0, - "2031-02-01": 0, - "2030-02-01": 0, - "2029-02-01": 0, - "2028-02-01": 0, - "2027-02-01": 0, - "2026-02-01": 0, - "2025-02-01": 0, - "2024-12-01": 0, - "2024-11-01": 0, - "2024-10-01": 0, - "2024-09-01": 0, - "2024-08-01": 0, - "2024-07-01": 0, - "2024-06-01": 0, - "2024-05-01": 0, - "2024-04-01": 0, - "2024-03-01": 0, - "2024-02-01": 0, - "2024-01-01": 0, - "2023-12-01": 0, - "2023-11-01": 0, - "2023-10-01": 0, - "2023-09-01": 0, - "2023-08-01": 0, - "2023-07-01": 0, - "2023-06-01": 0, - "2023-05-01": 0, - "2023-04-01": 0, - "2023-03-01": 0, - "2023-02-01": 0, - "2023-01-01": 0, - "2022-12-01": 0, - "2022-11-01": 0, - "2022-10-01": 0, - "2022-09-01": 0, - "2022-08-01": 0, - "2022-07-01": 0, - "2022-06-01": 0, - "2022-05-01": 0, - "2022-04-01": 0, - "2022-03-01": 0, - "2022-02-01": 0, - "2022-01-01": 0, - "2021-12-01": 0, - "2021-11-01": 0, - "2021-10-01": 0, - "2021-09-01": 0, - "2021-08-01": 0, - "2021-07-01": 0, - "2021-06-01": 0, - "2021-05-01": 0, - "2021-04-01": 0, - "2021-03-01": 0, - "2021-02-01": 0, - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[1]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 26219.1558831063, - "2034-02-01": 25620.7251870033, - "2033-02-01": 25055.1752983785, - "2032-02-01": 24509.3538942406, - "2031-02-01": 23970.1086515983, - "2030-02-01": 23444.0157319473, - "2029-02-01": 22931.0751352876, - "2028-02-01": 22431.2868616192, - "2027-02-01": 21931.4985879507, - "2026-02-01": 21431.7103142823, - "2025-02-01": 20925.3458791182, - "2024-12-01": 20754.6944883064, - "2024-11-01": 20747.3291874313, - "2024-10-01": 20758.5744235888, - "2024-09-01": 20734.7029573597, - "2024-08-01": 20701.4933418067, - "2024-07-01": 20684.6583683779, - "2024-06-01": 20660.6553789188, - "2024-05-01": 20653.6846477334, - "2024-04-01": 20619.4228463412, - "2024-03-01": 20539.4567225542, - "2024-02-01": 20407.5389229517, - "2024-01-01": 20282, - "2023-01-01": 19691, - "2022-01-01": 19117, - "2021-01-01": 18560, - "2015-01-01": 18560 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[1].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 84.0274693029243, - "2034-02-01": 82.1096113378964, - "2033-02-01": 80.2971301841338, - "2032-02-01": 78.5478751171304, - "2031-02-01": 76.81969541238, - "2030-02-01": 75.1336664321357, - "2029-02-01": 73.4897881763975, - "2028-02-01": 71.8880606451655, - "2027-02-01": 70.2863331139334, - "2026-02-01": 68.6846055827013, - "2025-02-01": 67.0618026892162, - "2024-12-01": 66.5148970387495, - "2024-11-01": 66.4912926330261, - "2024-10-01": 66.5273315024788, - "2024-09-01": 66.4508279375002, - "2024-08-01": 66.3443973581223, - "2024-07-01": 66.2904444307545, - "2024-06-01": 66.2135193585308, - "2024-05-01": 66.1911794745426, - "2024-04-01": 66.0813768372042, - "2024-03-01": 65.8251004322071, - "2024-02-01": 65.4023286654108, - "2024-01-01": 65, - "2023-01-01": 64, - "2021-01-01": 62, - "2015-01-01": 62 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[2]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 26242.4250284517, - "2034-02-01": 25643.46323322, - "2033-02-01": 25077.4114267372, - "2032-02-01": 24531.1056135038, - "2031-02-01": 23991.3817980202, - "2030-02-01": 23464.8219780362, - "2029-02-01": 22951.4261535518, - "2028-02-01": 22451.1943245671, - "2027-02-01": 21950.9624955823, - "2026-02-01": 21450.7306665975, - "2025-02-01": 20943.9168398629, - "2024-12-01": 20773.1139982556, - "2024-11-01": 20765.7421607758, - "2024-10-01": 20776.997376928, - "2024-09-01": 20753.1047250962, - "2024-08-01": 20719.8656364597, - "2024-07-01": 20703.0157222202, - "2024-06-01": 20678.9914304335, - "2024-05-01": 20672.0145128187, - "2024-04-01": 20637.7223045422, - "2024-03-01": 20557.6852119047, - "2024-02-01": 20425.6503370437, - "2024-01-01": 20300, - "2023-01-01": 19700, - "2022-01-01": 19200, - "2021-01-01": 18600, - "2015-01-01": 18600 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[2].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 96.954772272605, - "2034-02-01": 94.7418592360343, - "2033-02-01": 92.6505348278467, - "2032-02-01": 90.6321635966889, - "2031-02-01": 88.6381100912077, - "2030-02-01": 86.6926920370797, - "2029-02-01": 84.7959094343049, - "2028-02-01": 82.9477622828833, - "2027-02-01": 81.0996151314616, - "2026-02-01": 79.25146798004, - "2025-02-01": 77.3790031029418, - "2024-12-01": 76.747958121634, - "2024-11-01": 76.7207222688762, - "2024-10-01": 76.7623055797832, - "2024-09-01": 76.6740322355772, - "2024-08-01": 76.5512277209103, - "2024-07-01": 76.4889743431782, - "2024-06-01": 76.4002146444587, - "2024-05-01": 76.3744378552415, - "2024-04-01": 76.2477425044664, - "2024-03-01": 75.9520389602389, - "2024-02-01": 75.4642253831663, - "2024-01-01": 75, - "2023-01-01": 73, - "2022-01-01": 72, - "2021-01-01": 71, - "2015-01-01": 71 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[3]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 26371.6980581485, - "2034-02-01": 25769.7857122013, - "2033-02-01": 25200.9454731743, - "2032-02-01": 24651.9484982994, - "2031-02-01": 24109.5659448085, - "2030-02-01": 23580.4122340857, - "2029-02-01": 23064.4873661309, - "2028-02-01": 22561.7913409442, - "2027-02-01": 22059.0953157576, - "2026-02-01": 21556.3992905709, - "2025-02-01": 21047.0888440002, - "2024-12-01": 20875.4446090845, - "2024-11-01": 20868.0364571343, - "2024-10-01": 20879.347117701, - "2024-09-01": 20855.336768077, - "2024-08-01": 20821.9339400876, - "2024-07-01": 20805.0010213445, - "2024-06-01": 20780.8583832928, - "2024-05-01": 20773.8470966257, - "2024-04-01": 20739.3859612149, - "2024-03-01": 20658.954597185, - "2024-02-01": 20526.2693042212, - "2024-01-01": 20400, - "2023-01-01": 19800, - "2022-01-01": 19300, - "2021-01-01": 18700, - "2015-01-01": 18700 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[3].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 108.589344945318, - "2034-02-01": 106.110882344358, - "2033-02-01": 103.768599007188, - "2032-02-01": 101.508023228292, - "2031-02-01": 99.2746833021526, - "2030-02-01": 97.0958150815292, - "2029-02-01": 94.9714185664214, - "2028-02-01": 92.9014937568292, - "2027-02-01": 90.831568947237, - "2026-02-01": 88.7616441376448, - "2025-02-01": 86.6644834752948, - "2024-12-01": 85.9577130962301, - "2024-11-01": 85.9272089411414, - "2024-10-01": 85.9737822493572, - "2024-09-01": 85.8749161038464, - "2024-08-01": 85.7373750474196, - "2024-07-01": 85.6676512643596, - "2024-06-01": 85.5682404017937, - "2024-05-01": 85.5393703978704, - "2024-04-01": 85.3974716050023, - "2024-03-01": 85.0662836354676, - "2024-02-01": 84.5199324291463, - "2024-01-01": 84, - "2023-01-01": 82, - "2021-01-01": 81, - "2015-01-01": 81 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[4]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 26500.9710878454, - "2034-02-01": 25896.1081911827, - "2033-02-01": 25324.4795196114, - "2032-02-01": 24772.791383095, - "2031-02-01": 24227.7500915968, - "2030-02-01": 23696.0024901351, - "2029-02-01": 23177.54857871, - "2028-02-01": 22672.3883573214, - "2027-02-01": 22167.2281359328, - "2026-02-01": 21662.0679145443, - "2025-02-01": 21150.2608481374, - "2024-12-01": 20977.7752199133, - "2024-11-01": 20970.3307534928, - "2024-10-01": 20981.6968584741, - "2024-09-01": 20957.5688110578, - "2024-08-01": 20924.0022437155, - "2024-07-01": 20906.9863204687, - "2024-06-01": 20882.725336152, - "2024-05-01": 20875.6796804327, - "2024-04-01": 20841.0496178875, - "2024-03-01": 20760.2239824653, - "2024-02-01": 20626.8882713988, - "2024-01-01": 20500, - "2023-01-01": 19900, - "2022-01-01": 19400, - "2021-01-01": 18800, - "2015-01-01": 18800 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[4].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 120.22391761803, - "2034-02-01": 117.479905452683, - "2033-02-01": 114.88666318653, - "2032-02-01": 112.383882859894, - "2031-02-01": 109.911256513098, - "2030-02-01": 107.498938125979, - "2029-02-01": 105.146927698538, - "2028-02-01": 102.855225230775, - "2027-02-01": 100.563522763012, - "2026-02-01": 98.2718202952496, - "2025-02-01": 95.9499638476478, - "2024-12-01": 95.1674680708262, - "2024-11-01": 95.1336956134065, - "2024-10-01": 95.1852589189312, - "2024-09-01": 95.0757999721157, - "2024-08-01": 94.9235223739288, - "2024-07-01": 94.846328185541, - "2024-06-01": 94.7362661591287, - "2024-05-01": 94.7043029404994, - "2024-04-01": 94.5472007055383, - "2024-03-01": 94.1805283106963, - "2024-02-01": 93.5756394751262, - "2024-01-01": 93, - "2023-01-01": 92, - "2021-01-01": 90, - "2015-01-01": 90 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[5]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 26630.2441175422, - "2034-02-01": 26022.4306701641, - "2033-02-01": 25448.0135660486, - "2032-02-01": 24893.6342678906, - "2031-02-01": 24345.934238385, - "2030-02-01": 23811.5927461846, - "2029-02-01": 23290.6097912891, - "2028-02-01": 22782.9853736986, - "2027-02-01": 22275.3609561081, - "2026-02-01": 21767.7365385177, - "2025-02-01": 21253.4328522747, - "2024-12-01": 21080.1058307421, - "2024-11-01": 21072.6250498513, - "2024-10-01": 21084.0465992471, - "2024-09-01": 21059.8008540385, - "2024-08-01": 21026.0705473434, - "2024-07-01": 21008.971619593, - "2024-06-01": 20984.5922890113, - "2024-05-01": 20977.5122642397, - "2024-04-01": 20942.7132745601, - "2024-03-01": 20861.4933677456, - "2024-02-01": 20727.5072385763, - "2024-01-01": 20600, - "2023-01-01": 20000, - "2022-01-01": 19500, - "2021-01-01": 18900, - "2015-01-01": 18900 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[5].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 133.151220587711, - "2034-02-01": 130.11215335082, - "2033-02-01": 127.240067830243, - "2032-02-01": 124.468171339453, - "2031-02-01": 121.729671191925, - "2030-02-01": 119.057963730923, - "2029-02-01": 116.453048956445, - "2028-02-01": 113.914926868493, - "2027-02-01": 111.376804780541, - "2026-02-01": 108.838682692588, - "2025-02-01": 106.267164261373, - "2024-12-01": 105.400529153711, - "2024-11-01": 105.363125249257, - "2024-10-01": 105.420232996236, - "2024-09-01": 105.299004270193, - "2024-08-01": 105.130352736717, - "2024-07-01": 105.044858097965, - "2024-06-01": 104.922961445057, - "2024-05-01": 104.887561321198, - "2024-04-01": 104.7135663728, - "2024-03-01": 104.307466838728, - "2024-02-01": 103.637536192882, - "2024-01-01": 103, - "2023-01-01": 101, - "2022-01-01": 100, - "2021-01-01": 99, - "2015-01-01": 99 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[6]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[6].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 26759.517147239, - "2034-02-01": 26148.7531491455, - "2033-02-01": 25571.5476124857, - "2032-02-01": 25014.4771526861, - "2031-02-01": 24464.1183851733, - "2030-02-01": 23927.183002234, - "2029-02-01": 23403.6710038681, - "2028-02-01": 22893.5823900758, - "2027-02-01": 22383.4937762834, - "2026-02-01": 21873.405162491, - "2025-02-01": 21356.6048564119, - "2024-12-01": 21182.436441571, - "2024-11-01": 21174.9193462098, - "2024-10-01": 21186.3963400202, - "2024-09-01": 21162.0328970193, - "2024-08-01": 21128.1388509713, - "2024-07-01": 21110.9569187172, - "2024-06-01": 21086.4592418706, - "2024-05-01": 21079.3448480466, - "2024-04-01": 21044.3769312327, - "2024-03-01": 20962.7627530259, - "2024-02-01": 20828.1262057539, - "2024-01-01": 20700, - "2023-01-01": 20100, - "2022-01-01": 19600, - "2021-01-01": 19000, - "2015-01-01": 19000 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[6].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[6].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 144.785793260423, - "2034-02-01": 141.481176459145, - "2033-02-01": 138.358132009584, - "2032-02-01": 135.344030971055, - "2031-02-01": 132.36624440287, - "2030-02-01": 129.461086775372, - "2029-02-01": 126.628558088562, - "2028-02-01": 123.868658342439, - "2027-02-01": 121.108758596316, - "2026-02-01": 118.348858850193, - "2025-02-01": 115.552644633726, - "2024-12-01": 114.610284128307, - "2024-11-01": 114.569611921522, - "2024-10-01": 114.63170966581, - "2024-09-01": 114.499888138462, - "2024-08-01": 114.316500063226, - "2024-07-01": 114.223535019146, - "2024-06-01": 114.090987202392, - "2024-05-01": 114.052493863827, - "2024-04-01": 113.863295473336, - "2024-03-01": 113.421711513957, - "2024-02-01": 112.693243238862, - "2024-01-01": 112, - "2023-01-01": 111, - "2021-01-01": 109, - "2015-01-01": 109 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[7]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[7].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 26888.7901769358, - "2034-02-01": 26275.0756281269, - "2033-02-01": 25695.0816589228, - "2032-02-01": 25135.3200374817, - "2031-02-01": 24582.3025319616, - "2030-02-01": 24042.7732582834, - "2029-02-01": 23516.7322164472, - "2028-02-01": 23004.179406453, - "2027-02-01": 22491.6265964587, - "2026-02-01": 21979.0737864644, - "2025-02-01": 21459.7768605492, - "2024-12-01": 21284.7670523998, - "2024-11-01": 21277.2136425683, - "2024-10-01": 21288.7460807932, - "2024-09-01": 21264.2649400001, - "2024-08-01": 21230.2071545991, - "2024-07-01": 21212.9422178414, - "2024-06-01": 21188.3261947299, - "2024-05-01": 21181.1774318536, - "2024-04-01": 21146.0405879053, - "2024-03-01": 21064.0321383063, - "2024-02-01": 20928.7451729315, - "2024-01-01": 20800, - "2023-01-01": 20200, - "2022-01-01": 19700, - "2021-01-01": 19100, - "2015-01-01": 19100 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[7].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[7].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 157.713096230104, - "2034-02-01": 154.113424357283, - "2033-02-01": 150.711536653297, - "2032-02-01": 147.428319450614, - "2031-02-01": 144.184659081698, - "2030-02-01": 141.020112380316, - "2029-02-01": 137.934679346469, - "2028-02-01": 134.928359980157, - "2027-02-01": 131.922040613844, - "2026-02-01": 128.915721247532, - "2025-02-01": 125.869845047452, - "2024-12-01": 124.843345211191, - "2024-11-01": 124.799041557372, - "2024-10-01": 124.866683743114, - "2024-09-01": 124.723092436539, - "2024-08-01": 124.523330426014, - "2024-07-01": 124.42206493157, - "2024-06-01": 124.277682488319, - "2024-05-01": 124.235752244526, - "2024-04-01": 124.029661140599, - "2024-03-01": 123.548650041989, - "2024-02-01": 122.755139956617, - "2024-01-01": 122, - "2023-01-01": 120, - "2022-01-01": 119, - "2021-01-01": 118, - "2015-01-01": 118 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[8]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[8].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 27018.0632066326, - "2034-02-01": 26401.3981071082, - "2033-02-01": 25818.61570536, - "2032-02-01": 25256.1629222773, - "2031-02-01": 24700.4866787499, - "2030-02-01": 24158.3635143329, - "2029-02-01": 23629.7934290263, - "2028-02-01": 23114.7764228301, - "2027-02-01": 22599.759416634, - "2026-02-01": 22084.7424104378, - "2025-02-01": 21562.9488646865, - "2024-12-01": 21387.0976632287, - "2024-11-01": 21379.5079389268, - "2024-10-01": 21391.0958215663, - "2024-09-01": 21366.4969829808, - "2024-08-01": 21332.275458227, - "2024-07-01": 21314.9275169657, - "2024-06-01": 21290.1931475891, - "2024-05-01": 21283.0100156606, - "2024-04-01": 21247.704244578, - "2024-03-01": 21165.3015235866, - "2024-02-01": 21029.364140109, - "2024-01-01": 20900, - "2023-01-01": 20300, - "2022-01-01": 19800, - "2021-01-01": 19200, - "2015-01-01": 19200 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[8].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[8].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 169.347668902817, - "2034-02-01": 165.482447465607, - "2033-02-01": 161.829600832639, - "2032-02-01": 158.304179082217, - "2031-02-01": 154.821232292643, - "2030-02-01": 151.423235424766, - "2029-02-01": 148.110188478586, - "2028-02-01": 144.882091454103, - "2027-02-01": 141.65399442962, - "2026-02-01": 138.425897405137, - "2025-02-01": 135.155325419805, - "2024-12-01": 134.053100185787, - "2024-11-01": 134.005528229637, - "2024-10-01": 134.078160412688, - "2024-09-01": 133.923976304808, - "2024-08-01": 133.709477752523, - "2024-07-01": 133.600741852751, - "2024-06-01": 133.445708245654, - "2024-05-01": 133.400684787155, - "2024-04-01": 133.179390241135, - "2024-03-01": 132.662894717217, - "2024-02-01": 131.810847002597, - "2024-01-01": 131, - "2023-01-01": 129, - "2021-01-01": 128, - "2015-01-01": 128 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[9]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[9].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 27147.3362363294, - "2034-02-01": 26527.7205860896, - "2033-02-01": 25942.1497517971, - "2032-02-01": 25377.0058070729, - "2031-02-01": 24818.6708255382, - "2030-02-01": 24273.9537703823, - "2029-02-01": 23742.8546416054, - "2028-02-01": 23225.3734392073, - "2027-02-01": 22707.8922368093, - "2026-02-01": 22190.4110344112, - "2025-02-01": 21666.1208688237, - "2024-12-01": 21489.4282740575, - "2024-11-01": 21481.8022352853, - "2024-10-01": 21493.4455623393, - "2024-09-01": 21468.7290259616, - "2024-08-01": 21434.3437618549, - "2024-07-01": 21416.9128160899, - "2024-06-01": 21392.0601004484, - "2024-05-01": 21384.8425994676, - "2024-04-01": 21349.3679012506, - "2024-03-01": 21266.5709088669, - "2024-02-01": 21129.9831072866, - "2024-01-01": 21000, - "2023-01-01": 20400, - "2022-01-01": 19900, - "2021-01-01": 19300, - "2015-01-01": 19300 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[9].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[9].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 180.982241575529, - "2034-02-01": 176.851470573931, - "2033-02-01": 172.947665011981, - "2032-02-01": 169.180038713819, - "2031-02-01": 165.457805503588, - "2030-02-01": 161.826358469215, - "2029-02-01": 158.285697610702, - "2028-02-01": 154.835822928049, - "2027-02-01": 151.385948245395, - "2026-02-01": 147.936073562741, - "2025-02-01": 144.440805792158, - "2024-12-01": 143.262855160384, - "2024-11-01": 143.212014901902, - "2024-10-01": 143.289637082262, - "2024-09-01": 143.124860173077, - "2024-08-01": 142.895625079033, - "2024-07-01": 142.779418773933, - "2024-06-01": 142.613734002989, - "2024-05-01": 142.565617329784, - "2024-04-01": 142.329119341671, - "2024-03-01": 141.777139392446, - "2024-02-01": 140.866554048577, - "2024-01-01": 140, - "2023-01-01": 139, - "2021-01-01": 137, - "2015-01-01": 137 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[10]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[10]", - "description": null, - "label": "bracket 11" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[10].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[10].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 27276.6092660262, - "2034-02-01": 26654.043065071, - "2033-02-01": 26065.6837982342, - "2032-02-01": 25497.8486918685, - "2031-02-01": 24936.8549723264, - "2030-02-01": 24389.5440264318, - "2029-02-01": 23855.9158541844, - "2028-02-01": 23335.9704555845, - "2027-02-01": 22816.0250569845, - "2026-02-01": 22296.0796583846, - "2025-02-01": 21769.292872961, - "2024-12-01": 21591.7588848864, - "2024-11-01": 21584.0965316439, - "2024-10-01": 21595.7953031123, - "2024-09-01": 21570.9610689424, - "2024-08-01": 21536.4120654828, - "2024-07-01": 21518.8981152141, - "2024-06-01": 21493.9270533077, - "2024-05-01": 21486.6751832746, - "2024-04-01": 21451.0315579232, - "2024-03-01": 21367.8402941472, - "2024-02-01": 21230.6020744641, - "2024-01-01": 21100, - "2023-01-01": 20500, - "2022-01-01": 20000, - "2021-01-01": 19400, - "2015-01-01": 19400 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[10].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[10].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 193.90954454521, - "2034-02-01": 189.483718472069, - "2033-02-01": 185.301069655693, - "2032-02-01": 181.264327193378, - "2031-02-01": 177.276220182415, - "2030-02-01": 173.385384074159, - "2029-02-01": 169.59181886861, - "2028-02-01": 165.895524565767, - "2027-02-01": 162.199230262923, - "2026-02-01": 158.50293596008, - "2025-02-01": 154.758006205884, - "2024-12-01": 153.495916243268, - "2024-11-01": 153.441444537752, - "2024-10-01": 153.524611159566, - "2024-09-01": 153.348064471154, - "2024-08-01": 153.102455441821, - "2024-07-01": 152.977948686356, - "2024-06-01": 152.800429288917, - "2024-05-01": 152.748875710483, - "2024-04-01": 152.495485008933, - "2024-03-01": 151.904077920478, - "2024-02-01": 150.928450766333, - "2024-01-01": 150, - "2023-01-01": 148, - "2022-01-01": 147, - "2021-01-01": 146, - "2015-01-01": 146 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[11]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[11]", - "description": null, - "label": "bracket 12" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[11].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[11].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 27405.882295723, - "2034-02-01": 26780.3655440524, - "2033-02-01": 26189.2178446713, - "2032-02-01": 25618.6915766641, - "2031-02-01": 25055.0391191147, - "2030-02-01": 24505.1342824812, - "2029-02-01": 23968.9770667635, - "2028-02-01": 23446.5674719617, - "2027-02-01": 22924.1578771598, - "2026-02-01": 22401.748282358, - "2025-02-01": 21872.4648770982, - "2024-12-01": 21694.0894957152, - "2024-11-01": 21686.3908280024, - "2024-10-01": 21698.1450438854, - "2024-09-01": 21673.1931119231, - "2024-08-01": 21638.4803691107, - "2024-07-01": 21620.8834143384, - "2024-06-01": 21595.794006167, - "2024-05-01": 21588.5077670816, - "2024-04-01": 21552.6952145958, - "2024-03-01": 21469.1096794275, - "2024-02-01": 21331.2210416417, - "2024-01-01": 21200, - "2023-01-01": 20600, - "2022-01-01": 20100, - "2021-01-01": 19500, - "2015-01-01": 19500 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[11].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[11].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 205.544117217923, - "2034-02-01": 200.852741580393, - "2033-02-01": 196.419133835035, - "2032-02-01": 192.14018682498, - "2031-02-01": 187.91279339336, - "2030-02-01": 183.788507118609, - "2029-02-01": 179.767328000726, - "2028-02-01": 175.849256039713, - "2027-02-01": 171.931184078699, - "2026-02-01": 168.013112117685, - "2025-02-01": 164.043486578237, - "2024-12-01": 162.705671217864, - "2024-11-01": 162.647931210018, - "2024-10-01": 162.73608782914, - "2024-09-01": 162.548948339424, - "2024-08-01": 162.28860276833, - "2024-07-01": 162.156625607538, - "2024-06-01": 161.968455046252, - "2024-05-01": 161.913808253112, - "2024-04-01": 161.645214109469, - "2024-03-01": 161.018322595706, - "2024-02-01": 159.984157812313, - "2024-01-01": 159, - "2023-01-01": 158, - "2021-01-01": 156, - "2015-01-01": 156 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[12]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[12]", - "description": null, - "label": "bracket 13" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[12].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[12].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 27535.1553254198, - "2034-02-01": 26906.6880230338, - "2033-02-01": 26312.7518911085, - "2032-02-01": 25739.5344614596, - "2031-02-01": 25173.223265903, - "2030-02-01": 24620.7245385306, - "2029-02-01": 24082.0382793426, - "2028-02-01": 23557.1644883388, - "2027-02-01": 23032.2906973351, - "2026-02-01": 22507.4169063314, - "2025-02-01": 21975.6368812355, - "2024-12-01": 21796.4201065441, - "2024-11-01": 21788.6851243609, - "2024-10-01": 21800.4947846584, - "2024-09-01": 21775.4251549039, - "2024-08-01": 21740.5486727385, - "2024-07-01": 21722.8687134626, - "2024-06-01": 21697.6609590263, - "2024-05-01": 21690.3403508886, - "2024-04-01": 21654.3588712685, - "2024-03-01": 21570.3790647079, - "2024-02-01": 21431.8400088192, - "2024-01-01": 21300, - "2023-01-01": 20700, - "2022-01-01": 20200, - "2021-01-01": 19600, - "2015-01-01": 19600 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[12].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[12].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 218.471420187603, - "2034-02-01": 213.484989478531, - "2033-02-01": 208.772538478748, - "2032-02-01": 204.224475304539, - "2031-02-01": 199.731208072188, - "2030-02-01": 195.347532723553, - "2029-02-01": 191.073449258634, - "2028-02-01": 186.90895767743, - "2027-02-01": 182.744466096227, - "2026-02-01": 178.579974515023, - "2025-02-01": 174.360686991962, - "2024-12-01": 172.938732300749, - "2024-11-01": 172.877360845868, - "2024-10-01": 172.971061906445, - "2024-09-01": 172.772152637501, - "2024-08-01": 172.495433131118, - "2024-07-01": 172.355155519962, - "2024-06-01": 172.15515033218, - "2024-05-01": 172.097066633811, - "2024-04-01": 171.811579776731, - "2024-03-01": 171.145261123738, - "2024-02-01": 170.046054530068, - "2024-01-01": 169, - "2023-01-01": 167, - "2022-01-01": 166, - "2021-01-01": 165, - "2015-01-01": 165 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[13]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[13]", - "description": null, - "label": "bracket 14" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[13].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[13].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 27664.4283551166, - "2034-02-01": 27033.0105020151, - "2033-02-01": 26436.2859375456, - "2032-02-01": 25860.3773462552, - "2031-02-01": 25291.4074126913, - "2030-02-01": 24736.3147945801, - "2029-02-01": 24195.0994919217, - "2028-02-01": 23667.761504716, - "2027-02-01": 23140.4235175104, - "2026-02-01": 22613.0855303048, - "2025-02-01": 22078.8088853727, - "2024-12-01": 21898.7507173729, - "2024-11-01": 21890.9794207194, - "2024-10-01": 21902.8445254315, - "2024-09-01": 21877.6571978847, - "2024-08-01": 21842.6169763664, - "2024-07-01": 21824.8540125869, - "2024-06-01": 21799.5279118855, - "2024-05-01": 21792.1729346956, - "2024-04-01": 21756.0225279411, - "2024-03-01": 21671.6484499882, - "2024-02-01": 21532.4589759968, - "2024-01-01": 21400, - "2023-01-01": 20800, - "2022-01-01": 20300, - "2021-01-01": 19700, - "2015-01-01": 19700 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[13].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[13].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 230.105992860316, - "2034-02-01": 224.854012586855, - "2033-02-01": 219.89060265809, - "2032-02-01": 215.100334936142, - "2031-02-01": 210.367781283133, - "2030-02-01": 205.750655768002, - "2029-02-01": 201.24895839075, - "2028-02-01": 196.862689151376, - "2027-02-01": 192.476419912002, - "2026-02-01": 188.090150672628, - "2025-02-01": 183.646167364315, - "2024-12-01": 182.148487275345, - "2024-11-01": 182.083847518133, - "2024-10-01": 182.182538576019, - "2024-09-01": 181.97303650577, - "2024-08-01": 181.681580457627, - "2024-07-01": 181.533832441143, - "2024-06-01": 181.323176089515, - "2024-05-01": 181.26199917644, - "2024-04-01": 180.961308877267, - "2024-03-01": 180.259505798967, - "2024-02-01": 179.101761576048, - "2024-01-01": 178, - "2023-01-01": 176, - "2021-01-01": 175, - "2015-01-01": 175 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[14]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[14]", - "description": null, - "label": "bracket 15" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[14].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[14].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 27793.7013848134, - "2034-02-01": 27159.3329809965, - "2033-02-01": 26559.8199839827, - "2032-02-01": 25981.2202310508, - "2031-02-01": 25409.5915594795, - "2030-02-01": 24851.9050506295, - "2029-02-01": 24308.1607045007, - "2028-02-01": 23778.3585210932, - "2027-02-01": 23248.5563376857, - "2026-02-01": 22718.7541542781, - "2025-02-01": 22181.98088951, - "2024-12-01": 22001.0813282018, - "2024-11-01": 21993.2737170779, - "2024-10-01": 22005.1942662045, - "2024-09-01": 21979.8892408655, - "2024-08-01": 21944.6852799943, - "2024-07-01": 21926.8393117111, - "2024-06-01": 21901.3948647448, - "2024-05-01": 21894.0055185026, - "2024-04-01": 21857.6861846137, - "2024-03-01": 21772.9178352685, - "2024-02-01": 21633.0779431743, - "2024-01-01": 21500, - "2023-01-01": 20900, - "2022-01-01": 20400, - "2021-01-01": 19800, - "2015-01-01": 19800 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[14].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[14].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 241.740565533028, - "2034-02-01": 236.223035695179, - "2033-02-01": 231.008666837431, - "2032-02-01": 225.976194567744, - "2031-02-01": 221.004354494078, - "2030-02-01": 216.153778812452, - "2029-02-01": 211.424467522867, - "2028-02-01": 206.816420625322, - "2027-02-01": 202.208373727778, - "2026-02-01": 197.600326830233, - "2025-02-01": 192.931647736668, - "2024-12-01": 191.358242249941, - "2024-11-01": 191.290334190398, - "2024-10-01": 191.394015245593, - "2024-09-01": 191.173920374039, - "2024-08-01": 190.867727784136, - "2024-07-01": 190.712509362324, - "2024-06-01": 190.49120184685, - "2024-05-01": 190.426931719069, - "2024-04-01": 190.111037977803, - "2024-03-01": 189.373750474196, - "2024-02-01": 188.157468622028, - "2024-01-01": 187, - "2023-01-01": 186, - "2021-01-01": 184, - "2015-01-01": 184 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[15]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[15]", - "description": null, - "label": "bracket 16" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[15].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[15].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 27922.9744145102, - "2034-02-01": 27285.6554599779, - "2033-02-01": 26683.3540304199, - "2032-02-01": 26102.0631158464, - "2031-02-01": 25527.7757062678, - "2030-02-01": 24967.495306679, - "2029-02-01": 24421.2219170798, - "2028-02-01": 23888.9555374704, - "2027-02-01": 23356.689157861, - "2026-02-01": 22824.4227782515, - "2025-02-01": 22285.1528936472, - "2024-12-01": 22103.4119390306, - "2024-11-01": 22095.5680134364, - "2024-10-01": 22107.5440069776, - "2024-09-01": 22082.1212838462, - "2024-08-01": 22046.7535836222, - "2024-07-01": 22028.8246108353, - "2024-06-01": 22003.2618176041, - "2024-05-01": 21995.8381023095, - "2024-04-01": 21959.3498412863, - "2024-03-01": 21874.1872205488, - "2024-02-01": 21733.6969103519, - "2024-01-01": 21600, - "2023-01-01": 21000, - "2022-01-01": 20500, - "2021-01-01": 19900, - "2015-01-01": 19900 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[15].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[15].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 254.667868502709, - "2034-02-01": 248.855283593317, - "2033-02-01": 243.362071481144, - "2032-02-01": 238.060483047303, - "2031-02-01": 232.822769172906, - "2030-02-01": 227.712804417396, - "2029-02-01": 222.730588780774, - "2028-02-01": 217.87612226304, - "2027-02-01": 213.021655745306, - "2026-02-01": 208.167189227572, - "2025-02-01": 203.248848150394, - "2024-12-01": 201.591303332825, - "2024-11-01": 201.519763826248, - "2024-10-01": 201.628989322897, - "2024-09-01": 201.397124672116, - "2024-08-01": 201.074558146924, - "2024-07-01": 200.911039274748, - "2024-06-01": 200.677897132778, - "2024-05-01": 200.610190099768, - "2024-04-01": 200.277403645065, - "2024-03-01": 199.500689002228, - "2024-02-01": 198.219365339784, - "2024-01-01": 197, - "2023-01-01": 195, - "2022-01-01": 194, - "2021-01-01": 193, - "2015-01-01": 193 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[16]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[16]", - "description": null, - "label": "bracket 17" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[16].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[16].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 28052.247444207, - "2034-02-01": 27411.9779389593, - "2033-02-01": 26806.888076857, - "2032-02-01": 26222.906000642, - "2031-02-01": 25645.9598530561, - "2030-02-01": 25083.0855627284, - "2029-02-01": 24534.2831296589, - "2028-02-01": 23999.5525538476, - "2027-02-01": 23464.8219780362, - "2026-02-01": 22930.0914022249, - "2025-02-01": 22388.3248977845, - "2024-12-01": 22205.7425498595, - "2024-11-01": 22197.8623097949, - "2024-10-01": 22209.8937477506, - "2024-09-01": 22184.353326827, - "2024-08-01": 22148.8218872501, - "2024-07-01": 22130.8099099596, - "2024-06-01": 22105.1287704634, - "2024-05-01": 22097.6706861165, - "2024-04-01": 22061.0134979589, - "2024-03-01": 21975.4566058291, - "2024-02-01": 21834.3158775295, - "2024-01-01": 21700, - "2023-01-01": 21100, - "2022-01-01": 20600, - "2021-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[16].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[16].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 266.302441175422, - "2034-02-01": 260.224306701641, - "2033-02-01": 254.480135660486, - "2032-02-01": 248.936342678906, - "2031-02-01": 243.45934238385, - "2030-02-01": 238.115927461846, - "2029-02-01": 232.906097912891, - "2028-02-01": 227.829853736986, - "2027-02-01": 222.753609561081, - "2026-02-01": 217.677365385177, - "2025-02-01": 212.534328522747, - "2024-12-01": 210.801058307421, - "2024-11-01": 210.726250498513, - "2024-10-01": 210.840465992471, - "2024-09-01": 210.598008540385, - "2024-08-01": 210.260705473434, - "2024-07-01": 210.08971619593, - "2024-06-01": 209.845922890113, - "2024-05-01": 209.775122642397, - "2024-04-01": 209.427132745601, - "2024-03-01": 208.614933677456, - "2024-02-01": 207.275072385763, - "2024-01-01": 206, - "2023-01-01": 205, - "2021-01-01": 203, - "2015-01-01": 203 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[17]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[17]", - "description": null, - "label": "bracket 18" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[17].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[17].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 28181.5204739038, - "2034-02-01": 27538.3004179407, - "2033-02-01": 26930.4221232941, - "2032-02-01": 26343.7488854376, - "2031-02-01": 25764.1439998444, - "2030-02-01": 25198.6758187778, - "2029-02-01": 24647.3443422379, - "2028-02-01": 24110.1495702247, - "2027-02-01": 23572.9547982115, - "2026-02-01": 23035.7600261983, - "2025-02-01": 22491.4969019218, - "2024-12-01": 22308.0731606883, - "2024-11-01": 22300.1566061534, - "2024-10-01": 22312.2434885237, - "2024-09-01": 22286.5853698078, - "2024-08-01": 22250.8901908779, - "2024-07-01": 22232.7952090838, - "2024-06-01": 22206.9957233227, - "2024-05-01": 22199.5032699235, - "2024-04-01": 22162.6771546316, - "2024-03-01": 22076.7259911094, - "2024-02-01": 21934.934844707, - "2024-01-01": 21800, - "2023-01-01": 21200, - "2022-01-01": 20700, - "2021-01-01": 20100, - "2015-01-01": 20100 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[17].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[17].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 279.229744145102, - "2034-02-01": 272.856554599779, - "2033-02-01": 266.833540304199, - "2032-02-01": 261.020631158464, - "2031-02-01": 255.277757062678, - "2030-02-01": 249.67495306679, - "2029-02-01": 244.212219170798, - "2028-02-01": 238.889555374704, - "2027-02-01": 233.56689157861, - "2026-02-01": 228.244227782515, - "2025-02-01": 222.851528936472, - "2024-12-01": 221.034119390306, - "2024-11-01": 220.955680134364, - "2024-10-01": 221.075440069776, - "2024-09-01": 220.821212838462, - "2024-08-01": 220.467535836222, - "2024-07-01": 220.288246108353, - "2024-06-01": 220.032618176041, - "2024-05-01": 219.958381023095, - "2024-04-01": 219.593498412863, - "2024-03-01": 218.741872205488, - "2024-02-01": 217.336969103519, - "2024-01-01": 216, - "2023-01-01": 214, - "2022-01-01": 213, - "2021-01-01": 212, - "2015-01-01": 212 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[18]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[18]", - "description": null, - "label": "bracket 19" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[18].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[18].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 28310.7935036006, - "2034-02-01": 27664.622896922, - "2033-02-01": 27053.9561697312, - "2032-02-01": 26464.5917702332, - "2031-02-01": 25882.3281466326, - "2030-02-01": 25314.2660748273, - "2029-02-01": 24760.405554817, - "2028-02-01": 24220.7465866019, - "2027-02-01": 23681.0876183868, - "2026-02-01": 23141.4286501717, - "2025-02-01": 22594.668906059, - "2024-12-01": 22410.4037715171, - "2024-11-01": 22402.4509025119, - "2024-10-01": 22414.5932292967, - "2024-09-01": 22388.8174127885, - "2024-08-01": 22352.9584945058, - "2024-07-01": 22334.7805082081, - "2024-06-01": 22308.8626761819, - "2024-05-01": 22301.3358537305, - "2024-04-01": 22264.3408113042, - "2024-03-01": 22177.9953763898, - "2024-02-01": 22035.5538118846, - "2024-01-01": 21900, - "2023-01-01": 21300, - "2022-01-01": 20800, - "2021-01-01": 20200, - "2015-01-01": 20200 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[18].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[18].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 290.864316817815, - "2034-02-01": 284.225577708103, - "2033-02-01": 277.95160448354, - "2032-02-01": 271.896490790067, - "2031-02-01": 265.914330273623, - "2030-02-01": 260.078076111239, - "2029-02-01": 254.387728302915, - "2028-02-01": 248.84328684865, - "2027-02-01": 243.298845394385, - "2026-02-01": 237.75440394012, - "2025-02-01": 232.137009308825, - "2024-12-01": 230.243874364902, - "2024-11-01": 230.162166806629, - "2024-10-01": 230.28691673935, - "2024-09-01": 230.022096706732, - "2024-08-01": 229.653683162731, - "2024-07-01": 229.466923029535, - "2024-06-01": 229.200643933376, - "2024-05-01": 229.123313565724, - "2024-04-01": 228.743227513399, - "2024-03-01": 227.856116880717, - "2024-02-01": 226.392676149499, - "2024-01-01": 225, - "2023-01-01": 223, - "2021-01-01": 222, - "2015-01-01": 222 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[19]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[19]", - "description": null, - "label": "bracket 20" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[19].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[19].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 28440.0665332975, - "2034-02-01": 27790.9453759034, - "2033-02-01": 27177.4902161684, - "2032-02-01": 26585.4346550287, - "2031-02-01": 26000.5122934209, - "2030-02-01": 25429.8563308767, - "2029-02-01": 24873.4667673961, - "2028-02-01": 24331.3436029791, - "2027-02-01": 23789.2204385621, - "2026-02-01": 23247.0972741451, - "2025-02-01": 22697.8409101963, - "2024-12-01": 22512.734382346, - "2024-11-01": 22504.7451988704, - "2024-10-01": 22516.9429700697, - "2024-09-01": 22491.0494557693, - "2024-08-01": 22455.0267981337, - "2024-07-01": 22436.7658073323, - "2024-06-01": 22410.7296290412, - "2024-05-01": 22403.1684375375, - "2024-04-01": 22366.0044679768, - "2024-03-01": 22279.2647616701, - "2024-02-01": 22136.1727790621, - "2024-01-01": 22000, - "2023-01-01": 21400, - "2022-01-01": 20900, - "2021-01-01": 20300, - "2015-01-01": 20300 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[19].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[19].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 302.498889490527, - "2034-02-01": 295.594600816427, - "2033-02-01": 289.069668662882, - "2032-02-01": 282.772350421669, - "2031-02-01": 276.550903484568, - "2030-02-01": 270.481199155689, - "2029-02-01": 264.563237435031, - "2028-02-01": 258.797018322596, - "2027-02-01": 253.03079921016, - "2026-02-01": 247.264580097725, - "2025-02-01": 241.422489681178, - "2024-12-01": 239.453629339498, - "2024-11-01": 239.368653478894, - "2024-10-01": 239.498393408924, - "2024-09-01": 239.222980575001, - "2024-08-01": 238.83983048924, - "2024-07-01": 238.645599950716, - "2024-06-01": 238.368669690711, - "2024-05-01": 238.288246108353, - "2024-04-01": 237.892956613935, - "2024-03-01": 236.970361555945, - "2024-02-01": 235.448383195479, - "2024-01-01": 234, - "2023-01-01": 233, - "2021-01-01": 231, - "2015-01-01": 231 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[20]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[20]", - "description": null, - "label": "bracket 21" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[20].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[20].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 28569.3395629943, - "2034-02-01": 27917.2678548848, - "2033-02-01": 27301.0242626055, - "2032-02-01": 26706.2775398243, - "2031-02-01": 26118.6964402092, - "2030-02-01": 25545.4465869261, - "2029-02-01": 24986.5279799752, - "2028-02-01": 24441.9406193563, - "2027-02-01": 23897.3532587374, - "2026-02-01": 23352.7658981185, - "2025-02-01": 22801.0129143335, - "2024-12-01": 22615.0649931748, - "2024-11-01": 22607.0394952289, - "2024-10-01": 22619.2927108428, - "2024-09-01": 22593.2814987501, - "2024-08-01": 22557.0951017616, - "2024-07-01": 22538.7511064565, - "2024-06-01": 22512.5965819005, - "2024-05-01": 22505.0010213445, - "2024-04-01": 22467.6681246494, - "2024-03-01": 22380.5341469504, - "2024-02-01": 22236.7917462397, - "2024-01-01": 22100, - "2023-01-01": 21500, - "2022-01-01": 21000, - "2021-01-01": 20400, - "2015-01-01": 20400 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[20].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[20].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 315.426192460208, - "2034-02-01": 308.226848714565, - "2033-02-01": 301.423073306595, - "2032-02-01": 294.856638901228, - "2031-02-01": 288.369318163396, - "2030-02-01": 282.040224760633, - "2029-02-01": 275.869358692938, - "2028-02-01": 269.856719960314, - "2027-02-01": 263.844081227689, - "2026-02-01": 257.831442495063, - "2025-02-01": 251.739690094904, - "2024-12-01": 249.686690422383, - "2024-11-01": 249.598083114744, - "2024-10-01": 249.733367486228, - "2024-09-01": 249.446184873078, - "2024-08-01": 249.046660852028, - "2024-07-01": 248.84412986314, - "2024-06-01": 248.555364976639, - "2024-05-01": 248.471504489052, - "2024-04-01": 248.059322281197, - "2024-03-01": 247.097300083977, - "2024-02-01": 245.510279913234, - "2024-01-01": 244, - "2023-01-01": 242, - "2022-01-01": 241, - "2021-01-01": 240, - "2015-01-01": 240 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[21]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[21]", - "description": null, - "label": "bracket 22" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[21].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[21].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 28698.6125926911, - "2034-02-01": 28043.5903338662, - "2033-02-01": 27424.5583090426, - "2032-02-01": 26827.1204246199, - "2031-02-01": 26236.8805869975, - "2030-02-01": 25661.0368429756, - "2029-02-01": 25099.5891925542, - "2028-02-01": 24552.5376357334, - "2027-02-01": 24005.4860789126, - "2026-02-01": 23458.4345220918, - "2025-02-01": 22904.1849184708, - "2024-12-01": 22717.3956040037, - "2024-11-01": 22709.3337915874, - "2024-10-01": 22721.6424516158, - "2024-09-01": 22695.5135417308, - "2024-08-01": 22659.1634053895, - "2024-07-01": 22640.7364055808, - "2024-06-01": 22614.4635347598, - "2024-05-01": 22606.8336051515, - "2024-04-01": 22569.331781322, - "2024-03-01": 22481.8035322307, - "2024-02-01": 22337.4107134172, - "2024-01-01": 22200, - "2023-01-01": 21600, - "2022-01-01": 21100, - "2021-01-01": 20500, - "2015-01-01": 20500 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[21].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[21].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 327.060765132921, - "2034-02-01": 319.595871822889, - "2033-02-01": 312.541137485936, - "2032-02-01": 305.732498532831, - "2031-02-01": 299.005891374341, - "2030-02-01": 292.443347805082, - "2029-02-01": 286.044867825055, - "2028-02-01": 279.81045143426, - "2027-02-01": 273.576035043464, - "2026-02-01": 267.341618652668, - "2025-02-01": 261.025170467257, - "2024-12-01": 258.896445396979, - "2024-11-01": 258.804569787009, - "2024-10-01": 258.944844155802, - "2024-09-01": 258.647068741347, - "2024-08-01": 258.232808178538, - "2024-07-01": 258.022806784321, - "2024-06-01": 257.723390733974, - "2024-05-01": 257.636437031681, - "2024-04-01": 257.209051381733, - "2024-03-01": 256.211544759206, - "2024-02-01": 254.565986959214, - "2024-01-01": 253, - "2023-01-01": 252, - "2021-01-01": 250, - "2015-01-01": 250 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[22]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[22]", - "description": null, - "label": "bracket 23" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[22].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[22].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 28827.8856223879, - "2034-02-01": 28169.9128128475, - "2033-02-01": 27548.0923554798, - "2032-02-01": 26947.9633094155, - "2031-02-01": 26355.0647337858, - "2030-02-01": 25776.627099025, - "2029-02-01": 25212.6504051333, - "2028-02-01": 24663.1346521106, - "2027-02-01": 24113.6188990879, - "2026-02-01": 23564.1031460652, - "2025-02-01": 23007.356922608, - "2024-12-01": 22819.7262148325, - "2024-11-01": 22811.6280879459, - "2024-10-01": 22823.9921923889, - "2024-09-01": 22797.7455847116, - "2024-08-01": 22761.2317090173, - "2024-07-01": 22742.721704705, - "2024-06-01": 22716.330487619, - "2024-05-01": 22708.6661889585, - "2024-04-01": 22670.9954379947, - "2024-03-01": 22583.072917511, - "2024-02-01": 22438.0296805948, - "2024-01-01": 22300, - "2023-01-01": 21700, - "2022-01-01": 21200, - "2021-01-01": 20600, - "2015-01-01": 20600 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[22].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[22].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 339.988068102601, - "2034-02-01": 332.228119721027, - "2033-02-01": 324.894542129649, - "2032-02-01": 317.816787012389, - "2031-02-01": 310.824306053168, - "2030-02-01": 304.002373410026, - "2029-02-01": 297.350989082962, - "2028-02-01": 290.870153071977, - "2027-02-01": 284.389317060992, - "2026-02-01": 277.908481050007, - "2025-02-01": 271.342370880983, - "2024-12-01": 269.129506479863, - "2024-11-01": 269.033999422859, - "2024-10-01": 269.179818233106, - "2024-09-01": 268.870273039424, - "2024-08-01": 268.439638541326, - "2024-07-01": 268.221336696745, - "2024-06-01": 267.910086019902, - "2024-05-01": 267.81969541238, - "2024-04-01": 267.375417048995, - "2024-03-01": 266.338483287238, - "2024-02-01": 264.62788367697, - "2024-01-01": 263, - "2023-01-01": 261, - "2022-01-01": 260, - "2021-01-01": 259, - "2015-01-01": 259 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[23]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[23]", - "description": null, - "label": "bracket 24" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[23].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[23].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 28957.1586520847, - "2034-02-01": 28296.2352918289, - "2033-02-01": 27671.6264019169, - "2032-02-01": 27068.8061942111, - "2031-02-01": 26473.248880574, - "2030-02-01": 25892.2173550745, - "2029-02-01": 25325.7116177124, - "2028-02-01": 24773.7316684878, - "2027-02-01": 24221.7517192632, - "2026-02-01": 23669.7717700386, - "2025-02-01": 23110.5289267453, - "2024-12-01": 22922.0568256614, - "2024-11-01": 22913.9223843044, - "2024-10-01": 22926.3419331619, - "2024-09-01": 22899.9776276924, - "2024-08-01": 22863.3000126452, - "2024-07-01": 22844.7070038292, - "2024-06-01": 22818.1974404783, - "2024-05-01": 22810.4987727654, - "2024-04-01": 22772.6590946673, - "2024-03-01": 22684.3423027914, - "2024-02-01": 22538.6486477723, - "2024-01-01": 22400, - "2023-01-01": 21800, - "2022-01-01": 21300, - "2021-01-01": 20700, - "2015-01-01": 20700 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[23].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[23].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 351.622640775314, - "2034-02-01": 343.597142829351, - "2033-02-01": 336.012606308991, - "2032-02-01": 328.692646643992, - "2031-02-01": 321.460879264113, - "2030-02-01": 314.405496454476, - "2029-02-01": 307.526498215079, - "2028-02-01": 300.823884545923, - "2027-02-01": 294.121270876768, - "2026-02-01": 287.418657207612, - "2025-02-01": 280.627851253336, - "2024-12-01": 278.339261454459, - "2024-11-01": 278.240486095125, - "2024-10-01": 278.39129490268, - "2024-09-01": 278.071156907693, - "2024-08-01": 277.625785867835, - "2024-07-01": 277.400013617926, - "2024-06-01": 277.078111777237, - "2024-05-01": 276.984627955009, - "2024-04-01": 276.525146149531, - "2024-03-01": 275.452727962466, - "2024-02-01": 273.68359072295, - "2024-01-01": 272, - "2023-01-01": 270, - "2021-01-01": 269, - "2015-01-01": 269 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[24]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[24]", - "description": null, - "label": "bracket 25" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[24].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[24].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 29086.4316817815, - "2034-02-01": 28422.5577708103, - "2033-02-01": 27795.160448354, - "2032-02-01": 27189.6490790067, - "2031-02-01": 26591.4330273623, - "2030-02-01": 26007.8076111239, - "2029-02-01": 25438.7728302915, - "2028-02-01": 24884.328684865, - "2027-02-01": 24329.8845394385, - "2026-02-01": 23775.440394012, - "2025-02-01": 23213.7009308825, - "2024-12-01": 23024.3874364902, - "2024-11-01": 23016.2166806629, - "2024-10-01": 23028.691673935, - "2024-09-01": 23002.2096706732, - "2024-08-01": 22965.3683162731, - "2024-07-01": 22946.6923029535, - "2024-06-01": 22920.0643933376, - "2024-05-01": 22912.3313565724, - "2024-04-01": 22874.3227513399, - "2024-03-01": 22785.6116880717, - "2024-02-01": 22639.2676149499, - "2024-01-01": 22500, - "2023-01-01": 21900, - "2022-01-01": 21400, - "2021-01-01": 20800, - "2015-01-01": 20800 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[24].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[24].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 363.257213448027, - "2034-02-01": 354.966165937675, - "2033-02-01": 347.130670488332, - "2032-02-01": 339.568506275594, - "2031-02-01": 332.097452475058, - "2030-02-01": 324.808619498925, - "2029-02-01": 317.702007347196, - "2028-02-01": 310.777616019869, - "2027-02-01": 303.853224692543, - "2026-02-01": 296.928833365217, - "2025-02-01": 289.913331625689, - "2024-12-01": 287.549016429056, - "2024-11-01": 287.44697276739, - "2024-10-01": 287.602771572254, - "2024-09-01": 287.272040775962, - "2024-08-01": 286.811933194344, - "2024-07-01": 286.578690539108, - "2024-06-01": 286.246137534572, - "2024-05-01": 286.149560497638, - "2024-04-01": 285.674875250067, - "2024-03-01": 284.566972637695, - "2024-02-01": 282.73929776893, - "2024-01-01": 281, - "2023-01-01": 280, - "2021-01-01": 278, - "2015-01-01": 278 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[25]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[25]", - "description": null, - "label": "bracket 26" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[25].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[25].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 29215.7047114783, - "2034-02-01": 28548.8802497917, - "2033-02-01": 27918.6944947911, - "2032-02-01": 27310.4919638023, - "2031-02-01": 26709.6171741506, - "2030-02-01": 26123.3978671733, - "2029-02-01": 25551.8340428705, - "2028-02-01": 24994.9257012422, - "2027-02-01": 24438.0173596138, - "2026-02-01": 23881.1090179854, - "2025-02-01": 23316.8729350198, - "2024-12-01": 23126.7180473191, - "2024-11-01": 23118.5109770214, - "2024-10-01": 23131.041414708, - "2024-09-01": 23104.4417136539, - "2024-08-01": 23067.436619901, - "2024-07-01": 23048.6776020777, - "2024-06-01": 23021.9313461969, - "2024-05-01": 23014.1639403794, - "2024-04-01": 22975.9864080125, - "2024-03-01": 22886.881073352, - "2024-02-01": 22739.8865821275, - "2024-01-01": 22600, - "2023-01-01": 22000, - "2022-01-01": 21500, - "2021-01-01": 20900, - "2015-01-01": 20900 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[25].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[25].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 376.184516417707, - "2034-02-01": 367.598413835813, - "2033-02-01": 359.484075132045, - "2032-02-01": 351.652794755153, - "2031-02-01": 343.915867153886, - "2030-02-01": 336.367645103869, - "2029-02-01": 329.008128605103, - "2028-02-01": 321.837317657587, - "2027-02-01": 314.666506710071, - "2026-02-01": 307.495695762555, - "2025-02-01": 300.230532039414, - "2024-12-01": 297.78207751194, - "2024-11-01": 297.67640240324, - "2024-10-01": 297.837745649559, - "2024-09-01": 297.495245074039, - "2024-08-01": 297.018763557132, - "2024-07-01": 296.777220451532, - "2024-06-01": 296.4328328205, - "2024-05-01": 296.332818878337, - "2024-04-01": 295.84124091733, - "2024-03-01": 294.693911165727, - "2024-02-01": 292.801194486685, - "2024-01-01": 291, - "2023-01-01": 289, - "2022-01-01": 288, - "2021-01-01": 287, - "2015-01-01": 287 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[26]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[26]", - "description": null, - "label": "bracket 27" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[26].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[26].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 29344.9777411751, - "2034-02-01": 28675.2027287731, - "2033-02-01": 28042.2285412283, - "2032-02-01": 27431.3348485978, - "2031-02-01": 26827.8013209389, - "2030-02-01": 26238.9881232228, - "2029-02-01": 25664.8952554496, - "2028-02-01": 25105.5227176193, - "2027-02-01": 24546.1501797891, - "2026-02-01": 23986.7776419588, - "2025-02-01": 23420.0449391571, - "2024-12-01": 23229.0486581479, - "2024-11-01": 23220.8052733799, - "2024-10-01": 23233.3911554811, - "2024-09-01": 23206.6737566347, - "2024-08-01": 23169.5049235289, - "2024-07-01": 23150.6629012019, - "2024-06-01": 23123.7982990562, - "2024-05-01": 23115.9965241864, - "2024-04-01": 23077.6500646852, - "2024-03-01": 22988.1504586323, - "2024-02-01": 22840.505549305, - "2024-01-01": 22700, - "2023-01-01": 22100, - "2022-01-01": 21600, - "2021-01-01": 21000, - "2015-01-01": 21000 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[26].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[26].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 387.81908909042, - "2034-02-01": 378.967436944137, - "2033-02-01": 370.602139311387, - "2032-02-01": 362.528654386756, - "2031-02-01": 354.552440364831, - "2030-02-01": 346.770768148319, - "2029-02-01": 339.183637737219, - "2028-02-01": 331.791049131533, - "2027-02-01": 324.398460525847, - "2026-02-01": 317.00587192016, - "2025-02-01": 309.516012411767, - "2024-12-01": 306.991832486536, - "2024-11-01": 306.882889075505, - "2024-10-01": 307.049222319133, - "2024-09-01": 306.696128942309, - "2024-08-01": 306.204910883641, - "2024-07-01": 305.955897372713, - "2024-06-01": 305.600858577835, - "2024-05-01": 305.497751420966, - "2024-04-01": 304.990970017866, - "2024-03-01": 303.808155840956, - "2024-02-01": 301.856901532665, - "2024-01-01": 300, - "2023-01-01": 299, - "2021-01-01": 297, - "2015-01-01": 297 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[27]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[27]", - "description": null, - "label": "bracket 28" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[27].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[27].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 29474.2507708719, - "2034-02-01": 28801.5252077544, - "2033-02-01": 28165.7625876654, - "2032-02-01": 27552.1777333934, - "2031-02-01": 26945.9854677271, - "2030-02-01": 26354.5783792722, - "2029-02-01": 25777.9564680287, - "2028-02-01": 25216.1197339965, - "2027-02-01": 24654.2829999643, - "2026-02-01": 24092.4462659322, - "2025-02-01": 23523.2169432943, - "2024-12-01": 23331.3792689767, - "2024-11-01": 23323.0995697384, - "2024-10-01": 23335.7408962541, - "2024-09-01": 23308.9057996155, - "2024-08-01": 23271.5732271567, - "2024-07-01": 23252.6482003262, - "2024-06-01": 23225.6652519154, - "2024-05-01": 23217.8291079934, - "2024-04-01": 23179.3137213578, - "2024-03-01": 23089.4198439126, - "2024-02-01": 22941.1245164826, - "2024-01-01": 22800, - "2023-01-01": 22200, - "2022-01-01": 21700, - "2021-01-01": 21100, - "2015-01-01": 21100 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[27].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[27].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 400.746392060101, - "2034-02-01": 391.599684842275, - "2033-02-01": 382.9555439551, - "2032-02-01": 374.612942866314, - "2031-02-01": 366.370855043658, - "2030-02-01": 358.329793753263, - "2029-02-01": 350.489758995127, - "2028-02-01": 342.850750769251, - "2027-02-01": 335.211742543375, - "2026-02-01": 327.572734317499, - "2025-02-01": 319.833212825493, - "2024-12-01": 317.224893569421, - "2024-11-01": 317.112318711355, - "2024-10-01": 317.284196396437, - "2024-09-01": 316.919333240386, - "2024-08-01": 316.411741246429, - "2024-07-01": 316.154427285137, - "2024-06-01": 315.787553863762, - "2024-05-01": 315.681009801665, - "2024-04-01": 315.157335685128, - "2024-03-01": 313.935094368988, - "2024-02-01": 311.918798250421, - "2024-01-01": 310, - "2023-01-01": 308, - "2022-01-01": 307, - "2021-01-01": 306, - "2015-01-01": 306 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[28]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[28]", - "description": null, - "label": "bracket 29" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[28].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[28].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 29603.5238005687, - "2034-02-01": 28927.8476867358, - "2033-02-01": 28289.2966341025, - "2032-02-01": 27673.020618189, - "2031-02-01": 27064.1696145154, - "2030-02-01": 26470.1686353217, - "2029-02-01": 25891.0176806077, - "2028-02-01": 25326.7167503737, - "2027-02-01": 24762.4158201396, - "2026-02-01": 24198.1148899055, - "2025-02-01": 23626.3889474316, - "2024-12-01": 23433.7098798056, - "2024-11-01": 23425.3938660969, - "2024-10-01": 23438.0906370271, - "2024-09-01": 23411.1378425962, - "2024-08-01": 23373.6415307846, - "2024-07-01": 23354.6334994504, - "2024-06-01": 23327.5322047747, - "2024-05-01": 23319.6616918004, - "2024-04-01": 23280.9773780304, - "2024-03-01": 23190.6892291929, - "2024-02-01": 23041.7434836601, - "2024-01-01": 22900, - "2023-01-01": 22300, - "2022-01-01": 21800, - "2021-01-01": 21200, - "2015-01-01": 21200 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[28].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[28].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 412.380964732813, - "2034-02-01": 402.968707950599, - "2033-02-01": 394.073608134441, - "2032-02-01": 385.488802497917, - "2031-02-01": 377.007428254603, - "2030-02-01": 368.732916797712, - "2029-02-01": 360.665268127243, - "2028-02-01": 352.804482243197, - "2027-02-01": 344.94369635915, - "2026-02-01": 337.082910475104, - "2025-02-01": 329.118693197846, - "2024-12-01": 326.434648544017, - "2024-11-01": 326.31880538362, - "2024-10-01": 326.495673066011, - "2024-09-01": 326.120217108655, - "2024-08-01": 325.597888572939, - "2024-07-01": 325.333104206318, - "2024-06-01": 324.955579621097, - "2024-05-01": 324.845942344294, - "2024-04-01": 324.307064785664, - "2024-03-01": 323.049339044216, - "2024-02-01": 320.974505296401, - "2024-01-01": 319, - "2023-01-01": 317, - "2021-01-01": 316, - "2015-01-01": 316 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[29]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[29]", - "description": null, - "label": "bracket 30" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[29].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[29].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 29732.7968302655, - "2034-02-01": 29054.1701657172, - "2033-02-01": 28412.8306805397, - "2032-02-01": 27793.8635029846, - "2031-02-01": 27182.3537613037, - "2030-02-01": 26585.7588913711, - "2029-02-01": 26004.0788931868, - "2028-02-01": 25437.3137667509, - "2027-02-01": 24870.5486403149, - "2026-02-01": 24303.7835138789, - "2025-02-01": 23729.5609515688, - "2024-12-01": 23536.0404906344, - "2024-11-01": 23527.6881624554, - "2024-10-01": 23540.4403778002, - "2024-09-01": 23513.369885577, - "2024-08-01": 23475.7098344125, - "2024-07-01": 23456.6187985747, - "2024-06-01": 23429.399157634, - "2024-05-01": 23421.4942756074, - "2024-04-01": 23382.641034703, - "2024-03-01": 23291.9586144733, - "2024-02-01": 23142.3624508377, - "2024-01-01": 23000, - "2023-01-01": 22400, - "2022-01-01": 21900, - "2021-01-01": 21300, - "2015-01-01": 21300 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[29].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[29].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 424.015537405526, - "2034-02-01": 414.337731058924, - "2033-02-01": 405.191672313783, - "2032-02-01": 396.364662129519, - "2031-02-01": 387.644001465548, - "2030-02-01": 379.136039842162, - "2029-02-01": 370.84077725936, - "2028-02-01": 362.758213717143, - "2027-02-01": 354.675650174926, - "2026-02-01": 346.593086632708, - "2025-02-01": 338.404173570199, - "2024-12-01": 335.644403518613, - "2024-11-01": 335.525292055885, - "2024-10-01": 335.707149735585, - "2024-09-01": 335.321100976924, - "2024-08-01": 334.784035899448, - "2024-07-01": 334.5117811275, - "2024-06-01": 334.123605378433, - "2024-05-01": 334.010874886923, - "2024-04-01": 333.4567938862, - "2024-03-01": 332.163583719445, - "2024-02-01": 330.030212342381, - "2024-01-01": 328, - "2023-01-01": 327, - "2021-01-01": 325, - "2015-01-01": 325 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[30]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[30]", - "description": null, - "label": "bracket 31" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[30].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[30].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 29862.0698599623, - "2034-02-01": 29180.4926446986, - "2033-02-01": 28536.3647269768, - "2032-02-01": 27914.7063877802, - "2031-02-01": 27300.537908092, - "2030-02-01": 26701.3491474205, - "2029-02-01": 26117.1401057659, - "2028-02-01": 25547.910783128, - "2027-02-01": 24978.6814604902, - "2026-02-01": 24409.4521378523, - "2025-02-01": 23832.7329557061, - "2024-12-01": 23638.3711014633, - "2024-11-01": 23629.9824588139, - "2024-10-01": 23642.7901185732, - "2024-09-01": 23615.6019285578, - "2024-08-01": 23577.7781380404, - "2024-07-01": 23558.6040976989, - "2024-06-01": 23531.2661104933, - "2024-05-01": 23523.3268594144, - "2024-04-01": 23484.3046913756, - "2024-03-01": 23393.2279997536, - "2024-02-01": 23242.9814180152, - "2024-01-01": 23100, - "2023-01-01": 22500, - "2022-01-01": 22000, - "2021-01-01": 21400, - "2015-01-01": 21400 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[30].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[30].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 436.942840375206, - "2034-02-01": 426.969978957061, - "2033-02-01": 417.545076957496, - "2032-02-01": 408.448950609078, - "2031-02-01": 399.462416144376, - "2030-02-01": 390.695065447106, - "2029-02-01": 382.146898517267, - "2028-02-01": 373.817915354861, - "2027-02-01": 365.488932192454, - "2026-02-01": 357.159949030047, - "2025-02-01": 348.721373983924, - "2024-12-01": 345.877464601497, - "2024-11-01": 345.754721691736, - "2024-10-01": 345.94212381289, - "2024-09-01": 345.544305275001, - "2024-08-01": 344.990866262236, - "2024-07-01": 344.710311039923, - "2024-06-01": 344.31030066436, - "2024-05-01": 344.194133267622, - "2024-04-01": 343.623159553462, - "2024-03-01": 342.290522247477, - "2024-02-01": 340.092109060136, - "2024-01-01": 338, - "2023-01-01": 336, - "2022-01-01": 335, - "2021-01-01": 334, - "2015-01-01": 334 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[31]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[31]", - "description": null, - "label": "bracket 32" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[31].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[31].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 29991.3428896591, - "2034-02-01": 29306.81512368, - "2033-02-01": 28659.8987734139, - "2032-02-01": 28035.5492725758, - "2031-02-01": 27418.7220548802, - "2030-02-01": 26816.93940347, - "2029-02-01": 26230.201318345, - "2028-02-01": 25658.5077995052, - "2027-02-01": 25086.8142806655, - "2026-02-01": 24515.1207618257, - "2025-02-01": 23935.9049598433, - "2024-12-01": 23740.7017122921, - "2024-11-01": 23732.2767551724, - "2024-10-01": 23745.1398593463, - "2024-09-01": 23717.8339715385, - "2024-08-01": 23679.8464416683, - "2024-07-01": 23660.5893968231, - "2024-06-01": 23633.1330633525, - "2024-05-01": 23625.1594432214, - "2024-04-01": 23585.9683480483, - "2024-03-01": 23494.4973850339, - "2024-02-01": 23343.6003851928, - "2024-01-01": 23200, - "2023-01-01": 22600, - "2022-01-01": 22100, - "2021-01-01": 21500, - "2015-01-01": 21500 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[31].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[31].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 448.577413047919, - "2034-02-01": 438.339002065386, - "2033-02-01": 428.663141136837, - "2032-02-01": 419.324810240681, - "2031-02-01": 410.098989355321, - "2030-02-01": 401.098188491555, - "2029-02-01": 392.322407649384, - "2028-02-01": 383.771646828807, - "2027-02-01": 375.220886008229, - "2026-02-01": 366.670125187652, - "2025-02-01": 358.006854356277, - "2024-12-01": 355.087219576093, - "2024-11-01": 354.961208364001, - "2024-10-01": 355.153600482464, - "2024-09-01": 354.74518914327, - "2024-08-01": 354.177013588745, - "2024-07-01": 353.888987961105, - "2024-06-01": 353.478326421695, - "2024-05-01": 353.35906581025, - "2024-04-01": 352.772888653998, - "2024-03-01": 351.404766922705, - "2024-02-01": 349.147816106116, - "2024-01-01": 347, - "2023-01-01": 346, - "2021-01-01": 344, - "2015-01-01": 344 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[32]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[32]", - "description": null, - "label": "bracket 33" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[32].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[32].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 30120.6159193559, - "2034-02-01": 29433.1376026613, - "2033-02-01": 28783.432819851, - "2032-02-01": 28156.3921573714, - "2031-02-01": 27536.9062016685, - "2030-02-01": 26932.5296595194, - "2029-02-01": 26343.262530924, - "2028-02-01": 25769.1048158824, - "2027-02-01": 25194.9471008408, - "2026-02-01": 24620.7893857991, - "2025-02-01": 24039.0769639806, - "2024-12-01": 23843.032323121, - "2024-11-01": 23834.5710515309, - "2024-10-01": 23847.4896001193, - "2024-09-01": 23820.0660145193, - "2024-08-01": 23781.9147452961, - "2024-07-01": 23762.5746959474, - "2024-06-01": 23735.0000162118, - "2024-05-01": 23726.9920270283, - "2024-04-01": 23687.6320047209, - "2024-03-01": 23595.7667703142, - "2024-02-01": 23444.2193523703, - "2024-01-01": 23300, - "2023-01-01": 22700, - "2022-01-01": 22200, - "2021-01-01": 21600, - "2015-01-01": 21600 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[32].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[32].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 461.5047160176, - "2034-02-01": 450.971249963523, - "2033-02-01": 441.01654578055, - "2032-02-01": 431.409098720239, - "2031-02-01": 421.917404034149, - "2030-02-01": 412.657214096499, - "2029-02-01": 403.628528907291, - "2028-02-01": 394.831348466524, - "2027-02-01": 386.034168025757, - "2026-02-01": 377.23698758499, - "2025-02-01": 368.324054770003, - "2024-12-01": 365.320280658978, - "2024-11-01": 365.190637999851, - "2024-10-01": 365.388574559768, - "2024-09-01": 364.968393441347, - "2024-08-01": 364.383843951533, - "2024-07-01": 364.087517873528, - "2024-06-01": 363.665021707623, - "2024-05-01": 363.542324190949, - "2024-04-01": 362.93925432126, - "2024-03-01": 361.531705450737, - "2024-02-01": 359.209712823872, - "2024-01-01": 357, - "2023-01-01": 355, - "2022-01-01": 354, - "2021-01-01": 353, - "2015-01-01": 353 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[33]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[33]", - "description": null, - "label": "bracket 34" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[33].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[33].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 30249.8889490527, - "2034-02-01": 29559.4600816427, - "2033-02-01": 28906.9668662882, - "2032-02-01": 28277.2350421669, - "2031-02-01": 27655.0903484568, - "2030-02-01": 27048.1199155689, - "2029-02-01": 26456.3237435031, - "2028-02-01": 25879.7018322596, - "2027-02-01": 25303.079921016, - "2026-02-01": 24726.4580097725, - "2025-02-01": 24142.2489681178, - "2024-12-01": 23945.3629339498, - "2024-11-01": 23936.8653478894, - "2024-10-01": 23949.8393408924, - "2024-09-01": 23922.2980575001, - "2024-08-01": 23883.983048924, - "2024-07-01": 23864.5599950716, - "2024-06-01": 23836.8669690711, - "2024-05-01": 23828.8246108353, - "2024-04-01": 23789.2956613935, - "2024-03-01": 23697.0361555945, - "2024-02-01": 23544.8383195479, - "2024-01-01": 23400, - "2023-01-01": 22800, - "2022-01-01": 22300, - "2021-01-01": 21700, - "2015-01-01": 21700 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[33].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[33].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 473.139288690312, - "2034-02-01": 462.340273071848, - "2033-02-01": 452.134609959892, - "2032-02-01": 442.284958351842, - "2031-02-01": 432.553977245094, - "2030-02-01": 423.060337140949, - "2029-02-01": 413.804038039408, - "2028-02-01": 404.78507994047, - "2027-02-01": 395.766121841533, - "2026-02-01": 386.747163742595, - "2025-02-01": 377.609535142356, - "2024-12-01": 374.530035633574, - "2024-11-01": 374.397124672116, - "2024-10-01": 374.600051229342, - "2024-09-01": 374.169277309617, - "2024-08-01": 373.569991278042, - "2024-07-01": 373.26619479471, - "2024-06-01": 372.833047464958, - "2024-05-01": 372.707256733578, - "2024-04-01": 372.088983421796, - "2024-03-01": 370.645950125966, - "2024-02-01": 368.265419869852, - "2024-01-01": 366, - "2023-01-01": 364, - "2021-01-01": 363, - "2015-01-01": 363 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[34]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[34]", - "description": null, - "label": "bracket 35" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[34].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[34].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 30379.1619787496, - "2034-02-01": 29685.7825606241, - "2033-02-01": 29030.5009127253, - "2032-02-01": 28398.0779269625, - "2031-02-01": 27773.2744952451, - "2030-02-01": 27163.7101716183, - "2029-02-01": 26569.3849560822, - "2028-02-01": 25990.2988486368, - "2027-02-01": 25411.2127411913, - "2026-02-01": 24832.1266337459, - "2025-02-01": 24245.4209722551, - "2024-12-01": 24047.6935447787, - "2024-11-01": 24039.1596442479, - "2024-10-01": 24052.1890816654, - "2024-09-01": 24024.5301004808, - "2024-08-01": 23986.0513525519, - "2024-07-01": 23966.5452941959, - "2024-06-01": 23938.7339219304, - "2024-05-01": 23930.6571946423, - "2024-04-01": 23890.9593180661, - "2024-03-01": 23798.3055408749, - "2024-02-01": 23645.4572867254, - "2024-01-01": 23500, - "2023-01-01": 22900, - "2022-01-01": 22400, - "2021-01-01": 21800, - "2015-01-01": 21800 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[34].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[34].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 484.773861363025, - "2034-02-01": 473.709296180172, - "2033-02-01": 463.252674139234, - "2032-02-01": 453.160817983445, - "2031-02-01": 443.190550456038, - "2030-02-01": 433.463460185398, - "2029-02-01": 423.979547171524, - "2028-02-01": 414.738811414416, - "2027-02-01": 405.498075657308, - "2026-02-01": 396.2573399002, - "2025-02-01": 386.895015514709, - "2024-12-01": 383.73979060817, - "2024-11-01": 383.603611344381, - "2024-10-01": 383.811527898916, - "2024-09-01": 383.370161177886, - "2024-08-01": 382.756138604552, - "2024-07-01": 382.444871715891, - "2024-06-01": 382.001073222293, - "2024-05-01": 381.872189276207, - "2024-04-01": 381.238712522332, - "2024-03-01": 379.760194801195, - "2024-02-01": 377.321126915832, - "2024-01-01": 375, - "2023-01-01": 374, - "2021-01-01": 372, - "2015-01-01": 372 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[35]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[35]", - "description": null, - "label": "bracket 36" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[35].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[35].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 30508.4350084464, - "2034-02-01": 29812.1050396055, - "2033-02-01": 29154.0349591624, - "2032-02-01": 28518.9208117581, - "2031-02-01": 27891.4586420334, - "2030-02-01": 27279.3004276677, - "2029-02-01": 26682.4461686613, - "2028-02-01": 26100.8958650139, - "2027-02-01": 25519.3455613666, - "2026-02-01": 24937.7952577193, - "2025-02-01": 24348.5929763924, - "2024-12-01": 24150.0241556075, - "2024-11-01": 24141.4539406064, - "2024-10-01": 24154.5388224385, - "2024-09-01": 24126.7621434616, - "2024-08-01": 24088.1196561798, - "2024-07-01": 24068.5305933201, - "2024-06-01": 24040.6008747897, - "2024-05-01": 24032.4897784493, - "2024-04-01": 23992.6229747388, - "2024-03-01": 23899.5749261552, - "2024-02-01": 23746.076253903, - "2024-01-01": 23600, - "2023-01-01": 23000, - "2022-01-01": 22500, - "2021-01-01": 21900, - "2015-01-01": 21900 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[35].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[35].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 497.701164332705, - "2034-02-01": 486.34154407831, - "2033-02-01": 475.606078782946, - "2032-02-01": 465.245106463003, - "2031-02-01": 455.008965134866, - "2030-02-01": 445.022485790342, - "2029-02-01": 435.285668429432, - "2028-02-01": 425.798513052134, - "2027-02-01": 416.311357674836, - "2026-02-01": 406.824202297539, - "2025-02-01": 397.212215928435, - "2024-12-01": 393.972851691055, - "2024-11-01": 393.833040980231, - "2024-10-01": 394.046501976221, - "2024-09-01": 393.593365475963, - "2024-08-01": 392.96296896734, - "2024-07-01": 392.643401628315, - "2024-06-01": 392.187768508221, - "2024-05-01": 392.055447656906, - "2024-04-01": 391.405078189594, - "2024-03-01": 389.887133329226, - "2024-02-01": 387.383023633587, - "2024-01-01": 385, - "2023-01-01": 383, - "2022-01-01": 382, - "2021-01-01": 381, - "2015-01-01": 381 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[36]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[36]", - "description": null, - "label": "bracket 37" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[36].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[36].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 30637.7080381432, - "2034-02-01": 29938.4275185869, - "2033-02-01": 29277.5690055996, - "2032-02-01": 28639.7636965537, - "2031-02-01": 28009.6427888216, - "2030-02-01": 27394.8906837172, - "2029-02-01": 26795.5073812403, - "2028-02-01": 26211.4928813911, - "2027-02-01": 25627.4783815419, - "2026-02-01": 25043.4638816926, - "2025-02-01": 24451.7649805296, - "2024-12-01": 24252.3547664364, - "2024-11-01": 24243.7482369649, - "2024-10-01": 24256.8885632115, - "2024-09-01": 24228.9941864424, - "2024-08-01": 24190.1879598077, - "2024-07-01": 24170.5158924443, - "2024-06-01": 24142.4678276489, - "2024-05-01": 24134.3223622563, - "2024-04-01": 24094.2866314114, - "2024-03-01": 24000.8443114355, - "2024-02-01": 23846.6952210806, - "2024-01-01": 23700, - "2023-01-01": 23100, - "2022-01-01": 22600, - "2021-01-01": 22000, - "2015-01-01": 22000 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[36].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[36].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 509.335737005418, - "2034-02-01": 497.710567186634, - "2033-02-01": 486.724142962288, - "2032-02-01": 476.120966094606, - "2031-02-01": 465.645538345811, - "2030-02-01": 455.425608834792, - "2029-02-01": 445.461177561548, - "2028-02-01": 435.75224452608, - "2027-02-01": 426.043311490612, - "2026-02-01": 416.334378455144, - "2025-02-01": 406.497696300788, - "2024-12-01": 403.182606665651, - "2024-11-01": 403.039527652497, - "2024-10-01": 403.257978645795, - "2024-09-01": 402.794249344232, - "2024-08-01": 402.149116293849, - "2024-07-01": 401.822078549496, - "2024-06-01": 401.355794265556, - "2024-05-01": 401.220380199535, - "2024-04-01": 400.55480729013, - "2024-03-01": 399.001378004455, - "2024-02-01": 396.438730679567, - "2024-01-01": 394, - "2023-01-01": 393, - "2021-01-01": 391, - "2015-01-01": 391 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[37]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[37]", - "description": null, - "label": "bracket 38" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[37].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[37].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 30766.98106784, - "2034-02-01": 30064.7499975682, - "2033-02-01": 29401.1030520367, - "2032-02-01": 28760.6065813493, - "2031-02-01": 28127.8269356099, - "2030-02-01": 27510.4809397666, - "2029-02-01": 26908.5685938194, - "2028-02-01": 26322.0898977683, - "2027-02-01": 25735.6112017172, - "2026-02-01": 25149.132505666, - "2025-02-01": 24554.9369846669, - "2024-12-01": 24354.6853772652, - "2024-11-01": 24346.0425333234, - "2024-10-01": 24359.2383039845, - "2024-09-01": 24331.2262294232, - "2024-08-01": 24292.2562634355, - "2024-07-01": 24272.5011915686, - "2024-06-01": 24244.3347805082, - "2024-05-01": 24236.1549460633, - "2024-04-01": 24195.950288084, - "2024-03-01": 24102.1136967158, - "2024-02-01": 23947.3141882581, - "2024-01-01": 23800, - "2023-01-01": 23200, - "2022-01-01": 22700, - "2021-01-01": 22100, - "2015-01-01": 22100 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[37].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[37].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 522.263039975099, - "2034-02-01": 510.342815084772, - "2033-02-01": 499.077547606001, - "2032-02-01": 488.205254574164, - "2031-02-01": 477.463953024639, - "2030-02-01": 466.984634439736, - "2029-02-01": 456.767298819455, - "2028-02-01": 446.811946163798, - "2027-02-01": 436.85659350814, - "2026-02-01": 426.901240852482, - "2025-02-01": 416.814896714513, - "2024-12-01": 413.415667748535, - "2024-11-01": 413.268957288347, - "2024-10-01": 413.492952723099, - "2024-09-01": 413.017453642309, - "2024-08-01": 412.355946656637, - "2024-07-01": 412.02060846192, - "2024-06-01": 411.542489551484, - "2024-05-01": 411.403638580234, - "2024-04-01": 410.721172957392, - "2024-03-01": 409.128316532487, - "2024-02-01": 406.500627397323, - "2024-01-01": 404, - "2023-01-01": 402, - "2022-01-01": 401, - "2021-01-01": 400, - "2015-01-01": 400 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[38]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[38]", - "description": null, - "label": "bracket 39" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[38].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[38].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 30896.2540975368, - "2034-02-01": 30191.0724765496, - "2033-02-01": 29524.6370984738, - "2032-02-01": 28881.4494661449, - "2031-02-01": 28246.0110823982, - "2030-02-01": 27626.0711958161, - "2029-02-01": 27021.6298063985, - "2028-02-01": 26432.6869141455, - "2027-02-01": 25843.7440218924, - "2026-02-01": 25254.8011296394, - "2025-02-01": 24658.1089888041, - "2024-12-01": 24457.015988094, - "2024-11-01": 24448.3368296819, - "2024-10-01": 24461.5880447576, - "2024-09-01": 24433.4582724039, - "2024-08-01": 24394.3245670634, - "2024-07-01": 24374.4864906928, - "2024-06-01": 24346.2017333675, - "2024-05-01": 24337.9875298703, - "2024-04-01": 24297.6139447566, - "2024-03-01": 24203.3830819961, - "2024-02-01": 24047.9331554357, - "2024-01-01": 23900, - "2023-01-01": 23300, - "2022-01-01": 22800, - "2021-01-01": 22200, - "2015-01-01": 22200 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[38].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[38].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 533.897612647811, - "2034-02-01": 521.711838193096, - "2033-02-01": 510.195611785343, - "2032-02-01": 499.081114205767, - "2031-02-01": 488.100526235584, - "2030-02-01": 477.387757484185, - "2029-02-01": 466.942807951572, - "2028-02-01": 456.765677637744, - "2027-02-01": 446.588547323915, - "2026-02-01": 436.411417010087, - "2025-02-01": 426.100377086866, - "2024-12-01": 422.625422723131, - "2024-11-01": 422.475443960612, - "2024-10-01": 422.704429392673, - "2024-09-01": 422.218337510578, - "2024-08-01": 421.542093983146, - "2024-07-01": 421.199285383102, - "2024-06-01": 420.710515308819, - "2024-05-01": 420.568571122863, - "2024-04-01": 419.870902057928, - "2024-03-01": 418.242561207716, - "2024-02-01": 415.556334443302, - "2024-01-01": 413, - "2023-01-01": 411, - "2021-01-01": 410, - "2015-01-01": 410 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[39]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[39]", - "description": null, - "label": "bracket 40" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[39].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[39].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 31025.5271272336, - "2034-02-01": 30317.394955531, - "2033-02-01": 29648.171144911, - "2032-02-01": 29002.2923509405, - "2031-02-01": 28364.1952291865, - "2030-02-01": 27741.6614518655, - "2029-02-01": 27134.6910189776, - "2028-02-01": 26543.2839305226, - "2027-02-01": 25951.8768420677, - "2026-02-01": 25360.4697536128, - "2025-02-01": 24761.2809929414, - "2024-12-01": 24559.3465989229, - "2024-11-01": 24550.6311260404, - "2024-10-01": 24563.9377855306, - "2024-09-01": 24535.6903153847, - "2024-08-01": 24496.3928706913, - "2024-07-01": 24476.471789817, - "2024-06-01": 24448.0686862268, - "2024-05-01": 24439.8201136773, - "2024-04-01": 24399.2776014292, - "2024-03-01": 24304.6524672765, - "2024-02-01": 24148.5521226132, - "2024-01-01": 24000, - "2023-01-01": 23400, - "2022-01-01": 22900, - "2021-01-01": 22300, - "2015-01-01": 22300 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[39].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[39].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 545.532185320524, - "2034-02-01": 533.08086130142, - "2033-02-01": 521.313675964684, - "2032-02-01": 509.95697383737, - "2031-02-01": 498.737099446529, - "2030-02-01": 487.790880528635, - "2029-02-01": 477.118317083689, - "2028-02-01": 466.71940911169, - "2027-02-01": 456.320501139691, - "2026-02-01": 445.921593167692, - "2025-02-01": 435.385857459219, - "2024-12-01": 431.835177697728, - "2024-11-01": 431.681930632877, - "2024-10-01": 431.915906062247, - "2024-09-01": 431.419221378848, - "2024-08-01": 430.728241309655, - "2024-07-01": 430.377962304283, - "2024-06-01": 429.878541066154, - "2024-05-01": 429.733503665492, - "2024-04-01": 429.020631158464, - "2024-03-01": 427.356805882944, - "2024-02-01": 424.612041489282, - "2024-01-01": 422, - "2023-01-01": 421, - "2021-01-01": 419, - "2015-01-01": 419 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[40]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[40]", - "description": null, - "label": "bracket 41" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[40].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[40].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 31154.8001569304, - "2034-02-01": 30443.7174345124, - "2033-02-01": 29771.7051913481, - "2032-02-01": 29123.135235736, - "2031-02-01": 28482.3793759747, - "2030-02-01": 27857.2517079149, - "2029-02-01": 27247.7522315566, - "2028-02-01": 26653.8809468998, - "2027-02-01": 26060.009662243, - "2026-02-01": 25466.1383775862, - "2025-02-01": 24864.4529970786, - "2024-12-01": 24661.6772097517, - "2024-11-01": 24652.9254223989, - "2024-10-01": 24666.2875263037, - "2024-09-01": 24637.9223583655, - "2024-08-01": 24598.4611743192, - "2024-07-01": 24578.4570889413, - "2024-06-01": 24549.9356390861, - "2024-05-01": 24541.6526974843, - "2024-04-01": 24500.9412581019, - "2024-03-01": 24405.9218525568, - "2024-02-01": 24249.1710897908, - "2024-01-01": 24100, - "2023-01-01": 23500, - "2022-01-01": 23000, - "2021-01-01": 22400, - "2015-01-01": 22400 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[40].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[40].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 558.459488290205, - "2034-02-01": 545.713109199558, - "2033-02-01": 533.667080608397, - "2032-02-01": 522.041262316928, - "2031-02-01": 510.555514125356, - "2030-02-01": 499.349906133579, - "2029-02-01": 488.424438341596, - "2028-02-01": 477.779110749408, - "2027-02-01": 467.133783157219, - "2026-02-01": 456.48845556503, - "2025-02-01": 445.703057872945, - "2024-12-01": 442.068238780612, - "2024-11-01": 441.911360268727, - "2024-10-01": 442.150880139551, - "2024-09-01": 441.642425676924, - "2024-08-01": 440.935071672444, - "2024-07-01": 440.576492216707, - "2024-06-01": 440.065236352082, - "2024-05-01": 439.916762046191, - "2024-04-01": 439.186996825726, - "2024-03-01": 437.483744410976, - "2024-02-01": 434.673938207038, - "2024-01-01": 432, - "2023-01-01": 430, - "2022-01-01": 429, - "2021-01-01": 428, - "2015-01-01": 428 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[41]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[41]", - "description": null, - "label": "bracket 42" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[41].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[41].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 31284.0731866272, - "2034-02-01": 30570.0399134937, - "2033-02-01": 29895.2392377852, - "2032-02-01": 29243.9781205316, - "2031-02-01": 28600.563522763, - "2030-02-01": 27972.8419639644, - "2029-02-01": 27360.8134441357, - "2028-02-01": 26764.477963277, - "2027-02-01": 26168.1424824183, - "2026-02-01": 25571.8070015596, - "2025-02-01": 24967.6250012159, - "2024-12-01": 24764.0078205806, - "2024-11-01": 24755.2197187574, - "2024-10-01": 24768.6372670767, - "2024-09-01": 24740.1544013462, - "2024-08-01": 24700.5294779471, - "2024-07-01": 24680.4423880655, - "2024-06-01": 24651.8025919453, - "2024-05-01": 24643.4852812912, - "2024-04-01": 24602.6049147745, - "2024-03-01": 24507.1912378371, - "2024-02-01": 24349.7900569683, - "2024-01-01": 24200, - "2023-01-01": 23600, - "2022-01-01": 23100, - "2021-01-01": 22500, - "2015-01-01": 22500 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[41].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[41].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 570.094060962917, - "2034-02-01": 557.082132307882, - "2033-02-01": 544.785144787739, - "2032-02-01": 532.917121948531, - "2031-02-01": 521.192087336301, - "2030-02-01": 509.753029178029, - "2029-02-01": 498.599947473713, - "2028-02-01": 487.732842223354, - "2027-02-01": 476.865736972994, - "2026-02-01": 465.998631722635, - "2025-02-01": 454.988538245298, - "2024-12-01": 451.277993755208, - "2024-11-01": 451.117846940992, - "2024-10-01": 451.362356809125, - "2024-09-01": 450.843309545194, - "2024-08-01": 450.121218998953, - "2024-07-01": 449.755169137888, - "2024-06-01": 449.233262109417, - "2024-05-01": 449.08169458882, - "2024-04-01": 448.336725926262, - "2024-03-01": 446.597989086205, - "2024-02-01": 443.729645253018, - "2024-01-01": 441, - "2023-01-01": 440, - "2021-01-01": 438, - "2015-01-01": 438 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[42]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[42]", - "description": null, - "label": "bracket 43" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[42].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[42].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 31413.346216324, - "2034-02-01": 30696.3623924751, - "2033-02-01": 30018.7732842223, - "2032-02-01": 29364.8210053272, - "2031-02-01": 28718.7476695513, - "2030-02-01": 28088.4322200138, - "2029-02-01": 27473.8746567148, - "2028-02-01": 26875.0749796542, - "2027-02-01": 26276.2753025936, - "2026-02-01": 25677.475625533, - "2025-02-01": 25070.7970053531, - "2024-12-01": 24866.3384314094, - "2024-11-01": 24857.5140151159, - "2024-10-01": 24870.9870078498, - "2024-09-01": 24842.386444327, - "2024-08-01": 24802.5977815749, - "2024-07-01": 24782.4276871898, - "2024-06-01": 24753.6695448046, - "2024-05-01": 24745.3178650982, - "2024-04-01": 24704.2685714471, - "2024-03-01": 24608.4606231174, - "2024-02-01": 24450.4090241459, - "2024-01-01": 24300, - "2023-01-01": 23700, - "2022-01-01": 23200, - "2021-01-01": 22600, - "2015-01-01": 22600 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[42].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[42].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 583.021363932598, - "2034-02-01": 569.71438020602, - "2033-02-01": 557.138549431452, - "2032-02-01": 545.001410428089, - "2031-02-01": 533.010502015129, - "2030-02-01": 521.312054782973, - "2029-02-01": 509.90606873162, - "2028-02-01": 498.792543861071, - "2027-02-01": 487.679018990523, - "2026-02-01": 476.565494119974, - "2025-02-01": 465.305738659023, - "2024-12-01": 461.511054838093, - "2024-11-01": 461.347276576842, - "2024-10-01": 461.59733088643, - "2024-09-01": 461.066513843271, - "2024-08-01": 460.328049361741, - "2024-07-01": 459.953699050312, - "2024-06-01": 459.419957395345, - "2024-05-01": 459.264952969519, - "2024-04-01": 458.503091593524, - "2024-03-01": 456.724927614237, - "2024-02-01": 453.791541970773, - "2024-01-01": 451, - "2023-01-01": 449, - "2022-01-01": 448, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[43]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[43]", - "description": null, - "label": "bracket 44" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[43].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[43].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 31542.6192460208, - "2034-02-01": 30822.6848714565, - "2033-02-01": 30142.3073306595, - "2032-02-01": 29485.6638901228, - "2031-02-01": 28836.9318163396, - "2030-02-01": 28204.0224760633, - "2029-02-01": 27586.9358692938, - "2028-02-01": 26985.6719960314, - "2027-02-01": 26384.4081227689, - "2026-02-01": 25783.1442495064, - "2025-02-01": 25173.9690094904, - "2024-12-01": 24968.6690422383, - "2024-11-01": 24959.8083114744, - "2024-10-01": 24973.3367486228, - "2024-09-01": 24944.6184873078, - "2024-08-01": 24904.6660852028, - "2024-07-01": 24884.412986314, - "2024-06-01": 24855.5364976639, - "2024-05-01": 24847.1504489052, - "2024-04-01": 24805.9322281197, - "2024-03-01": 24709.7300083977, - "2024-02-01": 24551.0279913234, - "2024-01-01": 24400, - "2023-01-01": 23800, - "2022-01-01": 23300, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[43].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[43].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 594.65593660531, - "2034-02-01": 581.083403314344, - "2033-02-01": 568.256613610793, - "2032-02-01": 555.877270059692, - "2031-02-01": 543.647075226074, - "2030-02-01": 531.715177827422, - "2029-02-01": 520.081577863737, - "2028-02-01": 508.746275335017, - "2027-02-01": 497.410972806298, - "2026-02-01": 486.075670277579, - "2025-02-01": 474.591219031376, - "2024-12-01": 470.720809812689, - "2024-11-01": 470.553763249108, - "2024-10-01": 470.808807556004, - "2024-09-01": 470.26739771154, - "2024-08-01": 469.51419668825, - "2024-07-01": 469.132375971493, - "2024-06-01": 468.58798315268, - "2024-05-01": 468.429885512148, - "2024-04-01": 467.65282069406, - "2024-03-01": 465.839172289465, - "2024-02-01": 462.847249016753, - "2024-01-01": 460, - "2023-01-01": 458, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[44]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[44]", - "description": null, - "label": "bracket 45" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[44].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[44].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 31671.8922757176, - "2034-02-01": 30949.0073504379, - "2033-02-01": 30265.8413770966, - "2032-02-01": 29606.5067749184, - "2031-02-01": 28955.1159631278, - "2030-02-01": 28319.6127321127, - "2029-02-01": 27699.9970818729, - "2028-02-01": 27096.2690124085, - "2027-02-01": 26492.5409429441, - "2026-02-01": 25888.8128734797, - "2025-02-01": 25277.1410136277, - "2024-12-01": 25070.9996530671, - "2024-11-01": 25062.1026078329, - "2024-10-01": 25075.6864893959, - "2024-09-01": 25046.8505302885, - "2024-08-01": 25006.7343888307, - "2024-07-01": 24986.3982854382, - "2024-06-01": 24957.4034505232, - "2024-05-01": 24948.9830327122, - "2024-04-01": 24907.5958847923, - "2024-03-01": 24810.999393678, - "2024-02-01": 24651.646958501, - "2024-01-01": 24500, - "2023-01-01": 23900, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[44].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[44].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 606.290509278023, - "2034-02-01": 592.452426422668, - "2033-02-01": 579.374677790135, - "2032-02-01": 566.753129691295, - "2031-02-01": 554.283648437019, - "2030-02-01": 542.118300871872, - "2029-02-01": 530.257086995853, - "2028-02-01": 518.700006808963, - "2027-02-01": 507.142926622073, - "2026-02-01": 495.585846435184, - "2025-02-01": 483.876699403729, - "2024-12-01": 479.930564787285, - "2024-11-01": 479.760249921373, - "2024-10-01": 480.020284225578, - "2024-09-01": 479.468281579809, - "2024-08-01": 478.700344014759, - "2024-07-01": 478.311052892675, - "2024-06-01": 477.756008910015, - "2024-05-01": 477.594818054777, - "2024-04-01": 476.802549794596, - "2024-03-01": 474.953416964694, - "2024-02-01": 471.902956062733, - "2024-01-01": 469, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[45]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[45]", - "description": null, - "label": "bracket 46" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[45].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[45].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 31801.1653054144, - "2034-02-01": 31075.3298294193, - "2033-02-01": 30389.3754235337, - "2032-02-01": 29727.349659714, - "2031-02-01": 29073.3001099161, - "2030-02-01": 28435.2029881621, - "2029-02-01": 27813.058294452, - "2028-02-01": 27206.8660287857, - "2027-02-01": 26600.6737631194, - "2026-02-01": 25994.4814974531, - "2025-02-01": 25380.3130177649, - "2024-12-01": 25173.330263896, - "2024-11-01": 25164.3969041914, - "2024-10-01": 25178.0362301689, - "2024-09-01": 25149.0825732693, - "2024-08-01": 25108.8026924586, - "2024-07-01": 25088.3835845625, - "2024-06-01": 25059.2704033824, - "2024-05-01": 25050.8156165192, - "2024-04-01": 25009.259541465, - "2024-03-01": 24912.2687789584, - "2024-02-01": 24752.2659256786, - "2024-01-01": 24600, - "2015-01-01": 24600 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[45].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.head_of_household.no_or_one_dependent[45].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": "Infinity", - "2034-02-01": "Infinity", - "2033-02-01": "Infinity", - "2032-02-01": "Infinity", - "2031-02-01": "Infinity", - "2030-02-01": "Infinity", - "2029-02-01": "Infinity", - "2028-02-01": "Infinity", - "2027-02-01": "Infinity", - "2026-02-01": "Infinity", - "2025-02-01": "Infinity", - "2024-12-01": "Infinity", - "2024-11-01": "Infinity", - "2024-10-01": "Infinity", - "2024-09-01": "Infinity", - "2024-08-01": "Infinity", - "2024-07-01": "Infinity", - "2024-06-01": "Infinity", - "2024-05-01": "Infinity", - "2024-04-01": "Infinity", - "2024-03-01": "Infinity", - "2024-02-01": "Infinity", - "2024-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single", - "description": "Arkansas reduces the tax liability of low-income single filers to the following amount, in lieu of a standard or itemized deduction.", - "label": "Arkansas low income tax table single amount" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[0]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 0, - "2034-02-01": 0, - "2033-02-01": 0, - "2032-02-01": 0, - "2031-02-01": 0, - "2030-02-01": 0, - "2029-02-01": 0, - "2028-02-01": 0, - "2027-02-01": 0, - "2026-02-01": 0, - "2025-02-01": 0, - "2024-12-01": 0, - "2024-11-01": 0, - "2024-10-01": 0, - "2024-09-01": 0, - "2024-08-01": 0, - "2024-07-01": 0, - "2024-06-01": 0, - "2024-05-01": 0, - "2024-04-01": 0, - "2024-03-01": 0, - "2024-02-01": 0, - "2024-01-01": 0, - "2023-12-01": 0, - "2023-11-01": 0, - "2023-10-01": 0, - "2023-09-01": 0, - "2023-08-01": 0, - "2023-07-01": 0, - "2023-06-01": 0, - "2023-05-01": 0, - "2023-04-01": 0, - "2023-03-01": 0, - "2023-02-01": 0, - "2023-01-01": 0, - "2022-12-01": 0, - "2022-11-01": 0, - "2022-10-01": 0, - "2022-09-01": 0, - "2022-08-01": 0, - "2022-07-01": 0, - "2022-06-01": 0, - "2022-05-01": 0, - "2022-04-01": 0, - "2022-03-01": 0, - "2022-02-01": 0, - "2022-01-01": 0, - "2021-12-01": 0, - "2021-11-01": 0, - "2021-10-01": 0, - "2021-09-01": 0, - "2021-08-01": 0, - "2021-07-01": 0, - "2021-06-01": 0, - "2021-05-01": 0, - "2021-04-01": 0, - "2021-03-01": 0, - "2021-02-01": 0, - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[0].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 0, - "2034-02-01": 0, - "2033-02-01": 0, - "2032-02-01": 0, - "2031-02-01": 0, - "2030-02-01": 0, - "2029-02-01": 0, - "2028-02-01": 0, - "2027-02-01": 0, - "2026-02-01": 0, - "2025-02-01": 0, - "2024-12-01": 0, - "2024-11-01": 0, - "2024-10-01": 0, - "2024-09-01": 0, - "2024-08-01": 0, - "2024-07-01": 0, - "2024-06-01": 0, - "2024-05-01": 0, - "2024-04-01": 0, - "2024-03-01": 0, - "2024-02-01": 0, - "2024-01-01": 0, - "2023-12-01": 0, - "2023-11-01": 0, - "2023-10-01": 0, - "2023-09-01": 0, - "2023-08-01": 0, - "2023-07-01": 0, - "2023-06-01": 0, - "2023-05-01": 0, - "2023-04-01": 0, - "2023-03-01": 0, - "2023-02-01": 0, - "2023-01-01": 0, - "2022-12-01": 0, - "2022-11-01": 0, - "2022-10-01": 0, - "2022-09-01": 0, - "2022-08-01": 0, - "2022-07-01": 0, - "2022-06-01": 0, - "2022-05-01": 0, - "2022-04-01": 0, - "2022-03-01": 0, - "2022-02-01": 0, - "2022-01-01": 0, - "2021-12-01": 0, - "2021-11-01": 0, - "2021-10-01": 0, - "2021-09-01": 0, - "2021-08-01": 0, - "2021-07-01": 0, - "2021-06-01": 0, - "2021-05-01": 0, - "2021-04-01": 0, - "2021-03-01": 0, - "2021-02-01": 0, - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[1]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 18440.7976862495, - "2034-02-01": 18019.9016266937, - "2033-02-01": 17622.1317242564, - "2032-02-01": 17238.2375160902, - "2031-02-01": 16858.9685393477, - "2030-02-01": 16488.9500254526, - "2029-02-01": 16128.1819744048, - "2028-02-01": 15776.6643862044, - "2027-02-01": 15425.146798004, - "2026-02-01": 15073.6292098036, - "2025-02-01": 14717.4863901795, - "2024-12-01": 14597.4616347348, - "2024-11-01": 14592.2813755403, - "2024-10-01": 14600.1905212748, - "2024-09-01": 14583.4009312068, - "2024-08-01": 14560.0435125171, - "2024-07-01": 14548.2029200725, - "2024-06-01": 14531.320825376, - "2024-05-01": 14526.4180800669, - "2024-04-01": 14502.3206243495, - "2024-03-01": 14446.0778102374, - "2024-02-01": 14353.2956678782, - "2024-01-01": 14265, - "2023-01-01": 13849, - "2022-01-01": 13446, - "2021-01-01": 13054, - "2015-01-01": 13054 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[1].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 35.9825517264432, - "2034-02-01": 35.1612795400608, - "2033-02-01": 34.3851321990841, - "2032-02-01": 33.6360597653508, - "2031-02-01": 32.8960123006986, - "2030-02-01": 32.1740147742086, - "2029-02-01": 31.4700671858809, - "2028-02-01": 30.7841695357155, - "2027-02-01": 30.09827188555, - "2026-02-01": 29.4123742353846, - "2025-02-01": 28.717451616138, - "2024-12-01": 28.4832536684828, - "2024-11-01": 28.4731457031119, - "2024-10-01": 28.4885784002407, - "2024-09-01": 28.4558177624762, - "2024-08-01": 28.4102416686165, - "2024-07-01": 28.3871377477688, - "2024-06-01": 28.3541966106227, - "2024-05-01": 28.3446301433967, - "2024-04-01": 28.2976100544841, - "2024-03-01": 28.1878664304576, - "2024-02-01": 28.0068255506902, - "2024-01-01": 27.8345388909316, - "2023-12-01": 27.683731657586, - "2023-11-01": 27.7112578132834, - "2023-10-01": 27.7672126215864, - "2023-09-01": 27.7778620851021, - "2023-08-01": 27.7090015710131, - "2023-07-01": 27.5885182337801, - "2023-06-01": 27.535992913728, - "2023-05-01": 27.4473677173513, - "2023-04-01": 27.3784169535715, - "2023-03-01": 27.2406056757028, - "2023-02-01": 27.1507169836548, - "2023-01-01": 27, - "2022-01-01": 26, - "2021-01-01": 27, - "2015-01-01": 27 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[2]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 18486.0432466433, - "2034-02-01": 18064.1144943372, - "2033-02-01": 17665.3686405094, - "2032-02-01": 17280.5325257687, - "2031-02-01": 16900.3329907236, - "2030-02-01": 16529.4066150699, - "2029-02-01": 16167.7533988075, - "2028-02-01": 15815.3733419364, - "2027-02-01": 15462.9932850654, - "2026-02-01": 15110.6132281943, - "2025-02-01": 14753.5965916276, - "2024-12-01": 14633.2773485249, - "2024-11-01": 14628.0843792657, - "2024-10-01": 14636.0129305453, - "2024-09-01": 14619.18214625, - "2024-08-01": 14595.7674187869, - "2024-07-01": 14583.897774766, - "2024-06-01": 14566.9742588768, - "2024-05-01": 14562.0594843994, - "2024-04-01": 14537.9029041849, - "2024-03-01": 14481.5220950856, - "2024-02-01": 14388.5123063904, - "2024-01-01": 14300, - "2023-01-01": 13900, - "2022-01-01": 13500, - "2021-01-01": 13100, - "2015-01-01": 13100 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[2].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 45.3113614332988, - "2034-02-01": 44.2771668282248, - "2033-02-01": 43.2997961025504, - "2032-02-01": 42.3565197045158, - "2031-02-01": 41.4246080823612, - "2030-02-01": 40.5154260119664, - "2029-02-01": 39.6289734933315, - "2028-02-01": 38.7652505264565, - "2027-02-01": 37.9015275595815, - "2026-02-01": 37.0378045927065, - "2025-02-01": 36.1627168499515, - "2024-12-01": 35.8678009158672, - "2024-11-01": 35.8550723668817, - "2024-10-01": 35.8745061336364, - "2024-09-01": 35.8332519971922, - "2024-08-01": 35.7758598789986, - "2024-07-01": 35.7467660527459, - "2024-06-01": 35.7052846207842, - "2024-05-01": 35.6932379583514, - "2024-04-01": 35.634027476017, - "2024-03-01": 35.495831801317, - "2024-02-01": 35.2678543971655, - "2024-01-01": 35.0509008256175, - "2023-12-01": 34.8609954206638, - "2023-11-01": 34.8956579870976, - "2023-10-01": 34.9661195975532, - "2023-09-01": 34.9795300330916, - "2023-08-01": 34.8928167931277, - "2023-07-01": 34.7410970351305, - "2023-06-01": 34.6749540395093, - "2023-05-01": 34.5633519403684, - "2023-04-01": 34.4765250526457, - "2023-03-01": 34.3029849249591, - "2023-02-01": 34.1897917571949, - "2023-01-01": 34, - "2022-01-01": 33, - "2021-01-01": 34, - "2015-01-01": 34 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[3]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 18615.3162763402, - "2034-02-01": 18190.4369733186, - "2033-02-01": 17788.9026869466, - "2032-02-01": 17401.3754105643, - "2031-02-01": 17018.5171375119, - "2030-02-01": 16644.9968711193, - "2029-02-01": 16280.8146113865, - "2028-02-01": 15925.9703583136, - "2027-02-01": 15571.1261052406, - "2026-02-01": 15216.2818521677, - "2025-02-01": 14856.7685957648, - "2024-12-01": 14735.6079593537, - "2024-11-01": 14730.3786756242, - "2024-10-01": 14738.3626713184, - "2024-09-01": 14721.4141892308, - "2024-08-01": 14697.8357224148, - "2024-07-01": 14685.8830738902, - "2024-06-01": 14668.8412117361, - "2024-05-01": 14663.8920682064, - "2024-04-01": 14639.5665608575, - "2024-03-01": 14582.7914803659, - "2024-02-01": 14489.1312735679, - "2024-01-01": 14400, - "2023-01-01": 14000, - "2022-01-01": 13600, - "2021-01-01": 13200, - "2015-01-01": 13200 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[3].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 54.6401711401544, - "2034-02-01": 53.3930541163887, - "2033-02-01": 52.2144600060166, - "2032-02-01": 51.0769796436808, - "2031-02-01": 49.9532038640238, - "2030-02-01": 48.8568372497242, - "2029-02-01": 47.7878798007822, - "2028-02-01": 46.7463315171976, - "2027-02-01": 45.704783233613, - "2026-02-01": 44.6632349500284, - "2025-02-01": 43.6079820837651, - "2024-12-01": 43.2523481632517, - "2024-11-01": 43.2369990306515, - "2024-10-01": 43.2604338670321, - "2024-09-01": 43.2106862319083, - "2024-08-01": 43.1414780893806, - "2024-07-01": 43.106394357723, - "2024-06-01": 43.0563726309456, - "2024-05-01": 43.0418457733061, - "2024-04-01": 42.9704448975499, - "2024-03-01": 42.8037971721763, - "2024-02-01": 42.5288832436407, - "2024-01-01": 42.2672627603035, - "2023-12-01": 42.0382591837417, - "2023-11-01": 42.0800581609119, - "2023-10-01": 42.1650265735201, - "2023-09-01": 42.181197981081, - "2023-08-01": 42.0766320152422, - "2023-07-01": 41.8936758364809, - "2023-06-01": 41.8139151652906, - "2023-05-01": 41.6793361633854, - "2023-04-01": 41.5746331517198, - "2023-03-01": 41.3653641742153, - "2023-02-01": 41.228866530735, - "2023-01-01": 41, - "2022-01-01": 40, - "2021-01-01": 41, - "2015-01-01": 41 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[4]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 18744.589306037, - "2034-02-01": 18316.7594523, - "2033-02-01": 17912.4367333837, - "2032-02-01": 17522.2182953599, - "2031-02-01": 17136.7012843002, - "2030-02-01": 16760.5871271687, - "2029-02-01": 16393.8758239656, - "2028-02-01": 16036.5673746908, - "2027-02-01": 15679.2589254159, - "2026-02-01": 15321.9504761411, - "2025-02-01": 14959.9405999021, - "2024-12-01": 14837.9385701826, - "2024-11-01": 14832.6729719827, - "2024-10-01": 14840.7124120914, - "2024-09-01": 14823.6462322116, - "2024-08-01": 14799.9040260427, - "2024-07-01": 14787.8683730145, - "2024-06-01": 14770.7081645953, - "2024-05-01": 14765.7246520133, - "2024-04-01": 14741.2302175302, - "2024-03-01": 14684.0608656462, - "2024-02-01": 14589.7502407455, - "2024-01-01": 14500, - "2023-01-01": 14100, - "2022-01-01": 13700, - "2021-01-01": 13300, - "2015-01-01": 13300 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[4].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 63.9689808470101, - "2034-02-01": 62.5089414045526, - "2033-02-01": 61.1291239094829, - "2032-02-01": 59.7974395828459, - "2031-02-01": 58.4817996456864, - "2030-02-01": 57.198248487482, - "2029-02-01": 55.9467861082328, - "2028-02-01": 54.7274125079386, - "2027-02-01": 53.5080389076445, - "2026-02-01": 52.2886653073503, - "2025-02-01": 51.0532473175786, - "2024-12-01": 50.6368954106361, - "2024-11-01": 50.6189256944212, - "2024-10-01": 50.6463616004278, - "2024-09-01": 50.5881204666243, - "2024-08-01": 50.5070962997627, - "2024-07-01": 50.4660226627001, - "2024-06-01": 50.4074606411071, - "2024-05-01": 50.3904535882609, - "2024-04-01": 50.3068623190828, - "2024-03-01": 50.1117625430357, - "2024-02-01": 49.789912090116, - "2024-01-01": 49.4836246949895, - "2023-12-01": 49.2155229468195, - "2023-11-01": 49.2644583347261, - "2023-10-01": 49.3639335494869, - "2023-09-01": 49.3828659290704, - "2023-08-01": 49.2604472373567, - "2023-07-01": 49.0462546378313, - "2023-06-01": 48.952876291072, - "2023-05-01": 48.7953203864024, - "2023-04-01": 48.6727412507939, - "2023-03-01": 48.4277434234716, - "2023-02-01": 48.2679413042752, - "2023-01-01": 48, - "2022-01-01": 47, - "2021-01-01": 48, - "2015-01-01": 48 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[5]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 18873.8623357338, - "2034-02-01": 18443.0819312814, - "2033-02-01": 18035.9707798208, - "2032-02-01": 17643.0611801554, - "2031-02-01": 17254.8854310884, - "2030-02-01": 16876.1773832182, - "2029-02-01": 16506.9370365447, - "2028-02-01": 16147.1643910679, - "2027-02-01": 15787.3917455912, - "2026-02-01": 15427.6191001145, - "2025-02-01": 15063.1126040393, - "2024-12-01": 14940.2691810114, - "2024-11-01": 14934.9672683412, - "2024-10-01": 14943.0621528645, - "2024-09-01": 14925.8782751924, - "2024-08-01": 14901.9723296705, - "2024-07-01": 14889.8536721387, - "2024-06-01": 14872.5751174546, - "2024-05-01": 14867.5572358203, - "2024-04-01": 14842.8938742028, - "2024-03-01": 14785.3302509265, - "2024-02-01": 14690.369207923, - "2024-01-01": 14600, - "2023-01-01": 14200, - "2022-01-01": 13800, - "2021-01-01": 13400, - "2015-01-01": 13400 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[5].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 73.2977905538657, - "2034-02-01": 71.6248286927165, - "2033-02-01": 70.0437878129492, - "2032-02-01": 68.5178995220109, - "2031-02-01": 67.010395427349, - "2030-02-01": 65.5396597252398, - "2029-02-01": 64.1056924156834, - "2028-02-01": 62.7084934986797, - "2027-02-01": 61.311294581676, - "2026-02-01": 59.9140956646723, - "2025-02-01": 58.4985125513922, - "2024-12-01": 58.0214426580205, - "2024-11-01": 58.000852358191, - "2024-10-01": 58.0322893338236, - "2024-09-01": 57.9655547013404, - "2024-08-01": 57.8727145101447, - "2024-07-01": 57.8256509676773, - "2024-06-01": 57.7585486512685, - "2024-05-01": 57.7390614032156, - "2024-04-01": 57.6432797406157, - "2024-03-01": 57.4197279138951, - "2024-02-01": 57.0509409365912, - "2024-01-01": 56.6999866296754, - "2023-12-01": 56.3927867098974, - "2023-11-01": 56.4488585085403, - "2023-10-01": 56.5628405254538, - "2023-09-01": 56.5845338770599, - "2023-08-01": 56.4442624594712, - "2023-07-01": 56.1988334391817, - "2023-06-01": 56.0918374168533, - "2023-05-01": 55.9113046094194, - "2023-04-01": 55.770849349868, - "2023-03-01": 55.4901226727279, - "2023-02-01": 55.3070160778153, - "2023-01-01": 55, - "2022-01-01": 54, - "2021-01-01": 55, - "2015-01-01": 55 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[6]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[6].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 19003.1353654306, - "2034-02-01": 18569.4044102627, - "2033-02-01": 18159.504826258, - "2032-02-01": 17763.904064951, - "2031-02-01": 17373.0695778767, - "2030-02-01": 16991.7676392676, - "2029-02-01": 16619.9982491238, - "2028-02-01": 16257.7614074451, - "2027-02-01": 15895.5245657665, - "2026-02-01": 15533.2877240878, - "2025-02-01": 15166.2846081766, - "2024-12-01": 15042.5997918403, - "2024-11-01": 15037.2615646997, - "2024-10-01": 15045.4118936375, - "2024-09-01": 15028.1103181731, - "2024-08-01": 15004.0406332984, - "2024-07-01": 14991.8389712629, - "2024-06-01": 14974.4420703139, - "2024-05-01": 14969.3898196273, - "2024-04-01": 14944.5575308754, - "2024-03-01": 14886.5996362068, - "2024-02-01": 14790.9881751006, - "2024-01-01": 14700, - "2023-01-01": 14300, - "2022-01-01": 13900, - "2021-01-01": 13500, - "2015-01-01": 13500 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[6].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[6].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 82.6266002607213, - "2034-02-01": 80.7407159808804, - "2033-02-01": 78.9584517164154, - "2032-02-01": 77.2383594611759, - "2031-02-01": 75.5389912090116, - "2030-02-01": 73.8810709629976, - "2029-02-01": 72.264598723134, - "2028-02-01": 70.6895744894207, - "2027-02-01": 69.1145502557075, - "2026-02-01": 67.5395260219942, - "2025-02-01": 65.9437777852057, - "2024-12-01": 65.405989905405, - "2024-11-01": 65.3827790219607, - "2024-10-01": 65.4182170672193, - "2024-09-01": 65.3429889360564, - "2024-08-01": 65.2383327205268, - "2024-07-01": 65.1852792726544, - "2024-06-01": 65.10963666143, - "2024-05-01": 65.0876692181703, - "2024-04-01": 64.9796971621486, - "2024-03-01": 64.7276932847545, - "2024-02-01": 64.3119697830665, - "2024-01-01": 63.9163485643614, - "2023-12-01": 63.5700504729752, - "2023-11-01": 63.6332586823545, - "2023-10-01": 63.7617475014206, - "2023-09-01": 63.7862018250493, - "2023-08-01": 63.6280776815857, - "2023-07-01": 63.3514122405321, - "2023-06-01": 63.2307985426346, - "2023-05-01": 63.0272888324364, - "2023-04-01": 62.8689574489421, - "2023-03-01": 62.5525019219842, - "2023-02-01": 62.3460908513554, - "2023-01-01": 62, - "2022-01-01": 61, - "2021-01-01": 62, - "2015-01-01": 62 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[7]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[7].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 19132.4083951274, - "2034-02-01": 18695.7268892441, - "2033-02-01": 18283.0388726951, - "2032-02-01": 17884.7469497466, - "2031-02-01": 17491.253724665, - "2030-02-01": 17107.3578953171, - "2029-02-01": 16733.0594617028, - "2028-02-01": 16368.3584238223, - "2027-02-01": 16003.6573859418, - "2026-02-01": 15638.9563480612, - "2025-02-01": 15269.4566123138, - "2024-12-01": 15144.9304026691, - "2024-11-01": 15139.5558610582, - "2024-10-01": 15147.7616344106, - "2024-09-01": 15130.3423611539, - "2024-08-01": 15106.1089369263, - "2024-07-01": 15093.8242703872, - "2024-06-01": 15076.3090231732, - "2024-05-01": 15071.2224034343, - "2024-04-01": 15046.221187548, - "2024-03-01": 14987.8690214871, - "2024-02-01": 14891.6071422782, - "2024-01-01": 14800, - "2023-01-01": 14400, - "2022-01-01": 14000, - "2021-01-01": 13600, - "2015-01-01": 13600 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[7].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[7].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 91.955409967577, - "2034-02-01": 89.8566032690443, - "2033-02-01": 87.8731156198817, - "2032-02-01": 85.9588194003409, - "2031-02-01": 84.0675869906742, - "2030-02-01": 82.2224822007554, - "2029-02-01": 80.4235050305846, - "2028-02-01": 78.6706554801618, - "2027-02-01": 76.917805929739, - "2026-02-01": 75.1649563793161, - "2025-02-01": 73.3890430190193, - "2024-12-01": 72.7905371527894, - "2024-11-01": 72.7647056857305, - "2024-10-01": 72.804144800615, - "2024-09-01": 72.7204231707725, - "2024-08-01": 72.6039509309089, - "2024-07-01": 72.5449075776315, - "2024-06-01": 72.4607246715914, - "2024-05-01": 72.436277033125, - "2024-04-01": 72.3161145836815, - "2024-03-01": 72.0356586556139, - "2024-02-01": 71.5729986295417, - "2024-01-01": 71.1327104990474, - "2023-12-01": 70.7473142360531, - "2023-11-01": 70.8176588561687, - "2023-10-01": 70.9606544773874, - "2023-09-01": 70.9878697730387, - "2023-08-01": 70.8118929037002, - "2023-07-01": 70.5039910418825, - "2023-06-01": 70.369759668416, - "2023-05-01": 70.1432730554534, - "2023-04-01": 69.9670655480162, - "2023-03-01": 69.6148811712404, - "2023-02-01": 69.3851656248955, - "2023-01-01": 69, - "2022-01-01": 68, - "2021-01-01": 69, - "2015-01-01": 69 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[8]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[8].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 19261.6814248242, - "2034-02-01": 18822.0493682255, - "2033-02-01": 18406.5729191322, - "2032-02-01": 18005.5898345422, - "2031-02-01": 17609.4378714533, - "2030-02-01": 17222.9481513665, - "2029-02-01": 16846.1206742819, - "2028-02-01": 16478.9554401995, - "2027-02-01": 16111.790206117, - "2026-02-01": 15744.6249720346, - "2025-02-01": 15372.6286164511, - "2024-12-01": 15247.261013498, - "2024-11-01": 15241.8501574167, - "2024-10-01": 15250.1113751836, - "2024-09-01": 15232.5744041347, - "2024-08-01": 15208.1772405542, - "2024-07-01": 15195.8095695114, - "2024-06-01": 15178.1759760325, - "2024-05-01": 15173.0549872413, - "2024-04-01": 15147.8848442207, - "2024-03-01": 15089.1384067675, - "2024-02-01": 14992.2261094557, - "2024-01-01": 14900, - "2023-01-01": 14500, - "2022-01-01": 14100, - "2021-01-01": 13700, - "2015-01-01": 13700 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[8].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[8].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 101.284219674433, - "2034-02-01": 98.9724905572083, - "2033-02-01": 96.7877795233479, - "2032-02-01": 94.679279339506, - "2031-02-01": 92.5961827723368, - "2030-02-01": 90.5638934385132, - "2029-02-01": 88.5824113380352, - "2028-02-01": 86.6517364709028, - "2027-02-01": 84.7210616037704, - "2026-02-01": 82.790386736638, - "2025-02-01": 80.8343082528328, - "2024-12-01": 80.1750844001738, - "2024-11-01": 80.1466323495003, - "2024-10-01": 80.1900725340108, - "2024-09-01": 80.0978574054885, - "2024-08-01": 79.9695691412909, - "2024-07-01": 79.9045358826086, - "2024-06-01": 79.8118126817528, - "2024-05-01": 79.7848848480797, - "2024-04-01": 79.6525320052144, - "2024-03-01": 79.3436240264732, - "2024-02-01": 78.834027476017, - "2024-01-01": 78.3490724337333, - "2023-12-01": 77.9245779991309, - "2023-11-01": 78.002059029983, - "2023-10-01": 78.1595614533543, - "2023-09-01": 78.1895377210282, - "2023-08-01": 77.9957081258148, - "2023-07-01": 77.6565698432329, - "2023-06-01": 77.5087207941973, - "2023-05-01": 77.2592572784704, - "2023-04-01": 77.0651736470903, - "2023-03-01": 76.6772604204967, - "2023-02-01": 76.4242403984357, - "2023-01-01": 76, - "2022-01-01": 75, - "2021-01-01": 76, - "2015-01-01": 76 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[9]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[9].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 19390.954454521, - "2034-02-01": 18948.3718472069, - "2033-02-01": 18530.1069655693, - "2032-02-01": 18126.4327193378, - "2031-02-01": 17727.6220182415, - "2030-02-01": 17338.5384074159, - "2029-02-01": 16959.181886861, - "2028-02-01": 16589.5524565767, - "2027-02-01": 16219.9230262923, - "2026-02-01": 15850.293596008, - "2025-02-01": 15475.8006205884, - "2024-12-01": 15349.5916243268, - "2024-11-01": 15344.1444537752, - "2024-10-01": 15352.4611159566, - "2024-09-01": 15334.8064471154, - "2024-08-01": 15310.2455441821, - "2024-07-01": 15297.7948686356, - "2024-06-01": 15280.0429288917, - "2024-05-01": 15274.8875710483, - "2024-04-01": 15249.5485008933, - "2024-03-01": 15190.4077920478, - "2024-02-01": 15092.8450766333, - "2024-01-01": 15000, - "2023-01-01": 14600, - "2022-01-01": 14200, - "2021-01-01": 13800, - "2015-01-01": 13800 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[9].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[9].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 110.613029381288, - "2034-02-01": 108.088377845372, - "2033-02-01": 105.702443426814, - "2032-02-01": 103.399739278671, - "2031-02-01": 101.124778553999, - "2030-02-01": 98.905304676271, - "2029-02-01": 96.7413176454858, - "2028-02-01": 94.6328174616439, - "2027-02-01": 92.5243172778019, - "2026-02-01": 90.4158170939599, - "2025-02-01": 88.2795734866464, - "2024-12-01": 87.5596316475583, - "2024-11-01": 87.52855901327, - "2024-10-01": 87.5760002674065, - "2024-09-01": 87.4752916402046, - "2024-08-01": 87.335187351673, - "2024-07-01": 87.2641641875857, - "2024-06-01": 87.1629006919143, - "2024-05-01": 87.1334926630344, - "2024-04-01": 86.9889494267473, - "2024-03-01": 86.6515893973326, - "2024-02-01": 86.0950563224922, - "2024-01-01": 85.5654343684193, - "2023-12-01": 85.1018417622088, - "2023-11-01": 85.1864592037972, - "2023-10-01": 85.3584684293211, - "2023-09-01": 85.3912056690176, - "2023-08-01": 85.1795233479293, - "2023-07-01": 84.8091486445833, - "2023-06-01": 84.6476819199786, - "2023-05-01": 84.3752415014875, - "2023-04-01": 84.1632817461644, - "2023-03-01": 83.739639669753, - "2023-02-01": 83.4633151719758, - "2023-01-01": 83, - "2022-01-01": 82, - "2021-01-01": 83, - "2015-01-01": 83 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[10]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[10]", - "description": null, - "label": "bracket 11" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[10].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[10].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 19520.2274842178, - "2034-02-01": 19074.6943261882, - "2033-02-01": 18653.6410120065, - "2032-02-01": 18247.2756041334, - "2031-02-01": 17845.8061650298, - "2030-02-01": 17454.1286634654, - "2029-02-01": 17072.24309944, - "2028-02-01": 16700.1494729538, - "2027-02-01": 16328.0558464676, - "2026-02-01": 15955.9622199814, - "2025-02-01": 15578.9726247256, - "2024-12-01": 15451.9222351557, - "2024-11-01": 15446.4387501337, - "2024-10-01": 15454.8108567297, - "2024-09-01": 15437.0384900962, - "2024-08-01": 15412.3138478099, - "2024-07-01": 15399.7801677599, - "2024-06-01": 15381.909881751, - "2024-05-01": 15376.7201548553, - "2024-04-01": 15351.2121575659, - "2024-03-01": 15291.6771773281, - "2024-02-01": 15193.4640438108, - "2024-01-01": 15100, - "2023-01-01": 14700, - "2022-01-01": 14300, - "2021-01-01": 13900, - "2015-01-01": 13900 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[10].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[10].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 119.941839088144, - "2034-02-01": 117.204265133536, - "2033-02-01": 114.61710733028, - "2032-02-01": 112.120199217836, - "2031-02-01": 109.653374335662, - "2030-02-01": 107.246715914029, - "2029-02-01": 104.900223952936, - "2028-02-01": 102.613898452385, - "2027-02-01": 100.327572951833, - "2026-02-01": 98.0412474512819, - "2025-02-01": 95.7248387204599, - "2024-12-01": 94.9441788949427, - "2024-11-01": 94.9104856770398, - "2024-10-01": 94.9619280008022, - "2024-09-01": 94.8527258749206, - "2024-08-01": 94.700805562055, - "2024-07-01": 94.6237924925628, - "2024-06-01": 94.5139887020757, - "2024-05-01": 94.4821004779891, - "2024-04-01": 94.3253668482802, - "2024-03-01": 93.959554768192, - "2024-02-01": 93.3560851689675, - "2024-01-01": 92.7817963031053, - "2023-12-01": 92.2791055252866, - "2023-11-01": 92.3708593776114, - "2023-10-01": 92.557375405288, - "2023-09-01": 92.592873617007, - "2023-08-01": 92.3633385700438, - "2023-07-01": 91.9617274459337, - "2023-06-01": 91.7866430457599, - "2023-05-01": 91.4912257245045, - "2023-04-01": 91.2613898452385, - "2023-03-01": 90.8020189190093, - "2023-02-01": 90.5023899455159, - "2023-01-01": 90, - "2022-01-01": 89, - "2021-01-01": 90, - "2015-01-01": 90 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[11]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[11]", - "description": null, - "label": "bracket 12" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[11].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[11].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 19649.5005139146, - "2034-02-01": 19201.0168051696, - "2033-02-01": 18777.1750584436, - "2032-02-01": 18368.118488929, - "2031-02-01": 17963.9903118181, - "2030-02-01": 17569.7189195148, - "2029-02-01": 17185.3043120191, - "2028-02-01": 16810.746489331, - "2027-02-01": 16436.1886666429, - "2026-02-01": 16061.6308439548, - "2025-02-01": 15682.1446288629, - "2024-12-01": 15554.2528459845, - "2024-11-01": 15548.7330464923, - "2024-10-01": 15557.1605975027, - "2024-09-01": 15539.270533077, - "2024-08-01": 15514.3821514378, - "2024-07-01": 15501.7654668841, - "2024-06-01": 15483.7768346103, - "2024-05-01": 15478.5527386623, - "2024-04-01": 15452.8758142385, - "2024-03-01": 15392.9465626084, - "2024-02-01": 15294.0830109884, - "2024-01-01": 15200, - "2023-01-01": 14800, - "2022-01-01": 14400, - "2021-01-01": 14000, - "2015-01-01": 14000 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[11].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[11].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 129.270648795, - "2034-02-01": 126.3201524217, - "2033-02-01": 123.531771233747, - "2032-02-01": 120.840659157001, - "2031-02-01": 118.181970117325, - "2030-02-01": 115.588127151787, - "2029-02-01": 113.059130260387, - "2028-02-01": 110.594979443126, - "2027-02-01": 108.130828625865, - "2026-02-01": 105.666677808604, - "2025-02-01": 103.170103954273, - "2024-12-01": 102.328726142327, - "2024-11-01": 102.29241234081, - "2024-10-01": 102.347855734198, - "2024-09-01": 102.230160109637, - "2024-08-01": 102.066423772437, - "2024-07-01": 101.98342079754, - "2024-06-01": 101.865076712237, - "2024-05-01": 101.830708292944, - "2024-04-01": 101.661784269813, - "2024-03-01": 101.267520139051, - "2024-02-01": 100.617114015443, - "2024-01-01": 99.9981582377912, - "2023-12-01": 99.4563692883645, - "2023-11-01": 99.5552595514256, - "2023-10-01": 99.7562823812548, - "2023-09-01": 99.7945415649965, - "2023-08-01": 99.5471537921583, - "2023-07-01": 99.1143062472841, - "2023-06-01": 98.9256041715413, - "2023-05-01": 98.6072099475215, - "2023-04-01": 98.3594979443126, - "2023-03-01": 97.8643981682655, - "2023-02-01": 97.541464719056, - "2023-01-01": 97, - "2022-01-01": 96, - "2021-01-01": 97, - "2015-01-01": 97 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[12]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[12]", - "description": null, - "label": "bracket 13" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[12].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[12].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 19778.7735436114, - "2034-02-01": 19327.339284151, - "2033-02-01": 18900.7091048807, - "2032-02-01": 18488.9613737245, - "2031-02-01": 18082.1744586064, - "2030-02-01": 17685.3091755643, - "2029-02-01": 17298.3655245982, - "2028-02-01": 16921.3435057082, - "2027-02-01": 16544.3214868182, - "2026-02-01": 16167.2994679282, - "2025-02-01": 15785.3166330001, - "2024-12-01": 15656.5834568133, - "2024-11-01": 15651.0273428508, - "2024-10-01": 15659.5103382758, - "2024-09-01": 15641.5025760577, - "2024-08-01": 15616.4504550657, - "2024-07-01": 15603.7507660084, - "2024-06-01": 15585.6437874696, - "2024-05-01": 15580.3853224693, - "2024-04-01": 15554.5394709111, - "2024-03-01": 15494.2159478887, - "2024-02-01": 15394.7019781659, - "2024-01-01": 15300, - "2023-01-01": 14900, - "2022-01-01": 14500, - "2021-01-01": 14100, - "2015-01-01": 14100 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[12].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[12].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 138.599458501855, - "2034-02-01": 135.436039709864, - "2033-02-01": 132.446435137213, - "2032-02-01": 129.561119096166, - "2031-02-01": 126.710565898987, - "2030-02-01": 123.929538389544, - "2029-02-01": 121.218036567838, - "2028-02-01": 118.576060433867, - "2027-02-01": 115.934084299896, - "2026-02-01": 113.292108165926, - "2025-02-01": 110.615369188087, - "2024-12-01": 109.713273389712, - "2024-11-01": 109.674339004579, - "2024-10-01": 109.733783467594, - "2024-09-01": 109.607594344353, - "2024-08-01": 109.432041982819, - "2024-07-01": 109.343049102517, - "2024-06-01": 109.216164722399, - "2024-05-01": 109.179316107899, - "2024-04-01": 108.998201691346, - "2024-03-01": 108.575485509911, - "2024-02-01": 107.878142861918, - "2024-01-01": 107.214520172477, - "2023-12-01": 106.633633051442, - "2023-11-01": 106.73965972524, - "2023-10-01": 106.955189357222, - "2023-09-01": 106.996209512986, - "2023-08-01": 106.730969014273, - "2023-07-01": 106.266885048635, - "2023-06-01": 106.064565297323, - "2023-05-01": 105.723194170538, - "2023-04-01": 105.457606043387, - "2023-03-01": 104.926777417522, - "2023-02-01": 104.580539492596, - "2023-01-01": 104, - "2022-01-01": 103, - "2021-01-01": 104, - "2015-01-01": 104 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[13]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[13]", - "description": null, - "label": "bracket 14" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[13].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[13].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 19908.0465733082, - "2034-02-01": 19453.6617631324, - "2033-02-01": 19024.2431513179, - "2032-02-01": 18609.8042585201, - "2031-02-01": 18200.3586053946, - "2030-02-01": 17800.8994316137, - "2029-02-01": 17411.4267371773, - "2028-02-01": 17031.9405220854, - "2027-02-01": 16652.4543069935, - "2026-02-01": 16272.9680919015, - "2025-02-01": 15888.4886371374, - "2024-12-01": 15758.9140676422, - "2024-11-01": 15753.3216392093, - "2024-10-01": 15761.8600790488, - "2024-09-01": 15743.7346190385, - "2024-08-01": 15718.5187586936, - "2024-07-01": 15705.7360651326, - "2024-06-01": 15687.5107403288, - "2024-05-01": 15682.2179062762, - "2024-04-01": 15656.2031275838, - "2024-03-01": 15595.4853331691, - "2024-02-01": 15495.3209453435, - "2024-01-01": 15400, - "2023-01-01": 15000, - "2022-01-01": 14600, - "2021-01-01": 14200, - "2015-01-01": 14200 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[13].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[13].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 147.928268208711, - "2034-02-01": 144.551926998028, - "2033-02-01": 141.361099040679, - "2032-02-01": 138.281579035331, - "2031-02-01": 135.23916168065, - "2030-02-01": 132.270949627302, - "2029-02-01": 129.376942875288, - "2028-02-01": 126.557141424608, - "2027-02-01": 123.737339973928, - "2026-02-01": 120.917538523248, - "2025-02-01": 118.060634421901, - "2024-12-01": 117.097820637096, - "2024-11-01": 117.056265668349, - "2024-10-01": 117.119711200989, - "2024-09-01": 116.985028579069, - "2024-08-01": 116.797660193201, - "2024-07-01": 116.702677407494, - "2024-06-01": 116.56725273256, - "2024-05-01": 116.527923922853, - "2024-04-01": 116.334619112879, - "2024-03-01": 115.88345088077, - "2024-02-01": 115.139171708393, - "2024-01-01": 114.430882107163, - "2023-12-01": 113.81089681452, - "2023-11-01": 113.924059899054, - "2023-10-01": 114.154096333188, - "2023-09-01": 114.197877460975, - "2023-08-01": 113.914784236387, - "2023-07-01": 113.419463849985, - "2023-06-01": 113.203526423104, - "2023-05-01": 112.839178393556, - "2023-04-01": 112.555714142461, - "2023-03-01": 111.989156666778, - "2023-02-01": 111.619614266136, - "2023-01-01": 111, - "2022-01-01": 110, - "2021-01-01": 111, - "2015-01-01": 111 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[14]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[14]", - "description": null, - "label": "bracket 15" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[14].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[14].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 20037.319603005, - "2034-02-01": 19579.9842421138, - "2033-02-01": 19147.777197755, - "2032-02-01": 18730.6471433157, - "2031-02-01": 18318.5427521829, - "2030-02-01": 17916.4896876631, - "2029-02-01": 17524.4879497563, - "2028-02-01": 17142.5375384625, - "2027-02-01": 16760.5871271687, - "2026-02-01": 16378.6367158749, - "2025-02-01": 15991.6606412746, - "2024-12-01": 15861.244678471, - "2024-11-01": 15855.6159355678, - "2024-10-01": 15864.2098198219, - "2024-09-01": 15845.9666620193, - "2024-08-01": 15820.5870623215, - "2024-07-01": 15807.7213642568, - "2024-06-01": 15789.3776931881, - "2024-05-01": 15784.0504900832, - "2024-04-01": 15757.8667842564, - "2024-03-01": 15696.7547184494, - "2024-02-01": 15595.939912521, - "2024-01-01": 15500, - "2023-01-01": 15100, - "2022-01-01": 14700, - "2021-01-01": 14300, - "2015-01-01": 14300 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[14].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[14].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 157.257077915566, - "2034-02-01": 153.667814286192, - "2033-02-01": 150.275762944145, - "2032-02-01": 147.002038974496, - "2031-02-01": 143.767757462312, - "2030-02-01": 140.61236086506, - "2029-02-01": 137.535849182739, - "2028-02-01": 134.538222415349, - "2027-02-01": 131.540595647959, - "2026-02-01": 128.54296888057, - "2025-02-01": 125.505899655714, - "2024-12-01": 124.48236788448, - "2024-11-01": 124.438192332119, - "2024-10-01": 124.505638934385, - "2024-09-01": 124.362462813785, - "2024-08-01": 124.163278403583, - "2024-07-01": 124.062305712471, - "2024-06-01": 123.918340742722, - "2024-05-01": 123.876531737808, - "2024-04-01": 123.671036534412, - "2024-03-01": 123.191416251629, - "2024-02-01": 122.400200554868, - "2024-01-01": 121.647244041849, - "2023-12-01": 120.988160577598, - "2023-11-01": 121.108460072868, - "2023-10-01": 121.353003309155, - "2023-09-01": 121.399545408965, - "2023-08-01": 121.098599458502, - "2023-07-01": 120.572042651335, - "2023-06-01": 120.342487548885, - "2023-05-01": 119.955162616573, - "2023-04-01": 119.653822241535, - "2023-03-01": 119.051535916034, - "2023-02-01": 118.658689039676, - "2023-01-01": 118, - "2022-01-01": 117, - "2021-01-01": 118, - "2015-01-01": 118 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[15]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[15]", - "description": null, - "label": "bracket 16" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[15].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[15].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 20166.5926327018, - "2034-02-01": 19706.3067210951, - "2033-02-01": 19271.3112441921, - "2032-02-01": 18851.4900281113, - "2031-02-01": 18436.7268989712, - "2030-02-01": 18032.0799437126, - "2029-02-01": 17637.5491623354, - "2028-02-01": 17253.1345548397, - "2027-02-01": 16868.719947344, - "2026-02-01": 16484.3053398483, - "2025-02-01": 16094.8326454119, - "2024-12-01": 15963.5752892999, - "2024-11-01": 15957.9102319263, - "2024-10-01": 15966.5595605949, - "2024-09-01": 15948.1987050001, - "2024-08-01": 15922.6553659494, - "2024-07-01": 15909.7066633811, - "2024-06-01": 15891.2446460474, - "2024-05-01": 15885.8830738902, - "2024-04-01": 15859.530440929, - "2024-03-01": 15798.0241037297, - "2024-02-01": 15696.5588796986, - "2024-01-01": 15600, - "2023-01-01": 15200, - "2022-01-01": 14800, - "2021-01-01": 14400, - "2015-01-01": 14400 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[15].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[15].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 166.585887622422, - "2034-02-01": 162.783701574356, - "2033-02-01": 159.190426847612, - "2032-02-01": 155.722498913661, - "2031-02-01": 152.296353243975, - "2030-02-01": 148.953772102818, - "2029-02-01": 145.69475549019, - "2028-02-01": 142.51930340609, - "2027-02-01": 139.343851321991, - "2026-02-01": 136.168399237892, - "2025-02-01": 132.951164889528, - "2024-12-01": 131.866915131865, - "2024-11-01": 131.820118995889, - "2024-10-01": 131.891566667781, - "2024-09-01": 131.739897048501, - "2024-08-01": 131.528896613965, - "2024-07-01": 131.421934017448, - "2024-06-01": 131.269428752883, - "2024-05-01": 131.225139552763, - "2024-04-01": 131.007453955945, - "2024-03-01": 130.499381622489, - "2024-02-01": 129.661229401344, - "2024-01-01": 128.863605976535, - "2023-12-01": 128.165424340676, - "2023-11-01": 128.292860246683, - "2023-10-01": 128.551910285122, - "2023-09-01": 128.601213356954, - "2023-08-01": 128.282414680616, - "2023-07-01": 127.724621452686, - "2023-06-01": 127.481448674667, - "2023-05-01": 127.07114683959, - "2023-04-01": 126.751930340609, - "2023-03-01": 126.113915165291, - "2023-02-01": 125.697763813217, - "2023-01-01": 125, - "2022-01-01": 124, - "2021-01-01": 125, - "2015-01-01": 125 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[16]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[16]", - "description": null, - "label": "bracket 17" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[16].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[16].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 20295.8656623986, - "2034-02-01": 19832.6292000765, - "2033-02-01": 19394.8452906292, - "2032-02-01": 18972.3329129069, - "2031-02-01": 18554.9110457595, - "2030-02-01": 18147.670199762, - "2029-02-01": 17750.6103749145, - "2028-02-01": 17363.7315712169, - "2027-02-01": 16976.8527675193, - "2026-02-01": 16589.9739638217, - "2025-02-01": 16198.0046495492, - "2024-12-01": 16065.9059001287, - "2024-11-01": 16060.2045282848, - "2024-10-01": 16068.909301368, - "2024-09-01": 16050.4307479808, - "2024-08-01": 16024.7236695772, - "2024-07-01": 16011.6919625053, - "2024-06-01": 15993.1115989067, - "2024-05-01": 15987.7156576972, - "2024-04-01": 15961.1940976016, - "2024-03-01": 15899.29348901, - "2024-02-01": 15797.1778468761, - "2024-01-01": 15700, - "2023-01-01": 15300, - "2022-01-01": 14900, - "2021-01-01": 14500, - "2015-01-01": 14500 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[16].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[16].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 175.914697329278, - "2034-02-01": 171.89958886252, - "2033-02-01": 168.105090751078, - "2032-02-01": 164.442958852826, - "2031-02-01": 160.824949025638, - "2030-02-01": 157.295183340576, - "2029-02-01": 153.85366179764, - "2028-02-01": 150.500384396831, - "2027-02-01": 147.147106996022, - "2026-02-01": 143.793829595213, - "2025-02-01": 140.396430123341, - "2024-12-01": 139.251462379249, - "2024-11-01": 139.202045659658, - "2024-10-01": 139.277494401177, - "2024-09-01": 139.117331283217, - "2024-08-01": 138.894514824347, - "2024-07-01": 138.781562322425, - "2024-06-01": 138.620516763044, - "2024-05-01": 138.573747367717, - "2024-04-01": 138.343871377478, - "2024-03-01": 137.807346993348, - "2024-02-01": 136.922258247819, - "2024-01-01": 136.079967911221, - "2023-12-01": 135.342688103754, - "2023-11-01": 135.477260420497, - "2023-10-01": 135.750817261089, - "2023-09-01": 135.802881304944, - "2023-08-01": 135.466229902731, - "2023-07-01": 134.877200254036, - "2023-06-01": 134.620409800448, - "2023-05-01": 134.187131062607, - "2023-04-01": 133.850038439683, - "2023-03-01": 133.176294414547, - "2023-02-01": 132.736838586757, - "2023-01-01": 132, - "2022-01-01": 131, - "2021-01-01": 132, - "2015-01-01": 132 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[17]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[17]", - "description": null, - "label": "bracket 18" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[17].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[17].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 20425.1386920954, - "2034-02-01": 19958.9516790579, - "2033-02-01": 19518.3793370664, - "2032-02-01": 19093.1757977025, - "2031-02-01": 18673.0951925478, - "2030-02-01": 18263.2604558115, - "2029-02-01": 17863.6715874936, - "2028-02-01": 17474.3285875941, - "2027-02-01": 17084.9855876946, - "2026-02-01": 16695.6425877951, - "2025-02-01": 16301.1766536864, - "2024-12-01": 16168.2365109576, - "2024-11-01": 16162.4988246433, - "2024-10-01": 16171.259042141, - "2024-09-01": 16152.6627909616, - "2024-08-01": 16126.7919732051, - "2024-07-01": 16113.6772616296, - "2024-06-01": 16094.978551766, - "2024-05-01": 16089.5482415042, - "2024-04-01": 16062.8577542742, - "2024-03-01": 16000.5628742903, - "2024-02-01": 15897.7968140537, - "2024-01-01": 15800, - "2023-01-01": 15400, - "2022-01-01": 15000, - "2021-01-01": 14600, - "2015-01-01": 14600 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[17].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[17].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 185.243507036133, - "2034-02-01": 181.015476150684, - "2033-02-01": 177.019754654544, - "2032-02-01": 173.163418791991, - "2031-02-01": 169.3535448073, - "2030-02-01": 165.636594578333, - "2029-02-01": 162.012568105091, - "2028-02-01": 158.481465387572, - "2027-02-01": 154.950362670054, - "2026-02-01": 151.419259952535, - "2025-02-01": 147.841695357155, - "2024-12-01": 146.636009626634, - "2024-11-01": 146.583972323428, - "2024-10-01": 146.663422134572, - "2024-09-01": 146.494765517933, - "2024-08-01": 146.260133034729, - "2024-07-01": 146.141190627403, - "2024-06-01": 145.971604773206, - "2024-05-01": 145.922355182672, - "2024-04-01": 145.680288799011, - "2024-03-01": 145.115312364208, - "2024-02-01": 144.183287094294, - "2024-01-01": 143.296329845907, - "2023-12-01": 142.519951866832, - "2023-11-01": 142.661660594311, - "2023-10-01": 142.949724237056, - "2023-09-01": 143.004549252933, - "2023-08-01": 142.650045124845, - "2023-07-01": 142.029779055387, - "2023-06-01": 141.759370926229, - "2023-05-01": 141.303115285624, - "2023-04-01": 140.948146538757, - "2023-03-01": 140.238673663803, - "2023-02-01": 139.775913360297, - "2023-01-01": 139, - "2022-01-01": 138, - "2021-01-01": 139, - "2015-01-01": 139 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[18]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[18]", - "description": null, - "label": "bracket 19" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[18].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[18].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 20554.4117217923, - "2034-02-01": 20085.2741580393, - "2033-02-01": 19641.9133835035, - "2032-02-01": 19214.0186824981, - "2031-02-01": 18791.279339336, - "2030-02-01": 18378.8507118609, - "2029-02-01": 17976.7328000726, - "2028-02-01": 17584.9256039713, - "2027-02-01": 17193.1184078699, - "2026-02-01": 16801.3112117685, - "2025-02-01": 16404.3486578237, - "2024-12-01": 16270.5671217864, - "2024-11-01": 16264.7931210018, - "2024-10-01": 16273.608782914, - "2024-09-01": 16254.8948339424, - "2024-08-01": 16228.860276833, - "2024-07-01": 16215.6625607538, - "2024-06-01": 16196.8455046252, - "2024-05-01": 16191.3808253112, - "2024-04-01": 16164.5214109469, - "2024-03-01": 16101.8322595706, - "2024-02-01": 15998.4157812313, - "2024-01-01": 15900, - "2023-01-01": 15500, - "2022-01-01": 15100, - "2021-01-01": 14700, - "2015-01-01": 14700 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[18].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[18].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 194.572316742989, - "2034-02-01": 190.131363438847, - "2033-02-01": 185.934418558011, - "2032-02-01": 181.883878731156, - "2031-02-01": 177.882140588963, - "2030-02-01": 173.978005816091, - "2029-02-01": 170.171474412541, - "2028-02-01": 166.462546378313, - "2027-02-01": 162.753618344085, - "2026-02-01": 159.044690309857, - "2025-02-01": 155.286960590968, - "2024-12-01": 154.020556874018, - "2024-11-01": 153.965898987198, - "2024-10-01": 154.049349867968, - "2024-09-01": 153.872199752649, - "2024-08-01": 153.625751245111, - "2024-07-01": 153.50081893238, - "2024-06-01": 153.322692783367, - "2024-05-01": 153.270962997627, - "2024-04-01": 153.016706220543, - "2024-03-01": 152.423277735067, - "2024-02-01": 151.444315940769, - "2024-01-01": 150.512691780593, - "2023-12-01": 149.697215629909, - "2023-11-01": 149.846060768125, - "2023-10-01": 150.148631213023, - "2023-09-01": 150.206217200923, - "2023-08-01": 149.83386034696, - "2023-07-01": 149.182357856737, - "2023-06-01": 148.898332052011, - "2023-05-01": 148.419099508641, - "2023-04-01": 148.046254637831, - "2023-03-01": 147.301052913059, - "2023-02-01": 146.814988133837, - "2023-01-01": 146, - "2022-01-01": 145, - "2021-01-01": 146, - "2015-01-01": 146 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[19]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[19]", - "description": null, - "label": "bracket 20" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[19].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[19].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 20683.6847514891, - "2034-02-01": 20211.5966370207, - "2033-02-01": 19765.4474299406, - "2032-02-01": 19334.8615672936, - "2031-02-01": 18909.4634861243, - "2030-02-01": 18494.4409679103, - "2029-02-01": 18089.7940126517, - "2028-02-01": 17695.5226203484, - "2027-02-01": 17301.2512280452, - "2026-02-01": 16906.9798357419, - "2025-02-01": 16507.5206619609, - "2024-12-01": 16372.8977326153, - "2024-11-01": 16367.0874173603, - "2024-10-01": 16375.9585236871, - "2024-09-01": 16357.1268769231, - "2024-08-01": 16330.9285804609, - "2024-07-01": 16317.647859878, - "2024-06-01": 16298.7124574845, - "2024-05-01": 16293.2134091182, - "2024-04-01": 16266.1850676195, - "2024-03-01": 16203.101644851, - "2024-02-01": 16099.0347484088, - "2024-01-01": 16000, - "2023-01-01": 15600, - "2022-01-01": 15200, - "2021-01-01": 14800, - "2015-01-01": 14800 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[19].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[19].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 203.901126449845, - "2034-02-01": 199.247250727011, - "2033-02-01": 194.849082461477, - "2032-02-01": 190.604338670321, - "2031-02-01": 186.410736370625, - "2030-02-01": 182.319417053849, - "2029-02-01": 178.330380719992, - "2028-02-01": 174.443627369054, - "2027-02-01": 170.556874018117, - "2026-02-01": 166.670120667179, - "2025-02-01": 162.732225824782, - "2024-12-01": 161.405104121403, - "2024-11-01": 161.347825650968, - "2024-10-01": 161.435277601364, - "2024-09-01": 161.249633987365, - "2024-08-01": 160.991369455494, - "2024-07-01": 160.860447237357, - "2024-06-01": 160.673780793529, - "2024-05-01": 160.619570812581, - "2024-04-01": 160.353123642076, - "2024-03-01": 159.731243105926, - "2024-02-01": 158.705344787245, - "2024-01-01": 157.729053715279, - "2023-12-01": 156.874479392987, - "2023-11-01": 157.030460941939, - "2023-10-01": 157.34753818899, - "2023-09-01": 157.407885148912, - "2023-08-01": 157.017675569074, - "2023-07-01": 156.334936658087, - "2023-06-01": 156.037293177792, - "2023-05-01": 155.535083731658, - "2023-04-01": 155.144362736905, - "2023-03-01": 154.363432162316, - "2023-02-01": 153.854062907377, - "2023-01-01": 153, - "2022-01-01": 152, - "2021-01-01": 153, - "2015-01-01": 153 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[20]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[20]", - "description": null, - "label": "bracket 21" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[20].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[20].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 20812.9577811859, - "2034-02-01": 20337.919116002, - "2033-02-01": 19888.9814763778, - "2032-02-01": 19455.7044520892, - "2031-02-01": 19027.6476329126, - "2030-02-01": 18610.0312239598, - "2029-02-01": 18202.8552252308, - "2028-02-01": 17806.1196367256, - "2027-02-01": 17409.3840482204, - "2026-02-01": 17012.6484597153, - "2025-02-01": 16610.6926660982, - "2024-12-01": 16475.2283434441, - "2024-11-01": 16469.3817137188, - "2024-10-01": 16478.3082644601, - "2024-09-01": 16459.3589199039, - "2024-08-01": 16432.9968840888, - "2024-07-01": 16419.6331590023, - "2024-06-01": 16400.5794103438, - "2024-05-01": 16395.0459929252, - "2024-04-01": 16367.8487242921, - "2024-03-01": 16304.3710301313, - "2024-02-01": 16199.6537155864, - "2024-01-01": 16100, - "2023-01-01": 15700, - "2022-01-01": 15300, - "2021-01-01": 14900, - "2015-01-01": 14900 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[20].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[20].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 213.2299361567, - "2034-02-01": 208.363138015175, - "2033-02-01": 203.763746364943, - "2032-02-01": 199.324798609486, - "2031-02-01": 194.939332152288, - "2030-02-01": 190.660828291607, - "2029-02-01": 186.489287027443, - "2028-02-01": 182.424708359795, - "2027-02-01": 178.360129692148, - "2026-02-01": 174.295551024501, - "2025-02-01": 170.177491058595, - "2024-12-01": 168.789651368787, - "2024-11-01": 168.729752314737, - "2024-10-01": 168.82120533476, - "2024-09-01": 168.627068222081, - "2024-08-01": 168.356987665876, - "2024-07-01": 168.220075542334, - "2024-06-01": 168.02486880369, - "2024-05-01": 167.968178627536, - "2024-04-01": 167.689541063609, - "2024-03-01": 167.039208476786, - "2024-02-01": 165.96637363372, - "2024-01-01": 164.945415649965, - "2023-12-01": 164.051743156065, - "2023-11-01": 164.214861115754, - "2023-10-01": 164.546445164956, - "2023-09-01": 164.609553096901, - "2023-08-01": 164.201490791189, - "2023-07-01": 163.487515459438, - "2023-06-01": 163.176254303573, - "2023-05-01": 162.651067954675, - "2023-04-01": 162.24247083598, - "2023-03-01": 161.425811411572, - "2023-02-01": 160.893137680917, - "2023-01-01": 160, - "2022-01-01": 159, - "2021-01-01": 160, - "2015-01-01": 160 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[21]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[21]", - "description": null, - "label": "bracket 22" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[21].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[21].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 20942.2308108827, - "2034-02-01": 20464.2415949834, - "2033-02-01": 20012.5155228149, - "2032-02-01": 19576.5473368848, - "2031-02-01": 19145.8317797009, - "2030-02-01": 18725.6214800092, - "2029-02-01": 18315.9164378098, - "2028-02-01": 17916.7166531028, - "2027-02-01": 17517.5168683957, - "2026-02-01": 17118.3170836886, - "2025-02-01": 16713.8646702354, - "2024-12-01": 16577.558954273, - "2024-11-01": 16571.6760100773, - "2024-10-01": 16580.6580052332, - "2024-09-01": 16561.5909628847, - "2024-08-01": 16535.0651877166, - "2024-07-01": 16521.6184581265, - "2024-06-01": 16502.4463632031, - "2024-05-01": 16496.8785767322, - "2024-04-01": 16469.5123809647, - "2024-03-01": 16405.6404154116, - "2024-02-01": 16300.2726827639, - "2024-01-01": 16200, - "2023-01-01": 15800, - "2022-01-01": 15400, - "2021-01-01": 15000, - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[21].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[21].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 222.558745863556, - "2034-02-01": 217.479025303339, - "2033-02-01": 212.678410268409, - "2032-02-01": 208.045258548651, - "2031-02-01": 203.467927933951, - "2030-02-01": 199.002239529365, - "2029-02-01": 194.648193334893, - "2028-02-01": 190.405789350536, - "2027-02-01": 186.16338536618, - "2026-02-01": 181.920981381823, - "2025-02-01": 177.622756292409, - "2024-12-01": 176.174198616171, - "2024-11-01": 176.111678978507, - "2024-10-01": 176.207133068155, - "2024-09-01": 176.004502456797, - "2024-08-01": 175.722605876258, - "2024-07-01": 175.579703847311, - "2024-06-01": 175.375956813852, - "2024-05-01": 175.316786442491, - "2024-04-01": 175.025958485142, - "2024-03-01": 174.347173847645, - "2024-02-01": 173.227402480195, - "2024-01-01": 172.161777584651, - "2023-12-01": 171.229006919143, - "2023-11-01": 171.399261289568, - "2023-10-01": 171.745352140923, - "2023-09-01": 171.811221044891, - "2023-08-01": 171.385306013303, - "2023-07-01": 170.640094260788, - "2023-06-01": 170.315215429355, - "2023-05-01": 169.767052177692, - "2023-04-01": 169.340578935054, - "2023-03-01": 168.488190660828, - "2023-02-01": 167.932212454457, - "2023-01-01": 167, - "2022-01-01": 166, - "2021-01-01": 167, - "2015-01-01": 167 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[22]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[22]", - "description": null, - "label": "bracket 23" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[22].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[22].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 21071.5038405795, - "2034-02-01": 20590.5640739648, - "2033-02-01": 20136.049569252, - "2032-02-01": 19697.3902216804, - "2031-02-01": 19264.0159264891, - "2030-02-01": 18841.2117360587, - "2029-02-01": 18428.9776503889, - "2028-02-01": 18027.31366948, - "2027-02-01": 17625.649688571, - "2026-02-01": 17223.985707662, - "2025-02-01": 16817.0366743727, - "2024-12-01": 16679.8895651018, - "2024-11-01": 16673.9703064358, - "2024-10-01": 16683.0077460062, - "2024-09-01": 16663.8230058654, - "2024-08-01": 16637.1334913445, - "2024-07-01": 16623.6037572507, - "2024-06-01": 16604.3133160623, - "2024-05-01": 16598.7111605391, - "2024-04-01": 16571.1760376374, - "2024-03-01": 16506.9098006919, - "2024-02-01": 16400.8916499415, - "2024-01-01": 16300, - "2023-01-01": 15900, - "2022-01-01": 15500, - "2021-01-01": 15100, - "2015-01-01": 15100 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[22].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[22].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 231.887555570411, - "2034-02-01": 226.594912591503, - "2033-02-01": 221.593074171876, - "2032-02-01": 216.765718487816, - "2031-02-01": 211.996523715613, - "2030-02-01": 207.343650767122, - "2029-02-01": 202.807099642344, - "2028-02-01": 198.386870341278, - "2027-02-01": 193.966641040211, - "2026-02-01": 189.546411739145, - "2025-02-01": 185.068021526223, - "2024-12-01": 183.558745863556, - "2024-11-01": 183.493605642277, - "2024-10-01": 183.593060801551, - "2024-09-01": 183.381936691513, - "2024-08-01": 183.08822408664, - "2024-07-01": 182.939332152288, - "2024-06-01": 182.727044824013, - "2024-05-01": 182.665394257446, - "2024-04-01": 182.362375906675, - "2024-03-01": 181.655139218505, - "2024-02-01": 180.48843132667, - "2024-01-01": 179.378139519337, - "2023-12-01": 178.406270682221, - "2023-11-01": 178.583661463382, - "2023-10-01": 178.94425911689, - "2023-09-01": 179.01288899288, - "2023-08-01": 178.569121235418, - "2023-07-01": 177.792673062139, - "2023-06-01": 177.454176555136, - "2023-05-01": 176.883036400709, - "2023-04-01": 176.438687034128, - "2023-03-01": 175.550569910085, - "2023-02-01": 174.971287227997, - "2023-01-01": 174, - "2022-01-01": 173, - "2021-01-01": 174, - "2015-01-01": 174 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[23]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[23]", - "description": null, - "label": "bracket 24" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[23].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[23].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 21200.7768702763, - "2034-02-01": 20716.8865529462, - "2033-02-01": 20259.5836156892, - "2032-02-01": 19818.233106476, - "2031-02-01": 19382.2000732774, - "2030-02-01": 18956.8019921081, - "2029-02-01": 18542.038862968, - "2028-02-01": 18137.9106858571, - "2027-02-01": 17733.7825087463, - "2026-02-01": 17329.6543316354, - "2025-02-01": 16920.2086785099, - "2024-12-01": 16782.2201759306, - "2024-11-01": 16776.2646027943, - "2024-10-01": 16785.3574867793, - "2024-09-01": 16766.0550488462, - "2024-08-01": 16739.2017949724, - "2024-07-01": 16725.589056375, - "2024-06-01": 16706.1802689216, - "2024-05-01": 16700.5437443461, - "2024-04-01": 16672.83969431, - "2024-03-01": 16608.1791859722, - "2024-02-01": 16501.510617119, - "2024-01-01": 16400, - "2023-01-01": 16000, - "2022-01-01": 15600, - "2021-01-01": 15200, - "2015-01-01": 15200 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[23].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[23].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 241.216365277267, - "2034-02-01": 235.710799879667, - "2033-02-01": 230.507738075342, - "2032-02-01": 225.486178426981, - "2031-02-01": 220.525119497276, - "2030-02-01": 215.68506200488, - "2029-02-01": 210.966005949794, - "2028-02-01": 206.367951332019, - "2027-02-01": 201.769896714243, - "2026-02-01": 197.171842096467, - "2025-02-01": 192.513286760036, - "2024-12-01": 190.94329311094, - "2024-11-01": 190.875532306047, - "2024-10-01": 190.978988534947, - "2024-09-01": 190.759370926229, - "2024-08-01": 190.453842297022, - "2024-07-01": 190.298960457265, - "2024-06-01": 190.078132834175, - "2024-05-01": 190.0140020724, - "2024-04-01": 189.698793328208, - "2024-03-01": 188.963104589364, - "2024-02-01": 187.749460173146, - "2024-01-01": 186.594501454023, - "2023-12-01": 185.583534445299, - "2023-11-01": 185.768061637196, - "2023-10-01": 186.143166092857, - "2023-09-01": 186.21455694087, - "2023-08-01": 185.752936457533, - "2023-07-01": 184.945251863489, - "2023-06-01": 184.593137680917, - "2023-05-01": 183.999020623726, - "2023-04-01": 183.536795133202, - "2023-03-01": 182.612949159341, - "2023-02-01": 182.010362001538, - "2023-01-01": 181, - "2022-01-01": 180, - "2021-01-01": 181, - "2015-01-01": 181 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[24]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[24]", - "description": null, - "label": "bracket 25" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[24].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[24].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 21330.0498999731, - "2034-02-01": 20843.2090319276, - "2033-02-01": 20383.1176621263, - "2032-02-01": 19939.0759912716, - "2031-02-01": 19500.3842200657, - "2030-02-01": 19072.3922481575, - "2029-02-01": 18655.1000755471, - "2028-02-01": 18248.5077022343, - "2027-02-01": 17841.9153289216, - "2026-02-01": 17435.3229556088, - "2025-02-01": 17023.3806826472, - "2024-12-01": 16884.5507867595, - "2024-11-01": 16878.5588991528, - "2024-10-01": 16887.7072275523, - "2024-09-01": 16868.287091827, - "2024-08-01": 16841.2700986003, - "2024-07-01": 16827.5743554992, - "2024-06-01": 16808.0472217809, - "2024-05-01": 16802.3763281531, - "2024-04-01": 16774.5033509826, - "2024-03-01": 16709.4485712526, - "2024-02-01": 16602.1295842966, - "2024-01-01": 16500, - "2023-01-01": 16100, - "2022-01-01": 15700, - "2021-01-01": 15300, - "2015-01-01": 15300 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[24].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[24].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 250.545174984123, - "2034-02-01": 244.826687167831, - "2033-02-01": 239.422401978808, - "2032-02-01": 234.206638366146, - "2031-02-01": 229.053715278938, - "2030-02-01": 224.026473242638, - "2029-02-01": 219.124912257245, - "2028-02-01": 214.34903232276, - "2027-02-01": 209.573152388274, - "2026-02-01": 204.797272453789, - "2025-02-01": 199.95855199385, - "2024-12-01": 198.327840358325, - "2024-11-01": 198.257458969816, - "2024-10-01": 198.364916268342, - "2024-09-01": 198.136805160945, - "2024-08-01": 197.819460507404, - "2024-07-01": 197.658588762242, - "2024-06-01": 197.429220844336, - "2024-05-01": 197.362609887355, - "2024-04-01": 197.035210749741, - "2024-03-01": 196.271069960223, - "2024-02-01": 195.010489019621, - "2024-01-01": 193.810863388709, - "2023-12-01": 192.760798208376, - "2023-11-01": 192.95246181101, - "2023-10-01": 193.342073068824, - "2023-09-01": 193.416224888859, - "2023-08-01": 192.936751679647, - "2023-07-01": 192.097830664839, - "2023-06-01": 191.732098806699, - "2023-05-01": 191.115004846743, - "2023-04-01": 190.634903232276, - "2023-03-01": 189.675328408597, - "2023-02-01": 189.049436775078, - "2023-01-01": 188, - "2022-01-01": 187, - "2021-01-01": 188, - "2015-01-01": 188 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[25]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[25]", - "description": null, - "label": "bracket 26" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[25].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[25].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 21459.3229296699, - "2034-02-01": 20969.5315109089, - "2033-02-01": 20506.6517085634, - "2032-02-01": 20059.9188760671, - "2031-02-01": 19618.568366854, - "2030-02-01": 19187.982504207, - "2029-02-01": 18768.1612881261, - "2028-02-01": 18359.1047186115, - "2027-02-01": 17950.0481490968, - "2026-02-01": 17540.9915795822, - "2025-02-01": 17126.5526867845, - "2024-12-01": 16986.8813975883, - "2024-11-01": 16980.8531955113, - "2024-10-01": 16990.0569683254, - "2024-09-01": 16970.5191348077, - "2024-08-01": 16943.3384022282, - "2024-07-01": 16929.5596546235, - "2024-06-01": 16909.9141746402, - "2024-05-01": 16904.2089119601, - "2024-04-01": 16876.1670076552, - "2024-03-01": 16810.7179565329, - "2024-02-01": 16702.7485514741, - "2024-01-01": 16600, - "2023-01-01": 16200, - "2022-01-01": 15800, - "2021-01-01": 15400, - "2015-01-01": 15400 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[25].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[25].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 259.873984690978, - "2034-02-01": 253.942574455995, - "2033-02-01": 248.337065882274, - "2032-02-01": 242.927098305311, - "2031-02-01": 237.582311060601, - "2030-02-01": 232.367884480396, - "2029-02-01": 227.283818564696, - "2028-02-01": 222.330113313501, - "2027-02-01": 217.376408062306, - "2026-02-01": 212.422702811111, - "2025-02-01": 207.403817227663, - "2024-12-01": 205.712387605709, - "2024-11-01": 205.639385633586, - "2024-10-01": 205.750844001738, - "2024-09-01": 205.514239395661, - "2024-08-01": 205.185078717786, - "2024-07-01": 205.018217067219, - "2024-06-01": 204.780308854497, - "2024-05-01": 204.71121770231, - "2024-04-01": 204.371628171274, - "2024-03-01": 203.579035331083, - "2024-02-01": 202.271517866096, - "2024-01-01": 201.027225323395, - "2023-12-01": 199.938061971454, - "2023-11-01": 200.136861984825, - "2023-10-01": 200.540980044791, - "2023-09-01": 200.617892836849, - "2023-08-01": 200.120566901762, - "2023-07-01": 199.25040946619, - "2023-06-01": 198.87105993248, - "2023-05-01": 198.23098906976, - "2023-04-01": 197.73301133135, - "2023-03-01": 196.737707657853, - "2023-02-01": 196.088511548618, - "2023-01-01": 195, - "2022-01-01": 194, - "2021-01-01": 195, - "2015-01-01": 195 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[26]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[26]", - "description": null, - "label": "bracket 27" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[26].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[26].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 21588.5959593667, - "2034-02-01": 21095.8539898903, - "2033-02-01": 20630.1857550005, - "2032-02-01": 20180.7617608627, - "2031-02-01": 19736.7525136422, - "2030-02-01": 19303.5727602564, - "2029-02-01": 18881.2225007052, - "2028-02-01": 18469.7017349887, - "2027-02-01": 18058.1809692721, - "2026-02-01": 17646.6602035556, - "2025-02-01": 17229.7246909217, - "2024-12-01": 17089.2120084172, - "2024-11-01": 17083.1474918698, - "2024-10-01": 17092.4067090984, - "2024-09-01": 17072.7511777885, - "2024-08-01": 17045.406705856, - "2024-07-01": 17031.5449537477, - "2024-06-01": 17011.7811274995, - "2024-05-01": 17006.0414957671, - "2024-04-01": 16977.8306643278, - "2024-03-01": 16911.9873418132, - "2024-02-01": 16803.3675186517, - "2024-01-01": 16700, - "2023-01-01": 16300, - "2022-01-01": 15900, - "2021-01-01": 15500, - "2015-01-01": 15500 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[26].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[26].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 269.202794397834, - "2034-02-01": 263.058461744159, - "2033-02-01": 257.251729785741, - "2032-02-01": 251.647558244476, - "2031-02-01": 246.110906842264, - "2030-02-01": 240.709295718154, - "2029-02-01": 235.442724872146, - "2028-02-01": 230.311194304242, - "2027-02-01": 225.179663736337, - "2026-02-01": 220.048133168433, - "2025-02-01": 214.849082461477, - "2024-12-01": 213.096934853094, - "2024-11-01": 213.021312297356, - "2024-10-01": 213.136771735134, - "2024-09-01": 212.891673630377, - "2024-08-01": 212.550696928168, - "2024-07-01": 212.377845372196, - "2024-06-01": 212.131396864659, - "2024-05-01": 212.059825517264, - "2024-04-01": 211.708045592807, - "2024-03-01": 210.887000701942, - "2024-02-01": 209.532546712571, - "2024-01-01": 208.243587258081, - "2023-12-01": 207.115325734532, - "2023-11-01": 207.321262158639, - "2023-10-01": 207.739887020757, - "2023-09-01": 207.819560784838, - "2023-08-01": 207.304382123876, - "2023-07-01": 206.40298826754, - "2023-06-01": 206.010021058261, - "2023-05-01": 205.346973292777, - "2023-04-01": 204.831119430424, - "2023-03-01": 203.80008690711, - "2023-02-01": 203.127586322158, - "2023-01-01": 202, - "2022-01-01": 201, - "2021-01-01": 202, - "2015-01-01": 202 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[27]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[27]", - "description": null, - "label": "bracket 28" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[27].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[27].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 21717.8689890635, - "2034-02-01": 21222.1764688717, - "2033-02-01": 20753.7198014377, - "2032-02-01": 20301.6046456583, - "2031-02-01": 19854.9366604305, - "2030-02-01": 19419.1630163058, - "2029-02-01": 18994.2837132843, - "2028-02-01": 18580.2987513658, - "2027-02-01": 18166.3137894474, - "2026-02-01": 17752.328827529, - "2025-02-01": 17332.896695059, - "2024-12-01": 17191.542619246, - "2024-11-01": 17185.4417882283, - "2024-10-01": 17194.7564498714, - "2024-09-01": 17174.9832207693, - "2024-08-01": 17147.4750094839, - "2024-07-01": 17133.5302528719, - "2024-06-01": 17113.6480803587, - "2024-05-01": 17107.8740795741, - "2024-04-01": 17079.4943210005, - "2024-03-01": 17013.2567270935, - "2024-02-01": 16903.9864858293, - "2024-01-01": 16800, - "2023-01-01": 16400, - "2022-01-01": 16000, - "2021-01-01": 15600, - "2015-01-01": 15600 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[27].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[27].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 278.53160410469, - "2034-02-01": 272.174349032323, - "2033-02-01": 266.166393689207, - "2032-02-01": 260.368018183641, - "2031-02-01": 254.639502623926, - "2030-02-01": 249.050706955911, - "2029-02-01": 243.601631179597, - "2028-02-01": 238.292275294983, - "2027-02-01": 232.982919410369, - "2026-02-01": 227.673563525755, - "2025-02-01": 222.29434769529, - "2024-12-01": 220.481482100478, - "2024-11-01": 220.403238961126, - "2024-10-01": 220.52269946853, - "2024-09-01": 220.269107865093, - "2024-08-01": 219.91631513855, - "2024-07-01": 219.737473677174, - "2024-06-01": 219.48248487482, - "2024-05-01": 219.408433332219, - "2024-04-01": 219.04446301434, - "2024-03-01": 218.194966072801, - "2024-02-01": 216.793575559047, - "2024-01-01": 215.459949192767, - "2023-12-01": 214.29258949761, - "2023-11-01": 214.505662332453, - "2023-10-01": 214.938793996724, - "2023-09-01": 215.021228732828, - "2023-08-01": 214.488197345991, - "2023-07-01": 213.555567068891, - "2023-06-01": 213.148982184043, - "2023-05-01": 212.462957515794, - "2023-04-01": 211.929227529498, - "2023-03-01": 210.862466156366, - "2023-02-01": 210.166661095698, - "2023-01-01": 209, - "2022-01-01": "Infinity", - "2021-01-01": 209, - "2015-01-01": 209 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[28]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[28]", - "description": null, - "label": "bracket 29" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[28].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[28].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 21847.1420187603, - "2034-02-01": 21348.4989478531, - "2033-02-01": 20877.2538478748, - "2032-02-01": 20422.4475304539, - "2031-02-01": 19973.1208072188, - "2030-02-01": 19534.7532723553, - "2029-02-01": 19107.3449258634, - "2028-02-01": 18690.895767743, - "2027-02-01": 18274.4466096227, - "2026-02-01": 17857.9974515024, - "2025-02-01": 17436.0686991962, - "2024-12-01": 17293.8732300749, - "2024-11-01": 17287.7360845868, - "2024-10-01": 17297.1061906445, - "2024-09-01": 17277.2152637501, - "2024-08-01": 17249.5433131118, - "2024-07-01": 17235.5155519962, - "2024-06-01": 17215.515033218, - "2024-05-01": 17209.7066633811, - "2024-04-01": 17181.1579776731, - "2024-03-01": 17114.5261123738, - "2024-02-01": 17004.6054530068, - "2024-01-01": 16900, - "2023-01-01": 16500, - "2022-01-01": "Infinity", - "2021-01-01": 15700, - "2015-01-01": 15700 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[28].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[28].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 279.229744145102, - "2034-02-01": 272.856554599779, - "2033-02-01": 266.833540304199, - "2032-02-01": 261.020631158464, - "2031-02-01": 255.277757062678, - "2030-02-01": 249.67495306679, - "2029-02-01": 244.212219170798, - "2028-02-01": 238.889555374704, - "2027-02-01": 233.56689157861, - "2026-02-01": 228.244227782515, - "2025-02-01": 222.851528936472, - "2024-12-01": 221.034119390306, - "2024-11-01": 220.955680134364, - "2024-10-01": 221.075440069776, - "2024-09-01": 220.821212838462, - "2024-08-01": 220.467535836222, - "2024-07-01": 220.288246108353, - "2024-06-01": 220.032618176041, - "2024-05-01": 219.958381023095, - "2024-04-01": 219.593498412863, - "2024-03-01": 218.741872205488, - "2024-02-01": 217.336969103519, - "2024-01-01": 216, - "2023-01-01": "Infinity", - "2022-01-01": "Infinity", - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[29]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[29]", - "description": null, - "label": "bracket 30" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[29].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[29].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 21976.4150484571, - "2034-02-01": 21474.8214268345, - "2033-02-01": 21000.7878943119, - "2032-02-01": 20543.2904152495, - "2031-02-01": 20091.3049540071, - "2030-02-01": 19650.3435284047, - "2029-02-01": 19220.4061384424, - "2028-02-01": 18801.4927841202, - "2027-02-01": 18382.579429798, - "2026-02-01": 17963.6660754757, - "2025-02-01": 17539.2407033335, - "2024-12-01": 17396.2038409037, - "2024-11-01": 17390.0303809453, - "2024-10-01": 17399.4559314175, - "2024-09-01": 17379.4473067308, - "2024-08-01": 17351.6116167397, - "2024-07-01": 17337.5008511204, - "2024-06-01": 17317.3819860773, - "2024-05-01": 17311.5392471881, - "2024-04-01": 17282.8216343457, - "2024-03-01": 17215.7954976542, - "2024-02-01": 17105.2244201844, - "2024-01-01": 17000, - "2015-01-01": 17000 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.single[29].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.single[29].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": "Infinity", - "2034-02-01": "Infinity", - "2033-02-01": "Infinity", - "2032-02-01": "Infinity", - "2031-02-01": "Infinity", - "2030-02-01": "Infinity", - "2029-02-01": "Infinity", - "2028-02-01": "Infinity", - "2027-02-01": "Infinity", - "2026-02-01": "Infinity", - "2025-02-01": "Infinity", - "2024-12-01": "Infinity", - "2024-11-01": "Infinity", - "2024-10-01": "Infinity", - "2024-09-01": "Infinity", - "2024-08-01": "Infinity", - "2024-07-01": "Infinity", - "2024-06-01": "Infinity", - "2024-05-01": "Infinity", - "2024-04-01": "Infinity", - "2024-03-01": "Infinity", - "2024-02-01": "Infinity", - "2024-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint", - "description": null, - "label": "joint", - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents", - "description": "Arkansas reduces the tax liability of low-income joint filers with two or more dependents to the following amount, in lieu of a standard or itemized deduction.", - "label": "Arkansas low income tax table joint amount two or more dependents" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[0]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 0, - "2034-02-01": 0, - "2033-02-01": 0, - "2032-02-01": 0, - "2031-02-01": 0, - "2030-02-01": 0, - "2029-02-01": 0, - "2028-02-01": 0, - "2027-02-01": 0, - "2026-02-01": 0, - "2025-02-01": 0, - "2024-12-01": 0, - "2024-11-01": 0, - "2024-10-01": 0, - "2024-09-01": 0, - "2024-08-01": 0, - "2024-07-01": 0, - "2024-06-01": 0, - "2024-05-01": 0, - "2024-04-01": 0, - "2024-03-01": 0, - "2024-02-01": 0, - "2024-01-01": 0, - "2023-12-01": 0, - "2023-11-01": 0, - "2023-10-01": 0, - "2023-09-01": 0, - "2023-08-01": 0, - "2023-07-01": 0, - "2023-06-01": 0, - "2023-05-01": 0, - "2023-04-01": 0, - "2023-03-01": 0, - "2023-02-01": 0, - "2023-01-01": 0, - "2022-12-01": 0, - "2022-11-01": 0, - "2022-10-01": 0, - "2022-09-01": 0, - "2022-08-01": 0, - "2022-07-01": 0, - "2022-06-01": 0, - "2022-05-01": 0, - "2022-04-01": 0, - "2022-03-01": 0, - "2022-02-01": 0, - "2022-01-01": 0, - "2021-12-01": 0, - "2021-11-01": 0, - "2021-10-01": 0, - "2021-09-01": 0, - "2021-08-01": 0, - "2021-07-01": 0, - "2021-06-01": 0, - "2021-05-01": 0, - "2021-04-01": 0, - "2021-03-01": 0, - "2021-02-01": 0, - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[0].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 0, - "2034-02-01": 0, - "2033-02-01": 0, - "2032-02-01": 0, - "2031-02-01": 0, - "2030-02-01": 0, - "2029-02-01": 0, - "2028-02-01": 0, - "2027-02-01": 0, - "2026-02-01": 0, - "2025-02-01": 0, - "2024-12-01": 0, - "2024-11-01": 0, - "2024-10-01": 0, - "2024-09-01": 0, - "2024-08-01": 0, - "2024-07-01": 0, - "2024-06-01": 0, - "2024-05-01": 0, - "2024-04-01": 0, - "2024-03-01": 0, - "2024-02-01": 0, - "2024-01-01": 0, - "2023-12-01": 0, - "2023-11-01": 0, - "2023-10-01": 0, - "2023-09-01": 0, - "2023-08-01": 0, - "2023-07-01": 0, - "2023-06-01": 0, - "2023-05-01": 0, - "2023-04-01": 0, - "2023-03-01": 0, - "2023-02-01": 0, - "2023-01-01": 0, - "2022-12-01": 0, - "2022-11-01": 0, - "2022-10-01": 0, - "2022-09-01": 0, - "2022-08-01": 0, - "2022-07-01": 0, - "2022-06-01": 0, - "2022-05-01": 0, - "2022-04-01": 0, - "2022-03-01": 0, - "2022-02-01": 0, - "2022-01-01": 0, - "2021-12-01": 0, - "2021-11-01": 0, - "2021-10-01": 0, - "2021-09-01": 0, - "2021-08-01": 0, - "2021-07-01": 0, - "2021-06-01": 0, - "2021-05-01": 0, - "2021-04-01": 0, - "2021-03-01": 0, - "2021-02-01": 0, - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[1]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 37428.4202881164, - "2034-02-01": 36574.1473394787, - "2033-02-01": 35766.812464942, - "2032-02-01": 34987.6404348658, - "2031-02-01": 34217.8560196098, - "2030-02-01": 33466.8468339942, - "2029-02-01": 32734.612878019, - "2028-02-01": 32021.1541516843, - "2027-02-01": 31307.6954253495, - "2026-02-01": 30594.2366990146, - "2025-02-01": 29871.3903578597, - "2024-12-01": 29627.7817532756, - "2024-11-01": 29617.267624677, - "2024-10-01": 29633.3204460195, - "2024-09-01": 29599.2434042222, - "2024-08-01": 29551.8359493802, - "2024-07-01": 29527.8036554405, - "2024-06-01": 29493.5388613468, - "2024-05-01": 29483.5879896374, - "2024-04-01": 29434.6785164242, - "2024-03-01": 29320.5251202106, - "2024-02-01": 29132.2095669175, - "2024-01-01": 28953, - "2023-01-01": 28110, - "2022-01-01": 27291, - "2021-01-01": 26496, - "2015-01-01": 26496 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[1].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 139.614872072551, - "2034-02-01": 136.428277299889, - "2033-02-01": 133.416770152099, - "2032-02-01": 130.510315579232, - "2031-02-01": 127.638878531339, - "2030-02-01": 124.837476533395, - "2029-02-01": 122.106109585399, - "2028-02-01": 119.444777687352, - "2027-02-01": 116.783445789305, - "2026-02-01": 114.122113891258, - "2025-02-01": 111.425764468236, - "2024-12-01": 110.517059695153, - "2024-11-01": 110.477840067182, - "2024-10-01": 110.537720034888, - "2024-09-01": 110.410606419231, - "2024-08-01": 110.233767918111, - "2024-07-01": 110.144123054177, - "2024-06-01": 110.01630908802, - "2024-05-01": 109.979190511548, - "2024-04-01": 109.796749206432, - "2024-03-01": 109.370936102744, - "2024-02-01": 108.668484551759, - "2024-01-01": 108, - "2023-01-01": 105, - "2022-01-01": 102, - "2021-01-01": 100, - "2015-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[2]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 37489.1786120739, - "2034-02-01": 36633.5189045999, - "2033-02-01": 35824.8734667674, - "2032-02-01": 35044.4365907197, - "2031-02-01": 34273.4025686003, - "2030-02-01": 33521.1742543375, - "2029-02-01": 32787.7516479312, - "2028-02-01": 32073.1347493815, - "2027-02-01": 31358.5178508318, - "2026-02-01": 30643.9009522821, - "2025-02-01": 29919.8811998042, - "2024-12-01": 29675.8771403652, - "2024-11-01": 29665.3459439655, - "2024-10-01": 29681.4248241828, - "2024-09-01": 29647.2924644232, - "2024-08-01": 29599.8080520853, - "2024-07-01": 29575.7367460289, - "2024-06-01": 29541.4163291907, - "2024-05-01": 29531.4493040267, - "2024-04-01": 29482.4604350603, - "2024-03-01": 29368.1217312924, - "2024-02-01": 29179.500481491, - "2024-01-01": 29000, - "2023-01-01": 28200, - "2022-01-01": 27300, - "2021-01-01": 26500, - "2015-01-01": 26500 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[2].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 152.542175042232, - "2034-02-01": 149.060525198027, - "2033-02-01": 145.770174795812, - "2032-02-01": 142.594604058791, - "2031-02-01": 139.457293210167, - "2030-02-01": 136.396502138339, - "2029-02-01": 133.412230843306, - "2028-02-01": 130.50447932507, - "2027-02-01": 127.596727806833, - "2026-02-01": 124.688976288596, - "2025-02-01": 121.742964881962, - "2024-12-01": 120.750120778038, - "2024-11-01": 120.707269703032, - "2024-10-01": 120.772694112192, - "2024-09-01": 120.633810717308, - "2024-08-01": 120.440598280899, - "2024-07-01": 120.3426529666, - "2024-06-01": 120.203004373948, - "2024-05-01": 120.162448892247, - "2024-04-01": 119.963114873694, - "2024-03-01": 119.497874630776, - "2024-02-01": 118.730381269515, - "2024-01-01": 118, - "2023-01-01": 115, - "2022-01-01": 112, - "2021-01-01": 110, - "2015-01-01": 110 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[3]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 37618.4516417707, - "2034-02-01": 36759.8413835813, - "2033-02-01": 35948.4075132045, - "2032-02-01": 35165.2794755153, - "2031-02-01": 34391.5867153886, - "2030-02-01": 33636.7645103869, - "2029-02-01": 32900.8128605103, - "2028-02-01": 32183.7317657587, - "2027-02-01": 31466.6506710071, - "2026-02-01": 30749.5695762555, - "2025-02-01": 30023.0532039414, - "2024-12-01": 29778.207751194, - "2024-11-01": 29767.640240324, - "2024-10-01": 29783.7745649559, - "2024-09-01": 29749.5245074039, - "2024-08-01": 29701.8763557132, - "2024-07-01": 29677.7220451532, - "2024-06-01": 29643.28328205, - "2024-05-01": 29633.2818878337, - "2024-04-01": 29584.124091733, - "2024-03-01": 29469.3911165727, - "2024-02-01": 29280.1194486685, - "2024-01-01": 29100, - "2023-01-01": 28300, - "2022-01-01": 27400, - "2021-01-01": 26600, - "2015-01-01": 26600 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[3].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 166.762208308881, - "2034-02-01": 162.955997885979, - "2033-02-01": 159.358919903896, - "2032-02-01": 155.887321386305, - "2031-02-01": 152.457549356877, - "2030-02-01": 149.111430303777, - "2029-02-01": 145.848964227004, - "2028-02-01": 142.670151126559, - "2027-02-01": 139.491338026114, - "2026-02-01": 136.312524925669, - "2025-02-01": 133.09188533706, - "2024-12-01": 132.006487969211, - "2024-11-01": 131.959642302467, - "2024-10-01": 132.031165597227, - "2024-09-01": 131.879335445193, - "2024-08-01": 131.668111679966, - "2024-07-01": 131.561035870267, - "2024-06-01": 131.408369188469, - "2024-05-01": 131.364033111015, - "2024-04-01": 131.146117107682, - "2024-03-01": 130.637507011611, - "2024-02-01": 129.798467659046, - "2024-01-01": 129, - "2023-01-01": 126, - "2022-01-01": 123, - "2021-01-01": 120, - "2015-01-01": 120 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[4]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 37747.7246714675, - "2034-02-01": 36886.1638625627, - "2033-02-01": 36071.9415596417, - "2032-02-01": 35286.1223603109, - "2031-02-01": 34509.7708621769, - "2030-02-01": 33752.3547664364, - "2029-02-01": 33013.8740730894, - "2028-02-01": 32294.3287821359, - "2027-02-01": 31574.7834911824, - "2026-02-01": 30855.2382002289, - "2025-02-01": 30126.2252080787, - "2024-12-01": 29880.5383620229, - "2024-11-01": 29869.9345366825, - "2024-10-01": 29886.1243057289, - "2024-09-01": 29851.7565503847, - "2024-08-01": 29803.9446593411, - "2024-07-01": 29779.7073442774, - "2024-06-01": 29745.1502349092, - "2024-05-01": 29735.1144716407, - "2024-04-01": 29685.7877484056, - "2024-03-01": 29570.660501853, - "2024-02-01": 29380.7384158461, - "2024-01-01": 29200, - "2023-01-01": 28400, - "2022-01-01": 27500, - "2021-01-01": 26700, - "2015-01-01": 26700 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[4].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 179.689511278561, - "2034-02-01": 175.588245784117, - "2033-02-01": 171.712324547609, - "2032-02-01": 167.971609865863, - "2031-02-01": 164.275964035705, - "2030-02-01": 160.670455908721, - "2029-02-01": 157.155085484912, - "2028-02-01": 153.729852764277, - "2027-02-01": 150.304620043642, - "2026-02-01": 146.879387323007, - "2025-02-01": 143.409085750785, - "2024-12-01": 142.239549052095, - "2024-11-01": 142.189071938317, - "2024-10-01": 142.266139674532, - "2024-09-01": 142.10253974327, - "2024-08-01": 141.874942042754, - "2024-07-01": 141.75956578269, - "2024-06-01": 141.595064474397, - "2024-05-01": 141.547291491714, - "2024-04-01": 141.312482774944, - "2024-03-01": 140.764445539643, - "2024-02-01": 139.860364376802, - "2024-01-01": 139, - "2023-01-01": 136, - "2022-01-01": 133, - "2021-01-01": 131, - "2015-01-01": 131 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[5]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 37876.9977011643, - "2034-02-01": 37012.4863415441, - "2033-02-01": 36195.4756060788, - "2032-02-01": 35406.9652451065, - "2031-02-01": 34627.9550089651, - "2030-02-01": 33867.9450224858, - "2029-02-01": 33126.9352856684, - "2028-02-01": 32404.9257985131, - "2027-02-01": 31682.9163113577, - "2026-02-01": 30960.9068242023, - "2025-02-01": 30229.3972122159, - "2024-12-01": 29982.8689728517, - "2024-11-01": 29972.228833041, - "2024-10-01": 29988.474046502, - "2024-09-01": 29953.9885933655, - "2024-08-01": 29906.012962969, - "2024-07-01": 29881.6926434016, - "2024-06-01": 29847.0171877685, - "2024-05-01": 29836.9470554477, - "2024-04-01": 29787.4514050782, - "2024-03-01": 29671.9298871333, - "2024-02-01": 29481.3573830236, - "2024-01-01": 29300, - "2023-01-01": 28500, - "2022-01-01": 27600, - "2021-01-01": 26800, - "2015-01-01": 26800 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[5].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 193.90954454521, - "2034-02-01": 189.483718472069, - "2033-02-01": 185.301069655693, - "2032-02-01": 181.264327193378, - "2031-02-01": 177.276220182415, - "2030-02-01": 173.385384074159, - "2029-02-01": 169.59181886861, - "2028-02-01": 165.895524565767, - "2027-02-01": 162.199230262923, - "2026-02-01": 158.50293596008, - "2025-02-01": 154.758006205884, - "2024-12-01": 153.495916243268, - "2024-11-01": 153.441444537752, - "2024-10-01": 153.524611159566, - "2024-09-01": 153.348064471154, - "2024-08-01": 153.102455441821, - "2024-07-01": 152.977948686356, - "2024-06-01": 152.800429288917, - "2024-05-01": 152.748875710483, - "2024-04-01": 152.495485008933, - "2024-03-01": 151.904077920478, - "2024-02-01": 150.928450766333, - "2024-01-01": 150, - "2023-01-01": 147, - "2022-01-01": 143, - "2021-01-01": 141, - "2015-01-01": 141 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[6]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[6].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 38006.2707308611, - "2034-02-01": 37138.8088205255, - "2033-02-01": 36319.0096525159, - "2032-02-01": 35527.8081299021, - "2031-02-01": 34746.1391557534, - "2030-02-01": 33983.5352785352, - "2029-02-01": 33239.9964982475, - "2028-02-01": 32515.5228148902, - "2027-02-01": 31791.049131533, - "2026-02-01": 31066.5754481757, - "2025-02-01": 30332.5692163532, - "2024-12-01": 30085.1995836805, - "2024-11-01": 30074.5231293995, - "2024-10-01": 30090.823787275, - "2024-09-01": 30056.2206363463, - "2024-08-01": 30008.0812665969, - "2024-07-01": 29983.6779425259, - "2024-06-01": 29948.8841406278, - "2024-05-01": 29938.7796392547, - "2024-04-01": 29889.1150617508, - "2024-03-01": 29773.1992724137, - "2024-02-01": 29581.9763502012, - "2024-01-01": 29400, - "2023-01-01": 28600, - "2022-01-01": 27700, - "2021-01-01": 26900, - "2015-01-01": 26900 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[6].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[6].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 206.836847514891, - "2034-02-01": 202.115966370207, - "2033-02-01": 197.654474299406, - "2032-02-01": 193.348615672936, - "2031-02-01": 189.094634861243, - "2030-02-01": 184.944409679103, - "2029-02-01": 180.897940126517, - "2028-02-01": 176.955226203484, - "2027-02-01": 173.012512280452, - "2026-02-01": 169.069798357419, - "2025-02-01": 165.075206619609, - "2024-12-01": 163.728977326153, - "2024-11-01": 163.670874173603, - "2024-10-01": 163.759585236871, - "2024-09-01": 163.571268769231, - "2024-08-01": 163.309285804609, - "2024-07-01": 163.17647859878, - "2024-06-01": 162.987124574845, - "2024-05-01": 162.932134091182, - "2024-04-01": 162.661850676195, - "2024-03-01": 162.03101644851, - "2024-02-01": 160.990347484088, - "2024-01-01": 160, - "2023-01-01": 157, - "2022-01-01": 154, - "2021-01-01": 152, - "2015-01-01": 152 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[7]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[7].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 38135.543760558, - "2034-02-01": 37265.1312995068, - "2033-02-01": 36442.543698953, - "2032-02-01": 35648.6510146976, - "2031-02-01": 34864.3233025417, - "2030-02-01": 34099.1255345847, - "2029-02-01": 33353.0577108266, - "2028-02-01": 32626.1198312674, - "2027-02-01": 31899.1819517082, - "2026-02-01": 31172.2440721491, - "2025-02-01": 30435.7412204904, - "2024-12-01": 30187.5301945094, - "2024-11-01": 30176.817425758, - "2024-10-01": 30193.1735280481, - "2024-09-01": 30158.452679327, - "2024-08-01": 30110.1495702247, - "2024-07-01": 30085.6632416501, - "2024-06-01": 30050.7510934871, - "2024-05-01": 30040.6122230616, - "2024-04-01": 29990.7787184234, - "2024-03-01": 29874.468657694, - "2024-02-01": 29682.5953173787, - "2024-01-01": 29500, - "2023-01-01": 28700, - "2022-01-01": 27800, - "2021-01-01": 27000, - "2015-01-01": 27000 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[7].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[7].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 219.764150484571, - "2034-02-01": 214.748214268345, - "2033-02-01": 210.007878943119, - "2032-02-01": 205.432904152495, - "2031-02-01": 200.913049540071, - "2030-02-01": 196.503435284047, - "2029-02-01": 192.204061384424, - "2028-02-01": 188.014927841202, - "2027-02-01": 183.82579429798, - "2026-02-01": 179.636660754757, - "2025-02-01": 175.392407033335, - "2024-12-01": 173.962038409037, - "2024-11-01": 173.900303809453, - "2024-10-01": 173.994559314175, - "2024-09-01": 173.794473067308, - "2024-08-01": 173.516116167397, - "2024-07-01": 173.375008511204, - "2024-06-01": 173.173819860773, - "2024-05-01": 173.115392471881, - "2024-04-01": 172.828216343457, - "2024-03-01": 172.157954976542, - "2024-02-01": 171.052244201844, - "2024-01-01": 170, - "2023-01-01": 167, - "2022-01-01": 164, - "2021-01-01": 162, - "2015-01-01": 162 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[8]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[8].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 38264.8167902548, - "2034-02-01": 37391.4537784882, - "2033-02-01": 36566.0777453902, - "2032-02-01": 35769.4938994932, - "2031-02-01": 34982.50744933, - "2030-02-01": 34214.7157906341, - "2029-02-01": 33466.1189234057, - "2028-02-01": 32736.7168476446, - "2027-02-01": 32007.3147718835, - "2026-02-01": 31277.9126961225, - "2025-02-01": 30538.9132246277, - "2024-12-01": 30289.8608053382, - "2024-11-01": 30279.1117221165, - "2024-10-01": 30295.5232688211, - "2024-09-01": 30260.6847223078, - "2024-08-01": 30212.2178738526, - "2024-07-01": 30187.6485407743, - "2024-06-01": 30152.6180463464, - "2024-05-01": 30142.4448068686, - "2024-04-01": 30092.4423750961, - "2024-03-01": 29975.7380429743, - "2024-02-01": 29783.2142845563, - "2024-01-01": 29600, - "2023-01-01": 28800, - "2022-01-01": 27900, - "2021-01-01": 27100, - "2015-01-01": 27100 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[8].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[8].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 233.98418375122, - "2034-02-01": 228.643686956296, - "2033-02-01": 223.596624051203, - "2032-02-01": 218.725621480009, - "2031-02-01": 213.913305686781, - "2030-02-01": 209.218363449486, - "2029-02-01": 204.640794768122, - "2028-02-01": 200.180599642692, - "2027-02-01": 195.720404517261, - "2026-02-01": 191.26020939183, - "2025-02-01": 186.741327488433, - "2024-12-01": 185.21840560021, - "2024-11-01": 185.152676408888, - "2024-10-01": 185.25303079921, - "2024-09-01": 185.039997795193, - "2024-08-01": 184.743629566464, - "2024-07-01": 184.59339141487, - "2024-06-01": 184.379184675294, - "2024-05-01": 184.316976690649, - "2024-04-01": 184.011218577446, - "2024-03-01": 183.297587357377, - "2024-02-01": 182.120330591375, - "2024-01-01": 181, - "2023-01-01": 178, - "2022-01-01": 175, - "2021-01-01": 172, - "2015-01-01": 172 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[9]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[9].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 38394.0898199516, - "2034-02-01": 37517.7762574696, - "2033-02-01": 36689.6117918273, - "2032-02-01": 35890.3367842888, - "2031-02-01": 35100.6915961182, - "2030-02-01": 34330.3060466836, - "2029-02-01": 33579.1801359847, - "2028-02-01": 32847.3138640218, - "2027-02-01": 32115.4475920588, - "2026-02-01": 31383.5813200958, - "2025-02-01": 30642.085228765, - "2024-12-01": 30392.1914161671, - "2024-11-01": 30381.406018475, - "2024-10-01": 30397.8730095942, - "2024-09-01": 30362.9167652886, - "2024-08-01": 30314.2861774805, - "2024-07-01": 30289.6338398986, - "2024-06-01": 30254.4849992056, - "2024-05-01": 30244.2773906756, - "2024-04-01": 30194.1060317687, - "2024-03-01": 30077.0074282546, - "2024-02-01": 29883.8332517339, - "2024-01-01": 29700, - "2023-01-01": 28900, - "2022-01-01": 28000, - "2021-01-01": 27200, - "2015-01-01": 27200 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[9].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[9].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 246.911486720901, - "2034-02-01": 241.275934854434, - "2033-02-01": 235.950028694916, - "2032-02-01": 230.809909959568, - "2031-02-01": 225.731720365609, - "2030-02-01": 220.77738905443, - "2029-02-01": 215.94691602603, - "2028-02-01": 211.240301280409, - "2027-02-01": 206.533686534789, - "2026-02-01": 201.827071789169, - "2025-02-01": 197.058527902158, - "2024-12-01": 195.451466683095, - "2024-11-01": 195.382106044738, - "2024-10-01": 195.488004876515, - "2024-09-01": 195.26320209327, - "2024-08-01": 194.950459929252, - "2024-07-01": 194.791921327294, - "2024-06-01": 194.565879961221, - "2024-05-01": 194.500235071348, - "2024-04-01": 194.177584244708, - "2024-03-01": 193.424525885408, - "2024-02-01": 192.18222730913, - "2024-01-01": 191, - "2023-01-01": 188, - "2022-01-01": 185, - "2021-01-01": 183, - "2015-01-01": 183 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[10]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[10]", - "description": null, - "label": "bracket 11" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[10].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[10].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 38523.3628496484, - "2034-02-01": 37644.098736451, - "2033-02-01": 36813.1458382644, - "2032-02-01": 36011.1796690844, - "2031-02-01": 35218.8757429065, - "2030-02-01": 34445.896302733, - "2029-02-01": 33692.2413485638, - "2028-02-01": 32957.9108803989, - "2027-02-01": 32223.5804122341, - "2026-02-01": 31489.2499440692, - "2025-02-01": 30745.2572329022, - "2024-12-01": 30494.5220269959, - "2024-11-01": 30483.7003148335, - "2024-10-01": 30500.2227503672, - "2024-09-01": 30465.1488082693, - "2024-08-01": 30416.3544811084, - "2024-07-01": 30391.6191390228, - "2024-06-01": 30356.3519520649, - "2024-05-01": 30346.1099744826, - "2024-04-01": 30295.7696884413, - "2024-03-01": 30178.2768135349, - "2024-02-01": 29984.4522189114, - "2024-01-01": 29800, - "2023-01-01": 29000, - "2022-01-01": 28100, - "2021-01-01": 27300, - "2015-01-01": 27300 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[10].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[10].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 261.131519987549, - "2034-02-01": 255.171407542386, - "2033-02-01": 249.538773803, - "2032-02-01": 244.102627287082, - "2031-02-01": 238.731976512319, - "2030-02-01": 233.492317219868, - "2029-02-01": 228.383649409728, - "2028-02-01": 223.405973081899, - "2027-02-01": 218.42829675407, - "2026-02-01": 213.450620426241, - "2025-02-01": 208.407448357257, - "2024-12-01": 206.707833874268, - "2024-11-01": 206.634478644173, - "2024-10-01": 206.746476361549, - "2024-09-01": 206.508726821155, - "2024-08-01": 206.177973328319, - "2024-07-01": 206.01030423096, - "2024-06-01": 205.771244775742, - "2024-05-01": 205.701819290117, - "2024-04-01": 205.360586478696, - "2024-03-01": 204.564158266243, - "2024-02-01": 203.250313698661, - "2024-01-01": 202, - "2023-01-01": 199, - "2022-01-01": 195, - "2021-01-01": 193, - "2015-01-01": 193 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[11]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[11]", - "description": null, - "label": "bracket 12" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[11].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[11].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 38652.6358793452, - "2034-02-01": 37770.4212154324, - "2033-02-01": 36936.6798847016, - "2032-02-01": 36132.02255388, - "2031-02-01": 35337.0598896948, - "2030-02-01": 34561.4865587824, - "2029-02-01": 33805.3025611429, - "2028-02-01": 33068.5078967761, - "2027-02-01": 32331.7132324094, - "2026-02-01": 31594.9185680426, - "2025-02-01": 30848.4292370395, - "2024-12-01": 30596.8526378248, - "2024-11-01": 30585.994611192, - "2024-10-01": 30602.5724911402, - "2024-09-01": 30567.3808512501, - "2024-08-01": 30518.4227847363, - "2024-07-01": 30493.6044381471, - "2024-06-01": 30458.2189049242, - "2024-05-01": 30447.9425582896, - "2024-04-01": 30397.4333451139, - "2024-03-01": 30279.5461988152, - "2024-02-01": 30085.071186089, - "2024-01-01": 29900, - "2023-01-01": 29100, - "2022-01-01": 28200, - "2021-01-01": 27400, - "2015-01-01": 27400 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[11].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[11].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 274.05882295723, - "2034-02-01": 267.803655440524, - "2033-02-01": 261.892178446713, - "2032-02-01": 256.186915766641, - "2031-02-01": 250.550391191147, - "2030-02-01": 245.051342824812, - "2029-02-01": 239.689770667635, - "2028-02-01": 234.465674719617, - "2027-02-01": 229.241578771598, - "2026-02-01": 224.01748282358, - "2025-02-01": 218.724648770982, - "2024-12-01": 216.940894957152, - "2024-11-01": 216.863908280023, - "2024-10-01": 216.981450438854, - "2024-09-01": 216.731931119231, - "2024-08-01": 216.384803691107, - "2024-07-01": 216.208834143384, - "2024-06-01": 215.95794006167, - "2024-05-01": 215.885077670816, - "2024-04-01": 215.526952145958, - "2024-03-01": 214.691096794275, - "2024-02-01": 213.312210416417, - "2024-01-01": 212, - "2023-01-01": 209, - "2022-01-01": 206, - "2021-01-01": 204, - "2015-01-01": 204 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[12]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[12]", - "description": null, - "label": "bracket 13" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[12].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[12].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 38781.908909042, - "2034-02-01": 37896.7436944137, - "2033-02-01": 37060.2139311387, - "2032-02-01": 36252.8654386756, - "2031-02-01": 35455.2440364831, - "2030-02-01": 34677.0768148319, - "2029-02-01": 33918.3637737219, - "2028-02-01": 33179.1049131533, - "2027-02-01": 32439.8460525847, - "2026-02-01": 31700.587192016, - "2025-02-01": 30951.6012411767, - "2024-12-01": 30699.1832486536, - "2024-11-01": 30688.2889075505, - "2024-10-01": 30704.9222319133, - "2024-09-01": 30669.6128942309, - "2024-08-01": 30620.4910883641, - "2024-07-01": 30595.5897372713, - "2024-06-01": 30560.0858577835, - "2024-05-01": 30549.7751420966, - "2024-04-01": 30499.0970017865, - "2024-03-01": 30380.8155840956, - "2024-02-01": 30185.6901532665, - "2024-01-01": 30000, - "2023-01-01": 29200, - "2022-01-01": 28300, - "2021-01-01": 27500, - "2015-01-01": 27500 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[12].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[12].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 286.986125926911, - "2034-02-01": 280.435903338662, - "2033-02-01": 274.245583090426, - "2032-02-01": 268.271204246199, - "2031-02-01": 262.368805869975, - "2030-02-01": 256.610368429756, - "2029-02-01": 250.995891925542, - "2028-02-01": 245.525376357334, - "2027-02-01": 240.054860789126, - "2026-02-01": 234.584345220918, - "2025-02-01": 229.041849184708, - "2024-12-01": 227.173956040037, - "2024-11-01": 227.093337915874, - "2024-10-01": 227.216424516158, - "2024-09-01": 226.955135417308, - "2024-08-01": 226.591634053895, - "2024-07-01": 226.407364055808, - "2024-06-01": 226.144635347598, - "2024-05-01": 226.068336051515, - "2024-04-01": 225.69331781322, - "2024-03-01": 224.818035322307, - "2024-02-01": 223.374107134172, - "2024-01-01": 222, - "2023-01-01": 219, - "2022-01-01": 216, - "2021-01-01": 214, - "2015-01-01": 214 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[13]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[13]", - "description": null, - "label": "bracket 14" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[13].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[13].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 38911.1819387388, - "2034-02-01": 38023.0661733951, - "2033-02-01": 37183.7479775758, - "2032-02-01": 36373.7083234711, - "2031-02-01": 35573.4281832714, - "2030-02-01": 34792.6670708813, - "2029-02-01": 34031.424986301, - "2028-02-01": 33289.7019295305, - "2027-02-01": 32547.9788727599, - "2026-02-01": 31806.2558159894, - "2025-02-01": 31054.773245314, - "2024-12-01": 30801.5138594825, - "2024-11-01": 30790.583203909, - "2024-10-01": 30807.2719726863, - "2024-09-01": 30771.8449372116, - "2024-08-01": 30722.559391992, - "2024-07-01": 30697.5750363955, - "2024-06-01": 30661.9528106427, - "2024-05-01": 30651.6077259036, - "2024-04-01": 30600.7606584592, - "2024-03-01": 30482.0849693759, - "2024-02-01": 30286.3091204441, - "2024-01-01": 30100, - "2023-01-01": 29300, - "2022-01-01": 28400, - "2021-01-01": 27600, - "2015-01-01": 27600 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[13].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[13].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 301.206159193559, - "2034-02-01": 294.331376026613, - "2033-02-01": 287.83432819851, - "2032-02-01": 281.563921573714, - "2031-02-01": 275.369062016685, - "2030-02-01": 269.325296595194, - "2029-02-01": 263.43262530924, - "2028-02-01": 257.691048158824, - "2027-02-01": 251.949471008408, - "2026-02-01": 246.207893857991, - "2025-02-01": 240.390769639806, - "2024-12-01": 238.43032323121, - "2024-11-01": 238.345710515309, - "2024-10-01": 238.474896001193, - "2024-09-01": 238.200660145193, - "2024-08-01": 237.819147452961, - "2024-07-01": 237.625746959474, - "2024-06-01": 237.350000162118, - "2024-05-01": 237.269920270283, - "2024-04-01": 236.876320047209, - "2024-03-01": 235.957667703142, - "2024-02-01": 234.442193523703, - "2024-01-01": 233, - "2023-01-01": 230, - "2022-01-01": 227, - "2021-01-01": 224, - "2015-01-01": 224 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[14]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[14]", - "description": null, - "label": "bracket 15" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[14].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[14].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 39040.4549684356, - "2034-02-01": 38149.3886523765, - "2033-02-01": 37307.2820240129, - "2032-02-01": 36494.5512082667, - "2031-02-01": 35691.6123300596, - "2030-02-01": 34908.2573269308, - "2029-02-01": 34144.4861988801, - "2028-02-01": 33400.2989459077, - "2027-02-01": 32656.1116929352, - "2026-02-01": 31911.9244399628, - "2025-02-01": 31157.9452494512, - "2024-12-01": 30903.8444703113, - "2024-11-01": 30892.8775002675, - "2024-10-01": 30909.6217134594, - "2024-09-01": 30874.0769801924, - "2024-08-01": 30824.6276956199, - "2024-07-01": 30799.5603355198, - "2024-06-01": 30763.819763502, - "2024-05-01": 30753.4403097106, - "2024-04-01": 30702.4243151318, - "2024-03-01": 30583.3543546562, - "2024-02-01": 30386.9280876216, - "2024-01-01": 30200, - "2023-01-01": 29400, - "2022-01-01": 28500, - "2021-01-01": 27700, - "2015-01-01": 27700 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[14].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[14].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 314.13346216324, - "2034-02-01": 306.963623924751, - "2033-02-01": 300.187732842223, - "2032-02-01": 293.648210053272, - "2031-02-01": 287.187476695513, - "2030-02-01": 280.884322200138, - "2029-02-01": 274.738746567148, - "2028-02-01": 268.750749796542, - "2027-02-01": 262.762753025936, - "2026-02-01": 256.77475625533, - "2025-02-01": 250.707970053531, - "2024-12-01": 248.663384314094, - "2024-11-01": 248.575140151159, - "2024-10-01": 248.709870078498, - "2024-09-01": 248.42386444327, - "2024-08-01": 248.025977815749, - "2024-07-01": 247.824276871898, - "2024-06-01": 247.536695448046, - "2024-05-01": 247.453178650982, - "2024-04-01": 247.042685714471, - "2024-03-01": 246.084606231174, - "2024-02-01": 244.504090241459, - "2024-01-01": 243, - "2023-01-01": 240, - "2022-01-01": 237, - "2021-01-01": 235, - "2015-01-01": 235 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[15]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[15]", - "description": null, - "label": "bracket 16" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[15].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[15].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 39169.7279981324, - "2034-02-01": 38275.7111313579, - "2033-02-01": 37430.8160704501, - "2032-02-01": 36615.3940930623, - "2031-02-01": 35809.7964768479, - "2030-02-01": 35023.8475829802, - "2029-02-01": 34257.5474114592, - "2028-02-01": 33510.8959622848, - "2027-02-01": 32764.2445131105, - "2026-02-01": 32017.5930639362, - "2025-02-01": 31261.1172535885, - "2024-12-01": 31006.1750811402, - "2024-11-01": 30995.171796626, - "2024-10-01": 31011.9714542324, - "2024-09-01": 30976.3090231732, - "2024-08-01": 30926.6959992478, - "2024-07-01": 30901.545634644, - "2024-06-01": 30865.6867163613, - "2024-05-01": 30855.2728935175, - "2024-04-01": 30804.0879718044, - "2024-03-01": 30684.6237399365, - "2024-02-01": 30487.5470547992, - "2024-01-01": 30300, - "2023-01-01": 29500, - "2022-01-01": 28600, - "2021-01-01": 27800, - "2015-01-01": 27800 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[15].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[15].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 328.353495429889, - "2034-02-01": 320.859096612703, - "2033-02-01": 313.776477950308, - "2032-02-01": 306.940927380786, - "2031-02-01": 300.187732842223, - "2030-02-01": 293.599250365577, - "2029-02-01": 287.175479950846, - "2028-02-01": 280.916421598031, - "2027-02-01": 274.657363245217, - "2026-02-01": 268.398304892402, - "2025-02-01": 262.05689050863, - "2024-12-01": 259.919751505267, - "2024-11-01": 259.827512750594, - "2024-10-01": 259.968341563533, - "2024-09-01": 259.669389171155, - "2024-08-01": 259.253491214816, - "2024-07-01": 259.042659775564, - "2024-06-01": 258.742060262567, - "2024-05-01": 258.654762869751, - "2024-04-01": 258.225687948459, - "2024-03-01": 257.224238612009, - "2024-02-01": 255.57217663099, - "2024-01-01": 254, - "2023-01-01": 251, - "2022-01-01": 247, - "2021-01-01": 245, - "2015-01-01": 245 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[16]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[16]", - "description": null, - "label": "bracket 17" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[16].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[16].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 39299.0010278292, - "2034-02-01": 38402.0336103393, - "2033-02-01": 37554.3501168872, - "2032-02-01": 36736.2369778579, - "2031-02-01": 35927.9806236362, - "2030-02-01": 35139.4378390296, - "2029-02-01": 34370.6086240382, - "2028-02-01": 33621.492978662, - "2027-02-01": 32872.3773332858, - "2026-02-01": 32123.2616879096, - "2025-02-01": 31364.2892577257, - "2024-12-01": 31108.505691969, - "2024-11-01": 31097.4660929845, - "2024-10-01": 31114.3211950055, - "2024-09-01": 31078.5410661539, - "2024-08-01": 31028.7643028757, - "2024-07-01": 31003.5309337683, - "2024-06-01": 30967.5536692206, - "2024-05-01": 30957.1054773245, - "2024-04-01": 30905.751628477, - "2024-03-01": 30785.8931252168, - "2024-02-01": 30588.1660219767, - "2024-01-01": 30400, - "2023-01-01": 29600, - "2022-01-01": 28700, - "2021-01-01": 27900, - "2015-01-01": 27900 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[16].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[16].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 341.280798399569, - "2034-02-01": 333.491344510841, - "2033-02-01": 326.12988259402, - "2032-02-01": 319.025215860345, - "2031-02-01": 312.006147521051, - "2030-02-01": 305.158275970521, - "2029-02-01": 298.481601208753, - "2028-02-01": 291.976123235749, - "2027-02-01": 285.470645262745, - "2026-02-01": 278.965167289741, - "2025-02-01": 272.374090922355, - "2024-12-01": 270.152812588152, - "2024-11-01": 270.056942386444, - "2024-10-01": 270.203315640837, - "2024-09-01": 269.892593469232, - "2024-08-01": 269.460321577604, - "2024-07-01": 269.241189687987, - "2024-06-01": 268.928755548494, - "2024-05-01": 268.83802125045, - "2024-04-01": 268.392053615722, - "2024-03-01": 267.351177140041, - "2024-02-01": 265.634073348745, - "2024-01-01": 264, - "2023-01-01": 261, - "2022-01-01": 258, - "2021-01-01": 256, - "2015-01-01": 256 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[17]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[17]", - "description": null, - "label": "bracket 18" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[17].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[17].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 39428.274057526, - "2034-02-01": 38528.3560893206, - "2033-02-01": 37677.8841633243, - "2032-02-01": 36857.0798626535, - "2031-02-01": 36046.1647704245, - "2030-02-01": 35255.0280950791, - "2029-02-01": 34483.6698366173, - "2028-02-01": 33732.0899950392, - "2027-02-01": 32980.5101534611, - "2026-02-01": 32228.9303118829, - "2025-02-01": 31467.461261863, - "2024-12-01": 31210.8363027978, - "2024-11-01": 31199.760389343, - "2024-10-01": 31216.6709357785, - "2024-09-01": 31180.7731091347, - "2024-08-01": 31130.8326065035, - "2024-07-01": 31105.5162328925, - "2024-06-01": 31069.4206220799, - "2024-05-01": 31058.9380611315, - "2024-04-01": 31007.4152851497, - "2024-03-01": 30887.1625104972, - "2024-02-01": 30688.7849891543, - "2024-01-01": 30500, - "2023-01-01": 29700, - "2022-01-01": 28800, - "2021-01-01": 28000, - "2015-01-01": 28000 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[17].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[17].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 355.500831666218, - "2034-02-01": 347.386817198793, - "2033-02-01": 339.718627702105, - "2032-02-01": 332.317933187859, - "2031-02-01": 325.006403667762, - "2030-02-01": 317.873204135959, - "2029-02-01": 310.918334592451, - "2028-02-01": 304.141795037239, - "2027-02-01": 297.365255482026, - "2026-02-01": 290.588715926813, - "2025-02-01": 283.723011377453, - "2024-12-01": 281.409179779325, - "2024-11-01": 281.30931498588, - "2024-10-01": 281.461787125872, - "2024-09-01": 281.138118197116, - "2024-08-01": 280.687834976671, - "2024-07-01": 280.459572591654, - "2024-06-01": 280.134120363015, - "2024-05-01": 280.039605469219, - "2024-04-01": 279.57505584971, - "2024-03-01": 278.490809520876, - "2024-02-01": 276.702159738276, - "2024-01-01": 275, - "2023-01-01": 272, - "2022-01-01": 269, - "2021-01-01": 453, - "2015-01-01": 453 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[18]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[18]", - "description": null, - "label": "bracket 19" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[18].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[18].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 39557.5470872228, - "2034-02-01": 38654.678568302, - "2033-02-01": 37801.4182097615, - "2032-02-01": 36977.9227474491, - "2031-02-01": 36164.3489172127, - "2030-02-01": 35370.6183511285, - "2029-02-01": 34596.7310491964, - "2028-02-01": 33842.6870114164, - "2027-02-01": 33088.6429736364, - "2026-02-01": 32334.5989358563, - "2025-02-01": 31570.6332660003, - "2024-12-01": 31313.1669136267, - "2024-11-01": 31302.0546857015, - "2024-10-01": 31319.0206765516, - "2024-09-01": 31283.0051521155, - "2024-08-01": 31232.9009101314, - "2024-07-01": 31207.5015320167, - "2024-06-01": 31171.2875749391, - "2024-05-01": 31160.7706449385, - "2024-04-01": 31109.0789418223, - "2024-03-01": 30988.4318957775, - "2024-02-01": 30789.4039563319, - "2024-01-01": 30600, - "2023-01-01": 29800, - "2022-01-01": 28900, - "2021-01-01": 28100, - "2015-01-01": 28100 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[18].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[18].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 369.720864932867, - "2034-02-01": 361.282289886744, - "2033-02-01": 353.307372810189, - "2032-02-01": 345.610650515374, - "2031-02-01": 338.006659814472, - "2030-02-01": 330.588132301397, - "2029-02-01": 323.355067976149, - "2028-02-01": 316.307466838728, - "2027-02-01": 309.259865701307, - "2026-02-01": 302.212264563886, - "2025-02-01": 295.071931832551, - "2024-12-01": 292.665546970498, - "2024-11-01": 292.561687585315, - "2024-10-01": 292.720258610907, - "2024-09-01": 292.383642925001, - "2024-08-01": 291.915348375738, - "2024-07-01": 291.67795549532, - "2024-06-01": 291.339485177536, - "2024-05-01": 291.241189687987, - "2024-04-01": 290.758058083698, - "2024-03-01": 289.630441901711, - "2024-02-01": 287.770246127808, - "2024-01-01": 286, - "2023-01-01": 284, - "2022-01-01": 281, - "2021-01-01": 465, - "2015-01-01": 465 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[19]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[19]", - "description": null, - "label": "bracket 20" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[19].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[19].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 39686.8201169196, - "2034-02-01": 38781.0010472834, - "2033-02-01": 37924.9522561986, - "2032-02-01": 37098.7656322447, - "2031-02-01": 36282.533064001, - "2030-02-01": 35486.208607178, - "2029-02-01": 34709.7922617755, - "2028-02-01": 33953.2840277936, - "2027-02-01": 33196.7757938116, - "2026-02-01": 32440.2675598297, - "2025-02-01": 31673.8052701375, - "2024-12-01": 31415.4975244555, - "2024-11-01": 31404.34898206, - "2024-10-01": 31421.3704173246, - "2024-09-01": 31385.2371950963, - "2024-08-01": 31334.9692137593, - "2024-07-01": 31309.486831141, - "2024-06-01": 31273.1545277984, - "2024-05-01": 31262.6032287455, - "2024-04-01": 31210.7425984949, - "2024-03-01": 31089.7012810578, - "2024-02-01": 30890.0229235094, - "2024-01-01": 30700, - "2023-01-01": 29900, - "2022-01-01": 29000, - "2021-01-01": 28200, - "2015-01-01": 28200 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[19].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[19].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 382.648167902548, - "2034-02-01": 373.914537784882, - "2033-02-01": 365.660777453902, - "2032-02-01": 357.694938994932, - "2031-02-01": 349.8250744933, - "2030-02-01": 342.147157906341, - "2029-02-01": 334.661189234056, - "2028-02-01": 327.367168476446, - "2027-02-01": 320.073147718835, - "2026-02-01": 312.779126961225, - "2025-02-01": 305.389132246277, - "2024-12-01": 302.898608053382, - "2024-11-01": 302.791117221165, - "2024-10-01": 302.955232688211, - "2024-09-01": 302.606847223078, - "2024-08-01": 302.122178738526, - "2024-07-01": 301.876485407744, - "2024-06-01": 301.526180463464, - "2024-05-01": 301.424448068686, - "2024-04-01": 300.924423750961, - "2024-03-01": 299.757380429743, - "2024-02-01": 297.832142845563, - "2024-01-01": 296, - "2023-01-01": 295, - "2022-01-01": 293, - "2021-01-01": 477, - "2015-01-01": 477 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[20]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[20]", - "description": null, - "label": "bracket 21" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[20].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[20].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 39816.0931466164, - "2034-02-01": 38907.3235262648, - "2033-02-01": 38048.4863026357, - "2032-02-01": 37219.6085170402, - "2031-02-01": 36400.7172107893, - "2030-02-01": 35601.7988632274, - "2029-02-01": 34822.8534743545, - "2028-02-01": 34063.8810441707, - "2027-02-01": 33304.9086139869, - "2026-02-01": 32545.9361838031, - "2025-02-01": 31776.9772742748, - "2024-12-01": 31517.8281352844, - "2024-11-01": 31506.6432784185, - "2024-10-01": 31523.7201580976, - "2024-09-01": 31487.469238077, - "2024-08-01": 31437.0375173872, - "2024-07-01": 31411.4721302652, - "2024-06-01": 31375.0214806577, - "2024-05-01": 31364.4358125525, - "2024-04-01": 31312.4062551675, - "2024-03-01": 31190.9706663381, - "2024-02-01": 30990.641890687, - "2024-01-01": 30800, - "2023-01-01": 30000, - "2022-01-01": 29100, - "2021-01-01": 28300, - "2015-01-01": 28300 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[20].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[20].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 409.134940000668, - "2034-02-01": 399.796771066618, - "2033-02-01": 390.971688337734, - "2032-02-01": 382.454457331952, - "2031-02-01": 374.039843567203, - "2030-02-01": 365.830464284521, - "2029-02-01": 357.826319483905, - "2028-02-01": 350.027409165358, - "2027-02-01": 342.22849884681, - "2026-02-01": 334.429588528262, - "2025-02-01": 326.52806096868, - "2024-12-01": 323.86514356386, - "2024-11-01": 323.750212253902, - "2024-10-01": 323.92568773607, - "2024-09-01": 323.553187151118, - "2024-08-01": 323.034970083899, - "2024-07-01": 322.772269946853, - "2024-06-01": 322.397717017081, - "2024-05-01": 322.288942741585, - "2024-04-01": 321.7543069158, - "2024-03-01": 320.506481264833, - "2024-02-01": 318.4479794097, - "2024-01-01": 316.48901627837, - "2023-12-01": 314.7742821807, - "2023-11-01": 315.087264765852, - "2023-10-01": 315.72349166026, - "2023-09-01": 315.84458000468, - "2023-08-01": 315.061610455594, - "2023-07-01": 313.691670287796, - "2023-06-01": 313.094437944981, - "2023-05-01": 312.086736638032, - "2023-04-01": 311.302740916536, - "2023-03-01": 309.735775645954, - "2023-02-01": 308.71370792526, - "2023-01-01": 307, - "2022-01-01": 305, - "2021-01-01": 489, - "2015-01-01": 489 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[21]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[21]", - "description": null, - "label": "bracket 22" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[21].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[21].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 39945.3661763132, - "2034-02-01": 39033.6460052462, - "2033-02-01": 38172.0203490728, - "2032-02-01": 37340.4514018358, - "2031-02-01": 36518.9013575776, - "2030-02-01": 35717.3891192768, - "2029-02-01": 34935.9146869336, - "2028-02-01": 34174.4780605479, - "2027-02-01": 33413.0414341622, - "2026-02-01": 32651.6048077765, - "2025-02-01": 31880.149278412, - "2024-12-01": 31620.1587461132, - "2024-11-01": 31608.937574777, - "2024-10-01": 31626.0698988707, - "2024-09-01": 31589.7012810578, - "2024-08-01": 31539.1058210151, - "2024-07-01": 31513.4574293894, - "2024-06-01": 31476.888433517, - "2024-05-01": 31466.2683963595, - "2024-04-01": 31414.0699118401, - "2024-03-01": 31292.2400516184, - "2024-02-01": 31091.2608578645, - "2024-01-01": 30900, - "2023-01-01": 30100, - "2022-01-01": 29200, - "2021-01-01": 28400, - "2015-01-01": 28400 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[21].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[21].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 411.088234435845, - "2034-02-01": 401.705483160786, - "2033-02-01": 392.83826767007, - "2032-02-01": 384.280373649961, - "2031-02-01": 375.825586786721, - "2030-02-01": 367.577014237218, - "2029-02-01": 359.534656001453, - "2028-02-01": 351.698512079425, - "2027-02-01": 343.862368157397, - "2026-02-01": 336.02622423537, - "2025-02-01": 328.086973156473, - "2024-12-01": 325.411342435728, - "2024-11-01": 325.295862420035, - "2024-10-01": 325.472175658281, - "2024-09-01": 325.097896678847, - "2024-08-01": 324.57720553666, - "2024-07-01": 324.313251215076, - "2024-06-01": 323.936910092505, - "2024-05-01": 323.827616506224, - "2024-04-01": 323.290428218937, - "2024-03-01": 322.036645191413, - "2024-02-01": 319.968315624625, - "2024-01-01": 318, - "2023-01-01": 319, - "2022-01-01": 316, - "2021-01-01": 501, - "2015-01-01": 501 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[22]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[22]", - "description": null, - "label": "bracket 23" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[22].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[22].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 40074.6392060101, - "2034-02-01": 39159.9684842275, - "2033-02-01": 38295.55439551, - "2032-02-01": 37461.2942866314, - "2031-02-01": 36637.0855043658, - "2030-02-01": 35832.9793753263, - "2029-02-01": 35048.9758995127, - "2028-02-01": 34285.0750769251, - "2027-02-01": 33521.1742543375, - "2026-02-01": 32757.2734317499, - "2025-02-01": 31983.3212825493, - "2024-12-01": 31722.4893569421, - "2024-11-01": 31711.2318711355, - "2024-10-01": 31728.4196396437, - "2024-09-01": 31691.9333240386, - "2024-08-01": 31641.1741246429, - "2024-07-01": 31615.4427285137, - "2024-06-01": 31578.7553863762, - "2024-05-01": 31568.1009801665, - "2024-04-01": 31515.7335685128, - "2024-03-01": 31393.5094368988, - "2024-02-01": 31191.8798250421, - "2024-01-01": 31000, - "2023-01-01": 30200, - "2022-01-01": 29300, - "2021-01-01": 28500, - "2015-01-01": 28500 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[22].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[22].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 425.308267702494, - "2034-02-01": 415.600955848737, - "2033-02-01": 406.427012778154, - "2032-02-01": 397.573090977475, - "2031-02-01": 388.825842933431, - "2030-02-01": 380.291942402656, - "2029-02-01": 371.971389385151, - "2028-02-01": 363.864183880915, - "2027-02-01": 355.756978376678, - "2026-02-01": 347.649772872442, - "2025-02-01": 339.435893611571, - "2024-12-01": 336.667709626901, - "2024-11-01": 336.54823501947, - "2024-10-01": 336.730647143316, - "2024-09-01": 336.343421406732, - "2024-08-01": 335.804718935727, - "2024-07-01": 335.531634118742, - "2024-06-01": 335.142274907025, - "2024-05-01": 335.029200724993, - "2024-04-01": 334.473430452926, - "2024-03-01": 333.176277572248, - "2024-02-01": 331.036402014156, - "2024-01-01": 329, - "2023-01-01": 331, - "2022-01-01": 328, - "2021-01-01": 513, - "2015-01-01": 513 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[23]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[23]", - "description": null, - "label": "bracket 24" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[23].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[23].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 40203.9122357069, - "2034-02-01": 39286.2909632089, - "2033-02-01": 38419.0884419471, - "2032-02-01": 37582.137171427, - "2031-02-01": 36755.2696511541, - "2030-02-01": 35948.5696313757, - "2029-02-01": 35162.0371120918, - "2028-02-01": 34395.6720933023, - "2027-02-01": 33629.3070745128, - "2026-02-01": 32862.9420557233, - "2025-02-01": 32086.4932866865, - "2024-12-01": 31824.8199677709, - "2024-11-01": 31813.526167494, - "2024-10-01": 31830.7693804168, - "2024-09-01": 31794.1653670193, - "2024-08-01": 31743.2424282708, - "2024-07-01": 31717.4280276379, - "2024-06-01": 31680.6223392355, - "2024-05-01": 31669.9335639735, - "2024-04-01": 31617.3972251854, - "2024-03-01": 31494.7788221791, - "2024-02-01": 31292.4987922196, - "2024-01-01": 31100, - "2023-01-01": 30300, - "2022-01-01": 29400, - "2021-01-01": 28600, - "2015-01-01": 28600 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[23].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[23].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 439.528300969143, - "2034-02-01": 429.496428536689, - "2033-02-01": 420.015757886238, - "2032-02-01": 410.86580830499, - "2031-02-01": 401.826099080142, - "2030-02-01": 393.006870568095, - "2029-02-01": 384.408122768849, - "2028-02-01": 376.029855682404, - "2027-02-01": 367.651588595959, - "2026-02-01": 359.273321509515, - "2025-02-01": 350.78481406667, - "2024-12-01": 347.924076818074, - "2024-11-01": 347.800607618906, - "2024-10-01": 347.989118628351, - "2024-09-01": 347.588946134617, - "2024-08-01": 347.032232334794, - "2024-07-01": 346.750017022408, - "2024-06-01": 346.347639721546, - "2024-05-01": 346.230784943761, - "2024-04-01": 345.656432686914, - "2024-03-01": 344.315909953083, - "2024-02-01": 342.104488403687, - "2024-01-01": 340, - "2023-01-01": 342, - "2022-01-01": 340, - "2021-01-01": 525, - "2015-01-01": 525 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[24]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[24]", - "description": null, - "label": "bracket 25" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[24].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[24].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 40333.1852654037, - "2034-02-01": 39412.6134421903, - "2033-02-01": 38542.6224883842, - "2032-02-01": 37702.9800562226, - "2031-02-01": 36873.4537979424, - "2030-02-01": 36064.1598874252, - "2029-02-01": 35275.0983246708, - "2028-02-01": 34506.2691096794, - "2027-02-01": 33737.439894688, - "2026-02-01": 32968.6106796966, - "2025-02-01": 32189.6652908238, - "2024-12-01": 31927.1505785998, - "2024-11-01": 31915.8204638525, - "2024-10-01": 31933.1191211898, - "2024-09-01": 31896.3974100001, - "2024-08-01": 31845.3107318987, - "2024-07-01": 31819.4133267622, - "2024-06-01": 31782.4892920948, - "2024-05-01": 31771.7661477804, - "2024-04-01": 31719.060881858, - "2024-03-01": 31596.0482074594, - "2024-02-01": 31393.1177593972, - "2024-01-01": 31200, - "2023-01-01": 30400, - "2022-01-01": 29500, - "2021-01-01": 28700, - "2015-01-01": 28700 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[24].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[24].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 453.748334235791, - "2034-02-01": 443.391901224641, - "2033-02-01": 433.604502994323, - "2032-02-01": 424.158525632504, - "2031-02-01": 414.826355226852, - "2030-02-01": 405.721798733533, - "2029-02-01": 396.844856152547, - "2028-02-01": 388.195527483894, - "2027-02-01": 379.546198815241, - "2026-02-01": 370.896870146587, - "2025-02-01": 362.133734521768, - "2024-12-01": 359.180444009247, - "2024-11-01": 359.052980218341, - "2024-10-01": 359.247590113385, - "2024-09-01": 358.834470862501, - "2024-08-01": 358.25974573386, - "2024-07-01": 357.968399926074, - "2024-06-01": 357.553004536067, - "2024-05-01": 357.43236916253, - "2024-04-01": 356.839434920903, - "2024-03-01": 355.455542333918, - "2024-02-01": 353.172574793218, - "2024-01-01": 351, - "2023-01-01": 354, - "2022-01-01": 352, - "2021-01-01": 537, - "2015-01-01": 537 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[25]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[25]", - "description": null, - "label": "bracket 26" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[25].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[25].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 40462.4582951005, - "2034-02-01": 39538.9359211717, - "2033-02-01": 38666.1565348214, - "2032-02-01": 37823.8229410182, - "2031-02-01": 36991.6379447307, - "2030-02-01": 36179.7501434746, - "2029-02-01": 35388.1595372499, - "2028-02-01": 34616.8661260566, - "2027-02-01": 33845.5727148633, - "2026-02-01": 33074.27930367, - "2025-02-01": 32292.837294961, - "2024-12-01": 32029.4811894286, - "2024-11-01": 32018.114760211, - "2024-10-01": 32035.4688619629, - "2024-09-01": 31998.6294529809, - "2024-08-01": 31947.3790355266, - "2024-07-01": 31921.3986258864, - "2024-06-01": 31884.3562449541, - "2024-05-01": 31873.5987315874, - "2024-04-01": 31820.7245385306, - "2024-03-01": 31697.3175927397, - "2024-02-01": 31493.7367265747, - "2024-01-01": 31300, - "2023-01-01": 30500, - "2022-01-01": 29600, - "2021-01-01": 28800, - "2015-01-01": 28800 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[25].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[25].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 467.96836750244, - "2034-02-01": 457.287373912592, - "2033-02-01": 447.193248102407, - "2032-02-01": 437.451242960018, - "2031-02-01": 427.826611373562, - "2030-02-01": 418.436726898971, - "2029-02-01": 409.281589536245, - "2028-02-01": 400.361199285383, - "2027-02-01": 391.440809034522, - "2026-02-01": 382.52041878366, - "2025-02-01": 373.482654976866, - "2024-12-01": 370.43681120042, - "2024-11-01": 370.305352817776, - "2024-10-01": 370.50606159842, - "2024-09-01": 370.079995590386, - "2024-08-01": 369.487259132927, - "2024-07-01": 369.18678282974, - "2024-06-01": 368.758369350587, - "2024-05-01": 368.633953381299, - "2024-04-01": 368.022437154891, - "2024-03-01": 366.595174714753, - "2024-02-01": 364.240661182749, - "2024-01-01": 362, - "2023-01-01": 366, - "2022-01-01": 364, - "2021-01-01": 549, - "2015-01-01": 549 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[26]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[26]", - "description": null, - "label": "bracket 27" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[26].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[26].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 40591.7313247973, - "2034-02-01": 39665.258400153, - "2033-02-01": 38789.6905812585, - "2032-02-01": 37944.6658258138, - "2031-02-01": 37109.822091519, - "2030-02-01": 36295.340399524, - "2029-02-01": 35501.220749829, - "2028-02-01": 34727.4631424338, - "2027-02-01": 33953.7055350386, - "2026-02-01": 33179.9479276434, - "2025-02-01": 32396.0092990983, - "2024-12-01": 32131.8118002575, - "2024-11-01": 32120.4090565695, - "2024-10-01": 32137.8186027359, - "2024-09-01": 32100.8614959616, - "2024-08-01": 32049.4473391545, - "2024-07-01": 32023.3839250106, - "2024-06-01": 31986.2231978134, - "2024-05-01": 31975.4313153944, - "2024-04-01": 31922.3881952033, - "2024-03-01": 31798.58697802, - "2024-02-01": 31594.3556937523, - "2024-01-01": 31400, - "2023-01-01": 30600, - "2022-01-01": 29700, - "2021-01-01": 28900, - "2015-01-01": 28900 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[26].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[26].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 482.188400769089, - "2034-02-01": 471.182846600544, - "2033-02-01": 460.781993210491, - "2032-02-01": 450.743960287533, - "2031-02-01": 440.826867520273, - "2030-02-01": 431.15165506441, - "2029-02-01": 421.718322919943, - "2028-02-01": 412.526871086873, - "2027-02-01": 403.335419253803, - "2026-02-01": 394.143967420732, - "2025-02-01": 384.831575431964, - "2024-12-01": 381.693178391593, - "2024-11-01": 381.557725417211, - "2024-10-01": 381.764533083455, - "2024-09-01": 381.32552031827, - "2024-08-01": 380.714772531994, - "2024-07-01": 380.405165733407, - "2024-06-01": 379.963734165108, - "2024-05-01": 379.835537600068, - "2024-04-01": 379.205439388879, - "2024-03-01": 377.734807095588, - "2024-02-01": 375.30874757228, - "2024-01-01": 373, - "2023-01-01": 377, - "2022-01-01": 376, - "2021-01-01": 561, - "2015-01-01": 561 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[27]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[27]", - "description": null, - "label": "bracket 28" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[27].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[27].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 40721.0043544941, - "2034-02-01": 39791.5808791344, - "2033-02-01": 38913.2246276956, - "2032-02-01": 38065.5087106093, - "2031-02-01": 37228.0062383072, - "2030-02-01": 36410.9306555735, - "2029-02-01": 35614.281962408, - "2028-02-01": 34838.060158811, - "2027-02-01": 34061.8383552139, - "2026-02-01": 33285.6165516168, - "2025-02-01": 32499.1813032356, - "2024-12-01": 32234.1424110863, - "2024-11-01": 32222.703352928, - "2024-10-01": 32240.168343509, - "2024-09-01": 32203.0935389424, - "2024-08-01": 32151.5156427823, - "2024-07-01": 32125.3692241349, - "2024-06-01": 32088.0901506726, - "2024-05-01": 32077.2638992014, - "2024-04-01": 32024.0518518759, - "2024-03-01": 31899.8563633003, - "2024-02-01": 31694.9746609299, - "2024-01-01": 31500, - "2023-01-01": 30700, - "2022-01-01": 29800, - "2021-01-01": 29000, - "2015-01-01": 29000 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[27].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[27].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 496.408434035737, - "2034-02-01": 485.078319288496, - "2033-02-01": 474.370738318575, - "2032-02-01": 464.036677615047, - "2031-02-01": 453.827123666983, - "2030-02-01": 443.866583229848, - "2029-02-01": 434.155056303641, - "2028-02-01": 424.692542888362, - "2027-02-01": 415.230029473084, - "2026-02-01": 405.767516057805, - "2025-02-01": 396.180495887062, - "2024-12-01": 392.949545582766, - "2024-11-01": 392.810098016646, - "2024-10-01": 393.02300456849, - "2024-09-01": 392.571045046155, - "2024-08-01": 391.942285931061, - "2024-07-01": 391.623548637073, - "2024-06-01": 391.169098979628, - "2024-05-01": 391.037121818836, - "2024-04-01": 390.388441622868, - "2024-03-01": 388.874439476423, - "2024-02-01": 386.376833961812, - "2024-01-01": 384, - "2023-01-01": 389, - "2022-01-01": 388, - "2021-01-01": 573, - "2015-01-01": 573 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[28]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[28]", - "description": null, - "label": "bracket 29" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[28].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[28].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 40850.2773841909, - "2034-02-01": 39917.9033581158, - "2033-02-01": 39036.7586741328, - "2032-02-01": 38186.3515954049, - "2031-02-01": 37346.1903850955, - "2030-02-01": 36526.5209116229, - "2029-02-01": 35727.3431749871, - "2028-02-01": 34948.6571751881, - "2027-02-01": 34169.9711753892, - "2026-02-01": 33391.2851755902, - "2025-02-01": 32602.3533073728, - "2024-12-01": 32336.4730219151, - "2024-11-01": 32324.9976492865, - "2024-10-01": 32342.518084282, - "2024-09-01": 32305.3255819232, - "2024-08-01": 32253.5839464102, - "2024-07-01": 32227.3545232591, - "2024-06-01": 32189.9571035319, - "2024-05-01": 32179.0964830084, - "2024-04-01": 32125.7155085485, - "2024-03-01": 32001.1257485807, - "2024-02-01": 31795.5936281074, - "2024-01-01": 31600, - "2023-01-01": 30800, - "2022-01-01": 29900, - "2021-01-01": 29100, - "2015-01-01": 29100 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[28].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[28].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 510.628467302386, - "2034-02-01": 498.973791976448, - "2033-02-01": 487.959483426659, - "2032-02-01": 477.329394942562, - "2031-02-01": 466.827379813694, - "2030-02-01": 456.581511395286, - "2029-02-01": 446.591789687339, - "2028-02-01": 436.858214689852, - "2027-02-01": 427.124639692365, - "2026-02-01": 417.391064694877, - "2025-02-01": 407.52941634216, - "2024-12-01": 404.205912773939, - "2024-11-01": 404.062470616082, - "2024-10-01": 404.281476053525, - "2024-09-01": 403.81656977404, - "2024-08-01": 403.169799330128, - "2024-07-01": 402.841931540739, - "2024-06-01": 402.374463794149, - "2024-05-01": 402.238706037605, - "2024-04-01": 401.571443856856, - "2024-03-01": 400.014071857258, - "2024-02-01": 397.444920351343, - "2024-01-01": 395, - "2023-01-01": 401, - "2022-01-01": 400, - "2021-01-01": 585, - "2015-01-01": 585 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[29]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[29]", - "description": null, - "label": "bracket 30" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[29].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[29].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 40979.5504138877, - "2034-02-01": 40044.2258370972, - "2033-02-01": 39160.2927205699, - "2032-02-01": 38307.1944802005, - "2031-02-01": 37464.3745318838, - "2030-02-01": 36642.1111676723, - "2029-02-01": 35840.4043875662, - "2028-02-01": 35059.2541915653, - "2027-02-01": 34278.1039955645, - "2026-02-01": 33496.9537995636, - "2025-02-01": 32705.5253115101, - "2024-12-01": 32438.803632744, - "2024-11-01": 32427.291945645, - "2024-10-01": 32444.867825055, - "2024-09-01": 32407.5576249039, - "2024-08-01": 32355.6522500381, - "2024-07-01": 32329.3398223833, - "2024-06-01": 32291.8240563912, - "2024-05-01": 32280.9290668154, - "2024-04-01": 32227.3791652211, - "2024-03-01": 32102.395133861, - "2024-02-01": 31896.212595285, - "2024-01-01": 31700, - "2023-01-01": 30900, - "2022-01-01": 30000, - "2021-01-01": 29200, - "2015-01-01": 29200 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[29].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[29].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 523.555770272067, - "2034-02-01": 511.606039874585, - "2033-02-01": 500.312888070372, - "2032-02-01": 489.41368342212, - "2031-02-01": 478.645794492522, - "2030-02-01": 468.14053700023, - "2029-02-01": 457.897910945246, - "2028-02-01": 447.91791632757, - "2027-02-01": 437.937921709893, - "2026-02-01": 427.957927092216, - "2025-02-01": 417.846616755886, - "2024-12-01": 414.438973856824, - "2024-11-01": 414.291900251932, - "2024-10-01": 414.516450130829, - "2024-09-01": 414.039774072117, - "2024-08-01": 413.376629692916, - "2024-07-01": 413.040461453163, - "2024-06-01": 412.561159080077, - "2024-05-01": 412.421964418304, - "2024-04-01": 411.737809524118, - "2024-03-01": 410.14101038529, - "2024-02-01": 407.506817069098, - "2024-01-01": 405, - "2023-01-01": 412, - "2022-01-01": 412, - "2021-01-01": 597, - "2015-01-01": 597 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[30]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[30]", - "description": null, - "label": "bracket 31" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[30].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[30].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 41108.8234435845, - "2034-02-01": 40170.5483160786, - "2033-02-01": 39283.826767007, - "2032-02-01": 38428.0373649961, - "2031-02-01": 37582.5586786721, - "2030-02-01": 36757.7014237218, - "2029-02-01": 35953.4656001453, - "2028-02-01": 35169.8512079425, - "2027-02-01": 34386.2368157397, - "2026-02-01": 33602.622423537, - "2025-02-01": 32808.6973156473, - "2024-12-01": 32541.1342435728, - "2024-11-01": 32529.5862420035, - "2024-10-01": 32547.2175658281, - "2024-09-01": 32509.7896678847, - "2024-08-01": 32457.720553666, - "2024-07-01": 32431.3251215076, - "2024-06-01": 32393.6910092505, - "2024-05-01": 32382.7616506224, - "2024-04-01": 32329.0428218937, - "2024-03-01": 32203.6645191413, - "2024-02-01": 31996.8315624625, - "2024-01-01": 31800, - "2023-01-01": 31000, - "2022-01-01": 30100, - "2021-01-01": 29300, - "2015-01-01": 29300 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[30].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[30].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 537.775803538716, - "2034-02-01": 525.501512562537, - "2033-02-01": 513.901633178456, - "2032-02-01": 502.706400749634, - "2031-02-01": 491.646050639232, - "2030-02-01": 480.855465165669, - "2029-02-01": 470.334644328944, - "2028-02-01": 460.083588129059, - "2027-02-01": 449.832531929174, - "2026-02-01": 439.581475729289, - "2025-02-01": 429.195537210984, - "2024-12-01": 425.695341047997, - "2024-11-01": 425.544272851367, - "2024-10-01": 425.774921615864, - "2024-09-01": 425.285298800001, - "2024-08-01": 424.604143091983, - "2024-07-01": 424.258844356829, - "2024-06-01": 423.766523894597, - "2024-05-01": 423.623548637073, - "2024-04-01": 422.920811758107, - "2024-03-01": 421.280642766125, - "2024-02-01": 418.574903458629, - "2024-01-01": 416, - "2023-01-01": 424, - "2022-01-01": 424, - "2021-01-01": 609, - "2015-01-01": 609 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[31]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[31]", - "description": null, - "label": "bracket 32" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[31].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[31].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 41238.0964732813, - "2034-02-01": 40296.8707950599, - "2033-02-01": 39407.3608134441, - "2032-02-01": 38548.8802497917, - "2031-02-01": 37700.7428254603, - "2030-02-01": 36873.2916797712, - "2029-02-01": 36066.5268127243, - "2028-02-01": 35280.4482243197, - "2027-02-01": 34494.369635915, - "2026-02-01": 33708.2910475104, - "2025-02-01": 32911.8693197846, - "2024-12-01": 32643.4648544017, - "2024-11-01": 32631.880538362, - "2024-10-01": 32649.5673066011, - "2024-09-01": 32612.0217108655, - "2024-08-01": 32559.7888572939, - "2024-07-01": 32533.3104206318, - "2024-06-01": 32495.5579621097, - "2024-05-01": 32484.5942344294, - "2024-04-01": 32430.7064785664, - "2024-03-01": 32304.9339044216, - "2024-02-01": 32097.4505296401, - "2024-01-01": 31900, - "2023-01-01": 31100, - "2022-01-01": 30200, - "2021-01-01": 29400, - "2015-01-01": 29400 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[31].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[31].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 551.995836805364, - "2034-02-01": 539.396985250489, - "2033-02-01": 527.490378286541, - "2032-02-01": 515.999118077149, - "2031-02-01": 504.646306785942, - "2030-02-01": 493.570393331107, - "2029-02-01": 482.771377712642, - "2028-02-01": 472.249259930549, - "2027-02-01": 461.727142148455, - "2026-02-01": 451.205024366361, - "2025-02-01": 440.544457666082, - "2024-12-01": 436.95170823917, - "2024-11-01": 436.796645450802, - "2024-10-01": 437.033393100899, - "2024-09-01": 436.530823527886, - "2024-08-01": 435.83165649105, - "2024-07-01": 435.477227260495, - "2024-06-01": 434.971888709118, - "2024-05-01": 434.825132855841, - "2024-04-01": 434.103813992095, - "2024-03-01": 432.42027514696, - "2024-02-01": 429.64298984816, - "2024-01-01": 427, - "2023-01-01": 436, - "2022-01-01": 435, - "2021-01-01": 621, - "2015-01-01": 621 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[32]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[32]", - "description": null, - "label": "bracket 33" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[32].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[32].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 41367.3695029781, - "2034-02-01": 40423.1932740413, - "2033-02-01": 39530.8948598813, - "2032-02-01": 38669.7231345873, - "2031-02-01": 37818.9269722486, - "2030-02-01": 36988.8819358207, - "2029-02-01": 36179.5880253034, - "2028-02-01": 35391.0452406969, - "2027-02-01": 34602.5024560903, - "2026-02-01": 33813.9596714837, - "2025-02-01": 33015.0413239218, - "2024-12-01": 32745.7954652305, - "2024-11-01": 32734.1748347205, - "2024-10-01": 32751.9170473742, - "2024-09-01": 32714.2537538463, - "2024-08-01": 32661.8571609217, - "2024-07-01": 32635.2957197561, - "2024-06-01": 32597.424914969, - "2024-05-01": 32586.4268182364, - "2024-04-01": 32532.370135239, - "2024-03-01": 32406.2032897019, - "2024-02-01": 32198.0694968176, - "2024-01-01": 32000, - "2023-01-01": 31200, - "2022-01-01": 30300, - "2021-01-01": 29500, - "2015-01-01": 29500 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[32].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[32].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 566.215870072013, - "2034-02-01": 553.292457938441, - "2033-02-01": 541.079123394625, - "2032-02-01": 529.291835404663, - "2031-02-01": 517.646562932653, - "2030-02-01": 506.285321496545, - "2029-02-01": 495.20811109634, - "2028-02-01": 484.414931732038, - "2027-02-01": 473.621752367736, - "2026-02-01": 462.828573003434, - "2025-02-01": 451.89337812118, - "2024-12-01": 448.208075430343, - "2024-11-01": 448.049018050237, - "2024-10-01": 448.291864585934, - "2024-09-01": 447.776348255771, - "2024-08-01": 447.059169890116, - "2024-07-01": 446.695610164161, - "2024-06-01": 446.177253523639, - "2024-05-01": 446.02671707461, - "2024-04-01": 445.286816226084, - "2024-03-01": 443.559907527795, - "2024-02-01": 440.711076237691, - "2024-01-01": 438, - "2023-01-01": 448, - "2022-01-01": 447, - "2021-01-01": 633, - "2015-01-01": 633 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[33]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[33]", - "description": null, - "label": "bracket 34" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[33].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[33].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 41496.6425326749, - "2034-02-01": 40549.5157530227, - "2033-02-01": 39654.4289063184, - "2032-02-01": 38790.5660193829, - "2031-02-01": 37937.1111190369, - "2030-02-01": 37104.4721918701, - "2029-02-01": 36292.6492378825, - "2028-02-01": 35501.642257074, - "2027-02-01": 34710.6352762656, - "2026-02-01": 33919.6282954571, - "2025-02-01": 33118.2133280591, - "2024-12-01": 32848.1260760594, - "2024-11-01": 32836.469131079, - "2024-10-01": 32854.2667881472, - "2024-09-01": 32816.485796827, - "2024-08-01": 32763.9254645496, - "2024-07-01": 32737.2810188803, - "2024-06-01": 32699.2918678283, - "2024-05-01": 32688.2594020433, - "2024-04-01": 32634.0337919116, - "2024-03-01": 32507.4726749823, - "2024-02-01": 32298.6884639952, - "2024-01-01": 32100, - "2023-01-01": 31300, - "2022-01-01": 30400, - "2021-01-01": 29600, - "2015-01-01": 29600 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[33].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[33].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 580.435903338662, - "2034-02-01": 567.187930626392, - "2033-02-01": 554.667868502709, - "2032-02-01": 542.584552732178, - "2031-02-01": 530.646819079363, - "2030-02-01": 519.000249661984, - "2029-02-01": 507.644844480038, - "2028-02-01": 496.580603533528, - "2027-02-01": 485.516362587017, - "2026-02-01": 474.452121640506, - "2025-02-01": 463.242298576278, - "2024-12-01": 459.464442621516, - "2024-11-01": 459.301390649672, - "2024-10-01": 459.550336070969, - "2024-09-01": 459.021872983655, - "2024-08-01": 458.286683289183, - "2024-07-01": 457.913993067827, - "2024-06-01": 457.382618338159, - "2024-05-01": 457.228301293379, - "2024-04-01": 456.469818460072, - "2024-03-01": 454.69953990863, - "2024-02-01": 451.779162627222, - "2024-01-01": 449, - "2023-01-01": 459, - "2022-01-01": 459, - "2021-01-01": 645, - "2015-01-01": 645 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[34]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[34]", - "description": null, - "label": "bracket 35" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[34].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[34].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 41625.9155623717, - "2034-02-01": 40675.8382320041, - "2033-02-01": 39777.9629527555, - "2032-02-01": 38911.4089041784, - "2031-02-01": 38055.2952658252, - "2030-02-01": 37220.0624479196, - "2029-02-01": 36405.7104504616, - "2028-02-01": 35612.2392734512, - "2027-02-01": 34818.7680964409, - "2026-02-01": 34025.2969194305, - "2025-02-01": 33221.3853321964, - "2024-12-01": 32950.4566868882, - "2024-11-01": 32938.7634274375, - "2024-10-01": 32956.6165289203, - "2024-09-01": 32918.7178398078, - "2024-08-01": 32865.9937681775, - "2024-07-01": 32839.2663180045, - "2024-06-01": 32801.1588206876, - "2024-05-01": 32790.0919858503, - "2024-04-01": 32735.6974485842, - "2024-03-01": 32608.7420602626, - "2024-02-01": 32399.3074311727, - "2024-01-01": 32200, - "2023-01-01": 31400, - "2022-01-01": 30500, - "2021-01-01": 29700, - "2015-01-01": 29700 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[34].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[34].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 594.65593660531, - "2034-02-01": 581.083403314344, - "2033-02-01": 568.256613610793, - "2032-02-01": 555.877270059692, - "2031-02-01": 543.647075226074, - "2030-02-01": 531.715177827422, - "2029-02-01": 520.081577863737, - "2028-02-01": 508.746275335017, - "2027-02-01": 497.410972806298, - "2026-02-01": 486.075670277579, - "2025-02-01": 474.591219031376, - "2024-12-01": 470.720809812689, - "2024-11-01": 470.553763249108, - "2024-10-01": 470.808807556004, - "2024-09-01": 470.26739771154, - "2024-08-01": 469.51419668825, - "2024-07-01": 469.132375971493, - "2024-06-01": 468.58798315268, - "2024-05-01": 468.429885512148, - "2024-04-01": 467.65282069406, - "2024-03-01": 465.839172289465, - "2024-02-01": 462.847249016753, - "2024-01-01": 460, - "2022-01-01": 471, - "2021-01-01": 657, - "2015-01-01": 657 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[35]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[35]", - "description": null, - "label": "bracket 36" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[35].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[35].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 41755.1885920685, - "2034-02-01": 40802.1607109855, - "2033-02-01": 39901.4969991927, - "2032-02-01": 39032.251788974, - "2031-02-01": 38173.4794126134, - "2030-02-01": 37335.652703969, - "2029-02-01": 36518.7716630406, - "2028-02-01": 35722.8362898284, - "2027-02-01": 34926.9009166162, - "2026-02-01": 34130.9655434039, - "2025-02-01": 33324.5573363336, - "2024-12-01": 33052.7872977171, - "2024-11-01": 33041.057723796, - "2024-10-01": 33058.9662696933, - "2024-09-01": 33020.9498827886, - "2024-08-01": 32968.0620718054, - "2024-07-01": 32941.2516171288, - "2024-06-01": 32903.0257735469, - "2024-05-01": 32891.9245696573, - "2024-04-01": 32837.3611052569, - "2024-03-01": 32710.0114455429, - "2024-02-01": 32499.9263983503, - "2024-01-01": 32300, - "2023-01-01": 31500, - "2022-01-01": 30600, - "2021-01-01": 29800, - "2015-01-01": 29800 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[35].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[35].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 608.875969871959, - "2034-02-01": 594.978876002296, - "2033-02-01": 581.845358718877, - "2032-02-01": 569.169987387206, - "2031-02-01": 556.647331372784, - "2030-02-01": 544.43010599286, - "2029-02-01": 532.518311247434, - "2028-02-01": 520.911947136507, - "2027-02-01": 509.305583025579, - "2026-02-01": 497.699218914651, - "2025-02-01": 485.940139486475, - "2024-12-01": 481.977177003862, - "2024-11-01": 481.806135848543, - "2024-10-01": 482.067279041039, - "2024-09-01": 481.512922439425, - "2024-08-01": 480.741710087317, - "2024-07-01": 480.350758875159, - "2024-06-01": 479.7933479672, - "2024-05-01": 479.631469730916, - "2024-04-01": 478.835822928049, - "2024-03-01": 476.9788046703, - "2024-02-01": 473.915335406284, - "2024-01-01": 471, - "2022-01-01": 483, - "2021-01-01": 669, - "2015-01-01": 669 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[36]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[36]", - "description": null, - "label": "bracket 37" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[36].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[36].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 41884.4616217653, - "2034-02-01": 40928.4831899668, - "2033-02-01": 40025.0310456298, - "2032-02-01": 39153.0946737696, - "2031-02-01": 38291.6635594017, - "2030-02-01": 37451.2429600184, - "2029-02-01": 36631.8328756197, - "2028-02-01": 35833.4333062056, - "2027-02-01": 35035.0337367914, - "2026-02-01": 34236.6341673773, - "2025-02-01": 33427.7293404709, - "2024-12-01": 33155.1179085459, - "2024-11-01": 33143.3520201545, - "2024-10-01": 33161.3160104664, - "2024-09-01": 33123.1819257693, - "2024-08-01": 33070.1303754333, - "2024-07-01": 33043.236916253, - "2024-06-01": 33004.8927264061, - "2024-05-01": 32993.7571534643, - "2024-04-01": 32939.0247619295, - "2024-03-01": 32811.2808308232, - "2024-02-01": 32600.5453655278, - "2024-01-01": 32400, - "2023-01-01": 31600, - "2022-01-01": 30700, - "2021-01-01": 29900, - "2015-01-01": 29900 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[36].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[36].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 623.096003138608, - "2034-02-01": 608.874348690247, - "2033-02-01": 595.434103826962, - "2032-02-01": 582.462704714721, - "2031-02-01": 569.647587519495, - "2030-02-01": 557.145034158299, - "2029-02-01": 544.955044631133, - "2028-02-01": 533.077618937996, - "2027-02-01": 521.20019324486, - "2026-02-01": 509.322767551724, - "2025-02-01": 497.289059941573, - "2024-12-01": 493.233544195035, - "2024-11-01": 493.058508447978, - "2024-10-01": 493.325750526074, - "2024-09-01": 492.758447167309, - "2024-08-01": 491.969223486384, - "2024-07-01": 491.569141778826, - "2024-06-01": 490.998712781721, - "2024-05-01": 490.833053949685, - "2024-04-01": 490.018825162037, - "2024-03-01": 488.118437051135, - "2024-02-01": 484.983421795815, - "2024-01-01": 482, - "2023-01-01": 494, - "2022-01-01": 495, - "2021-01-01": 681, - "2015-01-01": 681 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[37]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[37]", - "description": null, - "label": "bracket 38" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[37].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[37].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 42013.7346514621, - "2034-02-01": 41054.8056689482, - "2033-02-01": 40148.5650920669, - "2032-02-01": 39273.9375585652, - "2031-02-01": 38409.84770619, - "2030-02-01": 37566.8332160679, - "2029-02-01": 36744.8940881988, - "2028-02-01": 35944.0303225827, - "2027-02-01": 35143.1665569667, - "2026-02-01": 34342.3027913507, - "2025-02-01": 33530.9013446081, - "2024-12-01": 33257.4485193747, - "2024-11-01": 33245.646316513, - "2024-10-01": 33263.6657512394, - "2024-09-01": 33225.4139687501, - "2024-08-01": 33172.1986790611, - "2024-07-01": 33145.2222153772, - "2024-06-01": 33106.7596792654, - "2024-05-01": 33095.5897372713, - "2024-04-01": 33040.6884186021, - "2024-03-01": 32912.5502161035, - "2024-02-01": 32701.1643327054, - "2024-01-01": 32500, - "2023-01-01": 31700, - "2022-01-01": 30800, - "2021-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[37].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[37].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 637.316036405257, - "2034-02-01": 622.769821378199, - "2033-02-01": 609.022848935046, - "2032-02-01": 595.755422042235, - "2031-02-01": 582.647843666205, - "2030-02-01": 569.859962323737, - "2029-02-01": 557.391778014831, - "2028-02-01": 545.243290739486, - "2027-02-01": 533.094803464141, - "2026-02-01": 520.946316188796, - "2025-02-01": 508.637980396671, - "2024-12-01": 504.489911386208, - "2024-11-01": 504.310881047413, - "2024-10-01": 504.584222011108, - "2024-09-01": 504.003971895194, - "2024-08-01": 503.196736885451, - "2024-07-01": 502.787524682492, - "2024-06-01": 502.204077596242, - "2024-05-01": 502.034638168454, - "2024-04-01": 501.201827396026, - "2024-03-01": 499.25806943197, - "2024-02-01": 496.051508185347, - "2024-01-01": 493, - "2023-01-01": 506, - "2022-01-01": 507, - "2021-01-01": 693, - "2015-01-01": 693 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[38]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[38]", - "description": null, - "label": "bracket 39" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[38].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[38].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 42143.007681159, - "2034-02-01": 41181.1281479296, - "2033-02-01": 40272.099138504, - "2032-02-01": 39394.7804433608, - "2031-02-01": 38528.0318529783, - "2030-02-01": 37682.4234721173, - "2029-02-01": 36857.9553007778, - "2028-02-01": 36054.6273389599, - "2027-02-01": 35251.299377142, - "2026-02-01": 34447.9714153241, - "2025-02-01": 33634.0733487454, - "2024-12-01": 33359.7791302036, - "2024-11-01": 33347.9406128715, - "2024-10-01": 33366.0154920124, - "2024-09-01": 33327.6460117309, - "2024-08-01": 33274.266982689, - "2024-07-01": 33247.2075145015, - "2024-06-01": 33208.6266321247, - "2024-05-01": 33197.4223210783, - "2024-04-01": 33142.3520752747, - "2024-03-01": 33013.8196013838, - "2024-02-01": 32801.783299883, - "2024-01-01": 32600, - "2023-01-01": 31800, - "2022-01-01": 30900, - "2021-01-01": 30100, - "2015-01-01": 30100 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[38].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[38].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 651.536069671905, - "2034-02-01": 636.665294066151, - "2033-02-01": 622.61159404313, - "2032-02-01": 609.048139369749, - "2031-02-01": 595.648099812916, - "2030-02-01": 582.574890489176, - "2029-02-01": 569.828511398529, - "2028-02-01": 557.408962540976, - "2027-02-01": 544.989413683422, - "2026-02-01": 532.569864825869, - "2025-02-01": 519.986900851769, - "2024-12-01": 515.746278577381, - "2024-11-01": 515.563253646848, - "2024-10-01": 515.842693496143, - "2024-09-01": 515.249496623079, - "2024-08-01": 514.424250284517, - "2024-07-01": 514.005907586158, - "2024-06-01": 513.409442410762, - "2024-05-01": 513.236222387223, - "2024-04-01": 512.384829630014, - "2024-03-01": 510.397701812805, - "2024-02-01": 507.119594574878, - "2024-01-01": 504, - "2023-01-01": 518, - "2022-01-01": 519, - "2021-01-01": 705, - "2015-01-01": 705 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[39]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[39]", - "description": null, - "label": "bracket 40" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[39].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[39].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 42272.2807108558, - "2034-02-01": 41307.450626911, - "2033-02-01": 40395.6331849412, - "2032-02-01": 39515.6233281564, - "2031-02-01": 38646.2159997666, - "2030-02-01": 37798.0137281667, - "2029-02-01": 36971.0165133569, - "2028-02-01": 36165.2243553371, - "2027-02-01": 35359.4321973173, - "2026-02-01": 34553.6400392975, - "2025-02-01": 33737.2453528826, - "2024-12-01": 33462.1097410324, - "2024-11-01": 33450.23490923, - "2024-10-01": 33468.3652327855, - "2024-09-01": 33429.8780547117, - "2024-08-01": 33376.3352863169, - "2024-07-01": 33349.1928136257, - "2024-06-01": 33310.493584984, - "2024-05-01": 33299.2549048853, - "2024-04-01": 33244.0157319473, - "2024-03-01": 33115.0889866642, - "2024-02-01": 32902.4022670605, - "2024-01-01": 32700, - "2023-01-01": 31900, - "2022-01-01": 31000, - "2021-01-01": 30200, - "2015-01-01": 30200 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[39].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[39].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 664.463372641586, - "2034-02-01": 649.297541964289, - "2033-02-01": 634.964998686843, - "2032-02-01": 621.132427849308, - "2031-02-01": 607.466514491743, - "2030-02-01": 594.133916094119, - "2029-02-01": 581.134632656436, - "2028-02-01": 568.468664178693, - "2027-02-01": 555.80269570095, - "2026-02-01": 543.136727223208, - "2025-02-01": 530.304101265495, - "2024-12-01": 525.979339660265, - "2024-11-01": 525.792683282699, - "2024-10-01": 526.077667573448, - "2024-09-01": 525.472700921156, - "2024-08-01": 524.631080647306, - "2024-07-01": 524.204437498582, - "2024-06-01": 523.59613769669, - "2024-05-01": 523.419480767921, - "2024-04-01": 522.551195297276, - "2024-03-01": 520.524640340837, - "2024-02-01": 517.181491292633, - "2024-01-01": 514, - "2023-01-01": 529, - "2022-01-01": 531, - "2021-01-01": 717, - "2015-01-01": 717 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[40]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[40]", - "description": null, - "label": "bracket 41" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[40].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[40].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 42401.5537405526, - "2034-02-01": 41433.7731058924, - "2033-02-01": 40519.1672313783, - "2032-02-01": 39636.466212952, - "2031-02-01": 38764.4001465548, - "2030-02-01": 37913.6039842162, - "2029-02-01": 37084.077725936, - "2028-02-01": 36275.8213717143, - "2027-02-01": 35467.5650174926, - "2026-02-01": 34659.3086632708, - "2025-02-01": 33840.4173570199, - "2024-12-01": 33564.4403518613, - "2024-11-01": 33552.5292055885, - "2024-10-01": 33570.7149735585, - "2024-09-01": 33532.1100976924, - "2024-08-01": 33478.4035899448, - "2024-07-01": 33451.17811275, - "2024-06-01": 33412.3605378433, - "2024-05-01": 33401.0874886923, - "2024-04-01": 33345.67938862, - "2024-03-01": 33216.3583719445, - "2024-02-01": 33003.0212342381, - "2024-01-01": 32800, - "2023-01-01": 32000, - "2022-01-01": 31100, - "2021-01-01": 30300, - "2015-01-01": 30300 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[40].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[40].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 678.683405908235, - "2034-02-01": 663.19301465224, - "2033-02-01": 648.553743794927, - "2032-02-01": 634.425145176822, - "2031-02-01": 620.466770638454, - "2030-02-01": 606.848844259558, - "2029-02-01": 593.571366040134, - "2028-02-01": 580.634335980183, - "2027-02-01": 567.697305920231, - "2026-02-01": 554.76027586028, - "2025-02-01": 541.653021720593, - "2024-12-01": 537.235706851438, - "2024-11-01": 537.045055882134, - "2024-10-01": 537.336139058482, - "2024-09-01": 536.71822564904, - "2024-08-01": 535.858594046372, - "2024-07-01": 535.422820402248, - "2024-06-01": 534.801502511211, - "2024-05-01": 534.62106498669, - "2024-04-01": 533.734197531265, - "2024-03-01": 531.664272721672, - "2024-02-01": 528.249577682164, - "2024-01-01": 525, - "2023-01-01": 541, - "2022-01-01": 543, - "2021-01-01": 729, - "2015-01-01": 729 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[41]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[41]", - "description": null, - "label": "bracket 42" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[41].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[41].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 42530.8267702494, - "2034-02-01": 41560.0955848737, - "2033-02-01": 40642.7012778154, - "2032-02-01": 39757.3090977475, - "2031-02-01": 38882.5842933431, - "2030-02-01": 38029.1942402656, - "2029-02-01": 37197.1389385151, - "2028-02-01": 36386.4183880915, - "2027-02-01": 35575.6978376678, - "2026-02-01": 34764.9772872442, - "2025-02-01": 33943.5893611571, - "2024-12-01": 33666.7709626901, - "2024-11-01": 33654.823501947, - "2024-10-01": 33673.0647143316, - "2024-09-01": 33634.3421406732, - "2024-08-01": 33580.4718935727, - "2024-07-01": 33553.1634118742, - "2024-06-01": 33514.2274907025, - "2024-05-01": 33502.9200724993, - "2024-04-01": 33447.3430452926, - "2024-03-01": 33317.6277572248, - "2024-02-01": 33103.6402014156, - "2024-01-01": 32900, - "2023-01-01": 32100, - "2022-01-01": 31200, - "2021-01-01": 30400, - "2015-01-01": 30400 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[41].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[41].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 692.903439174883, - "2034-02-01": 677.088487340192, - "2033-02-01": 662.142488903011, - "2032-02-01": 647.717862504337, - "2031-02-01": 633.467026785164, - "2030-02-01": 619.563772424996, - "2029-02-01": 606.008099423832, - "2028-02-01": 592.800007781672, - "2027-02-01": 579.591916139513, - "2026-02-01": 566.383824497353, - "2025-02-01": 553.001942175691, - "2024-12-01": 548.492074042611, - "2024-11-01": 548.297428481569, - "2024-10-01": 548.594610543517, - "2024-09-01": 547.963750376925, - "2024-08-01": 547.086107445439, - "2024-07-01": 546.641203305914, - "2024-06-01": 546.006867325731, - "2024-05-01": 545.822649205459, - "2024-04-01": 544.917199765253, - "2024-03-01": 542.803905102507, - "2024-02-01": 539.317664071695, - "2024-01-01": 536, - "2023-01-01": 553, - "2022-01-01": 554, - "2021-01-01": 741, - "2015-01-01": 741 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[42]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[42]", - "description": null, - "label": "bracket 43" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[42].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[42].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 42660.0997999462, - "2034-02-01": 41686.4180638551, - "2033-02-01": 40766.2353242526, - "2032-02-01": 39878.1519825431, - "2031-02-01": 39000.7684401314, - "2030-02-01": 38144.7844963151, - "2029-02-01": 37310.2001510941, - "2028-02-01": 36497.0154044686, - "2027-02-01": 35683.8306578431, - "2026-02-01": 34870.6459112176, - "2025-02-01": 34046.7613652944, - "2024-12-01": 33769.101573519, - "2024-11-01": 33757.1177983055, - "2024-10-01": 33775.4144551046, - "2024-09-01": 33736.574183654, - "2024-08-01": 33682.5401972005, - "2024-07-01": 33655.1487109984, - "2024-06-01": 33616.0944435618, - "2024-05-01": 33604.7526563062, - "2024-04-01": 33549.0067019652, - "2024-03-01": 33418.8971425051, - "2024-02-01": 33204.2591685932, - "2024-01-01": 33000, - "2023-01-01": 32200, - "2022-01-01": 31300, - "2021-01-01": 30500, - "2015-01-01": 30500 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[42].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[42].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 707.123472441532, - "2034-02-01": 690.983960028144, - "2033-02-01": 675.731234011095, - "2032-02-01": 661.010579831851, - "2031-02-01": 646.467282931875, - "2030-02-01": 632.278700590435, - "2029-02-01": 618.44483280753, - "2028-02-01": 604.965679583162, - "2027-02-01": 591.486526358794, - "2026-02-01": 578.007373134425, - "2025-02-01": 564.350862630789, - "2024-12-01": 559.748441233784, - "2024-11-01": 559.549801081004, - "2024-10-01": 559.853082028552, - "2024-09-01": 559.209275104809, - "2024-08-01": 558.313620844506, - "2024-07-01": 557.85958620958, - "2024-06-01": 557.212232140252, - "2024-05-01": 557.024233424228, - "2024-04-01": 556.100201999241, - "2024-03-01": 553.943537483342, - "2024-02-01": 550.385750461226, - "2024-01-01": 547, - "2023-01-01": 565, - "2022-01-01": 566, - "2021-01-01": 753, - "2015-01-01": 753 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[43]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[43]", - "description": null, - "label": "bracket 44" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[43].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[43].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 42789.372829643, - "2034-02-01": 41812.7405428365, - "2033-02-01": 40889.7693706897, - "2032-02-01": 39998.9948673387, - "2031-02-01": 39118.9525869197, - "2030-02-01": 38260.3747523645, - "2029-02-01": 37423.2613636732, - "2028-02-01": 36607.6124208458, - "2027-02-01": 35791.9634780184, - "2026-02-01": 34976.314535191, - "2025-02-01": 34149.9333694316, - "2024-12-01": 33871.4321843478, - "2024-11-01": 33859.4120946641, - "2024-10-01": 33877.7641958777, - "2024-09-01": 33838.8062266347, - "2024-08-01": 33784.6085008284, - "2024-07-01": 33757.1340101227, - "2024-06-01": 33717.9613964211, - "2024-05-01": 33706.5852401132, - "2024-04-01": 33650.6703586378, - "2024-03-01": 33520.1665277854, - "2024-02-01": 33304.8781357707, - "2024-01-01": 33100, - "2023-01-01": 32300, - "2022-01-01": 31400, - "2021-01-01": 30600, - "2015-01-01": 30600 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[43].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[43].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 721.343505708181, - "2034-02-01": 704.879432716096, - "2033-02-01": 689.31997911918, - "2032-02-01": 674.303297159366, - "2031-02-01": 659.467539078585, - "2030-02-01": 644.993628755873, - "2029-02-01": 630.881566191228, - "2028-02-01": 617.131351384652, - "2027-02-01": 603.381136578075, - "2026-02-01": 589.630921771498, - "2025-02-01": 575.699783085887, - "2024-12-01": 571.004808424957, - "2024-11-01": 570.802173680439, - "2024-10-01": 571.111553513587, - "2024-09-01": 570.454799832694, - "2024-08-01": 569.541134243573, - "2024-07-01": 569.077969113246, - "2024-06-01": 568.417596954772, - "2024-05-01": 568.225817642996, - "2024-04-01": 567.28320423323, - "2024-03-01": 565.083169864178, - "2024-02-01": 561.453836850757, - "2024-01-01": 558, - "2023-01-01": 576, - "2022-01-01": 578, - "2021-01-01": 765, - "2015-01-01": 765 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[44]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[44]", - "description": null, - "label": "bracket 45" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[44].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[44].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 42918.6458593398, - "2034-02-01": 41939.0630218179, - "2033-02-01": 41013.3034171268, - "2032-02-01": 40119.8377521343, - "2031-02-01": 39237.1367337079, - "2030-02-01": 38375.9650084139, - "2029-02-01": 37536.3225762523, - "2028-02-01": 36718.209437223, - "2027-02-01": 35900.0962981937, - "2026-02-01": 35081.9831591644, - "2025-02-01": 34253.1053735689, - "2024-12-01": 33973.7627951767, - "2024-11-01": 33961.7063910226, - "2024-10-01": 33980.1139366507, - "2024-09-01": 33941.0382696155, - "2024-08-01": 33886.6768044563, - "2024-07-01": 33859.1193092469, - "2024-06-01": 33819.8283492804, - "2024-05-01": 33808.4178239202, - "2024-04-01": 33752.3340153104, - "2024-03-01": 33621.4359130658, - "2024-02-01": 33405.4971029483, - "2024-01-01": 33200, - "2023-01-01": 32400, - "2022-01-01": 31500, - "2021-01-01": 30700, - "2015-01-01": 30700 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[44].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[44].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 735.56353897483, - "2034-02-01": 718.774905404047, - "2033-02-01": 702.908724227264, - "2032-02-01": 687.59601448688, - "2031-02-01": 672.467795225296, - "2030-02-01": 657.708556921311, - "2029-02-01": 643.318299574926, - "2028-02-01": 629.297023186141, - "2027-02-01": 615.275746797356, - "2026-02-01": 601.25447040857, - "2025-02-01": 587.048703540985, - "2024-12-01": 582.26117561613, - "2024-11-01": 582.054546279874, - "2024-10-01": 582.370024998622, - "2024-09-01": 581.700324560579, - "2024-08-01": 580.76864764264, - "2024-07-01": 580.296352016912, - "2024-06-01": 579.622961769293, - "2024-05-01": 579.427401861765, - "2024-04-01": 578.466206467218, - "2024-03-01": 576.222802245013, - "2024-02-01": 572.521923240288, - "2024-01-01": 569, - "2023-01-01": 588, - "2022-01-01": 590, - "2021-01-01": 777, - "2015-01-01": 777 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[45]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[45]", - "description": null, - "label": "bracket 46" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[45].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[45].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 43047.9188890366, - "2034-02-01": 42065.3855007992, - "2033-02-01": 41136.8374635639, - "2032-02-01": 40240.6806369299, - "2031-02-01": 39355.3208804962, - "2030-02-01": 38491.5552644634, - "2029-02-01": 37649.3837888314, - "2028-02-01": 36828.8064536002, - "2027-02-01": 36008.229118369, - "2026-02-01": 35187.6517831378, - "2025-02-01": 34356.2773777062, - "2024-12-01": 34076.0934060055, - "2024-11-01": 34064.0006873811, - "2024-10-01": 34082.4636774237, - "2024-09-01": 34043.2703125963, - "2024-08-01": 33988.7451080842, - "2024-07-01": 33961.1046083711, - "2024-06-01": 33921.6953021396, - "2024-05-01": 33910.2504077272, - "2024-04-01": 33853.9976719831, - "2024-03-01": 33722.7052983461, - "2024-02-01": 33506.1160701258, - "2024-01-01": 33300, - "2023-01-01": 32500, - "2022-01-01": 31600, - "2021-01-01": 30800, - "2015-01-01": 30800 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[45].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[45].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 749.783572241478, - "2034-02-01": 732.670378091999, - "2033-02-01": 716.497469335348, - "2032-02-01": 700.888731814394, - "2031-02-01": 685.468051372006, - "2030-02-01": 670.42348508675, - "2029-02-01": 655.755032958624, - "2028-02-01": 641.462694987631, - "2027-02-01": 627.170357016637, - "2026-02-01": 612.878019045643, - "2025-02-01": 598.397623996083, - "2024-12-01": 593.517542807303, - "2024-11-01": 593.30691887931, - "2024-10-01": 593.628496483657, - "2024-09-01": 592.945849288463, - "2024-08-01": 591.996161041707, - "2024-07-01": 591.514734920579, - "2024-06-01": 590.828326583814, - "2024-05-01": 590.628986080534, - "2024-04-01": 589.649208701207, - "2024-03-01": 587.362434625848, - "2024-02-01": 583.590009629819, - "2024-01-01": 580, - "2023-01-01": 600, - "2022-01-01": 602, - "2021-01-01": 789, - "2015-01-01": 789 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[46]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[46]", - "description": null, - "label": "bracket 47" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[46].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[46].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 43177.1919187334, - "2034-02-01": 42191.7079797806, - "2033-02-01": 41260.3715100011, - "2032-02-01": 40361.5235217255, - "2031-02-01": 39473.5050272845, - "2030-02-01": 38607.1455205128, - "2029-02-01": 37762.4450014104, - "2028-02-01": 36939.4034699773, - "2027-02-01": 36116.3619385443, - "2026-02-01": 35293.3204071112, - "2025-02-01": 34459.4493818434, - "2024-12-01": 34178.4240168344, - "2024-11-01": 34166.2949837396, - "2024-10-01": 34184.8134181968, - "2024-09-01": 34145.502355577, - "2024-08-01": 34090.8134117121, - "2024-07-01": 34063.0899074954, - "2024-06-01": 34023.5622549989, - "2024-05-01": 34012.0829915342, - "2024-04-01": 33955.6613286557, - "2024-03-01": 33823.9746836264, - "2024-02-01": 33606.7350373034, - "2024-01-01": 33400, - "2023-01-01": 32600, - "2022-01-01": 31700, - "2021-01-01": 30900, - "2015-01-01": 30900 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[46].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[46].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 764.003605508127, - "2034-02-01": 746.565850779951, - "2033-02-01": 730.086214443432, - "2032-02-01": 714.181449141909, - "2031-02-01": 698.468307518717, - "2030-02-01": 683.138413252188, - "2029-02-01": 668.191766342322, - "2028-02-01": 653.62836678912, - "2027-02-01": 639.064967235918, - "2026-02-01": 624.501567682715, - "2025-02-01": 609.746544451181, - "2024-12-01": 604.773909998476, - "2024-11-01": 604.559291478745, - "2024-10-01": 604.886967968692, - "2024-09-01": 604.191374016348, - "2024-08-01": 603.223674440773, - "2024-07-01": 602.733117824245, - "2024-06-01": 602.033691398334, - "2024-05-01": 601.830570299303, - "2024-04-01": 600.832210935195, - "2024-03-01": 598.502067006683, - "2024-02-01": 594.658096019351, - "2024-01-01": 591, - "2023-01-01": 611, - "2022-01-01": 614, - "2021-01-01": 801, - "2015-01-01": 801 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[47]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[47]", - "description": null, - "label": "bracket 48" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[47].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[47].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 43306.4649484302, - "2034-02-01": 42318.030458762, - "2033-02-01": 41383.9055564382, - "2032-02-01": 40482.366406521, - "2031-02-01": 39591.6891740728, - "2030-02-01": 38722.7357765623, - "2029-02-01": 37875.5062139895, - "2028-02-01": 37050.0004863545, - "2027-02-01": 36224.4947587195, - "2026-02-01": 35398.9890310845, - "2025-02-01": 34562.6213859807, - "2024-12-01": 34280.7546276632, - "2024-11-01": 34268.5892800981, - "2024-10-01": 34287.1631589698, - "2024-09-01": 34247.7343985578, - "2024-08-01": 34192.88171534, - "2024-07-01": 34165.0752066196, - "2024-06-01": 34125.4292078582, - "2024-05-01": 34113.9155753412, - "2024-04-01": 34057.3249853283, - "2024-03-01": 33925.2440689067, - "2024-02-01": 33707.354004481, - "2024-01-01": 33500, - "2023-01-01": 32700, - "2022-01-01": 31800, - "2021-01-01": 31000, - "2015-01-01": 31000 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[47].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[47].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 778.223638774776, - "2034-02-01": 760.461323467902, - "2033-02-01": 743.674959551516, - "2032-02-01": 727.474166469423, - "2031-02-01": 711.468563665427, - "2030-02-01": 695.853341417626, - "2029-02-01": 680.62849972602, - "2028-02-01": 665.79403859061, - "2027-02-01": 650.959577455199, - "2026-02-01": 636.125116319788, - "2025-02-01": 621.09546490628, - "2024-12-01": 616.030277189649, - "2024-11-01": 615.81166407818, - "2024-10-01": 616.145439453727, - "2024-09-01": 615.436898744233, - "2024-08-01": 614.45118783984, - "2024-07-01": 613.951500727911, - "2024-06-01": 613.239056212855, - "2024-05-01": 613.032154518071, - "2024-04-01": 612.015213169183, - "2024-03-01": 609.641699387518, - "2024-02-01": 605.726182408882, - "2024-01-01": 602, - "2023-01-01": 623, - "2022-01-01": 626, - "2021-01-01": 813, - "2015-01-01": 813 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[48]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[48]", - "description": null, - "label": "bracket 49" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[48].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[48].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 43435.737978127, - "2034-02-01": 42444.3529377434, - "2033-02-01": 41507.4396028753, - "2032-02-01": 40603.2092913166, - "2031-02-01": 39709.873320861, - "2030-02-01": 38838.3260326117, - "2029-02-01": 37988.5674265686, - "2028-02-01": 37160.5975027317, - "2027-02-01": 36332.6275788948, - "2026-02-01": 35504.6576550579, - "2025-02-01": 34665.7933901179, - "2024-12-01": 34383.0852384921, - "2024-11-01": 34370.8835764566, - "2024-10-01": 34389.5128997429, - "2024-09-01": 34349.9664415386, - "2024-08-01": 34294.9500189678, - "2024-07-01": 34267.0605057439, - "2024-06-01": 34227.2961607175, - "2024-05-01": 34215.7481591482, - "2024-04-01": 34158.9886420009, - "2024-03-01": 34026.513454187, - "2024-02-01": 33807.9729716585, - "2024-01-01": 33600, - "2023-01-01": 32800, - "2022-01-01": 31900, - "2021-01-01": 31100, - "2015-01-01": 31100 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[48].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[48].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 792.443672041425, - "2034-02-01": 774.356796155854, - "2033-02-01": 757.263704659601, - "2032-02-01": 740.766883796937, - "2031-02-01": 724.468819812137, - "2030-02-01": 708.568269583065, - "2029-02-01": 693.065233109718, - "2028-02-01": 677.959710392099, - "2027-02-01": 662.85418767448, - "2026-02-01": 647.74866495686, - "2025-02-01": 632.444385361378, - "2024-12-01": 627.286644380822, - "2024-11-01": 627.064036677615, - "2024-10-01": 627.403910938761, - "2024-09-01": 626.682423472117, - "2024-08-01": 625.678701238907, - "2024-07-01": 625.169883631577, - "2024-06-01": 624.444421027375, - "2024-05-01": 624.23373873684, - "2024-04-01": 623.198215403172, - "2024-03-01": 620.781331768353, - "2024-02-01": 616.794268798413, - "2024-01-01": 613, - "2023-01-01": 635, - "2022-01-01": 638, - "2021-01-01": 825, - "2015-01-01": 825 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[49]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[49]", - "description": null, - "label": "bracket 50" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[49].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[49].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 43565.0110078238, - "2034-02-01": 42570.6754167248, - "2033-02-01": 41630.9736493125, - "2032-02-01": 40724.0521761122, - "2031-02-01": 39828.0574676493, - "2030-02-01": 38953.9162886611, - "2029-02-01": 38101.6286391476, - "2028-02-01": 37271.1945191089, - "2027-02-01": 36440.7603990701, - "2026-02-01": 35610.3262790313, - "2025-02-01": 34768.9653942552, - "2024-12-01": 34485.4158493209, - "2024-11-01": 34473.1778728151, - "2024-10-01": 34491.8626405159, - "2024-09-01": 34452.1984845193, - "2024-08-01": 34397.0183225957, - "2024-07-01": 34369.0458048681, - "2024-06-01": 34329.1631135768, - "2024-05-01": 34317.5807429552, - "2024-04-01": 34260.6522986736, - "2024-03-01": 34127.7828394674, - "2024-02-01": 33908.5919388361, - "2024-01-01": 33700, - "2023-01-01": 32900, - "2022-01-01": 32000, - "2021-01-01": 31200, - "2015-01-01": 31200 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[49].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[49].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 805.370975011105, - "2034-02-01": 786.989044053992, - "2033-02-01": 769.617109303313, - "2032-02-01": 752.851172276496, - "2031-02-01": 736.287234490965, - "2030-02-01": 720.127295188009, - "2029-02-01": 704.371354367626, - "2028-02-01": 689.019412029817, - "2027-02-01": 673.667469692008, - "2026-02-01": 658.315527354199, - "2025-02-01": 642.761585775103, - "2024-12-01": 637.519705463707, - "2024-11-01": 637.293466313465, - "2024-10-01": 637.638885016066, - "2024-09-01": 636.905627770194, - "2024-08-01": 635.885531601695, - "2024-07-01": 635.368413544001, - "2024-06-01": 634.631116313303, - "2024-05-01": 634.416997117539, - "2024-04-01": 633.364581070434, - "2024-03-01": 630.908270296385, - "2024-02-01": 626.856165516168, - "2024-01-01": 623, - "2023-01-01": 646, - "2022-01-01": 650, - "2021-01-01": 837, - "2015-01-01": 837 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[50]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[50]", - "description": null, - "label": "bracket 51" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[50].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[50].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 43694.2840375206, - "2034-02-01": 42696.9978957061, - "2033-02-01": 41754.5076957496, - "2032-02-01": 40844.8950609078, - "2031-02-01": 39946.2416144376, - "2030-02-01": 39069.5065447106, - "2029-02-01": 38214.6898517267, - "2028-02-01": 37381.7915354861, - "2027-02-01": 36548.8932192454, - "2026-02-01": 35715.9949030047, - "2025-02-01": 34872.1373983924, - "2024-12-01": 34587.7464601497, - "2024-11-01": 34575.4721691736, - "2024-10-01": 34594.212381289, - "2024-09-01": 34554.4305275001, - "2024-08-01": 34499.0866262236, - "2024-07-01": 34471.0311039923, - "2024-06-01": 34431.030066436, - "2024-05-01": 34419.4133267622, - "2024-04-01": 34362.3159553462, - "2024-03-01": 34229.0522247477, - "2024-02-01": 34009.2109060136, - "2024-01-01": 33800, - "2023-01-01": 33000, - "2022-01-01": 32100, - "2021-01-01": 31300, - "2015-01-01": 31300 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[50].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[50].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 819.591008277754, - "2034-02-01": 800.884516741944, - "2033-02-01": 783.205854411398, - "2032-02-01": 766.14388960401, - "2031-02-01": 749.287490637676, - "2030-02-01": 732.842223353447, - "2029-02-01": 716.808087751324, - "2028-02-01": 701.185083831306, - "2027-02-01": 685.562079911289, - "2026-02-01": 669.939075991272, - "2025-02-01": 654.110506230201, - "2024-12-01": 648.77607265488, - "2024-11-01": 648.5458389129, - "2024-10-01": 648.897356501101, - "2024-09-01": 648.151152498079, - "2024-08-01": 647.113045000762, - "2024-07-01": 646.586796447667, - "2024-06-01": 645.836481127824, - "2024-05-01": 645.618581336308, - "2024-04-01": 644.547583304422, - "2024-03-01": 642.04790267722, - "2024-02-01": 637.924251905699, - "2024-01-01": 634, - "2023-01-01": 658, - "2022-01-01": 662, - "2021-01-01": 849, - "2015-01-01": 849 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[51]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[51]", - "description": null, - "label": "bracket 52" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[51].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[51].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 43823.5570672174, - "2034-02-01": 42823.3203746875, - "2033-02-01": 41878.0417421867, - "2032-02-01": 40965.7379457034, - "2031-02-01": 40064.4257612259, - "2030-02-01": 39185.09680076, - "2029-02-01": 38327.7510643058, - "2028-02-01": 37492.3885518632, - "2027-02-01": 36657.0260394207, - "2026-02-01": 35821.6635269781, - "2025-02-01": 34975.3094025297, - "2024-12-01": 34690.0770709786, - "2024-11-01": 34677.7664655321, - "2024-10-01": 34696.562122062, - "2024-09-01": 34656.6625704809, - "2024-08-01": 34601.1549298515, - "2024-07-01": 34573.0164031166, - "2024-06-01": 34532.8970192953, - "2024-05-01": 34521.2459105691, - "2024-04-01": 34463.9796120188, - "2024-03-01": 34330.321610028, - "2024-02-01": 34109.8298731912, - "2024-01-01": 33900, - "2023-01-01": 33100, - "2022-01-01": 32200, - "2021-01-01": 31400, - "2015-01-01": 31400 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[51].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[51].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 833.811041544403, - "2034-02-01": 814.779989429895, - "2033-02-01": 796.794599519482, - "2032-02-01": 779.436606931525, - "2031-02-01": 762.287746784386, - "2030-02-01": 745.557151518885, - "2029-02-01": 729.244821135022, - "2028-02-01": 713.350755632796, - "2027-02-01": 697.45669013057, - "2026-02-01": 681.562624628344, - "2025-02-01": 665.4594266853, - "2024-12-01": 660.032439846053, - "2024-11-01": 659.798211512336, - "2024-10-01": 660.155827986136, - "2024-09-01": 659.396677225964, - "2024-08-01": 658.340558399829, - "2024-07-01": 657.805179351333, - "2024-06-01": 657.041845942344, - "2024-05-01": 656.820165555077, - "2024-04-01": 655.730585538411, - "2024-03-01": 653.187535058055, - "2024-02-01": 648.99233829523, - "2024-01-01": 645, - "2023-01-01": 670, - "2022-01-01": 673, - "2021-01-01": 861, - "2015-01-01": 861 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[52]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[52]", - "description": null, - "label": "bracket 53" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[52].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[52].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 43952.8300969142, - "2034-02-01": 42949.6428536689, - "2033-02-01": 42001.5757886238, - "2032-02-01": 41086.580830499, - "2031-02-01": 40182.6099080142, - "2030-02-01": 39300.6870568095, - "2029-02-01": 38440.8122768849, - "2028-02-01": 37602.9855682404, - "2027-02-01": 36765.1588595959, - "2026-02-01": 35927.3321509515, - "2025-02-01": 35078.481406667, - "2024-12-01": 34792.4076818074, - "2024-11-01": 34780.0607618906, - "2024-10-01": 34798.9118628351, - "2024-09-01": 34758.8946134617, - "2024-08-01": 34703.2232334794, - "2024-07-01": 34675.0017022408, - "2024-06-01": 34634.7639721546, - "2024-05-01": 34623.0784943761, - "2024-04-01": 34565.6432686914, - "2024-03-01": 34431.5909953083, - "2024-02-01": 34210.4488403687, - "2024-01-01": 34000, - "2023-01-01": 33200, - "2022-01-01": 32300, - "2021-01-01": 31500, - "2015-01-01": 31500 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[52].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[52].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 848.031074811051, - "2034-02-01": 828.675462117847, - "2033-02-01": 810.383344627566, - "2032-02-01": 792.729324259039, - "2031-02-01": 775.288002931097, - "2030-02-01": 758.272079684324, - "2029-02-01": 741.68155451872, - "2028-02-01": 725.516427434286, - "2027-02-01": 709.351300349851, - "2026-02-01": 693.186173265417, - "2025-02-01": 676.808347140398, - "2024-12-01": 671.288807037226, - "2024-11-01": 671.050584111771, - "2024-10-01": 671.414299471171, - "2024-09-01": 670.642201953848, - "2024-08-01": 669.568071798896, - "2024-07-01": 669.023562254999, - "2024-06-01": 668.247210756865, - "2024-05-01": 668.021749773845, - "2024-04-01": 666.913587772399, - "2024-03-01": 664.32716743889, - "2024-02-01": 660.060424684761, - "2024-01-01": 656, - "2023-01-01": 682, - "2022-01-01": 685, - "2021-01-01": 873, - "2015-01-01": 873 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[53]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[53]", - "description": null, - "label": "bracket 54" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[53].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[53].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 44082.1031266111, - "2034-02-01": 43075.9653326503, - "2033-02-01": 42125.109835061, - "2032-02-01": 41207.4237152946, - "2031-02-01": 40300.7940548024, - "2030-02-01": 39416.2773128589, - "2029-02-01": 38553.8734894639, - "2028-02-01": 37713.5825846176, - "2027-02-01": 36873.2916797712, - "2026-02-01": 36033.0007749249, - "2025-02-01": 35181.6534108042, - "2024-12-01": 34894.7382926363, - "2024-11-01": 34882.3550582491, - "2024-10-01": 34901.2616036081, - "2024-09-01": 34861.1266564424, - "2024-08-01": 34805.2915371072, - "2024-07-01": 34776.987001365, - "2024-06-01": 34736.6309250139, - "2024-05-01": 34724.9110781831, - "2024-04-01": 34667.306925364, - "2024-03-01": 34532.8603805886, - "2024-02-01": 34311.0678075463, - "2024-01-01": 34100, - "2023-01-01": 33300, - "2022-01-01": 32400, - "2021-01-01": 31600, - "2015-01-01": 31600 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[53].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[53].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 862.2511080777, - "2034-02-01": 842.570934805799, - "2033-02-01": 823.97208973565, - "2032-02-01": 806.022041586553, - "2031-02-01": 788.288259077807, - "2030-02-01": 770.987007849762, - "2029-02-01": 754.118287902418, - "2028-02-01": 737.682099235775, - "2027-02-01": 721.245910569132, - "2026-02-01": 704.809721902489, - "2025-02-01": 688.157267595496, - "2024-12-01": 682.545174228399, - "2024-11-01": 682.302956711206, - "2024-10-01": 682.672770956205, - "2024-09-01": 681.887726681733, - "2024-08-01": 680.795585197963, - "2024-07-01": 680.241945158665, - "2024-06-01": 679.452575571386, - "2024-05-01": 679.223333992614, - "2024-04-01": 678.096590006388, - "2024-03-01": 675.466799819725, - "2024-02-01": 671.128511074292, - "2024-01-01": 667, - "2023-01-01": 693, - "2022-01-01": 697, - "2021-01-01": 885, - "2015-01-01": 885 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[54]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[54]", - "description": null, - "label": "bracket 55" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[54].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[54].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 44211.3761563079, - "2034-02-01": 43202.2878116317, - "2033-02-01": 42248.6438814981, - "2032-02-01": 41328.2666000901, - "2031-02-01": 40418.9782015907, - "2030-02-01": 39531.8675689083, - "2029-02-01": 38666.934702043, - "2028-02-01": 37824.1796009948, - "2027-02-01": 36981.4244999465, - "2026-02-01": 36138.6693988982, - "2025-02-01": 35284.8254149415, - "2024-12-01": 34997.0689034651, - "2024-11-01": 34984.6493546076, - "2024-10-01": 35003.6113443812, - "2024-09-01": 34963.3586994232, - "2024-08-01": 34907.3598407351, - "2024-07-01": 34878.9723004893, - "2024-06-01": 34838.4978778731, - "2024-05-01": 34826.7436619901, - "2024-04-01": 34768.9705820367, - "2024-03-01": 34634.1297658689, - "2024-02-01": 34411.6867747238, - "2024-01-01": 34200, - "2023-01-01": 33400, - "2022-01-01": 32500, - "2021-01-01": 31700, - "2015-01-01": 31700 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[54].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[54].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 876.471141344349, - "2034-02-01": 856.46640749375, - "2033-02-01": 837.560834843734, - "2032-02-01": 819.314758914068, - "2031-02-01": 801.288515224518, - "2030-02-01": 783.7019360152, - "2029-02-01": 766.555021286116, - "2028-02-01": 749.847771037265, - "2027-02-01": 733.140520788413, - "2026-02-01": 716.433270539562, - "2025-02-01": 699.506188050594, - "2024-12-01": 693.801541419572, - "2024-11-01": 693.555329310641, - "2024-10-01": 693.93124244124, - "2024-09-01": 693.133251409618, - "2024-08-01": 692.023098597029, - "2024-07-01": 691.460328062331, - "2024-06-01": 690.657940385906, - "2024-05-01": 690.424918211383, - "2024-04-01": 689.279592240376, - "2024-03-01": 686.60643220056, - "2024-02-01": 682.196597463823, - "2024-01-01": 678, - "2023-01-01": 705, - "2022-01-01": 709, - "2021-01-01": 897, - "2015-01-01": 897 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[55]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[55]", - "description": null, - "label": "bracket 56" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[55].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[55].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 44340.6491860047, - "2034-02-01": 43328.610290613, - "2033-02-01": 42372.1779279352, - "2032-02-01": 41449.1094848857, - "2031-02-01": 40537.162348379, - "2030-02-01": 39647.4578249578, - "2029-02-01": 38779.9959146221, - "2028-02-01": 37934.7766173719, - "2027-02-01": 37089.5573201218, - "2026-02-01": 36244.3380228716, - "2025-02-01": 35387.9974190787, - "2024-12-01": 35099.399514294, - "2024-11-01": 35086.9436509661, - "2024-10-01": 35105.9610851542, - "2024-09-01": 35065.590742404, - "2024-08-01": 35009.428144363, - "2024-07-01": 34980.9575996135, - "2024-06-01": 34940.3648307324, - "2024-05-01": 34928.5762457971, - "2024-04-01": 34870.6342387093, - "2024-03-01": 34735.3991511493, - "2024-02-01": 34512.3057419014, - "2024-01-01": 34300, - "2023-01-01": 33500, - "2022-01-01": 32600, - "2021-01-01": 31800, - "2015-01-01": 31800 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[55].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[55].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 890.691174610998, - "2034-02-01": 870.361880181702, - "2033-02-01": 851.149579951819, - "2032-02-01": 832.607476241582, - "2031-02-01": 814.288771371228, - "2030-02-01": 796.416864180639, - "2029-02-01": 778.991754669814, - "2028-02-01": 762.013442838754, - "2027-02-01": 745.035131007694, - "2026-02-01": 728.056819176634, - "2025-02-01": 710.855108505692, - "2024-12-01": 705.057908610745, - "2024-11-01": 704.807701910076, - "2024-10-01": 705.189713926275, - "2024-09-01": 704.378776137502, - "2024-08-01": 703.250611996096, - "2024-07-01": 702.678710965997, - "2024-06-01": 701.863305200427, - "2024-05-01": 701.626502430152, - "2024-04-01": 700.462594474364, - "2024-03-01": 697.746064581395, - "2024-02-01": 693.264683853354, - "2024-01-01": 689, - "2023-01-01": 717, - "2022-01-01": 721, - "2021-01-01": 909, - "2015-01-01": 909 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[56]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[56]", - "description": null, - "label": "bracket 57" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[56].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[56].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 44469.9222157015, - "2034-02-01": 43454.9327695944, - "2033-02-01": 42495.7119743724, - "2032-02-01": 41569.9523696813, - "2031-02-01": 40655.3464951673, - "2030-02-01": 39763.0480810072, - "2029-02-01": 38893.0571272012, - "2028-02-01": 38045.3736337491, - "2027-02-01": 37197.6901402971, - "2026-02-01": 36350.006646845, - "2025-02-01": 35491.169423216, - "2024-12-01": 35201.7301251228, - "2024-11-01": 35189.2379473246, - "2024-10-01": 35208.3108259272, - "2024-09-01": 35167.8227853847, - "2024-08-01": 35111.4964479909, - "2024-07-01": 35082.9428987378, - "2024-06-01": 35042.2317835917, - "2024-05-01": 35030.4088296041, - "2024-04-01": 34972.2978953819, - "2024-03-01": 34836.6685364296, - "2024-02-01": 34612.9247090789, - "2024-01-01": 34400, - "2023-01-01": 33600, - "2022-01-01": 32700, - "2021-01-01": 31900, - "2015-01-01": 31900 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[56].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[56].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 904.911207877646, - "2034-02-01": 884.257352869654, - "2033-02-01": 864.738325059903, - "2032-02-01": 845.900193569097, - "2031-02-01": 827.289027517938, - "2030-02-01": 809.131792346077, - "2029-02-01": 791.428488053512, - "2028-02-01": 774.179114640244, - "2027-02-01": 756.929741226975, - "2026-02-01": 739.680367813707, - "2025-02-01": 722.20402896079, - "2024-12-01": 716.314275801918, - "2024-11-01": 716.060074509512, - "2024-10-01": 716.44818541131, - "2024-09-01": 715.624300865387, - "2024-08-01": 714.478125395163, - "2024-07-01": 713.897093869664, - "2024-06-01": 713.068670014947, - "2024-05-01": 712.82808664892, - "2024-04-01": 711.645596708353, - "2024-03-01": 708.88569696223, - "2024-02-01": 704.332770242886, - "2024-01-01": 700, - "2023-01-01": 728, - "2022-01-01": 733, - "2021-01-01": 921, - "2015-01-01": 921 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[57]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[57]", - "description": null, - "label": "bracket 58" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[57].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[57].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 44599.1952453983, - "2034-02-01": 43581.2552485758, - "2033-02-01": 42619.2460208095, - "2032-02-01": 41690.7952544769, - "2031-02-01": 40773.5306419555, - "2030-02-01": 39878.6383370567, - "2029-02-01": 39006.1183397802, - "2028-02-01": 38155.9706501263, - "2027-02-01": 37305.8229604724, - "2026-02-01": 36455.6752708184, - "2025-02-01": 35594.3414273532, - "2024-12-01": 35304.0607359517, - "2024-11-01": 35291.5322436831, - "2024-10-01": 35310.6605667003, - "2024-09-01": 35270.0548283655, - "2024-08-01": 35213.5647516188, - "2024-07-01": 35184.928197862, - "2024-06-01": 35144.098736451, - "2024-05-01": 35132.2414134111, - "2024-04-01": 35073.9615520545, - "2024-03-01": 34937.9379217099, - "2024-02-01": 34713.5436762565, - "2024-01-01": 34500, - "2023-01-01": 33700, - "2022-01-01": 32800, - "2021-01-01": 32000, - "2015-01-01": 32000 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[57].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[57].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 919.131241144295, - "2034-02-01": 898.152825557606, - "2033-02-01": 878.327070167987, - "2032-02-01": 859.192910896611, - "2031-02-01": 840.289283664649, - "2030-02-01": 821.846720511515, - "2029-02-01": 803.86522143721, - "2028-02-01": 786.344786441733, - "2027-02-01": 768.824351446256, - "2026-02-01": 751.303916450779, - "2025-02-01": 733.552949415888, - "2024-12-01": 727.570642993091, - "2024-11-01": 727.312447108947, - "2024-10-01": 727.706656896345, - "2024-09-01": 726.869825593272, - "2024-08-01": 725.70563879423, - "2024-07-01": 725.11547677333, - "2024-06-01": 724.274034829468, - "2024-05-01": 724.029670867689, - "2024-04-01": 722.828598942341, - "2024-03-01": 720.025329343065, - "2024-02-01": 715.400856632417, - "2024-01-01": 711, - "2023-01-01": 740, - "2022-01-01": 745, - "2021-01-01": 933, - "2015-01-01": 933 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[58]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[58]", - "description": null, - "label": "bracket 59" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[58].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[58].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 44728.4682750951, - "2034-02-01": 43707.5777275572, - "2033-02-01": 42742.7800672466, - "2032-02-01": 41811.6381392725, - "2031-02-01": 40891.7147887438, - "2030-02-01": 39994.2285931061, - "2029-02-01": 39119.1795523593, - "2028-02-01": 38266.5676665035, - "2027-02-01": 37413.9557806476, - "2026-02-01": 36561.3438947918, - "2025-02-01": 35697.5134314905, - "2024-12-01": 35406.3913467805, - "2024-11-01": 35393.8265400416, - "2024-10-01": 35413.0103074733, - "2024-09-01": 35372.2868713463, - "2024-08-01": 35315.6330552466, - "2024-07-01": 35286.9134969862, - "2024-06-01": 35245.9656893103, - "2024-05-01": 35234.0739972181, - "2024-04-01": 35175.6252087272, - "2024-03-01": 35039.2073069902, - "2024-02-01": 34814.1626434341, - "2024-01-01": 34600, - "2023-01-01": 33800, - "2022-01-01": 32900, - "2021-01-01": 32100, - "2015-01-01": 32100 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[58].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[58].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 933.351274410944, - "2034-02-01": 912.048298245557, - "2033-02-01": 891.915815276071, - "2032-02-01": 872.485628224125, - "2031-02-01": 853.289539811359, - "2030-02-01": 834.561648676954, - "2029-02-01": 816.301954820908, - "2028-02-01": 798.510458243223, - "2027-02-01": 780.718961665537, - "2026-02-01": 762.927465087852, - "2025-02-01": 744.901869870986, - "2024-12-01": 738.827010184264, - "2024-11-01": 738.564819708382, - "2024-10-01": 738.96512838138, - "2024-09-01": 738.115350321156, - "2024-08-01": 736.933152193297, - "2024-07-01": 736.333859676996, - "2024-06-01": 735.479399643989, - "2024-05-01": 735.231255086458, - "2024-04-01": 734.01160117633, - "2024-03-01": 731.1649617239, - "2024-02-01": 726.468943021948, - "2024-01-01": 722, - "2023-01-01": 752, - "2022-01-01": 757, - "2021-01-01": 945, - "2015-01-01": 945 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[59]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[59]", - "description": null, - "label": "bracket 60" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[59].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[59].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 44857.7413047919, - "2034-02-01": 43833.9002065386, - "2033-02-01": 42866.3141136837, - "2032-02-01": 41932.4810240681, - "2031-02-01": 41009.8989355321, - "2030-02-01": 40109.8188491555, - "2029-02-01": 39232.2407649384, - "2028-02-01": 38377.1646828807, - "2027-02-01": 37522.0886008229, - "2026-02-01": 36667.0125187652, - "2025-02-01": 35800.6854356277, - "2024-12-01": 35508.7219576094, - "2024-11-01": 35496.1208364001, - "2024-10-01": 35515.3600482464, - "2024-09-01": 35474.518914327, - "2024-08-01": 35417.7013588745, - "2024-07-01": 35388.8987961105, - "2024-06-01": 35347.8326421695, - "2024-05-01": 35335.9065810251, - "2024-04-01": 35277.2888653998, - "2024-03-01": 35140.4766922705, - "2024-02-01": 34914.7816106116, - "2024-01-01": 34700, - "2023-01-01": 33900, - "2022-01-01": 33000, - "2021-01-01": 32200, - "2015-01-01": 32200 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[59].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[59].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 946.278577380624, - "2034-02-01": 924.680546143695, - "2033-02-01": 904.269219919784, - "2032-02-01": 884.569916703684, - "2031-02-01": 865.107954490187, - "2030-02-01": 846.120674281898, - "2029-02-01": 827.608076078815, - "2028-02-01": 809.570159880941, - "2027-02-01": 791.532243683066, - "2026-02-01": 773.494327485191, - "2025-02-01": 755.219070284712, - "2024-12-01": 749.060071267148, - "2024-11-01": 748.794249344232, - "2024-10-01": 749.200102458684, - "2024-09-01": 748.338554619233, - "2024-08-01": 747.139982556085, - "2024-07-01": 746.53238958942, - "2024-06-01": 745.666094929916, - "2024-05-01": 745.414513467157, - "2024-04-01": 744.177966843592, - "2024-03-01": 741.291900251932, - "2024-02-01": 736.530839739703, - "2024-01-01": 732, - "2023-01-01": 763, - "2022-01-01": 769, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[60]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[60]", - "description": null, - "label": "bracket 61" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[60].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[60].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 44987.0143344887, - "2034-02-01": 43960.2226855199, - "2033-02-01": 42989.8481601209, - "2032-02-01": 42053.3239088637, - "2031-02-01": 41128.0830823204, - "2030-02-01": 40225.409105205, - "2029-02-01": 39345.3019775175, - "2028-02-01": 38487.7616992578, - "2027-02-01": 37630.2214209982, - "2026-02-01": 36772.6811427386, - "2025-02-01": 35903.857439765, - "2024-12-01": 35611.0525684382, - "2024-11-01": 35598.4151327586, - "2024-10-01": 35617.7097890194, - "2024-09-01": 35576.7509573078, - "2024-08-01": 35519.7696625024, - "2024-07-01": 35490.8840952347, - "2024-06-01": 35449.6995950288, - "2024-05-01": 35437.739164832, - "2024-04-01": 35378.9525220724, - "2024-03-01": 35241.7460775509, - "2024-02-01": 35015.4005777892, - "2024-01-01": 34800, - "2023-01-01": 34000, - "2022-01-01": 33100, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[60].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[60].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 960.498610647273, - "2034-02-01": 938.576018831647, - "2033-02-01": 917.857965027868, - "2032-02-01": 897.862634031198, - "2031-02-01": 878.108210636897, - "2030-02-01": 858.835602447336, - "2029-02-01": 840.044809462513, - "2028-02-01": 821.73583168243, - "2027-02-01": 803.426853902347, - "2026-02-01": 785.117876122263, - "2025-02-01": 766.56799073981, - "2024-12-01": 760.316438458321, - "2024-11-01": 760.046621943667, - "2024-10-01": 760.458573943719, - "2024-09-01": 759.584079347118, - "2024-08-01": 758.367495955152, - "2024-07-01": 757.750772493086, - "2024-06-01": 756.871459744437, - "2024-05-01": 756.616097685925, - "2024-04-01": 755.36096907758, - "2024-03-01": 752.431532632767, - "2024-02-01": 747.598926129234, - "2024-01-01": 743, - "2023-01-01": 775, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[61]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[61]", - "description": null, - "label": "bracket 62" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[61].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[61].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 45116.2873641855, - "2034-02-01": 44086.5451645013, - "2033-02-01": 43113.382206558, - "2032-02-01": 42174.1667936592, - "2031-02-01": 41246.2672291086, - "2030-02-01": 40340.9993612544, - "2029-02-01": 39458.3631900965, - "2028-02-01": 38598.358715635, - "2027-02-01": 37738.3542411735, - "2026-02-01": 36878.349766712, - "2025-02-01": 36007.0294439023, - "2024-12-01": 35713.383179267, - "2024-11-01": 35700.7094291171, - "2024-10-01": 35720.0595297925, - "2024-09-01": 35678.9830002886, - "2024-08-01": 35621.8379661303, - "2024-07-01": 35592.8693943589, - "2024-06-01": 35551.5665478881, - "2024-05-01": 35539.571748639, - "2024-04-01": 35480.616178745, - "2024-03-01": 35343.0154628312, - "2024-02-01": 35116.0195449667, - "2024-01-01": 34900, - "2023-01-01": 34100, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[61].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[61].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 974.718643913922, - "2034-02-01": 952.471491519599, - "2033-02-01": 931.446710135952, - "2032-02-01": 911.155351358712, - "2031-02-01": 891.108466783608, - "2030-02-01": 871.550530612774, - "2029-02-01": 852.481542846212, - "2028-02-01": 833.90150348392, - "2027-02-01": 815.321464121628, - "2026-02-01": 796.741424759336, - "2025-02-01": 777.916911194908, - "2024-12-01": 771.572805649494, - "2024-11-01": 771.298994543102, - "2024-10-01": 771.717045428754, - "2024-09-01": 770.829604075002, - "2024-08-01": 769.595009354219, - "2024-07-01": 768.969155396752, - "2024-06-01": 768.076824558958, - "2024-05-01": 767.817681904694, - "2024-04-01": 766.543971311569, - "2024-03-01": 763.571165013602, - "2024-02-01": 758.667012518765, - "2024-01-01": 754, - "2023-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[62]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[62]", - "description": null, - "label": "bracket 63" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[62].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[62].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 45245.5603938823, - "2034-02-01": 44212.8676434827, - "2033-02-01": 43236.9162529951, - "2032-02-01": 42295.0096784548, - "2031-02-01": 41364.4513758969, - "2030-02-01": 40456.5896173039, - "2029-02-01": 39571.4244026756, - "2028-02-01": 38708.9557320122, - "2027-02-01": 37846.4870613488, - "2026-02-01": 36984.0183906853, - "2025-02-01": 36110.2014480395, - "2024-12-01": 35815.7137900959, - "2024-11-01": 35803.0037254756, - "2024-10-01": 35822.4092705655, - "2024-09-01": 35781.2150432693, - "2024-08-01": 35723.9062697582, - "2024-07-01": 35694.8546934832, - "2024-06-01": 35653.4335007474, - "2024-05-01": 35641.404332446, - "2024-04-01": 35582.2798354176, - "2024-03-01": 35444.2848481115, - "2024-02-01": 35216.6385121443, - "2024-01-01": 35000, - "2015-01-01": 35000 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[62].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[62].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 988.938677180571, - "2034-02-01": 966.36696420755, - "2033-02-01": 945.035455244037, - "2032-02-01": 924.448068686227, - "2031-02-01": 904.108722930318, - "2030-02-01": 884.265458778213, - "2029-02-01": 864.91827622991, - "2028-02-01": 846.067175285409, - "2027-02-01": 827.216074340909, - "2026-02-01": 808.364973396408, - "2025-02-01": 789.265831650006, - "2024-12-01": 782.829172840667, - "2024-11-01": 782.551367142538, - "2024-10-01": 782.975516913789, - "2024-09-01": 782.075128802887, - "2024-08-01": 780.822522753285, - "2024-07-01": 780.187538300418, - "2024-06-01": 779.282189373478, - "2024-05-01": 779.019266123463, - "2024-04-01": 777.726973545557, - "2024-03-01": 774.710797394437, - "2024-02-01": 769.735098908296, - "2024-01-01": 765, - "2015-01-01": 765 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[63]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[63]", - "description": null, - "label": "bracket 64" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[63].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[63].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 45374.8334235791, - "2034-02-01": 44339.1901224641, - "2033-02-01": 43360.4502994323, - "2032-02-01": 42415.8525632504, - "2031-02-01": 41482.6355226852, - "2030-02-01": 40572.1798733533, - "2029-02-01": 39684.4856152547, - "2028-02-01": 38819.5527483894, - "2027-02-01": 37954.6198815241, - "2026-02-01": 37089.6870146587, - "2025-02-01": 36213.3734521768, - "2024-12-01": 35918.0444009247, - "2024-11-01": 35905.2980218341, - "2024-10-01": 35924.7590113385, - "2024-09-01": 35883.4470862501, - "2024-08-01": 35825.974573386, - "2024-07-01": 35796.8399926074, - "2024-06-01": 35755.3004536067, - "2024-05-01": 35743.236916253, - "2024-04-01": 35683.9434920903, - "2024-03-01": 35545.5542333918, - "2024-02-01": 35317.2574793218, - "2024-01-01": 35100, - "2015-01-01": 35100 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[63].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.two_or_more_dependents[63].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": "Infinity", - "2034-02-01": "Infinity", - "2033-02-01": "Infinity", - "2032-02-01": "Infinity", - "2031-02-01": "Infinity", - "2030-02-01": "Infinity", - "2029-02-01": "Infinity", - "2028-02-01": "Infinity", - "2027-02-01": "Infinity", - "2026-02-01": "Infinity", - "2025-02-01": "Infinity", - "2024-12-01": "Infinity", - "2024-11-01": "Infinity", - "2024-10-01": "Infinity", - "2024-09-01": "Infinity", - "2024-08-01": "Infinity", - "2024-07-01": "Infinity", - "2024-06-01": "Infinity", - "2024-05-01": "Infinity", - "2024-04-01": "Infinity", - "2024-03-01": "Infinity", - "2024-02-01": "Infinity", - "2024-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent", - "description": "Arkansas reduces the tax liability of low-income joint filers with up to one dependent to the following amount, in lieu of a standard or itemized deduction.", - "label": "Arkansas low income tax table joint amount no or one dependent" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[0]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 0, - "2034-02-01": 0, - "2033-02-01": 0, - "2032-02-01": 0, - "2031-02-01": 0, - "2030-02-01": 0, - "2029-02-01": 0, - "2028-02-01": 0, - "2027-02-01": 0, - "2026-02-01": 0, - "2025-02-01": 0, - "2024-12-01": 0, - "2024-11-01": 0, - "2024-10-01": 0, - "2024-09-01": 0, - "2024-08-01": 0, - "2024-07-01": 0, - "2024-06-01": 0, - "2024-05-01": 0, - "2024-04-01": 0, - "2024-03-01": 0, - "2024-02-01": 0, - "2024-01-01": 0, - "2023-12-01": 0, - "2023-11-01": 0, - "2023-10-01": 0, - "2023-09-01": 0, - "2023-08-01": 0, - "2023-07-01": 0, - "2023-06-01": 0, - "2023-05-01": 0, - "2023-04-01": 0, - "2023-03-01": 0, - "2023-02-01": 0, - "2023-01-01": 0, - "2022-12-01": 0, - "2022-11-01": 0, - "2022-10-01": 0, - "2022-09-01": 0, - "2022-08-01": 0, - "2022-07-01": 0, - "2022-06-01": 0, - "2022-05-01": 0, - "2022-04-01": 0, - "2022-03-01": 0, - "2022-02-01": 0, - "2022-01-01": 0, - "2021-12-01": 0, - "2021-11-01": 0, - "2021-10-01": 0, - "2021-09-01": 0, - "2021-08-01": 0, - "2021-07-01": 0, - "2021-06-01": 0, - "2021-05-01": 0, - "2021-04-01": 0, - "2021-03-01": 0, - "2021-02-01": 0, - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[0].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 0, - "2034-02-01": 0, - "2033-02-01": 0, - "2032-02-01": 0, - "2031-02-01": 0, - "2030-02-01": 0, - "2029-02-01": 0, - "2028-02-01": 0, - "2027-02-01": 0, - "2026-02-01": 0, - "2025-02-01": 0, - "2024-12-01": 0, - "2024-11-01": 0, - "2024-10-01": 0, - "2024-09-01": 0, - "2024-08-01": 0, - "2024-07-01": 0, - "2024-06-01": 0, - "2024-05-01": 0, - "2024-04-01": 0, - "2024-03-01": 0, - "2024-02-01": 0, - "2024-01-01": 0, - "2023-12-01": 0, - "2023-11-01": 0, - "2023-10-01": 0, - "2023-09-01": 0, - "2023-08-01": 0, - "2023-07-01": 0, - "2023-06-01": 0, - "2023-05-01": 0, - "2023-04-01": 0, - "2023-03-01": 0, - "2023-02-01": 0, - "2023-01-01": 0, - "2022-12-01": 0, - "2022-11-01": 0, - "2022-10-01": 0, - "2022-09-01": 0, - "2022-08-01": 0, - "2022-07-01": 0, - "2022-06-01": 0, - "2022-05-01": 0, - "2022-04-01": 0, - "2022-03-01": 0, - "2022-02-01": 0, - "2022-01-01": 0, - "2021-12-01": 0, - "2021-11-01": 0, - "2021-10-01": 0, - "2021-09-01": 0, - "2021-08-01": 0, - "2021-07-01": 0, - "2021-06-01": 0, - "2021-05-01": 0, - "2021-04-01": 0, - "2021-03-01": 0, - "2021-02-01": 0, - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[1]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 31099.2127541608, - "2034-02-01": 30389.3987685504, - "2033-02-01": 29718.5855513801, - "2032-02-01": 29071.1727952739, - "2031-02-01": 28431.5601928558, - "2030-02-01": 27807.5478978137, - "2029-02-01": 27199.1359101476, - "2028-02-01": 26606.3242298576, - "2027-02-01": 26013.5125495676, - "2026-02-01": 25420.7008692776, - "2025-02-01": 24820.0890352996, - "2024-12-01": 24617.6750470953, - "2024-11-01": 24608.9388749647, - "2024-10-01": 24622.2771377713, - "2024-09-01": 24593.9625798837, - "2024-08-01": 24554.5718037592, - "2024-07-01": 24534.6034103179, - "2024-06-01": 24506.1328493566, - "2024-05-01": 24497.8646864473, - "2024-04-01": 24457.2258857326, - "2024-03-01": 24362.3760168862, - "2024-02-01": 24205.9049339044, - "2024-01-01": 24057, - "2023-01-01": 23356, - "2022-01-01": 22675, - "2021-01-01": 22015, - "2015-01-01": 22015 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[1].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 96.954772272605, - "2034-02-01": 94.7418592360343, - "2033-02-01": 92.6505348278467, - "2032-02-01": 90.6321635966889, - "2031-02-01": 88.6381100912077, - "2030-02-01": 86.6926920370797, - "2029-02-01": 84.7959094343049, - "2028-02-01": 82.9477622828833, - "2027-02-01": 81.0996151314616, - "2026-02-01": 79.25146798004, - "2025-02-01": 77.3790031029418, - "2024-12-01": 76.747958121634, - "2024-11-01": 76.7207222688762, - "2024-10-01": 76.7623055797832, - "2024-09-01": 76.6740322355772, - "2024-08-01": 76.5512277209103, - "2024-07-01": 76.4889743431782, - "2024-06-01": 76.4002146444587, - "2024-05-01": 76.3744378552415, - "2024-04-01": 76.2477425044664, - "2024-03-01": 75.9520389602389, - "2024-02-01": 75.4642253831663, - "2024-01-01": 75, - "2023-01-01": 72, - "2022-01-01": 71, - "2021-01-01": 70, - "2015-01-01": 70 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[2]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 31154.8001569304, - "2034-02-01": 30443.7174345124, - "2033-02-01": 29771.7051913481, - "2032-02-01": 29123.135235736, - "2031-02-01": 28482.3793759747, - "2030-02-01": 27857.2517079149, - "2029-02-01": 27247.7522315566, - "2028-02-01": 26653.8809468998, - "2027-02-01": 26060.009662243, - "2026-02-01": 25466.1383775862, - "2025-02-01": 24864.4529970786, - "2024-12-01": 24661.6772097517, - "2024-11-01": 24652.9254223989, - "2024-10-01": 24666.2875263037, - "2024-09-01": 24637.9223583655, - "2024-08-01": 24598.4611743192, - "2024-07-01": 24578.4570889413, - "2024-06-01": 24549.9356390861, - "2024-05-01": 24541.6526974843, - "2024-04-01": 24500.9412581019, - "2024-03-01": 24405.9218525568, - "2024-02-01": 24249.1710897908, - "2024-01-01": 24100, - "2023-01-01": 23400, - "2022-01-01": 22700, - "2021-01-01": 22100, - "2015-01-01": 22100 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[2].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 109.882075242286, - "2034-02-01": 107.374107134172, - "2033-02-01": 105.00393947156, - "2032-02-01": 102.716452076247, - "2031-02-01": 100.456524770035, - "2030-02-01": 98.2517176420236, - "2029-02-01": 96.1020306922122, - "2028-02-01": 94.007463920601, - "2027-02-01": 91.9128971489899, - "2026-02-01": 89.8183303773787, - "2025-02-01": 87.6962035166674, - "2024-12-01": 86.9810192045186, - "2024-11-01": 86.9501519047264, - "2024-10-01": 86.9972796570877, - "2024-09-01": 86.8972365336541, - "2024-08-01": 86.7580580836984, - "2024-07-01": 86.687504255602, - "2024-06-01": 86.5869099303865, - "2024-05-01": 86.5576962359403, - "2024-04-01": 86.4141081717286, - "2024-03-01": 86.0789774882708, - "2024-02-01": 85.5261221009218, - "2024-01-01": 85, - "2023-01-01": 83, - "2022-01-01": 82, - "2021-01-01": 80, - "2015-01-01": 80 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[3]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 31284.0731866272, - "2034-02-01": 30570.0399134937, - "2033-02-01": 29895.2392377852, - "2032-02-01": 29243.9781205316, - "2031-02-01": 28600.563522763, - "2030-02-01": 27972.8419639644, - "2029-02-01": 27360.8134441357, - "2028-02-01": 26764.477963277, - "2027-02-01": 26168.1424824183, - "2026-02-01": 25571.8070015596, - "2025-02-01": 24967.6250012159, - "2024-12-01": 24764.0078205806, - "2024-11-01": 24755.2197187574, - "2024-10-01": 24768.6372670767, - "2024-09-01": 24740.1544013462, - "2024-08-01": 24700.5294779471, - "2024-07-01": 24680.4423880655, - "2024-06-01": 24651.8025919453, - "2024-05-01": 24643.4852812912, - "2024-04-01": 24602.6049147745, - "2024-03-01": 24507.1912378371, - "2024-02-01": 24349.7900569683, - "2024-01-01": 24200, - "2023-01-01": 23500, - "2022-01-01": 22800, - "2021-01-01": 22200, - "2015-01-01": 22200 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[3].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 122.809378211966, - "2034-02-01": 120.00635503231, - "2033-02-01": 117.357344115273, - "2032-02-01": 114.800740555806, - "2031-02-01": 112.274939448863, - "2030-02-01": 109.810743246968, - "2029-02-01": 107.408151950119, - "2028-02-01": 105.067165558319, - "2027-02-01": 102.726179166518, - "2026-02-01": 100.385192774717, - "2025-02-01": 98.013403930393, - "2024-12-01": 97.2140802874031, - "2024-11-01": 97.1795815405766, - "2024-10-01": 97.2322537343921, - "2024-09-01": 97.1204408317311, - "2024-08-01": 96.9648884464864, - "2024-07-01": 96.8860341680258, - "2024-06-01": 96.7736052163143, - "2024-05-01": 96.7409546166392, - "2024-04-01": 96.5804738389907, - "2024-03-01": 96.2059160163026, - "2024-02-01": 95.5880188186773, - "2024-01-01": 95, - "2023-01-01": 93, - "2022-01-01": 92, - "2021-01-01": 91, - "2015-01-01": 91 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[4]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 31413.346216324, - "2034-02-01": 30696.3623924751, - "2033-02-01": 30018.7732842223, - "2032-02-01": 29364.8210053272, - "2031-02-01": 28718.7476695513, - "2030-02-01": 28088.4322200138, - "2029-02-01": 27473.8746567148, - "2028-02-01": 26875.0749796542, - "2027-02-01": 26276.2753025936, - "2026-02-01": 25677.475625533, - "2025-02-01": 25070.7970053531, - "2024-12-01": 24866.3384314094, - "2024-11-01": 24857.5140151159, - "2024-10-01": 24870.9870078498, - "2024-09-01": 24842.386444327, - "2024-08-01": 24802.5977815749, - "2024-07-01": 24782.4276871898, - "2024-06-01": 24753.6695448046, - "2024-05-01": 24745.3178650982, - "2024-04-01": 24704.2685714471, - "2024-03-01": 24608.4606231174, - "2024-02-01": 24450.4090241459, - "2024-01-01": 24300, - "2023-01-01": 23600, - "2022-01-01": 22900, - "2021-01-01": 22300, - "2015-01-01": 22300 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[4].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 137.029411478615, - "2034-02-01": 133.901827720262, - "2033-02-01": 130.946089223357, - "2032-02-01": 128.09345788332, - "2031-02-01": 125.275195595574, - "2030-02-01": 122.525671412406, - "2029-02-01": 119.844885333818, - "2028-02-01": 117.232837359808, - "2027-02-01": 114.620789385799, - "2026-02-01": 112.00874141179, - "2025-02-01": 109.362324385491, - "2024-12-01": 108.470447478576, - "2024-11-01": 108.431954140012, - "2024-10-01": 108.490725219427, - "2024-09-01": 108.365965559616, - "2024-08-01": 108.192401845553, - "2024-07-01": 108.104417071692, - "2024-06-01": 107.978970030835, - "2024-05-01": 107.942538835408, - "2024-04-01": 107.763476072979, - "2024-03-01": 107.345548397138, - "2024-02-01": 106.656105208208, - "2024-01-01": 106, - "2023-01-01": 104, - "2022-01-01": 103, - "2021-01-01": 101, - "2015-01-01": 101 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[5]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 31542.6192460208, - "2034-02-01": 30822.6848714565, - "2033-02-01": 30142.3073306595, - "2032-02-01": 29485.6638901228, - "2031-02-01": 28836.9318163396, - "2030-02-01": 28204.0224760633, - "2029-02-01": 27586.9358692938, - "2028-02-01": 26985.6719960314, - "2027-02-01": 26384.4081227689, - "2026-02-01": 25783.1442495064, - "2025-02-01": 25173.9690094904, - "2024-12-01": 24968.6690422383, - "2024-11-01": 24959.8083114744, - "2024-10-01": 24973.3367486228, - "2024-09-01": 24944.6184873078, - "2024-08-01": 24904.6660852028, - "2024-07-01": 24884.412986314, - "2024-06-01": 24855.5364976639, - "2024-05-01": 24847.1504489052, - "2024-04-01": 24805.9322281197, - "2024-03-01": 24709.7300083977, - "2024-02-01": 24551.0279913234, - "2024-01-01": 24400, - "2023-01-01": 23700, - "2022-01-01": 23000, - "2021-01-01": 22400, - "2015-01-01": 22400 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[5].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 149.956714448296, - "2034-02-01": 146.5340756184, - "2033-02-01": 143.29949386707, - "2032-02-01": 140.177746362879, - "2031-02-01": 137.093610274401, - "2030-02-01": 134.08469701735, - "2029-02-01": 131.151006591725, - "2028-02-01": 128.292538997526, - "2027-02-01": 125.434071403327, - "2026-02-01": 122.575603809129, - "2025-02-01": 119.679524799217, - "2024-12-01": 118.703508561461, - "2024-11-01": 118.661383775862, - "2024-10-01": 118.725699296731, - "2024-09-01": 118.589169857693, - "2024-08-01": 118.399232208341, - "2024-07-01": 118.302946984116, - "2024-06-01": 118.165665316763, - "2024-05-01": 118.125797216107, - "2024-04-01": 117.929841740241, - "2024-03-01": 117.47248692517, - "2024-02-01": 116.718001925964, - "2024-01-01": 116, - "2023-01-01": 114, - "2022-01-01": 113, - "2021-01-01": 112, - "2015-01-01": 112 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[6]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[6].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 31671.8922757176, - "2034-02-01": 30949.0073504379, - "2033-02-01": 30265.8413770966, - "2032-02-01": 29606.5067749184, - "2031-02-01": 28955.1159631278, - "2030-02-01": 28319.6127321127, - "2029-02-01": 27699.9970818729, - "2028-02-01": 27096.2690124085, - "2027-02-01": 26492.5409429441, - "2026-02-01": 25888.8128734797, - "2025-02-01": 25277.1410136277, - "2024-12-01": 25070.9996530671, - "2024-11-01": 25062.1026078329, - "2024-10-01": 25075.6864893959, - "2024-09-01": 25046.8505302885, - "2024-08-01": 25006.7343888307, - "2024-07-01": 24986.3982854382, - "2024-06-01": 24957.4034505232, - "2024-05-01": 24948.9830327122, - "2024-04-01": 24907.5958847923, - "2024-03-01": 24810.999393678, - "2024-02-01": 24651.646958501, - "2024-01-01": 24500, - "2023-01-01": 23800, - "2022-01-01": 23100, - "2021-01-01": 22500, - "2015-01-01": 22500 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[6].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[6].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 164.176747714944, - "2034-02-01": 160.429548306351, - "2033-02-01": 156.888238975154, - "2032-02-01": 153.470463690393, - "2031-02-01": 150.093866421112, - "2030-02-01": 146.799625182788, - "2029-02-01": 143.587739975423, - "2028-02-01": 140.458210799016, - "2027-02-01": 137.328681622608, - "2026-02-01": 134.199152446201, - "2025-02-01": 131.028445254315, - "2024-12-01": 129.959875752634, - "2024-11-01": 129.913756375297, - "2024-10-01": 129.984170781766, - "2024-09-01": 129.834694585577, - "2024-08-01": 129.626745607408, - "2024-07-01": 129.521329887782, - "2024-06-01": 129.371030131283, - "2024-05-01": 129.327381434876, - "2024-04-01": 129.11284397423, - "2024-03-01": 128.612119306005, - "2024-02-01": 127.786088315495, - "2024-01-01": 127, - "2023-01-01": 124, - "2022-01-01": 123, - "2021-01-01": 122, - "2015-01-01": 122 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[7]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[7].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 31801.1653054144, - "2034-02-01": 31075.3298294193, - "2033-02-01": 30389.3754235337, - "2032-02-01": 29727.349659714, - "2031-02-01": 29073.3001099161, - "2030-02-01": 28435.2029881621, - "2029-02-01": 27813.058294452, - "2028-02-01": 27206.8660287857, - "2027-02-01": 26600.6737631194, - "2026-02-01": 25994.4814974531, - "2025-02-01": 25380.3130177649, - "2024-12-01": 25173.330263896, - "2024-11-01": 25164.3969041914, - "2024-10-01": 25178.0362301689, - "2024-09-01": 25149.0825732693, - "2024-08-01": 25108.8026924586, - "2024-07-01": 25088.3835845625, - "2024-06-01": 25059.2704033824, - "2024-05-01": 25050.8156165192, - "2024-04-01": 25009.259541465, - "2024-03-01": 24912.2687789584, - "2024-02-01": 24752.2659256786, - "2024-01-01": 24600, - "2023-01-01": 23900, - "2022-01-01": 23200, - "2021-01-01": 22600, - "2015-01-01": 22600 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[7].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[7].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 177.104050684625, - "2034-02-01": 173.061796204489, - "2033-02-01": 169.241643618867, - "2032-02-01": 165.554752169952, - "2031-02-01": 161.912281099939, - "2030-02-01": 158.358650787732, - "2029-02-01": 154.89386123333, - "2028-02-01": 151.517912436733, - "2027-02-01": 148.141963640137, - "2026-02-01": 144.76601484354, - "2025-02-01": 141.34564566804, - "2024-12-01": 140.192936835518, - "2024-11-01": 140.143186011147, - "2024-10-01": 140.219144859071, - "2024-09-01": 140.057898883654, - "2024-08-01": 139.833575970196, - "2024-07-01": 139.719859800206, - "2024-06-01": 139.557725417211, - "2024-05-01": 139.510639815574, - "2024-04-01": 139.279209641492, - "2024-03-01": 138.739057834036, - "2024-02-01": 137.84798503325, - "2024-01-01": 137, - "2023-01-01": 135, - "2022-01-01": 134, - "2021-01-01": 132, - "2015-01-01": 132 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[8]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[8].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 31930.4383351112, - "2034-02-01": 31201.6523084006, - "2033-02-01": 30512.9094699709, - "2032-02-01": 29848.1925445095, - "2031-02-01": 29191.4842567044, - "2030-02-01": 28550.7932442116, - "2029-02-01": 27926.1195070311, - "2028-02-01": 27317.4630451629, - "2027-02-01": 26708.8065832947, - "2026-02-01": 26100.1501214265, - "2025-02-01": 25483.4850219022, - "2024-12-01": 25275.6608747248, - "2024-11-01": 25266.6912005499, - "2024-10-01": 25280.3859709419, - "2024-09-01": 25251.3146162501, - "2024-08-01": 25210.8709960865, - "2024-07-01": 25190.3688836867, - "2024-06-01": 25161.1373562417, - "2024-05-01": 25152.6482003262, - "2024-04-01": 25110.9231981376, - "2024-03-01": 25013.5381642387, - "2024-02-01": 24852.8848928561, - "2024-01-01": 24700, - "2023-01-01": 24000, - "2022-01-01": 23300, - "2021-01-01": 22700, - "2015-01-01": 22700 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[8].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[8].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 190.031353654306, - "2034-02-01": 185.694044102627, - "2033-02-01": 181.59504826258, - "2032-02-01": 177.63904064951, - "2031-02-01": 173.730695778767, - "2030-02-01": 169.917676392676, - "2029-02-01": 166.199982491238, - "2028-02-01": 162.577614074451, - "2027-02-01": 158.955245657665, - "2026-02-01": 155.332877240878, - "2025-02-01": 151.662846081766, - "2024-12-01": 150.425997918403, - "2024-11-01": 150.372615646997, - "2024-10-01": 150.454118936375, - "2024-09-01": 150.281103181731, - "2024-08-01": 150.040406332984, - "2024-07-01": 149.918389712629, - "2024-06-01": 149.744420703139, - "2024-05-01": 149.693898196273, - "2024-04-01": 149.445575308754, - "2024-03-01": 148.865996362068, - "2024-02-01": 147.909881751006, - "2024-01-01": 147, - "2023-01-01": 145, - "2022-01-01": 144, - "2021-01-01": 143, - "2015-01-01": 143 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[9]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[9].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 32059.711364808, - "2034-02-01": 31327.974787382, - "2033-02-01": 30636.443516408, - "2032-02-01": 29969.0354293051, - "2031-02-01": 29309.6684034927, - "2030-02-01": 28666.383500261, - "2029-02-01": 28039.1807196101, - "2028-02-01": 27428.0600615401, - "2027-02-01": 26816.93940347, - "2026-02-01": 26205.8187453999, - "2025-02-01": 25586.6570260394, - "2024-12-01": 25377.9914855537, - "2024-11-01": 25368.9854969084, - "2024-10-01": 25382.735711715, - "2024-09-01": 25353.5466592309, - "2024-08-01": 25312.9392997143, - "2024-07-01": 25292.3541828109, - "2024-06-01": 25263.004309101, - "2024-05-01": 25254.4807841332, - "2024-04-01": 25212.5868548102, - "2024-03-01": 25114.807549519, - "2024-02-01": 24953.5038600337, - "2024-01-01": 24800, - "2023-01-01": 24100, - "2022-01-01": 23400, - "2021-01-01": 22800, - "2015-01-01": 22800 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[9].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[9].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 204.251386920954, - "2034-02-01": 199.589516790579, - "2033-02-01": 195.183793370664, - "2032-02-01": 190.931757977025, - "2031-02-01": 186.730951925478, - "2030-02-01": 182.632604558115, - "2029-02-01": 178.636715874936, - "2028-02-01": 174.743285875941, - "2027-02-01": 170.849855876946, - "2026-02-01": 166.956425877951, - "2025-02-01": 163.011766536864, - "2024-12-01": 161.682365109576, - "2024-11-01": 161.624988246433, - "2024-10-01": 161.71259042141, - "2024-09-01": 161.526627909616, - "2024-08-01": 161.267919732051, - "2024-07-01": 161.136772616296, - "2024-06-01": 160.94978551766, - "2024-05-01": 160.895482415042, - "2024-04-01": 160.628577542742, - "2024-03-01": 160.005628742903, - "2024-02-01": 158.977968140537, - "2024-01-01": 158, - "2023-01-01": 156, - "2022-01-01": 155, - "2021-01-01": 153, - "2015-01-01": 153 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[10]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[10]", - "description": null, - "label": "bracket 11" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[10].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[10].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 32188.9843945048, - "2034-02-01": 31454.2972663634, - "2033-02-01": 30759.9775628451, - "2032-02-01": 30089.8783141007, - "2031-02-01": 29427.852550281, - "2030-02-01": 28781.9737563105, - "2029-02-01": 28152.2419321892, - "2028-02-01": 27538.6570779172, - "2027-02-01": 26925.0722236453, - "2026-02-01": 26311.4873693733, - "2025-02-01": 25689.8290301767, - "2024-12-01": 25480.3220963825, - "2024-11-01": 25471.2797932669, - "2024-10-01": 25485.085452488, - "2024-09-01": 25455.7787022116, - "2024-08-01": 25415.0076033422, - "2024-07-01": 25394.3394819352, - "2024-06-01": 25364.8712619603, - "2024-05-01": 25356.3133679402, - "2024-04-01": 25314.2505114828, - "2024-03-01": 25216.0769347993, - "2024-02-01": 25054.1228272112, - "2024-01-01": 24900, - "2023-01-01": 24200, - "2022-01-01": 23500, - "2021-01-01": 22900, - "2015-01-01": 22900 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[10].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[10].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 217.178689890635, - "2034-02-01": 212.221764688717, - "2033-02-01": 207.537198014377, - "2032-02-01": 203.016046456583, - "2031-02-01": 198.549366604305, - "2030-02-01": 194.191630163058, - "2029-02-01": 189.942837132843, - "2028-02-01": 185.802987513658, - "2027-02-01": 181.663137894474, - "2026-02-01": 177.52328827529, - "2025-02-01": 173.32896695059, - "2024-12-01": 171.91542619246, - "2024-11-01": 171.854417882283, - "2024-10-01": 171.947564498714, - "2024-09-01": 171.749832207693, - "2024-08-01": 171.474750094839, - "2024-07-01": 171.335302528719, - "2024-06-01": 171.136480803587, - "2024-05-01": 171.078740795741, - "2024-04-01": 170.794943210005, - "2024-03-01": 170.132567270935, - "2024-02-01": 169.039864858293, - "2024-01-01": 168, - "2023-01-01": 166, - "2022-01-01": 165, - "2021-01-01": 164, - "2015-01-01": 164 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[11]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[11]", - "description": null, - "label": "bracket 12" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[11].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[11].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 32318.2574242017, - "2034-02-01": 31580.6197453448, - "2033-02-01": 30883.5116092822, - "2032-02-01": 30210.7211988963, - "2031-02-01": 29546.0366970692, - "2030-02-01": 28897.5640123599, - "2029-02-01": 28265.3031447683, - "2028-02-01": 27649.2540942944, - "2027-02-01": 27033.2050438205, - "2026-02-01": 26417.1559933467, - "2025-02-01": 25793.0010343139, - "2024-12-01": 25582.6527072113, - "2024-11-01": 25573.5740896254, - "2024-10-01": 25587.4351932611, - "2024-09-01": 25558.0107451924, - "2024-08-01": 25517.0759069701, - "2024-07-01": 25496.3247810594, - "2024-06-01": 25466.7382148196, - "2024-05-01": 25458.1459517472, - "2024-04-01": 25415.9141681555, - "2024-03-01": 25317.3463200796, - "2024-02-01": 25154.7417943888, - "2024-01-01": 25000, - "2023-01-01": 24300, - "2022-01-01": 23600, - "2021-01-01": 23000, - "2015-01-01": 23000 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[11].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[11].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 231.398723157284, - "2034-02-01": 226.117237376669, - "2033-02-01": 221.125943122461, - "2032-02-01": 216.308763784098, - "2031-02-01": 211.549622751016, - "2030-02-01": 206.906558328497, - "2029-02-01": 202.379570516541, - "2028-02-01": 197.968659315148, - "2027-02-01": 193.557748113755, - "2026-02-01": 189.146836912362, - "2025-02-01": 184.677887405688, - "2024-12-01": 183.171793383633, - "2024-11-01": 183.106790481718, - "2024-10-01": 183.206035983749, - "2024-09-01": 182.995356935578, - "2024-08-01": 182.702263493906, - "2024-07-01": 182.553685432385, - "2024-06-01": 182.341845618108, - "2024-05-01": 182.28032501451, - "2024-04-01": 181.977945443993, - "2024-03-01": 181.27219965177, - "2024-02-01": 180.107951247824, - "2024-01-01": 179, - "2023-01-01": 176, - "2022-01-01": 175, - "2021-01-01": 174, - "2015-01-01": 174 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[12]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[12]", - "description": null, - "label": "bracket 13" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[12].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[12].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 32447.5304538985, - "2034-02-01": 31706.9422243262, - "2033-02-01": 31007.0456557194, - "2032-02-01": 30331.5640836919, - "2031-02-01": 29664.2208438575, - "2030-02-01": 29013.1542684093, - "2029-02-01": 28378.3643573474, - "2028-02-01": 27759.8511106716, - "2027-02-01": 27141.3378639958, - "2026-02-01": 26522.8246173201, - "2025-02-01": 25896.1730384512, - "2024-12-01": 25684.9833180402, - "2024-11-01": 25675.8683859839, - "2024-10-01": 25689.7849340341, - "2024-09-01": 25660.2427881732, - "2024-08-01": 25619.144210598, - "2024-07-01": 25598.3100801837, - "2024-06-01": 25568.6051676788, - "2024-05-01": 25559.9785355541, - "2024-04-01": 25517.5778248281, - "2024-03-01": 25418.61570536, - "2024-02-01": 25255.3607615663, - "2024-01-01": 25100, - "2023-01-01": 24400, - "2022-01-01": 23700, - "2021-01-01": 23100, - "2015-01-01": 23100 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[12].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[12].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 244.326026126964, - "2034-02-01": 238.749485274807, - "2033-02-01": 233.479347766174, - "2032-02-01": 228.393052263656, - "2031-02-01": 223.368037429843, - "2030-02-01": 218.465583933441, - "2029-02-01": 213.685691774448, - "2028-02-01": 209.028360952866, - "2027-02-01": 204.371030131283, - "2026-02-01": 199.713699309701, - "2025-02-01": 194.995087819413, - "2024-12-01": 193.404854466518, - "2024-11-01": 193.336220117568, - "2024-10-01": 193.441010061054, - "2024-09-01": 193.218561233654, - "2024-08-01": 192.909093856694, - "2024-07-01": 192.752215344809, - "2024-06-01": 192.528540904036, - "2024-05-01": 192.463583395208, - "2024-04-01": 192.144311111255, - "2024-03-01": 191.399138179802, - "2024-02-01": 190.169847965579, - "2024-01-01": 189, - "2023-01-01": 187, - "2022-01-01": 186, - "2021-01-01": 184, - "2015-01-01": 184 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[13]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[13]", - "description": null, - "label": "bracket 14" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[13].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[13].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 32576.8034835953, - "2034-02-01": 31833.2647033075, - "2033-02-01": 31130.5797021565, - "2032-02-01": 30452.4069684875, - "2031-02-01": 29782.4049906458, - "2030-02-01": 29128.7445244588, - "2029-02-01": 28491.4255699264, - "2028-02-01": 27870.4481270488, - "2027-02-01": 27249.4706841711, - "2026-02-01": 26628.4932412934, - "2025-02-01": 25999.3450425884, - "2024-12-01": 25787.313928869, - "2024-11-01": 25778.1626823424, - "2024-10-01": 25792.1346748072, - "2024-09-01": 25762.4748311539, - "2024-08-01": 25721.2125142259, - "2024-07-01": 25700.2953793079, - "2024-06-01": 25670.4721205381, - "2024-05-01": 25661.8111193611, - "2024-04-01": 25619.2414815007, - "2024-03-01": 25519.8850906403, - "2024-02-01": 25355.9797287439, - "2024-01-01": 25200, - "2023-01-01": 24500, - "2022-01-01": 23800, - "2021-01-01": 23200, - "2015-01-01": 23200 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[13].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[13].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 257.253329096645, - "2034-02-01": 251.381733172944, - "2033-02-01": 245.832752409887, - "2032-02-01": 240.477340743215, - "2031-02-01": 235.186452108671, - "2030-02-01": 230.024609538385, - "2029-02-01": 224.991813032356, - "2028-02-01": 220.088062590584, - "2027-02-01": 215.184312148812, - "2026-02-01": 210.280561707039, - "2025-02-01": 205.312288233139, - "2024-12-01": 203.637915549402, - "2024-11-01": 203.565649753418, - "2024-10-01": 203.675984138358, - "2024-09-01": 203.441765531731, - "2024-08-01": 203.115924219482, - "2024-07-01": 202.950745257233, - "2024-06-01": 202.715236189964, - "2024-05-01": 202.646841775907, - "2024-04-01": 202.310676778517, - "2024-03-01": 201.526076707834, - "2024-02-01": 200.231744683335, - "2024-01-01": 199, - "2023-01-01": 197, - "2022-01-01": 196, - "2021-01-01": 195, - "2015-01-01": 195 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[14]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[14]", - "description": null, - "label": "bracket 15" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[14].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[14].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 32706.0765132921, - "2034-02-01": 31959.5871822889, - "2033-02-01": 31254.1137485936, - "2032-02-01": 30573.2498532831, - "2031-02-01": 29900.5891374341, - "2030-02-01": 29244.3347805082, - "2029-02-01": 28604.4867825055, - "2028-02-01": 27981.045143426, - "2027-02-01": 27357.6035043464, - "2026-02-01": 26734.1618652668, - "2025-02-01": 26102.5170467257, - "2024-12-01": 25889.6445396979, - "2024-11-01": 25880.4569787009, - "2024-10-01": 25894.4844155802, - "2024-09-01": 25864.7068741347, - "2024-08-01": 25823.2808178538, - "2024-07-01": 25802.2806784321, - "2024-06-01": 25772.3390733974, - "2024-05-01": 25763.6437031681, - "2024-04-01": 25720.9051381733, - "2024-03-01": 25621.1544759206, - "2024-02-01": 25456.5986959214, - "2024-01-01": 25300, - "2023-01-01": 24600, - "2022-01-01": 23900, - "2021-01-01": 23300, - "2015-01-01": 23300 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[14].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[14].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 271.473362363294, - "2034-02-01": 265.277205860896, - "2033-02-01": 259.421497517971, - "2032-02-01": 253.770058070729, - "2031-02-01": 248.186708255382, - "2030-02-01": 242.739537703823, - "2029-02-01": 237.428546416054, - "2028-02-01": 232.253734392073, - "2027-02-01": 227.078922368093, - "2026-02-01": 221.904110344112, - "2025-02-01": 216.661208688237, - "2024-12-01": 214.894282740575, - "2024-11-01": 214.818022352853, - "2024-10-01": 214.934455623393, - "2024-09-01": 214.687290259616, - "2024-08-01": 214.343437618549, - "2024-07-01": 214.169128160899, - "2024-06-01": 213.920601004484, - "2024-05-01": 213.848425994676, - "2024-04-01": 213.493679012506, - "2024-03-01": 212.665709088669, - "2024-02-01": 211.299831072866, - "2024-01-01": 210, - "2023-01-01": 208, - "2022-01-01": 207, - "2021-01-01": 205, - "2015-01-01": 205 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[15]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[15]", - "description": null, - "label": "bracket 16" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[15].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[15].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 32835.3495429889, - "2034-02-01": 32085.9096612703, - "2033-02-01": 31377.6477950308, - "2032-02-01": 30694.0927380786, - "2031-02-01": 30018.7732842223, - "2030-02-01": 29359.9250365577, - "2029-02-01": 28717.5479950846, - "2028-02-01": 28091.6421598031, - "2027-02-01": 27465.7363245217, - "2026-02-01": 26839.8304892402, - "2025-02-01": 26205.689050863, - "2024-12-01": 25991.9751505267, - "2024-11-01": 25982.7512750594, - "2024-10-01": 25996.8341563533, - "2024-09-01": 25966.9389171155, - "2024-08-01": 25925.3491214816, - "2024-07-01": 25904.2659775564, - "2024-06-01": 25874.2060262567, - "2024-05-01": 25865.4762869751, - "2024-04-01": 25822.5687948459, - "2024-03-01": 25722.4238612009, - "2024-02-01": 25557.217663099, - "2024-01-01": 25400, - "2023-01-01": 24700, - "2022-01-01": 24000, - "2021-01-01": 23400, - "2015-01-01": 23400 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[15].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[15].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 284.400665332975, - "2034-02-01": 277.909453759034, - "2033-02-01": 271.774902161684, - "2032-02-01": 265.854346550287, - "2031-02-01": 260.005122934209, - "2030-02-01": 254.298563308767, - "2029-02-01": 248.734667673961, - "2028-02-01": 243.313436029791, - "2027-02-01": 237.892204385621, - "2026-02-01": 232.470972741451, - "2025-02-01": 226.978409101963, - "2024-12-01": 225.12734382346, - "2024-11-01": 225.047451988704, - "2024-10-01": 225.169429700697, - "2024-09-01": 224.910494557693, - "2024-08-01": 224.550267981337, - "2024-07-01": 224.367658073323, - "2024-06-01": 224.107296290412, - "2024-05-01": 224.031684375375, - "2024-04-01": 223.660044679768, - "2024-03-01": 222.792647616701, - "2024-02-01": 221.361727790621, - "2024-01-01": 220, - "2023-01-01": 218, - "2022-01-01": 217, - "2021-01-01": 216, - "2015-01-01": 216 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[16]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[16]", - "description": null, - "label": "bracket 17" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[16].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[16].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 32964.6225726857, - "2034-02-01": 32212.2321402517, - "2033-02-01": 31501.1818414679, - "2032-02-01": 30814.9356228742, - "2031-02-01": 30136.9574310106, - "2030-02-01": 29475.5152926071, - "2029-02-01": 28830.6092076637, - "2028-02-01": 28202.2391761803, - "2027-02-01": 27573.869144697, - "2026-02-01": 26945.4991132136, - "2025-02-01": 26308.8610550002, - "2024-12-01": 26094.3057613556, - "2024-11-01": 26085.0455714179, - "2024-10-01": 26099.1838971263, - "2024-09-01": 26069.1709600962, - "2024-08-01": 26027.4174251095, - "2024-07-01": 26006.2512766806, - "2024-06-01": 25976.0729791159, - "2024-05-01": 25967.3088707821, - "2024-04-01": 25924.2324515186, - "2024-03-01": 25823.6932464812, - "2024-02-01": 25657.8366302765, - "2024-01-01": 25500, - "2023-01-01": 24800, - "2022-01-01": 24100, - "2021-01-01": 23500, - "2015-01-01": 23500 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[16].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[16].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 298.620698599623, - "2034-02-01": 291.804926446986, - "2033-02-01": 285.363647269768, - "2032-02-01": 279.147063877802, - "2031-02-01": 273.00537908092, - "2030-02-01": 267.013491474205, - "2029-02-01": 261.171401057659, - "2028-02-01": 255.47910783128, - "2027-02-01": 249.786814604902, - "2026-02-01": 244.094521378523, - "2025-02-01": 238.327329557061, - "2024-12-01": 236.383711014633, - "2024-11-01": 236.299824588139, - "2024-10-01": 236.427901185732, - "2024-09-01": 236.156019285578, - "2024-08-01": 235.777781380404, - "2024-07-01": 235.586040976989, - "2024-06-01": 235.312661104933, - "2024-05-01": 235.233268594144, - "2024-04-01": 234.843046913756, - "2024-03-01": 233.932279997536, - "2024-02-01": 232.429814180152, - "2024-01-01": 231, - "2023-01-01": 228, - "2022-01-01": 227, - "2021-01-01": 226, - "2015-01-01": 226 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[17]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[17]", - "description": null, - "label": "bracket 18" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[17].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[17].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 33093.8956023825, - "2034-02-01": 32338.5546192331, - "2033-02-01": 31624.715887905, - "2032-02-01": 30935.7785076698, - "2031-02-01": 30255.1415777989, - "2030-02-01": 29591.1055486565, - "2029-02-01": 28943.6704202427, - "2028-02-01": 28312.8361925575, - "2027-02-01": 27682.0019648722, - "2026-02-01": 27051.167737187, - "2025-02-01": 26412.0330591375, - "2024-12-01": 26196.6363721844, - "2024-11-01": 26187.3398677764, - "2024-10-01": 26201.5336378993, - "2024-09-01": 26171.403003077, - "2024-08-01": 26129.4857287374, - "2024-07-01": 26108.2365758048, - "2024-06-01": 26077.9399319752, - "2024-05-01": 26069.1414545891, - "2024-04-01": 26025.8961081912, - "2024-03-01": 25924.9626317615, - "2024-02-01": 25758.4555974541, - "2024-01-01": 25600, - "2023-01-01": 24900, - "2022-01-01": 24200, - "2021-01-01": 23600, - "2015-01-01": 23600 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[17].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[17].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 311.548001569304, - "2034-02-01": 304.437174345124, - "2033-02-01": 297.717051913481, - "2032-02-01": 291.23135235736, - "2031-02-01": 284.823793759747, - "2030-02-01": 278.572517079149, - "2029-02-01": 272.477522315566, - "2028-02-01": 266.538809468998, - "2027-02-01": 260.60009662243, - "2026-02-01": 254.661383775862, - "2025-02-01": 248.644529970786, - "2024-12-01": 246.616772097517, - "2024-11-01": 246.529254223989, - "2024-10-01": 246.662875263037, - "2024-09-01": 246.379223583655, - "2024-08-01": 245.984611743192, - "2024-07-01": 245.784570889413, - "2024-06-01": 245.49935639086, - "2024-05-01": 245.416526974843, - "2024-04-01": 245.009412581019, - "2024-03-01": 244.059218525568, - "2024-02-01": 242.491710897908, - "2024-01-01": 241, - "2023-01-01": 239, - "2022-01-01": 238, - "2021-01-01": 236, - "2015-01-01": 236 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[18]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[18]", - "description": null, - "label": "bracket 19" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[18].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[18].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 33223.1686320793, - "2034-02-01": 32464.8770982144, - "2033-02-01": 31748.2499343421, - "2032-02-01": 31056.6213924654, - "2031-02-01": 30373.3257245872, - "2030-02-01": 29706.695804706, - "2029-02-01": 29056.7316328218, - "2028-02-01": 28423.4332089347, - "2027-02-01": 27790.1347850475, - "2026-02-01": 27156.8363611604, - "2025-02-01": 26515.2050632747, - "2024-12-01": 26298.9669830133, - "2024-11-01": 26289.6341641349, - "2024-10-01": 26303.8833786724, - "2024-09-01": 26273.6350460578, - "2024-08-01": 26231.5540323653, - "2024-07-01": 26210.2218749291, - "2024-06-01": 26179.8068848345, - "2024-05-01": 26170.9740383961, - "2024-04-01": 26127.5597648638, - "2024-03-01": 26026.2320170419, - "2024-02-01": 25859.0745646317, - "2024-01-01": 25700, - "2023-01-01": 25000, - "2022-01-01": 24300, - "2021-01-01": 23700, - "2015-01-01": 23700 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[18].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[18].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 324.475304538985, - "2034-02-01": 317.069422243262, - "2033-02-01": 310.070456557194, - "2032-02-01": 303.315640836919, - "2031-02-01": 296.642208438575, - "2030-02-01": 290.131542684093, - "2029-02-01": 283.783643573474, - "2028-02-01": 277.598511106716, - "2027-02-01": 271.413378639958, - "2026-02-01": 265.228246173201, - "2025-02-01": 258.961730384512, - "2024-12-01": 256.849833180402, - "2024-11-01": 256.758683859839, - "2024-10-01": 256.897849340341, - "2024-09-01": 256.602427881732, - "2024-08-01": 256.19144210598, - "2024-07-01": 255.983100801837, - "2024-06-01": 255.686051676788, - "2024-05-01": 255.599785355541, - "2024-04-01": 255.175778248281, - "2024-03-01": 254.1861570536, - "2024-02-01": 252.553607615663, - "2024-01-01": 251, - "2023-01-01": 249, - "2022-01-01": 248, - "2021-01-01": 247, - "2015-01-01": 247 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[19]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[19]", - "description": null, - "label": "bracket 20" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[19].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[19].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 33352.4416617761, - "2034-02-01": 32591.1995771958, - "2033-02-01": 31871.7839807793, - "2032-02-01": 31177.464277261, - "2031-02-01": 30491.5098713754, - "2030-02-01": 29822.2860607554, - "2029-02-01": 29169.7928454009, - "2028-02-01": 28534.0302253118, - "2027-02-01": 27898.2676052228, - "2026-02-01": 27262.5049851338, - "2025-02-01": 26618.377067412, - "2024-12-01": 26401.2975938421, - "2024-11-01": 26391.9284604934, - "2024-10-01": 26406.2331194454, - "2024-09-01": 26375.8670890385, - "2024-08-01": 26333.6223359932, - "2024-07-01": 26312.2071740533, - "2024-06-01": 26281.6738376938, - "2024-05-01": 26272.8066222031, - "2024-04-01": 26229.2234215364, - "2024-03-01": 26127.5014023222, - "2024-02-01": 25959.6935318092, - "2024-01-01": 25800, - "2023-01-01": 25100, - "2022-01-01": 24400, - "2021-01-01": 23800, - "2015-01-01": 23800 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[19].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[19].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 338.695337805633, - "2034-02-01": 330.964894931213, - "2033-02-01": 323.659201665278, - "2032-02-01": 316.608358164433, - "2031-02-01": 309.642464585286, - "2030-02-01": 302.846470849532, - "2029-02-01": 296.220376957172, - "2028-02-01": 289.764182908206, - "2027-02-01": 283.307988859239, - "2026-02-01": 276.851794810273, - "2025-02-01": 270.31065083961, - "2024-12-01": 268.106200371575, - "2024-11-01": 268.011056459274, - "2024-10-01": 268.156320825376, - "2024-09-01": 267.847952609616, - "2024-08-01": 267.418955505047, - "2024-07-01": 267.201483705503, - "2024-06-01": 266.891416491309, - "2024-05-01": 266.80136957431, - "2024-04-01": 266.358780482269, - "2024-03-01": 265.325789434435, - "2024-02-01": 263.621694005194, - "2024-01-01": 262, - "2023-01-01": 260, - "2022-01-01": 259, - "2021-01-01": 257, - "2015-01-01": 257 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[20]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[20]", - "description": null, - "label": "bracket 21" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[20].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[20].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 33481.7146914729, - "2034-02-01": 32717.5220561772, - "2033-02-01": 31995.3180272164, - "2032-02-01": 31298.3071620566, - "2031-02-01": 30609.6940181637, - "2030-02-01": 29937.8763168049, - "2029-02-01": 29282.8540579799, - "2028-02-01": 28644.627241689, - "2027-02-01": 28006.4004253981, - "2026-02-01": 27368.1736091072, - "2025-02-01": 26721.5490715492, - "2024-12-01": 26503.628204671, - "2024-11-01": 26494.2227568519, - "2024-10-01": 26508.5828602185, - "2024-09-01": 26478.0991320193, - "2024-08-01": 26435.690639621, - "2024-07-01": 26414.1924731776, - "2024-06-01": 26383.5407905531, - "2024-05-01": 26374.63920601, - "2024-04-01": 26330.8870782091, - "2024-03-01": 26228.7707876025, - "2024-02-01": 26060.3124989868, - "2024-01-01": 25900, - "2023-01-01": 25200, - "2022-01-01": 24500, - "2021-01-01": 23900, - "2015-01-01": 23900 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[20].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[20].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 351.622640775314, - "2034-02-01": 343.597142829351, - "2033-02-01": 336.012606308991, - "2032-02-01": 328.692646643992, - "2031-02-01": 321.460879264113, - "2030-02-01": 314.405496454476, - "2029-02-01": 307.526498215079, - "2028-02-01": 300.823884545923, - "2027-02-01": 294.121270876768, - "2026-02-01": 287.418657207612, - "2025-02-01": 280.627851253336, - "2024-12-01": 278.339261454459, - "2024-11-01": 278.240486095125, - "2024-10-01": 278.39129490268, - "2024-09-01": 278.071156907693, - "2024-08-01": 277.625785867835, - "2024-07-01": 277.400013617926, - "2024-06-01": 277.078111777237, - "2024-05-01": 276.984627955009, - "2024-04-01": 276.525146149531, - "2024-03-01": 275.452727962466, - "2024-02-01": 273.68359072295, - "2024-01-01": 272, - "2023-01-01": 270, - "2022-01-01": 269, - "2021-01-01": 268, - "2015-01-01": 268 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[21]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[21]", - "description": null, - "label": "bracket 22" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[21].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[21].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 33610.9877211697, - "2034-02-01": 32843.8445351586, - "2033-02-01": 32118.8520736535, - "2032-02-01": 31419.1500468522, - "2031-02-01": 30727.878164952, - "2030-02-01": 30053.4665728543, - "2029-02-01": 29395.915270559, - "2028-02-01": 28755.2242580662, - "2027-02-01": 28114.5332455734, - "2026-02-01": 27473.8422330805, - "2025-02-01": 26824.7210756865, - "2024-12-01": 26605.9588154998, - "2024-11-01": 26596.5170532104, - "2024-10-01": 26610.9326009915, - "2024-09-01": 26580.3311750001, - "2024-08-01": 26537.7589432489, - "2024-07-01": 26516.1777723018, - "2024-06-01": 26485.4077434123, - "2024-05-01": 26476.471789817, - "2024-04-01": 26432.5507348817, - "2024-03-01": 26330.0401728828, - "2024-02-01": 26160.9314661643, - "2024-01-01": 26000, - "2023-01-01": 25300, - "2022-01-01": 24600, - "2021-01-01": 24000, - "2015-01-01": 24000 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[21].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[21].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 365.842674041963, - "2034-02-01": 357.492615517303, - "2033-02-01": 349.601351417075, - "2032-02-01": 341.985363971506, - "2031-02-01": 334.461135410824, - "2030-02-01": 327.120424619914, - "2029-02-01": 319.963231598777, - "2028-02-01": 312.989556347413, - "2027-02-01": 306.015881096049, - "2026-02-01": 299.042205844684, - "2025-02-01": 291.976771708434, - "2024-12-01": 289.595628645632, - "2024-11-01": 289.49285869456, - "2024-10-01": 289.649766387715, - "2024-09-01": 289.316681635578, - "2024-08-01": 288.853299266902, - "2024-07-01": 288.618396521593, - "2024-06-01": 288.283476591757, - "2024-05-01": 288.186212173778, - "2024-04-01": 287.70814838352, - "2024-03-01": 286.592360343302, - "2024-02-01": 284.751677112481, - "2024-01-01": 283, - "2023-01-01": 280, - "2022-01-01": 279, - "2021-01-01": 278, - "2015-01-01": 278 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[22]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[22]", - "description": null, - "label": "bracket 23" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[22].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[22].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 33740.2607508665, - "2034-02-01": 32970.16701414, - "2033-02-01": 32242.3861200907, - "2032-02-01": 31539.9929316477, - "2031-02-01": 30846.0623117403, - "2030-02-01": 30169.0568289037, - "2029-02-01": 29508.9764831381, - "2028-02-01": 28865.8212744434, - "2027-02-01": 28222.6660657487, - "2026-02-01": 27579.5108570539, - "2025-02-01": 26927.8930798237, - "2024-12-01": 26708.2894263286, - "2024-11-01": 26698.8113495689, - "2024-10-01": 26713.2823417646, - "2024-09-01": 26682.5632179809, - "2024-08-01": 26639.8272468768, - "2024-07-01": 26618.163071426, - "2024-06-01": 26587.2746962716, - "2024-05-01": 26578.304373624, - "2024-04-01": 26534.2143915543, - "2024-03-01": 26431.3095581631, - "2024-02-01": 26261.5504333419, - "2024-01-01": 26100, - "2023-01-01": 25400, - "2022-01-01": 24700, - "2021-01-01": 24100, - "2015-01-01": 24100 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[22].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[22].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 378.769977011643, - "2034-02-01": 370.124863415441, - "2033-02-01": 361.954756060788, - "2032-02-01": 354.069652451065, - "2031-02-01": 346.279550089651, - "2030-02-01": 338.679450224858, - "2029-02-01": 331.269352856684, - "2028-02-01": 324.049257985131, - "2027-02-01": 316.829163113577, - "2026-02-01": 309.609068242023, - "2025-02-01": 302.293972122159, - "2024-12-01": 299.828689728517, - "2024-11-01": 299.72228833041, - "2024-10-01": 299.88474046502, - "2024-09-01": 299.539885933655, - "2024-08-01": 299.06012962969, - "2024-07-01": 298.816926434016, - "2024-06-01": 298.470171877685, - "2024-05-01": 298.369470554477, - "2024-04-01": 297.874514050782, - "2024-03-01": 296.719298871333, - "2024-02-01": 294.813573830236, - "2024-01-01": 293, - "2023-01-01": 291, - "2022-01-01": 290, - "2021-01-01": 288, - "2015-01-01": 288 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[23]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[23]", - "description": null, - "label": "bracket 24" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[23].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[23].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 33869.5337805633, - "2034-02-01": 33096.4894931213, - "2033-02-01": 32365.9201665278, - "2032-02-01": 31660.8358164433, - "2031-02-01": 30964.2464585286, - "2030-02-01": 30284.6470849532, - "2029-02-01": 29622.0376957172, - "2028-02-01": 28976.4182908206, - "2027-02-01": 28330.7988859239, - "2026-02-01": 27685.1794810273, - "2025-02-01": 27031.065083961, - "2024-12-01": 26810.6200371575, - "2024-11-01": 26801.1056459274, - "2024-10-01": 26815.6320825376, - "2024-09-01": 26784.7952609616, - "2024-08-01": 26741.8955505047, - "2024-07-01": 26720.1483705503, - "2024-06-01": 26689.1416491309, - "2024-05-01": 26680.136957431, - "2024-04-01": 26635.8780482269, - "2024-03-01": 26532.5789434435, - "2024-02-01": 26362.1694005194, - "2024-01-01": 26200, - "2023-01-01": 25500, - "2022-01-01": 24800, - "2021-01-01": 24200, - "2015-01-01": 24200 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[23].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[23].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 391.697279981324, - "2034-02-01": 382.757111313579, - "2033-02-01": 374.308160704501, - "2032-02-01": 366.153940930623, - "2031-02-01": 358.097964768479, - "2030-02-01": 350.238475829802, - "2029-02-01": 342.575474114592, - "2028-02-01": 335.108959622848, - "2027-02-01": 327.642445131105, - "2026-02-01": 320.175930639362, - "2025-02-01": 312.611172535885, - "2024-12-01": 310.061750811402, - "2024-11-01": 309.95171796626, - "2024-10-01": 310.119714542324, - "2024-09-01": 309.763090231732, - "2024-08-01": 309.266959992478, - "2024-07-01": 309.01545634644, - "2024-06-01": 308.656867163613, - "2024-05-01": 308.552728935176, - "2024-04-01": 308.040879718044, - "2024-03-01": 306.846237399365, - "2024-02-01": 304.875470547992, - "2024-01-01": 303, - "2023-01-01": 301, - "2022-01-01": 300, - "2021-01-01": 299, - "2015-01-01": 299 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[24]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[24]", - "description": null, - "label": "bracket 25" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[24].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[24].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 33998.8068102601, - "2034-02-01": 33222.8119721027, - "2033-02-01": 32489.4542129649, - "2032-02-01": 31781.6787012389, - "2031-02-01": 31082.4306053168, - "2030-02-01": 30400.2373410026, - "2029-02-01": 29735.0989082962, - "2028-02-01": 29087.0153071977, - "2027-02-01": 28438.9317060992, - "2026-02-01": 27790.8481050007, - "2025-02-01": 27134.2370880983, - "2024-12-01": 26912.9506479863, - "2024-11-01": 26903.3999422859, - "2024-10-01": 26917.9818233106, - "2024-09-01": 26887.0273039424, - "2024-08-01": 26843.9638541326, - "2024-07-01": 26822.1336696745, - "2024-06-01": 26791.0086019902, - "2024-05-01": 26781.969541238, - "2024-04-01": 26737.5417048995, - "2024-03-01": 26633.8483287238, - "2024-02-01": 26462.788367697, - "2024-01-01": 26300, - "2023-01-01": 25600, - "2022-01-01": 24900, - "2021-01-01": 24300, - "2015-01-01": 24300 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[24].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[24].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 405.917313247973, - "2034-02-01": 396.65258400153, - "2033-02-01": 387.896905812585, - "2032-02-01": 379.446658258138, - "2031-02-01": 371.09822091519, - "2030-02-01": 362.95340399524, - "2029-02-01": 355.01220749829, - "2028-02-01": 347.274631424338, - "2027-02-01": 339.537055350386, - "2026-02-01": 331.799479276434, - "2025-02-01": 323.960092990983, - "2024-12-01": 321.318118002575, - "2024-11-01": 321.204090565695, - "2024-10-01": 321.378186027359, - "2024-09-01": 321.008614959616, - "2024-08-01": 320.494473391545, - "2024-07-01": 320.233839250106, - "2024-06-01": 319.862231978134, - "2024-05-01": 319.754313153944, - "2024-04-01": 319.223881952033, - "2024-03-01": 317.9858697802, - "2024-02-01": 315.943556937523, - "2024-01-01": 314, - "2023-01-01": 312, - "2022-01-01": 311, - "2021-01-01": 309, - "2015-01-01": 309 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[25]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[25]", - "description": null, - "label": "bracket 26" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[25].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[25].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 34128.079839957, - "2034-02-01": 33349.1344510841, - "2033-02-01": 32612.988259402, - "2032-02-01": 31902.5215860345, - "2031-02-01": 31200.6147521051, - "2030-02-01": 30515.827597052, - "2029-02-01": 29848.1601208753, - "2028-02-01": 29197.6123235749, - "2027-02-01": 28547.0645262745, - "2026-02-01": 27896.5167289741, - "2025-02-01": 27237.4090922355, - "2024-12-01": 27015.2812588152, - "2024-11-01": 27005.6942386444, - "2024-10-01": 27020.3315640837, - "2024-09-01": 26989.2593469232, - "2024-08-01": 26946.0321577604, - "2024-07-01": 26924.1189687987, - "2024-06-01": 26892.8755548494, - "2024-05-01": 26883.802125045, - "2024-04-01": 26839.2053615722, - "2024-03-01": 26735.1177140041, - "2024-02-01": 26563.4073348745, - "2024-01-01": 26400, - "2023-01-01": 25700, - "2022-01-01": 25000, - "2021-01-01": 24400, - "2015-01-01": 24400 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[25].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[25].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 418.844616217653, - "2034-02-01": 409.284831899668, - "2033-02-01": 400.250310456298, - "2032-02-01": 391.530946737696, - "2031-02-01": 382.916635594017, - "2030-02-01": 374.512429600184, - "2029-02-01": 366.318328756197, - "2028-02-01": 358.334333062056, - "2027-02-01": 350.350337367914, - "2026-02-01": 342.366341673773, - "2025-02-01": 334.277293404709, - "2024-12-01": 331.551179085459, - "2024-11-01": 331.433520201545, - "2024-10-01": 331.613160104664, - "2024-09-01": 331.231819257693, - "2024-08-01": 330.701303754333, - "2024-07-01": 330.43236916253, - "2024-06-01": 330.048927264061, - "2024-05-01": 329.937571534643, - "2024-04-01": 329.390247619295, - "2024-03-01": 328.112808308232, - "2024-02-01": 326.005453655278, - "2024-01-01": 324, - "2023-01-01": 322, - "2022-01-01": 321, - "2021-01-01": 320, - "2015-01-01": 320 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[26]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[26]", - "description": null, - "label": "bracket 27" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[26].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[26].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 34257.3528696538, - "2034-02-01": 33475.4569300655, - "2033-02-01": 32736.5223058392, - "2032-02-01": 32023.3644708301, - "2031-02-01": 31318.7988988934, - "2030-02-01": 30631.4178531015, - "2029-02-01": 29961.2213334544, - "2028-02-01": 29308.2093399521, - "2027-02-01": 28655.1973464498, - "2026-02-01": 28002.1853529475, - "2025-02-01": 27340.5810963728, - "2024-12-01": 27117.611869644, - "2024-11-01": 27107.9885350029, - "2024-10-01": 27122.6813048567, - "2024-09-01": 27091.4913899039, - "2024-08-01": 27048.1004613883, - "2024-07-01": 27026.104267923, - "2024-06-01": 26994.7425077087, - "2024-05-01": 26985.634708852, - "2024-04-01": 26940.8690182448, - "2024-03-01": 26836.3870992844, - "2024-02-01": 26664.0263020521, - "2024-01-01": 26500, - "2023-01-01": 25800, - "2022-01-01": 25100, - "2021-01-01": 24500, - "2015-01-01": 24500 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[26].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[26].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 433.064649484302, - "2034-02-01": 423.18030458762, - "2033-02-01": 413.839055564382, - "2032-02-01": 404.82366406521, - "2031-02-01": 395.916891740728, - "2030-02-01": 387.227357765623, - "2029-02-01": 378.755062139895, - "2028-02-01": 370.500004863545, - "2027-02-01": 362.244947587195, - "2026-02-01": 353.989890310845, - "2025-02-01": 345.626213859807, - "2024-12-01": 342.807546276632, - "2024-11-01": 342.685892800981, - "2024-10-01": 342.871631589698, - "2024-09-01": 342.477343985578, - "2024-08-01": 341.928817153399, - "2024-07-01": 341.650752066196, - "2024-06-01": 341.254292078582, - "2024-05-01": 341.139155753412, - "2024-04-01": 340.573249853283, - "2024-03-01": 339.252440689067, - "2024-02-01": 337.07354004481, - "2024-01-01": 335, - "2023-01-01": 332, - "2022-01-01": 331, - "2021-01-01": 330, - "2015-01-01": 330 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[27]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[27]", - "description": null, - "label": "bracket 28" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[27].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[27].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 34386.6258993506, - "2034-02-01": 33601.7794090468, - "2033-02-01": 32860.0563522763, - "2032-02-01": 32144.2073556257, - "2031-02-01": 31436.9830456817, - "2030-02-01": 30747.0081091509, - "2029-02-01": 30074.2825460335, - "2028-02-01": 29418.8063563293, - "2027-02-01": 28763.3301666251, - "2026-02-01": 28107.8539769209, - "2025-02-01": 27443.75310051, - "2024-12-01": 27219.9424804729, - "2024-11-01": 27210.2828313614, - "2024-10-01": 27225.0310456298, - "2024-09-01": 27193.7234328847, - "2024-08-01": 27150.1687650162, - "2024-07-01": 27128.0895670472, - "2024-06-01": 27096.609460568, - "2024-05-01": 27087.467292659, - "2024-04-01": 27042.5326749174, - "2024-03-01": 26937.6564845647, - "2024-02-01": 26764.6452692296, - "2024-01-01": 26600, - "2023-01-01": 25900, - "2022-01-01": 25200, - "2021-01-01": 24600, - "2015-01-01": 24600 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[27].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[27].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 445.991952453983, - "2034-02-01": 435.812552485758, - "2033-02-01": 426.192460208095, - "2032-02-01": 416.907952544769, - "2031-02-01": 407.735306419555, - "2030-02-01": 398.786383370567, - "2029-02-01": 390.061183397802, - "2028-02-01": 381.559706501263, - "2027-02-01": 373.058229604724, - "2026-02-01": 364.556752708184, - "2025-02-01": 355.943414273532, - "2024-12-01": 353.040607359517, - "2024-11-01": 352.915322436831, - "2024-10-01": 353.106605667003, - "2024-09-01": 352.700548283655, - "2024-08-01": 352.135647516188, - "2024-07-01": 351.84928197862, - "2024-06-01": 351.44098736451, - "2024-05-01": 351.322414134111, - "2024-04-01": 350.739615520545, - "2024-03-01": 349.379379217099, - "2024-02-01": 347.135436762565, - "2024-01-01": 345, - "2023-01-01": 343, - "2022-01-01": 342, - "2021-01-01": 340, - "2015-01-01": 340 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[28]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[28]", - "description": null, - "label": "bracket 29" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[28].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[28].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 34515.8989290474, - "2034-02-01": 33728.1018880282, - "2033-02-01": 32983.5903987134, - "2032-02-01": 32265.0502404213, - "2031-02-01": 31555.1671924699, - "2030-02-01": 30862.5983652004, - "2029-02-01": 30187.3437586125, - "2028-02-01": 29529.4033727064, - "2027-02-01": 28871.4629868003, - "2026-02-01": 28213.5226008942, - "2025-02-01": 27546.9251046473, - "2024-12-01": 27322.2730913017, - "2024-11-01": 27312.5771277199, - "2024-10-01": 27327.3807864028, - "2024-09-01": 27295.9554758655, - "2024-08-01": 27252.2370686441, - "2024-07-01": 27230.0748661715, - "2024-06-01": 27198.4764134273, - "2024-05-01": 27189.299876466, - "2024-04-01": 27144.19633159, - "2024-03-01": 27038.9258698451, - "2024-02-01": 26865.2642364072, - "2024-01-01": 26700, - "2023-01-01": 26000, - "2022-01-01": 25300, - "2021-01-01": 24700, - "2015-01-01": 24700 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[28].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[28].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 458.919255423663, - "2034-02-01": 448.444800383896, - "2033-02-01": 438.545864851808, - "2032-02-01": 428.992241024328, - "2031-02-01": 419.553721098383, - "2030-02-01": 410.345408975511, - "2029-02-01": 401.36730465571, - "2028-02-01": 392.619408138981, - "2027-02-01": 383.871511622252, - "2026-02-01": 375.123615105523, - "2025-02-01": 366.260614687258, - "2024-12-01": 363.273668442401, - "2024-11-01": 363.144752072681, - "2024-10-01": 363.341579744307, - "2024-09-01": 362.923752581732, - "2024-08-01": 362.342477878976, - "2024-07-01": 362.047811891044, - "2024-06-01": 361.627682650438, - "2024-05-01": 361.50567251481, - "2024-04-01": 360.905981187807, - "2024-03-01": 359.506317745131, - "2024-02-01": 357.197333480321, - "2024-01-01": 355, - "2023-01-01": 353, - "2022-01-01": 352, - "2021-01-01": 351, - "2015-01-01": 351 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[29]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[29]", - "description": null, - "label": "bracket 30" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[29].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[29].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 34645.1719587442, - "2034-02-01": 33854.4243670096, - "2033-02-01": 33107.1244451506, - "2032-02-01": 32385.8931252168, - "2031-02-01": 31673.3513392582, - "2030-02-01": 30978.1886212498, - "2029-02-01": 30300.4049711916, - "2028-02-01": 29640.0003890836, - "2027-02-01": 28979.5958069756, - "2026-02-01": 28319.1912248676, - "2025-02-01": 27650.0971087845, - "2024-12-01": 27424.6037021306, - "2024-11-01": 27414.8714240784, - "2024-10-01": 27429.7305271759, - "2024-09-01": 27398.1875188462, - "2024-08-01": 27354.305372272, - "2024-07-01": 27332.0601652957, - "2024-06-01": 27300.3433662866, - "2024-05-01": 27291.1324602729, - "2024-04-01": 27245.8599882627, - "2024-03-01": 27140.1952551254, - "2024-02-01": 26965.8832035848, - "2024-01-01": 26800, - "2023-01-01": 26100, - "2022-01-01": 25400, - "2021-01-01": 24800, - "2015-01-01": 24800 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[29].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[29].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 473.139288690312, - "2034-02-01": 462.340273071848, - "2033-02-01": 452.134609959892, - "2032-02-01": 442.284958351842, - "2031-02-01": 432.553977245094, - "2030-02-01": 423.060337140949, - "2029-02-01": 413.804038039408, - "2028-02-01": 404.78507994047, - "2027-02-01": 395.766121841533, - "2026-02-01": 386.747163742595, - "2025-02-01": 377.609535142356, - "2024-12-01": 374.530035633574, - "2024-11-01": 374.397124672116, - "2024-10-01": 374.600051229342, - "2024-09-01": 374.169277309617, - "2024-08-01": 373.569991278042, - "2024-07-01": 373.26619479471, - "2024-06-01": 372.833047464958, - "2024-05-01": 372.707256733578, - "2024-04-01": 372.088983421796, - "2024-03-01": 370.645950125966, - "2024-02-01": 368.265419869852, - "2024-01-01": 366, - "2023-01-01": 364, - "2022-01-01": 363, - "2021-01-01": 361, - "2015-01-01": 361 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[30]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[30]", - "description": null, - "label": "bracket 31" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[30].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[30].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 34774.444988441, - "2034-02-01": 33980.746845991, - "2033-02-01": 33230.6584915877, - "2032-02-01": 32506.7360100124, - "2031-02-01": 31791.5354860465, - "2030-02-01": 31093.7788772992, - "2029-02-01": 30413.4661837707, - "2028-02-01": 29750.5974054608, - "2027-02-01": 29087.7286271509, - "2026-02-01": 28424.859848841, - "2025-02-01": 27753.2691129218, - "2024-12-01": 27526.9343129594, - "2024-11-01": 27517.1657204369, - "2024-10-01": 27532.0802679489, - "2024-09-01": 27500.419561827, - "2024-08-01": 27456.3736758998, - "2024-07-01": 27434.0454644199, - "2024-06-01": 27402.2103191458, - "2024-05-01": 27392.9650440799, - "2024-04-01": 27347.5236449353, - "2024-03-01": 27241.4646404057, - "2024-02-01": 27066.5021707623, - "2024-01-01": 26900, - "2023-01-01": 26200, - "2022-01-01": 25500, - "2021-01-01": 24900, - "2015-01-01": 24900 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[30].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[30].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 486.066591659993, - "2034-02-01": 474.972520969985, - "2033-02-01": 464.488014603605, - "2032-02-01": 454.3692468314, - "2031-02-01": 444.372391923921, - "2030-02-01": 434.619362745893, - "2029-02-01": 425.110159297315, - "2028-02-01": 415.844781578188, - "2027-02-01": 406.579403859061, - "2026-02-01": 397.314026139934, - "2025-02-01": 387.926735556082, - "2024-12-01": 384.763096716459, - "2024-11-01": 384.626554307966, - "2024-10-01": 384.835025306647, - "2024-09-01": 384.392481607694, - "2024-08-01": 383.77682164083, - "2024-07-01": 383.464724707134, - "2024-06-01": 383.019742750886, - "2024-05-01": 382.890515114277, - "2024-04-01": 382.255349089058, - "2024-03-01": 380.772888653998, - "2024-02-01": 378.327316587607, - "2024-01-01": 376, - "2023-01-01": 374, - "2022-01-01": 373, - "2021-01-01": 372, - "2015-01-01": 372 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[31]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[31]", - "description": null, - "label": "bracket 32" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[31].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[31].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 34903.7180181378, - "2034-02-01": 34107.0693249724, - "2033-02-01": 33354.1925380248, - "2032-02-01": 32627.578894808, - "2031-02-01": 31909.7196328348, - "2030-02-01": 31209.3691333487, - "2029-02-01": 30526.5273963497, - "2028-02-01": 29861.194421838, - "2027-02-01": 29195.8614473262, - "2026-02-01": 28530.5284728144, - "2025-02-01": 27856.4411170591, - "2024-12-01": 27629.2649237883, - "2024-11-01": 27619.4600167954, - "2024-10-01": 27634.430008722, - "2024-09-01": 27602.6516048078, - "2024-08-01": 27558.4419795277, - "2024-07-01": 27536.0307635442, - "2024-06-01": 27504.0772720051, - "2024-05-01": 27494.7976278869, - "2024-04-01": 27449.1873016079, - "2024-03-01": 27342.734025686, - "2024-02-01": 27167.1211379399, - "2024-01-01": 27000, - "2023-01-01": 26300, - "2022-01-01": 25600, - "2021-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[31].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[31].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 500.286624926642, - "2034-02-01": 488.867993657937, - "2033-02-01": 478.076759711689, - "2032-02-01": 467.661964158915, - "2031-02-01": 457.372648070632, - "2030-02-01": 447.334290911331, - "2029-02-01": 437.546892681013, - "2028-02-01": 428.010453379678, - "2027-02-01": 418.474014078342, - "2026-02-01": 408.937574777006, - "2025-02-01": 399.27565601118, - "2024-12-01": 396.019463907632, - "2024-11-01": 395.878926907401, - "2024-10-01": 396.093496791681, - "2024-09-01": 395.638006335578, - "2024-08-01": 395.004335039897, - "2024-07-01": 394.6831076108, - "2024-06-01": 394.225107565407, - "2024-05-01": 394.092099333046, - "2024-04-01": 393.438351323046, - "2024-03-01": 391.912521034833, - "2024-02-01": 389.395402977138, - "2024-01-01": 387, - "2023-01-01": 384, - "2022-01-01": 383, - "2021-01-01": 382, - "2015-01-01": 382 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[32]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[32]", - "description": null, - "label": "bracket 33" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[32].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[32].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 35032.9910478346, - "2034-02-01": 34233.3918039537, - "2033-02-01": 33477.726584462, - "2032-02-01": 32748.4217796036, - "2031-02-01": 32027.903779623, - "2030-02-01": 31324.9593893981, - "2029-02-01": 30639.5886089288, - "2028-02-01": 29971.7914382152, - "2027-02-01": 29303.9942675015, - "2026-02-01": 28636.1970967878, - "2025-02-01": 27959.6131211963, - "2024-12-01": 27731.5955346171, - "2024-11-01": 27721.7543131539, - "2024-10-01": 27736.779749495, - "2024-09-01": 27704.8836477886, - "2024-08-01": 27660.5102831556, - "2024-07-01": 27638.0160626684, - "2024-06-01": 27605.9442248644, - "2024-05-01": 27596.6302116939, - "2024-04-01": 27550.8509582805, - "2024-03-01": 27444.0034109663, - "2024-02-01": 27267.7401051174, - "2024-01-01": 27100, - "2023-01-01": 26400, - "2022-01-01": 25700, - "2021-01-01": 25100, - "2015-01-01": 25100 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[32].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[32].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 513.213927896322, - "2034-02-01": 501.500241556075, - "2033-02-01": 490.430164355402, - "2032-02-01": 479.746252638473, - "2031-02-01": 469.191062749459, - "2030-02-01": 458.893316516275, - "2029-02-01": 448.85301393892, - "2028-02-01": 439.070155017395, - "2027-02-01": 429.28729609587, - "2026-02-01": 419.504437174345, - "2025-02-01": 409.592856424905, - "2024-12-01": 406.252524990516, - "2024-11-01": 406.108356543252, - "2024-10-01": 406.328470868986, - "2024-09-01": 405.861210633655, - "2024-08-01": 405.211165402685, - "2024-07-01": 404.881637523224, - "2024-06-01": 404.411802851334, - "2024-05-01": 404.275357713745, - "2024-04-01": 403.604716990309, - "2024-03-01": 402.039459562865, - "2024-02-01": 399.457299694894, - "2024-01-01": 397, - "2023-01-01": 395, - "2022-01-01": 394, - "2021-01-01": 392, - "2015-01-01": 392 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[33]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[33]", - "description": null, - "label": "bracket 34" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[33].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[33].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 35162.2640775314, - "2034-02-01": 34359.7142829351, - "2033-02-01": 33601.2606308991, - "2032-02-01": 32869.2646643992, - "2031-02-01": 32146.0879264113, - "2030-02-01": 31440.5496454476, - "2029-02-01": 30752.6498215079, - "2028-02-01": 30082.3884545923, - "2027-02-01": 29412.1270876768, - "2026-02-01": 28741.8657207612, - "2025-02-01": 28062.7851253336, - "2024-12-01": 27833.9261454459, - "2024-11-01": 27824.0486095124, - "2024-10-01": 27839.129490268, - "2024-09-01": 27807.1156907693, - "2024-08-01": 27762.5785867835, - "2024-07-01": 27740.0013617926, - "2024-06-01": 27707.8111777237, - "2024-05-01": 27698.4627955009, - "2024-04-01": 27652.5146149531, - "2024-03-01": 27545.2727962466, - "2024-02-01": 27368.359072295, - "2024-01-01": 27200, - "2023-01-01": 26500, - "2022-01-01": 25800, - "2021-01-01": 25200, - "2015-01-01": 25200 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[33].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[33].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 526.141230866003, - "2034-02-01": 514.132489454213, - "2033-02-01": 502.783568999115, - "2032-02-01": 491.830541118032, - "2031-02-01": 481.009477428287, - "2030-02-01": 470.452342121219, - "2029-02-01": 460.159135196828, - "2028-02-01": 450.129856655113, - "2027-02-01": 440.100578113399, - "2026-02-01": 430.071299571684, - "2025-02-01": 419.910056838631, - "2024-12-01": 416.485586073401, - "2024-11-01": 416.337786179102, - "2024-10-01": 416.56344494629, - "2024-09-01": 416.084414931732, - "2024-08-01": 415.417995765473, - "2024-07-01": 415.080167435647, - "2024-06-01": 414.598498137262, - "2024-05-01": 414.458616094444, - "2024-04-01": 413.771082657571, - "2024-03-01": 412.166398090897, - "2024-02-01": 409.519196412649, - "2024-01-01": 407, - "2023-01-01": 405, - "2022-01-01": 404, - "2021-01-01": 403, - "2015-01-01": 403 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[34]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[34]", - "description": null, - "label": "bracket 35" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[34].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[34].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 35291.5371072282, - "2034-02-01": 34486.0367619165, - "2033-02-01": 33724.7946773362, - "2032-02-01": 32990.1075491948, - "2031-02-01": 32264.2720731996, - "2030-02-01": 31556.139901497, - "2029-02-01": 30865.711034087, - "2028-02-01": 30192.9854709695, - "2027-02-01": 29520.259907852, - "2026-02-01": 28847.5343447346, - "2025-02-01": 28165.9571294708, - "2024-12-01": 27936.2567562748, - "2024-11-01": 27926.3429058709, - "2024-10-01": 27941.4792310411, - "2024-09-01": 27909.3477337501, - "2024-08-01": 27864.6468904114, - "2024-07-01": 27841.9866609169, - "2024-06-01": 27809.678130583, - "2024-05-01": 27800.2953793079, - "2024-04-01": 27754.1782716258, - "2024-03-01": 27646.542181527, - "2024-02-01": 27468.9780394725, - "2024-01-01": 27300, - "2023-01-01": 26600, - "2022-01-01": 25900, - "2021-01-01": 25300, - "2015-01-01": 25300 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[34].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[34].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 540.361264132652, - "2034-02-01": 528.027962142165, - "2033-02-01": 516.372314107199, - "2032-02-01": 505.123258445546, - "2031-02-01": 494.009733574998, - "2030-02-01": 483.167270286657, - "2029-02-01": 472.595868580526, - "2028-02-01": 462.295528456603, - "2027-02-01": 451.99518833268, - "2026-02-01": 441.694848208756, - "2025-02-01": 431.258977293729, - "2024-12-01": 427.741953264574, - "2024-11-01": 427.590158778537, - "2024-10-01": 427.821916431325, - "2024-09-01": 427.329939659617, - "2024-08-01": 426.64550916454, - "2024-07-01": 426.298550339313, - "2024-06-01": 425.803862951783, - "2024-05-01": 425.660200313212, - "2024-04-01": 424.954084891559, - "2024-03-01": 423.306030471732, - "2024-02-01": 420.58728280218, - "2024-01-01": 418, - "2023-01-01": 416, - "2022-01-01": 415, - "2021-01-01": 413, - "2015-01-01": 413 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[35]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[35]", - "description": null, - "label": "bracket 36" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[35].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[35].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 35420.810136925, - "2034-02-01": 34612.3592408979, - "2033-02-01": 33848.3287237733, - "2032-02-01": 33110.9504339903, - "2031-02-01": 32382.4562199879, - "2030-02-01": 31671.7301575464, - "2029-02-01": 30978.772246666, - "2028-02-01": 30303.5824873467, - "2027-02-01": 29628.3927280273, - "2026-02-01": 28953.202968708, - "2025-02-01": 28269.1291336081, - "2024-12-01": 28038.5873671036, - "2024-11-01": 28028.6372022295, - "2024-10-01": 28043.8289718141, - "2024-09-01": 28011.5797767309, - "2024-08-01": 27966.7151940392, - "2024-07-01": 27943.9719600411, - "2024-06-01": 27911.5450834422, - "2024-05-01": 27902.1279631149, - "2024-04-01": 27855.8419282984, - "2024-03-01": 27747.8115668073, - "2024-02-01": 27569.5970066501, - "2024-01-01": 27400, - "2023-01-01": 26700, - "2022-01-01": 26000, - "2021-01-01": 25400, - "2015-01-01": 25400 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[35].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[35].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 553.288567102332, - "2034-02-01": 540.660210040303, - "2033-02-01": 528.725718750912, - "2032-02-01": 517.207546925105, - "2031-02-01": 505.828148253825, - "2030-02-01": 494.726295891601, - "2029-02-01": 483.901989838433, - "2028-02-01": 473.35523009432, - "2027-02-01": 462.808470350208, - "2026-02-01": 452.261710606095, - "2025-02-01": 441.576177707455, - "2024-12-01": 437.975014347458, - "2024-11-01": 437.819588414387, - "2024-10-01": 438.05689050863, - "2024-09-01": 437.553143957694, - "2024-08-01": 436.852339527328, - "2024-07-01": 436.497080251737, - "2024-06-01": 435.990558237711, - "2024-05-01": 435.843458693911, - "2024-04-01": 435.120450558821, - "2024-03-01": 433.432968999763, - "2024-02-01": 430.649179519936, - "2024-01-01": 428, - "2023-01-01": 426, - "2022-01-01": 425, - "2021-01-01": 424, - "2015-01-01": 424 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[36]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[36]", - "description": null, - "label": "bracket 37" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[36].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[36].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 35550.0831666218, - "2034-02-01": 34738.6817198793, - "2033-02-01": 33971.8627702105, - "2032-02-01": 33231.7933187859, - "2031-02-01": 32500.6403667762, - "2030-02-01": 31787.3204135959, - "2029-02-01": 31091.8334592451, - "2028-02-01": 30414.1795037239, - "2027-02-01": 29736.5255482026, - "2026-02-01": 29058.8715926813, - "2025-02-01": 28372.3011377453, - "2024-12-01": 28140.9179779325, - "2024-11-01": 28130.931498588, - "2024-10-01": 28146.1787125872, - "2024-09-01": 28113.8118197116, - "2024-08-01": 28068.7834976671, - "2024-07-01": 28045.9572591654, - "2024-06-01": 28013.4120363015, - "2024-05-01": 28003.9605469219, - "2024-04-01": 27957.505584971, - "2024-03-01": 27849.0809520876, - "2024-02-01": 27670.2159738276, - "2024-01-01": 27500, - "2023-01-01": 26800, - "2022-01-01": 26100, - "2021-01-01": 25500, - "2015-01-01": 25500 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[36].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[36].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 567.508600368981, - "2034-02-01": 554.555682728254, - "2033-02-01": 542.314463858996, - "2032-02-01": 530.500264252619, - "2031-02-01": 518.828404400536, - "2030-02-01": 507.44122405704, - "2029-02-01": 496.338723222131, - "2028-02-01": 485.52090189581, - "2027-02-01": 474.703080569489, - "2026-02-01": 463.885259243168, - "2025-02-01": 452.925098162553, - "2024-12-01": 449.231381538631, - "2024-11-01": 449.071961013822, - "2024-10-01": 449.315361993664, - "2024-09-01": 448.798668685578, - "2024-08-01": 448.079852926395, - "2024-07-01": 447.715463155403, - "2024-06-01": 447.195923052231, - "2024-05-01": 447.04504291268, - "2024-04-01": 446.30345279281, - "2024-03-01": 444.572601380598, - "2024-02-01": 441.717265909467, - "2024-01-01": 439, - "2023-01-01": 436, - "2022-01-01": 435, - "2021-01-01": 434, - "2015-01-01": 434 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[37]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[37]", - "description": null, - "label": "bracket 38" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[37].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[37].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 35679.3561963186, - "2034-02-01": 34865.0041988606, - "2033-02-01": 34095.3968166476, - "2032-02-01": 33352.6362035815, - "2031-02-01": 32618.8245135644, - "2030-02-01": 31902.9106696453, - "2029-02-01": 31204.8946718242, - "2028-02-01": 30524.776520101, - "2027-02-01": 29844.6583683779, - "2026-02-01": 29164.5402166547, - "2025-02-01": 28475.4731418826, - "2024-12-01": 28243.2485887613, - "2024-11-01": 28233.2257949465, - "2024-10-01": 28248.5284533602, - "2024-09-01": 28216.0438626924, - "2024-08-01": 28170.851801295, - "2024-07-01": 28147.9425582896, - "2024-06-01": 28115.2789891608, - "2024-05-01": 28105.7931307289, - "2024-04-01": 28059.1692416436, - "2024-03-01": 27950.3503373679, - "2024-02-01": 27770.8349410052, - "2024-01-01": 27600, - "2023-01-01": 26900, - "2022-01-01": 26200, - "2021-01-01": 25600, - "2015-01-01": 25600 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[37].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[37].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 580.435903338662, - "2034-02-01": 567.187930626392, - "2033-02-01": 554.667868502709, - "2032-02-01": 542.584552732178, - "2031-02-01": 530.646819079363, - "2030-02-01": 519.000249661984, - "2029-02-01": 507.644844480038, - "2028-02-01": 496.580603533528, - "2027-02-01": 485.516362587017, - "2026-02-01": 474.452121640506, - "2025-02-01": 463.242298576278, - "2024-12-01": 459.464442621516, - "2024-11-01": 459.301390649672, - "2024-10-01": 459.550336070969, - "2024-09-01": 459.021872983655, - "2024-08-01": 458.286683289183, - "2024-07-01": 457.913993067827, - "2024-06-01": 457.382618338159, - "2024-05-01": 457.228301293379, - "2024-04-01": 456.469818460072, - "2024-03-01": 454.69953990863, - "2024-02-01": 451.779162627222, - "2024-01-01": 449, - "2023-01-01": 447, - "2022-01-01": 446, - "2021-01-01": 444, - "2015-01-01": 444 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[38]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[38]", - "description": null, - "label": "bracket 39" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[38].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[38].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 35808.6292260154, - "2034-02-01": 34991.326677842, - "2033-02-01": 34218.9308630847, - "2032-02-01": 33473.4790883771, - "2031-02-01": 32737.0086603527, - "2030-02-01": 32018.5009256948, - "2029-02-01": 31317.9558844033, - "2028-02-01": 30635.3735364782, - "2027-02-01": 29952.7911885532, - "2026-02-01": 29270.2088406281, - "2025-02-01": 28578.6451460198, - "2024-12-01": 28345.5791995902, - "2024-11-01": 28335.520091305, - "2024-10-01": 28350.8781941333, - "2024-09-01": 28318.2759056732, - "2024-08-01": 28272.9201049229, - "2024-07-01": 28249.9278574138, - "2024-06-01": 28217.1459420201, - "2024-05-01": 28207.6257145358, - "2024-04-01": 28160.8328983162, - "2024-03-01": 28051.6197226482, - "2024-02-01": 27871.4539081828, - "2024-01-01": 27700, - "2023-01-01": 27000, - "2022-01-01": 26300, - "2021-01-01": 25700, - "2015-01-01": 25700 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[38].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[38].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 593.363206308342, - "2034-02-01": 579.82017852453, - "2033-02-01": 567.021273146422, - "2032-02-01": 554.668841211736, - "2031-02-01": 542.465233758191, - "2030-02-01": 530.559275266928, - "2029-02-01": 518.950965737946, - "2028-02-01": 507.640305171246, - "2027-02-01": 496.329644604545, - "2026-02-01": 485.018984037845, - "2025-02-01": 473.559498990004, - "2024-12-01": 469.6975037044, - "2024-11-01": 469.530820285523, - "2024-10-01": 469.785310148273, - "2024-09-01": 469.245077281732, - "2024-08-01": 468.493513651971, - "2024-07-01": 468.112522980251, - "2024-06-01": 467.569313624087, - "2024-05-01": 467.411559674078, - "2024-04-01": 466.636184127334, - "2024-03-01": 464.826478436662, - "2024-02-01": 461.841059344978, - "2024-01-01": 459, - "2023-01-01": 457, - "2022-01-01": 456, - "2021-01-01": 455, - "2015-01-01": 455 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[39]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[39]", - "description": null, - "label": "bracket 40" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[39].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[39].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 35937.9022557122, - "2034-02-01": 35117.6491568234, - "2033-02-01": 34342.4649095219, - "2032-02-01": 33594.3219731727, - "2031-02-01": 32855.192807141, - "2030-02-01": 32134.0911817442, - "2029-02-01": 31431.0170969823, - "2028-02-01": 30745.9705528554, - "2027-02-01": 30060.9240087285, - "2026-02-01": 29375.8774646015, - "2025-02-01": 28681.8171501571, - "2024-12-01": 28447.909810419, - "2024-11-01": 28437.8143876635, - "2024-10-01": 28453.2279349063, - "2024-09-01": 28420.5079486539, - "2024-08-01": 28374.9884085508, - "2024-07-01": 28351.9131565381, - "2024-06-01": 28319.0128948793, - "2024-05-01": 28309.4582983428, - "2024-04-01": 28262.4965549889, - "2024-03-01": 28152.8891079286, - "2024-02-01": 27972.0728753603, - "2024-01-01": 27800, - "2023-01-01": 27100, - "2022-01-01": 26400, - "2021-01-01": 25800, - "2015-01-01": 25800 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[39].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[39].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 607.583239574991, - "2034-02-01": 593.715651212482, - "2033-02-01": 580.610018254506, - "2032-02-01": 567.96155853925, - "2031-02-01": 555.465489904902, - "2030-02-01": 543.274203432366, - "2029-02-01": 531.387699121644, - "2028-02-01": 519.805976972735, - "2027-02-01": 508.224254823826, - "2026-02-01": 496.642532674917, - "2025-02-01": 484.908419445102, - "2024-12-01": 480.953870895573, - "2024-11-01": 480.783192884958, - "2024-10-01": 481.043781633308, - "2024-09-01": 480.490602009617, - "2024-08-01": 479.721027051038, - "2024-07-01": 479.330905883917, - "2024-06-01": 478.774678438608, - "2024-05-01": 478.613143892846, - "2024-04-01": 477.819186361323, - "2024-03-01": 475.966110817497, - "2024-02-01": 472.909145734509, - "2024-01-01": 470, - "2023-01-01": 468, - "2022-01-01": 467, - "2021-01-01": 465, - "2015-01-01": 465 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[40]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[40]", - "description": null, - "label": "bracket 41" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[40].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[40].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 36067.175285409, - "2034-02-01": 35243.9716358048, - "2033-02-01": 34465.998955959, - "2032-02-01": 33715.1648579683, - "2031-02-01": 32973.3769539293, - "2030-02-01": 32249.6814377936, - "2029-02-01": 31544.0783095614, - "2028-02-01": 30856.5675692326, - "2027-02-01": 30169.0568289037, - "2026-02-01": 29481.5460885749, - "2025-02-01": 28784.9891542944, - "2024-12-01": 28550.2404212479, - "2024-11-01": 28540.108684022, - "2024-10-01": 28555.5776756794, - "2024-09-01": 28522.7399916347, - "2024-08-01": 28477.0567121786, - "2024-07-01": 28453.8984556623, - "2024-06-01": 28420.8798477386, - "2024-05-01": 28411.2908821498, - "2024-04-01": 28364.1602116615, - "2024-03-01": 28254.1584932089, - "2024-02-01": 28072.6918425379, - "2024-01-01": 27900, - "2023-01-01": 27200, - "2022-01-01": 26500, - "2021-01-01": 25900, - "2015-01-01": 25900 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[40].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[40].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 620.510542544672, - "2034-02-01": 606.34789911062, - "2033-02-01": 592.963422898219, - "2032-02-01": 580.045847018809, - "2031-02-01": 567.283904583729, - "2030-02-01": 554.83322903731, - "2029-02-01": 542.693820379551, - "2028-02-01": 530.865678610453, - "2027-02-01": 519.037536841355, - "2026-02-01": 507.209395072256, - "2025-02-01": 495.225619858828, - "2024-12-01": 491.186931978458, - "2024-11-01": 491.012622520808, - "2024-10-01": 491.278755710613, - "2024-09-01": 490.713806307694, - "2024-08-01": 489.927857413826, - "2024-07-01": 489.529435796341, - "2024-06-01": 488.961373724535, - "2024-05-01": 488.796402273545, - "2024-04-01": 487.985552028585, - "2024-03-01": 486.093049345529, - "2024-02-01": 482.971042452264, - "2024-01-01": 480, - "2023-01-01": 478, - "2022-01-01": 477, - "2021-01-01": 476, - "2015-01-01": 476 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[41]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[41]", - "description": null, - "label": "bracket 42" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[41].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[41].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 36196.4483151059, - "2034-02-01": 35370.2941147862, - "2033-02-01": 34589.5330023961, - "2032-02-01": 33836.0077427639, - "2031-02-01": 33091.5611007175, - "2030-02-01": 32365.2716938431, - "2029-02-01": 31657.1395221405, - "2028-02-01": 30967.1645856098, - "2027-02-01": 30277.189649079, - "2026-02-01": 29587.2147125483, - "2025-02-01": 28888.1611584316, - "2024-12-01": 28652.5710320767, - "2024-11-01": 28642.4029803805, - "2024-10-01": 28657.9274164524, - "2024-09-01": 28624.9720346155, - "2024-08-01": 28579.1250158065, - "2024-07-01": 28555.8837547865, - "2024-06-01": 28522.7468005979, - "2024-05-01": 28513.1234659568, - "2024-04-01": 28465.8238683341, - "2024-03-01": 28355.4278784892, - "2024-02-01": 28173.3108097154, - "2024-01-01": 28000, - "2023-01-01": 27300, - "2022-01-01": 26600, - "2021-01-01": 26000, - "2015-01-01": 26000 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[41].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[41].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 634.730575811321, - "2034-02-01": 620.243371798572, - "2033-02-01": 606.552168006303, - "2032-02-01": 593.338564346323, - "2031-02-01": 580.28416073044, - "2030-02-01": 567.548157202748, - "2029-02-01": 555.130553763249, - "2028-02-01": 543.031350411942, - "2027-02-01": 530.932147060636, - "2026-02-01": 518.832943709329, - "2025-02-01": 506.574540313926, - "2024-12-01": 502.443299169631, - "2024-11-01": 502.264995120243, - "2024-10-01": 502.537227195647, - "2024-09-01": 501.959331035579, - "2024-08-01": 501.155370812893, - "2024-07-01": 500.747818700007, - "2024-06-01": 500.166738539056, - "2024-05-01": 499.997986492314, - "2024-04-01": 499.168554262573, - "2024-03-01": 497.232681726364, - "2024-02-01": 494.039128841795, - "2024-01-01": 491, - "2023-01-01": 488, - "2022-01-01": 487, - "2021-01-01": 486, - "2015-01-01": 486 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[42]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[42]", - "description": null, - "label": "bracket 43" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[42].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[42].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 36325.7213448027, - "2034-02-01": 35496.6165937675, - "2033-02-01": 34713.0670488332, - "2032-02-01": 33956.8506275594, - "2031-02-01": 33209.7452475058, - "2030-02-01": 32480.8619498925, - "2029-02-01": 31770.2007347196, - "2028-02-01": 31077.7616019869, - "2027-02-01": 30385.3224692543, - "2026-02-01": 29692.8833365217, - "2025-02-01": 28991.3331625689, - "2024-12-01": 28754.9016429056, - "2024-11-01": 28744.697276739, - "2024-10-01": 28760.2771572254, - "2024-09-01": 28727.2040775962, - "2024-08-01": 28681.1933194344, - "2024-07-01": 28657.8690539108, - "2024-06-01": 28624.6137534572, - "2024-05-01": 28614.9560497638, - "2024-04-01": 28567.4875250067, - "2024-03-01": 28456.6972637695, - "2024-02-01": 28273.929776893, - "2024-01-01": 28100, - "2023-01-01": 27400, - "2022-01-01": 26700, - "2021-01-01": 26100, - "2015-01-01": 26100 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[42].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[42].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 647.657878781001, - "2034-02-01": 632.875619696709, - "2033-02-01": 618.905572650016, - "2032-02-01": 605.422852825882, - "2031-02-01": 592.102575409267, - "2030-02-01": 579.107182807692, - "2029-02-01": 566.436675021156, - "2028-02-01": 554.09105204966, - "2027-02-01": 541.745429078164, - "2026-02-01": 529.399806106667, - "2025-02-01": 516.891740727651, - "2024-12-01": 512.676360252515, - "2024-11-01": 512.494424756093, - "2024-10-01": 512.772201272952, - "2024-09-01": 512.182535333655, - "2024-08-01": 511.362201175681, - "2024-07-01": 510.946348612431, - "2024-06-01": 510.353433824984, - "2024-05-01": 510.181244873013, - "2024-04-01": 509.334919929835, - "2024-03-01": 507.359620254396, - "2024-02-01": 504.101025559551, - "2024-01-01": 501, - "2023-01-01": 499, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[43]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[43]", - "description": null, - "label": "bracket 44" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[43].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[43].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 36454.9943744995, - "2034-02-01": 35622.9390727489, - "2033-02-01": 34836.6010952704, - "2032-02-01": 34077.693512355, - "2031-02-01": 33327.9293942941, - "2030-02-01": 32596.452205942, - "2029-02-01": 31883.2619472986, - "2028-02-01": 31188.3586183641, - "2027-02-01": 30493.4552894296, - "2026-02-01": 29798.551960495, - "2025-02-01": 29094.5051667061, - "2024-12-01": 28857.2322537344, - "2024-11-01": 28846.9915730975, - "2024-10-01": 28862.6268979985, - "2024-09-01": 28829.436120577, - "2024-08-01": 28783.2616230623, - "2024-07-01": 28759.854353035, - "2024-06-01": 28726.4807063165, - "2024-05-01": 28716.7886335708, - "2024-04-01": 28669.1511816794, - "2024-03-01": 28557.9666490498, - "2024-02-01": 28374.5487440705, - "2024-01-01": 28200, - "2023-01-01": 27500, - "2015-01-01": 27500 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[43].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[43].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 660.585181750682, - "2034-02-01": 645.507867594847, - "2033-02-01": 631.258977293729, - "2032-02-01": 617.50714130544, - "2031-02-01": 603.920990088095, - "2030-02-01": 590.666208412636, - "2029-02-01": 577.742796279064, - "2028-02-01": 565.150753687378, - "2027-02-01": 552.558711095692, - "2026-02-01": 539.966668504006, - "2025-02-01": 527.208941141377, - "2024-12-01": 522.9094213354, - "2024-11-01": 522.723854391943, - "2024-10-01": 523.007175350256, - "2024-09-01": 522.405739631732, - "2024-08-01": 521.569031538469, - "2024-07-01": 521.144878524854, - "2024-06-01": 520.540129110912, - "2024-05-01": 520.364503253712, - "2024-04-01": 519.501285597098, - "2024-03-01": 517.486558782428, - "2024-02-01": 514.162922277306, - "2024-01-01": 511, - "2023-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[44]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[44]", - "description": null, - "label": "bracket 45" - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[44].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[44].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": 36584.2674041963, - "2034-02-01": 35749.2615517303, - "2033-02-01": 34960.1351417075, - "2032-02-01": 34198.5363971506, - "2031-02-01": 33446.1135410824, - "2030-02-01": 32712.0424619914, - "2029-02-01": 31996.3231598777, - "2028-02-01": 31298.9556347413, - "2027-02-01": 30601.5881096049, - "2026-02-01": 29904.2205844684, - "2025-02-01": 29197.6771708434, - "2024-12-01": 28959.5628645632, - "2024-11-01": 28949.285869456, - "2024-10-01": 28964.9766387715, - "2024-09-01": 28931.6681635578, - "2024-08-01": 28885.3299266902, - "2024-07-01": 28861.8396521593, - "2024-06-01": 28828.3476591757, - "2024-05-01": 28818.6212173778, - "2024-04-01": 28770.814838352, - "2024-03-01": 28659.2360343301, - "2024-02-01": 28475.1677112481, - "2024-01-01": 28300, - "2015-01-01": 28300 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[44].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.low_income_tax_tables.joint.no_or_one_dependent[44].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-02-01": "Infinity", - "2034-02-01": "Infinity", - "2033-02-01": "Infinity", - "2032-02-01": "Infinity", - "2031-02-01": "Infinity", - "2030-02-01": "Infinity", - "2029-02-01": "Infinity", - "2028-02-01": "Infinity", - "2027-02-01": "Infinity", - "2026-02-01": "Infinity", - "2025-02-01": "Infinity", - "2024-12-01": "Infinity", - "2024-11-01": "Infinity", - "2024-10-01": "Infinity", - "2024-09-01": "Infinity", - "2024-08-01": "Infinity", - "2024-07-01": "Infinity", - "2024-06-01": "Infinity", - "2024-05-01": "Infinity", - "2024-04-01": "Infinity", - "2024-03-01": "Infinity", - "2024-02-01": "Infinity", - "2024-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main", - "description": null, - "label": "main", - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.rate": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.rate", - "description": "Arkansas taxes personal income at these amounts.", - "label": "Arkansas income tax amount" - }, - "gov.states.ar.tax.income.rates.main.rate[0]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.rate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ar.tax.income.rates.main.rate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.rate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2022-01-01": 0, - "2021-01-01": 0, - "2020-01-01": 0, - "2019-01-01": 0, - "2018-01-01": 0, - "2017-01-01": 0, - "2016-01-01": 0, - "2015-01-01": 0, - "2014-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.rate[0].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.rate[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2019-01-01": 0, - "2014-01-01": 0.009 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.rate[1]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.rate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ar.tax.income.rates.main.rate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.rate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 6977.28725918101, - "2034-01-01": 6842.17842150621, - "2033-01-01": 6708.73759417308, - "2032-01-01": 6578.63278752328, - "2031-01-01": 6451.86400155681, - "2030-01-01": 6326.763225932, - "2029-01-01": 6203.33046064885, - "2028-01-01": 6081.56570570737, - "2027-01-01": 5958.13294042423, - "2026-01-01": 5814.85085207528, - "2025-01-01": 5727.29976925857, - "2024-01-01": 5603.00519863223, - "2023-01-01": 5300, - "2022-01-01": 5100, - "2021-01-01": 4800, - "2020-01-01": 4700, - "2019-01-01": 4600, - "2014-01-01": 4300 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.rate[1].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.rate[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2019-01-01": 0.02, - "2015-01-01": 0.024, - "2014-01-01": 0.025 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.rate[2]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.rate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ar.tax.income.rates.main.rate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.rate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 13954.574518362, - "2034-01-01": 13684.3568430124, - "2033-01-01": 13417.4751883462, - "2032-01-01": 13157.2655750466, - "2031-01-01": 12903.7280031136, - "2030-01-01": 12653.526451864, - "2029-01-01": 12406.6609212977, - "2028-01-01": 12163.1314114147, - "2027-01-01": 11916.2658808485, - "2026-01-01": 11629.7017041506, - "2025-01-01": 11454.5995385171, - "2024-01-01": 11206.0103972645, - "2023-01-01": 10600, - "2022-01-01": 10300, - "2021-01-01": 9500, - "2020-01-01": 9200, - "2019-01-01": 9100, - "2014-01-01": 8400 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.rate[2].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.rate[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2019-01-01": 0.03, - "2015-01-01": 0.034, - "2014-01-01": 0.035 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.rate[3]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.rate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ar.tax.income.rates.main.rate[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.rate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 19878.6863421949, - "2034-01-01": 19493.7536159894, - "2033-01-01": 19113.5731456629, - "2032-01-01": 18742.8971870946, - "2031-01-01": 18381.7257402845, - "2030-01-01": 18025.3065493534, - "2029-01-01": 17673.6396143015, - "2028-01-01": 17326.7249351286, - "2027-01-01": 16975.0580000766, - "2026-01-01": 16566.8392200635, - "2025-01-01": 16317.4012293971, - "2024-01-01": 15963.2789621409, - "2023-01-01": 15100, - "2022-01-01": 14700, - "2021-01-01": 14300, - "2020-01-01": 13900, - "2019-01-01": 13700, - "2015-01-01": 12700, - "2014-01-01": 12600 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.rate[3].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.rate[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2019-01-01": 0.034, - "2015-01-01": 0.044, - "2014-01-01": 0.045 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.rate[4]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.rate[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ar.tax.income.rates.main.rate[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.rate[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 32911.7323546274, - "2034-01-01": 32274.4265165387, - "2033-01-01": 31644.9886517598, - "2032-01-01": 31031.2867336004, - "2031-01-01": 30433.3207620604, - "2030-01-01": 29843.2227638302, - "2029-01-01": 29260.9927389097, - "2028-01-01": 28686.6306872989, - "2027-01-01": 28104.4006623784, - "2026-01-01": 27428.5417550721, - "2025-01-01": 27015.5649493329, - "2024-01-01": 26429.269804869, - "2023-01-01": 25000, - "2022-01-01": 24300, - "2021-01-01": 23600, - "2020-01-01": 22900, - "2019-01-01": 22600, - "2015-01-01": 21100, - "2014-01-01": 21000 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.rate[4].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.rate[4].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.039, - "2023-01-01": 0.047, - "2022-01-01": 0.049, - "2019-01-01": 0.05, - "2014-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.rate[5]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.rate[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ar.tax.income.rates.main.rate[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.rate[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": "Infinity", - "2034-01-01": "Infinity", - "2033-01-01": "Infinity", - "2032-01-01": "Infinity", - "2031-01-01": "Infinity", - "2030-01-01": "Infinity", - "2029-01-01": "Infinity", - "2028-01-01": "Infinity", - "2027-01-01": "Infinity", - "2026-01-01": "Infinity", - "2025-01-01": "Infinity", - "2024-01-01": "Infinity", - "2023-01-01": "Infinity", - "2022-01-01": "Infinity", - "2021-01-01": 39700, - "2020-01-01": 38500, - "2019-01-01": 37900, - "2015-01-01": 35300, - "2014-01-01": 35100 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.rate[5].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.rate[5].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": "Infinity", - "2020-01-01": 0.059, - "2019-01-01": 0.06, - "2014-01-01": 0.07 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.rate[6]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.rate[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.ar.tax.income.rates.main.rate[6].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.rate[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": "Infinity", - "2034-01-01": "Infinity", - "2033-01-01": "Infinity", - "2032-01-01": "Infinity", - "2031-01-01": "Infinity", - "2030-01-01": "Infinity", - "2029-01-01": "Infinity", - "2028-01-01": "Infinity", - "2027-01-01": "Infinity", - "2026-01-01": "Infinity", - "2025-01-01": "Infinity", - "2024-01-01": "Infinity", - "2023-01-01": "Infinity", - "2022-01-01": "Infinity", - "2021-01-01": "Infinity", - "2020-01-01": 82001, - "2019-01-01": 80801, - "2014-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.rate[6].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.rate[6].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "Infinity", - "2020-01-01": 0.066, - "2019-01-01": 0.069, - "2014-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction", - "description": "Arkansas reduces the personal income tax by this amount, based on the taxable income.", - "label": "Arkansas income tax reduction" - }, - "gov.states.ar.tax.income.rates.main.reduction[0]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ar.tax.income.rates.main.reduction[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[0].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[1]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ar.tax.income.rates.main.reduction[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 5500, - "2023-01-01": 5300, - "2022-01-01": 5100, - "2021-01-01": 4800, - "2015-01-01": 4800 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[1].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 109.98, - "2023-01-01": 105.98, - "2022-01-01": 101.98, - "2021-01-01": 95.98, - "2015-01-01": 95.98 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[2]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ar.tax.income.rates.main.reduction[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 10900, - "2023-01-01": 10600, - "2022-01-01": 10300, - "2021-01-01": 9500, - "2015-01-01": 9500 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[2].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 218.97, - "2023-01-01": 211.97, - "2022-01-01": 204.97, - "2021-01-01": 190.97, - "2015-01-01": 190.97 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[3]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ar.tax.income.rates.main.reduction[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 15600, - "2023-01-01": 15100, - "2022-01-01": 14700, - "2021-01-01": 14300, - "2015-01-01": 14300 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[3].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 281.37, - "2023-01-01": 272.37, - "2022-01-01": 263.77, - "2021-01-01": 248.17, - "2015-01-01": 248.17 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[4]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ar.tax.income.rates.main.reduction[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 25700, - "2023-01-01": 25000, - "2022-01-01": 24300, - "2021-01-01": 23600, - "2015-01-01": 23600 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[4].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 409.86, - "2023-01-01": 597.35, - "2022-01-01": 628.25, - "2021-01-01": 439.96, - "2015-01-01": 439.96 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[5]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ar.tax.income.rates.main.reduction[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 92301, - "2023-01-01": 89601, - "2022-01-01": 87001, - "2021-01-01": 39700, - "2015-01-01": 39700 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[5].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 397.4, - "2023-01-01": 583.7, - "2022-01-01": 627.2, - "2021-01-01": 797.25, - "2015-01-01": 797.25 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[6]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.ar.tax.income.rates.main.reduction[6].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 92401, - "2023-01-01": 89701, - "2022-01-01": 87101, - "2021-01-01": 84501, - "2015-01-01": 84501 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[6].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[6].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 387.4, - "2023-01-01": 573.7, - "2022-01-01": 617.2, - "2021-01-01": 687.5, - "2015-01-01": 687.5 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[7]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.ar.tax.income.rates.main.reduction[7].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 92501, - "2023-01-01": 89801, - "2022-01-01": 87201, - "2021-01-01": 85501, - "2015-01-01": 85501 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[7].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[7].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 377.4, - "2023-01-01": 563.7, - "2022-01-01": 607.2, - "2021-01-01": 587.5, - "2015-01-01": 587.5 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[8]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.ar.tax.income.rates.main.reduction[8].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 92601, - "2023-01-01": 90001, - "2022-01-01": 87301, - "2021-01-01": 86501, - "2015-01-01": 86501 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[8].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[8].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 367.4, - "2023-01-01": 553.7, - "2022-01-01": 597.2, - "2021-01-01": 487.5, - "2015-01-01": 487.5 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[9]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.ar.tax.income.rates.main.reduction[9].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 92701, - "2023-01-01": 90201, - "2022-01-01": 87401, - "2021-01-01": 87901, - "2015-01-01": 87901 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[9].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[9].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 357.4, - "2023-01-01": 543.7, - "2022-01-01": 587.2, - "2021-01-01": 387.5, - "2015-01-01": 387.5 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[10]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[10]", - "description": null, - "label": "bracket 11" - }, - "gov.states.ar.tax.income.rates.main.reduction[10].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[10].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 92801, - "2023-01-01": 90301, - "2022-01-01": 87601, - "2021-01-01": 89001, - "2015-01-01": 89001 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[10].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[10].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 347.4, - "2023-01-01": 533.7, - "2022-01-01": 577.2, - "2021-01-01": 287.5, - "2015-01-01": 287.5 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[11]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[11]", - "description": null, - "label": "bracket 12" - }, - "gov.states.ar.tax.income.rates.main.reduction[11].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[11].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 92901, - "2023-01-01": 90401, - "2022-01-01": 87701, - "2021-01-01": 90101, - "2015-01-01": 90101 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[11].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[11].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 337.4, - "2023-01-01": 523.7, - "2022-01-01": 567.2, - "2021-01-01": 247.5, - "2015-01-01": 247.5 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[12]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[12]", - "description": null, - "label": "bracket 13" - }, - "gov.states.ar.tax.income.rates.main.reduction[12].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[12].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 93001, - "2023-01-01": 90501, - "2022-01-01": 87801, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[12].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[12].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 327.4, - "2023-01-01": 513.7, - "2022-01-01": 557.2, - "2021-01-01": 247.5, - "2015-01-01": 247.5 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[13]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[13]", - "description": null, - "label": "bracket 14" - }, - "gov.states.ar.tax.income.rates.main.reduction[13].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[13].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 93101, - "2023-01-01": 90601, - "2022-01-01": 87901, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[13].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[13].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 317.4, - "2023-01-01": 503.7, - "2022-01-01": 547.2, - "2021-01-01": 247.5, - "2015-01-01": 247.5 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[14]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[14]", - "description": null, - "label": "bracket 15" - }, - "gov.states.ar.tax.income.rates.main.reduction[14].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[14].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 93201, - "2023-01-01": 90701, - "2022-01-01": 88001, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[14].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[14].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 307.4, - "2023-01-01": 493.7, - "2022-01-01": 537.2, - "2021-01-01": 247.5, - "2015-01-01": 247.5 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[15]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[15]", - "description": null, - "label": "bracket 16" - }, - "gov.states.ar.tax.income.rates.main.reduction[15].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[15].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 93301, - "2023-01-01": 90801, - "2022-01-01": 88101, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[15].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[15].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 297.4, - "2023-01-01": 483.7, - "2022-01-01": 527.2, - "2021-01-01": 247.5, - "2015-01-01": 247.5 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[16]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[16]", - "description": null, - "label": "bracket 17" - }, - "gov.states.ar.tax.income.rates.main.reduction[16].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[16].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 93401, - "2023-01-01": 90901, - "2022-01-01": 88201, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[16].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[16].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 287.4, - "2023-01-01": 473.7, - "2022-01-01": 517.2, - "2021-01-01": 247.5, - "2015-01-01": 247.5 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[17]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[17]", - "description": null, - "label": "bracket 18" - }, - "gov.states.ar.tax.income.rates.main.reduction[17].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[17].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 93501, - "2023-01-01": 91101, - "2022-01-01": 88301, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[17].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[17].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 277.4, - "2023-01-01": 463.7, - "2022-01-01": 507.2, - "2021-01-01": 247.5, - "2015-01-01": 247.5 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[18]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[18]", - "description": null, - "label": "bracket 19" - }, - "gov.states.ar.tax.income.rates.main.reduction[18].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[18].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 93601, - "2023-01-01": 91201, - "2022-01-01": 88401, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[18].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[18].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 267.4, - "2023-01-01": 453.7, - "2022-01-01": 497.2, - "2021-01-01": 247.5, - "2015-01-01": 247.5 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[19]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[19]", - "description": null, - "label": "bracket 20" - }, - "gov.states.ar.tax.income.rates.main.reduction[19].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[19].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 93701, - "2023-01-01": 91301, - "2022-01-01": 88501, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[19].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[19].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 257.4, - "2023-01-01": 443.7, - "2022-01-01": 487.2, - "2021-01-01": 247.5, - "2015-01-01": 247.5 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[20]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[20]", - "description": null, - "label": "bracket 21" - }, - "gov.states.ar.tax.income.rates.main.reduction[20].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[20].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 93801, - "2023-01-01": 91401, - "2022-01-01": 88601, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[20].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[20].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 247.4, - "2023-01-01": 433.7, - "2022-01-01": 477.2, - "2021-01-01": 247.5, - "2015-01-01": 247.5 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[21]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[21]", - "description": null, - "label": "bracket 22" - }, - "gov.states.ar.tax.income.rates.main.reduction[21].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[21].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 93901, - "2023-01-01": 91501, - "2022-01-01": 88701, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[21].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[21].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 237.4, - "2023-01-01": 423.7, - "2022-01-01": 467.2, - "2021-01-01": 247.5, - "2015-01-01": 247.5 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[22]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[22]", - "description": null, - "label": "bracket 23" - }, - "gov.states.ar.tax.income.rates.main.reduction[22].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[22].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 94001, - "2023-01-01": 91601, - "2022-01-01": 88801, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[22].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[22].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 227.4, - "2023-01-01": 413.7, - "2022-01-01": 457.2, - "2021-01-01": 247.5, - "2015-01-01": 247.5 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[23]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[23]", - "description": null, - "label": "bracket 24" - }, - "gov.states.ar.tax.income.rates.main.reduction[23].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[23].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 94101, - "2023-01-01": 91701, - "2022-01-01": 88901, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[23].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[23].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 217.4, - "2023-01-01": 403.7, - "2022-01-01": 447.2, - "2021-01-01": 247.5, - "2015-01-01": 247.5 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[24]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[24]", - "description": null, - "label": "bracket 25" - }, - "gov.states.ar.tax.income.rates.main.reduction[24].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[24].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 94201, - "2023-01-01": 91801, - "2022-01-01": 89001, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[24].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[24].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 207.4, - "2023-01-01": 393.7, - "2022-01-01": 437.2, - "2021-01-01": 247.5, - "2015-01-01": 247.5 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[25]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[25]", - "description": null, - "label": "bracket 26" - }, - "gov.states.ar.tax.income.rates.main.reduction[25].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[25].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 94301, - "2023-01-01": 91701, - "2022-01-01": 89101, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[25].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[25].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 197.4, - "2023-01-01": 383.7, - "2022-01-01": 427.2, - "2021-01-01": 247.5, - "2015-01-01": 247.5 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[26]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[26]", - "description": null, - "label": "bracket 27" - }, - "gov.states.ar.tax.income.rates.main.reduction[26].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[26].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 94401, - "2023-01-01": 91801, - "2022-01-01": 89201, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[26].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[26].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 187.4, - "2023-01-01": 373.7, - "2022-01-01": 417.2, - "2021-01-01": 247.5, - "2015-01-01": 247.5 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[27]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[27]", - "description": null, - "label": "bracket 28" - }, - "gov.states.ar.tax.income.rates.main.reduction[27].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[27].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 94501, - "2023-01-01": 91901, - "2022-01-01": 89301, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[27].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[27].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 177.4, - "2023-01-01": 363.7, - "2022-01-01": 407.2, - "2021-01-01": 247.5, - "2015-01-01": 247.5 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[28]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[28]", - "description": null, - "label": "bracket 29" - }, - "gov.states.ar.tax.income.rates.main.reduction[28].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[28].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 94601, - "2023-01-01": 92001, - "2022-01-01": 89401, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[28].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[28].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 167.4, - "2023-01-01": 353.7, - "2022-01-01": 397.2, - "2021-01-01": 247.5, - "2015-01-01": 247.5 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[29]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[29]", - "description": null, - "label": "bracket 30" - }, - "gov.states.ar.tax.income.rates.main.reduction[29].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[29].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 94701, - "2023-01-01": 92101, - "2022-01-01": 89501, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[29].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[29].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 157.4, - "2023-01-01": 343.7, - "2022-01-01": 387.2, - "2021-01-01": 247.5, - "2015-01-01": 247.5 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[30]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[30]", - "description": null, - "label": "bracket 31" - }, - "gov.states.ar.tax.income.rates.main.reduction[30].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[30].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 94801, - "2023-01-01": 92201, - "2022-01-01": 89601, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[30].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[30].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 147.4, - "2023-01-01": 333.7, - "2022-01-01": 377.2, - "2021-01-01": 247.5, - "2015-01-01": 247.5 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[31]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[31]", - "description": null, - "label": "bracket 32" - }, - "gov.states.ar.tax.income.rates.main.reduction[31].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[31].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 94901, - "2023-01-01": 92301, - "2022-01-01": 89701, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[31].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[31].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 137.4, - "2023-01-01": 323.7, - "2022-01-01": 367.2, - "2021-01-01": 247.5, - "2015-01-01": 247.5 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[32]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[32]", - "description": null, - "label": "bracket 33" - }, - "gov.states.ar.tax.income.rates.main.reduction[32].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[32].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 95001, - "2023-01-01": 92401, - "2022-01-01": 89801, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[32].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[32].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 127.4, - "2023-01-01": 313.7, - "2022-01-01": 357.2, - "2021-01-01": 247.5, - "2015-01-01": 247.5 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[33]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[33]", - "description": null, - "label": "bracket 34" - }, - "gov.states.ar.tax.income.rates.main.reduction[33].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[33].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 95101, - "2023-01-01": 92501, - "2022-01-01": 89901, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[33].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[33].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 117.4, - "2023-01-01": 303.7, - "2022-01-01": 347.2, - "2021-01-01": 247.5, - "2015-01-01": 247.5 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[34]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[34]", - "description": null, - "label": "bracket 35" - }, - "gov.states.ar.tax.income.rates.main.reduction[34].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[34].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 95201, - "2023-01-01": 92601, - "2022-01-01": 90001, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[34].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[34].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 107.4, - "2023-01-01": 293.7, - "2022-01-01": 337.2, - "2021-01-01": 247.5, - "2015-01-01": 247.5 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[35]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[35]", - "description": null, - "label": "bracket 36" - }, - "gov.states.ar.tax.income.rates.main.reduction[35].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[35].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 95301, - "2023-01-01": 92701, - "2022-01-01": 90101, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[35].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[35].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 97.4, - "2023-01-01": 283.7, - "2022-01-01": 327.2, - "2021-01-01": 247.5, - "2015-01-01": 247.5 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[36]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[36]", - "description": null, - "label": "bracket 37" - }, - "gov.states.ar.tax.income.rates.main.reduction[36].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[36].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 95401, - "2023-01-01": 92801, - "2022-01-01": 90201, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[36].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[36].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 87.4, - "2023-01-01": 273.7, - "2022-01-01": 317.2, - "2021-01-01": 247.5, - "2015-01-01": 247.5 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[37]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[37]", - "description": null, - "label": "bracket 38" - }, - "gov.states.ar.tax.income.rates.main.reduction[37].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[37].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 95501, - "2023-01-01": 92901, - "2022-01-01": 90301, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[37].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[37].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 87.4, - "2023-01-01": 263.7, - "2022-01-01": 307.2, - "2021-01-01": 247.5, - "2015-01-01": 247.5 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[38]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[38]", - "description": null, - "label": "bracket 39" - }, - "gov.states.ar.tax.income.rates.main.reduction[38].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[38].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": "Infinity", - "2023-01-01": 93001, - "2022-01-01": 90401, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[38].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[38].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 87.4, - "2023-01-01": 253.7, - "2022-01-01": 297.2, - "2021-01-01": 247.5, - "2015-01-01": 247.5 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[39]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[39]", - "description": null, - "label": "bracket 40" - }, - "gov.states.ar.tax.income.rates.main.reduction[39].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[39].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 93101, - "2022-01-01": 90501, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[39].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[39].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 243.7, - "2022-01-01": 287.2, - "2021-01-01": 247.5, - "2015-01-01": 247.5 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[40]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[40]", - "description": null, - "label": "bracket 41" - }, - "gov.states.ar.tax.income.rates.main.reduction[40].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[40].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 93201, - "2022-01-01": 90601, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[40].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[40].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 233.7, - "2022-01-01": 277.2, - "2021-01-01": 247.5, - "2015-01-01": 247.5 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[41]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[41]", - "description": null, - "label": "bracket 42" - }, - "gov.states.ar.tax.income.rates.main.reduction[41].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[41].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 93301, - "2022-01-01": 90701, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[41].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[41].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 223.7, - "2022-01-01": 267.2, - "2021-01-01": 247.5, - "2015-01-01": 247.5 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[42]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[42]", - "description": null, - "label": "bracket 43" - }, - "gov.states.ar.tax.income.rates.main.reduction[42].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[42].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 93401, - "2022-01-01": 90801, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[42].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[42].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 213.7, - "2022-01-01": 257.2, - "2021-01-01": 247.5, - "2015-01-01": 247.5 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[43]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[43]", - "description": null, - "label": "bracket 44" - }, - "gov.states.ar.tax.income.rates.main.reduction[43].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[43].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 93501, - "2022-01-01": 90901, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[43].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[43].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 203.7, - "2022-01-01": 247.2, - "2021-01-01": 247.5, - "2015-01-01": 247.5 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[44]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[44]", - "description": null, - "label": "bracket 45" - }, - "gov.states.ar.tax.income.rates.main.reduction[44].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[44].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 93601, - "2022-01-01": 91101, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[44].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[44].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 193.7, - "2022-01-01": 237.2, - "2021-01-01": 247.5, - "2015-01-01": 247.5 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[45]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[45]", - "description": null, - "label": "bracket 46" - }, - "gov.states.ar.tax.income.rates.main.reduction[45].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[45].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 93801, - "2022-01-01": 91201, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[45].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[45].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 183.7, - "2022-01-01": 227.2, - "2021-01-01": 247.5, - "2015-01-01": 247.5 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[46]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[46]", - "description": null, - "label": "bracket 47" - }, - "gov.states.ar.tax.income.rates.main.reduction[46].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[46].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 93901, - "2022-01-01": 91301, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[46].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[46].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 173.7, - "2022-01-01": 217.2, - "2021-01-01": 247.5, - "2015-01-01": 247.5 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[47]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[47]", - "description": null, - "label": "bracket 48" - }, - "gov.states.ar.tax.income.rates.main.reduction[47].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[47].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 94001, - "2022-01-01": 91401, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[47].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[47].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 163.7, - "2022-01-01": 207.2, - "2021-01-01": 247.5, - "2015-01-01": 247.5 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[48]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[48]", - "description": null, - "label": "bracket 49" - }, - "gov.states.ar.tax.income.rates.main.reduction[48].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[48].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 94101, - "2022-01-01": 91501, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[48].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[48].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 153.7, - "2022-01-01": 197.2, - "2021-01-01": 247.5, - "2015-01-01": 247.5 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[49]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[49]", - "description": null, - "label": "bracket 50" - }, - "gov.states.ar.tax.income.rates.main.reduction[49].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[49].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 94201, - "2022-01-01": 91601, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[49].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[49].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 153.7, - "2022-01-01": 187.2, - "2021-01-01": 247.5, - "2015-01-01": 247.5 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[50]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[50]", - "description": null, - "label": "bracket 51" - }, - "gov.states.ar.tax.income.rates.main.reduction[50].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[50].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": "Infinity", - "2022-01-01": 91701, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[50].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[50].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 153.7, - "2022-01-01": 177.2, - "2021-01-01": 247.5, - "2015-01-01": 247.5 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[51]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[51]", - "description": null, - "label": "bracket 52" - }, - "gov.states.ar.tax.income.rates.main.reduction[51].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[51].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": "Infinity", - "2022-01-01": 91801, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[51].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[51].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 153.7, - "2022-01-01": 167.2, - "2021-01-01": 247.5, - "2015-01-01": 247.5 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[52]": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[52]", - "description": null, - "label": "bracket 53" - }, - "gov.states.ar.tax.income.rates.main.reduction[52].threshold": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[52].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.rates.main.reduction[52].amount": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.rates.main.reduction[52].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 167.2, - "2015-01-01": 167.2 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.deductions": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.deductions", - "description": null, - "label": "deductions", - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.deductions.standard": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.deductions.standard", - "description": "Arkansas provides a standard deduction of this amount, based on filing status.", - "label": "Arkansas standard deduction", - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.deductions.standard.JOINT": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.deductions.standard.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-02-01": 6230, - "2034-02-01": 6080, - "2033-02-01": 5950, - "2032-02-01": 5820, - "2031-02-01": 5690, - "2030-02-01": 5570, - "2029-02-01": 5440, - "2028-02-01": 5330, - "2027-02-01": 5210, - "2026-02-01": 5090, - "2025-02-01": 4970, - "2024-12-01": 4930, - "2024-11-01": 4930, - "2024-10-01": 4930, - "2024-09-01": 4920, - "2024-08-01": 4910, - "2024-07-01": 4910, - "2024-06-01": 4900, - "2024-05-01": 4900, - "2024-04-01": 4900, - "2024-03-01": 4880, - "2024-02-01": 4840, - "2024-01-01": 4820, - "2023-01-01": 4680, - "2022-01-01": 4540, - "2021-01-01": 4400, - "2015-01-01": 4400 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.deductions.standard.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.deductions.standard.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-02-01": 3110, - "2034-02-01": 3040, - "2033-02-01": 2970, - "2032-02-01": 2910, - "2031-02-01": 2840, - "2030-02-01": 2780, - "2029-02-01": 2720, - "2028-02-01": 2660, - "2027-02-01": 2600, - "2026-02-01": 2540, - "2025-02-01": 2480, - "2024-12-01": 2460, - "2024-11-01": 2460, - "2024-10-01": 2460, - "2024-09-01": 2460, - "2024-08-01": 2450, - "2024-07-01": 2450, - "2024-06-01": 2450, - "2024-05-01": 2450, - "2024-04-01": 2450, - "2024-03-01": 2440, - "2024-02-01": 2420, - "2024-01-01": 2410, - "2023-01-01": 2340, - "2022-01-01": 2270, - "2021-01-01": 2200, - "2015-01-01": 2200 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.deductions.standard.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.deductions.standard.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-02-01": 3110, - "2034-02-01": 3040, - "2033-02-01": 2970, - "2032-02-01": 2910, - "2031-02-01": 2840, - "2030-02-01": 2780, - "2029-02-01": 2720, - "2028-02-01": 2660, - "2027-02-01": 2600, - "2026-02-01": 2540, - "2025-02-01": 2480, - "2024-12-01": 2460, - "2024-11-01": 2460, - "2024-10-01": 2460, - "2024-09-01": 2460, - "2024-08-01": 2450, - "2024-07-01": 2450, - "2024-06-01": 2450, - "2024-05-01": 2450, - "2024-04-01": 2450, - "2024-03-01": 2440, - "2024-02-01": 2420, - "2024-01-01": 2410, - "2023-01-01": 2340, - "2022-01-01": 2270, - "2021-01-01": 2200, - "2015-01-01": 2200 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.deductions.standard.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.deductions.standard.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-02-01": 3110, - "2034-02-01": 3040, - "2033-02-01": 2970, - "2032-02-01": 2910, - "2031-02-01": 2840, - "2030-02-01": 2780, - "2029-02-01": 2720, - "2028-02-01": 2660, - "2027-02-01": 2600, - "2026-02-01": 2540, - "2025-02-01": 2480, - "2024-12-01": 2460, - "2024-11-01": 2460, - "2024-10-01": 2460, - "2024-09-01": 2460, - "2024-08-01": 2450, - "2024-07-01": 2450, - "2024-06-01": 2450, - "2024-05-01": 2450, - "2024-04-01": 2450, - "2024-03-01": 2440, - "2024-02-01": 2420, - "2024-01-01": 2410, - "2023-01-01": 2340, - "2022-01-01": 2270, - "2021-01-01": 2200, - "2015-01-01": 2200 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.deductions.standard.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.deductions.standard.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-02-01": 3110, - "2034-02-01": 3040, - "2033-02-01": 2970, - "2032-02-01": 2910, - "2031-02-01": 2840, - "2030-02-01": 2780, - "2029-02-01": 2720, - "2028-02-01": 2660, - "2027-02-01": 2600, - "2026-02-01": 2540, - "2025-02-01": 2480, - "2024-12-01": 2460, - "2024-11-01": 2460, - "2024-10-01": 2460, - "2024-09-01": 2460, - "2024-08-01": 2450, - "2024-07-01": 2450, - "2024-06-01": 2450, - "2024-05-01": 2450, - "2024-04-01": 2450, - "2024-03-01": 2440, - "2024-02-01": 2420, - "2024-01-01": 2410, - "2023-01-01": 2340, - "2022-01-01": 2270, - "2021-01-01": 2200, - "2015-01-01": 2200 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.deductions.itemized": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.deductions.itemized", - "description": null, - "label": "itemized", - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.deductions.itemized.tuition": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.deductions.itemized.tuition", - "description": null, - "label": "tuition", - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.deductions.itemized.tuition.weighted_average_tuition": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.deductions.itemized.tuition.weighted_average_tuition", - "description": null, - "label": "weighted average tuition", - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.deductions.itemized.tuition.weighted_average_tuition.two_year_college": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.deductions.itemized.tuition.weighted_average_tuition.two_year_college", - "description": "Arkansas defines the weighted average tuition for four-year colleges at this amount under the post secondary education tuition deduction.", - "label": "Arkansas post secondary eduction tuition deduction two-year college weighted average tuition", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3141.83105866312, - "2034-01-01": 3080.99235061825, - "2033-01-01": 3020.90473773442, - "2032-01-01": 2962.31931517269, - "2031-01-01": 2905.23608293305, - "2030-01-01": 2848.90394585446, - "2029-01-01": 2793.32290393692, - "2028-01-01": 2738.49295718043, - "2027-01-01": 2682.91191526289, - "2026-01-01": 2618.39284092888, - "2025-01-01": 2578.96910775075, - "2024-01-01": 2523, - "2023-01-01": 2405, - "2022-01-01": 2272, - "2021-01-01": 2141, - "2015-01-01": 2141 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.deductions.itemized.tuition.weighted_average_tuition.four_year_college": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.deductions.itemized.tuition.weighted_average_tuition.four_year_college", - "description": "Arkansas defines the weighted average tuition for four-year colleges at this amount under the post secondary education tuition deduction.", - "label": "Arkansas post secondary eduction tuition deduction four-year college weighted average tuition", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 6241.32273722535, - "2034-01-01": 6120.46518481912, - "2033-01-01": 6001.09970096112, - "2032-01-01": 5884.71835419957, - "2031-01-01": 5771.32114453447, - "2030-01-01": 5659.41600341759, - "2029-01-01": 5549.00293084893, - "2028-01-01": 5440.08192682851, - "2027-01-01": 5329.66885425985, - "2026-01-01": 5201.50016596732, - "2025-01-01": 5123.1839746519, - "2024-01-01": 5012, - "2023-01-01": 4819, - "2022-01-01": 4712, - "2021-01-01": 4602, - "2015-01-01": 4602 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.deductions.itemized.tuition.weighted_average_tuition.technical_institutes": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.deductions.itemized.tuition.weighted_average_tuition.technical_institutes", - "description": "Arkansas defines the weighted average tuition for technical institutes at this amount under the post secondary education tuition deduction.", - "label": "Arkansas post secondary eduction tuition deduction technical institutes weighted average tuition", - "unit": "currency-USD", - "period": "year", - "values": { - "2024-01-01": 1515, - "2021-01-01": 780, - "2015-01-01": 780 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.deductions.itemized.tuition.rate": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.deductions.itemized.tuition.rate", - "description": "Arkansas calculates this rate of education tuition expenses under the post secondary eduction tuition deduction.", - "label": "Arkansas post-secondary education deduction tuition expense rate", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.deductions.itemized.sources": { - "type": "parameterNode", - "parameter": "gov.states.ar.tax.income.deductions.itemized.sources", - "description": null, - "label": "sources", - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.deductions.itemized.sources.individual": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.deductions.itemized.sources.individual", - "description": "Arkansas accounts for the following itemized deduction when married couples file separately on the same return.", - "label": "Arkansas itemized deduction sources when married filing separately", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": [ - "ar_post_secondary_education_tuition_deduction", - "ar_medical_expense_deduction_indiv", - "ar_misc_deduction_indiv", - "real_estate_taxes", - "charitable_deduction", - "interest_deduction", - "casualty_loss_deduction" - ], - "2015-01-01": [ - "ar_post_secondary_education_tuition_deduction", - "ar_medical_expense_deduction_indiv", - "ar_misc_deduction_indiv", - "real_estate_taxes", - "charitable_deduction", - "interest_deduction", - "casualty_loss_deduction" - ] - }, - "economy": true, - "household": true - }, - "gov.states.ar.tax.income.deductions.itemized.sources.joint": { - "type": "parameter", - "parameter": "gov.states.ar.tax.income.deductions.itemized.sources.joint", - "description": "Arkansas accounts for the following itemized deductions when married couples file jointly.", - "label": "Arkansas itemized deduction sources when married filing jointly", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": [ - "ar_post_secondary_education_tuition_deduction", - "ar_medical_expense_deduction_joint", - "ar_misc_deduction_joint", - "real_estate_taxes", - "charitable_deduction", - "interest_deduction", - "casualty_loss_deduction" - ], - "2015-01-01": [ - "ar_post_secondary_education_tuition_deduction", - "ar_medical_expense_deduction_joint", - "ar_misc_deduction_joint", - "real_estate_taxes", - "charitable_deduction", - "interest_deduction", - "casualty_loss_deduction" - ] - }, - "economy": true, - "household": true - }, - "gov.states.ne": { - "type": "parameterNode", - "parameter": "gov.states.ne", - "description": null, - "label": "Nebraska", - "economy": true, - "household": true - }, - "gov.states.ne.dhhs": { - "type": "parameterNode", - "parameter": "gov.states.ne.dhhs", - "description": null, - "label": "dhhs", - "economy": true, - "household": true - }, - "gov.states.ne.dhhs.child_care_subsidy": { - "type": "parameterNode", - "parameter": "gov.states.ne.dhhs.child_care_subsidy", - "description": null, - "label": "child care subsidy", - "economy": true, - "household": true - }, - "gov.states.ne.dhhs.child_care_subsidy.age_threshold": { - "type": "parameterNode", - "parameter": "gov.states.ne.dhhs.child_care_subsidy.age_threshold", - "description": null, - "label": "age threshold", - "economy": true, - "household": true - }, - "gov.states.ne.dhhs.child_care_subsidy.age_threshold.base": { - "type": "parameter", - "parameter": "gov.states.ne.dhhs.child_care_subsidy.age_threshold.base", - "description": "Nebraska limits the child care subsidy to children of this age or younger, not requiring special needs care.", - "label": "Nebraska child care subsidy base age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-08-28": 12, - "2015-01-01": 12 - }, - "economy": true, - "household": true - }, - "gov.states.ne.dhhs.child_care_subsidy.age_threshold.special_needs": { - "type": "parameter", - "parameter": "gov.states.ne.dhhs.child_care_subsidy.age_threshold.special_needs", - "description": "Nebraska limits the child care subsidy to children of this age or younger, requiring special needs care.", - "label": "Nebraska child care subsidy special needs age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-08-28": 18, - "2015-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.states.ne.dhhs.child_care_subsidy.rate": { - "type": "parameter", - "parameter": "gov.states.ne.dhhs.child_care_subsidy.rate", - "description": "Nebraska obligates families participating in the child care subsidy program to pay childcare expenses of this fraction of income excess over federal poverty guidelines.", - "label": "Nebraska child care subsidy family fee rate", - "unit": "/1", - "period": "year", - "values": { - "2021-08-28": 0.07, - "2015-01-01": 0.07 - }, - "economy": true, - "household": true - }, - "gov.states.ne.dhhs.child_care_subsidy.fpg_fraction": { - "type": "parameterNode", - "parameter": "gov.states.ne.dhhs.child_care_subsidy.fpg_fraction", - "description": null, - "label": "fpg fraction", - "economy": true, - "household": true - }, - "gov.states.ne.dhhs.child_care_subsidy.fpg_fraction.initial_eligibility": { - "type": "parameter", - "parameter": "gov.states.ne.dhhs.child_care_subsidy.fpg_fraction.initial_eligibility", - "description": "Nebraska limits the child care subsidy to families with income at or below this fraction of the federal poverty guidelines for initial eligibility.", - "label": "Nebraska child care subsidy initial eligibility federal poverty guideline limit", - "unit": "/1", - "period": "year", - "values": { - "2026-10-01": 1.3, - "2023-01-01": 1.85, - "2021-08-28": 1.3, - "2015-01-01": 1.3 - }, - "economy": true, - "household": true - }, - "gov.states.ne.dhhs.child_care_subsidy.fpg_fraction.fee_free_limit": { - "type": "parameter", - "parameter": "gov.states.ne.dhhs.child_care_subsidy.fpg_fraction.fee_free_limit", - "description": "Nebraska provides a fee-free child care subsidy to families with a income at or below this fraction of the federal poverty guidelines.", - "label": "Nebraska child care subsidy federal poverty guideline limit threshold", - "unit": "/1", - "period": "year", - "values": { - "2021-08-28": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.states.ne.tax.income": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.agi": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.agi", - "description": null, - "label": "agi", - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.agi.subtractions": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.agi.subtractions", - "description": null, - "label": "subtractions", - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.agi.subtractions.military_retirement": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.agi.subtractions.military_retirement", - "description": null, - "label": "military retirement", - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.agi.subtractions.military_retirement.age_threshold": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.agi.subtractions.military_retirement.age_threshold", - "description": "Nebraska limits the military retirement benefits to filers this age or older.", - "label": "Nebraska military retirement benefits age threshold", - "unit": "year", - "period": "year", - "values": { - "2015-01-01": 67 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.agi.subtractions.military_retirement.fraction": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.agi.subtractions.military_retirement.fraction", - "description": "Nebraska subtracts this fraction of military retirement benefits from federal adjusted gross income.", - "label": "Nebraska military retirement subtraction fraction", - "unit": "/1", - "period": "year", - "values": { - "2022-01-01": 1, - "2021-01-01": 0.4, - "2015-01-01": 0.4 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.agi.subtractions.subtractions": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.agi.subtractions.subtractions", - "description": "Nebraska subtracts these sources from adjusted gross income.", - "label": "Nebraska subtractions from federal adjusted gross income", - "unit": "list", - "period": "year", - "values": { - "2024-01-01": [ - "ne_social_security_subtraction", - "taxable_public_pension_income", - "ne_military_retirement_subtraction" - ], - "2021-01-01": ["ne_social_security_subtraction", "ne_military_retirement_subtraction"], - "2015-01-01": ["ne_social_security_subtraction", "ne_military_retirement_subtraction"] - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.agi.subtractions.social_security": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.agi.subtractions.social_security", - "description": null, - "label": "social security", - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.agi.subtractions.social_security.fraction": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.agi.subtractions.social_security.fraction", - "description": "Fraction of taxable social security allowed as NE AGI subtraction when federal AGI is above threshold (fraction is 1.0 for others).", - "label": "fraction of taxable social security allowed as NE AGI subtraction when federal AGI is above threshold (fraction is 1.0 for others)", - "unit": "/1", - "period": "year", - "values": { - "2024-01-01": 1, - "2023-01-01": 0.6, - "2022-01-01": 0.4, - "2021-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.agi.subtractions.social_security.threshold": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.agi.subtractions.social_security.threshold", - "description": "Nebraska reduces the social security subtraction for filers with federal adjusted gross income above this threshold, based on filing status.", - "label": "Nebraska social security AGI subtraction threshold", - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.agi.subtractions.social_security.threshold.JOINT": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.agi.subtractions.social_security.threshold.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2024-01-01": "Infinity", - "2023-01-01": 66510, - "2022-01-01": 61760, - "2021-01-01": 59960, - "2015-01-01": 59960 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.agi.subtractions.social_security.threshold.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.agi.subtractions.social_security.threshold.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2024-01-01": "Infinity", - "2023-01-01": 49310, - "2022-01-01": 45790, - "2021-01-01": 44460, - "2015-01-01": 44460 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.agi.subtractions.social_security.threshold.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.agi.subtractions.social_security.threshold.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2024-01-01": "Infinity", - "2023-01-01": 49310, - "2022-01-01": 45790, - "2021-01-01": 44460, - "2015-01-01": 44460 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.agi.subtractions.social_security.threshold.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.agi.subtractions.social_security.threshold.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2024-01-01": "Infinity", - "2023-01-01": 49310, - "2022-01-01": 45790, - "2021-01-01": 44460, - "2015-01-01": 44460 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.agi.subtractions.social_security.threshold.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.agi.subtractions.social_security.threshold.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2024-01-01": "Infinity", - "2023-01-01": 49310, - "2022-01-01": 45790, - "2021-01-01": 44460, - "2015-01-01": 44460 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.credits": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.credits", - "description": null, - "label": "credits", - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.credits.eitc": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.credits.eitc", - "description": null, - "label": "Earned Income Tax Credit", - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.credits.eitc.fraction": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.credits.eitc.fraction", - "description": "Nebraska matches this fraction of the federal earned income tax credit.", - "label": "Nebraska EITC match", - "unit": "/1", - "period": "year", - "values": { - "2007-01-01": 0.1, - "2006-01-01": 0.08 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.credits.refundable": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.credits.refundable", - "description": "Nebraska provides the following refundable credits.", - "label": "Nebraska refundable credits", - "unit": "list", - "period": "year", - "values": { - "2024-01-01": [ - "ne_cdcc_refundable", - "ne_eitc", - "ne_refundable_ctc", - "ne_school_readiness_credit" - ], - "2021-01-01": ["ne_cdcc_refundable", "ne_eitc"], - "2015-01-01": ["ne_cdcc_refundable", "ne_eitc"] - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.credits.school_readiness": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.credits.school_readiness", - "description": null, - "label": "school readiness", - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.credits.school_readiness.amount": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.credits.school_readiness.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.credits.school_readiness.amount.refundable": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.credits.school_readiness.amount.refundable", - "description": "Nebraska provides the following refundable School Readiness credit amounts, based on the Nebraska Early Childhood Professional (ECP) Record System level.", - "label": "Nebraska School Readiness credit refundable amount", - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.credits.school_readiness.amount.refundable.1": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.credits.school_readiness.amount.refundable.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2024-01-01": 2300, - "2015-01-01": 2300 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.credits.school_readiness.amount.refundable.2": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.credits.school_readiness.amount.refundable.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2024-01-01": 2600, - "2015-01-01": 2600 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.credits.school_readiness.amount.refundable.3": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.credits.school_readiness.amount.refundable.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2024-10-01": 2900, - "2015-01-01": 2900 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.credits.school_readiness.amount.refundable.4": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.credits.school_readiness.amount.refundable.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2024-10-01": 3200, - "2015-01-01": 3200 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.credits.school_readiness.amount.refundable.5": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.credits.school_readiness.amount.refundable.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2024-10-01": 3500, - "2015-01-01": 3500 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.credits.school_readiness.max_unit_size": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.credits.school_readiness.max_unit_size", - "description": "Nebraska caps Nebraska Early Childhood Professional (ECP) Record System level at the following level, under the School Readiness credit.", - "label": "Nebraska School Readiness credit max unit size", - "unit": "int", - "period": "year", - "values": { - "2024-01-01": 5, - "2015-01-01": 5 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.credits.ctc": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.credits.ctc", - "description": null, - "label": "ctc", - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.credits.ctc.refundable": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.credits.ctc.refundable", - "description": null, - "label": "refundable", - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.credits.ctc.refundable.age_threshold": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.credits.ctc.refundable.age_threshold", - "description": "Nebraska limits the refundable child tax credit to children this age or younger.", - "label": "Nebraska refundable child tax credit age threshold", - "unit": "year", - "period": "year", - "values": { - "2024-01-01": 5, - "2015-01-01": 5 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.credits.ctc.refundable.fpg_fraction": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.credits.ctc.refundable.fpg_fraction", - "description": "Nebraska limits the refundable child tax credit to filers with an total household income at or below this fraction of the federal poverty guideline.", - "label": "Nebraska refundable child tax credit FPG limit", - "unit": "/1", - "period": "year", - "values": { - "2024-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.credits.ctc.refundable.amount": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.credits.ctc.refundable.amount", - "description": "Nebraska provides this refundable child credit amount for each qualifying dependent, based on adjusted gross income.", - "label": "Nebraska refundable child tax credit amount" - }, - "gov.states.ne.tax.income.credits.ctc.refundable.amount[0]": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.credits.ctc.refundable.amount[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ne.tax.income.credits.ctc.refundable.amount[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.credits.ctc.refundable.amount[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.credits.ctc.refundable.amount[0].amount": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.credits.ctc.refundable.amount[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 2000, - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.credits.ctc.refundable.amount[1]": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.credits.ctc.refundable.amount[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ne.tax.income.credits.ctc.refundable.amount[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.credits.ctc.refundable.amount[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 75000, - "2015-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.credits.ctc.refundable.amount[1].amount": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.credits.ctc.refundable.amount[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.credits.ctc.refundable.amount[2]": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.credits.ctc.refundable.amount[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ne.tax.income.credits.ctc.refundable.amount[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.credits.ctc.refundable.amount[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.credits.ctc.refundable.amount[2].amount": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.credits.ctc.refundable.amount[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.credits.cdcc": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.credits.cdcc", - "description": null, - "label": "Child and Dependent Care Credit", - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.credits.cdcc.nonrefundable": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.credits.cdcc.nonrefundable", - "description": null, - "label": "nonrefundable", - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.credits.cdcc.nonrefundable.fraction": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.credits.cdcc.nonrefundable.fraction", - "description": "Nebraska matches this fraction of the federal child and dependent care credit as a non-refundable credit.", - "label": "Nebraska nonrefundable CDCC match", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.credits.cdcc.refundable": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.credits.cdcc.refundable", - "description": null, - "label": "refundable", - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.credits.cdcc.refundable.reduction": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.credits.cdcc.refundable.reduction", - "description": null, - "label": "reduction", - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.credits.cdcc.refundable.reduction.increment": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.credits.cdcc.refundable.reduction.increment", - "description": "Nebraska reduces the refundable child and dependent tax credit match percentage for each of these increments of federal adjusted gross income exceeding the threshold.", - "label": "Nebraska refundable CDCC reduction incrememnt", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.credits.cdcc.refundable.reduction.start": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.credits.cdcc.refundable.reduction.start", - "description": "Nebraska reduces the refundable child and dependent tax credit match percentage for filers with federal adjusted gross income above this amount.", - "label": "Nebraska refundable CDCC reduction start", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 22000, - "2015-01-01": 22000 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.credits.cdcc.refundable.reduction.amount": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.credits.cdcc.refundable.reduction.amount", - "description": "Nebraska reduces the refundable child and dependent tax credit match percentage by this amount for each increment of federal adjusted gross income exceeding the threshold.", - "label": "Nebraska refundable CDCC reduction amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.credits.cdcc.refundable.match": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.credits.cdcc.refundable.match", - "description": "Nebraska matches this fraction of the federal child and dependent care credit as a refundable credit.", - "label": "Nebraska refundable CDCC match", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.credits.cdcc.refundable.income_limit": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.credits.cdcc.refundable.income_limit", - "description": "Nebraska provides the child and dependent care credit as a refundable credit to filers with federal adjusted gross income of this amount or less.", - "label": "Nebraska CDCC refundability AGI limit", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 29000, - "2015-01-01": 29000 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.credits.nonrefundable_adjust_limit": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.credits.nonrefundable_adjust_limit", - "description": "Nebraska limits the net adjusted gross income adjustments to this amount.", - "label": "Nebraska AGI adjustment limit", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.credits.nonrefundable": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.credits.nonrefundable", - "description": "Nebraska provides the following nonrefundable credits.", - "label": "Nebraska nonrefundable credits", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": ["ne_exemptions", "ne_elderly_disabled_credit", "ne_cdcc_nonrefundable"], - "2015-01-01": ["ne_exemptions", "ne_elderly_disabled_credit", "ne_cdcc_nonrefundable"] - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.exemptions": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.exemptions", - "description": null, - "label": "exemptions", - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.exemptions.amount": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.exemptions.amount", - "description": "Nebraska per-person exemption amount", - "label": "Nebraska per-person exemption amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 206.71579696317, - "2034-01-01": 202.712933096563, - "2033-01-01": 198.759487302384, - "2032-01-01": 194.904877653058, - "2031-01-01": 191.149104148588, - "2030-01-01": 187.442748716544, - "2029-01-01": 183.785811356928, - "2028-01-01": 180.178292069739, - "2027-01-01": 176.521354710123, - "2026-01-01": 172.276342288622, - "2025-01-01": 169.68247003037, - "2024-01-01": 166, - "2023-01-01": 157, - "2022-01-01": 146, - "2021-01-01": 142, - "2015-01-01": 142 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.rates": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.rates", - "description": null, - "label": "rates", - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.rates.head_of_household": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.rates.head_of_household", - "description": "Nebraska taxes head of household filers at these rates.", - "label": "Nebraska income tax rates for head-of-household filing units" - }, - "gov.states.ne.tax.income.rates.head_of_household[0]": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.rates.head_of_household[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ne.tax.income.rates.head_of_household[0].rate": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.rates.head_of_household[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0246, - "2015-01-01": 0.0246 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.rates.head_of_household[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.rates.head_of_household[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.rates.head_of_household[1]": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.rates.head_of_household[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ne.tax.income.rates.head_of_household[1].rate": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.rates.head_of_household[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0351, - "2015-01-01": 0.0351 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.rates.head_of_household[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.rates.head_of_household[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 7270, - "2023-01-01": 6900, - "2022-01-01": 6410, - "2021-01-01": 6220, - "2015-01-01": 6220 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.rates.head_of_household[2]": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.rates.head_of_household[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ne.tax.income.rates.head_of_household[2].rate": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.rates.head_of_household[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.0399, - "2026-01-01": 0.0455, - "2021-01-01": 0.0501, - "2015-01-01": 0.0501 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.rates.head_of_household[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.rates.head_of_household[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 37400, - "2023-01-01": 35480, - "2022-01-01": 32950, - "2021-01-01": 31990, - "2015-01-01": 31990 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.rates.head_of_household[3]": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.rates.head_of_household[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ne.tax.income.rates.head_of_household[3].rate": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.rates.head_of_household[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.0399, - "2026-01-01": 0.0455, - "2025-01-01": 0.052, - "2024-01-01": 0.0584, - "2023-01-01": 0.0664, - "2021-01-01": 0.0684, - "2015-01-01": 0.0684 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.rates.head_of_household[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.rates.head_of_household[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 55850, - "2023-01-01": 52980, - "2022-01-01": 49200, - "2021-01-01": 47760, - "2015-01-01": 47760 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.rates.separate": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.rates.separate", - "description": "Nebraska taxes separate filers at these rates.", - "label": "Nebraska income tax rates for separate filing units" - }, - "gov.states.ne.tax.income.rates.separate[0]": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.rates.separate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ne.tax.income.rates.separate[0].rate": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.rates.separate[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0246, - "2015-01-01": 0.0246 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.rates.separate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.rates.separate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.rates.separate[1]": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.rates.separate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ne.tax.income.rates.separate[1].rate": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.rates.separate[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0351, - "2015-01-01": 0.0351 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.rates.separate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.rates.separate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 3900, - "2023-01-01": 3700, - "2022-01-01": 3440, - "2021-01-01": 3340, - "2015-01-01": 3340 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.rates.separate[2]": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.rates.separate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ne.tax.income.rates.separate[2].rate": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.rates.separate[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.0399, - "2026-01-01": 0.0455, - "2021-01-01": 0.0501, - "2015-01-01": 0.0501 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.rates.separate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.rates.separate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 23370, - "2023-01-01": 22170, - "2022-01-01": 20590, - "2021-01-01": 19990, - "2015-01-01": 19990 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.rates.separate[3]": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.rates.separate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ne.tax.income.rates.separate[3].rate": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.rates.separate[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.0399, - "2026-01-01": 0.0455, - "2025-01-01": 0.052, - "2024-01-01": 0.0584, - "2023-01-01": 0.0664, - "2021-01-01": 0.0684, - "2015-01-01": 0.0684 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.rates.separate[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.rates.separate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 37670, - "2023-01-01": 35730, - "2022-01-01": 33180, - "2021-01-01": 32210, - "2015-01-01": 32210 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.rates.joint": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.rates.joint", - "description": "Nebraska taxes joint filers at these rates.", - "label": "Nebraska income tax rates for joint filing units" - }, - "gov.states.ne.tax.income.rates.joint[0]": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.rates.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ne.tax.income.rates.joint[0].rate": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.rates.joint[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0246, - "2015-01-01": 0.0246 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.rates.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.rates.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.rates.joint[1]": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.rates.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ne.tax.income.rates.joint[1].rate": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.rates.joint[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0351, - "2015-01-01": 0.0351 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.rates.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.rates.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 7790, - "2023-01-01": 7390, - "2022-01-01": 6860, - "2021-01-01": 6660, - "2015-01-01": 6660 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.rates.joint[2]": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.rates.joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ne.tax.income.rates.joint[2].rate": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.rates.joint[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.0399, - "2026-01-01": 0.0455, - "2021-01-01": 0.0501, - "2015-01-01": 0.0501 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.rates.joint[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.rates.joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 46760, - "2023-01-01": 44350, - "2022-01-01": 41190, - "2021-01-01": 39990, - "2015-01-01": 39990 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.rates.joint[3]": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.rates.joint[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ne.tax.income.rates.joint[3].rate": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.rates.joint[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.0399, - "2026-01-01": 0.0455, - "2025-01-01": 0.052, - "2024-01-01": 0.0584, - "2023-01-01": 0.0664, - "2021-01-01": 0.0684, - "2015-01-01": 0.0684 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.rates.joint[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.rates.joint[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 75340, - "2023-01-01": 71460, - "2022-01-01": 66360, - "2021-01-01": 64430, - "2015-01-01": 64430 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.rates.single": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.rates.single", - "description": "Nebraska taxes single filers at these rates.", - "label": "Nebraska income tax rates for single filing units" - }, - "gov.states.ne.tax.income.rates.single[0]": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.rates.single[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ne.tax.income.rates.single[0].rate": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.rates.single[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0246, - "2015-01-01": 0.0246 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.rates.single[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.rates.single[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.rates.single[1]": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.rates.single[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ne.tax.income.rates.single[1].rate": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.rates.single[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0351, - "2015-01-01": 0.0351 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.rates.single[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.rates.single[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 3900, - "2023-01-01": 3700, - "2022-01-01": 3440, - "2021-01-01": 3340, - "2015-01-01": 3340 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.rates.single[2]": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.rates.single[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ne.tax.income.rates.single[2].rate": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.rates.single[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.0399, - "2026-01-01": 0.0455, - "2021-01-01": 0.0501, - "2015-01-01": 0.0501 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.rates.single[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.rates.single[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 23370, - "2023-01-01": 22170, - "2022-01-01": 20590, - "2021-01-01": 19990, - "2015-01-01": 19990 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.rates.single[3]": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.rates.single[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ne.tax.income.rates.single[3].rate": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.rates.single[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.0399, - "2026-01-01": 0.0455, - "2025-01-01": 0.052, - "2024-01-01": 0.0584, - "2023-01-01": 0.0664, - "2021-01-01": 0.0684, - "2015-01-01": 0.0684 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.rates.single[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.rates.single[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 37670, - "2023-01-01": 35730, - "2022-01-01": 33180, - "2021-01-01": 32210, - "2015-01-01": 32210 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.rates.surviving_spouse": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.rates.surviving_spouse", - "description": "Nebraska taxes surviving spouses at these rates.", - "label": "Nebraska income tax rates for surviving spouse filing units" - }, - "gov.states.ne.tax.income.rates.surviving_spouse[0]": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.rates.surviving_spouse[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ne.tax.income.rates.surviving_spouse[0].rate": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.rates.surviving_spouse[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0246, - "2015-01-01": 0.0246 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.rates.surviving_spouse[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.rates.surviving_spouse[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.rates.surviving_spouse[1]": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.rates.surviving_spouse[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ne.tax.income.rates.surviving_spouse[1].rate": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.rates.surviving_spouse[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.0399, - "2026-01-01": 0.0455, - "2021-01-01": 0.0351, - "2015-01-01": 0.0351 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.rates.surviving_spouse[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.rates.surviving_spouse[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 7790, - "2023-01-01": 7390, - "2022-01-01": 6860, - "2021-01-01": 6660, - "2015-01-01": 6660 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.rates.surviving_spouse[2]": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.rates.surviving_spouse[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ne.tax.income.rates.surviving_spouse[2].rate": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.rates.surviving_spouse[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0501, - "2015-01-01": 0.0501 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.rates.surviving_spouse[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.rates.surviving_spouse[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 46760, - "2023-01-01": 44350, - "2022-01-01": 41190, - "2021-01-01": 39990, - "2015-01-01": 39990 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.rates.surviving_spouse[3]": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.rates.surviving_spouse[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ne.tax.income.rates.surviving_spouse[3].rate": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.rates.surviving_spouse[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.0399, - "2026-01-01": 0.0455, - "2025-01-01": 0.052, - "2024-01-01": 0.0584, - "2023-01-01": 0.0664, - "2021-01-01": 0.0684, - "2015-01-01": 0.0684 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.rates.surviving_spouse[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.rates.surviving_spouse[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 75340, - "2023-01-01": 71460, - "2022-01-01": 66360, - "2021-01-01": 64430, - "2015-01-01": 64430 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.deductions": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.deductions", - "description": null, - "label": "deductions", - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.deductions.standard": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.deductions.standard", - "description": null, - "label": "standard", - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.deductions.standard.base_amount": { - "type": "parameterNode", - "parameter": "gov.states.ne.tax.income.deductions.standard.base_amount", - "description": "Nebraska provides this standard deduction base amount.", - "label": "Nebraska standard deduction base amount", - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.deductions.standard.base_amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.deductions.standard.base_amount.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 20750, - "2034-01-01": 20350, - "2033-01-01": 19950, - "2032-01-01": 19600, - "2031-01-01": 19200, - "2030-01-01": 18850, - "2029-01-01": 18450, - "2028-01-01": 18100, - "2027-01-01": 17750, - "2026-01-01": 17300, - "2025-01-01": 17050, - "2024-01-01": 16700, - "2023-01-01": 15800, - "2022-01-01": 14700, - "2021-01-01": 14200, - "2015-01-01": 14200 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.deductions.standard.base_amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.deductions.standard.base_amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 15250, - "2034-01-01": 14950, - "2033-01-01": 14650, - "2032-01-01": 14350, - "2031-01-01": 14100, - "2030-01-01": 13800, - "2029-01-01": 13550, - "2028-01-01": 13250, - "2027-01-01": 13000, - "2026-01-01": 12700, - "2025-01-01": 12500, - "2024-01-01": 12250, - "2023-01-01": 11600, - "2022-01-01": 10750, - "2021-01-01": 10450, - "2015-01-01": 10450 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.deductions.standard.base_amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.deductions.standard.base_amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 20750, - "2034-01-01": 20350, - "2033-01-01": 19950, - "2032-01-01": 19600, - "2031-01-01": 19200, - "2030-01-01": 18850, - "2029-01-01": 18450, - "2028-01-01": 18100, - "2027-01-01": 17750, - "2026-01-01": 17300, - "2025-01-01": 17050, - "2024-01-01": 16700, - "2023-01-01": 15800, - "2022-01-01": 14700, - "2021-01-01": 14200, - "2015-01-01": 14200 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.deductions.standard.base_amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.deductions.standard.base_amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 10350, - "2034-01-01": 10150, - "2033-01-01": 9950, - "2032-01-01": 9800, - "2031-01-01": 9600, - "2030-01-01": 9400, - "2029-01-01": 9200, - "2028-01-01": 9050, - "2027-01-01": 8850, - "2026-01-01": 8650, - "2025-01-01": 8500, - "2024-01-01": 8350, - "2023-01-01": 7900, - "2022-01-01": 7350, - "2021-01-01": 7100, - "2015-01-01": 7100 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.deductions.standard.base_amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.deductions.standard.base_amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 10350, - "2034-01-01": 10150, - "2033-01-01": 9950, - "2032-01-01": 9800, - "2031-01-01": 9600, - "2030-01-01": 9400, - "2029-01-01": 9200, - "2028-01-01": 9050, - "2027-01-01": 8850, - "2026-01-01": 8650, - "2025-01-01": 8500, - "2024-01-01": 8350, - "2023-01-01": 7900, - "2022-01-01": 7350, - "2021-01-01": 7100, - "2015-01-01": 7100 - }, - "economy": true, - "household": true - }, - "gov.states.ne.tax.income.deductions.standard.age_minimum": { - "type": "parameter", - "parameter": "gov.states.ne.tax.income.deductions.standard.age_minimum", - "description": "Nebraska limits its extra standard deduction to filers this age or older.", - "label": "Nebraska extra standard deduction age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.wa": { - "type": "parameterNode", - "parameter": "gov.states.wa", - "description": null, - "label": "Washington", - "economy": true, - "household": true - }, - "gov.states.wa.tax": { - "type": "parameterNode", - "parameter": "gov.states.wa.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.states.wa.tax.income": { - "type": "parameterNode", - "parameter": "gov.states.wa.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.wa.tax.income.credits": { - "type": "parameterNode", - "parameter": "gov.states.wa.tax.income.credits", - "description": null, - "label": "credits", - "economy": true, - "household": true - }, - "gov.states.wa.tax.income.credits.refundable": { - "type": "parameter", - "parameter": "gov.states.wa.tax.income.credits.refundable", - "description": "Washington provides the following refundable income tax credits.", - "label": "Washington refundable credits", - "unit": "list", - "period": "year", - "values": { - "2022-01-01": ["wa_working_families_tax_credit"], - "2015-01-01": ["wa_working_families_tax_credit"] - }, - "economy": true, - "household": true - }, - "gov.states.wa.tax.income.credits.working_families_tax_credit": { - "type": "parameterNode", - "parameter": "gov.states.wa.tax.income.credits.working_families_tax_credit", - "description": null, - "label": "working families tax credit", - "economy": true, - "household": true - }, - "gov.states.wa.tax.income.credits.working_families_tax_credit.phase_out": { - "type": "parameterNode", - "parameter": "gov.states.wa.tax.income.credits.working_families_tax_credit.phase_out", - "description": null, - "label": "Phase-out", - "economy": true, - "household": true - }, - "gov.states.wa.tax.income.credits.working_families_tax_credit.phase_out.start_below_eitc": { - "type": "parameterNode", - "parameter": "gov.states.wa.tax.income.credits.working_families_tax_credit.phase_out.start_below_eitc", - "description": "Washington Working Families Tax Credit phase-out start, below the EITC's income limit, by number of children.", - "label": "Washington Working Families Tax Credit phase-out start" - }, - "gov.states.wa.tax.income.credits.working_families_tax_credit.phase_out.start_below_eitc[0]": { - "type": "parameterNode", - "parameter": "gov.states.wa.tax.income.credits.working_families_tax_credit.phase_out.start_below_eitc[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.wa.tax.income.credits.working_families_tax_credit.phase_out.start_below_eitc[0].threshold": { - "type": "parameter", - "parameter": "gov.states.wa.tax.income.credits.working_families_tax_credit.phase_out.start_below_eitc[0].threshold", - "description": null, - "label": "threshold", - "unit": "person", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.wa.tax.income.credits.working_families_tax_credit.phase_out.start_below_eitc[0].amount": { - "type": "parameter", - "parameter": "gov.states.wa.tax.income.credits.working_families_tax_credit.phase_out.start_below_eitc[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 2500, - "2015-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.states.wa.tax.income.credits.working_families_tax_credit.phase_out.start_below_eitc[1]": { - "type": "parameterNode", - "parameter": "gov.states.wa.tax.income.credits.working_families_tax_credit.phase_out.start_below_eitc[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.wa.tax.income.credits.working_families_tax_credit.phase_out.start_below_eitc[1].threshold": { - "type": "parameter", - "parameter": "gov.states.wa.tax.income.credits.working_families_tax_credit.phase_out.start_below_eitc[1].threshold", - "description": null, - "label": "threshold", - "unit": "person", - "period": null, - "values": { - "2022-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.wa.tax.income.credits.working_families_tax_credit.phase_out.start_below_eitc[1].amount": { - "type": "parameter", - "parameter": "gov.states.wa.tax.income.credits.working_families_tax_credit.phase_out.start_below_eitc[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.wa.tax.income.credits.working_families_tax_credit.amount": { - "type": "parameterNode", - "parameter": "gov.states.wa.tax.income.credits.working_families_tax_credit.amount", - "description": "Washington Working Families Tax Credit maximum amount by number of children.", - "label": "Washington Working Families Tax Credit maximum amount by number of children" - }, - "gov.states.wa.tax.income.credits.working_families_tax_credit.amount[0]": { - "type": "parameterNode", - "parameter": "gov.states.wa.tax.income.credits.working_families_tax_credit.amount[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.wa.tax.income.credits.working_families_tax_credit.amount[0].threshold": { - "type": "parameter", - "parameter": "gov.states.wa.tax.income.credits.working_families_tax_credit.amount[0].threshold", - "description": null, - "label": "threshold", - "unit": "person", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.wa.tax.income.credits.working_families_tax_credit.amount[0].amount": { - "type": "parameter", - "parameter": "gov.states.wa.tax.income.credits.working_families_tax_credit.amount[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 404.714662729098, - "2034-01-01": 396.877730460139, - "2033-01-01": 389.137550441413, - "2032-01-01": 381.590874923156, - "2031-01-01": 374.237703905367, - "2030-01-01": 366.981285137812, - "2029-01-01": 359.821618620492, - "2028-01-01": 352.758704353405, - "2027-01-01": 345.599037836084, - "2026-01-01": 337.288019540978, - "2025-01-01": 332.209655179942, - "2024-01-01": 325, - "2023-01-01": 315, - "2022-01-01": 300, - "2015-01-01": 300 - }, - "economy": true, - "household": true - }, - "gov.states.wa.tax.income.credits.working_families_tax_credit.amount[1]": { - "type": "parameterNode", - "parameter": "gov.states.wa.tax.income.credits.working_families_tax_credit.amount[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.wa.tax.income.credits.working_families_tax_credit.amount[1].threshold": { - "type": "parameter", - "parameter": "gov.states.wa.tax.income.credits.working_families_tax_credit.amount[1].threshold", - "description": null, - "label": "threshold", - "unit": "person", - "period": null, - "values": { - "2022-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.wa.tax.income.credits.working_families_tax_credit.amount[1].amount": { - "type": "parameter", - "parameter": "gov.states.wa.tax.income.credits.working_families_tax_credit.amount[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 796.976566604993, - "2034-01-01": 781.543838444581, - "2033-01-01": 766.301637792322, - "2032-01-01": 751.440492156369, - "2031-01-01": 736.960401536724, - "2030-01-01": 722.670838425231, - "2029-01-01": 708.571802821891, - "2028-01-01": 694.663294726705, - "2027-01-01": 680.564259123365, - "2026-01-01": 664.197946173002, - "2025-01-01": 654.197474815886, - "2024-01-01": 640, - "2023-01-01": 625, - "2022-01-01": 600, - "2015-01-01": 600 - }, - "economy": true, - "household": true - }, - "gov.states.wa.tax.income.credits.working_families_tax_credit.amount[2]": { - "type": "parameterNode", - "parameter": "gov.states.wa.tax.income.credits.working_families_tax_credit.amount[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.wa.tax.income.credits.working_families_tax_credit.amount[2].threshold": { - "type": "parameter", - "parameter": "gov.states.wa.tax.income.credits.working_families_tax_credit.amount[2].threshold", - "description": null, - "label": "threshold", - "unit": "person", - "period": null, - "values": { - "2022-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.wa.tax.income.credits.working_families_tax_credit.amount[2].amount": { - "type": "parameter", - "parameter": "gov.states.wa.tax.income.credits.working_families_tax_credit.amount[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 1201.69122933409, - "2034-01-01": 1178.42156890472, - "2033-01-01": 1155.43918823374, - "2032-01-01": 1133.03136707953, - "2031-01-01": 1111.19810544209, - "2030-01-01": 1089.65212356304, - "2029-01-01": 1068.39342144238, - "2028-01-01": 1047.42199908011, - "2027-01-01": 1026.16329695945, - "2026-01-01": 1001.48596571398, - "2025-01-01": 986.407129995828, - "2024-01-01": 965, - "2023-01-01": 940, - "2022-01-01": 900, - "2015-01-01": 900 - }, - "economy": true, - "household": true - }, - "gov.states.wa.tax.income.credits.working_families_tax_credit.amount[3]": { - "type": "parameterNode", - "parameter": "gov.states.wa.tax.income.credits.working_families_tax_credit.amount[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.wa.tax.income.credits.working_families_tax_credit.amount[3].threshold": { - "type": "parameter", - "parameter": "gov.states.wa.tax.income.credits.working_families_tax_credit.amount[3].threshold", - "description": null, - "label": "threshold", - "unit": "person", - "period": null, - "values": { - "2022-01-01": 3, - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.states.wa.tax.income.credits.working_families_tax_credit.amount[3].amount": { - "type": "parameter", - "parameter": "gov.states.wa.tax.income.credits.working_families_tax_credit.amount[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 1606.40589206319, - "2034-01-01": 1575.29929936486, - "2033-01-01": 1544.57673867515, - "2032-01-01": 1514.62224200268, - "2031-01-01": 1485.43580934746, - "2030-01-01": 1456.63340870086, - "2029-01-01": 1428.21504006287, - "2028-01-01": 1400.18070343351, - "2027-01-01": 1371.76233479553, - "2026-01-01": 1338.77398525496, - "2025-01-01": 1318.61678517577, - "2024-01-01": 1290, - "2023-01-01": 1255, - "2022-01-01": 1200, - "2015-01-01": 1200 - }, - "economy": true, - "household": true - }, - "gov.states.wa.tax.income.credits.working_families_tax_credit.min_amount": { - "type": "parameter", - "parameter": "gov.states.wa.tax.income.credits.working_families_tax_credit.min_amount", - "description": "Washington Working Families Tax Credit minimum amount for those with nonzero benefit.", - "label": "Washington Working Families Tax Credit minimum amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2022-01-01": 50, - "2015-01-01": 50 - }, - "economy": true, - "household": true - }, - "gov.states.wa.tax.income.capital_gains": { - "type": "parameterNode", - "parameter": "gov.states.wa.tax.income.capital_gains", - "description": null, - "label": "capital gains", - "economy": true, - "household": true - }, - "gov.states.wa.tax.income.capital_gains.rate": { - "type": "parameter", - "parameter": "gov.states.wa.tax.income.capital_gains.rate", - "description": "Washington capital gains tax rate.", - "label": "Washington capital gains tax rate", - "unit": "/1", - "period": "year", - "values": { - "2022-01-01": 0.07, - "2015-01-01": 0.07 - }, - "economy": true, - "household": true - }, - "gov.states.wa.tax.income.capital_gains.deductions": { - "type": "parameterNode", - "parameter": "gov.states.wa.tax.income.capital_gains.deductions", - "description": null, - "label": "deductions", - "economy": true, - "household": true - }, - "gov.states.wa.tax.income.capital_gains.deductions.charitable": { - "type": "parameterNode", - "parameter": "gov.states.wa.tax.income.capital_gains.deductions.charitable", - "description": null, - "label": "charitable", - "economy": true, - "household": true - }, - "gov.states.wa.tax.income.capital_gains.deductions.charitable.exemption": { - "type": "parameter", - "parameter": "gov.states.wa.tax.income.capital_gains.deductions.charitable.exemption", - "description": "Washington capital gains charitable contribution exemption.", - "label": "Washington capital gains charitable contribution exemption", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 336000, - "2034-01-01": 330000, - "2033-01-01": 323000, - "2032-01-01": 317000, - "2031-01-01": 311000, - "2030-01-01": 305000, - "2029-01-01": 299000, - "2028-01-01": 293000, - "2027-01-01": 287000, - "2026-01-01": 280000, - "2025-01-01": 276000, - "2024-01-01": 270000, - "2023-01-01": 262000, - "2022-01-01": 250000, - "2015-01-01": 250000 - }, - "economy": true, - "household": true - }, - "gov.states.wa.tax.income.capital_gains.deductions.charitable.cap": { - "type": "parameter", - "parameter": "gov.states.wa.tax.income.capital_gains.deductions.charitable.cap", - "description": "Washington capital gains charitable contribution cap.", - "label": "Washington capital gains charitable contribution cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 134000, - "2034-01-01": 132000, - "2033-01-01": 129000, - "2032-01-01": 127000, - "2031-01-01": 124000, - "2030-01-01": 122000, - "2029-01-01": 120000, - "2028-01-01": 117000, - "2027-01-01": 115000, - "2026-01-01": 112000, - "2025-01-01": 110000, - "2024-01-01": 108000, - "2023-01-01": 105000, - "2022-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.wa.tax.income.capital_gains.deductions.standard": { - "type": "parameter", - "parameter": "gov.states.wa.tax.income.capital_gains.deductions.standard", - "description": "Washington capital gains standard deduction.", - "label": "Washington capital gains standard deduction", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 336000, - "2034-01-01": 330000, - "2033-01-01": 323000, - "2032-01-01": 317000, - "2031-01-01": 311000, - "2030-01-01": 305000, - "2029-01-01": 299000, - "2028-01-01": 293000, - "2027-01-01": 287000, - "2026-01-01": 280000, - "2025-01-01": 276000, - "2024-01-01": 270000, - "2023-01-01": 262000, - "2022-01-01": 250000, - "2015-01-01": 250000 - }, - "economy": true, - "household": true - }, - "gov.states.wa.tax.income.in_effect": { - "type": "parameter", - "parameter": "gov.states.wa.tax.income.in_effect", - "description": "Washington applies its income tax rules if this is true.", - "label": "Washington income tax rules in effect", - "unit": "bool", - "period": "year", - "values": { - "2022-01-01": true, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.wa.dshs": { - "type": "parameterNode", - "parameter": "gov.states.wa.dshs", - "description": null, - "label": "dshs", - "economy": false, - "household": false - }, - "gov.states.wa.dshs.tanf": { - "type": "parameterNode", - "parameter": "gov.states.wa.dshs.tanf", - "description": null, - "label": "tanf", - "economy": false, - "household": false - }, - "gov.states.wa.dshs.tanf.eligibility": { - "type": "parameterNode", - "parameter": "gov.states.wa.dshs.tanf.eligibility", - "description": null, - "label": "eligibility", - "economy": false, - "household": false - }, - "gov.states.wa.dshs.tanf.eligibility.resources": { - "type": "parameterNode", - "parameter": "gov.states.wa.dshs.tanf.eligibility.resources", - "description": null, - "label": "resources", - "economy": false, - "household": false - }, - "gov.states.wa.dshs.tanf.eligibility.resources.limit": { - "type": "parameter", - "parameter": "gov.states.wa.dshs.tanf.eligibility.resources.limit", - "description": "Washington limits its TANF eligibility to household withs up to this resource amount.", - "label": "Washington TANF resource limit", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 6000, - "2015-01-01": 6000 - }, - "economy": false, - "household": false - }, - "gov.states.hi": { - "type": "parameterNode", - "parameter": "gov.states.hi", - "description": null, - "label": "Hawaii", - "economy": true, - "household": true - }, - "gov.states.hi.tax": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.states.hi.tax.income": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits", - "description": null, - "label": "credits", - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.eitc": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.eitc", - "description": null, - "label": "Earned Income Tax Credit", - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.eitc.match": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.eitc.match", - "description": "Hawaii matches this percent of the federal EITC.", - "label": "Hawaii EITC match rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.4, - "2017-01-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.refundable": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.refundable", - "description": "Hawaii provides the following refundable tax credits.", - "label": "Hawaii refundable tax credits", - "unit": "list", - "period": "year", - "values": { - "2023-01-01": [ - "hi_food_excise_credit", - "hi_cdcc", - "hi_tax_credit_for_low_income_household_renters", - "hi_eitc" - ], - "2021-01-01": [ - "hi_food_excise_credit", - "hi_cdcc", - "hi_tax_credit_for_low_income_household_renters" - ], - "2015-01-01": [ - "hi_food_excise_credit", - "hi_cdcc", - "hi_tax_credit_for_low_income_household_renters" - ] - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.cdcc": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.cdcc", - "description": null, - "label": "cdcc", - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.cdcc.disabled_student_income_floor": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.cdcc.disabled_student_income_floor", - "description": "Hawaii limits the employment income floor under the child and dependent care credit benefit for disabled/student filers to this amount.", - "label": "Hawaii CDCC disabled/student income floor" - }, - "gov.states.hi.tax.income.credits.cdcc.disabled_student_income_floor[0]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.cdcc.disabled_student_income_floor[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.hi.tax.income.credits.cdcc.disabled_student_income_floor[0].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.cdcc.disabled_student_income_floor[0].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.cdcc.disabled_student_income_floor[0].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.cdcc.disabled_student_income_floor[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2018-01-01": 2400, - "2015-01-01": 2400 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.cdcc.disabled_student_income_floor[1]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.cdcc.disabled_student_income_floor[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.hi.tax.income.credits.cdcc.disabled_student_income_floor[1].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.cdcc.disabled_student_income_floor[1].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2018-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.cdcc.disabled_student_income_floor[1].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.cdcc.disabled_student_income_floor[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2018-01-01": 4800, - "2015-01-01": 4800 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.cdcc.dependent_care_benefits": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.cdcc.dependent_care_benefits", - "description": null, - "label": "dependent care benefits", - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.cdcc.dependent_care_benefits.expense_floor": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.cdcc.dependent_care_benefits.expense_floor", - "description": "Hawaii limits the qualified expenses under the child and dependent care credit for different numbers of child/dependent to this amount.", - "label": "Hawaii CDCC one child/dependent amount floor" - }, - "gov.states.hi.tax.income.credits.cdcc.dependent_care_benefits.expense_floor[0]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.cdcc.dependent_care_benefits.expense_floor[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.hi.tax.income.credits.cdcc.dependent_care_benefits.expense_floor[0].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.cdcc.dependent_care_benefits.expense_floor[0].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.cdcc.dependent_care_benefits.expense_floor[0].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.cdcc.dependent_care_benefits.expense_floor[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 10000, - "2018-01-01": 2400, - "2015-01-01": 2400 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.cdcc.dependent_care_benefits.expense_floor[1]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.cdcc.dependent_care_benefits.expense_floor[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.hi.tax.income.credits.cdcc.dependent_care_benefits.expense_floor[1].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.cdcc.dependent_care_benefits.expense_floor[1].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2018-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.cdcc.dependent_care_benefits.expense_floor[1].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.cdcc.dependent_care_benefits.expense_floor[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 20000, - "2018-01-01": 4800, - "2015-01-01": 4800 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.cdcc.rate": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.cdcc.rate", - "description": "Hawaii multiplies the child care credit under the child and dependent care credit by these rates, based on adjusted gross income.", - "label": "Hawaii CDCC rate" - }, - "gov.states.hi.tax.income.credits.cdcc.rate[0]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.cdcc.rate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.hi.tax.income.credits.cdcc.rate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.cdcc.rate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.cdcc.rate[0].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.cdcc.rate[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.cdcc.rate[1]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.cdcc.rate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.hi.tax.income.credits.cdcc.rate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.cdcc.rate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2018-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.cdcc.rate[1].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.cdcc.rate[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.24, - "2015-01-01": 0.24 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.cdcc.rate[2]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.cdcc.rate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.hi.tax.income.credits.cdcc.rate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.cdcc.rate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2018-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.cdcc.rate[2].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.cdcc.rate[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.23, - "2015-01-01": 0.23 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.cdcc.rate[3]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.cdcc.rate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.hi.tax.income.credits.cdcc.rate[3].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.cdcc.rate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2018-01-01": 35000, - "2015-01-01": 35000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.cdcc.rate[3].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.cdcc.rate[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.22, - "2015-01-01": 0.22 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.cdcc.rate[4]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.cdcc.rate[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.hi.tax.income.credits.cdcc.rate[4].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.cdcc.rate[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2018-01-01": 40000, - "2015-01-01": 40000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.cdcc.rate[4].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.cdcc.rate[4].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.21, - "2015-01-01": 0.21 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.cdcc.rate[5]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.cdcc.rate[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.hi.tax.income.credits.cdcc.rate[5].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.cdcc.rate[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2018-01-01": 45000, - "2015-01-01": 45000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.cdcc.rate[5].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.cdcc.rate[5].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.cdcc.rate[6]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.cdcc.rate[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.hi.tax.income.credits.cdcc.rate[6].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.cdcc.rate[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2018-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.cdcc.rate[6].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.cdcc.rate[6].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.15, - "2015-01-01": 0.15 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.lihrtc": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.lihrtc", - "description": null, - "label": "lihrtc", - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.lihrtc.aged_age_threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.lihrtc.aged_age_threshold", - "description": "Hawaii counts filer heads and spouses as additional exemptions for the income tax credit for low-income household renters if they are this age or older.", - "label": "Hawaii low-income household renters credit age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.lihrtc.eligibility": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.lihrtc.eligibility", - "description": null, - "label": "eligibility", - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.lihrtc.eligibility.agi_limit": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.lihrtc.eligibility.agi_limit", - "description": "Hawaii limits the tax credit for low-income household renters to filers with adjusted gross income below this amount.", - "label": "Hawaii low-income household renters credit AGI limit", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.lihrtc.eligibility.rent_threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.lihrtc.eligibility.rent_threshold", - "description": "Hawaii limits the tax credit for low-income household renters to filers that paid more than this amount in rent.", - "label": "Hawaii tax credit for low-income household renters rent threshold", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.lihrtc.amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.lihrtc.amount", - "description": "Hawaii extends this amount for each exemption under the income tax credit for low-income household renters.", - "label": "Hawaii income tax credit for low-income household renters base amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 50, - "2015-01-01": 50 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.non_refundable": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.non_refundable", - "description": "Hawaii provides the following non-refundable tax credits.", - "label": "Hawaii non-refundable tax credits", - "unit": "list", - "period": "year", - "values": { - "2023-01-01": [], - "2021-01-01": ["hi_eitc"], - "2015-01-01": ["hi_eitc"] - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax", - "description": null, - "label": "food excise tax", - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household", - "description": "Hawaii provides this amount under the food excise tax credit for head-of-household filers.", - "label": "Hawaii Food/Excise Tax Credit head of household amount" - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[0]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[0].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[0].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 220, - "2021-01-01": 110, - "2015-01-01": 110 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[1]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[1].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 15000, - "2021-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[1].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 200, - "2021-01-01": 100, - "2015-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[2]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[2].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 20000, - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[2].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 170, - "2021-01-01": 85, - "2015-01-01": 85 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[3]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[3].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 25000, - "2021-01-01": 15000, - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[3].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 140, - "2021-01-01": 70, - "2015-01-01": 70 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[4]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[4].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 30000, - "2021-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[4].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 110, - "2021-01-01": 55, - "2015-01-01": 55 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[5]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[5].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 40000, - "2021-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[5].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 90, - "2021-01-01": 45, - "2015-01-01": 45 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[6]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[6].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 50000, - "2021-01-01": 40000, - "2015-01-01": 40000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[6].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[6].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 70, - "2021-01-01": 35, - "2015-01-01": 35 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[7]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[7].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 60000, - "2021-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[7].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.head_of_household[7].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate", - "description": "Hawaii provides this amount under the food excise tax credit for separate filers.", - "label": "Hawaii Food/Excise Tax Credit separate amount" - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[0]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[0].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 220, - "2021-01-01": 110, - "2015-01-01": 110 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[1]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 15000, - "2021-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[1].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 200, - "2021-01-01": 100, - "2015-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[2]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 20000, - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[2].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 170, - "2021-01-01": 85, - "2015-01-01": 85 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[3]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[3].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 25000, - "2021-01-01": 15000, - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[3].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 140, - "2021-01-01": 70, - "2015-01-01": 70 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[4]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[4].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 30000, - "2021-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[4].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 110, - "2021-01-01": 55, - "2015-01-01": 55 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[5]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[5].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 40000, - "2021-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[5].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 90, - "2021-01-01": 45, - "2015-01-01": 45 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[6]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[6].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 50000, - "2021-01-01": 40000, - "2015-01-01": 40000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[6].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[6].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 70, - "2021-01-01": 35, - "2015-01-01": 35 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[7]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[7].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 60000, - "2021-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[7].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.separate[7].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint", - "description": "Hawaii provides this amount under the Food/Excise Tax Credit for joint filers.", - "label": "Hawaii Food/Excise Tax Credit joint amount" - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[0]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[0].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 220, - "2021-01-01": 110, - "2015-01-01": 110 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[1]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 15000, - "2021-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[1].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 200, - "2021-01-01": 100, - "2015-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[2]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[2].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 20000, - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[2].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 170, - "2021-01-01": 85, - "2015-01-01": 85 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[3]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[3].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 25000, - "2021-01-01": 15000, - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[3].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 140, - "2021-01-01": 70, - "2015-01-01": 70 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[4]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[4].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 30000, - "2021-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[4].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 110, - "2021-01-01": 55, - "2015-01-01": 55 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[5]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[5].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 40000, - "2021-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[5].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 90, - "2021-01-01": 45, - "2015-01-01": 45 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[6]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[6].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 50000, - "2021-01-01": 40000, - "2015-01-01": 40000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[6].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[6].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 70, - "2021-01-01": 35, - "2015-01-01": 35 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[7]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[7].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 60000, - "2021-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[7].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.joint[7].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.single": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.single", - "description": "Hawaii provides this amount under the Food/Excise Tax Credit for single filers.", - "label": "Hawaii Food/Excise Tax Credit single amount" - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.single[0]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.single[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.single[0].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.single[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.single[0].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.single[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 220, - "2021-01-01": 110, - "2015-01-01": 110 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.single[1]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.single[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.single[1].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.single[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 15000, - "2021-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.single[1].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.single[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 200, - "2021-01-01": 100, - "2015-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.single[2]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.single[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.single[2].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.single[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 20000, - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.single[2].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.single[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 170, - "2021-01-01": 85, - "2015-01-01": 85 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.single[3]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.single[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.single[3].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.single[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 25000, - "2021-01-01": 15000, - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.single[3].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.single[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 140, - "2021-01-01": 70, - "2015-01-01": 70 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.single[4]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.single[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.single[4].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.single[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 30000, - "2021-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.single[4].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.single[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 110, - "2021-01-01": 55, - "2015-01-01": 55 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.single[5]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.single[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.single[5].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.single[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 40000, - "2021-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.single[5].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.single[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse", - "description": "Hawaii provides this amount under the food excise tax credit for surviving spouse filers.", - "label": "Hawaii Food/Excise Tax Credit surviving spouse amount" - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[0]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[0].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[0].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 220, - "2021-01-01": 110, - "2015-01-01": 110 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[1]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[1].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 15000, - "2021-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[1].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 200, - "2021-01-01": 100, - "2015-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[2]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[2].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 20000, - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[2].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 170, - "2021-01-01": 85, - "2015-01-01": 85 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[3]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[3].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 25000, - "2021-01-01": 15000, - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[3].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 140, - "2021-01-01": 70, - "2015-01-01": 70 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[4]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[4].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 30000, - "2021-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[4].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 110, - "2021-01-01": 55, - "2015-01-01": 55 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[5]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[5].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 40000, - "2021-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[5].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 90, - "2021-01-01": 45, - "2015-01-01": 45 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[6]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[6].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 50000, - "2021-01-01": 40000, - "2015-01-01": 40000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[6].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[6].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 70, - "2021-01-01": 35, - "2015-01-01": 35 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[7]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[7].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 60000, - "2021-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[7].amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.amount.surviving_spouse[7].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.minor_child": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.minor_child", - "description": null, - "label": "minor child", - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.minor_child.support_proportion_threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.minor_child.support_proportion_threshold", - "description": "Hawaii allows for an additional food/excise credit amount for each minor child receiving more than this proportion of support from public agencies.", - "label": "Hawaii Food/Excise Tax Credit minor child public agency support's proportion threshold", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.minor_child.age_threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.minor_child.age_threshold", - "description": "Hawaii extends an additional food/excise credit amount to filers with minor children below this age threshold.", - "label": "Hawaii Food/Excise Tax Credit minor child age threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 18, - "2015-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.minor_child.in_effect": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.minor_child.in_effect", - "description": "Hawaii multiplies the number of minor children by a fixed amount, if this is true, under the Food/Excise Tax Credit.", - "label": "Hawaii Food/Excise Tax Credit minor child fixed amount in effect", - "unit": "bool", - "period": "year", - "values": { - "2023-01-01": false, - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.credits.food_excise_tax.minor_child.amount": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.credits.food_excise_tax.minor_child.amount", - "description": "Hawaii provides this amount under the Food/Excise Tax Credit for each minor child receiving support from public agencies.", - "label": "Hawaii Food/Excise Tax Credit minor child amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2023-01-01": 0, - "2021-01-01": 110, - "2015-01-01": 110 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.exemptions": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.exemptions", - "description": null, - "label": "exemptions", - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.exemptions.base": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.exemptions.base", - "description": "Hawaii provides this base exemption amount.", - "label": "Hawaii exemption base amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 1144, - "2015-01-01": 1144 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.exemptions.disabled": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.exemptions.disabled", - "description": "Hawaii allows this exemption amount for each disabled head or spouse.", - "label": "Hawaii disability exemption amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 7000, - "2015-01-01": 7000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.exemptions.aged_threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.exemptions.aged_threshold", - "description": "Hawaii provides an additional exemption for filer heads and spouses this age or older.", - "label": "Hawaii aged exemption age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates", - "description": null, - "label": "rates", - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.head_of_household": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.head_of_household", - "description": "Hawaii taxes head of household filers at these rates by taxable income.", - "label": "Hawaii head of household income tax rate" - }, - "gov.states.hi.tax.income.rates.head_of_household[0]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.head_of_household[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.hi.tax.income.rates.head_of_household[0].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.head_of_household[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.014, - "2015-01-01": 0.014 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.head_of_household[0].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.head_of_household[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.head_of_household[1]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.head_of_household[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.hi.tax.income.rates.head_of_household[1].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.head_of_household[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.032, - "2015-01-01": 0.032 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.head_of_household[1].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.head_of_household[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 28800, - "2027-01-01": 21600, - "2025-01-01": 14400, - "2018-01-01": 3600, - "2015-01-01": 3600 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.head_of_household[2]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.head_of_household[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.hi.tax.income.rates.head_of_household[2].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.head_of_household[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.055, - "2015-01-01": 0.055 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.head_of_household[2].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.head_of_household[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 36000, - "2027-01-01": 28800, - "2025-01-01": 21600, - "2018-01-01": 7200, - "2015-01-01": 7200 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.head_of_household[3]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.head_of_household[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.hi.tax.income.rates.head_of_household[3].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.head_of_household[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.064, - "2015-01-01": 0.064 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.head_of_household[3].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.head_of_household[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 54000, - "2027-01-01": 36000, - "2025-01-01": 28800, - "2018-01-01": 14400, - "2015-01-01": 14400 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.head_of_household[4]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.head_of_household[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.hi.tax.income.rates.head_of_household[4].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.head_of_household[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.068, - "2015-01-01": 0.068 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.head_of_household[4].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.head_of_household[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 72000, - "2027-01-01": 54000, - "2025-01-01": 36000, - "2018-01-01": 21600, - "2015-01-01": 21600 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.head_of_household[5]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.head_of_household[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.hi.tax.income.rates.head_of_household[5].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.head_of_household[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.072, - "2015-01-01": 0.072 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.head_of_household[5].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.head_of_household[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 187500, - "2027-01-01": 72000, - "2025-01-01": 54000, - "2018-01-01": 28800, - "2015-01-01": 28800 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.head_of_household[6]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.head_of_household[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.hi.tax.income.rates.head_of_household[6].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.head_of_household[6].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.076, - "2015-01-01": 0.076 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.head_of_household[6].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.head_of_household[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 262500, - "2027-01-01": 187500, - "2025-01-01": 72000, - "2018-01-01": 36000, - "2015-01-01": 36000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.head_of_household[7]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.head_of_household[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.hi.tax.income.rates.head_of_household[7].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.head_of_household[7].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.079, - "2015-01-01": 0.079 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.head_of_household[7].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.head_of_household[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 337500, - "2027-01-01": 262500, - "2025-01-01": 187500, - "2018-01-01": 54000, - "2015-01-01": 54000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.head_of_household[8]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.head_of_household[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.hi.tax.income.rates.head_of_household[8].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.head_of_household[8].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.0825, - "2015-01-01": 0.0825 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.head_of_household[8].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.head_of_household[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 412500, - "2027-01-01": 337500, - "2025-01-01": 262500, - "2018-01-01": 72000, - "2015-01-01": 72000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.head_of_household[9]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.head_of_household[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.hi.tax.income.rates.head_of_household[9].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.head_of_household[9].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.09, - "2015-01-01": 0.09 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.head_of_household[9].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.head_of_household[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 487500, - "2027-01-01": 412500, - "2025-01-01": 337500, - "2018-01-01": 225000, - "2015-01-01": 225000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.head_of_household[10]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.head_of_household[10]", - "description": null, - "label": "bracket 11" - }, - "gov.states.hi.tax.income.rates.head_of_household[10].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.head_of_household[10].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.head_of_household[10].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.head_of_household[10].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 600000, - "2027-01-01": 487500, - "2025-01-01": 412500, - "2018-01-01": 262500, - "2015-01-01": 262500 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.head_of_household[11]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.head_of_household[11]", - "description": null, - "label": "bracket 12" - }, - "gov.states.hi.tax.income.rates.head_of_household[11].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.head_of_household[11].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.11, - "2015-01-01": 0.11 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.head_of_household[11].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.head_of_household[11].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 712500, - "2027-01-01": 600000, - "2025-01-01": 487500, - "2018-01-01": 300000, - "2015-01-01": 300000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.separate": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.separate", - "description": "Hawaii taxes separate filers at these rates by taxable income.", - "label": "Hawaii separate income tax rate" - }, - "gov.states.hi.tax.income.rates.separate[0]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.separate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.hi.tax.income.rates.separate[0].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.separate[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.014, - "2015-01-01": 0.014 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.separate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.separate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.separate[1]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.separate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.hi.tax.income.rates.separate[1].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.separate[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.032, - "2015-01-01": 0.032 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.separate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.separate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 19200, - "2027-01-01": 14400, - "2025-01-01": 9600, - "2018-01-01": 2400, - "2015-01-01": 2400 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.separate[2]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.separate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.hi.tax.income.rates.separate[2].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.separate[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.055, - "2015-01-01": 0.055 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.separate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.separate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 24000, - "2027-01-01": 19200, - "2025-01-01": 14400, - "2018-01-01": 4800, - "2015-01-01": 4800 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.separate[3]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.separate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.hi.tax.income.rates.separate[3].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.separate[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.064, - "2015-01-01": 0.064 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.separate[3].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.separate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 36000, - "2027-01-01": 24000, - "2025-01-01": 19200, - "2018-01-01": 9600, - "2015-01-01": 9600 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.separate[4]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.separate[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.hi.tax.income.rates.separate[4].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.separate[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.068, - "2015-01-01": 0.068 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.separate[4].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.separate[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 48000, - "2027-01-01": 36000, - "2025-01-01": 24000, - "2018-01-01": 14400, - "2015-01-01": 14400 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.separate[5]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.separate[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.hi.tax.income.rates.separate[5].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.separate[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.072, - "2015-01-01": 0.072 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.separate[5].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.separate[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 125000, - "2027-01-01": 48000, - "2025-01-01": 36000, - "2018-01-01": 19200, - "2015-01-01": 19200 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.separate[6]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.separate[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.hi.tax.income.rates.separate[6].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.separate[6].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.076, - "2015-01-01": 0.076 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.separate[6].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.separate[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 175000, - "2027-01-01": 125000, - "2025-01-01": 48000, - "2018-01-01": 24000, - "2015-01-01": 24000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.separate[7]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.separate[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.hi.tax.income.rates.separate[7].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.separate[7].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.079, - "2015-01-01": 0.079 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.separate[7].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.separate[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 225000, - "2027-01-01": 175000, - "2025-01-01": 125000, - "2018-01-01": 36000, - "2015-01-01": 36000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.separate[8]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.separate[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.hi.tax.income.rates.separate[8].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.separate[8].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.0825, - "2015-01-01": 0.0825 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.separate[8].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.separate[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 275000, - "2027-01-01": 225000, - "2025-01-01": 175000, - "2018-01-01": 48000, - "2015-01-01": 48000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.separate[9]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.separate[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.hi.tax.income.rates.separate[9].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.separate[9].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.09, - "2015-01-01": 0.09 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.separate[9].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.separate[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 325000, - "2027-01-01": 275000, - "2025-01-01": 225000, - "2018-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.separate[10]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.separate[10]", - "description": null, - "label": "bracket 11" - }, - "gov.states.hi.tax.income.rates.separate[10].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.separate[10].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.separate[10].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.separate[10].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 400000, - "2027-01-01": 325000, - "2025-01-01": 275000, - "2018-01-01": 175000, - "2015-01-01": 175000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.separate[11]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.separate[11]", - "description": null, - "label": "bracket 12" - }, - "gov.states.hi.tax.income.rates.separate[11].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.separate[11].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.11, - "2015-01-01": 0.11 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.separate[11].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.separate[11].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 475000, - "2027-01-01": 400000, - "2025-01-01": 325000, - "2018-01-01": 200000, - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.joint": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.joint", - "description": "Hawaii taxes joint filers at these rates by taxable income.", - "label": "Hawaii joint income tax rate" - }, - "gov.states.hi.tax.income.rates.joint[0]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.hi.tax.income.rates.joint[0].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.joint[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.014, - "2015-01-01": 0.014 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.joint[1]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.hi.tax.income.rates.joint[1].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.joint[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.032, - "2015-01-01": 0.032 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 38400, - "2027-01-01": 28800, - "2025-01-01": 19200, - "2018-01-01": 4800, - "2015-01-01": 4800 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.joint[2]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.hi.tax.income.rates.joint[2].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.joint[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.055, - "2015-01-01": 0.055 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.joint[2].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 48000, - "2027-01-01": 38400, - "2025-01-01": 28800, - "2018-01-01": 9600, - "2015-01-01": 9600 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.joint[3]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.joint[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.hi.tax.income.rates.joint[3].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.joint[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.064, - "2015-01-01": 0.064 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.joint[3].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.joint[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 72000, - "2027-01-01": 48000, - "2025-01-01": 38400, - "2018-01-01": 19200, - "2015-01-01": 19200 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.joint[4]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.joint[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.hi.tax.income.rates.joint[4].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.joint[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.068, - "2015-01-01": 0.068 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.joint[4].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.joint[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 96000, - "2027-01-01": 72000, - "2025-01-01": 48000, - "2018-01-01": 28800, - "2015-01-01": 28800 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.joint[5]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.joint[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.hi.tax.income.rates.joint[5].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.joint[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.072, - "2015-01-01": 0.072 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.joint[5].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.joint[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 250000, - "2027-01-01": 96000, - "2025-01-01": 72000, - "2018-01-01": 38400, - "2015-01-01": 38400 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.joint[6]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.joint[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.hi.tax.income.rates.joint[6].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.joint[6].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.076, - "2015-01-01": 0.076 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.joint[6].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.joint[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 350000, - "2027-01-01": 250000, - "2025-01-01": 96000, - "2018-01-01": 48000, - "2015-01-01": 48000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.joint[7]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.joint[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.hi.tax.income.rates.joint[7].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.joint[7].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.079, - "2015-01-01": 0.079 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.joint[7].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.joint[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 450000, - "2027-01-01": 350000, - "2025-01-01": 250000, - "2018-01-01": 72000, - "2015-01-01": 72000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.joint[8]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.joint[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.hi.tax.income.rates.joint[8].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.joint[8].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.0825, - "2015-01-01": 0.0825 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.joint[8].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.joint[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 550000, - "2027-01-01": 450000, - "2025-01-01": 350000, - "2018-01-01": 96000, - "2015-01-01": 96000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.joint[9]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.joint[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.hi.tax.income.rates.joint[9].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.joint[9].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.09, - "2015-01-01": 0.09 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.joint[9].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.joint[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 650000, - "2027-01-01": 550000, - "2025-01-01": 450000, - "2018-01-01": 300000, - "2015-01-01": 300000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.joint[10]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.joint[10]", - "description": null, - "label": "bracket 11" - }, - "gov.states.hi.tax.income.rates.joint[10].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.joint[10].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.joint[10].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.joint[10].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 800000, - "2027-01-01": 650000, - "2025-01-01": 550000, - "2018-01-01": 350000, - "2015-01-01": 350000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.joint[11]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.joint[11]", - "description": null, - "label": "bracket 12" - }, - "gov.states.hi.tax.income.rates.joint[11].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.joint[11].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.11, - "2015-01-01": 0.11 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.joint[11].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.joint[11].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 950000, - "2027-01-01": 800000, - "2025-01-01": 650000, - "2018-01-01": 400000, - "2015-01-01": 400000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.single": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.single", - "description": "Hawaii taxes single filers at these rates by taxable income.", - "label": "Hawaii single income tax rate" - }, - "gov.states.hi.tax.income.rates.single[0]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.single[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.hi.tax.income.rates.single[0].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.single[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.014, - "2015-01-01": 0.014 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.single[0].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.single[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.single[1]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.single[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.hi.tax.income.rates.single[1].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.single[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.032, - "2015-01-01": 0.032 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.single[1].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.single[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 19200, - "2027-01-01": 14400, - "2025-01-01": 9600, - "2018-01-01": 2400, - "2015-01-01": 2400 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.single[2]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.single[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.hi.tax.income.rates.single[2].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.single[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.055, - "2015-01-01": 0.055 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.single[2].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.single[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 24000, - "2027-01-01": 19200, - "2025-01-01": 14400, - "2018-01-01": 4800, - "2015-01-01": 4800 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.single[3]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.single[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.hi.tax.income.rates.single[3].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.single[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.064, - "2015-01-01": 0.064 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.single[3].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.single[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 36000, - "2027-01-01": 24000, - "2025-01-01": 19200, - "2018-01-01": 9600, - "2015-01-01": 9600 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.single[4]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.single[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.hi.tax.income.rates.single[4].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.single[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.068, - "2015-01-01": 0.068 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.single[4].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.single[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 48000, - "2027-01-01": 36000, - "2025-01-01": 24000, - "2018-01-01": 14400, - "2015-01-01": 14400 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.single[5]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.single[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.hi.tax.income.rates.single[5].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.single[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.072, - "2015-01-01": 0.072 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.single[5].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.single[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 125000, - "2027-01-01": 48000, - "2025-01-01": 36000, - "2018-01-01": 19200, - "2015-01-01": 19200 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.single[6]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.single[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.hi.tax.income.rates.single[6].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.single[6].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.076, - "2015-01-01": 0.076 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.single[6].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.single[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 175000, - "2027-01-01": 125000, - "2025-01-01": 48000, - "2018-01-01": 24000, - "2015-01-01": 24000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.single[7]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.single[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.hi.tax.income.rates.single[7].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.single[7].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.079, - "2015-01-01": 0.079 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.single[7].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.single[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 225000, - "2027-01-01": 175000, - "2025-01-01": 125000, - "2018-01-01": 36000, - "2015-01-01": 36000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.single[8]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.single[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.hi.tax.income.rates.single[8].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.single[8].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.0825, - "2015-01-01": 0.0825 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.single[8].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.single[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 275000, - "2027-01-01": 225000, - "2025-01-01": 175000, - "2018-01-01": 48000, - "2015-01-01": 48000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.single[9]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.single[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.hi.tax.income.rates.single[9].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.single[9].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.09, - "2015-01-01": 0.09 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.single[9].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.single[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 325000, - "2027-01-01": 275000, - "2025-01-01": 225000, - "2018-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.single[10]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.single[10]", - "description": null, - "label": "bracket 11" - }, - "gov.states.hi.tax.income.rates.single[10].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.single[10].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.single[10].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.single[10].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 400000, - "2027-01-01": 325000, - "2025-01-01": 275000, - "2018-01-01": 175000, - "2015-01-01": 175000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.single[11]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.single[11]", - "description": null, - "label": "bracket 12" - }, - "gov.states.hi.tax.income.rates.single[11].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.single[11].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.11, - "2015-01-01": 0.11 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.single[11].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.single[11].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 475000, - "2027-01-01": 400000, - "2025-01-01": 325000, - "2018-01-01": 200000, - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.surviving_spouse": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.surviving_spouse", - "description": "Hawaii taxes surviving spouse filers at these rates by taxable income.", - "label": "Hawaii surviving spouse income tax rate" - }, - "gov.states.hi.tax.income.rates.surviving_spouse[0]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.surviving_spouse[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.hi.tax.income.rates.surviving_spouse[0].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.surviving_spouse[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.014, - "2015-01-01": 0.014 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.surviving_spouse[0].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.surviving_spouse[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.surviving_spouse[1]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.surviving_spouse[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.hi.tax.income.rates.surviving_spouse[1].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.surviving_spouse[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.032, - "2015-01-01": 0.032 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.surviving_spouse[1].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.surviving_spouse[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 38400, - "2027-01-01": 28800, - "2025-01-01": 19200, - "2018-01-01": 4800, - "2015-01-01": 4800 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.surviving_spouse[2]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.surviving_spouse[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.hi.tax.income.rates.surviving_spouse[2].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.surviving_spouse[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.055, - "2015-01-01": 0.055 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.surviving_spouse[2].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.surviving_spouse[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 48000, - "2027-01-01": 38400, - "2025-01-01": 28800, - "2018-01-01": 9600, - "2015-01-01": 9600 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.surviving_spouse[3]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.surviving_spouse[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.hi.tax.income.rates.surviving_spouse[3].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.surviving_spouse[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.064, - "2015-01-01": 0.064 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.surviving_spouse[3].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.surviving_spouse[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 72000, - "2027-01-01": 48000, - "2025-01-01": 38400, - "2018-01-01": 19200, - "2015-01-01": 19200 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.surviving_spouse[4]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.surviving_spouse[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.hi.tax.income.rates.surviving_spouse[4].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.surviving_spouse[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.068, - "2015-01-01": 0.068 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.surviving_spouse[4].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.surviving_spouse[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 96000, - "2027-01-01": 72000, - "2025-01-01": 48000, - "2018-01-01": 28800, - "2015-01-01": 28800 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.surviving_spouse[5]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.surviving_spouse[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.hi.tax.income.rates.surviving_spouse[5].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.surviving_spouse[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.072, - "2015-01-01": 0.072 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.surviving_spouse[5].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.surviving_spouse[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 250000, - "2027-01-01": 96000, - "2025-01-01": 72000, - "2018-01-01": 38400, - "2015-01-01": 38400 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.surviving_spouse[6]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.surviving_spouse[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.hi.tax.income.rates.surviving_spouse[6].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.surviving_spouse[6].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.076, - "2015-01-01": 0.076 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.surviving_spouse[6].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.surviving_spouse[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 350000, - "2027-01-01": 250000, - "2025-01-01": 96000, - "2018-01-01": 48000, - "2015-01-01": 48000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.surviving_spouse[7]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.surviving_spouse[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.hi.tax.income.rates.surviving_spouse[7].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.surviving_spouse[7].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.079, - "2015-01-01": 0.079 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.surviving_spouse[7].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.surviving_spouse[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 450000, - "2027-01-01": 350000, - "2025-01-01": 250000, - "2018-01-01": 72000, - "2015-01-01": 72000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.surviving_spouse[8]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.surviving_spouse[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.hi.tax.income.rates.surviving_spouse[8].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.surviving_spouse[8].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.0825, - "2015-01-01": 0.0825 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.surviving_spouse[8].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.surviving_spouse[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 550000, - "2027-01-01": 450000, - "2025-01-01": 350000, - "2018-01-01": 96000, - "2015-01-01": 96000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.surviving_spouse[9]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.surviving_spouse[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.hi.tax.income.rates.surviving_spouse[9].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.surviving_spouse[9].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.09, - "2015-01-01": 0.09 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.surviving_spouse[9].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.surviving_spouse[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 650000, - "2027-01-01": 550000, - "2025-01-01": 450000, - "2018-01-01": 300000, - "2015-01-01": 300000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.surviving_spouse[10]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.surviving_spouse[10]", - "description": null, - "label": "bracket 11" - }, - "gov.states.hi.tax.income.rates.surviving_spouse[10].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.surviving_spouse[10].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.surviving_spouse[10].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.surviving_spouse[10].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 800000, - "2027-01-01": 650000, - "2025-01-01": 550000, - "2018-01-01": 350000, - "2015-01-01": 350000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.surviving_spouse[11]": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.rates.surviving_spouse[11]", - "description": null, - "label": "bracket 12" - }, - "gov.states.hi.tax.income.rates.surviving_spouse[11].rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.surviving_spouse[11].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.11, - "2015-01-01": 0.11 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.rates.surviving_spouse[11].threshold": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.rates.surviving_spouse[11].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2029-01-01": 950000, - "2027-01-01": 800000, - "2025-01-01": 650000, - "2018-01-01": 400000, - "2015-01-01": 400000 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.subtractions": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.subtractions", - "description": null, - "label": "subtractions", - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.subtractions.subtractions": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.subtractions.subtractions", - "description": "Hawaii subtracts these sources from adjusted gross income.", - "label": "Hawaii subtractions from federal adjusted gross income", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": [ - "taxable_pension_income", - "taxable_social_security", - "hi_military_pay_exclusion", - "us_govt_interest", - "student_loan_interest_ald" - ], - "2015-01-01": [ - "taxable_pension_income", - "taxable_social_security", - "hi_military_pay_exclusion", - "us_govt_interest", - "student_loan_interest_ald" - ] - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.subtractions.military_pay": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.subtractions.military_pay", - "description": null, - "label": "military pay", - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.subtractions.military_pay.cap": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.subtractions.military_pay.cap", - "description": "Hawaii caps the military reserve or Hawaii national guard duty pay exclusion at this amount.", - "label": "Hawaii military reserve or national guard duty pay exclusion cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 10064.3197051587, - "2034-01-01": 9869.43328485797, - "2033-01-01": 9676.95286974617, - "2032-01-01": 9489.28446501215, - "2031-01-01": 9306.42807065594, - "2030-01-01": 9125.97768148862, - "2029-01-01": 8947.93329751019, - "2028-01-01": 8772.29491872067, - "2027-01-01": 8594.25053474225, - "2026-01-01": 8387.57468901594, - "2025-01-01": 8261.28748665936, - "2024-01-01": 8082, - "2023-01-01": 7683, - "2021-01-01": 7345, - "2015-01-01": 7345 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.alternative_tax": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.alternative_tax", - "description": null, - "label": "alternative tax", - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.alternative_tax.availability": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.alternative_tax.availability", - "description": "Hawaii allows for an alternative tax on capital gains calculation if this is true.", - "label": "Hawaii alternative tax on capital gain availability", - "unit": "bool", - "period": "year", - "values": { - "2023-01-01": false, - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.alternative_tax.rate": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.alternative_tax.rate", - "description": "Hawaii taxes the excess of the eligible taxable income for the alternative capital gains over the total taxable income at this rate.", - "label": "Hawaii alternative tax on capital gains rate", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.0725, - "2015-01-01": 0.0725 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.deductions": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.deductions", - "description": null, - "label": "deductions", - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.deductions.itemized": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.deductions.itemized", - "description": null, - "label": "itemized", - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.deductions.itemized.sources": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.deductions.itemized.sources", - "description": "Hawaii deducts the following itemized deductions.", - "label": "Hawaii itemized deductions sources", - "unit": "list", - "period": "year", - "values": { - "2018-01-01": [ - "charitable_deduction", - "hi_medical_expense_deduction", - "hi_interest_deduction", - "hi_casualty_loss_deduction", - "hi_salt_deduction" - ], - "2015-01-01": [ - "charitable_deduction", - "hi_medical_expense_deduction", - "hi_interest_deduction", - "hi_casualty_loss_deduction", - "hi_salt_deduction" - ] - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.deductions.itemized.threshold": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.deductions.itemized.threshold", - "description": null, - "label": "threshold", - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.deductions.itemized.threshold.dependent": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.deductions.itemized.threshold.dependent", - "description": "Hawaii allows for itemized deductions for dependent filers with deductions above this amount.", - "label": "Hawaii itemized deductions dependent threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2018-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.deductions.itemized.threshold.deductions": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.deductions.itemized.threshold.deductions", - "description": "Hawaii qualifies filers for itemized deductions with deductions over this amount, based on filing status.", - "label": "Hawaii itemized deductions deductions threshold", - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.deductions.itemized.threshold.deductions.SINGLE": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.deductions.itemized.threshold.deductions.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2018-01-01": 2200, - "2015-01-01": 2200 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.deductions.itemized.threshold.deductions.JOINT": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.deductions.itemized.threshold.deductions.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2018-01-01": 4400, - "2015-01-01": 4400 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.deductions.itemized.threshold.deductions.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.deductions.itemized.threshold.deductions.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2018-01-01": 2200, - "2015-01-01": 2200 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.deductions.itemized.threshold.deductions.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.deductions.itemized.threshold.deductions.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2018-01-01": 3212, - "2015-01-01": 3212 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.deductions.itemized.threshold.deductions.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.deductions.itemized.threshold.deductions.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2018-01-01": 4400, - "2015-01-01": 4400 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.deductions.itemized.threshold.reduction": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.deductions.itemized.threshold.reduction", - "description": "Hawaii reduces the total itemized deductions amount for filers with federal adjusted gross income below this amount, based on filing status.", - "label": "Hawaii itemized deductions reduction threshold", - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.deductions.itemized.threshold.reduction.SINGLE": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.deductions.itemized.threshold.reduction.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 166800, - "2015-01-01": 166800 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.deductions.itemized.threshold.reduction.JOINT": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.deductions.itemized.threshold.reduction.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 166800, - "2015-01-01": 166800 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.deductions.itemized.threshold.reduction.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.deductions.itemized.threshold.reduction.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 166800, - "2015-01-01": 166800 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.deductions.itemized.threshold.reduction.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.deductions.itemized.threshold.reduction.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 83400, - "2015-01-01": 83400 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.deductions.itemized.threshold.reduction.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.deductions.itemized.threshold.reduction.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 166800, - "2015-01-01": 166800 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.deductions.standard": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.deductions.standard", - "description": null, - "label": "standard", - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.deductions.standard.amount": { - "type": "parameterNode", - "parameter": "gov.states.hi.tax.income.deductions.standard.amount", - "description": "Hawaii provides filers a standard deduction of this amount, depending on their filing status.", - "label": "Hawaii standard deduction amount", - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.deductions.standard.amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.deductions.standard.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2031-01-01": 24000, - "2030-01-01": 20000, - "2028-01-01": 18000, - "2026-01-01": 16000, - "2024-01-01": 8800, - "2022-01-01": 4400, - "2015-01-01": 4400 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.deductions.standard.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.deductions.standard.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2031-01-01": 18000, - "2030-01-01": 15000, - "2028-01-01": 13500, - "2026-01-01": 12000, - "2024-01-01": 6424, - "2022-01-01": 3212, - "2015-01-01": 3212 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.deductions.standard.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.deductions.standard.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2031-01-01": 24000, - "2030-01-01": 20000, - "2028-01-01": 18000, - "2026-01-01": 16000, - "2024-01-01": 8800, - "2022-01-01": 4400, - "2015-01-01": 4400 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.deductions.standard.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.deductions.standard.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2031-01-01": 12000, - "2030-01-01": 10000, - "2028-01-01": 9000, - "2026-01-01": 8000, - "2024-01-01": 4400, - "2022-01-01": 2200, - "2015-01-01": 2200 - }, - "economy": true, - "household": true - }, - "gov.states.hi.tax.income.deductions.standard.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.hi.tax.income.deductions.standard.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2031-01-01": 12000, - "2030-01-01": 10000, - "2028-01-01": 9000, - "2026-01-01": 8000, - "2024-01-01": 4400, - "2022-01-01": 2200, - "2015-01-01": 2200 - }, - "economy": true, - "household": true - }, - "gov.states.nh": { - "type": "parameterNode", - "parameter": "gov.states.nh", - "description": null, - "label": "New Hampshire", - "economy": true, - "household": true - }, - "gov.states.nh.tax": { - "type": "parameterNode", - "parameter": "gov.states.nh.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.states.nh.tax.credits": { - "type": "parameterNode", - "parameter": "gov.states.nh.tax.credits", - "description": null, - "label": "credits", - "economy": true, - "household": true - }, - "gov.states.nh.tax.credits.education": { - "type": "parameterNode", - "parameter": "gov.states.nh.tax.credits.education", - "description": null, - "label": "education", - "economy": true, - "household": true - }, - "gov.states.nh.tax.credits.education.rate": { - "type": "parameterNode", - "parameter": "gov.states.nh.tax.credits.education.rate", - "description": "New Hampshire's Education Tax Credit equals this share of charitable donations, depending on the amount.", - "label": "New Hampshire Education Tax Credit" - }, - "gov.states.nh.tax.credits.education.rate[0]": { - "type": "parameterNode", - "parameter": "gov.states.nh.tax.credits.education.rate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nh.tax.credits.education.rate[0].rate": { - "type": "parameter", - "parameter": "gov.states.nh.tax.credits.education.rate[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.85 - }, - "economy": true, - "household": true - }, - "gov.states.nh.tax.credits.education.rate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nh.tax.credits.education.rate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2013-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nh.tax.credits.education.rate[1]": { - "type": "parameterNode", - "parameter": "gov.states.nh.tax.credits.education.rate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nh.tax.credits.education.rate[1].rate": { - "type": "parameter", - "parameter": "gov.states.nh.tax.credits.education.rate[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nh.tax.credits.education.rate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nh.tax.credits.education.rate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2013-01-01": 600000 - }, - "economy": true, - "household": true - }, - "gov.states.nh.tax.income": { - "type": "parameterNode", - "parameter": "gov.states.nh.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.nh.tax.income.exemptions": { - "type": "parameterNode", - "parameter": "gov.states.nh.tax.income.exemptions", - "description": null, - "label": "exemptions", - "economy": true, - "household": true - }, - "gov.states.nh.tax.income.exemptions.amount": { - "type": "parameterNode", - "parameter": "gov.states.nh.tax.income.exemptions.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.states.nh.tax.income.exemptions.amount.disabled_addition": { - "type": "parameter", - "parameter": "gov.states.nh.tax.income.exemptions.amount.disabled_addition", - "description": "New Hampshire provided an exemption amount for disabled filers below the age of 65.", - "label": "New Hampshire disabled exemption amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 1200, - "2015-01-01": 1200 - }, - "economy": true, - "household": true - }, - "gov.states.nh.tax.income.exemptions.amount.old_age_addition": { - "type": "parameter", - "parameter": "gov.states.nh.tax.income.exemptions.amount.old_age_addition", - "description": "New Hampshire provides an old age exemption amount for filers of or above the age 65.", - "label": "New Hampshire old age exemption amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 1200, - "2015-01-01": 1200 - }, - "economy": true, - "household": true - }, - "gov.states.nh.tax.income.exemptions.amount.base": { - "type": "parameterNode", - "parameter": "gov.states.nh.tax.income.exemptions.amount.base", - "description": "New Hampshire provides this base exemption based on filing status.", - "label": "New Hampshire base exemption amount", - "economy": true, - "household": true - }, - "gov.states.nh.tax.income.exemptions.amount.base.SINGLE": { - "type": "parameter", - "parameter": "gov.states.nh.tax.income.exemptions.amount.base.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 2400, - "2015-01-01": 2400 - }, - "economy": true, - "household": true - }, - "gov.states.nh.tax.income.exemptions.amount.base.JOINT": { - "type": "parameter", - "parameter": "gov.states.nh.tax.income.exemptions.amount.base.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 4800, - "2015-01-01": 4800 - }, - "economy": true, - "household": true - }, - "gov.states.nh.tax.income.exemptions.amount.base.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.nh.tax.income.exemptions.amount.base.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 2400, - "2015-01-01": 2400 - }, - "economy": true, - "household": true - }, - "gov.states.nh.tax.income.exemptions.amount.base.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.nh.tax.income.exemptions.amount.base.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 2400, - "2015-01-01": 2400 - }, - "economy": true, - "household": true - }, - "gov.states.nh.tax.income.exemptions.amount.base.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.nh.tax.income.exemptions.amount.base.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 2400, - "2015-01-01": 2400 - }, - "economy": true, - "household": true - }, - "gov.states.nh.tax.income.exemptions.amount.blind_addition": { - "type": "parameter", - "parameter": "gov.states.nh.tax.income.exemptions.amount.blind_addition", - "description": "New Hampshire provides an exemption of this amount per blind filer.", - "label": "New Hampshire blind exemption", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 1200, - "2015-01-01": 1200 - }, - "economy": true, - "household": true - }, - "gov.states.nh.tax.income.exemptions.disability_age_threshold": { - "type": "parameter", - "parameter": "gov.states.nh.tax.income.exemptions.disability_age_threshold", - "description": "New Hampshire provides an exemption for disabled filers below this age.", - "label": "New Hampshire disabled exemption age threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.nh.tax.income.exemptions.old_age_eligibility": { - "type": "parameter", - "parameter": "gov.states.nh.tax.income.exemptions.old_age_eligibility", - "description": "New Hampshire provides an exemption for taxpayers on or older than this age.", - "label": "New Hampshire old age exemption eligibility", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.nh.tax.income.in_effect": { - "type": "parameter", - "parameter": "gov.states.nh.tax.income.in_effect", - "description": "New Hampshire taxes individual income, if this is true.", - "label": "New Hampshire individual income tax in effect", - "unit": "bool", - "period": "year", - "values": { - "2025-01-01": false, - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.states.nh.tax.income.rate": { - "type": "parameter", - "parameter": "gov.states.nh.tax.income.rate", - "description": "New Hampshire taxes interest and dividends at this rate.", - "label": "New Hampshire interest and dividend tax rate", - "unit": "/1", - "period": "year", - "values": { - "2024-01-01": 0.03, - "2023-01-01": 0.04, - "2021-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.mo": { - "type": "parameterNode", - "parameter": "gov.states.mo", - "description": null, - "label": "Missouri", - "economy": true, - "household": true - }, - "gov.states.mo.dss": { - "type": "parameterNode", - "parameter": "gov.states.mo.dss", - "description": null, - "label": "Department of Social Services", - "economy": false, - "household": false - }, - "gov.states.mo.dss.tanf": { - "type": "parameterNode", - "parameter": "gov.states.mo.dss.tanf", - "description": null, - "label": "TANF", - "economy": false, - "household": false - }, - "gov.states.mo.dss.tanf.income_limit": { - "type": "parameterNode", - "parameter": "gov.states.mo.dss.tanf.income_limit", - "description": "Missouri limits its TANF program to households below this income. This is also the maximum benefit.", - "label": "Missouri TANF income limit / maximum benefit", - "economy": false, - "household": false - }, - "gov.states.mo.dss.tanf.income_limit.1": { - "type": "parameter", - "parameter": "gov.states.mo.dss.tanf.income_limit.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "year", - "values": { - "2022-10-01": 1632, - "2015-01-01": 1632 - }, - "economy": false, - "household": false - }, - "gov.states.mo.dss.tanf.income_limit.2": { - "type": "parameter", - "parameter": "gov.states.mo.dss.tanf.income_limit.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "year", - "values": { - "2022-10-01": 2808, - "2015-01-01": 2808 - }, - "economy": false, - "household": false - }, - "gov.states.mo.dss.tanf.income_limit.3": { - "type": "parameter", - "parameter": "gov.states.mo.dss.tanf.income_limit.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "year", - "values": { - "2022-10-01": 3504, - "2015-01-01": 3504 - }, - "economy": false, - "household": false - }, - "gov.states.mo.dss.tanf.income_limit.4": { - "type": "parameter", - "parameter": "gov.states.mo.dss.tanf.income_limit.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "year", - "values": { - "2022-10-01": 4104, - "2015-01-01": 4104 - }, - "economy": false, - "household": false - }, - "gov.states.mo.dss.tanf.income_limit.5": { - "type": "parameter", - "parameter": "gov.states.mo.dss.tanf.income_limit.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "year", - "values": { - "2022-10-01": 4656, - "2015-01-01": 4656 - }, - "economy": false, - "household": false - }, - "gov.states.mo.dss.tanf.income_limit.6": { - "type": "parameter", - "parameter": "gov.states.mo.dss.tanf.income_limit.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "year", - "values": { - "2022-10-01": 5172, - "2015-01-01": 5172 - }, - "economy": false, - "household": false - }, - "gov.states.mo.dss.tanf.income_limit.7": { - "type": "parameter", - "parameter": "gov.states.mo.dss.tanf.income_limit.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "year", - "values": { - "2022-10-01": 5688, - "2015-01-01": 5688 - }, - "economy": false, - "household": false - }, - "gov.states.mo.dss.tanf.income_limit.8": { - "type": "parameter", - "parameter": "gov.states.mo.dss.tanf.income_limit.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "year", - "values": { - "2022-10-01": 6168, - "2015-01-01": 6168 - }, - "economy": false, - "household": false - }, - "gov.states.mo.tax": { - "type": "parameterNode", - "parameter": "gov.states.mo.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.states.mo.tax.income": { - "type": "parameterNode", - "parameter": "gov.states.mo.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.credits": { - "type": "parameterNode", - "parameter": "gov.states.mo.tax.income.credits", - "description": null, - "label": "credits", - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.credits.refundable": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.credits.refundable", - "description": "Missouri allows these refundable tax credits.", - "label": "Missouri refundable tax credits", - "unit": "list", - "period": "year", - "values": { - "2020-01-01": ["mo_property_tax_credit"], - "2015-01-01": ["mo_property_tax_credit"] - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.credits.property_tax": { - "type": "parameterNode", - "parameter": "gov.states.mo.tax.income.credits.property_tax", - "description": null, - "label": "property tax", - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.credits.property_tax.property_tax_rent_ratio": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.credits.property_tax.property_tax_rent_ratio", - "description": "Ratio of property tax to total rent.", - "label": "Missouri property tax credit property-tax-to-total-rent ratio", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.credits.property_tax.aged_survivor_min_age": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.credits.property_tax.aged_survivor_min_age", - "description": "Minimum age for person with social security survivors benefits", - "label": "Missouri property tax credit aged survivor minimum age", - "unit": "year", - "period": "year", - "values": { - "2008-08-28": 60 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.credits.property_tax.age_threshold": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.credits.property_tax.age_threshold", - "description": "Age threshold for qualification for the MO Property Tax Credit", - "label": "Missouri property tax credit age threshold", - "unit": "year", - "period": "year", - "values": { - "2008-08-28": 65 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.credits.property_tax.rent_property_tax_limit": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.credits.property_tax.rent_property_tax_limit", - "description": "Maximum claimable property tax associated with a rented property.", - "label": "Missouri property tax credit limit for property renters", - "unit": "currency-USD", - "period": "year", - "values": { - "2008-08-28": 750 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.credits.property_tax.property_tax_limit": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.credits.property_tax.property_tax_limit", - "description": "Maximum claimable property tax associated with an owned property.", - "label": "Missouri property tax credit limit for property owners", - "unit": "currency-USD", - "period": "year", - "values": { - "2008-08-28": 1100 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.credits.property_tax.phase_out": { - "type": "parameterNode", - "parameter": "gov.states.mo.tax.income.credits.property_tax.phase_out", - "description": null, - "label": "Phase-out", - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.credits.property_tax.phase_out.step": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.credits.property_tax.phase_out.step", - "description": "Step size by which maximum MO property tax credit is phased out.", - "label": "Missouri property tax credit phaseout step size", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 300, - "2015-01-01": 300 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.credits.property_tax.phase_out.rate": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.credits.property_tax.phase_out.rate", - "description": "Rate at which maximum MO property tax credit is phased out.", - "label": "Missouri property tax credit phaseout rate", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 0.000625, - "2015-01-01": 0.000625 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.credits.property_tax.phase_out.threshold": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.credits.property_tax.phase_out.threshold", - "description": "Net household income above which MO property tax credit is reduced.", - "label": "Missouri property tax credit phaseout threshold", - "unit": "currency-USD", - "period": "year", - "values": { - "2008-08-28": 14300, - "1997-01-01": 13000 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.credits.property_tax.income_offset": { - "type": "parameterNode", - "parameter": "gov.states.mo.tax.income.credits.property_tax.income_offset", - "description": null, - "label": "income offset", - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.credits.property_tax.income_offset.non_joint": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.credits.property_tax.income_offset.non_joint", - "description": "Gross income offset for those not a married couple filing jointly.", - "label": "Missouri income offset for all tax units that did not file as married joint", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.credits.property_tax.income_offset.joint_renter": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.credits.property_tax.income_offset.joint_renter", - "description": "Gross income offset for a married couple filing jointly who rent.", - "label": "Missouri income offset for married joint unit that paid some rent", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 2000, - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.credits.property_tax.income_offset.joint_owner": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.credits.property_tax.income_offset.joint_owner", - "description": "Gross income offset for a married couple filing jointly who own.", - "label": "Missouri income offset for married joint unit that owns house (and paid no rent)", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 4000, - "2015-01-01": 4000 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.credits.property_tax.public_assistance_types": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.credits.property_tax.public_assistance_types", - "description": "Types of public assistance included in MO PTC gross income", - "label": "Missouri property tax credit gross income public assistance sources", - "unit": "currency-USD", - "period": "year", - "values": { - "2008-08-28": ["ssi", "child_support_received", "tanf_person"] - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.credits.non_refundable": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.credits.non_refundable", - "description": "Missouri allows these non-refundable tax credits.", - "label": "Missouri non-refundable tax credits", - "unit": "list", - "period": "year", - "values": { - "2023-01-01": ["mo_wftc"], - "2020-01-01": [], - "2015-01-01": [] - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.credits.wftc": { - "type": "parameterNode", - "parameter": "gov.states.mo.tax.income.credits.wftc", - "description": null, - "label": "Working Families Tax Credit", - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.credits.wftc.match": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.credits.wftc.match", - "description": "Missouri matches this percentage of the federal Earned Income Tax Credit under the Working Families Tax Credit.", - "label": "Missouri EITC match", - "unit": "/1", - "period": "year", - "values": { - "2024-01-01": 0.2, - "2023-01-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.rates": { - "type": "parameterNode", - "parameter": "gov.states.mo.tax.income.rates", - "description": "Missouri taxes the individual residents with the following tax rates.", - "label": "Missouri resident individual tax rates" - }, - "gov.states.mo.tax.income.rates[0]": { - "type": "parameterNode", - "parameter": "gov.states.mo.tax.income.rates[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.mo.tax.income.rates[0].rate": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.rates[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0, - "2019-01-01": 0.015, - "2015-01-01": 0.015 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.rates[0].threshold": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.rates[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2022-01-01": 0, - "2021-01-01": 0, - "2020-01-01": 0, - "2019-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.rates[1]": { - "type": "parameterNode", - "parameter": "gov.states.mo.tax.income.rates[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.mo.tax.income.rates[1].rate": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.rates[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2019-01-01": 0.02, - "2015-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.rates[1].threshold": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.rates[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 1585.23620201274, - "2034-01-01": 1554.53954115617, - "2033-01-01": 1524.22185142129, - "2032-01-01": 1494.66210392978, - "2031-01-01": 1465.86029868164, - "2030-01-01": 1437.43746455519, - "2029-01-01": 1409.39360155042, - "2028-01-01": 1381.72870966734, - "2027-01-01": 1353.68484666257, - "2026-01-01": 1321.13122730974, - "2025-01-01": 1301.23966475097, - "2024-01-01": 1273, - "2023-01-01": 1207, - "2022-01-01": 1121, - "2021-01-01": 1088, - "2020-01-01": 1073, - "2019-01-01": 1053, - "2015-01-01": 1053 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.rates[2]": { - "type": "parameterNode", - "parameter": "gov.states.mo.tax.income.rates[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.mo.tax.income.rates[2].rate": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.rates[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2019-01-01": 0.025, - "2015-01-01": 0.025 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.rates[2].threshold": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.rates[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 3170.47240402549, - "2034-01-01": 3109.07908231235, - "2033-01-01": 3048.44370284258, - "2032-01-01": 2989.32420785956, - "2031-01-01": 2931.72059736328, - "2030-01-01": 2874.87492911037, - "2029-01-01": 2818.78720310083, - "2028-01-01": 2763.45741933467, - "2027-01-01": 2707.36969332514, - "2026-01-01": 2642.26245461947, - "2025-01-01": 2602.47932950195, - "2024-01-01": 2546, - "2023-01-01": 2414, - "2022-01-01": 2242, - "2021-01-01": 2176, - "2020-01-01": 2146, - "2019-01-01": 2106, - "2015-01-01": 2106 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.rates[3]": { - "type": "parameterNode", - "parameter": "gov.states.mo.tax.income.rates[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.mo.tax.income.rates[3].rate": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.rates[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2019-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.rates[3].threshold": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.rates[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 4755.70860603823, - "2034-01-01": 4663.61862346852, - "2033-01-01": 4572.66555426387, - "2032-01-01": 4483.98631178934, - "2031-01-01": 4397.58089604492, - "2030-01-01": 4312.31239366556, - "2029-01-01": 4228.18080465125, - "2028-01-01": 4145.18612900201, - "2027-01-01": 4061.05453998771, - "2026-01-01": 3963.39368192921, - "2025-01-01": 3903.71899425292, - "2024-01-01": 3819, - "2023-01-01": 3621, - "2022-01-01": 3363, - "2021-01-01": 3264, - "2020-01-01": 3219, - "2019-01-01": 3159, - "2015-01-01": 3159 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.rates[4]": { - "type": "parameterNode", - "parameter": "gov.states.mo.tax.income.rates[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.mo.tax.income.rates[4].rate": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.rates[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2019-01-01": 0.035, - "2015-01-01": 0.035 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.rates[4].threshold": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.rates[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 6340.94480805098, - "2034-01-01": 6218.1581646247, - "2033-01-01": 6096.88740568516, - "2032-01-01": 5978.64841571911, - "2031-01-01": 5863.44119472656, - "2030-01-01": 5749.74985822074, - "2029-01-01": 5637.57440620167, - "2028-01-01": 5526.91483866934, - "2027-01-01": 5414.73938665027, - "2026-01-01": 5284.52490923895, - "2025-01-01": 5204.95865900389, - "2024-01-01": 5092, - "2023-01-01": 4828, - "2022-01-01": 4484, - "2021-01-01": 4352, - "2020-01-01": 4292, - "2019-01-01": 4212, - "2015-01-01": 4212 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.rates[5]": { - "type": "parameterNode", - "parameter": "gov.states.mo.tax.income.rates[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.mo.tax.income.rates[5].rate": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.rates[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2019-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.rates[5].threshold": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.rates[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 7926.18101006372, - "2034-01-01": 7772.69770578087, - "2033-01-01": 7621.10925710645, - "2032-01-01": 7473.31051964889, - "2031-01-01": 7329.3014934082, - "2030-01-01": 7187.18732277593, - "2029-01-01": 7046.96800775209, - "2028-01-01": 6908.64354833668, - "2027-01-01": 6768.42423331284, - "2026-01-01": 6605.65613654869, - "2025-01-01": 6506.19832375486, - "2024-01-01": 6365, - "2023-01-01": 6035, - "2022-01-01": 5605, - "2021-01-01": 5440, - "2020-01-01": 5365, - "2019-01-01": 5265, - "2015-01-01": 5265 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.rates[6]": { - "type": "parameterNode", - "parameter": "gov.states.mo.tax.income.rates[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.mo.tax.income.rates[6].rate": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.rates[6].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2019-01-01": 0.045, - "2015-01-01": 0.045 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.rates[6].threshold": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.rates[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 9511.41721207647, - "2034-01-01": 9327.23724693704, - "2033-01-01": 9145.33110852774, - "2032-01-01": 8967.97262357867, - "2031-01-01": 8795.16179208984, - "2030-01-01": 8624.62478733111, - "2029-01-01": 8456.36160930251, - "2028-01-01": 8290.37225800401, - "2027-01-01": 8122.10907997541, - "2026-01-01": 7926.78736385842, - "2025-01-01": 7807.43798850583, - "2024-01-01": 7638, - "2023-01-01": 7242, - "2022-01-01": 6726, - "2021-01-01": 6528, - "2020-01-01": 6438, - "2019-01-01": 6318, - "2015-01-01": 6318 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.rates[7]": { - "type": "parameterNode", - "parameter": "gov.states.mo.tax.income.rates[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.mo.tax.income.rates[7].rate": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.rates[7].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2025-01-01": 0.047, - "2024-01-01": 0.048, - "2023-01-01": 0.0495, - "2019-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.rates[7].threshold": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.rates[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 11096.6534140892, - "2034-01-01": 10881.7767880932, - "2033-01-01": 10669.552959949, - "2032-01-01": 10462.6347275085, - "2031-01-01": 10261.0220907715, - "2030-01-01": 10062.0622518863, - "2029-01-01": 9865.75521085292, - "2028-01-01": 9672.10096767135, - "2027-01-01": 9475.79392663798, - "2026-01-01": 9247.91859116816, - "2025-01-01": 9108.67765325681, - "2024-01-01": 8911, - "2023-01-01": 8449, - "2022-01-01": 7847, - "2021-01-01": 7616, - "2020-01-01": 7511, - "2019-01-01": 7371, - "2015-01-01": 7371 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.rates[8]": { - "type": "parameterNode", - "parameter": "gov.states.mo.tax.income.rates[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.mo.tax.income.rates[8].rate": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.rates[8].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2025-01-01": 0.047, - "2024-01-01": 0.048, - "2023-01-01": 0.0495, - "2022-01-01": 0.053, - "2019-01-01": 0.054, - "2015-01-01": 0.054 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.rates[8].threshold": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.rates[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": "Infinity", - "2034-01-01": "Infinity", - "2033-01-01": "Infinity", - "2032-01-01": "Infinity", - "2031-01-01": "Infinity", - "2030-01-01": "Infinity", - "2029-01-01": "Infinity", - "2028-01-01": "Infinity", - "2027-01-01": "Infinity", - "2026-01-01": "Infinity", - "2025-01-01": "Infinity", - "2024-01-01": "Infinity", - "2023-01-01": "Infinity", - "2022-01-01": 8968, - "2021-01-01": 8704, - "2020-01-01": 8584, - "2019-01-01": 8424, - "2015-01-01": 8424 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.minimum_taxable_income": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.minimum_taxable_income", - "description": "Missouri only levies tax on taxable income of at least this amount.", - "label": "Missouri minimum taxable income", - "unit": "currency-USD", - "period": "year", - "values": { - "2024-01-01": 1273, - "2023-01-01": 1207, - "2022-01-01": 111, - "2021-01-01": 108, - "2020-01-01": 106, - "2019-01-01": 104, - "2018-01-01": 102, - "2017-01-01": 100, - "2015-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions": { - "type": "parameterNode", - "parameter": "gov.states.mo.tax.income.deductions", - "description": null, - "label": "deductions", - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.federal_income_tax": { - "type": "parameterNode", - "parameter": "gov.states.mo.tax.income.deductions.federal_income_tax", - "description": null, - "label": "federal income tax", - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.federal_income_tax.ignored_credits": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.deductions.federal_income_tax.ignored_credits", - "description": "Missouri ignores the following credits in federal income tax deduction calculations.", - "label": "Missouri ignored credits in federal income tax deduction", - "unit": "list", - "period": "year", - "values": { - "2018-01-01": ["eitc", "recovery_rebate_credit"], - "2015-01-01": ["eitc", "recovery_rebate_credit"] - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.federal_income_tax.cap": { - "type": "parameterNode", - "parameter": "gov.states.mo.tax.income.deductions.federal_income_tax.cap", - "description": "Missouri allows filers to deduct up to this amount in federal income taxes, after applying the rate.", - "label": "Missouri federal income tax deduction caps", - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.federal_income_tax.cap.SINGLE": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.deductions.federal_income_tax.cap.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.federal_income_tax.cap.JOINT": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.deductions.federal_income_tax.cap.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.federal_income_tax.cap.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.deductions.federal_income_tax.cap.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.federal_income_tax.cap.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.deductions.federal_income_tax.cap.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.federal_income_tax.cap.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.deductions.federal_income_tax.cap.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.federal_income_tax.rate": { - "type": "parameterNode", - "parameter": "gov.states.mo.tax.income.deductions.federal_income_tax.rate", - "description": "Missouri allows filers to deduct this share of federal income taxes (before capping), by AGI. Thresholds are \u003E=.", - "label": "Missouri federal income tax deduction rates" - }, - "gov.states.mo.tax.income.deductions.federal_income_tax.rate[0]": { - "type": "parameterNode", - "parameter": "gov.states.mo.tax.income.deductions.federal_income_tax.rate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.mo.tax.income.deductions.federal_income_tax.rate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.deductions.federal_income_tax.rate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.federal_income_tax.rate[0].amount": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.deductions.federal_income_tax.rate[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.35, - "2015-01-01": 0.35 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.federal_income_tax.rate[1]": { - "type": "parameterNode", - "parameter": "gov.states.mo.tax.income.deductions.federal_income_tax.rate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.mo.tax.income.deductions.federal_income_tax.rate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.deductions.federal_income_tax.rate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.federal_income_tax.rate[1].amount": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.deductions.federal_income_tax.rate[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.federal_income_tax.rate[2]": { - "type": "parameterNode", - "parameter": "gov.states.mo.tax.income.deductions.federal_income_tax.rate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.mo.tax.income.deductions.federal_income_tax.rate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.deductions.federal_income_tax.rate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.federal_income_tax.rate[2].amount": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.deductions.federal_income_tax.rate[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.15, - "2015-01-01": 0.15 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.federal_income_tax.rate[3]": { - "type": "parameterNode", - "parameter": "gov.states.mo.tax.income.deductions.federal_income_tax.rate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.mo.tax.income.deductions.federal_income_tax.rate[3].threshold": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.deductions.federal_income_tax.rate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.federal_income_tax.rate[3].amount": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.deductions.federal_income_tax.rate[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.federal_income_tax.rate[4]": { - "type": "parameterNode", - "parameter": "gov.states.mo.tax.income.deductions.federal_income_tax.rate[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.mo.tax.income.deductions.federal_income_tax.rate[4].threshold": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.deductions.federal_income_tax.rate[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 125000, - "2015-01-01": 125000 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.federal_income_tax.rate[4].amount": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.deductions.federal_income_tax.rate[4].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.business_income": { - "type": "parameterNode", - "parameter": "gov.states.mo.tax.income.deductions.business_income", - "description": null, - "label": "business income", - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.business_income.rate": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.deductions.business_income.rate", - "description": "Missouri caps the business income deduction at this percentage of total business income.", - "label": "Missouri business income deduction rate", - "unit": "/1", - "period": "year", - "values": { - "2023-01-01": 0.2, - "2022-01-01": 0.15, - "2015-01-01": 0.15 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.mo_private_pension_deduction_allowance": { - "type": "parameterNode", - "parameter": "gov.states.mo.tax.income.deductions.mo_private_pension_deduction_allowance", - "description": "Missouri allows the following private pension deductions for different filing status.", - "label": "Missouri private pension deduction allowance", - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.mo_private_pension_deduction_allowance.SINGLE": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.deductions.mo_private_pension_deduction_allowance.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.mo_private_pension_deduction_allowance.JOINT": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.deductions.mo_private_pension_deduction_allowance.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 32000, - "2015-01-01": 32000 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.mo_private_pension_deduction_allowance.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.deductions.mo_private_pension_deduction_allowance.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 16000, - "2015-01-01": 16000 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.mo_private_pension_deduction_allowance.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.deductions.mo_private_pension_deduction_allowance.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.mo_private_pension_deduction_allowance.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.deductions.mo_private_pension_deduction_allowance.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.social_security_and_public_pension": { - "type": "parameterNode", - "parameter": "gov.states.mo.tax.income.deductions.social_security_and_public_pension", - "description": null, - "label": "social security and public pension", - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.social_security_and_public_pension.mo_ss_or_ssdi_exemption_threshold": { - "type": "parameterNode", - "parameter": "gov.states.mo.tax.income.deductions.social_security_and_public_pension.mo_ss_or_ssdi_exemption_threshold", - "description": "Missouri sets the following thresholds for social security or social security disability income exemption for different filing status.", - "label": "Missouri social security or social security disability income exemption threshold", - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.social_security_and_public_pension.mo_ss_or_ssdi_exemption_threshold.SINGLE": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.deductions.social_security_and_public_pension.mo_ss_or_ssdi_exemption_threshold.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 85000, - "2015-01-01": 85000 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.social_security_and_public_pension.mo_ss_or_ssdi_exemption_threshold.JOINT": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.deductions.social_security_and_public_pension.mo_ss_or_ssdi_exemption_threshold.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.social_security_and_public_pension.mo_ss_or_ssdi_exemption_threshold.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.deductions.social_security_and_public_pension.mo_ss_or_ssdi_exemption_threshold.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 85000, - "2015-01-01": 85000 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.social_security_and_public_pension.mo_ss_or_ssdi_exemption_threshold.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.deductions.social_security_and_public_pension.mo_ss_or_ssdi_exemption_threshold.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 85000, - "2015-01-01": 85000 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.social_security_and_public_pension.mo_ss_or_ssdi_exemption_threshold.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.deductions.social_security_and_public_pension.mo_ss_or_ssdi_exemption_threshold.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 85000, - "2015-01-01": 85000 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.social_security_and_public_pension.mo_public_pension_deduction_allowance": { - "type": "parameterNode", - "parameter": "gov.states.mo.tax.income.deductions.social_security_and_public_pension.mo_public_pension_deduction_allowance", - "description": "Missouri allows the following public pension deductions for different filing status.", - "label": "Missouri Public Pension Deduction Allowance", - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.social_security_and_public_pension.mo_public_pension_deduction_allowance.SINGLE": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.deductions.social_security_and_public_pension.mo_public_pension_deduction_allowance.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 85000, - "2015-01-01": 85000 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.social_security_and_public_pension.mo_public_pension_deduction_allowance.JOINT": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.deductions.social_security_and_public_pension.mo_public_pension_deduction_allowance.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.social_security_and_public_pension.mo_public_pension_deduction_allowance.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.deductions.social_security_and_public_pension.mo_public_pension_deduction_allowance.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 85000, - "2015-01-01": 85000 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.social_security_and_public_pension.mo_public_pension_deduction_allowance.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.deductions.social_security_and_public_pension.mo_public_pension_deduction_allowance.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 85000, - "2015-01-01": 85000 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.social_security_and_public_pension.mo_public_pension_deduction_allowance.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.deductions.social_security_and_public_pension.mo_public_pension_deduction_allowance.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 85000, - "2015-01-01": 85000 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.social_security_and_public_pension.mo_ss_or_ssd_deduction_allowance": { - "type": "parameterNode", - "parameter": "gov.states.mo.tax.income.deductions.social_security_and_public_pension.mo_ss_or_ssd_deduction_allowance", - "description": "Missouri allows following social security or social security disability deduction for different filing status", - "label": "Missouri social security or social security disability deduction allowance", - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.social_security_and_public_pension.mo_ss_or_ssd_deduction_allowance.SINGLE": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.deductions.social_security_and_public_pension.mo_ss_or_ssd_deduction_allowance.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 85000, - "2015-01-01": 85000 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.social_security_and_public_pension.mo_ss_or_ssd_deduction_allowance.JOINT": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.deductions.social_security_and_public_pension.mo_ss_or_ssd_deduction_allowance.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.social_security_and_public_pension.mo_ss_or_ssd_deduction_allowance.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.deductions.social_security_and_public_pension.mo_ss_or_ssd_deduction_allowance.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 85000, - "2015-01-01": 85000 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.social_security_and_public_pension.mo_ss_or_ssd_deduction_allowance.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.deductions.social_security_and_public_pension.mo_ss_or_ssd_deduction_allowance.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 85000, - "2015-01-01": 85000 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.social_security_and_public_pension.mo_ss_or_ssd_deduction_allowance.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.deductions.social_security_and_public_pension.mo_ss_or_ssd_deduction_allowance.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 85000, - "2015-01-01": 85000 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.social_security_and_public_pension.income_threshold_applies": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.deductions.social_security_and_public_pension.income_threshold_applies", - "description": "Missouri limits social security and public pension deductions to households below certain income thresholds, if this is true.", - "label": "Missouri social security and public pension income thresholds apply", - "unit": "bool", - "period": "year", - "values": { - "2024-01-01": false, - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.social_security_and_public_pension.mo_max_social_security_benefit": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.deductions.social_security_and_public_pension.mo_max_social_security_benefit", - "description": "Missouri provides maximum amount of social security benefit.", - "label": "Missouri max social security benefit", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 57757.1408370409, - "2034-01-01": 56638.7262045283, - "2033-01-01": 55534.1191600714, - "2032-01-01": 54457.1272917259, - "2031-01-01": 53407.7505994918, - "2030-01-01": 52372.1814953135, - "2029-01-01": 51350.4199791908, - "2028-01-01": 50342.4660511239, - "2027-01-01": 49320.7045350012, - "2026-01-01": 48134.6327210156, - "2025-01-01": 47409.8954366181, - "2024-01-01": 46381, - "2023-01-01": 44683, - "2022-01-01": 41373, - "2021-01-01": 39365, - "2020-01-01": 39014, - "2015-01-01": 39014 - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.itemized": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.deductions.itemized", - "description": "Missouri lets filers itemize the following deductions.", - "label": "Missouri itemized deduction sources", - "unit": "list", - "period": "year", - "values": { - "1993-01-01": [ - "itemized_taxable_income_deductions", - "misc_deduction", - "employee_social_security_tax", - "employee_medicare_tax", - "additional_medicare_tax", - "self_employment_tax" - ] - }, - "economy": true, - "household": true - }, - "gov.states.mo.tax.income.deductions.mo_max_private_pension": { - "type": "parameter", - "parameter": "gov.states.mo.tax.income.deductions.mo_max_private_pension", - "description": "Missouri provides this maximum amount of private pension.", - "label": "Missouri maximum private pension amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2007-01-01": 6000 - }, - "economy": true, - "household": true - }, - "gov.states.nc": { - "type": "parameterNode", - "parameter": "gov.states.nc", - "description": null, - "label": "North Carolina", - "economy": true, - "household": true - }, - "gov.states.nc.tax": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.states.nc.tax.income": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.credits": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.credits", - "description": null, - "label": "credits", - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.credits.ctc": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.credits.ctc", - "description": null, - "label": "Child Tax Credit", - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.credits.ctc.head_of_household": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.credits.ctc.head_of_household", - "description": "North Carolina provides the following child tax credit amount for head of household filers.", - "label": "North Carolina CTC head of household filer amount" - }, - "gov.states.nc.tax.income.credits.ctc.head_of_household[0]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.credits.ctc.head_of_household[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nc.tax.income.credits.ctc.head_of_household[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.credits.ctc.head_of_household[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.credits.ctc.head_of_household[0].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.credits.ctc.head_of_household[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 125 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.credits.ctc.head_of_household[1]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.credits.ctc.head_of_household[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nc.tax.income.credits.ctc.head_of_household[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.credits.ctc.head_of_household[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 32000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.credits.ctc.head_of_household[1].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.credits.ctc.head_of_household[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.credits.ctc.head_of_household[2]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.credits.ctc.head_of_household[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nc.tax.income.credits.ctc.head_of_household[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.credits.ctc.head_of_household[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 80000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.credits.ctc.head_of_household[2].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.credits.ctc.head_of_household[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.credits.ctc.separate": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.credits.ctc.separate", - "description": "North Carolina provides the following child tax credit amount for separate filers.", - "label": "North Carolina CTC separate filer amount" - }, - "gov.states.nc.tax.income.credits.ctc.separate[0]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.credits.ctc.separate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nc.tax.income.credits.ctc.separate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.credits.ctc.separate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.credits.ctc.separate[0].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.credits.ctc.separate[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 125 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.credits.ctc.separate[1]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.credits.ctc.separate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nc.tax.income.credits.ctc.separate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.credits.ctc.separate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.credits.ctc.separate[1].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.credits.ctc.separate[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.credits.ctc.separate[2]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.credits.ctc.separate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nc.tax.income.credits.ctc.separate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.credits.ctc.separate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.credits.ctc.separate[2].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.credits.ctc.separate[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.credits.ctc.joint": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.credits.ctc.joint", - "description": "North Carolina provides the following child tax credit amount for joint filers.", - "label": "North Carolina CTC joint filer amount" - }, - "gov.states.nc.tax.income.credits.ctc.joint[0]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.credits.ctc.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nc.tax.income.credits.ctc.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.credits.ctc.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.credits.ctc.joint[0].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.credits.ctc.joint[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 125 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.credits.ctc.joint[1]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.credits.ctc.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nc.tax.income.credits.ctc.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.credits.ctc.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 40000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.credits.ctc.joint[1].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.credits.ctc.joint[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.credits.ctc.joint[2]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.credits.ctc.joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nc.tax.income.credits.ctc.joint[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.credits.ctc.joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.credits.ctc.joint[2].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.credits.ctc.joint[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.credits.ctc.single": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.credits.ctc.single", - "description": "North Carolina provides the following child tax credit amount for single filers.", - "label": "North Carolina CTC single filer amount" - }, - "gov.states.nc.tax.income.credits.ctc.single[0]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.credits.ctc.single[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nc.tax.income.credits.ctc.single[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.credits.ctc.single[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.credits.ctc.single[0].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.credits.ctc.single[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 125 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.credits.ctc.single[1]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.credits.ctc.single[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nc.tax.income.credits.ctc.single[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.credits.ctc.single[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.credits.ctc.single[1].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.credits.ctc.single[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.credits.ctc.single[2]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.credits.ctc.single[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nc.tax.income.credits.ctc.single[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.credits.ctc.single[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.credits.ctc.single[2].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.credits.ctc.single[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.credits.ctc.surviving_spouse": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.credits.ctc.surviving_spouse", - "description": "North Carolina provides the following child tax credit amount for surviving spouse filers.", - "label": "North Carolina CTC surviving spouse filer amount" - }, - "gov.states.nc.tax.income.credits.ctc.surviving_spouse[0]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.credits.ctc.surviving_spouse[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nc.tax.income.credits.ctc.surviving_spouse[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.credits.ctc.surviving_spouse[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.credits.ctc.surviving_spouse[0].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.credits.ctc.surviving_spouse[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 125 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.credits.ctc.surviving_spouse[1]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.credits.ctc.surviving_spouse[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nc.tax.income.credits.ctc.surviving_spouse[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.credits.ctc.surviving_spouse[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 40000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.credits.ctc.surviving_spouse[1].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.credits.ctc.surviving_spouse[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.credits.ctc.surviving_spouse[2]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.credits.ctc.surviving_spouse[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nc.tax.income.credits.ctc.surviving_spouse[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.credits.ctc.surviving_spouse[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.credits.ctc.surviving_spouse[2].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.credits.ctc.surviving_spouse[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.credits.non_refundable": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.credits.non_refundable", - "description": "North Carolina provides these non refundable income tax credits.", - "label": "North Carolina non-refundable income tax credits", - "unit": "currency-USD", - "period": "year", - "values": { - "2017-01-01": ["nc_ctc"], - "2015-01-01": ["nc_ctc"] - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.rate": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.rate", - "description": "North Carolina taxes individual taxable income at this rate.", - "label": "North Carolina individual income tax rate", - "unit": "/1", - "period": "year", - "values": { - "2026-01-01": 0.0399, - "2025-01-01": 0.0425, - "2024-01-01": 0.045, - "2023-01-01": 0.0475, - "2022-01-01": 0.0499, - "2019-01-01": 0.0525, - "2017-01-01": 0.05499, - "2015-01-01": 0.0575 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.deductions", - "description": null, - "label": "deductions", - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.military_retirement": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.deductions.military_retirement", - "description": null, - "label": "military retirement", - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.military_retirement.minimum_years": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.military_retirement.minimum_years", - "description": "North Carolina requires a filer to have served for at least this many years in the military to qualify for specific military retirement deductions, given the filer is not medically retired.", - "label": "North Carolina minimum years serving in the military", - "unit": "years", - "period": "year", - "values": { - "2022-01-01": 20, - "2015-01-01": 20 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.military_retirement.fraction": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.military_retirement.fraction", - "description": "North Carolina subtracts this fraction of military retirement benefits from federal adjusted gross income.", - "label": "North Carolina military retirement subtraction fraction", - "unit": "/1", - "period": "year", - "values": { - "2022-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.deductions.child", - "description": null, - "label": "child", - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.head_of_household": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.deductions.child.head_of_household", - "description": "North Carolina provides a child deduction of this amount per eligible child for head-of-household filers.", - "label": "North Carolina child deduction per eligible child for head-of-household filers" - }, - "gov.states.nc.tax.income.deductions.child.head_of_household[0]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.deductions.child.head_of_household[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nc.tax.income.deductions.child.head_of_household[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.head_of_household[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.head_of_household[0].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.head_of_household[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 3000, - "2021-01-01": 2500, - "2015-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.head_of_household[1]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.deductions.child.head_of_household[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nc.tax.income.deductions.child.head_of_household[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.head_of_household[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.head_of_household[1].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.head_of_household[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 2500, - "2021-01-01": 2000, - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.head_of_household[2]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.deductions.child.head_of_household[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nc.tax.income.deductions.child.head_of_household[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.head_of_household[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 45000, - "2015-01-01": 45000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.head_of_household[2].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.head_of_household[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 2000, - "2021-01-01": 1500, - "2015-01-01": 1500 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.head_of_household[3]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.deductions.child.head_of_household[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.nc.tax.income.deductions.child.head_of_household[3].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.head_of_household[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 60000, - "2015-01-01": 60000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.head_of_household[3].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.head_of_household[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 1500, - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.head_of_household[4]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.deductions.child.head_of_household[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.nc.tax.income.deductions.child.head_of_household[4].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.head_of_household[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 75000, - "2015-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.head_of_household[4].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.head_of_household[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 1000, - "2021-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.head_of_household[5]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.deductions.child.head_of_household[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.nc.tax.income.deductions.child.head_of_household[5].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.head_of_household[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 90000, - "2015-01-01": 90000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.head_of_household[5].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.head_of_household[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 500, - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.head_of_household[6]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.deductions.child.head_of_household[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.nc.tax.income.deductions.child.head_of_household[6].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.head_of_household[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 105000, - "2015-01-01": 105000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.head_of_household[6].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.head_of_household[6].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.separate": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.deductions.child.separate", - "description": "North Carolina provides a child deduction of this amount per eligible child for separate filers.", - "label": "North Carolina child deduction per eligible child for separate filers" - }, - "gov.states.nc.tax.income.deductions.child.separate[0]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.deductions.child.separate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nc.tax.income.deductions.child.separate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.separate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.separate[0].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.separate[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 3000, - "2021-01-01": 2500, - "2015-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.separate[1]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.deductions.child.separate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nc.tax.income.deductions.child.separate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.separate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.separate[1].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.separate[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 2500, - "2021-01-01": 2000, - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.separate[2]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.deductions.child.separate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nc.tax.income.deductions.child.separate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.separate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.separate[2].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.separate[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 2000, - "2021-01-01": 1500, - "2015-01-01": 1500 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.separate[3]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.deductions.child.separate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.nc.tax.income.deductions.child.separate[3].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.separate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 40000, - "2015-01-01": 40000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.separate[3].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.separate[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 1500, - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.separate[4]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.deductions.child.separate[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.nc.tax.income.deductions.child.separate[4].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.separate[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.separate[4].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.separate[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 1000, - "2021-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.separate[5]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.deductions.child.separate[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.nc.tax.income.deductions.child.separate[5].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.separate[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 60000, - "2015-01-01": 60000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.separate[5].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.separate[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 500, - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.separate[6]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.deductions.child.separate[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.nc.tax.income.deductions.child.separate[6].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.separate[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 70000, - "2015-01-01": 70000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.separate[6].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.separate[6].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.joint": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.deductions.child.joint", - "description": "North Carolina provides a child deduction of this amount per eligible child for joint filers.", - "label": "North Carolina child deduction per eligible child for joint filers" - }, - "gov.states.nc.tax.income.deductions.child.joint[0]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.deductions.child.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nc.tax.income.deductions.child.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.joint[0].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.joint[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 3000, - "2021-01-01": 2500, - "2015-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.joint[1]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.deductions.child.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nc.tax.income.deductions.child.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 40000, - "2015-01-01": 40000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.joint[1].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.joint[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 2500, - "2021-01-01": 2000, - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.joint[2]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.deductions.child.joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nc.tax.income.deductions.child.joint[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 60000, - "2015-01-01": 60000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.joint[2].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.joint[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 2000, - "2021-01-01": 1500, - "2015-01-01": 1500 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.joint[3]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.deductions.child.joint[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.nc.tax.income.deductions.child.joint[3].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.joint[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 80000, - "2015-01-01": 80000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.joint[3].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.joint[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 1500, - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.joint[4]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.deductions.child.joint[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.nc.tax.income.deductions.child.joint[4].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.joint[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.joint[4].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.joint[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 1000, - "2021-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.joint[5]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.deductions.child.joint[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.nc.tax.income.deductions.child.joint[5].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.joint[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 120000, - "2015-01-01": 120000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.joint[5].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.joint[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 500, - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.joint[6]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.deductions.child.joint[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.nc.tax.income.deductions.child.joint[6].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.joint[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 140000, - "2015-01-01": 140000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.joint[6].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.joint[6].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.single": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.deductions.child.single", - "description": "North Carolina provides a child deduction of this amount per eligible child for single filers.", - "label": "North Carolina child deduction per eligible child for single filers" - }, - "gov.states.nc.tax.income.deductions.child.single[0]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.deductions.child.single[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nc.tax.income.deductions.child.single[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.single[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.single[0].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.single[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 3000, - "2021-01-01": 2500, - "2015-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.single[1]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.deductions.child.single[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nc.tax.income.deductions.child.single[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.single[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.single[1].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.single[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 2500, - "2021-01-01": 2000, - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.single[2]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.deductions.child.single[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nc.tax.income.deductions.child.single[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.single[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.single[2].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.single[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 2000, - "2021-01-01": 1500, - "2015-01-01": 1500 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.single[3]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.deductions.child.single[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.nc.tax.income.deductions.child.single[3].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.single[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 40000, - "2015-01-01": 40000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.single[3].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.single[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 1500, - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.single[4]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.deductions.child.single[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.nc.tax.income.deductions.child.single[4].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.single[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.single[4].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.single[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 1000, - "2021-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.single[5]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.deductions.child.single[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.nc.tax.income.deductions.child.single[5].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.single[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 60000, - "2015-01-01": 60000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.single[5].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.single[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 500, - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.single[6]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.deductions.child.single[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.nc.tax.income.deductions.child.single[6].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.single[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 70000, - "2015-01-01": 70000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.single[6].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.single[6].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.surviving_spouse": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.deductions.child.surviving_spouse", - "description": "North Carolina provides a child deduction of this amount per eligible child for surviving spouse filers.", - "label": "North Carolina child deduction per eligible child for surviving spouse filers." - }, - "gov.states.nc.tax.income.deductions.child.surviving_spouse[0]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.deductions.child.surviving_spouse[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nc.tax.income.deductions.child.surviving_spouse[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.surviving_spouse[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.surviving_spouse[0].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.surviving_spouse[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 3000, - "2021-01-01": 2500, - "2015-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.surviving_spouse[1]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.deductions.child.surviving_spouse[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nc.tax.income.deductions.child.surviving_spouse[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.surviving_spouse[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 40000, - "2015-01-01": 40000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.surviving_spouse[1].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.surviving_spouse[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 2500, - "2021-01-01": 2000, - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.surviving_spouse[2]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.deductions.child.surviving_spouse[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nc.tax.income.deductions.child.surviving_spouse[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.surviving_spouse[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 60000, - "2015-01-01": 60000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.surviving_spouse[2].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.surviving_spouse[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 2000, - "2021-01-01": 1500, - "2015-01-01": 1500 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.surviving_spouse[3]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.deductions.child.surviving_spouse[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.nc.tax.income.deductions.child.surviving_spouse[3].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.surviving_spouse[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 80000, - "2015-01-01": 80000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.surviving_spouse[3].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.surviving_spouse[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 1500, - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.surviving_spouse[4]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.deductions.child.surviving_spouse[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.nc.tax.income.deductions.child.surviving_spouse[4].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.surviving_spouse[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.surviving_spouse[4].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.surviving_spouse[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 1000, - "2021-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.surviving_spouse[5]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.deductions.child.surviving_spouse[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.nc.tax.income.deductions.child.surviving_spouse[5].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.surviving_spouse[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 120000, - "2015-01-01": 120000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.surviving_spouse[5].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.surviving_spouse[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 500, - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.surviving_spouse[6]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.deductions.child.surviving_spouse[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.nc.tax.income.deductions.child.surviving_spouse[6].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.surviving_spouse[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 140000, - "2015-01-01": 140000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.child.surviving_spouse[6].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.child.surviving_spouse[6].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.itemized": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.deductions.itemized", - "description": null, - "label": "itemized", - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.itemized.cap": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.deductions.itemized.cap", - "description": null, - "label": "cap", - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.itemized.cap.mortgage_and_property_tax": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.itemized.cap.mortgage_and_property_tax", - "description": "North Carolina caps the mortgage interest and property tax deduction at this amount.", - "label": "mortgage and property tax", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.deductions": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.deductions", - "description": "North Carolina allows for these deductions from taxable income.", - "label": "deductions", - "unit": "list", - "period": "year", - "values": { - "2022-01-01": [ - "us_govt_interest", - "nc_standard_or_itemized_deductions", - "nc_child_deduction", - "taxable_social_security", - "nc_military_retirement_deduction" - ], - "2021-01-01": [ - "us_govt_interest", - "nc_standard_or_itemized_deductions", - "nc_child_deduction", - "taxable_social_security" - ], - "2015-01-01": [ - "us_govt_interest", - "nc_standard_or_itemized_deductions", - "nc_child_deduction", - "taxable_social_security" - ] - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.standard": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.deductions.standard", - "description": null, - "label": "standard", - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.standard.amount": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.income.deductions.standard.amount", - "description": "North Carolina provides this standard deduction amount, based on filing status.", - "label": "North Carolina standard deduction amount", - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.standard.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.standard.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 12750, - "2020-01-01": 10750, - "2019-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.standard.amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.standard.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2022-01-01": 25500, - "2020-01-01": 21500, - "2019-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.standard.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.standard.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 25500, - "2020-01-01": 21500, - "2019-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.standard.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.standard.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 12750, - "2020-01-01": 10750, - "2019-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.income.deductions.standard.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.nc.tax.income.deductions.standard.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2022-01-01": 19125, - "2020-01-01": 16125, - "2019-01-01": 15000, - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.use_tax", - "description": null, - "label": "use tax", - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.use_tax.base", - "description": "North Carolina levies its use tax as a dollar amount by AGI for income below a certain threshold.", - "label": "North Carolina use tax base" - }, - "gov.states.nc.tax.use_tax.base[0]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.use_tax.base[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nc.tax.use_tax.base[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[0].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[1]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.use_tax.base[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nc.tax.use_tax.base[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 2200, - "2015-01-01": 2200 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[1].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[2]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.use_tax.base[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nc.tax.use_tax.base[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 3700, - "2015-01-01": 3700 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[2].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 3, - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[3]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.use_tax.base[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.nc.tax.use_tax.base[3].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 5200, - "2015-01-01": 5200 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[3].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 4, - "2015-01-01": 4 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[4]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.use_tax.base[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.nc.tax.use_tax.base[4].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 6700, - "2015-01-01": 6700 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[4].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 5, - "2015-01-01": 5 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[5]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.use_tax.base[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.nc.tax.use_tax.base[5].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 8100, - "2015-01-01": 8100 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[5].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 6, - "2015-01-01": 6 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[6]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.use_tax.base[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.nc.tax.use_tax.base[6].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 9600, - "2015-01-01": 9600 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[6].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[6].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 7, - "2015-01-01": 7 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[7]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.use_tax.base[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.nc.tax.use_tax.base[7].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 11100, - "2015-01-01": 11100 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[7].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[7].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 8, - "2015-01-01": 8 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[8]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.use_tax.base[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.nc.tax.use_tax.base[8].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 12600, - "2015-01-01": 12600 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[8].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[8].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 9, - "2015-01-01": 9 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[9]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.use_tax.base[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.nc.tax.use_tax.base[9].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 14100, - "2015-01-01": 14100 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[9].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[9].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 10, - "2015-01-01": 10 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[10]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.use_tax.base[10]", - "description": null, - "label": "bracket 11" - }, - "gov.states.nc.tax.use_tax.base[10].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[10].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 15600, - "2015-01-01": 15600 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[10].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[10].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 11, - "2015-01-01": 11 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[11]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.use_tax.base[11]", - "description": null, - "label": "bracket 12" - }, - "gov.states.nc.tax.use_tax.base[11].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[11].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 17000, - "2015-01-01": 17000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[11].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[11].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 12, - "2015-01-01": 12 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[12]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.use_tax.base[12]", - "description": null, - "label": "bracket 13" - }, - "gov.states.nc.tax.use_tax.base[12].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[12].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 18500, - "2015-01-01": 18500 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[12].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[12].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 13, - "2015-01-01": 13 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[13]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.use_tax.base[13]", - "description": null, - "label": "bracket 14" - }, - "gov.states.nc.tax.use_tax.base[13].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[13].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[13].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[13].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[14]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.use_tax.base[14]", - "description": null, - "label": "bracket 15" - }, - "gov.states.nc.tax.use_tax.base[14].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[14].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 21500, - "2015-01-01": 21500 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[14].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[14].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 15, - "2015-01-01": 15 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[15]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.use_tax.base[15]", - "description": null, - "label": "bracket 16" - }, - "gov.states.nc.tax.use_tax.base[15].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[15].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 23000, - "2015-01-01": 23000 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[15].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[15].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 16, - "2015-01-01": 16 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[16]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.use_tax.base[16]", - "description": null, - "label": "bracket 17" - }, - "gov.states.nc.tax.use_tax.base[16].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[16].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 24400, - "2015-01-01": 24400 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[16].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[16].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 17, - "2015-01-01": 17 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[17]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.use_tax.base[17]", - "description": null, - "label": "bracket 18" - }, - "gov.states.nc.tax.use_tax.base[17].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[17].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 25900, - "2015-01-01": 25900 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[17].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[17].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 18, - "2015-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[18]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.use_tax.base[18]", - "description": null, - "label": "bracket 19" - }, - "gov.states.nc.tax.use_tax.base[18].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[18].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 27400, - "2015-01-01": 27400 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[18].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[18].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 19, - "2015-01-01": 19 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[19]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.use_tax.base[19]", - "description": null, - "label": "bracket 20" - }, - "gov.states.nc.tax.use_tax.base[19].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[19].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 28900, - "2015-01-01": 28900 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[19].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[19].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 20, - "2015-01-01": 20 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[20]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.use_tax.base[20]", - "description": null, - "label": "bracket 21" - }, - "gov.states.nc.tax.use_tax.base[20].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[20].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 30400, - "2015-01-01": 30400 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[20].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[20].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 21, - "2015-01-01": 21 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[21]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.use_tax.base[21]", - "description": null, - "label": "bracket 22" - }, - "gov.states.nc.tax.use_tax.base[21].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[21].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 31900, - "2015-01-01": 31900 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[21].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[21].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 22, - "2015-01-01": 22 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[22]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.use_tax.base[22]", - "description": null, - "label": "bracket 23" - }, - "gov.states.nc.tax.use_tax.base[22].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[22].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 33300, - "2015-01-01": 33300 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[22].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[22].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 23, - "2015-01-01": 23 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[23]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.use_tax.base[23]", - "description": null, - "label": "bracket 24" - }, - "gov.states.nc.tax.use_tax.base[23].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[23].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 34800, - "2015-01-01": 34800 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[23].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[23].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 24, - "2015-01-01": 24 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[24]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.use_tax.base[24]", - "description": null, - "label": "bracket 25" - }, - "gov.states.nc.tax.use_tax.base[24].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[24].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 36300, - "2015-01-01": 36300 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[24].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[24].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 25, - "2015-01-01": 25 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[25]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.use_tax.base[25]", - "description": null, - "label": "bracket 26" - }, - "gov.states.nc.tax.use_tax.base[25].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[25].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 37800, - "2015-01-01": 37800 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[25].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[25].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 26, - "2015-01-01": 26 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[26]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.use_tax.base[26]", - "description": null, - "label": "bracket 27" - }, - "gov.states.nc.tax.use_tax.base[26].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[26].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 39300, - "2015-01-01": 39300 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[26].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[26].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 27, - "2015-01-01": 27 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[27]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.use_tax.base[27]", - "description": null, - "label": "bracket 28" - }, - "gov.states.nc.tax.use_tax.base[27].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[27].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 40700, - "2015-01-01": 40700 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[27].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[27].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 28, - "2015-01-01": 28 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[28]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.use_tax.base[28]", - "description": null, - "label": "bracket 29" - }, - "gov.states.nc.tax.use_tax.base[28].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[28].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 42200, - "2015-01-01": 42200 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[28].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[28].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 29, - "2015-01-01": 29 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[29]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.use_tax.base[29]", - "description": null, - "label": "bracket 30" - }, - "gov.states.nc.tax.use_tax.base[29].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[29].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 43700, - "2015-01-01": 43700 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[29].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[29].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 30, - "2015-01-01": 30 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[30]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.use_tax.base[30]", - "description": null, - "label": "bracket 31" - }, - "gov.states.nc.tax.use_tax.base[30].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[30].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 45200, - "2015-01-01": 45200 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.base[30].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.base[30].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.additional": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.use_tax.additional", - "description": "North Carolina levies its use tax as a proportional income tax for income above a certain threshold.", - "label": "North Carolina additional use tax rate" - }, - "gov.states.nc.tax.use_tax.additional[0]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.use_tax.additional[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nc.tax.use_tax.additional[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.additional[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.additional[0].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.additional[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.additional[1]": { - "type": "parameterNode", - "parameter": "gov.states.nc.tax.use_tax.additional[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nc.tax.use_tax.additional[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.additional[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 45200, - "2015-01-01": 45200 - }, - "economy": true, - "household": true - }, - "gov.states.nc.tax.use_tax.additional[1].amount": { - "type": "parameter", - "parameter": "gov.states.nc.tax.use_tax.additional[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.000675, - "2015-01-01": 0.000675 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs", - "description": null, - "label": "ncdhhs", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca", - "description": null, - "label": "North Carolina Subsidized Child Care Assistance Program", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates", - "description": "North Carolina set the following Subsidized Child Care Market Rates for Child Care Centers.", - "label": "North Carolina SCCA program market rates", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALAMANCE_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALAMANCE_COUNTY_NC", - "description": null, - "label": "ALAMANCE COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALAMANCE_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALAMANCE_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 956, - "2015-01-01": 956 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALAMANCE_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALAMANCE_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 942, - "2015-01-01": 942 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALAMANCE_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALAMANCE_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 844, - "2015-01-01": 844 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALAMANCE_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALAMANCE_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 323, - "2015-01-01": 323 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEXANDER_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEXANDER_COUNTY_NC", - "description": null, - "label": "ALEXANDER COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEXANDER_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEXANDER_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 726, - "2015-01-01": 726 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEXANDER_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEXANDER_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 682, - "2015-01-01": 682 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEXANDER_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEXANDER_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 634, - "2015-01-01": 634 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEXANDER_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEXANDER_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 263, - "2015-01-01": 263 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGHANY_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGHANY_COUNTY_NC", - "description": null, - "label": "ALLEGHANY COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGHANY_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGHANY_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 693, - "2015-01-01": 693 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGHANY_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGHANY_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 613, - "2015-01-01": 613 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGHANY_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGHANY_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 558, - "2015-01-01": 558 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGHANY_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGHANY_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 203, - "2015-01-01": 203 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANSON_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANSON_COUNTY_NC", - "description": null, - "label": "ANSON COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANSON_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANSON_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 975, - "2015-01-01": 975 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANSON_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANSON_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 975, - "2015-01-01": 975 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANSON_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANSON_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 975, - "2015-01-01": 975 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANSON_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANSON_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 302, - "2015-01-01": 302 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHE_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHE_COUNTY_NC", - "description": null, - "label": "ASHE COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHE_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHE_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 863, - "2015-01-01": 863 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHE_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHE_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 786, - "2015-01-01": 786 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHE_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHE_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 767, - "2015-01-01": 767 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHE_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHE_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 231, - "2015-01-01": 231 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AVERY_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AVERY_COUNTY_NC", - "description": null, - "label": "AVERY COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AVERY_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AVERY_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 839, - "2015-01-01": 839 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AVERY_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AVERY_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 866, - "2015-01-01": 866 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AVERY_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AVERY_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 815, - "2015-01-01": 815 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AVERY_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AVERY_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 277, - "2015-01-01": 277 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAUFORT_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAUFORT_COUNTY_NC", - "description": null, - "label": "BEAUFORT COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAUFORT_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAUFORT_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 787, - "2015-01-01": 787 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAUFORT_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAUFORT_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 834, - "2015-01-01": 834 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAUFORT_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAUFORT_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 714, - "2015-01-01": 714 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAUFORT_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAUFORT_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 275, - "2015-01-01": 275 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERTIE_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERTIE_COUNTY_NC", - "description": null, - "label": "BERTIE COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERTIE_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERTIE_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 827, - "2015-01-01": 827 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERTIE_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERTIE_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 769, - "2015-01-01": 769 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERTIE_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERTIE_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 750, - "2015-01-01": 750 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERTIE_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERTIE_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 268, - "2015-01-01": 268 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLADEN_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLADEN_COUNTY_NC", - "description": null, - "label": "BLADEN COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLADEN_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLADEN_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 828, - "2015-01-01": 828 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLADEN_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLADEN_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 840, - "2015-01-01": 840 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLADEN_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLADEN_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 838, - "2015-01-01": 838 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLADEN_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLADEN_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 297, - "2015-01-01": 297 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRUNSWICK_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRUNSWICK_COUNTY_NC", - "description": null, - "label": "BRUNSWICK COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRUNSWICK_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRUNSWICK_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 931, - "2015-01-01": 931 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRUNSWICK_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRUNSWICK_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 867, - "2015-01-01": 867 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRUNSWICK_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRUNSWICK_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 730, - "2015-01-01": 730 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRUNSWICK_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRUNSWICK_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 274, - "2015-01-01": 274 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUNCOMBE_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUNCOMBE_COUNTY_NC", - "description": null, - "label": "BUNCOMBE COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUNCOMBE_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUNCOMBE_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 960, - "2015-01-01": 960 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUNCOMBE_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUNCOMBE_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 998, - "2015-01-01": 998 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUNCOMBE_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUNCOMBE_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 958, - "2015-01-01": 958 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUNCOMBE_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUNCOMBE_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 380, - "2015-01-01": 380 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURKE_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURKE_COUNTY_NC", - "description": null, - "label": "BURKE COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURKE_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURKE_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 888, - "2015-01-01": 888 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURKE_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURKE_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 813, - "2015-01-01": 813 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURKE_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURKE_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 598, - "2015-01-01": 598 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURKE_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURKE_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 227, - "2015-01-01": 227 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CABARRUS_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CABARRUS_COUNTY_NC", - "description": null, - "label": "CABARRUS COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CABARRUS_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CABARRUS_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1335, - "2015-01-01": 1335 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CABARRUS_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CABARRUS_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1239, - "2015-01-01": 1239 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CABARRUS_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CABARRUS_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1122, - "2015-01-01": 1122 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CABARRUS_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CABARRUS_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 383, - "2015-01-01": 383 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_COUNTY_NC", - "description": null, - "label": "CALDWELL COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 701, - "2015-01-01": 701 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 739, - "2015-01-01": 739 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 660, - "2015-01-01": 660 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 216, - "2015-01-01": 216 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMDEN_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMDEN_COUNTY_NC", - "description": null, - "label": "CAMDEN COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMDEN_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMDEN_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1160, - "2015-01-01": 1160 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMDEN_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMDEN_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1097, - "2015-01-01": 1097 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMDEN_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMDEN_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1079, - "2015-01-01": 1079 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMDEN_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMDEN_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 326, - "2015-01-01": 326 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTERET_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTERET_COUNTY_NC", - "description": null, - "label": "CARTERET COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTERET_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTERET_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 835, - "2015-01-01": 835 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTERET_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTERET_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 766, - "2015-01-01": 766 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTERET_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTERET_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 708, - "2015-01-01": 708 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTERET_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTERET_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 293, - "2015-01-01": 293 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASWELL_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASWELL_COUNTY_NC", - "description": null, - "label": "CASWELL COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASWELL_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASWELL_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 900, - "2015-01-01": 900 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASWELL_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASWELL_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 859, - "2015-01-01": 859 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASWELL_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASWELL_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 823, - "2015-01-01": 823 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASWELL_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASWELL_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 253, - "2015-01-01": 253 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATAWBA_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATAWBA_COUNTY_NC", - "description": null, - "label": "CATAWBA COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATAWBA_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATAWBA_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 888, - "2015-01-01": 888 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATAWBA_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATAWBA_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 819, - "2015-01-01": 819 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATAWBA_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATAWBA_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 795, - "2015-01-01": 795 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATAWBA_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATAWBA_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 258, - "2015-01-01": 258 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHATHAM_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHATHAM_COUNTY_NC", - "description": null, - "label": "CHATHAM COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHATHAM_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHATHAM_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1421, - "2015-01-01": 1421 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHATHAM_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHATHAM_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1332, - "2015-01-01": 1332 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHATHAM_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHATHAM_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1053, - "2015-01-01": 1053 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHATHAM_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHATHAM_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 446, - "2015-01-01": 446 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_NC", - "description": null, - "label": "CHEROKEE COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 763, - "2015-01-01": 763 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 696, - "2015-01-01": 696 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 665, - "2015-01-01": 665 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 208, - "2015-01-01": 208 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHOWAN_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHOWAN_COUNTY_NC", - "description": null, - "label": "CHOWAN COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHOWAN_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHOWAN_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 785, - "2015-01-01": 785 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHOWAN_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHOWAN_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 716, - "2015-01-01": 716 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHOWAN_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHOWAN_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 698, - "2015-01-01": 698 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHOWAN_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHOWAN_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 242, - "2015-01-01": 242 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_NC", - "description": null, - "label": "CLAY COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 991, - "2015-01-01": 991 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 833, - "2015-01-01": 833 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 780, - "2015-01-01": 780 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 351, - "2015-01-01": 351 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEVELAND_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEVELAND_COUNTY_NC", - "description": null, - "label": "CLEVELAND COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEVELAND_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEVELAND_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 788, - "2015-01-01": 788 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEVELAND_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEVELAND_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 784, - "2015-01-01": 784 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEVELAND_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEVELAND_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 760, - "2015-01-01": 760 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEVELAND_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEVELAND_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 293, - "2015-01-01": 293 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBUS_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBUS_COUNTY_NC", - "description": null, - "label": "COLUMBUS COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBUS_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBUS_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 923, - "2015-01-01": 923 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBUS_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBUS_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 892, - "2015-01-01": 892 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBUS_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBUS_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 829, - "2015-01-01": 829 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBUS_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBUS_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 275, - "2015-01-01": 275 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAVEN_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAVEN_COUNTY_NC", - "description": null, - "label": "CRAVEN COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAVEN_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAVEN_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 823, - "2015-01-01": 823 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAVEN_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAVEN_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 737, - "2015-01-01": 737 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAVEN_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAVEN_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 654, - "2015-01-01": 654 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAVEN_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAVEN_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 275, - "2015-01-01": 275 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_NC", - "description": null, - "label": "CUMBERLAND COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 945, - "2015-01-01": 945 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 867, - "2015-01-01": 867 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 850, - "2015-01-01": 850 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 293, - "2015-01-01": 293 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CURRITUCK_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CURRITUCK_COUNTY_NC", - "description": null, - "label": "CURRITUCK COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CURRITUCK_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CURRITUCK_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 788, - "2015-01-01": 788 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CURRITUCK_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CURRITUCK_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 744, - "2015-01-01": 744 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CURRITUCK_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CURRITUCK_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 709, - "2015-01-01": 709 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CURRITUCK_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CURRITUCK_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 263, - "2015-01-01": 263 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DARE_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DARE_COUNTY_NC", - "description": null, - "label": "DARE COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DARE_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DARE_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1045, - "2015-01-01": 1045 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DARE_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DARE_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1062, - "2015-01-01": 1062 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DARE_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DARE_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 995, - "2015-01-01": 995 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DARE_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DARE_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 318, - "2015-01-01": 318 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIDSON_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIDSON_COUNTY_NC", - "description": null, - "label": "DAVIDSON COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIDSON_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIDSON_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 915, - "2015-01-01": 915 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIDSON_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIDSON_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 783, - "2015-01-01": 783 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIDSON_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIDSON_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 737, - "2015-01-01": 737 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIDSON_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIDSON_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 244, - "2015-01-01": 244 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIE_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIE_COUNTY_NC", - "description": null, - "label": "DAVIE COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIE_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIE_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 898, - "2015-01-01": 898 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIE_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIE_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 894, - "2015-01-01": 894 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIE_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIE_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 833, - "2015-01-01": 833 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIE_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIE_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 320, - "2015-01-01": 320 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUPLIN_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUPLIN_COUNTY_NC", - "description": null, - "label": "DUPLIN COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUPLIN_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUPLIN_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 682, - "2015-01-01": 682 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUPLIN_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUPLIN_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 657, - "2015-01-01": 657 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUPLIN_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUPLIN_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 630, - "2015-01-01": 630 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUPLIN_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUPLIN_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 250, - "2015-01-01": 250 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DURHAM_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DURHAM_COUNTY_NC", - "description": null, - "label": "DURHAM COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DURHAM_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DURHAM_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1401, - "2015-01-01": 1401 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DURHAM_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DURHAM_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1259, - "2015-01-01": 1259 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DURHAM_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DURHAM_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1167, - "2015-01-01": 1167 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DURHAM_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DURHAM_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 380, - "2015-01-01": 380 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDGECOMBE_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDGECOMBE_COUNTY_NC", - "description": null, - "label": "EDGECOMBE COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDGECOMBE_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDGECOMBE_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 872, - "2015-01-01": 872 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDGECOMBE_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDGECOMBE_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1040, - "2015-01-01": 1040 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDGECOMBE_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDGECOMBE_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 775, - "2015-01-01": 775 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDGECOMBE_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDGECOMBE_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 254, - "2015-01-01": 254 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORSYTH_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORSYTH_COUNTY_NC", - "description": null, - "label": "FORSYTH COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORSYTH_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORSYTH_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 985, - "2015-01-01": 985 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORSYTH_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORSYTH_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 936, - "2015-01-01": 936 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORSYTH_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORSYTH_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 853, - "2015-01-01": 853 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORSYTH_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORSYTH_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 317, - "2015-01-01": 317 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_NC", - "description": null, - "label": "FRANKLIN COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1088, - "2015-01-01": 1088 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 998, - "2015-01-01": 998 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 989, - "2015-01-01": 989 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 322, - "2015-01-01": 322 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GASTON_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GASTON_COUNTY_NC", - "description": null, - "label": "GASTON COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GASTON_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GASTON_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 998, - "2015-01-01": 998 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GASTON_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GASTON_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 949, - "2015-01-01": 949 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GASTON_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GASTON_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 851, - "2015-01-01": 851 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GASTON_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GASTON_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 268, - "2015-01-01": 268 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GATES_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GATES_COUNTY_NC", - "description": null, - "label": "GATES COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GATES_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GATES_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 791, - "2015-01-01": 791 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GATES_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GATES_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 723, - "2015-01-01": 723 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GATES_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GATES_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 712, - "2015-01-01": 712 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GATES_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GATES_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 230, - "2015-01-01": 230 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAHAM_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAHAM_COUNTY_NC", - "description": null, - "label": "GRAHAM COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAHAM_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAHAM_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 698, - "2015-01-01": 698 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAHAM_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAHAM_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 654, - "2015-01-01": 654 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAHAM_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAHAM_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 630, - "2015-01-01": 630 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAHAM_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAHAM_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 213, - "2015-01-01": 213 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANVILLE_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANVILLE_COUNTY_NC", - "description": null, - "label": "GRANVILLE COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANVILLE_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANVILLE_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 831, - "2015-01-01": 831 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANVILLE_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANVILLE_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 800, - "2015-01-01": 800 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANVILLE_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANVILLE_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 787, - "2015-01-01": 787 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANVILLE_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANVILLE_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 332, - "2015-01-01": 332 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_NC", - "description": null, - "label": "GREENE COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 714, - "2015-01-01": 714 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 639, - "2015-01-01": 639 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 676, - "2015-01-01": 676 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 238, - "2015-01-01": 238 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUILFORD_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUILFORD_COUNTY_NC", - "description": null, - "label": "GUILFORD COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUILFORD_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUILFORD_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1128, - "2015-01-01": 1128 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUILFORD_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUILFORD_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1092, - "2015-01-01": 1092 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUILFORD_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUILFORD_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1108, - "2015-01-01": 1108 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUILFORD_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUILFORD_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 330, - "2015-01-01": 330 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALIFAX_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALIFAX_COUNTY_NC", - "description": null, - "label": "HALIFAX COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALIFAX_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALIFAX_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 771, - "2015-01-01": 771 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALIFAX_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALIFAX_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 711, - "2015-01-01": 711 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALIFAX_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALIFAX_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 646, - "2015-01-01": 646 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALIFAX_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALIFAX_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 239, - "2015-01-01": 239 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARNETT_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARNETT_COUNTY_NC", - "description": null, - "label": "HARNETT COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARNETT_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARNETT_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 906, - "2015-01-01": 906 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARNETT_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARNETT_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 798, - "2015-01-01": 798 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARNETT_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARNETT_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 843, - "2015-01-01": 843 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARNETT_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARNETT_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 293, - "2015-01-01": 293 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAYWOOD_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAYWOOD_COUNTY_NC", - "description": null, - "label": "HAYWOOD COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAYWOOD_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAYWOOD_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 908, - "2015-01-01": 908 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAYWOOD_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAYWOOD_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 809, - "2015-01-01": 809 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAYWOOD_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAYWOOD_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 671, - "2015-01-01": 671 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAYWOOD_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAYWOOD_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 246, - "2015-01-01": 246 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_NC", - "description": null, - "label": "HENDERSON COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 900, - "2015-01-01": 900 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 873, - "2015-01-01": 873 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 703, - "2015-01-01": 703 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 274, - "2015-01-01": 274 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HERTFORD_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HERTFORD_COUNTY_NC", - "description": null, - "label": "HERTFORD COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HERTFORD_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HERTFORD_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 761, - "2015-01-01": 761 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HERTFORD_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HERTFORD_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 762, - "2015-01-01": 762 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HERTFORD_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HERTFORD_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 760, - "2015-01-01": 760 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HERTFORD_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HERTFORD_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 237, - "2015-01-01": 237 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOKE_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOKE_COUNTY_NC", - "description": null, - "label": "HOKE COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOKE_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOKE_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 880, - "2015-01-01": 880 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOKE_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOKE_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 813, - "2015-01-01": 813 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOKE_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOKE_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 767, - "2015-01-01": 767 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOKE_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOKE_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 287, - "2015-01-01": 287 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HYDE_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HYDE_COUNTY_NC", - "description": null, - "label": "HYDE COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HYDE_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HYDE_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1019, - "2015-01-01": 1019 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HYDE_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HYDE_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 950, - "2015-01-01": 950 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HYDE_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HYDE_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 940, - "2015-01-01": 940 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HYDE_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HYDE_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 335, - "2015-01-01": 335 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IREDELL_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IREDELL_COUNTY_NC", - "description": null, - "label": "IREDELL COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IREDELL_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IREDELL_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1212, - "2015-01-01": 1212 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IREDELL_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IREDELL_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1134, - "2015-01-01": 1134 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IREDELL_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IREDELL_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1096, - "2015-01-01": 1096 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IREDELL_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IREDELL_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 346, - "2015-01-01": 346 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_NC", - "description": null, - "label": "JACKSON COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 854, - "2015-01-01": 854 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 769, - "2015-01-01": 769 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 735, - "2015-01-01": 735 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 229, - "2015-01-01": 229 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSTON_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSTON_COUNTY_NC", - "description": null, - "label": "JOHNSTON COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSTON_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSTON_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 987, - "2015-01-01": 987 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSTON_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSTON_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 890, - "2015-01-01": 890 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSTON_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSTON_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 857, - "2015-01-01": 857 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSTON_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSTON_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 316, - "2015-01-01": 316 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_NC", - "description": null, - "label": "JONES COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 809, - "2015-01-01": 809 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 754, - "2015-01-01": 754 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 718, - "2015-01-01": 718 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 215, - "2015-01-01": 215 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_NC", - "description": null, - "label": "LEE COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 884, - "2015-01-01": 884 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 844, - "2015-01-01": 844 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 743, - "2015-01-01": 743 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 287, - "2015-01-01": 287 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LENOIR_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LENOIR_COUNTY_NC", - "description": null, - "label": "LENOIR COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LENOIR_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LENOIR_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 733, - "2015-01-01": 733 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LENOIR_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LENOIR_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 775, - "2015-01-01": 775 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LENOIR_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LENOIR_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 653, - "2015-01-01": 653 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LENOIR_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LENOIR_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 247, - "2015-01-01": 247 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_NC", - "description": null, - "label": "LINCOLN COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1087, - "2015-01-01": 1087 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1084, - "2015-01-01": 1084 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 998, - "2015-01-01": 998 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 448, - "2015-01-01": 448 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDOWELL_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDOWELL_COUNTY_NC", - "description": null, - "label": "MCDOWELL COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDOWELL_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDOWELL_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1002, - "2015-01-01": 1002 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDOWELL_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDOWELL_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 919, - "2015-01-01": 919 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDOWELL_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDOWELL_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 792, - "2015-01-01": 792 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDOWELL_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDOWELL_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 492, - "2015-01-01": 492 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_NC", - "description": null, - "label": "MACON COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 781, - "2015-01-01": 781 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 758, - "2015-01-01": 758 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 668, - "2015-01-01": 668 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 273, - "2015-01-01": 273 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_NC", - "description": null, - "label": "MADISON COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 888, - "2015-01-01": 888 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 792, - "2015-01-01": 792 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 710, - "2015-01-01": 710 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 254, - "2015-01-01": 254 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_NC", - "description": null, - "label": "MARTIN COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 807, - "2015-01-01": 807 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 795, - "2015-01-01": 795 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 681, - "2015-01-01": 681 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 293, - "2015-01-01": 293 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MECKLENBURG_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MECKLENBURG_COUNTY_NC", - "description": null, - "label": "MECKLENBURG COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MECKLENBURG_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MECKLENBURG_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1427, - "2015-01-01": 1427 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MECKLENBURG_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MECKLENBURG_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1345, - "2015-01-01": 1345 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MECKLENBURG_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MECKLENBURG_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1285, - "2015-01-01": 1285 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MECKLENBURG_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MECKLENBURG_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 386, - "2015-01-01": 386 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_NC", - "description": null, - "label": "MITCHELL COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 875, - "2015-01-01": 875 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 812, - "2015-01-01": 812 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 779, - "2015-01-01": 779 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 219, - "2015-01-01": 219 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_NC", - "description": null, - "label": "MONTGOMERY COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 902, - "2015-01-01": 902 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 889, - "2015-01-01": 889 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 727, - "2015-01-01": 727 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 274, - "2015-01-01": 274 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOORE_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOORE_COUNTY_NC", - "description": null, - "label": "MOORE COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOORE_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOORE_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 998, - "2015-01-01": 998 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOORE_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOORE_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 971, - "2015-01-01": 971 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOORE_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOORE_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 814, - "2015-01-01": 814 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOORE_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOORE_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 303, - "2015-01-01": 303 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NASH_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NASH_COUNTY_NC", - "description": null, - "label": "NASH COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NASH_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NASH_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 947, - "2015-01-01": 947 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NASH_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NASH_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 940, - "2015-01-01": 940 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NASH_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NASH_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 879, - "2015-01-01": 879 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NASH_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NASH_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 305, - "2015-01-01": 305 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_HANOVER_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_HANOVER_COUNTY_NC", - "description": null, - "label": "NEW HANOVER COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_HANOVER_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_HANOVER_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1144, - "2015-01-01": 1144 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_HANOVER_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_HANOVER_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 977, - "2015-01-01": 977 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_HANOVER_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_HANOVER_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 934, - "2015-01-01": 934 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_HANOVER_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_HANOVER_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 349, - "2015-01-01": 349 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHAMPTON_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHAMPTON_COUNTY_NC", - "description": null, - "label": "NORTHAMPTON COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHAMPTON_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHAMPTON_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1130, - "2015-01-01": 1130 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHAMPTON_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHAMPTON_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1071, - "2015-01-01": 1071 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHAMPTON_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHAMPTON_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1017, - "2015-01-01": 1017 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHAMPTON_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHAMPTON_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 325, - "2015-01-01": 325 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONSLOW_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONSLOW_COUNTY_NC", - "description": null, - "label": "ONSLOW COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONSLOW_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONSLOW_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 977, - "2015-01-01": 977 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONSLOW_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONSLOW_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 945, - "2015-01-01": 945 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONSLOW_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONSLOW_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 805, - "2015-01-01": 805 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONSLOW_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONSLOW_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 312, - "2015-01-01": 312 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_NC", - "description": null, - "label": "ORANGE COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1437, - "2015-01-01": 1437 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1300, - "2015-01-01": 1300 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1308, - "2015-01-01": 1308 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 383, - "2015-01-01": 383 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAMLICO_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAMLICO_COUNTY_NC", - "description": null, - "label": "PAMLICO COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAMLICO_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAMLICO_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 738, - "2015-01-01": 738 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAMLICO_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAMLICO_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 693, - "2015-01-01": 693 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAMLICO_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAMLICO_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 672, - "2015-01-01": 672 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAMLICO_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAMLICO_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 224, - "2015-01-01": 224 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PASQUOTANK_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PASQUOTANK_COUNTY_NC", - "description": null, - "label": "PASQUOTANK COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PASQUOTANK_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PASQUOTANK_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 867, - "2015-01-01": 867 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PASQUOTANK_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PASQUOTANK_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 758, - "2015-01-01": 758 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PASQUOTANK_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PASQUOTANK_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 636, - "2015-01-01": 636 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PASQUOTANK_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PASQUOTANK_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 263, - "2015-01-01": 263 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENDER_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENDER_COUNTY_NC", - "description": null, - "label": "PENDER COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENDER_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENDER_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1111, - "2015-01-01": 1111 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENDER_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENDER_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1062, - "2015-01-01": 1062 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENDER_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENDER_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1063, - "2015-01-01": 1063 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENDER_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENDER_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 358, - "2015-01-01": 358 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERQUIMANS_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERQUIMANS_COUNTY_NC", - "description": null, - "label": "PERQUIMANS COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERQUIMANS_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERQUIMANS_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 713, - "2015-01-01": 713 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERQUIMANS_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERQUIMANS_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 671, - "2015-01-01": 671 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERQUIMANS_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERQUIMANS_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 648, - "2015-01-01": 648 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERQUIMANS_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERQUIMANS_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 204, - "2015-01-01": 204 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERSON_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERSON_COUNTY_NC", - "description": null, - "label": "PERSON COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERSON_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERSON_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 767, - "2015-01-01": 767 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERSON_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERSON_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 757, - "2015-01-01": 757 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERSON_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERSON_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 683, - "2015-01-01": 683 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERSON_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERSON_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 316, - "2015-01-01": 316 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PITT_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PITT_COUNTY_NC", - "description": null, - "label": "PITT COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PITT_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PITT_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 977, - "2015-01-01": 977 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PITT_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PITT_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 953, - "2015-01-01": 953 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PITT_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PITT_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 867, - "2015-01-01": 867 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PITT_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PITT_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 320, - "2015-01-01": 320 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_NC", - "description": null, - "label": "POLK COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 817, - "2015-01-01": 817 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 748, - "2015-01-01": 748 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 703, - "2015-01-01": 703 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 232, - "2015-01-01": 232 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_NC", - "description": null, - "label": "RANDOLPH COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 780, - "2015-01-01": 780 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 738, - "2015-01-01": 738 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 697, - "2015-01-01": 697 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 277, - "2015-01-01": 277 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_COUNTY_NC", - "description": null, - "label": "RICHMOND COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 708, - "2015-01-01": 708 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 703, - "2015-01-01": 703 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 707, - "2015-01-01": 707 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 234, - "2015-01-01": 234 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBESON_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBESON_COUNTY_NC", - "description": null, - "label": "ROBESON COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBESON_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBESON_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 975, - "2015-01-01": 975 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBESON_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBESON_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 968, - "2015-01-01": 968 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBESON_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBESON_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 814, - "2015-01-01": 814 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBESON_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBESON_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 403, - "2015-01-01": 403 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKINGHAM_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKINGHAM_COUNTY_NC", - "description": null, - "label": "ROCKINGHAM COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKINGHAM_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKINGHAM_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 722, - "2015-01-01": 722 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKINGHAM_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKINGHAM_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 732, - "2015-01-01": 732 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKINGHAM_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKINGHAM_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 642, - "2015-01-01": 642 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKINGHAM_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKINGHAM_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 232, - "2015-01-01": 232 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROWAN_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROWAN_COUNTY_NC", - "description": null, - "label": "ROWAN COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROWAN_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROWAN_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 858, - "2015-01-01": 858 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROWAN_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROWAN_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 848, - "2015-01-01": 848 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROWAN_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROWAN_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 726, - "2015-01-01": 726 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROWAN_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROWAN_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 285, - "2015-01-01": 285 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUTHERFORD_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUTHERFORD_COUNTY_NC", - "description": null, - "label": "RUTHERFORD COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUTHERFORD_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUTHERFORD_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 867, - "2015-01-01": 867 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUTHERFORD_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUTHERFORD_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 867, - "2015-01-01": 867 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUTHERFORD_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUTHERFORD_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 867, - "2015-01-01": 867 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUTHERFORD_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUTHERFORD_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 239, - "2015-01-01": 239 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAMPSON_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAMPSON_COUNTY_NC", - "description": null, - "label": "SAMPSON COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAMPSON_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAMPSON_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1066, - "2015-01-01": 1066 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAMPSON_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAMPSON_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 816, - "2015-01-01": 816 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAMPSON_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAMPSON_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 694, - "2015-01-01": 694 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAMPSON_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAMPSON_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 230, - "2015-01-01": 230 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTLAND_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTLAND_COUNTY_NC", - "description": null, - "label": "SCOTLAND COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTLAND_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTLAND_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 722, - "2015-01-01": 722 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTLAND_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTLAND_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 629, - "2015-01-01": 629 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTLAND_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTLAND_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 655, - "2015-01-01": 655 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTLAND_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTLAND_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 261, - "2015-01-01": 261 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANLY_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANLY_COUNTY_NC", - "description": null, - "label": "STANLY COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANLY_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANLY_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 856, - "2015-01-01": 856 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANLY_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANLY_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 802, - "2015-01-01": 802 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANLY_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANLY_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 780, - "2015-01-01": 780 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANLY_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANLY_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 277, - "2015-01-01": 277 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STOKES_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STOKES_COUNTY_NC", - "description": null, - "label": "STOKES COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STOKES_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STOKES_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1083, - "2015-01-01": 1083 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STOKES_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STOKES_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 975, - "2015-01-01": 975 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STOKES_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STOKES_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 997, - "2015-01-01": 997 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STOKES_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STOKES_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 294, - "2015-01-01": 294 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SURRY_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SURRY_COUNTY_NC", - "description": null, - "label": "SURRY COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SURRY_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SURRY_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 934, - "2015-01-01": 934 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SURRY_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SURRY_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 787, - "2015-01-01": 787 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SURRY_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SURRY_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 829, - "2015-01-01": 829 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SURRY_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SURRY_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 291, - "2015-01-01": 291 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWAIN_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWAIN_COUNTY_NC", - "description": null, - "label": "SWAIN COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWAIN_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWAIN_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 867, - "2015-01-01": 867 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWAIN_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWAIN_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 867, - "2015-01-01": 867 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWAIN_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWAIN_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 867, - "2015-01-01": 867 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWAIN_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWAIN_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 215, - "2015-01-01": 215 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRANSYLVANIA_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRANSYLVANIA_COUNTY_NC", - "description": null, - "label": "TRANSYLVANIA COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRANSYLVANIA_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRANSYLVANIA_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1146, - "2015-01-01": 1146 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRANSYLVANIA_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRANSYLVANIA_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1024, - "2015-01-01": 1024 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRANSYLVANIA_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRANSYLVANIA_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 950, - "2015-01-01": 950 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRANSYLVANIA_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRANSYLVANIA_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 245, - "2015-01-01": 245 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TYRRELL_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TYRRELL_COUNTY_NC", - "description": null, - "label": "TYRRELL COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TYRRELL_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TYRRELL_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1125, - "2015-01-01": 1125 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TYRRELL_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TYRRELL_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1046, - "2015-01-01": 1046 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TYRRELL_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TYRRELL_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1012, - "2015-01-01": 1012 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TYRRELL_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TYRRELL_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 308, - "2015-01-01": 308 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_NC", - "description": null, - "label": "UNION COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1304, - "2015-01-01": 1304 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1289, - "2015-01-01": 1289 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1198, - "2015-01-01": 1198 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 365, - "2015-01-01": 365 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VANCE_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VANCE_COUNTY_NC", - "description": null, - "label": "VANCE COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VANCE_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VANCE_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 867, - "2015-01-01": 867 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VANCE_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VANCE_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1175, - "2015-01-01": 1175 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VANCE_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VANCE_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1205, - "2015-01-01": 1205 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VANCE_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VANCE_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 312, - "2015-01-01": 312 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAKE_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAKE_COUNTY_NC", - "description": null, - "label": "WAKE COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAKE_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAKE_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1525, - "2015-01-01": 1525 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAKE_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAKE_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1343, - "2015-01-01": 1343 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAKE_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAKE_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1256, - "2015-01-01": 1256 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAKE_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAKE_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 455, - "2015-01-01": 455 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_NC", - "description": null, - "label": "WARREN COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 944, - "2015-01-01": 944 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 886, - "2015-01-01": 886 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 872, - "2015-01-01": 872 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 257, - "2015-01-01": 257 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_NC", - "description": null, - "label": "WASHINGTON COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 839, - "2015-01-01": 839 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 771, - "2015-01-01": 771 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1191, - "2015-01-01": 1191 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 240, - "2015-01-01": 240 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WATAUGA_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WATAUGA_COUNTY_NC", - "description": null, - "label": "WATAUGA COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WATAUGA_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WATAUGA_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 802, - "2015-01-01": 802 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WATAUGA_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WATAUGA_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 787, - "2015-01-01": 787 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WATAUGA_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WATAUGA_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 731, - "2015-01-01": 731 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WATAUGA_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WATAUGA_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 301, - "2015-01-01": 301 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_NC", - "description": null, - "label": "WAYNE COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 887, - "2015-01-01": 887 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 774, - "2015-01-01": 774 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 758, - "2015-01-01": 758 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 312, - "2015-01-01": 312 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKES_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKES_COUNTY_NC", - "description": null, - "label": "WILKES COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKES_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKES_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 939, - "2015-01-01": 939 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKES_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKES_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 914, - "2015-01-01": 914 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKES_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKES_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 870, - "2015-01-01": 870 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKES_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKES_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 301, - "2015-01-01": 301 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILSON_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILSON_COUNTY_NC", - "description": null, - "label": "WILSON COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILSON_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILSON_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 794, - "2015-01-01": 794 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILSON_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILSON_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 732, - "2015-01-01": 732 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILSON_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILSON_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 745, - "2015-01-01": 745 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILSON_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILSON_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 257, - "2015-01-01": 257 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YADKIN_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YADKIN_COUNTY_NC", - "description": null, - "label": "YADKIN COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YADKIN_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YADKIN_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 769, - "2015-01-01": 769 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YADKIN_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YADKIN_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 683, - "2015-01-01": 683 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YADKIN_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YADKIN_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 744, - "2015-01-01": 744 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YADKIN_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YADKIN_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 202, - "2015-01-01": 202 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YANCEY_COUNTY_NC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YANCEY_COUNTY_NC", - "description": null, - "label": "YANCEY COUNTY NC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YANCEY_COUNTY_NC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YANCEY_COUNTY_NC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 736, - "2015-01-01": 736 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YANCEY_COUNTY_NC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YANCEY_COUNTY_NC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 641, - "2015-01-01": 641 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YANCEY_COUNTY_NC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YANCEY_COUNTY_NC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 631, - "2015-01-01": 631 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YANCEY_COUNTY_NC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YANCEY_COUNTY_NC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 203, - "2015-01-01": 203 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_NE", - "description": null, - "label": "YORK COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_KY", - "description": null, - "label": "LAWRENCE COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELMORE_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELMORE_COUNTY_AL", - "description": null, - "label": "ELMORE COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELMORE_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELMORE_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELMORE_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELMORE_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELMORE_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELMORE_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELMORE_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELMORE_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_KY", - "description": null, - "label": "MARION COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEAGHER_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEAGHER_COUNTY_MT", - "description": null, - "label": "MEAGHER COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEAGHER_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEAGHER_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEAGHER_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEAGHER_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEAGHER_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEAGHER_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEAGHER_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEAGHER_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.THOMAS_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.THOMAS_COUNTY_NE", - "description": null, - "label": "THOMAS COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.THOMAS_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.THOMAS_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.THOMAS_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.THOMAS_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.THOMAS_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.THOMAS_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.THOMAS_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.THOMAS_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_GA", - "description": null, - "label": "PUTNAM COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ETOWAH_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ETOWAH_COUNTY_AL", - "description": null, - "label": "ETOWAH COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ETOWAH_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ETOWAH_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ETOWAH_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ETOWAH_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ETOWAH_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ETOWAH_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ETOWAH_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ETOWAH_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTLAND_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTLAND_COUNTY_MO", - "description": null, - "label": "SCOTLAND COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTLAND_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTLAND_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTLAND_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTLAND_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTLAND_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTLAND_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTLAND_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTLAND_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTAWA_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTAWA_COUNTY_MI", - "description": null, - "label": "OTTAWA COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTAWA_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTAWA_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTAWA_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTAWA_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTAWA_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTAWA_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTAWA_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTAWA_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IDA_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IDA_COUNTY_IA", - "description": null, - "label": "IDA COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IDA_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IDA_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IDA_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IDA_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IDA_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IDA_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IDA_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IDA_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_PA", - "description": null, - "label": "WAYNE COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAWNEE_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAWNEE_COUNTY_OK", - "description": null, - "label": "PAWNEE COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAWNEE_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAWNEE_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAWNEE_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAWNEE_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAWNEE_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAWNEE_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAWNEE_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAWNEE_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COROZAL_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COROZAL_MUNICIPIO_PR", - "description": null, - "label": "COROZAL MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COROZAL_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COROZAL_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COROZAL_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COROZAL_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COROZAL_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COROZAL_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COROZAL_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COROZAL_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIBERTY_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIBERTY_COUNTY_MT", - "description": null, - "label": "LIBERTY COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIBERTY_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIBERTY_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIBERTY_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIBERTY_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIBERTY_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIBERTY_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIBERTY_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIBERTY_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_MO", - "description": null, - "label": "WAYNE COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IBERVILLE_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IBERVILLE_PARISH_LA", - "description": null, - "label": "IBERVILLE PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IBERVILLE_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IBERVILLE_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IBERVILLE_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IBERVILLE_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IBERVILLE_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IBERVILLE_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IBERVILLE_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IBERVILLE_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CULBERSON_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CULBERSON_COUNTY_TX", - "description": null, - "label": "CULBERSON COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CULBERSON_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CULBERSON_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CULBERSON_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CULBERSON_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CULBERSON_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CULBERSON_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CULBERSON_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CULBERSON_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEIGS_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEIGS_COUNTY_OH", - "description": null, - "label": "MEIGS COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEIGS_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEIGS_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEIGS_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEIGS_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEIGS_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEIGS_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEIGS_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEIGS_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIO_ARRIBA_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIO_ARRIBA_COUNTY_CO", - "description": null, - "label": "RIO ARRIBA COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIO_ARRIBA_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIO_ARRIBA_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIO_ARRIBA_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIO_ARRIBA_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIO_ARRIBA_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIO_ARRIBA_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIO_ARRIBA_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIO_ARRIBA_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DORCHESTER_COUNTY_MD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DORCHESTER_COUNTY_MD", - "description": null, - "label": "DORCHESTER COUNTY MD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DORCHESTER_COUNTY_MD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DORCHESTER_COUNTY_MD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DORCHESTER_COUNTY_MD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DORCHESTER_COUNTY_MD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DORCHESTER_COUNTY_MD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DORCHESTER_COUNTY_MD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DORCHESTER_COUNTY_MD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DORCHESTER_COUNTY_MD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALDO_COUNTY_ME": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALDO_COUNTY_ME", - "description": null, - "label": "WALDO COUNTY ME", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALDO_COUNTY_ME.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALDO_COUNTY_ME.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALDO_COUNTY_ME.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALDO_COUNTY_ME.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALDO_COUNTY_ME.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALDO_COUNTY_ME.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALDO_COUNTY_ME.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALDO_COUNTY_ME.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JO_DAVIESS_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JO_DAVIESS_COUNTY_IL", - "description": null, - "label": "JO DAVIESS COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JO_DAVIESS_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JO_DAVIESS_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JO_DAVIESS_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JO_DAVIESS_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JO_DAVIESS_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JO_DAVIESS_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JO_DAVIESS_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JO_DAVIESS_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NESS_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NESS_COUNTY_KS", - "description": null, - "label": "NESS COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NESS_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NESS_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NESS_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NESS_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NESS_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NESS_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NESS_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NESS_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LACLEDE_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LACLEDE_COUNTY_MO", - "description": null, - "label": "LACLEDE COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LACLEDE_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LACLEDE_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LACLEDE_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LACLEDE_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LACLEDE_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LACLEDE_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LACLEDE_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LACLEDE_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLIVER_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLIVER_COUNTY_ND", - "description": null, - "label": "OLIVER COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLIVER_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLIVER_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLIVER_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLIVER_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLIVER_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLIVER_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLIVER_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLIVER_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_NY", - "description": null, - "label": "WAYNE COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENUP_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENUP_COUNTY_KY", - "description": null, - "label": "GREENUP COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENUP_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENUP_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENUP_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENUP_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENUP_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENUP_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENUP_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENUP_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOWNDES_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOWNDES_COUNTY_GA", - "description": null, - "label": "LOWNDES COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOWNDES_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOWNDES_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOWNDES_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOWNDES_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOWNDES_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOWNDES_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOWNDES_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOWNDES_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_KY", - "description": null, - "label": "HENRY COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADERA_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADERA_COUNTY_CA", - "description": null, - "label": "MADERA COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADERA_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADERA_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADERA_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADERA_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADERA_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADERA_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADERA_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADERA_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_WA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_WA", - "description": null, - "label": "GARFIELD COUNTY WA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_WA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_WA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_WA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_WA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_WA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_WA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_WA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_WA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIBERTY_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIBERTY_COUNTY_FL", - "description": null, - "label": "LIBERTY COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIBERTY_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIBERTY_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIBERTY_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIBERTY_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIBERTY_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIBERTY_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIBERTY_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIBERTY_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_SC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_SC", - "description": null, - "label": "ANDERSON COUNTY SC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_SC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_SC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_SC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_SC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_SC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_SC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_SC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_SC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANSOM_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANSOM_COUNTY_ND", - "description": null, - "label": "RANSOM COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANSOM_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANSOM_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANSOM_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANSOM_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANSOM_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANSOM_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANSOM_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANSOM_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELL_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELL_COUNTY_KY", - "description": null, - "label": "BELL COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELL_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELL_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELL_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELL_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELL_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELL_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELL_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELL_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_GA", - "description": null, - "label": "CLARKE COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLIS_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLIS_COUNTY_KS", - "description": null, - "label": "ELLIS COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLIS_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLIS_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLIS_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLIS_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLIS_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLIS_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLIS_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLIS_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_AR", - "description": null, - "label": "POLK COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIANA_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIANA_COUNTY_OH", - "description": null, - "label": "COLUMBIANA COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIANA_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIANA_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIANA_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIANA_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIANA_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIANA_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIANA_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIANA_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_TN", - "description": null, - "label": "HENDERSON COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTSON_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTSON_COUNTY_TX", - "description": null, - "label": "ROBERTSON COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTSON_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTSON_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTSON_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTSON_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTSON_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTSON_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTSON_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTSON_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_AL", - "description": null, - "label": "JEFFERSON COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TWIGGS_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TWIGGS_COUNTY_GA", - "description": null, - "label": "TWIGGS COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TWIGGS_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TWIGGS_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TWIGGS_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TWIGGS_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TWIGGS_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TWIGGS_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TWIGGS_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TWIGGS_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIENVILLE_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIENVILLE_PARISH_LA", - "description": null, - "label": "BIENVILLE PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIENVILLE_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIENVILLE_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIENVILLE_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIENVILLE_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIENVILLE_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIENVILLE_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIENVILLE_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIENVILLE_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTSEGO_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTSEGO_COUNTY_MI", - "description": null, - "label": "OTSEGO COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTSEGO_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTSEGO_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTSEGO_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTSEGO_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTSEGO_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTSEGO_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTSEGO_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTSEGO_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_PA", - "description": null, - "label": "CRAWFORD COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_WI", - "description": null, - "label": "LINCOLN COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLMSTED_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLMSTED_COUNTY_MN", - "description": null, - "label": "OLMSTED COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLMSTED_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLMSTED_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLMSTED_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLMSTED_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLMSTED_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLMSTED_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLMSTED_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLMSTED_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALEM_COUNTY_NJ": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALEM_COUNTY_NJ", - "description": null, - "label": "SALEM COUNTY NJ", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALEM_COUNTY_NJ.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALEM_COUNTY_NJ.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALEM_COUNTY_NJ.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALEM_COUNTY_NJ.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALEM_COUNTY_NJ.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALEM_COUNTY_NJ.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALEM_COUNTY_NJ.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALEM_COUNTY_NJ.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLTON_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLTON_COUNTY_GA", - "description": null, - "label": "CHARLTON COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLTON_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLTON_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLTON_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLTON_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLTON_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLTON_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLTON_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLTON_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINN_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINN_PARISH_LA", - "description": null, - "label": "WINN PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINN_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINN_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINN_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINN_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINN_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINN_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINN_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINN_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FINNEY_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FINNEY_COUNTY_KS", - "description": null, - "label": "FINNEY COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FINNEY_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FINNEY_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FINNEY_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FINNEY_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FINNEY_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FINNEY_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FINNEY_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FINNEY_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PORTAGE_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PORTAGE_COUNTY_WI", - "description": null, - "label": "PORTAGE COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PORTAGE_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PORTAGE_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PORTAGE_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PORTAGE_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PORTAGE_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PORTAGE_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PORTAGE_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PORTAGE_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINONA_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINONA_COUNTY_MN", - "description": null, - "label": "WINONA COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINONA_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINONA_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINONA_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINONA_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINONA_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINONA_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINONA_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINONA_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_MO", - "description": null, - "label": "BENTON COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_NV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_NV", - "description": null, - "label": "LINCOLN COUNTY NV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_NV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_NV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_NV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_NV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_NV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_NV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_NV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_NV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALL_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALL_COUNTY_TX", - "description": null, - "label": "HALL COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALL_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALL_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALL_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALL_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALL_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALL_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALL_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALL_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNESBORO_CITY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNESBORO_CITY_VA", - "description": null, - "label": "WAYNESBORO CITY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNESBORO_CITY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNESBORO_CITY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNESBORO_CITY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNESBORO_CITY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNESBORO_CITY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNESBORO_CITY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNESBORO_CITY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNESBORO_CITY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_AR", - "description": null, - "label": "CRAWFORD COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AMADOR_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AMADOR_COUNTY_CA", - "description": null, - "label": "AMADOR COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AMADOR_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AMADOR_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AMADOR_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AMADOR_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AMADOR_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AMADOR_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AMADOR_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AMADOR_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_MO", - "description": null, - "label": "HARRISON COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIGHLAND_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIGHLAND_COUNTY_VA", - "description": null, - "label": "HIGHLAND COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIGHLAND_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIGHLAND_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIGHLAND_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIGHLAND_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIGHLAND_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIGHLAND_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIGHLAND_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIGHLAND_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_OR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_OR", - "description": null, - "label": "SHERMAN COUNTY OR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_OR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_OR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_OR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_OR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_OR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_OR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_OR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_OR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_GA", - "description": null, - "label": "LINCOLN COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHAKIE_COUNTY_WY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHAKIE_COUNTY_WY", - "description": null, - "label": "WASHAKIE COUNTY WY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHAKIE_COUNTY_WY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHAKIE_COUNTY_WY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHAKIE_COUNTY_WY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHAKIE_COUNTY_WY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHAKIE_COUNTY_WY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHAKIE_COUNTY_WY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHAKIE_COUNTY_WY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHAKIE_COUNTY_WY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_AR", - "description": null, - "label": "LOGAN COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_FL", - "description": null, - "label": "HAMILTON COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KERSHAW_COUNTY_SC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KERSHAW_COUNTY_SC", - "description": null, - "label": "KERSHAW COUNTY SC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KERSHAW_COUNTY_SC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KERSHAW_COUNTY_SC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KERSHAW_COUNTY_SC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KERSHAW_COUNTY_SC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KERSHAW_COUNTY_SC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KERSHAW_COUNTY_SC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KERSHAW_COUNTY_SC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KERSHAW_COUNTY_SC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GIBSON_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GIBSON_COUNTY_TN", - "description": null, - "label": "GIBSON COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GIBSON_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GIBSON_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GIBSON_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GIBSON_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GIBSON_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GIBSON_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GIBSON_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GIBSON_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORTON_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORTON_COUNTY_ND", - "description": null, - "label": "MORTON COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORTON_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORTON_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORTON_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORTON_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORTON_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORTON_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORTON_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORTON_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCEANA_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCEANA_COUNTY_MI", - "description": null, - "label": "OCEANA COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCEANA_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCEANA_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCEANA_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCEANA_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCEANA_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCEANA_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCEANA_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCEANA_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEXINGTON_COUNTY_SC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEXINGTON_COUNTY_SC", - "description": null, - "label": "LEXINGTON COUNTY SC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEXINGTON_COUNTY_SC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEXINGTON_COUNTY_SC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEXINGTON_COUNTY_SC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEXINGTON_COUNTY_SC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEXINGTON_COUNTY_SC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEXINGTON_COUNTY_SC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEXINGTON_COUNTY_SC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEXINGTON_COUNTY_SC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOUNTAIN_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOUNTAIN_COUNTY_IN", - "description": null, - "label": "FOUNTAIN COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOUNTAIN_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOUNTAIN_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOUNTAIN_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOUNTAIN_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOUNTAIN_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOUNTAIN_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOUNTAIN_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOUNTAIN_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VALENCIA_COUNTY_NM": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VALENCIA_COUNTY_NM", - "description": null, - "label": "VALENCIA COUNTY NM", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VALENCIA_COUNTY_NM.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VALENCIA_COUNTY_NM.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VALENCIA_COUNTY_NM.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VALENCIA_COUNTY_NM.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VALENCIA_COUNTY_NM.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VALENCIA_COUNTY_NM.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VALENCIA_COUNTY_NM.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VALENCIA_COUNTY_NM.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_VA", - "description": null, - "label": "MONTGOMERY COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOODING_COUNTY_ID": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOODING_COUNTY_ID", - "description": null, - "label": "GOODING COUNTY ID", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOODING_COUNTY_ID.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOODING_COUNTY_ID.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOODING_COUNTY_ID.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOODING_COUNTY_ID.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOODING_COUNTY_ID.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOODING_COUNTY_ID.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOODING_COUNTY_ID.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOODING_COUNTY_ID.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMB_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMB_COUNTY_TX", - "description": null, - "label": "LAMB COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMB_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMB_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMB_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMB_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMB_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMB_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMB_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMB_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUGHES_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUGHES_COUNTY_SD", - "description": null, - "label": "HUGHES COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUGHES_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUGHES_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUGHES_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUGHES_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUGHES_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUGHES_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUGHES_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUGHES_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_OR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_OR", - "description": null, - "label": "JACKSON COUNTY OR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_OR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_OR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_OR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_OR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_OR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_OR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_OR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_OR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAPPAHANNOCK_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAPPAHANNOCK_COUNTY_VA", - "description": null, - "label": "RAPPAHANNOCK COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAPPAHANNOCK_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAPPAHANNOCK_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAPPAHANNOCK_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAPPAHANNOCK_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAPPAHANNOCK_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAPPAHANNOCK_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAPPAHANNOCK_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAPPAHANNOCK_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMIT_COUNTY_WY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMIT_COUNTY_WY", - "description": null, - "label": "SUMMIT COUNTY WY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMIT_COUNTY_WY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMIT_COUNTY_WY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMIT_COUNTY_WY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMIT_COUNTY_WY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMIT_COUNTY_WY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMIT_COUNTY_WY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMIT_COUNTY_WY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMIT_COUNTY_WY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCHENRY_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCHENRY_COUNTY_IL", - "description": null, - "label": "MCHENRY COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCHENRY_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCHENRY_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCHENRY_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCHENRY_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCHENRY_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCHENRY_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCHENRY_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCHENRY_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOWNER_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOWNER_COUNTY_ND", - "description": null, - "label": "TOWNER COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOWNER_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOWNER_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOWNER_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOWNER_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOWNER_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOWNER_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOWNER_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOWNER_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAIBORNE_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAIBORNE_PARISH_LA", - "description": null, - "label": "CLAIBORNE PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAIBORNE_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAIBORNE_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAIBORNE_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAIBORNE_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAIBORNE_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAIBORNE_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAIBORNE_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAIBORNE_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_NY", - "description": null, - "label": "LIVINGSTON COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_AR", - "description": null, - "label": "FULTON COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HART_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HART_COUNTY_GA", - "description": null, - "label": "HART COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HART_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HART_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HART_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HART_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HART_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HART_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HART_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HART_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUTCHINSON_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUTCHINSON_COUNTY_SD", - "description": null, - "label": "HUTCHINSON COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUTCHINSON_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUTCHINSON_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUTCHINSON_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUTCHINSON_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUTCHINSON_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUTCHINSON_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUTCHINSON_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUTCHINSON_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANGLADE_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANGLADE_COUNTY_WI", - "description": null, - "label": "LANGLADE COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANGLADE_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANGLADE_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANGLADE_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANGLADE_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANGLADE_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANGLADE_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANGLADE_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANGLADE_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_GA", - "description": null, - "label": "FLOYD COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGEMAW_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGEMAW_COUNTY_MI", - "description": null, - "label": "OGEMAW COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGEMAW_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGEMAW_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGEMAW_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGEMAW_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGEMAW_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGEMAW_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGEMAW_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGEMAW_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROOSEVELT_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROOSEVELT_COUNTY_MT", - "description": null, - "label": "ROOSEVELT COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROOSEVELT_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROOSEVELT_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROOSEVELT_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROOSEVELT_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROOSEVELT_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROOSEVELT_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROOSEVELT_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROOSEVELT_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUNTERDON_COUNTY_NJ": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUNTERDON_COUNTY_NJ", - "description": null, - "label": "HUNTERDON COUNTY NJ", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUNTERDON_COUNTY_NJ.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUNTERDON_COUNTY_NJ.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUNTERDON_COUNTY_NJ.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUNTERDON_COUNTY_NJ.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUNTERDON_COUNTY_NJ.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUNTERDON_COUNTY_NJ.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUNTERDON_COUNTY_NJ.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUNTERDON_COUNTY_NJ.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATAHOULA_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATAHOULA_PARISH_LA", - "description": null, - "label": "CATAHOULA PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATAHOULA_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATAHOULA_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATAHOULA_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATAHOULA_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATAHOULA_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATAHOULA_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATAHOULA_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATAHOULA_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLORENCE_COUNTY_SC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLORENCE_COUNTY_SC", - "description": null, - "label": "FLORENCE COUNTY SC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLORENCE_COUNTY_SC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLORENCE_COUNTY_SC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLORENCE_COUNTY_SC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLORENCE_COUNTY_SC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLORENCE_COUNTY_SC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLORENCE_COUNTY_SC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLORENCE_COUNTY_SC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLORENCE_COUNTY_SC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_GA", - "description": null, - "label": "PIKE COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_GA", - "description": null, - "label": "CARROLL COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STRAFFORD_COUNTY_NH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STRAFFORD_COUNTY_NH", - "description": null, - "label": "STRAFFORD COUNTY NH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STRAFFORD_COUNTY_NH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STRAFFORD_COUNTY_NH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STRAFFORD_COUNTY_NH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STRAFFORD_COUNTY_NH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STRAFFORD_COUNTY_NH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STRAFFORD_COUNTY_NH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STRAFFORD_COUNTY_NH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STRAFFORD_COUNTY_NH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFF_DAVIS_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFF_DAVIS_COUNTY_TX", - "description": null, - "label": "JEFF DAVIS COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFF_DAVIS_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFF_DAVIS_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFF_DAVIS_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFF_DAVIS_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFF_DAVIS_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFF_DAVIS_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFF_DAVIS_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFF_DAVIS_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTAWA_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTAWA_COUNTY_KS", - "description": null, - "label": "OTTAWA COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTAWA_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTAWA_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTAWA_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTAWA_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTAWA_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTAWA_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTAWA_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTAWA_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILLIPS_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILLIPS_COUNTY_AR", - "description": null, - "label": "PHILLIPS COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILLIPS_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILLIPS_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILLIPS_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILLIPS_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILLIPS_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILLIPS_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILLIPS_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILLIPS_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROANE_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROANE_COUNTY_TN", - "description": null, - "label": "ROANE COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROANE_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROANE_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROANE_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROANE_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROANE_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROANE_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROANE_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROANE_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANBORN_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANBORN_COUNTY_SD", - "description": null, - "label": "SANBORN COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANBORN_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANBORN_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANBORN_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANBORN_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANBORN_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANBORN_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANBORN_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANBORN_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWEETWATER_COUNTY_WY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWEETWATER_COUNTY_WY", - "description": null, - "label": "SWEETWATER COUNTY WY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWEETWATER_COUNTY_WY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWEETWATER_COUNTY_WY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWEETWATER_COUNTY_WY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWEETWATER_COUNTY_WY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWEETWATER_COUNTY_WY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWEETWATER_COUNTY_WY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWEETWATER_COUNTY_WY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWEETWATER_COUNTY_WY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINNEBAGO_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINNEBAGO_COUNTY_IA", - "description": null, - "label": "WINNEBAGO COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINNEBAGO_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINNEBAGO_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINNEBAGO_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINNEBAGO_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINNEBAGO_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINNEBAGO_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINNEBAGO_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINNEBAGO_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTEZUMA_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTEZUMA_COUNTY_CO", - "description": null, - "label": "MONTEZUMA COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTEZUMA_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTEZUMA_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTEZUMA_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTEZUMA_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTEZUMA_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTEZUMA_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTEZUMA_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTEZUMA_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFIELD_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFIELD_COUNTY_OH", - "description": null, - "label": "FAIRFIELD COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFIELD_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFIELD_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFIELD_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFIELD_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFIELD_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFIELD_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFIELD_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFIELD_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_TN", - "description": null, - "label": "LEWIS COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POINTE_COUPEE_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POINTE_COUPEE_PARISH_LA", - "description": null, - "label": "POINTE COUPEE PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POINTE_COUPEE_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POINTE_COUPEE_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POINTE_COUPEE_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POINTE_COUPEE_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POINTE_COUPEE_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POINTE_COUPEE_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POINTE_COUPEE_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POINTE_COUPEE_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_OR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_OR", - "description": null, - "label": "COLUMBIA COUNTY OR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_OR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_OR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_OR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_OR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_OR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_OR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_OR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_OR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOÍZA_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOÍZA_MUNICIPIO_PR", - "description": null, - "label": "LOÍZA MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOÍZA_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOÍZA_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOÍZA_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOÍZA_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOÍZA_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOÍZA_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOÍZA_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOÍZA_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_GEORGE_S_COUNTY_MD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_GEORGE_S_COUNTY_MD", - "description": null, - "label": "PRINCE GEORGE S COUNTY MD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_GEORGE_S_COUNTY_MD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_GEORGE_S_COUNTY_MD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_GEORGE_S_COUNTY_MD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_GEORGE_S_COUNTY_MD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_GEORGE_S_COUNTY_MD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_GEORGE_S_COUNTY_MD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_GEORGE_S_COUNTY_MD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_GEORGE_S_COUNTY_MD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_IA", - "description": null, - "label": "ADAMS COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_GA", - "description": null, - "label": "DEKALB COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAUPACA_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAUPACA_COUNTY_WI", - "description": null, - "label": "WAUPACA COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAUPACA_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAUPACA_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAUPACA_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAUPACA_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAUPACA_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAUPACA_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAUPACA_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAUPACA_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMANUEL_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMANUEL_COUNTY_GA", - "description": null, - "label": "EMANUEL COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMANUEL_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMANUEL_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMANUEL_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMANUEL_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMANUEL_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMANUEL_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMANUEL_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMANUEL_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TERRELL_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TERRELL_COUNTY_TX", - "description": null, - "label": "TERRELL COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TERRELL_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TERRELL_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TERRELL_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TERRELL_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TERRELL_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TERRELL_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TERRELL_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TERRELL_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_ND", - "description": null, - "label": "MERCER COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTER_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTER_COUNTY_SD", - "description": null, - "label": "POTTER COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTER_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTER_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTER_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTER_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTER_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTER_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTER_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTER_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODBURY_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODBURY_COUNTY_IA", - "description": null, - "label": "WOODBURY COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODBURY_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODBURY_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODBURY_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODBURY_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODBURY_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODBURY_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODBURY_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODBURY_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRAVIS_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRAVIS_COUNTY_TX", - "description": null, - "label": "TRAVIS COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRAVIS_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRAVIS_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRAVIS_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRAVIS_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRAVIS_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRAVIS_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRAVIS_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRAVIS_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAY_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAY_COUNTY_MO", - "description": null, - "label": "RAY COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAY_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAY_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAY_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAY_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAY_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAY_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAY_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAY_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARSON_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARSON_COUNTY_TX", - "description": null, - "label": "CARSON COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARSON_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARSON_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARSON_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARSON_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARSON_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARSON_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARSON_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARSON_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOK_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOK_COUNTY_MN", - "description": null, - "label": "COOK COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOK_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOK_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOK_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOK_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOK_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOK_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOK_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOK_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_MO", - "description": null, - "label": "MONROE COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_MO", - "description": null, - "label": "CLINTON COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OXFORD_COUNTY_ME": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OXFORD_COUNTY_ME", - "description": null, - "label": "OXFORD COUNTY ME", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OXFORD_COUNTY_ME.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OXFORD_COUNTY_ME.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OXFORD_COUNTY_ME.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OXFORD_COUNTY_ME.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OXFORD_COUNTY_ME.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OXFORD_COUNTY_ME.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OXFORD_COUNTY_ME.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OXFORD_COUNTY_ME.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_AR", - "description": null, - "label": "CLARK COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LASALLE_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LASALLE_PARISH_LA", - "description": null, - "label": "LASALLE PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LASALLE_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LASALLE_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LASALLE_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LASALLE_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LASALLE_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LASALLE_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LASALLE_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LASALLE_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_WI", - "description": null, - "label": "CLARK COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALFALFA_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALFALFA_COUNTY_OK", - "description": null, - "label": "ALFALFA COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALFALFA_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALFALFA_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALFALFA_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALFALFA_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALFALFA_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALFALFA_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALFALFA_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALFALFA_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_KY", - "description": null, - "label": "JEFFERSON COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_MS", - "description": null, - "label": "JACKSON COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JOAQUIN_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JOAQUIN_COUNTY_CA", - "description": null, - "label": "SAN JOAQUIN COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JOAQUIN_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JOAQUIN_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JOAQUIN_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JOAQUIN_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JOAQUIN_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JOAQUIN_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JOAQUIN_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JOAQUIN_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHASE_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHASE_COUNTY_NE", - "description": null, - "label": "CHASE COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHASE_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHASE_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHASE_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHASE_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHASE_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHASE_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHASE_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHASE_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREMONT_COUNTY_ID": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREMONT_COUNTY_ID", - "description": null, - "label": "FREMONT COUNTY ID", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREMONT_COUNTY_ID.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREMONT_COUNTY_ID.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREMONT_COUNTY_ID.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREMONT_COUNTY_ID.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREMONT_COUNTY_ID.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREMONT_COUNTY_ID.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREMONT_COUNTY_ID.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREMONT_COUNTY_ID.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRIS_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRIS_COUNTY_GA", - "description": null, - "label": "HARRIS COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRIS_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRIS_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRIS_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRIS_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRIS_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRIS_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRIS_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRIS_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_TN", - "description": null, - "label": "ANDERSON COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_GA", - "description": null, - "label": "NEWTON COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_WY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_WY", - "description": null, - "label": "CUSTER COUNTY WY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_WY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_WY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_WY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_WY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_WY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_WY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_WY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_WY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DENT_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DENT_COUNTY_MO", - "description": null, - "label": "DENT COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DENT_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DENT_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DENT_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DENT_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DENT_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DENT_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DENT_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DENT_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHENANGO_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHENANGO_COUNTY_NY", - "description": null, - "label": "CHENANGO COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHENANGO_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHENANGO_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHENANGO_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHENANGO_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHENANGO_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHENANGO_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHENANGO_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHENANGO_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARCELONETA_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARCELONETA_MUNICIPIO_PR", - "description": null, - "label": "BARCELONETA MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARCELONETA_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARCELONETA_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARCELONETA_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARCELONETA_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARCELONETA_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARCELONETA_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARCELONETA_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARCELONETA_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAROLINA_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAROLINA_MUNICIPIO_PR", - "description": null, - "label": "CAROLINA MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAROLINA_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAROLINA_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAROLINA_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAROLINA_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAROLINA_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAROLINA_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAROLINA_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAROLINA_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_CRUZ_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_CRUZ_COUNTY_CA", - "description": null, - "label": "SANTA CRUZ COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_CRUZ_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_CRUZ_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_CRUZ_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_CRUZ_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_CRUZ_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_CRUZ_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_CRUZ_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_CRUZ_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANSFORD_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANSFORD_COUNTY_TX", - "description": null, - "label": "HANSFORD COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANSFORD_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANSFORD_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANSFORD_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANSFORD_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANSFORD_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANSFORD_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANSFORD_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANSFORD_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DADE_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DADE_COUNTY_MO", - "description": null, - "label": "DADE COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DADE_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DADE_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DADE_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DADE_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DADE_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DADE_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DADE_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DADE_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_MO", - "description": null, - "label": "DEKALB COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_WILLIAM_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_WILLIAM_COUNTY_VA", - "description": null, - "label": "KING WILLIAM COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_WILLIAM_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_WILLIAM_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_WILLIAM_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_WILLIAM_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_WILLIAM_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_WILLIAM_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_WILLIAM_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_WILLIAM_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_FRANCISCO_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_FRANCISCO_COUNTY_CA", - "description": null, - "label": "SAN FRANCISCO COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_FRANCISCO_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_FRANCISCO_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_FRANCISCO_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_FRANCISCO_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_FRANCISCO_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_FRANCISCO_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_FRANCISCO_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_FRANCISCO_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_TN", - "description": null, - "label": "FRANKLIN COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPTON_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPTON_COUNTY_TN", - "description": null, - "label": "TIPTON COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPTON_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPTON_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPTON_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPTON_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPTON_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPTON_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPTON_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPTON_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_IL", - "description": null, - "label": "HAMILTON COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOT_SPRING_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOT_SPRING_COUNTY_AR", - "description": null, - "label": "HOT SPRING COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOT_SPRING_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOT_SPRING_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOT_SPRING_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOT_SPRING_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOT_SPRING_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOT_SPRING_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOT_SPRING_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOT_SPRING_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUTCHESS_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUTCHESS_COUNTY_NY", - "description": null, - "label": "DUTCHESS COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUTCHESS_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUTCHESS_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUTCHESS_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUTCHESS_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUTCHESS_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUTCHESS_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUTCHESS_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUTCHESS_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_PARISH_LA", - "description": null, - "label": "MADISON PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARRETT_COUNTY_MD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARRETT_COUNTY_MD", - "description": null, - "label": "GARRETT COUNTY MD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARRETT_COUNTY_MD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARRETT_COUNTY_MD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARRETT_COUNTY_MD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARRETT_COUNTY_MD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARRETT_COUNTY_MD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARRETT_COUNTY_MD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARRETT_COUNTY_MD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARRETT_COUNTY_MD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_ND", - "description": null, - "label": "ADAMS COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEPHENS_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEPHENS_COUNTY_TX", - "description": null, - "label": "STEPHENS COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEPHENS_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEPHENS_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEPHENS_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEPHENS_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEPHENS_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEPHENS_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEPHENS_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEPHENS_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLER_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLER_COUNTY_MO", - "description": null, - "label": "MILLER COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLER_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLER_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLER_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLER_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLER_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLER_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLER_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLER_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_VT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_VT", - "description": null, - "label": "WASHINGTON COUNTY VT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_VT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_VT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_VT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_VT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_VT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_VT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_VT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_VT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREMONT_COUNTY_WY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREMONT_COUNTY_WY", - "description": null, - "label": "FREMONT COUNTY WY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREMONT_COUNTY_WY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREMONT_COUNTY_WY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREMONT_COUNTY_WY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREMONT_COUNTY_WY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREMONT_COUNTY_WY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREMONT_COUNTY_WY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREMONT_COUNTY_WY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREMONT_COUNTY_WY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_MS", - "description": null, - "label": "SCOTT COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATASCOSA_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATASCOSA_COUNTY_TX", - "description": null, - "label": "ATASCOSA COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATASCOSA_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATASCOSA_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATASCOSA_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATASCOSA_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATASCOSA_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATASCOSA_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATASCOSA_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATASCOSA_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOUNTRAIL_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOUNTRAIL_COUNTY_ND", - "description": null, - "label": "MOUNTRAIL COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOUNTRAIL_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOUNTRAIL_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOUNTRAIL_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOUNTRAIL_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOUNTRAIL_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOUNTRAIL_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOUNTRAIL_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOUNTRAIL_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_TN", - "description": null, - "label": "CAMPBELL COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPTON_COUNTY_SC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPTON_COUNTY_SC", - "description": null, - "label": "HAMPTON COUNTY SC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPTON_COUNTY_SC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPTON_COUNTY_SC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPTON_COUNTY_SC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPTON_COUNTY_SC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPTON_COUNTY_SC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPTON_COUNTY_SC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPTON_COUNTY_SC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPTON_COUNTY_SC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_GA", - "description": null, - "label": "HANCOCK COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAGGETT_COUNTY_UT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAGGETT_COUNTY_UT", - "description": null, - "label": "DAGGETT COUNTY UT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAGGETT_COUNTY_UT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAGGETT_COUNTY_UT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAGGETT_COUNTY_UT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAGGETT_COUNTY_UT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAGGETT_COUNTY_UT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAGGETT_COUNTY_UT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAGGETT_COUNTY_UT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAGGETT_COUNTY_UT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TATTNALL_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TATTNALL_COUNTY_GA", - "description": null, - "label": "TATTNALL COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TATTNALL_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TATTNALL_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TATTNALL_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TATTNALL_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TATTNALL_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TATTNALL_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TATTNALL_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TATTNALL_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PETTIS_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PETTIS_COUNTY_MO", - "description": null, - "label": "PETTIS COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PETTIS_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PETTIS_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PETTIS_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PETTIS_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PETTIS_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PETTIS_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PETTIS_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PETTIS_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_IN", - "description": null, - "label": "UNION COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_PA", - "description": null, - "label": "SULLIVAN COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHLEY_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHLEY_COUNTY_AR", - "description": null, - "label": "ASHLEY COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHLEY_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHLEY_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHLEY_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHLEY_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHLEY_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHLEY_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHLEY_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHLEY_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEST_FELICIANA_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEST_FELICIANA_PARISH_LA", - "description": null, - "label": "WEST FELICIANA PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEST_FELICIANA_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEST_FELICIANA_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEST_FELICIANA_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEST_FELICIANA_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEST_FELICIANA_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEST_FELICIANA_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEST_FELICIANA_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEST_FELICIANA_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLIS_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLIS_COUNTY_TX", - "description": null, - "label": "ELLIS COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLIS_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLIS_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLIS_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLIS_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLIS_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLIS_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLIS_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLIS_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_COUNTY_MO", - "description": null, - "label": "CALDWELL COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_IA", - "description": null, - "label": "POLK COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ULSTER_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ULSTER_COUNTY_NY", - "description": null, - "label": "ULSTER COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ULSTER_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ULSTER_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ULSTER_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ULSTER_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ULSTER_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ULSTER_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ULSTER_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ULSTER_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_KENT_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_KENT_COUNTY_VA", - "description": null, - "label": "NEW KENT COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_KENT_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_KENT_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_KENT_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_KENT_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_KENT_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_KENT_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_KENT_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_KENT_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLLIER_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLLIER_COUNTY_FL", - "description": null, - "label": "COLLIER COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLLIER_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLLIER_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLLIER_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLLIER_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLLIER_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLLIER_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLLIER_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLLIER_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PONDERA_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PONDERA_COUNTY_MT", - "description": null, - "label": "PONDERA COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PONDERA_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PONDERA_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PONDERA_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PONDERA_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PONDERA_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PONDERA_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PONDERA_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PONDERA_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAUPHIN_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAUPHIN_COUNTY_PA", - "description": null, - "label": "DAUPHIN COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAUPHIN_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAUPHIN_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAUPHIN_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAUPHIN_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAUPHIN_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAUPHIN_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAUPHIN_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAUPHIN_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LAWRENCE_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LAWRENCE_COUNTY_NY", - "description": null, - "label": "ST LAWRENCE COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LAWRENCE_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LAWRENCE_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LAWRENCE_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LAWRENCE_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LAWRENCE_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LAWRENCE_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LAWRENCE_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LAWRENCE_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_TN", - "description": null, - "label": "KNOX COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_MO", - "description": null, - "label": "RANDOLPH COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_NY", - "description": null, - "label": "PUTNAM COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_ID": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_ID", - "description": null, - "label": "JEFFERSON COUNTY ID", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_ID.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_ID.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_ID.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_ID.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_ID.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_ID.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_ID.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_ID.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARRARD_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARRARD_COUNTY_KY", - "description": null, - "label": "GARRARD COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARRARD_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARRARD_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARRARD_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARRARD_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARRARD_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARRARD_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARRARD_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARRARD_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_AR", - "description": null, - "label": "CALHOUN COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESHA_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESHA_COUNTY_AR", - "description": null, - "label": "DESHA COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESHA_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESHA_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESHA_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESHA_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESHA_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESHA_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESHA_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESHA_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_NV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_NV", - "description": null, - "label": "CLARK COUNTY NV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_NV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_NV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_NV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_NV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_NV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_NV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_NV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_NV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_VA", - "description": null, - "label": "GREENE COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARDEN_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARDEN_COUNTY_NE", - "description": null, - "label": "GARDEN COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARDEN_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARDEN_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARDEN_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARDEN_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARDEN_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARDEN_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARDEN_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARDEN_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOPEWELL_CITY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOPEWELL_CITY_VA", - "description": null, - "label": "HOPEWELL CITY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOPEWELL_CITY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOPEWELL_CITY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOPEWELL_CITY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOPEWELL_CITY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOPEWELL_CITY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOPEWELL_CITY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOPEWELL_CITY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOPEWELL_CITY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_MS", - "description": null, - "label": "CLAY COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARIN_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARIN_COUNTY_CA", - "description": null, - "label": "MARIN COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARIN_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARIN_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARIN_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARIN_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARIN_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARIN_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARIN_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARIN_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSH_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSH_COUNTY_IN", - "description": null, - "label": "RUSH COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSH_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSH_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSH_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSH_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSH_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSH_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSH_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSH_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_MS", - "description": null, - "label": "CALHOUN COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAY_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAY_COUNTY_SD", - "description": null, - "label": "DAY COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAY_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAY_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAY_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAY_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAY_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAY_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAY_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAY_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KALAMAZOO_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KALAMAZOO_COUNTY_MI", - "description": null, - "label": "KALAMAZOO COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KALAMAZOO_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KALAMAZOO_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KALAMAZOO_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KALAMAZOO_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KALAMAZOO_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KALAMAZOO_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KALAMAZOO_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KALAMAZOO_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEM_COUNTY_ID": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEM_COUNTY_ID", - "description": null, - "label": "GEM COUNTY ID", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEM_COUNTY_ID.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEM_COUNTY_ID.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEM_COUNTY_ID.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEM_COUNTY_ID.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEM_COUNTY_ID.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEM_COUNTY_ID.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEM_COUNTY_ID.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEM_COUNTY_ID.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KITTITAS_COUNTY_WA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KITTITAS_COUNTY_WA", - "description": null, - "label": "KITTITAS COUNTY WA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KITTITAS_COUNTY_WA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KITTITAS_COUNTY_WA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KITTITAS_COUNTY_WA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KITTITAS_COUNTY_WA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KITTITAS_COUNTY_WA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KITTITAS_COUNTY_WA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KITTITAS_COUNTY_WA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KITTITAS_COUNTY_WA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OHIO_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OHIO_COUNTY_WV", - "description": null, - "label": "OHIO COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OHIO_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OHIO_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OHIO_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OHIO_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OHIO_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OHIO_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OHIO_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OHIO_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANCASTER_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANCASTER_COUNTY_NE", - "description": null, - "label": "LANCASTER COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANCASTER_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANCASTER_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANCASTER_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANCASTER_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANCASTER_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANCASTER_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANCASTER_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANCASTER_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.INDIANA_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.INDIANA_COUNTY_PA", - "description": null, - "label": "INDIANA COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.INDIANA_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.INDIANA_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.INDIANA_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.INDIANA_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.INDIANA_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.INDIANA_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.INDIANA_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.INDIANA_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WIRT_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WIRT_COUNTY_WV", - "description": null, - "label": "WIRT COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WIRT_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WIRT_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WIRT_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WIRT_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WIRT_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WIRT_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WIRT_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WIRT_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLES_MIX_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLES_MIX_COUNTY_SD", - "description": null, - "label": "CHARLES MIX COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLES_MIX_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLES_MIX_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLES_MIX_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLES_MIX_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLES_MIX_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLES_MIX_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLES_MIX_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLES_MIX_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_DE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_DE", - "description": null, - "label": "KENT COUNTY DE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_DE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_DE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_DE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_DE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_DE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_DE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_DE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_DE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLT_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLT_COUNTY_NE", - "description": null, - "label": "HOLT COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLT_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLT_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLT_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLT_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLT_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLT_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLT_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLT_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.THURSTON_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.THURSTON_COUNTY_NE", - "description": null, - "label": "THURSTON COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.THURSTON_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.THURSTON_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.THURSTON_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.THURSTON_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.THURSTON_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.THURSTON_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.THURSTON_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.THURSTON_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LATIMER_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LATIMER_COUNTY_OK", - "description": null, - "label": "LATIMER COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LATIMER_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LATIMER_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LATIMER_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LATIMER_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LATIMER_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LATIMER_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LATIMER_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LATIMER_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_PA", - "description": null, - "label": "FULTON COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEWITT_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEWITT_COUNTY_TX", - "description": null, - "label": "DEWITT COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEWITT_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEWITT_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEWITT_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEWITT_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEWITT_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEWITT_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEWITT_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEWITT_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADA_COUNTY_ID": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADA_COUNTY_ID", - "description": null, - "label": "ADA COUNTY ID", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADA_COUNTY_ID.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADA_COUNTY_ID.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADA_COUNTY_ID.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADA_COUNTY_ID.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADA_COUNTY_ID.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADA_COUNTY_ID.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADA_COUNTY_ID.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADA_COUNTY_ID.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_IA", - "description": null, - "label": "CLARK COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLT_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLT_COUNTY_MO", - "description": null, - "label": "HOLT COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLT_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLT_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLT_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLT_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLT_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLT_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLT_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLT_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHOOLCRAFT_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHOOLCRAFT_COUNTY_MI", - "description": null, - "label": "SCHOOLCRAFT COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHOOLCRAFT_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHOOLCRAFT_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHOOLCRAFT_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHOOLCRAFT_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHOOLCRAFT_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHOOLCRAFT_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHOOLCRAFT_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHOOLCRAFT_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANCHORAGE_MUNICIPALITY_AK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANCHORAGE_MUNICIPALITY_AK", - "description": null, - "label": "ANCHORAGE MUNICIPALITY AK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANCHORAGE_MUNICIPALITY_AK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANCHORAGE_MUNICIPALITY_AK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANCHORAGE_MUNICIPALITY_AK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANCHORAGE_MUNICIPALITY_AK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANCHORAGE_MUNICIPALITY_AK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANCHORAGE_MUNICIPALITY_AK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANCHORAGE_MUNICIPALITY_AK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANCHORAGE_MUNICIPALITY_AK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.REPUBLIC_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.REPUBLIC_COUNTY_KS", - "description": null, - "label": "REPUBLIC COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.REPUBLIC_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.REPUBLIC_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.REPUBLIC_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.REPUBLIC_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.REPUBLIC_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.REPUBLIC_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.REPUBLIC_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.REPUBLIC_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRAVERSE_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRAVERSE_COUNTY_MN", - "description": null, - "label": "TRAVERSE COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRAVERSE_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRAVERSE_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRAVERSE_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRAVERSE_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRAVERSE_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRAVERSE_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRAVERSE_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRAVERSE_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YOAKUM_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YOAKUM_COUNTY_TX", - "description": null, - "label": "YOAKUM COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YOAKUM_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YOAKUM_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YOAKUM_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YOAKUM_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YOAKUM_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YOAKUM_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YOAKUM_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YOAKUM_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOHAVE_COUNTY_AZ": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOHAVE_COUNTY_AZ", - "description": null, - "label": "MOHAVE COUNTY AZ", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOHAVE_COUNTY_AZ.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOHAVE_COUNTY_AZ.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOHAVE_COUNTY_AZ.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOHAVE_COUNTY_AZ.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOHAVE_COUNTY_AZ.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOHAVE_COUNTY_AZ.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOHAVE_COUNTY_AZ.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOHAVE_COUNTY_AZ.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PORTSMOUTH_CITY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PORTSMOUTH_CITY_VA", - "description": null, - "label": "PORTSMOUTH CITY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PORTSMOUTH_CITY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PORTSMOUTH_CITY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PORTSMOUTH_CITY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PORTSMOUTH_CITY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PORTSMOUTH_CITY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PORTSMOUTH_CITY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PORTSMOUTH_CITY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PORTSMOUTH_CITY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMPASAS_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMPASAS_COUNTY_TX", - "description": null, - "label": "LAMPASAS COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMPASAS_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMPASAS_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMPASAS_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMPASAS_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMPASAS_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMPASAS_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMPASAS_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMPASAS_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHOHARIE_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHOHARIE_COUNTY_NY", - "description": null, - "label": "SCHOHARIE COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHOHARIE_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHOHARIE_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHOHARIE_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHOHARIE_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHOHARIE_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHOHARIE_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHOHARIE_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHOHARIE_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_SD", - "description": null, - "label": "DOUGLAS COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_IN", - "description": null, - "label": "HARRISON COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALLOWA_COUNTY_OR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALLOWA_COUNTY_OR", - "description": null, - "label": "WALLOWA COUNTY OR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALLOWA_COUNTY_OR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALLOWA_COUNTY_OR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALLOWA_COUNTY_OR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALLOWA_COUNTY_OR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALLOWA_COUNTY_OR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALLOWA_COUNTY_OR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALLOWA_COUNTY_OR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALLOWA_COUNTY_OR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARINETTE_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARINETTE_COUNTY_WI", - "description": null, - "label": "MARINETTE COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARINETTE_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARINETTE_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARINETTE_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARINETTE_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARINETTE_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARINETTE_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARINETTE_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARINETTE_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POCAHONTAS_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POCAHONTAS_COUNTY_WV", - "description": null, - "label": "POCAHONTAS COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POCAHONTAS_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POCAHONTAS_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POCAHONTAS_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POCAHONTAS_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POCAHONTAS_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POCAHONTAS_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POCAHONTAS_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POCAHONTAS_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_KY", - "description": null, - "label": "CARTER COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PONTOTOC_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PONTOTOC_COUNTY_MS", - "description": null, - "label": "PONTOTOC COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PONTOTOC_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PONTOTOC_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PONTOTOC_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PONTOTOC_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PONTOTOC_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PONTOTOC_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PONTOTOC_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PONTOTOC_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEUBEN_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEUBEN_COUNTY_IN", - "description": null, - "label": "STEUBEN COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEUBEN_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEUBEN_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEUBEN_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEUBEN_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEUBEN_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEUBEN_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEUBEN_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEUBEN_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAPEER_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAPEER_COUNTY_MI", - "description": null, - "label": "LAPEER COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAPEER_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAPEER_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAPEER_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAPEER_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAPEER_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAPEER_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAPEER_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAPEER_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_IN", - "description": null, - "label": "HOWARD COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALAMEDA_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALAMEDA_COUNTY_CA", - "description": null, - "label": "ALAMEDA COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALAMEDA_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALAMEDA_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALAMEDA_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALAMEDA_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALAMEDA_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALAMEDA_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALAMEDA_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALAMEDA_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUP_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUP_COUNTY_NE", - "description": null, - "label": "LOUP COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUP_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUP_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUP_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUP_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUP_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUP_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUP_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUP_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_AL", - "description": null, - "label": "FRANKLIN COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_OR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_OR", - "description": null, - "label": "MARION COUNTY OR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_OR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_OR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_OR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_OR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_OR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_OR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_OR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_OR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROUTT_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROUTT_COUNTY_CO", - "description": null, - "label": "ROUTT COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROUTT_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROUTT_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROUTT_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROUTT_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROUTT_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROUTT_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROUTT_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROUTT_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BETHEL_CENSUS_AREA_AK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BETHEL_CENSUS_AREA_AK", - "description": null, - "label": "BETHEL CENSUS AREA AK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BETHEL_CENSUS_AREA_AK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BETHEL_CENSUS_AREA_AK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BETHEL_CENSUS_AREA_AK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BETHEL_CENSUS_AREA_AK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BETHEL_CENSUS_AREA_AK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BETHEL_CENSUS_AREA_AK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BETHEL_CENSUS_AREA_AK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BETHEL_CENSUS_AREA_AK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTTE_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTTE_COUNTY_CA", - "description": null, - "label": "BUTTE COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTTE_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTTE_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTTE_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTTE_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTTE_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTTE_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTTE_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTTE_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTLAND_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTLAND_COUNTY_IA", - "description": null, - "label": "SCOTLAND COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTLAND_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTLAND_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTLAND_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTLAND_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTLAND_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTLAND_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTLAND_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTLAND_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_IL", - "description": null, - "label": "MARION COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_MI", - "description": null, - "label": "KENT COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_IN", - "description": null, - "label": "CASS COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HITCHCOCK_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HITCHCOCK_COUNTY_NE", - "description": null, - "label": "HITCHCOCK COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HITCHCOCK_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HITCHCOCK_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HITCHCOCK_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HITCHCOCK_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HITCHCOCK_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HITCHCOCK_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HITCHCOCK_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HITCHCOCK_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_TX", - "description": null, - "label": "MONTGOMERY COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFIELD_COUNTY_CT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFIELD_COUNTY_CT", - "description": null, - "label": "FAIRFIELD COUNTY CT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFIELD_COUNTY_CT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFIELD_COUNTY_CT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFIELD_COUNTY_CT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFIELD_COUNTY_CT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFIELD_COUNTY_CT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFIELD_COUNTY_CT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFIELD_COUNTY_CT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFIELD_COUNTY_CT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_KY", - "description": null, - "label": "JACKSON COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_TX", - "description": null, - "label": "JONES COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_KS", - "description": null, - "label": "LINCOLN COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAGE_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAGE_COUNTY_IA", - "description": null, - "label": "PAGE COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAGE_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAGE_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAGE_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAGE_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAGE_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAGE_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAGE_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAGE_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_IN", - "description": null, - "label": "NEWTON COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEVENS_COUNTY_WA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEVENS_COUNTY_WA", - "description": null, - "label": "STEVENS COUNTY WA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEVENS_COUNTY_WA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEVENS_COUNTY_WA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEVENS_COUNTY_WA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEVENS_COUNTY_WA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEVENS_COUNTY_WA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEVENS_COUNTY_WA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEVENS_COUNTY_WA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEVENS_COUNTY_WA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TURNER_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TURNER_COUNTY_GA", - "description": null, - "label": "TURNER COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TURNER_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TURNER_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TURNER_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TURNER_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TURNER_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TURNER_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TURNER_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TURNER_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BATH_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BATH_COUNTY_KY", - "description": null, - "label": "BATH COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BATH_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BATH_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BATH_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BATH_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BATH_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BATH_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BATH_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BATH_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUSCARAWAS_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUSCARAWAS_COUNTY_OH", - "description": null, - "label": "TUSCARAWAS COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUSCARAWAS_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUSCARAWAS_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUSCARAWAS_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUSCARAWAS_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUSCARAWAS_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUSCARAWAS_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUSCARAWAS_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUSCARAWAS_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAST_FELICIANA_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAST_FELICIANA_PARISH_LA", - "description": null, - "label": "EAST FELICIANA PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAST_FELICIANA_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAST_FELICIANA_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAST_FELICIANA_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAST_FELICIANA_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAST_FELICIANA_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAST_FELICIANA_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAST_FELICIANA_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAST_FELICIANA_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWELL_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWELL_COUNTY_MT", - "description": null, - "label": "POWELL COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWELL_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWELL_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWELL_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWELL_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWELL_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWELL_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWELL_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWELL_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEELER_COUNTY_OR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEELER_COUNTY_OR", - "description": null, - "label": "WHEELER COUNTY OR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEELER_COUNTY_OR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEELER_COUNTY_OR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEELER_COUNTY_OR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEELER_COUNTY_OR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEELER_COUNTY_OR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEELER_COUNTY_OR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEELER_COUNTY_OR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEELER_COUNTY_OR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.APPOMATTOX_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.APPOMATTOX_COUNTY_VA", - "description": null, - "label": "APPOMATTOX COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.APPOMATTOX_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.APPOMATTOX_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.APPOMATTOX_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.APPOMATTOX_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.APPOMATTOX_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.APPOMATTOX_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.APPOMATTOX_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.APPOMATTOX_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_KY", - "description": null, - "label": "UNION COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_IN", - "description": null, - "label": "MONROE COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUNN_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUNN_COUNTY_WI", - "description": null, - "label": "DUNN COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUNN_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUNN_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUNN_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUNN_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUNN_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUNN_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUNN_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUNN_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRBANKS_NORTH_STAR_BOROUGH_AK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRBANKS_NORTH_STAR_BOROUGH_AK", - "description": null, - "label": "FAIRBANKS NORTH STAR BOROUGH AK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRBANKS_NORTH_STAR_BOROUGH_AK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRBANKS_NORTH_STAR_BOROUGH_AK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRBANKS_NORTH_STAR_BOROUGH_AK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRBANKS_NORTH_STAR_BOROUGH_AK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRBANKS_NORTH_STAR_BOROUGH_AK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRBANKS_NORTH_STAR_BOROUGH_AK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRBANKS_NORTH_STAR_BOROUGH_AK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRBANKS_NORTH_STAR_BOROUGH_AK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEARY_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEARY_COUNTY_KS", - "description": null, - "label": "GEARY COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEARY_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEARY_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEARY_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEARY_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEARY_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEARY_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEARY_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEARY_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAUREL_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAUREL_COUNTY_KY", - "description": null, - "label": "LAUREL COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAUREL_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAUREL_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAUREL_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAUREL_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAUREL_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAUREL_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAUREL_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAUREL_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEUEL_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEUEL_COUNTY_SD", - "description": null, - "label": "DEUEL COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEUEL_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEUEL_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEUEL_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEUEL_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEUEL_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEUEL_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEUEL_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEUEL_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IONIA_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IONIA_COUNTY_MI", - "description": null, - "label": "IONIA COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IONIA_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IONIA_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IONIA_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IONIA_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IONIA_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IONIA_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IONIA_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IONIA_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANNE_ARUNDEL_COUNTY_MD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANNE_ARUNDEL_COUNTY_MD", - "description": null, - "label": "ANNE ARUNDEL COUNTY MD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANNE_ARUNDEL_COUNTY_MD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANNE_ARUNDEL_COUNTY_MD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANNE_ARUNDEL_COUNTY_MD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANNE_ARUNDEL_COUNTY_MD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANNE_ARUNDEL_COUNTY_MD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANNE_ARUNDEL_COUNTY_MD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANNE_ARUNDEL_COUNTY_MD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANNE_ARUNDEL_COUNTY_MD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PALO_PINTO_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PALO_PINTO_COUNTY_TX", - "description": null, - "label": "PALO PINTO COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PALO_PINTO_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PALO_PINTO_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PALO_PINTO_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PALO_PINTO_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PALO_PINTO_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PALO_PINTO_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PALO_PINTO_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PALO_PINTO_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FARIBAULT_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FARIBAULT_COUNTY_MN", - "description": null, - "label": "FARIBAULT COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FARIBAULT_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FARIBAULT_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FARIBAULT_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FARIBAULT_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FARIBAULT_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FARIBAULT_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FARIBAULT_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FARIBAULT_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOA_BAJA_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOA_BAJA_MUNICIPIO_PR", - "description": null, - "label": "TOA BAJA MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOA_BAJA_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOA_BAJA_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOA_BAJA_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOA_BAJA_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOA_BAJA_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOA_BAJA_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOA_BAJA_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOA_BAJA_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKANOGAN_COUNTY_WA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKANOGAN_COUNTY_WA", - "description": null, - "label": "OKANOGAN COUNTY WA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKANOGAN_COUNTY_WA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKANOGAN_COUNTY_WA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKANOGAN_COUNTY_WA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKANOGAN_COUNTY_WA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKANOGAN_COUNTY_WA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKANOGAN_COUNTY_WA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKANOGAN_COUNTY_WA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKANOGAN_COUNTY_WA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARICOPA_COUNTY_AZ": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARICOPA_COUNTY_AZ", - "description": null, - "label": "MARICOPA COUNTY AZ", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARICOPA_COUNTY_AZ.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARICOPA_COUNTY_AZ.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARICOPA_COUNTY_AZ.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARICOPA_COUNTY_AZ.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARICOPA_COUNTY_AZ.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARICOPA_COUNTY_AZ.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARICOPA_COUNTY_AZ.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARICOPA_COUNTY_AZ.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONITEAU_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONITEAU_COUNTY_MO", - "description": null, - "label": "MONITEAU COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONITEAU_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONITEAU_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONITEAU_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONITEAU_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONITEAU_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONITEAU_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONITEAU_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONITEAU_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_KY", - "description": null, - "label": "TAYLOR COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEWEY_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEWEY_COUNTY_OK", - "description": null, - "label": "DEWEY COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEWEY_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEWEY_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEWEY_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEWEY_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEWEY_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEWEY_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEWEY_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEWEY_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUOLUMNE_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUOLUMNE_COUNTY_CA", - "description": null, - "label": "TUOLUMNE COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUOLUMNE_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUOLUMNE_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUOLUMNE_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUOLUMNE_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUOLUMNE_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUOLUMNE_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUOLUMNE_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUOLUMNE_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAFFEE_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAFFEE_COUNTY_CO", - "description": null, - "label": "CHAFFEE COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAFFEE_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAFFEE_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAFFEE_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAFFEE_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAFFEE_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAFFEE_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAFFEE_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAFFEE_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERKS_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERKS_COUNTY_PA", - "description": null, - "label": "BERKS COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERKS_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERKS_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERKS_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERKS_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERKS_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERKS_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERKS_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERKS_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_IN", - "description": null, - "label": "FAYETTE COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIAMI_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIAMI_COUNTY_KS", - "description": null, - "label": "MIAMI COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIAMI_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIAMI_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIAMI_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIAMI_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIAMI_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIAMI_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIAMI_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIAMI_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEDFORD_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEDFORD_COUNTY_VA", - "description": null, - "label": "BEDFORD COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEDFORD_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEDFORD_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEDFORD_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEDFORD_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEDFORD_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEDFORD_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEDFORD_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEDFORD_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCPHERSON_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCPHERSON_COUNTY_SD", - "description": null, - "label": "MCPHERSON COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCPHERSON_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCPHERSON_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCPHERSON_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCPHERSON_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCPHERSON_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCPHERSON_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCPHERSON_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCPHERSON_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COWLITZ_COUNTY_WA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COWLITZ_COUNTY_WA", - "description": null, - "label": "COWLITZ COUNTY WA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COWLITZ_COUNTY_WA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COWLITZ_COUNTY_WA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COWLITZ_COUNTY_WA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COWLITZ_COUNTY_WA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COWLITZ_COUNTY_WA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COWLITZ_COUNTY_WA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COWLITZ_COUNTY_WA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COWLITZ_COUNTY_WA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_AL", - "description": null, - "label": "RANDOLPH COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLATTE_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLATTE_COUNTY_MO", - "description": null, - "label": "PLATTE COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLATTE_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLATTE_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLATTE_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLATTE_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLATTE_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLATTE_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLATTE_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLATTE_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_UT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_UT", - "description": null, - "label": "WASHINGTON COUNTY UT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_UT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_UT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_UT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_UT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_UT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_UT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_UT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_UT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIOUX_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIOUX_COUNTY_IA", - "description": null, - "label": "SIOUX COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIOUX_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIOUX_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIOUX_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIOUX_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIOUX_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIOUX_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIOUX_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIOUX_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COTTLE_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COTTLE_COUNTY_TX", - "description": null, - "label": "COTTLE COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COTTLE_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COTTLE_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COTTLE_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COTTLE_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COTTLE_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COTTLE_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COTTLE_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COTTLE_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SKAGWAY_MUNICIPALITY_AK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SKAGWAY_MUNICIPALITY_AK", - "description": null, - "label": "SKAGWAY MUNICIPALITY AK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SKAGWAY_MUNICIPALITY_AK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SKAGWAY_MUNICIPALITY_AK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SKAGWAY_MUNICIPALITY_AK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SKAGWAY_MUNICIPALITY_AK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SKAGWAY_MUNICIPALITY_AK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SKAGWAY_MUNICIPALITY_AK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SKAGWAY_MUNICIPALITY_AK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SKAGWAY_MUNICIPALITY_AK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEND_OREILLE_COUNTY_WA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEND_OREILLE_COUNTY_WA", - "description": null, - "label": "PEND OREILLE COUNTY WA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEND_OREILLE_COUNTY_WA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEND_OREILLE_COUNTY_WA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEND_OREILLE_COUNTY_WA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEND_OREILLE_COUNTY_WA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEND_OREILLE_COUNTY_WA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEND_OREILLE_COUNTY_WA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEND_OREILLE_COUNTY_WA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEND_OREILLE_COUNTY_WA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_AR", - "description": null, - "label": "MONTGOMERY COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EASTLAND_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EASTLAND_COUNTY_TX", - "description": null, - "label": "EASTLAND COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EASTLAND_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EASTLAND_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EASTLAND_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EASTLAND_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EASTLAND_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EASTLAND_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EASTLAND_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EASTLAND_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WETZEL_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WETZEL_COUNTY_WV", - "description": null, - "label": "WETZEL COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WETZEL_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WETZEL_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WETZEL_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WETZEL_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WETZEL_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WETZEL_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WETZEL_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WETZEL_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISTOL_COUNTY_RI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISTOL_COUNTY_RI", - "description": null, - "label": "BRISTOL COUNTY RI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISTOL_COUNTY_RI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISTOL_COUNTY_RI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISTOL_COUNTY_RI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISTOL_COUNTY_RI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISTOL_COUNTY_RI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISTOL_COUNTY_RI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISTOL_COUNTY_RI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISTOL_COUNTY_RI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_WA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_WA", - "description": null, - "label": "ADAMS COUNTY WA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_WA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_WA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_WA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_WA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_WA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_WA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_WA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_WA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERRIEN_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERRIEN_COUNTY_GA", - "description": null, - "label": "BERRIEN COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERRIEN_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERRIEN_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERRIEN_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERRIEN_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERRIEN_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERRIEN_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERRIEN_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERRIEN_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOCKING_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOCKING_COUNTY_OH", - "description": null, - "label": "HOCKING COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOCKING_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOCKING_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOCKING_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOCKING_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOCKING_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOCKING_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOCKING_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOCKING_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RALLS_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RALLS_COUNTY_MO", - "description": null, - "label": "RALLS COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RALLS_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RALLS_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RALLS_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RALLS_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RALLS_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RALLS_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RALLS_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RALLS_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LOUIS_CITY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LOUIS_CITY_MO", - "description": null, - "label": "ST LOUIS CITY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LOUIS_CITY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LOUIS_CITY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LOUIS_CITY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LOUIS_CITY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LOUIS_CITY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LOUIS_CITY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LOUIS_CITY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LOUIS_CITY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_FL", - "description": null, - "label": "UNION COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANISTEE_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANISTEE_COUNTY_MI", - "description": null, - "label": "MANISTEE COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANISTEE_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANISTEE_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANISTEE_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANISTEE_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANISTEE_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANISTEE_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANISTEE_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANISTEE_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_WV", - "description": null, - "label": "HANCOCK COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALLADEGA_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALLADEGA_COUNTY_AL", - "description": null, - "label": "TALLADEGA COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALLADEGA_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALLADEGA_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALLADEGA_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALLADEGA_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALLADEGA_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALLADEGA_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALLADEGA_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALLADEGA_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UPSHUR_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UPSHUR_COUNTY_WV", - "description": null, - "label": "UPSHUR COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UPSHUR_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UPSHUR_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UPSHUR_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UPSHUR_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UPSHUR_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UPSHUR_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UPSHUR_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UPSHUR_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AIBONITO_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AIBONITO_MUNICIPIO_PR", - "description": null, - "label": "AIBONITO MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AIBONITO_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AIBONITO_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AIBONITO_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AIBONITO_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AIBONITO_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AIBONITO_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AIBONITO_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AIBONITO_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_OH", - "description": null, - "label": "GREENE COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_SD", - "description": null, - "label": "GRANT COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEELER_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEELER_COUNTY_TX", - "description": null, - "label": "WHEELER COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEELER_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEELER_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEELER_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEELER_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEELER_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEELER_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEELER_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEELER_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_NE", - "description": null, - "label": "WAYNE COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEDINA_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEDINA_COUNTY_OH", - "description": null, - "label": "MEDINA COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEDINA_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEDINA_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEDINA_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEDINA_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEDINA_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEDINA_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEDINA_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEDINA_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDUFFIE_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDUFFIE_COUNTY_GA", - "description": null, - "label": "MCDUFFIE COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDUFFIE_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDUFFIE_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDUFFIE_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDUFFIE_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDUFFIE_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDUFFIE_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDUFFIE_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDUFFIE_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YUMA_COUNTY_AZ": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YUMA_COUNTY_AZ", - "description": null, - "label": "YUMA COUNTY AZ", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YUMA_COUNTY_AZ.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YUMA_COUNTY_AZ.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YUMA_COUNTY_AZ.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YUMA_COUNTY_AZ.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YUMA_COUNTY_AZ.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YUMA_COUNTY_AZ.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YUMA_COUNTY_AZ.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YUMA_COUNTY_AZ.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RÍO_GRANDE_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RÍO_GRANDE_MUNICIPIO_PR", - "description": null, - "label": "RÍO GRANDE MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RÍO_GRANDE_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RÍO_GRANDE_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RÍO_GRANDE_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RÍO_GRANDE_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RÍO_GRANDE_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RÍO_GRANDE_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RÍO_GRANDE_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RÍO_GRANDE_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DIMMIT_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DIMMIT_COUNTY_TX", - "description": null, - "label": "DIMMIT COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DIMMIT_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DIMMIT_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DIMMIT_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DIMMIT_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DIMMIT_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DIMMIT_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DIMMIT_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DIMMIT_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHICOT_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHICOT_COUNTY_AR", - "description": null, - "label": "CHICOT COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHICOT_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHICOT_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHICOT_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHICOT_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHICOT_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHICOT_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHICOT_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHICOT_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARVER_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARVER_COUNTY_MN", - "description": null, - "label": "CARVER COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARVER_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARVER_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARVER_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARVER_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARVER_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARVER_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARVER_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARVER_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPOTSYLVANIA_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPOTSYLVANIA_COUNTY_VA", - "description": null, - "label": "SPOTSYLVANIA COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPOTSYLVANIA_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPOTSYLVANIA_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPOTSYLVANIA_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPOTSYLVANIA_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPOTSYLVANIA_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPOTSYLVANIA_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPOTSYLVANIA_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPOTSYLVANIA_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_DIEGO_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_DIEGO_COUNTY_CA", - "description": null, - "label": "SAN DIEGO COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_DIEGO_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_DIEGO_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_DIEGO_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_DIEGO_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_DIEGO_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_DIEGO_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_DIEGO_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_DIEGO_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOTETOURT_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOTETOURT_COUNTY_VA", - "description": null, - "label": "BOTETOURT COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOTETOURT_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOTETOURT_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOTETOURT_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOTETOURT_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOTETOURT_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOTETOURT_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOTETOURT_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOTETOURT_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMDEN_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMDEN_COUNTY_MO", - "description": null, - "label": "CAMDEN COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMDEN_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMDEN_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMDEN_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMDEN_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMDEN_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMDEN_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMDEN_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMDEN_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_WY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_WY", - "description": null, - "label": "SHERIDAN COUNTY WY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_WY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_WY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_WY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_WY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_WY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_WY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_WY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_WY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODSON_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODSON_COUNTY_KS", - "description": null, - "label": "WOODSON COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODSON_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODSON_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODSON_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODSON_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODSON_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODSON_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODSON_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODSON_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_SD", - "description": null, - "label": "MARSHALL COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLENN_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLENN_COUNTY_CA", - "description": null, - "label": "GLENN COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLENN_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLENN_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLENN_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLENN_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLENN_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLENN_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLENN_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLENN_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHATTOOGA_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHATTOOGA_COUNTY_GA", - "description": null, - "label": "CHATTOOGA COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHATTOOGA_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHATTOOGA_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHATTOOGA_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHATTOOGA_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHATTOOGA_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHATTOOGA_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHATTOOGA_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHATTOOGA_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDLAND_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDLAND_COUNTY_TX", - "description": null, - "label": "MIDLAND COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDLAND_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDLAND_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDLAND_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDLAND_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDLAND_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDLAND_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDLAND_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDLAND_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_OH", - "description": null, - "label": "HAMILTON COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_IA", - "description": null, - "label": "CRAWFORD COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_KY", - "description": null, - "label": "FLOYD COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NIAGARA_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NIAGARA_COUNTY_NY", - "description": null, - "label": "NIAGARA COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NIAGARA_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NIAGARA_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NIAGARA_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NIAGARA_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NIAGARA_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NIAGARA_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NIAGARA_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NIAGARA_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERNON_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERNON_COUNTY_WI", - "description": null, - "label": "VERNON COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERNON_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERNON_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERNON_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERNON_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERNON_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERNON_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERNON_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERNON_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_TN", - "description": null, - "label": "PERRY COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHRISTIAN_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHRISTIAN_COUNTY_MO", - "description": null, - "label": "CHRISTIAN COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHRISTIAN_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHRISTIAN_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHRISTIAN_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHRISTIAN_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHRISTIAN_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHRISTIAN_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHRISTIAN_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHRISTIAN_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAUNDERS_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAUNDERS_COUNTY_NE", - "description": null, - "label": "SAUNDERS COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAUNDERS_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAUNDERS_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAUNDERS_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAUNDERS_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAUNDERS_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAUNDERS_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAUNDERS_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAUNDERS_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_KS", - "description": null, - "label": "WASHINGTON COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLACKFORD_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLACKFORD_COUNTY_IN", - "description": null, - "label": "BLACKFORD COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLACKFORD_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLACKFORD_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLACKFORD_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLACKFORD_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLACKFORD_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLACKFORD_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLACKFORD_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLACKFORD_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NANCE_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NANCE_COUNTY_NE", - "description": null, - "label": "NANCE COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NANCE_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NANCE_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NANCE_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NANCE_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NANCE_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NANCE_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NANCE_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NANCE_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAYAGÜEZ_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAYAGÜEZ_MUNICIPIO_PR", - "description": null, - "label": "MAYAGÜEZ MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAYAGÜEZ_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAYAGÜEZ_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAYAGÜEZ_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAYAGÜEZ_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAYAGÜEZ_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAYAGÜEZ_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAYAGÜEZ_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAYAGÜEZ_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTTE_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTTE_COUNTY_SD", - "description": null, - "label": "BUTTE COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTTE_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTTE_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTTE_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTTE_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTTE_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTTE_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTTE_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTTE_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOUTHAMPTON_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOUTHAMPTON_COUNTY_VA", - "description": null, - "label": "SOUTHAMPTON COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOUTHAMPTON_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOUTHAMPTON_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOUTHAMPTON_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOUTHAMPTON_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOUTHAMPTON_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOUTHAMPTON_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOUTHAMPTON_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOUTHAMPTON_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHARTON_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHARTON_COUNTY_TX", - "description": null, - "label": "WHARTON COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHARTON_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHARTON_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHARTON_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHARTON_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHARTON_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHARTON_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHARTON_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHARTON_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_KY", - "description": null, - "label": "LYON COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLESTON_COUNTY_SC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLESTON_COUNTY_SC", - "description": null, - "label": "CHARLESTON COUNTY SC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLESTON_COUNTY_SC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLESTON_COUNTY_SC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLESTON_COUNTY_SC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLESTON_COUNTY_SC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLESTON_COUNTY_SC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLESTON_COUNTY_SC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLESTON_COUNTY_SC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLESTON_COUNTY_SC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_MS", - "description": null, - "label": "MONTGOMERY COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_IN", - "description": null, - "label": "JOHNSON COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRIGGS_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRIGGS_COUNTY_ND", - "description": null, - "label": "GRIGGS COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRIGGS_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRIGGS_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRIGGS_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRIGGS_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRIGGS_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRIGGS_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRIGGS_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRIGGS_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MURRAY_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MURRAY_COUNTY_OK", - "description": null, - "label": "MURRAY COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MURRAY_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MURRAY_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MURRAY_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MURRAY_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MURRAY_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MURRAY_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MURRAY_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MURRAY_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YATES_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YATES_COUNTY_NY", - "description": null, - "label": "YATES COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YATES_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YATES_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YATES_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YATES_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YATES_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YATES_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YATES_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YATES_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAIBORNE_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAIBORNE_COUNTY_TN", - "description": null, - "label": "CLAIBORNE COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAIBORNE_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAIBORNE_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAIBORNE_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAIBORNE_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAIBORNE_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAIBORNE_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAIBORNE_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAIBORNE_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMITH_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMITH_COUNTY_TN", - "description": null, - "label": "SMITH COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMITH_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMITH_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMITH_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMITH_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMITH_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMITH_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMITH_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMITH_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALLAHAN_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALLAHAN_COUNTY_TX", - "description": null, - "label": "CALLAHAN COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALLAHAN_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALLAHAN_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALLAHAN_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALLAHAN_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALLAHAN_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALLAHAN_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALLAHAN_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALLAHAN_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELMONT_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELMONT_COUNTY_OH", - "description": null, - "label": "BELMONT COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELMONT_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELMONT_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELMONT_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELMONT_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELMONT_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELMONT_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELMONT_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELMONT_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTER_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTER_COUNTY_PA", - "description": null, - "label": "POTTER COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTER_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTER_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTER_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTER_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTER_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTER_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTER_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTER_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_MO", - "description": null, - "label": "CRAWFORD COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAHASKA_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAHASKA_COUNTY_IA", - "description": null, - "label": "MAHASKA COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAHASKA_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAHASKA_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAHASKA_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAHASKA_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAHASKA_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAHASKA_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAHASKA_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAHASKA_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_KS", - "description": null, - "label": "CLAY COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PALM_BEACH_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PALM_BEACH_COUNTY_FL", - "description": null, - "label": "PALM BEACH COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PALM_BEACH_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PALM_BEACH_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PALM_BEACH_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PALM_BEACH_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PALM_BEACH_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PALM_BEACH_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PALM_BEACH_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PALM_BEACH_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_MI", - "description": null, - "label": "LIVINGSTON COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_ME": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_ME", - "description": null, - "label": "FRANKLIN COUNTY ME", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_ME.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_ME.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_ME.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_ME.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_ME.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_ME.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_ME.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_ME.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_FL", - "description": null, - "label": "LAFAYETTE COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILLIPS_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILLIPS_COUNTY_MT", - "description": null, - "label": "PHILLIPS COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILLIPS_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILLIPS_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILLIPS_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILLIPS_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILLIPS_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILLIPS_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILLIPS_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILLIPS_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISSAQUENA_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISSAQUENA_COUNTY_MS", - "description": null, - "label": "ISSAQUENA COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISSAQUENA_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISSAQUENA_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISSAQUENA_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISSAQUENA_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISSAQUENA_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISSAQUENA_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISSAQUENA_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISSAQUENA_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CULEBRA_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CULEBRA_MUNICIPIO_PR", - "description": null, - "label": "CULEBRA MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CULEBRA_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CULEBRA_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CULEBRA_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CULEBRA_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CULEBRA_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CULEBRA_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CULEBRA_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CULEBRA_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLOTTE_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLOTTE_COUNTY_FL", - "description": null, - "label": "CHARLOTTE COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLOTTE_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLOTTE_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLOTTE_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLOTTE_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLOTTE_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLOTTE_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLOTTE_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLOTTE_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRICO_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRICO_COUNTY_VA", - "description": null, - "label": "HENRICO COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRICO_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRICO_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRICO_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRICO_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRICO_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRICO_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRICO_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRICO_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDALL_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDALL_COUNTY_TX", - "description": null, - "label": "RANDALL COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDALL_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDALL_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDALL_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDALL_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDALL_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDALL_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDALL_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDALL_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOCKLEY_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOCKLEY_COUNTY_TX", - "description": null, - "label": "HOCKLEY COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOCKLEY_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOCKLEY_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOCKLEY_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOCKLEY_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOCKLEY_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOCKLEY_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOCKLEY_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOCKLEY_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_CO", - "description": null, - "label": "LINCOLN COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_FL", - "description": null, - "label": "POLK COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COCONINO_COUNTY_AZ": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COCONINO_COUNTY_AZ", - "description": null, - "label": "COCONINO COUNTY AZ", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COCONINO_COUNTY_AZ.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COCONINO_COUNTY_AZ.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COCONINO_COUNTY_AZ.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COCONINO_COUNTY_AZ.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COCONINO_COUNTY_AZ.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COCONINO_COUNTY_AZ.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COCONINO_COUNTY_AZ.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COCONINO_COUNTY_AZ.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_TN", - "description": null, - "label": "POLK COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ECHOLS_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ECHOLS_COUNTY_GA", - "description": null, - "label": "ECHOLS COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ECHOLS_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ECHOLS_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ECHOLS_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ECHOLS_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ECHOLS_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ECHOLS_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ECHOLS_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ECHOLS_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_OH", - "description": null, - "label": "HARRISON COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASSAC_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASSAC_COUNTY_IL", - "description": null, - "label": "MASSAC COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASSAC_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASSAC_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASSAC_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASSAC_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASSAC_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASSAC_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASSAC_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASSAC_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_PINE_COUNTY_UT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_PINE_COUNTY_UT", - "description": null, - "label": "WHITE PINE COUNTY UT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_PINE_COUNTY_UT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_PINE_COUNTY_UT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_PINE_COUNTY_UT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_PINE_COUNTY_UT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_PINE_COUNTY_UT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_PINE_COUNTY_UT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_PINE_COUNTY_UT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_PINE_COUNTY_UT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARBER_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARBER_COUNTY_KS", - "description": null, - "label": "BARBER COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARBER_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARBER_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARBER_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARBER_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARBER_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARBER_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARBER_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARBER_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PINE_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PINE_COUNTY_MN", - "description": null, - "label": "PINE COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PINE_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PINE_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PINE_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PINE_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PINE_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PINE_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PINE_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PINE_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_IA", - "description": null, - "label": "BUTLER COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_COUNTY_UT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_COUNTY_UT", - "description": null, - "label": "GRAND COUNTY UT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_COUNTY_UT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_COUNTY_UT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_COUNTY_UT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_COUNTY_UT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_COUNTY_UT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_COUNTY_UT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_COUNTY_UT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_COUNTY_UT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEWARD_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEWARD_COUNTY_NE", - "description": null, - "label": "SEWARD COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEWARD_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEWARD_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEWARD_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEWARD_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEWARD_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEWARD_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEWARD_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEWARD_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAJAS_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAJAS_MUNICIPIO_PR", - "description": null, - "label": "LAJAS MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAJAS_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAJAS_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAJAS_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAJAS_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAJAS_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAJAS_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAJAS_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAJAS_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PORTER_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PORTER_COUNTY_IN", - "description": null, - "label": "PORTER COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PORTER_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PORTER_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PORTER_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PORTER_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PORTER_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PORTER_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PORTER_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PORTER_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_TN", - "description": null, - "label": "HENRY COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUAYANILLA_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUAYANILLA_MUNICIPIO_PR", - "description": null, - "label": "GUAYANILLA MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUAYANILLA_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUAYANILLA_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUAYANILLA_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUAYANILLA_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUAYANILLA_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUAYANILLA_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUAYANILLA_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUAYANILLA_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLOUCESTER_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLOUCESTER_COUNTY_VA", - "description": null, - "label": "GLOUCESTER COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLOUCESTER_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLOUCESTER_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLOUCESTER_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLOUCESTER_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLOUCESTER_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLOUCESTER_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLOUCESTER_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLOUCESTER_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAKER_COUNTY_OR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAKER_COUNTY_OR", - "description": null, - "label": "BAKER COUNTY OR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAKER_COUNTY_OR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAKER_COUNTY_OR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAKER_COUNTY_OR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAKER_COUNTY_OR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAKER_COUNTY_OR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAKER_COUNTY_OR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAKER_COUNTY_OR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAKER_COUNTY_OR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARENDON_COUNTY_SC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARENDON_COUNTY_SC", - "description": null, - "label": "CLARENDON COUNTY SC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARENDON_COUNTY_SC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARENDON_COUNTY_SC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARENDON_COUNTY_SC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARENDON_COUNTY_SC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARENDON_COUNTY_SC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARENDON_COUNTY_SC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARENDON_COUNTY_SC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARENDON_COUNTY_SC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OHIO_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OHIO_COUNTY_KY", - "description": null, - "label": "OHIO COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OHIO_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OHIO_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OHIO_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OHIO_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OHIO_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OHIO_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OHIO_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OHIO_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_BUREN_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_BUREN_COUNTY_MI", - "description": null, - "label": "VAN BUREN COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_BUREN_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_BUREN_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_BUREN_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_BUREN_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_BUREN_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_BUREN_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_BUREN_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_BUREN_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRITTENDEN_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRITTENDEN_COUNTY_AR", - "description": null, - "label": "CRITTENDEN COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRITTENDEN_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRITTENDEN_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRITTENDEN_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRITTENDEN_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRITTENDEN_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRITTENDEN_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRITTENDEN_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRITTENDEN_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NICHOLAS_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NICHOLAS_COUNTY_KY", - "description": null, - "label": "NICHOLAS COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NICHOLAS_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NICHOLAS_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NICHOLAS_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NICHOLAS_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NICHOLAS_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NICHOLAS_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NICHOLAS_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NICHOLAS_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURKE_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURKE_COUNTY_ND", - "description": null, - "label": "BURKE COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURKE_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURKE_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURKE_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURKE_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURKE_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURKE_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURKE_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURKE_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RINGGOLD_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RINGGOLD_COUNTY_IA", - "description": null, - "label": "RINGGOLD COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RINGGOLD_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RINGGOLD_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RINGGOLD_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RINGGOLD_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RINGGOLD_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RINGGOLD_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RINGGOLD_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RINGGOLD_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALIFAX_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALIFAX_COUNTY_VA", - "description": null, - "label": "HALIFAX COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALIFAX_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALIFAX_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALIFAX_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALIFAX_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALIFAX_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALIFAX_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALIFAX_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALIFAX_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HORMIGUEROS_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HORMIGUEROS_MUNICIPIO_PR", - "description": null, - "label": "HORMIGUEROS MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HORMIGUEROS_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HORMIGUEROS_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HORMIGUEROS_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HORMIGUEROS_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HORMIGUEROS_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HORMIGUEROS_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HORMIGUEROS_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HORMIGUEROS_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_ISLE_COUNTY_VT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_ISLE_COUNTY_VT", - "description": null, - "label": "GRAND ISLE COUNTY VT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_ISLE_COUNTY_VT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_ISLE_COUNTY_VT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_ISLE_COUNTY_VT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_ISLE_COUNTY_VT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_ISLE_COUNTY_VT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_ISLE_COUNTY_VT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_ISLE_COUNTY_VT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_ISLE_COUNTY_VT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LACKAWANNA_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LACKAWANNA_COUNTY_PA", - "description": null, - "label": "LACKAWANNA COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LACKAWANNA_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LACKAWANNA_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LACKAWANNA_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LACKAWANNA_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LACKAWANNA_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LACKAWANNA_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LACKAWANNA_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LACKAWANNA_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATCHISON_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATCHISON_COUNTY_MO", - "description": null, - "label": "ATCHISON COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATCHISON_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATCHISON_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATCHISON_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATCHISON_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATCHISON_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATCHISON_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATCHISON_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATCHISON_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DORADO_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DORADO_MUNICIPIO_PR", - "description": null, - "label": "DORADO MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DORADO_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DORADO_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DORADO_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DORADO_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DORADO_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DORADO_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DORADO_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DORADO_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOCA_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOCA_MUNICIPIO_PR", - "description": null, - "label": "MOCA MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOCA_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOCA_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOCA_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOCA_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOCA_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOCA_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOCA_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOCA_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_AR", - "description": null, - "label": "BENTON COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLLETON_COUNTY_SC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLLETON_COUNTY_SC", - "description": null, - "label": "COLLETON COUNTY SC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLLETON_COUNTY_SC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLLETON_COUNTY_SC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLLETON_COUNTY_SC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLLETON_COUNTY_SC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLLETON_COUNTY_SC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLLETON_COUNTY_SC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLLETON_COUNTY_SC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLLETON_COUNTY_SC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_COUNTY_TX", - "description": null, - "label": "CALDWELL COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAYAMÓN_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAYAMÓN_MUNICIPIO_PR", - "description": null, - "label": "BAYAMÓN MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAYAMÓN_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAYAMÓN_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAYAMÓN_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAYAMÓN_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAYAMÓN_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAYAMÓN_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAYAMÓN_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAYAMÓN_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHIAWASSEE_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHIAWASSEE_COUNTY_MI", - "description": null, - "label": "SHIAWASSEE COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHIAWASSEE_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHIAWASSEE_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHIAWASSEE_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHIAWASSEE_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHIAWASSEE_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHIAWASSEE_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHIAWASSEE_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHIAWASSEE_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.INGHAM_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.INGHAM_COUNTY_MI", - "description": null, - "label": "INGHAM COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.INGHAM_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.INGHAM_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.INGHAM_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.INGHAM_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.INGHAM_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.INGHAM_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.INGHAM_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.INGHAM_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FILLMORE_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FILLMORE_COUNTY_NE", - "description": null, - "label": "FILLMORE COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FILLMORE_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FILLMORE_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FILLMORE_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FILLMORE_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FILLMORE_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FILLMORE_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FILLMORE_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FILLMORE_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HEARD_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HEARD_COUNTY_GA", - "description": null, - "label": "HEARD COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HEARD_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HEARD_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HEARD_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HEARD_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HEARD_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HEARD_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HEARD_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HEARD_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_WI", - "description": null, - "label": "TAYLOR COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUNICA_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUNICA_COUNTY_MS", - "description": null, - "label": "TUNICA COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUNICA_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUNICA_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUNICA_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUNICA_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUNICA_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUNICA_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUNICA_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUNICA_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTTS_BLUFF_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTTS_BLUFF_COUNTY_NE", - "description": null, - "label": "SCOTTS BLUFF COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTTS_BLUFF_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTTS_BLUFF_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTTS_BLUFF_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTTS_BLUFF_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTTS_BLUFF_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTTS_BLUFF_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTTS_BLUFF_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTTS_BLUFF_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KAY_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KAY_COUNTY_OK", - "description": null, - "label": "KAY COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KAY_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KAY_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KAY_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KAY_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KAY_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KAY_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KAY_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KAY_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WADENA_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WADENA_COUNTY_MN", - "description": null, - "label": "WADENA COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WADENA_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WADENA_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WADENA_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WADENA_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WADENA_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WADENA_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WADENA_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WADENA_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_VA", - "description": null, - "label": "YORK COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_AL", - "description": null, - "label": "BUTLER COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_GERMÁN_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_GERMÁN_MUNICIPIO_PR", - "description": null, - "label": "SAN GERMÁN MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_GERMÁN_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_GERMÁN_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_GERMÁN_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_GERMÁN_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_GERMÁN_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_GERMÁN_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_GERMÁN_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_GERMÁN_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELL_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELL_COUNTY_TX", - "description": null, - "label": "BELL COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELL_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELL_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELL_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELL_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELL_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELL_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELL_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELL_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_GA", - "description": null, - "label": "CHEROKEE COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MATANUSKA_SUSITNA_BOROUGH_AK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MATANUSKA_SUSITNA_BOROUGH_AK", - "description": null, - "label": "MATANUSKA SUSITNA BOROUGH AK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MATANUSKA_SUSITNA_BOROUGH_AK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MATANUSKA_SUSITNA_BOROUGH_AK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MATANUSKA_SUSITNA_BOROUGH_AK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MATANUSKA_SUSITNA_BOROUGH_AK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MATANUSKA_SUSITNA_BOROUGH_AK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MATANUSKA_SUSITNA_BOROUGH_AK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MATANUSKA_SUSITNA_BOROUGH_AK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MATANUSKA_SUSITNA_BOROUGH_AK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWPORT_COUNTY_RI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWPORT_COUNTY_RI", - "description": null, - "label": "NEWPORT COUNTY RI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWPORT_COUNTY_RI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWPORT_COUNTY_RI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWPORT_COUNTY_RI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWPORT_COUNTY_RI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWPORT_COUNTY_RI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWPORT_COUNTY_RI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWPORT_COUNTY_RI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWPORT_COUNTY_RI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ERIE_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ERIE_COUNTY_OH", - "description": null, - "label": "ERIE COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ERIE_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ERIE_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ERIE_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ERIE_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ERIE_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ERIE_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ERIE_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ERIE_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_MS", - "description": null, - "label": "WEBSTER COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_PA", - "description": null, - "label": "MONROE COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_KY", - "description": null, - "label": "SHELBY COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDONOUGH_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDONOUGH_COUNTY_IL", - "description": null, - "label": "MCDONOUGH COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDONOUGH_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDONOUGH_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDONOUGH_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDONOUGH_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDONOUGH_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDONOUGH_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDONOUGH_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDONOUGH_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DENTON_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DENTON_COUNTY_TX", - "description": null, - "label": "DENTON COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DENTON_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DENTON_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DENTON_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DENTON_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DENTON_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DENTON_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DENTON_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DENTON_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAKOTA_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAKOTA_COUNTY_NE", - "description": null, - "label": "DAKOTA COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAKOTA_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAKOTA_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAKOTA_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAKOTA_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAKOTA_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAKOTA_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAKOTA_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAKOTA_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIPSCOMB_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIPSCOMB_COUNTY_TX", - "description": null, - "label": "LIPSCOMB COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIPSCOMB_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIPSCOMB_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIPSCOMB_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIPSCOMB_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIPSCOMB_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIPSCOMB_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIPSCOMB_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIPSCOMB_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_IA", - "description": null, - "label": "CARROLL COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLAQUEMINES_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLAQUEMINES_PARISH_LA", - "description": null, - "label": "PLAQUEMINES PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLAQUEMINES_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLAQUEMINES_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLAQUEMINES_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLAQUEMINES_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLAQUEMINES_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLAQUEMINES_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLAQUEMINES_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLAQUEMINES_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_OK", - "description": null, - "label": "CHEROKEE COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASECA_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASECA_COUNTY_MN", - "description": null, - "label": "WASECA COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASECA_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASECA_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASECA_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASECA_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASECA_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASECA_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASECA_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASECA_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOWMAN_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOWMAN_COUNTY_ND", - "description": null, - "label": "BOWMAN COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOWMAN_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOWMAN_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOWMAN_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOWMAN_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOWMAN_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOWMAN_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOWMAN_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOWMAN_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCOOK_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCOOK_COUNTY_SD", - "description": null, - "label": "MCCOOK COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCOOK_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCOOK_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCOOK_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCOOK_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCOOK_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCOOK_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCOOK_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCOOK_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERMILLION_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERMILLION_COUNTY_IN", - "description": null, - "label": "VERMILLION COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERMILLION_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERMILLION_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERMILLION_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERMILLION_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERMILLION_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERMILLION_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERMILLION_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERMILLION_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_KY", - "description": null, - "label": "LEWIS COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_SC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_SC", - "description": null, - "label": "UNION COUNTY SC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_SC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_SC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_SC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_SC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_SC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_SC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_SC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_SC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGHANY_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGHANY_COUNTY_VA", - "description": null, - "label": "ALLEGHANY COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGHANY_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGHANY_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGHANY_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGHANY_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGHANY_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGHANY_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGHANY_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGHANY_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_IA", - "description": null, - "label": "JONES COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOOD_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOOD_COUNTY_TX", - "description": null, - "label": "HOOD COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOOD_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOOD_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOOD_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOOD_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOOD_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOOD_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOOD_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOOD_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_NE", - "description": null, - "label": "JOHNSON COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_WV", - "description": null, - "label": "MASON COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLOUNT_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLOUNT_COUNTY_AL", - "description": null, - "label": "BLOUNT COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLOUNT_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLOUNT_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLOUNT_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLOUNT_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLOUNT_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLOUNT_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLOUNT_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLOUNT_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_IN", - "description": null, - "label": "BENTON COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEMUNG_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEMUNG_COUNTY_NY", - "description": null, - "label": "CHEMUNG COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEMUNG_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEMUNG_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEMUNG_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEMUNG_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEMUNG_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEMUNG_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEMUNG_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEMUNG_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PASCO_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PASCO_COUNTY_FL", - "description": null, - "label": "PASCO COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PASCO_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PASCO_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PASCO_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PASCO_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PASCO_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PASCO_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PASCO_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PASCO_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_MO", - "description": null, - "label": "JOHNSON COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_OK", - "description": null, - "label": "SHERMAN COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_IN", - "description": null, - "label": "CLAY COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IOWA_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IOWA_COUNTY_IA", - "description": null, - "label": "IOWA COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IOWA_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IOWA_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IOWA_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IOWA_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IOWA_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IOWA_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IOWA_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IOWA_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUDITH_BASIN_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUDITH_BASIN_COUNTY_MT", - "description": null, - "label": "JUDITH BASIN COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUDITH_BASIN_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUDITH_BASIN_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUDITH_BASIN_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUDITH_BASIN_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUDITH_BASIN_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUDITH_BASIN_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUDITH_BASIN_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUDITH_BASIN_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANTON_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANTON_COUNTY_NE", - "description": null, - "label": "STANTON COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANTON_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANTON_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANTON_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANTON_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANTON_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANTON_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANTON_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANTON_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_NJ": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_NJ", - "description": null, - "label": "ESSEX COUNTY NJ", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_NJ.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_NJ.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_NJ.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_NJ.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_NJ.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_NJ.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_NJ.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_NJ.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COSHOCTON_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COSHOCTON_COUNTY_OH", - "description": null, - "label": "COSHOCTON COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COSHOCTON_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COSHOCTON_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COSHOCTON_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COSHOCTON_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COSHOCTON_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COSHOCTON_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COSHOCTON_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COSHOCTON_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAINGER_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAINGER_COUNTY_TN", - "description": null, - "label": "GRAINGER COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAINGER_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAINGER_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAINGER_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAINGER_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAINGER_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAINGER_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAINGER_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAINGER_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINDHAM_COUNTY_VT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINDHAM_COUNTY_VT", - "description": null, - "label": "WINDHAM COUNTY VT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINDHAM_COUNTY_VT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINDHAM_COUNTY_VT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINDHAM_COUNTY_VT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINDHAM_COUNTY_VT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINDHAM_COUNTY_VT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINDHAM_COUNTY_VT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINDHAM_COUNTY_VT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINDHAM_COUNTY_VT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_OK", - "description": null, - "label": "LOGAN COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUDUBON_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUDUBON_COUNTY_IA", - "description": null, - "label": "AUDUBON COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUDUBON_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUDUBON_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUDUBON_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUDUBON_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUDUBON_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUDUBON_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUDUBON_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUDUBON_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEATLAND_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEATLAND_COUNTY_MT", - "description": null, - "label": "WHEATLAND COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEATLAND_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEATLAND_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEATLAND_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEATLAND_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEATLAND_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEATLAND_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEATLAND_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEATLAND_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DIXIE_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DIXIE_COUNTY_FL", - "description": null, - "label": "DIXIE COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DIXIE_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DIXIE_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DIXIE_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DIXIE_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DIXIE_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DIXIE_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DIXIE_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DIXIE_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLEMAN_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLEMAN_COUNTY_TX", - "description": null, - "label": "COLEMAN COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLEMAN_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLEMAN_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLEMAN_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLEMAN_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLEMAN_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLEMAN_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLEMAN_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLEMAN_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IBERIA_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IBERIA_PARISH_LA", - "description": null, - "label": "IBERIA PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IBERIA_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IBERIA_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IBERIA_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IBERIA_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IBERIA_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IBERIA_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IBERIA_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IBERIA_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILL_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILL_COUNTY_IL", - "description": null, - "label": "WILL COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILL_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILL_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILL_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILL_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILL_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILL_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILL_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILL_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_NH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_NH", - "description": null, - "label": "SULLIVAN COUNTY NH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_NH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_NH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_NH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_NH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_NH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_NH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_NH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_NH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROSCOMMON_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROSCOMMON_COUNTY_MI", - "description": null, - "label": "ROSCOMMON COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROSCOMMON_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROSCOMMON_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROSCOMMON_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROSCOMMON_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROSCOMMON_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROSCOMMON_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROSCOMMON_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROSCOMMON_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALCONA_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALCONA_COUNTY_MI", - "description": null, - "label": "ALCONA COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALCONA_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALCONA_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALCONA_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALCONA_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALCONA_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALCONA_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALCONA_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALCONA_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILLIPS_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILLIPS_COUNTY_CO", - "description": null, - "label": "PHILLIPS COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILLIPS_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILLIPS_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILLIPS_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILLIPS_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILLIPS_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILLIPS_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILLIPS_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILLIPS_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERGEN_COUNTY_NJ": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERGEN_COUNTY_NJ", - "description": null, - "label": "BERGEN COUNTY NJ", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERGEN_COUNTY_NJ.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERGEN_COUNTY_NJ.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERGEN_COUNTY_NJ.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERGEN_COUNTY_NJ.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERGEN_COUNTY_NJ.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERGEN_COUNTY_NJ.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERGEN_COUNTY_NJ.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERGEN_COUNTY_NJ.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_COUNTY_OH", - "description": null, - "label": "ALLEN COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAWSON_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAWSON_COUNTY_TX", - "description": null, - "label": "DAWSON COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAWSON_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAWSON_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAWSON_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAWSON_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAWSON_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAWSON_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAWSON_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAWSON_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALAMOSA_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALAMOSA_COUNTY_CO", - "description": null, - "label": "ALAMOSA COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALAMOSA_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALAMOSA_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALAMOSA_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALAMOSA_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALAMOSA_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALAMOSA_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALAMOSA_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALAMOSA_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTER_COUNTY_SC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTER_COUNTY_SC", - "description": null, - "label": "CHESTER COUNTY SC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTER_COUNTY_SC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTER_COUNTY_SC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTER_COUNTY_SC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTER_COUNTY_SC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTER_COUNTY_SC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTER_COUNTY_SC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTER_COUNTY_SC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTER_COUNTY_SC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_TN", - "description": null, - "label": "HOUSTON COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KLAMATH_COUNTY_OR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KLAMATH_COUNTY_OR", - "description": null, - "label": "KLAMATH COUNTY OR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KLAMATH_COUNTY_OR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KLAMATH_COUNTY_OR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KLAMATH_COUNTY_OR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KLAMATH_COUNTY_OR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KLAMATH_COUNTY_OR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KLAMATH_COUNTY_OR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KLAMATH_COUNTY_OR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KLAMATH_COUNTY_OR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLADES_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLADES_COUNTY_FL", - "description": null, - "label": "GLADES COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLADES_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLADES_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLADES_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLADES_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLADES_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLADES_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLADES_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLADES_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAGE_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAGE_COUNTY_VA", - "description": null, - "label": "PAGE COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAGE_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAGE_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAGE_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAGE_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAGE_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAGE_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAGE_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAGE_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESOTO_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESOTO_COUNTY_FL", - "description": null, - "label": "DESOTO COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESOTO_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESOTO_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESOTO_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESOTO_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESOTO_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESOTO_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESOTO_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESOTO_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANITOWOC_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANITOWOC_COUNTY_WI", - "description": null, - "label": "MANITOWOC COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANITOWOC_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANITOWOC_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANITOWOC_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANITOWOC_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANITOWOC_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANITOWOC_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANITOWOC_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANITOWOC_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEPHENS_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEPHENS_COUNTY_GA", - "description": null, - "label": "STEPHENS COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEPHENS_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEPHENS_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEPHENS_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEPHENS_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEPHENS_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEPHENS_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEPHENS_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEPHENS_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_MARTIN_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_MARTIN_PARISH_LA", - "description": null, - "label": "ST MARTIN PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_MARTIN_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_MARTIN_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_MARTIN_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_MARTIN_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_MARTIN_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_MARTIN_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_MARTIN_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_MARTIN_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_MO", - "description": null, - "label": "MORGAN COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_IL", - "description": null, - "label": "SALINE COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TODD_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TODD_COUNTY_NE", - "description": null, - "label": "TODD COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TODD_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TODD_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TODD_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TODD_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TODD_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TODD_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TODD_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TODD_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARENAC_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARENAC_COUNTY_MI", - "description": null, - "label": "ARENAC COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARENAC_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARENAC_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARENAC_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARENAC_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARENAC_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARENAC_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARENAC_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARENAC_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHOSHONE_COUNTY_ID": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHOSHONE_COUNTY_ID", - "description": null, - "label": "SHOSHONE COUNTY ID", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHOSHONE_COUNTY_ID.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHOSHONE_COUNTY_ID.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHOSHONE_COUNTY_ID.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHOSHONE_COUNTY_ID.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHOSHONE_COUNTY_ID.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHOSHONE_COUNTY_ID.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHOSHONE_COUNTY_ID.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHOSHONE_COUNTY_ID.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANCASTER_COUNTY_SC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANCASTER_COUNTY_SC", - "description": null, - "label": "LANCASTER COUNTY SC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANCASTER_COUNTY_SC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANCASTER_COUNTY_SC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANCASTER_COUNTY_SC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANCASTER_COUNTY_SC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANCASTER_COUNTY_SC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANCASTER_COUNTY_SC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANCASTER_COUNTY_SC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANCASTER_COUNTY_SC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_IN", - "description": null, - "label": "MADISON COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLACK_HAWK_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLACK_HAWK_COUNTY_IA", - "description": null, - "label": "BLACK HAWK COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLACK_HAWK_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLACK_HAWK_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLACK_HAWK_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLACK_HAWK_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLACK_HAWK_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLACK_HAWK_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLACK_HAWK_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLACK_HAWK_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDEMAN_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDEMAN_COUNTY_TN", - "description": null, - "label": "HARDEMAN COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDEMAN_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDEMAN_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDEMAN_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDEMAN_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDEMAN_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDEMAN_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDEMAN_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDEMAN_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_MO", - "description": null, - "label": "JACKSON COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_IN", - "description": null, - "label": "DELAWARE COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATOOSA_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATOOSA_COUNTY_GA", - "description": null, - "label": "CATOOSA COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATOOSA_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATOOSA_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATOOSA_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATOOSA_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATOOSA_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATOOSA_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATOOSA_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATOOSA_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAVER_COUNTY_UT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAVER_COUNTY_UT", - "description": null, - "label": "BEAVER COUNTY UT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAVER_COUNTY_UT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAVER_COUNTY_UT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAVER_COUNTY_UT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAVER_COUNTY_UT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAVER_COUNTY_UT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAVER_COUNTY_UT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAVER_COUNTY_UT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAVER_COUNTY_UT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_VT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_VT", - "description": null, - "label": "FRANKLIN COUNTY VT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_VT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_VT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_VT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_VT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_VT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_VT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_VT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_VT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUSTIN_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUSTIN_COUNTY_TX", - "description": null, - "label": "AUSTIN COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUSTIN_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUSTIN_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUSTIN_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUSTIN_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUSTIN_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUSTIN_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUSTIN_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUSTIN_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDDY_COUNTY_NM": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDDY_COUNTY_NM", - "description": null, - "label": "EDDY COUNTY NM", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDDY_COUNTY_NM.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDDY_COUNTY_NM.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDDY_COUNTY_NM.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDDY_COUNTY_NM.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDDY_COUNTY_NM.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDDY_COUNTY_NM.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDDY_COUNTY_NM.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDDY_COUNTY_NM.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_TN", - "description": null, - "label": "FULTON COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKEECHOBEE_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKEECHOBEE_COUNTY_FL", - "description": null, - "label": "OKEECHOBEE COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKEECHOBEE_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKEECHOBEE_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKEECHOBEE_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKEECHOBEE_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKEECHOBEE_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKEECHOBEE_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKEECHOBEE_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKEECHOBEE_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_ID": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_ID", - "description": null, - "label": "ADAMS COUNTY ID", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_ID.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_ID.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_ID.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_ID.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_ID.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_ID.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_ID.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_ID.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_WI", - "description": null, - "label": "GRANT COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALLACE_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALLACE_COUNTY_KS", - "description": null, - "label": "WALLACE COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALLACE_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALLACE_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALLACE_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALLACE_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALLACE_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALLACE_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALLACE_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALLACE_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHRISTIAN_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHRISTIAN_COUNTY_KY", - "description": null, - "label": "CHRISTIAN COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHRISTIAN_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHRISTIAN_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHRISTIAN_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHRISTIAN_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHRISTIAN_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHRISTIAN_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHRISTIAN_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHRISTIAN_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_AL", - "description": null, - "label": "HOUSTON COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NELSON_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NELSON_COUNTY_ND", - "description": null, - "label": "NELSON COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NELSON_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NELSON_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NELSON_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NELSON_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NELSON_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NELSON_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NELSON_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NELSON_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRINITY_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRINITY_COUNTY_TX", - "description": null, - "label": "TRINITY COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRINITY_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRINITY_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRINITY_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRINITY_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRINITY_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRINITY_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRINITY_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRINITY_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ERATH_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ERATH_COUNTY_TX", - "description": null, - "label": "ERATH COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ERATH_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ERATH_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ERATH_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ERATH_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ERATH_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ERATH_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ERATH_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ERATH_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRIMBLE_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRIMBLE_COUNTY_KY", - "description": null, - "label": "TRIMBLE COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRIMBLE_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRIMBLE_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRIMBLE_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRIMBLE_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRIMBLE_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRIMBLE_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRIMBLE_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRIMBLE_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLER_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLER_COUNTY_TX", - "description": null, - "label": "MILLER COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLER_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLER_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLER_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLER_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLER_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLER_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLER_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLER_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OWEN_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OWEN_COUNTY_KY", - "description": null, - "label": "OWEN COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OWEN_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OWEN_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OWEN_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OWEN_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OWEN_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OWEN_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OWEN_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OWEN_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARK_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARK_COUNTY_OH", - "description": null, - "label": "STARK COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARK_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARK_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARK_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARK_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARK_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARK_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARK_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARK_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_NY", - "description": null, - "label": "LEWIS COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESMERALDA_COUNTY_NV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESMERALDA_COUNTY_NV", - "description": null, - "label": "ESMERALDA COUNTY NV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESMERALDA_COUNTY_NV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESMERALDA_COUNTY_NV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESMERALDA_COUNTY_NV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESMERALDA_COUNTY_NV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESMERALDA_COUNTY_NV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESMERALDA_COUNTY_NV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESMERALDA_COUNTY_NV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESMERALDA_COUNTY_NV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DIVIDE_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DIVIDE_COUNTY_ND", - "description": null, - "label": "DIVIDE COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DIVIDE_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DIVIDE_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DIVIDE_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DIVIDE_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DIVIDE_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DIVIDE_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DIVIDE_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DIVIDE_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_OK", - "description": null, - "label": "CARTER COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_VA", - "description": null, - "label": "CAMPBELL COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGLALA_LAKOTA_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGLALA_LAKOTA_COUNTY_NE", - "description": null, - "label": "OGLALA LAKOTA COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGLALA_LAKOTA_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGLALA_LAKOTA_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGLALA_LAKOTA_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGLALA_LAKOTA_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGLALA_LAKOTA_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGLALA_LAKOTA_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGLALA_LAKOTA_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGLALA_LAKOTA_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEVADA_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEVADA_COUNTY_CA", - "description": null, - "label": "NEVADA COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEVADA_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEVADA_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEVADA_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEVADA_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEVADA_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEVADA_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEVADA_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEVADA_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_TX", - "description": null, - "label": "ANDERSON COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_TX", - "description": null, - "label": "SHERMAN COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROWAN_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROWAN_COUNTY_KY", - "description": null, - "label": "ROWAN COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROWAN_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROWAN_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROWAN_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROWAN_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROWAN_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROWAN_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROWAN_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROWAN_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_WA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_WA", - "description": null, - "label": "COLUMBIA COUNTY WA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_WA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_WA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_WA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_WA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_WA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_WA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_WA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_WA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_GA", - "description": null, - "label": "MARION COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_TN", - "description": null, - "label": "JEFFERSON COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISLAND_COUNTY_WA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISLAND_COUNTY_WA", - "description": null, - "label": "ISLAND COUNTY WA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISLAND_COUNTY_WA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISLAND_COUNTY_WA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISLAND_COUNTY_WA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISLAND_COUNTY_WA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISLAND_COUNTY_WA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISLAND_COUNTY_WA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISLAND_COUNTY_WA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISLAND_COUNTY_WA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLYMOUTH_COUNTY_MA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLYMOUTH_COUNTY_MA", - "description": null, - "label": "PLYMOUTH COUNTY MA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLYMOUTH_COUNTY_MA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLYMOUTH_COUNTY_MA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLYMOUTH_COUNTY_MA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLYMOUTH_COUNTY_MA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLYMOUTH_COUNTY_MA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLYMOUTH_COUNTY_MA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLYMOUTH_COUNTY_MA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLYMOUTH_COUNTY_MA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAPIDES_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAPIDES_PARISH_LA", - "description": null, - "label": "RAPIDES PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAPIDES_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAPIDES_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAPIDES_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAPIDES_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAPIDES_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAPIDES_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAPIDES_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAPIDES_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGANY_COUNTY_MD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGANY_COUNTY_MD", - "description": null, - "label": "ALLEGANY COUNTY MD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGANY_COUNTY_MD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGANY_COUNTY_MD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGANY_COUNTY_MD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGANY_COUNTY_MD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGANY_COUNTY_MD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGANY_COUNTY_MD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGANY_COUNTY_MD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGANY_COUNTY_MD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_IL", - "description": null, - "label": "MARSHALL COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CIMARRON_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CIMARRON_COUNTY_OK", - "description": null, - "label": "CIMARRON COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CIMARRON_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CIMARRON_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CIMARRON_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CIMARRON_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CIMARRON_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CIMARRON_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CIMARRON_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CIMARRON_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALLATIN_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALLATIN_COUNTY_IL", - "description": null, - "label": "GALLATIN COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALLATIN_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALLATIN_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALLATIN_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALLATIN_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALLATIN_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALLATIN_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALLATIN_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALLATIN_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_GA", - "description": null, - "label": "UNION COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_IA", - "description": null, - "label": "CLAY COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_PA", - "description": null, - "label": "ADAMS COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFAX_CITY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFAX_CITY_VA", - "description": null, - "label": "FAIRFAX CITY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFAX_CITY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFAX_CITY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFAX_CITY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFAX_CITY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFAX_CITY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFAX_CITY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFAX_CITY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFAX_CITY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_AR", - "description": null, - "label": "FRANKLIN COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_PA", - "description": null, - "label": "PIKE COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RALEIGH_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RALEIGH_COUNTY_WV", - "description": null, - "label": "RALEIGH COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RALEIGH_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RALEIGH_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RALEIGH_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RALEIGH_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RALEIGH_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RALEIGH_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RALEIGH_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RALEIGH_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_PARISH_LA", - "description": null, - "label": "LIVINGSTON PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALL_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALL_COUNTY_GA", - "description": null, - "label": "HALL COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALL_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALL_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALL_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALL_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALL_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALL_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALL_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALL_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_FORKS_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_FORKS_COUNTY_ND", - "description": null, - "label": "GRAND FORKS COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_FORKS_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_FORKS_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_FORKS_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_FORKS_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_FORKS_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_FORKS_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_FORKS_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_FORKS_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_OH", - "description": null, - "label": "CLARK COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOSA_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOSA_COUNTY_AL", - "description": null, - "label": "COOSA COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOSA_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOSA_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOSA_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOSA_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOSA_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOSA_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOSA_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOSA_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYNN_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYNN_COUNTY_TX", - "description": null, - "label": "LYNN COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYNN_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYNN_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYNN_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYNN_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYNN_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYNN_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYNN_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYNN_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUITMAN_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUITMAN_COUNTY_MS", - "description": null, - "label": "QUITMAN COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUITMAN_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUITMAN_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUITMAN_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUITMAN_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUITMAN_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUITMAN_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUITMAN_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUITMAN_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NATCHITOCHES_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NATCHITOCHES_PARISH_LA", - "description": null, - "label": "NATCHITOCHES PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NATCHITOCHES_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NATCHITOCHES_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NATCHITOCHES_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NATCHITOCHES_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NATCHITOCHES_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NATCHITOCHES_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NATCHITOCHES_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NATCHITOCHES_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POSEY_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POSEY_COUNTY_IN", - "description": null, - "label": "POSEY COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POSEY_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POSEY_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POSEY_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POSEY_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POSEY_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POSEY_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POSEY_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POSEY_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERSET_COUNTY_MD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERSET_COUNTY_MD", - "description": null, - "label": "SOMERSET COUNTY MD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERSET_COUNTY_MD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERSET_COUNTY_MD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERSET_COUNTY_MD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERSET_COUNTY_MD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERSET_COUNTY_MD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERSET_COUNTY_MD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERSET_COUNTY_MD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERSET_COUNTY_MD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STILLWATER_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STILLWATER_COUNTY_MT", - "description": null, - "label": "STILLWATER COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STILLWATER_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STILLWATER_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STILLWATER_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STILLWATER_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STILLWATER_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STILLWATER_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STILLWATER_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STILLWATER_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JIM_WELLS_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JIM_WELLS_COUNTY_TX", - "description": null, - "label": "JIM WELLS COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JIM_WELLS_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JIM_WELLS_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JIM_WELLS_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JIM_WELLS_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JIM_WELLS_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JIM_WELLS_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JIM_WELLS_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JIM_WELLS_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YUKON_KOYUKUK_CENSUS_AREA_AK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YUKON_KOYUKUK_CENSUS_AREA_AK", - "description": null, - "label": "YUKON KOYUKUK CENSUS AREA AK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YUKON_KOYUKUK_CENSUS_AREA_AK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YUKON_KOYUKUK_CENSUS_AREA_AK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YUKON_KOYUKUK_CENSUS_AREA_AK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YUKON_KOYUKUK_CENSUS_AREA_AK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YUKON_KOYUKUK_CENSUS_AREA_AK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YUKON_KOYUKUK_CENSUS_AREA_AK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YUKON_KOYUKUK_CENSUS_AREA_AK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YUKON_KOYUKUK_CENSUS_AREA_AK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAZEWELL_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAZEWELL_COUNTY_VA", - "description": null, - "label": "TAZEWELL COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAZEWELL_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAZEWELL_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAZEWELL_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAZEWELL_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAZEWELL_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAZEWELL_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAZEWELL_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAZEWELL_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WELLS_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WELLS_COUNTY_ND", - "description": null, - "label": "WELLS COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WELLS_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WELLS_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WELLS_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WELLS_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WELLS_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WELLS_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WELLS_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WELLS_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOYD_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOYD_COUNTY_NE", - "description": null, - "label": "BOYD COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOYD_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOYD_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOYD_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOYD_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOYD_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOYD_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOYD_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOYD_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEVELAND_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEVELAND_COUNTY_OK", - "description": null, - "label": "CLEVELAND COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEVELAND_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEVELAND_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEVELAND_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEVELAND_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEVELAND_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEVELAND_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEVELAND_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEVELAND_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAILEY_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAILEY_COUNTY_TX", - "description": null, - "label": "BAILEY COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAILEY_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAILEY_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAILEY_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAILEY_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAILEY_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAILEY_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAILEY_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAILEY_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.REDWOOD_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.REDWOOD_COUNTY_MN", - "description": null, - "label": "REDWOOD COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.REDWOOD_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.REDWOOD_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.REDWOOD_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.REDWOOD_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.REDWOOD_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.REDWOOD_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.REDWOOD_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.REDWOOD_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_KY", - "description": null, - "label": "JOHNSON COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERKELEY_COUNTY_SC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERKELEY_COUNTY_SC", - "description": null, - "label": "BERKELEY COUNTY SC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERKELEY_COUNTY_SC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERKELEY_COUNTY_SC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERKELEY_COUNTY_SC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERKELEY_COUNTY_SC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERKELEY_COUNTY_SC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERKELEY_COUNTY_SC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERKELEY_COUNTY_SC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERKELEY_COUNTY_SC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEORIA_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEORIA_COUNTY_IL", - "description": null, - "label": "PEORIA COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEORIA_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEORIA_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEORIA_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEORIA_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEORIA_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEORIA_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEORIA_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEORIA_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_OH", - "description": null, - "label": "MONTGOMERY COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_TN", - "description": null, - "label": "JOHNSON COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLOUCESTER_COUNTY_NJ": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLOUCESTER_COUNTY_NJ", - "description": null, - "label": "GLOUCESTER COUNTY NJ", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLOUCESTER_COUNTY_NJ.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLOUCESTER_COUNTY_NJ.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLOUCESTER_COUNTY_NJ.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLOUCESTER_COUNTY_NJ.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLOUCESTER_COUNTY_NJ.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLOUCESTER_COUNTY_NJ.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLOUCESTER_COUNTY_NJ.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLOUCESTER_COUNTY_NJ.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_IL", - "description": null, - "label": "CLARK COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANSON_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANSON_COUNTY_SD", - "description": null, - "label": "HANSON COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANSON_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANSON_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANSON_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANSON_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANSON_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANSON_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANSON_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANSON_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VENTURA_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VENTURA_COUNTY_CA", - "description": null, - "label": "VENTURA COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VENTURA_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VENTURA_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VENTURA_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VENTURA_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VENTURA_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VENTURA_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VENTURA_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VENTURA_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEST_CARROLL_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEST_CARROLL_PARISH_LA", - "description": null, - "label": "WEST CARROLL PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEST_CARROLL_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEST_CARROLL_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEST_CARROLL_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEST_CARROLL_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEST_CARROLL_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEST_CARROLL_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEST_CARROLL_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEST_CARROLL_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JERSEY_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JERSEY_COUNTY_IL", - "description": null, - "label": "JERSEY COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JERSEY_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JERSEY_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JERSEY_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JERSEY_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JERSEY_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JERSEY_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JERSEY_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JERSEY_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_ID": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_ID", - "description": null, - "label": "CLARK COUNTY ID", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_ID.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_ID.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_ID.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_ID.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_ID.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_ID.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_ID.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_ID.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_MI", - "description": null, - "label": "MASON COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILLSBOROUGH_COUNTY_NH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILLSBOROUGH_COUNTY_NH", - "description": null, - "label": "HILLSBOROUGH COUNTY NH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILLSBOROUGH_COUNTY_NH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILLSBOROUGH_COUNTY_NH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILLSBOROUGH_COUNTY_NH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILLSBOROUGH_COUNTY_NH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILLSBOROUGH_COUNTY_NH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILLSBOROUGH_COUNTY_NH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILLSBOROUGH_COUNTY_NH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILLSBOROUGH_COUNTY_NH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_WI", - "description": null, - "label": "MONROE COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARTON_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARTON_COUNTY_KS", - "description": null, - "label": "BARTON COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARTON_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARTON_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARTON_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARTON_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARTON_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARTON_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARTON_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARTON_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACKINAC_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACKINAC_COUNTY_MI", - "description": null, - "label": "MACKINAC COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACKINAC_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACKINAC_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACKINAC_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACKINAC_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACKINAC_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACKINAC_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACKINAC_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACKINAC_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIMESTONE_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIMESTONE_COUNTY_TX", - "description": null, - "label": "LIMESTONE COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIMESTONE_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIMESTONE_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIMESTONE_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIMESTONE_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIMESTONE_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIMESTONE_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIMESTONE_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIMESTONE_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARR_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARR_COUNTY_TX", - "description": null, - "label": "STARR COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARR_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARR_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARR_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARR_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARR_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARR_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARR_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARR_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NODAWAY_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NODAWAY_COUNTY_MO", - "description": null, - "label": "NODAWAY COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NODAWAY_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NODAWAY_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NODAWAY_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NODAWAY_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NODAWAY_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NODAWAY_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NODAWAY_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NODAWAY_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARRY_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARRY_COUNTY_MI", - "description": null, - "label": "BARRY COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARRY_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARRY_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARRY_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARRY_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARRY_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARRY_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARRY_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARRY_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_FRANCIS_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_FRANCIS_COUNTY_AR", - "description": null, - "label": "ST FRANCIS COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_FRANCIS_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_FRANCIS_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_FRANCIS_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_FRANCIS_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_FRANCIS_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_FRANCIS_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_FRANCIS_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_FRANCIS_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PINAL_COUNTY_AZ": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PINAL_COUNTY_AZ", - "description": null, - "label": "PINAL COUNTY AZ", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PINAL_COUNTY_AZ.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PINAL_COUNTY_AZ.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PINAL_COUNTY_AZ.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PINAL_COUNTY_AZ.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PINAL_COUNTY_AZ.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PINAL_COUNTY_AZ.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PINAL_COUNTY_AZ.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PINAL_COUNTY_AZ.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_GA", - "description": null, - "label": "JONES COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SENECA_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SENECA_COUNTY_NY", - "description": null, - "label": "SENECA COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SENECA_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SENECA_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SENECA_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SENECA_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SENECA_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SENECA_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SENECA_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SENECA_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_WI", - "description": null, - "label": "PIERCE COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_AR", - "description": null, - "label": "GRANT COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_WV", - "description": null, - "label": "LINCOLN COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RENVILLE_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RENVILLE_COUNTY_ND", - "description": null, - "label": "RENVILLE COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RENVILLE_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RENVILLE_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RENVILLE_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RENVILLE_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RENVILLE_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RENVILLE_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RENVILLE_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RENVILLE_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LASSEN_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LASSEN_COUNTY_CA", - "description": null, - "label": "LASSEN COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LASSEN_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LASSEN_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LASSEN_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LASSEN_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LASSEN_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LASSEN_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LASSEN_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LASSEN_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTROSE_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTROSE_COUNTY_CO", - "description": null, - "label": "MONTROSE COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTROSE_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTROSE_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTROSE_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTROSE_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTROSE_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTROSE_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTROSE_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTROSE_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WRIGHT_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WRIGHT_COUNTY_MO", - "description": null, - "label": "WRIGHT COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WRIGHT_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WRIGHT_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WRIGHT_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WRIGHT_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WRIGHT_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WRIGHT_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WRIGHT_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WRIGHT_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_MO", - "description": null, - "label": "MONTGOMERY COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREEN_LAKE_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREEN_LAKE_COUNTY_WI", - "description": null, - "label": "GREEN LAKE COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREEN_LAKE_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREEN_LAKE_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREEN_LAKE_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREEN_LAKE_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREEN_LAKE_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREEN_LAKE_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREEN_LAKE_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREEN_LAKE_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_GA", - "description": null, - "label": "MITCHELL COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_IA", - "description": null, - "label": "MONROE COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_MI", - "description": null, - "label": "CASS COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YUBA_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YUBA_COUNTY_CA", - "description": null, - "label": "YUBA COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YUBA_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YUBA_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YUBA_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YUBA_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YUBA_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YUBA_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YUBA_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YUBA_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUENA_VISTA_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUENA_VISTA_COUNTY_IA", - "description": null, - "label": "BUENA VISTA COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUENA_VISTA_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUENA_VISTA_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUENA_VISTA_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUENA_VISTA_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUENA_VISTA_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUENA_VISTA_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUENA_VISTA_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUENA_VISTA_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_GA", - "description": null, - "label": "HENRY COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROGERS_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROGERS_COUNTY_OK", - "description": null, - "label": "ROGERS COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROGERS_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROGERS_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROGERS_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROGERS_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROGERS_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROGERS_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROGERS_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROGERS_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTERO_COUNTY_NM": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTERO_COUNTY_NM", - "description": null, - "label": "OTERO COUNTY NM", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTERO_COUNTY_NM.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTERO_COUNTY_NM.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTERO_COUNTY_NM.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTERO_COUNTY_NM.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTERO_COUNTY_NM.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTERO_COUNTY_NM.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTERO_COUNTY_NM.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTERO_COUNTY_NM.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCURTAIN_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCURTAIN_COUNTY_OK", - "description": null, - "label": "MCCURTAIN COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCURTAIN_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCURTAIN_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCURTAIN_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCURTAIN_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCURTAIN_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCURTAIN_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCURTAIN_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCURTAIN_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_OH", - "description": null, - "label": "MERCER COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELK_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELK_COUNTY_PA", - "description": null, - "label": "ELK COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELK_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELK_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELK_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELK_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELK_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELK_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELK_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELK_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WABAUNSEE_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WABAUNSEE_COUNTY_KS", - "description": null, - "label": "WABAUNSEE COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WABAUNSEE_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WABAUNSEE_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WABAUNSEE_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WABAUNSEE_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WABAUNSEE_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WABAUNSEE_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WABAUNSEE_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WABAUNSEE_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_MN", - "description": null, - "label": "POLK COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUGHES_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUGHES_COUNTY_OK", - "description": null, - "label": "HUGHES COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUGHES_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUGHES_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUGHES_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUGHES_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUGHES_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUGHES_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUGHES_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUGHES_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_AR", - "description": null, - "label": "NEWTON COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAVALIER_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAVALIER_COUNTY_ND", - "description": null, - "label": "CAVALIER COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAVALIER_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAVALIER_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAVALIER_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAVALIER_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAVALIER_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAVALIER_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAVALIER_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAVALIER_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARBON_COUNTY_UT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARBON_COUNTY_UT", - "description": null, - "label": "CARBON COUNTY UT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARBON_COUNTY_UT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARBON_COUNTY_UT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARBON_COUNTY_UT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARBON_COUNTY_UT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARBON_COUNTY_UT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARBON_COUNTY_UT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARBON_COUNTY_UT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARBON_COUNTY_UT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAKER_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAKER_COUNTY_FL", - "description": null, - "label": "BAKER COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAKER_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAKER_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAKER_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAKER_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAKER_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAKER_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAKER_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAKER_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKENS_COUNTY_SC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKENS_COUNTY_SC", - "description": null, - "label": "PICKENS COUNTY SC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKENS_COUNTY_SC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKENS_COUNTY_SC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKENS_COUNTY_SC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKENS_COUNTY_SC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKENS_COUNTY_SC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKENS_COUNTY_SC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKENS_COUNTY_SC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKENS_COUNTY_SC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_FE_COUNTY_NM": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_FE_COUNTY_NM", - "description": null, - "label": "SANTA FE COUNTY NM", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_FE_COUNTY_NM.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_FE_COUNTY_NM.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_FE_COUNTY_NM.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_FE_COUNTY_NM.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_FE_COUNTY_NM.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_FE_COUNTY_NM.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_FE_COUNTY_NM.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_FE_COUNTY_NM.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_KY", - "description": null, - "label": "FAYETTE COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERMILION_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERMILION_PARISH_LA", - "description": null, - "label": "VERMILION PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERMILION_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERMILION_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERMILION_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERMILION_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERMILION_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERMILION_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERMILION_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERMILION_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_TX", - "description": null, - "label": "BROWN COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_OH", - "description": null, - "label": "ADAMS COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_KY", - "description": null, - "label": "ANDERSON COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_IA", - "description": null, - "label": "CHEROKEE COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOWIE_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOWIE_COUNTY_TX", - "description": null, - "label": "BOWIE COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOWIE_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOWIE_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOWIE_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOWIE_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOWIE_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOWIE_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOWIE_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOWIE_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIMPSON_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIMPSON_COUNTY_KY", - "description": null, - "label": "SIMPSON COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIMPSON_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIMPSON_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIMPSON_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIMPSON_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIMPSON_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIMPSON_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIMPSON_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIMPSON_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKENS_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKENS_COUNTY_GA", - "description": null, - "label": "PICKENS COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKENS_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKENS_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKENS_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKENS_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKENS_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKENS_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKENS_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKENS_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARQUETTE_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARQUETTE_COUNTY_MI", - "description": null, - "label": "MARQUETTE COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARQUETTE_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARQUETTE_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARQUETTE_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARQUETTE_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARQUETTE_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARQUETTE_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARQUETTE_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARQUETTE_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRITTENDEN_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRITTENDEN_COUNTY_KY", - "description": null, - "label": "CRITTENDEN COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRITTENDEN_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRITTENDEN_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRITTENDEN_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRITTENDEN_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRITTENDEN_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRITTENDEN_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRITTENDEN_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRITTENDEN_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICE_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICE_COUNTY_KS", - "description": null, - "label": "RICE COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICE_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICE_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICE_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICE_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICE_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICE_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICE_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICE_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_OH", - "description": null, - "label": "DELAWARE COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LASALLE_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LASALLE_COUNTY_IL", - "description": null, - "label": "LASALLE COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LASALLE_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LASALLE_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LASALLE_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LASALLE_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LASALLE_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LASALLE_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LASALLE_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LASALLE_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEA_COUNTY_NM": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEA_COUNTY_NM", - "description": null, - "label": "LEA COUNTY NM", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEA_COUNTY_NM.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEA_COUNTY_NM.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEA_COUNTY_NM.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEA_COUNTY_NM.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEA_COUNTY_NM.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEA_COUNTY_NM.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEA_COUNTY_NM.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEA_COUNTY_NM.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUERNSEY_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUERNSEY_COUNTY_OH", - "description": null, - "label": "GUERNSEY COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUERNSEY_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUERNSEY_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUERNSEY_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUERNSEY_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUERNSEY_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUERNSEY_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUERNSEY_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUERNSEY_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COMANCHE_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COMANCHE_COUNTY_OK", - "description": null, - "label": "COMANCHE COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COMANCHE_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COMANCHE_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COMANCHE_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COMANCHE_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COMANCHE_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COMANCHE_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COMANCHE_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COMANCHE_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_OK", - "description": null, - "label": "GRANT COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_WI", - "description": null, - "label": "COLUMBIA COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YELLOW_MEDICINE_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YELLOW_MEDICINE_COUNTY_MN", - "description": null, - "label": "YELLOW MEDICINE COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YELLOW_MEDICINE_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YELLOW_MEDICINE_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YELLOW_MEDICINE_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YELLOW_MEDICINE_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YELLOW_MEDICINE_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YELLOW_MEDICINE_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YELLOW_MEDICINE_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YELLOW_MEDICINE_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOT_SPRINGS_COUNTY_WY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOT_SPRINGS_COUNTY_WY", - "description": null, - "label": "HOT SPRINGS COUNTY WY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOT_SPRINGS_COUNTY_WY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOT_SPRINGS_COUNTY_WY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOT_SPRINGS_COUNTY_WY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOT_SPRINGS_COUNTY_WY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOT_SPRINGS_COUNTY_WY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOT_SPRINGS_COUNTY_WY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOT_SPRINGS_COUNTY_WY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOT_SPRINGS_COUNTY_WY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSAGE_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSAGE_COUNTY_MO", - "description": null, - "label": "OSAGE COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSAGE_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSAGE_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSAGE_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSAGE_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSAGE_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSAGE_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSAGE_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSAGE_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OUACHITA_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OUACHITA_COUNTY_AR", - "description": null, - "label": "OUACHITA COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OUACHITA_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OUACHITA_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OUACHITA_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OUACHITA_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OUACHITA_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OUACHITA_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OUACHITA_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OUACHITA_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLADWIN_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLADWIN_COUNTY_MI", - "description": null, - "label": "GLADWIN COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLADWIN_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLADWIN_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLADWIN_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLADWIN_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLADWIN_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLADWIN_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLADWIN_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLADWIN_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYANDOT_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYANDOT_COUNTY_OH", - "description": null, - "label": "WYANDOT COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYANDOT_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYANDOT_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYANDOT_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYANDOT_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYANDOT_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYANDOT_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYANDOT_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYANDOT_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALUMET_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALUMET_COUNTY_WI", - "description": null, - "label": "CALUMET COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALUMET_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALUMET_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALUMET_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALUMET_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALUMET_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALUMET_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALUMET_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALUMET_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_IL", - "description": null, - "label": "JACKSON COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_KY", - "description": null, - "label": "PIKE COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAROLINE_COUNTY_MD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAROLINE_COUNTY_MD", - "description": null, - "label": "CAROLINE COUNTY MD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAROLINE_COUNTY_MD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAROLINE_COUNTY_MD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAROLINE_COUNTY_MD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAROLINE_COUNTY_MD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAROLINE_COUNTY_MD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAROLINE_COUNTY_MD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAROLINE_COUNTY_MD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAROLINE_COUNTY_MD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNICOI_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNICOI_COUNTY_TN", - "description": null, - "label": "UNICOI COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNICOI_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNICOI_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNICOI_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNICOI_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNICOI_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNICOI_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNICOI_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNICOI_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAYWOOD_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAYWOOD_COUNTY_TN", - "description": null, - "label": "HAYWOOD COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAYWOOD_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAYWOOD_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAYWOOD_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAYWOOD_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAYWOOD_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAYWOOD_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAYWOOD_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAYWOOD_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUDSPETH_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUDSPETH_COUNTY_TX", - "description": null, - "label": "HUDSPETH COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUDSPETH_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUDSPETH_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUDSPETH_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUDSPETH_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUDSPETH_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUDSPETH_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUDSPETH_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUDSPETH_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAUQUIER_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAUQUIER_COUNTY_VA", - "description": null, - "label": "FAUQUIER COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAUQUIER_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAUQUIER_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAUQUIER_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAUQUIER_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAUQUIER_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAUQUIER_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAUQUIER_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAUQUIER_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMTER_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMTER_COUNTY_FL", - "description": null, - "label": "SUMTER COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMTER_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMTER_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMTER_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMTER_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMTER_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMTER_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMTER_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMTER_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMDEN_COUNTY_NJ": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMDEN_COUNTY_NJ", - "description": null, - "label": "CAMDEN COUNTY NJ", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMDEN_COUNTY_NJ.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMDEN_COUNTY_NJ.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMDEN_COUNTY_NJ.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMDEN_COUNTY_NJ.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMDEN_COUNTY_NJ.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMDEN_COUNTY_NJ.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMDEN_COUNTY_NJ.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMDEN_COUNTY_NJ.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_AR", - "description": null, - "label": "WASHINGTON COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_TX", - "description": null, - "label": "MASON COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKINGHAM_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKINGHAM_COUNTY_VA", - "description": null, - "label": "ROCKINGHAM COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKINGHAM_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKINGHAM_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKINGHAM_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKINGHAM_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKINGHAM_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKINGHAM_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKINGHAM_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKINGHAM_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TENSAS_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TENSAS_PARISH_LA", - "description": null, - "label": "TENSAS PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TENSAS_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TENSAS_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TENSAS_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TENSAS_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TENSAS_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TENSAS_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TENSAS_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TENSAS_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILSON_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILSON_COUNTY_TX", - "description": null, - "label": "WILSON COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILSON_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILSON_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILSON_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILSON_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILSON_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILSON_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILSON_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILSON_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOOLY_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOOLY_COUNTY_GA", - "description": null, - "label": "DOOLY COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOOLY_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOOLY_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOOLY_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOOLY_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOOLY_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOOLY_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOOLY_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOOLY_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_TN", - "description": null, - "label": "MARSHALL COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORA_COUNTY_NM": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORA_COUNTY_NM", - "description": null, - "label": "MORA COUNTY NM", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORA_COUNTY_NM.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORA_COUNTY_NM.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORA_COUNTY_NM.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORA_COUNTY_NM.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORA_COUNTY_NM.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORA_COUNTY_NM.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORA_COUNTY_NM.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORA_COUNTY_NM.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENEWAH_COUNTY_ID": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENEWAH_COUNTY_ID", - "description": null, - "label": "BENEWAH COUNTY ID", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENEWAH_COUNTY_ID.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENEWAH_COUNTY_ID.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENEWAH_COUNTY_ID.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENEWAH_COUNTY_ID.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENEWAH_COUNTY_ID.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENEWAH_COUNTY_ID.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENEWAH_COUNTY_ID.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENEWAH_COUNTY_ID.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESCHUTES_COUNTY_OR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESCHUTES_COUNTY_OR", - "description": null, - "label": "DESCHUTES COUNTY OR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESCHUTES_COUNTY_OR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESCHUTES_COUNTY_OR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESCHUTES_COUNTY_OR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESCHUTES_COUNTY_OR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESCHUTES_COUNTY_OR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESCHUTES_COUNTY_OR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESCHUTES_COUNTY_OR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESCHUTES_COUNTY_OR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_KY", - "description": null, - "label": "HARDIN COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_OH", - "description": null, - "label": "PERRY COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JACINTO_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JACINTO_COUNTY_TX", - "description": null, - "label": "SAN JACINTO COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JACINTO_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JACINTO_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JACINTO_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JACINTO_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JACINTO_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JACINTO_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JACINTO_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JACINTO_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILA_COUNTY_AZ": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILA_COUNTY_AZ", - "description": null, - "label": "GILA COUNTY AZ", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILA_COUNTY_AZ.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILA_COUNTY_AZ.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILA_COUNTY_AZ.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILA_COUNTY_AZ.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILA_COUNTY_AZ.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILA_COUNTY_AZ.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILA_COUNTY_AZ.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILA_COUNTY_AZ.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TILLAMOOK_COUNTY_OR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TILLAMOOK_COUNTY_OR", - "description": null, - "label": "TILLAMOOK COUNTY OR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TILLAMOOK_COUNTY_OR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TILLAMOOK_COUNTY_OR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TILLAMOOK_COUNTY_OR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TILLAMOOK_COUNTY_OR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TILLAMOOK_COUNTY_OR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TILLAMOOK_COUNTY_OR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TILLAMOOK_COUNTY_OR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TILLAMOOK_COUNTY_OR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TYLER_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TYLER_COUNTY_TX", - "description": null, - "label": "TYLER COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TYLER_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TYLER_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TYLER_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TYLER_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TYLER_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TYLER_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TYLER_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TYLER_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWPORT_NEWS_CITY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWPORT_NEWS_CITY_VA", - "description": null, - "label": "NEWPORT NEWS CITY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWPORT_NEWS_CITY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWPORT_NEWS_CITY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWPORT_NEWS_CITY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWPORT_NEWS_CITY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWPORT_NEWS_CITY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWPORT_NEWS_CITY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWPORT_NEWS_CITY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWPORT_NEWS_CITY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELMORE_COUNTY_ID": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELMORE_COUNTY_ID", - "description": null, - "label": "ELMORE COUNTY ID", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELMORE_COUNTY_ID.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELMORE_COUNTY_ID.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELMORE_COUNTY_ID.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELMORE_COUNTY_ID.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELMORE_COUNTY_ID.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELMORE_COUNTY_ID.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELMORE_COUNTY_ID.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELMORE_COUNTY_ID.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_GA", - "description": null, - "label": "POLK COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_WV", - "description": null, - "label": "MARION COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_NM": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_NM", - "description": null, - "label": "UNION COUNTY NM", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_NM.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_NM.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_NM.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_NM.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_NM.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_NM.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_NM.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_NM.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRON_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRON_COUNTY_MO", - "description": null, - "label": "IRON COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRON_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRON_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRON_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRON_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRON_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRON_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRON_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRON_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BANKS_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BANKS_COUNTY_GA", - "description": null, - "label": "BANKS COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BANKS_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BANKS_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BANKS_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BANKS_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BANKS_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BANKS_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BANKS_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BANKS_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_KS", - "description": null, - "label": "JEFFERSON COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLES_COUNTY_MD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLES_COUNTY_MD", - "description": null, - "label": "CHARLES COUNTY MD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLES_COUNTY_MD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLES_COUNTY_MD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLES_COUNTY_MD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLES_COUNTY_MD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLES_COUNTY_MD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLES_COUNTY_MD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLES_COUNTY_MD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLES_COUNTY_MD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEARNS_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEARNS_COUNTY_MN", - "description": null, - "label": "STEARNS COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEARNS_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEARNS_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEARNS_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEARNS_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEARNS_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEARNS_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEARNS_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEARNS_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAM_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAM_COUNTY_TX", - "description": null, - "label": "DALLAM COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAM_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAM_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAM_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAM_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAM_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAM_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAM_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAM_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILMER_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILMER_COUNTY_WV", - "description": null, - "label": "GILMER COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILMER_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILMER_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILMER_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILMER_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILMER_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILMER_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILMER_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILMER_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEVELAND_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEVELAND_COUNTY_AR", - "description": null, - "label": "CLEVELAND COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEVELAND_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEVELAND_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEVELAND_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEVELAND_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEVELAND_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEVELAND_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEVELAND_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEVELAND_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_ND", - "description": null, - "label": "MARSHALL COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WABASHA_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WABASHA_COUNTY_MN", - "description": null, - "label": "WABASHA COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WABASHA_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WABASHA_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WABASHA_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WABASHA_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WABASHA_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WABASHA_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WABASHA_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WABASHA_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAIR_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAIR_COUNTY_KY", - "description": null, - "label": "ADAIR COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAIR_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAIR_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAIR_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAIR_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAIR_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAIR_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAIR_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAIR_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KARNES_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KARNES_COUNTY_TX", - "description": null, - "label": "KARNES COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KARNES_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KARNES_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KARNES_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KARNES_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KARNES_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KARNES_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KARNES_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KARNES_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CROIX_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CROIX_COUNTY_WI", - "description": null, - "label": "ST CROIX COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CROIX_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CROIX_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CROIX_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CROIX_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CROIX_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CROIX_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CROIX_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CROIX_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_GA", - "description": null, - "label": "MORGAN COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_GEORGE_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_GEORGE_COUNTY_VA", - "description": null, - "label": "PRINCE GEORGE COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_GEORGE_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_GEORGE_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_GEORGE_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_GEORGE_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_GEORGE_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_GEORGE_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_GEORGE_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_GEORGE_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PITTSBURG_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PITTSBURG_COUNTY_OK", - "description": null, - "label": "PITTSBURG COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PITTSBURG_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PITTSBURG_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PITTSBURG_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PITTSBURG_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PITTSBURG_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PITTSBURG_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PITTSBURG_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PITTSBURG_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUFFOLK_COUNTY_CT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUFFOLK_COUNTY_CT", - "description": null, - "label": "SUFFOLK COUNTY CT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUFFOLK_COUNTY_CT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUFFOLK_COUNTY_CT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUFFOLK_COUNTY_CT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUFFOLK_COUNTY_CT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUFFOLK_COUNTY_CT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUFFOLK_COUNTY_CT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUFFOLK_COUNTY_CT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUFFOLK_COUNTY_CT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_ID": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_ID", - "description": null, - "label": "LEWIS COUNTY ID", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_ID.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_ID.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_ID.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_ID.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_ID.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_ID.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_ID.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_ID.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEVIER_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEVIER_COUNTY_AR", - "description": null, - "label": "SEVIER COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEVIER_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEVIER_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEVIER_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEVIER_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEVIER_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEVIER_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEVIER_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEVIER_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALTON_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALTON_COUNTY_FL", - "description": null, - "label": "WALTON COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALTON_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALTON_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALTON_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALTON_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALTON_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALTON_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALTON_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALTON_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_WI", - "description": null, - "label": "BROWN COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_MT", - "description": null, - "label": "LINCOLN COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUISA_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUISA_COUNTY_IA", - "description": null, - "label": "LOUISA COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUISA_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUISA_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUISA_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUISA_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUISA_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUISA_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUISA_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUISA_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUPAGE_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUPAGE_COUNTY_IL", - "description": null, - "label": "DUPAGE COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUPAGE_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUPAGE_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUPAGE_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUPAGE_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUPAGE_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUPAGE_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUPAGE_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUPAGE_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAYETTE_COUNTY_ID": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAYETTE_COUNTY_ID", - "description": null, - "label": "PAYETTE COUNTY ID", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAYETTE_COUNTY_ID.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAYETTE_COUNTY_ID.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAYETTE_COUNTY_ID.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAYETTE_COUNTY_ID.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAYETTE_COUNTY_ID.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAYETTE_COUNTY_ID.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAYETTE_COUNTY_ID.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAYETTE_COUNTY_ID.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIBLEY_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIBLEY_COUNTY_MN", - "description": null, - "label": "SIBLEY COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIBLEY_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIBLEY_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIBLEY_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIBLEY_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIBLEY_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIBLEY_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIBLEY_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIBLEY_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_NJ": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_NJ", - "description": null, - "label": "CUMBERLAND COUNTY NJ", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_NJ.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_NJ.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_NJ.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_NJ.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_NJ.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_NJ.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_NJ.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_NJ.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COFFEY_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COFFEY_COUNTY_KS", - "description": null, - "label": "COFFEY COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COFFEY_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COFFEY_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COFFEY_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COFFEY_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COFFEY_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COFFEY_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COFFEY_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COFFEY_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HONOLULU_COUNTY_HI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HONOLULU_COUNTY_HI", - "description": null, - "label": "HONOLULU COUNTY HI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HONOLULU_COUNTY_HI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HONOLULU_COUNTY_HI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HONOLULU_COUNTY_HI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HONOLULU_COUNTY_HI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HONOLULU_COUNTY_HI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HONOLULU_COUNTY_HI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HONOLULU_COUNTY_HI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HONOLULU_COUNTY_HI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUNNELS_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUNNELS_COUNTY_TX", - "description": null, - "label": "RUNNELS COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUNNELS_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUNNELS_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUNNELS_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUNNELS_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUNNELS_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUNNELS_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUNNELS_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUNNELS_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOPKINS_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOPKINS_COUNTY_KY", - "description": null, - "label": "HOPKINS COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOPKINS_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOPKINS_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOPKINS_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOPKINS_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOPKINS_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOPKINS_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOPKINS_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOPKINS_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENNEBEC_COUNTY_ME": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENNEBEC_COUNTY_ME", - "description": null, - "label": "KENNEBEC COUNTY ME", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENNEBEC_COUNTY_ME.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENNEBEC_COUNTY_ME.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENNEBEC_COUNTY_ME.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENNEBEC_COUNTY_ME.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENNEBEC_COUNTY_ME.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENNEBEC_COUNTY_ME.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENNEBEC_COUNTY_ME.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENNEBEC_COUNTY_ME.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENT_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENT_COUNTY_CO", - "description": null, - "label": "BENT COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENT_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENT_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENT_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENT_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENT_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENT_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENT_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENT_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_KS", - "description": null, - "label": "GRANT COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_MA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_MA", - "description": null, - "label": "ESSEX COUNTY MA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_MA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_MA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_MA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_MA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_MA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_MA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_MA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_MA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOTT_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOTT_COUNTY_KY", - "description": null, - "label": "KNOTT COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOTT_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOTT_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOTT_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOTT_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOTT_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOTT_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOTT_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOTT_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDMONSON_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDMONSON_COUNTY_KY", - "description": null, - "label": "EDMONSON COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDMONSON_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDMONSON_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDMONSON_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDMONSON_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDMONSON_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDMONSON_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDMONSON_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDMONSON_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_OH", - "description": null, - "label": "KNOX COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STONE_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STONE_COUNTY_AR", - "description": null, - "label": "STONE COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STONE_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STONE_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STONE_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STONE_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STONE_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STONE_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STONE_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STONE_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_IL", - "description": null, - "label": "RICHLAND COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLE_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLE_COUNTY_MO", - "description": null, - "label": "COLE COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLE_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLE_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLE_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLE_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLE_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLE_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLE_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLE_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FANNIN_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FANNIN_COUNTY_GA", - "description": null, - "label": "FANNIN COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FANNIN_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FANNIN_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FANNIN_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FANNIN_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FANNIN_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FANNIN_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FANNIN_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FANNIN_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOOR_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOOR_COUNTY_WI", - "description": null, - "label": "DOOR COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOOR_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOOR_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOOR_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOOR_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOOR_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOOR_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOOR_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOOR_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORFOLK_COUNTY_MA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORFOLK_COUNTY_MA", - "description": null, - "label": "NORFOLK COUNTY MA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORFOLK_COUNTY_MA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORFOLK_COUNTY_MA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORFOLK_COUNTY_MA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORFOLK_COUNTY_MA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORFOLK_COUNTY_MA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORFOLK_COUNTY_MA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORFOLK_COUNTY_MA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORFOLK_COUNTY_MA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_IN", - "description": null, - "label": "JASPER COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TETON_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TETON_COUNTY_MT", - "description": null, - "label": "TETON COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TETON_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TETON_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TETON_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TETON_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TETON_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TETON_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TETON_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TETON_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FALL_RIVER_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FALL_RIVER_COUNTY_SD", - "description": null, - "label": "FALL RIVER COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FALL_RIVER_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FALL_RIVER_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FALL_RIVER_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FALL_RIVER_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FALL_RIVER_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FALL_RIVER_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FALL_RIVER_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FALL_RIVER_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_IN", - "description": null, - "label": "FULTON COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_IL", - "description": null, - "label": "HENDERSON COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONEIDA_COUNTY_ID": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONEIDA_COUNTY_ID", - "description": null, - "label": "ONEIDA COUNTY ID", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONEIDA_COUNTY_ID.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONEIDA_COUNTY_ID.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONEIDA_COUNTY_ID.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONEIDA_COUNTY_ID.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONEIDA_COUNTY_ID.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONEIDA_COUNTY_ID.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONEIDA_COUNTY_ID.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONEIDA_COUNTY_ID.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHIPPEWA_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHIPPEWA_COUNTY_MN", - "description": null, - "label": "CHIPPEWA COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHIPPEWA_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHIPPEWA_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHIPPEWA_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHIPPEWA_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHIPPEWA_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHIPPEWA_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHIPPEWA_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHIPPEWA_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_OH", - "description": null, - "label": "PUTNAM COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORT_BEND_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORT_BEND_COUNTY_TX", - "description": null, - "label": "FORT BEND COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORT_BEND_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORT_BEND_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORT_BEND_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORT_BEND_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORT_BEND_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORT_BEND_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORT_BEND_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORT_BEND_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHEBOYGAN_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHEBOYGAN_COUNTY_WI", - "description": null, - "label": "SHEBOYGAN COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHEBOYGAN_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHEBOYGAN_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHEBOYGAN_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHEBOYGAN_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHEBOYGAN_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHEBOYGAN_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHEBOYGAN_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHEBOYGAN_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_TX", - "description": null, - "label": "JASPER COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_AR", - "description": null, - "label": "RANDOLPH COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BILLINGS_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BILLINGS_COUNTY_ND", - "description": null, - "label": "BILLINGS COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BILLINGS_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BILLINGS_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BILLINGS_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BILLINGS_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BILLINGS_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BILLINGS_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BILLINGS_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BILLINGS_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_MS", - "description": null, - "label": "FRANKLIN COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUCAS_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUCAS_COUNTY_OH", - "description": null, - "label": "LUCAS COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUCAS_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUCAS_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUCAS_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUCAS_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUCAS_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUCAS_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUCAS_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUCAS_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_NY", - "description": null, - "label": "DELAWARE COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOKE_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOKE_COUNTY_TX", - "description": null, - "label": "COOKE COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOKE_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOKE_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOKE_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOKE_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOKE_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOKE_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOKE_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOKE_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANABEC_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANABEC_COUNTY_MN", - "description": null, - "label": "KANABEC COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANABEC_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANABEC_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANABEC_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANABEC_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANABEC_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANABEC_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANABEC_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANABEC_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_KS", - "description": null, - "label": "MARSHALL COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GADSDEN_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GADSDEN_COUNTY_FL", - "description": null, - "label": "GADSDEN COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GADSDEN_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GADSDEN_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GADSDEN_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GADSDEN_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GADSDEN_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GADSDEN_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GADSDEN_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GADSDEN_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SLOPE_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SLOPE_COUNTY_ND", - "description": null, - "label": "SLOPE COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SLOPE_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SLOPE_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SLOPE_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SLOPE_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SLOPE_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SLOPE_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SLOPE_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SLOPE_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_VA", - "description": null, - "label": "WARREN COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALCORN_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALCORN_COUNTY_MS", - "description": null, - "label": "ALCORN COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALCORN_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALCORN_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALCORN_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALCORN_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALCORN_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALCORN_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALCORN_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALCORN_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COMANCHE_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COMANCHE_COUNTY_TX", - "description": null, - "label": "COMANCHE COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COMANCHE_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COMANCHE_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COMANCHE_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COMANCHE_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COMANCHE_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COMANCHE_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COMANCHE_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COMANCHE_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANE_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANE_COUNTY_IL", - "description": null, - "label": "KANE COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANE_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANE_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANE_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANE_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANE_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANE_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANE_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANE_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WICHITA_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WICHITA_COUNTY_KS", - "description": null, - "label": "WICHITA COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WICHITA_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WICHITA_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WICHITA_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WICHITA_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WICHITA_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WICHITA_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WICHITA_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WICHITA_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUFFOLK_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUFFOLK_COUNTY_NY", - "description": null, - "label": "SUFFOLK COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUFFOLK_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUFFOLK_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUFFOLK_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUFFOLK_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUFFOLK_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUFFOLK_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUFFOLK_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUFFOLK_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEMPER_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEMPER_COUNTY_MS", - "description": null, - "label": "KEMPER COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEMPER_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEMPER_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEMPER_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEMPER_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEMPER_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEMPER_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEMPER_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEMPER_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANOKA_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANOKA_COUNTY_MN", - "description": null, - "label": "ANOKA COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANOKA_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANOKA_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANOKA_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANOKA_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANOKA_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANOKA_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANOKA_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANOKA_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERIWETHER_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERIWETHER_COUNTY_GA", - "description": null, - "label": "MERIWETHER COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERIWETHER_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERIWETHER_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERIWETHER_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERIWETHER_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERIWETHER_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERIWETHER_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERIWETHER_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERIWETHER_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKDALE_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKDALE_COUNTY_GA", - "description": null, - "label": "ROCKDALE COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKDALE_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKDALE_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKDALE_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKDALE_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKDALE_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKDALE_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKDALE_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKDALE_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAYNE_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAYNE_COUNTY_OK", - "description": null, - "label": "PAYNE COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAYNE_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAYNE_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAYNE_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAYNE_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAYNE_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAYNE_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAYNE_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAYNE_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_TX", - "description": null, - "label": "HOWARD COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TYLER_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TYLER_COUNTY_WV", - "description": null, - "label": "TYLER COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TYLER_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TYLER_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TYLER_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TYLER_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TYLER_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TYLER_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TYLER_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TYLER_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERKINS_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERKINS_COUNTY_SD", - "description": null, - "label": "PERKINS COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERKINS_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERKINS_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERKINS_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERKINS_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERKINS_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERKINS_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERKINS_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERKINS_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DENVER_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DENVER_COUNTY_CO", - "description": null, - "label": "DENVER COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DENVER_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DENVER_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DENVER_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DENVER_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DENVER_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DENVER_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DENVER_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DENVER_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILPIN_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILPIN_COUNTY_CO", - "description": null, - "label": "GILPIN COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILPIN_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILPIN_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILPIN_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILPIN_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILPIN_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILPIN_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILPIN_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILPIN_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLATSOP_COUNTY_OR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLATSOP_COUNTY_OR", - "description": null, - "label": "CLATSOP COUNTY OR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLATSOP_COUNTY_OR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLATSOP_COUNTY_OR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLATSOP_COUNTY_OR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLATSOP_COUNTY_OR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLATSOP_COUNTY_OR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLATSOP_COUNTY_OR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLATSOP_COUNTY_OR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLATSOP_COUNTY_OR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_MI", - "description": null, - "label": "CLINTON COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEST_BATON_ROUGE_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEST_BATON_ROUGE_PARISH_LA", - "description": null, - "label": "WEST BATON ROUGE PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEST_BATON_ROUGE_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEST_BATON_ROUGE_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEST_BATON_ROUGE_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEST_BATON_ROUGE_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEST_BATON_ROUGE_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEST_BATON_ROUGE_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEST_BATON_ROUGE_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEST_BATON_ROUGE_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFIELD_COUNTY_SC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFIELD_COUNTY_SC", - "description": null, - "label": "FAIRFIELD COUNTY SC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFIELD_COUNTY_SC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFIELD_COUNTY_SC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFIELD_COUNTY_SC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFIELD_COUNTY_SC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFIELD_COUNTY_SC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFIELD_COUNTY_SC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFIELD_COUNTY_SC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFIELD_COUNTY_SC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHBURN_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHBURN_COUNTY_WI", - "description": null, - "label": "WASHBURN COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHBURN_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHBURN_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHBURN_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHBURN_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHBURN_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHBURN_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHBURN_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHBURN_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRADY_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRADY_COUNTY_OK", - "description": null, - "label": "GRADY COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRADY_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRADY_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRADY_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRADY_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRADY_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRADY_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRADY_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRADY_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCIOTO_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCIOTO_COUNTY_OH", - "description": null, - "label": "SCIOTO COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCIOTO_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCIOTO_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCIOTO_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCIOTO_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCIOTO_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCIOTO_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCIOTO_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCIOTO_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESTILL_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESTILL_COUNTY_KY", - "description": null, - "label": "ESTILL COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESTILL_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESTILL_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESTILL_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESTILL_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESTILL_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESTILL_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESTILL_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESTILL_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_IL", - "description": null, - "label": "FAYETTE COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KITSAP_COUNTY_WA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KITSAP_COUNTY_WA", - "description": null, - "label": "KITSAP COUNTY WA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KITSAP_COUNTY_WA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KITSAP_COUNTY_WA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KITSAP_COUNTY_WA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KITSAP_COUNTY_WA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KITSAP_COUNTY_WA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KITSAP_COUNTY_WA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KITSAP_COUNTY_WA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KITSAP_COUNTY_WA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVISON_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVISON_COUNTY_SD", - "description": null, - "label": "DAVISON COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVISON_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVISON_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVISON_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVISON_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVISON_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVISON_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVISON_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVISON_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAIR_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAIR_COUNTY_IA", - "description": null, - "label": "ADAIR COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAIR_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAIR_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAIR_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAIR_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAIR_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAIR_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAIR_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAIR_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HEMPSTEAD_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HEMPSTEAD_COUNTY_AR", - "description": null, - "label": "HEMPSTEAD COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HEMPSTEAD_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HEMPSTEAD_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HEMPSTEAD_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HEMPSTEAD_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HEMPSTEAD_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HEMPSTEAD_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HEMPSTEAD_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HEMPSTEAD_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITFIELD_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITFIELD_COUNTY_GA", - "description": null, - "label": "WHITFIELD COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITFIELD_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITFIELD_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITFIELD_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITFIELD_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITFIELD_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITFIELD_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITFIELD_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITFIELD_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKINGHAM_COUNTY_NH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKINGHAM_COUNTY_NH", - "description": null, - "label": "ROCKINGHAM COUNTY NH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKINGHAM_COUNTY_NH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKINGHAM_COUNTY_NH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKINGHAM_COUNTY_NH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKINGHAM_COUNTY_NH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKINGHAM_COUNTY_NH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKINGHAM_COUNTY_NH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKINGHAM_COUNTY_NH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKINGHAM_COUNTY_NH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LE_FLORE_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LE_FLORE_COUNTY_OK", - "description": null, - "label": "LE FLORE COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LE_FLORE_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LE_FLORE_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LE_FLORE_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LE_FLORE_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LE_FLORE_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LE_FLORE_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LE_FLORE_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LE_FLORE_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_PARISH_LA", - "description": null, - "label": "JACKSON PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREDERICKSBURG_CITY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREDERICKSBURG_CITY_VA", - "description": null, - "label": "FREDERICKSBURG CITY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREDERICKSBURG_CITY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREDERICKSBURG_CITY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREDERICKSBURG_CITY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREDERICKSBURG_CITY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREDERICKSBURG_CITY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREDERICKSBURG_CITY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREDERICKSBURG_CITY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREDERICKSBURG_CITY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDDLESEX_COUNTY_CT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDDLESEX_COUNTY_CT", - "description": null, - "label": "MIDDLESEX COUNTY CT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDDLESEX_COUNTY_CT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDDLESEX_COUNTY_CT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDDLESEX_COUNTY_CT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDDLESEX_COUNTY_CT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDDLESEX_COUNTY_CT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDDLESEX_COUNTY_CT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDDLESEX_COUNTY_CT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDDLESEX_COUNTY_CT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_IA", - "description": null, - "label": "DECATUR COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKSON_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKSON_COUNTY_TN", - "description": null, - "label": "DICKSON COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKSON_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKSON_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKSON_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKSON_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKSON_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKSON_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKSON_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKSON_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_MO", - "description": null, - "label": "MACON COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DILLINGHAM_CENSUS_AREA_AK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DILLINGHAM_CENSUS_AREA_AK", - "description": null, - "label": "DILLINGHAM CENSUS AREA AK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DILLINGHAM_CENSUS_AREA_AK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DILLINGHAM_CENSUS_AREA_AK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DILLINGHAM_CENSUS_AREA_AK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DILLINGHAM_CENSUS_AREA_AK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DILLINGHAM_CENSUS_AREA_AK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DILLINGHAM_CENSUS_AREA_AK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DILLINGHAM_CENSUS_AREA_AK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DILLINGHAM_CENSUS_AREA_AK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSBORNE_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSBORNE_COUNTY_KS", - "description": null, - "label": "OSBORNE COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSBORNE_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSBORNE_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSBORNE_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSBORNE_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSBORNE_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSBORNE_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSBORNE_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSBORNE_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCPHERSON_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCPHERSON_COUNTY_NE", - "description": null, - "label": "MCPHERSON COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCPHERSON_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCPHERSON_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCPHERSON_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCPHERSON_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCPHERSON_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCPHERSON_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCPHERSON_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCPHERSON_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_NY", - "description": null, - "label": "FULTON COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARNEY_COUNTY_OR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARNEY_COUNTY_OR", - "description": null, - "label": "HARNEY COUNTY OR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARNEY_COUNTY_OR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARNEY_COUNTY_OR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARNEY_COUNTY_OR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARNEY_COUNTY_OR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARNEY_COUNTY_OR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARNEY_COUNTY_OR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARNEY_COUNTY_OR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARNEY_COUNTY_OR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GONZALES_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GONZALES_COUNTY_TX", - "description": null, - "label": "GONZALES COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GONZALES_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GONZALES_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GONZALES_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GONZALES_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GONZALES_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GONZALES_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GONZALES_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GONZALES_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKLAHOMA_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKLAHOMA_COUNTY_OK", - "description": null, - "label": "OKLAHOMA COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKLAHOMA_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKLAHOMA_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKLAHOMA_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKLAHOMA_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKLAHOMA_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKLAHOMA_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKLAHOMA_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKLAHOMA_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINDSOR_COUNTY_VT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINDSOR_COUNTY_VT", - "description": null, - "label": "WINDSOR COUNTY VT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINDSOR_COUNTY_VT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINDSOR_COUNTY_VT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINDSOR_COUNTY_VT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINDSOR_COUNTY_VT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINDSOR_COUNTY_VT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINDSOR_COUNTY_VT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINDSOR_COUNTY_VT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINDSOR_COUNTY_VT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALPINE_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALPINE_COUNTY_CA", - "description": null, - "label": "ALPINE COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALPINE_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALPINE_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALPINE_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALPINE_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALPINE_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALPINE_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALPINE_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALPINE_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORD_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORD_COUNTY_IL", - "description": null, - "label": "FORD COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORD_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORD_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORD_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORD_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORD_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORD_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORD_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORD_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSSELSHELL_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSSELSHELL_COUNTY_MT", - "description": null, - "label": "MUSSELSHELL COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSSELSHELL_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSSELSHELL_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSSELSHELL_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSSELSHELL_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSSELSHELL_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSSELSHELL_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSSELSHELL_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSSELSHELL_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAYS_HARBOR_COUNTY_WA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAYS_HARBOR_COUNTY_WA", - "description": null, - "label": "GRAYS HARBOR COUNTY WA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAYS_HARBOR_COUNTY_WA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAYS_HARBOR_COUNTY_WA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAYS_HARBOR_COUNTY_WA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAYS_HARBOR_COUNTY_WA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAYS_HARBOR_COUNTY_WA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAYS_HARBOR_COUNTY_WA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAYS_HARBOR_COUNTY_WA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAYS_HARBOR_COUNTY_WA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHRISTIAN_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHRISTIAN_COUNTY_IL", - "description": null, - "label": "CHRISTIAN COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHRISTIAN_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHRISTIAN_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHRISTIAN_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHRISTIAN_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHRISTIAN_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHRISTIAN_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHRISTIAN_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHRISTIAN_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_OH", - "description": null, - "label": "UNION COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FALLS_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FALLS_COUNTY_TX", - "description": null, - "label": "FALLS COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FALLS_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FALLS_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FALLS_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FALLS_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FALLS_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FALLS_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FALLS_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FALLS_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SARATOGA_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SARATOGA_COUNTY_NY", - "description": null, - "label": "SARATOGA COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SARATOGA_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SARATOGA_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SARATOGA_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SARATOGA_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SARATOGA_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SARATOGA_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SARATOGA_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SARATOGA_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BORDEN_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BORDEN_COUNTY_TX", - "description": null, - "label": "BORDEN COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BORDEN_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BORDEN_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BORDEN_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BORDEN_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BORDEN_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BORDEN_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BORDEN_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BORDEN_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEON_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEON_COUNTY_TX", - "description": null, - "label": "LEON COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEON_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEON_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEON_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEON_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEON_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEON_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEON_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEON_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARNWELL_COUNTY_SC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARNWELL_COUNTY_SC", - "description": null, - "label": "BARNWELL COUNTY SC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARNWELL_COUNTY_SC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARNWELL_COUNTY_SC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARNWELL_COUNTY_SC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARNWELL_COUNTY_SC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARNWELL_COUNTY_SC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARNWELL_COUNTY_SC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARNWELL_COUNTY_SC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARNWELL_COUNTY_SC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_NV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_NV", - "description": null, - "label": "LYON COUNTY NV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_NV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_NV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_NV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_NV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_NV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_NV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_NV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_NV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_BUREN_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_BUREN_COUNTY_TN", - "description": null, - "label": "VAN BUREN COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_BUREN_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_BUREN_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_BUREN_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_BUREN_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_BUREN_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_BUREN_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_BUREN_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_BUREN_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_PARISH_LA", - "description": null, - "label": "LINCOLN PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_CO", - "description": null, - "label": "WASHINGTON COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TARRANT_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TARRANT_COUNTY_TX", - "description": null, - "label": "TARRANT COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TARRANT_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TARRANT_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TARRANT_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TARRANT_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TARRANT_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TARRANT_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TARRANT_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TARRANT_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_AR", - "description": null, - "label": "MONROE COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHOCTAW_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHOCTAW_COUNTY_OK", - "description": null, - "label": "CHOCTAW COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHOCTAW_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHOCTAW_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHOCTAW_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHOCTAW_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHOCTAW_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHOCTAW_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHOCTAW_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHOCTAW_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STORY_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STORY_COUNTY_IA", - "description": null, - "label": "STORY COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STORY_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STORY_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STORY_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STORY_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STORY_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STORY_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STORY_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STORY_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARLAN_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARLAN_COUNTY_NE", - "description": null, - "label": "HARLAN COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARLAN_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARLAN_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARLAN_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARLAN_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARLAN_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARLAN_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARLAN_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARLAN_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOA_ALTA_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOA_ALTA_MUNICIPIO_PR", - "description": null, - "label": "TOA ALTA MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOA_ALTA_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOA_ALTA_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOA_ALTA_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOA_ALTA_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOA_ALTA_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOA_ALTA_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOA_ALTA_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOA_ALTA_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LENAWEE_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LENAWEE_COUNTY_MI", - "description": null, - "label": "LENAWEE COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LENAWEE_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LENAWEE_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LENAWEE_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LENAWEE_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LENAWEE_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LENAWEE_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LENAWEE_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LENAWEE_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLATHEAD_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLATHEAD_COUNTY_MT", - "description": null, - "label": "FLATHEAD COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLATHEAD_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLATHEAD_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLATHEAD_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLATHEAD_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLATHEAD_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLATHEAD_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLATHEAD_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLATHEAD_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENEWAH_COUNTY_WA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENEWAH_COUNTY_WA", - "description": null, - "label": "BENEWAH COUNTY WA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENEWAH_COUNTY_WA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENEWAH_COUNTY_WA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENEWAH_COUNTY_WA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENEWAH_COUNTY_WA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENEWAH_COUNTY_WA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENEWAH_COUNTY_WA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENEWAH_COUNTY_WA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENEWAH_COUNTY_WA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHUYLER_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHUYLER_COUNTY_MO", - "description": null, - "label": "SCHUYLER COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHUYLER_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHUYLER_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHUYLER_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHUYLER_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHUYLER_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHUYLER_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHUYLER_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHUYLER_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DE_BACA_COUNTY_NM": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DE_BACA_COUNTY_NM", - "description": null, - "label": "DE BACA COUNTY NM", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DE_BACA_COUNTY_NM.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DE_BACA_COUNTY_NM.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DE_BACA_COUNTY_NM.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DE_BACA_COUNTY_NM.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DE_BACA_COUNTY_NM.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DE_BACA_COUNTY_NM.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DE_BACA_COUNTY_NM.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DE_BACA_COUNTY_NM.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WABASH_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WABASH_COUNTY_IN", - "description": null, - "label": "WABASH COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WABASH_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WABASH_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WABASH_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WABASH_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WABASH_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WABASH_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WABASH_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WABASH_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_KS", - "description": null, - "label": "CHEROKEE COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUSQUEHANNA_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUSQUEHANNA_COUNTY_PA", - "description": null, - "label": "SUSQUEHANNA COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUSQUEHANNA_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUSQUEHANNA_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUSQUEHANNA_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUSQUEHANNA_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUSQUEHANNA_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUSQUEHANNA_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUSQUEHANNA_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUSQUEHANNA_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMITH_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMITH_COUNTY_MS", - "description": null, - "label": "SMITH COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMITH_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMITH_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMITH_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMITH_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMITH_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMITH_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMITH_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMITH_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLEDSOE_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLEDSOE_COUNTY_TN", - "description": null, - "label": "BLEDSOE COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLEDSOE_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLEDSOE_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLEDSOE_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLEDSOE_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLEDSOE_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLEDSOE_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLEDSOE_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLEDSOE_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMBOLDT_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMBOLDT_COUNTY_IA", - "description": null, - "label": "HUMBOLDT COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMBOLDT_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMBOLDT_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMBOLDT_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMBOLDT_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMBOLDT_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMBOLDT_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMBOLDT_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMBOLDT_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_AR", - "description": null, - "label": "JOHNSON COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PANOLA_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PANOLA_COUNTY_TX", - "description": null, - "label": "PANOLA COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PANOLA_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PANOLA_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PANOLA_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PANOLA_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PANOLA_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PANOLA_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PANOLA_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PANOLA_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONONA_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONONA_COUNTY_IA", - "description": null, - "label": "MONONA COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONONA_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONONA_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONONA_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONONA_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONONA_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONONA_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONONA_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONONA_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRENTISS_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRENTISS_COUNTY_MS", - "description": null, - "label": "PRENTISS COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRENTISS_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRENTISS_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRENTISS_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRENTISS_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRENTISS_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRENTISS_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRENTISS_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRENTISS_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEOSHO_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEOSHO_COUNTY_KS", - "description": null, - "label": "NEOSHO COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEOSHO_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEOSHO_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEOSHO_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEOSHO_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEOSHO_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEOSHO_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEOSHO_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEOSHO_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODWARD_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODWARD_COUNTY_OK", - "description": null, - "label": "WOODWARD COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODWARD_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODWARD_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODWARD_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODWARD_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODWARD_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODWARD_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODWARD_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODWARD_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YANKTON_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YANKTON_COUNTY_SD", - "description": null, - "label": "YANKTON COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YANKTON_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YANKTON_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YANKTON_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YANKTON_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YANKTON_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YANKTON_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YANKTON_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YANKTON_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_SD", - "description": null, - "label": "LINCOLN COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VICTORIA_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VICTORIA_COUNTY_TX", - "description": null, - "label": "VICTORIA COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VICTORIA_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VICTORIA_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VICTORIA_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VICTORIA_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VICTORIA_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VICTORIA_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VICTORIA_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VICTORIA_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_IL", - "description": null, - "label": "CLAY COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_IL", - "description": null, - "label": "HENRY COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIERRA_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIERRA_COUNTY_CA", - "description": null, - "label": "SIERRA COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIERRA_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIERRA_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIERRA_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIERRA_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIERRA_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIERRA_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIERRA_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIERRA_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISLE_OF_WIGHT_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISLE_OF_WIGHT_COUNTY_VA", - "description": null, - "label": "ISLE OF WIGHT COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISLE_OF_WIGHT_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISLE_OF_WIGHT_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISLE_OF_WIGHT_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISLE_OF_WIGHT_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISLE_OF_WIGHT_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISLE_OF_WIGHT_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISLE_OF_WIGHT_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISLE_OF_WIGHT_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_IA", - "description": null, - "label": "WASHINGTON COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_TN", - "description": null, - "label": "MONTGOMERY COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENWOOD_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENWOOD_COUNTY_KS", - "description": null, - "label": "GREENWOOD COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENWOOD_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENWOOD_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENWOOD_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENWOOD_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENWOOD_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENWOOD_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENWOOD_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENWOOD_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUFFOLK_CITY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUFFOLK_CITY_VA", - "description": null, - "label": "SUFFOLK CITY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUFFOLK_CITY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUFFOLK_CITY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUFFOLK_CITY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUFFOLK_CITY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUFFOLK_CITY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUFFOLK_CITY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUFFOLK_CITY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUFFOLK_CITY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOYLE_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOYLE_COUNTY_KY", - "description": null, - "label": "BOYLE COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOYLE_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOYLE_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOYLE_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOYLE_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOYLE_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOYLE_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOYLE_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOYLE_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUEEN_ANNE_S_COUNTY_MD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUEEN_ANNE_S_COUNTY_MD", - "description": null, - "label": "QUEEN ANNE S COUNTY MD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUEEN_ANNE_S_COUNTY_MD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUEEN_ANNE_S_COUNTY_MD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUEEN_ANNE_S_COUNTY_MD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUEEN_ANNE_S_COUNTY_MD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUEEN_ANNE_S_COUNTY_MD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUEEN_ANNE_S_COUNTY_MD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUEEN_ANNE_S_COUNTY_MD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUEEN_ANNE_S_COUNTY_MD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_TX", - "description": null, - "label": "SHELBY COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ERIE_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ERIE_COUNTY_NY", - "description": null, - "label": "ERIE COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ERIE_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ERIE_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ERIE_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ERIE_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ERIE_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ERIE_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ERIE_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ERIE_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLANCO_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLANCO_COUNTY_TX", - "description": null, - "label": "BLANCO COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLANCO_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLANCO_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLANCO_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLANCO_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLANCO_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLANCO_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLANCO_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLANCO_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_NE", - "description": null, - "label": "GARFIELD COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_IL", - "description": null, - "label": "BOONE COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DARKE_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DARKE_COUNTY_OH", - "description": null, - "label": "DARKE COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DARKE_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DARKE_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DARKE_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DARKE_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DARKE_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DARKE_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DARKE_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DARKE_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHAWANO_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHAWANO_COUNTY_WI", - "description": null, - "label": "SHAWANO COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHAWANO_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHAWANO_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHAWANO_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHAWANO_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHAWANO_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHAWANO_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHAWANO_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHAWANO_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINERAL_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINERAL_COUNTY_MT", - "description": null, - "label": "MINERAL COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINERAL_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINERAL_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINERAL_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINERAL_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINERAL_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINERAL_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINERAL_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINERAL_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLORIDA_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLORIDA_MUNICIPIO_PR", - "description": null, - "label": "FLORIDA MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLORIDA_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLORIDA_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLORIDA_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLORIDA_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLORIDA_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLORIDA_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLORIDA_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLORIDA_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WABASH_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WABASH_COUNTY_IL", - "description": null, - "label": "WABASH COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WABASH_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WABASH_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WABASH_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WABASH_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WABASH_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WABASH_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WABASH_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WABASH_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COTTONWOOD_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COTTONWOOD_COUNTY_MN", - "description": null, - "label": "COTTONWOOD COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COTTONWOOD_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COTTONWOOD_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COTTONWOOD_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COTTONWOOD_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COTTONWOOD_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COTTONWOOD_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COTTONWOOD_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COTTONWOOD_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_COUNTY_KY", - "description": null, - "label": "ALLEN COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_FL", - "description": null, - "label": "WASHINGTON COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_CITY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_CITY_VA", - "description": null, - "label": "FRANKLIN CITY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_CITY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_CITY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_CITY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_CITY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_CITY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_CITY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_CITY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_CITY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PINELLAS_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PINELLAS_COUNTY_FL", - "description": null, - "label": "PINELLAS COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PINELLAS_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PINELLAS_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PINELLAS_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PINELLAS_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PINELLAS_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PINELLAS_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PINELLAS_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PINELLAS_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRUNDY_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRUNDY_COUNTY_MO", - "description": null, - "label": "GRUNDY COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRUNDY_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRUNDY_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRUNDY_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRUNDY_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRUNDY_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRUNDY_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRUNDY_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRUNDY_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_MS", - "description": null, - "label": "GREENE COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIFT_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIFT_COUNTY_GA", - "description": null, - "label": "TIFT COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIFT_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIFT_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIFT_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIFT_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIFT_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIFT_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIFT_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIFT_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_OR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_OR", - "description": null, - "label": "BENTON COUNTY OR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_OR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_OR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_OR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_OR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_OR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_OR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_OR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_OR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_AL", - "description": null, - "label": "LEE COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_FL", - "description": null, - "label": "CALHOUN COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_CO", - "description": null, - "label": "DOUGLAS COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKINSON_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKINSON_COUNTY_MS", - "description": null, - "label": "WILKINSON COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKINSON_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKINSON_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKINSON_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKINSON_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKINSON_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKINSON_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKINSON_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKINSON_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTER_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTER_COUNTY_TX", - "description": null, - "label": "POTTER COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTER_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTER_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTER_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTER_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTER_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTER_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTER_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTER_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_PA", - "description": null, - "label": "CLINTON COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEWELL_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEWELL_COUNTY_KS", - "description": null, - "label": "JEWELL COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEWELL_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEWELL_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEWELL_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEWELL_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEWELL_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEWELL_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEWELL_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEWELL_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OAKLAND_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OAKLAND_COUNTY_MI", - "description": null, - "label": "OAKLAND COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OAKLAND_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OAKLAND_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OAKLAND_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OAKLAND_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OAKLAND_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OAKLAND_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OAKLAND_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OAKLAND_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINN_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINN_COUNTY_IA", - "description": null, - "label": "LINN COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINN_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINN_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINN_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINN_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINN_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINN_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINN_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINN_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_ME": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_ME", - "description": null, - "label": "HANCOCK COUNTY ME", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_ME.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_ME.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_ME.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_ME.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_ME.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_ME.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_ME.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_ME.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOLLAND_COUNTY_CT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOLLAND_COUNTY_CT", - "description": null, - "label": "TOLLAND COUNTY CT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOLLAND_COUNTY_CT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOLLAND_COUNTY_CT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOLLAND_COUNTY_CT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOLLAND_COUNTY_CT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOLLAND_COUNTY_CT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOLLAND_COUNTY_CT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOLLAND_COUNTY_CT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOLLAND_COUNTY_CT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HICKMAN_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HICKMAN_COUNTY_KY", - "description": null, - "label": "HICKMAN COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HICKMAN_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HICKMAN_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HICKMAN_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HICKMAN_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HICKMAN_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HICKMAN_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HICKMAN_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HICKMAN_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIOGA_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIOGA_COUNTY_NY", - "description": null, - "label": "TIOGA COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIOGA_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIOGA_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIOGA_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIOGA_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIOGA_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIOGA_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIOGA_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIOGA_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_MT", - "description": null, - "label": "LAKE COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOLDEN_VALLEY_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOLDEN_VALLEY_COUNTY_ND", - "description": null, - "label": "GOLDEN VALLEY COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOLDEN_VALLEY_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOLDEN_VALLEY_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOLDEN_VALLEY_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOLDEN_VALLEY_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOLDEN_VALLEY_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOLDEN_VALLEY_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOLDEN_VALLEY_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOLDEN_VALLEY_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREGG_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREGG_COUNTY_TX", - "description": null, - "label": "GREGG COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREGG_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREGG_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREGG_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREGG_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREGG_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREGG_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREGG_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREGG_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRON_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRON_COUNTY_WI", - "description": null, - "label": "IRON COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRON_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRON_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRON_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRON_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRON_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRON_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRON_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRON_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLES_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLES_COUNTY_IL", - "description": null, - "label": "COLES COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLES_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLES_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLES_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLES_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLES_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLES_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLES_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLES_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YELL_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YELL_COUNTY_AR", - "description": null, - "label": "YELL COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YELL_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YELL_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YELL_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YELL_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YELL_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YELL_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YELL_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YELL_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALLIA_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALLIA_COUNTY_OH", - "description": null, - "label": "GALLIA COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALLIA_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALLIA_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALLIA_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALLIA_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALLIA_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALLIA_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALLIA_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALLIA_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NUCKOLLS_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NUCKOLLS_COUNTY_NE", - "description": null, - "label": "NUCKOLLS COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NUCKOLLS_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NUCKOLLS_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NUCKOLLS_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NUCKOLLS_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NUCKOLLS_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NUCKOLLS_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NUCKOLLS_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NUCKOLLS_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRIGG_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRIGG_COUNTY_KY", - "description": null, - "label": "TRIGG COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRIGG_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRIGG_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRIGG_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRIGG_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRIGG_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRIGG_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRIGG_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRIGG_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOREHOUSE_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOREHOUSE_PARISH_LA", - "description": null, - "label": "MOREHOUSE PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOREHOUSE_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOREHOUSE_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOREHOUSE_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOREHOUSE_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOREHOUSE_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOREHOUSE_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOREHOUSE_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOREHOUSE_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_ISLAND_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_ISLAND_COUNTY_IL", - "description": null, - "label": "ROCK ISLAND COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_ISLAND_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_ISLAND_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_ISLAND_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_ISLAND_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_ISLAND_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_ISLAND_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_ISLAND_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_ISLAND_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_IL", - "description": null, - "label": "WHITE COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAS_ANIMAS_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAS_ANIMAS_COUNTY_CO", - "description": null, - "label": "LAS ANIMAS COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAS_ANIMAS_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAS_ANIMAS_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAS_ANIMAS_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAS_ANIMAS_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAS_ANIMAS_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAS_ANIMAS_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAS_ANIMAS_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAS_ANIMAS_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_MS", - "description": null, - "label": "PIKE COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_OR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_OR", - "description": null, - "label": "JEFFERSON COUNTY OR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_OR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_OR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_OR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_OR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_OR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_OR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_OR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_OR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_IN", - "description": null, - "label": "PIKE COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAOS_COUNTY_NM": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAOS_COUNTY_NM", - "description": null, - "label": "TAOS COUNTY NM", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAOS_COUNTY_NM.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAOS_COUNTY_NM.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAOS_COUNTY_NM.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAOS_COUNTY_NM.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAOS_COUNTY_NM.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAOS_COUNTY_NM.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAOS_COUNTY_NM.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAOS_COUNTY_NM.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IROQUOIS_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IROQUOIS_COUNTY_IL", - "description": null, - "label": "IROQUOIS COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IROQUOIS_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IROQUOIS_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IROQUOIS_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IROQUOIS_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IROQUOIS_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IROQUOIS_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IROQUOIS_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IROQUOIS_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORCESTER_COUNTY_MD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORCESTER_COUNTY_MD", - "description": null, - "label": "WORCESTER COUNTY MD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORCESTER_COUNTY_MD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORCESTER_COUNTY_MD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORCESTER_COUNTY_MD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORCESTER_COUNTY_MD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORCESTER_COUNTY_MD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORCESTER_COUNTY_MD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORCESTER_COUNTY_MD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORCESTER_COUNTY_MD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_NE", - "description": null, - "label": "SHERIDAN COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARTLEY_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARTLEY_COUNTY_TX", - "description": null, - "label": "HARTLEY COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARTLEY_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARTLEY_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARTLEY_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARTLEY_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARTLEY_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARTLEY_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARTLEY_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARTLEY_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAWES_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAWES_COUNTY_NE", - "description": null, - "label": "DAWES COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAWES_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAWES_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAWES_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAWES_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAWES_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAWES_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAWES_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAWES_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHELPS_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHELPS_COUNTY_NE", - "description": null, - "label": "PHELPS COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHELPS_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHELPS_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHELPS_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHELPS_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHELPS_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHELPS_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHELPS_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHELPS_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_MS", - "description": null, - "label": "JONES COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIMBALL_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIMBALL_COUNTY_NE", - "description": null, - "label": "KIMBALL COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIMBALL_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIMBALL_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIMBALL_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIMBALL_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIMBALL_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIMBALL_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIMBALL_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIMBALL_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENEDY_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENEDY_COUNTY_TX", - "description": null, - "label": "KENEDY COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENEDY_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENEDY_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENEDY_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENEDY_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENEDY_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENEDY_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENEDY_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENEDY_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALBOT_COUNTY_MD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALBOT_COUNTY_MD", - "description": null, - "label": "TALBOT COUNTY MD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALBOT_COUNTY_MD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALBOT_COUNTY_MD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALBOT_COUNTY_MD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALBOT_COUNTY_MD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALBOT_COUNTY_MD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALBOT_COUNTY_MD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALBOT_COUNTY_MD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALBOT_COUNTY_MD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTCALM_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTCALM_COUNTY_MI", - "description": null, - "label": "MONTCALM COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTCALM_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTCALM_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTCALM_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTCALM_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTCALM_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTCALM_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTCALM_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTCALM_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLFAX_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLFAX_COUNTY_NE", - "description": null, - "label": "COLFAX COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLFAX_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLFAX_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLFAX_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLFAX_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLFAX_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLFAX_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLFAX_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLFAX_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARRY_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARRY_COUNTY_MO", - "description": null, - "label": "BARRY COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARRY_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARRY_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARRY_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARRY_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARRY_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARRY_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARRY_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARRY_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERNALILLO_COUNTY_NM": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERNALILLO_COUNTY_NM", - "description": null, - "label": "BERNALILLO COUNTY NM", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERNALILLO_COUNTY_NM.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERNALILLO_COUNTY_NM.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERNALILLO_COUNTY_NM.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERNALILLO_COUNTY_NM.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERNALILLO_COUNTY_NM.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERNALILLO_COUNTY_NM.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERNALILLO_COUNTY_NM.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERNALILLO_COUNTY_NM.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALWORTH_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALWORTH_COUNTY_WI", - "description": null, - "label": "WALWORTH COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALWORTH_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALWORTH_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALWORTH_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALWORTH_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALWORTH_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALWORTH_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALWORTH_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALWORTH_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAWKINS_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAWKINS_COUNTY_TN", - "description": null, - "label": "HAWKINS COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAWKINS_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAWKINS_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAWKINS_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAWKINS_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAWKINS_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAWKINS_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAWKINS_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAWKINS_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMAR_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMAR_COUNTY_GA", - "description": null, - "label": "LAMAR COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMAR_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMAR_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMAR_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMAR_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMAR_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMAR_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMAR_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMAR_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEWART_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEWART_COUNTY_TN", - "description": null, - "label": "STEWART COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEWART_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEWART_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEWART_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEWART_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEWART_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEWART_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEWART_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEWART_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALLER_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALLER_COUNTY_TX", - "description": null, - "label": "WALLER COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALLER_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALLER_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALLER_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALLER_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALLER_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALLER_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALLER_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALLER_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKEY_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKEY_COUNTY_ND", - "description": null, - "label": "DICKEY COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKEY_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKEY_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKEY_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKEY_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKEY_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKEY_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKEY_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKEY_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURKE_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURKE_COUNTY_GA", - "description": null, - "label": "BURKE COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURKE_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURKE_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURKE_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURKE_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURKE_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURKE_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURKE_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURKE_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGFISHER_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGFISHER_COUNTY_OK", - "description": null, - "label": "KINGFISHER COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGFISHER_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGFISHER_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGFISHER_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGFISHER_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGFISHER_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGFISHER_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGFISHER_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGFISHER_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIAMI_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIAMI_COUNTY_IN", - "description": null, - "label": "MIAMI COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIAMI_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIAMI_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIAMI_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIAMI_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIAMI_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIAMI_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIAMI_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIAMI_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPTON_CITY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPTON_CITY_VA", - "description": null, - "label": "HAMPTON CITY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPTON_CITY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPTON_CITY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPTON_CITY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPTON_CITY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPTON_CITY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPTON_CITY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPTON_CITY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPTON_CITY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WESTCHESTER_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WESTCHESTER_COUNTY_NY", - "description": null, - "label": "WESTCHESTER COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WESTCHESTER_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WESTCHESTER_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WESTCHESTER_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WESTCHESTER_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WESTCHESTER_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WESTCHESTER_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WESTCHESTER_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WESTCHESTER_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WICOMICO_COUNTY_MD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WICOMICO_COUNTY_MD", - "description": null, - "label": "WICOMICO COUNTY MD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WICOMICO_COUNTY_MD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WICOMICO_COUNTY_MD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WICOMICO_COUNTY_MD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WICOMICO_COUNTY_MD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WICOMICO_COUNTY_MD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WICOMICO_COUNTY_MD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WICOMICO_COUNTY_MD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WICOMICO_COUNTY_MD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_KS", - "description": null, - "label": "MARION COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_OR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_OR", - "description": null, - "label": "UNION COUNTY OR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_OR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_OR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_OR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_OR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_OR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_OR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_OR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_OR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEBASTIAN_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEBASTIAN_COUNTY_AR", - "description": null, - "label": "SEBASTIAN COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEBASTIAN_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEBASTIAN_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEBASTIAN_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEBASTIAN_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEBASTIAN_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEBASTIAN_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEBASTIAN_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEBASTIAN_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_AR", - "description": null, - "label": "PULASKI COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIESS_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIESS_COUNTY_IN", - "description": null, - "label": "DAVIESS COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIESS_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIESS_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIESS_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIESS_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIESS_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIESS_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIESS_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIESS_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_KS", - "description": null, - "label": "MITCHELL COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_KY", - "description": null, - "label": "CLAY COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAVALLI_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAVALLI_COUNTY_MT", - "description": null, - "label": "RAVALLI COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAVALLI_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAVALLI_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAVALLI_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAVALLI_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAVALLI_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAVALLI_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAVALLI_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAVALLI_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SNYDER_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SNYDER_COUNTY_PA", - "description": null, - "label": "SNYDER COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SNYDER_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SNYDER_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SNYDER_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SNYDER_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SNYDER_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SNYDER_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SNYDER_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SNYDER_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KAUAI_COUNTY_HI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KAUAI_COUNTY_HI", - "description": null, - "label": "KAUAI COUNTY HI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KAUAI_COUNTY_HI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KAUAI_COUNTY_HI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KAUAI_COUNTY_HI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KAUAI_COUNTY_HI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KAUAI_COUNTY_HI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KAUAI_COUNTY_HI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KAUAI_COUNTY_HI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KAUAI_COUNTY_HI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LORAIN_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LORAIN_COUNTY_OH", - "description": null, - "label": "LORAIN COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LORAIN_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LORAIN_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LORAIN_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LORAIN_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LORAIN_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LORAIN_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LORAIN_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LORAIN_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOSEPHINE_COUNTY_OR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOSEPHINE_COUNTY_OR", - "description": null, - "label": "JOSEPHINE COUNTY OR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOSEPHINE_COUNTY_OR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOSEPHINE_COUNTY_OR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOSEPHINE_COUNTY_OR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOSEPHINE_COUNTY_OR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOSEPHINE_COUNTY_OR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOSEPHINE_COUNTY_OR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOSEPHINE_COUNTY_OR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOSEPHINE_COUNTY_OR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GORDON_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GORDON_COUNTY_GA", - "description": null, - "label": "GORDON COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GORDON_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GORDON_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GORDON_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GORDON_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GORDON_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GORDON_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GORDON_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GORDON_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_MN", - "description": null, - "label": "CLAY COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRUNDY_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRUNDY_COUNTY_IA", - "description": null, - "label": "GRUNDY COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRUNDY_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRUNDY_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRUNDY_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRUNDY_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRUNDY_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRUNDY_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRUNDY_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRUNDY_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_MD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_MD", - "description": null, - "label": "MONTGOMERY COUNTY MD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_MD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_MD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_MD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_MD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_MD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_MD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_MD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_MD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDDLESEX_COUNTY_NJ": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDDLESEX_COUNTY_NJ", - "description": null, - "label": "MIDDLESEX COUNTY NJ", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDDLESEX_COUNTY_NJ.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDDLESEX_COUNTY_NJ.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDDLESEX_COUNTY_NJ.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDDLESEX_COUNTY_NJ.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDDLESEX_COUNTY_NJ.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDDLESEX_COUNTY_NJ.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDDLESEX_COUNTY_NJ.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDDLESEX_COUNTY_NJ.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHTABULA_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHTABULA_COUNTY_OH", - "description": null, - "label": "ASHTABULA COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHTABULA_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHTABULA_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHTABULA_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHTABULA_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHTABULA_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHTABULA_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHTABULA_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHTABULA_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_AL", - "description": null, - "label": "HENRY COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LONOKE_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LONOKE_COUNTY_AR", - "description": null, - "label": "LONOKE COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LONOKE_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LONOKE_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LONOKE_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LONOKE_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LONOKE_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LONOKE_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LONOKE_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LONOKE_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DORCHESTER_COUNTY_DE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DORCHESTER_COUNTY_DE", - "description": null, - "label": "DORCHESTER COUNTY DE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DORCHESTER_COUNTY_DE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DORCHESTER_COUNTY_DE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DORCHESTER_COUNTY_DE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DORCHESTER_COUNTY_DE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DORCHESTER_COUNTY_DE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DORCHESTER_COUNTY_DE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DORCHESTER_COUNTY_DE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DORCHESTER_COUNTY_DE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALLOWAY_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALLOWAY_COUNTY_KY", - "description": null, - "label": "CALLOWAY COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALLOWAY_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALLOWAY_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALLOWAY_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALLOWAY_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALLOWAY_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALLOWAY_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALLOWAY_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALLOWAY_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_IA", - "description": null, - "label": "CALHOUN COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFOURCHE_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFOURCHE_PARISH_LA", - "description": null, - "label": "LAFOURCHE PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFOURCHE_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFOURCHE_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFOURCHE_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFOURCHE_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFOURCHE_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFOURCHE_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFOURCHE_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFOURCHE_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMITH_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMITH_COUNTY_TX", - "description": null, - "label": "SMITH COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMITH_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMITH_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMITH_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMITH_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMITH_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMITH_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMITH_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMITH_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_MS", - "description": null, - "label": "LEE COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORTON_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORTON_COUNTY_KS", - "description": null, - "label": "MORTON COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORTON_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORTON_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORTON_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORTON_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORTON_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORTON_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORTON_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORTON_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREELEY_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREELEY_COUNTY_NE", - "description": null, - "label": "GREELEY COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREELEY_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREELEY_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREELEY_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREELEY_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREELEY_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREELEY_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREELEY_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREELEY_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_MS", - "description": null, - "label": "WARREN COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATRON_COUNTY_NM": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATRON_COUNTY_NM", - "description": null, - "label": "CATRON COUNTY NM", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATRON_COUNTY_NM.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATRON_COUNTY_NM.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATRON_COUNTY_NM.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATRON_COUNTY_NM.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATRON_COUNTY_NM.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATRON_COUNTY_NM.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATRON_COUNTY_NM.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATRON_COUNTY_NM.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HORRY_COUNTY_SC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HORRY_COUNTY_SC", - "description": null, - "label": "HORRY COUNTY SC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HORRY_COUNTY_SC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HORRY_COUNTY_SC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HORRY_COUNTY_SC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HORRY_COUNTY_SC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HORRY_COUNTY_SC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HORRY_COUNTY_SC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HORRY_COUNTY_SC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HORRY_COUNTY_SC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_MO", - "description": null, - "label": "HENRY COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMBOLDT_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMBOLDT_COUNTY_CA", - "description": null, - "label": "HUMBOLDT COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMBOLDT_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMBOLDT_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMBOLDT_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMBOLDT_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMBOLDT_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMBOLDT_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMBOLDT_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMBOLDT_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITLEY_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITLEY_COUNTY_KY", - "description": null, - "label": "WHITLEY COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITLEY_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITLEY_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITLEY_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITLEY_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITLEY_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITLEY_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITLEY_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITLEY_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARROW_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARROW_COUNTY_GA", - "description": null, - "label": "BARROW COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARROW_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARROW_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARROW_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARROW_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARROW_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARROW_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARROW_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARROW_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAMSEY_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAMSEY_COUNTY_ND", - "description": null, - "label": "RAMSEY COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAMSEY_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAMSEY_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAMSEY_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAMSEY_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAMSEY_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAMSEY_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAMSEY_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAMSEY_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTAWATOMIE_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTAWATOMIE_COUNTY_KS", - "description": null, - "label": "POTTAWATOMIE COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTAWATOMIE_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTAWATOMIE_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTAWATOMIE_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTAWATOMIE_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTAWATOMIE_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTAWATOMIE_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTAWATOMIE_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTAWATOMIE_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_MS", - "description": null, - "label": "MARSHALL COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_TN", - "description": null, - "label": "SULLIVAN COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AMHERST_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AMHERST_COUNTY_VA", - "description": null, - "label": "AMHERST COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AMHERST_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AMHERST_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AMHERST_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AMHERST_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AMHERST_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AMHERST_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AMHERST_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AMHERST_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLIOTT_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLIOTT_COUNTY_KY", - "description": null, - "label": "ELLIOTT COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLIOTT_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLIOTT_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLIOTT_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLIOTT_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLIOTT_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLIOTT_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLIOTT_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLIOTT_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STOREY_COUNTY_NV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STOREY_COUNTY_NV", - "description": null, - "label": "STOREY COUNTY NV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STOREY_COUNTY_NV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STOREY_COUNTY_NV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STOREY_COUNTY_NV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STOREY_COUNTY_NV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STOREY_COUNTY_NV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STOREY_COUNTY_NV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STOREY_COUNTY_NV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STOREY_COUNTY_NV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_GA", - "description": null, - "label": "PULASKI COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKCASTLE_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKCASTLE_COUNTY_KY", - "description": null, - "label": "ROCKCASTLE COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKCASTLE_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKCASTLE_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKCASTLE_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKCASTLE_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKCASTLE_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKCASTLE_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKCASTLE_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKCASTLE_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIUTE_COUNTY_UT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIUTE_COUNTY_UT", - "description": null, - "label": "PIUTE COUNTY UT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIUTE_COUNTY_UT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIUTE_COUNTY_UT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIUTE_COUNTY_UT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIUTE_COUNTY_UT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIUTE_COUNTY_UT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIUTE_COUNTY_UT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIUTE_COUNTY_UT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIUTE_COUNTY_UT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMBOLDT_COUNTY_NV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMBOLDT_COUNTY_NV", - "description": null, - "label": "HUMBOLDT COUNTY NV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMBOLDT_COUNTY_NV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMBOLDT_COUNTY_NV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMBOLDT_COUNTY_NV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMBOLDT_COUNTY_NV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMBOLDT_COUNTY_NV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMBOLDT_COUNTY_NV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMBOLDT_COUNTY_NV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMBOLDT_COUNTY_NV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DIXON_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DIXON_COUNTY_NE", - "description": null, - "label": "DIXON COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DIXON_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DIXON_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DIXON_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DIXON_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DIXON_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DIXON_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DIXON_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DIXON_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAMPAIGN_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAMPAIGN_COUNTY_OH", - "description": null, - "label": "CHAMPAIGN COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAMPAIGN_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAMPAIGN_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAMPAIGN_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAMPAIGN_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAMPAIGN_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAMPAIGN_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAMPAIGN_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAMPAIGN_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROGER_MILLS_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROGER_MILLS_COUNTY_OK", - "description": null, - "label": "ROGER MILLS COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROGER_MILLS_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROGER_MILLS_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROGER_MILLS_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROGER_MILLS_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROGER_MILLS_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROGER_MILLS_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROGER_MILLS_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROGER_MILLS_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_IA", - "description": null, - "label": "MITCHELL COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINN_COUNTY_OR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINN_COUNTY_OR", - "description": null, - "label": "LINN COUNTY OR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINN_COUNTY_OR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINN_COUNTY_OR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINN_COUNTY_OR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINN_COUNTY_OR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINN_COUNTY_OR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINN_COUNTY_OR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINN_COUNTY_OR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINN_COUNTY_OR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_IN", - "description": null, - "label": "MARION COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AGUADILLA_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AGUADILLA_MUNICIPIO_PR", - "description": null, - "label": "AGUADILLA MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AGUADILLA_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AGUADILLA_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AGUADILLA_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AGUADILLA_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AGUADILLA_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AGUADILLA_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AGUADILLA_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AGUADILLA_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAHONING_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAHONING_COUNTY_OH", - "description": null, - "label": "MAHONING COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAHONING_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAHONING_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAHONING_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAHONING_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAHONING_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAHONING_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAHONING_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAHONING_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PASSAIC_COUNTY_NJ": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PASSAIC_COUNTY_NJ", - "description": null, - "label": "PASSAIC COUNTY NJ", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PASSAIC_COUNTY_NJ.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PASSAIC_COUNTY_NJ.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PASSAIC_COUNTY_NJ.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PASSAIC_COUNTY_NJ.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PASSAIC_COUNTY_NJ.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PASSAIC_COUNTY_NJ.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PASSAIC_COUNTY_NJ.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PASSAIC_COUNTY_NJ.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOX_BUTTE_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOX_BUTTE_COUNTY_NE", - "description": null, - "label": "BOX BUTTE COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOX_BUTTE_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOX_BUTTE_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOX_BUTTE_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOX_BUTTE_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOX_BUTTE_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOX_BUTTE_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOX_BUTTE_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOX_BUTTE_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUEBRADILLAS_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUEBRADILLAS_MUNICIPIO_PR", - "description": null, - "label": "QUEBRADILLAS MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUEBRADILLAS_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUEBRADILLAS_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUEBRADILLAS_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUEBRADILLAS_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUEBRADILLAS_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUEBRADILLAS_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUEBRADILLAS_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUEBRADILLAS_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWDER_RIVER_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWDER_RIVER_COUNTY_MT", - "description": null, - "label": "POWDER RIVER COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWDER_RIVER_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWDER_RIVER_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWDER_RIVER_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWDER_RIVER_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWDER_RIVER_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWDER_RIVER_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWDER_RIVER_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWDER_RIVER_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLS_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLS_COUNTY_TX", - "description": null, - "label": "MILLS COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLS_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLS_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLS_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLS_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLS_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLS_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLS_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLS_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_VA", - "description": null, - "label": "CARROLL COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAGOFFIN_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAGOFFIN_COUNTY_KY", - "description": null, - "label": "MAGOFFIN COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAGOFFIN_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAGOFFIN_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAGOFFIN_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAGOFFIN_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAGOFFIN_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAGOFFIN_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAGOFFIN_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAGOFFIN_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_AL", - "description": null, - "label": "MACON COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONTRA_COSTA_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONTRA_COSTA_COUNTY_CA", - "description": null, - "label": "CONTRA COSTA COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONTRA_COSTA_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONTRA_COSTA_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONTRA_COSTA_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONTRA_COSTA_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONTRA_COSTA_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONTRA_COSTA_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONTRA_COSTA_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONTRA_COSTA_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_MS", - "description": null, - "label": "LAFAYETTE COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLLINGSWORTH_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLLINGSWORTH_COUNTY_TX", - "description": null, - "label": "COLLINGSWORTH COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLLINGSWORTH_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLLINGSWORTH_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLLINGSWORTH_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLLINGSWORTH_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLLINGSWORTH_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLLINGSWORTH_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLLINGSWORTH_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLLINGSWORTH_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TEXAS_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TEXAS_COUNTY_MO", - "description": null, - "label": "TEXAS COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TEXAS_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TEXAS_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TEXAS_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TEXAS_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TEXAS_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TEXAS_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TEXAS_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TEXAS_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WRANGELL_CITY_AND_BOROUGH_AK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WRANGELL_CITY_AND_BOROUGH_AK", - "description": null, - "label": "WRANGELL CITY AND BOROUGH AK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WRANGELL_CITY_AND_BOROUGH_AK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WRANGELL_CITY_AND_BOROUGH_AK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WRANGELL_CITY_AND_BOROUGH_AK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WRANGELL_CITY_AND_BOROUGH_AK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WRANGELL_CITY_AND_BOROUGH_AK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WRANGELL_CITY_AND_BOROUGH_AK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WRANGELL_CITY_AND_BOROUGH_AK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WRANGELL_CITY_AND_BOROUGH_AK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TREGO_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TREGO_COUNTY_KS", - "description": null, - "label": "TREGO COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TREGO_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TREGO_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TREGO_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TREGO_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TREGO_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TREGO_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TREGO_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TREGO_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROOKS_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROOKS_COUNTY_KS", - "description": null, - "label": "ROOKS COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROOKS_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROOKS_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROOKS_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROOKS_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROOKS_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROOKS_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROOKS_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROOKS_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMMONS_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMMONS_COUNTY_SD", - "description": null, - "label": "EMMONS COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMMONS_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMMONS_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMMONS_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMMONS_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMMONS_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMMONS_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMMONS_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMMONS_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALE_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALE_COUNTY_AL", - "description": null, - "label": "HALE COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALE_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALE_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALE_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALE_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALE_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALE_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALE_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALE_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKENZIE_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKENZIE_COUNTY_MT", - "description": null, - "label": "MCKENZIE COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKENZIE_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKENZIE_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKENZIE_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKENZIE_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKENZIE_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKENZIE_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKENZIE_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKENZIE_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHELPS_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHELPS_COUNTY_MO", - "description": null, - "label": "PHELPS COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHELPS_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHELPS_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHELPS_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHELPS_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHELPS_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHELPS_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHELPS_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHELPS_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_WILLIAM_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_WILLIAM_COUNTY_VA", - "description": null, - "label": "PRINCE WILLIAM COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_WILLIAM_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_WILLIAM_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_WILLIAM_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_WILLIAM_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_WILLIAM_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_WILLIAM_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_WILLIAM_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_WILLIAM_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_ID": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_ID", - "description": null, - "label": "MADISON COUNTY ID", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_ID.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_ID.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_ID.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_ID.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_ID.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_ID.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_ID.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_ID.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHARKEY_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHARKEY_COUNTY_MS", - "description": null, - "label": "SHARKEY COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHARKEY_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHARKEY_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHARKEY_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHARKEY_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHARKEY_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHARKEY_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHARKEY_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHARKEY_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_AL", - "description": null, - "label": "MARSHALL COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VANDERBURGH_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VANDERBURGH_COUNTY_IN", - "description": null, - "label": "VANDERBURGH COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VANDERBURGH_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VANDERBURGH_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VANDERBURGH_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VANDERBURGH_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VANDERBURGH_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VANDERBURGH_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VANDERBURGH_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VANDERBURGH_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RENSSELAER_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RENSSELAER_COUNTY_NY", - "description": null, - "label": "RENSSELAER COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RENSSELAER_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RENSSELAER_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RENSSELAER_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RENSSELAER_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RENSSELAER_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RENSSELAER_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RENSSELAER_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RENSSELAER_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_IL", - "description": null, - "label": "KNOX COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_MT", - "description": null, - "label": "GARFIELD COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRENSHAW_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRENSHAW_COUNTY_AL", - "description": null, - "label": "CRENSHAW COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRENSHAW_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRENSHAW_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRENSHAW_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRENSHAW_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRENSHAW_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRENSHAW_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRENSHAW_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRENSHAW_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LITCHFIELD_COUNTY_CT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LITCHFIELD_COUNTY_CT", - "description": null, - "label": "LITCHFIELD COUNTY CT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LITCHFIELD_COUNTY_CT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LITCHFIELD_COUNTY_CT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LITCHFIELD_COUNTY_CT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LITCHFIELD_COUNTY_CT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LITCHFIELD_COUNTY_CT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LITCHFIELD_COUNTY_CT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LITCHFIELD_COUNTY_CT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LITCHFIELD_COUNTY_CT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_IA", - "description": null, - "label": "HENRY COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAIR_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAIR_COUNTY_PA", - "description": null, - "label": "BLAIR COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAIR_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAIR_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAIR_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAIR_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAIR_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAIR_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAIR_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAIR_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUTLAND_COUNTY_VT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUTLAND_COUNTY_VT", - "description": null, - "label": "RUTLAND COUNTY VT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUTLAND_COUNTY_VT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUTLAND_COUNTY_VT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUTLAND_COUNTY_VT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUTLAND_COUNTY_VT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUTLAND_COUNTY_VT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUTLAND_COUNTY_VT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUTLAND_COUNTY_VT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUTLAND_COUNTY_VT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHAWNEE_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHAWNEE_COUNTY_KS", - "description": null, - "label": "SHAWNEE COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHAWNEE_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHAWNEE_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHAWNEE_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHAWNEE_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHAWNEE_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHAWNEE_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHAWNEE_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHAWNEE_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NICHOLAS_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NICHOLAS_COUNTY_WV", - "description": null, - "label": "NICHOLAS COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NICHOLAS_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NICHOLAS_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NICHOLAS_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NICHOLAS_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NICHOLAS_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NICHOLAS_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NICHOLAS_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NICHOLAS_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUDOUN_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUDOUN_COUNTY_VA", - "description": null, - "label": "LOUDOUN COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUDOUN_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUDOUN_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUDOUN_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUDOUN_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUDOUN_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUDOUN_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUDOUN_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUDOUN_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IMPERIAL_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IMPERIAL_COUNTY_CA", - "description": null, - "label": "IMPERIAL COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IMPERIAL_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IMPERIAL_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IMPERIAL_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IMPERIAL_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IMPERIAL_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IMPERIAL_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IMPERIAL_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IMPERIAL_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MESA_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MESA_COUNTY_CO", - "description": null, - "label": "MESA COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MESA_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MESA_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MESA_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MESA_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MESA_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MESA_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MESA_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MESA_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_ND", - "description": null, - "label": "RICHLAND COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_YORK_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_YORK_COUNTY_NY", - "description": null, - "label": "NEW YORK COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_YORK_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_YORK_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_YORK_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_YORK_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_YORK_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_YORK_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_YORK_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_YORK_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CULPEPER_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CULPEPER_COUNTY_VA", - "description": null, - "label": "CULPEPER COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CULPEPER_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CULPEPER_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CULPEPER_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CULPEPER_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CULPEPER_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CULPEPER_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CULPEPER_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CULPEPER_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_AL", - "description": null, - "label": "DEKALB COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_TX", - "description": null, - "label": "HARRISON COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIOWA_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIOWA_COUNTY_KS", - "description": null, - "label": "KIOWA COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIOWA_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIOWA_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIOWA_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIOWA_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIOWA_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIOWA_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIOWA_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIOWA_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ZIEBACH_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ZIEBACH_COUNTY_SD", - "description": null, - "label": "ZIEBACH COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ZIEBACH_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ZIEBACH_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ZIEBACH_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ZIEBACH_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ZIEBACH_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ZIEBACH_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ZIEBACH_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ZIEBACH_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARK_COUNTY_WY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARK_COUNTY_WY", - "description": null, - "label": "PARK COUNTY WY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARK_COUNTY_WY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARK_COUNTY_WY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARK_COUNTY_WY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARK_COUNTY_WY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARK_COUNTY_WY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARK_COUNTY_WY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARK_COUNTY_WY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARK_COUNTY_WY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CANYON_COUNTY_ID": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CANYON_COUNTY_ID", - "description": null, - "label": "CANYON COUNTY ID", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CANYON_COUNTY_ID.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CANYON_COUNTY_ID.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CANYON_COUNTY_ID.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CANYON_COUNTY_ID.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CANYON_COUNTY_ID.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CANYON_COUNTY_ID.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CANYON_COUNTY_ID.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CANYON_COUNTY_ID.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SARGENT_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SARGENT_COUNTY_ND", - "description": null, - "label": "SARGENT COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SARGENT_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SARGENT_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SARGENT_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SARGENT_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SARGENT_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SARGENT_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SARGENT_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SARGENT_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UINTA_COUNTY_WY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UINTA_COUNTY_WY", - "description": null, - "label": "UINTA COUNTY WY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UINTA_COUNTY_WY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UINTA_COUNTY_WY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UINTA_COUNTY_WY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UINTA_COUNTY_WY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UINTA_COUNTY_WY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UINTA_COUNTY_WY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UINTA_COUNTY_WY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UINTA_COUNTY_WY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUDRAIN_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUDRAIN_COUNTY_MO", - "description": null, - "label": "AUDRAIN COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUDRAIN_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUDRAIN_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUDRAIN_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUDRAIN_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUDRAIN_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUDRAIN_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUDRAIN_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUDRAIN_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOÑA_ANA_COUNTY_NM": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOÑA_ANA_COUNTY_NM", - "description": null, - "label": "DOÑA ANA COUNTY NM", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOÑA_ANA_COUNTY_NM.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOÑA_ANA_COUNTY_NM.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOÑA_ANA_COUNTY_NM.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOÑA_ANA_COUNTY_NM.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOÑA_ANA_COUNTY_NM.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOÑA_ANA_COUNTY_NM.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOÑA_ANA_COUNTY_NM.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOÑA_ANA_COUNTY_NM.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SENECA_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SENECA_COUNTY_OH", - "description": null, - "label": "SENECA COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SENECA_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SENECA_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SENECA_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SENECA_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SENECA_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SENECA_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SENECA_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SENECA_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHICKASAW_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHICKASAW_COUNTY_IA", - "description": null, - "label": "CHICKASAW COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHICKASAW_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHICKASAW_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHICKASAW_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHICKASAW_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHICKASAW_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHICKASAW_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHICKASAW_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHICKASAW_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_FL", - "description": null, - "label": "MADISON COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAWSON_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAWSON_COUNTY_NE", - "description": null, - "label": "DAWSON COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAWSON_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAWSON_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAWSON_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAWSON_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAWSON_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAWSON_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAWSON_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAWSON_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEWART_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEWART_COUNTY_GA", - "description": null, - "label": "STEWART COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEWART_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEWART_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEWART_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEWART_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEWART_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEWART_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEWART_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEWART_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_MS", - "description": null, - "label": "BENTON COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SILVER_BOW_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SILVER_BOW_COUNTY_MT", - "description": null, - "label": "SILVER BOW COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SILVER_BOW_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SILVER_BOW_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SILVER_BOW_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SILVER_BOW_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SILVER_BOW_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SILVER_BOW_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SILVER_BOW_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SILVER_BOW_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEPIN_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEPIN_COUNTY_WI", - "description": null, - "label": "PEPIN COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEPIN_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEPIN_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEPIN_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEPIN_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEPIN_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEPIN_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEPIN_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEPIN_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_PA", - "description": null, - "label": "DELAWARE COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSK_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSK_COUNTY_WI", - "description": null, - "label": "RUSK COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSK_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSK_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSK_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSK_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSK_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSK_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSK_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSK_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONO_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONO_COUNTY_CA", - "description": null, - "label": "MONO COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONO_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONO_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONO_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONO_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONO_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONO_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONO_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONO_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTTE_COUNTY_ID": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTTE_COUNTY_ID", - "description": null, - "label": "BUTTE COUNTY ID", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTTE_COUNTY_ID.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTTE_COUNTY_ID.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTTE_COUNTY_ID.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTTE_COUNTY_ID.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTTE_COUNTY_ID.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTTE_COUNTY_ID.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTTE_COUNTY_ID.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTTE_COUNTY_ID.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_IN", - "description": null, - "label": "MONTGOMERY COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MALHEUR_COUNTY_OR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MALHEUR_COUNTY_OR", - "description": null, - "label": "MALHEUR COUNTY OR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MALHEUR_COUNTY_OR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MALHEUR_COUNTY_OR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MALHEUR_COUNTY_OR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MALHEUR_COUNTY_OR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MALHEUR_COUNTY_OR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MALHEUR_COUNTY_OR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MALHEUR_COUNTY_OR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MALHEUR_COUNTY_OR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AGUADA_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AGUADA_MUNICIPIO_PR", - "description": null, - "label": "AGUADA MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AGUADA_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AGUADA_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AGUADA_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AGUADA_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AGUADA_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AGUADA_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AGUADA_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AGUADA_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LE_SUEUR_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LE_SUEUR_COUNTY_MN", - "description": null, - "label": "LE SUEUR COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LE_SUEUR_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LE_SUEUR_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LE_SUEUR_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LE_SUEUR_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LE_SUEUR_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LE_SUEUR_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LE_SUEUR_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LE_SUEUR_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_VA", - "description": null, - "label": "ESSEX COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_MO", - "description": null, - "label": "HOWARD COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHILDRESS_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHILDRESS_COUNTY_TX", - "description": null, - "label": "CHILDRESS COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHILDRESS_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHILDRESS_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHILDRESS_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHILDRESS_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHILDRESS_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHILDRESS_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHILDRESS_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHILDRESS_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_IL", - "description": null, - "label": "SHELBY COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_MN", - "description": null, - "label": "MARTIN COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_OK", - "description": null, - "label": "JEFFERSON COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_GA", - "description": null, - "label": "WAYNE COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFF_DAVIS_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFF_DAVIS_COUNTY_GA", - "description": null, - "label": "JEFF DAVIS COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFF_DAVIS_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFF_DAVIS_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFF_DAVIS_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFF_DAVIS_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFF_DAVIS_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFF_DAVIS_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFF_DAVIS_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFF_DAVIS_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HABERSHAM_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HABERSHAM_COUNTY_GA", - "description": null, - "label": "HABERSHAM COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HABERSHAM_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HABERSHAM_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HABERSHAM_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HABERSHAM_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HABERSHAM_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HABERSHAM_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HABERSHAM_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HABERSHAM_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_NE", - "description": null, - "label": "POLK COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_IN", - "description": null, - "label": "SULLIVAN COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHENECTADY_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHENECTADY_COUNTY_NY", - "description": null, - "label": "SCHENECTADY COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHENECTADY_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHENECTADY_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHENECTADY_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHENECTADY_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHENECTADY_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHENECTADY_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHENECTADY_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHENECTADY_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LA_SALLE_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LA_SALLE_COUNTY_TX", - "description": null, - "label": "LA SALLE COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LA_SALLE_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LA_SALLE_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LA_SALLE_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LA_SALLE_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LA_SALLE_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LA_SALLE_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LA_SALLE_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LA_SALLE_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOISE_COUNTY_ID": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOISE_COUNTY_ID", - "description": null, - "label": "BOISE COUNTY ID", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOISE_COUNTY_ID.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOISE_COUNTY_ID.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOISE_COUNTY_ID.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOISE_COUNTY_ID.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOISE_COUNTY_ID.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOISE_COUNTY_ID.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOISE_COUNTY_ID.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOISE_COUNTY_ID.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_ID": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_ID", - "description": null, - "label": "FRANKLIN COUNTY ID", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_ID.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_ID.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_ID.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_ID.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_ID.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_ID.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_ID.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_ID.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_IL", - "description": null, - "label": "PUTNAM COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PALO_ALTO_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PALO_ALTO_COUNTY_IA", - "description": null, - "label": "PALO ALTO COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PALO_ALTO_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PALO_ALTO_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PALO_ALTO_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PALO_ALTO_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PALO_ALTO_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PALO_ALTO_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PALO_ALTO_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PALO_ALTO_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_TX", - "description": null, - "label": "DALLAS COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARD_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARD_COUNTY_TX", - "description": null, - "label": "WARD COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARD_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARD_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARD_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARD_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARD_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARD_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARD_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARD_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARROYO_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARROYO_MUNICIPIO_PR", - "description": null, - "label": "ARROYO MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARROYO_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARROYO_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARROYO_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARROYO_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARROYO_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARROYO_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARROYO_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARROYO_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_TN", - "description": null, - "label": "UNION COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELTRAMI_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELTRAMI_COUNTY_MN", - "description": null, - "label": "BELTRAMI COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELTRAMI_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELTRAMI_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELTRAMI_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELTRAMI_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELTRAMI_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELTRAMI_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELTRAMI_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELTRAMI_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CEDAR_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CEDAR_COUNTY_MO", - "description": null, - "label": "CEDAR COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CEDAR_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CEDAR_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CEDAR_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CEDAR_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CEDAR_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CEDAR_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CEDAR_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CEDAR_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CLAIR_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CLAIR_COUNTY_AL", - "description": null, - "label": "ST CLAIR COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CLAIR_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CLAIR_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CLAIR_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CLAIR_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CLAIR_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CLAIR_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CLAIR_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CLAIR_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSCEOLA_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSCEOLA_COUNTY_MI", - "description": null, - "label": "OSCEOLA COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSCEOLA_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSCEOLA_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSCEOLA_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSCEOLA_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSCEOLA_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSCEOLA_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSCEOLA_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSCEOLA_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUSSEX_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUSSEX_COUNTY_VA", - "description": null, - "label": "SUSSEX COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUSSEX_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUSSEX_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUSSEX_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUSSEX_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUSSEX_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUSSEX_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUSSEX_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUSSEX_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BASTROP_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BASTROP_COUNTY_TX", - "description": null, - "label": "BASTROP COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BASTROP_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BASTROP_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BASTROP_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BASTROP_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BASTROP_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BASTROP_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BASTROP_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BASTROP_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LATAH_COUNTY_ID": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LATAH_COUNTY_ID", - "description": null, - "label": "LATAH COUNTY ID", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LATAH_COUNTY_ID.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LATAH_COUNTY_ID.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LATAH_COUNTY_ID.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LATAH_COUNTY_ID.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LATAH_COUNTY_ID.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LATAH_COUNTY_ID.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LATAH_COUNTY_ID.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LATAH_COUNTY_ID.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.THAYER_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.THAYER_COUNTY_NE", - "description": null, - "label": "THAYER COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.THAYER_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.THAYER_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.THAYER_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.THAYER_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.THAYER_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.THAYER_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.THAYER_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.THAYER_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_NE", - "description": null, - "label": "KNOX COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHANNON_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHANNON_COUNTY_MO", - "description": null, - "label": "SHANNON COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHANNON_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHANNON_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHANNON_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHANNON_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHANNON_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHANNON_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHANNON_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHANNON_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_WI", - "description": null, - "label": "ADAMS COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOFFAT_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOFFAT_COUNTY_CO", - "description": null, - "label": "MOFFAT COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOFFAT_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOFFAT_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOFFAT_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOFFAT_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOFFAT_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOFFAT_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOFFAT_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOFFAT_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTERO_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTERO_COUNTY_CO", - "description": null, - "label": "OTERO COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTERO_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTERO_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTERO_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTERO_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTERO_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTERO_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTERO_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTERO_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_GA", - "description": null, - "label": "PIERCE COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALVESTON_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALVESTON_COUNTY_TX", - "description": null, - "label": "GALVESTON COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALVESTON_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALVESTON_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALVESTON_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALVESTON_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALVESTON_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALVESTON_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALVESTON_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALVESTON_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCINTOSH_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCINTOSH_COUNTY_GA", - "description": null, - "label": "MCINTOSH COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCINTOSH_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCINTOSH_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCINTOSH_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCINTOSH_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCINTOSH_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCINTOSH_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCINTOSH_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCINTOSH_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMTER_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMTER_COUNTY_GA", - "description": null, - "label": "SUMTER COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMTER_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMTER_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMTER_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMTER_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMTER_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMTER_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMTER_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMTER_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLUMAS_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLUMAS_COUNTY_CA", - "description": null, - "label": "PLUMAS COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLUMAS_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLUMAS_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLUMAS_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLUMAS_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLUMAS_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLUMAS_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLUMAS_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLUMAS_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_OH", - "description": null, - "label": "BROWN COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMSBURG_COUNTY_SC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMSBURG_COUNTY_SC", - "description": null, - "label": "WILLIAMSBURG COUNTY SC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMSBURG_COUNTY_SC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMSBURG_COUNTY_SC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMSBURG_COUNTY_SC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMSBURG_COUNTY_SC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMSBURG_COUNTY_SC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMSBURG_COUNTY_SC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMSBURG_COUNTY_SC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMSBURG_COUNTY_SC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRATIOT_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRATIOT_COUNTY_MI", - "description": null, - "label": "GRATIOT COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRATIOT_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRATIOT_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRATIOT_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRATIOT_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRATIOT_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRATIOT_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRATIOT_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRATIOT_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRACKEN_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRACKEN_COUNTY_KY", - "description": null, - "label": "BRACKEN COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRACKEN_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRACKEN_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRACKEN_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRACKEN_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRACKEN_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRACKEN_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRACKEN_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRACKEN_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_MT", - "description": null, - "label": "CUSTER COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_GA", - "description": null, - "label": "JEFFERSON COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PETROLEUM_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PETROLEUM_COUNTY_MT", - "description": null, - "label": "PETROLEUM COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PETROLEUM_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PETROLEUM_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PETROLEUM_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PETROLEUM_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PETROLEUM_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PETROLEUM_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PETROLEUM_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PETROLEUM_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_NY", - "description": null, - "label": "COLUMBIA COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAMBERS_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAMBERS_COUNTY_TX", - "description": null, - "label": "CHAMBERS COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAMBERS_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAMBERS_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAMBERS_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAMBERS_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAMBERS_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAMBERS_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAMBERS_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAMBERS_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAVER_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAVER_COUNTY_OK", - "description": null, - "label": "BEAVER COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAVER_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAVER_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAVER_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAVER_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAVER_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAVER_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAVER_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAVER_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_AUGUSTINE_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_AUGUSTINE_COUNTY_TX", - "description": null, - "label": "SAN AUGUSTINE COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_AUGUSTINE_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_AUGUSTINE_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_AUGUSTINE_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_AUGUSTINE_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_AUGUSTINE_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_AUGUSTINE_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_AUGUSTINE_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_AUGUSTINE_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIT_CARSON_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIT_CARSON_COUNTY_CO", - "description": null, - "label": "KIT CARSON COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIT_CARSON_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIT_CARSON_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIT_CARSON_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIT_CARSON_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIT_CARSON_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIT_CARSON_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIT_CARSON_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIT_CARSON_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_AL", - "description": null, - "label": "GREENE COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAUNABO_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAUNABO_MUNICIPIO_PR", - "description": null, - "label": "MAUNABO MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAUNABO_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAUNABO_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAUNABO_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAUNABO_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAUNABO_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAUNABO_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAUNABO_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAUNABO_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALLAWAY_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALLAWAY_COUNTY_MO", - "description": null, - "label": "CALLAWAY COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALLAWAY_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALLAWAY_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALLAWAY_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALLAWAY_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALLAWAY_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALLAWAY_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALLAWAY_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALLAWAY_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FALLS_CHURCH_CITY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FALLS_CHURCH_CITY_VA", - "description": null, - "label": "FALLS CHURCH CITY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FALLS_CHURCH_CITY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FALLS_CHURCH_CITY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FALLS_CHURCH_CITY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FALLS_CHURCH_CITY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FALLS_CHURCH_CITY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FALLS_CHURCH_CITY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FALLS_CHURCH_CITY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FALLS_CHURCH_CITY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_VT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_VT", - "description": null, - "label": "ORANGE COUNTY VT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_VT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_VT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_VT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_VT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_VT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_VT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_VT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_VT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRONTIER_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRONTIER_COUNTY_NE", - "description": null, - "label": "FRONTIER COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRONTIER_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRONTIER_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRONTIER_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRONTIER_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRONTIER_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRONTIER_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRONTIER_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRONTIER_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMP_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMP_COUNTY_TX", - "description": null, - "label": "CAMP COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMP_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMP_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMP_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMP_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMP_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMP_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMP_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMP_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAVES_COUNTY_NM": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAVES_COUNTY_NM", - "description": null, - "label": "CHAVES COUNTY NM", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAVES_COUNTY_NM.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAVES_COUNTY_NM.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAVES_COUNTY_NM.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAVES_COUNTY_NM.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAVES_COUNTY_NM.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAVES_COUNTY_NM.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAVES_COUNTY_NM.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAVES_COUNTY_NM.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANKAKEE_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANKAKEE_COUNTY_IL", - "description": null, - "label": "KANKAKEE COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANKAKEE_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANKAKEE_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANKAKEE_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANKAKEE_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANKAKEE_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANKAKEE_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANKAKEE_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANKAKEE_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_TX", - "description": null, - "label": "NEWTON COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMMET_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMMET_COUNTY_IA", - "description": null, - "label": "EMMET COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMMET_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMMET_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMMET_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMMET_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMMET_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMMET_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMMET_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMMET_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEADE_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEADE_COUNTY_SD", - "description": null, - "label": "MEADE COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEADE_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEADE_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEADE_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEADE_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEADE_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEADE_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEADE_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEADE_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROANE_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROANE_COUNTY_WV", - "description": null, - "label": "ROANE COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROANE_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROANE_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROANE_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROANE_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROANE_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROANE_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROANE_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROANE_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUNA_COUNTY_NM": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUNA_COUNTY_NM", - "description": null, - "label": "LUNA COUNTY NM", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUNA_COUNTY_NM.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUNA_COUNTY_NM.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUNA_COUNTY_NM.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUNA_COUNTY_NM.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUNA_COUNTY_NM.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUNA_COUNTY_NM.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUNA_COUNTY_NM.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUNA_COUNTY_NM.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYMAN_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYMAN_COUNTY_SD", - "description": null, - "label": "LYMAN COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYMAN_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYMAN_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYMAN_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYMAN_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYMAN_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYMAN_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYMAN_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYMAN_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONONGALIA_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONONGALIA_COUNTY_WV", - "description": null, - "label": "MONONGALIA COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONONGALIA_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONONGALIA_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONONGALIA_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONONGALIA_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONONGALIA_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONONGALIA_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONONGALIA_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONONGALIA_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_MN", - "description": null, - "label": "DOUGLAS COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKENS_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKENS_COUNTY_AL", - "description": null, - "label": "PICKENS COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKENS_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKENS_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKENS_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKENS_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKENS_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKENS_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKENS_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKENS_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UPTON_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UPTON_COUNTY_TX", - "description": null, - "label": "UPTON COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UPTON_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UPTON_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UPTON_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UPTON_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UPTON_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UPTON_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UPTON_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UPTON_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_SD", - "description": null, - "label": "CUSTER COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMPHREYS_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMPHREYS_COUNTY_TN", - "description": null, - "label": "HUMPHREYS COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMPHREYS_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMPHREYS_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMPHREYS_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMPHREYS_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMPHREYS_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMPHREYS_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMPHREYS_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMPHREYS_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_AL", - "description": null, - "label": "MONROE COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_COUNTY_SD", - "description": null, - "label": "ROCK COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_GA", - "description": null, - "label": "MADISON COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MISSOULA_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MISSOULA_COUNTY_MT", - "description": null, - "label": "MISSOULA COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MISSOULA_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MISSOULA_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MISSOULA_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MISSOULA_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MISSOULA_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MISSOULA_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MISSOULA_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MISSOULA_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAVERHEAD_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAVERHEAD_COUNTY_MT", - "description": null, - "label": "BEAVERHEAD COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAVERHEAD_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAVERHEAD_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAVERHEAD_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAVERHEAD_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAVERHEAD_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAVERHEAD_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAVERHEAD_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAVERHEAD_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_VT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_VT", - "description": null, - "label": "ESSEX COUNTY VT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_VT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_VT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_VT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_VT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_VT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_VT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_VT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_VT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUSHMATAHA_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUSHMATAHA_COUNTY_OK", - "description": null, - "label": "PUSHMATAHA COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUSHMATAHA_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUSHMATAHA_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUSHMATAHA_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUSHMATAHA_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUSHMATAHA_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUSHMATAHA_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUSHMATAHA_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUSHMATAHA_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JESSAMINE_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JESSAMINE_COUNTY_KY", - "description": null, - "label": "JESSAMINE COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JESSAMINE_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JESSAMINE_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JESSAMINE_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JESSAMINE_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JESSAMINE_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JESSAMINE_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JESSAMINE_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JESSAMINE_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARMER_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARMER_COUNTY_TX", - "description": null, - "label": "PARMER COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARMER_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARMER_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARMER_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARMER_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARMER_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARMER_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARMER_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARMER_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_KS", - "description": null, - "label": "LOGAN COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_KY", - "description": null, - "label": "WARREN COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOK_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOK_COUNTY_IL", - "description": null, - "label": "COOK COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOK_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOK_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOK_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOK_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOK_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOK_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOK_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOK_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWISHER_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWISHER_COUNTY_TX", - "description": null, - "label": "SWISHER COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWISHER_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWISHER_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWISHER_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWISHER_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWISHER_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWISHER_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWISHER_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWISHER_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KUSILVAK_CENSUS_AREA_AK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KUSILVAK_CENSUS_AREA_AK", - "description": null, - "label": "KUSILVAK CENSUS AREA AK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KUSILVAK_CENSUS_AREA_AK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KUSILVAK_CENSUS_AREA_AK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KUSILVAK_CENSUS_AREA_AK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KUSILVAK_CENSUS_AREA_AK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KUSILVAK_CENSUS_AREA_AK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KUSILVAK_CENSUS_AREA_AK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KUSILVAK_CENSUS_AREA_AK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KUSILVAK_CENSUS_AREA_AK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_FL", - "description": null, - "label": "MONROE COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUNT_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUNT_COUNTY_TX", - "description": null, - "label": "HUNT COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUNT_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUNT_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUNT_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUNT_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUNT_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUNT_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUNT_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUNT_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HASKELL_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HASKELL_COUNTY_OK", - "description": null, - "label": "HASKELL COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HASKELL_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HASKELL_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HASKELL_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HASKELL_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HASKELL_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HASKELL_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HASKELL_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HASKELL_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODGE_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODGE_COUNTY_MN", - "description": null, - "label": "DODGE COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODGE_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODGE_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODGE_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODGE_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODGE_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODGE_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODGE_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODGE_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_AR", - "description": null, - "label": "JACKSON COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCRACKEN_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCRACKEN_COUNTY_KY", - "description": null, - "label": "MCCRACKEN COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCRACKEN_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCRACKEN_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCRACKEN_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCRACKEN_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCRACKEN_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCRACKEN_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCRACKEN_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCRACKEN_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.METCALFE_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.METCALFE_COUNTY_KY", - "description": null, - "label": "METCALFE COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.METCALFE_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.METCALFE_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.METCALFE_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.METCALFE_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.METCALFE_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.METCALFE_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.METCALFE_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.METCALFE_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDDLESEX_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDDLESEX_COUNTY_VA", - "description": null, - "label": "MIDDLESEX COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDDLESEX_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDDLESEX_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDDLESEX_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDDLESEX_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDDLESEX_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDDLESEX_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDDLESEX_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDDLESEX_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_IA", - "description": null, - "label": "SHELBY COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_MI", - "description": null, - "label": "LAKE COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLUVANNA_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLUVANNA_COUNTY_VA", - "description": null, - "label": "FLUVANNA COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLUVANNA_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLUVANNA_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLUVANNA_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLUVANNA_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLUVANNA_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLUVANNA_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLUVANNA_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLUVANNA_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCMULLEN_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCMULLEN_COUNTY_TX", - "description": null, - "label": "MCMULLEN COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCMULLEN_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCMULLEN_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCMULLEN_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCMULLEN_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCMULLEN_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCMULLEN_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCMULLEN_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCMULLEN_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_MUNICIPIO_PR", - "description": null, - "label": "SAN JUAN MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMMET_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMMET_COUNTY_MI", - "description": null, - "label": "EMMET COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMMET_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMMET_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMMET_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMMET_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMMET_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMMET_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMMET_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMMET_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCHILTREE_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCHILTREE_COUNTY_TX", - "description": null, - "label": "OCHILTREE COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCHILTREE_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCHILTREE_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCHILTREE_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCHILTREE_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCHILTREE_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCHILTREE_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCHILTREE_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCHILTREE_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSKEGON_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSKEGON_COUNTY_MI", - "description": null, - "label": "MUSKEGON COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSKEGON_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSKEGON_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSKEGON_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSKEGON_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSKEGON_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSKEGON_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSKEGON_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSKEGON_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BANNOCK_COUNTY_ID": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BANNOCK_COUNTY_ID", - "description": null, - "label": "BANNOCK COUNTY ID", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BANNOCK_COUNTY_ID.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BANNOCK_COUNTY_ID.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BANNOCK_COUNTY_ID.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BANNOCK_COUNTY_ID.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BANNOCK_COUNTY_ID.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BANNOCK_COUNTY_ID.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BANNOCK_COUNTY_ID.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BANNOCK_COUNTY_ID.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_TN", - "description": null, - "label": "CUMBERLAND COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_TN", - "description": null, - "label": "MONROE COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSSELL_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSSELL_COUNTY_KS", - "description": null, - "label": "RUSSELL COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSSELL_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSSELL_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSSELL_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSSELL_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSSELL_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSSELL_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSSELL_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSSELL_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARQUETTE_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARQUETTE_COUNTY_WI", - "description": null, - "label": "MARQUETTE COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARQUETTE_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARQUETTE_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARQUETTE_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARQUETTE_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARQUETTE_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARQUETTE_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARQUETTE_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARQUETTE_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINSTON_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINSTON_COUNTY_AL", - "description": null, - "label": "WINSTON COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINSTON_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINSTON_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINSTON_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINSTON_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINSTON_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINSTON_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINSTON_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINSTON_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHATHAM_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHATHAM_COUNTY_GA", - "description": null, - "label": "CHATHAM COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHATHAM_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHATHAM_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHATHAM_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHATHAM_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHATHAM_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHATHAM_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHATHAM_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHATHAM_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_TN", - "description": null, - "label": "BENTON COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEVADA_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEVADA_COUNTY_AR", - "description": null, - "label": "NEVADA COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEVADA_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEVADA_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEVADA_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEVADA_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEVADA_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEVADA_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEVADA_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEVADA_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURT_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURT_COUNTY_NE", - "description": null, - "label": "BURT COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURT_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURT_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURT_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURT_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURT_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURT_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURT_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURT_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEBURNE_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEBURNE_COUNTY_AL", - "description": null, - "label": "CLEBURNE COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEBURNE_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEBURNE_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEBURNE_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEBURNE_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEBURNE_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEBURNE_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEBURNE_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEBURNE_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMIT_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMIT_COUNTY_CO", - "description": null, - "label": "SUMMIT COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMIT_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMIT_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMIT_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMIT_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMIT_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMIT_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMIT_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMIT_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOME_CENSUS_AREA_AK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOME_CENSUS_AREA_AK", - "description": null, - "label": "NOME CENSUS AREA AK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOME_CENSUS_AREA_AK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOME_CENSUS_AREA_AK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOME_CENSUS_AREA_AK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOME_CENSUS_AREA_AK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOME_CENSUS_AREA_AK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOME_CENSUS_AREA_AK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOME_CENSUS_AREA_AK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOME_CENSUS_AREA_AK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TERREBONNE_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TERREBONNE_PARISH_LA", - "description": null, - "label": "TERREBONNE PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TERREBONNE_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TERREBONNE_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TERREBONNE_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TERREBONNE_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TERREBONNE_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TERREBONNE_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TERREBONNE_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TERREBONNE_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_AL", - "description": null, - "label": "CHEROKEE COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENOBSCOT_COUNTY_ME": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENOBSCOT_COUNTY_ME", - "description": null, - "label": "PENOBSCOT COUNTY ME", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENOBSCOT_COUNTY_ME.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENOBSCOT_COUNTY_ME.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENOBSCOT_COUNTY_ME.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENOBSCOT_COUNTY_ME.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENOBSCOT_COUNTY_ME.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENOBSCOT_COUNTY_ME.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENOBSCOT_COUNTY_ME.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENOBSCOT_COUNTY_ME.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_GA", - "description": null, - "label": "GREENE COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUADALUPE_COUNTY_NM": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUADALUPE_COUNTY_NM", - "description": null, - "label": "GUADALUPE COUNTY NM", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUADALUPE_COUNTY_NM.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUADALUPE_COUNTY_NM.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUADALUPE_COUNTY_NM.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUADALUPE_COUNTY_NM.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUADALUPE_COUNTY_NM.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUADALUPE_COUNTY_NM.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUADALUPE_COUNTY_NM.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUADALUPE_COUNTY_NM.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUADALUPE_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUADALUPE_COUNTY_TX", - "description": null, - "label": "GUADALUPE COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUADALUPE_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUADALUPE_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUADALUPE_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUADALUPE_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUADALUPE_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUADALUPE_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUADALUPE_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUADALUPE_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_IN", - "description": null, - "label": "MORGAN COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUTCHINSON_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUTCHINSON_COUNTY_TX", - "description": null, - "label": "HUTCHINSON COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUTCHINSON_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUTCHINSON_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUTCHINSON_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUTCHINSON_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUTCHINSON_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUTCHINSON_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUTCHINSON_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUTCHINSON_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_OH", - "description": null, - "label": "LAKE COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAUK_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAUK_COUNTY_WI", - "description": null, - "label": "SAUK COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAUK_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAUK_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAUK_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAUK_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAUK_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAUK_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAUK_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAUK_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOWATA_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOWATA_COUNTY_OK", - "description": null, - "label": "NOWATA COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOWATA_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOWATA_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOWATA_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOWATA_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOWATA_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOWATA_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOWATA_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOWATA_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NELSON_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NELSON_COUNTY_KY", - "description": null, - "label": "NELSON COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NELSON_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NELSON_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NELSON_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NELSON_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NELSON_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NELSON_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NELSON_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NELSON_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_KY", - "description": null, - "label": "CAMPBELL COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_SD", - "description": null, - "label": "BROWN COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIPLEY_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIPLEY_COUNTY_MO", - "description": null, - "label": "RIPLEY COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIPLEY_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIPLEY_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIPLEY_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIPLEY_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIPLEY_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIPLEY_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIPLEY_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIPLEY_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAIBORNE_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAIBORNE_COUNTY_MS", - "description": null, - "label": "CLAIBORNE COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAIBORNE_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAIBORNE_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAIBORNE_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAIBORNE_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAIBORNE_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAIBORNE_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAIBORNE_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAIBORNE_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUHLENBERG_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUHLENBERG_COUNTY_KY", - "description": null, - "label": "MUHLENBERG COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUHLENBERG_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUHLENBERG_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUHLENBERG_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUHLENBERG_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUHLENBERG_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUHLENBERG_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUHLENBERG_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUHLENBERG_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CLAIR_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CLAIR_COUNTY_MI", - "description": null, - "label": "ST CLAIR COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CLAIR_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CLAIR_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CLAIR_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CLAIR_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CLAIR_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CLAIR_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CLAIR_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CLAIR_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASOTIN_COUNTY_WA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASOTIN_COUNTY_WA", - "description": null, - "label": "ASOTIN COUNTY WA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASOTIN_COUNTY_WA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASOTIN_COUNTY_WA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASOTIN_COUNTY_WA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASOTIN_COUNTY_WA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASOTIN_COUNTY_WA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASOTIN_COUNTY_WA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASOTIN_COUNTY_WA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASOTIN_COUNTY_WA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRON_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRON_COUNTY_MI", - "description": null, - "label": "IRON COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRON_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRON_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRON_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRON_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRON_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRON_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRON_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRON_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKENSON_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKENSON_COUNTY_VA", - "description": null, - "label": "DICKENSON COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKENSON_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKENSON_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKENSON_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKENSON_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKENSON_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKENSON_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKENSON_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKENSON_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ECTOR_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ECTOR_COUNTY_TX", - "description": null, - "label": "ECTOR COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ECTOR_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ECTOR_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ECTOR_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ECTOR_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ECTOR_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ECTOR_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ECTOR_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ECTOR_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GENESEE_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GENESEE_COUNTY_NY", - "description": null, - "label": "GENESEE COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GENESEE_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GENESEE_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GENESEE_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GENESEE_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GENESEE_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GENESEE_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GENESEE_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GENESEE_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_WA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_WA", - "description": null, - "label": "LINCOLN COUNTY WA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_WA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_WA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_WA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_WA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_WA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_WA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_WA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_WA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_TX", - "description": null, - "label": "JEFFERSON COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TANEY_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TANEY_COUNTY_MO", - "description": null, - "label": "TANEY COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TANEY_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TANEY_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TANEY_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TANEY_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TANEY_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TANEY_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TANEY_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TANEY_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHILTON_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHILTON_COUNTY_AL", - "description": null, - "label": "CHILTON COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHILTON_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHILTON_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHILTON_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHILTON_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHILTON_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHILTON_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHILTON_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHILTON_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOSSIER_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOSSIER_PARISH_LA", - "description": null, - "label": "BOSSIER PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOSSIER_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOSSIER_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOSSIER_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOSSIER_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOSSIER_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOSSIER_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOSSIER_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOSSIER_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMSON_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMSON_COUNTY_TX", - "description": null, - "label": "WILLIAMSON COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMSON_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMSON_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMSON_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMSON_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMSON_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMSON_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMSON_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMSON_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCINTOSH_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCINTOSH_COUNTY_OK", - "description": null, - "label": "MCINTOSH COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCINTOSH_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCINTOSH_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCINTOSH_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCINTOSH_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCINTOSH_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCINTOSH_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCINTOSH_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCINTOSH_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTH_SLOPE_BOROUGH_AK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTH_SLOPE_BOROUGH_AK", - "description": null, - "label": "NORTH SLOPE BOROUGH AK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTH_SLOPE_BOROUGH_AK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTH_SLOPE_BOROUGH_AK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTH_SLOPE_BOROUGH_AK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTH_SLOPE_BOROUGH_AK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTH_SLOPE_BOROUGH_AK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTH_SLOPE_BOROUGH_AK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTH_SLOPE_BOROUGH_AK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTH_SLOPE_BOROUGH_AK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPDEN_COUNTY_MA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPDEN_COUNTY_MA", - "description": null, - "label": "HAMPDEN COUNTY MA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPDEN_COUNTY_MA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPDEN_COUNTY_MA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPDEN_COUNTY_MA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPDEN_COUNTY_MA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPDEN_COUNTY_MA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPDEN_COUNTY_MA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPDEN_COUNTY_MA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPDEN_COUNTY_MA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOS_COUNTY_NH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOS_COUNTY_NH", - "description": null, - "label": "COOS COUNTY NH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOS_COUNTY_NH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOS_COUNTY_NH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOS_COUNTY_NH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOS_COUNTY_NH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOS_COUNTY_NH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOS_COUNTY_NH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOS_COUNTY_NH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOS_COUNTY_NH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_SD", - "description": null, - "label": "CLARK COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CENTRE_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CENTRE_COUNTY_PA", - "description": null, - "label": "CENTRE COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CENTRE_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CENTRE_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CENTRE_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CENTRE_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CENTRE_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CENTRE_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CENTRE_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CENTRE_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TELLER_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TELLER_COUNTY_CO", - "description": null, - "label": "TELLER COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TELLER_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TELLER_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TELLER_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TELLER_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TELLER_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TELLER_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TELLER_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TELLER_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUGUSTA_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUGUSTA_COUNTY_VA", - "description": null, - "label": "AUGUSTA COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUGUSTA_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUGUSTA_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUGUSTA_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUGUSTA_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUGUSTA_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUGUSTA_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUGUSTA_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUGUSTA_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_AND_QUEEN_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_AND_QUEEN_COUNTY_VA", - "description": null, - "label": "KING AND QUEEN COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_AND_QUEEN_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_AND_QUEEN_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_AND_QUEEN_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_AND_QUEEN_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_AND_QUEEN_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_AND_QUEEN_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_AND_QUEEN_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_AND_QUEEN_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANATEE_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANATEE_COUNTY_FL", - "description": null, - "label": "MANATEE COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANATEE_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANATEE_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANATEE_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANATEE_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANATEE_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANATEE_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANATEE_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANATEE_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAGRANGE_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAGRANGE_COUNTY_IN", - "description": null, - "label": "LAGRANGE COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAGRANGE_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAGRANGE_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAGRANGE_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAGRANGE_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAGRANGE_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAGRANGE_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAGRANGE_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAGRANGE_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEMBINA_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEMBINA_COUNTY_ND", - "description": null, - "label": "PEMBINA COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEMBINA_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEMBINA_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEMBINA_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEMBINA_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEMBINA_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEMBINA_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEMBINA_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEMBINA_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_AL", - "description": null, - "label": "CLARKE COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCED_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCED_COUNTY_CA", - "description": null, - "label": "MERCED COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCED_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCED_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCED_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCED_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCED_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCED_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCED_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCED_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLIS_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLIS_COUNTY_OK", - "description": null, - "label": "ELLIS COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLIS_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLIS_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLIS_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLIS_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLIS_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLIS_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLIS_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLIS_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLATTE_COUNTY_WY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLATTE_COUNTY_WY", - "description": null, - "label": "PLATTE COUNTY WY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLATTE_COUNTY_WY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLATTE_COUNTY_WY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLATTE_COUNTY_WY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLATTE_COUNTY_WY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLATTE_COUNTY_WY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLATTE_COUNTY_WY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLATTE_COUNTY_WY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLATTE_COUNTY_WY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_OR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_OR", - "description": null, - "label": "DOUGLAS COUNTY OR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_OR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_OR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_OR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_OR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_OR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_OR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_OR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_OR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_IA", - "description": null, - "label": "BENTON COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUANA_DÍAZ_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUANA_DÍAZ_MUNICIPIO_PR", - "description": null, - "label": "JUANA DÍAZ MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUANA_DÍAZ_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUANA_DÍAZ_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUANA_DÍAZ_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUANA_DÍAZ_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUANA_DÍAZ_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUANA_DÍAZ_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUANA_DÍAZ_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUANA_DÍAZ_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESHA_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESHA_COUNTY_MS", - "description": null, - "label": "DESHA COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESHA_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESHA_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESHA_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESHA_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESHA_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESHA_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESHA_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESHA_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARLTON_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARLTON_COUNTY_MN", - "description": null, - "label": "CARLTON COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARLTON_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARLTON_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARLTON_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARLTON_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARLTON_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARLTON_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARLTON_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARLTON_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CEDAR_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CEDAR_COUNTY_NE", - "description": null, - "label": "CEDAR COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CEDAR_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CEDAR_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CEDAR_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CEDAR_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CEDAR_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CEDAR_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CEDAR_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CEDAR_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_PA", - "description": null, - "label": "CUMBERLAND COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MURRAY_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MURRAY_COUNTY_MN", - "description": null, - "label": "MURRAY COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MURRAY_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MURRAY_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MURRAY_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MURRAY_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MURRAY_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MURRAY_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MURRAY_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MURRAY_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_VA", - "description": null, - "label": "FLOYD COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOODHUE_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOODHUE_COUNTY_MN", - "description": null, - "label": "GOODHUE COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOODHUE_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOODHUE_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOODHUE_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOODHUE_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOODHUE_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOODHUE_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOODHUE_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOODHUE_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISTOL_CITY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISTOL_CITY_VA", - "description": null, - "label": "BRISTOL CITY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISTOL_CITY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISTOL_CITY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISTOL_CITY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISTOL_CITY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISTOL_CITY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISTOL_CITY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISTOL_CITY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISTOL_CITY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEUTIANS_EAST_BOROUGH_AK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEUTIANS_EAST_BOROUGH_AK", - "description": null, - "label": "ALEUTIANS EAST BOROUGH AK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEUTIANS_EAST_BOROUGH_AK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEUTIANS_EAST_BOROUGH_AK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEUTIANS_EAST_BOROUGH_AK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEUTIANS_EAST_BOROUGH_AK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEUTIANS_EAST_BOROUGH_AK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEUTIANS_EAST_BOROUGH_AK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEUTIANS_EAST_BOROUGH_AK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEUTIANS_EAST_BOROUGH_AK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_MS", - "description": null, - "label": "MARION COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EATON_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EATON_COUNTY_MI", - "description": null, - "label": "EATON COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EATON_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EATON_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EATON_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EATON_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EATON_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EATON_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EATON_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EATON_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAUFORT_COUNTY_SC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAUFORT_COUNTY_SC", - "description": null, - "label": "BEAUFORT COUNTY SC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAUFORT_COUNTY_SC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAUFORT_COUNTY_SC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAUFORT_COUNTY_SC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAUFORT_COUNTY_SC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAUFORT_COUNTY_SC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAUFORT_COUNTY_SC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAUFORT_COUNTY_SC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAUFORT_COUNTY_SC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_TN", - "description": null, - "label": "HANCOCK COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHLAND_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHLAND_COUNTY_WI", - "description": null, - "label": "ASHLAND COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHLAND_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHLAND_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHLAND_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHLAND_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHLAND_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHLAND_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHLAND_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHLAND_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_WA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_WA", - "description": null, - "label": "FRANKLIN COUNTY WA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_WA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_WA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_WA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_WA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_WA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_WA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_WA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_WA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPENCER_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPENCER_COUNTY_IN", - "description": null, - "label": "SPENCER COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPENCER_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPENCER_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPENCER_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPENCER_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPENCER_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPENCER_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPENCER_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPENCER_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERVELL_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERVELL_COUNTY_TX", - "description": null, - "label": "SOMERVELL COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERVELL_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERVELL_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERVELL_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERVELL_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERVELL_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERVELL_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERVELL_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERVELL_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VEGA_BAJA_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VEGA_BAJA_MUNICIPIO_PR", - "description": null, - "label": "VEGA BAJA MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VEGA_BAJA_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VEGA_BAJA_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VEGA_BAJA_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VEGA_BAJA_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VEGA_BAJA_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VEGA_BAJA_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VEGA_BAJA_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VEGA_BAJA_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_IA", - "description": null, - "label": "FLOYD COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NICOLLET_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NICOLLET_COUNTY_MN", - "description": null, - "label": "NICOLLET COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NICOLLET_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NICOLLET_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NICOLLET_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NICOLLET_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NICOLLET_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NICOLLET_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NICOLLET_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NICOLLET_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HASKELL_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HASKELL_COUNTY_KS", - "description": null, - "label": "HASKELL COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HASKELL_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HASKELL_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HASKELL_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HASKELL_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HASKELL_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HASKELL_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HASKELL_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HASKELL_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAROLINE_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAROLINE_COUNTY_VA", - "description": null, - "label": "CAROLINE COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAROLINE_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAROLINE_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAROLINE_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAROLINE_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAROLINE_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAROLINE_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAROLINE_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAROLINE_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTON_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTON_COUNTY_KS", - "description": null, - "label": "NORTON COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTON_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTON_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTON_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTON_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTON_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTON_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTON_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTON_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAJOR_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAJOR_COUNTY_OK", - "description": null, - "label": "MAJOR COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAJOR_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAJOR_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAJOR_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAJOR_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAJOR_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAJOR_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAJOR_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAJOR_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_UT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_UT", - "description": null, - "label": "SAN JUAN COUNTY UT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_UT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_UT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_UT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_UT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_UT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_UT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_UT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_UT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BULLOCK_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BULLOCK_COUNTY_AL", - "description": null, - "label": "BULLOCK COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BULLOCK_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BULLOCK_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BULLOCK_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BULLOCK_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BULLOCK_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BULLOCK_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BULLOCK_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BULLOCK_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOOD_RIVER_COUNTY_OR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOOD_RIVER_COUNTY_OR", - "description": null, - "label": "HOOD RIVER COUNTY OR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOOD_RIVER_COUNTY_OR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOOD_RIVER_COUNTY_OR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOOD_RIVER_COUNTY_OR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOOD_RIVER_COUNTY_OR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOOD_RIVER_COUNTY_OR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOOD_RIVER_COUNTY_OR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOOD_RIVER_COUNTY_OR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOOD_RIVER_COUNTY_OR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FANNIN_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FANNIN_COUNTY_TX", - "description": null, - "label": "FANNIN COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FANNIN_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FANNIN_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FANNIN_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FANNIN_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FANNIN_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FANNIN_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FANNIN_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FANNIN_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAPE_GIRARDEAU_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAPE_GIRARDEAU_COUNTY_MO", - "description": null, - "label": "CAPE GIRARDEAU COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAPE_GIRARDEAU_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAPE_GIRARDEAU_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAPE_GIRARDEAU_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAPE_GIRARDEAU_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAPE_GIRARDEAU_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAPE_GIRARDEAU_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAPE_GIRARDEAU_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAPE_GIRARDEAU_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOOLE_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOOLE_COUNTY_MT", - "description": null, - "label": "TOOLE COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOOLE_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOOLE_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOOLE_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOOLE_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOOLE_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOOLE_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOOLE_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOOLE_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERMILION_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERMILION_COUNTY_IL", - "description": null, - "label": "VERMILION COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERMILION_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERMILION_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERMILION_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERMILION_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERMILION_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERMILION_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERMILION_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERMILION_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BREWSTER_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BREWSTER_COUNTY_TX", - "description": null, - "label": "BREWSTER COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BREWSTER_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BREWSTER_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BREWSTER_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BREWSTER_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BREWSTER_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BREWSTER_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BREWSTER_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BREWSTER_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARTFORD_COUNTY_CT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARTFORD_COUNTY_CT", - "description": null, - "label": "HARTFORD COUNTY CT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARTFORD_COUNTY_CT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARTFORD_COUNTY_CT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARTFORD_COUNTY_CT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARTFORD_COUNTY_CT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARTFORD_COUNTY_CT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARTFORD_COUNTY_CT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARTFORD_COUNTY_CT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARTFORD_COUNTY_CT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TROUP_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TROUP_COUNTY_GA", - "description": null, - "label": "TROUP COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TROUP_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TROUP_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TROUP_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TROUP_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TROUP_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TROUP_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TROUP_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TROUP_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_MO", - "description": null, - "label": "MARION COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONEIDA_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONEIDA_COUNTY_WI", - "description": null, - "label": "ONEIDA COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONEIDA_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONEIDA_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONEIDA_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONEIDA_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONEIDA_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONEIDA_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONEIDA_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONEIDA_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_TX", - "description": null, - "label": "HENDERSON COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAWNEE_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAWNEE_COUNTY_NE", - "description": null, - "label": "PAWNEE COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAWNEE_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAWNEE_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAWNEE_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAWNEE_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAWNEE_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAWNEE_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAWNEE_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAWNEE_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRIMES_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRIMES_COUNTY_TX", - "description": null, - "label": "GRIMES COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRIMES_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRIMES_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRIMES_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRIMES_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRIMES_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRIMES_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRIMES_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRIMES_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BACA_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BACA_COUNTY_CO", - "description": null, - "label": "BACA COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BACA_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BACA_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BACA_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BACA_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BACA_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BACA_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BACA_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BACA_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAIG_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAIG_COUNTY_VA", - "description": null, - "label": "CRAIG COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAIG_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAIG_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAIG_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAIG_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAIG_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAIG_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAIG_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAIG_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_IA", - "description": null, - "label": "WAYNE COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARVIN_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARVIN_COUNTY_OK", - "description": null, - "label": "GARVIN COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARVIN_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARVIN_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARVIN_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARVIN_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARVIN_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARVIN_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARVIN_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARVIN_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUSSEX_COUNTY_NJ": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUSSEX_COUNTY_NJ", - "description": null, - "label": "SUSSEX COUNTY NJ", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUSSEX_COUNTY_NJ.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUSSEX_COUNTY_NJ.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUSSEX_COUNTY_NJ.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUSSEX_COUNTY_NJ.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUSSEX_COUNTY_NJ.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUSSEX_COUNTY_NJ.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUSSEX_COUNTY_NJ.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUSSEX_COUNTY_NJ.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_NV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_NV", - "description": null, - "label": "DOUGLAS COUNTY NV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_NV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_NV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_NV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_NV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_NV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_NV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_NV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_NV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_FL", - "description": null, - "label": "CLAY COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_SC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_SC", - "description": null, - "label": "JASPER COUNTY SC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_SC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_SC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_SC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_SC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_SC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_SC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_SC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_SC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MECKLENBURG_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MECKLENBURG_COUNTY_VA", - "description": null, - "label": "MECKLENBURG COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MECKLENBURG_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MECKLENBURG_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MECKLENBURG_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MECKLENBURG_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MECKLENBURG_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MECKLENBURG_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MECKLENBURG_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MECKLENBURG_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIBERTY_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIBERTY_COUNTY_TX", - "description": null, - "label": "LIBERTY COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIBERTY_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIBERTY_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIBERTY_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIBERTY_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIBERTY_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIBERTY_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIBERTY_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIBERTY_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOSHEN_COUNTY_WY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOSHEN_COUNTY_WY", - "description": null, - "label": "GOSHEN COUNTY WY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOSHEN_COUNTY_WY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOSHEN_COUNTY_WY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOSHEN_COUNTY_WY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOSHEN_COUNTY_WY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOSHEN_COUNTY_WY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOSHEN_COUNTY_WY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOSHEN_COUNTY_WY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOSHEN_COUNTY_WY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_SD", - "description": null, - "label": "LAWRENCE COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAHKIAKUM_COUNTY_WA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAHKIAKUM_COUNTY_WA", - "description": null, - "label": "WAHKIAKUM COUNTY WA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAHKIAKUM_COUNTY_WA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAHKIAKUM_COUNTY_WA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAHKIAKUM_COUNTY_WA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAHKIAKUM_COUNTY_WA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAHKIAKUM_COUNTY_WA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAHKIAKUM_COUNTY_WA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAHKIAKUM_COUNTY_WA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAHKIAKUM_COUNTY_WA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_IN", - "description": null, - "label": "ADAMS COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARTON_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARTON_COUNTY_MO", - "description": null, - "label": "BARTON COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARTON_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARTON_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARTON_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARTON_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARTON_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARTON_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARTON_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARTON_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_COUNTY_NY", - "description": null, - "label": "RICHMOND COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_IL", - "description": null, - "label": "WARREN COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_MN", - "description": null, - "label": "GRANT COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUSSEX_COUNTY_DE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUSSEX_COUNTY_DE", - "description": null, - "label": "SUSSEX COUNTY DE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUSSEX_COUNTY_DE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUSSEX_COUNTY_DE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUSSEX_COUNTY_DE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUSSEX_COUNTY_DE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUSSEX_COUNTY_DE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUSSEX_COUNTY_DE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUSSEX_COUNTY_DE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUSSEX_COUNTY_DE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUBBARD_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUBBARD_COUNTY_MN", - "description": null, - "label": "HUBBARD COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUBBARD_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUBBARD_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUBBARD_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUBBARD_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUBBARD_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUBBARD_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUBBARD_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUBBARD_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_SD", - "description": null, - "label": "RICHLAND COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_IN", - "description": null, - "label": "WARREN COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_IN", - "description": null, - "label": "MARTIN COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LARIMER_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LARIMER_COUNTY_CO", - "description": null, - "label": "LARIMER COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LARIMER_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LARIMER_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LARIMER_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LARIMER_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LARIMER_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LARIMER_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LARIMER_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LARIMER_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELTA_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELTA_COUNTY_CO", - "description": null, - "label": "DELTA COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELTA_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELTA_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELTA_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELTA_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELTA_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELTA_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELTA_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELTA_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLOTTESVILLE_CITY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLOTTESVILLE_CITY_VA", - "description": null, - "label": "CHARLOTTESVILLE CITY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLOTTESVILLE_CITY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLOTTESVILLE_CITY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLOTTESVILLE_CITY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLOTTESVILLE_CITY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLOTTESVILLE_CITY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLOTTESVILLE_CITY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLOTTESVILLE_CITY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLOTTESVILLE_CITY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BULLITT_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BULLITT_COUNTY_KY", - "description": null, - "label": "BULLITT COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BULLITT_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BULLITT_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BULLITT_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BULLITT_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BULLITT_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BULLITT_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BULLITT_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BULLITT_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_ID": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_ID", - "description": null, - "label": "CUSTER COUNTY ID", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_ID.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_ID.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_ID.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_ID.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_ID.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_ID.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_ID.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_ID.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUTHRIE_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUTHRIE_COUNTY_IA", - "description": null, - "label": "GUTHRIE COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUTHRIE_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUTHRIE_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUTHRIE_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUTHRIE_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUTHRIE_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUTHRIE_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUTHRIE_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUTHRIE_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEARFIELD_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEARFIELD_COUNTY_PA", - "description": null, - "label": "CLEARFIELD COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEARFIELD_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEARFIELD_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEARFIELD_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEARFIELD_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEARFIELD_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEARFIELD_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEARFIELD_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEARFIELD_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROCKETT_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROCKETT_COUNTY_TN", - "description": null, - "label": "CROCKETT COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROCKETT_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROCKETT_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROCKETT_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROCKETT_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROCKETT_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROCKETT_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROCKETT_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROCKETT_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DYER_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DYER_COUNTY_TN", - "description": null, - "label": "DYER COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DYER_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DYER_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DYER_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DYER_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DYER_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DYER_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DYER_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DYER_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CORYELL_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CORYELL_COUNTY_TX", - "description": null, - "label": "CORYELL COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CORYELL_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CORYELL_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CORYELL_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CORYELL_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CORYELL_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CORYELL_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CORYELL_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CORYELL_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_SC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_SC", - "description": null, - "label": "MARION COUNTY SC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_SC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_SC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_SC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_SC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_SC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_SC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_SC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_SC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_MO", - "description": null, - "label": "DALLAS COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_GA", - "description": null, - "label": "MACON COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUNKLIN_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUNKLIN_COUNTY_MO", - "description": null, - "label": "DUNKLIN COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUNKLIN_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUNKLIN_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUNKLIN_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUNKLIN_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUNKLIN_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUNKLIN_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUNKLIN_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUNKLIN_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_MS", - "description": null, - "label": "UNION COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCEAN_COUNTY_NJ": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCEAN_COUNTY_NJ", - "description": null, - "label": "OCEAN COUNTY NJ", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCEAN_COUNTY_NJ.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCEAN_COUNTY_NJ.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCEAN_COUNTY_NJ.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCEAN_COUNTY_NJ.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCEAN_COUNTY_NJ.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCEAN_COUNTY_NJ.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCEAN_COUNTY_NJ.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCEAN_COUNTY_NJ.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALPENA_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALPENA_COUNTY_MI", - "description": null, - "label": "ALPENA COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALPENA_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALPENA_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALPENA_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALPENA_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALPENA_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALPENA_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALPENA_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALPENA_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_SD", - "description": null, - "label": "UNION COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BULLOCH_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BULLOCH_COUNTY_GA", - "description": null, - "label": "BULLOCH COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BULLOCH_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BULLOCH_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BULLOCH_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BULLOCH_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BULLOCH_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BULLOCH_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BULLOCH_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BULLOCH_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRUJILLO_ALTO_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRUJILLO_ALTO_MUNICIPIO_PR", - "description": null, - "label": "TRUJILLO ALTO MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRUJILLO_ALTO_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRUJILLO_ALTO_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRUJILLO_ALTO_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRUJILLO_ALTO_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRUJILLO_ALTO_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRUJILLO_ALTO_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRUJILLO_ALTO_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRUJILLO_ALTO_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_IL", - "description": null, - "label": "HARDIN COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAST_CARROLL_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAST_CARROLL_PARISH_LA", - "description": null, - "label": "EAST CARROLL PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAST_CARROLL_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAST_CARROLL_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAST_CARROLL_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAST_CARROLL_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAST_CARROLL_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAST_CARROLL_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAST_CARROLL_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAST_CARROLL_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_NE", - "description": null, - "label": "DECATUR COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_IN", - "description": null, - "label": "LAWRENCE COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EUREKA_COUNTY_NV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EUREKA_COUNTY_NV", - "description": null, - "label": "EUREKA COUNTY NV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EUREKA_COUNTY_NV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EUREKA_COUNTY_NV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EUREKA_COUNTY_NV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EUREKA_COUNTY_NV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EUREKA_COUNTY_NV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EUREKA_COUNTY_NV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EUREKA_COUNTY_NV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EUREKA_COUNTY_NV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GENESEE_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GENESEE_COUNTY_MI", - "description": null, - "label": "GENESEE COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GENESEE_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GENESEE_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GENESEE_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GENESEE_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GENESEE_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GENESEE_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GENESEE_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GENESEE_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COFFEE_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COFFEE_COUNTY_GA", - "description": null, - "label": "COFFEE COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COFFEE_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COFFEE_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COFFEE_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COFFEE_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COFFEE_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COFFEE_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COFFEE_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COFFEE_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLEVOIX_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLEVOIX_COUNTY_MI", - "description": null, - "label": "CHARLEVOIX COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLEVOIX_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLEVOIX_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLEVOIX_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLEVOIX_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLEVOIX_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLEVOIX_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLEVOIX_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLEVOIX_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIMESTONE_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIMESTONE_COUNTY_AL", - "description": null, - "label": "LIMESTONE COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIMESTONE_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIMESTONE_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIMESTONE_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIMESTONE_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIMESTONE_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIMESTONE_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIMESTONE_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIMESTONE_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_WERT_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_WERT_COUNTY_OH", - "description": null, - "label": "VAN WERT COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_WERT_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_WERT_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_WERT_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_WERT_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_WERT_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_WERT_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_WERT_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_WERT_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIBB_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIBB_COUNTY_GA", - "description": null, - "label": "BIBB COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIBB_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIBB_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIBB_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIBB_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIBB_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIBB_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIBB_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIBB_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAURY_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAURY_COUNTY_TN", - "description": null, - "label": "MAURY COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAURY_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAURY_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAURY_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAURY_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAURY_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAURY_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAURY_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAURY_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CORSON_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CORSON_COUNTY_SD", - "description": null, - "label": "CORSON COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CORSON_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CORSON_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CORSON_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CORSON_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CORSON_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CORSON_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CORSON_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CORSON_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOBLE_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOBLE_COUNTY_OH", - "description": null, - "label": "NOBLE COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOBLE_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOBLE_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOBLE_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOBLE_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOBLE_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOBLE_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOBLE_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOBLE_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_IA", - "description": null, - "label": "TAYLOR COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_IN", - "description": null, - "label": "CLINTON COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHUMBERLAND_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHUMBERLAND_COUNTY_VA", - "description": null, - "label": "NORTHUMBERLAND COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHUMBERLAND_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHUMBERLAND_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHUMBERLAND_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHUMBERLAND_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHUMBERLAND_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHUMBERLAND_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHUMBERLAND_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHUMBERLAND_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEVY_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEVY_COUNTY_FL", - "description": null, - "label": "LEVY COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEVY_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEVY_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEVY_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEVY_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEVY_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEVY_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEVY_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEVY_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCREARY_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCREARY_COUNTY_KY", - "description": null, - "label": "MCCREARY COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCREARY_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCREARY_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCREARY_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCREARY_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCREARY_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCREARY_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCREARY_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCREARY_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOVE_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOVE_COUNTY_KS", - "description": null, - "label": "GOVE COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOVE_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOVE_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOVE_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOVE_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOVE_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOVE_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOVE_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOVE_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NUECES_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NUECES_COUNTY_TX", - "description": null, - "label": "NUECES COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NUECES_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NUECES_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NUECES_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NUECES_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NUECES_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NUECES_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NUECES_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NUECES_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORROW_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORROW_COUNTY_OH", - "description": null, - "label": "MORROW COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORROW_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORROW_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORROW_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORROW_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORROW_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORROW_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORROW_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORROW_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_WA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_WA", - "description": null, - "label": "LEWIS COUNTY WA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_WA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_WA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_WA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_WA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_WA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_WA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_WA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_WA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAINE_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAINE_COUNTY_NE", - "description": null, - "label": "BLAINE COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAINE_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAINE_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAINE_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAINE_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAINE_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAINE_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAINE_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAINE_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOK_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOK_COUNTY_GA", - "description": null, - "label": "COOK COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOK_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOK_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOK_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOK_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOK_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOK_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOK_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOK_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOULTRIE_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOULTRIE_COUNTY_IL", - "description": null, - "label": "MOULTRIE COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOULTRIE_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOULTRIE_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOULTRIE_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOULTRIE_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOULTRIE_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOULTRIE_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOULTRIE_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOULTRIE_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHIPPEWA_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHIPPEWA_COUNTY_MI", - "description": null, - "label": "CHIPPEWA COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHIPPEWA_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHIPPEWA_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHIPPEWA_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHIPPEWA_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHIPPEWA_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHIPPEWA_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHIPPEWA_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHIPPEWA_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALLATIN_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALLATIN_COUNTY_MT", - "description": null, - "label": "GALLATIN COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALLATIN_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALLATIN_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALLATIN_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALLATIN_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALLATIN_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALLATIN_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALLATIN_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALLATIN_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_ME": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_ME", - "description": null, - "label": "KNOX COUNTY ME", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_ME.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_ME.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_ME.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_ME.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_ME.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_ME.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_ME.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_ME.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAGLE_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAGLE_COUNTY_CO", - "description": null, - "label": "EAGLE COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAGLE_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAGLE_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAGLE_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAGLE_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAGLE_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAGLE_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAGLE_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAGLE_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENTON_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENTON_COUNTY_KY", - "description": null, - "label": "KENTON COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENTON_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENTON_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENTON_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENTON_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENTON_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENTON_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENTON_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENTON_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OBION_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OBION_COUNTY_TN", - "description": null, - "label": "OBION COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OBION_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OBION_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OBION_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OBION_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OBION_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OBION_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OBION_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OBION_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEVIER_COUNTY_UT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEVIER_COUNTY_UT", - "description": null, - "label": "SEVIER COUNTY UT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEVIER_COUNTY_UT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEVIER_COUNTY_UT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEVIER_COUNTY_UT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEVIER_COUNTY_UT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEVIER_COUNTY_UT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEVIER_COUNTY_UT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEVIER_COUNTY_UT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEVIER_COUNTY_UT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEELER_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEELER_COUNTY_GA", - "description": null, - "label": "WHEELER COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEELER_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEELER_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEELER_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEELER_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEELER_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEELER_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEELER_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEELER_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_PA", - "description": null, - "label": "COLUMBIA COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OURAY_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OURAY_COUNTY_CO", - "description": null, - "label": "OURAY COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OURAY_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OURAY_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OURAY_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OURAY_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OURAY_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OURAY_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OURAY_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OURAY_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_VA", - "description": null, - "label": "LEE COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KLEBERG_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KLEBERG_COUNTY_TX", - "description": null, - "label": "KLEBERG COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KLEBERG_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KLEBERG_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KLEBERG_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KLEBERG_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KLEBERG_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KLEBERG_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KLEBERG_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KLEBERG_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALAVERAS_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALAVERAS_COUNTY_CA", - "description": null, - "label": "CALAVERAS COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALAVERAS_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALAVERAS_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALAVERAS_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALAVERAS_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALAVERAS_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALAVERAS_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALAVERAS_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALAVERAS_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORLEANS_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORLEANS_PARISH_LA", - "description": null, - "label": "ORLEANS PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORLEANS_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORLEANS_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORLEANS_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORLEANS_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORLEANS_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORLEANS_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORLEANS_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORLEANS_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HODGEMAN_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HODGEMAN_COUNTY_KS", - "description": null, - "label": "HODGEMAN COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HODGEMAN_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HODGEMAN_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HODGEMAN_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HODGEMAN_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HODGEMAN_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HODGEMAN_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HODGEMAN_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HODGEMAN_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_OK", - "description": null, - "label": "GARFIELD COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_OK", - "description": null, - "label": "DELAWARE COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TETON_COUNTY_WY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TETON_COUNTY_WY", - "description": null, - "label": "TETON COUNTY WY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TETON_COUNTY_WY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TETON_COUNTY_WY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TETON_COUNTY_WY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TETON_COUNTY_WY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TETON_COUNTY_WY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TETON_COUNTY_WY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TETON_COUNTY_WY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TETON_COUNTY_WY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWEET_GRASS_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWEET_GRASS_COUNTY_MT", - "description": null, - "label": "SWEET GRASS COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWEET_GRASS_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWEET_GRASS_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWEET_GRASS_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWEET_GRASS_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWEET_GRASS_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWEET_GRASS_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWEET_GRASS_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWEET_GRASS_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTAWATOMIE_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTAWATOMIE_COUNTY_OK", - "description": null, - "label": "POTTAWATOMIE COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTAWATOMIE_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTAWATOMIE_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTAWATOMIE_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTAWATOMIE_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTAWATOMIE_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTAWATOMIE_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTAWATOMIE_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTAWATOMIE_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_OK", - "description": null, - "label": "WASHINGTON COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONCORDIA_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONCORDIA_PARISH_LA", - "description": null, - "label": "CONCORDIA PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONCORDIA_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONCORDIA_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONCORDIA_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONCORDIA_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONCORDIA_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONCORDIA_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONCORDIA_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONCORDIA_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPSHIRE_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPSHIRE_COUNTY_WV", - "description": null, - "label": "HAMPSHIRE COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPSHIRE_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPSHIRE_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPSHIRE_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPSHIRE_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPSHIRE_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPSHIRE_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPSHIRE_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPSHIRE_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARTOW_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARTOW_COUNTY_GA", - "description": null, - "label": "BARTOW COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARTOW_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARTOW_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARTOW_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARTOW_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARTOW_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARTOW_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARTOW_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARTOW_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALBANY_COUNTY_WY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALBANY_COUNTY_WY", - "description": null, - "label": "ALBANY COUNTY WY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALBANY_COUNTY_WY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALBANY_COUNTY_WY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALBANY_COUNTY_WY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALBANY_COUNTY_WY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALBANY_COUNTY_WY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALBANY_COUNTY_WY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALBANY_COUNTY_WY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALBANY_COUNTY_WY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYCOMING_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYCOMING_COUNTY_PA", - "description": null, - "label": "LYCOMING COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYCOMING_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYCOMING_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYCOMING_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYCOMING_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYCOMING_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYCOMING_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYCOMING_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYCOMING_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARE_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARE_COUNTY_GA", - "description": null, - "label": "WARE COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARE_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARE_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARE_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARE_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARE_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARE_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARE_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARE_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIO_GRANDE_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIO_GRANDE_COUNTY_CO", - "description": null, - "label": "RIO GRANDE COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIO_GRANDE_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIO_GRANDE_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIO_GRANDE_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIO_GRANDE_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIO_GRANDE_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIO_GRANDE_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIO_GRANDE_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIO_GRANDE_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAY_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAY_COUNTY_KS", - "description": null, - "label": "GRAY COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAY_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAY_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAY_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAY_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAY_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAY_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAY_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAY_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALLAHATCHIE_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALLAHATCHIE_COUNTY_MS", - "description": null, - "label": "TALLAHATCHIE COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALLAHATCHIE_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALLAHATCHIE_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALLAHATCHIE_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALLAHATCHIE_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALLAHATCHIE_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALLAHATCHIE_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALLAHATCHIE_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALLAHATCHIE_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMACAO_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMACAO_MUNICIPIO_PR", - "description": null, - "label": "HUMACAO MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMACAO_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMACAO_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMACAO_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMACAO_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMACAO_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMACAO_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMACAO_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMACAO_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.INYO_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.INYO_COUNTY_CA", - "description": null, - "label": "INYO COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.INYO_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.INYO_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.INYO_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.INYO_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.INYO_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.INYO_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.INYO_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.INYO_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_AL", - "description": null, - "label": "CLAY COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_NJ": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_NJ", - "description": null, - "label": "WARREN COUNTY NJ", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_NJ.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_NJ.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_NJ.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_NJ.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_NJ.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_NJ.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_NJ.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_NJ.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_AL", - "description": null, - "label": "FAYETTE COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_ND", - "description": null, - "label": "PIERCE COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PETERSBURG_CITY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PETERSBURG_CITY_VA", - "description": null, - "label": "PETERSBURG CITY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PETERSBURG_CITY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PETERSBURG_CITY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PETERSBURG_CITY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PETERSBURG_CITY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PETERSBURG_CITY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PETERSBURG_CITY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PETERSBURG_CITY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PETERSBURG_CITY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_NE", - "description": null, - "label": "HAMILTON COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATTARAUGUS_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATTARAUGUS_COUNTY_NY", - "description": null, - "label": "CATTARAUGUS COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATTARAUGUS_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATTARAUGUS_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATTARAUGUS_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATTARAUGUS_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATTARAUGUS_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATTARAUGUS_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATTARAUGUS_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CATTARAUGUS_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAIG_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAIG_COUNTY_OK", - "description": null, - "label": "CRAIG COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAIG_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAIG_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAIG_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAIG_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAIG_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAIG_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAIG_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAIG_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPINK_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPINK_COUNTY_SD", - "description": null, - "label": "SPINK COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPINK_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPINK_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPINK_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPINK_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPINK_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPINK_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPINK_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPINK_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_KY", - "description": null, - "label": "SCOTT COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_WY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_WY", - "description": null, - "label": "CAMPBELL COUNTY WY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_WY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_WY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_WY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_WY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_WY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_WY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_WY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_WY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARIES_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARIES_COUNTY_MO", - "description": null, - "label": "MARIES COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARIES_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARIES_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARIES_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARIES_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARIES_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARIES_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARIES_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARIES_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CERRO_GORDO_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CERRO_GORDO_COUNTY_IA", - "description": null, - "label": "CERRO GORDO COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CERRO_GORDO_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CERRO_GORDO_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CERRO_GORDO_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CERRO_GORDO_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CERRO_GORDO_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CERRO_GORDO_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CERRO_GORDO_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CERRO_GORDO_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANGELINA_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANGELINA_COUNTY_TX", - "description": null, - "label": "ANGELINA COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANGELINA_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANGELINA_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANGELINA_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANGELINA_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANGELINA_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANGELINA_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANGELINA_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANGELINA_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BREMER_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BREMER_COUNTY_IA", - "description": null, - "label": "BREMER COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BREMER_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BREMER_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BREMER_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BREMER_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BREMER_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BREMER_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BREMER_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BREMER_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_KS", - "description": null, - "label": "MONTGOMERY COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_WV", - "description": null, - "label": "MARSHALL COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOTTINEAU_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOTTINEAU_COUNTY_ND", - "description": null, - "label": "BOTTINEAU COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOTTINEAU_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOTTINEAU_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOTTINEAU_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOTTINEAU_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOTTINEAU_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOTTINEAU_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOTTINEAU_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOTTINEAU_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_IA", - "description": null, - "label": "LEE COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_MO", - "description": null, - "label": "LIVINGSTON COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALL_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALL_COUNTY_NE", - "description": null, - "label": "HALL COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALL_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALL_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALL_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALL_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALL_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALL_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALL_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALL_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHASE_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHASE_COUNTY_KS", - "description": null, - "label": "CHASE COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHASE_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHASE_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHASE_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHASE_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHASE_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHASE_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHASE_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHASE_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_MO", - "description": null, - "label": "SULLIVAN COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARRICK_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARRICK_COUNTY_IN", - "description": null, - "label": "WARRICK COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARRICK_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARRICK_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARRICK_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARRICK_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARRICK_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARRICK_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARRICK_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARRICK_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWITZERLAND_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWITZERLAND_COUNTY_IN", - "description": null, - "label": "SWITZERLAND COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWITZERLAND_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWITZERLAND_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWITZERLAND_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWITZERLAND_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWITZERLAND_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWITZERLAND_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWITZERLAND_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWITZERLAND_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_KY", - "description": null, - "label": "FULTON COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARK_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARK_COUNTY_MT", - "description": null, - "label": "PARK COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARK_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARK_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARK_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARK_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARK_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARK_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARK_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARK_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBER_COUNTY_UT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBER_COUNTY_UT", - "description": null, - "label": "WEBER COUNTY UT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBER_COUNTY_UT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBER_COUNTY_UT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBER_COUNTY_UT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBER_COUNTY_UT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBER_COUNTY_UT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBER_COUNTY_UT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBER_COUNTY_UT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBER_COUNTY_UT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_KY", - "description": null, - "label": "MASON COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_MT", - "description": null, - "label": "CARTER COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CIBOLA_COUNTY_NM": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CIBOLA_COUNTY_NM", - "description": null, - "label": "CIBOLA COUNTY NM", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CIBOLA_COUNTY_NM.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CIBOLA_COUNTY_NM.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CIBOLA_COUNTY_NM.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CIBOLA_COUNTY_NM.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CIBOLA_COUNTY_NM.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CIBOLA_COUNTY_NM.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CIBOLA_COUNTY_NM.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CIBOLA_COUNTY_NM.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_MIGUEL_COUNTY_NM": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_MIGUEL_COUNTY_NM", - "description": null, - "label": "SAN MIGUEL COUNTY NM", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_MIGUEL_COUNTY_NM.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_MIGUEL_COUNTY_NM.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_MIGUEL_COUNTY_NM.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_MIGUEL_COUNTY_NM.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_MIGUEL_COUNTY_NM.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_MIGUEL_COUNTY_NM.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_MIGUEL_COUNTY_NM.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_MIGUEL_COUNTY_NM.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OROCOVIS_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OROCOVIS_MUNICIPIO_PR", - "description": null, - "label": "OROCOVIS MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OROCOVIS_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OROCOVIS_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OROCOVIS_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OROCOVIS_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OROCOVIS_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OROCOVIS_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OROCOVIS_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OROCOVIS_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANE_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANE_COUNTY_KS", - "description": null, - "label": "LANE COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANE_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANE_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANE_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANE_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANE_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANE_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANE_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANE_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HERNANDO_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HERNANDO_COUNTY_FL", - "description": null, - "label": "HERNANDO COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HERNANDO_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HERNANDO_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HERNANDO_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HERNANDO_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HERNANDO_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HERNANDO_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HERNANDO_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HERNANDO_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_IA", - "description": null, - "label": "GREENE COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_IA", - "description": null, - "label": "JEFFERSON COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHARP_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHARP_COUNTY_AR", - "description": null, - "label": "SHARP COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHARP_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHARP_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHARP_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHARP_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHARP_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHARP_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHARP_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHARP_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANDUSKY_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANDUSKY_COUNTY_OH", - "description": null, - "label": "SANDUSKY COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANDUSKY_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANDUSKY_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANDUSKY_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANDUSKY_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANDUSKY_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANDUSKY_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANDUSKY_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANDUSKY_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LA_PAZ_COUNTY_AZ": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LA_PAZ_COUNTY_AZ", - "description": null, - "label": "LA PAZ COUNTY AZ", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LA_PAZ_COUNTY_AZ.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LA_PAZ_COUNTY_AZ.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LA_PAZ_COUNTY_AZ.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LA_PAZ_COUNTY_AZ.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LA_PAZ_COUNTY_AZ.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LA_PAZ_COUNTY_AZ.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LA_PAZ_COUNTY_AZ.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LA_PAZ_COUNTY_AZ.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_IL", - "description": null, - "label": "HANCOCK COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_TN", - "description": null, - "label": "MARION COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSAGE_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSAGE_COUNTY_OK", - "description": null, - "label": "OSAGE COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSAGE_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSAGE_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSAGE_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSAGE_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSAGE_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSAGE_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSAGE_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSAGE_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRATT_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRATT_COUNTY_KS", - "description": null, - "label": "PRATT COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRATT_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRATT_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRATT_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRATT_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRATT_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRATT_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRATT_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRATT_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAPELLO_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAPELLO_COUNTY_IA", - "description": null, - "label": "WAPELLO COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAPELLO_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAPELLO_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAPELLO_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAPELLO_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAPELLO_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAPELLO_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAPELLO_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAPELLO_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JENKINS_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JENKINS_COUNTY_GA", - "description": null, - "label": "JENKINS COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JENKINS_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JENKINS_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JENKINS_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JENKINS_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JENKINS_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JENKINS_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JENKINS_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JENKINS_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEARWATER_COUNTY_ID": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEARWATER_COUNTY_ID", - "description": null, - "label": "CLEARWATER COUNTY ID", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEARWATER_COUNTY_ID.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEARWATER_COUNTY_ID.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEARWATER_COUNTY_ID.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEARWATER_COUNTY_ID.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEARWATER_COUNTY_ID.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEARWATER_COUNTY_ID.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEARWATER_COUNTY_ID.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEARWATER_COUNTY_ID.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSAGE_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSAGE_COUNTY_KS", - "description": null, - "label": "OSAGE COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSAGE_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSAGE_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSAGE_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSAGE_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSAGE_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSAGE_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSAGE_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSAGE_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAHNOMEN_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAHNOMEN_COUNTY_MN", - "description": null, - "label": "MAHNOMEN COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAHNOMEN_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAHNOMEN_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAHNOMEN_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAHNOMEN_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAHNOMEN_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAHNOMEN_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAHNOMEN_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAHNOMEN_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGSBURY_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGSBURY_COUNTY_SD", - "description": null, - "label": "KINGSBURY COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGSBURY_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGSBURY_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGSBURY_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGSBURY_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGSBURY_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGSBURY_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGSBURY_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGSBURY_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLENNAN_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLENNAN_COUNTY_TX", - "description": null, - "label": "MCLENNAN COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLENNAN_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLENNAN_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLENNAN_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLENNAN_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLENNAN_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLENNAN_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLENNAN_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLENNAN_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREDERICK_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREDERICK_COUNTY_VA", - "description": null, - "label": "FREDERICK COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREDERICK_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREDERICK_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREDERICK_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREDERICK_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREDERICK_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREDERICK_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREDERICK_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREDERICK_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLEASANTS_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLEASANTS_COUNTY_WV", - "description": null, - "label": "PLEASANTS COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLEASANTS_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLEASANTS_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLEASANTS_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLEASANTS_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLEASANTS_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLEASANTS_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLEASANTS_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLEASANTS_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUBLETTE_COUNTY_WY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUBLETTE_COUNTY_WY", - "description": null, - "label": "SUBLETTE COUNTY WY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUBLETTE_COUNTY_WY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUBLETTE_COUNTY_WY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUBLETTE_COUNTY_WY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUBLETTE_COUNTY_WY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUBLETTE_COUNTY_WY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUBLETTE_COUNTY_WY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUBLETTE_COUNTY_WY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUBLETTE_COUNTY_WY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_IN", - "description": null, - "label": "HAMILTON COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_IN", - "description": null, - "label": "BOONE COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CADDO_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CADDO_COUNTY_OK", - "description": null, - "label": "CADDO COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CADDO_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CADDO_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CADDO_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CADDO_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CADDO_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CADDO_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CADDO_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CADDO_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_IN", - "description": null, - "label": "HENRY COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_CA", - "description": null, - "label": "ORANGE COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARBON_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARBON_COUNTY_PA", - "description": null, - "label": "CARBON COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARBON_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARBON_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARBON_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARBON_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARBON_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARBON_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARBON_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARBON_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDY_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDY_COUNTY_WV", - "description": null, - "label": "HARDY COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDY_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDY_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDY_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDY_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDY_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDY_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDY_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDY_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_MO", - "description": null, - "label": "PERRY COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COPPER_RIVER_CENSUS_AREA_AK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COPPER_RIVER_CENSUS_AREA_AK", - "description": null, - "label": "COPPER RIVER CENSUS AREA AK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COPPER_RIVER_CENSUS_AREA_AK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COPPER_RIVER_CENSUS_AREA_AK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COPPER_RIVER_CENSUS_AREA_AK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COPPER_RIVER_CENSUS_AREA_AK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COPPER_RIVER_CENSUS_AREA_AK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COPPER_RIVER_CENSUS_AREA_AK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COPPER_RIVER_CENSUS_AREA_AK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COPPER_RIVER_CENSUS_AREA_AK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_TN", - "description": null, - "label": "GREENE COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_NE", - "description": null, - "label": "LINCOLN COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_IA", - "description": null, - "label": "JACKSON COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROCKETT_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROCKETT_COUNTY_TX", - "description": null, - "label": "CROCKETT COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROCKETT_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROCKETT_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROCKETT_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROCKETT_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROCKETT_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROCKETT_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROCKETT_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROCKETT_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_WI", - "description": null, - "label": "RICHLAND COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENOMINEE_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENOMINEE_COUNTY_MI", - "description": null, - "label": "MENOMINEE COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENOMINEE_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENOMINEE_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENOMINEE_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENOMINEE_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENOMINEE_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENOMINEE_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENOMINEE_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENOMINEE_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCREVEN_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCREVEN_COUNTY_GA", - "description": null, - "label": "SCREVEN COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCREVEN_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCREVEN_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCREVEN_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCREVEN_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCREVEN_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCREVEN_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCREVEN_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCREVEN_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANCASTER_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANCASTER_COUNTY_VA", - "description": null, - "label": "LANCASTER COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANCASTER_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANCASTER_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANCASTER_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANCASTER_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANCASTER_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANCASTER_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANCASTER_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANCASTER_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARLISLE_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARLISLE_COUNTY_KY", - "description": null, - "label": "CARLISLE COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARLISLE_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARLISLE_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARLISLE_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARLISLE_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARLISLE_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARLISLE_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARLISLE_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARLISLE_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKETT_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKETT_COUNTY_TN", - "description": null, - "label": "PICKETT COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKETT_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKETT_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKETT_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKETT_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKETT_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKETT_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKETT_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKETT_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILLIPS_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILLIPS_COUNTY_KS", - "description": null, - "label": "PHILLIPS COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILLIPS_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILLIPS_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILLIPS_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILLIPS_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILLIPS_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILLIPS_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILLIPS_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILLIPS_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEVENS_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEVENS_COUNTY_MN", - "description": null, - "label": "STEVENS COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEVENS_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEVENS_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEVENS_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEVENS_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEVENS_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEVENS_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEVENS_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEVENS_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_OK", - "description": null, - "label": "MARSHALL COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINNEY_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINNEY_COUNTY_TX", - "description": null, - "label": "KINNEY COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINNEY_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINNEY_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINNEY_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINNEY_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINNEY_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINNEY_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINNEY_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINNEY_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_NE", - "description": null, - "label": "SHERMAN COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSK_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSK_COUNTY_TX", - "description": null, - "label": "RUSK COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSK_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSK_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSK_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSK_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSK_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSK_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSK_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSK_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_AND_PENINSULA_BOROUGH_AK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_AND_PENINSULA_BOROUGH_AK", - "description": null, - "label": "LAKE AND PENINSULA BOROUGH AK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_AND_PENINSULA_BOROUGH_AK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_AND_PENINSULA_BOROUGH_AK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_AND_PENINSULA_BOROUGH_AK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_AND_PENINSULA_BOROUGH_AK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_AND_PENINSULA_BOROUGH_AK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_AND_PENINSULA_BOROUGH_AK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_AND_PENINSULA_BOROUGH_AK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_AND_PENINSULA_BOROUGH_AK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_WV", - "description": null, - "label": "LOGAN COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_VA", - "description": null, - "label": "ORANGE COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARIBOU_COUNTY_ID": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARIBOU_COUNTY_ID", - "description": null, - "label": "CARIBOU COUNTY ID", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARIBOU_COUNTY_ID.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARIBOU_COUNTY_ID.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARIBOU_COUNTY_ID.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARIBOU_COUNTY_ID.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARIBOU_COUNTY_ID.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARIBOU_COUNTY_ID.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARIBOU_COUNTY_ID.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARIBOU_COUNTY_ID.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_CO", - "description": null, - "label": "ADAMS COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_IL", - "description": null, - "label": "MACON COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCHANAN_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCHANAN_COUNTY_VA", - "description": null, - "label": "BUCHANAN COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCHANAN_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCHANAN_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCHANAN_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCHANAN_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCHANAN_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCHANAN_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCHANAN_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCHANAN_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOKE_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOKE_COUNTY_WV", - "description": null, - "label": "BROOKE COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOKE_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOKE_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOKE_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOKE_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOKE_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOKE_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOKE_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOKE_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEARCY_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEARCY_COUNTY_AR", - "description": null, - "label": "SEARCY COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEARCY_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEARCY_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEARCY_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEARCY_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEARCY_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEARCY_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEARCY_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEARCY_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_IL", - "description": null, - "label": "MASON COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAFTON_COUNTY_NH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAFTON_COUNTY_NH", - "description": null, - "label": "GRAFTON COUNTY NH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAFTON_COUNTY_NH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAFTON_COUNTY_NH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAFTON_COUNTY_NH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAFTON_COUNTY_NH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAFTON_COUNTY_NH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAFTON_COUNTY_NH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAFTON_COUNTY_NH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAFTON_COUNTY_NH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEUTIANS_WEST_CENSUS_AREA_AK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEUTIANS_WEST_CENSUS_AREA_AK", - "description": null, - "label": "ALEUTIANS WEST CENSUS AREA AK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEUTIANS_WEST_CENSUS_AREA_AK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEUTIANS_WEST_CENSUS_AREA_AK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEUTIANS_WEST_CENSUS_AREA_AK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEUTIANS_WEST_CENSUS_AREA_AK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEUTIANS_WEST_CENSUS_AREA_AK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEUTIANS_WEST_CENSUS_AREA_AK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEUTIANS_WEST_CENSUS_AREA_AK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEUTIANS_WEST_CENSUS_AREA_AK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISANTI_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISANTI_COUNTY_MN", - "description": null, - "label": "ISANTI COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISANTI_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISANTI_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISANTI_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISANTI_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISANTI_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISANTI_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISANTI_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISANTI_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORTH_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORTH_COUNTY_IA", - "description": null, - "label": "WORTH COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORTH_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORTH_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORTH_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORTH_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORTH_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORTH_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORTH_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORTH_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINSTON_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINSTON_COUNTY_MS", - "description": null, - "label": "WINSTON COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINSTON_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINSTON_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINSTON_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINSTON_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINSTON_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINSTON_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINSTON_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINSTON_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_OR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_OR", - "description": null, - "label": "WASHINGTON COUNTY OR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_OR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_OR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_OR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_OR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_OR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_OR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_OR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_OR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENIFEE_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENIFEE_COUNTY_KY", - "description": null, - "label": "MENIFEE COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENIFEE_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENIFEE_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENIFEE_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENIFEE_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENIFEE_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENIFEE_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENIFEE_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENIFEE_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CORTLAND_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CORTLAND_COUNTY_NY", - "description": null, - "label": "CORTLAND COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CORTLAND_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CORTLAND_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CORTLAND_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CORTLAND_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CORTLAND_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CORTLAND_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CORTLAND_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CORTLAND_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_TN", - "description": null, - "label": "LINCOLN COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_MD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_MD", - "description": null, - "label": "CARROLL COUNTY MD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_MD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_MD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_MD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_MD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_MD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_MD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_MD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_MD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_OH", - "description": null, - "label": "LOGAN COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERSET_COUNTY_NJ": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERSET_COUNTY_NJ", - "description": null, - "label": "SOMERSET COUNTY NJ", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERSET_COUNTY_NJ.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERSET_COUNTY_NJ.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERSET_COUNTY_NJ.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERSET_COUNTY_NJ.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERSET_COUNTY_NJ.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERSET_COUNTY_NJ.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERSET_COUNTY_NJ.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERSET_COUNTY_NJ.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ITAWAMBA_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ITAWAMBA_COUNTY_MS", - "description": null, - "label": "ITAWAMBA COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ITAWAMBA_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ITAWAMBA_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ITAWAMBA_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ITAWAMBA_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ITAWAMBA_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ITAWAMBA_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ITAWAMBA_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ITAWAMBA_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRANCH_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRANCH_COUNTY_MI", - "description": null, - "label": "BRANCH COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRANCH_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRANCH_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRANCH_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRANCH_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRANCH_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRANCH_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRANCH_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRANCH_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_IN", - "description": null, - "label": "PERRY COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_OR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_OR", - "description": null, - "label": "POLK COUNTY OR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_OR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_OR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_OR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_OR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_OR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_OR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_OR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_OR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_NE", - "description": null, - "label": "BUTLER COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREEN_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREEN_COUNTY_KY", - "description": null, - "label": "GREEN COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREEN_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREEN_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREEN_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREEN_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREEN_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREEN_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREEN_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREEN_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINNEBAGO_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINNEBAGO_COUNTY_WI", - "description": null, - "label": "WINNEBAGO COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINNEBAGO_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINNEBAGO_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINNEBAGO_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINNEBAGO_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINNEBAGO_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINNEBAGO_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINNEBAGO_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINNEBAGO_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_KY", - "description": null, - "label": "GRANT COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CITRUS_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CITRUS_COUNTY_FL", - "description": null, - "label": "CITRUS COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CITRUS_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CITRUS_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CITRUS_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CITRUS_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CITRUS_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CITRUS_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CITRUS_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CITRUS_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUSCOLA_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUSCOLA_COUNTY_MI", - "description": null, - "label": "TUSCOLA COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUSCOLA_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUSCOLA_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUSCOLA_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUSCOLA_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUSCOLA_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUSCOLA_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUSCOLA_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUSCOLA_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_LONDON_COUNTY_CT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_LONDON_COUNTY_CT", - "description": null, - "label": "NEW LONDON COUNTY CT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_LONDON_COUNTY_CT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_LONDON_COUNTY_CT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_LONDON_COUNTY_CT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_LONDON_COUNTY_CT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_LONDON_COUNTY_CT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_LONDON_COUNTY_CT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_LONDON_COUNTY_CT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_LONDON_COUNTY_CT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEEKER_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEEKER_COUNTY_MN", - "description": null, - "label": "MEEKER COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEEKER_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEEKER_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEEKER_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEEKER_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEEKER_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEEKER_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEEKER_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEEKER_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALDWIN_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALDWIN_COUNTY_GA", - "description": null, - "label": "BALDWIN COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALDWIN_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALDWIN_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALDWIN_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALDWIN_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALDWIN_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALDWIN_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALDWIN_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALDWIN_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_MI", - "description": null, - "label": "CALHOUN COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIPESTONE_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIPESTONE_COUNTY_MN", - "description": null, - "label": "PIPESTONE COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIPESTONE_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIPESTONE_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIPESTONE_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIPESTONE_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIPESTONE_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIPESTONE_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIPESTONE_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIPESTONE_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASTRO_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASTRO_COUNTY_TX", - "description": null, - "label": "CASTRO COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASTRO_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASTRO_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASTRO_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASTRO_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASTRO_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASTRO_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASTRO_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASTRO_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMDEN_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMDEN_COUNTY_GA", - "description": null, - "label": "CAMDEN COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMDEN_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMDEN_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMDEN_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMDEN_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMDEN_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMDEN_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMDEN_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMDEN_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_IN", - "description": null, - "label": "WAYNE COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_PARISH_LA", - "description": null, - "label": "RICHLAND PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKLAND_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKLAND_COUNTY_NY", - "description": null, - "label": "ROCKLAND COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKLAND_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKLAND_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKLAND_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKLAND_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKLAND_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKLAND_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKLAND_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKLAND_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JENNINGS_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JENNINGS_COUNTY_IN", - "description": null, - "label": "JENNINGS COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JENNINGS_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JENNINGS_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JENNINGS_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JENNINGS_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JENNINGS_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JENNINGS_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JENNINGS_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JENNINGS_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_ID": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_ID", - "description": null, - "label": "WASHINGTON COUNTY ID", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_ID.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_ID.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_ID.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_ID.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_ID.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_ID.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_ID.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_ID.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_MO", - "description": null, - "label": "LINCOLN COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOM_GREEN_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOM_GREEN_COUNTY_TX", - "description": null, - "label": "TOM GREEN COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOM_GREEN_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOM_GREEN_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOM_GREEN_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOM_GREEN_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOM_GREEN_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOM_GREEN_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOM_GREEN_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOM_GREEN_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_AR", - "description": null, - "label": "MARION COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_IN", - "description": null, - "label": "PULASKI COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAUI_COUNTY_HI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAUI_COUNTY_HI", - "description": null, - "label": "MAUI COUNTY HI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAUI_COUNTY_HI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAUI_COUNTY_HI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAUI_COUNTY_HI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAUI_COUNTY_HI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAUI_COUNTY_HI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAUI_COUNTY_HI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAUI_COUNTY_HI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAUI_COUNTY_HI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENAI_PENINSULA_BOROUGH_AK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENAI_PENINSULA_BOROUGH_AK", - "description": null, - "label": "KENAI PENINSULA BOROUGH AK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENAI_PENINSULA_BOROUGH_AK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENAI_PENINSULA_BOROUGH_AK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENAI_PENINSULA_BOROUGH_AK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENAI_PENINSULA_BOROUGH_AK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENAI_PENINSULA_BOROUGH_AK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENAI_PENINSULA_BOROUGH_AK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENAI_PENINSULA_BOROUGH_AK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENAI_PENINSULA_BOROUGH_AK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAMPAIGN_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAMPAIGN_COUNTY_IL", - "description": null, - "label": "CHAMPAIGN COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAMPAIGN_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAMPAIGN_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAMPAIGN_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAMPAIGN_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAMPAIGN_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAMPAIGN_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAMPAIGN_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAMPAIGN_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGLE_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGLE_COUNTY_IL", - "description": null, - "label": "OGLE COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGLE_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGLE_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGLE_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGLE_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGLE_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGLE_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGLE_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGLE_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMAS_COUNTY_ID": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMAS_COUNTY_ID", - "description": null, - "label": "CAMAS COUNTY ID", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMAS_COUNTY_ID.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMAS_COUNTY_ID.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMAS_COUNTY_ID.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMAS_COUNTY_ID.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMAS_COUNTY_ID.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMAS_COUNTY_ID.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMAS_COUNTY_ID.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMAS_COUNTY_ID.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUNIATA_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUNIATA_COUNTY_PA", - "description": null, - "label": "JUNIATA COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUNIATA_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUNIATA_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUNIATA_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUNIATA_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUNIATA_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUNIATA_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUNIATA_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUNIATA_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_IL", - "description": null, - "label": "MONROE COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRIO_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRIO_COUNTY_TX", - "description": null, - "label": "FRIO COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRIO_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRIO_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRIO_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRIO_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRIO_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRIO_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRIO_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRIO_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_UT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_UT", - "description": null, - "label": "GARFIELD COUNTY UT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_UT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_UT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_UT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_UT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_UT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_UT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_UT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_UT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKWALL_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKWALL_COUNTY_TX", - "description": null, - "label": "ROCKWALL COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKWALL_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKWALL_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKWALL_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKWALL_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKWALL_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKWALL_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKWALL_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKWALL_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLAGLER_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLAGLER_COUNTY_FL", - "description": null, - "label": "FLAGLER COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLAGLER_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLAGLER_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLAGLER_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLAGLER_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLAGLER_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLAGLER_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLAGLER_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLAGLER_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_NY", - "description": null, - "label": "HAMILTON COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENDALL_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENDALL_COUNTY_TX", - "description": null, - "label": "KENDALL COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENDALL_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENDALL_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENDALL_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENDALL_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENDALL_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENDALL_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENDALL_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENDALL_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COMANCHE_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COMANCHE_COUNTY_KS", - "description": null, - "label": "COMANCHE COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COMANCHE_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COMANCHE_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COMANCHE_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COMANCHE_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COMANCHE_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COMANCHE_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COMANCHE_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COMANCHE_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_MO", - "description": null, - "label": "SALINE COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRESTON_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRESTON_COUNTY_WV", - "description": null, - "label": "PRESTON COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRESTON_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRESTON_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRESTON_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRESTON_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRESTON_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRESTON_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRESTON_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRESTON_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_IL", - "description": null, - "label": "CRAWFORD COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPTON_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPTON_COUNTY_AR", - "description": null, - "label": "TIPTON COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPTON_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPTON_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPTON_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPTON_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPTON_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPTON_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPTON_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPTON_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILSON_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILSON_COUNTY_KS", - "description": null, - "label": "WILSON COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILSON_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILSON_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILSON_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILSON_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILSON_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILSON_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILSON_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILSON_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_FL", - "description": null, - "label": "JACKSON COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RED_RIVER_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RED_RIVER_COUNTY_TX", - "description": null, - "label": "RED RIVER COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RED_RIVER_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RED_RIVER_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RED_RIVER_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RED_RIVER_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RED_RIVER_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RED_RIVER_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RED_RIVER_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RED_RIVER_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WELD_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WELD_COUNTY_CO", - "description": null, - "label": "WELD COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WELD_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WELD_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WELD_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WELD_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WELD_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WELD_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WELD_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WELD_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOLDEN_VALLEY_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOLDEN_VALLEY_COUNTY_MT", - "description": null, - "label": "GOLDEN VALLEY COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOLDEN_VALLEY_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOLDEN_VALLEY_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOLDEN_VALLEY_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOLDEN_VALLEY_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOLDEN_VALLEY_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOLDEN_VALLEY_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOLDEN_VALLEY_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOLDEN_VALLEY_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHLAND_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHLAND_COUNTY_OH", - "description": null, - "label": "ASHLAND COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHLAND_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHLAND_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHLAND_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHLAND_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHLAND_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHLAND_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHLAND_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASHLAND_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OUACHITA_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OUACHITA_PARISH_LA", - "description": null, - "label": "OUACHITA PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OUACHITA_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OUACHITA_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OUACHITA_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OUACHITA_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OUACHITA_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OUACHITA_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OUACHITA_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OUACHITA_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARLBORO_COUNTY_SC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARLBORO_COUNTY_SC", - "description": null, - "label": "MARLBORO COUNTY SC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARLBORO_COUNTY_SC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARLBORO_COUNTY_SC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARLBORO_COUNTY_SC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARLBORO_COUNTY_SC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARLBORO_COUNTY_SC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARLBORO_COUNTY_SC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARLBORO_COUNTY_SC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARLBORO_COUNTY_SC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_ID": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_ID", - "description": null, - "label": "LINCOLN COUNTY ID", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_ID.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_ID.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_ID.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_ID.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_ID.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_ID.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_ID.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_ID.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NACOGDOCHES_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NACOGDOCHES_COUNTY_TX", - "description": null, - "label": "NACOGDOCHES COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NACOGDOCHES_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NACOGDOCHES_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NACOGDOCHES_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NACOGDOCHES_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NACOGDOCHES_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NACOGDOCHES_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NACOGDOCHES_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NACOGDOCHES_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_SD", - "description": null, - "label": "CLAY COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISABELA_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISABELA_MUNICIPIO_PR", - "description": null, - "label": "ISABELA MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISABELA_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISABELA_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISABELA_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISABELA_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISABELA_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISABELA_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISABELA_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISABELA_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_KY", - "description": null, - "label": "LOGAN COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOSCIUSKO_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOSCIUSKO_COUNTY_IN", - "description": null, - "label": "KOSCIUSKO COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOSCIUSKO_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOSCIUSKO_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOSCIUSKO_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOSCIUSKO_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOSCIUSKO_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOSCIUSKO_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOSCIUSKO_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOSCIUSKO_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_IN", - "description": null, - "label": "FLOYD COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_NE", - "description": null, - "label": "MADISON COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHAMPTON_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHAMPTON_COUNTY_PA", - "description": null, - "label": "NORTHAMPTON COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHAMPTON_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHAMPTON_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHAMPTON_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHAMPTON_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHAMPTON_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHAMPTON_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHAMPTON_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHAMPTON_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_FRANCOIS_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_FRANCOIS_COUNTY_MO", - "description": null, - "label": "ST FRANCOIS COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_FRANCOIS_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_FRANCOIS_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_FRANCOIS_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_FRANCOIS_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_FRANCOIS_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_FRANCOIS_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_FRANCOIS_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_FRANCOIS_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.APACHE_COUNTY_AZ": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.APACHE_COUNTY_AZ", - "description": null, - "label": "APACHE COUNTY AZ", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.APACHE_COUNTY_AZ.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.APACHE_COUNTY_AZ.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.APACHE_COUNTY_AZ.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.APACHE_COUNTY_AZ.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.APACHE_COUNTY_AZ.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.APACHE_COUNTY_AZ.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.APACHE_COUNTY_AZ.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.APACHE_COUNTY_AZ.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_DAVIS_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_DAVIS_COUNTY_MS", - "description": null, - "label": "JEFFERSON DAVIS COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_DAVIS_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_DAVIS_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_DAVIS_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_DAVIS_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_DAVIS_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_DAVIS_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_DAVIS_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_DAVIS_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBB_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBB_COUNTY_TX", - "description": null, - "label": "WEBB COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBB_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBB_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBB_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBB_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBB_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBB_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBB_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBB_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODS_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODS_COUNTY_OK", - "description": null, - "label": "WOODS COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODS_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODS_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODS_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODS_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODS_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODS_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODS_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODS_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_WI", - "description": null, - "label": "JEFFERSON COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_IL", - "description": null, - "label": "DEKALB COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASCENSION_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASCENSION_PARISH_LA", - "description": null, - "label": "ASCENSION PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASCENSION_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASCENSION_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASCENSION_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASCENSION_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASCENSION_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASCENSION_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASCENSION_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASCENSION_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_OH", - "description": null, - "label": "FRANKLIN COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYOMING_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYOMING_COUNTY_NY", - "description": null, - "label": "WYOMING COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYOMING_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYOMING_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYOMING_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYOMING_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYOMING_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYOMING_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYOMING_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYOMING_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRILL_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRILL_COUNTY_NE", - "description": null, - "label": "MORRILL COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRILL_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRILL_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRILL_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRILL_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRILL_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRILL_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRILL_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRILL_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TROUP_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TROUP_COUNTY_AL", - "description": null, - "label": "TROUP COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TROUP_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TROUP_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TROUP_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TROUP_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TROUP_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TROUP_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TROUP_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TROUP_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKINSON_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKINSON_COUNTY_GA", - "description": null, - "label": "WILKINSON COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKINSON_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKINSON_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKINSON_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKINSON_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKINSON_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKINSON_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKINSON_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKINSON_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BECKHAM_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BECKHAM_COUNTY_OK", - "description": null, - "label": "BECKHAM COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BECKHAM_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BECKHAM_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BECKHAM_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BECKHAM_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BECKHAM_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BECKHAM_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BECKHAM_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BECKHAM_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANDERS_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANDERS_COUNTY_MT", - "description": null, - "label": "SANDERS COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANDERS_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANDERS_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANDERS_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANDERS_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANDERS_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANDERS_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANDERS_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANDERS_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPPECANOE_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPPECANOE_COUNTY_IN", - "description": null, - "label": "TIPPECANOE COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPPECANOE_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPPECANOE_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPPECANOE_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPPECANOE_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPPECANOE_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPPECANOE_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPPECANOE_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPPECANOE_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIDSON_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIDSON_COUNTY_TN", - "description": null, - "label": "DAVIDSON COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIDSON_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIDSON_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIDSON_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIDSON_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIDSON_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIDSON_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIDSON_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIDSON_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONVERSE_COUNTY_WY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONVERSE_COUNTY_WY", - "description": null, - "label": "CONVERSE COUNTY WY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONVERSE_COUNTY_WY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONVERSE_COUNTY_WY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONVERSE_COUNTY_WY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONVERSE_COUNTY_WY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONVERSE_COUNTY_WY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONVERSE_COUNTY_WY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONVERSE_COUNTY_WY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONVERSE_COUNTY_WY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_SC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_SC", - "description": null, - "label": "CALHOUN COUNTY SC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_SC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_SC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_SC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_SC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_SC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_SC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_SC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_SC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRUNDY_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRUNDY_COUNTY_TN", - "description": null, - "label": "GRUNDY COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRUNDY_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRUNDY_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRUNDY_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRUNDY_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRUNDY_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRUNDY_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRUNDY_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRUNDY_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAURENS_COUNTY_SC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAURENS_COUNTY_SC", - "description": null, - "label": "LAURENS COUNTY SC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAURENS_COUNTY_SC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAURENS_COUNTY_SC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAURENS_COUNTY_SC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAURENS_COUNTY_SC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAURENS_COUNTY_SC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAURENS_COUNTY_SC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAURENS_COUNTY_SC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAURENS_COUNTY_SC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_CRUZ_COUNTY_AZ": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_CRUZ_COUNTY_AZ", - "description": null, - "label": "SANTA CRUZ COUNTY AZ", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_CRUZ_COUNTY_AZ.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_CRUZ_COUNTY_AZ.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_CRUZ_COUNTY_AZ.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_CRUZ_COUNTY_AZ.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_CRUZ_COUNTY_AZ.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_CRUZ_COUNTY_AZ.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_CRUZ_COUNTY_AZ.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_CRUZ_COUNTY_AZ.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLBERT_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLBERT_COUNTY_AL", - "description": null, - "label": "COLBERT COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLBERT_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLBERT_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLBERT_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLBERT_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLBERT_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLBERT_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLBERT_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLBERT_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TWIN_FALLS_COUNTY_ID": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TWIN_FALLS_COUNTY_ID", - "description": null, - "label": "TWIN FALLS COUNTY ID", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TWIN_FALLS_COUNTY_ID.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TWIN_FALLS_COUNTY_ID.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TWIN_FALLS_COUNTY_ID.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TWIN_FALLS_COUNTY_ID.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TWIN_FALLS_COUNTY_ID.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TWIN_FALLS_COUNTY_ID.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TWIN_FALLS_COUNTY_ID.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TWIN_FALLS_COUNTY_ID.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAHAM_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAHAM_COUNTY_KS", - "description": null, - "label": "GRAHAM COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAHAM_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAHAM_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAHAM_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAHAM_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAHAM_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAHAM_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAHAM_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAHAM_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHATCOM_COUNTY_WA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHATCOM_COUNTY_WA", - "description": null, - "label": "WHATCOM COUNTY WA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHATCOM_COUNTY_WA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHATCOM_COUNTY_WA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHATCOM_COUNTY_WA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHATCOM_COUNTY_WA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHATCOM_COUNTY_WA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHATCOM_COUNTY_WA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHATCOM_COUNTY_WA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHATCOM_COUNTY_WA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEMAHA_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEMAHA_COUNTY_KS", - "description": null, - "label": "NEMAHA COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEMAHA_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEMAHA_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEMAHA_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEMAHA_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEMAHA_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEMAHA_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEMAHA_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEMAHA_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLEAN_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLEAN_COUNTY_IL", - "description": null, - "label": "MCLEAN COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLEAN_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLEAN_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLEAN_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLEAN_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLEAN_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLEAN_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLEAN_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLEAN_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WELLS_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WELLS_COUNTY_IN", - "description": null, - "label": "WELLS COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WELLS_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WELLS_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WELLS_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WELLS_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WELLS_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WELLS_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WELLS_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WELLS_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINNEHAHA_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINNEHAHA_COUNTY_SD", - "description": null, - "label": "MINNEHAHA COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINNEHAHA_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINNEHAHA_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINNEHAHA_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINNEHAHA_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINNEHAHA_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINNEHAHA_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINNEHAHA_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINNEHAHA_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLASCOCK_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLASCOCK_COUNTY_GA", - "description": null, - "label": "GLASCOCK COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLASCOCK_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLASCOCK_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLASCOCK_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLASCOCK_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLASCOCK_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLASCOCK_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLASCOCK_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLASCOCK_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHAMPTON_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHAMPTON_COUNTY_VA", - "description": null, - "label": "NORTHAMPTON COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHAMPTON_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHAMPTON_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHAMPTON_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHAMPTON_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHAMPTON_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHAMPTON_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHAMPTON_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHAMPTON_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOLLINGER_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOLLINGER_COUNTY_MO", - "description": null, - "label": "BOLLINGER COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOLLINGER_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOLLINGER_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOLLINGER_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOLLINGER_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOLLINGER_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOLLINGER_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOLLINGER_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOLLINGER_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELBERT_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELBERT_COUNTY_GA", - "description": null, - "label": "ELBERT COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELBERT_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELBERT_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELBERT_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELBERT_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELBERT_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELBERT_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELBERT_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELBERT_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUGLAIZE_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUGLAIZE_COUNTY_OH", - "description": null, - "label": "AUGLAIZE COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUGLAIZE_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUGLAIZE_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUGLAIZE_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUGLAIZE_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUGLAIZE_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUGLAIZE_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUGLAIZE_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUGLAIZE_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_TX", - "description": null, - "label": "MITCHELL COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MITCHELL_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARSON_CITY_NV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARSON_CITY_NV", - "description": null, - "label": "CARSON CITY NV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARSON_CITY_NV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARSON_CITY_NV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARSON_CITY_NV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARSON_CITY_NV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARSON_CITY_NV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARSON_CITY_NV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARSON_CITY_NV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARSON_CITY_NV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_RI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_RI", - "description": null, - "label": "KENT COUNTY RI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_RI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_RI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_RI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_RI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_RI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_RI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_RI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_RI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NAPA_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NAPA_COUNTY_CA", - "description": null, - "label": "NAPA COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NAPA_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NAPA_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NAPA_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NAPA_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NAPA_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NAPA_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NAPA_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NAPA_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILMER_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILMER_COUNTY_GA", - "description": null, - "label": "GILMER COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILMER_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILMER_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILMER_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILMER_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILMER_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILMER_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILMER_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILMER_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORLEANS_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORLEANS_COUNTY_NY", - "description": null, - "label": "ORLEANS COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORLEANS_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORLEANS_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORLEANS_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORLEANS_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORLEANS_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORLEANS_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORLEANS_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORLEANS_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEHIGH_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEHIGH_COUNTY_PA", - "description": null, - "label": "LEHIGH COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEHIGH_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEHIGH_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEHIGH_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEHIGH_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEHIGH_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEHIGH_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEHIGH_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEHIGH_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PACIFIC_COUNTY_WA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PACIFIC_COUNTY_WA", - "description": null, - "label": "PACIFIC COUNTY WA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PACIFIC_COUNTY_WA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PACIFIC_COUNTY_WA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PACIFIC_COUNTY_WA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PACIFIC_COUNTY_WA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PACIFIC_COUNTY_WA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PACIFIC_COUNTY_WA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PACIFIC_COUNTY_WA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PACIFIC_COUNTY_WA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAKUTAT_CITY_AND_BOROUGH_AK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAKUTAT_CITY_AND_BOROUGH_AK", - "description": null, - "label": "YAKUTAT CITY AND BOROUGH AK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAKUTAT_CITY_AND_BOROUGH_AK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAKUTAT_CITY_AND_BOROUGH_AK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAKUTAT_CITY_AND_BOROUGH_AK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAKUTAT_CITY_AND_BOROUGH_AK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAKUTAT_CITY_AND_BOROUGH_AK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAKUTAT_CITY_AND_BOROUGH_AK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAKUTAT_CITY_AND_BOROUGH_AK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAKUTAT_CITY_AND_BOROUGH_AK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_AL", - "description": null, - "label": "JACKSON COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDING_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDING_COUNTY_ND", - "description": null, - "label": "HARDING COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDING_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDING_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDING_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDING_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDING_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDING_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDING_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDING_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCONTO_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCONTO_COUNTY_WI", - "description": null, - "label": "OCONTO COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCONTO_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCONTO_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCONTO_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCONTO_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCONTO_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCONTO_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCONTO_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCONTO_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOOD_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOOD_COUNTY_TX", - "description": null, - "label": "WOOD COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOOD_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOOD_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOOD_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOOD_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOOD_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOOD_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOOD_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOOD_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRANE_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRANE_COUNTY_TX", - "description": null, - "label": "CRANE COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRANE_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRANE_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRANE_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRANE_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRANE_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRANE_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRANE_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRANE_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALTIMORE_CITY_MD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALTIMORE_CITY_MD", - "description": null, - "label": "BALTIMORE CITY MD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALTIMORE_CITY_MD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALTIMORE_CITY_MD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALTIMORE_CITY_MD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALTIMORE_CITY_MD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALTIMORE_CITY_MD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALTIMORE_CITY_MD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALTIMORE_CITY_MD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALTIMORE_CITY_MD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEADE_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEADE_COUNTY_KY", - "description": null, - "label": "MEADE COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEADE_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEADE_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEADE_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEADE_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEADE_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEADE_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEADE_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEADE_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_MS", - "description": null, - "label": "WAYNE COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROSS_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROSS_COUNTY_OH", - "description": null, - "label": "ROSS COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROSS_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROSS_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROSS_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROSS_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROSS_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROSS_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROSS_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROSS_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_NY", - "description": null, - "label": "MONROE COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_MO", - "description": null, - "label": "CARTER COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGS_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGS_COUNTY_CA", - "description": null, - "label": "KINGS COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGS_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGS_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGS_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGS_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGS_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGS_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGS_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGS_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMS_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMS_COUNTY_ND", - "description": null, - "label": "WILLIAMS COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMS_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMS_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMS_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMS_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMS_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMS_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMS_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMS_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DE_SOTO_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DE_SOTO_PARISH_LA", - "description": null, - "label": "DE SOTO PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DE_SOTO_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DE_SOTO_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DE_SOTO_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DE_SOTO_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DE_SOTO_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DE_SOTO_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DE_SOTO_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DE_SOTO_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_MN", - "description": null, - "label": "BENTON COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_IL", - "description": null, - "label": "LAKE COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARICAO_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARICAO_MUNICIPIO_PR", - "description": null, - "label": "MARICAO MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARICAO_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARICAO_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARICAO_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARICAO_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARICAO_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARICAO_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARICAO_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARICAO_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINKLER_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINKLER_COUNTY_TX", - "description": null, - "label": "WINKLER COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINKLER_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINKLER_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINKLER_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINKLER_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINKLER_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINKLER_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINKLER_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINKLER_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLES_CITY_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLES_CITY_COUNTY_VA", - "description": null, - "label": "CHARLES CITY COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLES_CITY_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLES_CITY_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLES_CITY_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLES_CITY_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLES_CITY_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLES_CITY_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLES_CITY_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLES_CITY_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_KY", - "description": null, - "label": "MONROE COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCNAIRY_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCNAIRY_COUNTY_TN", - "description": null, - "label": "MCNAIRY COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCNAIRY_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCNAIRY_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCNAIRY_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCNAIRY_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCNAIRY_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCNAIRY_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCNAIRY_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCNAIRY_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATHENS_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATHENS_COUNTY_OH", - "description": null, - "label": "ATHENS COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATHENS_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATHENS_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATHENS_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATHENS_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATHENS_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATHENS_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATHENS_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATHENS_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALDWIN_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALDWIN_COUNTY_AL", - "description": null, - "label": "BALDWIN COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALDWIN_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALDWIN_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALDWIN_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALDWIN_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALDWIN_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALDWIN_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALDWIN_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALDWIN_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SITKA_CITY_AND_BOROUGH_AK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SITKA_CITY_AND_BOROUGH_AK", - "description": null, - "label": "SITKA CITY AND BOROUGH AK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SITKA_CITY_AND_BOROUGH_AK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SITKA_CITY_AND_BOROUGH_AK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SITKA_CITY_AND_BOROUGH_AK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SITKA_CITY_AND_BOROUGH_AK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SITKA_CITY_AND_BOROUGH_AK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SITKA_CITY_AND_BOROUGH_AK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SITKA_CITY_AND_BOROUGH_AK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SITKA_CITY_AND_BOROUGH_AK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PROVIDENCE_COUNTY_RI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PROVIDENCE_COUNTY_RI", - "description": null, - "label": "PROVIDENCE COUNTY RI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PROVIDENCE_COUNTY_RI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PROVIDENCE_COUNTY_RI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PROVIDENCE_COUNTY_RI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PROVIDENCE_COUNTY_RI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PROVIDENCE_COUNTY_RI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PROVIDENCE_COUNTY_RI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PROVIDENCE_COUNTY_RI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PROVIDENCE_COUNTY_RI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOUNDARY_COUNTY_ID": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOUNDARY_COUNTY_ID", - "description": null, - "label": "BOUNDARY COUNTY ID", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOUNDARY_COUNTY_ID.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOUNDARY_COUNTY_ID.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOUNDARY_COUNTY_ID.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOUNDARY_COUNTY_ID.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOUNDARY_COUNTY_ID.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOUNDARY_COUNTY_ID.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOUNDARY_COUNTY_ID.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOUNDARY_COUNTY_ID.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMSON_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMSON_COUNTY_IL", - "description": null, - "label": "WILLIAMSON COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMSON_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMSON_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMSON_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMSON_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMSON_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMSON_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMSON_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMSON_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LOUIS_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LOUIS_COUNTY_MN", - "description": null, - "label": "ST LOUIS COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LOUIS_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LOUIS_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LOUIS_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LOUIS_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LOUIS_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LOUIS_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LOUIS_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LOUIS_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_OH", - "description": null, - "label": "LAWRENCE COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAS_MARÍAS_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAS_MARÍAS_MUNICIPIO_PR", - "description": null, - "label": "LAS MARÍAS MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAS_MARÍAS_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAS_MARÍAS_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAS_MARÍAS_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAS_MARÍAS_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAS_MARÍAS_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAS_MARÍAS_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAS_MARÍAS_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAS_MARÍAS_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JOSEPH_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JOSEPH_COUNTY_MI", - "description": null, - "label": "ST JOSEPH COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JOSEPH_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JOSEPH_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JOSEPH_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JOSEPH_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JOSEPH_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JOSEPH_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JOSEPH_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JOSEPH_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STAFFORD_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STAFFORD_COUNTY_KS", - "description": null, - "label": "STAFFORD COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STAFFORD_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STAFFORD_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STAFFORD_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STAFFORD_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STAFFORD_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STAFFORD_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STAFFORD_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STAFFORD_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_MT", - "description": null, - "label": "JEFFERSON COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAS_PIEDRAS_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAS_PIEDRAS_MUNICIPIO_PR", - "description": null, - "label": "LAS PIEDRAS MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAS_PIEDRAS_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAS_PIEDRAS_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAS_PIEDRAS_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAS_PIEDRAS_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAS_PIEDRAS_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAS_PIEDRAS_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAS_PIEDRAS_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAS_PIEDRAS_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARITON_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARITON_COUNTY_MO", - "description": null, - "label": "CHARITON COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARITON_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARITON_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARITON_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARITON_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARITON_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARITON_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARITON_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARITON_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_KY", - "description": null, - "label": "LINCOLN COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_OH", - "description": null, - "label": "MADISON COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIMPSON_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIMPSON_COUNTY_MS", - "description": null, - "label": "SIMPSON COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIMPSON_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIMPSON_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIMPSON_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIMPSON_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIMPSON_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIMPSON_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIMPSON_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIMPSON_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUCHESNE_COUNTY_UT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUCHESNE_COUNTY_UT", - "description": null, - "label": "DUCHESNE COUNTY UT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUCHESNE_COUNTY_UT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUCHESNE_COUNTY_UT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUCHESNE_COUNTY_UT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUCHESNE_COUNTY_UT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUCHESNE_COUNTY_UT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUCHESNE_COUNTY_UT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUCHESNE_COUNTY_UT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUCHESNE_COUNTY_UT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERKSHIRE_COUNTY_MA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERKSHIRE_COUNTY_MA", - "description": null, - "label": "BERKSHIRE COUNTY MA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERKSHIRE_COUNTY_MA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERKSHIRE_COUNTY_MA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERKSHIRE_COUNTY_MA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERKSHIRE_COUNTY_MA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERKSHIRE_COUNTY_MA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERKSHIRE_COUNTY_MA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERKSHIRE_COUNTY_MA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERKSHIRE_COUNTY_MA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_NM": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_NM", - "description": null, - "label": "GRANT COUNTY NM", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_NM.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_NM.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_NM.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_NM.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_NM.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_NM.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_NM.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_NM.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMERS_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMERS_COUNTY_WV", - "description": null, - "label": "SUMMERS COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMERS_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMERS_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMERS_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMERS_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMERS_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMERS_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMERS_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMERS_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_VA", - "description": null, - "label": "HENRY COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JAY_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JAY_COUNTY_IN", - "description": null, - "label": "JAY COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JAY_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JAY_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JAY_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JAY_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JAY_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JAY_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JAY_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JAY_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROSBY_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROSBY_COUNTY_TX", - "description": null, - "label": "CROSBY COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROSBY_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROSBY_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROSBY_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROSBY_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROSBY_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROSBY_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROSBY_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROSBY_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EFFINGHAM_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EFFINGHAM_COUNTY_GA", - "description": null, - "label": "EFFINGHAM COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EFFINGHAM_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EFFINGHAM_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EFFINGHAM_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EFFINGHAM_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EFFINGHAM_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EFFINGHAM_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EFFINGHAM_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EFFINGHAM_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_NY", - "description": null, - "label": "SULLIVAN COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLIVAN_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KODIAK_ISLAND_BOROUGH_AK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KODIAK_ISLAND_BOROUGH_AK", - "description": null, - "label": "KODIAK ISLAND BOROUGH AK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KODIAK_ISLAND_BOROUGH_AK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KODIAK_ISLAND_BOROUGH_AK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KODIAK_ISLAND_BOROUGH_AK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KODIAK_ISLAND_BOROUGH_AK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KODIAK_ISLAND_BOROUGH_AK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KODIAK_ISLAND_BOROUGH_AK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KODIAK_ISLAND_BOROUGH_AK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KODIAK_ISLAND_BOROUGH_AK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COWETA_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COWETA_COUNTY_GA", - "description": null, - "label": "COWETA COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COWETA_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COWETA_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COWETA_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COWETA_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COWETA_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COWETA_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COWETA_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COWETA_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATOKA_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATOKA_COUNTY_OK", - "description": null, - "label": "ATOKA COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATOKA_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATOKA_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATOKA_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATOKA_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATOKA_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATOKA_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATOKA_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATOKA_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_NE", - "description": null, - "label": "BOONE COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NIOBRARA_COUNTY_WY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NIOBRARA_COUNTY_WY", - "description": null, - "label": "NIOBRARA COUNTY WY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NIOBRARA_COUNTY_WY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NIOBRARA_COUNTY_WY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NIOBRARA_COUNTY_WY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NIOBRARA_COUNTY_WY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NIOBRARA_COUNTY_WY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NIOBRARA_COUNTY_WY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NIOBRARA_COUNTY_WY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NIOBRARA_COUNTY_WY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMSON_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMSON_COUNTY_TN", - "description": null, - "label": "WILLIAMSON COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMSON_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMSON_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMSON_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMSON_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMSON_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMSON_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMSON_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMSON_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALTON_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALTON_COUNTY_GA", - "description": null, - "label": "WALTON COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALTON_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALTON_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALTON_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALTON_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALTON_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALTON_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALTON_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALTON_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_CO", - "description": null, - "label": "JACKSON COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILL_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILL_COUNTY_TX", - "description": null, - "label": "HILL COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILL_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILL_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILL_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILL_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILL_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILL_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILL_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILL_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_AR", - "description": null, - "label": "LAWRENCE COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YUMA_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YUMA_COUNTY_CO", - "description": null, - "label": "YUMA COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YUMA_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YUMA_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YUMA_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YUMA_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YUMA_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YUMA_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YUMA_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YUMA_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_NE", - "description": null, - "label": "PIERCE COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WICHITA_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WICHITA_COUNTY_TX", - "description": null, - "label": "WICHITA COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WICHITA_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WICHITA_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WICHITA_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WICHITA_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WICHITA_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WICHITA_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WICHITA_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WICHITA_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLOUD_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLOUD_COUNTY_KS", - "description": null, - "label": "CLOUD COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLOUD_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLOUD_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLOUD_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLOUD_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLOUD_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLOUD_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLOUD_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLOUD_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANAWHA_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANAWHA_COUNTY_WV", - "description": null, - "label": "KANAWHA COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANAWHA_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANAWHA_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANAWHA_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANAWHA_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANAWHA_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANAWHA_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANAWHA_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANAWHA_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WISE_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WISE_COUNTY_TX", - "description": null, - "label": "WISE COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WISE_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WISE_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WISE_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WISE_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WISE_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WISE_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WISE_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WISE_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINN_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINN_COUNTY_MO", - "description": null, - "label": "LINN COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINN_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINN_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINN_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINN_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINN_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINN_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINN_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINN_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSSELL_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSSELL_COUNTY_AL", - "description": null, - "label": "RUSSELL COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSSELL_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSSELL_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSSELL_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSSELL_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSSELL_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSSELL_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSSELL_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSSELL_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOBLE_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOBLE_COUNTY_OK", - "description": null, - "label": "NOBLE COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOBLE_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOBLE_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOBLE_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOBLE_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOBLE_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOBLE_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOBLE_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOBLE_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENNINGTON_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENNINGTON_COUNTY_MN", - "description": null, - "label": "PENNINGTON COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENNINGTON_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENNINGTON_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENNINGTON_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENNINGTON_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENNINGTON_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENNINGTON_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENNINGTON_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENNINGTON_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_NY", - "description": null, - "label": "CLINTON COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_KS", - "description": null, - "label": "JOHNSON COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSKINGUM_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSKINGUM_COUNTY_OH", - "description": null, - "label": "MUSKINGUM COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSKINGUM_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSKINGUM_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSKINGUM_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSKINGUM_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSKINGUM_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSKINGUM_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSKINGUM_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSKINGUM_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIG_HORN_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIG_HORN_COUNTY_MT", - "description": null, - "label": "BIG HORN COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIG_HORN_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIG_HORN_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIG_HORN_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIG_HORN_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIG_HORN_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIG_HORN_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIG_HORN_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIG_HORN_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERRICK_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERRICK_COUNTY_NE", - "description": null, - "label": "MERRICK COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERRICK_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERRICK_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERRICK_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERRICK_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERRICK_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERRICK_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERRICK_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERRICK_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMS_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMS_COUNTY_OH", - "description": null, - "label": "WILLIAMS COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMS_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMS_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMS_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMS_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMS_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMS_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMS_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLIAMS_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_UT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_UT", - "description": null, - "label": "WAYNE COUNTY UT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_UT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_UT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_UT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_UT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_UT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_UT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_UT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_UT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIO_ARRIBA_COUNTY_NM": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIO_ARRIBA_COUNTY_NM", - "description": null, - "label": "RIO ARRIBA COUNTY NM", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIO_ARRIBA_COUNTY_NM.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIO_ARRIBA_COUNTY_NM.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIO_ARRIBA_COUNTY_NM.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIO_ARRIBA_COUNTY_NM.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIO_ARRIBA_COUNTY_NM.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIO_ARRIBA_COUNTY_NM.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIO_ARRIBA_COUNTY_NM.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIO_ARRIBA_COUNTY_NM.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_PA", - "description": null, - "label": "FAYETTE COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSCODA_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSCODA_COUNTY_MI", - "description": null, - "label": "OSCODA COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSCODA_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSCODA_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSCODA_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSCODA_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSCODA_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSCODA_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSCODA_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSCODA_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_TX", - "description": null, - "label": "HOUSTON COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARMON_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARMON_COUNTY_OK", - "description": null, - "label": "HARMON COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARMON_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARMON_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARMON_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARMON_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARMON_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARMON_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARMON_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARMON_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUKES_COUNTY_MA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUKES_COUNTY_MA", - "description": null, - "label": "DUKES COUNTY MA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUKES_COUNTY_MA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUKES_COUNTY_MA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUKES_COUNTY_MA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUKES_COUNTY_MA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUKES_COUNTY_MA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUKES_COUNTY_MA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUKES_COUNTY_MA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUKES_COUNTY_MA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LLANO_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LLANO_COUNTY_TX", - "description": null, - "label": "LLANO COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LLANO_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LLANO_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LLANO_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LLANO_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LLANO_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LLANO_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LLANO_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LLANO_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_VA", - "description": null, - "label": "MADISON COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_KS", - "description": null, - "label": "DECATUR COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAULDING_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAULDING_COUNTY_GA", - "description": null, - "label": "PAULDING COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAULDING_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAULDING_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAULDING_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAULDING_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAULDING_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAULDING_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAULDING_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAULDING_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOXUBEE_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOXUBEE_COUNTY_MS", - "description": null, - "label": "NOXUBEE COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOXUBEE_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOXUBEE_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOXUBEE_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOXUBEE_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOXUBEE_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOXUBEE_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOXUBEE_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOXUBEE_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_MS", - "description": null, - "label": "MONROE COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOTTOWAY_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOTTOWAY_COUNTY_VA", - "description": null, - "label": "NOTTOWAY COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOTTOWAY_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOTTOWAY_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOTTOWAY_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOTTOWAY_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOTTOWAY_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOTTOWAY_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOTTOWAY_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOTTOWAY_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_OH", - "description": null, - "label": "CRAWFORD COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_IA", - "description": null, - "label": "WARREN COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_WV", - "description": null, - "label": "FAYETTE COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_NE", - "description": null, - "label": "HOWARD COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OZAUKEE_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OZAUKEE_COUNTY_WI", - "description": null, - "label": "OZAUKEE COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OZAUKEE_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OZAUKEE_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OZAUKEE_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OZAUKEE_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OZAUKEE_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OZAUKEE_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OZAUKEE_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OZAUKEE_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_TN", - "description": null, - "label": "PUTNAM COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARATHON_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARATHON_COUNTY_WI", - "description": null, - "label": "MARATHON COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARATHON_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARATHON_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARATHON_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARATHON_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARATHON_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARATHON_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARATHON_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARATHON_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_UT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_UT", - "description": null, - "label": "MORGAN COUNTY UT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_UT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_UT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_UT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_UT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_UT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_UT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_UT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_UT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUCE_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUCE_COUNTY_MI", - "description": null, - "label": "LUCE COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUCE_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUCE_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUCE_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUCE_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUCE_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUCE_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUCE_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUCE_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENARD_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENARD_COUNTY_TX", - "description": null, - "label": "MENARD COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENARD_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENARD_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENARD_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENARD_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENARD_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENARD_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENARD_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENARD_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALKER_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALKER_COUNTY_TX", - "description": null, - "label": "WALKER COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALKER_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALKER_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALKER_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALKER_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALKER_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALKER_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALKER_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALKER_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAY_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAY_COUNTY_FL", - "description": null, - "label": "BAY COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAY_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAY_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAY_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAY_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAY_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAY_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAY_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAY_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURNET_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURNET_COUNTY_TX", - "description": null, - "label": "BURNET COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURNET_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURNET_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURNET_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURNET_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURNET_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURNET_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURNET_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURNET_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEDGWICK_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEDGWICK_COUNTY_KS", - "description": null, - "label": "SEDGWICK COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEDGWICK_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEDGWICK_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEDGWICK_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEDGWICK_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEDGWICK_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEDGWICK_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEDGWICK_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEDGWICK_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WISE_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WISE_COUNTY_VA", - "description": null, - "label": "WISE COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WISE_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WISE_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WISE_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WISE_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WISE_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WISE_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WISE_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WISE_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDLAND_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDLAND_COUNTY_MI", - "description": null, - "label": "MIDLAND COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDLAND_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDLAND_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDLAND_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDLAND_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDLAND_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDLAND_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDLAND_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDLAND_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_VA", - "description": null, - "label": "CUMBERLAND COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERNON_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERNON_COUNTY_MO", - "description": null, - "label": "VERNON COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERNON_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERNON_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERNON_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERNON_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERNON_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERNON_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERNON_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERNON_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TODD_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TODD_COUNTY_KY", - "description": null, - "label": "TODD COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TODD_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TODD_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TODD_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TODD_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TODD_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TODD_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TODD_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TODD_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEARNEY_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEARNEY_COUNTY_NE", - "description": null, - "label": "KEARNEY COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEARNEY_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEARNEY_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEARNEY_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEARNEY_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEARNEY_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEARNEY_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEARNEY_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEARNEY_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONONDAGA_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONONDAGA_COUNTY_NY", - "description": null, - "label": "ONONDAGA COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONONDAGA_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONONDAGA_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONONDAGA_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONONDAGA_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONONDAGA_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONONDAGA_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONONDAGA_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONONDAGA_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILL_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILL_COUNTY_MT", - "description": null, - "label": "HILL COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILL_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILL_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILL_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILL_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILL_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILL_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILL_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILL_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTTS_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTTS_COUNTY_GA", - "description": null, - "label": "BUTTS COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTTS_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTTS_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTTS_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTTS_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTTS_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTTS_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTTS_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTTS_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISABELLA_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISABELLA_COUNTY_MI", - "description": null, - "label": "ISABELLA COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISABELLA_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISABELLA_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISABELLA_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISABELLA_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISABELLA_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISABELLA_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISABELLA_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ISABELLA_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERNON_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERNON_PARISH_LA", - "description": null, - "label": "VERNON PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERNON_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERNON_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERNON_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERNON_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERNON_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERNON_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERNON_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VERNON_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHOUTEAU_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHOUTEAU_COUNTY_MT", - "description": null, - "label": "CHOUTEAU COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHOUTEAU_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHOUTEAU_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHOUTEAU_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHOUTEAU_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHOUTEAU_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHOUTEAU_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHOUTEAU_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHOUTEAU_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAYES_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAYES_COUNTY_OK", - "description": null, - "label": "MAYES COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAYES_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAYES_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAYES_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAYES_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAYES_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAYES_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAYES_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAYES_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRADLEY_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRADLEY_COUNTY_AR", - "description": null, - "label": "BRADLEY COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRADLEY_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRADLEY_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRADLEY_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRADLEY_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRADLEY_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRADLEY_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRADLEY_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRADLEY_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_IA", - "description": null, - "label": "WEBSTER COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ABBEVILLE_COUNTY_SC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ABBEVILLE_COUNTY_SC", - "description": null, - "label": "ABBEVILLE COUNTY SC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ABBEVILLE_COUNTY_SC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ABBEVILLE_COUNTY_SC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ABBEVILLE_COUNTY_SC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ABBEVILLE_COUNTY_SC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ABBEVILLE_COUNTY_SC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ABBEVILLE_COUNTY_SC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ABBEVILLE_COUNTY_SC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ABBEVILLE_COUNTY_SC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEARNY_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEARNY_COUNTY_KS", - "description": null, - "label": "KEARNY COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEARNY_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEARNY_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEARNY_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEARNY_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEARNY_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEARNY_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEARNY_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEARNY_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_WA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_WA", - "description": null, - "label": "GRANT COUNTY WA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_WA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_WA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_WA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_WA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_WA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_WA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_WA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_WA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_PARISH_LA", - "description": null, - "label": "GRANT PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIESS_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIESS_COUNTY_MO", - "description": null, - "label": "DAVIESS COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIESS_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIESS_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIESS_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIESS_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIESS_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIESS_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIESS_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIESS_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARRON_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARRON_COUNTY_WI", - "description": null, - "label": "BARRON COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARRON_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARRON_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARRON_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARRON_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARRON_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARRON_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARRON_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARRON_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOSQUE_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOSQUE_COUNTY_TX", - "description": null, - "label": "BOSQUE COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOSQUE_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOSQUE_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOSQUE_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOSQUE_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOSQUE_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOSQUE_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOSQUE_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOSQUE_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOND_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOND_COUNTY_IL", - "description": null, - "label": "BOND COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOND_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOND_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOND_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOND_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOND_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOND_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOND_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOND_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_IL", - "description": null, - "label": "SCOTT COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_KS", - "description": null, - "label": "FRANKLIN COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_NY", - "description": null, - "label": "JEFFERSON COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RACINE_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RACINE_COUNTY_WI", - "description": null, - "label": "RACINE COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RACINE_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RACINE_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RACINE_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RACINE_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RACINE_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RACINE_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RACINE_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RACINE_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROW_WING_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROW_WING_COUNTY_MN", - "description": null, - "label": "CROW WING COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROW_WING_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROW_WING_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROW_WING_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROW_WING_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROW_WING_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROW_WING_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROW_WING_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROW_WING_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLALLAM_COUNTY_WA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLALLAM_COUNTY_WA", - "description": null, - "label": "CLALLAM COUNTY WA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLALLAM_COUNTY_WA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLALLAM_COUNTY_WA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLALLAM_COUNTY_WA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLALLAM_COUNTY_WA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLALLAM_COUNTY_WA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLALLAM_COUNTY_WA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLALLAM_COUNTY_WA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLALLAM_COUNTY_WA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_PA", - "description": null, - "label": "PERRY COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIDDER_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIDDER_COUNTY_ND", - "description": null, - "label": "KIDDER COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIDDER_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIDDER_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIDDER_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIDDER_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIDDER_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIDDER_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIDDER_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIDDER_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_SD", - "description": null, - "label": "LAKE COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANIER_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANIER_COUNTY_GA", - "description": null, - "label": "LANIER COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANIER_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANIER_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANIER_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANIER_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANIER_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANIER_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANIER_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANIER_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCORMICK_COUNTY_SC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCORMICK_COUNTY_SC", - "description": null, - "label": "MCCORMICK COUNTY SC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCORMICK_COUNTY_SC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCORMICK_COUNTY_SC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCORMICK_COUNTY_SC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCORMICK_COUNTY_SC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCORMICK_COUNTY_SC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCORMICK_COUNTY_SC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCORMICK_COUNTY_SC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCORMICK_COUNTY_SC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMYTH_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMYTH_COUNTY_VA", - "description": null, - "label": "SMYTH COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMYTH_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMYTH_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMYTH_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMYTH_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMYTH_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMYTH_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMYTH_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMYTH_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOSPER_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOSPER_COUNTY_NE", - "description": null, - "label": "GOSPER COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOSPER_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOSPER_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOSPER_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOSPER_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOSPER_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOSPER_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOSPER_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOSPER_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_FL", - "description": null, - "label": "LAKE COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLDHAM_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLDHAM_COUNTY_KY", - "description": null, - "label": "OLDHAM COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLDHAM_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLDHAM_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLDHAM_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLDHAM_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLDHAM_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLDHAM_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLDHAM_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLDHAM_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAINE_COUNTY_ID": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAINE_COUNTY_ID", - "description": null, - "label": "BLAINE COUNTY ID", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAINE_COUNTY_ID.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAINE_COUNTY_ID.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAINE_COUNTY_ID.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAINE_COUNTY_ID.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAINE_COUNTY_ID.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAINE_COUNTY_ID.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAINE_COUNTY_ID.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAINE_COUNTY_ID.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_IN", - "description": null, - "label": "FRANKLIN COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODGE_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODGE_COUNTY_NE", - "description": null, - "label": "DODGE COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODGE_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODGE_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODGE_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODGE_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODGE_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODGE_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODGE_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODGE_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GAGE_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GAGE_COUNTY_NE", - "description": null, - "label": "GAGE COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GAGE_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GAGE_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GAGE_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GAGE_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GAGE_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GAGE_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GAGE_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GAGE_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISTOL_COUNTY_MA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISTOL_COUNTY_MA", - "description": null, - "label": "BRISTOL COUNTY MA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISTOL_COUNTY_MA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISTOL_COUNTY_MA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISTOL_COUNTY_MA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISTOL_COUNTY_MA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISTOL_COUNTY_MA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISTOL_COUNTY_MA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISTOL_COUNTY_MA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISTOL_COUNTY_MA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWELL_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWELL_COUNTY_KY", - "description": null, - "label": "POWELL COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWELL_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWELL_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWELL_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWELL_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWELL_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWELL_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWELL_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWELL_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALLATIN_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALLATIN_COUNTY_KY", - "description": null, - "label": "GALLATIN COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALLATIN_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALLATIN_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALLATIN_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALLATIN_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALLATIN_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALLATIN_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALLATIN_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GALLATIN_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_IL", - "description": null, - "label": "JEFFERSON COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_WA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_WA", - "description": null, - "label": "MASON COUNTY WA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_WA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_WA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_WA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_WA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_WA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_WA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_WA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MASON_COUNTY_WA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKINLEY_COUNTY_AZ": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKINLEY_COUNTY_AZ", - "description": null, - "label": "MCKINLEY COUNTY AZ", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKINLEY_COUNTY_AZ.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKINLEY_COUNTY_AZ.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKINLEY_COUNTY_AZ.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKINLEY_COUNTY_AZ.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKINLEY_COUNTY_AZ.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKINLEY_COUNTY_AZ.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKINLEY_COUNTY_AZ.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKINLEY_COUNTY_AZ.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SARASOTA_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SARASOTA_COUNTY_FL", - "description": null, - "label": "SARASOTA COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SARASOTA_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SARASOTA_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SARASOTA_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SARASOTA_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SARASOTA_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SARASOTA_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SARASOTA_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SARASOTA_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WESTMORELAND_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WESTMORELAND_COUNTY_PA", - "description": null, - "label": "WESTMORELAND COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WESTMORELAND_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WESTMORELAND_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WESTMORELAND_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WESTMORELAND_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WESTMORELAND_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WESTMORELAND_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WESTMORELAND_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WESTMORELAND_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_TN", - "description": null, - "label": "HARDIN COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTOE_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTOE_COUNTY_NE", - "description": null, - "label": "OTOE COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTOE_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTOE_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTOE_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTOE_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTOE_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTOE_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTOE_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTOE_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STONEWALL_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STONEWALL_COUNTY_TX", - "description": null, - "label": "STONEWALL COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STONEWALL_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STONEWALL_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STONEWALL_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STONEWALL_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STONEWALL_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STONEWALL_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STONEWALL_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STONEWALL_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YOUNG_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YOUNG_COUNTY_TX", - "description": null, - "label": "YOUNG COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YOUNG_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YOUNG_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YOUNG_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YOUNG_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YOUNG_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YOUNG_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YOUNG_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YOUNG_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURLEIGH_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURLEIGH_COUNTY_ND", - "description": null, - "label": "BURLEIGH COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURLEIGH_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURLEIGH_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURLEIGH_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURLEIGH_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURLEIGH_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURLEIGH_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURLEIGH_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURLEIGH_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_TX", - "description": null, - "label": "LEE COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_IA", - "description": null, - "label": "SCOTT COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORROW_COUNTY_OR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORROW_COUNTY_OR", - "description": null, - "label": "MORROW COUNTY OR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORROW_COUNTY_OR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORROW_COUNTY_OR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORROW_COUNTY_OR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORROW_COUNTY_OR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORROW_COUNTY_OR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORROW_COUNTY_OR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORROW_COUNTY_OR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORROW_COUNTY_OR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_PARISH_LA", - "description": null, - "label": "WASHINGTON PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VIEQUES_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VIEQUES_MUNICIPIO_PR", - "description": null, - "label": "VIEQUES MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VIEQUES_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VIEQUES_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VIEQUES_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VIEQUES_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VIEQUES_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VIEQUES_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VIEQUES_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VIEQUES_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_AR", - "description": null, - "label": "PERRY COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHITA_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHITA_COUNTY_OK", - "description": null, - "label": "WASHITA COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHITA_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHITA_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHITA_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHITA_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHITA_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHITA_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHITA_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHITA_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUGHTON_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUGHTON_COUNTY_MI", - "description": null, - "label": "HOUGHTON COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUGHTON_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUGHTON_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUGHTON_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUGHTON_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUGHTON_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUGHTON_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUGHTON_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUGHTON_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERRIEN_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERRIEN_COUNTY_MI", - "description": null, - "label": "BERRIEN COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERRIEN_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERRIEN_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERRIEN_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERRIEN_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERRIEN_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERRIEN_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERRIEN_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERRIEN_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLUE_EARTH_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLUE_EARTH_COUNTY_MN", - "description": null, - "label": "BLUE EARTH COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLUE_EARTH_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLUE_EARTH_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLUE_EARTH_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLUE_EARTH_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLUE_EARTH_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLUE_EARTH_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLUE_EARTH_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLUE_EARTH_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIGHLAND_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIGHLAND_COUNTY_OH", - "description": null, - "label": "HIGHLAND COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIGHLAND_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIGHLAND_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIGHLAND_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIGHLAND_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIGHLAND_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIGHLAND_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIGHLAND_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIGHLAND_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_IL", - "description": null, - "label": "CASS COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROOSEVELT_COUNTY_NM": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROOSEVELT_COUNTY_NM", - "description": null, - "label": "ROOSEVELT COUNTY NM", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROOSEVELT_COUNTY_NM.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROOSEVELT_COUNTY_NM.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROOSEVELT_COUNTY_NM.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROOSEVELT_COUNTY_NM.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROOSEVELT_COUNTY_NM.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROOSEVELT_COUNTY_NM.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROOSEVELT_COUNTY_NM.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROOSEVELT_COUNTY_NM.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINERAL_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINERAL_COUNTY_WV", - "description": null, - "label": "MINERAL COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINERAL_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINERAL_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINERAL_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINERAL_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINERAL_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINERAL_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINERAL_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINERAL_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.THOMAS_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.THOMAS_COUNTY_KS", - "description": null, - "label": "THOMAS COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.THOMAS_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.THOMAS_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.THOMAS_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.THOMAS_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.THOMAS_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.THOMAS_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.THOMAS_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.THOMAS_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMNER_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMNER_COUNTY_TN", - "description": null, - "label": "SUMNER COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMNER_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMNER_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMNER_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMNER_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMNER_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMNER_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMNER_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMNER_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_WY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_WY", - "description": null, - "label": "JOHNSON COUNTY WY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_WY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_WY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_WY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_WY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_WY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_WY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_WY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_WY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOS_ANGELES_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOS_ANGELES_COUNTY_CA", - "description": null, - "label": "LOS ANGELES COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOS_ANGELES_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOS_ANGELES_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOS_ANGELES_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOS_ANGELES_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOS_ANGELES_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOS_ANGELES_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOS_ANGELES_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOS_ANGELES_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKENZIE_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKENZIE_COUNTY_ND", - "description": null, - "label": "MCKENZIE COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKENZIE_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKENZIE_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKENZIE_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKENZIE_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKENZIE_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKENZIE_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKENZIE_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKENZIE_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIDALGO_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIDALGO_COUNTY_TX", - "description": null, - "label": "HIDALGO COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIDALGO_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIDALGO_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIDALGO_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIDALGO_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIDALGO_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIDALGO_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIDALGO_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIDALGO_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOLORES_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOLORES_COUNTY_CO", - "description": null, - "label": "DOLORES COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOLORES_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOLORES_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOLORES_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOLORES_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOLORES_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOLORES_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOLORES_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOLORES_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSSELL_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSSELL_COUNTY_VA", - "description": null, - "label": "RUSSELL COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSSELL_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSSELL_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSSELL_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSSELL_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSSELL_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSSELL_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSSELL_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSSELL_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_CITY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_CITY_VA", - "description": null, - "label": "RICHMOND CITY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_CITY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_CITY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_CITY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_CITY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_CITY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_CITY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_CITY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_CITY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUNDY_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUNDY_COUNTY_NE", - "description": null, - "label": "DUNDY COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUNDY_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUNDY_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUNDY_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUNDY_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUNDY_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUNDY_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUNDY_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUNDY_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TELFAIR_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TELFAIR_COUNTY_GA", - "description": null, - "label": "TELFAIR COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TELFAIR_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TELFAIR_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TELFAIR_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TELFAIR_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TELFAIR_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TELFAIR_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TELFAIR_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TELFAIR_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREER_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREER_COUNTY_OK", - "description": null, - "label": "GREER COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREER_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREER_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREER_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREER_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREER_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREER_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREER_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREER_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUAYNABO_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUAYNABO_MUNICIPIO_PR", - "description": null, - "label": "GUAYNABO MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUAYNABO_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUAYNABO_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUAYNABO_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUAYNABO_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUAYNABO_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUAYNABO_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUAYNABO_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUAYNABO_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_TN", - "description": null, - "label": "CARROLL COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHIPPEWA_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHIPPEWA_COUNTY_WI", - "description": null, - "label": "CHIPPEWA COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHIPPEWA_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHIPPEWA_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHIPPEWA_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHIPPEWA_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHIPPEWA_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHIPPEWA_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHIPPEWA_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHIPPEWA_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COVINGTON_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COVINGTON_COUNTY_MS", - "description": null, - "label": "COVINGTON COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COVINGTON_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COVINGTON_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COVINGTON_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COVINGTON_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COVINGTON_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COVINGTON_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COVINGTON_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COVINGTON_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.APPANOOSE_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.APPANOOSE_COUNTY_IA", - "description": null, - "label": "APPANOOSE COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.APPANOOSE_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.APPANOOSE_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.APPANOOSE_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.APPANOOSE_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.APPANOOSE_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.APPANOOSE_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.APPANOOSE_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.APPANOOSE_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_MO", - "description": null, - "label": "MADISON COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARENGO_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARENGO_COUNTY_AL", - "description": null, - "label": "MARENGO COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARENGO_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARENGO_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARENGO_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARENGO_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARENGO_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARENGO_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARENGO_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARENGO_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_MO", - "description": null, - "label": "CLARK COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_COUNTY_VA", - "description": null, - "label": "RICHMOND COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDWARDS_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDWARDS_COUNTY_KS", - "description": null, - "label": "EDWARDS COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDWARDS_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDWARDS_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDWARDS_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDWARDS_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDWARDS_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDWARDS_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDWARDS_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDWARDS_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_WV", - "description": null, - "label": "MORGAN COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARALSON_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARALSON_COUNTY_GA", - "description": null, - "label": "HARALSON COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARALSON_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARALSON_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARALSON_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARALSON_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARALSON_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARALSON_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARALSON_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARALSON_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_WY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_WY", - "description": null, - "label": "LINCOLN COUNTY WY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_WY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_WY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_WY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_WY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_WY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_WY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_WY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_WY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_OH", - "description": null, - "label": "HARDIN COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAVES_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAVES_COUNTY_KY", - "description": null, - "label": "GRAVES COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAVES_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAVES_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAVES_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAVES_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAVES_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAVES_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAVES_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAVES_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CHARLES_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CHARLES_COUNTY_MO", - "description": null, - "label": "ST CHARLES COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CHARLES_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CHARLES_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CHARLES_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CHARLES_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CHARLES_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CHARLES_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CHARLES_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CHARLES_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_OH", - "description": null, - "label": "WASHINGTON COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIG_HORN_COUNTY_WY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIG_HORN_COUNTY_WY", - "description": null, - "label": "BIG HORN COUNTY WY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIG_HORN_COUNTY_WY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIG_HORN_COUNTY_WY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIG_HORN_COUNTY_WY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIG_HORN_COUNTY_WY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIG_HORN_COUNTY_WY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIG_HORN_COUNTY_WY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIG_HORN_COUNTY_WY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIG_HORN_COUNTY_WY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOPER_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOPER_COUNTY_MO", - "description": null, - "label": "COOPER COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOPER_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOPER_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOPER_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOPER_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOPER_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOPER_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOPER_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOPER_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERSHING_COUNTY_NV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERSHING_COUNTY_NV", - "description": null, - "label": "PERSHING COUNTY NV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERSHING_COUNTY_NV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERSHING_COUNTY_NV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERSHING_COUNTY_NV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERSHING_COUNTY_NV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERSHING_COUNTY_NV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERSHING_COUNTY_NV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERSHING_COUNTY_NV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERSHING_COUNTY_NV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARKANSAS_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARKANSAS_COUNTY_AR", - "description": null, - "label": "ARKANSAS COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARKANSAS_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARKANSAS_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARKANSAS_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARKANSAS_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARKANSAS_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARKANSAS_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARKANSAS_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARKANSAS_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLEAN_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLEAN_COUNTY_ND", - "description": null, - "label": "MCLEAN COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLEAN_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLEAN_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLEAN_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLEAN_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLEAN_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLEAN_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLEAN_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLEAN_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROSEAU_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROSEAU_COUNTY_MN", - "description": null, - "label": "ROSEAU COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROSEAU_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROSEAU_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROSEAU_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROSEAU_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROSEAU_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROSEAU_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROSEAU_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROSEAU_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASCO_COUNTY_OR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASCO_COUNTY_OR", - "description": null, - "label": "WASCO COUNTY OR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASCO_COUNTY_OR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASCO_COUNTY_OR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASCO_COUNTY_OR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASCO_COUNTY_OR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASCO_COUNTY_OR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASCO_COUNTY_OR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASCO_COUNTY_OR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASCO_COUNTY_OR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROANOKE_CITY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROANOKE_CITY_VA", - "description": null, - "label": "ROANOKE CITY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROANOKE_CITY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROANOKE_CITY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROANOKE_CITY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROANOKE_CITY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROANOKE_CITY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROANOKE_CITY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROANOKE_CITY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROANOKE_CITY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMOILLE_COUNTY_VT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMOILLE_COUNTY_VT", - "description": null, - "label": "LAMOILLE COUNTY VT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMOILLE_COUNTY_VT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMOILLE_COUNTY_VT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMOILLE_COUNTY_VT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMOILLE_COUNTY_VT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMOILLE_COUNTY_VT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMOILLE_COUNTY_VT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMOILLE_COUNTY_VT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMOILLE_COUNTY_VT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITLEY_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITLEY_COUNTY_IN", - "description": null, - "label": "WHITLEY COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITLEY_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITLEY_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITLEY_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITLEY_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITLEY_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITLEY_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITLEY_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITLEY_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_KY", - "description": null, - "label": "MONTGOMERY COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLSWORTH_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLSWORTH_COUNTY_KS", - "description": null, - "label": "ELLSWORTH COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLSWORTH_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLSWORTH_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLSWORTH_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLSWORTH_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLSWORTH_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLSWORTH_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLSWORTH_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELLSWORTH_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_GA", - "description": null, - "label": "CRAWFORD COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAINE_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAINE_COUNTY_OK", - "description": null, - "label": "BLAINE COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAINE_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAINE_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAINE_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAINE_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAINE_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAINE_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAINE_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAINE_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_IA", - "description": null, - "label": "CLARKE COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_SABA_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_SABA_COUNTY_TX", - "description": null, - "label": "SAN SABA COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_SABA_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_SABA_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_SABA_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_SABA_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_SABA_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_SABA_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_SABA_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_SABA_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANTELOPE_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANTELOPE_COUNTY_NE", - "description": null, - "label": "ANTELOPE COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANTELOPE_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANTELOPE_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANTELOPE_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANTELOPE_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANTELOPE_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANTELOPE_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANTELOPE_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANTELOPE_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_CO", - "description": null, - "label": "LAKE COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AURORA_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AURORA_COUNTY_SD", - "description": null, - "label": "AURORA COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AURORA_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AURORA_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AURORA_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AURORA_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AURORA_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AURORA_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AURORA_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AURORA_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_AL", - "description": null, - "label": "MADISON COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEVENS_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEVENS_COUNTY_KS", - "description": null, - "label": "STEVENS COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEVENS_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEVENS_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEVENS_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEVENS_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEVENS_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEVENS_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEVENS_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEVENS_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEAUGA_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEAUGA_COUNTY_OH", - "description": null, - "label": "GEAUGA COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEAUGA_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEAUGA_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEAUGA_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEAUGA_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEAUGA_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEAUGA_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEAUGA_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEAUGA_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINDHAM_COUNTY_CT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINDHAM_COUNTY_CT", - "description": null, - "label": "WINDHAM COUNTY CT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINDHAM_COUNTY_CT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINDHAM_COUNTY_CT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINDHAM_COUNTY_CT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINDHAM_COUNTY_CT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINDHAM_COUNTY_CT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINDHAM_COUNTY_CT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINDHAM_COUNTY_CT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINDHAM_COUNTY_CT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FISHER_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FISHER_COUNTY_TX", - "description": null, - "label": "FISHER COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FISHER_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FISHER_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FISHER_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FISHER_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FISHER_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FISHER_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FISHER_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FISHER_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_KY", - "description": null, - "label": "MADISON COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_OH", - "description": null, - "label": "BUTLER COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOKINGS_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOKINGS_COUNTY_SD", - "description": null, - "label": "BROOKINGS COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOKINGS_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOKINGS_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOKINGS_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOKINGS_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOKINGS_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOKINGS_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOKINGS_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOKINGS_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHLEY_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHLEY_COUNTY_GA", - "description": null, - "label": "SCHLEY COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHLEY_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHLEY_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHLEY_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHLEY_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHLEY_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHLEY_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHLEY_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHLEY_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TITUS_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TITUS_COUNTY_TX", - "description": null, - "label": "TITUS COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TITUS_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TITUS_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TITUS_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TITUS_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TITUS_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TITUS_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TITUS_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TITUS_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_MS", - "description": null, - "label": "CLARKE COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTEREY_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTEREY_COUNTY_CA", - "description": null, - "label": "MONTEREY COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTEREY_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTEREY_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTEREY_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTEREY_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTEREY_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTEREY_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTEREY_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTEREY_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_TN", - "description": null, - "label": "LAWRENCE COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANATÍ_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANATÍ_MUNICIPIO_PR", - "description": null, - "label": "MANATÍ MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANATÍ_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANATÍ_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANATÍ_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANATÍ_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANATÍ_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANATÍ_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANATÍ_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANATÍ_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_OH", - "description": null, - "label": "HANCOCK COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILCOX_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILCOX_COUNTY_AL", - "description": null, - "label": "WILCOX COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILCOX_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILCOX_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILCOX_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILCOX_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILCOX_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILCOX_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILCOX_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILCOX_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ACADIA_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ACADIA_PARISH_LA", - "description": null, - "label": "ACADIA PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ACADIA_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ACADIA_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ACADIA_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ACADIA_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ACADIA_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ACADIA_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ACADIA_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ACADIA_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STONE_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STONE_COUNTY_MS", - "description": null, - "label": "STONE COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STONE_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STONE_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STONE_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STONE_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STONE_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STONE_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STONE_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STONE_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARMSTRONG_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARMSTRONG_COUNTY_PA", - "description": null, - "label": "ARMSTRONG COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARMSTRONG_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARMSTRONG_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARMSTRONG_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARMSTRONG_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARMSTRONG_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARMSTRONG_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARMSTRONG_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARMSTRONG_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VENANGO_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VENANGO_COUNTY_PA", - "description": null, - "label": "VENANGO COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VENANGO_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VENANGO_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VENANGO_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VENANGO_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VENANGO_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VENANGO_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VENANGO_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VENANGO_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CODINGTON_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CODINGTON_COUNTY_SD", - "description": null, - "label": "CODINGTON COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CODINGTON_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CODINGTON_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CODINGTON_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CODINGTON_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CODINGTON_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CODINGTON_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CODINGTON_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CODINGTON_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESCAMBIA_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESCAMBIA_COUNTY_FL", - "description": null, - "label": "ESCAMBIA COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESCAMBIA_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESCAMBIA_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESCAMBIA_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESCAMBIA_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESCAMBIA_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESCAMBIA_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESCAMBIA_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESCAMBIA_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSTON_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSTON_COUNTY_OK", - "description": null, - "label": "JOHNSTON COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSTON_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSTON_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSTON_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSTON_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSTON_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSTON_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSTON_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSTON_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BREATHITT_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BREATHITT_COUNTY_KY", - "description": null, - "label": "BREATHITT COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BREATHITT_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BREATHITT_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BREATHITT_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BREATHITT_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BREATHITT_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BREATHITT_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BREATHITT_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BREATHITT_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHWEST_ARCTIC_BOROUGH_AK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHWEST_ARCTIC_BOROUGH_AK", - "description": null, - "label": "NORTHWEST ARCTIC BOROUGH AK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHWEST_ARCTIC_BOROUGH_AK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHWEST_ARCTIC_BOROUGH_AK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHWEST_ARCTIC_BOROUGH_AK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHWEST_ARCTIC_BOROUGH_AK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHWEST_ARCTIC_BOROUGH_AK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHWEST_ARCTIC_BOROUGH_AK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHWEST_ARCTIC_BOROUGH_AK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHWEST_ARCTIC_BOROUGH_AK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TERRY_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TERRY_COUNTY_TX", - "description": null, - "label": "TERRY COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TERRY_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TERRY_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TERRY_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TERRY_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TERRY_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TERRY_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TERRY_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TERRY_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_GA", - "description": null, - "label": "JACKSON COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEMINOLE_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEMINOLE_COUNTY_GA", - "description": null, - "label": "SEMINOLE COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEMINOLE_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEMINOLE_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEMINOLE_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEMINOLE_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEMINOLE_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEMINOLE_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEMINOLE_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEMINOLE_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TILLMAN_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TILLMAN_COUNTY_OK", - "description": null, - "label": "TILLMAN COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TILLMAN_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TILLMAN_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TILLMAN_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TILLMAN_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TILLMAN_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TILLMAN_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TILLMAN_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TILLMAN_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARK_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARK_COUNTY_CO", - "description": null, - "label": "PARK COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARK_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARK_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARK_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARK_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARK_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARK_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARK_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARK_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_PA", - "description": null, - "label": "WARREN COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCHENRY_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCHENRY_COUNTY_ND", - "description": null, - "label": "MCHENRY COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCHENRY_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCHENRY_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCHENRY_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCHENRY_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCHENRY_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCHENRY_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCHENRY_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCHENRY_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILBARGER_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILBARGER_COUNTY_TX", - "description": null, - "label": "WILBARGER COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILBARGER_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILBARGER_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILBARGER_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILBARGER_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILBARGER_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILBARGER_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILBARGER_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILBARGER_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUYAHOGA_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUYAHOGA_COUNTY_OH", - "description": null, - "label": "CUYAHOGA COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUYAHOGA_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUYAHOGA_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUYAHOGA_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUYAHOGA_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUYAHOGA_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUYAHOGA_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUYAHOGA_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUYAHOGA_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVE_OAK_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVE_OAK_COUNTY_TX", - "description": null, - "label": "LIVE OAK COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVE_OAK_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVE_OAK_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVE_OAK_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVE_OAK_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVE_OAK_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVE_OAK_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVE_OAK_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVE_OAK_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOYD_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOYD_COUNTY_KY", - "description": null, - "label": "BOYD COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOYD_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOYD_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOYD_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOYD_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOYD_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOYD_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOYD_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOYD_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILCOX_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILCOX_COUNTY_GA", - "description": null, - "label": "WILCOX COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILCOX_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILCOX_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILCOX_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILCOX_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILCOX_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILCOX_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILCOX_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILCOX_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELTA_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELTA_COUNTY_MI", - "description": null, - "label": "DELTA COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELTA_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELTA_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELTA_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELTA_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELTA_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELTA_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELTA_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELTA_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_MI", - "description": null, - "label": "WAYNE COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_COUNTY_MN", - "description": null, - "label": "ROCK COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RENVILLE_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RENVILLE_COUNTY_MN", - "description": null, - "label": "RENVILLE COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RENVILLE_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RENVILLE_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RENVILLE_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RENVILLE_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RENVILLE_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RENVILLE_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RENVILLE_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RENVILLE_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANCASTER_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANCASTER_COUNTY_PA", - "description": null, - "label": "LANCASTER COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANCASTER_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANCASTER_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANCASTER_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANCASTER_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANCASTER_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANCASTER_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANCASTER_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANCASTER_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LICKING_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LICKING_COUNTY_OH", - "description": null, - "label": "LICKING COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LICKING_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LICKING_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LICKING_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LICKING_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LICKING_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LICKING_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LICKING_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LICKING_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_IN", - "description": null, - "label": "RANDOLPH COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HETTINGER_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HETTINGER_COUNTY_ND", - "description": null, - "label": "HETTINGER COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HETTINGER_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HETTINGER_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HETTINGER_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HETTINGER_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HETTINGER_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HETTINGER_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HETTINGER_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HETTINGER_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARMSTRONG_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARMSTRONG_COUNTY_TX", - "description": null, - "label": "ARMSTRONG COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARMSTRONG_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARMSTRONG_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARMSTRONG_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARMSTRONG_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARMSTRONG_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARMSTRONG_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARMSTRONG_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARMSTRONG_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_IN", - "description": null, - "label": "GREENE COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOSSUTH_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOSSUTH_COUNTY_MN", - "description": null, - "label": "KOSSUTH COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOSSUTH_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOSSUTH_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOSSUTH_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOSSUTH_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOSSUTH_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOSSUTH_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOSSUTH_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOSSUTH_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_GA", - "description": null, - "label": "DECATUR COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANPETE_COUNTY_UT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANPETE_COUNTY_UT", - "description": null, - "label": "SANPETE COUNTY UT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANPETE_COUNTY_UT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANPETE_COUNTY_UT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANPETE_COUNTY_UT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANPETE_COUNTY_UT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANPETE_COUNTY_UT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANPETE_COUNTY_UT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANPETE_COUNTY_UT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANPETE_COUNTY_UT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENARD_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENARD_COUNTY_IL", - "description": null, - "label": "MENARD COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENARD_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENARD_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENARD_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENARD_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENARD_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENARD_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENARD_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENARD_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_OR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_OR", - "description": null, - "label": "LAKE COUNTY OR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_OR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_OR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_OR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_OR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_OR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_OR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_OR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_OR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_KY", - "description": null, - "label": "CARROLL COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEER_LODGE_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEER_LODGE_COUNTY_MT", - "description": null, - "label": "DEER LODGE COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEER_LODGE_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEER_LODGE_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEER_LODGE_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEER_LODGE_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEER_LODGE_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEER_LODGE_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEER_LODGE_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEER_LODGE_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUVAL_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUVAL_COUNTY_TX", - "description": null, - "label": "DUVAL COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUVAL_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUVAL_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUVAL_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUVAL_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUVAL_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUVAL_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUVAL_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUVAL_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_LUIS_OBISPO_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_LUIS_OBISPO_COUNTY_CA", - "description": null, - "label": "SAN LUIS OBISPO COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_LUIS_OBISPO_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_LUIS_OBISPO_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_LUIS_OBISPO_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_LUIS_OBISPO_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_LUIS_OBISPO_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_LUIS_OBISPO_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_LUIS_OBISPO_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_LUIS_OBISPO_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_TX", - "description": null, - "label": "CLAY COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DES_MOINES_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DES_MOINES_COUNTY_IA", - "description": null, - "label": "DES MOINES COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DES_MOINES_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DES_MOINES_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DES_MOINES_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DES_MOINES_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DES_MOINES_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DES_MOINES_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DES_MOINES_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DES_MOINES_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_KY", - "description": null, - "label": "MERCER COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOURBON_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOURBON_COUNTY_KY", - "description": null, - "label": "BOURBON COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOURBON_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOURBON_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOURBON_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOURBON_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOURBON_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOURBON_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOURBON_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOURBON_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_CO", - "description": null, - "label": "LOGAN COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_TX", - "description": null, - "label": "KNOX COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAL_VERDE_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAL_VERDE_COUNTY_TX", - "description": null, - "label": "VAL VERDE COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAL_VERDE_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAL_VERDE_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAL_VERDE_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAL_VERDE_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAL_VERDE_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAL_VERDE_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAL_VERDE_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAL_VERDE_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEFIANCE_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEFIANCE_COUNTY_OH", - "description": null, - "label": "DEFIANCE COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEFIANCE_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEFIANCE_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEFIANCE_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEFIANCE_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEFIANCE_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEFIANCE_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEFIANCE_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEFIANCE_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAUDERDALE_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAUDERDALE_COUNTY_TN", - "description": null, - "label": "LAUDERDALE COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAUDERDALE_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAUDERDALE_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAUDERDALE_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAUDERDALE_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAUDERDALE_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAUDERDALE_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAUDERDALE_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAUDERDALE_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEAR_CREEK_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEAR_CREEK_COUNTY_CO", - "description": null, - "label": "CLEAR CREEK COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEAR_CREEK_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEAR_CREEK_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEAR_CREEK_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEAR_CREEK_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEAR_CREEK_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEAR_CREEK_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEAR_CREEK_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEAR_CREEK_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCLAIN_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCLAIN_COUNTY_OK", - "description": null, - "label": "MCCLAIN COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCLAIN_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCLAIN_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCLAIN_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCLAIN_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCLAIN_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCLAIN_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCLAIN_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCLAIN_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHUYLER_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHUYLER_COUNTY_NY", - "description": null, - "label": "SCHUYLER COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHUYLER_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHUYLER_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHUYLER_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHUYLER_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHUYLER_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHUYLER_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHUYLER_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHUYLER_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_OF_THE_WOODS_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_OF_THE_WOODS_COUNTY_MN", - "description": null, - "label": "LAKE OF THE WOODS COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_OF_THE_WOODS_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_OF_THE_WOODS_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_OF_THE_WOODS_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_OF_THE_WOODS_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_OF_THE_WOODS_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_OF_THE_WOODS_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_OF_THE_WOODS_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_OF_THE_WOODS_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAVACA_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAVACA_COUNTY_TX", - "description": null, - "label": "LAVACA COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAVACA_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAVACA_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAVACA_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAVACA_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAVACA_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAVACA_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAVACA_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAVACA_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SKAMANIA_COUNTY_WA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SKAMANIA_COUNTY_WA", - "description": null, - "label": "SKAMANIA COUNTY WA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SKAMANIA_COUNTY_WA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SKAMANIA_COUNTY_WA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SKAMANIA_COUNTY_WA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SKAMANIA_COUNTY_WA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SKAMANIA_COUNTY_WA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SKAMANIA_COUNTY_WA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SKAMANIA_COUNTY_WA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SKAMANIA_COUNTY_WA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARFORD_COUNTY_MD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARFORD_COUNTY_MD", - "description": null, - "label": "HARFORD COUNTY MD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARFORD_COUNTY_MD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARFORD_COUNTY_MD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARFORD_COUNTY_MD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARFORD_COUNTY_MD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARFORD_COUNTY_MD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARFORD_COUNTY_MD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARFORD_COUNTY_MD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARFORD_COUNTY_MD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_AR", - "description": null, - "label": "WHITE COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_SC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_SC", - "description": null, - "label": "LEE COUNTY SC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_SC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_SC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_SC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_SC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_SC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_SC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_SC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_SC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_KS", - "description": null, - "label": "BROWN COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_IA", - "description": null, - "label": "JASPER COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGMAN_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGMAN_COUNTY_KS", - "description": null, - "label": "KINGMAN COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGMAN_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGMAN_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGMAN_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGMAN_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGMAN_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGMAN_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGMAN_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGMAN_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SKAGIT_COUNTY_WA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SKAGIT_COUNTY_WA", - "description": null, - "label": "SKAGIT COUNTY WA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SKAGIT_COUNTY_WA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SKAGIT_COUNTY_WA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SKAGIT_COUNTY_WA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SKAGIT_COUNTY_WA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SKAGIT_COUNTY_WA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SKAGIT_COUNTY_WA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SKAGIT_COUNTY_WA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SKAGIT_COUNTY_WA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODRUFF_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODRUFF_COUNTY_AR", - "description": null, - "label": "WOODRUFF COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODRUFF_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODRUFF_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODRUFF_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODRUFF_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODRUFF_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODRUFF_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODRUFF_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODRUFF_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TEXAS_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TEXAS_COUNTY_OK", - "description": null, - "label": "TEXAS COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TEXAS_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TEXAS_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TEXAS_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TEXAS_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TEXAS_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TEXAS_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TEXAS_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TEXAS_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_KS", - "description": null, - "label": "SHERMAN COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERMAN_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AGUAS_BUENAS_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AGUAS_BUENAS_MUNICIPIO_PR", - "description": null, - "label": "AGUAS BUENAS MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AGUAS_BUENAS_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AGUAS_BUENAS_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AGUAS_BUENAS_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AGUAS_BUENAS_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AGUAS_BUENAS_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AGUAS_BUENAS_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AGUAS_BUENAS_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AGUAS_BUENAS_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OZARK_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OZARK_COUNTY_MO", - "description": null, - "label": "OZARK COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OZARK_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OZARK_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OZARK_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OZARK_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OZARK_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OZARK_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OZARK_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OZARK_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUEBLO_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUEBLO_COUNTY_CO", - "description": null, - "label": "PUEBLO COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUEBLO_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUEBLO_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUEBLO_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUEBLO_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUEBLO_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUEBLO_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUEBLO_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUEBLO_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINCH_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINCH_COUNTY_GA", - "description": null, - "label": "CLINCH COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINCH_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINCH_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINCH_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINCH_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINCH_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINCH_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINCH_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINCH_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NANTUCKET_COUNTY_MA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NANTUCKET_COUNTY_MA", - "description": null, - "label": "NANTUCKET COUNTY MA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NANTUCKET_COUNTY_MA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NANTUCKET_COUNTY_MA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NANTUCKET_COUNTY_MA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NANTUCKET_COUNTY_MA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NANTUCKET_COUNTY_MA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NANTUCKET_COUNTY_MA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NANTUCKET_COUNTY_MA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NANTUCKET_COUNTY_MA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_OH", - "description": null, - "label": "MORGAN COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HASKELL_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HASKELL_COUNTY_TX", - "description": null, - "label": "HASKELL COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HASKELL_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HASKELL_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HASKELL_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HASKELL_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HASKELL_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HASKELL_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HASKELL_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HASKELL_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_PARISH_LA", - "description": null, - "label": "UNION PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENWOOD_COUNTY_SC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENWOOD_COUNTY_SC", - "description": null, - "label": "GREENWOOD COUNTY SC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENWOOD_COUNTY_SC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENWOOD_COUNTY_SC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENWOOD_COUNTY_SC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENWOOD_COUNTY_SC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENWOOD_COUNTY_SC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENWOOD_COUNTY_SC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENWOOD_COUNTY_SC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENWOOD_COUNTY_SC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDWARDS_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDWARDS_COUNTY_TX", - "description": null, - "label": "EDWARDS COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDWARDS_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDWARDS_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDWARDS_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDWARDS_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDWARDS_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDWARDS_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDWARDS_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDWARDS_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_KY", - "description": null, - "label": "BUTLER COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DREW_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DREW_COUNTY_AR", - "description": null, - "label": "DREW COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DREW_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DREW_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DREW_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DREW_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DREW_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DREW_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DREW_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DREW_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SABINE_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SABINE_PARISH_LA", - "description": null, - "label": "SABINE PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SABINE_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SABINE_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SABINE_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SABINE_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SABINE_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SABINE_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SABINE_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SABINE_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_MD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_MD", - "description": null, - "label": "HOWARD COUNTY MD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_MD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_MD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_MD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_MD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_MD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_MD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_MD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_MD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_IL", - "description": null, - "label": "CUMBERLAND COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_WV", - "description": null, - "label": "MERCER COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAYTON_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAYTON_COUNTY_IA", - "description": null, - "label": "CLAYTON COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAYTON_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAYTON_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAYTON_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAYTON_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAYTON_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAYTON_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAYTON_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAYTON_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_GA", - "description": null, - "label": "LEE COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEXANDRIA_CITY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEXANDRIA_CITY_VA", - "description": null, - "label": "ALEXANDRIA CITY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEXANDRIA_CITY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEXANDRIA_CITY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEXANDRIA_CITY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEXANDRIA_CITY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEXANDRIA_CITY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEXANDRIA_CITY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEXANDRIA_CITY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEXANDRIA_CITY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_ZANDT_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_ZANDT_COUNTY_TX", - "description": null, - "label": "VAN ZANDT COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_ZANDT_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_ZANDT_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_ZANDT_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_ZANDT_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_ZANDT_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_ZANDT_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_ZANDT_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_ZANDT_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAUKESHA_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAUKESHA_COUNTY_WI", - "description": null, - "label": "WAUKESHA COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAUKESHA_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAUKESHA_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAUKESHA_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAUKESHA_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAUKESHA_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAUKESHA_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAUKESHA_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAUKESHA_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_TN", - "description": null, - "label": "WASHINGTON COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_PATRICIO_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_PATRICIO_COUNTY_TX", - "description": null, - "label": "SAN PATRICIO COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_PATRICIO_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_PATRICIO_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_PATRICIO_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_PATRICIO_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_PATRICIO_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_PATRICIO_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_PATRICIO_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_PATRICIO_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAXTER_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAXTER_COUNTY_AR", - "description": null, - "label": "BAXTER COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAXTER_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAXTER_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAXTER_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAXTER_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAXTER_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAXTER_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAXTER_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAXTER_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SARPY_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SARPY_COUNTY_NE", - "description": null, - "label": "SARPY COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SARPY_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SARPY_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SARPY_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SARPY_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SARPY_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SARPY_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SARPY_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SARPY_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_WV", - "description": null, - "label": "WAYNE COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_AR", - "description": null, - "label": "PIKE COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMPHREYS_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMPHREYS_COUNTY_MS", - "description": null, - "label": "HUMPHREYS COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMPHREYS_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMPHREYS_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMPHREYS_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMPHREYS_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMPHREYS_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMPHREYS_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMPHREYS_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUMPHREYS_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLATTE_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLATTE_COUNTY_NE", - "description": null, - "label": "PLATTE COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLATTE_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLATTE_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLATTE_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLATTE_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLATTE_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLATTE_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLATTE_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLATTE_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAURENS_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAURENS_COUNTY_GA", - "description": null, - "label": "LAURENS COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAURENS_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAURENS_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAURENS_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAURENS_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAURENS_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAURENS_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAURENS_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAURENS_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.THURSTON_COUNTY_WA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.THURSTON_COUNTY_WA", - "description": null, - "label": "THURSTON COUNTY WA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.THURSTON_COUNTY_WA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.THURSTON_COUNTY_WA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.THURSTON_COUNTY_WA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.THURSTON_COUNTY_WA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.THURSTON_COUNTY_WA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.THURSTON_COUNTY_WA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.THURSTON_COUNTY_WA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.THURSTON_COUNTY_WA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_IL", - "description": null, - "label": "LIVINGSTON COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_IL", - "description": null, - "label": "CARROLL COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_IN", - "description": null, - "label": "MARSHALL COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LUCIE_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LUCIE_COUNTY_FL", - "description": null, - "label": "ST LUCIE COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LUCIE_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LUCIE_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LUCIE_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LUCIE_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LUCIE_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LUCIE_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LUCIE_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LUCIE_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELTA_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELTA_COUNTY_TX", - "description": null, - "label": "DELTA COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELTA_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELTA_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELTA_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELTA_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELTA_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELTA_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELTA_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELTA_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOARD_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOARD_COUNTY_TX", - "description": null, - "label": "FOARD COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOARD_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOARD_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOARD_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOARD_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOARD_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOARD_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOARD_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOARD_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DORCHESTER_COUNTY_SC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DORCHESTER_COUNTY_SC", - "description": null, - "label": "DORCHESTER COUNTY SC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DORCHESTER_COUNTY_SC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DORCHESTER_COUNTY_SC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DORCHESTER_COUNTY_SC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DORCHESTER_COUNTY_SC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DORCHESTER_COUNTY_SC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DORCHESTER_COUNTY_SC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DORCHESTER_COUNTY_SC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DORCHESTER_COUNTY_SC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IZARD_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IZARD_COUNTY_AR", - "description": null, - "label": "IZARD COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IZARD_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IZARD_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IZARD_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IZARD_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IZARD_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IZARD_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IZARD_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IZARD_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSCOGEE_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSCOGEE_COUNTY_GA", - "description": null, - "label": "MUSCOGEE COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSCOGEE_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSCOGEE_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSCOGEE_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSCOGEE_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSCOGEE_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSCOGEE_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSCOGEE_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSCOGEE_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_TN", - "description": null, - "label": "LEE COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALE_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALE_COUNTY_TX", - "description": null, - "label": "HALE COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALE_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALE_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALE_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALE_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALE_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALE_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALE_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HALE_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_PA", - "description": null, - "label": "FRANKLIN COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEMAHA_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEMAHA_COUNTY_NE", - "description": null, - "label": "NEMAHA COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEMAHA_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEMAHA_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEMAHA_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEMAHA_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEMAHA_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEMAHA_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEMAHA_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEMAHA_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_COUNTY_WI", - "description": null, - "label": "ROCK COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREMONT_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREMONT_COUNTY_IA", - "description": null, - "label": "FREMONT COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREMONT_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREMONT_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREMONT_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREMONT_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREMONT_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREMONT_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREMONT_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREMONT_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_ND", - "description": null, - "label": "GRANT COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAGONER_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAGONER_COUNTY_OK", - "description": null, - "label": "WAGONER COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAGONER_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAGONER_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAGONER_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAGONER_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAGONER_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAGONER_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAGONER_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAGONER_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_OH", - "description": null, - "label": "FAYETTE COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEARL_RIVER_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEARL_RIVER_COUNTY_MS", - "description": null, - "label": "PEARL RIVER COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEARL_RIVER_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEARL_RIVER_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEARL_RIVER_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEARL_RIVER_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEARL_RIVER_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEARL_RIVER_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEARL_RIVER_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEARL_RIVER_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ITASCA_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ITASCA_COUNTY_MN", - "description": null, - "label": "ITASCA COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ITASCA_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ITASCA_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ITASCA_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ITASCA_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ITASCA_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ITASCA_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ITASCA_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ITASCA_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEND_OREILLE_COUNTY_ID": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEND_OREILLE_COUNTY_ID", - "description": null, - "label": "PEND OREILLE COUNTY ID", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEND_OREILLE_COUNTY_ID.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEND_OREILLE_COUNTY_ID.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEND_OREILLE_COUNTY_ID.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEND_OREILLE_COUNTY_ID.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEND_OREILLE_COUNTY_ID.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEND_OREILLE_COUNTY_ID.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEND_OREILLE_COUNTY_ID.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEND_OREILLE_COUNTY_ID.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_MO", - "description": null, - "label": "LAFAYETTE COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAUDERDALE_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAUDERDALE_COUNTY_AL", - "description": null, - "label": "LAUDERDALE COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAUDERDALE_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAUDERDALE_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAUDERDALE_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAUDERDALE_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAUDERDALE_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAUDERDALE_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAUDERDALE_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAUDERDALE_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_MN", - "description": null, - "label": "SCOTT COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEORGE_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEORGE_COUNTY_MS", - "description": null, - "label": "GEORGE COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEORGE_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEORGE_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEORGE_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEORGE_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEORGE_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEORGE_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEORGE_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEORGE_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIS_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIS_COUNTY_IA", - "description": null, - "label": "DAVIS COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIS_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIS_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIS_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIS_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIS_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIS_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIS_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIS_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLEOD_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLEOD_COUNTY_MN", - "description": null, - "label": "MCLEOD COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLEOD_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLEOD_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLEOD_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLEOD_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLEOD_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLEOD_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLEOD_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLEOD_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HERKIMER_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HERKIMER_COUNTY_NY", - "description": null, - "label": "HERKIMER COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HERKIMER_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HERKIMER_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HERKIMER_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HERKIMER_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HERKIMER_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HERKIMER_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HERKIMER_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HERKIMER_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_WV", - "description": null, - "label": "MONROE COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUDSON_COUNTY_NJ": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUDSON_COUNTY_NJ", - "description": null, - "label": "HUDSON COUNTY NJ", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUDSON_COUNTY_NJ.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUDSON_COUNTY_NJ.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUDSON_COUNTY_NJ.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUDSON_COUNTY_NJ.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUDSON_COUNTY_NJ.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUDSON_COUNTY_NJ.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUDSON_COUNTY_NJ.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUDSON_COUNTY_NJ.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_TX", - "description": null, - "label": "MARTIN COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_MT", - "description": null, - "label": "SHERIDAN COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_MA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_MA", - "description": null, - "label": "FRANKLIN COUNTY MA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_MA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_MA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_MA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_MA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_MA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_MA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_MA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_MA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_WI", - "description": null, - "label": "POLK COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_MO", - "description": null, - "label": "CASS COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_AL", - "description": null, - "label": "WASHINGTON COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LARAMIE_COUNTY_WY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LARAMIE_COUNTY_WY", - "description": null, - "label": "LARAMIE COUNTY WY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LARAMIE_COUNTY_WY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LARAMIE_COUNTY_WY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LARAMIE_COUNTY_WY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LARAMIE_COUNTY_WY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LARAMIE_COUNTY_WY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LARAMIE_COUNTY_WY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LARAMIE_COUNTY_WY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LARAMIE_COUNTY_WY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_IN", - "description": null, - "label": "HANCOCK COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_ND", - "description": null, - "label": "CASS COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPPAH_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPPAH_COUNTY_MS", - "description": null, - "label": "TIPPAH COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPPAH_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPPAH_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPPAH_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPPAH_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPPAH_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPPAH_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPPAH_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPPAH_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRULE_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRULE_COUNTY_SD", - "description": null, - "label": "BRULE COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRULE_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRULE_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRULE_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRULE_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRULE_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRULE_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRULE_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRULE_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAIGHEAD_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAIGHEAD_COUNTY_AR", - "description": null, - "label": "CRAIGHEAD COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAIGHEAD_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAIGHEAD_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAIGHEAD_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAIGHEAD_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAIGHEAD_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAIGHEAD_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAIGHEAD_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAIGHEAD_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGS_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGS_COUNTY_NY", - "description": null, - "label": "KINGS COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGS_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGS_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGS_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGS_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGS_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGS_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGS_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KINGS_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_IA", - "description": null, - "label": "HOWARD COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_IL", - "description": null, - "label": "FULTON COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FERRY_COUNTY_WA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FERRY_COUNTY_WA", - "description": null, - "label": "FERRY COUNTY WA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FERRY_COUNTY_WA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FERRY_COUNTY_WA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FERRY_COUNTY_WA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FERRY_COUNTY_WA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FERRY_COUNTY_WA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FERRY_COUNTY_WA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FERRY_COUNTY_WA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FERRY_COUNTY_WA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROWLEY_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROWLEY_COUNTY_CO", - "description": null, - "label": "CROWLEY COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROWLEY_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROWLEY_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROWLEY_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROWLEY_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROWLEY_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROWLEY_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROWLEY_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROWLEY_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_OH", - "description": null, - "label": "MARION COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TISHOMINGO_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TISHOMINGO_COUNTY_MS", - "description": null, - "label": "TISHOMINGO COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TISHOMINGO_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TISHOMINGO_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TISHOMINGO_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TISHOMINGO_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TISHOMINGO_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TISHOMINGO_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TISHOMINGO_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TISHOMINGO_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARVEY_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARVEY_COUNTY_KS", - "description": null, - "label": "HARVEY COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARVEY_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARVEY_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARVEY_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARVEY_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARVEY_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARVEY_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARVEY_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARVEY_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOGEBIC_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOGEBIC_COUNTY_MI", - "description": null, - "label": "GOGEBIC COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOGEBIC_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOGEBIC_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOGEBIC_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOGEBIC_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOGEBIC_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOGEBIC_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOGEBIC_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOGEBIC_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COAMO_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COAMO_MUNICIPIO_PR", - "description": null, - "label": "COAMO MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COAMO_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COAMO_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COAMO_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COAMO_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COAMO_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COAMO_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COAMO_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COAMO_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_MO", - "description": null, - "label": "LEWIS COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_AL", - "description": null, - "label": "LAWRENCE COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASCADE_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASCADE_COUNTY_MT", - "description": null, - "label": "CASCADE COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASCADE_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASCADE_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASCADE_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASCADE_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASCADE_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASCADE_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASCADE_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASCADE_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUTTON_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUTTON_COUNTY_TX", - "description": null, - "label": "SUTTON COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUTTON_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUTTON_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUTTON_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUTTON_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUTTON_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUTTON_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUTTON_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUTTON_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HICKMAN_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HICKMAN_COUNTY_TN", - "description": null, - "label": "HICKMAN COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HICKMAN_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HICKMAN_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HICKMAN_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HICKMAN_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HICKMAN_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HICKMAN_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HICKMAN_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HICKMAN_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEYA_PAHA_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEYA_PAHA_COUNTY_NE", - "description": null, - "label": "KEYA PAHA COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEYA_PAHA_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEYA_PAHA_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEYA_PAHA_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEYA_PAHA_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEYA_PAHA_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEYA_PAHA_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEYA_PAHA_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEYA_PAHA_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_PA", - "description": null, - "label": "GREENE COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDGEFIELD_COUNTY_SC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDGEFIELD_COUNTY_SC", - "description": null, - "label": "EDGEFIELD COUNTY SC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDGEFIELD_COUNTY_SC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDGEFIELD_COUNTY_SC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDGEFIELD_COUNTY_SC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDGEFIELD_COUNTY_SC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDGEFIELD_COUNTY_SC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDGEFIELD_COUNTY_SC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDGEFIELD_COUNTY_SC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDGEFIELD_COUNTY_SC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROSEBUD_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROSEBUD_COUNTY_MT", - "description": null, - "label": "ROSEBUD COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROSEBUD_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROSEBUD_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROSEBUD_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROSEBUD_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROSEBUD_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROSEBUD_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROSEBUD_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROSEBUD_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARKER_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARKER_COUNTY_TX", - "description": null, - "label": "PARKER COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARKER_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARKER_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARKER_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARKER_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARKER_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARKER_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARKER_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARKER_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_IL", - "description": null, - "label": "FRANKLIN COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YELLOWSTONE_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YELLOWSTONE_COUNTY_MT", - "description": null, - "label": "YELLOWSTONE COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YELLOWSTONE_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YELLOWSTONE_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YELLOWSTONE_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YELLOWSTONE_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YELLOWSTONE_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YELLOWSTONE_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YELLOWSTONE_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YELLOWSTONE_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAULKNER_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAULKNER_COUNTY_AR", - "description": null, - "label": "FAULKNER COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAULKNER_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAULKNER_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAULKNER_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAULKNER_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAULKNER_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAULKNER_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAULKNER_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAULKNER_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_GA", - "description": null, - "label": "WEBSTER COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PITKIN_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PITKIN_COUNTY_CO", - "description": null, - "label": "PITKIN COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PITKIN_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PITKIN_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PITKIN_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PITKIN_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PITKIN_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PITKIN_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PITKIN_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PITKIN_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DISTRICT_OF_COLUMBIA_DC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DISTRICT_OF_COLUMBIA_DC", - "description": null, - "label": "DISTRICT OF COLUMBIA DC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DISTRICT_OF_COLUMBIA_DC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DISTRICT_OF_COLUMBIA_DC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DISTRICT_OF_COLUMBIA_DC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DISTRICT_OF_COLUMBIA_DC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DISTRICT_OF_COLUMBIA_DC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DISTRICT_OF_COLUMBIA_DC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DISTRICT_OF_COLUMBIA_DC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DISTRICT_OF_COLUMBIA_DC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANDIYOHI_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANDIYOHI_COUNTY_MN", - "description": null, - "label": "KANDIYOHI COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANDIYOHI_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANDIYOHI_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANDIYOHI_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANDIYOHI_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANDIYOHI_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANDIYOHI_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANDIYOHI_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANDIYOHI_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROSS_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROSS_COUNTY_AR", - "description": null, - "label": "CROSS COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROSS_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROSS_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROSS_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROSS_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROSS_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROSS_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROSS_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROSS_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEADE_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEADE_COUNTY_KS", - "description": null, - "label": "MEADE COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEADE_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEADE_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEADE_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEADE_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEADE_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEADE_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEADE_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEADE_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSH_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSH_COUNTY_KS", - "description": null, - "label": "RUSH COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSH_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSH_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSH_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSH_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSH_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSH_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSH_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSH_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_AR", - "description": null, - "label": "SALINE COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_KY", - "description": null, - "label": "LIVINGSTON COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIVINGSTON_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SNOHOMISH_COUNTY_WA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SNOHOMISH_COUNTY_WA", - "description": null, - "label": "SNOHOMISH COUNTY WA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SNOHOMISH_COUNTY_WA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SNOHOMISH_COUNTY_WA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SNOHOMISH_COUNTY_WA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SNOHOMISH_COUNTY_WA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SNOHOMISH_COUNTY_WA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SNOHOMISH_COUNTY_WA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SNOHOMISH_COUNTY_WA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SNOHOMISH_COUNTY_WA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILLESPIE_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILLESPIE_COUNTY_TX", - "description": null, - "label": "GILLESPIE COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILLESPIE_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILLESPIE_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILLESPIE_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILLESPIE_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILLESPIE_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILLESPIE_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILLESPIE_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILLESPIE_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_IN", - "description": null, - "label": "CRAWFORD COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCONE_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCONE_COUNTY_MT", - "description": null, - "label": "MCCONE COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCONE_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCONE_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCONE_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCONE_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCONE_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCONE_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCONE_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCONE_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AITKIN_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AITKIN_COUNTY_MN", - "description": null, - "label": "AITKIN COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AITKIN_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AITKIN_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AITKIN_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AITKIN_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AITKIN_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AITKIN_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AITKIN_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AITKIN_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HURON_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HURON_COUNTY_OH", - "description": null, - "label": "HURON COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HURON_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HURON_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HURON_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HURON_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HURON_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HURON_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HURON_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HURON_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCULLOCH_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCULLOCH_COUNTY_TX", - "description": null, - "label": "MCCULLOCH COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCULLOCH_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCULLOCH_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCULLOCH_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCULLOCH_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCULLOCH_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCULLOCH_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCULLOCH_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCCULLOCH_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_MI", - "description": null, - "label": "JACKSON COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_IN", - "description": null, - "label": "PUTNAM COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDOWELL_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDOWELL_COUNTY_VA", - "description": null, - "label": "MCDOWELL COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDOWELL_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDOWELL_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDOWELL_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDOWELL_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDOWELL_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDOWELL_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDOWELL_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDOWELL_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_IL", - "description": null, - "label": "PERRY COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POPE_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POPE_COUNTY_MN", - "description": null, - "label": "POPE COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POPE_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POPE_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POPE_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POPE_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POPE_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POPE_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POPE_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POPE_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKMULGEE_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKMULGEE_COUNTY_OK", - "description": null, - "label": "OKMULGEE COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKMULGEE_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKMULGEE_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKMULGEE_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKMULGEE_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKMULGEE_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKMULGEE_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKMULGEE_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKMULGEE_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIOWA_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIOWA_COUNTY_CO", - "description": null, - "label": "KIOWA COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIOWA_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIOWA_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIOWA_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIOWA_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIOWA_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIOWA_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIOWA_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIOWA_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWER_COUNTY_ID": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWER_COUNTY_ID", - "description": null, - "label": "POWER COUNTY ID", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWER_COUNTY_ID.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWER_COUNTY_ID.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWER_COUNTY_ID.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWER_COUNTY_ID.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWER_COUNTY_ID.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWER_COUNTY_ID.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWER_COUNTY_ID.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWER_COUNTY_ID.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DONIPHAN_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DONIPHAN_COUNTY_KS", - "description": null, - "label": "DONIPHAN COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DONIPHAN_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DONIPHAN_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DONIPHAN_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DONIPHAN_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DONIPHAN_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DONIPHAN_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DONIPHAN_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DONIPHAN_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUDON_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUDON_COUNTY_TN", - "description": null, - "label": "LOUDON COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUDON_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUDON_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUDON_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUDON_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUDON_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUDON_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUDON_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUDON_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMAR_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMAR_COUNTY_MS", - "description": null, - "label": "LAMAR COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMAR_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMAR_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMAR_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMAR_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMAR_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMAR_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMAR_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMAR_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEXAR_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEXAR_COUNTY_TX", - "description": null, - "label": "BEXAR COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEXAR_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEXAR_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEXAR_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEXAR_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEXAR_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEXAR_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEXAR_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEXAR_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_MS", - "description": null, - "label": "JEFFERSON COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAGINAW_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAGINAW_COUNTY_MI", - "description": null, - "label": "SAGINAW COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAGINAW_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAGINAW_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAGINAW_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAGINAW_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAGINAW_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAGINAW_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAGINAW_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAGINAW_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_IA", - "description": null, - "label": "MARION COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELKHART_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELKHART_COUNTY_IN", - "description": null, - "label": "ELKHART COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELKHART_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELKHART_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELKHART_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELKHART_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELKHART_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELKHART_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELKHART_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELKHART_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AIKEN_COUNTY_SC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AIKEN_COUNTY_SC", - "description": null, - "label": "AIKEN COUNTY SC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AIKEN_COUNTY_SC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AIKEN_COUNTY_SC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AIKEN_COUNTY_SC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AIKEN_COUNTY_SC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AIKEN_COUNTY_SC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AIKEN_COUNTY_SC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AIKEN_COUNTY_SC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AIKEN_COUNTY_SC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARTHUR_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARTHUR_COUNTY_NE", - "description": null, - "label": "ARTHUR COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARTHUR_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARTHUR_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARTHUR_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARTHUR_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARTHUR_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARTHUR_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARTHUR_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARTHUR_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ZAPATA_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ZAPATA_COUNTY_TX", - "description": null, - "label": "ZAPATA COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ZAPATA_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ZAPATA_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ZAPATA_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ZAPATA_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ZAPATA_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ZAPATA_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ZAPATA_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ZAPATA_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLY_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLY_COUNTY_SD", - "description": null, - "label": "SULLY COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLY_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLY_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLY_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLY_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLY_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLY_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLY_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SULLY_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESAPEAKE_CITY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESAPEAKE_CITY_VA", - "description": null, - "label": "CHESAPEAKE CITY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESAPEAKE_CITY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESAPEAKE_CITY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESAPEAKE_CITY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESAPEAKE_CITY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESAPEAKE_CITY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESAPEAKE_CITY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESAPEAKE_CITY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESAPEAKE_CITY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALBEMARLE_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALBEMARLE_COUNTY_VA", - "description": null, - "label": "ALBEMARLE COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALBEMARLE_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALBEMARLE_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALBEMARLE_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALBEMARLE_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALBEMARLE_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALBEMARLE_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALBEMARLE_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALBEMARLE_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLENDALE_COUNTY_SC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLENDALE_COUNTY_SC", - "description": null, - "label": "ALLENDALE COUNTY SC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLENDALE_COUNTY_SC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLENDALE_COUNTY_SC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLENDALE_COUNTY_SC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLENDALE_COUNTY_SC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLENDALE_COUNTY_SC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLENDALE_COUNTY_SC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLENDALE_COUNTY_SC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLENDALE_COUNTY_SC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GWINNETT_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GWINNETT_COUNTY_GA", - "description": null, - "label": "GWINNETT COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GWINNETT_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GWINNETT_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GWINNETT_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GWINNETT_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GWINNETT_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GWINNETT_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GWINNETT_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GWINNETT_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAKULLA_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAKULLA_COUNTY_FL", - "description": null, - "label": "WAKULLA COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAKULLA_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAKULLA_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAKULLA_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAKULLA_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAKULLA_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAKULLA_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAKULLA_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAKULLA_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FALLON_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FALLON_COUNTY_MT", - "description": null, - "label": "FALLON COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FALLON_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FALLON_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FALLON_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FALLON_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FALLON_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FALLON_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FALLON_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FALLON_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_PARISH_LA", - "description": null, - "label": "WEBSTER PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IOSCO_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IOSCO_COUNTY_MI", - "description": null, - "label": "IOSCO COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IOSCO_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IOSCO_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IOSCO_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IOSCO_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IOSCO_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IOSCO_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IOSCO_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IOSCO_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RED_RIVER_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RED_RIVER_PARISH_LA", - "description": null, - "label": "RED RIVER PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RED_RIVER_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RED_RIVER_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RED_RIVER_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RED_RIVER_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RED_RIVER_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RED_RIVER_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RED_RIVER_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RED_RIVER_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_OK", - "description": null, - "label": "JACKSON COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHUYLKILL_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHUYLKILL_COUNTY_PA", - "description": null, - "label": "SCHUYLKILL COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHUYLKILL_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHUYLKILL_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHUYLKILL_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHUYLKILL_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHUYLKILL_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHUYLKILL_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHUYLKILL_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHUYLKILL_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONECUH_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONECUH_COUNTY_AL", - "description": null, - "label": "CONECUH COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONECUH_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONECUH_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONECUH_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONECUH_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONECUH_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONECUH_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONECUH_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONECUH_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDRICKS_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDRICKS_COUNTY_IN", - "description": null, - "label": "HENDRICKS COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDRICKS_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDRICKS_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDRICKS_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDRICKS_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDRICKS_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDRICKS_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDRICKS_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDRICKS_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILLSDALE_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILLSDALE_COUNTY_MI", - "description": null, - "label": "HILLSDALE COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILLSDALE_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILLSDALE_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILLSDALE_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILLSDALE_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILLSDALE_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILLSDALE_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILLSDALE_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILLSDALE_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERRIMACK_COUNTY_NH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERRIMACK_COUNTY_NH", - "description": null, - "label": "MERRIMACK COUNTY NH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERRIMACK_COUNTY_NH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERRIMACK_COUNTY_NH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERRIMACK_COUNTY_NH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERRIMACK_COUNTY_NH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERRIMACK_COUNTY_NH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERRIMACK_COUNTY_NH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERRIMACK_COUNTY_NH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERRIMACK_COUNTY_NH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_TN", - "description": null, - "label": "SHELBY COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KAUFMAN_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KAUFMAN_COUNTY_TX", - "description": null, - "label": "KAUFMAN COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KAUFMAN_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KAUFMAN_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KAUFMAN_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KAUFMAN_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KAUFMAN_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KAUFMAN_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KAUFMAN_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KAUFMAN_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILLSBOROUGH_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILLSBOROUGH_COUNTY_FL", - "description": null, - "label": "HILLSBOROUGH COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILLSBOROUGH_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILLSBOROUGH_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILLSBOROUGH_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILLSBOROUGH_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILLSBOROUGH_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILLSBOROUGH_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILLSBOROUGH_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HILLSBOROUGH_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOORE_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOORE_COUNTY_TX", - "description": null, - "label": "MOORE COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOORE_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOORE_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOORE_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOORE_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOORE_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOORE_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOORE_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOORE_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALACHUA_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALACHUA_COUNTY_FL", - "description": null, - "label": "ALACHUA COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALACHUA_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALACHUA_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALACHUA_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALACHUA_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALACHUA_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALACHUA_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALACHUA_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALACHUA_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEE_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEE_COUNTY_TX", - "description": null, - "label": "BEE COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEE_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEE_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEE_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEE_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEE_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEE_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEE_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEE_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_SD", - "description": null, - "label": "JACKSON COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_AL", - "description": null, - "label": "SHELBY COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OWSLEY_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OWSLEY_COUNTY_KY", - "description": null, - "label": "OWSLEY COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OWSLEY_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OWSLEY_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OWSLEY_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OWSLEY_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OWSLEY_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OWSLEY_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OWSLEY_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OWSLEY_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENVILLE_COUNTY_SC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENVILLE_COUNTY_SC", - "description": null, - "label": "GREENVILLE COUNTY SC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENVILLE_COUNTY_SC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENVILLE_COUNTY_SC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENVILLE_COUNTY_SC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENVILLE_COUNTY_SC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENVILLE_COUNTY_SC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENVILLE_COUNTY_SC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENVILLE_COUNTY_SC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENVILLE_COUNTY_SC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_WA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_WA", - "description": null, - "label": "DOUGLAS COUNTY WA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_WA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_WA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_WA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_WA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_WA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_WA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_WA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_WA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMIT_COUNTY_UT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMIT_COUNTY_UT", - "description": null, - "label": "SUMMIT COUNTY UT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMIT_COUNTY_UT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMIT_COUNTY_UT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMIT_COUNTY_UT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMIT_COUNTY_UT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMIT_COUNTY_UT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMIT_COUNTY_UT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMIT_COUNTY_UT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMIT_COUNTY_UT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HINSDALE_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HINSDALE_COUNTY_CO", - "description": null, - "label": "HINSDALE COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HINSDALE_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HINSDALE_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HINSDALE_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HINSDALE_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HINSDALE_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HINSDALE_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HINSDALE_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HINSDALE_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIOWA_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIOWA_COUNTY_OK", - "description": null, - "label": "KIOWA COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIOWA_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIOWA_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIOWA_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIOWA_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIOWA_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIOWA_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIOWA_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIOWA_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREELEY_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREELEY_COUNTY_KS", - "description": null, - "label": "GREELEY COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREELEY_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREELEY_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREELEY_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREELEY_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREELEY_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREELEY_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREELEY_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREELEY_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRISON_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRISON_COUNTY_MN", - "description": null, - "label": "MORRISON COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRISON_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRISON_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRISON_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRISON_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRISON_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRISON_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRISON_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRISON_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRON_COUNTY_UT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRON_COUNTY_UT", - "description": null, - "label": "IRON COUNTY UT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRON_COUNTY_UT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRON_COUNTY_UT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRON_COUNTY_UT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRON_COUNTY_UT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRON_COUNTY_UT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRON_COUNTY_UT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRON_COUNTY_UT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRON_COUNTY_UT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUFFOLK_COUNTY_MA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUFFOLK_COUNTY_MA", - "description": null, - "label": "SUFFOLK COUNTY MA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUFFOLK_COUNTY_MA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUFFOLK_COUNTY_MA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUFFOLK_COUNTY_MA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUFFOLK_COUNTY_MA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUFFOLK_COUNTY_MA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUFFOLK_COUNTY_MA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUFFOLK_COUNTY_MA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUFFOLK_COUNTY_MA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YOLO_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YOLO_COUNTY_CA", - "description": null, - "label": "YOLO COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YOLO_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YOLO_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YOLO_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YOLO_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YOLO_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YOLO_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YOLO_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YOLO_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANITE_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANITE_COUNTY_MT", - "description": null, - "label": "GRANITE COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANITE_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANITE_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANITE_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANITE_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANITE_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANITE_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANITE_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANITE_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_IL", - "description": null, - "label": "ADAMS COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_NE", - "description": null, - "label": "JEFFERSON COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEQUATCHIE_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEQUATCHIE_COUNTY_TN", - "description": null, - "label": "SEQUATCHIE COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEQUATCHIE_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEQUATCHIE_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEQUATCHIE_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEQUATCHIE_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEQUATCHIE_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEQUATCHIE_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEQUATCHIE_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEQUATCHIE_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEWEENAW_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEWEENAW_COUNTY_MI", - "description": null, - "label": "KEWEENAW COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEWEENAW_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEWEENAW_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEWEENAW_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEWEENAW_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEWEENAW_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEWEENAW_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEWEENAW_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEWEENAW_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAMBERS_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAMBERS_COUNTY_AL", - "description": null, - "label": "CHAMBERS COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAMBERS_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAMBERS_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAMBERS_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAMBERS_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAMBERS_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAMBERS_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAMBERS_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAMBERS_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.INDIAN_RIVER_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.INDIAN_RIVER_COUNTY_FL", - "description": null, - "label": "INDIAN RIVER COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.INDIAN_RIVER_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.INDIAN_RIVER_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.INDIAN_RIVER_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.INDIAN_RIVER_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.INDIAN_RIVER_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.INDIAN_RIVER_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.INDIAN_RIVER_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.INDIAN_RIVER_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_GA", - "description": null, - "label": "WHITE COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEYENNE_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEYENNE_COUNTY_NE", - "description": null, - "label": "CHEYENNE COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEYENNE_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEYENNE_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEYENNE_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEYENNE_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEYENNE_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEYENNE_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEYENNE_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEYENNE_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_RI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_RI", - "description": null, - "label": "WASHINGTON COUNTY RI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_RI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_RI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_RI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_RI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_RI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_RI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_RI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_RI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDWARDS_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDWARDS_COUNTY_IL", - "description": null, - "label": "EDWARDS COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDWARDS_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDWARDS_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDWARDS_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDWARDS_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDWARDS_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDWARDS_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDWARDS_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDWARDS_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKENS_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKENS_COUNTY_TX", - "description": null, - "label": "DICKENS COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKENS_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKENS_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKENS_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKENS_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKENS_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKENS_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKENS_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKENS_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAYS_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAYS_COUNTY_TX", - "description": null, - "label": "HAYS COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAYS_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAYS_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAYS_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAYS_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAYS_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAYS_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAYS_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAYS_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIS_COUNTY_UT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIS_COUNTY_UT", - "description": null, - "label": "DAVIS COUNTY UT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIS_COUNTY_UT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIS_COUNTY_UT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIS_COUNTY_UT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIS_COUNTY_UT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIS_COUNTY_UT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIS_COUNTY_UT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIS_COUNTY_UT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIS_COUNTY_UT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESOTO_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESOTO_COUNTY_MS", - "description": null, - "label": "DESOTO COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESOTO_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESOTO_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESOTO_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESOTO_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESOTO_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESOTO_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESOTO_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DESOTO_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TORRANCE_COUNTY_NM": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TORRANCE_COUNTY_NM", - "description": null, - "label": "TORRANCE COUNTY NM", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TORRANCE_COUNTY_NM.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TORRANCE_COUNTY_NM.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TORRANCE_COUNTY_NM.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TORRANCE_COUNTY_NM.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TORRANCE_COUNTY_NM.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TORRANCE_COUNTY_NM.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TORRANCE_COUNTY_NM.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TORRANCE_COUNTY_NM.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRESQUE_ISLE_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRESQUE_ISLE_COUNTY_MI", - "description": null, - "label": "PRESQUE ISLE COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRESQUE_ISLE_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRESQUE_ISLE_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRESQUE_ISLE_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRESQUE_ISLE_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRESQUE_ISLE_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRESQUE_ISLE_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRESQUE_ISLE_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRESQUE_ISLE_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CADDO_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CADDO_PARISH_LA", - "description": null, - "label": "CADDO PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CADDO_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CADDO_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CADDO_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CADDO_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CADDO_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CADDO_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CADDO_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CADDO_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_WV", - "description": null, - "label": "HARRISON COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_COUNTY_WA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_COUNTY_WA", - "description": null, - "label": "KING COUNTY WA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_COUNTY_WA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_COUNTY_WA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_COUNTY_WA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_COUNTY_WA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_COUNTY_WA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_COUNTY_WA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_COUNTY_WA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_COUNTY_WA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_NE", - "description": null, - "label": "FRANKLIN COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLMES_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLMES_COUNTY_MS", - "description": null, - "label": "HOLMES COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLMES_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLMES_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLMES_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLMES_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLMES_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLMES_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLMES_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLMES_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRUMBULL_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRUMBULL_COUNTY_OH", - "description": null, - "label": "TRUMBULL COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRUMBULL_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRUMBULL_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRUMBULL_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRUMBULL_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRUMBULL_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRUMBULL_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRUMBULL_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRUMBULL_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_NE", - "description": null, - "label": "SALINE COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOOELE_COUNTY_UT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOOELE_COUNTY_UT", - "description": null, - "label": "TOOELE COUNTY UT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOOELE_COUNTY_UT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOOELE_COUNTY_UT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOOELE_COUNTY_UT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOOELE_COUNTY_UT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOOELE_COUNTY_UT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOOELE_COUNTY_UT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOOELE_COUNTY_UT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOOELE_COUNTY_UT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UTAH_COUNTY_UT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UTAH_COUNTY_UT", - "description": null, - "label": "UTAH COUNTY UT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UTAH_COUNTY_UT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UTAH_COUNTY_UT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UTAH_COUNTY_UT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UTAH_COUNTY_UT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UTAH_COUNTY_UT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UTAH_COUNTY_UT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UTAH_COUNTY_UT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UTAH_COUNTY_UT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_IA", - "description": null, - "label": "HARRISON COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAU_CLAIRE_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAU_CLAIRE_COUNTY_WI", - "description": null, - "label": "EAU CLAIRE COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAU_CLAIRE_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAU_CLAIRE_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAU_CLAIRE_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAU_CLAIRE_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAU_CLAIRE_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAU_CLAIRE_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAU_CLAIRE_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAU_CLAIRE_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_FL", - "description": null, - "label": "COLUMBIA COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_PA", - "description": null, - "label": "YORK COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STAUNTON_CITY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STAUNTON_CITY_VA", - "description": null, - "label": "STAUNTON CITY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STAUNTON_CITY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STAUNTON_CITY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STAUNTON_CITY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STAUNTON_CITY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STAUNTON_CITY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STAUNTON_CITY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STAUNTON_CITY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STAUNTON_CITY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEQUOYAH_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEQUOYAH_COUNTY_OK", - "description": null, - "label": "SEQUOYAH COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEQUOYAH_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEQUOYAH_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEQUOYAH_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEQUOYAH_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEQUOYAH_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEQUOYAH_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEQUOYAH_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEQUOYAH_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLBERT_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLBERT_COUNTY_MS", - "description": null, - "label": "COLBERT COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLBERT_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLBERT_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLBERT_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLBERT_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLBERT_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLBERT_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLBERT_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLBERT_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMLIN_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMLIN_COUNTY_SD", - "description": null, - "label": "HAMLIN COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMLIN_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMLIN_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMLIN_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMLIN_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMLIN_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMLIN_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMLIN_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMLIN_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIERRA_COUNTY_NM": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIERRA_COUNTY_NM", - "description": null, - "label": "SIERRA COUNTY NM", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIERRA_COUNTY_NM.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIERRA_COUNTY_NM.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIERRA_COUNTY_NM.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIERRA_COUNTY_NM.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIERRA_COUNTY_NM.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIERRA_COUNTY_NM.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIERRA_COUNTY_NM.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIERRA_COUNTY_NM.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_OH", - "description": null, - "label": "JEFFERSON COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUTAUGA_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUTAUGA_COUNTY_AL", - "description": null, - "label": "AUTAUGA COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUTAUGA_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUTAUGA_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUTAUGA_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUTAUGA_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUTAUGA_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUTAUGA_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUTAUGA_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AUTAUGA_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOMFIELD_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOMFIELD_COUNTY_CO", - "description": null, - "label": "BROOMFIELD COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOMFIELD_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOMFIELD_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOMFIELD_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOMFIELD_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOMFIELD_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOMFIELD_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOMFIELD_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOMFIELD_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARAGA_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARAGA_COUNTY_MI", - "description": null, - "label": "BARAGA COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARAGA_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARAGA_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARAGA_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARAGA_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARAGA_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARAGA_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARAGA_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARAGA_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_MO", - "description": null, - "label": "SCOTT COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_MN", - "description": null, - "label": "MARSHALL COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUAB_COUNTY_UT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUAB_COUNTY_UT", - "description": null, - "label": "JUAB COUNTY UT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUAB_COUNTY_UT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUAB_COUNTY_UT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUAB_COUNTY_UT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUAB_COUNTY_UT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUAB_COUNTY_UT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUAB_COUNTY_UT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUAB_COUNTY_UT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUAB_COUNTY_UT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EL_PASO_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EL_PASO_COUNTY_TX", - "description": null, - "label": "EL PASO COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EL_PASO_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EL_PASO_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EL_PASO_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EL_PASO_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EL_PASO_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EL_PASO_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EL_PASO_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EL_PASO_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_COUNTY_KS", - "description": null, - "label": "ALLEN COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALLARD_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALLARD_COUNTY_KY", - "description": null, - "label": "BALLARD COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALLARD_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALLARD_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALLARD_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALLARD_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALLARD_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALLARD_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALLARD_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALLARD_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEATHAM_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEATHAM_COUNTY_TN", - "description": null, - "label": "CHEATHAM COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEATHAM_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEATHAM_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEATHAM_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEATHAM_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEATHAM_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEATHAM_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEATHAM_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEATHAM_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_WA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_WA", - "description": null, - "label": "CLARK COUNTY WA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_WA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_WA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_WA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_WA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_WA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_WA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_WA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_WA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_TN", - "description": null, - "label": "MADISON COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_MARY_S_COUNTY_MD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_MARY_S_COUNTY_MD", - "description": null, - "label": "ST MARY S COUNTY MD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_MARY_S_COUNTY_MD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_MARY_S_COUNTY_MD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_MARY_S_COUNTY_MD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_MARY_S_COUNTY_MD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_MARY_S_COUNTY_MD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_MARY_S_COUNTY_MD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_MARY_S_COUNTY_MD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_MARY_S_COUNTY_MD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELBERT_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELBERT_COUNTY_CO", - "description": null, - "label": "ELBERT COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELBERT_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELBERT_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELBERT_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELBERT_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELBERT_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELBERT_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELBERT_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELBERT_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATCHISON_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATCHISON_COUNTY_KS", - "description": null, - "label": "ATCHISON COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATCHISON_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATCHISON_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATCHISON_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATCHISON_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATCHISON_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATCHISON_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATCHISON_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATCHISON_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALVERT_COUNTY_MD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALVERT_COUNTY_MD", - "description": null, - "label": "CALVERT COUNTY MD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALVERT_COUNTY_MD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALVERT_COUNTY_MD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALVERT_COUNTY_MD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALVERT_COUNTY_MD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALVERT_COUNTY_MD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALVERT_COUNTY_MD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALVERT_COUNTY_MD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALVERT_COUNTY_MD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORTH_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORTH_COUNTY_MO", - "description": null, - "label": "WORTH COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORTH_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORTH_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORTH_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORTH_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORTH_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORTH_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORTH_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORTH_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_IN", - "description": null, - "label": "SHELBY COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADJUNTAS_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADJUNTAS_MUNICIPIO_PR", - "description": null, - "label": "ADJUNTAS MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADJUNTAS_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADJUNTAS_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADJUNTAS_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADJUNTAS_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADJUNTAS_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADJUNTAS_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADJUNTAS_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADJUNTAS_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHUGACH_CENSUS_AREA_AK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHUGACH_CENSUS_AREA_AK", - "description": null, - "label": "CHUGACH CENSUS AREA AK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHUGACH_CENSUS_AREA_AK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHUGACH_CENSUS_AREA_AK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHUGACH_CENSUS_AREA_AK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHUGACH_CENSUS_AREA_AK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHUGACH_CENSUS_AREA_AK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHUGACH_CENSUS_AREA_AK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHUGACH_CENSUS_AREA_AK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHUGACH_CENSUS_AREA_AK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_KY", - "description": null, - "label": "HANCOCK COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIVERSIDE_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIVERSIDE_COUNTY_CA", - "description": null, - "label": "RIVERSIDE COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIVERSIDE_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIVERSIDE_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIVERSIDE_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIVERSIDE_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIVERSIDE_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIVERSIDE_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIVERSIDE_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIVERSIDE_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENNEPIN_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENNEPIN_COUNTY_MN", - "description": null, - "label": "HENNEPIN COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENNEPIN_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENNEPIN_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENNEPIN_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENNEPIN_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENNEPIN_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENNEPIN_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENNEPIN_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENNEPIN_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISONBURG_CITY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISONBURG_CITY_VA", - "description": null, - "label": "HARRISONBURG CITY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISONBURG_CITY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISONBURG_CITY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISONBURG_CITY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISONBURG_CITY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISONBURG_CITY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISONBURG_CITY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISONBURG_CITY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISONBURG_CITY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BATES_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BATES_COUNTY_MO", - "description": null, - "label": "BATES COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BATES_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BATES_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BATES_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BATES_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BATES_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BATES_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BATES_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BATES_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_IN", - "description": null, - "label": "GRANT COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALEDONIA_COUNTY_VT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALEDONIA_COUNTY_VT", - "description": null, - "label": "CALEDONIA COUNTY VT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALEDONIA_COUNTY_VT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALEDONIA_COUNTY_VT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALEDONIA_COUNTY_VT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALEDONIA_COUNTY_VT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALEDONIA_COUNTY_VT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALEDONIA_COUNTY_VT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALEDONIA_COUNTY_VT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALEDONIA_COUNTY_VT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDEE_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDEE_COUNTY_FL", - "description": null, - "label": "HARDEE COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDEE_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDEE_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDEE_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDEE_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDEE_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDEE_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDEE_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDEE_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAPE_MAY_COUNTY_NJ": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAPE_MAY_COUNTY_NJ", - "description": null, - "label": "CAPE MAY COUNTY NJ", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAPE_MAY_COUNTY_NJ.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAPE_MAY_COUNTY_NJ.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAPE_MAY_COUNTY_NJ.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAPE_MAY_COUNTY_NJ.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAPE_MAY_COUNTY_NJ.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAPE_MAY_COUNTY_NJ.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAPE_MAY_COUNTY_NJ.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAPE_MAY_COUNTY_NJ.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTON_CITY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTON_CITY_VA", - "description": null, - "label": "NORTON CITY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTON_CITY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTON_CITY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTON_CITY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTON_CITY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTON_CITY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTON_CITY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTON_CITY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTON_CITY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCHANAN_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCHANAN_COUNTY_IA", - "description": null, - "label": "BUCHANAN COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCHANAN_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCHANAN_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCHANAN_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCHANAN_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCHANAN_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCHANAN_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCHANAN_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCHANAN_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRIS_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRIS_COUNTY_KS", - "description": null, - "label": "MORRIS COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRIS_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRIS_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRIS_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRIS_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRIS_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRIS_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRIS_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRIS_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOMPKINS_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOMPKINS_COUNTY_NY", - "description": null, - "label": "TOMPKINS COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOMPKINS_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOMPKINS_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOMPKINS_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOMPKINS_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOMPKINS_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOMPKINS_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOMPKINS_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOMPKINS_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEWELL_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEWELL_COUNTY_NE", - "description": null, - "label": "JEWELL COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEWELL_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEWELL_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEWELL_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEWELL_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEWELL_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEWELL_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEWELL_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEWELL_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSCATINE_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSCATINE_COUNTY_IA", - "description": null, - "label": "MUSCATINE COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSCATINE_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSCATINE_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSCATINE_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSCATINE_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSCATINE_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSCATINE_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSCATINE_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSCATINE_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASSUMPTION_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASSUMPTION_PARISH_LA", - "description": null, - "label": "ASSUMPTION PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASSUMPTION_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASSUMPTION_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASSUMPTION_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASSUMPTION_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASSUMPTION_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASSUMPTION_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASSUMPTION_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ASSUMPTION_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_HAVEN_COUNTY_CT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_HAVEN_COUNTY_CT", - "description": null, - "label": "NEW HAVEN COUNTY CT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_HAVEN_COUNTY_CT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_HAVEN_COUNTY_CT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_HAVEN_COUNTY_CT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_HAVEN_COUNTY_CT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_HAVEN_COUNTY_CT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_HAVEN_COUNTY_CT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_HAVEN_COUNTY_CT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_HAVEN_COUNTY_CT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_BENITO_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_BENITO_COUNTY_CA", - "description": null, - "label": "SAN BENITO COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_BENITO_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_BENITO_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_BENITO_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_BENITO_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_BENITO_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_BENITO_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_BENITO_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_BENITO_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DANIELS_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DANIELS_COUNTY_MT", - "description": null, - "label": "DANIELS COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DANIELS_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DANIELS_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DANIELS_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DANIELS_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DANIELS_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DANIELS_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DANIELS_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DANIELS_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUTHERFORD_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUTHERFORD_COUNTY_TN", - "description": null, - "label": "RUTHERFORD COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUTHERFORD_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUTHERFORD_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUTHERFORD_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUTHERFORD_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUTHERFORD_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUTHERFORD_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUTHERFORD_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUTHERFORD_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIPLEY_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIPLEY_COUNTY_IN", - "description": null, - "label": "RIPLEY COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIPLEY_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIPLEY_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIPLEY_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIPLEY_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIPLEY_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIPLEY_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIPLEY_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIPLEY_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_NJ": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_NJ", - "description": null, - "label": "UNION COUNTY NJ", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_NJ.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_NJ.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_NJ.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_NJ.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_NJ.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_NJ.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_NJ.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_NJ.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATTALA_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATTALA_COUNTY_MS", - "description": null, - "label": "ATTALA COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATTALA_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATTALA_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATTALA_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATTALA_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATTALA_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATTALA_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATTALA_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATTALA_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_BERNARDINO_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_BERNARDINO_COUNTY_CA", - "description": null, - "label": "SAN BERNARDINO COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_BERNARDINO_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_BERNARDINO_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_BERNARDINO_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_BERNARDINO_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_BERNARDINO_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_BERNARDINO_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_BERNARDINO_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_BERNARDINO_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENZIE_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENZIE_COUNTY_MI", - "description": null, - "label": "BENZIE COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENZIE_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENZIE_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENZIE_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENZIE_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENZIE_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENZIE_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENZIE_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENZIE_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_PA", - "description": null, - "label": "BUTLER COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_AL", - "description": null, - "label": "MONTGOMERY COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARNSTABLE_COUNTY_MA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARNSTABLE_COUNTY_MA", - "description": null, - "label": "BARNSTABLE COUNTY MA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARNSTABLE_COUNTY_MA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARNSTABLE_COUNTY_MA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARNSTABLE_COUNTY_MA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARNSTABLE_COUNTY_MA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARNSTABLE_COUNTY_MA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARNSTABLE_COUNTY_MA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARNSTABLE_COUNTY_MA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARNSTABLE_COUNTY_MA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLERMONT_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLERMONT_COUNTY_OH", - "description": null, - "label": "CLERMONT COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLERMONT_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLERMONT_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLERMONT_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLERMONT_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLERMONT_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLERMONT_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLERMONT_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLERMONT_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODDRIDGE_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODDRIDGE_COUNTY_WV", - "description": null, - "label": "DODDRIDGE COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODDRIDGE_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODDRIDGE_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODDRIDGE_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODDRIDGE_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODDRIDGE_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODDRIDGE_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODDRIDGE_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODDRIDGE_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARLINGTON_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARLINGTON_COUNTY_VA", - "description": null, - "label": "ARLINGTON COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARLINGTON_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARLINGTON_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARLINGTON_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARLINGTON_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARLINGTON_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARLINGTON_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARLINGTON_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARLINGTON_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRWIN_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRWIN_COUNTY_GA", - "description": null, - "label": "IRWIN COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRWIN_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRWIN_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRWIN_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRWIN_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRWIN_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRWIN_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRWIN_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRWIN_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HART_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HART_COUNTY_KY", - "description": null, - "label": "HART COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HART_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HART_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HART_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HART_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HART_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HART_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HART_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HART_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRION_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRION_COUNTY_TX", - "description": null, - "label": "IRION COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRION_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRION_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRION_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRION_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRION_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRION_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRION_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IRION_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMPORIA_CITY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMPORIA_CITY_VA", - "description": null, - "label": "EMPORIA CITY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMPORIA_CITY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMPORIA_CITY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMPORIA_CITY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMPORIA_CITY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMPORIA_CITY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMPORIA_CITY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMPORIA_CITY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMPORIA_CITY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_MO", - "description": null, - "label": "POLK COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOUTHEAST_FAIRBANKS_CENSUS_AREA_AK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOUTHEAST_FAIRBANKS_CENSUS_AREA_AK", - "description": null, - "label": "SOUTHEAST FAIRBANKS CENSUS AREA AK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOUTHEAST_FAIRBANKS_CENSUS_AREA_AK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOUTHEAST_FAIRBANKS_CENSUS_AREA_AK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOUTHEAST_FAIRBANKS_CENSUS_AREA_AK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOUTHEAST_FAIRBANKS_CENSUS_AREA_AK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOUTHEAST_FAIRBANKS_CENSUS_AREA_AK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOUTHEAST_FAIRBANKS_CENSUS_AREA_AK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOUTHEAST_FAIRBANKS_CENSUS_AREA_AK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOUTHEAST_FAIRBANKS_CENSUS_AREA_AK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_ISABEL_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_ISABEL_MUNICIPIO_PR", - "description": null, - "label": "SANTA ISABEL MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_ISABEL_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_ISABEL_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_ISABEL_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_ISABEL_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_ISABEL_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_ISABEL_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_ISABEL_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_ISABEL_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_WI", - "description": null, - "label": "LAFAYETTE COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_GA", - "description": null, - "label": "FAYETTE COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OUTAGAMIE_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OUTAGAMIE_COUNTY_WI", - "description": null, - "label": "OUTAGAMIE COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OUTAGAMIE_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OUTAGAMIE_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OUTAGAMIE_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OUTAGAMIE_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OUTAGAMIE_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OUTAGAMIE_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OUTAGAMIE_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OUTAGAMIE_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_COUNTY_NE", - "description": null, - "label": "ROCK COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCK_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DINWIDDIE_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DINWIDDIE_COUNTY_VA", - "description": null, - "label": "DINWIDDIE COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DINWIDDIE_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DINWIDDIE_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DINWIDDIE_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DINWIDDIE_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DINWIDDIE_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DINWIDDIE_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DINWIDDIE_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DINWIDDIE_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARREN_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARREN_COUNTY_KY", - "description": null, - "label": "BARREN COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARREN_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARREN_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARREN_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARREN_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARREN_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARREN_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARREN_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARREN_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELK_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELK_COUNTY_KS", - "description": null, - "label": "ELK COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELK_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELK_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELK_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELK_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELK_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELK_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELK_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELK_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GURABO_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GURABO_MUNICIPIO_PR", - "description": null, - "label": "GURABO MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GURABO_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GURABO_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GURABO_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GURABO_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GURABO_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GURABO_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GURABO_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GURABO_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_TN", - "description": null, - "label": "WAYNE COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLOTTE_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLOTTE_COUNTY_VA", - "description": null, - "label": "CHARLOTTE COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLOTTE_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLOTTE_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLOTTE_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLOTTE_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLOTTE_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLOTTE_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLOTTE_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHARLOTTE_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRAIRIE_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRAIRIE_COUNTY_AR", - "description": null, - "label": "PRAIRIE COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRAIRIE_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRAIRIE_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRAIRIE_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRAIRIE_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRAIRIE_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRAIRIE_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRAIRIE_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRAIRIE_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_TX", - "description": null, - "label": "WASHINGTON COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_AR", - "description": null, - "label": "SCOTT COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_IN", - "description": null, - "label": "DEKALB COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRAZORIA_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRAZORIA_COUNTY_TX", - "description": null, - "label": "BRAZORIA COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRAZORIA_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRAZORIA_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRAZORIA_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRAZORIA_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRAZORIA_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRAZORIA_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRAZORIA_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRAZORIA_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BINGHAM_COUNTY_ID": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BINGHAM_COUNTY_ID", - "description": null, - "label": "BINGHAM COUNTY ID", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BINGHAM_COUNTY_ID.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BINGHAM_COUNTY_ID.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BINGHAM_COUNTY_ID.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BINGHAM_COUNTY_ID.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BINGHAM_COUNTY_ID.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BINGHAM_COUNTY_ID.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BINGHAM_COUNTY_ID.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BINGHAM_COUNTY_ID.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HURON_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HURON_COUNTY_MI", - "description": null, - "label": "HURON COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HURON_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HURON_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HURON_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HURON_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HURON_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HURON_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HURON_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HURON_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIATT_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIATT_COUNTY_IL", - "description": null, - "label": "PIATT COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIATT_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIATT_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIATT_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIATT_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIATT_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIATT_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIATT_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIATT_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEELE_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEELE_COUNTY_ND", - "description": null, - "label": "STEELE COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEELE_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEELE_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEELE_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEELE_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEELE_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEELE_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEELE_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEELE_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOOD_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOOD_COUNTY_OH", - "description": null, - "label": "WOOD COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOOD_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOOD_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOOD_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOOD_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOOD_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOOD_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOOD_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOOD_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALLA_WALLA_COUNTY_WA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALLA_WALLA_COUNTY_WA", - "description": null, - "label": "WALLA WALLA COUNTY WA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALLA_WALLA_COUNTY_WA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALLA_WALLA_COUNTY_WA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALLA_WALLA_COUNTY_WA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALLA_WALLA_COUNTY_WA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALLA_WALLA_COUNTY_WA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALLA_WALLA_COUNTY_WA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALLA_WALLA_COUNTY_WA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALLA_WALLA_COUNTY_WA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LA_CROSSE_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LA_CROSSE_COUNTY_WI", - "description": null, - "label": "LA CROSSE COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LA_CROSSE_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LA_CROSSE_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LA_CROSSE_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LA_CROSSE_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LA_CROSSE_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LA_CROSSE_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LA_CROSSE_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LA_CROSSE_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHACKELFORD_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHACKELFORD_COUNTY_TX", - "description": null, - "label": "SHACKELFORD COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHACKELFORD_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHACKELFORD_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHACKELFORD_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHACKELFORD_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHACKELFORD_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHACKELFORD_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHACKELFORD_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHACKELFORD_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_VA", - "description": null, - "label": "WASHINGTON COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_IL", - "description": null, - "label": "JOHNSON COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_FL", - "description": null, - "label": "MARION COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_FL", - "description": null, - "label": "MARTIN COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARION_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARION_COUNTY_PA", - "description": null, - "label": "CLARION COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARION_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARION_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARION_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARION_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARION_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARION_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARION_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARION_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILLIAM_COUNTY_OR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILLIAM_COUNTY_OR", - "description": null, - "label": "GILLIAM COUNTY OR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILLIAM_COUNTY_OR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILLIAM_COUNTY_OR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILLIAM_COUNTY_OR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILLIAM_COUNTY_OR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILLIAM_COUNTY_OR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILLIAM_COUNTY_OR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILLIAM_COUNTY_OR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILLIAM_COUNTY_OR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_TN", - "description": null, - "label": "DECATUR COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREMONT_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREMONT_COUNTY_CO", - "description": null, - "label": "FREMONT COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREMONT_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREMONT_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREMONT_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREMONT_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREMONT_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREMONT_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREMONT_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREMONT_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UINTAH_COUNTY_UT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UINTAH_COUNTY_UT", - "description": null, - "label": "UINTAH COUNTY UT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UINTAH_COUNTY_UT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UINTAH_COUNTY_UT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UINTAH_COUNTY_UT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UINTAH_COUNTY_UT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UINTAH_COUNTY_UT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UINTAH_COUNTY_UT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UINTAH_COUNTY_UT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UINTAH_COUNTY_UT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASSIA_COUNTY_ID": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASSIA_COUNTY_ID", - "description": null, - "label": "CASSIA COUNTY ID", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASSIA_COUNTY_ID.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASSIA_COUNTY_ID.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASSIA_COUNTY_ID.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASSIA_COUNTY_ID.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASSIA_COUNTY_ID.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASSIA_COUNTY_ID.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASSIA_COUNTY_ID.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASSIA_COUNTY_ID.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLACKAMAS_COUNTY_OR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLACKAMAS_COUNTY_OR", - "description": null, - "label": "CLACKAMAS COUNTY OR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLACKAMAS_COUNTY_OR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLACKAMAS_COUNTY_OR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLACKAMAS_COUNTY_OR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLACKAMAS_COUNTY_OR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLACKAMAS_COUNTY_OR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLACKAMAS_COUNTY_OR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLACKAMAS_COUNTY_OR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLACKAMAS_COUNTY_OR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANILAC_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANILAC_COUNTY_MI", - "description": null, - "label": "SANILAC COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANILAC_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANILAC_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANILAC_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANILAC_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANILAC_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANILAC_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANILAC_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANILAC_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONMOUTH_COUNTY_NJ": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONMOUTH_COUNTY_NJ", - "description": null, - "label": "MONMOUTH COUNTY NJ", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONMOUTH_COUNTY_NJ.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONMOUTH_COUNTY_NJ.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONMOUTH_COUNTY_NJ.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONMOUTH_COUNTY_NJ.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONMOUTH_COUNTY_NJ.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONMOUTH_COUNTY_NJ.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONMOUTH_COUNTY_NJ.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONMOUTH_COUNTY_NJ.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOOD_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOOD_COUNTY_WV", - "description": null, - "label": "WOOD COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOOD_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOOD_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOOD_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOOD_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOOD_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOOD_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOOD_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOOD_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPARTANBURG_COUNTY_SC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPARTANBURG_COUNTY_SC", - "description": null, - "label": "SPARTANBURG COUNTY SC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPARTANBURG_COUNTY_SC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPARTANBURG_COUNTY_SC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPARTANBURG_COUNTY_SC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPARTANBURG_COUNTY_SC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPARTANBURG_COUNTY_SC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPARTANBURG_COUNTY_SC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPARTANBURG_COUNTY_SC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPARTANBURG_COUNTY_SC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUNEAU_CITY_AND_BOROUGH_AK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUNEAU_CITY_AND_BOROUGH_AK", - "description": null, - "label": "JUNEAU CITY AND BOROUGH AK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUNEAU_CITY_AND_BOROUGH_AK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUNEAU_CITY_AND_BOROUGH_AK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUNEAU_CITY_AND_BOROUGH_AK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUNEAU_CITY_AND_BOROUGH_AK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUNEAU_CITY_AND_BOROUGH_AK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUNEAU_CITY_AND_BOROUGH_AK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUNEAU_CITY_AND_BOROUGH_AK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUNEAU_CITY_AND_BOROUGH_AK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEITH_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEITH_COUNTY_NE", - "description": null, - "label": "KEITH COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEITH_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEITH_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEITH_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEITH_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEITH_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEITH_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEITH_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEITH_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_AL", - "description": null, - "label": "MARION COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_PARISH_LA", - "description": null, - "label": "FRANKLIN PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAUREGARD_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAUREGARD_PARISH_LA", - "description": null, - "label": "BEAUREGARD PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAUREGARD_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAUREGARD_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAUREGARD_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAUREGARD_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAUREGARD_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAUREGARD_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAUREGARD_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAUREGARD_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NASSAU_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NASSAU_COUNTY_FL", - "description": null, - "label": "NASSAU COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NASSAU_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NASSAU_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NASSAU_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NASSAU_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NASSAU_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NASSAU_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NASSAU_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NASSAU_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_IA", - "description": null, - "label": "JOHNSON COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACOUPIN_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACOUPIN_COUNTY_IL", - "description": null, - "label": "MACOUPIN COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACOUPIN_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACOUPIN_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACOUPIN_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACOUPIN_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACOUPIN_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACOUPIN_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACOUPIN_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACOUPIN_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_MI", - "description": null, - "label": "MONROE COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROLETTE_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROLETTE_COUNTY_ND", - "description": null, - "label": "ROLETTE COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROLETTE_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROLETTE_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROLETTE_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROLETTE_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROLETTE_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROLETTE_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROLETTE_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROLETTE_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_IA", - "description": null, - "label": "DELAWARE COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DELAWARE_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CANNON_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CANNON_COUNTY_TN", - "description": null, - "label": "CANNON COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CANNON_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CANNON_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CANNON_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CANNON_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CANNON_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CANNON_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CANNON_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CANNON_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_KS", - "description": null, - "label": "CLARK COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_VA", - "description": null, - "label": "CLARKE COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARKE_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_AR", - "description": null, - "label": "JEFFERSON COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DANVILLE_CITY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DANVILLE_CITY_VA", - "description": null, - "label": "DANVILLE CITY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DANVILLE_CITY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DANVILLE_CITY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DANVILLE_CITY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DANVILLE_CITY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DANVILLE_CITY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DANVILLE_CITY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DANVILLE_CITY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DANVILLE_CITY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLACY_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLACY_COUNTY_TX", - "description": null, - "label": "WILLACY COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLACY_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLACY_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLACY_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLACY_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLACY_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLACY_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLACY_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILLACY_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOÑA_ANA_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOÑA_ANA_COUNTY_TX", - "description": null, - "label": "DOÑA ANA COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOÑA_ANA_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOÑA_ANA_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOÑA_ANA_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOÑA_ANA_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOÑA_ANA_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOÑA_ANA_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOÑA_ANA_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOÑA_ANA_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINERAL_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINERAL_COUNTY_CO", - "description": null, - "label": "MINERAL COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINERAL_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINERAL_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINERAL_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINERAL_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINERAL_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINERAL_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINERAL_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINERAL_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKAWAY_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKAWAY_COUNTY_OH", - "description": null, - "label": "PICKAWAY COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKAWAY_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKAWAY_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKAWAY_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKAWAY_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKAWAY_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKAWAY_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKAWAY_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PICKAWAY_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COWLEY_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COWLEY_COUNTY_KS", - "description": null, - "label": "COWLEY COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COWLEY_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COWLEY_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COWLEY_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COWLEY_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COWLEY_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COWLEY_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COWLEY_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COWLEY_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNKNOWN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNKNOWN", - "description": null, - "label": "UNKNOWN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNKNOWN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNKNOWN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNKNOWN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNKNOWN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNKNOWN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNKNOWN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNKNOWN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNKNOWN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAMSEY_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAMSEY_COUNTY_MN", - "description": null, - "label": "RAMSEY COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAMSEY_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAMSEY_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAMSEY_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAMSEY_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAMSEY_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAMSEY_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAMSEY_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAMSEY_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_MS", - "description": null, - "label": "LAWRENCE COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_GA", - "description": null, - "label": "CLAY COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_MN", - "description": null, - "label": "HOUSTON COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TULSA_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TULSA_COUNTY_OK", - "description": null, - "label": "TULSA COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TULSA_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TULSA_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TULSA_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TULSA_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TULSA_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TULSA_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TULSA_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TULSA_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOSSUTH_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOSSUTH_COUNTY_IA", - "description": null, - "label": "KOSSUTH COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOSSUTH_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOSSUTH_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOSSUTH_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOSSUTH_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOSSUTH_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOSSUTH_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOSSUTH_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOSSUTH_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEBANON_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEBANON_COUNTY_PA", - "description": null, - "label": "LEBANON COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEBANON_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEBANON_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEBANON_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEBANON_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEBANON_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEBANON_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEBANON_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEBANON_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARANSAS_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARANSAS_COUNTY_TX", - "description": null, - "label": "ARANSAS COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARANSAS_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARANSAS_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARANSAS_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARANSAS_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARANSAS_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARANSAS_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARANSAS_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARANSAS_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOKS_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOKS_COUNTY_TX", - "description": null, - "label": "BROOKS COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOKS_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOKS_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOKS_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOKS_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOKS_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOKS_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOKS_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOKS_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SURRY_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SURRY_COUNTY_VA", - "description": null, - "label": "SURRY COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SURRY_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SURRY_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SURRY_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SURRY_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SURRY_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SURRY_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SURRY_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SURRY_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRAZOS_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRAZOS_COUNTY_TX", - "description": null, - "label": "BRAZOS COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRAZOS_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRAZOS_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRAZOS_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRAZOS_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRAZOS_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRAZOS_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRAZOS_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRAZOS_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_TN", - "description": null, - "label": "CARTER COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OWYHEE_COUNTY_ID": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OWYHEE_COUNTY_ID", - "description": null, - "label": "OWYHEE COUNTY ID", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OWYHEE_COUNTY_ID.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OWYHEE_COUNTY_ID.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OWYHEE_COUNTY_ID.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OWYHEE_COUNTY_ID.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OWYHEE_COUNTY_ID.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OWYHEE_COUNTY_ID.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OWYHEE_COUNTY_ID.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OWYHEE_COUNTY_ID.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAULK_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAULK_COUNTY_SD", - "description": null, - "label": "FAULK COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAULK_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAULK_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAULK_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAULK_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAULK_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAULK_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAULK_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAULK_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_CO", - "description": null, - "label": "SAN JUAN COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIESS_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIESS_COUNTY_KY", - "description": null, - "label": "DAVIESS COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIESS_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIESS_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIESS_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIESS_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIESS_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIESS_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIESS_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAVIESS_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAND_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAND_COUNTY_VA", - "description": null, - "label": "BLAND COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAND_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAND_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAND_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAND_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAND_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAND_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAND_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAND_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADDISON_COUNTY_VT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADDISON_COUNTY_VT", - "description": null, - "label": "ADDISON COUNTY VT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADDISON_COUNTY_VT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADDISON_COUNTY_VT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADDISON_COUNTY_VT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADDISON_COUNTY_VT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADDISON_COUNTY_VT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADDISON_COUNTY_VT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADDISON_COUNTY_VT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADDISON_COUNTY_VT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TREMPEALEAU_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TREMPEALEAU_COUNTY_WI", - "description": null, - "label": "TREMPEALEAU COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TREMPEALEAU_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TREMPEALEAU_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TREMPEALEAU_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TREMPEALEAU_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TREMPEALEAU_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TREMPEALEAU_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TREMPEALEAU_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TREMPEALEAU_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.INDEPENDENCE_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.INDEPENDENCE_COUNTY_AR", - "description": null, - "label": "INDEPENDENCE COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.INDEPENDENCE_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.INDEPENDENCE_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.INDEPENDENCE_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.INDEPENDENCE_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.INDEPENDENCE_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.INDEPENDENCE_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.INDEPENDENCE_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.INDEPENDENCE_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FURNAS_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FURNAS_COUNTY_NE", - "description": null, - "label": "FURNAS COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FURNAS_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FURNAS_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FURNAS_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FURNAS_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FURNAS_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FURNAS_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FURNAS_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FURNAS_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIMBALL_COUNTY_WY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIMBALL_COUNTY_WY", - "description": null, - "label": "KIMBALL COUNTY WY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIMBALL_COUNTY_WY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIMBALL_COUNTY_WY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIMBALL_COUNTY_WY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIMBALL_COUNTY_WY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIMBALL_COUNTY_WY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIMBALL_COUNTY_WY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIMBALL_COUNTY_WY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KIMBALL_COUNTY_WY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_IL", - "description": null, - "label": "WASHINGTON COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDING_COUNTY_NM": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDING_COUNTY_NM", - "description": null, - "label": "HARDING COUNTY NM", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDING_COUNTY_NM.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDING_COUNTY_NM.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDING_COUNTY_NM.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDING_COUNTY_NM.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDING_COUNTY_NM.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDING_COUNTY_NM.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDING_COUNTY_NM.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDING_COUNTY_NM.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_COUNTY_TX", - "description": null, - "label": "KING COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILAM_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILAM_COUNTY_TX", - "description": null, - "label": "MILAM COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILAM_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILAM_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILAM_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILAM_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILAM_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILAM_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILAM_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILAM_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_VA", - "description": null, - "label": "JEFFERSON COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEACH_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEACH_COUNTY_GA", - "description": null, - "label": "PEACH COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEACH_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEACH_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEACH_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEACH_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEACH_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEACH_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEACH_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEACH_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_IN", - "description": null, - "label": "JACKSON COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_IN", - "description": null, - "label": "CARROLL COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEZ_PERCE_COUNTY_ID": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEZ_PERCE_COUNTY_ID", - "description": null, - "label": "NEZ PERCE COUNTY ID", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEZ_PERCE_COUNTY_ID.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEZ_PERCE_COUNTY_ID.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEZ_PERCE_COUNTY_ID.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEZ_PERCE_COUNTY_ID.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEZ_PERCE_COUNTY_ID.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEZ_PERCE_COUNTY_ID.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEZ_PERCE_COUNTY_ID.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEZ_PERCE_COUNTY_ID.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUAYAMA_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUAYAMA_MUNICIPIO_PR", - "description": null, - "label": "GUAYAMA MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUAYAMA_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUAYAMA_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUAYAMA_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUAYAMA_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUAYAMA_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUAYAMA_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUAYAMA_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUAYAMA_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_WV", - "description": null, - "label": "WEBSTER COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEROME_COUNTY_ID": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEROME_COUNTY_ID", - "description": null, - "label": "JEROME COUNTY ID", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEROME_COUNTY_ID.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEROME_COUNTY_ID.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEROME_COUNTY_ID.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEROME_COUNTY_ID.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEROME_COUNTY_ID.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEROME_COUNTY_ID.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEROME_COUNTY_ID.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEROME_COUNTY_ID.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAGADAHOC_COUNTY_ME": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAGADAHOC_COUNTY_ME", - "description": null, - "label": "SAGADAHOC COUNTY ME", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAGADAHOC_COUNTY_ME.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAGADAHOC_COUNTY_ME.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAGADAHOC_COUNTY_ME.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAGADAHOC_COUNTY_ME.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAGADAHOC_COUNTY_ME.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAGADAHOC_COUNTY_ME.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAGADAHOC_COUNTY_ME.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAGADAHOC_COUNTY_ME.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NASSAU_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NASSAU_COUNTY_NY", - "description": null, - "label": "NASSAU COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NASSAU_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NASSAU_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NASSAU_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NASSAU_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NASSAU_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NASSAU_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NASSAU_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NASSAU_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LARUE_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LARUE_COUNTY_KY", - "description": null, - "label": "LARUE COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LARUE_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LARUE_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LARUE_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LARUE_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LARUE_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LARUE_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LARUE_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LARUE_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_IN", - "description": null, - "label": "DECATUR COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DECATUR_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COVINGTON_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COVINGTON_COUNTY_AL", - "description": null, - "label": "COVINGTON COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COVINGTON_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COVINGTON_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COVINGTON_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COVINGTON_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COVINGTON_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COVINGTON_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COVINGTON_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COVINGTON_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAJARDO_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAJARDO_MUNICIPIO_PR", - "description": null, - "label": "FAJARDO MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAJARDO_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAJARDO_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAJARDO_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAJARDO_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAJARDO_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAJARDO_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAJARDO_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAJARDO_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAGUACHE_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAGUACHE_COUNTY_CO", - "description": null, - "label": "SAGUACHE COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAGUACHE_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAGUACHE_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAGUACHE_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAGUACHE_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAGUACHE_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAGUACHE_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAGUACHE_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAGUACHE_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEARWATER_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEARWATER_COUNTY_MN", - "description": null, - "label": "CLEARWATER COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEARWATER_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEARWATER_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEARWATER_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEARWATER_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEARWATER_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEARWATER_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEARWATER_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEARWATER_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUCKER_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUCKER_COUNTY_WV", - "description": null, - "label": "TUCKER COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUCKER_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUCKER_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUCKER_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUCKER_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUCKER_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUCKER_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUCKER_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUCKER_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKTIBBEHA_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKTIBBEHA_COUNTY_MS", - "description": null, - "label": "OKTIBBEHA COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKTIBBEHA_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKTIBBEHA_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKTIBBEHA_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKTIBBEHA_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKTIBBEHA_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKTIBBEHA_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKTIBBEHA_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKTIBBEHA_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_TX", - "description": null, - "label": "MARION COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARION_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPSHIRE_COUNTY_MA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPSHIRE_COUNTY_MA", - "description": null, - "label": "HAMPSHIRE COUNTY MA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPSHIRE_COUNTY_MA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPSHIRE_COUNTY_MA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPSHIRE_COUNTY_MA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPSHIRE_COUNTY_MA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPSHIRE_COUNTY_MA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPSHIRE_COUNTY_MA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPSHIRE_COUNTY_MA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMPSHIRE_COUNTY_MA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COKE_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COKE_COUNTY_TX", - "description": null, - "label": "COKE COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COKE_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COKE_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COKE_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COKE_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COKE_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COKE_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COKE_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COKE_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEELE_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEELE_COUNTY_MN", - "description": null, - "label": "STEELE COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEELE_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEELE_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEELE_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEELE_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEELE_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEELE_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEELE_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEELE_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_AL", - "description": null, - "label": "MORGAN COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSCEOLA_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSCEOLA_COUNTY_FL", - "description": null, - "label": "OSCEOLA COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSCEOLA_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSCEOLA_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSCEOLA_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSCEOLA_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSCEOLA_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSCEOLA_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSCEOLA_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSCEOLA_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACOMB_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACOMB_COUNTY_MI", - "description": null, - "label": "MACOMB COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACOMB_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACOMB_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACOMB_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACOMB_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACOMB_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACOMB_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACOMB_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACOMB_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIOUX_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIOUX_COUNTY_ND", - "description": null, - "label": "SIOUX COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIOUX_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIOUX_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIOUX_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIOUX_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIOUX_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIOUX_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIOUX_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIOUX_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.REYNOLDS_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.REYNOLDS_COUNTY_MO", - "description": null, - "label": "REYNOLDS COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.REYNOLDS_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.REYNOLDS_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.REYNOLDS_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.REYNOLDS_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.REYNOLDS_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.REYNOLDS_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.REYNOLDS_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.REYNOLDS_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EFFINGHAM_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EFFINGHAM_COUNTY_IL", - "description": null, - "label": "EFFINGHAM COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EFFINGHAM_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EFFINGHAM_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EFFINGHAM_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EFFINGHAM_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EFFINGHAM_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EFFINGHAM_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EFFINGHAM_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EFFINGHAM_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COMAL_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COMAL_COUNTY_TX", - "description": null, - "label": "COMAL COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COMAL_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COMAL_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COMAL_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COMAL_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COMAL_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COMAL_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COMAL_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COMAL_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_KY", - "description": null, - "label": "WEBSTER COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_PA", - "description": null, - "label": "UNION COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_KS", - "description": null, - "label": "ANDERSON COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDERSON_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAVERICK_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAVERICK_COUNTY_TX", - "description": null, - "label": "MAVERICK COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAVERICK_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAVERICK_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAVERICK_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAVERICK_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAVERICK_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAVERICK_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAVERICK_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MAVERICK_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEXANDER_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEXANDER_COUNTY_IL", - "description": null, - "label": "ALEXANDER COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEXANDER_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEXANDER_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEXANDER_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEXANDER_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEXANDER_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEXANDER_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEXANDER_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALEXANDER_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ERIE_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ERIE_COUNTY_PA", - "description": null, - "label": "ERIE COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ERIE_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ERIE_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ERIE_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ERIE_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ERIE_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ERIE_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ERIE_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ERIE_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_GA", - "description": null, - "label": "HOUSTON COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOUSTON_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHERRY_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHERRY_COUNTY_NE", - "description": null, - "label": "CHERRY COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHERRY_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHERRY_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHERRY_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHERRY_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHERRY_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHERRY_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHERRY_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHERRY_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_IA", - "description": null, - "label": "MARSHALL COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_GA", - "description": null, - "label": "RANDOLPH COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLYNN_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLYNN_COUNTY_GA", - "description": null, - "label": "GLYNN COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLYNN_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLYNN_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLYNN_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLYNN_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLYNN_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLYNN_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLYNN_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLYNN_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKINSON_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKINSON_COUNTY_MI", - "description": null, - "label": "DICKINSON COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKINSON_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKINSON_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKINSON_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKINSON_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKINSON_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKINSON_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKINSON_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKINSON_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEDFORD_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEDFORD_COUNTY_TN", - "description": null, - "label": "BEDFORD COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEDFORD_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEDFORD_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEDFORD_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEDFORD_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEDFORD_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEDFORD_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEDFORD_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEDFORD_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEYENNE_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEYENNE_COUNTY_KS", - "description": null, - "label": "CHEYENNE COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEYENNE_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEYENNE_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEYENNE_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEYENNE_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEYENNE_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEYENNE_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEYENNE_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEYENNE_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENNETT_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENNETT_COUNTY_SD", - "description": null, - "label": "BENNETT COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENNETT_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENNETT_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENNETT_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENNETT_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENNETT_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENNETT_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENNETT_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENNETT_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWESHIEK_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWESHIEK_COUNTY_IA", - "description": null, - "label": "POWESHIEK COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWESHIEK_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWESHIEK_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWESHIEK_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWESHIEK_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWESHIEK_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWESHIEK_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWESHIEK_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWESHIEK_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUREAU_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUREAU_COUNTY_IL", - "description": null, - "label": "BUREAU COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUREAU_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUREAU_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUREAU_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUREAU_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUREAU_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUREAU_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUREAU_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUREAU_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_NE", - "description": null, - "label": "CASS COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COCKE_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COCKE_COUNTY_TN", - "description": null, - "label": "COCKE COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COCKE_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COCKE_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COCKE_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COCKE_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COCKE_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COCKE_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COCKE_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COCKE_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANTON_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANTON_COUNTY_KS", - "description": null, - "label": "STANTON COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANTON_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANTON_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANTON_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANTON_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANTON_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANTON_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANTON_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANTON_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_WV", - "description": null, - "label": "RANDOLPH COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_PINE_COUNTY_NV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_PINE_COUNTY_NV", - "description": null, - "label": "WHITE PINE COUNTY NV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_PINE_COUNTY_NV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_PINE_COUNTY_NV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_PINE_COUNTY_NV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_PINE_COUNTY_NV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_PINE_COUNTY_NV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_PINE_COUNTY_NV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_PINE_COUNTY_NV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_PINE_COUNTY_NV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_TX", - "description": null, - "label": "CASS COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TODD_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TODD_COUNTY_SD", - "description": null, - "label": "TODD COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TODD_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TODD_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TODD_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TODD_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TODD_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TODD_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TODD_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TODD_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_NE", - "description": null, - "label": "CUSTER COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREGORY_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREGORY_COUNTY_NE", - "description": null, - "label": "GREGORY COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREGORY_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREGORY_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREGORY_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREGORY_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREGORY_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREGORY_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREGORY_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREGORY_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAY_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAY_COUNTY_TX", - "description": null, - "label": "GRAY COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAY_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAY_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAY_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAY_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAY_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAY_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAY_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAY_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_GA", - "description": null, - "label": "FRANKLIN COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHENANDOAH_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHENANDOAH_COUNTY_VA", - "description": null, - "label": "SHENANDOAH COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHENANDOAH_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHENANDOAH_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHENANDOAH_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHENANDOAH_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHENANDOAH_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHENANDOAH_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHENANDOAH_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHENANDOAH_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMITH_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMITH_COUNTY_KS", - "description": null, - "label": "SMITH COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMITH_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMITH_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMITH_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMITH_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMITH_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMITH_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMITH_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SMITH_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUNEAU_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUNEAU_COUNTY_WI", - "description": null, - "label": "JUNEAU COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUNEAU_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUNEAU_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUNEAU_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUNEAU_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUNEAU_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUNEAU_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUNEAU_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JUNEAU_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_GA", - "description": null, - "label": "FULTON COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FERGUS_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FERGUS_COUNTY_MT", - "description": null, - "label": "FERGUS COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FERGUS_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FERGUS_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FERGUS_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FERGUS_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FERGUS_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FERGUS_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FERGUS_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FERGUS_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEAF_SMITH_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEAF_SMITH_COUNTY_TX", - "description": null, - "label": "DEAF SMITH COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEAF_SMITH_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEAF_SMITH_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEAF_SMITH_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEAF_SMITH_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEAF_SMITH_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEAF_SMITH_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEAF_SMITH_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEAF_SMITH_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISCOE_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISCOE_COUNTY_TX", - "description": null, - "label": "BRISCOE COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISCOE_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISCOE_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISCOE_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISCOE_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISCOE_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISCOE_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISCOE_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISCOE_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CULLMAN_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CULLMAN_COUNTY_AL", - "description": null, - "label": "CULLMAN COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CULLMAN_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CULLMAN_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CULLMAN_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CULLMAN_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CULLMAN_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CULLMAN_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CULLMAN_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CULLMAN_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_MO", - "description": null, - "label": "GREENE COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_KY", - "description": null, - "label": "CLINTON COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_OH", - "description": null, - "label": "JACKSON COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_PA", - "description": null, - "label": "MONTGOMERY COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARBON_COUNTY_WY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARBON_COUNTY_WY", - "description": null, - "label": "CARBON COUNTY WY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARBON_COUNTY_WY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARBON_COUNTY_WY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARBON_COUNTY_WY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARBON_COUNTY_WY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARBON_COUNTY_WY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARBON_COUNTY_WY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARBON_COUNTY_WY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARBON_COUNTY_WY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TODD_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TODD_COUNTY_MN", - "description": null, - "label": "TODD COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TODD_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TODD_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TODD_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TODD_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TODD_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TODD_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TODD_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TODD_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRADLEY_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRADLEY_COUNTY_TN", - "description": null, - "label": "BRADLEY COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRADLEY_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRADLEY_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRADLEY_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRADLEY_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRADLEY_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRADLEY_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRADLEY_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRADLEY_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.O_BRIEN_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.O_BRIEN_COUNTY_IA", - "description": null, - "label": "O BRIEN COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.O_BRIEN_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.O_BRIEN_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.O_BRIEN_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.O_BRIEN_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.O_BRIEN_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.O_BRIEN_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.O_BRIEN_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.O_BRIEN_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENLEE_COUNTY_AZ": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENLEE_COUNTY_AZ", - "description": null, - "label": "GREENLEE COUNTY AZ", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENLEE_COUNTY_AZ.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENLEE_COUNTY_AZ.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENLEE_COUNTY_AZ.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENLEE_COUNTY_AZ.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENLEE_COUNTY_AZ.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENLEE_COUNTY_AZ.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENLEE_COUNTY_AZ.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENLEE_COUNTY_AZ.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_FL", - "description": null, - "label": "LEE COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLECKLEY_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLECKLEY_COUNTY_GA", - "description": null, - "label": "BLECKLEY COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLECKLEY_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLECKLEY_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLECKLEY_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLECKLEY_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLECKLEY_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLECKLEY_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLECKLEY_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLECKLEY_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOLANO_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOLANO_COUNTY_CA", - "description": null, - "label": "SOLANO COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOLANO_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOLANO_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOLANO_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOLANO_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOLANO_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOLANO_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOLANO_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOLANO_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROADWATER_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROADWATER_COUNTY_MT", - "description": null, - "label": "BROADWATER COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROADWATER_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROADWATER_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROADWATER_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROADWATER_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROADWATER_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROADWATER_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROADWATER_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROADWATER_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UPSON_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UPSON_COUNTY_GA", - "description": null, - "label": "UPSON COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UPSON_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UPSON_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UPSON_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UPSON_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UPSON_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UPSON_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UPSON_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UPSON_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDRY_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDRY_COUNTY_FL", - "description": null, - "label": "HENDRY COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDRY_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDRY_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDRY_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDRY_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDRY_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDRY_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDRY_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDRY_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAWLINS_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAWLINS_COUNTY_KS", - "description": null, - "label": "RAWLINS COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAWLINS_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAWLINS_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAWLINS_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAWLINS_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAWLINS_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAWLINS_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAWLINS_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAWLINS_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREEBORN_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREEBORN_COUNTY_MN", - "description": null, - "label": "FREEBORN COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREEBORN_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREEBORN_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREEBORN_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREEBORN_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREEBORN_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREEBORN_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREEBORN_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREEBORN_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_MN", - "description": null, - "label": "BROWN COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURLESON_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURLESON_COUNTY_TX", - "description": null, - "label": "BURLESON COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURLESON_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURLESON_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURLESON_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURLESON_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURLESON_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURLESON_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURLESON_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURLESON_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_GA", - "description": null, - "label": "DOUGLAS COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUQUILLO_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUQUILLO_MUNICIPIO_PR", - "description": null, - "label": "LUQUILLO MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUQUILLO_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUQUILLO_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUQUILLO_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUQUILLO_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUQUILLO_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUQUILLO_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUQUILLO_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUQUILLO_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINERAL_COUNTY_NV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINERAL_COUNTY_NV", - "description": null, - "label": "MINERAL COUNTY NV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINERAL_COUNTY_NV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINERAL_COUNTY_NV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINERAL_COUNTY_NV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINERAL_COUNTY_NV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINERAL_COUNTY_NV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINERAL_COUNTY_NV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINERAL_COUNTY_NV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINERAL_COUNTY_NV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELKNAP_COUNTY_NH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELKNAP_COUNTY_NH", - "description": null, - "label": "BELKNAP COUNTY NH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELKNAP_COUNTY_NH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELKNAP_COUNTY_NH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELKNAP_COUNTY_NH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELKNAP_COUNTY_NH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELKNAP_COUNTY_NH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELKNAP_COUNTY_NH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELKNAP_COUNTY_NH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BELKNAP_COUNTY_NH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEELANAU_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEELANAU_COUNTY_MI", - "description": null, - "label": "LEELANAU COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEELANAU_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEELANAU_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEELANAU_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEELANAU_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEELANAU_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEELANAU_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEELANAU_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEELANAU_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MECOSTA_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MECOSTA_COUNTY_MI", - "description": null, - "label": "MECOSTA COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MECOSTA_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MECOSTA_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MECOSTA_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MECOSTA_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MECOSTA_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MECOSTA_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MECOSTA_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MECOSTA_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SONOMA_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SONOMA_COUNTY_CA", - "description": null, - "label": "SONOMA COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SONOMA_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SONOMA_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SONOMA_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SONOMA_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SONOMA_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SONOMA_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SONOMA_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SONOMA_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAZOO_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAZOO_COUNTY_MS", - "description": null, - "label": "YAZOO COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAZOO_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAZOO_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAZOO_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAZOO_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAZOO_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAZOO_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAZOO_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAZOO_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POPE_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POPE_COUNTY_AR", - "description": null, - "label": "POPE COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POPE_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POPE_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POPE_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POPE_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POPE_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POPE_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POPE_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POPE_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRUNDY_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRUNDY_COUNTY_IL", - "description": null, - "label": "GRUNDY COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRUNDY_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRUNDY_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRUNDY_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRUNDY_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRUNDY_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRUNDY_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRUNDY_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRUNDY_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_KS", - "description": null, - "label": "BUTLER COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODFORD_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODFORD_COUNTY_KY", - "description": null, - "label": "WOODFORD COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODFORD_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODFORD_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODFORD_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODFORD_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODFORD_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODFORD_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODFORD_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODFORD_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILWAUKEE_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILWAUKEE_COUNTY_WI", - "description": null, - "label": "MILWAUKEE COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILWAUKEE_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILWAUKEE_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILWAUKEE_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILWAUKEE_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILWAUKEE_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILWAUKEE_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILWAUKEE_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILWAUKEE_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OREGON_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OREGON_COUNTY_MO", - "description": null, - "label": "OREGON COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OREGON_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OREGON_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OREGON_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OREGON_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OREGON_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OREGON_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OREGON_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OREGON_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAULDING_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAULDING_COUNTY_OH", - "description": null, - "label": "PAULDING COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAULDING_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAULDING_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAULDING_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAULDING_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAULDING_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAULDING_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAULDING_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAULDING_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_ME": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_ME", - "description": null, - "label": "YORK COUNTY ME", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_ME.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_ME.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_ME.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_ME.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_ME.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_ME.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_ME.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_ME.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUCAS_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUCAS_COUNTY_IA", - "description": null, - "label": "LUCAS COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUCAS_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUCAS_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUCAS_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUCAS_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUCAS_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUCAS_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUCAS_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUCAS_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_MN", - "description": null, - "label": "JACKSON COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAWYER_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAWYER_COUNTY_WI", - "description": null, - "label": "SAWYER COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAWYER_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAWYER_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAWYER_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAWYER_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAWYER_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAWYER_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAWYER_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAWYER_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MELLETTE_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MELLETTE_COUNTY_SD", - "description": null, - "label": "MELLETTE COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MELLETTE_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MELLETTE_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MELLETTE_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MELLETTE_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MELLETTE_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MELLETTE_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MELLETTE_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MELLETTE_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LESLIE_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LESLIE_COUNTY_KY", - "description": null, - "label": "LESLIE COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LESLIE_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LESLIE_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LESLIE_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LESLIE_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LESLIE_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LESLIE_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LESLIE_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LESLIE_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOWNDES_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOWNDES_COUNTY_MS", - "description": null, - "label": "LOWNDES COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOWNDES_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOWNDES_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOWNDES_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOWNDES_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOWNDES_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOWNDES_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOWNDES_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOWNDES_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_TX", - "description": null, - "label": "HAMILTON COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_OF_WALES_HYDER_CENSUS_AREA_AK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_OF_WALES_HYDER_CENSUS_AREA_AK", - "description": null, - "label": "PRINCE OF WALES HYDER CENSUS AREA AK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_OF_WALES_HYDER_CENSUS_AREA_AK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_OF_WALES_HYDER_CENSUS_AREA_AK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_OF_WALES_HYDER_CENSUS_AREA_AK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_OF_WALES_HYDER_CENSUS_AREA_AK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_OF_WALES_HYDER_CENSUS_AREA_AK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_OF_WALES_HYDER_CENSUS_AREA_AK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_OF_WALES_HYDER_CENSUS_AREA_AK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_OF_WALES_HYDER_CENSUS_AREA_AK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANASSAS_PARK_CITY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANASSAS_PARK_CITY_VA", - "description": null, - "label": "MANASSAS PARK CITY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANASSAS_PARK_CITY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANASSAS_PARK_CITY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANASSAS_PARK_CITY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANASSAS_PARK_CITY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANASSAS_PARK_CITY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANASSAS_PARK_CITY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANASSAS_PARK_CITY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MANASSAS_PARK_CITY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PATRICK_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PATRICK_COUNTY_VA", - "description": null, - "label": "PATRICK COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PATRICK_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PATRICK_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PATRICK_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PATRICK_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PATRICK_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PATRICK_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PATRICK_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PATRICK_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOBLE_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOBLE_COUNTY_IN", - "description": null, - "label": "NOBLE COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOBLE_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOBLE_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOBLE_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOBLE_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOBLE_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOBLE_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOBLE_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOBLE_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCHANAN_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCHANAN_COUNTY_MO", - "description": null, - "label": "BUCHANAN COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCHANAN_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCHANAN_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCHANAN_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCHANAN_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCHANAN_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCHANAN_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCHANAN_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCHANAN_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COCHRAN_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COCHRAN_COUNTY_TX", - "description": null, - "label": "COCHRAN COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COCHRAN_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COCHRAN_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COCHRAN_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COCHRAN_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COCHRAN_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COCHRAN_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COCHRAN_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COCHRAN_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_AL", - "description": null, - "label": "CALHOUN COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESCAMBIA_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESCAMBIA_COUNTY_AL", - "description": null, - "label": "ESCAMBIA COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESCAMBIA_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESCAMBIA_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESCAMBIA_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESCAMBIA_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESCAMBIA_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESCAMBIA_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESCAMBIA_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESCAMBIA_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LONG_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LONG_COUNTY_GA", - "description": null, - "label": "LONG COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LONG_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LONG_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LONG_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LONG_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LONG_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LONG_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LONG_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LONG_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MURRAY_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MURRAY_COUNTY_GA", - "description": null, - "label": "MURRAY COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MURRAY_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MURRAY_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MURRAY_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MURRAY_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MURRAY_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MURRAY_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MURRAY_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MURRAY_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_CASTLE_COUNTY_MD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_CASTLE_COUNTY_MD", - "description": null, - "label": "NEW CASTLE COUNTY MD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_CASTLE_COUNTY_MD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_CASTLE_COUNTY_MD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_CASTLE_COUNTY_MD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_CASTLE_COUNTY_MD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_CASTLE_COUNTY_MD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_CASTLE_COUNTY_MD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_CASTLE_COUNTY_MD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_CASTLE_COUNTY_MD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_WV", - "description": null, - "label": "GRANT COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLQUITT_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLQUITT_COUNTY_GA", - "description": null, - "label": "COLQUITT COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLQUITT_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLQUITT_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLQUITT_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLQUITT_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLQUITT_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLQUITT_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLQUITT_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLQUITT_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COTTON_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COTTON_COUNTY_OK", - "description": null, - "label": "COTTON COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COTTON_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COTTON_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COTTON_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COTTON_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COTTON_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COTTON_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COTTON_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COTTON_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TERRELL_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TERRELL_COUNTY_GA", - "description": null, - "label": "TERRELL COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TERRELL_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TERRELL_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TERRELL_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TERRELL_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TERRELL_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TERRELL_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TERRELL_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TERRELL_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHISAGO_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHISAGO_COUNTY_MN", - "description": null, - "label": "CHISAGO COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHISAGO_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHISAGO_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHISAGO_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHISAGO_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHISAGO_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHISAGO_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHISAGO_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHISAGO_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_TX", - "description": null, - "label": "CHEROKEE COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEMINOLE_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEMINOLE_COUNTY_FL", - "description": null, - "label": "SEMINOLE COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEMINOLE_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEMINOLE_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEMINOLE_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEMINOLE_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEMINOLE_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEMINOLE_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEMINOLE_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEMINOLE_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_TX", - "description": null, - "label": "KENT COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_IA", - "description": null, - "label": "HARDIN COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_TN", - "description": null, - "label": "WHITE COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LABETTE_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LABETTE_COUNTY_KS", - "description": null, - "label": "LABETTE COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LABETTE_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LABETTE_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LABETTE_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LABETTE_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LABETTE_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LABETTE_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LABETTE_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LABETTE_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EVANS_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EVANS_COUNTY_GA", - "description": null, - "label": "EVANS COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EVANS_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EVANS_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EVANS_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EVANS_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EVANS_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EVANS_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EVANS_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EVANS_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_PA", - "description": null, - "label": "LAWRENCE COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SABANA_GRANDE_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SABANA_GRANDE_MUNICIPIO_PR", - "description": null, - "label": "SABANA GRANDE MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SABANA_GRANDE_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SABANA_GRANDE_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SABANA_GRANDE_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SABANA_GRANDE_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SABANA_GRANDE_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SABANA_GRANDE_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SABANA_GRANDE_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SABANA_GRANDE_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_GEORGE_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_GEORGE_COUNTY_VA", - "description": null, - "label": "KING GEORGE COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_GEORGE_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_GEORGE_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_GEORGE_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_GEORGE_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_GEORGE_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_GEORGE_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_GEORGE_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KING_GEORGE_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTSEGO_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTSEGO_COUNTY_NY", - "description": null, - "label": "OTSEGO COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTSEGO_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTSEGO_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTSEGO_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTSEGO_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTSEGO_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTSEGO_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTSEGO_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTSEGO_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUERFANO_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUERFANO_COUNTY_CO", - "description": null, - "label": "HUERFANO COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUERFANO_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUERFANO_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUERFANO_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUERFANO_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUERFANO_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUERFANO_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUERFANO_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUERFANO_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOORE_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOORE_COUNTY_TN", - "description": null, - "label": "MOORE COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOORE_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOORE_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOORE_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOORE_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOORE_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOORE_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOORE_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOORE_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_MN", - "description": null, - "label": "CASS COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAYES_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAYES_COUNTY_NE", - "description": null, - "label": "HAYES COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAYES_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAYES_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAYES_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAYES_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAYES_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAYES_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAYES_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAYES_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENOSHA_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENOSHA_COUNTY_WI", - "description": null, - "label": "KENOSHA COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENOSHA_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENOSHA_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENOSHA_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENOSHA_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENOSHA_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENOSHA_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENOSHA_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENOSHA_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_IL", - "description": null, - "label": "WAYNE COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_KY", - "description": null, - "label": "HARRISON COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLACIER_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLACIER_COUNTY_MT", - "description": null, - "label": "GLACIER COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLACIER_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLACIER_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLACIER_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLACIER_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLACIER_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLACIER_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLACIER_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLACIER_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATLANTIC_COUNTY_NJ": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATLANTIC_COUNTY_NJ", - "description": null, - "label": "ATLANTIC COUNTY NJ", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATLANTIC_COUNTY_NJ.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATLANTIC_COUNTY_NJ.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATLANTIC_COUNTY_NJ.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATLANTIC_COUNTY_NJ.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATLANTIC_COUNTY_NJ.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATLANTIC_COUNTY_NJ.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATLANTIC_COUNTY_NJ.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATLANTIC_COUNTY_NJ.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_KS", - "description": null, - "label": "LYON COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDROSCOGGIN_COUNTY_ME": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDROSCOGGIN_COUNTY_ME", - "description": null, - "label": "ANDROSCOGGIN COUNTY ME", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDROSCOGGIN_COUNTY_ME.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDROSCOGGIN_COUNTY_ME.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDROSCOGGIN_COUNTY_ME.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDROSCOGGIN_COUNTY_ME.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDROSCOGGIN_COUNTY_ME.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDROSCOGGIN_COUNTY_ME.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDROSCOGGIN_COUNTY_ME.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDROSCOGGIN_COUNTY_ME.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_IN", - "description": null, - "label": "ORANGE COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_IL", - "description": null, - "label": "JASPER COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARLAN_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARLAN_COUNTY_KY", - "description": null, - "label": "HARLAN COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARLAN_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARLAN_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARLAN_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARLAN_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARLAN_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARLAN_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARLAN_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARLAN_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MATHEWS_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MATHEWS_COUNTY_VA", - "description": null, - "label": "MATHEWS COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MATHEWS_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MATHEWS_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MATHEWS_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MATHEWS_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MATHEWS_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MATHEWS_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MATHEWS_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MATHEWS_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PROWERS_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PROWERS_COUNTY_CO", - "description": null, - "label": "PROWERS COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PROWERS_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PROWERS_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PROWERS_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PROWERS_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PROWERS_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PROWERS_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PROWERS_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PROWERS_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HICKORY_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HICKORY_COUNTY_MO", - "description": null, - "label": "HICKORY COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HICKORY_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HICKORY_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HICKORY_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HICKORY_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HICKORY_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HICKORY_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HICKORY_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HICKORY_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_MATEO_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_MATEO_COUNTY_CA", - "description": null, - "label": "SAN MATEO COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_MATEO_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_MATEO_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_MATEO_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_MATEO_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_MATEO_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_MATEO_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_MATEO_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_MATEO_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AROOSTOOK_COUNTY_ME": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AROOSTOOK_COUNTY_ME", - "description": null, - "label": "AROOSTOOK COUNTY ME", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AROOSTOOK_COUNTY_ME.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AROOSTOOK_COUNTY_ME.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AROOSTOOK_COUNTY_ME.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AROOSTOOK_COUNTY_ME.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AROOSTOOK_COUNTY_ME.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AROOSTOOK_COUNTY_ME.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AROOSTOOK_COUNTY_ME.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AROOSTOOK_COUNTY_ME.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEWARD_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEWARD_COUNTY_KS", - "description": null, - "label": "SEWARD COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEWARD_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEWARD_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEWARD_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEWARD_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEWARD_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEWARD_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEWARD_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEWARD_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_KS", - "description": null, - "label": "DOUGLAS COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_IL", - "description": null, - "label": "MADISON COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_MARY_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_MARY_PARISH_LA", - "description": null, - "label": "ST MARY PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_MARY_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_MARY_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_MARY_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_MARY_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_MARY_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_MARY_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_MARY_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_MARY_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WIBAUX_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WIBAUX_COUNTY_MT", - "description": null, - "label": "WIBAUX COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WIBAUX_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WIBAUX_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WIBAUX_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WIBAUX_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WIBAUX_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WIBAUX_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WIBAUX_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WIBAUX_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWIFT_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWIFT_COUNTY_MN", - "description": null, - "label": "SWIFT COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWIFT_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWIFT_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWIFT_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWIFT_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWIFT_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWIFT_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWIFT_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SWIFT_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPALDING_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPALDING_COUNTY_GA", - "description": null, - "label": "SPALDING COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPALDING_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPALDING_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPALDING_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPALDING_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPALDING_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPALDING_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPALDING_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPALDING_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINN_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINN_COUNTY_KS", - "description": null, - "label": "LINN COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINN_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINN_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINN_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINN_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINN_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINN_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINN_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINN_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHOE_COUNTY_NV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHOE_COUNTY_NV", - "description": null, - "label": "WASHOE COUNTY NV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHOE_COUNTY_NV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHOE_COUNTY_NV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHOE_COUNTY_NV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHOE_COUNTY_NV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHOE_COUNTY_NV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHOE_COUNTY_NV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHOE_COUNTY_NV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHOE_COUNTY_NV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_AR", - "description": null, - "label": "LAFAYETTE COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICE_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICE_COUNTY_MN", - "description": null, - "label": "RICE COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICE_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICE_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICE_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICE_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICE_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICE_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICE_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICE_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONCHO_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONCHO_COUNTY_TX", - "description": null, - "label": "CONCHO COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONCHO_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONCHO_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONCHO_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONCHO_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONCHO_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONCHO_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONCHO_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONCHO_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_TN", - "description": null, - "label": "HAMILTON COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COFFEE_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COFFEE_COUNTY_TN", - "description": null, - "label": "COFFEE COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COFFEE_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COFFEE_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COFFEE_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COFFEE_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COFFEE_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COFFEE_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COFFEE_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COFFEE_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTS_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTS_COUNTY_MN", - "description": null, - "label": "ROBERTS COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTS_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTS_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTS_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTS_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTS_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTS_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTS_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTS_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRESNO_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRESNO_COUNTY_CA", - "description": null, - "label": "FRESNO COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRESNO_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRESNO_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRESNO_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRESNO_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRESNO_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRESNO_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRESNO_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRESNO_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_AR", - "description": null, - "label": "COLUMBIA COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUITMAN_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUITMAN_COUNTY_GA", - "description": null, - "label": "QUITMAN COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUITMAN_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUITMAN_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUITMAN_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUITMAN_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUITMAN_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUITMAN_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUITMAN_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUITMAN_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_FL", - "description": null, - "label": "JEFFERSON COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CLAIR_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CLAIR_COUNTY_MO", - "description": null, - "label": "ST CLAIR COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CLAIR_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CLAIR_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CLAIR_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CLAIR_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CLAIR_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CLAIR_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CLAIR_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CLAIR_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_AR", - "description": null, - "label": "BOONE COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.REAL_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.REAL_COUNTY_TX", - "description": null, - "label": "REAL COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.REAL_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.REAL_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.REAL_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.REAL_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.REAL_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.REAL_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.REAL_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.REAL_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_ND", - "description": null, - "label": "SHERIDAN COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOOD_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOOD_COUNTY_WI", - "description": null, - "label": "WOOD COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOOD_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOOD_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOOD_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOOD_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOOD_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOOD_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOOD_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOOD_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_MO", - "description": null, - "label": "CLAY COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAND_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAND_COUNTY_SD", - "description": null, - "label": "HAND COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAND_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAND_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAND_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAND_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAND_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAND_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAND_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAND_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_KY", - "description": null, - "label": "MARTIN COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARTIN_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMTER_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMTER_COUNTY_AL", - "description": null, - "label": "SUMTER COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMTER_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMTER_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMTER_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMTER_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMTER_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMTER_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMTER_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMTER_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_MO", - "description": null, - "label": "BOONE COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMING_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMING_COUNTY_NE", - "description": null, - "label": "CUMING COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMING_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMING_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMING_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMING_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMING_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMING_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMING_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMING_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALLAPOOSA_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALLAPOOSA_COUNTY_AL", - "description": null, - "label": "TALLAPOOSA COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALLAPOOSA_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALLAPOOSA_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALLAPOOSA_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALLAPOOSA_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALLAPOOSA_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALLAPOOSA_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALLAPOOSA_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALLAPOOSA_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEDINA_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEDINA_COUNTY_TX", - "description": null, - "label": "MEDINA COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEDINA_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEDINA_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEDINA_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEDINA_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEDINA_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEDINA_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEDINA_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEDINA_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONEJOS_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONEJOS_COUNTY_CO", - "description": null, - "label": "CONEJOS COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONEJOS_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONEJOS_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONEJOS_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONEJOS_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONEJOS_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONEJOS_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONEJOS_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONEJOS_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_VA", - "description": null, - "label": "FRANKLIN COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALT_LAKE_COUNTY_UT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALT_LAKE_COUNTY_UT", - "description": null, - "label": "SALT LAKE COUNTY UT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALT_LAKE_COUNTY_UT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALT_LAKE_COUNTY_UT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALT_LAKE_COUNTY_UT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALT_LAKE_COUNTY_UT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALT_LAKE_COUNTY_UT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALT_LAKE_COUNTY_UT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALT_LAKE_COUNTY_UT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALT_LAKE_COUNTY_UT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIO_BLANCO_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIO_BLANCO_COUNTY_CO", - "description": null, - "label": "RIO BLANCO COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIO_BLANCO_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIO_BLANCO_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIO_BLANCO_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIO_BLANCO_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIO_BLANCO_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIO_BLANCO_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIO_BLANCO_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RIO_BLANCO_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_WA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_WA", - "description": null, - "label": "BENTON COUNTY WA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_WA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_WA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_WA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_WA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_WA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_WA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_WA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENTON_COUNTY_WA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTSON_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTSON_COUNTY_TN", - "description": null, - "label": "ROBERTSON COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTSON_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTSON_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTSON_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTSON_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTSON_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTSON_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTSON_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTSON_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOVE_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOVE_COUNTY_OK", - "description": null, - "label": "LOVE COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOVE_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOVE_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOVE_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOVE_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOVE_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOVE_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOVE_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOVE_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCPHERSON_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCPHERSON_COUNTY_KS", - "description": null, - "label": "MCPHERSON COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCPHERSON_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCPHERSON_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCPHERSON_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCPHERSON_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCPHERSON_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCPHERSON_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCPHERSON_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCPHERSON_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_TRAVERSE_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_TRAVERSE_COUNTY_MI", - "description": null, - "label": "GRAND TRAVERSE COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_TRAVERSE_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_TRAVERSE_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_TRAVERSE_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_TRAVERSE_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_TRAVERSE_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_TRAVERSE_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_TRAVERSE_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_TRAVERSE_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORFOLK_CITY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORFOLK_CITY_VA", - "description": null, - "label": "NORFOLK CITY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORFOLK_CITY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORFOLK_CITY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORFOLK_CITY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORFOLK_CITY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORFOLK_CITY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORFOLK_CITY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORFOLK_CITY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORFOLK_CITY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WATONWAN_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WATONWAN_COUNTY_MN", - "description": null, - "label": "WATONWAN COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WATONWAN_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WATONWAN_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WATONWAN_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WATONWAN_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WATONWAN_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WATONWAN_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WATONWAN_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WATONWAN_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BONNER_COUNTY_ID": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BONNER_COUNTY_ID", - "description": null, - "label": "BONNER COUNTY ID", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BONNER_COUNTY_ID.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BONNER_COUNTY_ID.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BONNER_COUNTY_ID.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BONNER_COUNTY_ID.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BONNER_COUNTY_ID.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BONNER_COUNTY_ID.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BONNER_COUNTY_ID.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BONNER_COUNTY_ID.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_NH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_NH", - "description": null, - "label": "CARROLL COUNTY NH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_NH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_NH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_NH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_NH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_NH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_NH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_NH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_NH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERKINS_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERKINS_COUNTY_ND", - "description": null, - "label": "PERKINS COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERKINS_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERKINS_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERKINS_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERKINS_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERKINS_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERKINS_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERKINS_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERKINS_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORREST_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORREST_COUNTY_MS", - "description": null, - "label": "FORREST COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORREST_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORREST_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORREST_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORREST_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORREST_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORREST_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORREST_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORREST_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_IL", - "description": null, - "label": "CALHOUN COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.APPLING_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.APPLING_COUNTY_GA", - "description": null, - "label": "APPLING COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.APPLING_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.APPLING_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.APPLING_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.APPLING_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.APPLING_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.APPLING_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.APPLING_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.APPLING_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARPER_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARPER_COUNTY_OK", - "description": null, - "label": "HARPER COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARPER_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARPER_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARPER_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARPER_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARPER_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARPER_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARPER_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARPER_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLDHAM_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLDHAM_COUNTY_TX", - "description": null, - "label": "OLDHAM COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLDHAM_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLDHAM_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLDHAM_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLDHAM_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLDHAM_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLDHAM_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLDHAM_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLDHAM_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_MS", - "description": null, - "label": "NEWTON COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_TN", - "description": null, - "label": "JACKSON COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TREUTLEN_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TREUTLEN_COUNTY_GA", - "description": null, - "label": "TREUTLEN COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TREUTLEN_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TREUTLEN_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TREUTLEN_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TREUTLEN_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TREUTLEN_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TREUTLEN_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TREUTLEN_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TREUTLEN_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CURRY_COUNTY_OR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CURRY_COUNTY_OR", - "description": null, - "label": "CURRY COUNTY OR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CURRY_COUNTY_OR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CURRY_COUNTY_OR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CURRY_COUNTY_OR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CURRY_COUNTY_OR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CURRY_COUNTY_OR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CURRY_COUNTY_OR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CURRY_COUNTY_OR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CURRY_COUNTY_OR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEDFORD_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEDFORD_COUNTY_PA", - "description": null, - "label": "BEDFORD COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEDFORD_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEDFORD_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEDFORD_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEDFORD_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEDFORD_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEDFORD_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEDFORD_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEDFORD_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_IA", - "description": null, - "label": "FRANKLIN COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAC_QUI_PARLE_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAC_QUI_PARLE_COUNTY_MN", - "description": null, - "label": "LAC QUI PARLE COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAC_QUI_PARLE_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAC_QUI_PARLE_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAC_QUI_PARLE_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAC_QUI_PARLE_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAC_QUI_PARLE_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAC_QUI_PARLE_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAC_QUI_PARLE_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAC_QUI_PARLE_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLDHAM_COUNTY_NM": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLDHAM_COUNTY_NM", - "description": null, - "label": "OLDHAM COUNTY NM", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLDHAM_COUNTY_NM.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLDHAM_COUNTY_NM.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLDHAM_COUNTY_NM.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLDHAM_COUNTY_NM.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLDHAM_COUNTY_NM.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLDHAM_COUNTY_NM.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLDHAM_COUNTY_NM.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OLDHAM_COUNTY_NM.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAINS_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAINS_COUNTY_TX", - "description": null, - "label": "RAINS COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAINS_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAINS_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAINS_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAINS_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAINS_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAINS_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAINS_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RAINS_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRIS_COUNTY_NJ": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRIS_COUNTY_NJ", - "description": null, - "label": "MORRIS COUNTY NJ", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRIS_COUNTY_NJ.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRIS_COUNTY_NJ.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRIS_COUNTY_NJ.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRIS_COUNTY_NJ.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRIS_COUNTY_NJ.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRIS_COUNTY_NJ.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRIS_COUNTY_NJ.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRIS_COUNTY_NJ.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEXINGTON_CITY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEXINGTON_CITY_VA", - "description": null, - "label": "LEXINGTON CITY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEXINGTON_CITY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEXINGTON_CITY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEXINGTON_CITY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEXINGTON_CITY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEXINGTON_CITY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEXINGTON_CITY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEXINGTON_CITY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEXINGTON_CITY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_OH", - "description": null, - "label": "CARROLL COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WRIGHT_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WRIGHT_COUNTY_IA", - "description": null, - "label": "WRIGHT COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WRIGHT_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WRIGHT_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WRIGHT_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WRIGHT_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WRIGHT_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WRIGHT_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WRIGHT_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WRIGHT_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CLAIR_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CLAIR_COUNTY_IL", - "description": null, - "label": "ST CLAIR COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CLAIR_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CLAIR_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CLAIR_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CLAIR_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CLAIR_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CLAIR_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CLAIR_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CLAIR_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRAILL_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRAILL_COUNTY_ND", - "description": null, - "label": "TRAILL COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRAILL_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRAILL_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRAILL_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRAILL_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRAILL_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRAILL_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRAILL_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRAILL_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAMBERG_COUNTY_SC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAMBERG_COUNTY_SC", - "description": null, - "label": "BAMBERG COUNTY SC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAMBERG_COUNTY_SC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAMBERG_COUNTY_SC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAMBERG_COUNTY_SC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAMBERG_COUNTY_SC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAMBERG_COUNTY_SC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAMBERG_COUNTY_SC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAMBERG_COUNTY_SC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAMBERG_COUNTY_SC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KERR_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KERR_COUNTY_TX", - "description": null, - "label": "KERR COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KERR_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KERR_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KERR_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KERR_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KERR_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KERR_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KERR_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KERR_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERSET_COUNTY_ME": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERSET_COUNTY_ME", - "description": null, - "label": "SOMERSET COUNTY ME", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERSET_COUNTY_ME.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERSET_COUNTY_ME.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERSET_COUNTY_ME.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERSET_COUNTY_ME.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERSET_COUNTY_ME.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERSET_COUNTY_ME.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERSET_COUNTY_ME.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERSET_COUNTY_ME.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAKIMA_COUNTY_WA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAKIMA_COUNTY_WA", - "description": null, - "label": "YAKIMA COUNTY WA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAKIMA_COUNTY_WA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAKIMA_COUNTY_WA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAKIMA_COUNTY_WA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAKIMA_COUNTY_WA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAKIMA_COUNTY_WA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAKIMA_COUNTY_WA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAKIMA_COUNTY_WA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAKIMA_COUNTY_WA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_MS", - "description": null, - "label": "LINCOLN COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALBANY_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALBANY_COUNTY_NY", - "description": null, - "label": "ALBANY COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALBANY_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALBANY_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALBANY_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALBANY_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALBANY_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALBANY_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALBANY_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALBANY_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARLAND_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARLAND_COUNTY_AR", - "description": null, - "label": "GARLAND COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARLAND_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARLAND_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARLAND_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARLAND_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARLAND_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARLAND_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARLAND_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARLAND_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORCESTER_COUNTY_MA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORCESTER_COUNTY_MA", - "description": null, - "label": "WORCESTER COUNTY MA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORCESTER_COUNTY_MA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORCESTER_COUNTY_MA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORCESTER_COUNTY_MA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORCESTER_COUNTY_MA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORCESTER_COUNTY_MA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORCESTER_COUNTY_MA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORCESTER_COUNTY_MA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORCESTER_COUNTY_MA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOWNS_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOWNS_COUNTY_GA", - "description": null, - "label": "TOWNS COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOWNS_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOWNS_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOWNS_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOWNS_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOWNS_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOWNS_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOWNS_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TOWNS_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTOUR_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTOUR_COUNTY_PA", - "description": null, - "label": "MONTOUR COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTOUR_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTOUR_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTOUR_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTOUR_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTOUR_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTOUR_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTOUR_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTOUR_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONTONAGON_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONTONAGON_COUNTY_MI", - "description": null, - "label": "ONTONAGON COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONTONAGON_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONTONAGON_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONTONAGON_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONTONAGON_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONTONAGON_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONTONAGON_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONTONAGON_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONTONAGON_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_IN", - "description": null, - "label": "BROWN COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAUDERDALE_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAUDERDALE_COUNTY_MS", - "description": null, - "label": "LAUDERDALE COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAUDERDALE_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAUDERDALE_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAUDERDALE_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAUDERDALE_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAUDERDALE_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAUDERDALE_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAUDERDALE_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAUDERDALE_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_KS", - "description": null, - "label": "SCOTT COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORD_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORD_COUNTY_KS", - "description": null, - "label": "FORD COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORD_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORD_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORD_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORD_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORD_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORD_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORD_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORD_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDDY_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDDY_COUNTY_ND", - "description": null, - "label": "EDDY COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDDY_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDDY_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDDY_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDDY_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDDY_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDDY_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDDY_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDDY_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIMA_COUNTY_AZ": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIMA_COUNTY_AZ", - "description": null, - "label": "PIMA COUNTY AZ", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIMA_COUNTY_AZ.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIMA_COUNTY_AZ.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIMA_COUNTY_AZ.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIMA_COUNTY_AZ.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIMA_COUNTY_AZ.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIMA_COUNTY_AZ.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIMA_COUNTY_AZ.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIMA_COUNTY_AZ.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_CO", - "description": null, - "label": "JEFFERSON COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLAMAKEE_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLAMAKEE_COUNTY_IA", - "description": null, - "label": "ALLAMAKEE COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLAMAKEE_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLAMAKEE_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLAMAKEE_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLAMAKEE_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLAMAKEE_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLAMAKEE_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLAMAKEE_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLAMAKEE_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MISSAUKEE_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MISSAUKEE_COUNTY_MI", - "description": null, - "label": "MISSAUKEE COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MISSAUKEE_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MISSAUKEE_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MISSAUKEE_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MISSAUKEE_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MISSAUKEE_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MISSAUKEE_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MISSAUKEE_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MISSAUKEE_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAPORTE_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAPORTE_COUNTY_IN", - "description": null, - "label": "LAPORTE COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAPORTE_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAPORTE_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAPORTE_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAPORTE_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAPORTE_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAPORTE_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAPORTE_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAPORTE_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAAKON_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAAKON_COUNTY_SD", - "description": null, - "label": "HAAKON COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAAKON_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAAKON_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAAKON_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAAKON_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAAKON_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAAKON_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAAKON_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAAKON_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEBURNE_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEBURNE_COUNTY_AR", - "description": null, - "label": "CLEBURNE COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEBURNE_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEBURNE_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEBURNE_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEBURNE_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEBURNE_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEBURNE_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEBURNE_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLEBURNE_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKINLEY_COUNTY_NM": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKINLEY_COUNTY_NM", - "description": null, - "label": "MCKINLEY COUNTY NM", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKINLEY_COUNTY_NM.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKINLEY_COUNTY_NM.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKINLEY_COUNTY_NM.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKINLEY_COUNTY_NM.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKINLEY_COUNTY_NM.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKINLEY_COUNTY_NM.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKINLEY_COUNTY_NM.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKINLEY_COUNTY_NM.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CHARLES_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CHARLES_PARISH_LA", - "description": null, - "label": "ST CHARLES PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CHARLES_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CHARLES_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CHARLES_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CHARLES_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CHARLES_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CHARLES_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CHARLES_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_CHARLES_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IDAHO_COUNTY_ID": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IDAHO_COUNTY_ID", - "description": null, - "label": "IDAHO COUNTY ID", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IDAHO_COUNTY_ID.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IDAHO_COUNTY_ID.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IDAHO_COUNTY_ID.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IDAHO_COUNTY_ID.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IDAHO_COUNTY_ID.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IDAHO_COUNTY_ID.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IDAHO_COUNTY_ID.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IDAHO_COUNTY_ID.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSSELL_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSSELL_COUNTY_KY", - "description": null, - "label": "RUSSELL COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSSELL_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSSELL_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSSELL_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSSELL_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSSELL_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSSELL_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSSELL_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RUSSELL_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOONAH_ANGOON_CENSUS_AREA_AK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOONAH_ANGOON_CENSUS_AREA_AK", - "description": null, - "label": "HOONAH ANGOON CENSUS AREA AK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOONAH_ANGOON_CENSUS_AREA_AK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOONAH_ANGOON_CENSUS_AREA_AK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOONAH_ANGOON_CENSUS_AREA_AK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOONAH_ANGOON_CENSUS_AREA_AK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOONAH_ANGOON_CENSUS_AREA_AK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOONAH_ANGOON_CENSUS_AREA_AK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOONAH_ANGOON_CENSUS_AREA_AK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOONAH_ANGOON_CENSUS_AREA_AK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRIPP_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRIPP_COUNTY_SD", - "description": null, - "label": "TRIPP COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRIPP_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRIPP_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRIPP_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRIPP_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRIPP_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRIPP_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRIPP_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRIPP_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_NE", - "description": null, - "label": "ADAMS COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAMS_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEUBEN_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEUBEN_COUNTY_NY", - "description": null, - "label": "STEUBEN COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEUBEN_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEUBEN_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEUBEN_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEUBEN_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEUBEN_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEUBEN_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEUBEN_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEUBEN_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_OH", - "description": null, - "label": "SHELBY COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_KS", - "description": null, - "label": "SALINE COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALINE_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GASCONADE_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GASCONADE_COUNTY_MO", - "description": null, - "label": "GASCONADE COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GASCONADE_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GASCONADE_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GASCONADE_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GASCONADE_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GASCONADE_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GASCONADE_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GASCONADE_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GASCONADE_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_NJ": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_NJ", - "description": null, - "label": "MERCER COUNTY NJ", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_NJ.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_NJ.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_NJ.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_NJ.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_NJ.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_NJ.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_NJ.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_NJ.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAST_BATON_ROUGE_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAST_BATON_ROUGE_PARISH_LA", - "description": null, - "label": "EAST BATON ROUGE PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAST_BATON_ROUGE_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAST_BATON_ROUGE_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAST_BATON_ROUGE_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAST_BATON_ROUGE_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAST_BATON_ROUGE_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAST_BATON_ROUGE_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAST_BATON_ROUGE_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EAST_BATON_ROUGE_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_MN", - "description": null, - "label": "LINCOLN COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_IL", - "description": null, - "label": "DOUGLAS COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_AL", - "description": null, - "label": "PERRY COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUNENBURG_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUNENBURG_COUNTY_VA", - "description": null, - "label": "LUNENBURG COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUNENBURG_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUNENBURG_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUNENBURG_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUNENBURG_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUNENBURG_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUNENBURG_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUNENBURG_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUNENBURG_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_MADRID_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_MADRID_COUNTY_MO", - "description": null, - "label": "NEW MADRID COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_MADRID_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_MADRID_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_MADRID_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_MADRID_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_MADRID_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_MADRID_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_MADRID_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_MADRID_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_ME": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_ME", - "description": null, - "label": "CUMBERLAND COUNTY ME", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_ME.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_ME.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_ME.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_ME.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_ME.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_ME.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_ME.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUMBERLAND_COUNTY_ME.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TURNER_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TURNER_COUNTY_SD", - "description": null, - "label": "TURNER COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TURNER_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TURNER_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TURNER_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TURNER_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TURNER_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TURNER_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TURNER_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TURNER_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCONEE_COUNTY_SC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCONEE_COUNTY_SC", - "description": null, - "label": "OCONEE COUNTY SC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCONEE_COUNTY_SC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCONEE_COUNTY_SC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCONEE_COUNTY_SC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCONEE_COUNTY_SC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCONEE_COUNTY_SC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCONEE_COUNTY_SC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCONEE_COUNTY_SC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCONEE_COUNTY_SC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_CASTLE_COUNTY_DE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_CASTLE_COUNTY_DE", - "description": null, - "label": "NEW CASTLE COUNTY DE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_CASTLE_COUNTY_DE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_CASTLE_COUNTY_DE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_CASTLE_COUNTY_DE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_CASTLE_COUNTY_DE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_CASTLE_COUNTY_DE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_CASTLE_COUNTY_DE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_CASTLE_COUNTY_DE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEW_CASTLE_COUNTY_DE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_AL", - "description": null, - "label": "DALLAS COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAY_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAY_COUNTY_MI", - "description": null, - "label": "BAY COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAY_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAY_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAY_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAY_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAY_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAY_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAY_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAY_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTAWA_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTAWA_COUNTY_OH", - "description": null, - "label": "OTTAWA COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTAWA_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTAWA_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTAWA_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTAWA_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTAWA_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTAWA_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTAWA_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTAWA_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_ROSA_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_ROSA_COUNTY_FL", - "description": null, - "label": "SANTA ROSA COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_ROSA_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_ROSA_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_ROSA_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_ROSA_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_ROSA_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_ROSA_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_ROSA_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_ROSA_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AMITE_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AMITE_COUNTY_MS", - "description": null, - "label": "AMITE COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AMITE_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AMITE_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AMITE_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AMITE_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AMITE_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AMITE_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AMITE_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AMITE_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAC_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAC_COUNTY_IA", - "description": null, - "label": "SAC COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAC_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAC_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAC_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAC_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAC_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAC_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAC_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAC_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGHERTY_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGHERTY_COUNTY_GA", - "description": null, - "label": "DOUGHERTY COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGHERTY_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGHERTY_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGHERTY_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGHERTY_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGHERTY_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGHERTY_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGHERTY_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGHERTY_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOTLEY_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOTLEY_COUNTY_TX", - "description": null, - "label": "MOTLEY COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOTLEY_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOTLEY_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOTLEY_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOTLEY_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOTLEY_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOTLEY_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOTLEY_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOTLEY_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_CA", - "description": null, - "label": "LAKE COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_HELENA_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_HELENA_PARISH_LA", - "description": null, - "label": "ST HELENA PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_HELENA_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_HELENA_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_HELENA_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_HELENA_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_HELENA_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_HELENA_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_HELENA_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_HELENA_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IOWA_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IOWA_COUNTY_WI", - "description": null, - "label": "IOWA COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IOWA_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IOWA_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IOWA_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IOWA_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IOWA_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IOWA_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.IOWA_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.IOWA_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUÁNICA_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUÁNICA_MUNICIPIO_PR", - "description": null, - "label": "GUÁNICA MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUÁNICA_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUÁNICA_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUÁNICA_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUÁNICA_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUÁNICA_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUÁNICA_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUÁNICA_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUÁNICA_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BACON_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BACON_COUNTY_GA", - "description": null, - "label": "BACON COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BACON_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BACON_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BACON_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BACON_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BACON_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BACON_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BACON_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BACON_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRADFORD_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRADFORD_COUNTY_FL", - "description": null, - "label": "BRADFORD COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRADFORD_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRADFORD_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRADFORD_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRADFORD_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRADFORD_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRADFORD_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRADFORD_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRADFORD_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_IL", - "description": null, - "label": "GREENE COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_NY", - "description": null, - "label": "MADISON COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CANDLER_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CANDLER_COUNTY_GA", - "description": null, - "label": "CANDLER COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CANDLER_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CANDLER_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CANDLER_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CANDLER_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CANDLER_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CANDLER_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CANDLER_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CANDLER_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROOK_COUNTY_OR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROOK_COUNTY_OR", - "description": null, - "label": "CROOK COUNTY OR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROOK_COUNTY_OR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROOK_COUNTY_OR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROOK_COUNTY_OR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROOK_COUNTY_OR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROOK_COUNTY_OR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROOK_COUNTY_OR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROOK_COUNTY_OR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROOK_COUNTY_OR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_IA", - "description": null, - "label": "CASS COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASS_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_NY", - "description": null, - "label": "ESSEX COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ESSEX_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTAGUE_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTAGUE_COUNTY_TX", - "description": null, - "label": "MONTAGUE COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTAGUE_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTAGUE_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTAGUE_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTAGUE_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTAGUE_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTAGUE_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTAGUE_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTAGUE_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BREVARD_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BREVARD_COUNTY_FL", - "description": null, - "label": "BREVARD COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BREVARD_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BREVARD_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BREVARD_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BREVARD_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BREVARD_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BREVARD_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BREVARD_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BREVARD_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEXFORD_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEXFORD_COUNTY_MI", - "description": null, - "label": "WEXFORD COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEXFORD_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEXFORD_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEXFORD_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEXFORD_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEXFORD_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEXFORD_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEXFORD_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEXFORD_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERKINS_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERKINS_COUNTY_NE", - "description": null, - "label": "PERKINS COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERKINS_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERKINS_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERKINS_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERKINS_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERKINS_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERKINS_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERKINS_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERKINS_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_NY", - "description": null, - "label": "WARREN COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_PA", - "description": null, - "label": "MERCER COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTER_TAIL_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTER_TAIL_COUNTY_MN", - "description": null, - "label": "OTTER TAIL COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTER_TAIL_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTER_TAIL_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTER_TAIL_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTER_TAIL_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTER_TAIL_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTER_TAIL_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTER_TAIL_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTER_TAIL_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOLFE_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOLFE_COUNTY_KY", - "description": null, - "label": "WOLFE COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOLFE_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOLFE_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOLFE_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOLFE_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOLFE_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOLFE_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOLFE_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOLFE_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOOKER_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOOKER_COUNTY_NE", - "description": null, - "label": "HOOKER COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOOKER_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOOKER_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOOKER_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOOKER_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOOKER_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOOKER_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOOKER_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOOKER_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_SD", - "description": null, - "label": "CAMPBELL COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMPBELL_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SACRAMENTO_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SACRAMENTO_COUNTY_CA", - "description": null, - "label": "SACRAMENTO COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SACRAMENTO_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SACRAMENTO_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SACRAMENTO_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SACRAMENTO_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SACRAMENTO_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SACRAMENTO_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SACRAMENTO_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SACRAMENTO_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRECKINRIDGE_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRECKINRIDGE_COUNTY_KY", - "description": null, - "label": "BRECKINRIDGE COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRECKINRIDGE_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRECKINRIDGE_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRECKINRIDGE_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRECKINRIDGE_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRECKINRIDGE_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRECKINRIDGE_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRECKINRIDGE_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRECKINRIDGE_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BECKER_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BECKER_COUNTY_MN", - "description": null, - "label": "BECKER COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BECKER_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BECKER_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BECKER_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BECKER_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BECKER_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BECKER_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BECKER_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BECKER_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREESTONE_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREESTONE_COUNTY_TX", - "description": null, - "label": "FREESTONE COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREESTONE_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREESTONE_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREESTONE_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREESTONE_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREESTONE_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREESTONE_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREESTONE_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREESTONE_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLEAN_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLEAN_COUNTY_KY", - "description": null, - "label": "MCLEAN COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLEAN_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLEAN_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLEAN_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLEAN_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLEAN_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLEAN_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLEAN_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCLEAN_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CREEK_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CREEK_COUNTY_OK", - "description": null, - "label": "CREEK COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CREEK_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CREEK_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CREEK_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CREEK_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CREEK_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CREEK_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CREEK_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CREEK_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_EDWARD_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_EDWARD_COUNTY_VA", - "description": null, - "label": "PRINCE EDWARD COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_EDWARD_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_EDWARD_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_EDWARD_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_EDWARD_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_EDWARD_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_EDWARD_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_EDWARD_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRINCE_EDWARD_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CACHE_COUNTY_UT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CACHE_COUNTY_UT", - "description": null, - "label": "CACHE COUNTY UT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CACHE_COUNTY_UT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CACHE_COUNTY_UT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CACHE_COUNTY_UT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CACHE_COUNTY_UT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CACHE_COUNTY_UT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CACHE_COUNTY_UT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CACHE_COUNTY_UT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CACHE_COUNTY_UT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALBOT_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALBOT_COUNTY_GA", - "description": null, - "label": "TALBOT COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALBOT_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALBOT_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALBOT_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALBOT_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALBOT_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALBOT_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALBOT_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALBOT_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.APACHE_COUNTY_NM": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.APACHE_COUNTY_NM", - "description": null, - "label": "APACHE COUNTY NM", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.APACHE_COUNTY_NM.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.APACHE_COUNTY_NM.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.APACHE_COUNTY_NM.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.APACHE_COUNTY_NM.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.APACHE_COUNTY_NM.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.APACHE_COUNTY_NM.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.APACHE_COUNTY_NM.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.APACHE_COUNTY_NM.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_IN", - "description": null, - "label": "WASHINGTON COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_GA", - "description": null, - "label": "MONROE COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SISKIYOU_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SISKIYOU_COUNTY_CA", - "description": null, - "label": "SISKIYOU COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SISKIYOU_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SISKIYOU_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SISKIYOU_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SISKIYOU_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SISKIYOU_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SISKIYOU_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SISKIYOU_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SISKIYOU_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIOUX_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIOUX_COUNTY_SD", - "description": null, - "label": "SIOUX COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIOUX_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIOUX_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIOUX_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIOUX_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIOUX_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIOUX_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIOUX_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIOUX_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KETCHIKAN_GATEWAY_BOROUGH_AK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KETCHIKAN_GATEWAY_BOROUGH_AK", - "description": null, - "label": "KETCHIKAN GATEWAY BOROUGH AK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KETCHIKAN_GATEWAY_BOROUGH_AK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KETCHIKAN_GATEWAY_BOROUGH_AK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KETCHIKAN_GATEWAY_BOROUGH_AK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KETCHIKAN_GATEWAY_BOROUGH_AK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KETCHIKAN_GATEWAY_BOROUGH_AK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KETCHIKAN_GATEWAY_BOROUGH_AK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KETCHIKAN_GATEWAY_BOROUGH_AK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KETCHIKAN_GATEWAY_BOROUGH_AK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_IL", - "description": null, - "label": "UNION COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLFAX_COUNTY_NM": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLFAX_COUNTY_NM", - "description": null, - "label": "COLFAX COUNTY NM", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLFAX_COUNTY_NM.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLFAX_COUNTY_NM.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLFAX_COUNTY_NM.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLFAX_COUNTY_NM.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLFAX_COUNTY_NM.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLFAX_COUNTY_NM.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLFAX_COUNTY_NM.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLFAX_COUNTY_NM.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_OH", - "description": null, - "label": "FULTON COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FULTON_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEMHI_COUNTY_ID": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEMHI_COUNTY_ID", - "description": null, - "label": "LEMHI COUNTY ID", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEMHI_COUNTY_ID.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEMHI_COUNTY_ID.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEMHI_COUNTY_ID.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEMHI_COUNTY_ID.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEMHI_COUNTY_ID.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEMHI_COUNTY_ID.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEMHI_COUNTY_ID.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEMHI_COUNTY_ID.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAZEWELL_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAZEWELL_COUNTY_IL", - "description": null, - "label": "TAZEWELL COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAZEWELL_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAZEWELL_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAZEWELL_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAZEWELL_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAZEWELL_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAZEWELL_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAZEWELL_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAZEWELL_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOREST_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOREST_COUNTY_WI", - "description": null, - "label": "FOREST COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOREST_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOREST_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOREST_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOREST_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOREST_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOREST_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOREST_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOREST_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CANADIAN_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CANADIAN_COUNTY_OK", - "description": null, - "label": "CANADIAN COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CANADIAN_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CANADIAN_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CANADIAN_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CANADIAN_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CANADIAN_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CANADIAN_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CANADIAN_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CANADIAN_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAWNEE_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAWNEE_COUNTY_KS", - "description": null, - "label": "PAWNEE COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAWNEE_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAWNEE_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAWNEE_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAWNEE_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAWNEE_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAWNEE_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAWNEE_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PAWNEE_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WESTMORELAND_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WESTMORELAND_COUNTY_VA", - "description": null, - "label": "WESTMORELAND COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WESTMORELAND_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WESTMORELAND_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WESTMORELAND_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WESTMORELAND_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WESTMORELAND_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WESTMORELAND_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WESTMORELAND_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WESTMORELAND_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCONEE_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCONEE_COUNTY_GA", - "description": null, - "label": "OCONEE COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCONEE_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCONEE_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCONEE_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCONEE_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCONEE_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCONEE_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCONEE_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OCONEE_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_KY", - "description": null, - "label": "PERRY COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RABUN_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RABUN_COUNTY_GA", - "description": null, - "label": "RABUN COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RABUN_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RABUN_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RABUN_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RABUN_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RABUN_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RABUN_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RABUN_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RABUN_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEPHENS_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEPHENS_COUNTY_OK", - "description": null, - "label": "STEPHENS COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEPHENS_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEPHENS_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEPHENS_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEPHENS_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEPHENS_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEPHENS_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEPHENS_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEPHENS_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_NM": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_NM", - "description": null, - "label": "LINCOLN COUNTY NM", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_NM.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_NM.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_NM.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_NM.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_NM.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_NM.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_NM.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_NM.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_KY", - "description": null, - "label": "KNOX COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHASTA_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHASTA_COUNTY_CA", - "description": null, - "label": "SHASTA COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHASTA_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHASTA_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHASTA_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHASTA_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHASTA_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHASTA_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHASTA_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHASTA_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_MO", - "description": null, - "label": "WASHINGTON COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ZAVALA_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ZAVALA_COUNTY_TX", - "description": null, - "label": "ZAVALA COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ZAVALA_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ZAVALA_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ZAVALA_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ZAVALA_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ZAVALA_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ZAVALA_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ZAVALA_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ZAVALA_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_VA", - "description": null, - "label": "SCOTT COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_WI", - "description": null, - "label": "CRAWFORD COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_IL", - "description": null, - "label": "PIKE COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDMUNDS_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDMUNDS_COUNTY_SD", - "description": null, - "label": "EDMUNDS COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDMUNDS_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDMUNDS_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDMUNDS_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDMUNDS_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDMUNDS_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDMUNDS_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDMUNDS_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDMUNDS_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_TX", - "description": null, - "label": "MADISON COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_NY", - "description": null, - "label": "FRANKLIN COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BANDERA_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BANDERA_COUNTY_TX", - "description": null, - "label": "BANDERA COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BANDERA_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BANDERA_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BANDERA_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BANDERA_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BANDERA_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BANDERA_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BANDERA_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BANDERA_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUMPKIN_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUMPKIN_COUNTY_GA", - "description": null, - "label": "LUMPKIN COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUMPKIN_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUMPKIN_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUMPKIN_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUMPKIN_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUMPKIN_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUMPKIN_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUMPKIN_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUMPKIN_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEL_NORTE_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEL_NORTE_COUNTY_CA", - "description": null, - "label": "DEL NORTE COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEL_NORTE_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEL_NORTE_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEL_NORTE_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEL_NORTE_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEL_NORTE_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEL_NORTE_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEL_NORTE_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEL_NORTE_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAUSHARA_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAUSHARA_COUNTY_WI", - "description": null, - "label": "WAUSHARA COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAUSHARA_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAUSHARA_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAUSHARA_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAUSHARA_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAUSHARA_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAUSHARA_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAUSHARA_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAUSHARA_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOWER_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOWER_COUNTY_MN", - "description": null, - "label": "MOWER COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOWER_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOWER_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOWER_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOWER_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOWER_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOWER_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOWER_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOWER_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAR_LAKE_COUNTY_ID": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAR_LAKE_COUNTY_ID", - "description": null, - "label": "BEAR LAKE COUNTY ID", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAR_LAKE_COUNTY_ID.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAR_LAKE_COUNTY_ID.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAR_LAKE_COUNTY_ID.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAR_LAKE_COUNTY_ID.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAR_LAKE_COUNTY_ID.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAR_LAKE_COUNTY_ID.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAR_LAKE_COUNTY_ID.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAR_LAKE_COUNTY_ID.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_KY", - "description": null, - "label": "MORGAN COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COAHOMA_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COAHOMA_COUNTY_MS", - "description": null, - "label": "COAHOMA COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COAHOMA_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COAHOMA_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COAHOMA_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COAHOMA_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COAHOMA_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COAHOMA_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COAHOMA_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COAHOMA_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_TX", - "description": null, - "label": "FLOYD COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLOYD_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENSVILLE_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENSVILLE_COUNTY_VA", - "description": null, - "label": "GREENSVILLE COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENSVILLE_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENSVILLE_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENSVILLE_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENSVILLE_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENSVILLE_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENSVILLE_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENSVILLE_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENSVILLE_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_TN", - "description": null, - "label": "DEKALB COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEKALB_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARBON_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARBON_COUNTY_MT", - "description": null, - "label": "CARBON COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARBON_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARBON_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARBON_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARBON_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARBON_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARBON_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARBON_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARBON_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEAKE_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEAKE_COUNTY_MS", - "description": null, - "label": "LEAKE COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEAKE_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEAKE_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEAKE_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEAKE_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEAKE_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEAKE_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEAKE_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEAKE_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_GA", - "description": null, - "label": "MONTGOMERY COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RENO_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RENO_COUNTY_KS", - "description": null, - "label": "RENO COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RENO_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RENO_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RENO_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RENO_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RENO_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RENO_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RENO_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RENO_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PONTOTOC_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PONTOTOC_COUNTY_OK", - "description": null, - "label": "PONTOTOC COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PONTOTOC_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PONTOTOC_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PONTOTOC_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PONTOTOC_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PONTOTOC_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PONTOTOC_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PONTOTOC_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PONTOTOC_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PISCATAQUIS_COUNTY_ME": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PISCATAQUIS_COUNTY_ME", - "description": null, - "label": "PISCATAQUIS COUNTY ME", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PISCATAQUIS_COUNTY_ME.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PISCATAQUIS_COUNTY_ME.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PISCATAQUIS_COUNTY_ME.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PISCATAQUIS_COUNTY_ME.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PISCATAQUIS_COUNTY_ME.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PISCATAQUIS_COUNTY_ME.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PISCATAQUIS_COUNTY_ME.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PISCATAQUIS_COUNTY_ME.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANDER_COUNTY_NV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANDER_COUNTY_NV", - "description": null, - "label": "LANDER COUNTY NV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANDER_COUNTY_NV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANDER_COUNTY_NV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANDER_COUNTY_NV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANDER_COUNTY_NV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANDER_COUNTY_NV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANDER_COUNTY_NV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANDER_COUNTY_NV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANDER_COUNTY_NV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NAVARRO_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NAVARRO_COUNTY_TX", - "description": null, - "label": "NAVARRO COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NAVARRO_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NAVARRO_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NAVARRO_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NAVARRO_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NAVARRO_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NAVARRO_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NAVARRO_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NAVARRO_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NELSON_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NELSON_COUNTY_VA", - "description": null, - "label": "NELSON COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NELSON_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NELSON_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NELSON_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NELSON_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NELSON_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NELSON_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NELSON_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NELSON_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_NE", - "description": null, - "label": "DOUGLAS COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENBRIER_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENBRIER_COUNTY_WV", - "description": null, - "label": "GREENBRIER COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENBRIER_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENBRIER_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENBRIER_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENBRIER_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENBRIER_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENBRIER_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENBRIER_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENBRIER_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHICKASAW_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHICKASAW_COUNTY_MS", - "description": null, - "label": "CHICKASAW COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHICKASAW_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHICKASAW_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHICKASAW_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHICKASAW_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHICKASAW_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHICKASAW_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHICKASAW_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHICKASAW_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARE_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARE_COUNTY_MI", - "description": null, - "label": "CLARE COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARE_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARE_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARE_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARE_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARE_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARE_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARE_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARE_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAMHILL_COUNTY_OR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAMHILL_COUNTY_OR", - "description": null, - "label": "YAMHILL COUNTY OR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAMHILL_COUNTY_OR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAMHILL_COUNTY_OR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAMHILL_COUNTY_OR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAMHILL_COUNTY_OR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAMHILL_COUNTY_OR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAMHILL_COUNTY_OR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAMHILL_COUNTY_OR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAMHILL_COUNTY_OR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LETCHER_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LETCHER_COUNTY_KY", - "description": null, - "label": "LETCHER COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LETCHER_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LETCHER_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LETCHER_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LETCHER_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LETCHER_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LETCHER_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LETCHER_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LETCHER_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOROVIS_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOROVIS_MUNICIPIO_PR", - "description": null, - "label": "MOROVIS MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOROVIS_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOROVIS_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOROVIS_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOROVIS_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOROVIS_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOROVIS_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOROVIS_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOROVIS_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CECIL_COUNTY_MD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CECIL_COUNTY_MD", - "description": null, - "label": "CECIL COUNTY MD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CECIL_COUNTY_MD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CECIL_COUNTY_MD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CECIL_COUNTY_MD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CECIL_COUNTY_MD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CECIL_COUNTY_MD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CECIL_COUNTY_MD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CECIL_COUNTY_MD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CECIL_COUNTY_MD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_SD", - "description": null, - "label": "JONES COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JONES_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_BARBARA_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_BARBARA_COUNTY_CA", - "description": null, - "label": "SANTA BARBARA COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_BARBARA_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_BARBARA_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_BARBARA_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_BARBARA_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_BARBARA_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_BARBARA_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_BARBARA_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_BARBARA_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKES_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKES_COUNTY_GA", - "description": null, - "label": "WILKES COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKES_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKES_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKES_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKES_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKES_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKES_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKES_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKES_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POINSETT_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POINSETT_COUNTY_AR", - "description": null, - "label": "POINSETT COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POINSETT_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POINSETT_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POINSETT_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POINSETT_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POINSETT_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POINSETT_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POINSETT_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POINSETT_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOPKINS_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOPKINS_COUNTY_TX", - "description": null, - "label": "HOPKINS COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOPKINS_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOPKINS_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOPKINS_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOPKINS_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOPKINS_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOPKINS_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOPKINS_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOPKINS_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMAR_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMAR_COUNTY_TX", - "description": null, - "label": "LAMAR COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMAR_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMAR_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMAR_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMAR_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMAR_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMAR_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMAR_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMAR_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UPSHUR_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UPSHUR_COUNTY_TX", - "description": null, - "label": "UPSHUR COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UPSHUR_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UPSHUR_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UPSHUR_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UPSHUR_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UPSHUR_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UPSHUR_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UPSHUR_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UPSHUR_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GENEVA_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GENEVA_COUNTY_AL", - "description": null, - "label": "GENEVA COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GENEVA_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GENEVA_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GENEVA_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GENEVA_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GENEVA_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GENEVA_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GENEVA_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GENEVA_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARIPOSA_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARIPOSA_COUNTY_CA", - "description": null, - "label": "MARIPOSA COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARIPOSA_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARIPOSA_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARIPOSA_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARIPOSA_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARIPOSA_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARIPOSA_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARIPOSA_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARIPOSA_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMBRIA_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMBRIA_COUNTY_PA", - "description": null, - "label": "CAMBRIA COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMBRIA_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMBRIA_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMBRIA_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMBRIA_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMBRIA_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMBRIA_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMBRIA_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMBRIA_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURLINGTON_COUNTY_NJ": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURLINGTON_COUNTY_NJ", - "description": null, - "label": "BURLINGTON COUNTY NJ", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURLINGTON_COUNTY_NJ.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURLINGTON_COUNTY_NJ.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURLINGTON_COUNTY_NJ.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURLINGTON_COUNTY_NJ.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURLINGTON_COUNTY_NJ.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURLINGTON_COUNTY_NJ.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURLINGTON_COUNTY_NJ.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURLINGTON_COUNTY_NJ.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAYSON_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAYSON_COUNTY_TX", - "description": null, - "label": "GRAYSON COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAYSON_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAYSON_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAYSON_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAYSON_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAYSON_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAYSON_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAYSON_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAYSON_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_KS", - "description": null, - "label": "CRAWFORD COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOOCHLAND_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOOCHLAND_COUNTY_VA", - "description": null, - "label": "GOOCHLAND COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOOCHLAND_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOOCHLAND_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOOCHLAND_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOOCHLAND_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOOCHLAND_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOOCHLAND_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOOCHLAND_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOOCHLAND_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PORTAGE_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PORTAGE_COUNTY_OH", - "description": null, - "label": "PORTAGE COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PORTAGE_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PORTAGE_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PORTAGE_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PORTAGE_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PORTAGE_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PORTAGE_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PORTAGE_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PORTAGE_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWAYGO_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWAYGO_COUNTY_MI", - "description": null, - "label": "NEWAYGO COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWAYGO_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWAYGO_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWAYGO_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWAYGO_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWAYGO_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWAYGO_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWAYGO_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWAYGO_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRENADA_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRENADA_COUNTY_MS", - "description": null, - "label": "GRENADA COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRENADA_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRENADA_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRENADA_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRENADA_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRENADA_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRENADA_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRENADA_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRENADA_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAUTAUQUA_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAUTAUQUA_COUNTY_KS", - "description": null, - "label": "CHAUTAUQUA COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAUTAUQUA_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAUTAUQUA_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAUTAUQUA_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAUTAUQUA_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAUTAUQUA_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAUTAUQUA_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAUTAUQUA_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAUTAUQUA_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUNTINGDON_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUNTINGDON_COUNTY_PA", - "description": null, - "label": "HUNTINGDON COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUNTINGDON_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUNTINGDON_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUNTINGDON_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUNTINGDON_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUNTINGDON_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUNTINGDON_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUNTINGDON_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUNTINGDON_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_TAMMANY_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_TAMMANY_PARISH_LA", - "description": null, - "label": "ST TAMMANY PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_TAMMANY_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_TAMMANY_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_TAMMANY_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_TAMMANY_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_TAMMANY_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_TAMMANY_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_TAMMANY_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_TAMMANY_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTS_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTS_COUNTY_TX", - "description": null, - "label": "ROBERTS COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTS_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTS_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTS_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTS_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTS_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTS_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTS_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTS_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_NY", - "description": null, - "label": "WASHINGTON COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSCEOLA_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSCEOLA_COUNTY_IA", - "description": null, - "label": "OSCEOLA COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSCEOLA_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSCEOLA_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSCEOLA_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSCEOLA_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSCEOLA_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSCEOLA_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSCEOLA_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSCEOLA_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAYEY_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAYEY_MUNICIPIO_PR", - "description": null, - "label": "CAYEY MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAYEY_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAYEY_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAYEY_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAYEY_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAYEY_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAYEY_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAYEY_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAYEY_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASATCH_COUNTY_UT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASATCH_COUNTY_UT", - "description": null, - "label": "WASATCH COUNTY UT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASATCH_COUNTY_UT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASATCH_COUNTY_UT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASATCH_COUNTY_UT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASATCH_COUNTY_UT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASATCH_COUNTY_UT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASATCH_COUNTY_UT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASATCH_COUNTY_UT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASATCH_COUNTY_UT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VIRGINIA_BEACH_CITY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VIRGINIA_BEACH_CITY_VA", - "description": null, - "label": "VIRGINIA BEACH CITY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VIRGINIA_BEACH_CITY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VIRGINIA_BEACH_CITY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VIRGINIA_BEACH_CITY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VIRGINIA_BEACH_CITY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VIRGINIA_BEACH_CITY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VIRGINIA_BEACH_CITY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VIRGINIA_BEACH_CITY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VIRGINIA_BEACH_CITY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAWAII_COUNTY_HI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAWAII_COUNTY_HI", - "description": null, - "label": "HAWAII COUNTY HI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAWAII_COUNTY_HI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAWAII_COUNTY_HI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAWAII_COUNTY_HI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAWAII_COUNTY_HI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAWAII_COUNTY_HI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAWAII_COUNTY_HI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAWAII_COUNTY_HI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAWAII_COUNTY_HI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_IA", - "description": null, - "label": "UNION COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_IL", - "description": null, - "label": "MONTGOMERY COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YABUCOA_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YABUCOA_MUNICIPIO_PR", - "description": null, - "label": "YABUCOA MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YABUCOA_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YABUCOA_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YABUCOA_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YABUCOA_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YABUCOA_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YABUCOA_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YABUCOA_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YABUCOA_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROANOKE_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROANOKE_COUNTY_VA", - "description": null, - "label": "ROANOKE COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROANOKE_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROANOKE_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROANOKE_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROANOKE_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROANOKE_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROANOKE_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROANOKE_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROANOKE_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAVAPAI_COUNTY_AZ": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAVAPAI_COUNTY_AZ", - "description": null, - "label": "YAVAPAI COUNTY AZ", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAVAPAI_COUNTY_AZ.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAVAPAI_COUNTY_AZ.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAVAPAI_COUNTY_AZ.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAVAPAI_COUNTY_AZ.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAVAPAI_COUNTY_AZ.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAVAPAI_COUNTY_AZ.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAVAPAI_COUNTY_AZ.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YAVAPAI_COUNTY_AZ.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JOHN_THE_BAPTIST_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JOHN_THE_BAPTIST_PARISH_LA", - "description": null, - "label": "ST JOHN THE BAPTIST PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JOHN_THE_BAPTIST_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JOHN_THE_BAPTIST_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JOHN_THE_BAPTIST_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JOHN_THE_BAPTIST_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JOHN_THE_BAPTIST_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JOHN_THE_BAPTIST_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JOHN_THE_BAPTIST_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JOHN_THE_BAPTIST_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_IN", - "description": null, - "label": "KNOX COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_SC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_SC", - "description": null, - "label": "YORK COUNTY SC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_SC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_SC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_SC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_SC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_SC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_SC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_SC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YORK_COUNTY_SC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LE_FLORE_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LE_FLORE_COUNTY_AR", - "description": null, - "label": "LE FLORE COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LE_FLORE_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LE_FLORE_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LE_FLORE_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LE_FLORE_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LE_FLORE_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LE_FLORE_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LE_FLORE_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LE_FLORE_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_WV", - "description": null, - "label": "JEFFERSON COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAKOTA_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAKOTA_COUNTY_MN", - "description": null, - "label": "DAKOTA COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAKOTA_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAKOTA_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAKOTA_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAKOTA_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAKOTA_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAKOTA_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAKOTA_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAKOTA_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOCORRO_COUNTY_NM": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOCORRO_COUNTY_NM", - "description": null, - "label": "SOCORRO COUNTY NM", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOCORRO_COUNTY_NM.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOCORRO_COUNTY_NM.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOCORRO_COUNTY_NM.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOCORRO_COUNTY_NM.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOCORRO_COUNTY_NM.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOCORRO_COUNTY_NM.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOCORRO_COUNTY_NM.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOCORRO_COUNTY_NM.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUBBOCK_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUBBOCK_COUNTY_TX", - "description": null, - "label": "LUBBOCK COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUBBOCK_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUBBOCK_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUBBOCK_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUBBOCK_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUBBOCK_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUBBOCK_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUBBOCK_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUBBOCK_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_TN", - "description": null, - "label": "LAKE COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PONCE_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PONCE_MUNICIPIO_PR", - "description": null, - "label": "PONCE MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PONCE_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PONCE_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PONCE_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PONCE_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PONCE_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PONCE_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PONCE_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PONCE_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDREW_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDREW_COUNTY_MO", - "description": null, - "label": "ANDREW COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDREW_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDREW_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDREW_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDREW_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDREW_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDREW_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDREW_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDREW_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHITTENDEN_COUNTY_VT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHITTENDEN_COUNTY_VT", - "description": null, - "label": "CHITTENDEN COUNTY VT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHITTENDEN_COUNTY_VT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHITTENDEN_COUNTY_VT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHITTENDEN_COUNTY_VT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHITTENDEN_COUNTY_VT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHITTENDEN_COUNTY_VT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHITTENDEN_COUNTY_VT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHITTENDEN_COUNTY_VT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHITTENDEN_COUNTY_VT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_ME": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_ME", - "description": null, - "label": "WASHINGTON COUNTY ME", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_ME.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_ME.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_ME.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_ME.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_ME.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_ME.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_ME.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_ME.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODGE_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODGE_COUNTY_WI", - "description": null, - "label": "DODGE COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODGE_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODGE_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODGE_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODGE_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODGE_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODGE_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODGE_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODGE_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KALAWAO_COUNTY_HI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KALAWAO_COUNTY_HI", - "description": null, - "label": "KALAWAO COUNTY HI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KALAWAO_COUNTY_HI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KALAWAO_COUNTY_HI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KALAWAO_COUNTY_HI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KALAWAO_COUNTY_HI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KALAWAO_COUNTY_HI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KALAWAO_COUNTY_HI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KALAWAO_COUNTY_HI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KALAWAO_COUNTY_HI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_GA", - "description": null, - "label": "COLUMBIA COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUMBIA_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_TN", - "description": null, - "label": "CLAY COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARCHULETA_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARCHULETA_COUNTY_CO", - "description": null, - "label": "ARCHULETA COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARCHULETA_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARCHULETA_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARCHULETA_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARCHULETA_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARCHULETA_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARCHULETA_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARCHULETA_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARCHULETA_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OVERTON_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OVERTON_COUNTY_TN", - "description": null, - "label": "OVERTON COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OVERTON_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OVERTON_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OVERTON_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OVERTON_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OVERTON_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OVERTON_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OVERTON_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OVERTON_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PITTSYLVANIA_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PITTSYLVANIA_COUNTY_VA", - "description": null, - "label": "PITTSYLVANIA COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PITTSYLVANIA_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PITTSYLVANIA_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PITTSYLVANIA_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PITTSYLVANIA_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PITTSYLVANIA_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PITTSYLVANIA_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PITTSYLVANIA_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PITTSYLVANIA_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEWEY_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEWEY_COUNTY_SD", - "description": null, - "label": "DEWEY COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEWEY_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEWEY_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEWEY_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEWEY_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEWEY_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEWEY_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEWEY_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEWEY_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_TX", - "description": null, - "label": "JACKSON COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POCAHONTAS_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POCAHONTAS_COUNTY_IA", - "description": null, - "label": "POCAHONTAS COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POCAHONTAS_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POCAHONTAS_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POCAHONTAS_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POCAHONTAS_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POCAHONTAS_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POCAHONTAS_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POCAHONTAS_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POCAHONTAS_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_MO", - "description": null, - "label": "LAWRENCE COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STONE_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STONE_COUNTY_MO", - "description": null, - "label": "STONE COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STONE_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STONE_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STONE_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STONE_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STONE_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STONE_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STONE_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STONE_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GULF_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GULF_COUNTY_FL", - "description": null, - "label": "GULF COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GULF_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GULF_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GULF_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GULF_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GULF_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GULF_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GULF_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GULF_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALWORTH_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALWORTH_COUNTY_SD", - "description": null, - "label": "WALWORTH COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALWORTH_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALWORTH_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALWORTH_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALWORTH_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALWORTH_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALWORTH_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALWORTH_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALWORTH_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEARBORN_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEARBORN_COUNTY_IN", - "description": null, - "label": "DEARBORN COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEARBORN_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEARBORN_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEARBORN_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEARBORN_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEARBORN_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEARBORN_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEARBORN_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DEARBORN_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUFFALO_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUFFALO_COUNTY_SD", - "description": null, - "label": "BUFFALO COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUFFALO_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUFFALO_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUFFALO_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUFFALO_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUFFALO_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUFFALO_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUFFALO_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUFFALO_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_AR", - "description": null, - "label": "CLAY COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWELL_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWELL_COUNTY_MO", - "description": null, - "label": "HOWELL COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWELL_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWELL_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWELL_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWELL_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWELL_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWELL_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWELL_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWELL_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILES_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILES_COUNTY_VA", - "description": null, - "label": "GILES COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILES_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILES_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILES_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILES_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILES_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILES_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILES_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILES_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_IL", - "description": null, - "label": "MORGAN COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.REEVES_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.REEVES_COUNTY_TX", - "description": null, - "label": "REEVES COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.REEVES_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.REEVES_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.REEVES_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.REEVES_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.REEVES_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.REEVES_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.REEVES_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.REEVES_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_TN", - "description": null, - "label": "WARREN COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_KY", - "description": null, - "label": "WASHINGTON COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_IA", - "description": null, - "label": "MADISON COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BONNEVILLE_COUNTY_ID": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BONNEVILLE_COUNTY_ID", - "description": null, - "label": "BONNEVILLE COUNTY ID", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BONNEVILLE_COUNTY_ID.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BONNEVILLE_COUNTY_ID.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BONNEVILLE_COUNTY_ID.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BONNEVILLE_COUNTY_ID.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BONNEVILLE_COUNTY_ID.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BONNEVILLE_COUNTY_ID.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BONNEVILLE_COUNTY_ID.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BONNEVILLE_COUNTY_ID.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_PARISH_LA", - "description": null, - "label": "JEFFERSON PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_MT", - "description": null, - "label": "MADISON COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUFFALO_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUFFALO_COUNTY_NE", - "description": null, - "label": "BUFFALO COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUFFALO_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUFFALO_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUFFALO_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUFFALO_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUFFALO_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUFFALO_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUFFALO_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUFFALO_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEBOYGAN_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEBOYGAN_COUNTY_MI", - "description": null, - "label": "CHEBOYGAN COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEBOYGAN_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEBOYGAN_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEBOYGAN_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEBOYGAN_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEBOYGAN_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEBOYGAN_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEBOYGAN_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEBOYGAN_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_WV", - "description": null, - "label": "JACKSON COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARK_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARK_COUNTY_ND", - "description": null, - "label": "STARK COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARK_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARK_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARK_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARK_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARK_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARK_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARK_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARK_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_LORENZO_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_LORENZO_MUNICIPIO_PR", - "description": null, - "label": "SAN LORENZO MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_LORENZO_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_LORENZO_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_LORENZO_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_LORENZO_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_LORENZO_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_LORENZO_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_LORENZO_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_LORENZO_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMERY_COUNTY_UT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMERY_COUNTY_UT", - "description": null, - "label": "EMERY COUNTY UT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMERY_COUNTY_UT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMERY_COUNTY_UT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMERY_COUNTY_UT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMERY_COUNTY_UT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMERY_COUNTY_UT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMERY_COUNTY_UT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMERY_COUNTY_UT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMERY_COUNTY_UT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_WV", - "description": null, - "label": "CLAY COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COFFEE_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COFFEE_COUNTY_AL", - "description": null, - "label": "COFFEE COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COFFEE_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COFFEE_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COFFEE_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COFFEE_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COFFEE_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COFFEE_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COFFEE_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COFFEE_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUNNISON_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUNNISON_COUNTY_CO", - "description": null, - "label": "GUNNISON COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUNNISON_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUNNISON_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUNNISON_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUNNISON_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUNNISON_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUNNISON_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUNNISON_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GUNNISON_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEDGWICK_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEDGWICK_COUNTY_CO", - "description": null, - "label": "SEDGWICK COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEDGWICK_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEDGWICK_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEDGWICK_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEDGWICK_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEDGWICK_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEDGWICK_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEDGWICK_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEDGWICK_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_IL", - "description": null, - "label": "LEE COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_KY", - "description": null, - "label": "LEE COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_MN", - "description": null, - "label": "WASHINGTON COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_IN", - "description": null, - "label": "JEFFERSON COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.INYO_COUNTY_NV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.INYO_COUNTY_NV", - "description": null, - "label": "INYO COUNTY NV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.INYO_COUNTY_NV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.INYO_COUNTY_NV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.INYO_COUNTY_NV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.INYO_COUNTY_NV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.INYO_COUNTY_NV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.INYO_COUNTY_NV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.INYO_COUNTY_NV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.INYO_COUNTY_NV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAGUAS_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAGUAS_MUNICIPIO_PR", - "description": null, - "label": "CAGUAS MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAGUAS_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAGUAS_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAGUAS_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAGUAS_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAGUAS_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAGUAS_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAGUAS_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAGUAS_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TROUSDALE_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TROUSDALE_COUNTY_TN", - "description": null, - "label": "TROUSDALE COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TROUSDALE_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TROUSDALE_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TROUSDALE_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TROUSDALE_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TROUSDALE_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TROUSDALE_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TROUSDALE_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TROUSDALE_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALE_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALE_COUNTY_AL", - "description": null, - "label": "DALE COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALE_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALE_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALE_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALE_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALE_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALE_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALE_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALE_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ACCOMACK_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ACCOMACK_COUNTY_VA", - "description": null, - "label": "ACCOMACK COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ACCOMACK_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ACCOMACK_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ACCOMACK_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ACCOMACK_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ACCOMACK_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ACCOMACK_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ACCOMACK_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ACCOMACK_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANGAMON_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANGAMON_COUNTY_IL", - "description": null, - "label": "SANGAMON COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANGAMON_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANGAMON_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANGAMON_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANGAMON_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANGAMON_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANGAMON_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANGAMON_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANGAMON_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDGAR_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDGAR_COUNTY_IL", - "description": null, - "label": "EDGAR COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDGAR_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDGAR_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDGAR_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDGAR_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDGAR_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDGAR_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDGAR_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EDGAR_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTMORENCY_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTMORENCY_COUNTY_MI", - "description": null, - "label": "MONTMORENCY COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTMORENCY_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTMORENCY_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTMORENCY_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTMORENCY_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTMORENCY_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTMORENCY_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTMORENCY_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTMORENCY_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KLICKITAT_COUNTY_WA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KLICKITAT_COUNTY_WA", - "description": null, - "label": "KLICKITAT COUNTY WA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KLICKITAT_COUNTY_WA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KLICKITAT_COUNTY_WA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KLICKITAT_COUNTY_WA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KLICKITAT_COUNTY_WA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KLICKITAT_COUNTY_WA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KLICKITAT_COUNTY_WA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KLICKITAT_COUNTY_WA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KLICKITAT_COUNTY_WA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEELER_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEELER_COUNTY_NE", - "description": null, - "label": "WHEELER COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEELER_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEELER_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEELER_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEELER_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEELER_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEELER_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEELER_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHEELER_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_MO", - "description": null, - "label": "WARREN COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEPHENSON_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEPHENSON_COUNTY_IL", - "description": null, - "label": "STEPHENSON COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEPHENSON_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEPHENSON_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEPHENSON_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEPHENSON_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEPHENSON_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEPHENSON_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEPHENSON_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STEPHENSON_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERBURNE_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERBURNE_COUNTY_MN", - "description": null, - "label": "SHERBURNE COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERBURNE_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERBURNE_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERBURNE_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERBURNE_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERBURNE_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERBURNE_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERBURNE_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERBURNE_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_MS", - "description": null, - "label": "CARROLL COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANLEY_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANLEY_COUNTY_SD", - "description": null, - "label": "STANLEY COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANLEY_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANLEY_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANLEY_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANLEY_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANLEY_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANLEY_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANLEY_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANLEY_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_AR", - "description": null, - "label": "UNION COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UNION_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAHAM_COUNTY_AZ": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAHAM_COUNTY_AZ", - "description": null, - "label": "GRAHAM COUNTY AZ", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAHAM_COUNTY_AZ.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAHAM_COUNTY_AZ.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAHAM_COUNTY_AZ.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAHAM_COUNTY_AZ.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAHAM_COUNTY_AZ.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAHAM_COUNTY_AZ.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAHAM_COUNTY_AZ.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAHAM_COUNTY_AZ.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_CO", - "description": null, - "label": "MORGAN COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_DAVIS_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_DAVIS_PARISH_LA", - "description": null, - "label": "JEFFERSON DAVIS PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_DAVIS_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_DAVIS_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_DAVIS_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_DAVIS_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_DAVIS_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_DAVIS_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_DAVIS_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_DAVIS_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_OK", - "description": null, - "label": "CUSTER COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLYMOUTH_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLYMOUTH_COUNTY_IA", - "description": null, - "label": "PLYMOUTH COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLYMOUTH_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLYMOUTH_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLYMOUTH_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLYMOUTH_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLYMOUTH_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLYMOUTH_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLYMOUTH_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLYMOUTH_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POQUOSON_CITY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POQUOSON_CITY_VA", - "description": null, - "label": "POQUOSON CITY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POQUOSON_CITY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POQUOSON_CITY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POQUOSON_CITY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POQUOSON_CITY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POQUOSON_CITY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POQUOSON_CITY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POQUOSON_CITY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POQUOSON_CITY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEIGS_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEIGS_COUNTY_TN", - "description": null, - "label": "MEIGS COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEIGS_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEIGS_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEIGS_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEIGS_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEIGS_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEIGS_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEIGS_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MEIGS_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_TN", - "description": null, - "label": "CLINTON COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUTTER_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUTTER_COUNTY_CA", - "description": null, - "label": "SUTTER COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUTTER_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUTTER_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUTTER_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUTTER_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUTTER_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUTTER_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUTTER_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUTTER_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMBLEN_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMBLEN_COUNTY_TN", - "description": null, - "label": "HAMBLEN COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMBLEN_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMBLEN_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMBLEN_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMBLEN_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMBLEN_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMBLEN_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMBLEN_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMBLEN_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WRIGHT_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WRIGHT_COUNTY_MN", - "description": null, - "label": "WRIGHT COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WRIGHT_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WRIGHT_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WRIGHT_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WRIGHT_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WRIGHT_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WRIGHT_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WRIGHT_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WRIGHT_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_NY", - "description": null, - "label": "ORANGE COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CABO_ROJO_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CABO_ROJO_MUNICIPIO_PR", - "description": null, - "label": "CABO ROJO MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CABO_ROJO_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CABO_ROJO_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CABO_ROJO_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CABO_ROJO_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CABO_ROJO_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CABO_ROJO_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CABO_ROJO_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CABO_ROJO_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NATRONA_COUNTY_WY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NATRONA_COUNTY_WY", - "description": null, - "label": "NATRONA COUNTY WY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NATRONA_COUNTY_WY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NATRONA_COUNTY_WY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NATRONA_COUNTY_WY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NATRONA_COUNTY_WY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NATRONA_COUNTY_WY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NATRONA_COUNTY_WY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NATRONA_COUNTY_WY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NATRONA_COUNTY_WY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSKOGEE_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSKOGEE_COUNTY_OK", - "description": null, - "label": "MUSKOGEE COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSKOGEE_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSKOGEE_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSKOGEE_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSKOGEE_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSKOGEE_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSKOGEE_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSKOGEE_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MUSKOGEE_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHUMBERLAND_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHUMBERLAND_COUNTY_PA", - "description": null, - "label": "NORTHUMBERLAND COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHUMBERLAND_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHUMBERLAND_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHUMBERLAND_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHUMBERLAND_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHUMBERLAND_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHUMBERLAND_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHUMBERLAND_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORTHUMBERLAND_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_TX", - "description": null, - "label": "FRANKLIN COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOND_DU_LAC_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOND_DU_LAC_COUNTY_WI", - "description": null, - "label": "FOND DU LAC COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOND_DU_LAC_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOND_DU_LAC_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOND_DU_LAC_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOND_DU_LAC_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOND_DU_LAC_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOND_DU_LAC_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOND_DU_LAC_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOND_DU_LAC_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_OH", - "description": null, - "label": "HENRY COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENRY_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRIS_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRIS_COUNTY_TX", - "description": null, - "label": "HARRIS COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRIS_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRIS_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRIS_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRIS_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRIS_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRIS_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRIS_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRIS_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWARD_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWARD_COUNTY_FL", - "description": null, - "label": "BROWARD COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWARD_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWARD_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWARD_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWARD_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWARD_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWARD_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWARD_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWARD_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_COUNTY_IN", - "description": null, - "label": "ALLEN COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIOGA_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIOGA_COUNTY_PA", - "description": null, - "label": "TIOGA COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIOGA_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIOGA_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIOGA_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIOGA_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIOGA_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIOGA_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIOGA_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIOGA_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMOURE_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMOURE_COUNTY_ND", - "description": null, - "label": "LAMOURE COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMOURE_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMOURE_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMOURE_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMOURE_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMOURE_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMOURE_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMOURE_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMOURE_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DE_WITT_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DE_WITT_COUNTY_IL", - "description": null, - "label": "DE WITT COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DE_WITT_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DE_WITT_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DE_WITT_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DE_WITT_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DE_WITT_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DE_WITT_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DE_WITT_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DE_WITT_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGAN_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGAN_COUNTY_MI", - "description": null, - "label": "ALLEGAN COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGAN_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGAN_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGAN_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGAN_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGAN_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGAN_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGAN_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGAN_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEMISCOT_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEMISCOT_COUNTY_MO", - "description": null, - "label": "PEMISCOT COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEMISCOT_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEMISCOT_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEMISCOT_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEMISCOT_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEMISCOT_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEMISCOT_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEMISCOT_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEMISCOT_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SABINE_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SABINE_COUNTY_TX", - "description": null, - "label": "SABINE COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SABINE_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SABINE_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SABINE_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SABINE_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SABINE_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SABINE_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SABINE_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SABINE_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_KS", - "description": null, - "label": "HAMILTON COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERSET_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERSET_COUNTY_PA", - "description": null, - "label": "SOMERSET COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERSET_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERSET_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERSET_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERSET_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERSET_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERSET_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERSET_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SOMERSET_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_KY", - "description": null, - "label": "PULASKI COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARRANQUITAS_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARRANQUITAS_MUNICIPIO_PR", - "description": null, - "label": "BARRANQUITAS MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARRANQUITAS_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARRANQUITAS_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARRANQUITAS_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARRANQUITAS_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARRANQUITAS_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARRANQUITAS_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARRANQUITAS_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARRANQUITAS_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_IL", - "description": null, - "label": "MERCER COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.THROCKMORTON_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.THROCKMORTON_COUNTY_TX", - "description": null, - "label": "THROCKMORTON COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.THROCKMORTON_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.THROCKMORTON_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.THROCKMORTON_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.THROCKMORTON_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.THROCKMORTON_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.THROCKMORTON_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.THROCKMORTON_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.THROCKMORTON_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOKS_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOKS_COUNTY_GA", - "description": null, - "label": "BROOKS COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOKS_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOKS_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOKS_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOKS_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOKS_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOKS_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOKS_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOKS_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_BERNARD_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_BERNARD_PARISH_LA", - "description": null, - "label": "ST BERNARD PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_BERNARD_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_BERNARD_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_BERNARD_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_BERNARD_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_BERNARD_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_BERNARD_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_BERNARD_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_BERNARD_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOURBON_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOURBON_COUNTY_KS", - "description": null, - "label": "BOURBON COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOURBON_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOURBON_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOURBON_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOURBON_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOURBON_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOURBON_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOURBON_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOURBON_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BANNER_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BANNER_COUNTY_NE", - "description": null, - "label": "BANNER COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BANNER_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BANNER_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BANNER_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BANNER_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BANNER_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BANNER_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BANNER_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BANNER_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRADFORD_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRADFORD_COUNTY_PA", - "description": null, - "label": "BRADFORD COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRADFORD_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRADFORD_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRADFORD_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRADFORD_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRADFORD_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRADFORD_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRADFORD_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRADFORD_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARECIBO_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARECIBO_MUNICIPIO_PR", - "description": null, - "label": "ARECIBO MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARECIBO_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARECIBO_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARECIBO_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARECIBO_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARECIBO_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARECIBO_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARECIBO_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARECIBO_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUFFALO_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUFFALO_COUNTY_WI", - "description": null, - "label": "BUFFALO COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUFFALO_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUFFALO_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUFFALO_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUFFALO_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUFFALO_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUFFALO_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUFFALO_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUFFALO_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_FL", - "description": null, - "label": "TAYLOR COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_GA", - "description": null, - "label": "WASHINGTON COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONEIDA_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONEIDA_COUNTY_NY", - "description": null, - "label": "ONEIDA COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONEIDA_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONEIDA_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONEIDA_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONEIDA_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONEIDA_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONEIDA_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONEIDA_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONEIDA_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLOUNT_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLOUNT_COUNTY_TN", - "description": null, - "label": "BLOUNT COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLOUNT_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLOUNT_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLOUNT_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLOUNT_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLOUNT_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLOUNT_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLOUNT_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLOUNT_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_TX", - "description": null, - "label": "CALHOUN COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINGO_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINGO_COUNTY_WV", - "description": null, - "label": "MINGO COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINGO_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINGO_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINGO_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINGO_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINGO_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINGO_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINGO_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINGO_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEWAUNEE_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEWAUNEE_COUNTY_WI", - "description": null, - "label": "KEWAUNEE COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEWAUNEE_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEWAUNEE_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEWAUNEE_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEWAUNEE_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEWAUNEE_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEWAUNEE_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEWAUNEE_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEWAUNEE_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_NE", - "description": null, - "label": "WEBSTER COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_MO", - "description": null, - "label": "PIKE COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_AR", - "description": null, - "label": "GREENE COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORLEANS_COUNTY_VT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORLEANS_COUNTY_VT", - "description": null, - "label": "ORLEANS COUNTY VT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORLEANS_COUNTY_VT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORLEANS_COUNTY_VT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORLEANS_COUNTY_VT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORLEANS_COUNTY_VT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORLEANS_COUNTY_VT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORLEANS_COUNTY_VT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORLEANS_COUNTY_VT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORLEANS_COUNTY_VT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_IL", - "description": null, - "label": "LOGAN COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKFUSKEE_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKFUSKEE_COUNTY_OK", - "description": null, - "label": "OKFUSKEE COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKFUSKEE_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKFUSKEE_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKFUSKEE_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKFUSKEE_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKFUSKEE_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKFUSKEE_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKFUSKEE_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKFUSKEE_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWBERRY_COUNTY_SC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWBERRY_COUNTY_SC", - "description": null, - "label": "NEWBERRY COUNTY SC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWBERRY_COUNTY_SC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWBERRY_COUNTY_SC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWBERRY_COUNTY_SC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWBERRY_COUNTY_SC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWBERRY_COUNTY_SC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWBERRY_COUNTY_SC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWBERRY_COUNTY_SC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWBERRY_COUNTY_SC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_TX", - "description": null, - "label": "HARDIN COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDIN_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKBRIDGE_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKBRIDGE_COUNTY_VA", - "description": null, - "label": "ROCKBRIDGE COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKBRIDGE_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKBRIDGE_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKBRIDGE_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKBRIDGE_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKBRIDGE_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKBRIDGE_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKBRIDGE_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROCKBRIDGE_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROOK_COUNTY_WY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROOK_COUNTY_WY", - "description": null, - "label": "CROOK COUNTY WY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROOK_COUNTY_WY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROOK_COUNTY_WY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROOK_COUNTY_WY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROOK_COUNTY_WY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROOK_COUNTY_WY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROOK_COUNTY_WY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROOK_COUNTY_WY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CROOK_COUNTY_WY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LOUIS_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LOUIS_COUNTY_MO", - "description": null, - "label": "ST LOUIS COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LOUIS_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LOUIS_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LOUIS_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LOUIS_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LOUIS_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LOUIS_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LOUIS_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LOUIS_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATCHISON_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATCHISON_COUNTY_IA", - "description": null, - "label": "ATCHISON COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATCHISON_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATCHISON_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATCHISON_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATCHISON_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATCHISON_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATCHISON_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATCHISON_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATCHISON_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_KY", - "description": null, - "label": "HENDERSON COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HENDERSON_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_AR", - "description": null, - "label": "MADISON COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_KS", - "description": null, - "label": "SHERIDAN COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHERIDAN_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUBOIS_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUBOIS_COUNTY_IN", - "description": null, - "label": "DUBOIS COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUBOIS_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUBOIS_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUBOIS_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUBOIS_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUBOIS_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUBOIS_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUBOIS_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUBOIS_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAWSON_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAWSON_COUNTY_MT", - "description": null, - "label": "DAWSON COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAWSON_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAWSON_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAWSON_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAWSON_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAWSON_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAWSON_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAWSON_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DAWSON_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_MS", - "description": null, - "label": "JASPER COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTERFIELD_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTERFIELD_COUNTY_VA", - "description": null, - "label": "CHESTERFIELD COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTERFIELD_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTERFIELD_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTERFIELD_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTERFIELD_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTERFIELD_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTERFIELD_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTERFIELD_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTERFIELD_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FENTRESS_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FENTRESS_COUNTY_TN", - "description": null, - "label": "FENTRESS COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FENTRESS_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FENTRESS_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FENTRESS_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FENTRESS_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FENTRESS_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FENTRESS_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FENTRESS_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FENTRESS_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_MO", - "description": null, - "label": "BUTLER COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUTLER_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIGHLANDS_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIGHLANDS_COUNTY_FL", - "description": null, - "label": "HIGHLANDS COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIGHLANDS_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIGHLANDS_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIGHLANDS_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIGHLANDS_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIGHLANDS_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIGHLANDS_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIGHLANDS_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIGHLANDS_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CABELL_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CABELL_COUNTY_WV", - "description": null, - "label": "CABELL COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CABELL_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CABELL_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CABELL_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CABELL_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CABELL_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CABELL_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CABELL_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CABELL_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINIDOKA_COUNTY_ID": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINIDOKA_COUNTY_ID", - "description": null, - "label": "MINIDOKA COUNTY ID", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINIDOKA_COUNTY_ID.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINIDOKA_COUNTY_ID.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINIDOKA_COUNTY_ID.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINIDOKA_COUNTY_ID.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINIDOKA_COUNTY_ID.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINIDOKA_COUNTY_ID.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINIDOKA_COUNTY_ID.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINIDOKA_COUNTY_ID.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLARD_COUNTY_UT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLARD_COUNTY_UT", - "description": null, - "label": "MILLARD COUNTY UT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLARD_COUNTY_UT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLARD_COUNTY_UT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLARD_COUNTY_UT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLARD_COUNTY_UT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLARD_COUNTY_UT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLARD_COUNTY_UT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLARD_COUNTY_UT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLARD_COUNTY_UT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_WI", - "description": null, - "label": "DOUGLAS COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_IL", - "description": null, - "label": "CLINTON COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANOVER_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANOVER_COUNTY_VA", - "description": null, - "label": "HANOVER COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANOVER_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANOVER_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANOVER_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANOVER_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANOVER_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANOVER_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANOVER_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANOVER_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_MO", - "description": null, - "label": "JASPER COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILES_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILES_COUNTY_TN", - "description": null, - "label": "GILES COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILES_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILES_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILES_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILES_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILES_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILES_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILES_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILES_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_IL", - "description": null, - "label": "LAWRENCE COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAWRENCE_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_MO", - "description": null, - "label": "FRANKLIN COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JAMES_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JAMES_PARISH_LA", - "description": null, - "label": "ST JAMES PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JAMES_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JAMES_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JAMES_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JAMES_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JAMES_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JAMES_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JAMES_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JAMES_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUBUQUE_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUBUQUE_COUNTY_IA", - "description": null, - "label": "DUBUQUE COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUBUQUE_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUBUQUE_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUBUQUE_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUBUQUE_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUBUQUE_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUBUQUE_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUBUQUE_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUBUQUE_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREEN_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREEN_COUNTY_WI", - "description": null, - "label": "GREEN COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREEN_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREEN_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREEN_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREEN_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREEN_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREEN_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREEN_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREEN_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_MO", - "description": null, - "label": "SHELBY COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SHELBY_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_NE", - "description": null, - "label": "WASHINGTON COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESHIRE_COUNTY_NH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESHIRE_COUNTY_NH", - "description": null, - "label": "CHESHIRE COUNTY NH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESHIRE_COUNTY_NH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESHIRE_COUNTY_NH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESHIRE_COUNTY_NH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESHIRE_COUNTY_NH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESHIRE_COUNTY_NH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESHIRE_COUNTY_NH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESHIRE_COUNTY_NH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESHIRE_COUNTY_NH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALCASIEU_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALCASIEU_PARISH_LA", - "description": null, - "label": "CALCASIEU PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALCASIEU_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALCASIEU_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALCASIEU_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALCASIEU_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALCASIEU_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALCASIEU_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALCASIEU_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALCASIEU_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHARDSON_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHARDSON_COUNTY_NE", - "description": null, - "label": "RICHARDSON COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHARDSON_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHARDSON_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHARDSON_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHARDSON_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHARDSON_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHARDSON_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHARDSON_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHARDSON_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARCHER_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARCHER_COUNTY_TX", - "description": null, - "label": "ARCHER COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARCHER_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARCHER_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARCHER_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARCHER_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARCHER_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARCHER_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARCHER_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARCHER_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TETON_COUNTY_ID": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TETON_COUNTY_ID", - "description": null, - "label": "TETON COUNTY ID", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TETON_COUNTY_ID.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TETON_COUNTY_ID.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TETON_COUNTY_ID.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TETON_COUNTY_ID.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TETON_COUNTY_ID.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TETON_COUNTY_ID.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TETON_COUNTY_ID.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TETON_COUNTY_ID.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DILLON_COUNTY_SC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DILLON_COUNTY_SC", - "description": null, - "label": "DILLON COUNTY SC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DILLON_COUNTY_SC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DILLON_COUNTY_SC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DILLON_COUNTY_SC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DILLON_COUNTY_SC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DILLON_COUNTY_SC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DILLON_COUNTY_SC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DILLON_COUNTY_SC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DILLON_COUNTY_SC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_MO", - "description": null, - "label": "PUTNAM COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORTH_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORTH_COUNTY_GA", - "description": null, - "label": "WORTH COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORTH_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORTH_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORTH_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORTH_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORTH_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORTH_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORTH_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WORTH_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_IN", - "description": null, - "label": "SCOTT COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_OH", - "description": null, - "label": "RICHLAND COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STAFFORD_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STAFFORD_COUNTY_VA", - "description": null, - "label": "STAFFORD COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STAFFORD_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STAFFORD_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STAFFORD_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STAFFORD_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STAFFORD_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STAFFORD_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STAFFORD_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STAFFORD_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRESIDIO_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRESIDIO_COUNTY_TX", - "description": null, - "label": "PRESIDIO COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRESIDIO_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRESIDIO_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRESIDIO_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRESIDIO_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRESIDIO_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRESIDIO_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRESIDIO_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRESIDIO_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EL_PASO_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EL_PASO_COUNTY_CO", - "description": null, - "label": "EL PASO COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EL_PASO_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EL_PASO_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EL_PASO_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EL_PASO_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EL_PASO_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EL_PASO_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EL_PASO_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EL_PASO_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTER_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTER_COUNTY_TN", - "description": null, - "label": "CHESTER COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTER_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTER_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTER_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTER_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTER_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTER_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTER_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTER_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMNER_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMNER_COUNTY_KS", - "description": null, - "label": "SUMNER COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMNER_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMNER_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMNER_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMNER_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMNER_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMNER_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMNER_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMNER_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_MI", - "description": null, - "label": "CRAWFORD COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRAWFORD_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEADLE_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEADLE_COUNTY_SD", - "description": null, - "label": "BEADLE COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEADLE_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEADLE_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEADLE_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEADLE_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEADLE_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEADLE_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEADLE_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEADLE_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_COUNTY_CO", - "description": null, - "label": "GRAND COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAND_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KERN_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KERN_COUNTY_CA", - "description": null, - "label": "KERN COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KERN_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KERN_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KERN_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KERN_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KERN_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KERN_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KERN_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KERN_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRONX_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRONX_COUNTY_NY", - "description": null, - "label": "BRONX COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRONX_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRONX_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRONX_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRONX_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRONX_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRONX_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRONX_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRONX_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRAXTON_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRAXTON_COUNTY_WV", - "description": null, - "label": "BRAXTON COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRAXTON_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRAXTON_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRAXTON_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRAXTON_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRAXTON_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRAXTON_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRAXTON_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRAXTON_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_BUREN_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_BUREN_COUNTY_IA", - "description": null, - "label": "VAN BUREN COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_BUREN_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_BUREN_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_BUREN_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_BUREN_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_BUREN_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_BUREN_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_BUREN_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_BUREN_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_IA", - "description": null, - "label": "BOONE COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STODDARD_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STODDARD_COUNTY_MO", - "description": null, - "label": "STODDARD COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STODDARD_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STODDARD_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STODDARD_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STODDARD_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STODDARD_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STODDARD_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STODDARD_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STODDARD_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOREST_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOREST_COUNTY_PA", - "description": null, - "label": "FOREST COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOREST_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOREST_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOREST_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOREST_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOREST_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOREST_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOREST_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOREST_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_MIGUEL_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_MIGUEL_COUNTY_CO", - "description": null, - "label": "SAN MIGUEL COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_MIGUEL_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_MIGUEL_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_MIGUEL_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_MIGUEL_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_MIGUEL_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_MIGUEL_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_MIGUEL_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_MIGUEL_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLACER_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLACER_COUNTY_CA", - "description": null, - "label": "PLACER COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLACER_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLACER_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLACER_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLACER_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLACER_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLACER_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLACER_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PLACER_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEAVENWORTH_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEAVENWORTH_COUNTY_KS", - "description": null, - "label": "LEAVENWORTH COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEAVENWORTH_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEAVENWORTH_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEAVENWORTH_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEAVENWORTH_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEAVENWORTH_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEAVENWORTH_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEAVENWORTH_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEAVENWORTH_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSWEGO_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSWEGO_COUNTY_NY", - "description": null, - "label": "OSWEGO COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSWEGO_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSWEGO_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSWEGO_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSWEGO_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSWEGO_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSWEGO_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSWEGO_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OSWEGO_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PREBLE_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PREBLE_COUNTY_OH", - "description": null, - "label": "PREBLE COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PREBLE_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PREBLE_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PREBLE_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PREBLE_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PREBLE_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PREBLE_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PREBLE_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PREBLE_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_OH", - "description": null, - "label": "WAYNE COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARBOUR_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARBOUR_COUNTY_AL", - "description": null, - "label": "BARBOUR COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARBOUR_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARBOUR_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARBOUR_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARBOUR_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARBOUR_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARBOUR_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARBOUR_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARBOUR_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_FL", - "description": null, - "label": "ORANGE COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENNINGTON_COUNTY_VT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENNINGTON_COUNTY_VT", - "description": null, - "label": "BENNINGTON COUNTY VT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENNINGTON_COUNTY_VT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENNINGTON_COUNTY_VT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENNINGTON_COUNTY_VT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENNINGTON_COUNTY_VT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENNINGTON_COUNTY_VT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENNINGTON_COUNTY_VT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENNINGTON_COUNTY_VT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENNINGTON_COUNTY_VT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALSH_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALSH_COUNTY_ND", - "description": null, - "label": "WALSH COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALSH_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALSH_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALSH_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALSH_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALSH_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALSH_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALSH_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALSH_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCMINN_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCMINN_COUNTY_TN", - "description": null, - "label": "MCMINN COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCMINN_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCMINN_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCMINN_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCMINN_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCMINN_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCMINN_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCMINN_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCMINN_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREGORY_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREGORY_COUNTY_SD", - "description": null, - "label": "GREGORY COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREGORY_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREGORY_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREGORY_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREGORY_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREGORY_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREGORY_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREGORY_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREGORY_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGEBURG_COUNTY_SC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGEBURG_COUNTY_SC", - "description": null, - "label": "ORANGEBURG COUNTY SC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGEBURG_COUNTY_SC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGEBURG_COUNTY_SC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGEBURG_COUNTY_SC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGEBURG_COUNTY_SC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGEBURG_COUNTY_SC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGEBURG_COUNTY_SC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGEBURG_COUNTY_SC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGEBURG_COUNTY_SC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINER_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINER_COUNTY_SD", - "description": null, - "label": "MINER COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINER_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINER_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINER_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINER_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINER_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINER_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINER_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MINER_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DADE_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DADE_COUNTY_GA", - "description": null, - "label": "DADE COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DADE_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DADE_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DADE_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DADE_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DADE_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DADE_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DADE_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DADE_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JERAULD_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JERAULD_COUNTY_SD", - "description": null, - "label": "JERAULD COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JERAULD_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JERAULD_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JERAULD_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JERAULD_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JERAULD_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JERAULD_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JERAULD_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JERAULD_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_WV", - "description": null, - "label": "CALHOUN COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NYE_COUNTY_NV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NYE_COUNTY_NV", - "description": null, - "label": "NYE COUNTY NV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NYE_COUNTY_NV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NYE_COUNTY_NV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NYE_COUNTY_NV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NYE_COUNTY_NV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NYE_COUNTY_NV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NYE_COUNTY_NV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NYE_COUNTY_NV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NYE_COUNTY_NV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_PARISH_LA", - "description": null, - "label": "ALLEN PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEN_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINNESHIEK_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINNESHIEK_COUNTY_IA", - "description": null, - "label": "WINNESHIEK COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINNESHIEK_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINNESHIEK_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINNESHIEK_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINNESHIEK_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINNESHIEK_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINNESHIEK_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINNESHIEK_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINNESHIEK_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANTRIM_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANTRIM_COUNTY_MI", - "description": null, - "label": "ANTRIM COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANTRIM_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANTRIM_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANTRIM_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANTRIM_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANTRIM_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANTRIM_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANTRIM_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANTRIM_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_OH", - "description": null, - "label": "MONROE COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONROE_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_MS", - "description": null, - "label": "WASHINGTON COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_MT", - "description": null, - "label": "RICHLAND COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUNN_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUNN_COUNTY_ND", - "description": null, - "label": "DUNN COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUNN_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUNN_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUNN_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUNN_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUNN_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUNN_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUNN_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUNN_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_TN", - "description": null, - "label": "FAYETTE COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_TN", - "description": null, - "label": "SCOTT COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCOTT_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANISLAUS_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANISLAUS_COUNTY_CA", - "description": null, - "label": "STANISLAUS COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANISLAUS_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANISLAUS_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANISLAUS_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANISLAUS_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANISLAUS_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANISLAUS_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANISLAUS_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STANISLAUS_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCINTOSH_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCINTOSH_COUNTY_ND", - "description": null, - "label": "MCINTOSH COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCINTOSH_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCINTOSH_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCINTOSH_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCINTOSH_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCINTOSH_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCINTOSH_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCINTOSH_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCINTOSH_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_NM": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_NM", - "description": null, - "label": "SAN JUAN COUNTY NM", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_NM.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_NM.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_NM.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_NM.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_NM.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_NM.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_NM.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_NM.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHLEICHER_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHLEICHER_COUNTY_TX", - "description": null, - "label": "SCHLEICHER COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHLEICHER_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHLEICHER_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHLEICHER_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHLEICHER_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHLEICHER_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHLEICHER_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHLEICHER_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHLEICHER_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KITTSON_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KITTSON_COUNTY_MN", - "description": null, - "label": "KITTSON COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KITTSON_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KITTSON_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KITTSON_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KITTSON_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KITTSON_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KITTSON_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KITTSON_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KITTSON_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAYSON_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAYSON_COUNTY_VA", - "description": null, - "label": "GRAYSON COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAYSON_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAYSON_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAYSON_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAYSON_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAYSON_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAYSON_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAYSON_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAYSON_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EVANGELINE_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EVANGELINE_PARISH_LA", - "description": null, - "label": "EVANGELINE PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EVANGELINE_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EVANGELINE_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EVANGELINE_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EVANGELINE_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EVANGELINE_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EVANGELINE_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EVANGELINE_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EVANGELINE_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RADFORD_CITY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RADFORD_CITY_VA", - "description": null, - "label": "RADFORD CITY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RADFORD_CITY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RADFORD_CITY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RADFORD_CITY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RADFORD_CITY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RADFORD_CITY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RADFORD_CITY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RADFORD_CITY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RADFORD_CITY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOBILE_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOBILE_COUNTY_AL", - "description": null, - "label": "MOBILE COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOBILE_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOBILE_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOBILE_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOBILE_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOBILE_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOBILE_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOBILE_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOBILE_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_TX", - "description": null, - "label": "POLK COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POLK_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYANDOTTE_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYANDOTTE_COUNTY_KS", - "description": null, - "label": "WYANDOTTE COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYANDOTTE_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYANDOTTE_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYANDOTTE_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYANDOTTE_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYANDOTTE_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYANDOTTE_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYANDOTTE_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYANDOTTE_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHELAN_COUNTY_WA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHELAN_COUNTY_WA", - "description": null, - "label": "CHELAN COUNTY WA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHELAN_COUNTY_WA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHELAN_COUNTY_WA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHELAN_COUNTY_WA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHELAN_COUNTY_WA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHELAN_COUNTY_WA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHELAN_COUNTY_WA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHELAN_COUNTY_WA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHELAN_COUNTY_WA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_NE", - "description": null, - "label": "GRANT COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONWAY_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONWAY_COUNTY_AR", - "description": null, - "label": "CONWAY COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONWAY_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONWAY_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONWAY_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONWAY_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONWAY_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONWAY_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONWAY_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CONWAY_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURNETT_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURNETT_COUNTY_WI", - "description": null, - "label": "BURNETT COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURNETT_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURNETT_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURNETT_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURNETT_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURNETT_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURNETT_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURNETT_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BURNETT_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOME_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOME_COUNTY_NY", - "description": null, - "label": "BROOME COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOME_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOME_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOME_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOME_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOME_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOME_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOME_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROOME_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_KY", - "description": null, - "label": "WAYNE COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WAYNE_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RED_LAKE_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RED_LAKE_COUNTY_MN", - "description": null, - "label": "RED LAKE COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RED_LAKE_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RED_LAKE_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RED_LAKE_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RED_LAKE_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RED_LAKE_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RED_LAKE_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RED_LAKE_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RED_LAKE_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STERLING_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STERLING_COUNTY_TX", - "description": null, - "label": "STERLING COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STERLING_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STERLING_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STERLING_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STERLING_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STERLING_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STERLING_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STERLING_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STERLING_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKALOOSA_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKALOOSA_COUNTY_FL", - "description": null, - "label": "OKALOOSA COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKALOOSA_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKALOOSA_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKALOOSA_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKALOOSA_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKALOOSA_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKALOOSA_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKALOOSA_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OKALOOSA_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASEY_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASEY_COUNTY_KY", - "description": null, - "label": "CASEY COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASEY_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASEY_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASEY_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASEY_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASEY_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASEY_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASEY_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CASEY_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KALKASKA_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KALKASKA_COUNTY_MI", - "description": null, - "label": "KALKASKA COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KALKASKA_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KALKASKA_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KALKASKA_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KALKASKA_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KALKASKA_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KALKASKA_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KALKASKA_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KALKASKA_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_GA", - "description": null, - "label": "CALHOUN COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALHOUN_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_PARISH_LA", - "description": null, - "label": "CALDWELL PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIAMI_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIAMI_COUNTY_OH", - "description": null, - "label": "MIAMI COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIAMI_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIAMI_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIAMI_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIAMI_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIAMI_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIAMI_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIAMI_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIAMI_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOLIVAR_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOLIVAR_COUNTY_MS", - "description": null, - "label": "BOLIVAR COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOLIVAR_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOLIVAR_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOLIVAR_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOLIVAR_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOLIVAR_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOLIVAR_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOLIVAR_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOLIVAR_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUSA_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUSA_COUNTY_CA", - "description": null, - "label": "COLUSA COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUSA_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUSA_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUSA_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUSA_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUSA_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUSA_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUSA_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLUSA_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.THOMAS_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.THOMAS_COUNTY_GA", - "description": null, - "label": "THOMAS COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.THOMAS_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.THOMAS_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.THOMAS_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.THOMAS_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.THOMAS_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.THOMAS_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.THOMAS_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.THOMAS_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_PA", - "description": null, - "label": "JEFFERSON COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_MS", - "description": null, - "label": "PERRY COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PERRY_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENDLETON_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENDLETON_COUNTY_WV", - "description": null, - "label": "PENDLETON COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENDLETON_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENDLETON_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENDLETON_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENDLETON_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENDLETON_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENDLETON_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENDLETON_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENDLETON_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_ND", - "description": null, - "label": "LOGAN COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOGAN_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLS_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLS_COUNTY_IA", - "description": null, - "label": "MILLS COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLS_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLS_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLS_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLS_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLS_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLS_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLS_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLS_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODFORD_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODFORD_COUNTY_IL", - "description": null, - "label": "WOODFORD COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODFORD_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODFORD_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODFORD_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODFORD_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODFORD_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODFORD_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODFORD_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WOODFORD_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_WI", - "description": null, - "label": "WASHINGTON COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_NY", - "description": null, - "label": "MONTGOMERY COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILSON_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILSON_COUNTY_TN", - "description": null, - "label": "WILSON COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILSON_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILSON_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILSON_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILSON_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILSON_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILSON_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILSON_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILSON_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JAYUYA_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JAYUYA_MUNICIPIO_PR", - "description": null, - "label": "JAYUYA MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JAYUYA_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JAYUYA_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JAYUYA_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JAYUYA_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JAYUYA_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JAYUYA_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JAYUYA_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JAYUYA_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEFLORE_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEFLORE_COUNTY_MS", - "description": null, - "label": "LEFLORE COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEFLORE_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEFLORE_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEFLORE_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEFLORE_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEFLORE_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEFLORE_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEFLORE_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEFLORE_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CIDRA_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CIDRA_MUNICIPIO_PR", - "description": null, - "label": "CIDRA MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CIDRA_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CIDRA_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CIDRA_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CIDRA_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CIDRA_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CIDRA_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CIDRA_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CIDRA_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PECOS_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PECOS_COUNTY_TX", - "description": null, - "label": "PECOS COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PECOS_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PECOS_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PECOS_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PECOS_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PECOS_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PECOS_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PECOS_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PECOS_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAYTON_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAYTON_COUNTY_GA", - "description": null, - "label": "CLAYTON COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAYTON_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAYTON_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAYTON_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAYTON_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAYTON_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAYTON_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAYTON_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAYTON_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NAVAJO_COUNTY_AZ": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NAVAJO_COUNTY_AZ", - "description": null, - "label": "NAVAJO COUNTY AZ", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NAVAJO_COUNTY_AZ.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NAVAJO_COUNTY_AZ.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NAVAJO_COUNTY_AZ.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NAVAJO_COUNTY_AZ.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NAVAJO_COUNTY_AZ.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NAVAJO_COUNTY_AZ.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NAVAJO_COUNTY_AZ.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NAVAJO_COUNTY_AZ.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_MO", - "description": null, - "label": "JEFFERSON COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAMA_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAMA_COUNTY_IA", - "description": null, - "label": "TAMA COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAMA_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAMA_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAMA_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAMA_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAMA_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAMA_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAMA_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAMA_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUEENS_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUEENS_COUNTY_NY", - "description": null, - "label": "QUEENS COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUEENS_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUEENS_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUEENS_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUEENS_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUEENS_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUEENS_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUEENS_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUEENS_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TANGIPAHOA_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TANGIPAHOA_PARISH_LA", - "description": null, - "label": "TANGIPAHOA PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TANGIPAHOA_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TANGIPAHOA_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TANGIPAHOA_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TANGIPAHOA_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TANGIPAHOA_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TANGIPAHOA_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TANGIPAHOA_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TANGIPAHOA_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_AND_CLARK_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_AND_CLARK_COUNTY_MT", - "description": null, - "label": "LEWIS AND CLARK COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_AND_CLARK_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_AND_CLARK_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_AND_CLARK_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_AND_CLARK_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_AND_CLARK_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_AND_CLARK_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_AND_CLARK_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_AND_CLARK_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMMONS_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMMONS_COUNTY_ND", - "description": null, - "label": "EMMONS COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMMONS_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMMONS_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMMONS_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMMONS_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMMONS_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMMONS_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMMONS_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EMMONS_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUZERNE_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUZERNE_COUNTY_PA", - "description": null, - "label": "LUZERNE COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUZERNE_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUZERNE_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUZERNE_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUZERNE_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUZERNE_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUZERNE_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUZERNE_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LUZERNE_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRISP_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRISP_COUNTY_GA", - "description": null, - "label": "CRISP COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRISP_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRISP_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRISP_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRISP_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRISP_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRISP_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRISP_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CRISP_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYOMING_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYOMING_COUNTY_WV", - "description": null, - "label": "WYOMING COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYOMING_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYOMING_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYOMING_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYOMING_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYOMING_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYOMING_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYOMING_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYOMING_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTAWATTAMIE_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTAWATTAMIE_COUNTY_IA", - "description": null, - "label": "POTTAWATTAMIE COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTAWATTAMIE_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTAWATTAMIE_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTAWATTAMIE_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTAWATTAMIE_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTAWATTAMIE_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTAWATTAMIE_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTAWATTAMIE_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POTTAWATTAMIE_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAYSON_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAYSON_COUNTY_KY", - "description": null, - "label": "GRAYSON COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAYSON_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAYSON_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAYSON_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAYSON_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAYSON_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAYSON_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAYSON_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRAYSON_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOLIAD_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOLIAD_COUNTY_TX", - "description": null, - "label": "GOLIAD COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOLIAD_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOLIAD_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOLIAD_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOLIAD_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOLIAD_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOLIAD_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOLIAD_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GOLIAD_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HYDE_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HYDE_COUNTY_SD", - "description": null, - "label": "HYDE COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HYDE_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HYDE_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HYDE_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HYDE_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HYDE_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HYDE_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HYDE_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HYDE_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_KY", - "description": null, - "label": "BOONE COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VILAS_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VILAS_COUNTY_WI", - "description": null, - "label": "VILAS COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VILAS_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VILAS_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VILAS_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VILAS_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VILAS_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VILAS_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VILAS_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VILAS_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_IL", - "description": null, - "label": "PULASKI COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_SD", - "description": null, - "label": "CARTER COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARTER_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLLIN_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLLIN_COUNTY_TX", - "description": null, - "label": "COLLIN COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLLIN_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLLIN_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLLIN_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLLIN_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLLIN_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLLIN_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLLIN_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLLIN_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOWNDES_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOWNDES_COUNTY_AL", - "description": null, - "label": "LOWNDES COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOWNDES_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOWNDES_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOWNDES_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOWNDES_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOWNDES_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOWNDES_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOWNDES_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOWNDES_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FILLMORE_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FILLMORE_COUNTY_MN", - "description": null, - "label": "FILLMORE COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FILLMORE_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FILLMORE_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FILLMORE_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FILLMORE_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FILLMORE_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FILLMORE_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FILLMORE_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FILLMORE_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARKE_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARKE_COUNTY_IN", - "description": null, - "label": "STARKE COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARKE_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARKE_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARKE_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARKE_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARKE_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARKE_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARKE_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARKE_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DARLINGTON_COUNTY_SC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DARLINGTON_COUNTY_SC", - "description": null, - "label": "DARLINGTON COUNTY SC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DARLINGTON_COUNTY_SC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DARLINGTON_COUNTY_SC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DARLINGTON_COUNTY_SC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DARLINGTON_COUNTY_SC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DARLINGTON_COUNTY_SC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DARLINGTON_COUNTY_SC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DARLINGTON_COUNTY_SC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DARLINGTON_COUNTY_SC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RHEA_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RHEA_COUNTY_TN", - "description": null, - "label": "RHEA COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RHEA_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RHEA_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RHEA_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RHEA_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RHEA_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RHEA_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RHEA_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RHEA_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RITCHIE_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RITCHIE_COUNTY_WV", - "description": null, - "label": "RITCHIE COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RITCHIE_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RITCHIE_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RITCHIE_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RITCHIE_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RITCHIE_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RITCHIE_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RITCHIE_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RITCHIE_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_MO", - "description": null, - "label": "PULASKI COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OWEN_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OWEN_COUNTY_IN", - "description": null, - "label": "OWEN COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OWEN_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OWEN_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OWEN_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OWEN_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OWEN_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OWEN_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OWEN_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OWEN_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITMAN_COUNTY_WA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITMAN_COUNTY_WA", - "description": null, - "label": "WHITMAN COUNTY WA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITMAN_COUNTY_WA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITMAN_COUNTY_WA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITMAN_COUNTY_WA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITMAN_COUNTY_WA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITMAN_COUNTY_WA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITMAN_COUNTY_WA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITMAN_COUNTY_WA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITMAN_COUNTY_WA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGLALA_LAKOTA_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGLALA_LAKOTA_COUNTY_SD", - "description": null, - "label": "OGLALA LAKOTA COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGLALA_LAKOTA_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGLALA_LAKOTA_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGLALA_LAKOTA_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGLALA_LAKOTA_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGLALA_LAKOTA_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGLALA_LAKOTA_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGLALA_LAKOTA_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGLALA_LAKOTA_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LANDRY_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LANDRY_PARISH_LA", - "description": null, - "label": "ST LANDRY PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LANDRY_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LANDRY_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LANDRY_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LANDRY_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LANDRY_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LANDRY_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LANDRY_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_LANDRY_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_WA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_WA", - "description": null, - "label": "SAN JUAN COUNTY WA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_WA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_WA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_WA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_WA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_WA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_WA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_WA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_WA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORMAN_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORMAN_COUNTY_MN", - "description": null, - "label": "NORMAN COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORMAN_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORMAN_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORMAN_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORMAN_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORMAN_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORMAN_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORMAN_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NORMAN_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CURRY_COUNTY_NM": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CURRY_COUNTY_NM", - "description": null, - "label": "CURRY COUNTY NM", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CURRY_COUNTY_NM.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CURRY_COUNTY_NM.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CURRY_COUNTY_NM.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CURRY_COUNTY_NM.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CURRY_COUNTY_NM.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CURRY_COUNTY_NM.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CURRY_COUNTY_NM.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CURRY_COUNTY_NM.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_SC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_SC", - "description": null, - "label": "RICHLAND COUNTY SC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_SC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_SC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_SC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_SC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_SC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_SC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_SC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHLAND_COUNTY_SC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIOUX_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIOUX_COUNTY_NE", - "description": null, - "label": "SIOUX COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIOUX_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIOUX_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIOUX_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIOUX_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIOUX_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIOUX_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIOUX_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SIOUX_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_CO", - "description": null, - "label": "GARFIELD COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARFIELD_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAINE_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAINE_COUNTY_MT", - "description": null, - "label": "BLAINE COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAINE_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAINE_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAINE_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAINE_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAINE_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAINE_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAINE_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BLAINE_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDREWS_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDREWS_COUNTY_TX", - "description": null, - "label": "ANDREWS COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDREWS_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDREWS_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDREWS_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDREWS_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDREWS_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDREWS_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDREWS_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ANDREWS_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLMES_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLMES_COUNTY_OH", - "description": null, - "label": "HOLMES COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLMES_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLMES_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLMES_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLMES_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLMES_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLMES_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLMES_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLMES_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANE_COUNTY_UT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANE_COUNTY_UT", - "description": null, - "label": "KANE COUNTY UT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANE_COUNTY_UT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANE_COUNTY_UT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANE_COUNTY_UT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANE_COUNTY_UT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANE_COUNTY_UT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANE_COUNTY_UT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANE_COUNTY_UT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KANE_COUNTY_UT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOS_COUNTY_OR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOS_COUNTY_OR", - "description": null, - "label": "COOS COUNTY OR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOS_COUNTY_OR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOS_COUNTY_OR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOS_COUNTY_OR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOS_COUNTY_OR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOS_COUNTY_OR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOS_COUNTY_OR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOS_COUNTY_OR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COOS_COUNTY_OR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALKER_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALKER_COUNTY_AL", - "description": null, - "label": "WALKER COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALKER_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALKER_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALKER_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALKER_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALKER_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALKER_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALKER_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALKER_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCKS_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCKS_COUNTY_PA", - "description": null, - "label": "BUCKS COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCKS_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCKS_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCKS_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCKS_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCKS_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCKS_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCKS_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCKS_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_MO", - "description": null, - "label": "MERCER COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MERCER_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRUNSWICK_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRUNSWICK_COUNTY_VA", - "description": null, - "label": "BRUNSWICK COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRUNSWICK_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRUNSWICK_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRUNSWICK_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRUNSWICK_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRUNSWICK_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRUNSWICK_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRUNSWICK_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRUNSWICK_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARK_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARK_COUNTY_IL", - "description": null, - "label": "STARK COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARK_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARK_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARK_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARK_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARK_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARK_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARK_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STARK_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLASSCOCK_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLASSCOCK_COUNTY_TX", - "description": null, - "label": "GLASSCOCK COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLASSCOCK_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLASSCOCK_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLASSCOCK_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLASSCOCK_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLASSCOCK_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLASSCOCK_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLASSCOCK_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GLASSCOCK_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPOKANE_COUNTY_WA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPOKANE_COUNTY_WA", - "description": null, - "label": "SPOKANE COUNTY WA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPOKANE_COUNTY_WA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPOKANE_COUNTY_WA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPOKANE_COUNTY_WA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPOKANE_COUNTY_WA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPOKANE_COUNTY_WA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPOKANE_COUNTY_WA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPOKANE_COUNTY_WA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPOKANE_COUNTY_WA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUSCALOOSA_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUSCALOOSA_COUNTY_AL", - "description": null, - "label": "TUSCALOOSA COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUSCALOOSA_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUSCALOOSA_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUSCALOOSA_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUSCALOOSA_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUSCALOOSA_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUSCALOOSA_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUSCALOOSA_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TUSCALOOSA_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_IA", - "description": null, - "label": "CLINTON COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALIAFERRO_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALIAFERRO_COUNTY_GA", - "description": null, - "label": "TALIAFERRO COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALIAFERRO_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALIAFERRO_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALIAFERRO_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALIAFERRO_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALIAFERRO_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALIAFERRO_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALIAFERRO_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TALIAFERRO_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARTHOLOMEW_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARTHOLOMEW_COUNTY_IN", - "description": null, - "label": "BARTHOLOMEW COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARTHOLOMEW_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARTHOLOMEW_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARTHOLOMEW_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARTHOLOMEW_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARTHOLOMEW_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARTHOLOMEW_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARTHOLOMEW_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARTHOLOMEW_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AMELIA_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AMELIA_COUNTY_VA", - "description": null, - "label": "AMELIA COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AMELIA_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AMELIA_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AMELIA_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AMELIA_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AMELIA_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AMELIA_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AMELIA_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AMELIA_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANKIN_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANKIN_COUNTY_MS", - "description": null, - "label": "RANKIN COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANKIN_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANKIN_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANKIN_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANKIN_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANKIN_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANKIN_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANKIN_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANKIN_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CEIBA_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CEIBA_MUNICIPIO_PR", - "description": null, - "label": "CEIBA MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CEIBA_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CEIBA_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CEIBA_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CEIBA_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CEIBA_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CEIBA_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CEIBA_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CEIBA_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHOCTAW_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHOCTAW_COUNTY_AL", - "description": null, - "label": "CHOCTAW COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHOCTAW_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHOCTAW_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHOCTAW_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHOCTAW_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHOCTAW_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHOCTAW_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHOCTAW_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHOCTAW_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMIT_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMIT_COUNTY_OH", - "description": null, - "label": "SUMMIT COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMIT_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMIT_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMIT_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMIT_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMIT_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMIT_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMIT_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMMIT_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEAKLEY_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEAKLEY_COUNTY_TN", - "description": null, - "label": "WEAKLEY COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEAKLEY_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEAKLEY_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEAKLEY_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEAKLEY_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEAKLEY_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEAKLEY_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEAKLEY_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEAKLEY_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_WV", - "description": null, - "label": "TAYLOR COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALUDA_COUNTY_SC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALUDA_COUNTY_SC", - "description": null, - "label": "SALUDA COUNTY SC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALUDA_COUNTY_SC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALUDA_COUNTY_SC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALUDA_COUNTY_SC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALUDA_COUNTY_SC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALUDA_COUNTY_SC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALUDA_COUNTY_SC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALUDA_COUNTY_SC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SALUDA_COUNTY_SC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPTON_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPTON_COUNTY_IN", - "description": null, - "label": "TIPTON COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPTON_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPTON_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPTON_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPTON_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPTON_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPTON_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPTON_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TIPTON_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WESTON_COUNTY_WY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WESTON_COUNTY_WY", - "description": null, - "label": "WESTON COUNTY WY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WESTON_COUNTY_WY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WESTON_COUNTY_WY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WESTON_COUNTY_WY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WESTON_COUNTY_WY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WESTON_COUNTY_WY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WESTON_COUNTY_WY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WESTON_COUNTY_WY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WESTON_COUNTY_WY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALTIMORE_COUNTY_MD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALTIMORE_COUNTY_MD", - "description": null, - "label": "BALTIMORE COUNTY MD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALTIMORE_COUNTY_MD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALTIMORE_COUNTY_MD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALTIMORE_COUNTY_MD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALTIMORE_COUNTY_MD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALTIMORE_COUNTY_MD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALTIMORE_COUNTY_MD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALTIMORE_COUNTY_MD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BALTIMORE_COUNTY_MD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTAWA_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTAWA_COUNTY_OK", - "description": null, - "label": "OTTAWA COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTAWA_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTAWA_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTAWA_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTAWA_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTAWA_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTAWA_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTAWA_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OTTAWA_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMTER_COUNTY_SC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMTER_COUNTY_SC", - "description": null, - "label": "SUMTER COUNTY SC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMTER_COUNTY_SC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMTER_COUNTY_SC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMTER_COUNTY_SC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMTER_COUNTY_SC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMTER_COUNTY_SC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMTER_COUNTY_SC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMTER_COUNTY_SC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUMTER_COUNTY_SC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_MO", - "description": null, - "label": "WEBSTER COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WEBSTER_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_WA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_WA", - "description": null, - "label": "JEFFERSON COUNTY WA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_WA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_WA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_WA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_WA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_WA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_WA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_WA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JEFFERSON_COUNTY_WA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_FL", - "description": null, - "label": "PUTNAM COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_AR", - "description": null, - "label": "CARROLL COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BON_HOMME_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BON_HOMME_COUNTY_SD", - "description": null, - "label": "BON HOMME COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BON_HOMME_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BON_HOMME_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BON_HOMME_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BON_HOMME_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BON_HOMME_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BON_HOMME_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BON_HOMME_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BON_HOMME_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_IN", - "description": null, - "label": "CLARK COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLARK_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENOMINEE_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENOMINEE_COUNTY_WI", - "description": null, - "label": "MENOMINEE COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENOMINEE_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENOMINEE_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENOMINEE_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENOMINEE_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENOMINEE_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENOMINEE_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENOMINEE_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENOMINEE_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEMINOLE_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEMINOLE_COUNTY_OK", - "description": null, - "label": "SEMINOLE COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEMINOLE_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEMINOLE_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEMINOLE_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEMINOLE_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEMINOLE_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEMINOLE_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEMINOLE_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEMINOLE_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARD_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARD_COUNTY_ND", - "description": null, - "label": "WARD COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARD_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARD_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARD_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARD_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARD_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARD_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARD_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARD_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAUTAUQUA_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAUTAUQUA_COUNTY_NY", - "description": null, - "label": "CHAUTAUQUA COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAUTAUQUA_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAUTAUQUA_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAUTAUQUA_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAUTAUQUA_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAUTAUQUA_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAUTAUQUA_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAUTAUQUA_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHAUTAUQUA_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MODOC_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MODOC_COUNTY_CA", - "description": null, - "label": "MODOC COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MODOC_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MODOC_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MODOC_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MODOC_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MODOC_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MODOC_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MODOC_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MODOC_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIBERTY_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIBERTY_COUNTY_GA", - "description": null, - "label": "LIBERTY COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIBERTY_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIBERTY_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIBERTY_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIBERTY_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIBERTY_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIBERTY_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIBERTY_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LIBERTY_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_IN", - "description": null, - "label": "LAKE COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JOHNS_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JOHNS_COUNTY_FL", - "description": null, - "label": "ST JOHNS COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JOHNS_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JOHNS_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JOHNS_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JOHNS_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JOHNS_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JOHNS_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JOHNS_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JOHNS_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_MN", - "description": null, - "label": "LAKE COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAKE_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMERON_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMERON_COUNTY_PA", - "description": null, - "label": "CAMERON COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMERON_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMERON_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMERON_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMERON_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMERON_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMERON_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMERON_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMERON_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTERFIELD_COUNTY_SC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTERFIELD_COUNTY_SC", - "description": null, - "label": "CHESTERFIELD COUNTY SC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTERFIELD_COUNTY_SC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTERFIELD_COUNTY_SC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTERFIELD_COUNTY_SC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTERFIELD_COUNTY_SC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTERFIELD_COUNTY_SC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTERFIELD_COUNTY_SC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTERFIELD_COUNTY_SC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTERFIELD_COUNTY_SC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALKER_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALKER_COUNTY_GA", - "description": null, - "label": "WALKER COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALKER_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALKER_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALKER_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALKER_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALKER_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALKER_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALKER_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WALKER_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOULDER_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOULDER_COUNTY_CO", - "description": null, - "label": "BOULDER COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOULDER_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOULDER_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOULDER_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOULDER_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOULDER_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOULDER_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOULDER_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOULDER_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALGER_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALGER_COUNTY_MI", - "description": null, - "label": "ALGER COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALGER_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALGER_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALGER_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALGER_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALGER_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALGER_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALGER_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALGER_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_IL", - "description": null, - "label": "RANDOLPH COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RANDOLPH_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOLAN_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOLAN_COUNTY_TX", - "description": null, - "label": "NOLAN COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOLAN_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOLAN_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOLAN_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOLAN_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOLAN_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOLAN_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOLAN_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOLAN_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_AZ": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_AZ", - "description": null, - "label": "SAN JUAN COUNTY AZ", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_AZ.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_AZ.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_AZ.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_AZ.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_AZ.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_AZ.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_AZ.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SAN_JUAN_COUNTY_AZ.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPENCER_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPENCER_COUNTY_KY", - "description": null, - "label": "SPENCER COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPENCER_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPENCER_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPENCER_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPENCER_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPENCER_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPENCER_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPENCER_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SPENCER_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRADY_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRADY_COUNTY_GA", - "description": null, - "label": "GRADY COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRADY_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRADY_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRADY_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRADY_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRADY_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRADY_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRADY_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRADY_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TATE_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TATE_COUNTY_MS", - "description": null, - "label": "TATE COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TATE_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TATE_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TATE_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TATE_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TATE_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TATE_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TATE_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TATE_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_OH", - "description": null, - "label": "WARREN COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_TN", - "description": null, - "label": "MORGAN COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORGAN_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_KS", - "description": null, - "label": "JACKSON COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VINTON_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VINTON_COUNTY_OH", - "description": null, - "label": "VINTON COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VINTON_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VINTON_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VINTON_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VINTON_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VINTON_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VINTON_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VINTON_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VINTON_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARZA_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARZA_COUNTY_TX", - "description": null, - "label": "GARZA COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARZA_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARZA_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARZA_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARZA_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARZA_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARZA_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARZA_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GARZA_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TREASURE_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TREASURE_COUNTY_MT", - "description": null, - "label": "TREASURE COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TREASURE_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TREASURE_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TREASURE_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TREASURE_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TREASURE_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TREASURE_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TREASURE_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TREASURE_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWHATAN_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWHATAN_COUNTY_VA", - "description": null, - "label": "POWHATAN COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWHATAN_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWHATAN_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWHATAN_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWHATAN_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWHATAN_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWHATAN_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWHATAN_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POWHATAN_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_TX", - "description": null, - "label": "FAYETTE COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIDALGO_COUNTY_NM": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIDALGO_COUNTY_NM", - "description": null, - "label": "HIDALGO COUNTY NM", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIDALGO_COUNTY_NM.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIDALGO_COUNTY_NM.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIDALGO_COUNTY_NM.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIDALGO_COUNTY_NM.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIDALGO_COUNTY_NM.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIDALGO_COUNTY_NM.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIDALGO_COUNTY_NM.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HIDALGO_COUNTY_NM.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_GA", - "description": null, - "label": "TAYLOR COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLMES_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLMES_COUNTY_FL", - "description": null, - "label": "HOLMES COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLMES_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLMES_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLMES_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLMES_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLMES_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLMES_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLMES_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOLMES_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEORGETOWN_COUNTY_SC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEORGETOWN_COUNTY_SC", - "description": null, - "label": "GEORGETOWN COUNTY SC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEORGETOWN_COUNTY_SC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEORGETOWN_COUNTY_SC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEORGETOWN_COUNTY_SC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEORGETOWN_COUNTY_SC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEORGETOWN_COUNTY_SC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEORGETOWN_COUNTY_SC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEORGETOWN_COUNTY_SC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GEORGETOWN_COUNTY_SC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_IL", - "description": null, - "label": "BROWN COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDING_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDING_COUNTY_SD", - "description": null, - "label": "HARDING COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDING_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDING_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDING_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDING_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDING_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDING_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDING_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARDING_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_MS", - "description": null, - "label": "MADISON COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MADISON_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMERON_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMERON_COUNTY_TX", - "description": null, - "label": "CAMERON COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMERON_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMERON_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMERON_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMERON_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMERON_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMERON_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMERON_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMERON_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEYENNE_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEYENNE_COUNTY_CO", - "description": null, - "label": "CHEYENNE COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEYENNE_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEYENNE_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEYENNE_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEYENNE_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEYENNE_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEYENNE_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEYENNE_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEYENNE_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DANE_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DANE_COUNTY_WI", - "description": null, - "label": "DANE COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DANE_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DANE_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DANE_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DANE_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DANE_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DANE_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DANE_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DANE_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AVOYELLES_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AVOYELLES_PARISH_LA", - "description": null, - "label": "AVOYELLES PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AVOYELLES_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AVOYELLES_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AVOYELLES_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AVOYELLES_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AVOYELLES_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AVOYELLES_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.AVOYELLES_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.AVOYELLES_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_OK", - "description": null, - "label": "LINCOLN COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKEAN_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKEAN_COUNTY_PA", - "description": null, - "label": "MCKEAN COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKEAN_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKEAN_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKEAN_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKEAN_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKEAN_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKEAN_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKEAN_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCKEAN_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGANY_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGANY_COUNTY_NY", - "description": null, - "label": "ALLEGANY COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGANY_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGANY_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGANY_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGANY_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGANY_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGANY_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGANY_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGANY_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOVING_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOVING_COUNTY_TX", - "description": null, - "label": "LOVING COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOVING_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOVING_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOVING_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOVING_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOVING_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOVING_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOVING_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOVING_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COCHISE_COUNTY_AZ": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COCHISE_COUNTY_AZ", - "description": null, - "label": "COCHISE COUNTY AZ", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COCHISE_COUNTY_AZ.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COCHISE_COUNTY_AZ.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COCHISE_COUNTY_AZ.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COCHISE_COUNTY_AZ.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COCHISE_COUNTY_AZ.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COCHISE_COUNTY_AZ.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COCHISE_COUNTY_AZ.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COCHISE_COUNTY_AZ.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTSON_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTSON_COUNTY_KY", - "description": null, - "label": "ROBERTSON COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTSON_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTSON_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTSON_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTSON_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTSON_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTSON_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTSON_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTSON_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_KY", - "description": null, - "label": "MARSHALL COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MARSHALL_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_IA", - "description": null, - "label": "DALLAS COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EARLY_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EARLY_COUNTY_GA", - "description": null, - "label": "EARLY COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EARLY_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EARLY_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EARLY_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EARLY_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EARLY_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EARLY_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EARLY_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EARLY_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOODY_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOODY_COUNTY_SD", - "description": null, - "label": "MOODY COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOODY_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOODY_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOODY_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOODY_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOODY_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOODY_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOODY_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MOODY_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORSYTH_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORSYTH_COUNTY_GA", - "description": null, - "label": "FORSYTH COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORSYTH_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORSYTH_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORSYTH_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORSYTH_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORSYTH_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORSYTH_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORSYTH_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FORSYTH_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_AR", - "description": null, - "label": "HOWARD COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HOWARD_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_AR", - "description": null, - "label": "DALLAS COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DALLAS_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_OH", - "description": null, - "label": "PIKE COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VALLEY_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VALLEY_COUNTY_MT", - "description": null, - "label": "VALLEY COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VALLEY_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VALLEY_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VALLEY_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VALLEY_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VALLEY_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VALLEY_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VALLEY_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VALLEY_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_NE", - "description": null, - "label": "BROWN COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BROWN_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MISSISSIPPI_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MISSISSIPPI_COUNTY_MO", - "description": null, - "label": "MISSISSIPPI COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MISSISSIPPI_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MISSISSIPPI_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MISSISSIPPI_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MISSISSIPPI_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MISSISSIPPI_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MISSISSIPPI_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MISSISSIPPI_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MISSISSIPPI_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VOLUSIA_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VOLUSIA_COUNTY_FL", - "description": null, - "label": "VOLUSIA COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VOLUSIA_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VOLUSIA_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VOLUSIA_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VOLUSIA_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VOLUSIA_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VOLUSIA_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VOLUSIA_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VOLUSIA_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_IA", - "description": null, - "label": "FAYETTE COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAYETTE_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HINDS_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HINDS_COUNTY_MS", - "description": null, - "label": "HINDS COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HINDS_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HINDS_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HINDS_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HINDS_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HINDS_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HINDS_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HINDS_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HINDS_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_IN", - "description": null, - "label": "WHITE COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITE_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_NE", - "description": null, - "label": "CLAY COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLAY_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHUYLER_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHUYLER_COUNTY_IL", - "description": null, - "label": "SCHUYLER COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHUYLER_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHUYLER_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHUYLER_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHUYLER_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHUYLER_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHUYLER_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHUYLER_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCHUYLER_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUNTINGTON_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUNTINGTON_COUNTY_IN", - "description": null, - "label": "HUNTINGTON COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUNTINGTON_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUNTINGTON_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUNTINGTON_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUNTINGTON_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUNTINGTON_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUNTINGTON_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUNTINGTON_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HUNTINGTON_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREDERICK_COUNTY_MD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREDERICK_COUNTY_MD", - "description": null, - "label": "FREDERICK COUNTY MD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREDERICK_COUNTY_MD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREDERICK_COUNTY_MD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREDERICK_COUNTY_MD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREDERICK_COUNTY_MD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREDERICK_COUNTY_MD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREDERICK_COUNTY_MD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREDERICK_COUNTY_MD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FREDERICK_COUNTY_MD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLER_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLER_COUNTY_GA", - "description": null, - "label": "MILLER COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLER_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLER_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLER_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLER_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLER_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLER_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLER_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLER_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_OH": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_OH", - "description": null, - "label": "CLINTON COUNTY OH", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_OH.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_OH.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_OH.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_OH.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_OH.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_OH.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_OH.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CLINTON_COUNTY_OH.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUWANNEE_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUWANNEE_COUNTY_FL", - "description": null, - "label": "SUWANNEE COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUWANNEE_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUWANNEE_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUWANNEE_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUWANNEE_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUWANNEE_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUWANNEE_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUWANNEE_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUWANNEE_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTS_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTS_COUNTY_SD", - "description": null, - "label": "ROBERTS COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTS_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTS_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTS_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTS_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTS_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTS_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTS_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ROBERTS_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BONNEVILLE_COUNTY_WY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BONNEVILLE_COUNTY_WY", - "description": null, - "label": "BONNEVILLE COUNTY WY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BONNEVILLE_COUNTY_WY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BONNEVILLE_COUNTY_WY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BONNEVILLE_COUNTY_WY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BONNEVILLE_COUNTY_WY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BONNEVILLE_COUNTY_WY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BONNEVILLE_COUNTY_WY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BONNEVILLE_COUNTY_WY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BONNEVILLE_COUNTY_WY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRIS_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRIS_COUNTY_TX", - "description": null, - "label": "MORRIS COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRIS_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRIS_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRIS_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRIS_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRIS_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRIS_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRIS_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MORRIS_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAYUGA_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAYUGA_COUNTY_NY", - "description": null, - "label": "CAYUGA COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAYUGA_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAYUGA_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAYUGA_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAYUGA_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAYUGA_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAYUGA_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAYUGA_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAYUGA_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JAMES_CITY_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JAMES_CITY_COUNTY_VA", - "description": null, - "label": "JAMES CITY COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JAMES_CITY_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JAMES_CITY_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JAMES_CITY_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JAMES_CITY_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JAMES_CITY_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JAMES_CITY_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JAMES_CITY_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JAMES_CITY_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGLETHORPE_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGLETHORPE_COUNTY_GA", - "description": null, - "label": "OGLETHORPE COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGLETHORPE_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGLETHORPE_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGLETHORPE_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGLETHORPE_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGLETHORPE_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGLETHORPE_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGLETHORPE_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OGLETHORPE_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRAIRIE_COUNTY_MT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRAIRIE_COUNTY_MT", - "description": null, - "label": "PRAIRIE COUNTY MT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRAIRIE_COUNTY_MT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRAIRIE_COUNTY_MT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRAIRIE_COUNTY_MT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRAIRIE_COUNTY_MT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRAIRIE_COUNTY_MT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRAIRIE_COUNTY_MT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRAIRIE_COUNTY_MT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRAIRIE_COUNTY_MT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITESIDE_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITESIDE_COUNTY_IL", - "description": null, - "label": "WHITESIDE COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITESIDE_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITESIDE_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITESIDE_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITESIDE_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITESIDE_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITESIDE_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITESIDE_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WHITESIDE_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTER_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTER_COUNTY_PA", - "description": null, - "label": "CHESTER COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTER_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTER_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTER_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTER_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTER_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTER_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTER_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHESTER_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NAGUABO_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NAGUABO_MUNICIPIO_PR", - "description": null, - "label": "NAGUABO MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NAGUABO_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NAGUABO_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NAGUABO_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NAGUABO_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NAGUABO_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NAGUABO_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NAGUABO_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NAGUABO_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.APACHE_COUNTY_UT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.APACHE_COUNTY_UT", - "description": null, - "label": "APACHE COUNTY UT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.APACHE_COUNTY_UT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.APACHE_COUNTY_UT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.APACHE_COUNTY_UT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.APACHE_COUNTY_UT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.APACHE_COUNTY_UT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.APACHE_COUNTY_UT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.APACHE_COUNTY_UT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.APACHE_COUNTY_UT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAVER_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAVER_COUNTY_PA", - "description": null, - "label": "BEAVER COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAVER_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAVER_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAVER_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAVER_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAVER_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAVER_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAVER_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BEAVER_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUVAL_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUVAL_COUNTY_FL", - "description": null, - "label": "DUVAL COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUVAL_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUVAL_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUVAL_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUVAL_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUVAL_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUVAL_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUVAL_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DUVAL_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_OR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_OR", - "description": null, - "label": "GRANT COUNTY OR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_OR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_OR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_OR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_OR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_OR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_OR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_OR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GRANT_COUNTY_OR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_MD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_MD", - "description": null, - "label": "WASHINGTON COUNTY MD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_MD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_MD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_MD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_MD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_MD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_MD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_MD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_MD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILADELPHIA_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILADELPHIA_COUNTY_PA", - "description": null, - "label": "PHILADELPHIA COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILADELPHIA_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILADELPHIA_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILADELPHIA_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILADELPHIA_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILADELPHIA_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILADELPHIA_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILADELPHIA_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PHILADELPHIA_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARKE_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARKE_COUNTY_IN", - "description": null, - "label": "PARKE COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARKE_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARKE_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARKE_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARKE_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARKE_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARKE_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARKE_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PARKE_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONTARIO_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONTARIO_COUNTY_NY", - "description": null, - "label": "ONTARIO COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONTARIO_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONTARIO_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONTARIO_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONTARIO_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONTARIO_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONTARIO_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONTARIO_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ONTARIO_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANE_COUNTY_OR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANE_COUNTY_OR", - "description": null, - "label": "LANE COUNTY OR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANE_COUNTY_OR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANE_COUNTY_OR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANE_COUNTY_OR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANE_COUNTY_OR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANE_COUNTY_OR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANE_COUNTY_OR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANE_COUNTY_OR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LANE_COUNTY_OR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATKINSON_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATKINSON_COUNTY_GA", - "description": null, - "label": "ATKINSON COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATKINSON_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATKINSON_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATKINSON_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATKINSON_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATKINSON_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATKINSON_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATKINSON_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ATKINSON_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEOKUK_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEOKUK_COUNTY_IA", - "description": null, - "label": "KEOKUK COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEOKUK_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEOKUK_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEOKUK_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEOKUK_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEOKUK_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEOKUK_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEOKUK_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KEOKUK_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_WA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_WA", - "description": null, - "label": "PIERCE COUNTY WA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_WA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_WA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_WA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_WA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_WA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_WA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_WA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIERCE_COUNTY_WA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOBLES_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOBLES_COUNTY_MN", - "description": null, - "label": "NOBLES COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOBLES_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOBLES_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOBLES_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOBLES_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOBLES_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOBLES_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOBLES_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NOBLES_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHATTAHOOCHEE_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHATTAHOOCHEE_COUNTY_GA", - "description": null, - "label": "CHATTAHOOCHEE COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHATTAHOOCHEE_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHATTAHOOCHEE_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHATTAHOOCHEE_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHATTAHOOCHEE_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHATTAHOOCHEE_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHATTAHOOCHEE_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHATTAHOOCHEE_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHATTAHOOCHEE_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDDLESEX_COUNTY_MA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDDLESEX_COUNTY_MA", - "description": null, - "label": "MIDDLESEX COUNTY MA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDDLESEX_COUNTY_MA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDDLESEX_COUNTY_MA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDDLESEX_COUNTY_MA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDDLESEX_COUNTY_MA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDDLESEX_COUNTY_MA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDDLESEX_COUNTY_MA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDDLESEX_COUNTY_MA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIDDLESEX_COUNTY_MA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VIGO_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VIGO_COUNTY_IN", - "description": null, - "label": "VIGO COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VIGO_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VIGO_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VIGO_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VIGO_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VIGO_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VIGO_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VIGO_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VIGO_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOOCHICHING_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOOCHICHING_COUNTY_MN", - "description": null, - "label": "KOOCHICHING COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOOCHICHING_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOOCHICHING_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOOCHICHING_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOOCHICHING_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOOCHICHING_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOOCHICHING_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOOCHICHING_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOOCHICHING_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HATILLO_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HATILLO_MUNICIPIO_PR", - "description": null, - "label": "HATILLO MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HATILLO_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HATILLO_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HATILLO_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HATILLO_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HATILLO_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HATILLO_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HATILLO_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HATILLO_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOX_ELDER_COUNTY_UT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOX_ELDER_COUNTY_UT", - "description": null, - "label": "BOX ELDER COUNTY UT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOX_ELDER_COUNTY_UT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOX_ELDER_COUNTY_UT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOX_ELDER_COUNTY_UT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOX_ELDER_COUNTY_UT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOX_ELDER_COUNTY_UT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOX_ELDER_COUNTY_UT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOX_ELDER_COUNTY_UT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOX_ELDER_COUNTY_UT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEÑUELAS_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEÑUELAS_MUNICIPIO_PR", - "description": null, - "label": "PEÑUELAS MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEÑUELAS_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEÑUELAS_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEÑUELAS_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEÑUELAS_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEÑUELAS_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEÑUELAS_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEÑUELAS_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PEÑUELAS_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LARIMER_COUNTY_WY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LARIMER_COUNTY_WY", - "description": null, - "label": "LARIMER COUNTY WY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LARIMER_COUNTY_WY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LARIMER_COUNTY_WY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LARIMER_COUNTY_WY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LARIMER_COUNTY_WY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LARIMER_COUNTY_WY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LARIMER_COUNTY_WY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LARIMER_COUNTY_WY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LARIMER_COUNTY_WY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_MS", - "description": null, - "label": "HARRISON COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARRISON_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLE_LACS_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLE_LACS_COUNTY_MN", - "description": null, - "label": "MILLE LACS COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLE_LACS_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLE_LACS_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLE_LACS_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLE_LACS_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLE_LACS_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLE_LACS_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLE_LACS_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLE_LACS_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENNINGTON_COUNTY_SD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENNINGTON_COUNTY_SD", - "description": null, - "label": "PENNINGTON COUNTY SD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENNINGTON_COUNTY_SD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENNINGTON_COUNTY_SD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENNINGTON_COUNTY_SD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENNINGTON_COUNTY_SD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENNINGTON_COUNTY_SD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENNINGTON_COUNTY_SD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENNINGTON_COUNTY_SD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENNINGTON_COUNTY_SD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_NY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_NY", - "description": null, - "label": "GREENE COUNTY NY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_NY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_NY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_NY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_NY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_NY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_NY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_NY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GREENE_COUNTY_NY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKINSON_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKINSON_COUNTY_KS", - "description": null, - "label": "DICKINSON COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKINSON_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKINSON_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKINSON_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKINSON_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKINSON_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKINSON_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKINSON_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKINSON_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_MS", - "description": null, - "label": "HANCOCK COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGHENY_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGHENY_COUNTY_PA", - "description": null, - "label": "ALLEGHENY COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGHENY_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGHENY_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGHENY_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGHENY_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGHENY_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGHENY_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGHENY_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ALLEGHENY_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UTUADO_MUNICIPIO_PR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UTUADO_MUNICIPIO_PR", - "description": null, - "label": "UTUADO MUNICIPIO PR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UTUADO_MUNICIPIO_PR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UTUADO_MUNICIPIO_PR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UTUADO_MUNICIPIO_PR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UTUADO_MUNICIPIO_PR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UTUADO_MUNICIPIO_PR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UTUADO_MUNICIPIO_PR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UTUADO_MUNICIPIO_PR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UTUADO_MUNICIPIO_PR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCKINGHAM_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCKINGHAM_COUNTY_VA", - "description": null, - "label": "BUCKINGHAM COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCKINGHAM_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCKINGHAM_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCKINGHAM_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCKINGHAM_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCKINGHAM_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCKINGHAM_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCKINGHAM_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BUCKINGHAM_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_ME": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_ME", - "description": null, - "label": "LINCOLN COUNTY ME", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_ME.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_ME.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_ME.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_ME.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_ME.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_ME.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_ME.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_ME.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIG_STONE_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIG_STONE_COUNTY_MN", - "description": null, - "label": "BIG STONE COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIG_STONE_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIG_STONE_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIG_STONE_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIG_STONE_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIG_STONE_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIG_STONE_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIG_STONE_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIG_STONE_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARNES_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARNES_COUNTY_ND", - "description": null, - "label": "BARNES COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARNES_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARNES_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARNES_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARNES_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARNES_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARNES_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARNES_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARNES_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COBB_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COBB_COUNTY_GA", - "description": null, - "label": "COBB COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COBB_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COBB_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COBB_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COBB_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COBB_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COBB_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COBB_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COBB_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_KY", - "description": null, - "label": "FRANKLIN COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_MN", - "description": null, - "label": "LYON COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COAL_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COAL_COUNTY_OK", - "description": null, - "label": "COAL COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COAL_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COAL_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COAL_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COAL_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COAL_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COAL_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COAL_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COAL_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_WV", - "description": null, - "label": "PUTNAM COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PUTNAM_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLER_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLER_COUNTY_AR", - "description": null, - "label": "MILLER COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLER_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLER_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLER_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLER_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLER_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLER_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLER_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MILLER_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_FL", - "description": null, - "label": "FRANKLIN COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FRANKLIN_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PANOLA_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PANOLA_COUNTY_MS", - "description": null, - "label": "PANOLA COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PANOLA_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PANOLA_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PANOLA_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PANOLA_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PANOLA_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PANOLA_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PANOLA_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PANOLA_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LITTLE_RIVER_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LITTLE_RIVER_COUNTY_AR", - "description": null, - "label": "LITTLE RIVER COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LITTLE_RIVER_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LITTLE_RIVER_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LITTLE_RIVER_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LITTLE_RIVER_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LITTLE_RIVER_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LITTLE_RIVER_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LITTLE_RIVER_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LITTLE_RIVER_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAIR_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAIR_COUNTY_OK", - "description": null, - "label": "ADAIR COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAIR_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAIR_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAIR_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAIR_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAIR_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAIR_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAIR_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAIR_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACK_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACK_COUNTY_TX", - "description": null, - "label": "JACK COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACK_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACK_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACK_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACK_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACK_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACK_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACK_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACK_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_WV", - "description": null, - "label": "BOONE COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BOONE_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_IA", - "description": null, - "label": "MONTGOMERY COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MONTGOMERY_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_MD": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_MD", - "description": null, - "label": "KENT COUNTY MD", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_MD.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_MD.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_MD.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_MD.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_MD.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_MD.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_MD.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENT_COUNTY_MD.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOSTER_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOSTER_COUNTY_ND", - "description": null, - "label": "FOSTER COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOSTER_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOSTER_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOSTER_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOSTER_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOSTER_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOSTER_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOSTER_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FOSTER_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_GA", - "description": null, - "label": "JASPER COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JASPER_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_IA", - "description": null, - "label": "LYON COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYON_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_MO", - "description": null, - "label": "KNOX COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KNOX_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_AL", - "description": null, - "label": "PIKE COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PIKE_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_COUNTY_KY", - "description": null, - "label": "CALDWELL COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CALDWELL_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OHIO_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OHIO_COUNTY_IN", - "description": null, - "label": "OHIO COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OHIO_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OHIO_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OHIO_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OHIO_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OHIO_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OHIO_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.OHIO_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.OHIO_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRYAN_COUNTY_OK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRYAN_COUNTY_OK", - "description": null, - "label": "BRYAN COUNTY OK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRYAN_COUNTY_OK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRYAN_COUNTY_OK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRYAN_COUNTY_OK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRYAN_COUNTY_OK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRYAN_COUNTY_OK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRYAN_COUNTY_OK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRYAN_COUNTY_OK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRYAN_COUNTY_OK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANDOVAL_COUNTY_NM": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANDOVAL_COUNTY_NM", - "description": null, - "label": "SANDOVAL COUNTY NM", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANDOVAL_COUNTY_NM.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANDOVAL_COUNTY_NM.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANDOVAL_COUNTY_NM.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANDOVAL_COUNTY_NM.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANDOVAL_COUNTY_NM.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANDOVAL_COUNTY_NM.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANDOVAL_COUNTY_NM.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANDOVAL_COUNTY_NM.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LA_PLATA_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LA_PLATA_COUNTY_CO", - "description": null, - "label": "LA PLATA COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LA_PLATA_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LA_PLATA_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LA_PLATA_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LA_PLATA_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LA_PLATA_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LA_PLATA_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LA_PLATA_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LA_PLATA_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_IA", - "description": null, - "label": "HAMILTON COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HAMILTON_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDONALD_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDONALD_COUNTY_MO", - "description": null, - "label": "MCDONALD COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDONALD_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDONALD_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDONALD_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDONALD_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDONALD_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDONALD_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDONALD_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDONALD_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MULTNOMAH_COUNTY_OR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MULTNOMAH_COUNTY_OR", - "description": null, - "label": "MULTNOMAH COUNTY OR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MULTNOMAH_COUNTY_OR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MULTNOMAH_COUNTY_OR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MULTNOMAH_COUNTY_OR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MULTNOMAH_COUNTY_OR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MULTNOMAH_COUNTY_OR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MULTNOMAH_COUNTY_OR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MULTNOMAH_COUNTY_OR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MULTNOMAH_COUNTY_OR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_TX", - "description": null, - "label": "JOHNSON COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JOHNSON_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TEHAMA_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TEHAMA_COUNTY_CA", - "description": null, - "label": "TEHAMA COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TEHAMA_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TEHAMA_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TEHAMA_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TEHAMA_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TEHAMA_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TEHAMA_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TEHAMA_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TEHAMA_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MATAGORDA_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MATAGORDA_COUNTY_TX", - "description": null, - "label": "MATAGORDA COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MATAGORDA_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MATAGORDA_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MATAGORDA_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MATAGORDA_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MATAGORDA_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MATAGORDA_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MATAGORDA_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MATAGORDA_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODGE_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODGE_COUNTY_GA", - "description": null, - "label": "DODGE COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODGE_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODGE_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODGE_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODGE_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODGE_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODGE_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODGE_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DODGE_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JOSEPH_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JOSEPH_COUNTY_IN", - "description": null, - "label": "ST JOSEPH COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JOSEPH_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JOSEPH_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JOSEPH_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JOSEPH_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JOSEPH_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JOSEPH_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JOSEPH_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ST_JOSEPH_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GAINES_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GAINES_COUNTY_TX", - "description": null, - "label": "GAINES COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GAINES_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GAINES_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GAINES_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GAINES_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GAINES_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GAINES_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GAINES_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GAINES_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKIN_COUNTY_MN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKIN_COUNTY_MN", - "description": null, - "label": "WILKIN COUNTY MN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKIN_COUNTY_MN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKIN_COUNTY_MN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKIN_COUNTY_MN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKIN_COUNTY_MN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKIN_COUNTY_MN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKIN_COUNTY_MN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKIN_COUNTY_MN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WILKIN_COUNTY_MN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYNCHBURG_CITY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYNCHBURG_CITY_VA", - "description": null, - "label": "LYNCHBURG CITY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYNCHBURG_CITY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYNCHBURG_CITY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYNCHBURG_CITY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYNCHBURG_CITY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYNCHBURG_CITY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYNCHBURG_CITY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYNCHBURG_CITY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LYNCHBURG_CITY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DENALI_BOROUGH_AK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DENALI_BOROUGH_AK", - "description": null, - "label": "DENALI BOROUGH AK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DENALI_BOROUGH_AK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DENALI_BOROUGH_AK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DENALI_BOROUGH_AK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DENALI_BOROUGH_AK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DENALI_BOROUGH_AK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DENALI_BOROUGH_AK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DENALI_BOROUGH_AK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DENALI_BOROUGH_AK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VALLEY_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VALLEY_COUNTY_NE", - "description": null, - "label": "VALLEY COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VALLEY_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VALLEY_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VALLEY_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VALLEY_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VALLEY_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VALLEY_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VALLEY_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VALLEY_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_AR", - "description": null, - "label": "LEE COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEE_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAYFIELD_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAYFIELD_COUNTY_WI", - "description": null, - "label": "BAYFIELD COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAYFIELD_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAYFIELD_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAYFIELD_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAYFIELD_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAYFIELD_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAYFIELD_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAYFIELD_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAYFIELD_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_OR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_OR", - "description": null, - "label": "LINCOLN COUNTY OR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_OR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_OR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_OR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_OR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_OR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_OR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_OR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_OR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_TN", - "description": null, - "label": "MACON COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MACON_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_PARISH_LA", - "description": null, - "label": "LAFAYETTE PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAFAYETTE_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARAPAHOE_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARAPAHOE_COUNTY_CO", - "description": null, - "label": "ARAPAHOE COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARAPAHOE_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARAPAHOE_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARAPAHOE_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARAPAHOE_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARAPAHOE_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARAPAHOE_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARAPAHOE_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ARAPAHOE_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHTENAW_COUNTY_MI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHTENAW_COUNTY_MI", - "description": null, - "label": "WASHTENAW COUNTY MI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHTENAW_COUNTY_MI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHTENAW_COUNTY_MI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHTENAW_COUNTY_MI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHTENAW_COUNTY_MI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHTENAW_COUNTY_MI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHTENAW_COUNTY_MI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHTENAW_COUNTY_MI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHTENAW_COUNTY_MI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARPER_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARPER_COUNTY_KS", - "description": null, - "label": "HARPER COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARPER_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARPER_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARPER_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARPER_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARPER_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARPER_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARPER_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HARPER_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STE_GENEVIEVE_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STE_GENEVIEVE_COUNTY_MO", - "description": null, - "label": "STE GENEVIEVE COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STE_GENEVIEVE_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STE_GENEVIEVE_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STE_GENEVIEVE_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STE_GENEVIEVE_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STE_GENEVIEVE_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STE_GENEVIEVE_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STE_GENEVIEVE_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STE_GENEVIEVE_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOOTENAI_COUNTY_ID": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOOTENAI_COUNTY_ID", - "description": null, - "label": "KOOTENAI COUNTY ID", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOOTENAI_COUNTY_ID.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOOTENAI_COUNTY_ID.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOOTENAI_COUNTY_ID.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOOTENAI_COUNTY_ID.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOOTENAI_COUNTY_ID.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOOTENAI_COUNTY_ID.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOOTENAI_COUNTY_ID.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KOOTENAI_COUNTY_ID.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUISA_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUISA_COUNTY_VA", - "description": null, - "label": "LOUISA COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUISA_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUISA_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUISA_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUISA_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUISA_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUISA_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUISA_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LOUISA_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MISSISSIPPI_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MISSISSIPPI_COUNTY_AR", - "description": null, - "label": "MISSISSIPPI COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MISSISSIPPI_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MISSISSIPPI_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MISSISSIPPI_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MISSISSIPPI_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MISSISSIPPI_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MISSISSIPPI_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MISSISSIPPI_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MISSISSIPPI_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VALLEY_COUNTY_ID": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VALLEY_COUNTY_ID", - "description": null, - "label": "VALLEY COUNTY ID", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VALLEY_COUNTY_ID.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VALLEY_COUNTY_ID.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VALLEY_COUNTY_ID.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VALLEY_COUNTY_ID.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VALLEY_COUNTY_ID.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VALLEY_COUNTY_ID.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VALLEY_COUNTY_ID.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VALLEY_COUNTY_ID.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YALOBUSHA_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YALOBUSHA_COUNTY_MS", - "description": null, - "label": "YALOBUSHA COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YALOBUSHA_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YALOBUSHA_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YALOBUSHA_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YALOBUSHA_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YALOBUSHA_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YALOBUSHA_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.YALOBUSHA_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.YALOBUSHA_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_MO", - "description": null, - "label": "NEWTON COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.NEWTON_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BATH_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BATH_COUNTY_VA", - "description": null, - "label": "BATH COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BATH_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BATH_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BATH_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BATH_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BATH_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BATH_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BATH_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BATH_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLORADO_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLORADO_COUNTY_TX", - "description": null, - "label": "COLORADO COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLORADO_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLORADO_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLORADO_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLORADO_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLORADO_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLORADO_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLORADO_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COLORADO_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENDOCINO_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENDOCINO_COUNTY_CA", - "description": null, - "label": "MENDOCINO COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENDOCINO_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENDOCINO_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENDOCINO_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENDOCINO_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENDOCINO_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENDOCINO_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENDOCINO_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MENDOCINO_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENSON_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENSON_COUNTY_ND", - "description": null, - "label": "BENSON COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENSON_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENSON_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENSON_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENSON_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENSON_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENSON_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENSON_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BENSON_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_CO", - "description": null, - "label": "CUSTER COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CUSTER_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKINSON_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKINSON_COUNTY_IA", - "description": null, - "label": "DICKINSON COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKINSON_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKINSON_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKINSON_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKINSON_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKINSON_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKINSON_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKINSON_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DICKINSON_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEVIER_COUNTY_TN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEVIER_COUNTY_TN", - "description": null, - "label": "SEVIER COUNTY TN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEVIER_COUNTY_TN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEVIER_COUNTY_TN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEVIER_COUNTY_TN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEVIER_COUNTY_TN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEVIER_COUNTY_TN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEVIER_COUNTY_TN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEVIER_COUNTY_TN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SEVIER_COUNTY_TN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILCHRIST_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILCHRIST_COUNTY_FL", - "description": null, - "label": "GILCHRIST COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILCHRIST_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILCHRIST_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILCHRIST_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILCHRIST_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILCHRIST_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILCHRIST_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILCHRIST_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GILCHRIST_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYOMING_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYOMING_COUNTY_PA", - "description": null, - "label": "WYOMING COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYOMING_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYOMING_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYOMING_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYOMING_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYOMING_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYOMING_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYOMING_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYOMING_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIBB_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIBB_COUNTY_AL", - "description": null, - "label": "BIBB COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIBB_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIBB_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIBB_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIBB_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIBB_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIBB_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIBB_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BIBB_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UMATILLA_COUNTY_OR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UMATILLA_COUNTY_OR", - "description": null, - "label": "UMATILLA COUNTY OR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UMATILLA_COUNTY_OR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UMATILLA_COUNTY_OR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UMATILLA_COUNTY_OR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UMATILLA_COUNTY_OR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UMATILLA_COUNTY_OR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UMATILLA_COUNTY_OR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UMATILLA_COUNTY_OR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UMATILLA_COUNTY_OR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_CLARA_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_CLARA_COUNTY_CA", - "description": null, - "label": "SANTA CLARA COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_CLARA_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_CLARA_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_CLARA_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_CLARA_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_CLARA_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_CLARA_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_CLARA_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SANTA_CLARA_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EL_DORADO_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EL_DORADO_COUNTY_CA", - "description": null, - "label": "EL DORADO COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EL_DORADO_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EL_DORADO_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EL_DORADO_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EL_DORADO_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EL_DORADO_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EL_DORADO_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.EL_DORADO_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.EL_DORADO_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DONLEY_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DONLEY_COUNTY_TX", - "description": null, - "label": "DONLEY COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DONLEY_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DONLEY_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DONLEY_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DONLEY_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DONLEY_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DONLEY_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DONLEY_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DONLEY_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFAX_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFAX_COUNTY_VA", - "description": null, - "label": "FAIRFAX COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFAX_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFAX_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFAX_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFAX_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFAX_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFAX_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFAX_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FAIRFAX_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINNEBAGO_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINNEBAGO_COUNTY_IL", - "description": null, - "label": "WINNEBAGO COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINNEBAGO_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINNEBAGO_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINNEBAGO_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINNEBAGO_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINNEBAGO_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINNEBAGO_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINNEBAGO_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WINNEBAGO_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.REFUGIO_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.REFUGIO_COUNTY_TX", - "description": null, - "label": "REFUGIO COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.REFUGIO_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.REFUGIO_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.REFUGIO_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.REFUGIO_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.REFUGIO_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.REFUGIO_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.REFUGIO_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.REFUGIO_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUNFLOWER_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUNFLOWER_COUNTY_MS", - "description": null, - "label": "SUNFLOWER COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUNFLOWER_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUNFLOWER_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUNFLOWER_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUNFLOWER_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUNFLOWER_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUNFLOWER_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUNFLOWER_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SUNFLOWER_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENDLETON_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENDLETON_COUNTY_KY", - "description": null, - "label": "PENDLETON COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENDLETON_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENDLETON_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENDLETON_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENDLETON_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENDLETON_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENDLETON_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENDLETON_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PENDLETON_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_PA", - "description": null, - "label": "WASHINGTON COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WASHINGTON_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_GA", - "description": null, - "label": "WARREN COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WARREN_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRICE_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRICE_COUNTY_WI", - "description": null, - "label": "PRICE COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRICE_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRICE_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRICE_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRICE_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRICE_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRICE_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRICE_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PRICE_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISTOL_BAY_BOROUGH_AK": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISTOL_BAY_BOROUGH_AK", - "description": null, - "label": "BRISTOL BAY BOROUGH AK", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISTOL_BAY_BOROUGH_AK.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISTOL_BAY_BOROUGH_AK.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISTOL_BAY_BOROUGH_AK.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISTOL_BAY_BOROUGH_AK.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISTOL_BAY_BOROUGH_AK.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISTOL_BAY_BOROUGH_AK.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISTOL_BAY_BOROUGH_AK.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRISTOL_BAY_BOROUGH_AK.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_WI", - "description": null, - "label": "JACKSON COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.JACKSON_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TULARE_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TULARE_COUNTY_CA", - "description": null, - "label": "TULARE COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TULARE_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TULARE_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TULARE_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TULARE_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TULARE_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TULARE_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TULARE_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TULARE_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARBOUR_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARBOUR_COUNTY_WV", - "description": null, - "label": "BARBOUR COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARBOUR_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARBOUR_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARBOUR_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARBOUR_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARBOUR_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARBOUR_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARBOUR_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BARBOUR_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COSTILLA_COUNTY_CO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COSTILLA_COUNTY_CO", - "description": null, - "label": "COSTILLA COUNTY CO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COSTILLA_COUNTY_CO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COSTILLA_COUNTY_CO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COSTILLA_COUNTY_CO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COSTILLA_COUNTY_CO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COSTILLA_COUNTY_CO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COSTILLA_COUNTY_CO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COSTILLA_COUNTY_CO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COSTILLA_COUNTY_CO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERKELEY_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERKELEY_COUNTY_WV", - "description": null, - "label": "BERKELEY COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERKELEY_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERKELEY_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERKELEY_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERKELEY_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERKELEY_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERKELEY_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERKELEY_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BERKELEY_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELKO_COUNTY_NV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELKO_COUNTY_NV", - "description": null, - "label": "ELKO COUNTY NV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELKO_COUNTY_NV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELKO_COUNTY_NV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELKO_COUNTY_NV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELKO_COUNTY_NV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELKO_COUNTY_NV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELKO_COUNTY_NV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELKO_COUNTY_NV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ELKO_COUNTY_NV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RILEY_COUNTY_KS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RILEY_COUNTY_KS", - "description": null, - "label": "RILEY COUNTY KS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RILEY_COUNTY_KS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RILEY_COUNTY_KS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RILEY_COUNTY_KS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RILEY_COUNTY_KS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RILEY_COUNTY_KS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RILEY_COUNTY_KS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RILEY_COUNTY_KS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RILEY_COUNTY_KS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIAMI_DADE_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIAMI_DADE_COUNTY_FL", - "description": null, - "label": "MIAMI DADE COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIAMI_DADE_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIAMI_DADE_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIAMI_DADE_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIAMI_DADE_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIAMI_DADE_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIAMI_DADE_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIAMI_DADE_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIAMI_DADE_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICH_COUNTY_UT": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICH_COUNTY_UT", - "description": null, - "label": "RICH COUNTY UT", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICH_COUNTY_UT.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICH_COUNTY_UT.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICH_COUNTY_UT.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICH_COUNTY_UT.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICH_COUNTY_UT.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICH_COUNTY_UT.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICH_COUNTY_UT.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICH_COUNTY_UT.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAKER_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAKER_COUNTY_GA", - "description": null, - "label": "BAKER COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAKER_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAKER_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAKER_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAKER_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAKER_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAKER_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAKER_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BAKER_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_MO", - "description": null, - "label": "DOUGLAS COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.DOUGLAS_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_TX", - "description": null, - "label": "TAYLOR COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TAYLOR_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCURRY_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCURRY_COUNTY_TX", - "description": null, - "label": "SCURRY COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCURRY_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCURRY_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCURRY_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCURRY_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCURRY_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCURRY_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCURRY_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.SCURRY_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRANTLEY_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRANTLEY_COUNTY_GA", - "description": null, - "label": "BRANTLEY COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRANTLEY_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRANTLEY_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRANTLEY_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRANTLEY_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRANTLEY_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRANTLEY_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRANTLEY_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.BRANTLEY_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLORENCE_COUNTY_WI": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLORENCE_COUNTY_WI", - "description": null, - "label": "FLORENCE COUNTY WI", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLORENCE_COUNTY_WI.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLORENCE_COUNTY_WI.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLORENCE_COUNTY_WI.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLORENCE_COUNTY_WI.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLORENCE_COUNTY_WI.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLORENCE_COUNTY_WI.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLORENCE_COUNTY_WI.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLORENCE_COUNTY_WI.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CEDAR_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CEDAR_COUNTY_IA", - "description": null, - "label": "CEDAR COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CEDAR_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CEDAR_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CEDAR_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CEDAR_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CEDAR_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CEDAR_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CEDAR_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CEDAR_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRINITY_COUNTY_CA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRINITY_COUNTY_CA", - "description": null, - "label": "TRINITY COUNTY CA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRINITY_COUNTY_CA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRINITY_COUNTY_CA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRINITY_COUNTY_CA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRINITY_COUNTY_CA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRINITY_COUNTY_CA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRINITY_COUNTY_CA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRINITY_COUNTY_CA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.TRINITY_COUNTY_CA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_WV", - "description": null, - "label": "LEWIS COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEWIS_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_TX", - "description": null, - "label": "ORANGE COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ORANGE_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_BUREN_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_BUREN_COUNTY_AR", - "description": null, - "label": "VAN BUREN COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_BUREN_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_BUREN_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_BUREN_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_BUREN_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_BUREN_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_BUREN_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_BUREN_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.VAN_BUREN_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYTHE_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYTHE_COUNTY_VA", - "description": null, - "label": "WYTHE COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYTHE_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYTHE_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYTHE_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYTHE_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYTHE_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYTHE_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYTHE_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.WYTHE_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_MO", - "description": null, - "label": "CARROLL COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CARROLL_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIFFLIN_COUNTY_PA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIFFLIN_COUNTY_PA", - "description": null, - "label": "MIFFLIN COUNTY PA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIFFLIN_COUNTY_PA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIFFLIN_COUNTY_PA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIFFLIN_COUNTY_PA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIFFLIN_COUNTY_PA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIFFLIN_COUNTY_PA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIFFLIN_COUNTY_PA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIFFLIN_COUNTY_PA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MIFFLIN_COUNTY_PA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UVALDE_COUNTY_TX": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UVALDE_COUNTY_TX", - "description": null, - "label": "UVALDE COUNTY TX", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UVALDE_COUNTY_TX.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UVALDE_COUNTY_TX.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UVALDE_COUNTY_TX.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UVALDE_COUNTY_TX.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UVALDE_COUNTY_TX.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UVALDE_COUNTY_TX.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.UVALDE_COUNTY_TX.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.UVALDE_COUNTY_TX.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDOWELL_COUNTY_WV": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDOWELL_COUNTY_WV", - "description": null, - "label": "MCDOWELL COUNTY WV", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDOWELL_COUNTY_WV.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDOWELL_COUNTY_WV.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDOWELL_COUNTY_WV.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDOWELL_COUNTY_WV.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDOWELL_COUNTY_WV.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDOWELL_COUNTY_WV.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDOWELL_COUNTY_WV.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.MCDOWELL_COUNTY_WV.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUAY_COUNTY_NM": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUAY_COUNTY_NM", - "description": null, - "label": "QUAY COUNTY NM", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUAY_COUNTY_NM.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUAY_COUNTY_NM.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUAY_COUNTY_NM.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUAY_COUNTY_NM.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUAY_COUNTY_NM.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUAY_COUNTY_NM.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUAY_COUNTY_NM.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.QUAY_COUNTY_NM.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAIR_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAIR_COUNTY_MO", - "description": null, - "label": "ADAIR COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAIR_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAIR_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAIR_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAIR_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAIR_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAIR_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAIR_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.ADAIR_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_SC": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_SC", - "description": null, - "label": "CHEROKEE COUNTY SC", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_SC.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_SC.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_SC.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_SC.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_SC.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_SC.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_SC.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CHEROKEE_COUNTY_SC.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GIBSON_COUNTY_IN": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GIBSON_COUNTY_IN", - "description": null, - "label": "GIBSON COUNTY IN", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GIBSON_COUNTY_IN.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GIBSON_COUNTY_IN.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GIBSON_COUNTY_IN.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GIBSON_COUNTY_IN.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GIBSON_COUNTY_IN.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GIBSON_COUNTY_IN.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GIBSON_COUNTY_IN.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GIBSON_COUNTY_IN.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLEMING_COUNTY_KY": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLEMING_COUNTY_KY", - "description": null, - "label": "FLEMING COUNTY KY", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLEMING_COUNTY_KY.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLEMING_COUNTY_KY.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLEMING_COUNTY_KY.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLEMING_COUNTY_KY.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLEMING_COUNTY_KY.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLEMING_COUNTY_KY.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLEMING_COUNTY_KY.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.FLEMING_COUNTY_KY.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GENTRY_COUNTY_MO": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GENTRY_COUNTY_MO", - "description": null, - "label": "GENTRY COUNTY MO", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GENTRY_COUNTY_MO.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GENTRY_COUNTY_MO.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GENTRY_COUNTY_MO.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GENTRY_COUNTY_MO.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GENTRY_COUNTY_MO.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GENTRY_COUNTY_MO.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.GENTRY_COUNTY_MO.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.GENTRY_COUNTY_MO.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RED_WILLOW_COUNTY_NE": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RED_WILLOW_COUNTY_NE", - "description": null, - "label": "RED WILLOW COUNTY NE", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RED_WILLOW_COUNTY_NE.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RED_WILLOW_COUNTY_NE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RED_WILLOW_COUNTY_NE.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RED_WILLOW_COUNTY_NE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RED_WILLOW_COUNTY_NE.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RED_WILLOW_COUNTY_NE.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RED_WILLOW_COUNTY_NE.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RED_WILLOW_COUNTY_NE.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COPIAH_COUNTY_MS": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COPIAH_COUNTY_MS", - "description": null, - "label": "COPIAH COUNTY MS", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COPIAH_COUNTY_MS.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COPIAH_COUNTY_MS.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COPIAH_COUNTY_MS.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COPIAH_COUNTY_MS.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COPIAH_COUNTY_MS.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COPIAH_COUNTY_MS.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.COPIAH_COUNTY_MS.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.COPIAH_COUNTY_MS.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_VA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_VA", - "description": null, - "label": "PULASKI COUNTY VA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_VA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_VA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_VA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_VA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_VA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_VA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_VA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.PULASKI_COUNTY_VA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMERON_PARISH_LA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMERON_PARISH_LA", - "description": null, - "label": "CAMERON PARISH LA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMERON_PARISH_LA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMERON_PARISH_LA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMERON_PARISH_LA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMERON_PARISH_LA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMERON_PARISH_LA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMERON_PARISH_LA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMERON_PARISH_LA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.CAMERON_PARISH_LA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMAR_COUNTY_AL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMAR_COUNTY_AL", - "description": null, - "label": "LAMAR COUNTY AL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMAR_COUNTY_AL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMAR_COUNTY_AL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMAR_COUNTY_AL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMAR_COUNTY_AL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMAR_COUNTY_AL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMAR_COUNTY_AL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMAR_COUNTY_AL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LAMAR_COUNTY_AL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_IA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_IA", - "description": null, - "label": "HANCOCK COUNTY IA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_IA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_IA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_IA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_IA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_IA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_IA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_IA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.HANCOCK_COUNTY_IA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEON_COUNTY_FL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEON_COUNTY_FL", - "description": null, - "label": "LEON COUNTY FL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEON_COUNTY_FL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEON_COUNTY_FL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEON_COUNTY_FL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEON_COUNTY_FL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEON_COUNTY_FL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEON_COUNTY_FL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEON_COUNTY_FL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LEON_COUNTY_FL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_COUNTY_GA": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_COUNTY_GA", - "description": null, - "label": "RICHMOND COUNTY GA", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_COUNTY_GA.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_COUNTY_GA.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_COUNTY_GA.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_COUNTY_GA.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_COUNTY_GA.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_COUNTY_GA.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_COUNTY_GA.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.RICHMOND_COUNTY_GA.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STUTSMAN_COUNTY_ND": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STUTSMAN_COUNTY_ND", - "description": null, - "label": "STUTSMAN COUNTY ND", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STUTSMAN_COUNTY_ND.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STUTSMAN_COUNTY_ND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STUTSMAN_COUNTY_ND.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STUTSMAN_COUNTY_ND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STUTSMAN_COUNTY_ND.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STUTSMAN_COUNTY_ND.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.STUTSMAN_COUNTY_ND.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.STUTSMAN_COUNTY_ND.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_AR": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_AR", - "description": null, - "label": "LINCOLN COUNTY AR", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_AR.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_AR.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_AR.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_AR.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_AR.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_AR.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_AR.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.LINCOLN_COUNTY_AR.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENDALL_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENDALL_COUNTY_IL", - "description": null, - "label": "KENDALL COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENDALL_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENDALL_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENDALL_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENDALL_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENDALL_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENDALL_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENDALL_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.KENDALL_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POPE_COUNTY_IL": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POPE_COUNTY_IL", - "description": null, - "label": "POPE COUNTY IL", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POPE_COUNTY_IL.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POPE_COUNTY_IL.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POPE_COUNTY_IL.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POPE_COUNTY_IL.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POPE_COUNTY_IL.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POPE_COUNTY_IL.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.childcare_market_rates.POPE_COUNTY_IL.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.childcare_market_rates.POPE_COUNTY_IL.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.income": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.income.sources": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.income.sources", - "description": "North Carolina counts these sources as gross income for its Subsidized Child Care Assistance program.", - "label": "North Carolina SCCA gross income sources", - "unit": "list", - "period": "year", - "values": { - "2024-08-01": [ - "employment_income", - "self_employment_income", - "pension_income", - "veterans_benefits", - "unemployment_compensation", - "disability_benefits", - "workers_compensation", - "social_security", - "retirement_distributions", - "rental_income", - "child_support_received", - "alimony_income", - "dividend_income", - "interest_income", - "miscellaneous_income" - ], - "2015-01-01": [ - "employment_income", - "self_employment_income", - "pension_income", - "veterans_benefits", - "unemployment_compensation", - "disability_benefits", - "workers_compensation", - "social_security", - "retirement_distributions", - "rental_income", - "child_support_received", - "alimony_income", - "dividend_income", - "interest_income", - "miscellaneous_income" - ] - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.parent_fee_rate": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.parent_fee_rate", - "description": "North Carolina Subsidized Child Care Assistance program collects this percentage of co-payment fee of a family's gross monthly income.", - "label": "North Carolina Subsidized Child Care Assistance program family co-payment fee", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.parent_fee_rate.value": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.parent_fee_rate.value", - "description": null, - "label": "value", - "unit": null, - "period": null, - "values": { - "2021-03-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.entry": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.entry", - "description": null, - "label": "entry", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.entry.fpg_limit": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.entry.fpg_limit", - "description": null, - "label": "fpg limit", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.entry.fpg_limit.preschool": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.entry.fpg_limit.preschool", - "description": "North Carolina limits initial eligibility for the Subsidized Child Care Assistance Program to households with preschool children (under 6) or special needs children to income below this percentage of the federal poverty guidelines.", - "label": "NC SCCA FPG limit for preschool or special needs children", - "unit": "/1", - "period": "year", - "values": { - "2023-09-29": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.entry.fpg_limit.school_age": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.entry.fpg_limit.school_age", - "description": "North Carolina limits initial eligibility for the Subsidized Child Care Assistance Program to households with only school-age children (6 and older) without special needs to income below this percentage of the federal poverty guidelines.", - "label": "NC SCCA FPG limit for school-age-only children", - "unit": "/1", - "period": "year", - "values": { - "2023-09-29": 1.33, - "2015-01-01": 1.33 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.age": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.age", - "description": null, - "label": "age", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.age.school": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.age.school", - "description": "North Carolina considers children this age or older as school age for Subsidized Child Care Assistance program purposes.", - "label": "North Carolina SCCA school age threshold", - "unit": "year", - "period": null, - "values": { - "2023-10-16": 6, - "2015-01-01": 6 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.age.limit": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.age.limit", - "description": null, - "label": "limit", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.age.limit.disabled": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.age.limit.disabled", - "description": "North Carolina limits its Subsidized Child Care Assistance program to children younger than this age, if they have a disability.", - "label": "North Carolina Subsidized Child Care Assistance program disabled child age limit", - "unit": "year", - "period": "year", - "values": { - "2022-10-01": 18, - "2015-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.age.limit.non_disabled": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.age.limit.non_disabled", - "description": "North Carolina limits its Subsidized Child Care Assistance program to children younger than this age, if they do not have a disability.", - "label": "North Carolina Subsidized Child Care Assistance program child age limit for School Age group", - "unit": "year", - "period": "year", - "values": { - "2022-10-01": 13, - "2015-01-01": 13 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.age.group": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.age.group", - "description": "North Carolina assigns children to these age groups for Subsidized Child Care Assistance.", - "label": "North Carolina SCCA age groups" - }, - "gov.states.nc.ncdhhs.scca.age.group[0]": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.age.group[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nc.ncdhhs.scca.age.group[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.age.group[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.age.group[0].amount": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.age.group[0].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2022-10-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.age.group[1]": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.age.group[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nc.ncdhhs.scca.age.group[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.age.group[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-10-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.age.group[1].amount": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.age.group[1].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2022-10-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.age.group[2]": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.scca.age.group[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nc.ncdhhs.scca.age.group[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.age.group[2].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-10-01": 3, - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.scca.age.group[2].amount": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.scca.age.group[2].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2022-10-01": 3, - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.tanf": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.tanf", - "description": null, - "label": "Temporary Assistance for Needy Families", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.tanf.income": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.tanf.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.tanf.income.earned": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.tanf.income.earned", - "description": "North Carolina counts these income sources as earned income for its Temporary Assistance for Needy Families program.", - "label": "North Carolina TANF earned income sources", - "unit": "list", - "period": "year", - "values": { - "2024-01-01": ["employment_income", "self_employment_income"], - "2015-01-01": ["employment_income", "self_employment_income"] - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.tanf.income.unearned": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.tanf.income.unearned", - "description": "North Carolina counts these income sources as unearned income for its Temporary Assistance for Needy Families program..", - "label": "North Carolina TANF unearned income", - "unit": "list", - "period": "year", - "values": { - "2024-01-01": [ - "veterans_benefits", - "rental_income", - "alimony_income", - "dividend_income", - "interest_income", - "miscellaneous_income", - "pension_income", - "unemployment_compensation", - "gi_cash_assistance", - "social_security" - ], - "2015-01-01": [ - "veterans_benefits", - "rental_income", - "alimony_income", - "dividend_income", - "interest_income", - "miscellaneous_income", - "pension_income", - "unemployment_compensation", - "gi_cash_assistance", - "social_security" - ] - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.tanf.need_standard": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.tanf.need_standard", - "description": null, - "label": "need standard", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.tanf.need_standard.main": { - "type": "parameterNode", - "parameter": "gov.states.nc.ncdhhs.tanf.need_standard.main", - "description": "North Carolina defines the following need standard for its Temporary Assistance for Needy Families program, dependent on the number of household members.", - "label": "North Carolina TANF monthly need standard", - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.tanf.need_standard.main.1": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.tanf.need_standard.main.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2024-01-01": 362, - "2015-01-01": 362 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.tanf.need_standard.main.2": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.tanf.need_standard.main.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2024-01-01": 472, - "2015-01-01": 472 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.tanf.need_standard.main.3": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.tanf.need_standard.main.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2024-01-01": 544, - "2015-01-01": 544 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.tanf.need_standard.main.4": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.tanf.need_standard.main.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2024-01-01": 594, - "2015-01-01": 594 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.tanf.need_standard.main.5": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.tanf.need_standard.main.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2024-01-01": 648, - "2015-01-01": 648 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.tanf.need_standard.main.6": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.tanf.need_standard.main.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2024-01-01": 698, - "2015-01-01": 698 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.tanf.need_standard.main.7": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.tanf.need_standard.main.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2024-01-01": 746, - "2015-01-01": 746 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.tanf.need_standard.main.8": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.tanf.need_standard.main.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2024-01-01": 772, - "2015-01-01": 772 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.tanf.need_standard.main.9": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.tanf.need_standard.main.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2024-01-01": 812, - "2015-01-01": 812 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.tanf.need_standard.main.10": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.tanf.need_standard.main.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2024-01-01": 860, - "2015-01-01": 860 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.tanf.need_standard.main.11": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.tanf.need_standard.main.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2024-01-01": 896, - "2015-01-01": 896 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.tanf.need_standard.main.12": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.tanf.need_standard.main.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2024-01-01": 946, - "2015-01-01": 946 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.tanf.need_standard.main.13": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.tanf.need_standard.main.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2024-01-01": 992, - "2015-01-01": 992 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.tanf.need_standard.main.14": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.tanf.need_standard.main.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2024-01-01": 1042, - "2015-01-01": 1042 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.tanf.need_standard.age_limit": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.tanf.need_standard.age_limit", - "description": "North Carolina limits its Temporary Assistance for Needy Families program to children below this age.", - "label": "North Carolina TANF program child age limit", - "unit": "year", - "period": null, - "values": { - "2022-10-01": 18, - "2015-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.tanf.need_standard.payment_percentage": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.tanf.need_standard.payment_percentage", - "description": "North Carolina provides this fraction of the difference between the need standard and household income for its Temporary Assistance for Needy Families program.", - "label": "North Carolina TANF payment percentage", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.tanf.need_standard.average_reduced_need_standard_thresold": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.tanf.need_standard.average_reduced_need_standard_thresold", - "description": "North Carolina disqualifies households from the Temporary Assistance for Needy Families program if their average per-person need standard, after subtracting income, falls below this amount.", - "label": "North Carolina TANF monthly minimum benefit", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-01-01": 25, - "2015-01-01": 25 - }, - "economy": true, - "household": true - }, - "gov.states.nc.ncdhhs.tanf.need_standard.additional_person": { - "type": "parameter", - "parameter": "gov.states.nc.ncdhhs.tanf.need_standard.additional_person", - "description": "North Carolina provides an additional need standard amount for each household member exceeding the maximum specified household size for its Temporary Assistance for Needy Families program.", - "label": "North Carolina TANF monthly income limit per additional person", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-01-01": 50, - "2015-01-01": 50 - }, - "economy": true, - "household": true - }, - "gov.states.sc": { - "type": "parameterNode", - "parameter": "gov.states.sc", - "description": null, - "label": "South Carolina", - "economy": true, - "household": true - }, - "gov.states.sc.tax": { - "type": "parameterNode", - "parameter": "gov.states.sc.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.states.sc.tax.income": { - "type": "parameterNode", - "parameter": "gov.states.sc.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.credits": { - "type": "parameterNode", - "parameter": "gov.states.sc.tax.income.credits", - "description": null, - "label": "credits", - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.credits.eitc": { - "type": "parameterNode", - "parameter": "gov.states.sc.tax.income.credits.eitc", - "description": null, - "label": "Earned Income Tax Credit", - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.credits.eitc.rate": { - "type": "parameter", - "parameter": "gov.states.sc.tax.income.credits.eitc.rate", - "description": "South Carolina matches the federal EITC at this rate.", - "label": "South Carolina EITC Rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 1.25, - "2022-01-01": 1.0417, - "2021-01-01": 0.8333, - "2020-01-01": 0.625, - "2019-01-01": 0.4167, - "2018-01-01": 0.2083, - "2015-01-01": 0.2083 - }, - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.credits.refundable": { - "type": "parameter", - "parameter": "gov.states.sc.tax.income.credits.refundable", - "description": "South Carolina refundable tax credits.", - "label": "South Carolina refundable tax credits", - "unit": "list", - "period": null, - "values": { - "2021-01-01": ["sc_tuition_credit"], - "2015-01-01": ["sc_tuition_credit"] - }, - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.credits.cdcc": { - "type": "parameterNode", - "parameter": "gov.states.sc.tax.income.credits.cdcc", - "description": null, - "label": "Child and Dependent Care Credit", - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.credits.cdcc.rate": { - "type": "parameter", - "parameter": "gov.states.sc.tax.income.credits.cdcc.rate", - "description": "South Carolina matches this share of the federal Child and Dependent Care Credit.", - "label": "South Carolina Child and Dependent Care Credit match", - "unit": "/1", - "period": "year", - "values": { - "2020-01-01": 0.07, - "2015-01-01": 0.07 - }, - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.credits.cdcc.max_care_expense_year_offset": { - "type": "parameter", - "parameter": "gov.states.sc.tax.income.credits.cdcc.max_care_expense_year_offset", - "description": "Decoupled year offset for maximum CDCC expense cap", - "label": "Decoupled year offset for maximum CDCC expense cap", - "unit": "int", - "period": "year", - "values": { - "2022-01-01": 0, - "2021-01-01": -1, - "2020-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.credits.two_wage_earner": { - "type": "parameterNode", - "parameter": "gov.states.sc.tax.income.credits.two_wage_earner", - "description": null, - "label": "two wage earner", - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.credits.two_wage_earner.earned_income": { - "type": "parameterNode", - "parameter": "gov.states.sc.tax.income.credits.two_wage_earner.earned_income", - "description": null, - "label": "earned income", - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.credits.two_wage_earner.earned_income.subtractions": { - "type": "parameter", - "parameter": "gov.states.sc.tax.income.credits.two_wage_earner.earned_income.subtractions", - "description": "South Carolina subtracts the following elements from gross earned income when computing the two wage earner credit.", - "label": "South Carolina two wage earner credit earned income subtractions", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": [ - "self_employment_tax_ald_person", - "self_employed_health_insurance_ald_person", - "self_employed_pension_contribution_ald_person" - ], - "2015-01-01": [ - "self_employment_tax_ald_person", - "self_employed_health_insurance_ald_person", - "self_employed_pension_contribution_ald_person" - ] - }, - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.credits.two_wage_earner.rate": { - "type": "parameterNode", - "parameter": "gov.states.sc.tax.income.credits.two_wage_earner.rate", - "description": "South Carolina provides these rates of the filers earned income under the two wage earner credit.", - "label": "South Carolina two wage earner credit rate" - }, - "gov.states.sc.tax.income.credits.two_wage_earner.rate[0]": { - "type": "parameterNode", - "parameter": "gov.states.sc.tax.income.credits.two_wage_earner.rate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.sc.tax.income.credits.two_wage_earner.rate[0].rate": { - "type": "parameter", - "parameter": "gov.states.sc.tax.income.credits.two_wage_earner.rate[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.007, - "2015-01-01": 0.007 - }, - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.credits.two_wage_earner.rate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.sc.tax.income.credits.two_wage_earner.rate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.credits.two_wage_earner.rate[1]": { - "type": "parameterNode", - "parameter": "gov.states.sc.tax.income.credits.two_wage_earner.rate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.sc.tax.income.credits.two_wage_earner.rate[1].rate": { - "type": "parameter", - "parameter": "gov.states.sc.tax.income.credits.two_wage_earner.rate[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.credits.two_wage_earner.rate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.sc.tax.income.credits.two_wage_earner.rate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 50000, - "2022-01-01": 46667, - "2021-01-01": 43333, - "2015-01-01": 43333 - }, - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.credits.non_refundable": { - "type": "parameter", - "parameter": "gov.states.sc.tax.income.credits.non_refundable", - "description": "South Carolina non-refundable tax credits.", - "label": "South Carolina non-refundable tax credits", - "unit": "list", - "period": null, - "values": { - "2021-01-01": ["sc_cdcc", "sc_eitc", "sc_two_wage_earner_credit"], - "2015-01-01": ["sc_cdcc", "sc_eitc", "sc_two_wage_earner_credit"] - }, - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.exemptions": { - "type": "parameterNode", - "parameter": "gov.states.sc.tax.income.exemptions", - "description": null, - "label": "exemptions", - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.exemptions.senior": { - "type": "parameterNode", - "parameter": "gov.states.sc.tax.income.exemptions.senior", - "description": null, - "label": "senior", - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.exemptions.senior.age_threshold": { - "type": "parameter", - "parameter": "gov.states.sc.tax.income.exemptions.senior.age_threshold", - "description": "South Carolina allows filers above this age to be eligible for the senior exemption.", - "label": "South Carolina senior exemption age threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.exemptions.senior.spouse_amount": { - "type": "parameter", - "parameter": "gov.states.sc.tax.income.exemptions.senior.spouse_amount", - "description": "South Carolina provides the following senior exemption amount for spouse.", - "label": "South Carolina senior exemption spouse amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 15000, - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.exemptions.senior.amount": { - "type": "parameter", - "parameter": "gov.states.sc.tax.income.exemptions.senior.amount", - "description": "South Carolina provides the following senior exemption amount for self.", - "label": "South Carolina senior exemption amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 15000, - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.subtractions": { - "type": "parameterNode", - "parameter": "gov.states.sc.tax.income.subtractions", - "description": null, - "label": "subtractions", - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.subtractions.subtractions": { - "type": "parameter", - "parameter": "gov.states.sc.tax.income.subtractions.subtractions", - "description": "South Carolina subtracts these sources from federal taxable income to determine state taxable income.", - "label": "South Carolina federal taxable income subtractions", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": [ - "salt_refund_income", - "disability_benefits", - "sc_net_capital_gain_deduction", - "investment_in_529_plan", - "us_govt_interest", - "taxable_social_security", - "sc_military_deduction", - "sc_retirement_deduction", - "sc_senior_exemption", - "sc_young_child_deduction", - "sc_dependent_exemption" - ], - "2015-01-01": [ - "salt_refund_income", - "disability_benefits", - "sc_net_capital_gain_deduction", - "investment_in_529_plan", - "us_govt_interest", - "taxable_social_security", - "sc_military_deduction", - "sc_retirement_deduction", - "sc_senior_exemption", - "sc_young_child_deduction", - "sc_dependent_exemption" - ] - }, - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.subtractions.retirement": { - "type": "parameterNode", - "parameter": "gov.states.sc.tax.income.subtractions.retirement", - "description": null, - "label": "retirement", - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.subtractions.retirement.subtract_military": { - "type": "parameter", - "parameter": "gov.states.sc.tax.income.subtractions.retirement.subtract_military", - "description": "South Carolina subtracts the survivors retirement deduction from the military retirement deduction if this is true.", - "label": "South Carolina choice to subtract survivors retirement deduction from military retirement deduction", - "unit": "bool", - "period": null, - "values": { - "2022-01-01": false, - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.subtractions.retirement.cap": { - "type": "parameterNode", - "parameter": "gov.states.sc.tax.income.subtractions.retirement.cap", - "description": "South Carolina caps the retirement deduction at this amount, based on age.", - "label": "South Carolina retirement deduction cap" - }, - "gov.states.sc.tax.income.subtractions.retirement.cap[0]": { - "type": "parameterNode", - "parameter": "gov.states.sc.tax.income.subtractions.retirement.cap[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.sc.tax.income.subtractions.retirement.cap[0].threshold": { - "type": "parameter", - "parameter": "gov.states.sc.tax.income.subtractions.retirement.cap[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.subtractions.retirement.cap[0].amount": { - "type": "parameter", - "parameter": "gov.states.sc.tax.income.subtractions.retirement.cap[0].amount", - "description": null, - "label": "amount", - "unit": "currency_USD", - "period": null, - "values": { - "2021-01-01": 3000, - "2015-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.subtractions.retirement.cap[1]": { - "type": "parameterNode", - "parameter": "gov.states.sc.tax.income.subtractions.retirement.cap[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.sc.tax.income.subtractions.retirement.cap[1].threshold": { - "type": "parameter", - "parameter": "gov.states.sc.tax.income.subtractions.retirement.cap[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.subtractions.retirement.cap[1].amount": { - "type": "parameter", - "parameter": "gov.states.sc.tax.income.subtractions.retirement.cap[1].amount", - "description": null, - "label": "amount", - "unit": "currency_USD", - "period": null, - "values": { - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.additions": { - "type": "parameterNode", - "parameter": "gov.states.sc.tax.income.additions", - "description": null, - "label": "additions", - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.additions.additions": { - "type": "parameter", - "parameter": "gov.states.sc.tax.income.additions.additions", - "description": "South Carolina adds these sources from federal taxable income to determine state taxable income.", - "label": "South Carolina federal taxable income additions", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": ["sc_state_tax_addback"], - "2015-01-01": ["sc_state_tax_addback"] - }, - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.rates": { - "type": "parameterNode", - "parameter": "gov.states.sc.tax.income.rates", - "description": "South Carolina taxes the income of individuals at this rate.", - "label": "South Carolina income tax rate" - }, - "gov.states.sc.tax.income.rates[0]": { - "type": "parameterNode", - "parameter": "gov.states.sc.tax.income.rates[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.sc.tax.income.rates[0].rate": { - "type": "parameter", - "parameter": "gov.states.sc.tax.income.rates[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0, - "1994-01-01": 0.025 - }, - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.rates[0].threshold": { - "type": "parameter", - "parameter": "gov.states.sc.tax.income.rates[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1994-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.rates[1]": { - "type": "parameterNode", - "parameter": "gov.states.sc.tax.income.rates[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.sc.tax.income.rates[1].rate": { - "type": "parameter", - "parameter": "gov.states.sc.tax.income.rates[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "1994-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.rates[1].threshold": { - "type": "parameter", - "parameter": "gov.states.sc.tax.income.rates[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 3460, - "2023-01-01": 3330, - "2022-01-01": 3200, - "2021-01-01": 3110, - "1994-01-01": 2220 - }, - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.rates[2]": { - "type": "parameterNode", - "parameter": "gov.states.sc.tax.income.rates[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.sc.tax.income.rates[2].rate": { - "type": "parameter", - "parameter": "gov.states.sc.tax.income.rates[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.062, - "2023-01-01": 0.064, - "2022-01-01": 0.065, - "1994-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.rates[2].threshold": { - "type": "parameter", - "parameter": "gov.states.sc.tax.income.rates[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 17330, - "2023-01-01": 16680, - "2022-01-01": 16040, - "2021-01-01": 6220, - "1994-01-01": 4440 - }, - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.rates[3]": { - "type": "parameterNode", - "parameter": "gov.states.sc.tax.income.rates[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.sc.tax.income.rates[3].rate": { - "type": "parameter", - "parameter": "gov.states.sc.tax.income.rates[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "1994-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.rates[3].threshold": { - "type": "parameter", - "parameter": "gov.states.sc.tax.income.rates[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": "Infinity", - "2021-01-01": 9330, - "1994-01-01": 6660 - }, - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.rates[4]": { - "type": "parameterNode", - "parameter": "gov.states.sc.tax.income.rates[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.sc.tax.income.rates[4].rate": { - "type": "parameter", - "parameter": "gov.states.sc.tax.income.rates[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "1994-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.rates[4].threshold": { - "type": "parameter", - "parameter": "gov.states.sc.tax.income.rates[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": "Infinity", - "2021-01-01": 12440, - "1994-01-01": 8880 - }, - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.rates[5]": { - "type": "parameterNode", - "parameter": "gov.states.sc.tax.income.rates[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.sc.tax.income.rates[5].rate": { - "type": "parameter", - "parameter": "gov.states.sc.tax.income.rates[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.065, - "1994-01-01": 0.07 - }, - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.rates[5].threshold": { - "type": "parameter", - "parameter": "gov.states.sc.tax.income.rates[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": "Infinity", - "2021-01-01": 15560, - "1994-01-01": 11100 - }, - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.rates[6]": { - "type": "parameterNode", - "parameter": "gov.states.sc.tax.income.rates[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.sc.tax.income.rates[6].threshold": { - "type": "parameter", - "parameter": "gov.states.sc.tax.income.rates[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1994-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.deductions": { - "type": "parameterNode", - "parameter": "gov.states.sc.tax.income.deductions", - "description": null, - "label": "deductions", - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.deductions.net_capital_gain": { - "type": "parameterNode", - "parameter": "gov.states.sc.tax.income.deductions.net_capital_gain", - "description": null, - "label": "net capital gain", - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.deductions.net_capital_gain.rate": { - "type": "parameter", - "parameter": "gov.states.sc.tax.income.deductions.net_capital_gain.rate", - "description": "South Carolina deducts this fraction of net capital gains from taxable income.", - "label": "South Carolina net capital gain deduction rate", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.44, - "2015-01-01": 0.44 - }, - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.deductions.young_child": { - "type": "parameterNode", - "parameter": "gov.states.sc.tax.income.deductions.young_child", - "description": null, - "label": "young child", - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.deductions.young_child.ineligible_age": { - "type": "parameter", - "parameter": "gov.states.sc.tax.income.deductions.young_child.ineligible_age", - "description": "South Carolina limits its young child deduction to children below this age.", - "label": "South Carolina young child deduction ineligible age", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 6, - "2015-01-01": 6 - }, - "economy": true, - "household": true - }, - "gov.states.sc.tax.income.deductions.young_child.amount": { - "type": "parameter", - "parameter": "gov.states.sc.tax.income.deductions.young_child.amount", - "description": "South Carolina provides a young child deduction of this amount.", - "label": "South Carolina young child deduction amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 5964.87149068425, - "2034-01-01": 5849.36716585866, - "2033-01-01": 5735.28882035191, - "2032-01-01": 5624.06243348283, - "2031-01-01": 5515.68800525142, - "2030-01-01": 5408.73955633884, - "2029-01-01": 5303.21708674509, - "2028-01-01": 5199.12059647018, - "2027-01-01": 5093.59812687644, - "2026-01-01": 4971.10650338856, - "2025-01-01": 4896.25922557514, - "2024-01-01": 4790, - "2023-01-01": 4610, - "2022-01-01": 4430, - "2021-01-01": 4300, - "2019-01-01": 4100, - "2015-01-01": 4100 - }, - "economy": true, - "household": true - }, - "gov.states.ms": { - "type": "parameterNode", - "parameter": "gov.states.ms", - "description": null, - "label": "Mississippi", - "economy": true, - "household": true - }, - "gov.states.ms.tax": { - "type": "parameterNode", - "parameter": "gov.states.ms.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.states.ms.tax.income": { - "type": "parameterNode", - "parameter": "gov.states.ms.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.adjustments": { - "type": "parameterNode", - "parameter": "gov.states.ms.tax.income.adjustments", - "description": null, - "label": "adjustments", - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.adjustments.national_guard_or_reserve_pay": { - "type": "parameterNode", - "parameter": "gov.states.ms.tax.income.adjustments.national_guard_or_reserve_pay", - "description": null, - "label": "national guard or reserve pay", - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.adjustments.national_guard_or_reserve_pay.cap": { - "type": "parameter", - "parameter": "gov.states.ms.tax.income.adjustments.national_guard_or_reserve_pay.cap", - "description": "Mississippi limits the national guard or reserve pay adjustment to the following amount.", - "label": "Mississippi national guard or reserve pay adjustment cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2005-01-01": 15000, - "2004-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.adjustments.self_employment": { - "type": "parameterNode", - "parameter": "gov.states.ms.tax.income.adjustments.self_employment", - "description": null, - "label": "self employment", - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.adjustments.self_employment.rate": { - "type": "parameter", - "parameter": "gov.states.ms.tax.income.adjustments.self_employment.rate", - "description": "Mississippi subtracts this fraction of self-employment taxes from adjusted gross income.", - "label": "Mississippi self-employment tax adjustment rate", - "unit": "/1", - "period": "year", - "values": { - "2019-01-01": 0.5, - "2018-01-01": 0.34, - "2017-01-01": 0.17, - "2015-01-01": 0.17 - }, - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.adjustments.adjustments": { - "type": "parameter", - "parameter": "gov.states.ms.tax.income.adjustments.adjustments", - "description": "Mississippi subtracts these adjustments from federal adjusted gross income when computing state adjusted gross income.", - "label": "Mississippi adjusted gross income adjustments", - "unit": "list", - "period": "year", - "values": { - "2020-01-01": [ - "traditional_ira_contributions", - "ms_self_employment_adjustment", - "ms_national_guard_or_reserve_pay_adjustment", - "alimony_expense", - "ms_retirement_income_exemption" - ], - "2015-01-01": [ - "traditional_ira_contributions", - "ms_self_employment_adjustment", - "ms_national_guard_or_reserve_pay_adjustment", - "alimony_expense", - "ms_retirement_income_exemption" - ] - }, - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.income_sources": { - "type": "parameter", - "parameter": "gov.states.ms.tax.income.income_sources", - "description": "Mississippi counts these income sources toward adjusted gross income.", - "label": "Mississippi AGI income sources", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": [ - "irs_employment_income", - "self_employment_income", - "partnership_s_corp_income", - "capital_gains", - "rental_income", - "farm_income", - "interest_income", - "qualified_dividend_income", - "alimony_income", - "taxable_pension_income", - "taxable_social_security", - "unemployment_compensation" - ], - "2015-01-01": [ - "irs_employment_income", - "self_employment_income", - "partnership_s_corp_income", - "capital_gains", - "rental_income", - "farm_income", - "interest_income", - "qualified_dividend_income", - "alimony_income", - "taxable_pension_income", - "taxable_social_security", - "unemployment_compensation" - ] - }, - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.credits": { - "type": "parameterNode", - "parameter": "gov.states.ms.tax.income.credits", - "description": null, - "label": "credits", - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.credits.cdcc": { - "type": "parameterNode", - "parameter": "gov.states.ms.tax.income.credits.cdcc", - "description": null, - "label": "cdcc", - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.credits.cdcc.match": { - "type": "parameter", - "parameter": "gov.states.ms.tax.income.credits.cdcc.match", - "description": "Mississippi matches this percentage of the federal child and dependent care credit.", - "label": "Mississippi CDCC match", - "unit": "/1", - "period": "year", - "values": { - "2023-01-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.credits.cdcc.income_limit": { - "type": "parameter", - "parameter": "gov.states.ms.tax.income.credits.cdcc.income_limit", - "description": "Mississippi limits the child and dependent care credit to filers with income below the following amount.", - "label": "Mississippi CDCC income limit", - "unit": "currency-USD", - "period": "year", - "values": { - "2023-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.credits.charitable_contribution": { - "type": "parameterNode", - "parameter": "gov.states.ms.tax.income.credits.charitable_contribution", - "description": null, - "label": "charitable contribution", - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.credits.charitable_contribution.cap": { - "type": "parameterNode", - "parameter": "gov.states.ms.tax.income.credits.charitable_contribution.cap", - "description": "Mississippi caps the credit for contributions to a qualifying foster care charitable organization at this amount.", - "label": "Mississippi credit for contributions to foster organizations cap", - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.credits.charitable_contribution.cap.JOINT": { - "type": "parameter", - "parameter": "gov.states.ms.tax.income.credits.charitable_contribution.cap.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2023-01-01": 3000, - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.credits.charitable_contribution.cap.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ms.tax.income.credits.charitable_contribution.cap.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2023-01-01": 1500, - "2021-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.credits.charitable_contribution.cap.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ms.tax.income.credits.charitable_contribution.cap.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2023-01-01": 1500, - "2021-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.credits.charitable_contribution.cap.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ms.tax.income.credits.charitable_contribution.cap.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2023-01-01": 1500, - "2021-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.credits.charitable_contribution.cap.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ms.tax.income.credits.charitable_contribution.cap.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2023-01-01": 1500, - "2021-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.credits.non_refundable": { - "type": "parameter", - "parameter": "gov.states.ms.tax.income.credits.non_refundable", - "description": "Mississippi allows these non-refundable tax credits.", - "label": "Mississippi non-refundable tax credits", - "unit": "list", - "period": "year", - "values": { - "2023-01-01": ["ms_charitable_contributions_credit", "ms_cdcc"], - "2021-01-01": ["ms_charitable_contributions_credit"], - "2015-01-01": ["ms_charitable_contributions_credit"] - }, - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.exemptions": { - "type": "parameterNode", - "parameter": "gov.states.ms.tax.income.exemptions", - "description": null, - "label": "exemptions", - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.exemptions.aged": { - "type": "parameterNode", - "parameter": "gov.states.ms.tax.income.exemptions.aged", - "description": null, - "label": "aged", - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.exemptions.aged.age_threshold": { - "type": "parameter", - "parameter": "gov.states.ms.tax.income.exemptions.aged.age_threshold", - "description": "Mississippi provides the aged exemption amount for aged filers or spouse at or above this age.", - "label": "Mississippi senior exemption age threshold", - "unit": "year", - "period": "year", - "values": { - "2019-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.exemptions.aged.amount": { - "type": "parameter", - "parameter": "gov.states.ms.tax.income.exemptions.aged.amount", - "description": "Mississippi provides an exemption of this amount per aged filer or spouse.", - "label": "Mississippi aged exemption amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2020-01-01": 1500, - "2015-01-01": 1500 - }, - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.exemptions.blind": { - "type": "parameterNode", - "parameter": "gov.states.ms.tax.income.exemptions.blind", - "description": null, - "label": "blind", - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.exemptions.blind.amount": { - "type": "parameter", - "parameter": "gov.states.ms.tax.income.exemptions.blind.amount", - "description": "Mississippi provides an exemption of this amount per blind filer or spouse.", - "label": "Mississippi blind exemption amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2020-01-01": 1500, - "2015-01-01": 1500 - }, - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.exemptions.regular": { - "type": "parameterNode", - "parameter": "gov.states.ms.tax.income.exemptions.regular", - "description": null, - "label": "regular", - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.exemptions.regular.amount": { - "type": "parameterNode", - "parameter": "gov.states.ms.tax.income.exemptions.regular.amount", - "description": "Mississippi provides an exemption of this value depending on filing status.", - "label": "Mississippi exemption", - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.exemptions.regular.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ms.tax.income.exemptions.regular.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2020-01-01": 6000, - "2015-01-01": 6000 - }, - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.exemptions.regular.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ms.tax.income.exemptions.regular.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2020-01-01": 6000, - "2015-01-01": 6000 - }, - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.exemptions.regular.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ms.tax.income.exemptions.regular.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8000, - "2015-01-01": 8000 - }, - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.exemptions.regular.amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.ms.tax.income.exemptions.regular.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2020-01-01": 12000, - "2015-01-01": 12000 - }, - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.exemptions.regular.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ms.tax.income.exemptions.regular.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2020-01-01": 12000, - "2015-01-01": 12000 - }, - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.exemptions.dependents": { - "type": "parameterNode", - "parameter": "gov.states.ms.tax.income.exemptions.dependents", - "description": null, - "label": "dependents", - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.exemptions.dependents.amount": { - "type": "parameter", - "parameter": "gov.states.ms.tax.income.exemptions.dependents.amount", - "description": "Mississippi provides an exemption of this amount per dependent.", - "label": "Mississippi dependent exemption", - "unit": "currency-USD", - "period": "year", - "values": { - "2020-01-01": 1500, - "2015-01-01": 1500 - }, - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.rate": { - "type": "parameterNode", - "parameter": "gov.states.ms.tax.income.rate", - "description": "Mississippi taxes personal income using these income tax brackets.", - "label": "Mississippi income tax rate" - }, - "gov.states.ms.tax.income.rate[0]": { - "type": "parameterNode", - "parameter": "gov.states.ms.tax.income.rate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ms.tax.income.rate[0].rate": { - "type": "parameter", - "parameter": "gov.states.ms.tax.income.rate[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0, - "2017-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.rate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ms.tax.income.rate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2017-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.rate[1]": { - "type": "parameterNode", - "parameter": "gov.states.ms.tax.income.rate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ms.tax.income.rate[1].rate": { - "type": "parameter", - "parameter": "gov.states.ms.tax.income.rate[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2030-01-01": 0.03, - "2029-01-01": 0.0325, - "2028-01-01": 0.035, - "2027-01-01": 0.0375, - "2026-01-01": 0.04, - "2025-01-01": 0.044, - "2024-01-01": 0.047, - "2023-01-01": 0.05, - "2022-01-01": 0.04, - "2018-01-01": 0.03, - "2017-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.rate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ms.tax.income.rate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 10000, - "2022-01-01": 5000, - "2021-01-01": 4000, - "2020-01-01": 3000, - "2019-01-01": 2000, - "2018-01-01": 1000, - "2017-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.rate[2]": { - "type": "parameterNode", - "parameter": "gov.states.ms.tax.income.rate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ms.tax.income.rate[2].rate": { - "type": "parameter", - "parameter": "gov.states.ms.tax.income.rate[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.05, - "2018-01-01": 0.04, - "2017-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.rate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ms.tax.income.rate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": "Infinity", - "2022-01-01": 10000, - "2018-01-01": 5000, - "2017-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.rate[3]": { - "type": "parameterNode", - "parameter": "gov.states.ms.tax.income.rate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ms.tax.income.rate[3].rate": { - "type": "parameter", - "parameter": "gov.states.ms.tax.income.rate[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.rate[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ms.tax.income.rate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": "Infinity", - "2018-01-01": 10000, - "2017-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.deductions": { - "type": "parameterNode", - "parameter": "gov.states.ms.tax.income.deductions", - "description": null, - "label": "deductions", - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.deductions.standard": { - "type": "parameterNode", - "parameter": "gov.states.ms.tax.income.deductions.standard", - "description": null, - "label": "standard", - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.deductions.standard.amount": { - "type": "parameterNode", - "parameter": "gov.states.ms.tax.income.deductions.standard.amount", - "description": "Mississippi provides the following standard deduction amount, based on filing status.", - "label": "Mississippi standard deduction", - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.deductions.standard.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ms.tax.income.deductions.standard.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "1997-01-01": 2300 - }, - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.deductions.standard.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ms.tax.income.deductions.standard.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "1999-01-01": 2300, - "1998-01-01": 2100, - "1997-01-01": 1700 - }, - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.deductions.standard.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ms.tax.income.deductions.standard.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "1997-01-01": 3400 - }, - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.deductions.standard.amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.ms.tax.income.deductions.standard.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "1999-01-01": 4600, - "1998-01-01": 4200, - "1997-01-01": 3400 - }, - "economy": true, - "household": true - }, - "gov.states.ms.tax.income.deductions.standard.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ms.tax.income.deductions.standard.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "1999-01-01": 4600, - "1998-01-01": 4200, - "1997-01-01": 3400 - }, - "economy": true, - "household": true - }, - "gov.states.ma": { - "type": "parameterNode", - "parameter": "gov.states.ma", - "description": null, - "label": "Massachusetts", - "economy": true, - "household": true - }, - "gov.states.ma.dta": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta", - "description": null, - "label": "Department of Transitional Assistance", - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.ssp", - "description": null, - "label": "State Supplement Program (SSP)", - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.ssp.amount", - "description": "Massachusetts provides this payment amount under the State Supplement program, based on applicants living arrangement, SSI category, and number of people.", - "label": "Massachusetts SSP payment amount", - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.FULL_COST": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.ssp.amount.FULL_COST", - "description": null, - "label": "FULL COST", - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.FULL_COST.AGED": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.ssp.amount.FULL_COST.AGED", - "description": null, - "label": "AGED", - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.FULL_COST.AGED.1": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.FULL_COST.AGED.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2022-01-01": 128.82, - "2015-01-01": 128.82 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.FULL_COST.AGED.2": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.FULL_COST.AGED.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2022-01-01": 100.86, - "2015-01-01": 100.86 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.FULL_COST.BLIND": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.ssp.amount.FULL_COST.BLIND", - "description": null, - "label": "BLIND", - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.FULL_COST.BLIND.1": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.FULL_COST.BLIND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2022-01-01": 149.74, - "2015-01-01": 149.74 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.FULL_COST.BLIND.2": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.FULL_COST.BLIND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2025-01-01": 391.74, - "2024-01-01": 385.24, - "2023-01-01": 378.24, - "2022-01-01": 360.24, - "2015-01-01": 360.24 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.FULL_COST.DISABLED": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.ssp.amount.FULL_COST.DISABLED", - "description": null, - "label": "DISABLED", - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.FULL_COST.DISABLED.1": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.FULL_COST.DISABLED.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2022-01-01": 114.39, - "2015-01-01": 114.39 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.FULL_COST.DISABLED.2": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.FULL_COST.DISABLED.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2022-01-01": 90.03, - "2015-01-01": 90.03 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.FULL_COST.NONE": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.ssp.amount.FULL_COST.NONE", - "description": null, - "label": "NONE", - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.FULL_COST.NONE.1": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.FULL_COST.NONE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.FULL_COST.NONE.2": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.FULL_COST.NONE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.SHARED_EXPENSES": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.ssp.amount.SHARED_EXPENSES", - "description": null, - "label": "SHARED EXPENSES", - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.SHARED_EXPENSES.AGED": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.ssp.amount.SHARED_EXPENSES.AGED", - "description": null, - "label": "AGED", - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.SHARED_EXPENSES.AGED.1": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.SHARED_EXPENSES.AGED.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2022-01-01": 39.26, - "2015-01-01": 39.26 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.SHARED_EXPENSES.AGED.2": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.SHARED_EXPENSES.AGED.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2022-01-01": 100.86, - "2015-01-01": 100.86 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.SHARED_EXPENSES.BLIND": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.ssp.amount.SHARED_EXPENSES.BLIND", - "description": null, - "label": "BLIND", - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.SHARED_EXPENSES.BLIND.1": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.SHARED_EXPENSES.BLIND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2022-01-01": 149.74, - "2015-01-01": 149.74 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.SHARED_EXPENSES.BLIND.2": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.SHARED_EXPENSES.BLIND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2025-01-01": 391.74, - "2024-01-01": 385.24, - "2023-01-01": 378.24, - "2022-01-01": 360.24, - "2015-01-01": 360.24 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.SHARED_EXPENSES.DISABLED": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.ssp.amount.SHARED_EXPENSES.DISABLED", - "description": null, - "label": "DISABLED", - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.SHARED_EXPENSES.DISABLED.1": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.SHARED_EXPENSES.DISABLED.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2022-01-01": 30.4, - "2015-01-01": 30.4 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.SHARED_EXPENSES.DISABLED.2": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.SHARED_EXPENSES.DISABLED.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2022-01-01": 90.03, - "2015-01-01": 90.03 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.SHARED_EXPENSES.NONE": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.ssp.amount.SHARED_EXPENSES.NONE", - "description": null, - "label": "NONE", - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.SHARED_EXPENSES.NONE.1": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.SHARED_EXPENSES.NONE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.SHARED_EXPENSES.NONE.2": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.SHARED_EXPENSES.NONE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.HOUSEHOLD_OF_ANOTHER": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.ssp.amount.HOUSEHOLD_OF_ANOTHER", - "description": null, - "label": "HOUSEHOLD OF ANOTHER", - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.HOUSEHOLD_OF_ANOTHER.AGED": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.ssp.amount.HOUSEHOLD_OF_ANOTHER.AGED", - "description": null, - "label": "AGED", - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.HOUSEHOLD_OF_ANOTHER.AGED.1": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.HOUSEHOLD_OF_ANOTHER.AGED.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2022-01-01": 104.36, - "2015-01-01": 104.36 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.HOUSEHOLD_OF_ANOTHER.AGED.2": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.HOUSEHOLD_OF_ANOTHER.AGED.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2022-01-01": 107.9, - "2015-01-01": 107.9 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.HOUSEHOLD_OF_ANOTHER.BLIND": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.ssp.amount.HOUSEHOLD_OF_ANOTHER.BLIND", - "description": null, - "label": "BLIND", - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.HOUSEHOLD_OF_ANOTHER.BLIND.1": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.HOUSEHOLD_OF_ANOTHER.BLIND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2025-01-01": 472.07, - "2024-01-01": 464.07, - "2023-01-01": 454.4, - "2022-01-01": 430.07, - "2015-01-01": 430.07 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.HOUSEHOLD_OF_ANOTHER.BLIND.2": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.HOUSEHOLD_OF_ANOTHER.BLIND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2025-01-01": 633.4, - "2024-01-01": 621.07, - "2023-01-01": 606.74, - "2022-01-01": 570.4, - "2015-01-01": 570.4 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.HOUSEHOLD_OF_ANOTHER.DISABLED": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.ssp.amount.HOUSEHOLD_OF_ANOTHER.DISABLED", - "description": null, - "label": "DISABLED", - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.HOUSEHOLD_OF_ANOTHER.DISABLED.1": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.HOUSEHOLD_OF_ANOTHER.DISABLED.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2022-01-01": 87.58, - "2015-01-01": 87.58 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.HOUSEHOLD_OF_ANOTHER.DISABLED.2": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.HOUSEHOLD_OF_ANOTHER.DISABLED.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2022-01-01": 97.09, - "2015-01-01": 97.09 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.HOUSEHOLD_OF_ANOTHER.NONE": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.ssp.amount.HOUSEHOLD_OF_ANOTHER.NONE", - "description": null, - "label": "NONE", - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.HOUSEHOLD_OF_ANOTHER.NONE.1": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.HOUSEHOLD_OF_ANOTHER.NONE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.HOUSEHOLD_OF_ANOTHER.NONE.2": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.HOUSEHOLD_OF_ANOTHER.NONE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.REST_HOME": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.ssp.amount.REST_HOME", - "description": null, - "label": "REST HOME", - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.REST_HOME.AGED": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.ssp.amount.REST_HOME.AGED", - "description": null, - "label": "AGED", - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.REST_HOME.AGED.1": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.REST_HOME.AGED.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2022-01-01": 293, - "2015-01-01": 293 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.REST_HOME.AGED.2": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.REST_HOME.AGED.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2025-01-01": 535, - "2024-01-01": 528.5, - "2023-01-01": 521.5, - "2022-01-01": 503.5, - "2015-01-01": 503.5 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.REST_HOME.BLIND": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.ssp.amount.REST_HOME.BLIND", - "description": null, - "label": "BLIND", - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.REST_HOME.BLIND.1": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.REST_HOME.BLIND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2022-01-01": 149.74, - "2015-01-01": 149.74 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.REST_HOME.BLIND.2": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.REST_HOME.BLIND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2025-01-01": 391.74, - "2024-01-01": 385.24, - "2023-01-01": 378.24, - "2022-01-01": 360.24, - "2015-01-01": 360.24 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.REST_HOME.DISABLED": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.ssp.amount.REST_HOME.DISABLED", - "description": null, - "label": "DISABLED", - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.REST_HOME.DISABLED.1": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.REST_HOME.DISABLED.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2022-01-01": 293, - "2015-01-01": 293 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.REST_HOME.DISABLED.2": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.REST_HOME.DISABLED.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2025-01-01": 535, - "2024-01-01": 528.5, - "2023-01-01": 521.5, - "2022-01-01": 503.5, - "2015-01-01": 503.5 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.REST_HOME.NONE": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.ssp.amount.REST_HOME.NONE", - "description": null, - "label": "NONE", - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.REST_HOME.NONE.1": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.REST_HOME.NONE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.REST_HOME.NONE.2": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.REST_HOME.NONE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.MEDICAID_FACILITY": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.ssp.amount.MEDICAID_FACILITY", - "description": null, - "label": "MEDICAID FACILITY", - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.MEDICAID_FACILITY.AGED": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.ssp.amount.MEDICAID_FACILITY.AGED", - "description": null, - "label": "AGED", - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.MEDICAID_FACILITY.AGED.1": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.MEDICAID_FACILITY.AGED.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2022-01-01": 42.8, - "2015-01-01": 42.8 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.MEDICAID_FACILITY.AGED.2": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.MEDICAID_FACILITY.AGED.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2022-01-01": 42.8, - "2015-01-01": 42.8 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.MEDICAID_FACILITY.BLIND": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.ssp.amount.MEDICAID_FACILITY.BLIND", - "description": null, - "label": "BLIND", - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.MEDICAID_FACILITY.BLIND.1": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.MEDICAID_FACILITY.BLIND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2022-01-01": 42.8, - "2015-01-01": 42.8 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.MEDICAID_FACILITY.BLIND.2": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.MEDICAID_FACILITY.BLIND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2022-01-01": 42.8, - "2015-01-01": 42.8 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.MEDICAID_FACILITY.DISABLED": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.ssp.amount.MEDICAID_FACILITY.DISABLED", - "description": null, - "label": "DISABLED", - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.MEDICAID_FACILITY.DISABLED.1": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.MEDICAID_FACILITY.DISABLED.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2022-01-01": 42.8, - "2015-01-01": 42.8 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.MEDICAID_FACILITY.DISABLED.2": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.MEDICAID_FACILITY.DISABLED.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2022-01-01": 42.8, - "2015-01-01": 42.8 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.MEDICAID_FACILITY.NONE": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.ssp.amount.MEDICAID_FACILITY.NONE", - "description": null, - "label": "NONE", - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.MEDICAID_FACILITY.NONE.1": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.MEDICAID_FACILITY.NONE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.MEDICAID_FACILITY.NONE.2": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.MEDICAID_FACILITY.NONE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.ASSISTED_LIVING": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.ssp.amount.ASSISTED_LIVING", - "description": null, - "label": "ASSISTED LIVING", - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.ASSISTED_LIVING.AGED": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.ssp.amount.ASSISTED_LIVING.AGED", - "description": null, - "label": "AGED", - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.ASSISTED_LIVING.AGED.1": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.ASSISTED_LIVING.AGED.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2022-01-01": 454, - "2015-01-01": 454 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.ASSISTED_LIVING.AGED.2": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.ASSISTED_LIVING.AGED.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2022-01-01": 340.5, - "2015-01-01": 340.5 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.ASSISTED_LIVING.BLIND": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.ssp.amount.ASSISTED_LIVING.BLIND", - "description": null, - "label": "BLIND", - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.ASSISTED_LIVING.BLIND.1": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.ASSISTED_LIVING.BLIND.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2022-01-01": 454, - "2015-01-01": 454 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.ASSISTED_LIVING.BLIND.2": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.ASSISTED_LIVING.BLIND.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2022-01-01": 340.5, - "2015-01-01": 340.5 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.ASSISTED_LIVING.DISABLED": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.ssp.amount.ASSISTED_LIVING.DISABLED", - "description": null, - "label": "DISABLED", - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.ASSISTED_LIVING.DISABLED.1": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.ASSISTED_LIVING.DISABLED.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2022-01-01": 454, - "2015-01-01": 454 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.ASSISTED_LIVING.DISABLED.2": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.ASSISTED_LIVING.DISABLED.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2022-01-01": 340.5, - "2015-01-01": 340.5 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.ASSISTED_LIVING.NONE": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.ssp.amount.ASSISTED_LIVING.NONE", - "description": null, - "label": "NONE", - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.ASSISTED_LIVING.NONE.1": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.ASSISTED_LIVING.NONE.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.ssp.amount.ASSISTED_LIVING.NONE.2": { - "type": "parameter", - "parameter": "gov.states.ma.dta.ssp.amount.ASSISTED_LIVING.NONE.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap", - "description": null, - "label": "Transitional Cash Assistance Program", - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.gross_income": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.gross_income", - "description": null, - "label": "gross income", - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.gross_income.earned": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.gross_income.earned", - "description": "Massachusetts counts the following income sources as earned income under the Transitional Cash Assistance Program.", - "label": "Massachusetts TCAP earned income sources", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": ["employment_income", "self_employment_income"], - "2015-01-01": ["employment_income", "self_employment_income"] - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.gross_income.unearned": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.gross_income.unearned", - "description": "Massachusetts counts the following income sources as unearned income under the Transitional Cash Assistance Program.", - "label": "Massachusetts TCAP unearned income sources", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": [ - "dividend_income", - "interest_income", - "social_security", - "unemployment_compensation", - "veterans_benefits", - "pension_income" - ], - "2015-01-01": [ - "dividend_income", - "interest_income", - "social_security", - "unemployment_compensation", - "veterans_benefits", - "pension_income" - ] - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.eaedc": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.eaedc", - "description": null, - "label": "Emergency Aid to the Elderly, Disabled and Children", - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.eaedc.age_threshold": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.eaedc.age_threshold", - "description": null, - "label": "age threshold", - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.eaedc.age_threshold.dependent": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.eaedc.age_threshold.dependent", - "description": "Massachusetts limits the Emergency Aid to the Elderly, Disabled and Children program to households with at least one dependent younger than this age.", - "label": "Massachusetts EAEDC dependent age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 18, - "2015-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.eaedc.age_threshold.elderly": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.eaedc.age_threshold.elderly", - "description": "Massachusetts limits the Emergency Aid to the Elderly, Disabled and Children program to households with at least one member of this age or older.", - "label": "Massachusetts EAEDC elderly age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.eaedc.age_threshold.caretaker": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.eaedc.age_threshold.caretaker", - "description": "Massachusetts limits the Emergency Aid to the Elderly, Disabled and Children program to households with at least one caretaker of this age or older.", - "label": "Massachusetts EAEDC caretaker age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 18, - "2015-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.eaedc.standard_assistance": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.eaedc.standard_assistance", - "description": null, - "label": "standard assistance", - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.eaedc.standard_assistance.amount": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.eaedc.standard_assistance.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.eaedc.standard_assistance.amount.base": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.eaedc.standard_assistance.amount.base", - "description": "Massachusetts provides the following Emergency Aid to the Elderly, Disabled and Children program standard assistance base amount, based on the living arrangement.", - "label": "Massachusetts EAEDC standard assistance base amount", - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.eaedc.standard_assistance.amount.base.A": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.eaedc.standard_assistance.amount.base.A", - "description": null, - "label": "A", - "unit": null, - "period": null, - "values": { - "2022-01-01": 401, - "2015-01-01": 401 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.eaedc.standard_assistance.amount.base.B": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.eaedc.standard_assistance.amount.base.B", - "description": null, - "label": "B", - "unit": null, - "period": null, - "values": { - "2022-01-01": 121, - "2015-01-01": 121 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.eaedc.standard_assistance.amount.base.C": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.eaedc.standard_assistance.amount.base.C", - "description": null, - "label": "C", - "unit": null, - "period": null, - "values": { - "2022-01-01": 72.8, - "2015-01-01": 72.8 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.eaedc.standard_assistance.amount.base.D": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.eaedc.standard_assistance.amount.base.D", - "description": null, - "label": "D", - "unit": null, - "period": null, - "values": { - "2022-01-01": 401, - "2015-01-01": 401 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.eaedc.standard_assistance.amount.base.E": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.eaedc.standard_assistance.amount.base.E", - "description": null, - "label": "E", - "unit": null, - "period": null, - "values": { - "2022-01-01": 72.8, - "2015-01-01": 72.8 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.eaedc.standard_assistance.amount.base.F": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.eaedc.standard_assistance.amount.base.F", - "description": null, - "label": "F", - "unit": null, - "period": null, - "values": { - "2022-01-01": 258, - "2015-01-01": 258 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.eaedc.standard_assistance.amount.base.H": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.eaedc.standard_assistance.amount.base.H", - "description": null, - "label": "H", - "unit": null, - "period": null, - "values": { - "2022-01-01": 267.3, - "2015-01-01": 267.3 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.eaedc.standard_assistance.amount.base.NONE": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.eaedc.standard_assistance.amount.base.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.eaedc.standard_assistance.amount.additional": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.eaedc.standard_assistance.amount.additional", - "description": "Massachusetts increases the Emergency Aid to the Elderly, Disabled and Children program standard assistance amount for each additional household member by this amount, based on the living arrangement.", - "label": "Massachusetts EAEDC standard assistance additional amount", - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.eaedc.standard_assistance.amount.additional.A": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.eaedc.standard_assistance.amount.additional.A", - "description": null, - "label": "A", - "unit": null, - "period": null, - "values": { - "2022-01-01": 121, - "2015-01-01": 121 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.eaedc.standard_assistance.amount.additional.B": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.eaedc.standard_assistance.amount.additional.B", - "description": null, - "label": "B", - "unit": null, - "period": null, - "values": { - "2022-01-01": 121, - "2015-01-01": 121 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.eaedc.standard_assistance.amount.additional.C": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.eaedc.standard_assistance.amount.additional.C", - "description": null, - "label": "C", - "unit": null, - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.eaedc.standard_assistance.amount.additional.D": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.eaedc.standard_assistance.amount.additional.D", - "description": null, - "label": "D", - "unit": null, - "period": null, - "values": { - "2022-01-01": 121, - "2015-01-01": 121 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.eaedc.standard_assistance.amount.additional.E": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.eaedc.standard_assistance.amount.additional.E", - "description": null, - "label": "E", - "unit": null, - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.eaedc.standard_assistance.amount.additional.F": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.eaedc.standard_assistance.amount.additional.F", - "description": null, - "label": "F", - "unit": null, - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.eaedc.standard_assistance.amount.additional.H": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.eaedc.standard_assistance.amount.additional.H", - "description": null, - "label": "H", - "unit": null, - "period": null, - "values": { - "2022-01-01": 80.8, - "2015-01-01": 80.8 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.eaedc.standard_assistance.amount.additional.NONE": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.eaedc.standard_assistance.amount.additional.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.eaedc.income": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.eaedc.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.eaedc.income.disabled_limit": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.eaedc.income.disabled_limit", - "description": "Massachusetts limits the Emergency Aid to the Elderly, Disabled and Children program to filers with disabled dependents with income below this limit.", - "label": "Massachusetts EAEDC disabled income limit", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-01-01": 1500, - "2015-01-01": 1500 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.eaedc.assets": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.eaedc.assets", - "description": null, - "label": "assets", - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.eaedc.assets.limit": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.eaedc.assets.limit", - "description": "Massachusetts limits the Emergency Aid to the Elderly, Disabled and Children program to individuals in living arrangement E with assets under this amount.", - "label": "Massachusetts EAEDC asset limit for living arrangements E", - "unit": "currency-USD", - "period": "month", - "values": { - "2022-01-01": 2000, - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.eaedc.assets.sources": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.eaedc.assets.sources", - "description": "Massachusetts counts these sources as countable assets under the Emergency Aid to the Elderly, Disabled and Children program.", - "label": "Massachusetts EAEDC assets sources", - "unit": "list", - "period": "year", - "values": { - "2022-01-01": ["spm_unit_cash_assets", "retirement_distributions"], - "2015-01-01": ["spm_unit_cash_assets", "retirement_distributions"] - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.eaedc.deductions": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.eaedc.deductions", - "description": null, - "label": "deductions", - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.eaedc.deductions.income_disregard": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.eaedc.deductions.income_disregard", - "description": null, - "label": "income disregard", - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.eaedc.deductions.income_disregard.flat": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.eaedc.deductions.income_disregard.flat", - "description": "Massachusetts disregards this flat amount from the Emergency Aid to the Elderly, Disabled, and Children program earned income.", - "label": "Massachusetts EAEDC earned income disregard flat amount", - "unit": "currency-USD", - "period": "month", - "values": { - "2022-01-01": 30, - "2015-01-01": 30 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.eaedc.deductions.income_disregard.percentage": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.eaedc.deductions.income_disregard.percentage", - "description": null, - "label": "percentage", - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.eaedc.deductions.income_disregard.percentage.months": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.eaedc.deductions.income_disregard.percentage.months", - "description": "Massachusetts disregards a percentage of earned income for this number of months, under the Emergency Aid to the Elderly, Disabled and Children program.", - "label": "Massachusetts EAEDC earned income percentage disregard applicable months", - "unit": "month", - "period": "year", - "values": { - "2022-01-01": 4, - "2015-01-01": 4 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.eaedc.deductions.income_disregard.percentage.rate": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.eaedc.deductions.income_disregard.percentage.rate", - "description": "Massachusetts disregards this share of earnings from the Emergency Aid to the Elderly, Disabled and Children earned income.", - "label": "Massachusetts EAEDC earned income disregard percentage rate", - "unit": "/1", - "period": "year", - "values": { - "2022-01-01": 0.33, - "2015-01-01": 0.33 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.tafdc", - "description": null, - "label": "tafdc", - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.infant_amount": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.infant_amount", - "description": "Massachusetts provides this one-time payment for each infant in the household under the Transitional Aid to Families with Dependent Children program.", - "label": "Massachusetts TAFDC infant amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 300, - "2015-01-01": 300 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.earned_income_disregard": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.tafdc.earned_income_disregard", - "description": null, - "label": "earned income disregard", - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.earned_income_disregard.full_disregard": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.tafdc.earned_income_disregard.full_disregard", - "description": null, - "label": "full disregard", - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.earned_income_disregard.full_disregard.applicable_months": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.earned_income_disregard.full_disregard.applicable_months", - "description": "Massachusetts disregards the full amount of earned income from the gross income calculation under the Transitional Aid to Families with Dependent Children program for this number of months.", - "label": "Massachusetts TAFDC earned income full disregard applicable months", - "unit": "month", - "period": "year", - "values": { - "2021-01-01": 6, - "2015-01-01": 6 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.earned_income_disregard.full_disregard.percentage": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.earned_income_disregard.full_disregard.percentage", - "description": "Massachusetts disregards this percentage of earned income from the gross income calculation for the Transitional Aid to Families with Dependent Children program.", - "label": "Massachusetts TAFDC earned income full disregard percentage", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.earned_income_disregard.full_disregard.fpg_limit": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.earned_income_disregard.full_disregard.fpg_limit", - "description": "Massachusetts disregards the full amount of earned income from the gross income calculation under the Transitional Aid to Families with Dependent Children program for applicants with income less than or equal to this percentage of the federal poverty guidelines.", - "label": "Massachusetts TAFDC full earned income disregard fpg limit", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.earned_income_disregard.percentage": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.earned_income_disregard.percentage", - "description": "Massachusetts disregards this percentage of earned income from the gross income calculation for the Transitional Aid to Families with Dependent Children program.", - "label": "Massachusetts TAFDC earned income percentage disregard", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility", - "description": null, - "label": "eligibility", - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.age_limit": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.age_limit", - "description": null, - "label": "age limit", - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.age_limit.dependent": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.age_limit.dependent", - "description": "Massachusetts provides the Transitional Aid to Families with Dependent Children program to applicants with children younger than this age.", - "label": "Massachusetts TAFDC dependent age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 18, - "2015-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.age_limit.teen_parent": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.age_limit.teen_parent", - "description": "Massachusetts provides the Transitional Aid to Families with Dependent Children program to applicants younger than this age regardless of pregnancy months.", - "label": "Massachusetts TAFDC teen parent age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 20, - "2015-01-01": 20 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.age_limit.infant": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.age_limit.infant", - "description": "Massachusetts provides the Transitional Aid to Families with Dependent Children program to applicants with infants younger or equal to this age.", - "label": "Massachusetts TAFDC infant age threshold", - "unit": "month", - "period": "year", - "values": { - "2021-01-01": 6, - "2015-01-01": 6 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.age_limit.student_dependent": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.age_limit.student_dependent", - "description": "Massachusetts provides the Transitional Aid to Families with Dependent Children program to applicants with student dependents younger than this age.", - "label": "Massachusetts TAFDC student dependent age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 19, - "2015-01-01": 19 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit", - "description": null, - "label": "income limit", - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.teen_parent": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.teen_parent", - "description": null, - "label": "teen parent", - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.teen_parent.fpg_limit": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.teen_parent.fpg_limit", - "description": "Massachusetts limits the Transitional Aid to Families with Dependent Children to teen parents with income less than or equal to this percentage of the federal poverty guidelines.", - "label": "Massachusetts TAFDC teen parent income limit", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.max_unit_size": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.max_unit_size", - "description": "Massachusetts increases the income limit for the Transitional Aid to Families with Dependent Children by a flat amount for each additional household member over this number.", - "label": "Massachusetts TAFDC maximum unit size", - "unit": "int", - "period": "year", - "values": { - "2021-01-01": 8, - "2015-01-01": 8 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base", - "description": null, - "label": "base", - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing", - "description": "Massachusetts provides the Transitional Aid to Families with Dependent Children program to applicants in public or subsidized housing with gross income less than this limit, based on family size.", - "label": "Massachusetts TAFDC public or subsidized household income limit base amount" - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[0]": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[0].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[0].amount": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 513, - "2022-01-01": 466, - "2021-01-01": 427, - "2015-01-01": 427 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[1]": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[1].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[1].amount": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 648, - "2022-01-01": 589, - "2021-01-01": 540, - "2015-01-01": 540 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[2]": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[2].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2021-01-01": 3, - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[2].amount": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 783, - "2022-01-01": 712, - "2021-01-01": 652, - "2015-01-01": 652 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[3]": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[3].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2021-01-01": 4, - "2015-01-01": 4 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[3].amount": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 912, - "2022-01-01": 829, - "2021-01-01": 760, - "2015-01-01": 760 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[4]": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[4].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2021-01-01": 5, - "2015-01-01": 5 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[4].amount": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 1045, - "2022-01-01": 950, - "2021-01-01": 871, - "2015-01-01": 871 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[5]": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[5].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2021-01-01": 6, - "2015-01-01": 6 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[5].amount": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 1183, - "2022-01-01": 1075, - "2021-01-01": 986, - "2015-01-01": 986 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[6]": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[6].threshold": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[6].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2021-01-01": 7, - "2015-01-01": 7 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[6].amount": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[6].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 1316, - "2022-01-01": 1196, - "2021-01-01": 1097, - "2015-01-01": 1097 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[7]": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[7].threshold": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[7].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2021-01-01": 8, - "2015-01-01": 8 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[7].amount": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[7].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 1448, - "2022-01-01": 1316, - "2021-01-01": 1207, - "2015-01-01": 1207 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[8]": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[8].threshold": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[8].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2021-01-01": 9, - "2015-01-01": 9 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[8].amount": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[8].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 1580, - "2022-01-01": 1436, - "2021-01-01": 1317, - "2015-01-01": 1317 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[9]": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[9].threshold": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[9].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2021-01-01": 10, - "2015-01-01": 10 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[9].amount": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.public_housing[9].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 1714, - "2022-01-01": 1558, - "2021-01-01": 1428, - "2015-01-01": 1428 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing", - "description": "Massachusetts provides the Transitional Aid to Families with Dependent Children program to applicants in private housing with gross income less than this limit, based on family size.", - "label": "Massachusetts TAFDC private household income limit base amount" - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[0]": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[0].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[0].amount": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 553, - "2022-01-01": 506, - "2021-01-01": 467, - "2015-01-01": 467 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[1]": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[1].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[1].amount": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 688, - "2022-01-01": 629, - "2021-01-01": 580, - "2015-01-01": 580 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[2]": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[2].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2021-01-01": 3, - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[2].amount": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 823, - "2022-01-01": 753, - "2021-01-01": 692, - "2015-01-01": 692 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[3]": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[3].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2021-01-01": 4, - "2015-01-01": 4 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[3].amount": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 952, - "2022-01-01": 869, - "2021-01-01": 800, - "2015-01-01": 800 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[4]": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[4].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2021-01-01": 5, - "2015-01-01": 5 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[4].amount": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 1085, - "2022-01-01": 990, - "2021-01-01": 911, - "2015-01-01": 911 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[5]": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[5].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2021-01-01": 6, - "2015-01-01": 6 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[5].amount": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 1223, - "2022-01-01": 1115, - "2021-01-01": 1026, - "2015-01-01": 1026 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[6]": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[6].threshold": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[6].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2021-01-01": 7, - "2015-01-01": 7 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[6].amount": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[6].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 1356, - "2022-01-01": 1236, - "2021-01-01": 1137, - "2015-01-01": 1137 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[7]": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[7].threshold": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[7].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2021-01-01": 8, - "2015-01-01": 8 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[7].amount": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[7].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 1488, - "2022-01-01": 1356, - "2021-01-01": 1247, - "2015-01-01": 1247 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[8]": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[8].threshold": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[8].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2021-01-01": 9, - "2015-01-01": 9 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[8].amount": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[8].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 1620, - "2022-01-01": 1476, - "2021-01-01": 1357, - "2015-01-01": 1357 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[9]": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[9].threshold": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[9].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2021-01-01": 10, - "2015-01-01": 10 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[9].amount": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.base.private_housing[9].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 1754, - "2022-01-01": 1598, - "2021-01-01": 1468, - "2015-01-01": 1468 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.additional_person": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.income_limit.additional_person", - "description": "Massachusetts increases the eligibility limit for the Transitional Aid to Families with Dependent Children by this amount for each additional household member.", - "label": "Massachusetts TAFDC additional person eligibility limit increases", - "unit": "currency-USD", - "period": "month", - "values": { - "2023-01-01": 139, - "2022-01-01": 126, - "2021-01-01": 116, - "2015-01-01": 116 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.pregnancy_month": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.eligibility.pregnancy_month", - "description": "Massachusetts provides the Transitional Aid to Families with Dependent Children program to pregnant applicants that are at least in this month of pregnancy.", - "label": "Massachusetts TAFDC pregnancy month", - "unit": "month", - "period": "year", - "values": { - "2021-01-01": 5, - "2015-01-01": 5 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.tafdc.clothing_allowance": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.tafdc.clothing_allowance", - "description": "Massachusetts provides this clothing allowance for each child in the household under the Transitional Aid to Families with Dependent Children program.", - "label": "Massachusetts TAFDC clothing allowance", - "unit": "currency-USD", - "period": "year", - "values": { - "2023-01-01": 500, - "2022-01-01": 450, - "2015-01-01": 450 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.deductions": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.deductions", - "description": null, - "label": "deductions", - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.deductions.work_related_expenses": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.deductions.work_related_expenses", - "description": null, - "label": "work related expenses", - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.deductions.work_related_expenses.amount": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.deductions.work_related_expenses.amount", - "description": "Massachusetts deducts this amount of work-related expenses from the gross earned income under the Transitional Cash Assistance Program.", - "label": "Massachusetts TCAP work-related expense deduction amount", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-01-01": 200, - "2015-01-01": 200 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.deductions.child_support_received": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.deductions.child_support_received", - "description": "Massachusetts deducts up to this amount of child support received from the unearned income for the Transitional Cash Assistance Program.", - "label": "Massachusetts TCAP child support payments deduction", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-01-01": 50, - "2015-01-01": 50 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.deductions.dependent_care_expenses": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.deductions.dependent_care_expenses", - "description": null, - "label": "dependent care expenses", - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.younger": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.younger", - "description": "Massachusetts deducts this amount of dependent care expenses from the unearned income for the Transitional Cash Assistance Program for parents of younger children, based on weekly hours worked.", - "label": "Massachusetts TCAP dependent care deduction younger amount" - }, - "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.younger[0]": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.younger[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.younger[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.younger[0].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.younger[0].amount": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.younger[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 50, - "2015-01-01": 50 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.younger[1]": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.younger[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.younger[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.younger[1].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2023-01-01": 11, - "2015-01-01": 11 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.younger[1].amount": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.younger[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 100, - "2015-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.younger[2]": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.younger[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.younger[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.younger[2].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2023-01-01": 21, - "2015-01-01": 21 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.younger[2].amount": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.younger[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 150, - "2015-01-01": 150 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.younger[3]": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.younger[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.younger[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.younger[3].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2023-01-01": 31, - "2015-01-01": 31 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.younger[3].amount": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.younger[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 200, - "2015-01-01": 200 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.older": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.older", - "description": "Massachusetts deducts this amount of dependent care expenses from the unearned income for the Transitional Cash Assistance Program for parents of older children, based on weekly hours worked.", - "label": "Massachusetts TCAP dependent care deduction older amount" - }, - "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.older[0]": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.older[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.older[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.older[0].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.older[0].amount": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.older[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 44, - "2015-01-01": 44 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.older[1]": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.older[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.older[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.older[1].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2023-01-01": 11, - "2015-01-01": 11 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.older[1].amount": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.older[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 88, - "2015-01-01": 88 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.older[2]": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.older[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.older[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.older[2].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2023-01-01": 21, - "2015-01-01": 21 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.older[2].amount": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.older[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 132, - "2015-01-01": 132 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.older[3]": { - "type": "parameterNode", - "parameter": "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.older[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.older[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.older[3].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "2023-01-01": 31, - "2015-01-01": 31 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.older[3].amount": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.amount.older[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 175, - "2015-01-01": 175 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.young_child_age_threshold": { - "type": "parameter", - "parameter": "gov.states.ma.dta.tcap.deductions.dependent_care_expenses.young_child_age_threshold", - "description": "Massachusetts provides a lower dependent care expense deduction for parents of children younger than this age under the Transitional Cash Assistance Program.", - "label": "Massachusetts TCAP dependent care deduction young child age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax": { - "type": "parameterNode", - "parameter": "gov.states.ma.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.states.ma.tax.income": { - "type": "parameterNode", - "parameter": "gov.states.ma.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.exempt_status": { - "type": "parameterNode", - "parameter": "gov.states.ma.tax.income.exempt_status", - "description": null, - "label": "exempt status", - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.exempt_status.limit": { - "type": "parameterNode", - "parameter": "gov.states.ma.tax.income.exempt_status.limit", - "description": null, - "label": "limit", - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.exempt_status.limit.base": { - "type": "parameterNode", - "parameter": "gov.states.ma.tax.income.exempt_status.limit.base", - "description": "AGI limit to be exempt from state income tax. Joint or head-of-household filers may add personal and dependent exemptions to this amount.", - "label": "AGI addition to limit to be exempt from Massachusetts income tax.", - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.exempt_status.limit.base.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.exempt_status.limit.base.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 8000, - "2020-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.exempt_status.limit.base.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.exempt_status.limit.base.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 8000, - "2020-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.exempt_status.limit.base.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.exempt_status.limit.base.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2020-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.exempt_status.limit.base.JOINT": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.exempt_status.limit.base.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 7600, - "2020-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.exempt_status.limit.base.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.exempt_status.limit.base.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 7600, - "2020-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.exempt_status.limit.personal_exemption_added": { - "type": "parameterNode", - "parameter": "gov.states.ma.tax.income.exempt_status.limit.personal_exemption_added", - "description": "Whether a filer can add personal exemptions to determine the AGI limit to be exempt from Massachusetts income tax.", - "label": "Massachusetts income tax exemption limit includes personal exemptions", - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.exempt_status.limit.personal_exemption_added.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.exempt_status.limit.personal_exemption_added.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2020-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.exempt_status.limit.personal_exemption_added.JOINT": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.exempt_status.limit.personal_exemption_added.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2020-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.exempt_status.limit.personal_exemption_added.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.exempt_status.limit.personal_exemption_added.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2020-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.exempt_status.limit.personal_exemption_added.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.exempt_status.limit.personal_exemption_added.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2020-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.exempt_status.limit.personal_exemption_added.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.exempt_status.limit.personal_exemption_added.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2020-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.credits": { - "type": "parameterNode", - "parameter": "gov.states.ma.tax.income.credits", - "description": null, - "label": "credits", - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.credits.eitc": { - "type": "parameterNode", - "parameter": "gov.states.ma.tax.income.credits.eitc", - "description": null, - "label": "Earned Income Tax Credit", - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.credits.eitc.match": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.credits.eitc.match", - "description": "Massachusetts matches this fraction of the federal earned income credit.", - "label": "Massachusetts EITC match", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.4, - "2001-01-01": 0.3 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.credits.refundable": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.credits.refundable", - "description": "Massachusetts allows these refundable tax credits.", - "label": "Massachusetts refundable tax credits", - "unit": "list", - "period": null, - "values": { - "2020-01-01": [ - "ma_eitc", - "ma_child_and_family_credit_or_dependent_care_credit", - "ma_senior_circuit_breaker", - "ma_covid_19_essential_employee_premium_pay_program" - ], - "2015-01-01": [ - "ma_eitc", - "ma_child_and_family_credit_or_dependent_care_credit", - "ma_senior_circuit_breaker", - "ma_covid_19_essential_employee_premium_pay_program" - ] - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.credits.limited_income_credit": { - "type": "parameterNode", - "parameter": "gov.states.ma.tax.income.credits.limited_income_credit", - "description": null, - "label": "limited income credit", - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.credits.limited_income_credit.percent": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.credits.limited_income_credit.percent", - "description": "Massachusetts limited income tax credit percentage.", - "label": "Massachusetts limited income tax credit percentage", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.credits.limited_income_credit.income_limit": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.credits.limited_income_credit.income_limit", - "description": "Maximum income for the Massachusetts Limited Income Credit, as a percentage of the AGI exempt limit.", - "label": "Massachusetts limited income tax credit income limit", - "unit": "/1", - "period": "year", - "values": { - "2001-01-01": 1.75 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.credits.dependent_care": { - "type": "parameterNode", - "parameter": "gov.states.ma.tax.income.credits.dependent_care", - "description": null, - "label": "dependent care", - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.credits.dependent_care.in_effect": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.credits.dependent_care.in_effect", - "description": "Massachusetts provides the greater of the Dependent Tax Credit and the Dependent Care Tax Credit if this is true.", - "label": "Massachusetts Dependent Care Tax Credit in effect", - "unit": "bool", - "period": "year", - "values": { - "2023-01-01": false, - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.credits.dependent_care.dependent_cap": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.credits.dependent_care.dependent_cap", - "description": "Massachusetts dependent care credit maximum number of qualifying individuals.", - "label": "Massachusetts dependent care credit dependent cap", - "unit": "person", - "period": null, - "values": { - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.credits.dependent_care.amount": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.credits.dependent_care.amount", - "description": "Massachusetts dependent care credit amount per dependent", - "label": "Massachusetts dependent care credit", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 240, - "2015-01-01": 240 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.credits.non_refundable": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.credits.non_refundable", - "description": "Massachusetts allows these non-refundable tax credits.", - "label": "Massachusetts non-refundable tax credits", - "unit": "list", - "period": null, - "values": { - "2020-01-01": ["ma_limited_income_tax_credit"], - "2015-01-01": ["ma_limited_income_tax_credit"] - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.credits.covid_19_essential_employee_premium_pay_program": { - "type": "parameterNode", - "parameter": "gov.states.ma.tax.income.credits.covid_19_essential_employee_premium_pay_program", - "description": null, - "label": "covid 19 essential employee premium pay program", - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.credits.covid_19_essential_employee_premium_pay_program.disqualifying_programs": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.credits.covid_19_essential_employee_premium_pay_program.disqualifying_programs", - "description": "Disqualifying programs for Massachusetts COVID-19 Essential Employee Premium Pay Program.", - "label": "Massachusetts COVID-19 Essential Employee Premium Pay Program disqualifying programs", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": [ - "unemployment_compensation", - "claimed_ma_covid_19_essential_employee_premium_pay_program_2020" - ], - "2020-01-01": ["unemployment_compensation"], - "2015-01-01": ["unemployment_compensation"] - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.credits.covid_19_essential_employee_premium_pay_program.min_earnings": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.credits.covid_19_essential_employee_premium_pay_program.min_earnings", - "description": "Minimum earned income to qualify for Massachusetts COVID-19 Essential Employee Premium Pay Program.", - "label": "Massachusetts COVID-19 Essential Employee Premium Pay Program minimum earnings", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 13500, - "2020-01-01": 12750, - "2015-01-01": 12750 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.credits.covid_19_essential_employee_premium_pay_program.amount": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.credits.covid_19_essential_employee_premium_pay_program.amount", - "description": "Amount of Massachusetts COVID-19 Essential Employee Premium Pay Program.", - "label": "Massachusetts COVID-19 Essential Employee Premium Pay Program amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2022-01-01": 0, - "2020-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.credits.covid_19_essential_employee_premium_pay_program.max_poverty_ratio": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.credits.covid_19_essential_employee_premium_pay_program.max_poverty_ratio", - "description": "Maximum poverty ratio to qualify for Massachusetts COVID-19 Essential Employee Premium Pay Program.", - "label": "Massachusetts COVID-19 Essential Employee Premium Pay Program maximum poverty ratio", - "unit": "/1", - "period": "year", - "values": { - "2020-01-01": 3, - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.credits.child_and_family": { - "type": "parameterNode", - "parameter": "gov.states.ma.tax.income.credits.child_and_family", - "description": null, - "label": "child and family", - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.credits.child_and_family.elderly_age_limit": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.credits.child_and_family.elderly_age_limit", - "description": "Age at which elderly dependents qualify for the Massachusetts child and family tax credit.", - "label": "Massachusetts child and family tax credit elderly age limit", - "unit": "years", - "period": "year", - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.credits.child_and_family.dependent_cap": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.credits.child_and_family.dependent_cap", - "description": "Massachusetts limits its child and family tax credit to this number of dependents.", - "label": "Massachusetts child and family tax credit dependent cap", - "unit": "people", - "period": "year", - "values": { - "2023-01-01": "Infinity", - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.credits.child_and_family.amount": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.credits.child_and_family.amount", - "description": "Massachusetts provides this amount for each dependent in its child and family tax credit.", - "label": "Massachusetts child and family tax credit amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2024-01-01": 440, - "2023-01-01": 310, - "2021-01-01": 180, - "2015-01-01": 180 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.credits.child_and_family.child_age_limit": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.credits.child_and_family.child_age_limit", - "description": "Massachusetts limits the child and family tax credit to children younger than this age.", - "label": "Massachusetts child and family tax credit child age limit", - "unit": "year", - "period": "year", - "values": { - "2023-01-01": 13, - "2021-01-01": 12, - "2015-01-01": 12 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.credits.senior_circuit_breaker": { - "type": "parameterNode", - "parameter": "gov.states.ma.tax.income.credits.senior_circuit_breaker", - "description": null, - "label": "senior circuit breaker", - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.credits.senior_circuit_breaker.amount": { - "type": "parameterNode", - "parameter": "gov.states.ma.tax.income.credits.senior_circuit_breaker.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.credits.senior_circuit_breaker.amount.min_real_estate_tax": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.credits.senior_circuit_breaker.amount.min_real_estate_tax", - "description": "Real estate taxes (or equivalent rents) over this percentage of income (for the MA SCB) increase the Massachusetts Senior Circuit Breaker credit.", - "label": "Massachusetts Senior Circuit Breaker real estate tax threshold", - "unit": "/1", - "period": "year", - "values": { - "2001-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.credits.senior_circuit_breaker.amount.rent_tax_share": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.credits.senior_circuit_breaker.amount.rent_tax_share", - "description": "Percentage of rent which is regarded as 'real estate tax payment' for the Massachusetts Senior Circuit Breaker.", - "label": "Massachusetts Senior Circuit Breaker rent tax share", - "unit": "/1", - "period": "year", - "values": { - "2001-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.credits.senior_circuit_breaker.amount.max": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.credits.senior_circuit_breaker.amount.max", - "description": "Maximum payment under the Massachusetts Senior Circuit Breaker credit.", - "label": "Massachusetts Senior Circuit Breaker maximum payment", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3400, - "2034-01-01": 3330, - "2033-01-01": 3270, - "2032-01-01": 3210, - "2031-01-01": 3140, - "2030-01-01": 3080, - "2029-01-01": 3020, - "2028-01-01": 2960, - "2027-01-01": 2900, - "2026-01-01": 2830, - "2025-01-01": 2790, - "2024-01-01": 2730, - "2023-01-01": 2590, - "2022-01-01": 1200, - "2021-01-01": 1170, - "2001-01-01": 750 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.credits.senior_circuit_breaker.income": { - "type": "parameterNode", - "parameter": "gov.states.ma.tax.income.credits.senior_circuit_breaker.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.credits.senior_circuit_breaker.income.disallowed_deductions": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.credits.senior_circuit_breaker.income.disallowed_deductions", - "description": "Income sources re-added to total income for the Massachusetts Senior Circuit Breaker credit.", - "label": "Massachusetts Senior Circuit Breaker income disallowed deductions", - "unit": "list", - "period": null, - "values": { - "2001-01-01": [ - "social_security", - "tax_exempt_unemployment_compensation", - "tax_exempt_pension_income", - "tax_exempt_interest_income", - "snap", - "ssi", - "ma_state_supplement", - "tanf", - "wic" - ] - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.credits.senior_circuit_breaker.eligibility": { - "type": "parameterNode", - "parameter": "gov.states.ma.tax.income.credits.senior_circuit_breaker.eligibility", - "description": null, - "label": "eligibility", - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.credits.senior_circuit_breaker.eligibility.max_property_value": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.credits.senior_circuit_breaker.eligibility.max_property_value", - "description": "Maximum assessed property value for the Massachusetts Senior Circuit Breaker credit.", - "label": "Massachusetts Senior Circuit Breaker maximum property value", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1459000, - "2034-01-01": 1431000, - "2033-01-01": 1403000, - "2032-01-01": 1376000, - "2031-01-01": 1350000, - "2030-01-01": 1323000, - "2029-01-01": 1298000, - "2028-01-01": 1272000, - "2027-01-01": 1246000, - "2026-01-01": 1216000, - "2025-01-01": 1198000, - "2024-01-01": 1172000, - "2023-01-01": 1025000, - "2022-01-01": 912000, - "2021-01-01": 884000, - "2001-01-01": 600000 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.credits.senior_circuit_breaker.eligibility.min_age": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.credits.senior_circuit_breaker.eligibility.min_age", - "description": "Minimum age to qualify for the Massachusetts Senior Circuit Breaker credit.", - "label": "Massachusetts Senior Circuit Breaker minimum age", - "unit": "year", - "period": "year", - "values": { - "2001-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.credits.senior_circuit_breaker.eligibility.max_income": { - "type": "parameterNode", - "parameter": "gov.states.ma.tax.income.credits.senior_circuit_breaker.eligibility.max_income", - "description": "Massachusetts limits the Senior Circuit Breaker credit to filers with qualifying income below this value.", - "label": "Massachusetts Senior Circuit Breaker maximum income", - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.credits.senior_circuit_breaker.eligibility.max_income.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.credits.senior_circuit_breaker.eligibility.max_income.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 89000, - "2034-01-01": 87000, - "2033-01-01": 86000, - "2032-01-01": 84000, - "2031-01-01": 82000, - "2030-01-01": 81000, - "2029-01-01": 79000, - "2028-01-01": 78000, - "2027-01-01": 76000, - "2026-01-01": 74000, - "2025-01-01": 73000, - "2024-01-01": 72000, - "2023-01-01": 69000, - "2022-01-01": 64000, - "2021-01-01": 62000, - "2001-01-01": 40000 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.credits.senior_circuit_breaker.eligibility.max_income.JOINT": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.credits.senior_circuit_breaker.eligibility.max_income.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 135000, - "2034-01-01": 133000, - "2033-01-01": 130000, - "2032-01-01": 127000, - "2031-01-01": 125000, - "2030-01-01": 123000, - "2029-01-01": 120000, - "2028-01-01": 118000, - "2027-01-01": 115000, - "2026-01-01": 113000, - "2025-01-01": 111000, - "2024-01-01": 109000, - "2023-01-01": 103000, - "2022-01-01": 96000, - "2021-01-01": 93000, - "2001-01-01": 60000 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.credits.senior_circuit_breaker.eligibility.max_income.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.credits.senior_circuit_breaker.eligibility.max_income.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 113000, - "2034-01-01": 111000, - "2033-01-01": 108000, - "2032-01-01": 106000, - "2031-01-01": 104000, - "2030-01-01": 102000, - "2029-01-01": 100000, - "2028-01-01": 98000, - "2027-01-01": 96000, - "2026-01-01": 94000, - "2025-01-01": 93000, - "2024-01-01": 91000, - "2023-01-01": 86000, - "2022-01-01": 80000, - "2021-01-01": 78000, - "2001-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.credits.senior_circuit_breaker.eligibility.max_income.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.credits.senior_circuit_breaker.eligibility.max_income.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 89000, - "2034-01-01": 87000, - "2033-01-01": 86000, - "2032-01-01": 84000, - "2031-01-01": 82000, - "2030-01-01": 81000, - "2029-01-01": 79000, - "2028-01-01": 78000, - "2027-01-01": 76000, - "2026-01-01": 74000, - "2025-01-01": 73000, - "2024-01-01": 72000, - "2023-01-01": 69000, - "2022-01-01": 64000, - "2021-01-01": 62000, - "2001-01-01": 40000 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.credits.senior_circuit_breaker.eligibility.max_income.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.credits.senior_circuit_breaker.eligibility.max_income.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 89000, - "2034-01-01": 87000, - "2033-01-01": 86000, - "2032-01-01": 84000, - "2031-01-01": 82000, - "2030-01-01": 81000, - "2029-01-01": 79000, - "2028-01-01": 78000, - "2027-01-01": 76000, - "2026-01-01": 74000, - "2025-01-01": 73000, - "2024-01-01": 72000, - "2023-01-01": 69000, - "2022-01-01": 64000, - "2021-01-01": 62000, - "2001-01-01": 40000 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.exemptions": { - "type": "parameterNode", - "parameter": "gov.states.ma.tax.income.exemptions", - "description": null, - "label": "exemptions", - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.exemptions.dependent": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.exemptions.dependent", - "description": "State income tax exemption per dependent.", - "label": "Massachusetts income tax dependent exemption", - "unit": "currency-USD", - "period": "year", - "values": { - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.exemptions.interest": { - "type": "parameterNode", - "parameter": "gov.states.ma.tax.income.exemptions.interest", - "description": null, - "label": "interest", - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.exemptions.interest.in_effect": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.exemptions.interest.in_effect", - "description": "Massachusetts exempts interest from savings in Massachusetts if this is true.", - "label": "Massachusetts interest exemption in effect", - "unit": "bool", - "period": "year", - "values": { - "2024-01-01": false, - "2002-01-01": true - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.exemptions.interest.amount": { - "type": "parameterNode", - "parameter": "gov.states.ma.tax.income.exemptions.interest.amount", - "description": "Exemption for interest from banks with a location in Massachusetts.", - "label": "Massachusetts interest exemption", - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.exemptions.interest.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.exemptions.interest.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2002-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.exemptions.interest.amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.exemptions.interest.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2002-01-01": 200 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.exemptions.interest.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.exemptions.interest.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2002-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.exemptions.interest.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.exemptions.interest.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2002-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.exemptions.interest.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.exemptions.interest.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2002-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.exemptions.personal": { - "type": "parameterNode", - "parameter": "gov.states.ma.tax.income.exemptions.personal", - "description": null, - "label": "Massachusetts income tax personal exemption", - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.exemptions.personal.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.exemptions.personal.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2015-01-01": 4400, - "2002-01-01": 3300 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.exemptions.personal.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.exemptions.personal.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2015-01-01": 4400, - "2002-01-01": 3300 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.exemptions.personal.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.exemptions.personal.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2015-01-01": 4400, - "2002-01-01": 3300 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.exemptions.personal.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.exemptions.personal.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2015-01-01": 6800, - "2002-01-01": 5100 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.exemptions.personal.JOINT": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.exemptions.personal.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2015-01-01": 8800, - "2002-01-01": 6600 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.exemptions.aged": { - "type": "parameterNode", - "parameter": "gov.states.ma.tax.income.exemptions.aged", - "description": null, - "label": "aged", - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.exemptions.aged.age": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.exemptions.aged.age", - "description": "Age threshold to be eligible for a Massachusetts income tax aged exemption", - "label": "Massachusetts income tax aged exemption age threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.exemptions.aged.amount": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.exemptions.aged.amount", - "description": "Massachusetts income tax exemption per aged head or spouse.", - "label": "Massachusetts income tax aged exemption", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 700, - "2015-01-01": 700 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.exemptions.blind": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.exemptions.blind", - "description": "Massachusetts income tax exemption per blind head or spouse.", - "label": "Massachusetts income tax blind exemption", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 2200, - "2015-01-01": 2200 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.capital_gains": { - "type": "parameterNode", - "parameter": "gov.states.ma.tax.income.capital_gains", - "description": null, - "label": "capital gains", - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.capital_gains.deductible_against_interest_dividends": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.capital_gains.deductible_against_interest_dividends", - "description": "Maximum capital losses deductible against interest or dividends.", - "label": "MA income tax max capital gains deductible against interest or dividends", - "unit": "currency-USD", - "period": "year", - "values": { - "2020-01-01": 2000, - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.capital_gains.long_term_collectibles_deduction": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.capital_gains.long_term_collectibles_deduction", - "description": "Percent of long-term capital gains on collectibles that is deductible from Part A (interest, dividends and short-term capital gains) gross income, after loss deductions.", - "label": "MA Long-term capital gains on collectibles deduction rate", - "unit": "/1", - "period": null, - "values": { - "2001-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.rates": { - "type": "parameterNode", - "parameter": "gov.states.ma.tax.income.rates", - "description": null, - "label": "rates", - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.rates.part_c": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.rates.part_c", - "description": "The tax rate on long-term capital gains.", - "label": "Massachusetts long-term capital gains rate", - "unit": "/1", - "period": "year", - "values": { - "2020-01-01": 0.05, - "2019-01-01": 0.0505, - "2016-01-01": 0.051, - "2015-01-01": 0.0515, - "2002-01-01": 0.053 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.rates.part_a": { - "type": "parameterNode", - "parameter": "gov.states.ma.tax.income.rates.part_a", - "description": null, - "label": "part a", - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.rates.part_a.capital_gains": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.rates.part_a.capital_gains", - "description": "Massachusetts taxes Part A short-term capital gains at this rate.", - "label": "Massachusetts short-term capital gains tax rate", - "unit": "/1", - "period": "year", - "values": { - "2023-01-01": 0.085, - "2002-01-01": 0.12 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.rates.part_a.dividends": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.rates.part_a.dividends", - "description": "The tax rate on Part A dividend income.", - "label": "Massachusetts dividend tax rate", - "unit": "/1", - "period": "year", - "values": { - "2020-01-01": 0.05, - "2019-01-01": 0.0505, - "2016-01-01": 0.051, - "2015-01-01": 0.0515, - "2002-01-01": 0.053 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.rates.part_b": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.rates.part_b", - "description": "The tax rate on all taxable income that is not dividends or capital gains.", - "label": "Massachusetts main income tax rate", - "unit": "/1", - "period": "year", - "values": { - "2020-01-01": 0.05, - "2019-01-01": 0.0505, - "2016-01-01": 0.051, - "2015-01-01": 0.0515, - "2002-01-01": 0.053 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.rates.additional": { - "type": "parameterNode", - "parameter": "gov.states.ma.tax.income.rates.additional", - "description": "Massachusetts levies an additional tax on taxable income.", - "label": "Massachusetts additional income tax" - }, - "gov.states.ma.tax.income.rates.additional[0]": { - "type": "parameterNode", - "parameter": "gov.states.ma.tax.income.rates.additional[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ma.tax.income.rates.additional[0].rate": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.rates.additional[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.rates.additional[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.rates.additional[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.rates.additional[1]": { - "type": "parameterNode", - "parameter": "gov.states.ma.tax.income.rates.additional[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ma.tax.income.rates.additional[1].rate": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.rates.additional[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.04, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.rates.additional[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.rates.additional[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 1312200, - "2034-01-01": 1286800, - "2033-01-01": 1261700, - "2032-01-01": 1237250, - "2031-01-01": 1213400, - "2030-01-01": 1189850, - "2029-01-01": 1166650, - "2028-01-01": 1143750, - "2027-01-01": 1120550, - "2026-01-01": 1093600, - "2025-01-01": 1077150, - "2024-01-01": 1053750, - "2023-01-01": 1000000, - "2015-01-01": 1000000 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.ald": { - "type": "parameterNode", - "parameter": "gov.states.ma.tax.income.ald", - "description": null, - "label": "Above-the-line deductions", - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.ald.disallowed": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.ald.disallowed", - "description": "Above-the-line deductions disallowed in Massachusetts income tax.", - "label": "Massachusetts above-the-line deductions disallowed", - "unit": "list", - "period": "year", - "values": { - "2026-01-01": [ - "loss_ald", - "traditional_ira_contributions", - "early_withdrawal_penalty", - "self_employment_tax_ald" - ], - "2018-01-01": [ - "loss_ald", - "traditional_ira_contributions", - "early_withdrawal_penalty", - "self_employment_tax_ald", - "alimony_income" - ], - "2001-01-01": [ - "loss_ald", - "traditional_ira_contributions", - "early_withdrawal_penalty", - "self_employment_tax_ald" - ] - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.deductions": { - "type": "parameterNode", - "parameter": "gov.states.ma.tax.income.deductions", - "description": null, - "label": "deductions", - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.deductions.rent": { - "type": "parameterNode", - "parameter": "gov.states.ma.tax.income.deductions.rent", - "description": null, - "label": "rent", - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.deductions.rent.share": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.deductions.rent.share", - "description": "Share of rent that can be deducted from income for Massachusetts income tax.", - "label": "Rent share for state income tax deduction", - "unit": "/1", - "period": "year", - "values": { - "2011-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.deductions.rent.cap": { - "type": "parameterNode", - "parameter": "gov.states.ma.tax.income.deductions.rent.cap", - "description": "Massachusetts caps the rental deduction at this amount, based on the filing status.", - "label": "Massachusetts rental deduction cap.", - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.deductions.rent.cap.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.deductions.rent.cap.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2023-01-01": 4000, - "2011-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.deductions.rent.cap.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.deductions.rent.cap.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2023-01-01": 4000, - "2011-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.deductions.rent.cap.JOINT": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.deductions.rent.cap.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2023-01-01": 4000, - "2011-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.deductions.rent.cap.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.deductions.rent.cap.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2023-01-01": 4000, - "2011-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.deductions.rent.cap.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.deductions.rent.cap.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2023-01-01": 2000, - "2011-01-01": 1500 - }, - "economy": true, - "household": true - }, - "gov.states.ma.tax.income.deductions.public_retirement_contributions": { - "type": "parameter", - "parameter": "gov.states.ma.tax.income.deductions.public_retirement_contributions", - "description": "Maximum pension contributions deductible per person for Massachusetts state income tax.", - "label": "Massachusetts income tax pension contributions maximum deduction", - "unit": "currency-USD", - "period": "year", - "values": { - "2002-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dot": { - "type": "parameterNode", - "parameter": "gov.states.ma.dot", - "description": null, - "label": "Massachusetts Department of Transportation (MassDoT)", - "economy": true, - "household": true - }, - "gov.states.ma.dot.mbta": { - "type": "parameterNode", - "parameter": "gov.states.ma.dot.mbta", - "description": null, - "label": "Massachusetts Bay Transportation Authority (MBTA)", - "economy": true, - "household": true - }, - "gov.states.ma.dot.mbta.senior_charlie_card": { - "type": "parameterNode", - "parameter": "gov.states.ma.dot.mbta.senior_charlie_card", - "description": null, - "label": "senior charlie card", - "economy": true, - "household": true - }, - "gov.states.ma.dot.mbta.senior_charlie_card.age_threshold": { - "type": "parameter", - "parameter": "gov.states.ma.dot.mbta.senior_charlie_card.age_threshold", - "description": "Massachusetts Bay Transportation Authority (MBTA) provides the Senior Charlie Card program to seniors older or of this age.", - "label": "Massachusetts Bay Transportation Authority (MBTA) reduced fare program senior charlie card age threshold", - "unit": "year", - "period": "year", - "values": { - "2024-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dot.mbta.income_eligible_reduced_fares": { - "type": "parameterNode", - "parameter": "gov.states.ma.dot.mbta.income_eligible_reduced_fares", - "description": null, - "label": "income eligible reduced fares", - "economy": true, - "household": true - }, - "gov.states.ma.dot.mbta.income_eligible_reduced_fares.applicable_programs": { - "type": "parameter", - "parameter": "gov.states.ma.dot.mbta.income_eligible_reduced_fares.applicable_programs", - "description": "Massachusetts Bay Transportation Authority (MBTA) provides the income-eligible reduced fare program to applicants who are enrolled in at least one of the following programs.", - "label": "Massachusetts Bay Transportation Authority (MBTA) reduced fare program categorical eligibility applicable programs", - "unit": "list", - "period": "year", - "values": { - "2024-01-01": ["ma_eaedc", "ma_tafdc", "snap", "medicaid"], - "2015-01-01": ["ma_eaedc", "ma_tafdc", "snap", "medicaid"] - }, - "economy": true, - "household": true - }, - "gov.states.ma.dot.mbta.income_eligible_reduced_fares.age_threshold": { - "type": "parameterNode", - "parameter": "gov.states.ma.dot.mbta.income_eligible_reduced_fares.age_threshold", - "description": "Massachusetts Bay Transportation Authority (MBTA) provides the income-eligible reduced fare program to applicants who are within these age brackets.", - "label": "Massachusetts Bay Transportation Authority (MBTA) reduced fare program categorical eligibility age threshold" - }, - "gov.states.ma.dot.mbta.income_eligible_reduced_fares.age_threshold[0]": { - "type": "parameterNode", - "parameter": "gov.states.ma.dot.mbta.income_eligible_reduced_fares.age_threshold[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ma.dot.mbta.income_eligible_reduced_fares.age_threshold[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ma.dot.mbta.income_eligible_reduced_fares.age_threshold[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2024-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dot.mbta.income_eligible_reduced_fares.age_threshold[0].amount": { - "type": "parameter", - "parameter": "gov.states.ma.dot.mbta.income_eligible_reduced_fares.age_threshold[0].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2024-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.ma.dot.mbta.income_eligible_reduced_fares.age_threshold[1]": { - "type": "parameterNode", - "parameter": "gov.states.ma.dot.mbta.income_eligible_reduced_fares.age_threshold[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ma.dot.mbta.income_eligible_reduced_fares.age_threshold[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ma.dot.mbta.income_eligible_reduced_fares.age_threshold[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2024-01-01": 18, - "2015-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dot.mbta.income_eligible_reduced_fares.age_threshold[1].amount": { - "type": "parameter", - "parameter": "gov.states.ma.dot.mbta.income_eligible_reduced_fares.age_threshold[1].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2024-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.states.ma.dot.mbta.income_eligible_reduced_fares.age_threshold[2]": { - "type": "parameterNode", - "parameter": "gov.states.ma.dot.mbta.income_eligible_reduced_fares.age_threshold[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ma.dot.mbta.income_eligible_reduced_fares.age_threshold[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ma.dot.mbta.income_eligible_reduced_fares.age_threshold[2].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2024-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.ma.dot.mbta.income_eligible_reduced_fares.age_threshold[2].amount": { - "type": "parameter", - "parameter": "gov.states.ma.dot.mbta.income_eligible_reduced_fares.age_threshold[2].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2024-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer": { - "type": "parameterNode", - "parameter": "gov.states.ma.doer", - "description": null, - "label": "Massachusetts Department of Energy Resources", - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap": { - "type": "parameterNode", - "parameter": "gov.states.ma.doer.liheap", - "description": null, - "label": "Low Income Home Energy Assistance Program", - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.hecs": { - "type": "parameterNode", - "parameter": "gov.states.ma.doer.liheap.hecs", - "description": null, - "label": "High Energy Cost Supplement (HECS)", - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.hecs.amount": { - "type": "parameterNode", - "parameter": "gov.states.ma.doer.liheap.hecs.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.hecs.amount.non_subsidized": { - "type": "parameterNode", - "parameter": "gov.states.ma.doer.liheap.hecs.amount.non_subsidized", - "description": "Massachusetts provides the following High Energy Cost Supplement payment amount for homeowners and non-subsidized housing applicants based on benefit level under the Low Income Home Energy Assistance Program.", - "label": "Massachusetts LIHEAP High Energy Cost Supplement payment for homeowners and non-subsidized housing applicants", - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.hecs.amount.non_subsidized.0": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.hecs.amount.non_subsidized.0", - "description": null, - "label": "0", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.hecs.amount.non_subsidized.1": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.hecs.amount.non_subsidized.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2022-10-01": 200, - "2021-10-01": 250, - "2015-01-01": 250 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.hecs.amount.non_subsidized.2": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.hecs.amount.non_subsidized.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2022-10-01": 180, - "2021-10-01": 230, - "2015-01-01": 230 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.hecs.amount.non_subsidized.3": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.hecs.amount.non_subsidized.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2022-10-01": 160, - "2021-10-01": 210, - "2015-01-01": 210 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.hecs.amount.non_subsidized.4": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.hecs.amount.non_subsidized.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2022-10-01": 140, - "2021-10-01": 190, - "2015-01-01": 190 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.hecs.amount.non_subsidized.5": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.hecs.amount.non_subsidized.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2022-10-01": 140, - "2021-10-01": 190, - "2015-01-01": 190 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.hecs.amount.non_subsidized.6": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.hecs.amount.non_subsidized.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2022-10-01": 120, - "2021-10-01": 170, - "2015-01-01": 170 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.hecs.amount.subsidized": { - "type": "parameterNode", - "parameter": "gov.states.ma.doer.liheap.hecs.amount.subsidized", - "description": "Massachusetts provides the following High Energy Cost Supplement payment for subsidized housing applicants based on benefit level under the Low Income Home Energy Assistance Program.", - "label": "Massachusetts LIHEAP High Energy Cost Supplement payment for subsidized housing applicants", - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.hecs.amount.subsidized.0": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.hecs.amount.subsidized.0", - "description": null, - "label": "0", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.hecs.amount.subsidized.1": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.hecs.amount.subsidized.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2022-10-01": 200, - "2021-10-01": 250, - "2015-01-01": 250 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.hecs.amount.subsidized.2": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.hecs.amount.subsidized.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2022-10-01": 180, - "2021-10-01": 230, - "2015-01-01": 230 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.hecs.amount.subsidized.3": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.hecs.amount.subsidized.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2022-10-01": 160, - "2021-10-01": 210, - "2015-01-01": 210 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.hecs.amount.subsidized.4": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.hecs.amount.subsidized.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2022-10-01": 140, - "2021-10-01": 190, - "2015-01-01": 190 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.hecs.amount.subsidized.5": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.hecs.amount.subsidized.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2022-10-01": 140, - "2021-10-01": 190, - "2015-01-01": 190 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.hecs.amount.subsidized.6": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.hecs.amount.subsidized.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2022-10-01": 120, - "2021-10-01": 170, - "2015-01-01": 170 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.hecs.eligibility": { - "type": "parameterNode", - "parameter": "gov.states.ma.doer.liheap.hecs.eligibility", - "description": null, - "label": "eligibility", - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.hecs.eligibility.prior_year_cost_threshold": { - "type": "parameterNode", - "parameter": "gov.states.ma.doer.liheap.hecs.eligibility.prior_year_cost_threshold", - "description": "Massachusetts limits High Energy Cost Supplement payments to applicants whose prior-year heating costs, by type, exceed these amounts under the Low Income Home Energy Assistance Program.", - "label": "Massachusetts LIHEAP HECS payment threshold", - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.hecs.eligibility.prior_year_cost_threshold.HEATING_OIL_AND_PROPANE": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.hecs.eligibility.prior_year_cost_threshold.HEATING_OIL_AND_PROPANE", - "description": null, - "label": "HEATING OIL AND PROPANE", - "unit": null, - "period": null, - "values": { - "2024-10-01": 1865, - "2023-10-01": 2217, - "2022-10-01": 1856, - "2021-10-01": 1279, - "2015-01-01": 1279 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.hecs.eligibility.prior_year_cost_threshold.NATURAL_GAS": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.hecs.eligibility.prior_year_cost_threshold.NATURAL_GAS", - "description": null, - "label": "NATURAL GAS", - "unit": null, - "period": null, - "values": { - "2024-10-01": 1144, - "2023-10-01": 1366, - "2022-10-01": 1190, - "2021-10-01": 974, - "2015-01-01": 974 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.hecs.eligibility.prior_year_cost_threshold.OTHER": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.hecs.eligibility.prior_year_cost_threshold.OTHER", - "description": null, - "label": "OTHER", - "unit": null, - "period": null, - "values": { - "2024-10-01": 1501, - "2023-10-01": 1840, - "2022-10-01": 1635, - "2021-10-01": 1058, - "2015-01-01": 1058 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.hecs.eligibility.prior_year_cost_threshold.KEROSENE": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.hecs.eligibility.prior_year_cost_threshold.KEROSENE", - "description": null, - "label": "KEROSENE", - "unit": null, - "period": null, - "values": { - "2024-10-01": 1631, - "2023-10-01": 1974, - "2022-10-01": 1487, - "2021-10-01": 1076, - "2015-01-01": 1076 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.hecs.eligibility.prior_year_cost_threshold.ELECTRICITY": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.hecs.eligibility.prior_year_cost_threshold.ELECTRICITY", - "description": null, - "label": "ELECTRICITY", - "unit": null, - "period": null, - "values": { - "2024-10-01": 1927, - "2023-10-01": 2007, - "2022-10-01": 1709, - "2021-10-01": 1592, - "2015-01-01": 1592 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.hecs.eligibility.prior_year_cost_threshold.NONE": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.hecs.eligibility.prior_year_cost_threshold.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard": { - "type": "parameterNode", - "parameter": "gov.states.ma.doer.liheap.standard", - "description": null, - "label": "standard", - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount": { - "type": "parameterNode", - "parameter": "gov.states.ma.doer.liheap.standard.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.non_subsidized": { - "type": "parameterNode", - "parameter": "gov.states.ma.doer.liheap.standard.amount.non_subsidized", - "description": "Massachusetts provides the following Low Income Home Energy Assistance Program payment amount for homeowners and non-subsidized housing applicants based on benefit level and utility category.", - "label": "Massachusetts LIHEAP homeowners and non subsidized housing payment amount", - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.non_subsidized.0": { - "type": "parameterNode", - "parameter": "gov.states.ma.doer.liheap.standard.amount.non_subsidized.0", - "description": null, - "label": "0", - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.non_subsidized.0.DELIVERABLE_FUEL": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.standard.amount.non_subsidized.0.DELIVERABLE_FUEL", - "description": null, - "label": "DELIVERABLE FUEL", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.non_subsidized.0.UTILITY_AND_HEAT_IN_RENT": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.standard.amount.non_subsidized.0.UTILITY_AND_HEAT_IN_RENT", - "description": null, - "label": "UTILITY AND HEAT IN RENT", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.non_subsidized.0.NONE": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.standard.amount.non_subsidized.0.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.non_subsidized.1": { - "type": "parameterNode", - "parameter": "gov.states.ma.doer.liheap.standard.amount.non_subsidized.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.non_subsidized.1.DELIVERABLE_FUEL": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.standard.amount.non_subsidized.1.DELIVERABLE_FUEL", - "description": null, - "label": "DELIVERABLE FUEL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 1500, - "2023-10-01": 1950, - "2022-10-01": 1600, - "2021-10-01": 2100, - "2015-01-01": 2100 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.non_subsidized.1.UTILITY_AND_HEAT_IN_RENT": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.standard.amount.non_subsidized.1.UTILITY_AND_HEAT_IN_RENT", - "description": null, - "label": "UTILITY AND HEAT IN RENT", - "unit": null, - "period": null, - "values": { - "2024-10-01": 1025, - "2023-10-01": 1450, - "2022-10-01": 1100, - "2021-10-01": 1525, - "2015-01-01": 1525 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.non_subsidized.1.NONE": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.standard.amount.non_subsidized.1.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.non_subsidized.2": { - "type": "parameterNode", - "parameter": "gov.states.ma.doer.liheap.standard.amount.non_subsidized.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.non_subsidized.2.DELIVERABLE_FUEL": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.standard.amount.non_subsidized.2.DELIVERABLE_FUEL", - "description": null, - "label": "DELIVERABLE FUEL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 1320, - "2023-10-01": 1716, - "2022-10-01": 1408, - "2021-10-01": 1902, - "2015-01-01": 1902 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.non_subsidized.2.UTILITY_AND_HEAT_IN_RENT": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.standard.amount.non_subsidized.2.UTILITY_AND_HEAT_IN_RENT", - "description": null, - "label": "UTILITY AND HEAT IN RENT", - "unit": null, - "period": null, - "values": { - "2024-10-01": 902, - "2023-10-01": 1276, - "2022-10-01": 968, - "2021-10-01": 1342, - "2015-01-01": 1342 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.non_subsidized.2.NONE": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.standard.amount.non_subsidized.2.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.non_subsidized.3": { - "type": "parameterNode", - "parameter": "gov.states.ma.doer.liheap.standard.amount.non_subsidized.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.non_subsidized.3.DELIVERABLE_FUEL": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.standard.amount.non_subsidized.3.DELIVERABLE_FUEL", - "description": null, - "label": "DELIVERABLE FUEL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 1162, - "2023-10-01": 1510, - "2022-10-01": 1239, - "2021-10-01": 1728, - "2015-01-01": 1728 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.non_subsidized.3.UTILITY_AND_HEAT_IN_RENT": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.standard.amount.non_subsidized.3.UTILITY_AND_HEAT_IN_RENT", - "description": null, - "label": "UTILITY AND HEAT IN RENT", - "unit": null, - "period": null, - "values": { - "2024-10-01": 794, - "2023-10-01": 1123, - "2022-10-01": 852, - "2021-10-01": 1181, - "2015-01-01": 1181 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.non_subsidized.3.NONE": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.standard.amount.non_subsidized.3.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.non_subsidized.4": { - "type": "parameterNode", - "parameter": "gov.states.ma.doer.liheap.standard.amount.non_subsidized.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.non_subsidized.4.DELIVERABLE_FUEL": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.standard.amount.non_subsidized.4.DELIVERABLE_FUEL", - "description": null, - "label": "DELIVERABLE FUEL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 1022, - "2023-10-01": 1329, - "2022-10-01": 1090, - "2021-10-01": 1574, - "2015-01-01": 1574 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.non_subsidized.4.UTILITY_AND_HEAT_IN_RENT": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.standard.amount.non_subsidized.4.UTILITY_AND_HEAT_IN_RENT", - "description": null, - "label": "UTILITY AND HEAT IN RENT", - "unit": null, - "period": null, - "values": { - "2024-10-01": 699, - "2023-10-01": 988, - "2022-10-01": 750, - "2021-10-01": 1039, - "2015-01-01": 1039 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.non_subsidized.4.NONE": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.standard.amount.non_subsidized.4.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.non_subsidized.5": { - "type": "parameterNode", - "parameter": "gov.states.ma.doer.liheap.standard.amount.non_subsidized.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.non_subsidized.5.DELIVERABLE_FUEL": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.standard.amount.non_subsidized.5.DELIVERABLE_FUEL", - "description": null, - "label": "DELIVERABLE FUEL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 1022, - "2023-10-01": 1329, - "2022-10-01": 1090, - "2021-10-01": 1574, - "2015-01-01": 1574 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.non_subsidized.5.UTILITY_AND_HEAT_IN_RENT": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.standard.amount.non_subsidized.5.UTILITY_AND_HEAT_IN_RENT", - "description": null, - "label": "UTILITY AND HEAT IN RENT", - "unit": null, - "period": null, - "values": { - "2024-10-01": 699, - "2023-10-01": 988, - "2022-10-01": 750, - "2021-10-01": 1039, - "2015-01-01": 1039 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.non_subsidized.5.NONE": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.standard.amount.non_subsidized.5.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.non_subsidized.6": { - "type": "parameterNode", - "parameter": "gov.states.ma.doer.liheap.standard.amount.non_subsidized.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.non_subsidized.6.DELIVERABLE_FUEL": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.standard.amount.non_subsidized.6.DELIVERABLE_FUEL", - "description": null, - "label": "DELIVERABLE FUEL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 900, - "2023-10-01": 1169, - "2022-10-01": 960, - "2021-10-01": 1439, - "2015-01-01": 1439 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.non_subsidized.6.UTILITY_AND_HEAT_IN_RENT": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.standard.amount.non_subsidized.6.UTILITY_AND_HEAT_IN_RENT", - "description": null, - "label": "UTILITY AND HEAT IN RENT", - "unit": null, - "period": null, - "values": { - "2024-10-01": 615, - "2023-10-01": 870, - "2022-10-01": 660, - "2021-10-01": 915, - "2015-01-01": 915 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.non_subsidized.6.NONE": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.standard.amount.non_subsidized.6.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.subsidized": { - "type": "parameterNode", - "parameter": "gov.states.ma.doer.liheap.standard.amount.subsidized", - "description": "Massachusetts provides the following Low Income Home Energy Assistance Program payment amount for subsidized housing applicants based on benefit level and utility category.", - "label": "Massachusetts LIHEAP subsidized housing payment amount", - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.subsidized.0": { - "type": "parameterNode", - "parameter": "gov.states.ma.doer.liheap.standard.amount.subsidized.0", - "description": null, - "label": "0", - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.subsidized.0.DELIVERABLE_FUEL": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.standard.amount.subsidized.0.DELIVERABLE_FUEL", - "description": null, - "label": "DELIVERABLE FUEL", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.subsidized.0.UTILITY_AND_HEAT_IN_RENT": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.standard.amount.subsidized.0.UTILITY_AND_HEAT_IN_RENT", - "description": null, - "label": "UTILITY AND HEAT IN RENT", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.subsidized.0.NONE": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.standard.amount.subsidized.0.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.subsidized.1": { - "type": "parameterNode", - "parameter": "gov.states.ma.doer.liheap.standard.amount.subsidized.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.subsidized.1.DELIVERABLE_FUEL": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.standard.amount.subsidized.1.DELIVERABLE_FUEL", - "description": null, - "label": "DELIVERABLE FUEL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 1050, - "2023-10-01": 1365, - "2022-10-01": 1120, - "2021-10-01": 1605, - "2015-01-01": 1605 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.subsidized.1.UTILITY_AND_HEAT_IN_RENT": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.standard.amount.subsidized.1.UTILITY_AND_HEAT_IN_RENT", - "description": null, - "label": "UTILITY AND HEAT IN RENT", - "unit": null, - "period": null, - "values": { - "2024-10-01": 718, - "2023-10-01": 1015, - "2022-10-01": 770, - "2021-10-01": 1068, - "2015-01-01": 1068 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.subsidized.1.NONE": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.standard.amount.subsidized.1.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.subsidized.2": { - "type": "parameterNode", - "parameter": "gov.states.ma.doer.liheap.standard.amount.subsidized.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.subsidized.2.DELIVERABLE_FUEL": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.standard.amount.subsidized.2.DELIVERABLE_FUEL", - "description": null, - "label": "DELIVERABLE FUEL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 924, - "2023-10-01": 1201, - "2022-10-01": 986, - "2021-10-01": 1466, - "2015-01-01": 1466 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.subsidized.2.UTILITY_AND_HEAT_IN_RENT": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.standard.amount.subsidized.2.UTILITY_AND_HEAT_IN_RENT", - "description": null, - "label": "UTILITY AND HEAT IN RENT", - "unit": null, - "period": null, - "values": { - "2024-10-01": 631, - "2023-10-01": 893, - "2022-10-01": 678, - "2021-10-01": 939, - "2015-01-01": 939 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.subsidized.2.NONE": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.standard.amount.subsidized.2.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.subsidized.3": { - "type": "parameterNode", - "parameter": "gov.states.ma.doer.liheap.standard.amount.subsidized.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.subsidized.3.DELIVERABLE_FUEL": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.standard.amount.subsidized.3.DELIVERABLE_FUEL", - "description": null, - "label": "DELIVERABLE FUEL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 813, - "2023-10-01": 1057, - "2022-10-01": 867, - "2021-10-01": 1344, - "2015-01-01": 1344 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.subsidized.3.UTILITY_AND_HEAT_IN_RENT": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.standard.amount.subsidized.3.UTILITY_AND_HEAT_IN_RENT", - "description": null, - "label": "UTILITY AND HEAT IN RENT", - "unit": null, - "period": null, - "values": { - "2024-10-01": 556, - "2023-10-01": 786, - "2022-10-01": 596, - "2021-10-01": 827, - "2015-01-01": 827 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.subsidized.3.NONE": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.standard.amount.subsidized.3.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.subsidized.4": { - "type": "parameterNode", - "parameter": "gov.states.ma.doer.liheap.standard.amount.subsidized.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.subsidized.4.DELIVERABLE_FUEL": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.standard.amount.subsidized.4.DELIVERABLE_FUEL", - "description": null, - "label": "DELIVERABLE FUEL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 716, - "2023-10-01": 930, - "2022-10-01": 763, - "2021-10-01": 1237, - "2015-01-01": 1237 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.subsidized.4.UTILITY_AND_HEAT_IN_RENT": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.standard.amount.subsidized.4.UTILITY_AND_HEAT_IN_RENT", - "description": null, - "label": "UTILITY AND HEAT IN RENT", - "unit": null, - "period": null, - "values": { - "2024-10-01": 489, - "2023-10-01": 692, - "2022-10-01": 525, - "2021-10-01": 727, - "2015-01-01": 727 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.subsidized.4.NONE": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.standard.amount.subsidized.4.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.subsidized.5": { - "type": "parameterNode", - "parameter": "gov.states.ma.doer.liheap.standard.amount.subsidized.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.subsidized.5.DELIVERABLE_FUEL": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.standard.amount.subsidized.5.DELIVERABLE_FUEL", - "description": null, - "label": "DELIVERABLE FUEL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 716, - "2023-10-01": 930, - "2022-10-01": 763, - "2021-10-01": 1237, - "2015-01-01": 1237 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.subsidized.5.UTILITY_AND_HEAT_IN_RENT": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.standard.amount.subsidized.5.UTILITY_AND_HEAT_IN_RENT", - "description": null, - "label": "UTILITY AND HEAT IN RENT", - "unit": null, - "period": null, - "values": { - "2024-10-01": 489, - "2023-10-01": 692, - "2022-10-01": 525, - "2021-10-01": 727, - "2015-01-01": 727 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.subsidized.5.NONE": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.standard.amount.subsidized.5.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.subsidized.6": { - "type": "parameterNode", - "parameter": "gov.states.ma.doer.liheap.standard.amount.subsidized.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.subsidized.6.DELIVERABLE_FUEL": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.standard.amount.subsidized.6.DELIVERABLE_FUEL", - "description": null, - "label": "DELIVERABLE FUEL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 630, - "2023-10-01": 819, - "2022-10-01": 672, - "2021-10-01": 1143, - "2015-01-01": 1143 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.subsidized.6.UTILITY_AND_HEAT_IN_RENT": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.standard.amount.subsidized.6.UTILITY_AND_HEAT_IN_RENT", - "description": null, - "label": "UTILITY AND HEAT IN RENT", - "unit": null, - "period": null, - "values": { - "2024-10-01": 430, - "2023-10-01": 609, - "2022-10-01": 462, - "2021-10-01": 640, - "2015-01-01": 640 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.standard.amount.subsidized.6.NONE": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.standard.amount.subsidized.6.NONE", - "description": null, - "label": "NONE", - "unit": null, - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.benefit_level": { - "type": "parameterNode", - "parameter": "gov.states.ma.doer.liheap.benefit_level", - "description": "Massachusetts calculates benefit level by comparing household's income and federal poverty guideline ratio with these thresholds under the Low Income Home Energy Assistance Program.", - "label": "Massachusetts benefit level based on income and FPG ratio" - }, - "gov.states.ma.doer.liheap.benefit_level[0]": { - "type": "parameterNode", - "parameter": "gov.states.ma.doer.liheap.benefit_level[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ma.doer.liheap.benefit_level[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.benefit_level[0].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.benefit_level[0].amount": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.benefit_level[0].amount", - "description": null, - "label": "amount", - "unit": "int", - "period": null, - "values": { - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.benefit_level[1]": { - "type": "parameterNode", - "parameter": "gov.states.ma.doer.liheap.benefit_level[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ma.doer.liheap.benefit_level[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.benefit_level[1].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.benefit_level[1].amount": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.benefit_level[1].amount", - "description": null, - "label": "amount", - "unit": "int", - "period": null, - "values": { - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.benefit_level[2]": { - "type": "parameterNode", - "parameter": "gov.states.ma.doer.liheap.benefit_level[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ma.doer.liheap.benefit_level[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.benefit_level[2].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.25, - "2015-01-01": 1.25 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.benefit_level[2].amount": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.benefit_level[2].amount", - "description": null, - "label": "amount", - "unit": "int", - "period": null, - "values": { - "2021-01-01": 3, - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.benefit_level[3]": { - "type": "parameterNode", - "parameter": "gov.states.ma.doer.liheap.benefit_level[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ma.doer.liheap.benefit_level[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.benefit_level[3].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.5, - "2015-01-01": 1.5 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.benefit_level[3].amount": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.benefit_level[3].amount", - "description": null, - "label": "amount", - "unit": "int", - "period": null, - "values": { - "2021-01-01": 4, - "2015-01-01": 4 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.benefit_level[4]": { - "type": "parameterNode", - "parameter": "gov.states.ma.doer.liheap.benefit_level[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ma.doer.liheap.benefit_level[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.benefit_level[4].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.75, - "2015-01-01": 1.75 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.benefit_level[4].amount": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.benefit_level[4].amount", - "description": null, - "label": "amount", - "unit": "int", - "period": null, - "values": { - "2021-01-01": 5, - "2015-01-01": 5 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.benefit_level[5]": { - "type": "parameterNode", - "parameter": "gov.states.ma.doer.liheap.benefit_level[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ma.doer.liheap.benefit_level[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.benefit_level[5].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.benefit_level[5].amount": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.benefit_level[5].amount", - "description": null, - "label": "amount", - "unit": "int", - "period": null, - "values": { - "2021-01-01": 6, - "2015-01-01": 6 - }, - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.eligibility": { - "type": "parameterNode", - "parameter": "gov.states.ma.doer.liheap.eligibility", - "description": null, - "label": "eligibility", - "economy": true, - "household": true - }, - "gov.states.ma.doer.liheap.eligibility.rent_threshold_subsidized_housing": { - "type": "parameter", - "parameter": "gov.states.ma.doer.liheap.eligibility.rent_threshold_subsidized_housing", - "description": "Massachusetts limits the Low Income Home Energy Assistance Program to households with rent above this percentage of household income, if they live in subsidized housing.", - "label": "Massachusetts LIHEAP rent threshold for subsidized housing residents", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.3, - "2015-01-01": 0.3 - }, - "economy": true, - "household": true - }, - "gov.states.mi": { - "type": "parameterNode", - "parameter": "gov.states.mi", - "description": null, - "label": "Michigan", - "economy": true, - "household": true - }, - "gov.states.mi.tax": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.states.mi.tax.income": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.senior_age": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.senior_age", - "description": "Michigan defines \"Senior citizen\" as filers of this age or older.", - "label": "Michigan senior age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.credits", - "description": null, - "label": "credits", - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.eitc": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.credits.eitc", - "description": null, - "label": "Earned Income Tax Credit", - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.eitc.match": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.eitc.match", - "description": "Michigan matches this share of the federal Earned Income Tax Credit.", - "label": "Michigan EITC match", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.3, - "2012-01-01": 0.06, - "2009-01-01": 0.2, - "2008-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.refundable": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.refundable", - "description": "Michigan provides these refundable tax credits.", - "label": "Michigan refundable tax credits", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": ["mi_eitc", "mi_home_heating_credit", "mi_homestead_property_tax_credit"], - "2015-01-01": ["mi_eitc", "mi_home_heating_credit", "mi_homestead_property_tax_credit"] - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.home_heating": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.credits.home_heating", - "description": null, - "label": "home heating", - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.home_heating.alternate": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.credits.home_heating.alternate", - "description": null, - "label": "alternate", - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.home_heating.alternate.household_resources": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.credits.home_heating.alternate.household_resources", - "description": null, - "label": "household resources", - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.home_heating.alternate.household_resources.cap": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.credits.home_heating.alternate.household_resources.cap", - "description": "Michigan caps the total household resources at this amount under the alternate home heating credit, based on the number of exemptions.", - "label": "Michigan alternate home heating credit household resource cap" - }, - "gov.states.mi.tax.income.credits.home_heating.alternate.household_resources.cap[0]": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.credits.home_heating.alternate.household_resources.cap[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.mi.tax.income.credits.home_heating.alternate.household_resources.cap[0].threshold": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.home_heating.alternate.household_resources.cap[0].threshold", - "description": null, - "label": "threshold", - "unit": "people", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.home_heating.alternate.household_resources.cap[0].amount": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.home_heating.alternate.household_resources.cap[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 22553.191559036, - "2034-01-01": 22116.4694657341, - "2033-01-01": 21685.1390032137, - "2032-01-01": 21264.5918022563, - "2031-01-01": 20854.8278628619, - "2030-01-01": 20450.455554249, - "2029-01-01": 20051.4748764176, - "2028-01-01": 19657.8858293677, - "2027-01-01": 19258.9051515364, - "2026-01-01": 18795.7640674051, - "2025-01-01": 18512.7663537352, - "2024-01-01": 18111, - "2023-01-01": 17534, - "2022-01-01": 16387, - "2021-01-01": 15237, - "2015-01-01": 15237 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.home_heating.alternate.household_resources.cap[1]": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.credits.home_heating.alternate.household_resources.cap[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.mi.tax.income.credits.home_heating.alternate.household_resources.cap[1].threshold": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.home_heating.alternate.household_resources.cap[1].threshold", - "description": null, - "label": "threshold", - "unit": "people", - "period": null, - "values": { - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.home_heating.alternate.household_resources.cap[1].amount": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.home_heating.alternate.household_resources.cap[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 30348.6186011411, - "2034-01-01": 29760.9451355201, - "2033-01-01": 29180.5268978698, - "2032-01-01": 28614.6191161608, - "2031-01-01": 28063.221790393, - "2030-01-01": 27519.0796925958, - "2029-01-01": 26982.1928227692, - "2028-01-01": 26452.5611809133, - "2027-01-01": 25915.6743110868, - "2026-01-01": 25292.4502284097, - "2025-01-01": 24911.635404278, - "2024-01-01": 24371, - "2023-01-01": 23595, - "2022-01-01": 22051, - "2021-01-01": 20504, - "2015-01-01": 20504 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.home_heating.alternate.household_resources.cap[2]": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.credits.home_heating.alternate.household_resources.cap[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.mi.tax.income.credits.home_heating.alternate.household_resources.cap[2].threshold": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.home_heating.alternate.household_resources.cap[2].threshold", - "description": null, - "label": "threshold", - "unit": "people", - "period": null, - "values": { - "2021-01-01": 3, - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.home_heating.alternate.household_resources.cap[2].amount": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.home_heating.alternate.household_resources.cap[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 38150.2720226728, - "2034-01-01": 37411.526616544, - "2033-01-01": 36681.9015240712, - "2032-01-01": 35970.5170589102, - "2031-01-01": 35277.373221061, - "2030-01-01": 34593.3496968678, - "2029-01-01": 33918.4464863304, - "2028-01-01": 33252.6635894489, - "2027-01-01": 32577.7603789116, - "2026-01-01": 31794.3254358689, - "2025-01-01": 31315.6153725929, - "2024-01-01": 30636, - "2023-01-01": 29661, - "2022-01-01": 27720, - "2021-01-01": 25775, - "2015-01-01": 25775 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.home_heating.alternate.household_resources.cap[3]": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.credits.home_heating.alternate.household_resources.cap[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.mi.tax.income.credits.home_heating.alternate.household_resources.cap[3].threshold": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.home_heating.alternate.household_resources.cap[3].threshold", - "description": null, - "label": "threshold", - "unit": "people", - "period": null, - "values": { - "2021-01-01": 4, - "2015-01-01": 4 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.home_heating.alternate.household_resources.cap[3].amount": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.home_heating.alternate.household_resources.cap[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 40822.6340725701, - "2034-01-01": 40032.1407998285, - "2033-01-01": 39251.4067032936, - "2032-01-01": 38490.190959172, - "2031-01-01": 37748.4935674639, - "2030-01-01": 37016.5553519624, - "2029-01-01": 36294.3763126675, - "2028-01-01": 35581.9564495794, - "2027-01-01": 34859.7774102846, - "2026-01-01": 34021.4641741302, - "2025-01-01": 33509.2212803349, - "2024-01-01": 32782, - "2023-01-01": 31818, - "2022-01-01": 30364, - "2021-01-01": 27700, - "2015-01-01": 27700 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.home_heating.alternate.household_resources.rate": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.home_heating.alternate.household_resources.rate", - "description": "Michigan provides a credit for this fraction of reduced heating costs less reduced adjusted household resources under the alternate home heating credit.", - "label": "Michigan home heating credit alternate household resource rate", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.11, - "2015-01-01": 0.11 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.home_heating.alternate.heating_costs": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.credits.home_heating.alternate.heating_costs", - "description": null, - "label": "heating costs", - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.home_heating.alternate.heating_costs.cap": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.home_heating.alternate.heating_costs.cap", - "description": "Michigan caps the total heating costs at this amount under the alternate home heating credit computation.", - "label": "Michigan alternate home heating credit heating costs cap", - "unit": "currency_USD", - "period": "year", - "values": { - "2035-01-01": 4490.46484246501, - "2034-01-01": 4403.51106473619, - "2033-01-01": 4317.63079043611, - "2032-01-01": 4233.89752299354, - "2031-01-01": 4152.31126240848, - "2030-01-01": 4071.79850525216, - "2029-01-01": 3992.35925152459, - "2028-01-01": 3913.99350122578, - "2027-01-01": 3834.55424749821, - "2026-01-01": 3742.34030296851, - "2025-01-01": 3685.99389716576, - "2024-01-01": 3606, - "2023-01-01": 3500, - "2022-01-01": 3340, - "2021-01-01": 3047, - "2015-01-01": 3047 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.home_heating.alternate.heating_costs.rate": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.home_heating.alternate.heating_costs.rate", - "description": "Michigan provides a credit for this fraction of reduced heating costs less reduced adjusted household resources under the alternate home heating credit.", - "label": "Michigan alternate home heating credit household resource rate", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.7, - "2015-01-01": 0.7 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.home_heating.additional_exemption": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.credits.home_heating.additional_exemption", - "description": null, - "label": "additional exemption", - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.home_heating.additional_exemption.limit": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.home_heating.additional_exemption.limit", - "description": "Michigan increases the home heating credit base for each exemption over this number.", - "label": "Michigan home heating credit additional exemption limit", - "unit": "people", - "period": "year", - "values": { - "2021-01-01": 6, - "2015-01-01": 6 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.home_heating.additional_exemption.amount": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.home_heating.additional_exemption.amount", - "description": "Michigan increases the home heating base by this amount for each additional exemption.", - "label": "Michigan home heating additional base amount per additional exemption", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 259.017384146623, - "2034-01-01": 254.001747494489, - "2033-01-01": 249.048032282505, - "2032-01-01": 244.21815995082, - "2031-01-01": 239.512130499435, - "2030-01-01": 234.8680224882, - "2029-01-01": 230.285835917115, - "2028-01-01": 225.765570786179, - "2027-01-01": 221.183384215094, - "2026-01-01": 215.864332506226, - "2025-01-01": 212.614179315163, - "2024-01-01": 208, - "2023-01-01": 198, - "2022-01-01": 182, - "2021-01-01": 175, - "2015-01-01": 175 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.home_heating.standard": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.credits.home_heating.standard", - "description": null, - "label": "standard", - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.home_heating.standard.included_heating_cost_rate": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.home_heating.standard.included_heating_cost_rate", - "description": "Michigan multiplies the standard home heating credit by this fraction if rent includes heating.", - "label": "Michigan standard home heating credit rate if rent includes heating", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.home_heating.standard.base": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.credits.home_heating.standard.base", - "description": "Michigan provides this base amount of standard home heating credit, based on the number of exemptions.", - "label": "Michigan standard home heating credit base amount" - }, - "gov.states.mi.tax.income.credits.home_heating.standard.base[0]": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.credits.home_heating.standard.base[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.mi.tax.income.credits.home_heating.standard.base[0].threshold": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.home_heating.standard.base[0].threshold", - "description": null, - "label": "threshold", - "unit": "people", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.home_heating.standard.base[0].amount": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.home_heating.standard.base[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 723.505289371096, - "2034-01-01": 709.495265837971, - "2033-01-01": 695.658205558342, - "2032-01-01": 682.167071785704, - "2031-01-01": 669.021864520057, - "2030-01-01": 656.049620507905, - "2029-01-01": 643.250339749248, - "2028-01-01": 630.624022244086, - "2027-01-01": 617.82474148543, - "2026-01-01": 602.967198010178, - "2025-01-01": 593.888645106296, - "2024-01-01": 581, - "2023-01-01": 562, - "2022-01-01": 524, - "2021-01-01": 497, - "2015-01-01": 497 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.home_heating.standard.base[1]": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.credits.home_heating.standard.base[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.mi.tax.income.credits.home_heating.standard.base[1].threshold": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.home_heating.standard.base[1].threshold", - "description": null, - "label": "threshold", - "unit": "people", - "period": null, - "values": { - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.home_heating.standard.base[1].amount": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.home_heating.standard.base[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 981.277397632398, - "2034-01-01": 962.27585108489, - "2033-01-01": 943.508891531796, - "2032-01-01": 925.21110596753, - "2031-01-01": 907.382494392091, - "2030-01-01": 889.788469811065, - "2029-01-01": 872.429032224453, - "2028-01-01": 855.304181632255, - "2027-01-01": 837.944744045643, - "2026-01-01": 817.793721225509, - "2025-01-01": 805.480640867059, - "2024-01-01": 788, - "2023-01-01": 760, - "2022-01-01": 706, - "2021-01-01": 672, - "2015-01-01": 672 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.home_heating.standard.base[2]": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.credits.home_heating.standard.base[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.mi.tax.income.credits.home_heating.standard.base[2].threshold": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.home_heating.standard.base[2].threshold", - "description": null, - "label": "threshold", - "unit": "people", - "period": null, - "values": { - "2021-01-01": 3, - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.home_heating.standard.base[2].amount": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.home_heating.standard.base[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 1239.0495058937, - "2034-01-01": 1215.05643633181, - "2033-01-01": 1191.35957750525, - "2032-01-01": 1168.25514014936, - "2031-01-01": 1145.74312426412, - "2030-01-01": 1123.52731911423, - "2029-01-01": 1101.60772469966, - "2028-01-01": 1079.98434102042, - "2027-01-01": 1058.06474660586, - "2026-01-01": 1032.62024444084, - "2025-01-01": 1017.07263662782, - "2024-01-01": 995, - "2023-01-01": 958, - "2022-01-01": 888, - "2021-01-01": 846, - "2015-01-01": 846 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.home_heating.standard.base[3]": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.credits.home_heating.standard.base[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.mi.tax.income.credits.home_heating.standard.base[3].threshold": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.home_heating.standard.base[3].threshold", - "description": null, - "label": "threshold", - "unit": "people", - "period": null, - "values": { - "2021-01-01": 4, - "2015-01-01": 4 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.home_heating.standard.base[3].amount": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.home_heating.standard.base[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 1496.821614155, - "2034-01-01": 1467.83702157873, - "2033-01-01": 1439.2102634787, - "2032-01-01": 1411.29917433118, - "2031-01-01": 1384.10375413616, - "2030-01-01": 1357.26616841739, - "2029-01-01": 1330.78641717486, - "2028-01-01": 1304.66450040859, - "2027-01-01": 1278.18474916607, - "2026-01-01": 1247.44676765617, - "2025-01-01": 1228.66463238859, - "2024-01-01": 1202, - "2023-01-01": 1156, - "2022-01-01": 1069, - "2021-01-01": 1021, - "2015-01-01": 1021 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.home_heating.standard.base[4]": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.credits.home_heating.standard.base[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.mi.tax.income.credits.home_heating.standard.base[4].threshold": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.home_heating.standard.base[4].threshold", - "description": null, - "label": "threshold", - "unit": "people", - "period": null, - "values": { - "2021-01-01": 5, - "2015-01-01": 5 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.home_heating.standard.base[4].amount": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.home_heating.standard.base[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 1754.59372241631, - "2034-01-01": 1720.61760682565, - "2033-01-01": 1687.06094945216, - "2032-01-01": 1654.34320851301, - "2031-01-01": 1622.46438400819, - "2030-01-01": 1591.00501772055, - "2029-01-01": 1559.96510965007, - "2028-01-01": 1529.34465979676, - "2027-01-01": 1498.30475172628, - "2026-01-01": 1462.2732908715, - "2025-01-01": 1440.25662814935, - "2024-01-01": 1409, - "2023-01-01": 1354, - "2022-01-01": 1251, - "2021-01-01": 1196, - "2015-01-01": 1196 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.home_heating.standard.base[5]": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.credits.home_heating.standard.base[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.mi.tax.income.credits.home_heating.standard.base[5].threshold": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.home_heating.standard.base[5].threshold", - "description": null, - "label": "threshold", - "unit": "people", - "period": null, - "values": { - "2021-01-01": 6, - "2015-01-01": 6 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.home_heating.standard.base[5].amount": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.home_heating.standard.base[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 2012.36583067761, - "2034-01-01": 1973.39819207257, - "2033-01-01": 1934.91163542561, - "2032-01-01": 1897.38724269483, - "2031-01-01": 1860.82501388023, - "2030-01-01": 1824.74386702371, - "2029-01-01": 1789.14380212527, - "2028-01-01": 1754.02481918493, - "2027-01-01": 1718.4247542865, - "2026-01-01": 1677.09981408683, - "2025-01-01": 1651.84862391011, - "2024-01-01": 1616, - "2023-01-01": 1552, - "2022-01-01": 1433, - "2021-01-01": 1371, - "2015-01-01": 1371 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.home_heating.standard.reduction_rate": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.home_heating.standard.reduction_rate", - "description": "Michigan reduces the standard heating credit amount by this fraction of household resources.", - "label": "Michigan standard home heating credit reduction rate", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.035, - "2015-01-01": 0.035 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.home_heating.standard.fpg_rate": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.home_heating.standard.fpg_rate", - "description": "Michigan limits the home heating credit to filers with household resources below this fraction of the federal poverty guidelines.", - "label": "Michigan standard home heating credit federal poverty guidelines rate", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 1.1, - "2015-01-01": 1.1 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.home_heating.credit_percentage": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.home_heating.credit_percentage", - "description": "Michigan provides a credit for this fraction of the greater of the standard and alternate home heating credit.", - "label": "Michigan home heating credit percentage", - "unit": "/1", - "period": "year", - "values": { - "2023-01-01": 0.56, - "2022-01-01": 0.9, - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.homestead_property_tax": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax", - "description": null, - "label": "homestead property tax", - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.reduction": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.reduction", - "description": null, - "label": "reduction", - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.reduction.increment": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.reduction.increment", - "description": "Michigan phases its homestead property tax credit out in these increments.", - "label": "Michigan homestead property tax credit phase out increment", - "unit": "currency-USD", - "period": "year", - "values": { - "2016-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.reduction.start": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.reduction.start", - "description": "Michigan phases its homestead property tax credit out for filers with household resources above this threshold.", - "label": "Michigan homestead property tax credit reduction start", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 75500, - "2034-01-01": 74100, - "2033-01-01": 72600, - "2032-01-01": 71200, - "2031-01-01": 69800, - "2030-01-01": 68500, - "2029-01-01": 67200, - "2028-01-01": 65800, - "2027-01-01": 64500, - "2026-01-01": 62900, - "2025-01-01": 62000, - "2024-01-01": 60700, - "2023-01-01": 58300, - "2022-01-01": 54000, - "2021-01-01": 51600, - "2018-01-01": 51000, - "2016-01-01": 41000, - "2015-01-01": 41000 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.reduction.rate": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.reduction.rate", - "description": "Michigan phases its homestead property tax credit at this rate multiple for each reduction increment.", - "label": "Michigan household resources reduction rate phase out brackets", - "unit": "/1", - "period": "year", - "values": { - "2016-01-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.property_value_limit": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.property_value_limit", - "description": "Michigan limits the homestead property tax credit to filers with property value below this amount.", - "label": "Michigan homestead property tax credit property value limit", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 200100, - "2034-01-01": 196200, - "2033-01-01": 192400, - "2032-01-01": 188600, - "2031-01-01": 185000, - "2030-01-01": 181400, - "2029-01-01": 177900, - "2028-01-01": 174400, - "2027-01-01": 170800, - "2026-01-01": 166700, - "2025-01-01": 164200, - "2024-01-01": 160700, - "2023-01-01": 154400, - "2022-01-01": 143000, - "2021-01-01": 135000, - "2015-01-01": 135000 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.exemption": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.exemption", - "description": null, - "label": "exemption", - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.exemption.senior_disabled": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.exemption.senior_disabled", - "description": "Michigan reduces the total amount of household resources by this fraction for disabled or senior filers, based on household resources.", - "label": "Michigan homestead property tax credit disabled or senior exemption rate" - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.exemption.senior_disabled[0]": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.exemption.senior_disabled[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.exemption.senior_disabled[0].threshold": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.exemption.senior_disabled[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.exemption.senior_disabled[0].amount": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.exemption.senior_disabled[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.exemption.senior_disabled[1]": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.exemption.senior_disabled[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.exemption.senior_disabled[1].threshold": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.exemption.senior_disabled[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2018-01-01": 3000, - "2015-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.exemption.senior_disabled[1].amount": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.exemption.senior_disabled[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.01, - "2015-01-01": 0.01 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.exemption.senior_disabled[2]": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.exemption.senior_disabled[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.exemption.senior_disabled[2].threshold": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.exemption.senior_disabled[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2018-01-01": 4000, - "2015-01-01": 4000 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.exemption.senior_disabled[2].amount": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.exemption.senior_disabled[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.02, - "2015-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.exemption.senior_disabled[3]": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.exemption.senior_disabled[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.exemption.senior_disabled[3].threshold": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.exemption.senior_disabled[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2018-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.exemption.senior_disabled[3].amount": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.exemption.senior_disabled[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.exemption.senior_disabled[4]": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.exemption.senior_disabled[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.exemption.senior_disabled[4].threshold": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.exemption.senior_disabled[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2018-01-01": 6000, - "2015-01-01": 6000 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.exemption.senior_disabled[4].amount": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.exemption.senior_disabled[4].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 0.032, - "2015-01-01": 0.032 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.exemption.non_senior_disabled": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.exemption.non_senior_disabled", - "description": "Michigan subtracts this fraction of the household resources from the total household resources under the homestead property tax credit computation, for filers without a disabled or senior member.", - "label": "Michigan homestead property tax credit non-disabled/senior exemption rate", - "unit": "/1", - "period": "year", - "values": { - "2018-01-01": 0.032, - "2017-01-01": 0.035, - "2015-01-01": 0.035 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.rate": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.rate", - "description": null, - "label": "rate", - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior", - "description": null, - "label": "senior", - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base", - "description": "Michigan provides senior filers a maximum homestead property tax credit as this fraction of the excess of property taxes over the household resource exemption, based on household resources.", - "label": "Michigan homestead property tax credit senior credit base rate" - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[0]": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[0].threshold": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[0].amount": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[1]": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[1].threshold": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 21000, - "2015-01-01": 21000 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[1].amount": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.96, - "2015-01-01": 0.96 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[2]": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[2].threshold": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 22000, - "2015-01-01": 22000 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[2].amount": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.92, - "2015-01-01": 0.92 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[3]": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[3].threshold": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 23000, - "2015-01-01": 23000 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[3].amount": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.88, - "2015-01-01": 0.88 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[4]": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[4].threshold": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 24000, - "2015-01-01": 24000 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[4].amount": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[4].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.84, - "2015-01-01": 0.84 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[5]": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[5].threshold": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[5].amount": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[5].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.8, - "2015-01-01": 0.8 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[6]": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[6].threshold": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 26000, - "2015-01-01": 26000 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[6].amount": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[6].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.76, - "2015-01-01": 0.76 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[7]": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[7].threshold": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 27000, - "2015-01-01": 27000 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[7].amount": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[7].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.72, - "2015-01-01": 0.72 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[8]": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[8].threshold": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 28000, - "2015-01-01": 28000 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[8].amount": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[8].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.68, - "2015-01-01": 0.68 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[9]": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[9].threshold": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 29000, - "2015-01-01": 29000 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[9].amount": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[9].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.64, - "2015-01-01": 0.64 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[10]": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[10]", - "description": null, - "label": "bracket 11" - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[10].threshold": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[10].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[10].amount": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.base[10].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.6, - "2015-01-01": 0.6 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.alternate": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.rate.senior.alternate", - "description": "Michigan provides senior renters with an alternate homestead property tax credit of this fraction of total household resources subtracted from total rent payments.", - "label": "Michigan alternate property tax senior credit alternate rate", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.4, - "2015-01-01": 0.4 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.rate.non_senior_disabled": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.rate.non_senior_disabled", - "description": "Michigan provides a maximum homestead property tax credit as this fraction of the excess of property taxes over the household resource exemption, for filers without a disabled or senior member.", - "label": "Michigan homestead property tax non-disabled/senior credit rate", - "unit": "/1", - "period": "year", - "values": { - "2017-01-01": 0.6, - "2015-01-01": 0.6 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.cap": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.cap", - "description": "Michigan caps the homestead property tax credit at this amount.", - "label": "Michigan homestead property tax credit cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2200, - "2034-01-01": 2100, - "2033-01-01": 2100, - "2032-01-01": 2100, - "2031-01-01": 2000, - "2030-01-01": 2000, - "2029-01-01": 1900, - "2028-01-01": 1900, - "2027-01-01": 1900, - "2026-01-01": 1800, - "2025-01-01": 1800, - "2024-01-01": 1800, - "2023-01-01": 1700, - "2022-01-01": 1600, - "2018-01-01": 1500, - "2015-01-01": 1500 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.rent_equivalization": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.credits.homestead_property_tax.rent_equivalization", - "description": "Michigan multiplies the rent amount by this rate under the homestead property tax credit.", - "label": "Michigan homestead property tax credit rent equivalization", - "unit": "/1", - "period": "year", - "values": { - "2018-01-01": 0.23, - "2017-01-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.exemptions": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.exemptions", - "description": null, - "label": "exemptions", - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.exemptions.personal": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.exemptions.personal", - "description": "Michigan provides this exemption amount for the filer and spouse of the tax unit, each dependent, and each of the filers stillborn children.", - "label": "Michigan exemption base amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 6950, - "2034-01-01": 6850, - "2033-01-01": 6700, - "2032-01-01": 6600, - "2031-01-01": 6450, - "2030-01-01": 6300, - "2029-01-01": 6200, - "2028-01-01": 6100, - "2027-01-01": 5950, - "2026-01-01": 5800, - "2025-01-01": 5700, - "2024-01-01": 5600, - "2023-01-01": 5400, - "2022-01-01": 5000, - "2021-01-01": 4900, - "2020-01-01": 4750, - "2019-01-01": 4400, - "2018-01-01": 4050, - "2017-01-01": 4000, - "2015-01-01": 4000 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.exemptions.disabled": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.exemptions.disabled", - "description": null, - "label": "disabled", - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.exemptions.disabled.amount": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.exemptions.disabled.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.exemptions.disabled.amount.base": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.exemptions.disabled.amount.base", - "description": "Michigan provides this exemption amount for each disabled person or dependent in the household.", - "label": "Michigan disabled exemption base amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 4100, - "2034-01-01": 4000, - "2033-01-01": 3900, - "2032-01-01": 3800, - "2031-01-01": 3700, - "2030-01-01": 3700, - "2029-01-01": 3600, - "2028-01-01": 3500, - "2027-01-01": 3500, - "2026-01-01": 3400, - "2025-01-01": 3300, - "2024-01-01": 3300, - "2023-01-01": 3100, - "2022-01-01": 2900, - "2020-01-01": 2800, - "2018-01-01": 2700, - "2017-01-01": 2600, - "2015-01-01": 2600 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.exemptions.disabled.amount.veteran": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.exemptions.disabled.amount.veteran", - "description": "Michigan provides this exemption amount for each disabled veteran in the household.", - "label": "Michigan disabled veteran exemption amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2024-01-01": 500, - "2017-01-01": 400, - "2015-01-01": 400 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.exemptions.disabled.age_limit": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.exemptions.disabled.age_limit", - "description": "Michigan limits the disabled exemption to totally and permanently disabled filers under this age.", - "label": "Michigan disabled exemption age limit", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 66, - "2015-01-01": 66 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.exemptions.dependent_on_other_return": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.exemptions.dependent_on_other_return", - "description": "Michigan provides this exemption amount for a taxpayer who can be claimed as a dependent on someone else’s return.", - "label": "Michigan dependent on other return exemption amount", - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.exemptions.dependent_on_other_return.SINGLE": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.exemptions.dependent_on_other_return.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 1500, - "2015-01-01": 1500 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.exemptions.dependent_on_other_return.JOINT": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.exemptions.dependent_on_other_return.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 3000, - "2015-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.exemptions.dependent_on_other_return.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.exemptions.dependent_on_other_return.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 1500, - "2015-01-01": 1500 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.exemptions.dependent_on_other_return.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.exemptions.dependent_on_other_return.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 1500, - "2015-01-01": 1500 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.exemptions.dependent_on_other_return.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.exemptions.dependent_on_other_return.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 1500, - "2015-01-01": 1500 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.household_resources": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.household_resources", - "description": "Michigan accounts for the following income sources as the household resources.", - "label": "Michigan household resources", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": [ - "irs_employment_income", - "strike_benefits", - "dividend_income", - "interest_income", - "farm_income", - "self_employment_income", - "partnership_s_corp_income", - "rental_income", - "farm_rent_income", - "pension_income", - "retirement_benefits_from_ss_exempt_employment", - "net_capital_gains", - "alimony_income", - "gambling_winnings", - "social_security", - "ssi", - "railroad_benefits", - "child_support_received", - "unemployment_compensation", - "miscellaneous_income", - "veterans_benefits", - "workers_compensation", - "disability_benefits", - "gi_cash_assistance", - "tanf", - "general_assistance" - ], - "2015-01-01": [ - "irs_employment_income", - "strike_benefits", - "dividend_income", - "interest_income", - "farm_income", - "self_employment_income", - "partnership_s_corp_income", - "rental_income", - "farm_rent_income", - "pension_income", - "retirement_benefits_from_ss_exempt_employment", - "net_capital_gains", - "alimony_income", - "gambling_winnings", - "social_security", - "ssi", - "railroad_benefits", - "child_support_received", - "unemployment_compensation", - "miscellaneous_income", - "veterans_benefits", - "workers_compensation", - "disability_benefits", - "gi_cash_assistance", - "tanf", - "general_assistance" - ] - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.subtractions": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.subtractions", - "description": "Michigan subtracts these sources to federal adjusted gross income when computing taxable income.", - "label": "Michigan taxable income subtraction sources", - "unit": "list", - "period": "year", - "values": { - "2017-01-01": [ - "us_govt_interest", - "military_retirement_pay", - "taxable_social_security", - "military_service_income", - "section_22_income", - "mi_standard_deduction", - "mi_pension_benefit", - "mi_interest_dividends_capital_gains_deduction" - ], - "2015-01-01": [ - "us_govt_interest", - "military_retirement_pay", - "taxable_social_security", - "military_service_income", - "section_22_income", - "mi_standard_deduction", - "mi_pension_benefit", - "mi_interest_dividends_capital_gains_deduction" - ] - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.rate": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.rate", - "description": "Michigan taxes individual income at this rate.", - "label": "Michigan income tax rate", - "unit": "/1", - "period": "year", - "values": { - "2024-01-01": 0.0425, - "2023-01-01": 0.0405, - "2013-01-01": 0.0425, - "2007-10-01": 0.0435 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.additions": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.additions", - "description": "Michigan adds these sources to federal adjusted gross income when computing taxable income.", - "label": "Michigan taxable income addition sources", - "unit": "list", - "period": "year", - "values": { - "2017-01-01": ["self_employment_tax_ald"], - "2015-01-01": ["self_employment_tax_ald"] - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.deductions", - "description": null, - "label": "deductions", - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.retirement_benefits": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits", - "description": null, - "label": "retirement benefits", - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.expanded": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.expanded", - "description": null, - "label": "expanded", - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.expanded.availability": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.expanded.availability", - "description": "Michigan allows for an expanded retirement and pension benefits deduction calculation if this is true.", - "label": "Michigan expanded retirement and pension benefits deduction availability", - "unit": "bool", - "period": "year", - "values": { - "2023-01-01": true, - "2017-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.expanded.birth_year": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.expanded.birth_year", - "description": "Michigan allows for an expanded retirement and pension benefits deduction if this is true, based on their year of birth.", - "label": "Michigan expanded retirement and pension benefits birth year range" - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.expanded.birth_year[0]": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.expanded.birth_year[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.expanded.birth_year[0].threshold": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.expanded.birth_year[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.expanded.birth_year[0].amount": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.expanded.birth_year[0].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2023-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.expanded.birth_year[1]": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.expanded.birth_year[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.expanded.birth_year[1].threshold": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.expanded.birth_year[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2023-01-01": 1946, - "2015-01-01": 1946 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.expanded.birth_year[1].amount": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.expanded.birth_year[1].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2023-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.expanded.birth_year[2]": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.expanded.birth_year[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.expanded.birth_year[2].threshold": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.expanded.birth_year[2].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2025-01-01": 1967, - "2024-01-01": 1963, - "2023-01-01": 1959, - "2015-01-01": 1959 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.expanded.birth_year[2].amount": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.expanded.birth_year[2].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2023-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.expanded.rate": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.expanded.rate", - "description": "Michigan multiplies the reduced tier one deduction amount by this rate under the expanded retirement and pension benefits deduction.", - "label": "Michigan expanded retirement and pension benefits rate", - "unit": "/1", - "period": "year", - "values": { - "2026-01-01": 1, - "2025-01-01": 0.75, - "2024-01-01": 0.5, - "2023-01-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.tier_one": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.tier_one", - "description": null, - "label": "tier one", - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.tier_one.birth_year": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.tier_one.birth_year", - "description": "Michigan limits the tier one retirement and pension benefits addition to filers born before this year.", - "label": "Michigan tier one retirement and pension benefits birth year threshold", - "unit": "year", - "period": "year", - "values": { - "2017-01-01": 1946, - "2015-01-01": 1946 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.tier_one.amount": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.tier_one.amount", - "description": "Michigan provides this tier one retirement and pension benefits amount.", - "label": "Michigan tier one retirement and pension benefits amount", - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.tier_one.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.tier_one.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 79747.4676959121, - "2034-01-01": 78203.2303343609, - "2033-01-01": 76678.0576315942, - "2032-01-01": 75191.0142463967, - "2031-01-01": 73742.1001787684, - "2030-01-01": 72312.2507699246, - "2029-01-01": 70901.4660198655, - "2028-01-01": 69509.7459285909, - "2027-01-01": 68098.9611785317, - "2026-01-01": 66461.306988936, - "2025-01-01": 65460.6348237646, - "2024-01-01": 64040, - "2023-01-01": 61518, - "2022-01-01": 56961, - "2021-01-01": 54404, - "2020-01-01": 53759, - "2019-01-01": 52808, - "2018-01-01": 51570, - "2017-01-01": 50509, - "2015-01-01": 50509 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.tier_one.amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.tier_one.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 159494.935391824, - "2034-01-01": 156406.460668722, - "2033-01-01": 153356.115263188, - "2032-01-01": 150382.028492793, - "2031-01-01": 147484.200357537, - "2030-01-01": 144624.501539849, - "2029-01-01": 141802.932039731, - "2028-01-01": 139019.491857182, - "2027-01-01": 136197.922357063, - "2026-01-01": 132922.613977872, - "2025-01-01": 130921.269647529, - "2024-01-01": 128080, - "2023-01-01": 123036, - "2022-01-01": 113922, - "2021-01-01": 108808, - "2020-01-01": 107517, - "2019-01-01": 105615, - "2018-01-01": 103140, - "2017-01-01": 101019, - "2015-01-01": 101019 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.tier_one.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.tier_one.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 79747.4676959121, - "2034-01-01": 78203.2303343609, - "2033-01-01": 76678.0576315942, - "2032-01-01": 75191.0142463967, - "2031-01-01": 73742.1001787684, - "2030-01-01": 72312.2507699246, - "2029-01-01": 70901.4660198655, - "2028-01-01": 69509.7459285909, - "2027-01-01": 68098.9611785317, - "2026-01-01": 66461.306988936, - "2025-01-01": 65460.6348237646, - "2024-01-01": 64040, - "2023-01-01": 61518, - "2022-01-01": 56961, - "2021-01-01": 54404, - "2020-01-01": 53759, - "2019-01-01": 52808, - "2018-01-01": 51570, - "2017-01-01": 50509, - "2015-01-01": 50509 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.tier_one.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.tier_one.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 79747.4676959121, - "2034-01-01": 78203.2303343609, - "2033-01-01": 76678.0576315942, - "2032-01-01": 75191.0142463967, - "2031-01-01": 73742.1001787684, - "2030-01-01": 72312.2507699246, - "2029-01-01": 70901.4660198655, - "2028-01-01": 69509.7459285909, - "2027-01-01": 68098.9611785317, - "2026-01-01": 66461.306988936, - "2025-01-01": 65460.6348237646, - "2024-01-01": 64040, - "2023-01-01": 61518, - "2022-01-01": 56961, - "2021-01-01": 54404, - "2020-01-01": 53759, - "2019-01-01": 52808, - "2018-01-01": 51570, - "2017-01-01": 50509, - "2015-01-01": 50509 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.tier_one.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.tier_one.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 79747.4676959121, - "2034-01-01": 78203.2303343609, - "2033-01-01": 76678.0576315942, - "2032-01-01": 75191.0142463967, - "2031-01-01": 73742.1001787684, - "2030-01-01": 72312.2507699246, - "2029-01-01": 70901.4660198655, - "2028-01-01": 69509.7459285909, - "2027-01-01": 68098.9611785317, - "2026-01-01": 66461.306988936, - "2025-01-01": 65460.6348237646, - "2024-01-01": 64040, - "2023-01-01": 61518, - "2022-01-01": 56961, - "2021-01-01": 54404, - "2020-01-01": 53759, - "2019-01-01": 52808, - "2018-01-01": 51570, - "2017-01-01": 50509, - "2015-01-01": 50509 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three", - "description": null, - "label": "tier three", - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.ss_exempt": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.ss_exempt", - "description": null, - "label": "ss exempt", - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.ss_exempt.retired": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.ss_exempt.retired", - "description": null, - "label": "retired", - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.ss_exempt.retired.single_qualifying_amount": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.ss_exempt.retired.single_qualifying_amount", - "description": "Michigan provides this retirement and pension benefits amount to households with one qualifying senior.", - "label": "Michigan tier three retirement and pension deduction single qualifying senior amount", - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.ss_exempt.retired.single_qualifying_amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.ss_exempt.retired.single_qualifying_amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2017-01-01": 35000, - "2015-01-01": 35000 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.ss_exempt.retired.single_qualifying_amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.ss_exempt.retired.single_qualifying_amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2017-01-01": 55000, - "2015-01-01": 55000 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.ss_exempt.retired.single_qualifying_amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.ss_exempt.retired.single_qualifying_amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2017-01-01": 35000, - "2015-01-01": 35000 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.ss_exempt.retired.single_qualifying_amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.ss_exempt.retired.single_qualifying_amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2017-01-01": 35000, - "2015-01-01": 35000 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.ss_exempt.retired.single_qualifying_amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.ss_exempt.retired.single_qualifying_amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2017-01-01": 35000, - "2015-01-01": 35000 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.ss_exempt.retired.retirement_year": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.ss_exempt.retired.retirement_year", - "description": "Michigan limits the tier three pension benefit to filers, retired after this year.", - "label": "Michigan tier three retirement benefit retirement year", - "unit": "year", - "period": "year", - "values": { - "2017-01-01": 2013, - "2015-01-01": 2013 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.ss_exempt.retired.both_qualifying_amount": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.ss_exempt.retired.both_qualifying_amount", - "description": "Michigan provides this retirement and pension benefits amount to household with two qualifying seniors.", - "label": "Michigan tier three retirement and pension deduction both qualifying seniors", - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.ss_exempt.retired.both_qualifying_amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.ss_exempt.retired.both_qualifying_amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2017-01-01": 35000, - "2015-01-01": 35000 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.ss_exempt.retired.both_qualifying_amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.ss_exempt.retired.both_qualifying_amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2017-01-01": 70000, - "2015-01-01": 70000 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.ss_exempt.retired.both_qualifying_amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.ss_exempt.retired.both_qualifying_amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2017-01-01": 35000, - "2015-01-01": 35000 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.ss_exempt.retired.both_qualifying_amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.ss_exempt.retired.both_qualifying_amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2017-01-01": 35000, - "2015-01-01": 35000 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.ss_exempt.retired.both_qualifying_amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.ss_exempt.retired.both_qualifying_amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2017-01-01": 35000, - "2015-01-01": 35000 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.ss_exempt.not_retired": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.ss_exempt.not_retired", - "description": null, - "label": "not retired", - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.ss_exempt.not_retired.amount": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.ss_exempt.not_retired.amount", - "description": "Michigan provides this non-retired tier three retirement and pension benefits amount.", - "label": "Michigan non-retired tier three retirement and pension benefits deduction amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 15000, - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.age_eligibility": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.age_eligibility", - "description": "Michigan limits the tier three retirement and pension benefits to filers, based on their age.", - "label": "Michigan tier three retirement and pension benefits age range" - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.age_eligibility[0]": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.age_eligibility[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.age_eligibility[0].threshold": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.age_eligibility[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2017-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.age_eligibility[0].amount": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.age_eligibility[0].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2017-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.age_eligibility[1]": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.age_eligibility[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.age_eligibility[1].threshold": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.age_eligibility[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2017-01-01": 62, - "2015-01-01": 62 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.age_eligibility[1].amount": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.age_eligibility[1].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2017-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.age_eligibility[2]": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.age_eligibility[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.age_eligibility[2].threshold": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.age_eligibility[2].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2017-01-01": 67, - "2015-01-01": 67 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.age_eligibility[2].amount": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.retirement_benefits.tier_three.age_eligibility[2].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2017-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.standard": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.deductions.standard", - "description": null, - "label": "standard", - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.standard.tier_two": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.deductions.standard.tier_two", - "description": null, - "label": "tier two", - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.standard.tier_two.amount": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.deductions.standard.tier_two.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.standard.tier_two.amount.base": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.deductions.standard.tier_two.amount.base", - "description": "Michigan provides this tier two standard deduction base amount.", - "label": "Michigan tier two standard deduction base", - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.standard.tier_two.amount.base.SINGLE": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.standard.tier_two.amount.base.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2017-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.standard.tier_two.amount.base.JOINT": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.standard.tier_two.amount.base.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2017-01-01": 40000, - "2015-01-01": 40000 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.standard.tier_two.amount.base.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.standard.tier_two.amount.base.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2017-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.standard.tier_two.amount.base.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.standard.tier_two.amount.base.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2017-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.standard.tier_two.amount.base.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.standard.tier_two.amount.base.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2017-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.standard.tier_two.amount.increase": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.standard.tier_two.amount.increase", - "description": "Michigan provides this increased tier two standard deduction amount.", - "label": "Michigan increased tier two standard deduction amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 15000, - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.standard.tier_two.age_threshold": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.standard.tier_two.age_threshold", - "description": "Michigan limits the additional standard deduction to filers of this age or older.", - "label": "Michigan additional standard deduction age threshold", - "unit": "year", - "period": "year", - "values": { - "2017-01-01": 67, - "2015-01-01": 67 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.standard.tier_two.retirement_year": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.standard.tier_two.retirement_year", - "description": "Michigan limits the tier three pension benefit to filers who retired after this year.", - "label": "Michigan retirement benefit tier three retirement age", - "unit": "year", - "period": "year", - "values": { - "2017-01-01": 2013, - "2015-01-01": 2013 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.standard.tier_two.birth_year": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.deductions.standard.tier_two.birth_year", - "description": "Michigan provides the tier two standard deduction to filers, based on their year of birth.", - "label": "Michigan tier two standard deduction birth year range" - }, - "gov.states.mi.tax.income.deductions.standard.tier_two.birth_year[0]": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.deductions.standard.tier_two.birth_year[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.mi.tax.income.deductions.standard.tier_two.birth_year[0].threshold": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.standard.tier_two.birth_year[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2017-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.standard.tier_two.birth_year[0].amount": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.standard.tier_two.birth_year[0].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2017-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.standard.tier_two.birth_year[1]": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.deductions.standard.tier_two.birth_year[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.mi.tax.income.deductions.standard.tier_two.birth_year[1].threshold": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.standard.tier_two.birth_year[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2017-01-01": 1946, - "2015-01-01": 1946 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.standard.tier_two.birth_year[1].amount": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.standard.tier_two.birth_year[1].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2017-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.standard.tier_two.birth_year[2]": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.deductions.standard.tier_two.birth_year[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.mi.tax.income.deductions.standard.tier_two.birth_year[2].threshold": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.standard.tier_two.birth_year[2].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2017-01-01": 1953, - "2015-01-01": 1953 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.standard.tier_two.birth_year[2].amount": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.standard.tier_two.birth_year[2].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2017-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.standard.tier_three": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.deductions.standard.tier_three", - "description": null, - "label": "tier three", - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.standard.tier_three.age_threshold": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.standard.tier_three.age_threshold", - "description": "Michigan limits the tier three standard deduction to filers at or above this age threshold.", - "label": "Michigan tier three standard deduction age threshold", - "unit": "year", - "period": "year", - "values": { - "2017-01-01": 67, - "2015-01-01": 67 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.standard.tier_three.birth_year": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.deductions.standard.tier_three.birth_year", - "description": "Michigan limits the tier three standard deduction to filers, based on the birth year.", - "label": "Michigan tier three standard deduction birth year range" - }, - "gov.states.mi.tax.income.deductions.standard.tier_three.birth_year[0]": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.deductions.standard.tier_three.birth_year[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.mi.tax.income.deductions.standard.tier_three.birth_year[0].threshold": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.standard.tier_three.birth_year[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2017-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.standard.tier_three.birth_year[0].amount": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.standard.tier_three.birth_year[0].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2017-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.standard.tier_three.birth_year[1]": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.deductions.standard.tier_three.birth_year[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.mi.tax.income.deductions.standard.tier_three.birth_year[1].threshold": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.standard.tier_three.birth_year[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2017-01-01": 1953, - "2015-01-01": 1953 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.standard.tier_three.birth_year[1].amount": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.standard.tier_three.birth_year[1].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2017-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.standard.tier_three.birth_year[2]": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.deductions.standard.tier_three.birth_year[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.mi.tax.income.deductions.standard.tier_three.birth_year[2].threshold": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.standard.tier_three.birth_year[2].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2024-01-01": 1958, - "2023-01-01": 1957, - "2022-01-01": 1956, - "2021-01-01": 1955, - "2020-01-01": 1954, - "2015-01-01": 1954 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.standard.tier_three.birth_year[2].amount": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.standard.tier_three.birth_year[2].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2017-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.standard.tier_three.amount": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.deductions.standard.tier_three.amount", - "description": "Michigan caps the tier three standard deduction at this amount.", - "label": "Michigan tier three standard deduction amount", - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.standard.tier_three.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.standard.tier_three.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2017-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.standard.tier_three.amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.standard.tier_three.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2017-01-01": 40000, - "2015-01-01": 40000 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.standard.tier_three.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.standard.tier_three.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2017-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.standard.tier_three.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.standard.tier_three.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2017-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.standard.tier_three.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.standard.tier_three.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2017-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.interest_dividends_capital_gains": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.deductions.interest_dividends_capital_gains", - "description": null, - "label": "interest dividends capital gains", - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.interest_dividends_capital_gains.birth_year": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.interest_dividends_capital_gains.birth_year", - "description": "Michigan provides a interest, dividends, and capital gains deduction to filers born prior to this year.", - "label": "Michigan interest, dividends, and capital gains deduction birth year", - "unit": "year", - "period": "year", - "values": { - "2017-01-01": 1946, - "2015-01-01": 1946 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.interest_dividends_capital_gains.income_types": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.interest_dividends_capital_gains.income_types", - "description": "Michigan provides a interest, dividends, and capital gains deduction of this amount, based on filing status.", - "label": "Michigan interest, dividends, and capital gains deduction income types", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": ["taxable_interest_income", "dividend_income", "capital_gains"], - "2015-01-01": ["taxable_interest_income", "dividend_income", "capital_gains"] - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.interest_dividends_capital_gains.amount": { - "type": "parameterNode", - "parameter": "gov.states.mi.tax.income.deductions.interest_dividends_capital_gains.amount", - "description": "Michigan provides this interest, dividends, and capital gains deduction amount, based on filing status.", - "label": "Michigan interest, dividends, and capital gains deduction amount", - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.interest_dividends_capital_gains.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.interest_dividends_capital_gains.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 17775.067987062, - "2034-01-01": 17430.8699218093, - "2033-01-01": 17090.9212153869, - "2032-01-01": 16759.471226625, - "2031-01-01": 16436.5199555237, - "2030-01-01": 16117.8180432527, - "2029-01-01": 15803.365489812, - "2028-01-01": 15493.1622952015, - "2027-01-01": 15178.7097417608, - "2026-01-01": 14813.6898182397, - "2025-01-01": 14590.648055503, - "2024-01-01": 14274, - "2023-01-01": 13712, - "2022-01-01": 12697, - "2021-01-01": 12127, - "2020-01-01": 11983, - "2019-01-01": 11771, - "2018-01-01": 11495, - "2017-01-01": 11259, - "2015-01-01": 11259 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.interest_dividends_capital_gains.amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.interest_dividends_capital_gains.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 35550.135974124, - "2034-01-01": 34861.7398436186, - "2033-01-01": 34181.8424307738, - "2032-01-01": 33518.9424532501, - "2031-01-01": 32873.0399110475, - "2030-01-01": 32235.6360865054, - "2029-01-01": 31606.730979624, - "2028-01-01": 30986.3245904031, - "2027-01-01": 30357.4194835216, - "2026-01-01": 29627.3796364795, - "2025-01-01": 29181.2961110061, - "2024-01-01": 28548, - "2023-01-01": 27424, - "2022-01-01": 25394, - "2021-01-01": 24254, - "2020-01-01": 23966, - "2019-01-01": 23542, - "2018-01-01": 22991, - "2017-01-01": 22518, - "2015-01-01": 22518 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.interest_dividends_capital_gains.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.interest_dividends_capital_gains.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 17775.067987062, - "2034-01-01": 17430.8699218093, - "2033-01-01": 17090.9212153869, - "2032-01-01": 16759.471226625, - "2031-01-01": 16436.5199555237, - "2030-01-01": 16117.8180432527, - "2029-01-01": 15803.365489812, - "2028-01-01": 15493.1622952015, - "2027-01-01": 15178.7097417608, - "2026-01-01": 14813.6898182397, - "2025-01-01": 14590.648055503, - "2024-01-01": 14274, - "2023-01-01": 13712, - "2022-01-01": 12697, - "2021-01-01": 12127, - "2020-01-01": 11983, - "2019-01-01": 11771, - "2018-01-01": 11495, - "2017-01-01": 11259, - "2015-01-01": 11259 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.interest_dividends_capital_gains.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.interest_dividends_capital_gains.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 17775.067987062, - "2034-01-01": 17430.8699218093, - "2033-01-01": 17090.9212153869, - "2032-01-01": 16759.471226625, - "2031-01-01": 16436.5199555237, - "2030-01-01": 16117.8180432527, - "2029-01-01": 15803.365489812, - "2028-01-01": 15493.1622952015, - "2027-01-01": 15178.7097417608, - "2026-01-01": 14813.6898182397, - "2025-01-01": 14590.648055503, - "2024-01-01": 14274, - "2023-01-01": 13712, - "2022-01-01": 12697, - "2021-01-01": 12127, - "2020-01-01": 11983, - "2019-01-01": 11771, - "2018-01-01": 11495, - "2017-01-01": 11259, - "2015-01-01": 11259 - }, - "economy": true, - "household": true - }, - "gov.states.mi.tax.income.deductions.interest_dividends_capital_gains.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.mi.tax.income.deductions.interest_dividends_capital_gains.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 17775.067987062, - "2034-01-01": 17430.8699218093, - "2033-01-01": 17090.9212153869, - "2032-01-01": 16759.471226625, - "2031-01-01": 16436.5199555237, - "2030-01-01": 16117.8180432527, - "2029-01-01": 15803.365489812, - "2028-01-01": 15493.1622952015, - "2027-01-01": 15178.7097417608, - "2026-01-01": 14813.6898182397, - "2025-01-01": 14590.648055503, - "2024-01-01": 14274, - "2023-01-01": 13712, - "2022-01-01": 12697, - "2021-01-01": 12127, - "2020-01-01": 11983, - "2019-01-01": 11771, - "2018-01-01": 11495, - "2017-01-01": 11259, - "2015-01-01": 11259 - }, - "economy": true, - "household": true - }, - "gov.states.ok": { - "type": "parameterNode", - "parameter": "gov.states.ok", - "description": null, - "label": "Oklahoma", - "economy": true, - "household": true - }, - "gov.states.ok.tax": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.states.ok.tax.income": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.agi": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.agi", - "description": null, - "label": "agi", - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.agi.subtractions": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.agi.subtractions", - "description": null, - "label": "subtractions", - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.agi.subtractions.military_retirement": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.agi.subtractions.military_retirement", - "description": null, - "label": "military retirement", - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.agi.subtractions.military_retirement.floor": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.agi.subtractions.military_retirement.floor", - "description": "Oklahoma provides a minimum military retirement benefit subtraction for this amount, not to exceed military retirement income.", - "label": "Oklahoma military retirement benefit subtraction floor", - "unit": "currency-USD", - "period": "year", - "values": { - "2022-01-01": 0, - "2006-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.agi.subtractions.military_retirement.rate": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.agi.subtractions.military_retirement.rate", - "description": "Oklahoma excludes this percentage of military retirement benefits under the retirement benefit subtraction.", - "label": "Oklahoma military retirement exclusion rate", - "unit": "/1", - "period": "year", - "values": { - "2022-01-01": 1, - "2007-01-01": 0.75, - "2006-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.agi.subtractions.subtractions": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.agi.subtractions.subtractions", - "description": "Oklahoma applies the following subtractions to federal adjusted gross income.", - "label": "Oklahoma subtractions", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": [ - "us_govt_interest", - "taxable_social_security", - "ok_pension_subtraction", - "ok_military_retirement_exclusion" - ], - "2015-01-01": [ - "us_govt_interest", - "taxable_social_security", - "ok_pension_subtraction", - "ok_military_retirement_exclusion" - ] - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.agi.subtractions.pension_limit": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.agi.subtractions.pension_limit", - "description": "Oklahoma limit on taxable pension benefit AGI subtraction per person.", - "label": "Oklahoma limit on taxable pension benefit AGI subtraction per person", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.credits": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.credits", - "description": null, - "label": "credits", - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.credits.refundable": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.credits.refundable", - "description": "Oklahoma provides these refundable credits.", - "label": "Oklahoma refundable credits", - "unit": "list", - "period": null, - "values": { - "2022-01-01": ["ok_ptc", "ok_stc", "ok_eitc"], - "2021-01-01": ["ok_ptc", "ok_stc"], - "2015-01-01": ["ok_ptc", "ok_stc"] - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.credits.gross_income_sources": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.credits.gross_income_sources", - "description": "Oklahoma counts these sources when determining gross income for its sales tax credit.", - "label": "Oklahoma sales tax credit gross income sources", - "unit": null, - "period": null, - "values": { - "2021-01-01": [ - "irs_employment_income", - "self_employment_income", - "partnership_s_corp_income", - "farm_income", - "farm_rent_income", - "short_term_capital_gains", - "long_term_capital_gains", - "interest_income", - "rental_income", - "dividend_income", - "pension_income", - "debt_relief", - "unemployment_compensation", - "workers_compensation", - "social_security", - "alimony_income", - "child_support_received", - "illicit_income", - "miscellaneous_income", - "ssi", - "general_assistance", - "eitc" - ], - "2015-01-01": [ - "irs_employment_income", - "self_employment_income", - "partnership_s_corp_income", - "farm_income", - "farm_rent_income", - "short_term_capital_gains", - "long_term_capital_gains", - "interest_income", - "rental_income", - "dividend_income", - "pension_income", - "debt_relief", - "unemployment_compensation", - "workers_compensation", - "social_security", - "alimony_income", - "child_support_received", - "illicit_income", - "miscellaneous_income", - "ssi", - "general_assistance", - "eitc" - ] - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.credits.property_tax": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.credits.property_tax", - "description": null, - "label": "property tax", - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.credits.property_tax.income_fraction": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.credits.property_tax.income_fraction", - "description": "Oklahoma provides a property tax credit of this percent of gross income.", - "label": "Oklahoma property tax credit gross income fraction", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.01, - "2015-01-01": 0.01 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.credits.property_tax.income_limit": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.credits.property_tax.income_limit", - "description": "Oklahoma limits its property tax credit to filers with gross income below this amount.", - "label": "Oklahoma property tax credit gross income limit", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 12000, - "2015-01-01": 12000 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.credits.property_tax.maximum_credit": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.credits.property_tax.maximum_credit", - "description": "Oklahoma provides a property tax credit up to this amount.", - "label": "Oklahoma property tax credit maximum amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 200, - "2015-01-01": 200 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.credits.property_tax.age_minimum": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.credits.property_tax.age_minimum", - "description": "Oklahoma limits its property tax credit to filers this age or older.", - "label": "Oklahoma property tax credit minimum age", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.credits.child": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.credits.child", - "description": null, - "label": "Child Care / Child Tax Credit", - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.credits.child.cdcc_fraction": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.credits.child.cdcc_fraction", - "description": "Oklahoma matches this percent of the federal Child and Dependent Care Credit.", - "label": "Oklahoma CDCC match", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.credits.child.agi_limit": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.credits.child.agi_limit", - "description": "Oklahoma limits its Child Care/Child Tax Credit to filers with federal AGI below this amount.", - "label": "Oklahoma Child Care/Child Tax Credit income limit", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.credits.child.ctc_fraction": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.credits.child.ctc_fraction", - "description": "Oklahoma matches this percent of the federal Child Tax Credit.", - "label": "Oklahoma CTC match", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.credits.earned_income": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.credits.earned_income", - "description": null, - "label": "Earned Income Tax Credit", - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.credits.earned_income.eitc_fraction": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.credits.earned_income.eitc_fraction", - "description": "Oklahoma matches this share of the federal Earned Income Tax Credit.", - "label": "Oklahoma EITC match", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.credits.sales_tax": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.credits.sales_tax", - "description": null, - "label": "sales tax", - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.credits.sales_tax.amount": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.credits.sales_tax.amount", - "description": "Oklahoma provides a sales tax credit of this amount per exemption.", - "label": "Oklahoma sales tax credit amount per exemption", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 40, - "2015-01-01": 40 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.credits.sales_tax.income_limit1": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.credits.sales_tax.income_limit1", - "description": "Oklahoma applies this first gross income limit to the sales tax credit.", - "label": "Oklahoma sales tax credit gross income limit 1", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.credits.sales_tax.age_minimum": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.credits.sales_tax.age_minimum", - "description": "Oklahoma limits its sales tax credit to filers this age or above for the second income limit", - "label": "Oklahoma sales tax credit minimum age for second income limit", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.credits.sales_tax.income_limit2": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.credits.sales_tax.income_limit2", - "description": "Oklahoma applies this second gross income limit to its sales tax credit.", - "label": "Oklahoma sales tax credit gross income limit 2", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.credits.nonrefundable": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.credits.nonrefundable", - "description": "Oklahoma provides these nonrefundable credits.", - "label": "Oklahoma nonrefundable credits", - "unit": "list", - "period": null, - "values": { - "2022-01-01": ["ok_child_care_child_tax_credit"], - "2021-01-01": ["ok_child_care_child_tax_credit", "ok_eitc"], - "2015-01-01": ["ok_child_care_child_tax_credit", "ok_eitc"] - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.exemptions": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.exemptions", - "description": null, - "label": "exemptions", - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.exemptions.special_age_minimum": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.exemptions.special_age_minimum", - "description": "Oklahoma provides a special exemption for people this age or older.", - "label": "Oklahoma special exemption age minimum", - "unit": null, - "period": "year", - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.exemptions.special_agi_limit": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.exemptions.special_agi_limit", - "description": "Oklahoma provides a special exemption for those with federal AGI below this amount.", - "label": "Oklahoma special exemption federal AGI limit", - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.exemptions.special_agi_limit.JOINT": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.exemptions.special_agi_limit.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.exemptions.special_agi_limit.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.exemptions.special_agi_limit.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 19000, - "2015-01-01": 19000 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.exemptions.special_agi_limit.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.exemptions.special_agi_limit.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.exemptions.special_agi_limit.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.exemptions.special_agi_limit.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 15000, - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.exemptions.special_agi_limit.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.exemptions.special_agi_limit.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 12500, - "2015-01-01": 12500 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.exemptions.amount": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.exemptions.amount", - "description": "Oklahoma provides this exemption amount per person.", - "label": "Oklahoma per-person exemption amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.rates", - "description": null, - "label": "rates", - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.head_of_household": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.rates.head_of_household", - "description": "Oklahoma levies this income tax schedule for head-of-household filers.", - "label": "Oklahoma income tax rates for head-of-household filing units" - }, - "gov.states.ok.tax.income.rates.head_of_household[0]": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.rates.head_of_household[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ok.tax.income.rates.head_of_household[0].rate": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.head_of_household[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2026-01-01": 0, - "2022-01-01": 0.0025, - "2021-01-01": 0.005, - "2015-01-01": 0.005 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.head_of_household[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.head_of_household[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.head_of_household[1]": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.rates.head_of_household[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ok.tax.income.rates.head_of_household[1].rate": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.head_of_household[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2026-01-01": 0.025, - "2022-01-01": 0.0075, - "2021-01-01": 0.01, - "2015-01-01": 0.01 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.head_of_household[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.head_of_household[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2026-01-01": 7500, - "2021-01-01": 2000, - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.head_of_household[2]": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.rates.head_of_household[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ok.tax.income.rates.head_of_household[2].rate": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.head_of_household[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2026-01-01": 0.035, - "2022-01-01": 0.0175, - "2021-01-01": 0.02, - "2015-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.head_of_household[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.head_of_household[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2026-01-01": 9800, - "2021-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.head_of_household[3]": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.rates.head_of_household[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ok.tax.income.rates.head_of_household[3].rate": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.head_of_household[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2026-01-01": 0.045, - "2022-01-01": 0.0275, - "2021-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.head_of_household[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.head_of_household[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2026-01-01": 14400, - "2021-01-01": 7500, - "2015-01-01": 7500 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.head_of_household[4]": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.rates.head_of_household[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ok.tax.income.rates.head_of_household[4].rate": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.head_of_household[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.0375, - "2021-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.head_of_household[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.head_of_household[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2026-01-01": "Infinity", - "2021-01-01": 9800, - "2015-01-01": 9800 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.head_of_household[5]": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.rates.head_of_household[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ok.tax.income.rates.head_of_household[5].rate": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.head_of_household[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.0475, - "2021-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.head_of_household[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.head_of_household[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2026-01-01": "Infinity", - "2024-01-01": 14400, - "2021-01-01": 12200, - "2015-01-01": 12200 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.separate": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.rates.separate", - "description": "Oklahoma levies this income tax schedule for separate filers.", - "label": "Oklahoma income tax rates for separate filing units" - }, - "gov.states.ok.tax.income.rates.separate[0]": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.rates.separate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ok.tax.income.rates.separate[0].rate": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.separate[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2026-01-01": 0, - "2022-01-01": 0.0025, - "2021-01-01": 0.005, - "2015-01-01": 0.005 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.separate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.separate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.separate[1]": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.rates.separate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ok.tax.income.rates.separate[1].rate": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.separate[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2026-01-01": 0.025, - "2022-01-01": 0.0075, - "2021-01-01": 0.01, - "2015-01-01": 0.01 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.separate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.separate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2026-01-01": 3750, - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.separate[2]": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.rates.separate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ok.tax.income.rates.separate[2].rate": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.separate[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2026-01-01": 0.035, - "2022-01-01": 0.0175, - "2021-01-01": 0.02, - "2015-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.separate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.separate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2026-01-01": 4900, - "2021-01-01": 2500, - "2015-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.separate[3]": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.rates.separate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ok.tax.income.rates.separate[3].rate": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.separate[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2026-01-01": 0.045, - "2022-01-01": 0.0275, - "2021-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.separate[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.separate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2026-01-01": 7200, - "2021-01-01": 3750, - "2015-01-01": 3750 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.separate[4]": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.rates.separate[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ok.tax.income.rates.separate[4].rate": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.separate[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.0375, - "2021-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.separate[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.separate[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2026-01-01": "Infinity", - "2021-01-01": 4900, - "2015-01-01": 4900 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.separate[5]": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.rates.separate[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ok.tax.income.rates.separate[5].rate": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.separate[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.0475, - "2021-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.separate[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.separate[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2026-01-01": "Infinity", - "2021-01-01": 7200, - "2015-01-01": 7200 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.joint": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.rates.joint", - "description": "Oklahoma levies this income tax schedule for joint filers.", - "label": "Oklahoma income tax rates for joint filing units" - }, - "gov.states.ok.tax.income.rates.joint[0]": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.rates.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ok.tax.income.rates.joint[0].rate": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.joint[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2026-01-01": 0, - "2022-01-01": 0.0025, - "2021-01-01": 0.005, - "2015-01-01": 0.005 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.joint[1]": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.rates.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ok.tax.income.rates.joint[1].rate": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.joint[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2026-01-01": 0.025, - "2022-01-01": 0.0075, - "2021-01-01": 0.01, - "2015-01-01": 0.01 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2026-01-01": 7500, - "2021-01-01": 2000, - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.joint[2]": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.rates.joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ok.tax.income.rates.joint[2].rate": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.joint[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2026-01-01": 0.035, - "2022-01-01": 0.0175, - "2021-01-01": 0.02, - "2015-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.joint[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2026-01-01": 9800, - "2021-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.joint[3]": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.rates.joint[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ok.tax.income.rates.joint[3].rate": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.joint[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2026-01-01": 0.045, - "2022-01-01": 0.0275, - "2021-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.joint[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.joint[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2026-01-01": 14400, - "2021-01-01": 7500, - "2015-01-01": 7500 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.joint[4]": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.rates.joint[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ok.tax.income.rates.joint[4].rate": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.joint[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.0375, - "2021-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.joint[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.joint[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2026-01-01": "Infinity", - "2021-01-01": 9800, - "2015-01-01": 9800 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.joint[5]": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.rates.joint[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ok.tax.income.rates.joint[5].rate": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.joint[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.0475, - "2021-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.joint[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.joint[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2026-01-01": "Infinity", - "2024-01-01": 14400, - "2021-01-01": 12200, - "2015-01-01": 12200 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.single": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.rates.single", - "description": "Oklahoma levies this income tax schedule for single filers.", - "label": "Oklahoma income tax rates for single filing units" - }, - "gov.states.ok.tax.income.rates.single[0]": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.rates.single[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ok.tax.income.rates.single[0].rate": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.single[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2026-01-01": 0, - "2022-01-01": 0.0025, - "2021-01-01": 0.005, - "2015-01-01": 0.005 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.single[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.single[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.single[1]": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.rates.single[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ok.tax.income.rates.single[1].rate": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.single[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2026-01-01": 0.025, - "2022-01-01": 0.0075, - "2021-01-01": 0.01, - "2015-01-01": 0.01 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.single[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.single[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2026-01-01": 3750, - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.single[2]": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.rates.single[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ok.tax.income.rates.single[2].rate": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.single[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2026-01-01": 0.035, - "2022-01-01": 0.0175, - "2021-01-01": 0.02, - "2015-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.single[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.single[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2026-01-01": 4900, - "2021-01-01": 2500, - "2015-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.single[3]": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.rates.single[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ok.tax.income.rates.single[3].rate": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.single[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2026-01-01": 0.045, - "2022-01-01": 0.0275, - "2021-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.single[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.single[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2026-01-01": 7200, - "2021-01-01": 3750, - "2015-01-01": 3750 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.single[4]": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.rates.single[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ok.tax.income.rates.single[4].rate": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.single[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.0375, - "2021-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.single[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.single[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2026-01-01": "Infinity", - "2021-01-01": 4900, - "2015-01-01": 4900 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.single[5]": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.rates.single[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ok.tax.income.rates.single[5].rate": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.single[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.0475, - "2021-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.single[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.single[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2026-01-01": "Infinity", - "2021-01-01": 7200, - "2015-01-01": 7200 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.surviving_spouse": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.rates.surviving_spouse", - "description": "Oklahoma levies this income tax schedule for surviving spouse filers.", - "label": "Oklahoma income tax rates for surviving spouse filing units" - }, - "gov.states.ok.tax.income.rates.surviving_spouse[0]": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.rates.surviving_spouse[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ok.tax.income.rates.surviving_spouse[0].rate": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.surviving_spouse[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2026-01-01": 0, - "2022-01-01": 0.0025, - "2021-01-01": 0.005, - "2015-01-01": 0.005 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.surviving_spouse[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.surviving_spouse[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.surviving_spouse[1]": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.rates.surviving_spouse[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ok.tax.income.rates.surviving_spouse[1].rate": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.surviving_spouse[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2026-01-01": 0.025, - "2022-01-01": 0.0075, - "2021-01-01": 0.01, - "2015-01-01": 0.01 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.surviving_spouse[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.surviving_spouse[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2026-01-01": 7500, - "2021-01-01": 2000, - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.surviving_spouse[2]": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.rates.surviving_spouse[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ok.tax.income.rates.surviving_spouse[2].rate": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.surviving_spouse[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2026-01-01": 0.035, - "2022-01-01": 0.0175, - "2021-01-01": 0.02, - "2015-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.surviving_spouse[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.surviving_spouse[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2026-01-01": 9800, - "2021-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.surviving_spouse[3]": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.rates.surviving_spouse[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ok.tax.income.rates.surviving_spouse[3].rate": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.surviving_spouse[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2026-01-01": 0.045, - "2022-01-01": 0.0275, - "2021-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.surviving_spouse[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.surviving_spouse[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2026-01-01": 14400, - "2021-01-01": 7500, - "2015-01-01": 7500 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.surviving_spouse[4]": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.rates.surviving_spouse[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ok.tax.income.rates.surviving_spouse[4].rate": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.surviving_spouse[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.0375, - "2021-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.surviving_spouse[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.surviving_spouse[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2026-01-01": "Infinity", - "2021-01-01": 9800, - "2015-01-01": 9800 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.surviving_spouse[5]": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.rates.surviving_spouse[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ok.tax.income.rates.surviving_spouse[5].rate": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.surviving_spouse[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.0475, - "2021-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.rates.surviving_spouse[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.rates.surviving_spouse[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2026-01-01": "Infinity", - "2024-01-01": 14400, - "2021-01-01": 12200, - "2015-01-01": 12200 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.deductions": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.deductions", - "description": null, - "label": "deductions", - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.deductions.itemized": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.deductions.itemized", - "description": null, - "label": "itemized", - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.deductions.itemized.limit": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.deductions.itemized.limit", - "description": "Oklahoma allows this maximum amount of itemized deductions.", - "label": "Oklahoma itemized deduction limit", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 17000, - "2015-01-01": 17000 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.deductions.standard": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.deductions.standard", - "description": null, - "label": "standard", - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.deductions.standard.amount": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.income.deductions.standard.amount", - "description": "Oklahoma provides this standard deduction, depending on filing status.", - "label": "Oklahoma standard deduction amount", - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.deductions.standard.amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.deductions.standard.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 12700, - "2015-01-01": 12700 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.deductions.standard.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.deductions.standard.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 9350, - "2015-01-01": 9350 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.deductions.standard.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.deductions.standard.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 12700, - "2015-01-01": 12700 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.deductions.standard.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.deductions.standard.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 6350, - "2015-01-01": 6350 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.income.deductions.standard.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ok.tax.income.deductions.standard.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 6350, - "2015-01-01": 6350 - }, - "economy": true, - "household": true - }, - "gov.states.ok.tax.use": { - "type": "parameterNode", - "parameter": "gov.states.ok.tax.use", - "description": null, - "label": "use", - "economy": true, - "household": true - }, - "gov.states.ok.tax.use.rate": { - "type": "parameter", - "parameter": "gov.states.ok.tax.use.rate", - "description": "Oklahoma levies a use tax at this percent of federal adjusted gross income.", - "label": "Oklahoma use tax rate", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.00056, - "2015-01-01": 0.00056 - }, - "economy": true, - "household": true - }, - "gov.states.oh": { - "type": "parameterNode", - "parameter": "gov.states.oh", - "description": null, - "label": "Ohio", - "economy": true, - "household": true - }, - "gov.states.oh.tax": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.states.oh.tax.income": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits", - "description": null, - "label": "credits", - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.senior_citizen": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.senior_citizen", - "description": null, - "label": "senior citizen", - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.senior_citizen.age_threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.senior_citizen.age_threshold", - "description": "Ohio provides the Senior Citizen Credit to filers at or above this age threshold.", - "label": "Ohio Senior Citizen Credit age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.senior_citizen.amount": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.senior_citizen.amount", - "description": "Ohio provides the following senior citizen credit, based on the adjusted gross income less exemptions.", - "label": "Ohio senior citizen credit amount" - }, - "gov.states.oh.tax.income.credits.senior_citizen.amount[0]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.senior_citizen.amount[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.oh.tax.income.credits.senior_citizen.amount[0].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.senior_citizen.amount[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.senior_citizen.amount[0].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.senior_citizen.amount[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 50, - "2015-01-01": 50 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.senior_citizen.amount[1]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.senior_citizen.amount[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.oh.tax.income.credits.senior_citizen.amount[1].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.senior_citizen.amount[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.senior_citizen.amount[1].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.senior_citizen.amount[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.eitc": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.eitc", - "description": null, - "label": "Earned Income Tax Credit", - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.eitc.rate": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.eitc.rate", - "description": "Ohio matches the federal earned income tax credit at this rate.", - "label": "Ohio earned income credit rate", - "unit": "/1", - "period": "year", - "values": { - "2020-01-01": 0.3, - "2015-01-01": 0.3 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.cdcc": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.cdcc", - "description": null, - "label": "Child and Dependent Care Credit", - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.cdcc.match": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.cdcc.match", - "description": "Ohio provides this Child and Dependent Care credit rate for each AGI level.", - "label": "Ohio Child Care and Dependent Care Credit amount" - }, - "gov.states.oh.tax.income.credits.cdcc.match[0]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.cdcc.match[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.oh.tax.income.credits.cdcc.match[0].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.cdcc.match[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.cdcc.match[0].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.cdcc.match[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.cdcc.match[1]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.cdcc.match[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.oh.tax.income.credits.cdcc.match[1].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.cdcc.match[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.cdcc.match[1].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.cdcc.match[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.cdcc.match[2]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.cdcc.match[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.oh.tax.income.credits.cdcc.match[2].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.cdcc.match[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 40000, - "2015-01-01": 40000 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.cdcc.match[2].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.cdcc.match[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.non_public_tuition": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.non_public_tuition", - "description": "Ohio caps the Nonchartered, Nonpublic, School Tuition Credit at this amount, depending on federal adjusted gross income.", - "label": "Ohio Non Public School Credit amount" - }, - "gov.states.oh.tax.income.credits.non_public_tuition[0]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.non_public_tuition[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.oh.tax.income.credits.non_public_tuition[0].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.non_public_tuition[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.non_public_tuition[0].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.non_public_tuition[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 1000, - "2021-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.non_public_tuition[1]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.non_public_tuition[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.oh.tax.income.credits.non_public_tuition[1].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.non_public_tuition[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.non_public_tuition[1].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.non_public_tuition[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 1500, - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.non_public_tuition[2]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.non_public_tuition[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.oh.tax.income.credits.non_public_tuition[2].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.non_public_tuition[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": "Infinity", - "2021-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.non_public_tuition[2].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.non_public_tuition[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 1500, - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.exemption": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.exemption", - "description": null, - "label": "exemption", - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.exemption.amount": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.exemption.amount", - "description": "Ohio provides this exemption credit amount to filers, based on modified adjusted gross income.", - "label": "Ohio Exemption Credit amount" - }, - "gov.states.oh.tax.income.credits.exemption.amount[0]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.exemption.amount[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.oh.tax.income.credits.exemption.amount[0].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.exemption.amount[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.exemption.amount[0].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.exemption.amount[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 20, - "2015-01-01": 20 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.exemption.amount[1]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.exemption.amount[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.oh.tax.income.credits.exemption.amount[1].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.exemption.amount[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.exemption.amount[1].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.exemption.amount[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution", - "description": null, - "label": "lump sum distribution", - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.base_amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.base_amount", - "description": "Ohio multiplies the filer's expected remaining life in years by the following amount when calculating the lump sum distribution credit.", - "label": "Ohio lump sum distribution credit base amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 50, - "2015-01-01": 50 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.age_threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.age_threshold", - "description": "Ohio limits the lump sum distribution credit to filers of this age or older.", - "label": "Ohio Lump Sum Distribution Credit age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.income_limit": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.income_limit", - "description": "Ohio limits its lump sum distribution credit to filers with Ohio modified adjusted gross income below this amount.", - "label": "Ohio lump sum distribution credit income limit", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years", - "description": "Ohio provides the following multiples corresponding to the lump sum recipient’s age.", - "label": "Ohio lump sum distribution credit expected remaining years of life" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[0]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[0].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[0].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[1]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[1].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 45, - "2021-01-01": 31, - "2015-01-01": 31 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[1].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 37.7, - "2021-01-01": 51.2, - "2015-01-01": 51.2 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[2]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[2].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[2].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 46, - "2021-01-01": 32, - "2015-01-01": 32 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[2].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 36.8, - "2021-01-01": 50.2, - "2015-01-01": 50.2 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[3]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[3].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[3].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 47, - "2021-01-01": 33, - "2015-01-01": 33 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[3].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 35.9, - "2021-01-01": 49.3, - "2015-01-01": 49.3 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[4]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[4].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[4].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 48, - "2021-01-01": 34, - "2015-01-01": 34 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[4].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[4].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 34.9, - "2021-01-01": 48.3, - "2015-01-01": 48.3 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[5]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[5].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[5].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 49, - "2021-01-01": 35, - "2015-01-01": 35 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[5].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[5].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 34, - "2021-01-01": 47.3, - "2015-01-01": 47.3 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[6]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[6].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[6].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 50, - "2021-01-01": 36, - "2015-01-01": 36 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[6].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[6].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 33.1, - "2021-01-01": 46.4, - "2015-01-01": 46.4 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[7]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[7].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[7].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 51, - "2021-01-01": 37, - "2015-01-01": 37 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[7].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[7].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 32.2, - "2021-01-01": 45.4, - "2015-01-01": 45.4 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[8]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[8].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[8].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 52, - "2021-01-01": 38, - "2015-01-01": 38 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[8].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[8].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 31.3, - "2021-01-01": 44.4, - "2015-01-01": 44.4 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[9]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[9].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[9].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 53, - "2021-01-01": 39, - "2015-01-01": 39 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[9].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[9].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 30.4, - "2021-01-01": 43.5, - "2015-01-01": 43.5 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[10]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[10]", - "description": null, - "label": "bracket 11" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[10].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[10].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 54, - "2021-01-01": 40, - "2015-01-01": 40 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[10].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[10].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 29.5, - "2021-01-01": 42.5, - "2015-01-01": 42.5 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[11]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[11]", - "description": null, - "label": "bracket 12" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[11].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[11].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 55, - "2021-01-01": 41, - "2015-01-01": 41 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[11].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[11].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 28.6, - "2021-01-01": 41.5, - "2015-01-01": 41.5 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[12]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[12]", - "description": null, - "label": "bracket 13" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[12].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[12].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 56, - "2021-01-01": 42, - "2015-01-01": 42 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[12].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[12].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 27.7, - "2021-01-01": 40.6, - "2015-01-01": 40.6 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[13]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[13]", - "description": null, - "label": "bracket 14" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[13].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[13].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 57, - "2021-01-01": 43, - "2015-01-01": 43 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[13].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[13].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 26.8, - "2021-01-01": 39.6, - "2015-01-01": 39.6 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[14]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[14]", - "description": null, - "label": "bracket 15" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[14].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[14].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 58, - "2021-01-01": 44, - "2015-01-01": 44 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[14].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[14].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 25.9, - "2021-01-01": 38.7, - "2015-01-01": 38.7 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[15]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[15]", - "description": null, - "label": "bracket 16" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[15].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[15].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 59, - "2021-01-01": 45, - "2015-01-01": 45 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[15].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[15].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 25, - "2021-01-01": 37.7, - "2015-01-01": 37.7 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[16]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[16]", - "description": null, - "label": "bracket 17" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[16].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[16].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 60, - "2021-01-01": 46, - "2015-01-01": 46 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[16].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[16].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 24.2, - "2021-01-01": 36.8, - "2015-01-01": 36.8 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[17]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[17]", - "description": null, - "label": "bracket 18" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[17].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[17].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 61, - "2021-01-01": 47, - "2015-01-01": 47 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[17].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[17].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 23.3, - "2021-01-01": 35.9, - "2015-01-01": 35.9 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[18]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[18]", - "description": null, - "label": "bracket 19" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[18].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[18].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 62, - "2021-01-01": 48, - "2015-01-01": 48 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[18].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[18].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 22.5, - "2021-01-01": 34.9, - "2015-01-01": 34.9 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[19]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[19]", - "description": null, - "label": "bracket 20" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[19].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[19].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 63, - "2021-01-01": 49, - "2015-01-01": 49 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[19].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[19].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 21.6, - "2021-01-01": 34, - "2015-01-01": 34 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[20]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[20]", - "description": null, - "label": "bracket 21" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[20].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[20].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 64, - "2021-01-01": 50, - "2015-01-01": 50 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[20].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[20].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 20.8, - "2021-01-01": 33.1, - "2015-01-01": 33.1 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[21]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[21]", - "description": null, - "label": "bracket 22" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[21].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[21].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 65, - "2021-01-01": 51, - "2015-01-01": 51 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[21].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[21].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 20, - "2021-01-01": 32.2, - "2015-01-01": 32.2 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[22]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[22]", - "description": null, - "label": "bracket 23" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[22].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[22].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 66, - "2021-01-01": 52, - "2015-01-01": 52 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[22].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[22].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 19.2, - "2021-01-01": 31.3, - "2015-01-01": 31.3 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[23]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[23]", - "description": null, - "label": "bracket 24" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[23].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[23].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 67, - "2021-01-01": 53, - "2015-01-01": 53 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[23].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[23].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 18.4, - "2021-01-01": 30.4, - "2015-01-01": 30.4 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[24]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[24]", - "description": null, - "label": "bracket 25" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[24].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[24].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 68, - "2021-01-01": 54, - "2015-01-01": 54 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[24].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[24].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 17.6, - "2021-01-01": 29.5, - "2015-01-01": 29.5 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[25]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[25]", - "description": null, - "label": "bracket 26" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[25].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[25].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 69, - "2021-01-01": 55, - "2015-01-01": 55 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[25].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[25].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 16.8, - "2021-01-01": 28.6, - "2015-01-01": 28.6 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[26]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[26]", - "description": null, - "label": "bracket 27" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[26].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[26].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 70, - "2021-01-01": 56, - "2015-01-01": 56 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[26].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[26].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 16, - "2021-01-01": 27.7, - "2015-01-01": 27.7 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[27]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[27]", - "description": null, - "label": "bracket 28" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[27].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[27].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 71, - "2021-01-01": 57, - "2015-01-01": 57 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[27].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[27].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 15.3, - "2021-01-01": 26.8, - "2015-01-01": 26.8 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[28]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[28]", - "description": null, - "label": "bracket 29" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[28].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[28].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 72, - "2021-01-01": 58, - "2015-01-01": 58 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[28].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[28].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 14.6, - "2021-01-01": 25.9, - "2015-01-01": 25.9 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[29]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[29]", - "description": null, - "label": "bracket 30" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[29].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[29].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 73, - "2021-01-01": 59, - "2015-01-01": 59 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[29].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[29].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 13.9, - "2021-01-01": 25, - "2015-01-01": 25 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[30]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[30]", - "description": null, - "label": "bracket 31" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[30].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[30].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 74, - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[30].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[30].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 13.2, - "2021-01-01": 24.2, - "2015-01-01": 24.2 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[31]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[31]", - "description": null, - "label": "bracket 32" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[31].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[31].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 75, - "2021-01-01": 61, - "2015-01-01": 61 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[31].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[31].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 12.5, - "2021-01-01": 23.3, - "2015-01-01": 23.3 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[32]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[32]", - "description": null, - "label": "bracket 33" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[32].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[32].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 76, - "2021-01-01": 62, - "2015-01-01": 62 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[32].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[32].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 11.9, - "2021-01-01": 22.5, - "2015-01-01": 22.5 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[33]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[33]", - "description": null, - "label": "bracket 34" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[33].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[33].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 77, - "2021-01-01": 63, - "2015-01-01": 63 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[33].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[33].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 11.2, - "2021-01-01": 21.6, - "2015-01-01": 21.6 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[34]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[34]", - "description": null, - "label": "bracket 35" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[34].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[34].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 78, - "2021-01-01": 64, - "2015-01-01": 64 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[34].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[34].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 10.6, - "2021-01-01": 20.8, - "2015-01-01": 20.8 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[35]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[35]", - "description": null, - "label": "bracket 36" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[35].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[35].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 79, - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[35].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[35].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 10, - "2021-01-01": 20, - "2015-01-01": 20 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[36]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[36]", - "description": null, - "label": "bracket 37" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[36].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[36].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 80, - "2021-01-01": 66, - "2015-01-01": 66 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[36].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[36].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 9.5, - "2021-01-01": 19.2, - "2015-01-01": 19.2 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[37]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[37]", - "description": null, - "label": "bracket 38" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[37].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[37].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 81, - "2021-01-01": 67, - "2015-01-01": 67 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[37].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[37].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 8.9, - "2021-01-01": 18.4, - "2015-01-01": 18.4 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[38]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[38]", - "description": null, - "label": "bracket 39" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[38].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[38].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 82, - "2021-01-01": 68, - "2015-01-01": 68 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[38].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[38].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 8.4, - "2021-01-01": 17.6, - "2015-01-01": 17.6 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[39]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[39]", - "description": null, - "label": "bracket 40" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[39].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[39].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 83, - "2021-01-01": 69, - "2015-01-01": 69 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[39].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[39].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 7.9, - "2021-01-01": 16.8, - "2015-01-01": 16.8 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[40]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[40]", - "description": null, - "label": "bracket 41" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[40].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[40].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 84, - "2021-01-01": 70, - "2015-01-01": 70 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[40].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[40].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 7.4, - "2021-01-01": 16, - "2015-01-01": 16 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[41]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[41]", - "description": null, - "label": "bracket 42" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[41].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[41].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 85, - "2021-01-01": 71, - "2015-01-01": 71 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[41].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[41].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 6.9, - "2021-01-01": 15.3, - "2015-01-01": 15.3 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[42]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[42]", - "description": null, - "label": "bracket 43" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[42].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[42].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 86, - "2021-01-01": 72, - "2015-01-01": 72 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[42].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[42].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 6.5, - "2021-01-01": 14.6, - "2015-01-01": 14.6 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[43]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[43]", - "description": null, - "label": "bracket 44" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[43].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[43].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 87, - "2021-01-01": 73, - "2015-01-01": 73 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[43].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[43].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 6.1, - "2021-01-01": 13.9, - "2015-01-01": 13.9 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[44]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[44]", - "description": null, - "label": "bracket 45" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[44].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[44].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 88, - "2021-01-01": 74, - "2015-01-01": 74 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[44].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[44].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 5.7, - "2021-01-01": 13.2, - "2015-01-01": 13.2 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[45]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[45]", - "description": null, - "label": "bracket 46" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[45].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[45].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 89, - "2021-01-01": 75, - "2015-01-01": 75 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[45].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[45].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 5.3, - "2021-01-01": 12.5, - "2015-01-01": 12.5 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[46]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[46]", - "description": null, - "label": "bracket 47" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[46].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[46].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 90, - "2021-01-01": 76, - "2015-01-01": 76 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[46].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[46].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 5, - "2021-01-01": 11.9, - "2015-01-01": 11.9 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[47]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[47]", - "description": null, - "label": "bracket 48" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[47].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[47].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 91, - "2021-01-01": 77, - "2015-01-01": 77 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[47].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[47].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 4.7, - "2021-01-01": 11.2, - "2015-01-01": 11.2 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[48]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[48]", - "description": null, - "label": "bracket 49" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[48].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[48].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 92, - "2021-01-01": 78, - "2015-01-01": 78 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[48].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[48].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 4.4, - "2021-01-01": 10.6, - "2015-01-01": 10.6 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[49]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[49]", - "description": null, - "label": "bracket 50" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[49].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[49].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 93, - "2021-01-01": 79, - "2015-01-01": 79 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[49].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[49].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 4.1, - "2021-01-01": 10, - "2015-01-01": 10 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[50]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[50]", - "description": null, - "label": "bracket 51" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[50].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[50].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 94, - "2021-01-01": 80, - "2015-01-01": 80 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[50].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[50].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 3.9, - "2021-01-01": 9.5, - "2015-01-01": 9.5 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[51]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[51]", - "description": null, - "label": "bracket 52" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[51].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[51].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 95, - "2021-01-01": 81, - "2015-01-01": 81 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[51].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[51].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 3.7, - "2021-01-01": 8.9, - "2015-01-01": 8.9 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[52]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[52]", - "description": null, - "label": "bracket 53" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[52].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[52].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 96, - "2021-01-01": 82, - "2015-01-01": 82 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[52].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[52].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 3.4, - "2021-01-01": 8.4, - "2015-01-01": 8.4 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[53]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[53]", - "description": null, - "label": "bracket 54" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[53].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[53].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 97, - "2021-01-01": 83, - "2015-01-01": 83 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[53].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[53].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 3.2, - "2021-01-01": 7.9, - "2015-01-01": 7.9 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[54]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[54]", - "description": null, - "label": "bracket 55" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[54].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[54].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 98, - "2021-01-01": 84, - "2015-01-01": 84 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[54].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[54].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 3, - "2021-01-01": 7.4, - "2015-01-01": 7.4 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[55]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[55]", - "description": null, - "label": "bracket 56" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[55].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[55].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 99, - "2021-01-01": 85, - "2015-01-01": 85 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[55].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[55].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 2.8, - "2021-01-01": 6.9, - "2015-01-01": 6.9 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[56]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[56]", - "description": null, - "label": "bracket 57" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[56].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[56].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 100, - "2021-01-01": 86, - "2015-01-01": 86 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[56].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[56].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 2.7, - "2021-01-01": 6.5, - "2015-01-01": 6.5 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[57]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[57]", - "description": null, - "label": "bracket 58" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[57].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[57].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 101, - "2021-01-01": 87, - "2015-01-01": 87 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[57].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[57].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 2.5, - "2021-01-01": 6.1, - "2015-01-01": 6.1 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[58]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[58]", - "description": null, - "label": "bracket 59" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[58].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[58].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 102, - "2021-01-01": 88, - "2015-01-01": 88 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[58].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[58].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 2.3, - "2021-01-01": 5.7, - "2015-01-01": 5.7 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[59]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[59]", - "description": null, - "label": "bracket 60" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[59].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[59].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 103, - "2021-01-01": 89, - "2015-01-01": 89 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[59].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[59].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 2.1, - "2021-01-01": 5.3, - "2015-01-01": 5.3 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[60]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[60]", - "description": null, - "label": "bracket 61" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[60].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[60].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 104, - "2021-01-01": 90, - "2015-01-01": 90 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[60].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[60].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 1.9, - "2021-01-01": 5, - "2015-01-01": 5 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[61]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[61]", - "description": null, - "label": "bracket 62" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[61].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[61].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 105, - "2021-01-01": 91, - "2015-01-01": 91 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[61].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[61].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 1.8, - "2021-01-01": 4.7, - "2015-01-01": 4.7 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[62]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[62]", - "description": null, - "label": "bracket 63" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[62].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[62].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 106, - "2021-01-01": 92, - "2015-01-01": 92 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[62].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[62].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 1.6, - "2021-01-01": 4.4, - "2015-01-01": 4.4 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[63]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[63]", - "description": null, - "label": "bracket 64" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[63].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[63].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 107, - "2021-01-01": 93, - "2015-01-01": 93 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[63].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[63].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 1.4, - "2021-01-01": 4.1, - "2015-01-01": 4.1 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[64]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[64]", - "description": null, - "label": "bracket 65" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[64].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[64].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": "Infinity", - "2021-01-01": 94, - "2015-01-01": 94 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[64].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[64].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 1.4, - "2021-01-01": 3.9, - "2015-01-01": 3.9 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[65]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[65]", - "description": null, - "label": "bracket 66" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[65].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[65].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": "Infinity", - "2021-01-01": 95, - "2015-01-01": 95 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[65].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[65].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 1.4, - "2021-01-01": 3.7, - "2015-01-01": 3.7 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[66]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[66]", - "description": null, - "label": "bracket 67" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[66].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[66].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": "Infinity", - "2021-01-01": 96, - "2015-01-01": 96 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[66].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[66].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 1.4, - "2021-01-01": 3.4, - "2015-01-01": 3.4 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[67]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[67]", - "description": null, - "label": "bracket 68" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[67].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[67].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": "Infinity", - "2021-01-01": 97, - "2015-01-01": 97 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[67].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[67].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 1.4, - "2021-01-01": 3.2, - "2015-01-01": 3.2 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[68]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[68]", - "description": null, - "label": "bracket 69" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[68].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[68].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": "Infinity", - "2021-01-01": 98, - "2015-01-01": 98 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[68].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[68].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 1.4, - "2021-01-01": 3, - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[69]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[69]", - "description": null, - "label": "bracket 70" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[69].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[69].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": "Infinity", - "2021-01-01": 99, - "2015-01-01": 99 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[69].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[69].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 1.4, - "2021-01-01": 2.8, - "2015-01-01": 2.8 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[70]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[70]", - "description": null, - "label": "bracket 71" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[70].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[70].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": "Infinity", - "2021-01-01": 100, - "2015-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[70].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[70].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 1.4, - "2021-01-01": 2.7, - "2015-01-01": 2.7 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[71]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[71]", - "description": null, - "label": "bracket 72" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[71].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[71].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": "Infinity", - "2021-01-01": 101, - "2015-01-01": 101 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[71].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[71].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 1.4, - "2021-01-01": 2.5, - "2015-01-01": 2.5 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[72]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[72]", - "description": null, - "label": "bracket 73" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[72].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[72].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": "Infinity", - "2021-01-01": 102, - "2015-01-01": 102 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[72].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[72].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 1.4, - "2021-01-01": 2.3, - "2015-01-01": 2.3 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[73]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[73]", - "description": null, - "label": "bracket 74" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[73].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[73].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": "Infinity", - "2021-01-01": 103, - "2015-01-01": 103 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[73].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[73].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 1.4, - "2021-01-01": 2.1, - "2015-01-01": 2.1 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[74]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[74]", - "description": null, - "label": "bracket 75" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[74].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[74].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": "Infinity", - "2021-01-01": 104, - "2015-01-01": 104 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[74].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[74].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 1.4, - "2021-01-01": 1.9, - "2015-01-01": 1.9 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[75]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[75]", - "description": null, - "label": "bracket 76" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[75].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[75].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": "Infinity", - "2021-01-01": 105, - "2015-01-01": 105 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[75].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[75].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 1.4, - "2021-01-01": 1.8, - "2015-01-01": 1.8 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[76]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[76]", - "description": null, - "label": "bracket 77" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[76].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[76].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": "Infinity", - "2021-01-01": 106, - "2015-01-01": 106 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[76].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[76].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 1.4, - "2021-01-01": 1.6, - "2015-01-01": 1.6 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[77]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[77]", - "description": null, - "label": "bracket 78" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[77].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[77].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": "Infinity", - "2021-01-01": 107, - "2015-01-01": 107 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[77].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[77].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.4, - "2015-01-01": 1.4 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[78]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[78]", - "description": null, - "label": "bracket 79" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[78].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[78].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": "Infinity", - "2021-01-01": 108, - "2015-01-01": 108 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[78].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[78].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 1.4, - "2021-01-01": 1.3, - "2015-01-01": 1.3 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[79]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[79]", - "description": null, - "label": "bracket 80" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[79].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[79].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": "Infinity", - "2021-01-01": 109, - "2015-01-01": 109 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[79].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[79].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 1.4, - "2021-01-01": 1.1, - "2015-01-01": 1.1 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[80]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[80]", - "description": null, - "label": "bracket 81" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[80].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[80].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": "Infinity", - "2021-01-01": 110, - "2015-01-01": 110 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[80].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[80].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 1.4, - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[81]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[81]", - "description": null, - "label": "bracket 82" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[81].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[81].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": "Infinity", - "2021-01-01": 111, - "2015-01-01": 111 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[81].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[81].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 1.4, - "2021-01-01": 0.9, - "2015-01-01": 0.9 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[82]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[82]", - "description": null, - "label": "bracket 83" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[82].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[82].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": "Infinity", - "2021-01-01": 112, - "2015-01-01": 112 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[82].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[82].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 1.4, - "2021-01-01": 0.8, - "2015-01-01": 0.8 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[83]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[83]", - "description": null, - "label": "bracket 84" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[83].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[83].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": "Infinity", - "2021-01-01": 113, - "2015-01-01": 113 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[83].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[83].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 1.4, - "2021-01-01": 0.7, - "2015-01-01": 0.7 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[84]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[84]", - "description": null, - "label": "bracket 85" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[84].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[84].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": "Infinity", - "2021-01-01": 114, - "2015-01-01": 114 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[84].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[84].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 1.4, - "2021-01-01": 0.6, - "2015-01-01": 0.6 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[85]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[85]", - "description": null, - "label": "bracket 86" - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[85].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[85].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": "Infinity", - "2021-01-01": 115, - "2015-01-01": 115 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[85].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.lump_sum_distribution.expected_remaining_years[85].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 1.4, - "2021-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.adoption": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.adoption", - "description": null, - "label": "adoption", - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.adoption.amount": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.adoption.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.adoption.amount.max": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.adoption.amount.max", - "description": "Ohio issues the adoption credit of up to this maximum amount.", - "label": "Ohio adoption credit maximum amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2023-01-01": 20000, - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.adoption.amount.min": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.adoption.amount.min", - "description": "Ohio issues the adoption credit of this minimum amount.", - "label": "Ohio adoption credit minimum amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2023-01-01": 0, - "2021-01-01": 1500, - "2015-01-01": 1500 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.adoption.age_limit": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.adoption.age_limit", - "description": "Ohio provides an adoption credit for children younger than this age.", - "label": "Ohio adoption credit child age limit", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 18, - "2015-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.non_refundable": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.non_refundable", - "description": "Ohio provides these non-refundable tax credits.", - "label": "Ohio non-refundable tax credits", - "unit": "list", - "period": "year", - "values": { - "2023-01-01": [ - "oh_eitc", - "oh_cdcc", - "oh_senior_citizen_credit", - "oh_retirement_credit", - "oh_non_public_school_credits", - "oh_exemption_credit", - "oh_joint_filing_credit" - ], - "2021-01-01": [ - "oh_adoption_credit", - "oh_eitc", - "oh_cdcc", - "oh_senior_citizen_credit", - "oh_retirement_credit", - "oh_non_public_school_credits", - "oh_exemption_credit", - "oh_joint_filing_credit" - ], - "2015-01-01": [ - "oh_adoption_credit", - "oh_eitc", - "oh_cdcc", - "oh_senior_citizen_credit", - "oh_retirement_credit", - "oh_non_public_school_credits", - "oh_exemption_credit", - "oh_joint_filing_credit" - ] - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement", - "description": null, - "label": "retirement", - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.pension_based": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.pension_based", - "description": null, - "label": "pension based", - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.pension_based.income_limit": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.pension_based.income_limit", - "description": "Ohio limits its pension based retirement income credit to filers with state adjusted gross income below this amount.", - "label": "Ohio pension based retirement income credit retirement credit income limit", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.pension_based.amount": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.pension_based.amount", - "description": "Ohio provides this credit amount under the pension based retirement income credit, depending on retirement income.", - "label": "Ohio pension based retirement income credit amount" - }, - "gov.states.oh.tax.income.credits.retirement.pension_based.amount[0]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.pension_based.amount[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.oh.tax.income.credits.retirement.pension_based.amount[0].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.pension_based.amount[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.pension_based.amount[0].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.pension_based.amount[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.pension_based.amount[1]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.pension_based.amount[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.oh.tax.income.credits.retirement.pension_based.amount[1].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.pension_based.amount[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.pension_based.amount[1].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.pension_based.amount[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 25, - "2015-01-01": 25 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.pension_based.amount[2]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.pension_based.amount[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.oh.tax.income.credits.retirement.pension_based.amount[2].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.pension_based.amount[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 1500, - "2015-01-01": 1500 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.pension_based.amount[2].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.pension_based.amount[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 50, - "2015-01-01": 50 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.pension_based.amount[3]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.pension_based.amount[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.oh.tax.income.credits.retirement.pension_based.amount[3].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.pension_based.amount[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 3000, - "2015-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.pension_based.amount[3].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.pension_based.amount[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 80, - "2015-01-01": 80 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.pension_based.amount[4]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.pension_based.amount[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.oh.tax.income.credits.retirement.pension_based.amount[4].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.pension_based.amount[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.pension_based.amount[4].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.pension_based.amount[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 130, - "2015-01-01": 130 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.pension_based.amount[5]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.pension_based.amount[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.oh.tax.income.credits.retirement.pension_based.amount[5].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.pension_based.amount[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 8000, - "2015-01-01": 8000 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.pension_based.amount[5].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.pension_based.amount[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 200, - "2015-01-01": 200 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum", - "description": null, - "label": "lump sum", - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor", - "description": "Ohio divides the recipient's total retirement income by this amount under the lump sum retirement credit, depending on age.", - "label": "Ohio lump sum retirement credit divisor" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[0]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[0].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 45, - "2015-01-01": 45 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[0].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 37.7, - "2015-01-01": 37.7 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[1]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[1].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 46, - "2015-01-01": 46 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[1].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 36.8, - "2015-01-01": 36.8 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[2]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[2].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[2].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 47, - "2015-01-01": 47 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[2].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 35.9, - "2015-01-01": 35.9 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[3]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[3].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[3].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 48, - "2015-01-01": 48 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[3].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 34.9, - "2015-01-01": 34.9 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[4]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[4].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[4].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 49, - "2015-01-01": 49 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[4].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[4].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 34, - "2015-01-01": 34 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[5]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[5].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[5].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 50, - "2015-01-01": 50 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[5].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[5].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 33.1, - "2015-01-01": 33.1 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[6]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[6].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[6].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 51, - "2015-01-01": 51 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[6].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[6].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 32.2, - "2015-01-01": 32.2 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[7]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[7].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[7].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 52, - "2015-01-01": 52 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[7].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[7].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 31.3, - "2015-01-01": 31.3 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[8]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[8].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[8].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 53, - "2015-01-01": 53 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[8].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[8].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 30.4, - "2015-01-01": 30.4 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[9]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[9].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[9].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 54, - "2015-01-01": 54 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[9].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[9].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 29.5, - "2015-01-01": 29.5 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[10]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[10]", - "description": null, - "label": "bracket 11" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[10].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[10].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 55, - "2015-01-01": 55 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[10].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[10].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 28.6, - "2015-01-01": 28.6 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[11]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[11]", - "description": null, - "label": "bracket 12" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[11].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[11].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 56, - "2015-01-01": 56 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[11].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[11].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 27.7, - "2015-01-01": 27.7 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[12]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[12]", - "description": null, - "label": "bracket 13" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[12].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[12].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 57, - "2015-01-01": 57 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[12].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[12].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 26.8, - "2015-01-01": 26.8 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[13]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[13]", - "description": null, - "label": "bracket 14" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[13].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[13].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 58, - "2015-01-01": 58 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[13].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[13].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 25.9, - "2015-01-01": 25.9 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[14]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[14]", - "description": null, - "label": "bracket 15" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[14].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[14].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 59, - "2015-01-01": 59 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[14].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[14].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 25, - "2015-01-01": 25 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[15]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[15]", - "description": null, - "label": "bracket 16" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[15].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[15].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[15].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[15].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 24.2, - "2015-01-01": 24.2 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[16]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[16]", - "description": null, - "label": "bracket 17" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[16].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[16].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 61, - "2015-01-01": 61 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[16].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[16].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 23.3, - "2015-01-01": 23.3 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[17]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[17]", - "description": null, - "label": "bracket 18" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[17].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[17].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 62, - "2015-01-01": 62 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[17].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[17].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 22.5, - "2015-01-01": 22.5 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[18]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[18]", - "description": null, - "label": "bracket 19" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[18].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[18].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 63, - "2015-01-01": 63 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[18].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[18].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 21.6, - "2015-01-01": 21.6 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[19]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[19]", - "description": null, - "label": "bracket 20" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[19].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[19].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 64, - "2015-01-01": 64 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[19].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[19].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 20.8, - "2015-01-01": 20.8 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[20]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[20]", - "description": null, - "label": "bracket 21" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[20].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[20].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[20].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[20].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 20, - "2015-01-01": 20 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[21]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[21]", - "description": null, - "label": "bracket 22" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[21].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[21].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 66, - "2015-01-01": 66 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[21].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[21].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 19.2, - "2015-01-01": 19.2 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[22]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[22]", - "description": null, - "label": "bracket 23" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[22].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[22].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 67, - "2015-01-01": 67 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[22].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[22].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 18.4, - "2015-01-01": 18.4 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[23]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[23]", - "description": null, - "label": "bracket 24" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[23].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[23].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 68, - "2015-01-01": 68 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[23].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[23].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 17.6, - "2015-01-01": 17.6 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[24]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[24]", - "description": null, - "label": "bracket 25" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[24].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[24].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 69, - "2015-01-01": 69 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[24].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[24].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 16.8, - "2015-01-01": 16.8 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[25]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[25]", - "description": null, - "label": "bracket 26" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[25].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[25].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 70, - "2015-01-01": 70 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[25].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[25].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 16, - "2015-01-01": 16 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[26]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[26]", - "description": null, - "label": "bracket 27" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[26].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[26].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 71, - "2015-01-01": 71 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[26].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[26].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 15.3, - "2015-01-01": 15.3 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[27]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[27]", - "description": null, - "label": "bracket 28" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[27].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[27].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 72, - "2015-01-01": 72 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[27].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[27].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 14.6, - "2015-01-01": 14.6 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[28]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[28]", - "description": null, - "label": "bracket 29" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[28].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[28].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 73, - "2015-01-01": 73 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[28].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[28].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 13.9, - "2015-01-01": 13.9 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[29]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[29]", - "description": null, - "label": "bracket 30" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[29].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[29].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 74, - "2015-01-01": 74 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[29].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[29].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 13.2, - "2015-01-01": 13.2 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[30]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[30]", - "description": null, - "label": "bracket 31" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[30].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[30].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 75, - "2015-01-01": 75 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[30].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[30].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 12.5, - "2015-01-01": 12.5 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[31]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[31]", - "description": null, - "label": "bracket 32" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[31].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[31].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 76, - "2015-01-01": 76 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[31].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[31].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 11.9, - "2015-01-01": 11.9 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[32]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[32]", - "description": null, - "label": "bracket 33" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[32].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[32].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 77, - "2015-01-01": 77 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[32].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[32].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 11.2, - "2015-01-01": 11.2 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[33]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[33]", - "description": null, - "label": "bracket 34" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[33].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[33].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 78, - "2015-01-01": 78 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[33].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[33].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 10.6, - "2015-01-01": 10.6 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[34]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[34]", - "description": null, - "label": "bracket 35" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[34].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[34].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 79, - "2015-01-01": 79 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[34].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[34].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 10, - "2015-01-01": 10 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[35]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[35]", - "description": null, - "label": "bracket 36" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[35].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[35].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 80, - "2015-01-01": 80 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[35].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[35].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 9.5, - "2015-01-01": 9.5 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[36]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[36]", - "description": null, - "label": "bracket 37" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[36].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[36].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 81, - "2015-01-01": 81 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[36].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[36].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 8.9, - "2015-01-01": 8.9 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[37]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[37]", - "description": null, - "label": "bracket 38" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[37].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[37].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 82, - "2015-01-01": 82 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[37].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[37].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 8.4, - "2015-01-01": 8.4 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[38]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[38]", - "description": null, - "label": "bracket 39" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[38].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[38].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 83, - "2015-01-01": 83 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[38].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[38].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 7.9, - "2015-01-01": 7.9 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[39]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[39]", - "description": null, - "label": "bracket 40" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[39].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[39].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 84, - "2015-01-01": 84 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[39].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[39].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 7.4, - "2015-01-01": 7.4 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[40]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[40]", - "description": null, - "label": "bracket 41" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[40].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[40].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 85, - "2015-01-01": 85 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[40].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[40].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 6.9, - "2015-01-01": 6.9 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[41]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[41]", - "description": null, - "label": "bracket 42" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[41].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[41].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 86, - "2015-01-01": 86 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[41].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[41].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 6.5, - "2015-01-01": 6.5 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[42]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[42]", - "description": null, - "label": "bracket 43" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[42].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[42].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 87, - "2015-01-01": 87 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[42].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[42].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 6.1, - "2015-01-01": 6.1 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[43]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[43]", - "description": null, - "label": "bracket 44" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[43].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[43].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 88, - "2015-01-01": 88 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[43].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[43].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 5.7, - "2015-01-01": 5.7 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[44]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[44]", - "description": null, - "label": "bracket 45" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[44].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[44].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 89, - "2015-01-01": 89 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[44].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[44].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 5.3, - "2015-01-01": 5.3 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[45]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[45]", - "description": null, - "label": "bracket 46" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[45].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[45].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 90, - "2015-01-01": 90 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[45].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[45].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 5, - "2015-01-01": 5 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[46]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[46]", - "description": null, - "label": "bracket 47" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[46].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[46].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 91, - "2015-01-01": 91 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[46].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[46].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 4.7, - "2015-01-01": 4.7 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[47]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[47]", - "description": null, - "label": "bracket 48" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[47].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[47].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 92, - "2015-01-01": 92 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[47].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[47].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 4.4, - "2015-01-01": 4.4 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[48]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[48]", - "description": null, - "label": "bracket 49" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[48].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[48].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 93, - "2015-01-01": 93 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[48].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[48].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 4.1, - "2015-01-01": 4.1 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[49]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[49]", - "description": null, - "label": "bracket 50" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[49].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[49].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 94, - "2015-01-01": 94 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[49].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[49].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 3.9, - "2015-01-01": 3.9 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[50]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[50]", - "description": null, - "label": "bracket 51" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[50].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[50].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 95, - "2015-01-01": 95 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[50].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[50].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 3.7, - "2015-01-01": 3.7 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[51]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[51]", - "description": null, - "label": "bracket 52" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[51].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[51].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 96, - "2015-01-01": 96 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[51].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[51].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 3.4, - "2015-01-01": 3.4 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[52]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[52]", - "description": null, - "label": "bracket 53" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[52].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[52].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 97, - "2015-01-01": 97 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[52].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[52].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 3.2, - "2015-01-01": 3.2 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[53]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[53]", - "description": null, - "label": "bracket 54" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[53].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[53].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 98, - "2015-01-01": 98 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[53].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[53].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 3, - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[54]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[54]", - "description": null, - "label": "bracket 55" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[54].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[54].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 99, - "2015-01-01": 99 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[54].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[54].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.8, - "2015-01-01": 2.8 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[55]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[55]", - "description": null, - "label": "bracket 56" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[55].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[55].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 100, - "2015-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[55].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[55].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.7, - "2015-01-01": 2.7 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[56]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[56]", - "description": null, - "label": "bracket 57" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[56].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[56].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 101, - "2015-01-01": 101 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[56].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[56].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.5, - "2015-01-01": 2.5 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[57]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[57]", - "description": null, - "label": "bracket 58" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[57].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[57].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 102, - "2015-01-01": 102 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[57].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[57].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.3, - "2015-01-01": 2.3 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[58]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[58]", - "description": null, - "label": "bracket 59" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[58].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[58].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 103, - "2015-01-01": 103 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[58].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[58].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.1, - "2015-01-01": 2.1 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[59]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[59]", - "description": null, - "label": "bracket 60" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[59].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[59].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 104, - "2015-01-01": 104 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[59].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[59].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.9, - "2015-01-01": 1.9 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[60]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[60]", - "description": null, - "label": "bracket 61" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[60].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[60].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 105, - "2015-01-01": 105 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[60].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[60].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.8, - "2015-01-01": 1.8 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[61]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[61]", - "description": null, - "label": "bracket 62" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[61].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[61].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 106, - "2015-01-01": 106 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[61].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[61].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.6, - "2015-01-01": 1.6 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[62]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[62]", - "description": null, - "label": "bracket 63" - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[62].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[62].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 107, - "2015-01-01": 107 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[62].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.divisor[62].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.4, - "2015-01-01": 1.4 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.age_threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.age_threshold", - "description": "Ohio limits the lump sum retirement income credit to filers this age or older.", - "label": "Ohio lump sum retirement income credit age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.retirement.lump_sum.income_limit": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.retirement.lump_sum.income_limit", - "description": "Ohio limits its lump sum retirement income credit to filers with state adjusted gross income below this amount.", - "label": "Ohio lump sum retirement income credit retirement credit income limit", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.joint_filing": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.joint_filing", - "description": null, - "label": "joint filing", - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.joint_filing.income_threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.joint_filing.income_threshold", - "description": "Ohio limits the joint filing credit to filers with head and spouse each having at least this adjusted gross income.", - "label": "Ohio joint filing credit income threshold", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.joint_filing.other_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.joint_filing.other_non_refundable_credits", - "description": "Ohio provides a joint filing credit equal to a fraction of tax liability less these non-refundable tax credits.", - "label": "Ohio non-refundable tax credits prior to the joint filing credit", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": [ - "oh_cdcc", - "oh_senior_citizen_credit", - "oh_retirement_credit", - "oh_exemption_credit" - ], - "2015-01-01": [ - "oh_cdcc", - "oh_senior_citizen_credit", - "oh_retirement_credit", - "oh_exemption_credit" - ] - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.joint_filing.cap": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.joint_filing.cap", - "description": "Ohio caps the joint filing credit at this amount.", - "label": "Ohio joint filing credit cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 650, - "2015-01-01": 650 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.joint_filing.rate": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.joint_filing.rate", - "description": "Ohio provides a joint filing credit equal to this fraction of tax liability less certain non-refundable tax credits, based on the state adjusted gross income less exemptions.", - "label": "Ohio joint filing credit income rate" - }, - "gov.states.oh.tax.income.credits.joint_filing.rate[0]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.joint_filing.rate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.oh.tax.income.credits.joint_filing.rate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.joint_filing.rate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.joint_filing.rate[0].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.joint_filing.rate[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.joint_filing.rate[1]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.joint_filing.rate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.oh.tax.income.credits.joint_filing.rate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.joint_filing.rate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.joint_filing.rate[1].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.joint_filing.rate[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.15, - "2015-01-01": 0.15 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.joint_filing.rate[2]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.joint_filing.rate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.oh.tax.income.credits.joint_filing.rate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.joint_filing.rate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.joint_filing.rate[2].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.joint_filing.rate[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.joint_filing.rate[3]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.credits.joint_filing.rate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.oh.tax.income.credits.joint_filing.rate[3].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.joint_filing.rate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 75000, - "2015-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.joint_filing.rate[3].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.joint_filing.rate[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.credits.joint_filing.agi_subtractions": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.credits.joint_filing.agi_subtractions", - "description": "Ohio subtracts these items from the Ohio adjusted gross income, under the joint filing credit.", - "label": "Ohio joint filing credit adjusted gross income subtractions", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": ["interest_income", "dividend_income", "capital_gains", "rental_income"], - "2015-01-01": ["interest_income", "dividend_income", "capital_gains", "rental_income"] - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.agi_threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.agi_threshold", - "description": "Ohio requires filers with this adjusted gross income or more to pay individual income tax.", - "label": "Ohio assigns minimum income threshold to pay individual income tax.", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 26050, - "2021-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.exemptions": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.exemptions", - "description": null, - "label": "exemptions", - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.exemptions.personal": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.exemptions.personal", - "description": null, - "label": "personal", - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.exemptions.personal.amount": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.exemptions.personal.amount", - "description": "Ohio provides a credit of this amount for each exemption, based on modified adjusted gross income.", - "label": "Ohio Personal Exemption" - }, - "gov.states.oh.tax.income.exemptions.personal.amount[0]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.exemptions.personal.amount[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.oh.tax.income.exemptions.personal.amount[0].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.exemptions.personal.amount[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.exemptions.personal.amount[0].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.exemptions.personal.amount[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 2400, - "2015-01-01": 2400 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.exemptions.personal.amount[1]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.exemptions.personal.amount[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.oh.tax.income.exemptions.personal.amount[1].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.exemptions.personal.amount[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 40000, - "2015-01-01": 40000 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.exemptions.personal.amount[1].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.exemptions.personal.amount[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 2150, - "2015-01-01": 2150 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.exemptions.personal.amount[2]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.exemptions.personal.amount[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.oh.tax.income.exemptions.personal.amount[2].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.exemptions.personal.amount[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 80000, - "2015-01-01": 80000 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.exemptions.personal.amount[2].amount": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.exemptions.personal.amount[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 1900, - "2015-01-01": 1900 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.rates": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.rates", - "description": "Ohio limits its tax rate, depending on modified adjusted gross income for the taxable year for trusts and estates.", - "label": "OH AGI Income Tax Rate" - }, - "gov.states.oh.tax.income.rates[0]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.rates[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.oh.tax.income.rates[0].rate": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.rates[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2026-01-01": 0.0127448, - "2025-01-01": 0.0131287, - "2024-01-01": 0.0138462, - "2021-01-01": 0.01385, - "2015-01-01": 0.01385 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.rates[0].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.rates[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.rates[1]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.rates[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.oh.tax.income.rates[1].rate": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.rates[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.0275, - "2021-01-01": 0.02765, - "2015-01-01": 0.02765 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.rates[1].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.rates[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2026-01-01": 26050, - "2025-01-01": 26050, - "2024-01-01": 26050, - "2023-01-01": 26050, - "2022-01-01": 26050, - "2021-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.rates[2]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.rates[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.oh.tax.income.rates[2].rate": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.rates[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2025-01-01": 0.0315, - "2024-01-01": 0.035, - "2023-01-01": 0.03688, - "2021-01-01": 0.03226, - "2015-01-01": 0.03226 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.rates[2].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.rates[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2026-01-01": "Infinity", - "2023-01-01": 100000, - "2022-01-01": 46100, - "2021-01-01": 44250, - "2015-01-01": 44250 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.rates[3]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.rates[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.oh.tax.income.rates[3].rate": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.rates[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.035, - "2023-01-01": 0.0375, - "2021-01-01": 0.03688, - "2015-01-01": 0.03688 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.rates[3].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.rates[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": "Infinity", - "2023-01-01": 115300, - "2022-01-01": 92150, - "2021-01-01": 88450, - "2015-01-01": 88450 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.rates[4]": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.rates[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.oh.tax.income.rates[4].rate": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.rates[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.0375, - "2021-01-01": 0.0399, - "2015-01-01": 0.0399 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.rates[4].threshold": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.rates[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": "Infinity", - "2022-01-01": 115300, - "2021-01-01": 110650, - "2015-01-01": 110650 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.additions": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.additions", - "description": "Ohio adds these sources to the federal adjusted gross income.", - "label": "Ohio adjusted gross income additions", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": ["oh_bonus_depreciation_add_back", "oh_other_add_backs"], - "2015-01-01": ["oh_bonus_depreciation_add_back", "oh_other_add_backs"] - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.deductions": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.deductions", - "description": null, - "label": "deductions", - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.deductions.plan_529_contributions": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.deductions.plan_529_contributions", - "description": null, - "label": "plan 529 contributions", - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.deductions.plan_529_contributions.cap": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.deductions.plan_529_contributions.cap", - "description": "Ohio caps the 529 plan contributions deduction to this amount.", - "label": "Ohio 529 plan contribution deduction cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 4000, - "2015-01-01": 4000 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.deductions.unreimbursed_medical_care_expenses": { - "type": "parameterNode", - "parameter": "gov.states.oh.tax.income.deductions.unreimbursed_medical_care_expenses", - "description": null, - "label": "unreimbursed medical care expenses", - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.deductions.unreimbursed_medical_care_expenses.rate": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.deductions.unreimbursed_medical_care_expenses.rate", - "description": "Ohio deducts medical care expenses in excess of this fraction of federal adjusted gross income.", - "label": "Ohio Unreimbursed Medical Care Expenses Deduction AGI threshold", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.075, - "2015-01-01": 0.075 - }, - "economy": true, - "household": true - }, - "gov.states.oh.tax.income.deductions.deductions": { - "type": "parameter", - "parameter": "gov.states.oh.tax.income.deductions.deductions", - "description": "Ohio deducts these sources from the federal adjusted gross income.", - "label": "Ohio adjusted gross income deductions", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": [ - "oh_section_179_expense_add_back", - "taxable_social_security", - "oh_uniformed_services_retirement_income_deduction", - "oh_529_plan_deduction_person", - "pell_grant", - "educator_expense", - "disability_benefits", - "oh_unreimbursed_medical_care_expense_deduction_person" - ], - "2015-01-01": [ - "oh_section_179_expense_add_back", - "taxable_social_security", - "oh_uniformed_services_retirement_income_deduction", - "oh_529_plan_deduction_person", - "pell_grant", - "educator_expense", - "disability_benefits", - "oh_unreimbursed_medical_care_expense_deduction_person" - ] - }, - "economy": true, - "household": true - }, - "gov.states.il": { - "type": "parameterNode", - "parameter": "gov.states.il", - "description": null, - "label": "Illinois", - "economy": true, - "household": true - }, - "gov.states.il.rta": { - "type": "parameterNode", - "parameter": "gov.states.il.rta", - "description": null, - "label": "Regional Transportation Authority", - "economy": true, - "household": true - }, - "gov.states.il.rta.cta": { - "type": "parameterNode", - "parameter": "gov.states.il.rta.cta", - "description": null, - "label": "Chicago Transit Authority", - "economy": true, - "household": true - }, - "gov.states.il.rta.cta.monthly_pass_cost": { - "type": "parameterNode", - "parameter": "gov.states.il.rta.cta.monthly_pass_cost", - "description": null, - "label": "monthly pass cost", - "economy": true, - "household": true - }, - "gov.states.il.rta.cta.monthly_pass_cost.reduced_fare": { - "type": "parameter", - "parameter": "gov.states.il.rta.cta.monthly_pass_cost.reduced_fare", - "description": "The Chicago Transit Authority charges the reduced fare 30-Day CTA/Pace Pass at this price.", - "label": "CTA 30-Day CTA/Pace Pass reduced cost", - "unit": "currency-USD", - "period": "month", - "values": { - "2023-01-01": 35, - "2015-01-01": 35 - }, - "economy": true, - "household": true - }, - "gov.states.il.rta.cta.monthly_pass_cost.full_fare": { - "type": "parameter", - "parameter": "gov.states.il.rta.cta.monthly_pass_cost.full_fare", - "description": "The Chicago Transit Authority charges the full fare 30-Day CTA/Pace Pass at this price.", - "label": "CTA 30-Day CTA/Pace Pass full cost", - "unit": "currency-USD", - "period": "month", - "values": { - "2023-01-01": 75, - "2015-01-01": 75 - }, - "economy": true, - "household": true - }, - "gov.states.il.rta.cta.reduced_fare_program": { - "type": "parameterNode", - "parameter": "gov.states.il.rta.cta.reduced_fare_program", - "description": null, - "label": "reduced fare program", - "economy": true, - "household": true - }, - "gov.states.il.rta.cta.reduced_fare_program.age_threshold": { - "type": "parameterNode", - "parameter": "gov.states.il.rta.cta.reduced_fare_program.age_threshold", - "description": null, - "label": "age threshold", - "economy": true, - "household": true - }, - "gov.states.il.rta.cta.reduced_fare_program.age_threshold.student": { - "type": "parameter", - "parameter": "gov.states.il.rta.cta.reduced_fare_program.age_threshold.student", - "description": "The Chicago Transit Authority provides the Reduced Fare Program to students older or of this age.", - "label": "CTA Reduced Fare Program student age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 20, - "2015-01-01": 20 - }, - "economy": true, - "household": true - }, - "gov.states.il.rta.cta.reduced_fare_program.age_threshold.senior": { - "type": "parameter", - "parameter": "gov.states.il.rta.cta.reduced_fare_program.age_threshold.senior", - "description": "The Chicago Transit Authority provides the Reduced Fare Program to seniors older or of this age.", - "label": "CTA Reduced Fare Program senior age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.il.rta.cta.reduced_fare_program.age_threshold.child": { - "type": "parameterNode", - "parameter": "gov.states.il.rta.cta.reduced_fare_program.age_threshold.child", - "description": "The Chicago Transit Authority provides the Children Ages 7-11 Reduced Fare Program to applicants who are within these age brackets.", - "label": "CTA Children Ages 7-11 Reduced Fare Program child age threshold" - }, - "gov.states.il.rta.cta.reduced_fare_program.age_threshold.child[0]": { - "type": "parameterNode", - "parameter": "gov.states.il.rta.cta.reduced_fare_program.age_threshold.child[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.il.rta.cta.reduced_fare_program.age_threshold.child[0].threshold": { - "type": "parameter", - "parameter": "gov.states.il.rta.cta.reduced_fare_program.age_threshold.child[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.il.rta.cta.reduced_fare_program.age_threshold.child[0].amount": { - "type": "parameter", - "parameter": "gov.states.il.rta.cta.reduced_fare_program.age_threshold.child[0].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.il.rta.cta.reduced_fare_program.age_threshold.child[1]": { - "type": "parameterNode", - "parameter": "gov.states.il.rta.cta.reduced_fare_program.age_threshold.child[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.il.rta.cta.reduced_fare_program.age_threshold.child[1].threshold": { - "type": "parameter", - "parameter": "gov.states.il.rta.cta.reduced_fare_program.age_threshold.child[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 7, - "2015-01-01": 7 - }, - "economy": true, - "household": true - }, - "gov.states.il.rta.cta.reduced_fare_program.age_threshold.child[1].amount": { - "type": "parameter", - "parameter": "gov.states.il.rta.cta.reduced_fare_program.age_threshold.child[1].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.states.il.rta.cta.reduced_fare_program.age_threshold.child[2]": { - "type": "parameterNode", - "parameter": "gov.states.il.rta.cta.reduced_fare_program.age_threshold.child[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.il.rta.cta.reduced_fare_program.age_threshold.child[2].threshold": { - "type": "parameter", - "parameter": "gov.states.il.rta.cta.reduced_fare_program.age_threshold.child[2].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 12, - "2015-01-01": 12 - }, - "economy": true, - "household": true - }, - "gov.states.il.rta.cta.reduced_fare_program.age_threshold.child[2].amount": { - "type": "parameter", - "parameter": "gov.states.il.rta.cta.reduced_fare_program.age_threshold.child[2].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.il.rta.cta.free_ride_program": { - "type": "parameterNode", - "parameter": "gov.states.il.rta.cta.free_ride_program", - "description": null, - "label": "free ride program", - "economy": true, - "household": true - }, - "gov.states.il.rta.cta.free_ride_program.age_threshold": { - "type": "parameterNode", - "parameter": "gov.states.il.rta.cta.free_ride_program.age_threshold", - "description": null, - "label": "age threshold", - "economy": true, - "household": true - }, - "gov.states.il.rta.cta.free_ride_program.age_threshold.senior": { - "type": "parameter", - "parameter": "gov.states.il.rta.cta.free_ride_program.age_threshold.senior", - "description": "The Chicago Transit Authority provides the Free Ride Program to seniors older or of this age.", - "label": "CTA Free Ride Program senior age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.il.rta.cta.free_ride_program.age_threshold.young_child": { - "type": "parameter", - "parameter": "gov.states.il.rta.cta.free_ride_program.age_threshold.young_child", - "description": "The Chicago Transit Authority provides the Free Ride Program to children younger than this age.", - "label": "CTA Free Ride Program young child age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 7, - "2015-01-01": 7 - }, - "economy": true, - "household": true - }, - "gov.states.il.idoa": { - "type": "parameterNode", - "parameter": "gov.states.il.idoa", - "description": null, - "label": "Illinois Department of Aging (IDOA)", - "economy": true, - "household": true - }, - "gov.states.il.idoa.bap": { - "type": "parameterNode", - "parameter": "gov.states.il.idoa.bap", - "description": null, - "label": "Benefit Access Program", - "economy": true, - "household": true - }, - "gov.states.il.idoa.bap.disabled": { - "type": "parameter", - "parameter": "gov.states.il.idoa.bap.disabled", - "description": "The Illinois Department on Aging provides the Benefit Access Program to disabled applicants this age or older.", - "label": "Illinois Benefit Access Program disabled age threshold", - "unit": "year", - "period": "year", - "values": { - "2020-01-01": 16, - "2015-01-01": 16 - }, - "economy": true, - "household": true - }, - "gov.states.il.idoa.bap.income_limit": { - "type": "parameterNode", - "parameter": "gov.states.il.idoa.bap.income_limit", - "description": "The Illinois Department on Aging limits its Benefit Access Program to households with gross income below this amount, based on household size.", - "label": "Illinois Benefit Access Program income limit", - "economy": true, - "household": true - }, - "gov.states.il.idoa.bap.income_limit.1": { - "type": "parameter", - "parameter": "gov.states.il.idoa.bap.income_limit.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 33562, - "2008-01-01": 22218 - }, - "economy": true, - "household": true - }, - "gov.states.il.idoa.bap.income_limit.2": { - "type": "parameter", - "parameter": "gov.states.il.idoa.bap.income_limit.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 44533, - "2008-01-01": 29480 - }, - "economy": true, - "household": true - }, - "gov.states.il.idoa.bap.income_limit.3": { - "type": "parameter", - "parameter": "gov.states.il.idoa.bap.income_limit.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 55500, - "2008-01-01": 36740 - }, - "economy": true, - "household": true - }, - "gov.states.il.idoa.bap.senior_age_threshold": { - "type": "parameter", - "parameter": "gov.states.il.idoa.bap.senior_age_threshold", - "description": "The Illinois Department on Aging provides the Benefit Access Program to senior older or of this age.", - "label": "Illinois Benefit Access Program senior age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.il.tax": { - "type": "parameterNode", - "parameter": "gov.states.il.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.states.il.tax.income": { - "type": "parameterNode", - "parameter": "gov.states.il.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.il.tax.income.credits": { - "type": "parameterNode", - "parameter": "gov.states.il.tax.income.credits", - "description": null, - "label": "credits", - "economy": true, - "household": true - }, - "gov.states.il.tax.income.credits.eitc": { - "type": "parameterNode", - "parameter": "gov.states.il.tax.income.credits.eitc", - "description": null, - "label": "Earned Income Tax Credit", - "economy": true, - "household": true - }, - "gov.states.il.tax.income.credits.eitc.match": { - "type": "parameter", - "parameter": "gov.states.il.tax.income.credits.eitc.match", - "description": "Illinois matches this fraction of the federal Earned Income Tax Credit.", - "label": "Illinois EITC match", - "unit": "/1", - "period": "year", - "values": { - "2023-01-01": 0.2, - "2021-01-01": 0.18, - "2015-01-01": 0.18 - }, - "economy": true, - "household": true - }, - "gov.states.il.tax.income.credits.refundable": { - "type": "parameter", - "parameter": "gov.states.il.tax.income.credits.refundable", - "description": "Illinois provides the following refundable credits.", - "label": "Illinois refundable credits", - "unit": "list", - "period": "year", - "values": { - "2024-01-01": [ - "il_pass_through_withholding", - "il_pass_through_entity_tax_credit", - "il_eitc", - "il_ctc" - ], - "2021-01-01": [ - "il_pass_through_withholding", - "il_pass_through_entity_tax_credit", - "il_eitc" - ], - "2015-01-01": [ - "il_pass_through_withholding", - "il_pass_through_entity_tax_credit", - "il_eitc" - ] - }, - "economy": true, - "household": true - }, - "gov.states.il.tax.income.credits.ctc": { - "type": "parameterNode", - "parameter": "gov.states.il.tax.income.credits.ctc", - "description": null, - "label": "Child Tax Credit", - "economy": true, - "household": true - }, - "gov.states.il.tax.income.credits.ctc.age_limit": { - "type": "parameter", - "parameter": "gov.states.il.tax.income.credits.ctc.age_limit", - "description": "Illinois provides the child tax credit to filers with at least one eligible child below this age limit.", - "label": "Illinois Child Tax Credit age limit", - "unit": "year", - "period": "year", - "values": { - "2024-01-01": 12, - "2015-01-01": 12 - }, - "economy": true, - "household": true - }, - "gov.states.il.tax.income.credits.ctc.rate": { - "type": "parameter", - "parameter": "gov.states.il.tax.income.credits.ctc.rate", - "description": "Illinois provides the following percentage of the state earned income tax credit for filers with at least one eligible child as the state child tax credit.", - "label": "Illinois Child Tax Credit rate", - "unit": "/1", - "period": "year", - "values": { - "2025-01-01": 0.4, - "2024-01-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.tax.income.credits.property_tax": { - "type": "parameterNode", - "parameter": "gov.states.il.tax.income.credits.property_tax", - "description": null, - "label": "property tax", - "economy": true, - "household": true - }, - "gov.states.il.tax.income.credits.property_tax.rate": { - "type": "parameter", - "parameter": "gov.states.il.tax.income.credits.property_tax.rate", - "description": "Illinois provides a non-refundable credit for this fraction of property taxes.", - "label": "Illinois Property Tax Credit Rate", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.il.tax.income.credits.non_refundable": { - "type": "parameter", - "parameter": "gov.states.il.tax.income.credits.non_refundable", - "description": "Illinois provides the following non-refundable credits.", - "label": "Illinois non-refundable credits", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": ["il_k12_education_expense_credit", "il_property_tax_credit"], - "2015-01-01": ["il_k12_education_expense_credit", "il_property_tax_credit"] - }, - "economy": true, - "household": true - }, - "gov.states.il.tax.income.credits.k12": { - "type": "parameterNode", - "parameter": "gov.states.il.tax.income.credits.k12", - "description": null, - "label": "K-12 Credit", - "economy": true, - "household": true - }, - "gov.states.il.tax.income.credits.k12.cap": { - "type": "parameter", - "parameter": "gov.states.il.tax.income.credits.k12.cap", - "description": "Illinois caps its K-12 Education Expense Credit at this amount.", - "label": "Illinois K-12 Education Expense Credit Cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 750, - "2015-01-01": 750 - }, - "economy": true, - "household": true - }, - "gov.states.il.tax.income.credits.k12.rate": { - "type": "parameter", - "parameter": "gov.states.il.tax.income.credits.k12.rate", - "description": "Illinois provides a non-refundable credit for this fraction of K-12 education expenses.", - "label": "Illinois K-12 Education Expense Credit Rate", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.il.tax.income.credits.k12.reduction": { - "type": "parameter", - "parameter": "gov.states.il.tax.income.credits.k12.reduction", - "description": "Illinois provides a non-refundable credit for a capped fraction of K-12 education expenses in excess of this amount.", - "label": "Illinois K-12 Education Expense Credit Reduction", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 250, - "2015-01-01": 250 - }, - "economy": true, - "household": true - }, - "gov.states.il.tax.income.exemption": { - "type": "parameterNode", - "parameter": "gov.states.il.tax.income.exemption", - "description": null, - "label": "exemption", - "economy": true, - "household": true - }, - "gov.states.il.tax.income.exemption.dependent": { - "type": "parameter", - "parameter": "gov.states.il.tax.income.exemption.dependent", - "description": "Illinois provides the following exemption amount for each dependent.", - "label": "Illinois dependent exemption amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3450, - "2034-01-01": 3400, - "2033-01-01": 3325, - "2032-01-01": 3250, - "2031-01-01": 3200, - "2030-01-01": 3125, - "2029-01-01": 3075, - "2028-01-01": 3000, - "2027-01-01": 2950, - "2026-01-01": 2875, - "2025-01-01": 2825, - "2024-01-01": 2775, - "2022-01-01": 2425, - "2021-01-01": 2375, - "2015-01-01": 2375 - }, - "economy": true, - "household": true - }, - "gov.states.il.tax.income.exemption.personal": { - "type": "parameter", - "parameter": "gov.states.il.tax.income.exemption.personal", - "description": "Illinois provides the following personal exemption allowance amount.", - "label": "Illinois personal exemption amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3450, - "2034-01-01": 3400, - "2033-01-01": 3325, - "2032-01-01": 3250, - "2031-01-01": 3200, - "2030-01-01": 3125, - "2029-01-01": 3075, - "2028-01-01": 3000, - "2027-01-01": 2950, - "2026-01-01": 2875, - "2025-01-01": 2825, - "2024-01-01": 2775, - "2023-01-01": 2425, - "2022-01-01": 2425, - "2021-01-01": 2375, - "2015-01-01": 2375 - }, - "economy": true, - "household": true - }, - "gov.states.il.tax.income.exemption.income_limit": { - "type": "parameterNode", - "parameter": "gov.states.il.tax.income.exemption.income_limit", - "description": "Maximum AGI to be eligible for Illinois exemptions.", - "label": "Illinois Exemption Income Limit", - "economy": true, - "household": true - }, - "gov.states.il.tax.income.exemption.income_limit.JOINT": { - "type": "parameter", - "parameter": "gov.states.il.tax.income.exemption.income_limit.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 500000, - "2015-01-01": 500000 - }, - "economy": true, - "household": true - }, - "gov.states.il.tax.income.exemption.income_limit.SINGLE": { - "type": "parameter", - "parameter": "gov.states.il.tax.income.exemption.income_limit.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 250000, - "2015-01-01": 250000 - }, - "economy": true, - "household": true - }, - "gov.states.il.tax.income.exemption.income_limit.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.il.tax.income.exemption.income_limit.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 250000, - "2015-01-01": 250000 - }, - "economy": true, - "household": true - }, - "gov.states.il.tax.income.exemption.income_limit.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.il.tax.income.exemption.income_limit.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 250000, - "2015-01-01": 250000 - }, - "economy": true, - "household": true - }, - "gov.states.il.tax.income.exemption.income_limit.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.il.tax.income.exemption.income_limit.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 250000, - "2015-01-01": 250000 - }, - "economy": true, - "household": true - }, - "gov.states.il.tax.income.exemption.aged_and_blind": { - "type": "parameter", - "parameter": "gov.states.il.tax.income.exemption.aged_and_blind", - "description": "Illinois exempts this amount from income for aged or blind filers.", - "label": "Illinois Senior and Blind Exemption", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.il.tax.income.base": { - "type": "parameterNode", - "parameter": "gov.states.il.tax.income.base", - "description": null, - "label": "base", - "economy": true, - "household": true - }, - "gov.states.il.tax.income.base.subtractions": { - "type": "parameter", - "parameter": "gov.states.il.tax.income.base.subtractions", - "description": "Illinois Base Income Subtraction Sources", - "label": "Illinois Base Income Subtractions", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": [ - "taxable_social_security", - "taxable_pension_income", - "il_schedule_m_subtractions" - ], - "2015-01-01": [ - "taxable_social_security", - "taxable_pension_income", - "il_schedule_m_subtractions" - ] - }, - "economy": true, - "household": true - }, - "gov.states.il.tax.income.base.additions": { - "type": "parameter", - "parameter": "gov.states.il.tax.income.base.additions", - "description": "Illinois Base Income Addition Sources", - "label": "Illinois Base Income Additions", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": ["tax_exempt_interest_income", "il_schedule_m_additions"], - "2015-01-01": ["tax_exempt_interest_income", "il_schedule_m_additions"] - }, - "economy": true, - "household": true - }, - "gov.states.il.tax.income.rate": { - "type": "parameter", - "parameter": "gov.states.il.tax.income.rate", - "description": "Illinois taxes personal income at the following rate.", - "label": "Illinois tax rate", - "unit": "/1", - "period": "year", - "values": { - "2017-07-01": 0.0495, - "2015-07-01": 0.0375, - "2011-07-01": 0.05, - "1990-07-01": 0.03, - "1989-07-01": 0.0275, - "1985-07-01": 0.025, - "1984-07-01": 0.0275, - "1983-07-01": 0.03, - "1969-07-01": 0.025 - }, - "economy": true, - "household": true - }, - "gov.states.il.tax.income.use_tax": { - "type": "parameterNode", - "parameter": "gov.states.il.tax.income.use_tax", - "description": null, - "label": "use tax", - "economy": true, - "household": true - }, - "gov.states.il.tax.income.use_tax.amount": { - "type": "parameterNode", - "parameter": "gov.states.il.tax.income.use_tax.amount", - "description": "Illinois Use Tax Amount", - "label": "Illinois Use Tax Amount" - }, - "gov.states.il.tax.income.use_tax.amount[0]": { - "type": "parameterNode", - "parameter": "gov.states.il.tax.income.use_tax.amount[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.il.tax.income.use_tax.amount[0].threshold": { - "type": "parameter", - "parameter": "gov.states.il.tax.income.use_tax.amount[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.il.tax.income.use_tax.amount[0].amount": { - "type": "parameter", - "parameter": "gov.states.il.tax.income.use_tax.amount[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 3, - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.states.il.tax.income.use_tax.amount[1]": { - "type": "parameterNode", - "parameter": "gov.states.il.tax.income.use_tax.amount[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.il.tax.income.use_tax.amount[1].threshold": { - "type": "parameter", - "parameter": "gov.states.il.tax.income.use_tax.amount[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 10001, - "2015-01-01": 10001 - }, - "economy": true, - "household": true - }, - "gov.states.il.tax.income.use_tax.amount[1].amount": { - "type": "parameter", - "parameter": "gov.states.il.tax.income.use_tax.amount[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 8, - "2015-01-01": 8 - }, - "economy": true, - "household": true - }, - "gov.states.il.tax.income.use_tax.amount[2]": { - "type": "parameterNode", - "parameter": "gov.states.il.tax.income.use_tax.amount[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.il.tax.income.use_tax.amount[2].threshold": { - "type": "parameter", - "parameter": "gov.states.il.tax.income.use_tax.amount[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 20001, - "2015-01-01": 20001 - }, - "economy": true, - "household": true - }, - "gov.states.il.tax.income.use_tax.amount[2].amount": { - "type": "parameter", - "parameter": "gov.states.il.tax.income.use_tax.amount[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 13, - "2015-01-01": 13 - }, - "economy": true, - "household": true - }, - "gov.states.il.tax.income.use_tax.amount[3]": { - "type": "parameterNode", - "parameter": "gov.states.il.tax.income.use_tax.amount[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.il.tax.income.use_tax.amount[3].threshold": { - "type": "parameter", - "parameter": "gov.states.il.tax.income.use_tax.amount[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 30001, - "2015-01-01": 30001 - }, - "economy": true, - "household": true - }, - "gov.states.il.tax.income.use_tax.amount[3].amount": { - "type": "parameter", - "parameter": "gov.states.il.tax.income.use_tax.amount[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 18, - "2015-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.states.il.tax.income.use_tax.amount[4]": { - "type": "parameterNode", - "parameter": "gov.states.il.tax.income.use_tax.amount[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.il.tax.income.use_tax.amount[4].threshold": { - "type": "parameter", - "parameter": "gov.states.il.tax.income.use_tax.amount[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 40001, - "2015-01-01": 40001 - }, - "economy": true, - "household": true - }, - "gov.states.il.tax.income.use_tax.amount[4].amount": { - "type": "parameter", - "parameter": "gov.states.il.tax.income.use_tax.amount[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 23, - "2015-01-01": 23 - }, - "economy": true, - "household": true - }, - "gov.states.il.tax.income.use_tax.amount[5]": { - "type": "parameterNode", - "parameter": "gov.states.il.tax.income.use_tax.amount[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.il.tax.income.use_tax.amount[5].threshold": { - "type": "parameter", - "parameter": "gov.states.il.tax.income.use_tax.amount[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 50001, - "2015-01-01": 50001 - }, - "economy": true, - "household": true - }, - "gov.states.il.tax.income.use_tax.amount[5].amount": { - "type": "parameter", - "parameter": "gov.states.il.tax.income.use_tax.amount[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 31, - "2015-01-01": 31 - }, - "economy": true, - "household": true - }, - "gov.states.il.tax.income.use_tax.amount[6]": { - "type": "parameterNode", - "parameter": "gov.states.il.tax.income.use_tax.amount[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.il.tax.income.use_tax.amount[6].threshold": { - "type": "parameter", - "parameter": "gov.states.il.tax.income.use_tax.amount[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 75001, - "2015-01-01": 75001 - }, - "economy": true, - "household": true - }, - "gov.states.il.tax.income.use_tax.amount[6].amount": { - "type": "parameter", - "parameter": "gov.states.il.tax.income.use_tax.amount[6].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 44, - "2015-01-01": 44 - }, - "economy": true, - "household": true - }, - "gov.states.il.tax.income.use_tax.amount[7]": { - "type": "parameterNode", - "parameter": "gov.states.il.tax.income.use_tax.amount[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.il.tax.income.use_tax.amount[7].threshold": { - "type": "parameter", - "parameter": "gov.states.il.tax.income.use_tax.amount[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 100001, - "2015-01-01": 100001 - }, - "economy": true, - "household": true - }, - "gov.states.il.tax.income.use_tax.amount[7].amount": { - "type": "parameter", - "parameter": "gov.states.il.tax.income.use_tax.amount[7].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.il.tax.income.use_tax.rate": { - "type": "parameterNode", - "parameter": "gov.states.il.tax.income.use_tax.rate", - "description": "Illinois Use Tax Rate (if greater than $100,000)", - "label": "Illinois Use Tax Rate" - }, - "gov.states.il.tax.income.use_tax.rate[0]": { - "type": "parameterNode", - "parameter": "gov.states.il.tax.income.use_tax.rate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.il.tax.income.use_tax.rate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.il.tax.income.use_tax.rate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.il.tax.income.use_tax.rate[0].amount": { - "type": "parameter", - "parameter": "gov.states.il.tax.income.use_tax.rate[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.il.tax.income.use_tax.rate[1]": { - "type": "parameterNode", - "parameter": "gov.states.il.tax.income.use_tax.rate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.il.tax.income.use_tax.rate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.il.tax.income.use_tax.rate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 100001, - "2015-01-01": 100001 - }, - "economy": true, - "household": true - }, - "gov.states.il.tax.income.use_tax.rate[1].amount": { - "type": "parameter", - "parameter": "gov.states.il.tax.income.use_tax.rate[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0005, - "2015-01-01": 0.0005 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs", - "description": null, - "label": "Department of Human Services (DHS)", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd", - "description": null, - "label": "Aid to the Aged, Blind or Disabled (AABD)", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.asset": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.asset", - "description": null, - "label": "asset", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.asset.vehicle_exemption": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.asset.vehicle_exemption", - "description": null, - "label": "vehicle exemption", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.asset.vehicle_exemption.amount": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.asset.vehicle_exemption.amount", - "description": "Illinois exempts this amount from the vehicle value under the Aid to the Aged, Blind or Disabled program.", - "label": "Illinois AABD vehicle exemption amount", - "unit": "currency-USD", - "period": "month", - "values": { - "2013-01-01": 4500 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.asset.sources": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.asset.sources", - "description": "Illinois counts these sources as countable assets under the Aid to the Aged, Blind or Disabled program.", - "label": "Illinois AABD household assets", - "unit": "list", - "period": "month", - "values": { - "2021-01-01": [ - "spm_unit_cash_assets", - "retirement_distributions", - "il_aabd_countable_vehicle_value" - ], - "2015-01-01": [ - "spm_unit_cash_assets", - "retirement_distributions", - "il_aabd_countable_vehicle_value" - ] - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.asset.disregard": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.asset.disregard", - "description": null, - "label": "disregard", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.asset.disregard.base": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.asset.disregard.base", - "description": "Illinois disregards this amount of assets under the Aid to the Aged, Blind or Disabled program, based on household size.", - "label": "Illinois AABD asset disregard base amount", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.asset.disregard.base.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.asset.disregard.base.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "1989-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.asset.disregard.base.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.asset.disregard.base.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "1989-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.asset.disregard.additional": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.asset.disregard.additional", - "description": "Illinois disregards this amount of assets for each additional applicant under the Aid to the Aged, Blind or Disabled program.", - "label": "Illinois AABD asset disregard additional amount", - "unit": "currency-USD", - "period": "month", - "values": { - "1989-01-01": 50 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.qualified_noncitizen_status": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.qualified_noncitizen_status", - "description": "Illinois considers these statuses as qualified noncitizens under the Aid to the Aged, Blind or Disabled program.", - "label": "Illinois AABD qualified noncitizen statuses", - "unit": "list", - "period": "year", - "values": { - "1975-01-01": [ - "HONORABLY_DISCHARGED_VETERAN", - "REFUGEE", - "ASYLEE", - "DEPORTATION_WITHHELD", - "CONDITIONAL_ENTRANT", - "LEGAL_PERMANENT_RESIDENT", - "PAROLED_ONE_YEAR", - "VICTIMS_OF_TRAFFICKING" - ] - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.aged_age_threshold": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.aged_age_threshold", - "description": "Illinois limits the Aid to the Aged, Blind or Disabled program to households with at least one member of this age or older.", - "label": "Illinois AABD aged age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.income": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.income.exemption": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.income.exemption", - "description": null, - "label": "exemption", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.income.exemption.child_care": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.income.exemption.child_care", - "description": "Illinois exempts this amount of child care expenses from the gross earned income under the Aid to the Aged, Blind or Disabled program, based on monthly hours worked.", - "label": "Illinois AABD child care expenses exemption amount" - }, - "gov.states.il.dhs.aabd.income.exemption.child_care[0]": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.income.exemption.child_care[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.il.dhs.aabd.income.exemption.child_care[0].threshold": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.income.exemption.child_care[0].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "1991-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.income.exemption.child_care[0].amount": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.income.exemption.child_care[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1991-01-01": 128 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.income.exemption.child_care[1]": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.income.exemption.child_care[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.il.dhs.aabd.income.exemption.child_care[1].threshold": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.income.exemption.child_care[1].threshold", - "description": null, - "label": "threshold", - "unit": "int", - "period": null, - "values": { - "1991-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.income.exemption.child_care[1].amount": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.income.exemption.child_care[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1991-01-01": 160 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.income.exemption.sources": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.income.exemption.sources", - "description": "Illinois counts the following expense sources as exempted from earned income under the Aid to the Aged, Blind or Disabled program.", - "label": "Illinois AABD expenses exemption sources", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": [ - "state_withheld_income_tax", - "employee_social_security_tax", - "il_aabd_child_care_expense_exemption" - ], - "2015-01-01": [ - "state_withheld_income_tax", - "employee_social_security_tax", - "il_aabd_child_care_expense_exemption" - ] - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.income.exemption.flat": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.income.exemption.flat", - "description": "Illinois exempts this flat amount from gross income under the Aid to the Aged, Blind or Disabled program.", - "label": "Illinois AABD gross income exemption flat amount", - "unit": "currency-USD", - "period": "month", - "values": { - "2009-01-01": 25 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.income.exemption.blind": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.income.exemption.blind", - "description": "Illinois exempts a fraction of amount from blind earned income under the Aid to the Aged, Blind or Disabled program.", - "label": "Illinois AABD blind earned income exemption rate" - }, - "gov.states.il.dhs.aabd.income.exemption.blind[0]": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.income.exemption.blind[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.il.dhs.aabd.income.exemption.blind[0].rate": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.income.exemption.blind[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2009-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.income.exemption.blind[0].threshold": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.income.exemption.blind[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2009-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.income.exemption.blind[1]": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.income.exemption.blind[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.il.dhs.aabd.income.exemption.blind[1].rate": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.income.exemption.blind[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2009-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.income.exemption.blind[1].threshold": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.income.exemption.blind[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2009-01-01": 85 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.income.exemption.elderly_or_disabled": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.income.exemption.elderly_or_disabled", - "description": "Illinois exempts a fraction of amount from elderly or disabled earned income under the Aid to the Aged, Blind or Disabled program.", - "label": "Illinois AABD elderly or disabled earned income exemption rate" - }, - "gov.states.il.dhs.aabd.income.exemption.elderly_or_disabled[0]": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.income.exemption.elderly_or_disabled[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.il.dhs.aabd.income.exemption.elderly_or_disabled[0].rate": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.income.exemption.elderly_or_disabled[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2009-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.income.exemption.elderly_or_disabled[0].threshold": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.income.exemption.elderly_or_disabled[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2009-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.income.exemption.elderly_or_disabled[1]": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.income.exemption.elderly_or_disabled[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.il.dhs.aabd.income.exemption.elderly_or_disabled[1].rate": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.income.exemption.elderly_or_disabled[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2009-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.income.exemption.elderly_or_disabled[1].threshold": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.income.exemption.elderly_or_disabled[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2009-01-01": 20 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.income.exemption.elderly_or_disabled[2]": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.income.exemption.elderly_or_disabled[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.il.dhs.aabd.income.exemption.elderly_or_disabled[2].rate": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.income.exemption.elderly_or_disabled[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2009-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.income.exemption.elderly_or_disabled[2].threshold": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.income.exemption.elderly_or_disabled[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2009-01-01": 80 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.income.sources": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.income.sources", - "description": null, - "label": "sources", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.income.sources.earned": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.income.sources.earned", - "description": "Illinois counts the following income sources as earned income under the Aid to the Aged, Blind or Disabled program.", - "label": "Illinois AABD earned income sources", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": ["employment_income", "self_employment_income", "rental_income"], - "2015-01-01": ["employment_income", "self_employment_income", "rental_income"] - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.income.sources.unearned": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.income.sources.unearned", - "description": "Illinois counts the following income sources as unearned income under the Aid to the Aged, Blind or Disabled program.", - "label": "Illinois AABD unearned income sources", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": [ - "social_security", - "ssi", - "disability_benefits", - "workers_compensation", - "unemployment_compensation", - "retirement_distributions", - "alimony_income", - "dividend_income", - "interest_income", - "farm_income", - "farm_rent_income", - "capital_gains", - "debt_relief", - "illicit_income", - "miscellaneous_income" - ], - "2015-01-01": [ - "social_security", - "ssi", - "disability_benefits", - "workers_compensation", - "unemployment_compensation", - "retirement_distributions", - "alimony_income", - "dividend_income", - "interest_income", - "farm_income", - "farm_rent_income", - "capital_gains", - "debt_relief", - "illicit_income", - "miscellaneous_income" - ] - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment", - "description": null, - "label": "payment", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.grant_amount": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.grant_amount", - "description": "Illinois provides this grant amount under the Aid to the Aged, Blind or Disabled program.", - "label": "Illinois AABD grant amount", - "unit": "currency-USD", - "period": "month", - "values": { - "2025-01-01": 788.9, - "2024-01-01": 764.9, - "2023-01-01": 735.9, - "2022-01-01": 662.9, - "2021-01-01": 615.9, - "2020-01-01": 604.9, - "2019-01-01": 592.9, - "2018-01-01": 571.9, - "2015-01-01": 571.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.personal_allowance": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.personal_allowance", - "description": null, - "label": "personal allowance", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.personal_allowance.active": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.personal_allowance.active", - "description": "Illinois provides this amount of personal allowance to an active applicant under the Aid to the Aged, Blind or Disabled program, based on household size.", - "label": "Illinois AABD active applicant personal allowance", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.personal_allowance.active.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.personal_allowance.active.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 62.43, - "2015-01-01": 62.43 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.personal_allowance.active.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.personal_allowance.active.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 57.25, - "2015-01-01": 57.25 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.personal_allowance.active.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.personal_allowance.active.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 53.71, - "2015-01-01": 53.71 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.personal_allowance.active.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.personal_allowance.active.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 53.71, - "2015-01-01": 53.71 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.personal_allowance.active.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.personal_allowance.active.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 53.71, - "2015-01-01": 53.71 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.personal_allowance.active.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.personal_allowance.active.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 53.71, - "2015-01-01": 53.71 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.personal_allowance.active.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.personal_allowance.active.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 53.71, - "2015-01-01": 53.71 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.personal_allowance.active.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.personal_allowance.active.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 52.91, - "2015-01-01": 52.91 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.personal_allowance.bedfast": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.personal_allowance.bedfast", - "description": "Illinois provides this amount of personal allowance to a bedfast applicant under the Aid to the Aged, Blind or Disabled program, based on household size.", - "label": "Illinois AABD bedfast applicant personal allowance", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.personal_allowance.bedfast.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.personal_allowance.bedfast.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 48.11, - "2015-01-01": 48.11 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.personal_allowance.bedfast.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.personal_allowance.bedfast.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 43.97, - "2015-01-01": 43.97 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.personal_allowance.bedfast.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.personal_allowance.bedfast.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 40.67, - "2015-01-01": 40.67 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.personal_allowance.bedfast.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.personal_allowance.bedfast.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 40.67, - "2015-01-01": 40.67 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.personal_allowance.bedfast.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.personal_allowance.bedfast.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 40.67, - "2015-01-01": 40.67 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.personal_allowance.bedfast.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.personal_allowance.bedfast.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 40.67, - "2015-01-01": 40.67 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.personal_allowance.bedfast.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.personal_allowance.bedfast.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 40.67, - "2015-01-01": 40.67 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.personal_allowance.bedfast.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.personal_allowance.bedfast.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 39.96, - "2015-01-01": 39.96 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility", - "description": null, - "label": "utility", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal", - "description": "Illinois provides this coal allowance amount under the Aid to the Aged, Blind or Disabled program, based on household size and area.", - "label": "Illinois AABD coal allowance by area", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_1": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_1", - "description": null, - "label": "AREA 1", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_1.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_1.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 23.35, - "2015-01-01": 23.35 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_1.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_1.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 23.85, - "2015-01-01": 23.85 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_1.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_1.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 24.2, - "2015-01-01": 24.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_1.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_1.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 24.2, - "2015-01-01": 24.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_1.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_1.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 25.1, - "2015-01-01": 25.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_1.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_1.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 25.1, - "2015-01-01": 25.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_1.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_1.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 25.1, - "2015-01-01": 25.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_1.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_1.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 25.1, - "2015-01-01": 25.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_1.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_1.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 25.1, - "2015-01-01": 25.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_1.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_1.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 25.1, - "2015-01-01": 25.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_1.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_1.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 25.1, - "2015-01-01": 25.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_1.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_1.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 25.1, - "2015-01-01": 25.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_1.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_1.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 25.1, - "2015-01-01": 25.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_1.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_1.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 25.1, - "2015-01-01": 25.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_1.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_1.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 25.1, - "2015-01-01": 25.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_1.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_1.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 25.1, - "2015-01-01": 25.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_1.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_1.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 25.1, - "2015-01-01": 25.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_1.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_1.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 25.1, - "2015-01-01": 25.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_1.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_1.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 25.1, - "2015-01-01": 25.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_2": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_2", - "description": null, - "label": "AREA 2", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_2.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_2.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 20.35, - "2015-01-01": 20.35 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_2.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_2.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 21.7, - "2015-01-01": 21.7 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_2.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_2.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 21.7, - "2015-01-01": 21.7 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_2.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_2.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 21.7, - "2015-01-01": 21.7 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_2.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_2.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 24.2, - "2015-01-01": 24.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_2.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_2.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 24.2, - "2015-01-01": 24.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_2.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_2.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 25.1, - "2015-01-01": 25.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_2.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_2.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 25.1, - "2015-01-01": 25.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_2.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_2.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 25.1, - "2015-01-01": 25.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_2.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_2.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 25.1, - "2015-01-01": 25.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_2.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_2.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 25.1, - "2015-01-01": 25.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_2.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_2.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 25.1, - "2015-01-01": 25.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_2.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_2.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 25.1, - "2015-01-01": 25.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_2.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_2.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 25.1, - "2015-01-01": 25.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_2.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_2.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 25.1, - "2015-01-01": 25.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_2.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_2.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 25.1, - "2015-01-01": 25.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_2.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_2.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 25.1, - "2015-01-01": 25.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_2.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_2.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 25.1, - "2015-01-01": 25.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_2.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_2.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 25.1, - "2015-01-01": 25.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_3": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_3", - "description": null, - "label": "AREA 3", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_3.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_3.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 15.75, - "2015-01-01": 15.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_3.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_3.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 15.75, - "2015-01-01": 15.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_3.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_3.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 17.8, - "2015-01-01": 17.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_3.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_3.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 17.8, - "2015-01-01": 17.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_3.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_3.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.48, - "2015-01-01": 19.48 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_3.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_3.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.48, - "2015-01-01": 19.48 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_3.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_3.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.48, - "2015-01-01": 19.48 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_3.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_3.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.48, - "2015-01-01": 19.48 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_3.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_3.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.48, - "2015-01-01": 19.48 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_3.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_3.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.48, - "2015-01-01": 19.48 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_3.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_3.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.48, - "2015-01-01": 19.48 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_3.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_3.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.48, - "2015-01-01": 19.48 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_3.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_3.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.48, - "2015-01-01": 19.48 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_3.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_3.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.48, - "2015-01-01": 19.48 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_3.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_3.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.48, - "2015-01-01": 19.48 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_3.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_3.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.48, - "2015-01-01": 19.48 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_3.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_3.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.48, - "2015-01-01": 19.48 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_3.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_3.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.48, - "2015-01-01": 19.48 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_3.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_3.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.48, - "2015-01-01": 19.48 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_4": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_4", - "description": null, - "label": "AREA 4", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_4.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_4.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 13.6, - "2015-01-01": 13.6 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_4.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_4.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 13.6, - "2015-01-01": 13.6 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_4.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_4.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 13.6, - "2015-01-01": 13.6 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_4.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_4.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 13.6, - "2015-01-01": 13.6 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_4.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_4.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_4.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_4.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_4.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_4.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_4.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_4.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_4.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_4.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_4.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_4.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_4.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_4.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_4.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_4.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_4.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_4.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_4.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_4.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_4.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_4.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_4.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_4.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_4.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_4.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_4.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_4.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_4.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_4.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_5": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_5", - "description": null, - "label": "AREA 5", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_5.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_5.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 15.3, - "2015-01-01": 15.3 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_5.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_5.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 15.3, - "2015-01-01": 15.3 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_5.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_5.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 15.75, - "2015-01-01": 15.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_5.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_5.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 15.75, - "2015-01-01": 15.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_5.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_5.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 16.55, - "2015-01-01": 16.55 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_5.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_5.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 16.55, - "2015-01-01": 16.55 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_5.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_5.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 17.8, - "2015-01-01": 17.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_5.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_5.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 17.8, - "2015-01-01": 17.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_5.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_5.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 17.8, - "2015-01-01": 17.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_5.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_5.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 17.8, - "2015-01-01": 17.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_5.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_5.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 17.8, - "2015-01-01": 17.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_5.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_5.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 17.8, - "2015-01-01": 17.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_5.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_5.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 17.8, - "2015-01-01": 17.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_5.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_5.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 17.8, - "2015-01-01": 17.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_5.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_5.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 17.8, - "2015-01-01": 17.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_5.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_5.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 17.8, - "2015-01-01": 17.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_5.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_5.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 17.8, - "2015-01-01": 17.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_5.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_5.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 17.8, - "2015-01-01": 17.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_5.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_5.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 17.8, - "2015-01-01": 17.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_6": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_6", - "description": null, - "label": "AREA 6", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_6.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_6.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 11.1, - "2015-01-01": 11.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_6.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_6.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 11.45, - "2015-01-01": 11.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_6.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_6.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 12.35, - "2015-01-01": 12.35 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_6.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_6.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 12.35, - "2015-01-01": 12.35 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_6.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_6.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 12.35, - "2015-01-01": 12.35 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_6.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_6.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 12.35, - "2015-01-01": 12.35 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_6.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_6.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 12.75, - "2015-01-01": 12.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_6.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_6.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 12.75, - "2015-01-01": 12.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_6.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_6.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 12.75, - "2015-01-01": 12.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_6.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_6.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 12.75, - "2015-01-01": 12.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_6.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_6.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 12.75, - "2015-01-01": 12.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_6.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_6.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 12.75, - "2015-01-01": 12.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_6.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_6.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 12.75, - "2015-01-01": 12.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_6.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_6.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 12.75, - "2015-01-01": 12.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_6.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_6.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 12.75, - "2015-01-01": 12.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_6.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_6.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 12.75, - "2015-01-01": 12.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_6.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_6.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 12.75, - "2015-01-01": 12.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_6.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_6.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 12.75, - "2015-01-01": 12.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_6.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_6.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 12.75, - "2015-01-01": 12.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_7": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_7", - "description": null, - "label": "AREA 7", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_7.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_7.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 11.1, - "2015-01-01": 11.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_7.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_7.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 11.45, - "2015-01-01": 11.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_7.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_7.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 12.35, - "2015-01-01": 12.35 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_7.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_7.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 12.35, - "2015-01-01": 12.35 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_7.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_7.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 12.75, - "2015-01-01": 12.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_7.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_7.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 12.75, - "2015-01-01": 12.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_7.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_7.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 12.75, - "2015-01-01": 12.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_7.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_7.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 12.75, - "2015-01-01": 12.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_7.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_7.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 12.75, - "2015-01-01": 12.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_7.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_7.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 12.75, - "2015-01-01": 12.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_7.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_7.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 12.75, - "2015-01-01": 12.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_7.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_7.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 12.75, - "2015-01-01": 12.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_7.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_7.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 12.75, - "2015-01-01": 12.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_7.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_7.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 12.75, - "2015-01-01": 12.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_7.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_7.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 12.75, - "2015-01-01": 12.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_7.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_7.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 12.75, - "2015-01-01": 12.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_7.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_7.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 12.75, - "2015-01-01": 12.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_7.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_7.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 12.75, - "2015-01-01": 12.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_7.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_7.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 12.75, - "2015-01-01": 12.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_8": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_8", - "description": null, - "label": "AREA 8", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_8.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_8.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.9, - "2015-01-01": 8.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_8.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_8.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.9, - "2015-01-01": 8.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_8.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_8.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.35, - "2015-01-01": 9.35 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_8.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_8.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.35, - "2015-01-01": 9.35 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_8.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_8.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.35, - "2015-01-01": 9.35 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_8.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_8.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.35, - "2015-01-01": 9.35 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_8.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_8.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.75, - "2015-01-01": 9.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_8.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_8.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.75, - "2015-01-01": 9.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_8.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_8.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.75, - "2015-01-01": 9.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_8.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_8.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.75, - "2015-01-01": 9.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_8.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_8.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.75, - "2015-01-01": 9.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_8.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_8.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.75, - "2015-01-01": 9.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_8.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_8.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.75, - "2015-01-01": 9.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_8.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_8.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.75, - "2015-01-01": 9.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_8.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_8.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.75, - "2015-01-01": 9.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_8.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_8.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.75, - "2015-01-01": 9.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_8.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_8.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.75, - "2015-01-01": 9.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_8.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_8.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.75, - "2015-01-01": 9.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.coal.AREA_8.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.coal.AREA_8.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.75, - "2015-01-01": 9.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water", - "description": "Illinois provides this water allowance amount under the Aid to the Aged, Blind or Disabled program, based on household size and area.", - "label": "Illinois AABD water allowance by area", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_1": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_1", - "description": null, - "label": "AREA 1", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_1.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_1.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 3.8, - "2015-01-01": 3.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_1.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_1.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 3.8, - "2015-01-01": 3.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_1.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_1.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 4.45, - "2015-01-01": 4.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_1.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_1.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 4.45, - "2015-01-01": 4.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_1.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_1.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 5.1, - "2015-01-01": 5.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_1.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_1.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 5.1, - "2015-01-01": 5.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_1.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_1.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 5.7, - "2015-01-01": 5.7 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_1.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_1.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 5.7, - "2015-01-01": 5.7 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_1.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_1.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 6.4, - "2015-01-01": 6.4 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_1.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_1.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 6.4, - "2015-01-01": 6.4 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_1.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_1.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7, - "2015-01-01": 7 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_1.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_1.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7, - "2015-01-01": 7 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_1.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_1.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.65, - "2015-01-01": 7.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_1.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_1.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.65, - "2015-01-01": 7.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_1.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_1.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.3, - "2015-01-01": 8.3 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_1.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_1.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.3, - "2015-01-01": 8.3 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_1.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_1.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.9, - "2015-01-01": 8.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_1.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_1.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.9, - "2015-01-01": 8.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_1.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_1.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.55, - "2015-01-01": 9.55 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_2": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_2", - "description": null, - "label": "AREA 2", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_2.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_2.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 3.8, - "2015-01-01": 3.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_2.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_2.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 3.8, - "2015-01-01": 3.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_2.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_2.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 4.45, - "2015-01-01": 4.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_2.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_2.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 4.45, - "2015-01-01": 4.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_2.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_2.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 5.1, - "2015-01-01": 5.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_2.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_2.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 5.1, - "2015-01-01": 5.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_2.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_2.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 5.7, - "2015-01-01": 5.7 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_2.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_2.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 5.7, - "2015-01-01": 5.7 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_2.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_2.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 6.4, - "2015-01-01": 6.4 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_2.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_2.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 6.4, - "2015-01-01": 6.4 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_2.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_2.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7, - "2015-01-01": 7 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_2.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_2.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7, - "2015-01-01": 7 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_2.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_2.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.65, - "2015-01-01": 7.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_2.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_2.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.65, - "2015-01-01": 7.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_2.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_2.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.3, - "2015-01-01": 8.3 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_2.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_2.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.3, - "2015-01-01": 8.3 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_2.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_2.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.9, - "2015-01-01": 8.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_2.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_2.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.9, - "2015-01-01": 8.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_2.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_2.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.55, - "2015-01-01": 9.55 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_3": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_3", - "description": null, - "label": "AREA 3", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_3.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_3.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 3.8, - "2015-01-01": 3.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_3.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_3.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 3.8, - "2015-01-01": 3.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_3.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_3.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 4.45, - "2015-01-01": 4.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_3.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_3.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 4.45, - "2015-01-01": 4.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_3.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_3.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 5.1, - "2015-01-01": 5.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_3.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_3.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 5.1, - "2015-01-01": 5.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_3.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_3.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 5.7, - "2015-01-01": 5.7 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_3.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_3.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 5.7, - "2015-01-01": 5.7 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_3.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_3.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 6.4, - "2015-01-01": 6.4 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_3.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_3.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 6.4, - "2015-01-01": 6.4 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_3.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_3.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7, - "2015-01-01": 7 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_3.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_3.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7, - "2015-01-01": 7 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_3.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_3.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.65, - "2015-01-01": 7.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_3.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_3.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.65, - "2015-01-01": 7.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_3.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_3.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.3, - "2015-01-01": 8.3 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_3.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_3.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.3, - "2015-01-01": 8.3 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_3.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_3.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.9, - "2015-01-01": 8.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_3.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_3.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.9, - "2015-01-01": 8.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_3.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_3.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.55, - "2015-01-01": 9.55 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_4": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_4", - "description": null, - "label": "AREA 4", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_4.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_4.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 3.8, - "2015-01-01": 3.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_4.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_4.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 3.8, - "2015-01-01": 3.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_4.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_4.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 4.45, - "2015-01-01": 4.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_4.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_4.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 4.45, - "2015-01-01": 4.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_4.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_4.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 5.1, - "2015-01-01": 5.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_4.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_4.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 5.1, - "2015-01-01": 5.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_4.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_4.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 5.7, - "2015-01-01": 5.7 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_4.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_4.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 5.7, - "2015-01-01": 5.7 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_4.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_4.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 6.4, - "2015-01-01": 6.4 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_4.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_4.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 6.4, - "2015-01-01": 6.4 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_4.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_4.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7, - "2015-01-01": 7 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_4.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_4.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7, - "2015-01-01": 7 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_4.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_4.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.65, - "2015-01-01": 7.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_4.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_4.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.65, - "2015-01-01": 7.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_4.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_4.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.3, - "2015-01-01": 8.3 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_4.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_4.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.3, - "2015-01-01": 8.3 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_4.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_4.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.9, - "2015-01-01": 8.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_4.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_4.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.9, - "2015-01-01": 8.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_4.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_4.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.55, - "2015-01-01": 9.55 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_5": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_5", - "description": null, - "label": "AREA 5", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_5.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_5.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 3.8, - "2015-01-01": 3.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_5.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_5.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 3.8, - "2015-01-01": 3.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_5.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_5.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 4.45, - "2015-01-01": 4.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_5.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_5.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 4.45, - "2015-01-01": 4.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_5.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_5.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 5.1, - "2015-01-01": 5.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_5.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_5.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 5.1, - "2015-01-01": 5.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_5.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_5.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 5.7, - "2015-01-01": 5.7 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_5.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_5.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 5.7, - "2015-01-01": 5.7 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_5.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_5.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 6.4, - "2015-01-01": 6.4 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_5.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_5.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 6.4, - "2015-01-01": 6.4 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_5.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_5.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7, - "2015-01-01": 7 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_5.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_5.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7, - "2015-01-01": 7 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_5.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_5.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.65, - "2015-01-01": 7.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_5.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_5.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.65, - "2015-01-01": 7.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_5.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_5.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.3, - "2015-01-01": 8.3 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_5.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_5.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.3, - "2015-01-01": 8.3 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_5.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_5.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.9, - "2015-01-01": 8.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_5.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_5.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.9, - "2015-01-01": 8.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_5.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_5.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.55, - "2015-01-01": 9.55 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_6": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_6", - "description": null, - "label": "AREA 6", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_6.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_6.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 5.1, - "2015-01-01": 5.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_6.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_6.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 5.1, - "2015-01-01": 5.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_6.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_6.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 5.7, - "2015-01-01": 5.7 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_6.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_6.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 5.7, - "2015-01-01": 5.7 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_6.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_6.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7, - "2015-01-01": 7 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_6.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_6.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7, - "2015-01-01": 7 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_6.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_6.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.65, - "2015-01-01": 7.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_6.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_6.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.65, - "2015-01-01": 7.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_6.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_6.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.3, - "2015-01-01": 8.3 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_6.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_6.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.3, - "2015-01-01": 8.3 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_6.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_6.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.9, - "2015-01-01": 8.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_6.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_6.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.9, - "2015-01-01": 8.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_6.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_6.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.55, - "2015-01-01": 9.55 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_6.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_6.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.55, - "2015-01-01": 9.55 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_6.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_6.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.2, - "2015-01-01": 10.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_6.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_6.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.2, - "2015-01-01": 10.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_6.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_6.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.8, - "2015-01-01": 10.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_6.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_6.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.8, - "2015-01-01": 10.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_6.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_6.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 11.45, - "2015-01-01": 11.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_7": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_7", - "description": null, - "label": "AREA 7", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_7.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_7.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 5.1, - "2015-01-01": 5.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_7.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_7.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 5.1, - "2015-01-01": 5.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_7.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_7.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 5.7, - "2015-01-01": 5.7 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_7.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_7.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 5.7, - "2015-01-01": 5.7 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_7.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_7.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7, - "2015-01-01": 7 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_7.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_7.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7, - "2015-01-01": 7 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_7.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_7.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.65, - "2015-01-01": 7.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_7.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_7.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.65, - "2015-01-01": 7.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_7.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_7.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.3, - "2015-01-01": 8.3 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_7.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_7.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.3, - "2015-01-01": 8.3 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_7.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_7.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.9, - "2015-01-01": 8.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_7.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_7.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.9, - "2015-01-01": 8.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_7.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_7.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.55, - "2015-01-01": 9.55 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_7.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_7.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.55, - "2015-01-01": 9.55 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_7.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_7.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.2, - "2015-01-01": 10.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_7.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_7.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.2, - "2015-01-01": 10.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_7.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_7.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.8, - "2015-01-01": 10.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_7.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_7.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.8, - "2015-01-01": 10.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_7.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_7.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 11.45, - "2015-01-01": 11.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_8": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_8", - "description": null, - "label": "AREA 8", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_8.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_8.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 5.1, - "2015-01-01": 5.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_8.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_8.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 5.1, - "2015-01-01": 5.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_8.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_8.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 5.7, - "2015-01-01": 5.7 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_8.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_8.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 5.7, - "2015-01-01": 5.7 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_8.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_8.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7, - "2015-01-01": 7 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_8.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_8.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7, - "2015-01-01": 7 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_8.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_8.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.65, - "2015-01-01": 7.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_8.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_8.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.65, - "2015-01-01": 7.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_8.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_8.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.3, - "2015-01-01": 8.3 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_8.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_8.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.3, - "2015-01-01": 8.3 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_8.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_8.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.9, - "2015-01-01": 8.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_8.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_8.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.9, - "2015-01-01": 8.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_8.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_8.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.55, - "2015-01-01": 9.55 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_8.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_8.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.55, - "2015-01-01": 9.55 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_8.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_8.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.2, - "2015-01-01": 10.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_8.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_8.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.2, - "2015-01-01": 10.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_8.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_8.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.8, - "2015-01-01": 10.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_8.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_8.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.8, - "2015-01-01": 10.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.water.AREA_8.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.water.AREA_8.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 11.45, - "2015-01-01": 11.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.utility_types": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.utility_types", - "description": "Illinois counts these utility cost types which entitle the applicant to a specific utility allowance.", - "label": "IL AABD utility types", - "unit": "list", - "period": "month", - "values": { - "2010-01-01": [ - "water_expense", - "electricity_expense", - "cooking_fuel_expense", - "coal_expense", - "fuel_oil_expense", - "metered_gas_expense", - "bottled_gas_expense" - ] - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas", - "description": "Illinois provides this metered gas allowance amount under the Aid to the Aged, Blind or Disabled program, based on household size and area.", - "label": "Illinois AABD metered gas allowance by area", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_1": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_1", - "description": null, - "label": "AREA 1", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_1.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_1.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 11.9, - "2015-01-01": 11.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_1.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_1.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 13.2, - "2015-01-01": 13.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_1.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_1.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14.5, - "2015-01-01": 14.5 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_1.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_1.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14.5, - "2015-01-01": 14.5 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_1.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_1.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 15.75, - "2015-01-01": 15.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_1.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_1.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 15.75, - "2015-01-01": 15.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_1.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_1.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 16.15, - "2015-01-01": 16.15 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_1.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_1.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 16.15, - "2015-01-01": 16.15 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_1.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_1.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 16.15, - "2015-01-01": 16.15 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_1.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_1.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 16.15, - "2015-01-01": 16.15 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_1.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_1.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 16.15, - "2015-01-01": 16.15 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_1.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_1.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 16.15, - "2015-01-01": 16.15 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_1.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_1.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 16.15, - "2015-01-01": 16.15 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_1.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_1.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 16.15, - "2015-01-01": 16.15 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_1.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_1.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 16.15, - "2015-01-01": 16.15 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_1.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_1.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 16.15, - "2015-01-01": 16.15 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_1.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_1.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 16.15, - "2015-01-01": 16.15 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_1.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_1.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 16.15, - "2015-01-01": 16.15 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_1.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_1.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 16.15, - "2015-01-01": 16.15 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_2": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_2", - "description": null, - "label": "AREA 2", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_2.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_2.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.2, - "2015-01-01": 10.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_2.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_2.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 11.4, - "2015-01-01": 11.4 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_2.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_2.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 11.9, - "2015-01-01": 11.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_2.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_2.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 11.9, - "2015-01-01": 11.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_2.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_2.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 13.2, - "2015-01-01": 13.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_2.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_2.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 13.2, - "2015-01-01": 13.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_2.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_2.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_2.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_2.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_2.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_2.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_2.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_2.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_2.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_2.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_2.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_2.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_2.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_2.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_2.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_2.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_2.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_2.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_2.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_2.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_2.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_2.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_2.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_2.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_2.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_2.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_3": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_3", - "description": null, - "label": "AREA 3", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_3.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_3.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.2, - "2015-01-01": 10.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_3.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_3.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 11.45, - "2015-01-01": 11.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_3.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_3.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 11.9, - "2015-01-01": 11.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_3.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_3.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 11.9, - "2015-01-01": 11.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_3.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_3.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 13.2, - "2015-01-01": 13.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_3.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_3.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 13.2, - "2015-01-01": 13.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_3.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_3.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_3.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_3.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_3.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_3.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_3.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_3.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_3.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_3.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_3.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_3.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_3.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_3.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_3.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_3.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_3.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_3.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_3.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_3.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_3.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_3.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_3.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_3.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_3.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_3.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_4": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_4", - "description": null, - "label": "AREA 4", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_4.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_4.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.2, - "2015-01-01": 10.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_4.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_4.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 11.45, - "2015-01-01": 11.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_4.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_4.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 11.9, - "2015-01-01": 11.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_4.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_4.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 11.9, - "2015-01-01": 11.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_4.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_4.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 13.2, - "2015-01-01": 13.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_4.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_4.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 13.2, - "2015-01-01": 13.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_4.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_4.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_4.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_4.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_4.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_4.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_4.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_4.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_4.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_4.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_4.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_4.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_4.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_4.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_4.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_4.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_4.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_4.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_4.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_4.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_4.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_4.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_4.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_4.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_4.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_4.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_5": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_5", - "description": null, - "label": "AREA 5", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_5.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_5.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.2, - "2015-01-01": 10.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_5.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_5.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 11.45, - "2015-01-01": 11.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_5.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_5.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 11.9, - "2015-01-01": 11.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_5.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_5.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 11.9, - "2015-01-01": 11.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_5.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_5.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 13.2, - "2015-01-01": 13.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_5.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_5.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 13.2, - "2015-01-01": 13.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_5.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_5.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_5.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_5.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_5.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_5.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_5.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_5.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_5.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_5.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_5.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_5.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_5.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_5.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_5.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_5.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_5.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_5.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_5.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_5.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_5.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_5.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_5.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_5.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_5.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_5.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_6": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_6", - "description": null, - "label": "AREA 6", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_6.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_6.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.2, - "2015-01-01": 10.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_6.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_6.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 11.45, - "2015-01-01": 11.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_6.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_6.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 11.9, - "2015-01-01": 11.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_6.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_6.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 11.9, - "2015-01-01": 11.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_6.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_6.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 13.2, - "2015-01-01": 13.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_6.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_6.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 13.2, - "2015-01-01": 13.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_6.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_6.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_6.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_6.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_6.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_6.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_6.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_6.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_6.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_6.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_6.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_6.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_6.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_6.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_6.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_6.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_6.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_6.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_6.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_6.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_6.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_6.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_6.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_6.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_6.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_6.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_7": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_7", - "description": null, - "label": "AREA 7", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_7.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_7.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.2, - "2015-01-01": 10.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_7.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_7.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 11.45, - "2015-01-01": 11.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_7.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_7.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 11.9, - "2015-01-01": 11.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_7.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_7.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 11.9, - "2015-01-01": 11.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_7.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_7.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 13.2, - "2015-01-01": 13.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_7.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_7.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 13.2, - "2015-01-01": 13.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_7.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_7.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_7.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_7.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_7.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_7.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_7.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_7.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_7.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_7.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_7.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_7.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_7.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_7.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_7.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_7.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_7.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_7.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_7.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_7.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_7.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_7.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_7.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_7.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_7.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_7.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_8": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_8", - "description": null, - "label": "AREA 8", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_8.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_8.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.2, - "2015-01-01": 10.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_8.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_8.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 11.45, - "2015-01-01": 11.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_8.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_8.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 11.9, - "2015-01-01": 11.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_8.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_8.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 11.9, - "2015-01-01": 11.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_8.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_8.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 13.2, - "2015-01-01": 13.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_8.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_8.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 13.2, - "2015-01-01": 13.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_8.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_8.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_8.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_8.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_8.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_8.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_8.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_8.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_8.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_8.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_8.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_8.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_8.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_8.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_8.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_8.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_8.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_8.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_8.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_8.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_8.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_8.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_8.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_8.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_8.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.metered_gas.AREA_8.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity", - "description": "Illinois provides this electricity allowance amount under the Aid to the Aged, Blind or Disabled program, based on household size and area.", - "label": "Illinois AABD electricity allowance by area", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_1": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_1", - "description": null, - "label": "AREA 1", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_1.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_1.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 5.55, - "2015-01-01": 5.55 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_1.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_1.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 5.8, - "2015-01-01": 5.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_1.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_1.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 6.25, - "2015-01-01": 6.25 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_1.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_1.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 6.25, - "2015-01-01": 6.25 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_1.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_1.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 6.7, - "2015-01-01": 6.7 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_1.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_1.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 6.7, - "2015-01-01": 6.7 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_1.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_1.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.1, - "2015-01-01": 7.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_1.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_1.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.1, - "2015-01-01": 7.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_1.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_1.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.5, - "2015-01-01": 7.5 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_1.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_1.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.5, - "2015-01-01": 7.5 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_1.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_1.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.9, - "2015-01-01": 7.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_1.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_1.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.9, - "2015-01-01": 7.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_1.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_1.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.3, - "2015-01-01": 8.3 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_1.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_1.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.3, - "2015-01-01": 8.3 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_1.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_1.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.65, - "2015-01-01": 8.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_1.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_1.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.65, - "2015-01-01": 8.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_1.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_1.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.05, - "2015-01-01": 9.05 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_1.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_1.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.05, - "2015-01-01": 9.05 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_1.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_1.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.45, - "2015-01-01": 9.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_2": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_2", - "description": null, - "label": "AREA 2", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_2.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_2.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 6.8, - "2015-01-01": 6.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_2.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_2.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.35, - "2015-01-01": 7.35 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_2.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_2.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.65, - "2015-01-01": 7.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_2.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_2.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.65, - "2015-01-01": 7.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_2.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_2.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.3, - "2015-01-01": 8.3 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_2.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_2.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.3, - "2015-01-01": 8.3 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_2.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_2.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.65, - "2015-01-01": 8.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_2.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_2.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.65, - "2015-01-01": 8.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_2.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_2.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.05, - "2015-01-01": 9.05 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_2.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_2.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.05, - "2015-01-01": 9.05 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_2.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_2.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.45, - "2015-01-01": 9.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_2.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_2.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.45, - "2015-01-01": 9.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_2.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_2.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.8, - "2015-01-01": 9.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_2.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_2.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.8, - "2015-01-01": 9.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_2.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_2.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.2, - "2015-01-01": 10.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_2.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_2.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.2, - "2015-01-01": 10.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_2.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_2.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.6, - "2015-01-01": 10.6 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_2.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_2.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.6, - "2015-01-01": 10.6 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_2.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_2.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.95, - "2015-01-01": 10.95 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_3": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_3", - "description": null, - "label": "AREA 3", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_3.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_3.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 6.8, - "2015-01-01": 6.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_3.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_3.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.35, - "2015-01-01": 7.35 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_3.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_3.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.65, - "2015-01-01": 7.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_3.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_3.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.65, - "2015-01-01": 7.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_3.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_3.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.3, - "2015-01-01": 8.3 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_3.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_3.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.3, - "2015-01-01": 8.3 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_3.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_3.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.65, - "2015-01-01": 8.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_3.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_3.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.65, - "2015-01-01": 8.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_3.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_3.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.05, - "2015-01-01": 9.05 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_3.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_3.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.05, - "2015-01-01": 9.05 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_3.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_3.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.45, - "2015-01-01": 9.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_3.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_3.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.45, - "2015-01-01": 9.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_3.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_3.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.8, - "2015-01-01": 9.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_3.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_3.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.8, - "2015-01-01": 9.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_3.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_3.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.2, - "2015-01-01": 10.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_3.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_3.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.2, - "2015-01-01": 10.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_3.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_3.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.6, - "2015-01-01": 10.6 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_3.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_3.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.6, - "2015-01-01": 10.6 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_3.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_3.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.95, - "2015-01-01": 10.95 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_4": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_4", - "description": null, - "label": "AREA 4", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_4.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_4.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 6.8, - "2015-01-01": 6.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_4.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_4.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.35, - "2015-01-01": 7.35 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_4.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_4.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.65, - "2015-01-01": 7.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_4.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_4.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.65, - "2015-01-01": 7.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_4.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_4.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.3, - "2015-01-01": 8.3 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_4.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_4.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.3, - "2015-01-01": 8.3 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_4.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_4.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.65, - "2015-01-01": 8.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_4.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_4.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.65, - "2015-01-01": 8.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_4.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_4.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.05, - "2015-01-01": 9.05 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_4.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_4.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.05, - "2015-01-01": 9.05 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_4.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_4.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.45, - "2015-01-01": 9.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_4.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_4.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.45, - "2015-01-01": 9.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_4.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_4.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.8, - "2015-01-01": 9.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_4.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_4.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.8, - "2015-01-01": 9.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_4.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_4.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.2, - "2015-01-01": 10.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_4.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_4.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.2, - "2015-01-01": 10.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_4.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_4.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.6, - "2015-01-01": 10.6 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_4.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_4.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.6, - "2015-01-01": 10.6 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_4.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_4.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.95, - "2015-01-01": 10.95 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_5": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_5", - "description": null, - "label": "AREA 5", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_5.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_5.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 6.8, - "2015-01-01": 6.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_5.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_5.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.35, - "2015-01-01": 7.35 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_5.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_5.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.65, - "2015-01-01": 7.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_5.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_5.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.65, - "2015-01-01": 7.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_5.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_5.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.3, - "2015-01-01": 8.3 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_5.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_5.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.3, - "2015-01-01": 8.3 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_5.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_5.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.65, - "2015-01-01": 8.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_5.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_5.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.65, - "2015-01-01": 8.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_5.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_5.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.05, - "2015-01-01": 9.05 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_5.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_5.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.05, - "2015-01-01": 9.05 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_5.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_5.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.45, - "2015-01-01": 9.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_5.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_5.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.45, - "2015-01-01": 9.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_5.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_5.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.8, - "2015-01-01": 9.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_5.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_5.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.8, - "2015-01-01": 9.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_5.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_5.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.2, - "2015-01-01": 10.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_5.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_5.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.2, - "2015-01-01": 10.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_5.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_5.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.6, - "2015-01-01": 10.6 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_5.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_5.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.6, - "2015-01-01": 10.6 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_5.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_5.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.95, - "2015-01-01": 10.95 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_6": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_6", - "description": null, - "label": "AREA 6", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_6.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_6.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 5.55, - "2015-01-01": 5.55 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_6.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_6.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 5.8, - "2015-01-01": 5.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_6.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_6.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 6.25, - "2015-01-01": 6.25 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_6.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_6.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 6.25, - "2015-01-01": 6.25 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_6.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_6.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 6.7, - "2015-01-01": 6.7 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_6.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_6.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 6.7, - "2015-01-01": 6.7 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_6.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_6.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.1, - "2015-01-01": 7.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_6.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_6.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.1, - "2015-01-01": 7.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_6.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_6.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.5, - "2015-01-01": 7.5 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_6.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_6.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.5, - "2015-01-01": 7.5 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_6.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_6.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.9, - "2015-01-01": 7.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_6.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_6.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.9, - "2015-01-01": 7.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_6.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_6.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.3, - "2015-01-01": 8.3 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_6.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_6.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.3, - "2015-01-01": 8.3 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_6.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_6.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.65, - "2015-01-01": 8.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_6.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_6.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.65, - "2015-01-01": 8.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_6.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_6.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.05, - "2015-01-01": 9.05 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_6.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_6.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.05, - "2015-01-01": 9.05 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_6.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_6.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.45, - "2015-01-01": 9.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_7": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_7", - "description": null, - "label": "AREA 7", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_7.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_7.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 6.8, - "2015-01-01": 6.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_7.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_7.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.35, - "2015-01-01": 7.35 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_7.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_7.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.65, - "2015-01-01": 7.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_7.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_7.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.65, - "2015-01-01": 7.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_7.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_7.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.3, - "2015-01-01": 8.3 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_7.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_7.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.3, - "2015-01-01": 8.3 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_7.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_7.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.65, - "2015-01-01": 8.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_7.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_7.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.65, - "2015-01-01": 8.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_7.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_7.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.05, - "2015-01-01": 9.05 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_7.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_7.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.05, - "2015-01-01": 9.05 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_7.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_7.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.45, - "2015-01-01": 9.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_7.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_7.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.45, - "2015-01-01": 9.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_7.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_7.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.8, - "2015-01-01": 9.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_7.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_7.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.8, - "2015-01-01": 9.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_7.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_7.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.2, - "2015-01-01": 10.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_7.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_7.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.2, - "2015-01-01": 10.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_7.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_7.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.6, - "2015-01-01": 10.6 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_7.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_7.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.6, - "2015-01-01": 10.6 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_7.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_7.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.95, - "2015-01-01": 10.95 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_8": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_8", - "description": null, - "label": "AREA 8", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_8.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_8.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 6.8, - "2015-01-01": 6.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_8.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_8.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.35, - "2015-01-01": 7.35 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_8.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_8.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.65, - "2015-01-01": 7.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_8.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_8.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.65, - "2015-01-01": 7.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_8.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_8.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.3, - "2015-01-01": 8.3 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_8.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_8.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.3, - "2015-01-01": 8.3 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_8.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_8.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.65, - "2015-01-01": 8.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_8.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_8.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.65, - "2015-01-01": 8.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_8.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_8.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.05, - "2015-01-01": 9.05 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_8.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_8.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.05, - "2015-01-01": 9.05 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_8.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_8.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.45, - "2015-01-01": 9.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_8.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_8.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.45, - "2015-01-01": 9.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_8.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_8.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.8, - "2015-01-01": 9.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_8.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_8.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.8, - "2015-01-01": 9.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_8.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_8.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.2, - "2015-01-01": 10.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_8.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_8.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.2, - "2015-01-01": 10.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_8.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_8.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.6, - "2015-01-01": 10.6 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_8.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_8.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.6, - "2015-01-01": 10.6 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_8.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.electricity.AREA_8.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.95, - "2015-01-01": 10.95 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas", - "description": "Illinois provides this bottled gas allowance amount under the Aid to the Aged, Blind or Disabled program, based on household size and area.", - "label": "Illinois AABD bottled gas allowance by area", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_1": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_1", - "description": null, - "label": "AREA 1", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_1.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_1.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 17.45, - "2015-01-01": 17.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_1.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_1.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_1.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_1.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_1.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_1.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_1.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_1.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 20.85, - "2015-01-01": 20.85 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_1.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_1.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 20.85, - "2015-01-01": 20.85 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_1.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_1.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_1.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_1.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_1.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_1.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_1.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_1.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_1.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_1.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_1.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_1.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_1.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_1.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_1.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_1.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_1.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_1.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_1.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_1.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_1.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_1.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_1.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_1.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_1.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_1.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_2": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_2", - "description": null, - "label": "AREA 2", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_2.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_2.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 17.45, - "2015-01-01": 17.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_2.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_2.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_2.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_2.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_2.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_2.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_2.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_2.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 20.85, - "2015-01-01": 20.85 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_2.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_2.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 20.85, - "2015-01-01": 20.85 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_2.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_2.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_2.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_2.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_2.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_2.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_2.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_2.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_2.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_2.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_2.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_2.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_2.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_2.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_2.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_2.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_2.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_2.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_2.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_2.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_2.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_2.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_2.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_2.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_2.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_2.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_3": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_3", - "description": null, - "label": "AREA 3", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_3.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_3.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 17.45, - "2015-01-01": 17.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_3.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_3.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_3.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_3.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.15, - "2015-01-01": 19.15 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_3.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_3.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_3.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_3.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 20.85, - "2015-01-01": 20.85 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_3.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_3.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 20.85, - "2015-01-01": 20.85 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_3.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_3.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_3.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_3.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_3.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_3.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_3.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_3.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_3.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_3.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_3.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_3.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_3.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_3.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_3.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_3.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_3.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_3.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_3.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_3.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_3.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_3.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_3.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_3.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_3.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_3.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_4": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_4", - "description": null, - "label": "AREA 4", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_4.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_4.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 17.45, - "2015-01-01": 17.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_4.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_4.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_4.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_4.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_4.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_4.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_4.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_4.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 20.85, - "2015-01-01": 20.85 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_4.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_4.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 20.85, - "2015-01-01": 20.85 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_4.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_4.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_4.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_4.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_4.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_4.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_4.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_4.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_4.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_4.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_4.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_4.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_4.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_4.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_4.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_4.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_4.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_4.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_4.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_4.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_4.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_4.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_4.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_4.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_4.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_4.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_5": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_5", - "description": null, - "label": "AREA 5", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_5.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_5.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 17.45, - "2015-01-01": 17.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_5.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_5.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_5.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_5.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_5.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_5.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_5.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_5.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 20.85, - "2015-01-01": 20.85 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_5.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_5.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 20.85, - "2015-01-01": 20.85 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_5.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_5.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_5.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_5.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_5.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_5.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_5.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_5.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_5.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_5.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_5.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_5.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_5.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_5.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_5.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_5.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_5.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_5.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_5.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_5.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_5.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_5.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_5.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_5.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_5.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_5.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_6": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_6", - "description": null, - "label": "AREA 6", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_6.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_6.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 17.45, - "2015-01-01": 17.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_6.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_6.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_6.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_6.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_6.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_6.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_6.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_6.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 20.85, - "2015-01-01": 20.85 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_6.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_6.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 20.85, - "2015-01-01": 20.85 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_6.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_6.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_6.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_6.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_6.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_6.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_6.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_6.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_6.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_6.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_6.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_6.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_6.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_6.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_6.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_6.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_6.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_6.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_6.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_6.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_6.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_6.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_6.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_6.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_6.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_6.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_7": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_7", - "description": null, - "label": "AREA 7", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_7.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_7.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 17.45, - "2015-01-01": 17.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_7.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_7.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_7.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_7.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_7.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_7.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_7.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_7.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 20.85, - "2015-01-01": 20.85 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_7.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_7.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 20.85, - "2015-01-01": 20.85 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_7.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_7.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_7.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_7.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_7.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_7.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_7.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_7.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_7.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_7.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_7.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_7.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_7.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_7.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_7.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_7.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_7.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_7.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_7.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_7.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_7.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_7.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_7.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_7.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_7.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_7.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_8": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_8", - "description": null, - "label": "AREA 8", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_8.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_8.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 17.45, - "2015-01-01": 17.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_8.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_8.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_8.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_8.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_8.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_8.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_8.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_8.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 20.85, - "2015-01-01": 20.85 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_8.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_8.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 20.85, - "2015-01-01": 20.85 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_8.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_8.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_8.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_8.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_8.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_8.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_8.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_8.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_8.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_8.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_8.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_8.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_8.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_8.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_8.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_8.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_8.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_8.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_8.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_8.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_8.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_8.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_8.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_8.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_8.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.bottled_gas.AREA_8.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 22.45, - "2015-01-01": 22.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel", - "description": "Illinois provides this cooking fuel allowance amount under the Aid to the Aged, Blind or Disabled program, based on household size and area.", - "label": "Illinois AABD cooking fuel allowance by area", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_1": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_1", - "description": null, - "label": "AREA 1", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_1.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_1.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 3, - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_1.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_1.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 3.5, - "2015-01-01": 3.5 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_1.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_1.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 4.05, - "2015-01-01": 4.05 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_1.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_1.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 4.05, - "2015-01-01": 4.05 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_1.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_1.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 4.4, - "2015-01-01": 4.4 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_1.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_1.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 4.4, - "2015-01-01": 4.4 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_1.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_1.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 5.1, - "2015-01-01": 5.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_1.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_1.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 5.1, - "2015-01-01": 5.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_1.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_1.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 5.8, - "2015-01-01": 5.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_1.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_1.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 5.8, - "2015-01-01": 5.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_1.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_1.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 6.5, - "2015-01-01": 6.5 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_1.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_1.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 6.5, - "2015-01-01": 6.5 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_1.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_1.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.25, - "2015-01-01": 7.25 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_1.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_1.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.25, - "2015-01-01": 7.25 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_1.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_1.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.9, - "2015-01-01": 7.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_1.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_1.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.9, - "2015-01-01": 7.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_1.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_1.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.6, - "2015-01-01": 8.6 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_1.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_1.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.6, - "2015-01-01": 8.6 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_1.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_1.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.3, - "2015-01-01": 9.3 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_2": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_2", - "description": null, - "label": "AREA 2", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_2.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_2.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 3.25, - "2015-01-01": 3.25 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_2.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_2.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 4.65, - "2015-01-01": 4.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_2.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_2.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 6.4, - "2015-01-01": 6.4 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_2.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_2.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 6.4, - "2015-01-01": 6.4 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_2.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_2.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.1, - "2015-01-01": 7.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_2.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_2.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.1, - "2015-01-01": 7.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_2.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_2.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.9, - "2015-01-01": 7.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_2.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_2.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.9, - "2015-01-01": 7.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_2.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_2.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.65, - "2015-01-01": 8.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_2.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_2.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.65, - "2015-01-01": 8.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_2.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_2.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.45, - "2015-01-01": 9.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_2.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_2.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.45, - "2015-01-01": 9.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_2.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_2.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.2, - "2015-01-01": 10.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_2.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_2.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.2, - "2015-01-01": 10.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_2.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_2.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.95, - "2015-01-01": 10.95 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_2.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_2.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.95, - "2015-01-01": 10.95 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_2.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_2.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 11.75, - "2015-01-01": 11.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_2.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_2.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 11.75, - "2015-01-01": 11.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_2.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_2.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 12.45, - "2015-01-01": 12.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_3": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_3", - "description": null, - "label": "AREA 3", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_3.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_3.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 3.25, - "2015-01-01": 3.25 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_3.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_3.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 4.65, - "2015-01-01": 4.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_3.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_3.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 6.4, - "2015-01-01": 6.4 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_3.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_3.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 6.4, - "2015-01-01": 6.4 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_3.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_3.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.1, - "2015-01-01": 7.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_3.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_3.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.1, - "2015-01-01": 7.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_3.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_3.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.9, - "2015-01-01": 7.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_3.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_3.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.9, - "2015-01-01": 7.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_3.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_3.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.65, - "2015-01-01": 8.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_3.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_3.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.65, - "2015-01-01": 8.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_3.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_3.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.45, - "2015-01-01": 9.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_3.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_3.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.45, - "2015-01-01": 9.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_3.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_3.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.2, - "2015-01-01": 10.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_3.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_3.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.2, - "2015-01-01": 10.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_3.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_3.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.95, - "2015-01-01": 10.95 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_3.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_3.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.95, - "2015-01-01": 10.95 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_3.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_3.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 11.75, - "2015-01-01": 11.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_3.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_3.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 11.75, - "2015-01-01": 11.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_3.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_3.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 12.45, - "2015-01-01": 12.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_4": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_4", - "description": null, - "label": "AREA 4", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_4.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_4.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 3.25, - "2015-01-01": 3.25 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_4.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_4.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 4.65, - "2015-01-01": 4.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_4.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_4.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 6.4, - "2015-01-01": 6.4 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_4.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_4.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 6.4, - "2015-01-01": 6.4 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_4.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_4.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.1, - "2015-01-01": 7.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_4.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_4.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.1, - "2015-01-01": 7.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_4.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_4.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.9, - "2015-01-01": 7.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_4.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_4.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.9, - "2015-01-01": 7.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_4.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_4.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.65, - "2015-01-01": 8.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_4.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_4.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.65, - "2015-01-01": 8.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_4.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_4.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.45, - "2015-01-01": 9.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_4.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_4.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.45, - "2015-01-01": 9.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_4.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_4.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.2, - "2015-01-01": 10.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_4.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_4.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.2, - "2015-01-01": 10.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_4.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_4.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.95, - "2015-01-01": 10.95 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_4.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_4.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.95, - "2015-01-01": 10.95 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_4.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_4.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 11.75, - "2015-01-01": 11.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_4.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_4.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 11.75, - "2015-01-01": 11.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_4.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_4.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 12.45, - "2015-01-01": 12.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_5": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_5", - "description": null, - "label": "AREA 5", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_5.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_5.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 3.25, - "2015-01-01": 3.25 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_5.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_5.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 4.65, - "2015-01-01": 4.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_5.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_5.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 6.4, - "2015-01-01": 6.4 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_5.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_5.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 6.4, - "2015-01-01": 6.4 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_5.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_5.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.1, - "2015-01-01": 7.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_5.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_5.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.1, - "2015-01-01": 7.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_5.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_5.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.9, - "2015-01-01": 7.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_5.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_5.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.9, - "2015-01-01": 7.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_5.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_5.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.65, - "2015-01-01": 8.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_5.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_5.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.65, - "2015-01-01": 8.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_5.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_5.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.45, - "2015-01-01": 9.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_5.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_5.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.45, - "2015-01-01": 9.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_5.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_5.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.2, - "2015-01-01": 10.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_5.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_5.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.2, - "2015-01-01": 10.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_5.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_5.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.95, - "2015-01-01": 10.95 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_5.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_5.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.95, - "2015-01-01": 10.95 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_5.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_5.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 11.75, - "2015-01-01": 11.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_5.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_5.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 11.75, - "2015-01-01": 11.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_5.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_5.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 12.45, - "2015-01-01": 12.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_6": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_6", - "description": null, - "label": "AREA 6", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_6.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_6.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 3.25, - "2015-01-01": 3.25 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_6.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_6.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 4.65, - "2015-01-01": 4.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_6.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_6.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 6.4, - "2015-01-01": 6.4 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_6.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_6.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 6.4, - "2015-01-01": 6.4 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_6.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_6.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.1, - "2015-01-01": 7.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_6.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_6.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.1, - "2015-01-01": 7.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_6.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_6.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.9, - "2015-01-01": 7.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_6.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_6.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.9, - "2015-01-01": 7.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_6.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_6.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.65, - "2015-01-01": 8.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_6.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_6.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.65, - "2015-01-01": 8.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_6.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_6.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.45, - "2015-01-01": 9.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_6.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_6.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.45, - "2015-01-01": 9.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_6.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_6.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.2, - "2015-01-01": 10.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_6.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_6.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.2, - "2015-01-01": 10.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_6.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_6.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.95, - "2015-01-01": 10.95 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_6.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_6.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.95, - "2015-01-01": 10.95 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_6.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_6.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 11.75, - "2015-01-01": 11.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_6.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_6.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 11.75, - "2015-01-01": 11.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_6.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_6.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 12.45, - "2015-01-01": 12.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_7": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_7", - "description": null, - "label": "AREA 7", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_7.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_7.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 3.25, - "2015-01-01": 3.25 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_7.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_7.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 4.65, - "2015-01-01": 4.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_7.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_7.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 6.4, - "2015-01-01": 6.4 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_7.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_7.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 6.4, - "2015-01-01": 6.4 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_7.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_7.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.1, - "2015-01-01": 7.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_7.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_7.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.1, - "2015-01-01": 7.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_7.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_7.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.9, - "2015-01-01": 7.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_7.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_7.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.9, - "2015-01-01": 7.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_7.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_7.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.65, - "2015-01-01": 8.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_7.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_7.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.65, - "2015-01-01": 8.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_7.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_7.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.45, - "2015-01-01": 9.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_7.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_7.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.45, - "2015-01-01": 9.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_7.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_7.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.2, - "2015-01-01": 10.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_7.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_7.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.2, - "2015-01-01": 10.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_7.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_7.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.95, - "2015-01-01": 10.95 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_7.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_7.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.95, - "2015-01-01": 10.95 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_7.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_7.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 11.75, - "2015-01-01": 11.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_7.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_7.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 11.75, - "2015-01-01": 11.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_7.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_7.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 12.45, - "2015-01-01": 12.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_8": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_8", - "description": null, - "label": "AREA 8", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_8.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_8.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 3.25, - "2015-01-01": 3.25 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_8.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_8.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 4.65, - "2015-01-01": 4.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_8.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_8.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 6.4, - "2015-01-01": 6.4 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_8.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_8.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 6.4, - "2015-01-01": 6.4 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_8.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_8.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.1, - "2015-01-01": 7.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_8.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_8.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.1, - "2015-01-01": 7.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_8.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_8.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.9, - "2015-01-01": 7.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_8.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_8.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 7.9, - "2015-01-01": 7.9 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_8.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_8.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.65, - "2015-01-01": 8.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_8.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_8.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 8.65, - "2015-01-01": 8.65 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_8.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_8.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.45, - "2015-01-01": 9.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_8.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_8.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 9.45, - "2015-01-01": 9.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_8.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_8.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.2, - "2015-01-01": 10.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_8.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_8.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.2, - "2015-01-01": 10.2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_8.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_8.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.95, - "2015-01-01": 10.95 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_8.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_8.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 10.95, - "2015-01-01": 10.95 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_8.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_8.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 11.75, - "2015-01-01": 11.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_8.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_8.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 11.75, - "2015-01-01": 11.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_8.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.cooking_fuel.AREA_8.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 12.45, - "2015-01-01": 12.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil", - "description": "Illinois provides this fuel oil allowance amount under the Aid to the Aged, Blind or Disabled program, based on household size and area.", - "label": "Illinois AABD fuel oil allowance by area", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_1": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_1", - "description": null, - "label": "AREA 1", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_1.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_1.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 16.55, - "2015-01-01": 16.55 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_1.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_1.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 17.45, - "2015-01-01": 17.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_1.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_1.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 17.8, - "2015-01-01": 17.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_1.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_1.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 17.8, - "2015-01-01": 17.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_1.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_1.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_1.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_1.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_1.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_1.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_1.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_1.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_1.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_1.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_1.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_1.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_1.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_1.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_1.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_1.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_1.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_1.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_1.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_1.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_1.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_1.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_1.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_1.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_1.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_1.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_1.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_1.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_1.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_1.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_2": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_2", - "description": null, - "label": "AREA 2", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_2.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_2.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 16.55, - "2015-01-01": 16.55 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_2.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_2.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 17.45, - "2015-01-01": 17.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_2.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_2.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 17.8, - "2015-01-01": 17.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_2.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_2.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 17.8, - "2015-01-01": 17.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_2.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_2.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_2.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_2.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_2.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_2.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_2.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_2.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_2.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_2.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_2.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_2.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_2.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_2.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_2.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_2.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_2.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_2.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_2.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_2.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_2.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_2.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_2.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_2.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_2.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_2.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_2.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_2.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_2.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_2.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_3": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_3", - "description": null, - "label": "AREA 3", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_3.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_3.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 16.55, - "2015-01-01": 16.55 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_3.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_3.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 17.45, - "2015-01-01": 17.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_3.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_3.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 17.8, - "2015-01-01": 17.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_3.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_3.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 17.8, - "2015-01-01": 17.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_3.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_3.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_3.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_3.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_3.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_3.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_3.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_3.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_3.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_3.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_3.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_3.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_3.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_3.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_3.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_3.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_3.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_3.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_3.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_3.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_3.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_3.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_3.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_3.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_3.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_3.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_3.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_3.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_3.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_3.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_4": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_4", - "description": null, - "label": "AREA 4", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_4.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_4.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 16.55, - "2015-01-01": 16.55 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_4.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_4.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 17.45, - "2015-01-01": 17.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_4.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_4.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 17.8, - "2015-01-01": 17.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_4.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_4.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 17.8, - "2015-01-01": 17.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_4.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_4.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_4.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_4.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_4.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_4.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_4.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_4.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_4.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_4.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_4.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_4.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_4.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_4.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_4.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_4.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_4.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_4.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_4.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_4.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_4.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_4.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_4.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_4.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_4.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_4.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_4.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_4.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_4.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_4.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_5": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_5", - "description": null, - "label": "AREA 5", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_5.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_5.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 16.55, - "2015-01-01": 16.55 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_5.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_5.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 17.45, - "2015-01-01": 17.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_5.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_5.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 17.8, - "2015-01-01": 17.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_5.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_5.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 17.8, - "2015-01-01": 17.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_5.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_5.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_5.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_5.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_5.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_5.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_5.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_5.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_5.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_5.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_5.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_5.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_5.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_5.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_5.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_5.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_5.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_5.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_5.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_5.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_5.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_5.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_5.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_5.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_5.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_5.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_5.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_5.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_5.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_5.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_6": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_6", - "description": null, - "label": "AREA 6", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_6.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_6.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 16.55, - "2015-01-01": 16.55 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_6.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_6.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 17.45, - "2015-01-01": 17.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_6.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_6.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 17.8, - "2015-01-01": 17.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_6.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_6.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 17.8, - "2015-01-01": 17.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_6.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_6.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_6.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_6.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_6.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_6.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_6.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_6.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_6.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_6.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_6.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_6.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_6.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_6.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_6.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_6.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_6.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_6.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_6.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_6.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_6.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_6.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_6.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_6.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_6.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_6.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_6.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_6.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_6.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_6.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_7": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_7", - "description": null, - "label": "AREA 7", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_7.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_7.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 16.55, - "2015-01-01": 16.55 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_7.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_7.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 17.45, - "2015-01-01": 17.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_7.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_7.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 17.8, - "2015-01-01": 17.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_7.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_7.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 17.8, - "2015-01-01": 17.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_7.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_7.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_7.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_7.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_7.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_7.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_7.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_7.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_7.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_7.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_7.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_7.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_7.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_7.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_7.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_7.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_7.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_7.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_7.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_7.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_7.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_7.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_7.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_7.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_7.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_7.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_7.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_7.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_7.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_7.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_8": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_8", - "description": null, - "label": "AREA 8", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_8.1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_8.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2020-01-01": 16.55, - "2015-01-01": 16.55 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_8.2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_8.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2020-01-01": 17.45, - "2015-01-01": 17.45 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_8.3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_8.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2020-01-01": 17.8, - "2015-01-01": 17.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_8.4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_8.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2020-01-01": 17.8, - "2015-01-01": 17.8 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_8.5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_8.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_8.6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_8.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_8.7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_8.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_8.8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_8.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_8.9": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_8.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_8.10": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_8.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_8.11": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_8.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_8.12": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_8.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_8.13": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_8.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_8.14": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_8.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_8.15": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_8.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_8.16": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_8.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_8.17": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_8.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_8.18": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_8.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_8.19": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.utility.fuel_oil.AREA_8.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2020-01-01": 19.1, - "2015-01-01": 19.1 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.area": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.area", - "description": null, - "label": "area", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.area.area_2": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.area.area_2", - "description": "Illinois defines the following counties as area 2 under the Aid to the Aged, Blind or Disabled program.", - "label": "Illinois AABD utility allowances AREA 2 counties", - "unit": "list", - "period": "year", - "values": { - "2024-01-01": [ - "BOONE_COUNTY_IL", - "CARROLL_COUNTY_IL", - "DEKALB_COUNTY_IL", - "DUPAGE_COUNTY_IL", - "GRUNDY_COUNTY_IL", - "JO_DAVIESS_COUNTY_IL", - "KANE_COUNTY_IL", - "KENDALL_COUNTY_IL", - "LAKE_COUNTY_IL", - "LASALLE_COUNTY_IL", - "LEE_COUNTY_IL", - "MCHENRY_COUNTY_IL", - "OGLE_COUNTY_IL", - "STEPHENSON_COUNTY_IL", - "WHITESIDE_COUNTY_IL", - "WILL_COUNTY_IL", - "WINNEBAGO_COUNTY_IL" - ], - "2015-01-01": [ - "BOONE_COUNTY_IL", - "CARROLL_COUNTY_IL", - "DEKALB_COUNTY_IL", - "DUPAGE_COUNTY_IL", - "GRUNDY_COUNTY_IL", - "JO_DAVIESS_COUNTY_IL", - "KANE_COUNTY_IL", - "KENDALL_COUNTY_IL", - "LAKE_COUNTY_IL", - "LASALLE_COUNTY_IL", - "LEE_COUNTY_IL", - "MCHENRY_COUNTY_IL", - "OGLE_COUNTY_IL", - "STEPHENSON_COUNTY_IL", - "WHITESIDE_COUNTY_IL", - "WILL_COUNTY_IL", - "WINNEBAGO_COUNTY_IL" - ] - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.area.area_1": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.area.area_1", - "description": "Illinois defines the following counties as area 1 under the Aid to the Aged, Blind or Disabled program.", - "label": "Illinois AABD utility allowances AREA 1 counties", - "unit": "list", - "period": "year", - "values": { - "2024-01-01": ["COOK_COUNTY_IL"], - "2015-01-01": ["COOK_COUNTY_IL"] - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.area.area_8": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.area.area_8", - "description": "Illinois defines the following counties as area 8 under the Aid to the Aged, Blind or Disabled program.", - "label": "Illinois AABD utility allowances AREA 8 counties", - "unit": "list", - "period": "year", - "values": { - "2024-01-01": [ - "ALEXANDER_COUNTY_IL", - "FRANKLIN_COUNTY_IL", - "GALLATIN_COUNTY_IL", - "HAMILTON_COUNTY_IL", - "HARDIN_COUNTY_IL", - "JACKSON_COUNTY_IL", - "JOHNSON_COUNTY_IL", - "MASSAC_COUNTY_IL", - "PERRY_COUNTY_IL", - "POPE_COUNTY_IL", - "PULASKI_COUNTY_IL", - "RANDOLPH_COUNTY_IL", - "SALINE_COUNTY_IL", - "UNION_COUNTY_IL", - "WHITE_COUNTY_IL", - "WILLIAMSON_COUNTY_IL" - ], - "2015-01-01": [ - "ALEXANDER_COUNTY_IL", - "FRANKLIN_COUNTY_IL", - "GALLATIN_COUNTY_IL", - "HAMILTON_COUNTY_IL", - "HARDIN_COUNTY_IL", - "JACKSON_COUNTY_IL", - "JOHNSON_COUNTY_IL", - "MASSAC_COUNTY_IL", - "PERRY_COUNTY_IL", - "POPE_COUNTY_IL", - "PULASKI_COUNTY_IL", - "RANDOLPH_COUNTY_IL", - "SALINE_COUNTY_IL", - "UNION_COUNTY_IL", - "WHITE_COUNTY_IL", - "WILLIAMSON_COUNTY_IL" - ] - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.area.area_5": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.area.area_5", - "description": "Illinois defines the following counties as area 5 under the Aid to the Aged, Blind or Disabled program.", - "label": "Illinois AABD utility allowances AREA 5 counties", - "unit": "list", - "period": "year", - "values": { - "2024-01-01": [ - "CHAMPAIGN_COUNTY_IL", - "CLARK_COUNTY_IL", - "COLES_COUNTY_IL", - "CUMBERLAND_COUNTY_IL", - "DEWITT_COUNTY_IL", - "DOUGLAS_COUNTY_IL", - "EDGAR_COUNTY_IL", - "EFFINGHAM_COUNTY_IL", - "FORD_COUNTY_IL", - "IROQUOIS_COUNTY_IL", - "KANKAKEE_COUNTY_IL", - "LIVINGSTON_COUNTY_IL", - "MACON_COUNTY_IL", - "MCLEAN_COUNTY_IL", - "MOULTRIE_COUNTY_IL", - "PIATT_COUNTY_IL", - "SHELBY_COUNTY_IL", - "VERMILION_COUNTY_IL" - ], - "2015-01-01": [ - "CHAMPAIGN_COUNTY_IL", - "CLARK_COUNTY_IL", - "COLES_COUNTY_IL", - "CUMBERLAND_COUNTY_IL", - "DEWITT_COUNTY_IL", - "DOUGLAS_COUNTY_IL", - "EDGAR_COUNTY_IL", - "EFFINGHAM_COUNTY_IL", - "FORD_COUNTY_IL", - "IROQUOIS_COUNTY_IL", - "KANKAKEE_COUNTY_IL", - "LIVINGSTON_COUNTY_IL", - "MACON_COUNTY_IL", - "MCLEAN_COUNTY_IL", - "MOULTRIE_COUNTY_IL", - "PIATT_COUNTY_IL", - "SHELBY_COUNTY_IL", - "VERMILION_COUNTY_IL" - ] - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.area.area_3": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.area.area_3", - "description": "Illinois define2 the following counties as area 3 under the Aid to the Aged, Blind or Disabled program.", - "label": "Illinois AABD utility allowances AREA 3 counties", - "unit": "list", - "period": "year", - "values": { - "2024-01-01": [ - "BUREAU_COUNTY_IL", - "FULTON_COUNTY_IL", - "HENDERSON_COUNTY_IL", - "HENRY_COUNTY_IL", - "KNOX_COUNTY_IL", - "MARSHALL_COUNTY_IL", - "MCDONOUGH_COUNTY_IL", - "MERCER_COUNTY_IL", - "PEORIA_COUNTY_IL", - "PUTNAM_COUNTY_IL", - "ROCK_ISLAND_COUNTY_IL", - "STARK_COUNTY_IL", - "TAZEWELL_COUNTY_IL", - "WARREN_COUNTY_IL", - "WOODFORD_COUNTY_IL" - ], - "2015-01-01": [ - "BUREAU_COUNTY_IL", - "FULTON_COUNTY_IL", - "HENDERSON_COUNTY_IL", - "HENRY_COUNTY_IL", - "KNOX_COUNTY_IL", - "MARSHALL_COUNTY_IL", - "MCDONOUGH_COUNTY_IL", - "MERCER_COUNTY_IL", - "PEORIA_COUNTY_IL", - "PUTNAM_COUNTY_IL", - "ROCK_ISLAND_COUNTY_IL", - "STARK_COUNTY_IL", - "TAZEWELL_COUNTY_IL", - "WARREN_COUNTY_IL", - "WOODFORD_COUNTY_IL" - ] - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.area.area_7": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.area.area_7", - "description": "Illinois defines the following counties as area 7 under the Aid to the Aged, Blind or Disabled program.", - "label": "Illinois AABD utility allowances AREA 7 counties", - "unit": "list", - "period": "year", - "values": { - "2024-01-01": [ - "CLAY_COUNTY_IL", - "CRAWFORD_COUNTY_IL", - "EDWARDS_COUNTY_IL", - "FAYETTE_COUNTY_IL", - "JASPER_COUNTY_IL", - "JEFFERSON_COUNTY_IL", - "LAWRENCE_COUNTY_IL", - "MARION_COUNTY_IL", - "RICHLAND_COUNTY_IL", - "WABASH_COUNTY_IL", - "WAYNE_COUNTY_IL" - ], - "2015-01-01": [ - "CLAY_COUNTY_IL", - "CRAWFORD_COUNTY_IL", - "EDWARDS_COUNTY_IL", - "FAYETTE_COUNTY_IL", - "JASPER_COUNTY_IL", - "JEFFERSON_COUNTY_IL", - "LAWRENCE_COUNTY_IL", - "MARION_COUNTY_IL", - "RICHLAND_COUNTY_IL", - "WABASH_COUNTY_IL", - "WAYNE_COUNTY_IL" - ] - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.area.area_6": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.area.area_6", - "description": "Illinois defines the following counties as area 6 under the Aid to the Aged, Blind or Disabled program.", - "label": "Illinois AABD utility allowances AREA 6 counties", - "unit": "list", - "period": "year", - "values": { - "2024-01-01": [ - "BOND_COUNTY_IL", - "CLINTON_COUNTY_IL", - "MADISON_COUNTY_IL", - "MONROE_COUNTY_IL", - "ST_CLAIR_COUNTY_IL", - "WASHINGTON_COUNTY_IL" - ], - "2015-01-01": [ - "BOND_COUNTY_IL", - "CLINTON_COUNTY_IL", - "MADISON_COUNTY_IL", - "MONROE_COUNTY_IL", - "ST_CLAIR_COUNTY_IL", - "WASHINGTON_COUNTY_IL" - ] - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.area.area_4": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.area.area_4", - "description": "Illinois defines the following counties as area 4 under the Aid to the Aged, Blind or Disabled program.", - "label": "Illinois AABD utility allowances AREA 4 counties", - "unit": "list", - "period": "year", - "values": { - "2024-01-01": [ - "ADAMS_COUNTY_IL", - "BROWN_COUNTY_IL", - "CALHOUN_COUNTY_IL", - "CASS_COUNTY_IL", - "CHRISTIAN_COUNTY_IL", - "GREENE_COUNTY_IL", - "HANCOCK_COUNTY_IL", - "JERSEY_COUNTY_IL", - "LOGAN_COUNTY_IL", - "MACOUPIN_COUNTY_IL", - "MASON_COUNTY_IL", - "MENARD_COUNTY_IL", - "MONTGOMERY_COUNTY_IL", - "MORGAN_COUNTY_IL", - "PIKE_COUNTY_IL", - "SANGAMON_COUNTY_IL", - "SCHUYLER_COUNTY_IL", - "SCOTT_COUNTY_IL" - ], - "2015-01-01": [ - "ADAMS_COUNTY_IL", - "BROWN_COUNTY_IL", - "CALHOUN_COUNTY_IL", - "CASS_COUNTY_IL", - "CHRISTIAN_COUNTY_IL", - "GREENE_COUNTY_IL", - "HANCOCK_COUNTY_IL", - "JERSEY_COUNTY_IL", - "LOGAN_COUNTY_IL", - "MACOUPIN_COUNTY_IL", - "MASON_COUNTY_IL", - "MENARD_COUNTY_IL", - "MONTGOMERY_COUNTY_IL", - "MORGAN_COUNTY_IL", - "PIKE_COUNTY_IL", - "SANGAMON_COUNTY_IL", - "SCHUYLER_COUNTY_IL", - "SCOTT_COUNTY_IL" - ] - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.shelter_allowance": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.aabd.payment.shelter_allowance", - "description": null, - "label": "shelter allowance", - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.shelter_allowance.homestead": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.shelter_allowance.homestead", - "description": "Illinois provides this homestead allowance amount under the Aid to the Aged, Blind or Disabled program.", - "label": "Illinois AABD homestead allowance amount", - "unit": "currency-USD", - "period": "month", - "values": { - "1995-01-01": 97 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.aabd.payment.shelter_allowance.rent": { - "type": "parameter", - "parameter": "gov.states.il.dhs.aabd.payment.shelter_allowance.rent", - "description": "Illinois provides this rent allowance amount under the Aid to the Aged, Blind or Disabled program.", - "label": "Illinois AABD rent allowance amount", - "unit": "currency-USD", - "period": "month", - "values": { - "1995-01-01": 97 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.ccap": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.ccap", - "description": null, - "label": "Child Care Assistance Program (CCAP)", - "economy": true, - "household": true - }, - "gov.states.il.dhs.ccap.age_limit": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.ccap.age_limit", - "description": null, - "label": "age limit", - "economy": true, - "household": true - }, - "gov.states.il.dhs.ccap.age_limit.special_needs_child": { - "type": "parameter", - "parameter": "gov.states.il.dhs.ccap.age_limit.special_needs_child", - "description": "Illinois limits the Child Care Assistance Program to applicants with special needs children younger than this age.", - "label": "Illinois CCAP special needs child age limit", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 19, - "2015-01-01": 19 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.ccap.age_limit.child": { - "type": "parameter", - "parameter": "gov.states.il.dhs.ccap.age_limit.child", - "description": "Illinois limits the Child Care Assistance Program to applicants with children younger than this age.", - "label": "Illinois CCAP child age limit", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 13, - "2015-01-01": 13 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.ccap.qualified_alien_statuses": { - "type": "parameter", - "parameter": "gov.states.il.dhs.ccap.qualified_alien_statuses", - "description": "Illinois considers these statuses as qualified alien under the Child Care Assistance Program.", - "label": "Illinois CCAP qualified alien statuses", - "unit": "list", - "period": "year", - "values": { - "1975-01-01": [ - "LEGAL_PERMANENT_RESIDENT", - "ASYLEE", - "REFUGEE", - "PAROLED_ONE_YEAR", - "DEPORTATION_WITHHELD", - "CONDITIONAL_ENTRANT", - "CUBAN_HAITIAN_ENTRANT" - ] - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.ccap.income": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.ccap.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.il.dhs.ccap.income.countable_income": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.ccap.income.countable_income", - "description": null, - "label": "countable income", - "economy": true, - "household": true - }, - "gov.states.il.dhs.ccap.income.countable_income.sources": { - "type": "parameter", - "parameter": "gov.states.il.dhs.ccap.income.countable_income.sources", - "description": "Illinois counts these income sources as countable income under the Child Care Assistance Program.", - "label": "Illinois CCAP countable income sources", - "unit": "list", - "period": "year", - "values": { - "2020-01-01": [ - "employment_income", - "self_employment_income", - "rental_income", - "dividend_income", - "interest_income", - "pension_income", - "veterans_benefits", - "unemployment_compensation" - ], - "2015-01-01": [ - "employment_income", - "self_employment_income", - "rental_income", - "dividend_income", - "interest_income", - "pension_income", - "veterans_benefits", - "unemployment_compensation" - ] - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.ccap.income.income_limit": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.ccap.income.income_limit", - "description": null, - "label": "income limit", - "economy": true, - "household": true - }, - "gov.states.il.dhs.ccap.income.income_limit.new_applicants_rate": { - "type": "parameter", - "parameter": "gov.states.il.dhs.ccap.income.income_limit.new_applicants_rate", - "description": "Illinois limits the Child Care Assistance Program to new applicants with income below this percentage of the poverty line.", - "label": "Illinois CCAP new applicants income limit", - "unit": "/1", - "period": "month", - "values": { - "2022-07-01": 2.25, - "2015-01-01": 2.25 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.ccap.income.income_limit.redetermination_rate": { - "type": "parameter", - "parameter": "gov.states.il.dhs.ccap.income.income_limit.redetermination_rate", - "description": "Illinois limits the Child Care Assistance Program to existing applicants with income below this percentage of the poverty line at redetermination.", - "label": "Illinois CCAP redetermination income limit", - "unit": "/1", - "period": "month", - "values": { - "2022-07-01": 2.75, - "2015-01-01": 2.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.tanf": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.tanf", - "description": null, - "label": "tanf", - "economy": true, - "household": true - }, - "gov.states.il.dhs.tanf.qualified_noncitizen_status": { - "type": "parameter", - "parameter": "gov.states.il.dhs.tanf.qualified_noncitizen_status", - "description": "Illinois considers these statuses as qualified noncitizens under the Aid to the Aged, Blind or Disabled program.", - "label": "Illinois TANF qualified noncitizen statuses", - "unit": "list", - "period": "year", - "values": { - "1975-01-01": [ - "REFUGEE", - "ASYLEE", - "DEPORTATION_WITHHELD", - "CONDITIONAL_ENTRANT", - "LEGAL_PERMANENT_RESIDENT", - "PAROLED_ONE_YEAR" - ] - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.tanf.age_threshold": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.tanf.age_threshold", - "description": null, - "label": "age threshold", - "economy": true, - "household": true - }, - "gov.states.il.dhs.tanf.age_threshold.minor_child": { - "type": "parameter", - "parameter": "gov.states.il.dhs.tanf.age_threshold.minor_child", - "description": "Illinois limits the Temporary Assistance for Needy Families program to applicants with children younger than this age.", - "label": "Illinois TANF minor child age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 18, - "2015-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.tanf.age_threshold.student_dependent": { - "type": "parameter", - "parameter": "gov.states.il.dhs.tanf.age_threshold.student_dependent", - "description": "Illinois provides the Temporary Assistance for Needy Families program to applicants with student dependent of this age or younger.", - "label": "Illinois TANF student dependent age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 18, - "2015-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.tanf.income": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.tanf.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.il.dhs.tanf.income.child_care_deduction": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.tanf.income.child_care_deduction", - "description": "Illinois exempts this amount of child care expenses from the gross earned income under Temporary Assistance for Needy Families program, based on child age.", - "label": "Illinois TANF child care expenses exemption amount per child" - }, - "gov.states.il.dhs.tanf.income.child_care_deduction[0]": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.tanf.income.child_care_deduction[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.il.dhs.tanf.income.child_care_deduction[0].threshold": { - "type": "parameter", - "parameter": "gov.states.il.dhs.tanf.income.child_care_deduction[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2010-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.tanf.income.child_care_deduction[0].amount": { - "type": "parameter", - "parameter": "gov.states.il.dhs.tanf.income.child_care_deduction[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2010-01-01": 200 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.tanf.income.child_care_deduction[1]": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.tanf.income.child_care_deduction[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.il.dhs.tanf.income.child_care_deduction[1].threshold": { - "type": "parameter", - "parameter": "gov.states.il.dhs.tanf.income.child_care_deduction[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2010-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.tanf.income.child_care_deduction[1].amount": { - "type": "parameter", - "parameter": "gov.states.il.dhs.tanf.income.child_care_deduction[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2010-01-01": 175 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.tanf.income.initial_employment_deduction": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.tanf.income.initial_employment_deduction", - "description": null, - "label": "initial employment deduction", - "economy": true, - "household": true - }, - "gov.states.il.dhs.tanf.income.initial_employment_deduction.rate": { - "type": "parameter", - "parameter": "gov.states.il.dhs.tanf.income.initial_employment_deduction.rate", - "description": "Illinois applies this percentage of federal poverty level under the Temporary Assistance for Needy Families program countable income, when computing the initial employment deduction.", - "label": "Illinois TANF initial employment deduction fpg rate", - "unit": "/1", - "period": "month", - "values": { - "2020-10-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.tanf.income.sources": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.tanf.income.sources", - "description": null, - "label": "sources", - "economy": true, - "household": true - }, - "gov.states.il.dhs.tanf.income.sources.earned": { - "type": "parameter", - "parameter": "gov.states.il.dhs.tanf.income.sources.earned", - "description": "Illinois counts these income sources as earned income under the Temporary Assistance for Needy Families program.", - "label": "Illinois TANF earned income sources", - "unit": "list", - "period": "year", - "values": { - "2020-01-01": ["employment_income", "self_employment_income", "rental_income"], - "2015-01-01": ["employment_income", "self_employment_income", "rental_income"] - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.tanf.income.sources.unearned": { - "type": "parameter", - "parameter": "gov.states.il.dhs.tanf.income.sources.unearned", - "description": "Illinois counts these income sources as unearned income under the Temporary Assistance for Needy Families program.", - "label": "Illinois TANF unearned income sources", - "unit": "list", - "period": "year", - "values": { - "2020-01-01": [ - "social_security", - "disability_benefits", - "workers_compensation", - "unemployment_compensation", - "retirement_distributions", - "alimony_income", - "dividend_income", - "interest_income", - "farm_income", - "farm_rent_income", - "capital_gains", - "debt_relief", - "illicit_income", - "miscellaneous_income" - ], - "2015-01-01": [ - "social_security", - "disability_benefits", - "workers_compensation", - "unemployment_compensation", - "retirement_distributions", - "alimony_income", - "dividend_income", - "interest_income", - "farm_income", - "farm_rent_income", - "capital_gains", - "debt_relief", - "illicit_income", - "miscellaneous_income" - ] - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.tanf.income.disregard": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.tanf.income.disregard", - "description": null, - "label": "disregard", - "economy": true, - "household": true - }, - "gov.states.il.dhs.tanf.income.disregard.rate": { - "type": "parameter", - "parameter": "gov.states.il.dhs.tanf.income.disregard.rate", - "description": "Illinois excludes this share of earnings from the Temporary Assistance for Needy Families program countable income, when computing the benefit value.", - "label": "Illinois TANF earned income percentage disregard", - "unit": "/1", - "period": "month", - "values": { - "2020-10-01": 0.75, - "2015-01-01": 0.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.tanf.payment_level": { - "type": "parameterNode", - "parameter": "gov.states.il.dhs.tanf.payment_level", - "description": null, - "label": "payment level", - "economy": true, - "household": true - }, - "gov.states.il.dhs.tanf.payment_level.child_only_rate": { - "type": "parameter", - "parameter": "gov.states.il.dhs.tanf.payment_level.child_only_rate", - "description": "Illinois applies this percentage of payment level as child only payment level under the Temporary Assistance for Needy Families program.", - "label": "Illinois TANF child only payment level rate", - "unit": "/1", - "period": "month", - "values": { - "2020-10-01": 0.75, - "2015-01-01": 0.75 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.tanf.payment_level.parent_only_rate": { - "type": "parameter", - "parameter": "gov.states.il.dhs.tanf.payment_level.parent_only_rate", - "description": "Illinois applies this percentage of payment level as parent only payment level under the Temporary Assistance for Needy Families program.", - "label": "Illinois TANF parent only payment level rate", - "unit": "/1", - "period": "month", - "values": { - "2020-10-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.il.dhs.tanf.payment_level.rate": { - "type": "parameter", - "parameter": "gov.states.il.dhs.tanf.payment_level.rate", - "description": "Illinois applies this percentage of federal poverty level as payment level under the Temporary Assistance for Needy Families program.", - "label": "Illinois TANF payment level fpg rate", - "unit": "/1", - "period": "month", - "values": { - "2024-10-01": 0.35, - "2020-10-01": 0.3, - "2015-01-01": 0.3 - }, - "economy": true, - "household": true - }, - "gov.states.ut": { - "type": "parameterNode", - "parameter": "gov.states.ut", - "description": null, - "label": "Utah", - "economy": true, - "household": true - }, - "gov.states.ut.tax": { - "type": "parameterNode", - "parameter": "gov.states.ut.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.states.ut.tax.income": { - "type": "parameterNode", - "parameter": "gov.states.ut.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits": { - "type": "parameterNode", - "parameter": "gov.states.ut.tax.income.credits", - "description": null, - "label": "credits", - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.ctc": { - "type": "parameterNode", - "parameter": "gov.states.ut.tax.income.credits.ctc", - "description": null, - "label": "Child Tax Credit", - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.ctc.reduction": { - "type": "parameterNode", - "parameter": "gov.states.ut.tax.income.credits.ctc.reduction", - "description": null, - "label": "reduction", - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.ctc.reduction.start": { - "type": "parameterNode", - "parameter": "gov.states.ut.tax.income.credits.ctc.reduction.start", - "description": "Utah phases the child tax credit out for filers with state adjusted gross income and tax exempt interest above this threshold, based on filing status.", - "label": "Utah child tax credit reduction start", - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.ctc.reduction.start.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ut.tax.income.credits.ctc.reduction.start.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 43000, - "2015-01-01": 43000 - }, - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.ctc.reduction.start.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ut.tax.income.credits.ctc.reduction.start.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2024-01-01": 43000, - "2015-01-01": 43000 - }, - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.ctc.reduction.start.JOINT": { - "type": "parameter", - "parameter": "gov.states.ut.tax.income.credits.ctc.reduction.start.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 54000, - "2015-01-01": 54000 - }, - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.ctc.reduction.start.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ut.tax.income.credits.ctc.reduction.start.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 54000, - "2015-01-01": 54000 - }, - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.ctc.reduction.start.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ut.tax.income.credits.ctc.reduction.start.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 27000, - "2015-01-01": 27000 - }, - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.ctc.reduction.rate": { - "type": "parameter", - "parameter": "gov.states.ut.tax.income.credits.ctc.reduction.rate", - "description": "Utah reduces the child tax credit by the following rate, based on state adjusted gross income and tax exempt interest income.", - "label": "Utah child tax credit reduction rate", - "unit": "/1", - "period": "year", - "values": { - "2024-01-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.ctc.amount": { - "type": "parameter", - "parameter": "gov.states.ut.tax.income.credits.ctc.amount", - "description": "Utah provides the following child tax credit amount, per eligible child.", - "label": "Utah child tax credit amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2024-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.ctc.child_age_threshold": { - "type": "parameterNode", - "parameter": "gov.states.ut.tax.income.credits.ctc.child_age_threshold", - "description": "Utah limits the child tax credit to filers with children between these age thresholds.", - "label": "Utah child tax credit child age threshold" - }, - "gov.states.ut.tax.income.credits.ctc.child_age_threshold[0]": { - "type": "parameterNode", - "parameter": "gov.states.ut.tax.income.credits.ctc.child_age_threshold[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ut.tax.income.credits.ctc.child_age_threshold[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ut.tax.income.credits.ctc.child_age_threshold[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2024-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.ctc.child_age_threshold[0].amount": { - "type": "parameter", - "parameter": "gov.states.ut.tax.income.credits.ctc.child_age_threshold[0].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2025-01-01": true, - "2024-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.ctc.child_age_threshold[1]": { - "type": "parameterNode", - "parameter": "gov.states.ut.tax.income.credits.ctc.child_age_threshold[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ut.tax.income.credits.ctc.child_age_threshold[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ut.tax.income.credits.ctc.child_age_threshold[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2024-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.ctc.child_age_threshold[1].amount": { - "type": "parameter", - "parameter": "gov.states.ut.tax.income.credits.ctc.child_age_threshold[1].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2024-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.ctc.child_age_threshold[2]": { - "type": "parameterNode", - "parameter": "gov.states.ut.tax.income.credits.ctc.child_age_threshold[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ut.tax.income.credits.ctc.child_age_threshold[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ut.tax.income.credits.ctc.child_age_threshold[2].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2025-01-01": 6, - "2024-01-01": 4, - "2015-01-01": 4 - }, - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.ctc.child_age_threshold[2].amount": { - "type": "parameter", - "parameter": "gov.states.ut.tax.income.credits.ctc.child_age_threshold[2].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": null, - "values": { - "2024-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.ss_benefits": { - "type": "parameterNode", - "parameter": "gov.states.ut.tax.income.credits.ss_benefits", - "description": null, - "label": "Social Security Benefits", - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.ss_benefits.phase_out": { - "type": "parameterNode", - "parameter": "gov.states.ut.tax.income.credits.ss_benefits.phase_out", - "description": null, - "label": "phase out", - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.ss_benefits.phase_out.rate": { - "type": "parameter", - "parameter": "gov.states.ut.tax.income.credits.ss_benefits.phase_out.rate", - "description": "Rate at which the Utah Social Security Benefits Credit is phased out.", - "label": "Utah Social Security benefit credit phase-out rate", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.025, - "2015-01-01": 0.025 - }, - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.ss_benefits.phase_out.threshold": { - "type": "parameterNode", - "parameter": "gov.states.ut.tax.income.credits.ss_benefits.phase_out.threshold", - "description": "Modified AGI threshold after which the Utah Social Security Benefits Credit is phased out.", - "label": "Social Security Benefits Credit phase-out threshold", - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.ss_benefits.phase_out.threshold.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ut.tax.income.credits.ss_benefits.phase_out.threshold.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2025-01-01": 54000, - "2023-01-01": 45000, - "2022-01-01": 37000, - "2021-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.ss_benefits.phase_out.threshold.JOINT": { - "type": "parameter", - "parameter": "gov.states.ut.tax.income.credits.ss_benefits.phase_out.threshold.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2025-01-01": 90000, - "2023-01-01": 75000, - "2022-01-01": 62000, - "2021-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.ss_benefits.phase_out.threshold.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ut.tax.income.credits.ss_benefits.phase_out.threshold.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2025-01-01": 45000, - "2023-01-01": 37500, - "2022-01-01": 31000, - "2021-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.ss_benefits.phase_out.threshold.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ut.tax.income.credits.ss_benefits.phase_out.threshold.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2025-01-01": 90000, - "2023-01-01": 75000, - "2022-01-01": 62000, - "2021-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.ss_benefits.phase_out.threshold.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ut.tax.income.credits.ss_benefits.phase_out.threshold.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2025-01-01": 90000, - "2023-01-01": 75000, - "2022-01-01": 62000, - "2021-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.taxpayer": { - "type": "parameterNode", - "parameter": "gov.states.ut.tax.income.credits.taxpayer", - "description": null, - "label": "taxpayer", - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.taxpayer.personal_exemption": { - "type": "parameter", - "parameter": "gov.states.ut.tax.income.credits.taxpayer.personal_exemption", - "description": "This exemption is added to federal standard or itemized deductions for the taxpayer credit.", - "label": "Utah taxpayer credit personal exemption", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2547.83446136534, - "2034-01-01": 2498.49795852752, - "2033-01-01": 2449.77054831733, - "2032-01-01": 2402.26132336239, - "2031-01-01": 2355.97028366271, - "2030-01-01": 2310.28833659066, - "2029-01-01": 2265.21548214623, - "2028-01-01": 2220.75172032943, - "2027-01-01": 2175.67886588501, - "2026-01-01": 2123.35780917182, - "2025-01-01": 2091.38755230203, - "2024-01-01": 2046, - "2023-01-01": 1941, - "2022-01-01": 1802, - "2021-01-01": 1750, - "2015-01-01": 1750 - }, - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.taxpayer.in_effect": { - "type": "parameter", - "parameter": "gov.states.ut.tax.income.credits.taxpayer.in_effect", - "description": "Utah provides an additional qualifying dependent personal exemption if this is true.", - "label": "Utah additional qualifying dependent for personal exemption in the year of birth in effect", - "unit": "bool", - "period": "year", - "values": { - "2023-01-01": true, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.taxpayer.phase_out": { - "type": "parameterNode", - "parameter": "gov.states.ut.tax.income.credits.taxpayer.phase_out", - "description": null, - "label": "phase out", - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.taxpayer.phase_out.rate": { - "type": "parameter", - "parameter": "gov.states.ut.tax.income.credits.taxpayer.phase_out.rate", - "description": "The Utah taxpayer credit reduces by this rate for each dollar of income above the phase-out threshold.", - "label": "Utah taxpayer credit phase-out rate", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.013, - "2015-01-01": 0.013 - }, - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.taxpayer.phase_out.threshold": { - "type": "parameterNode", - "parameter": "gov.states.ut.tax.income.credits.taxpayer.phase_out.threshold", - "description": "The Utah taxpayer credit is phased out for taxpayers with incomes above this threshold.", - "label": "Utah taxpayer credit phase-out threshold", - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.taxpayer.phase_out.threshold.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ut.tax.income.credits.taxpayer.phase_out.threshold.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 21981.609927674, - "2034-01-01": 21555.9559940996, - "2033-01-01": 21135.5570473595, - "2032-01-01": 20725.6680742879, - "2031-01-01": 20326.2890748848, - "2030-01-01": 19932.1650623159, - "2029-01-01": 19543.2960365813, - "2028-01-01": 19159.6819976809, - "2027-01-01": 18770.8129719463, - "2026-01-01": 18319.4096028841, - "2025-01-01": 18043.5841022656, - "2024-01-01": 17652, - "2023-01-01": 16742, - "2022-01-01": 15548, - "2021-01-01": 15095, - "2015-01-01": 15095 - }, - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.taxpayer.phase_out.threshold.JOINT": { - "type": "parameter", - "parameter": "gov.states.ut.tax.income.credits.taxpayer.phase_out.threshold.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 43963.219855348, - "2034-01-01": 43111.9119881992, - "2033-01-01": 42271.114094719, - "2032-01-01": 41451.3361485757, - "2031-01-01": 40652.5781497695, - "2030-01-01": 39864.3301246318, - "2029-01-01": 39086.5920731626, - "2028-01-01": 38319.3639953618, - "2027-01-01": 37541.6259438926, - "2026-01-01": 36638.8192057682, - "2025-01-01": 36087.1682045313, - "2024-01-01": 35304, - "2023-01-01": 33484, - "2022-01-01": 31096, - "2021-01-01": 30190, - "2015-01-01": 30190 - }, - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.taxpayer.phase_out.threshold.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ut.tax.income.credits.taxpayer.phase_out.threshold.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 32972.414891511, - "2034-01-01": 32333.9339911494, - "2033-01-01": 31703.3355710392, - "2032-01-01": 31088.5021114318, - "2031-01-01": 30489.4336123271, - "2030-01-01": 29898.2475934738, - "2029-01-01": 29314.9440548719, - "2028-01-01": 28739.5229965214, - "2027-01-01": 28156.2194579195, - "2026-01-01": 27479.1144043262, - "2025-01-01": 27065.3761533985, - "2024-01-01": 26478, - "2023-01-01": 25114, - "2022-01-01": 23322, - "2021-01-01": 22643, - "2015-01-01": 22643 - }, - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.taxpayer.phase_out.threshold.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ut.tax.income.credits.taxpayer.phase_out.threshold.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 21981.609927674, - "2034-01-01": 21555.9559940996, - "2033-01-01": 21135.5570473595, - "2032-01-01": 20725.6680742879, - "2031-01-01": 20326.2890748848, - "2030-01-01": 19932.1650623159, - "2029-01-01": 19543.2960365813, - "2028-01-01": 19159.6819976809, - "2027-01-01": 18770.8129719463, - "2026-01-01": 18319.4096028841, - "2025-01-01": 18043.5841022656, - "2024-01-01": 17652, - "2023-01-01": 16742, - "2022-01-01": 15548, - "2021-01-01": 15095, - "2015-01-01": 15095 - }, - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.taxpayer.phase_out.threshold.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ut.tax.income.credits.taxpayer.phase_out.threshold.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 43963.219855348, - "2034-01-01": 43111.9119881992, - "2033-01-01": 42271.114094719, - "2032-01-01": 41451.3361485757, - "2031-01-01": 40652.5781497695, - "2030-01-01": 39864.3301246318, - "2029-01-01": 39086.5920731626, - "2028-01-01": 38319.3639953618, - "2027-01-01": 37541.6259438926, - "2026-01-01": 36638.8192057682, - "2025-01-01": 36087.1682045313, - "2024-01-01": 35304, - "2023-01-01": 33484, - "2022-01-01": 31096, - "2021-01-01": 30190, - "2015-01-01": 30190 - }, - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.taxpayer.rate": { - "type": "parameter", - "parameter": "gov.states.ut.tax.income.credits.taxpayer.rate", - "description": "The maximum taxpayer credit is this percentage of federal deductions plus the personal exemption.", - "label": "Utah taxpayer credit rate", - "unit": "/1", - "period": "year", - "values": { - "2020-01-01": 0.06, - "2015-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.at_home_parent": { - "type": "parameterNode", - "parameter": "gov.states.ut.tax.income.credits.at_home_parent", - "description": null, - "label": "at home parent", - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.at_home_parent.max_child_age": { - "type": "parameter", - "parameter": "gov.states.ut.tax.income.credits.at_home_parent.max_child_age", - "description": "Maximum age for a child to quality for the Utah at-home parent credit.", - "label": "Utah at-home parent credit maximum child age", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.at_home_parent.parent_max_earnings": { - "type": "parameter", - "parameter": "gov.states.ut.tax.income.credits.at_home_parent.parent_max_earnings", - "description": "Maximum earnings for the claimant to qualify for the Utah at-home parent credit.", - "label": "Utah at-home parent credit maximum earnings", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 3000, - "2015-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.at_home_parent.max_agi": { - "type": "parameter", - "parameter": "gov.states.ut.tax.income.credits.at_home_parent.max_agi", - "description": "Maximum adjusted gross income for a tax unit to qualify for the Utah at-home parent credit.", - "label": "Utah at-home parent credit maximum AGI", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.at_home_parent.amount": { - "type": "parameter", - "parameter": "gov.states.ut.tax.income.credits.at_home_parent.amount", - "description": "The amount of at-home credit per qualifying child.", - "label": "Utah at-home parent credit amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 100, - "2015-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.non_refundable": { - "type": "parameter", - "parameter": "gov.states.ut.tax.income.credits.non_refundable", - "description": "Utah non refundable tax credits.", - "label": "Utah non-refundable credits", - "unit": "list", - "period": "year", - "values": { - "2024-01-01": [ - "ut_eitc", - "ut_retirement_credit", - "ut_ss_benefits_credit", - "ut_at_home_parent_credit", - "ut_ctc" - ], - "2022-01-01": [ - "ut_eitc", - "ut_retirement_credit", - "ut_ss_benefits_credit", - "ut_at_home_parent_credit" - ], - "2021-01-01": [ - "ut_retirement_credit", - "ut_ss_benefits_credit", - "ut_at_home_parent_credit" - ], - "2015-01-01": [ - "ut_retirement_credit", - "ut_ss_benefits_credit", - "ut_at_home_parent_credit" - ] - }, - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.earned_income": { - "type": "parameterNode", - "parameter": "gov.states.ut.tax.income.credits.earned_income", - "description": null, - "label": "Earned Income Tax Credit", - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.earned_income.rate": { - "type": "parameter", - "parameter": "gov.states.ut.tax.income.credits.earned_income.rate", - "description": "Utah matches this percentage of the federal earned income tax credit.", - "label": "Utah EITC match", - "unit": "/1", - "period": "year", - "values": { - "2023-01-01": 0.2, - "2022-01-01": 0.15, - "2015-01-01": 0.15 - }, - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.retirement": { - "type": "parameterNode", - "parameter": "gov.states.ut.tax.income.credits.retirement", - "description": null, - "label": "retirement", - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.retirement.birth_year": { - "type": "parameter", - "parameter": "gov.states.ut.tax.income.credits.retirement.birth_year", - "description": "Utah limits the retirement credit to filers born in or before this year.", - "label": "Utah retirement credit birth year", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 1952, - "2015-01-01": 1952 - }, - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.retirement.max": { - "type": "parameter", - "parameter": "gov.states.ut.tax.income.credits.retirement.max", - "description": "Maximum per-person value of the Utah retirement credit.", - "label": "Retirement credit per-person max value", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 450, - "2015-01-01": 450 - }, - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.retirement.phase_out": { - "type": "parameterNode", - "parameter": "gov.states.ut.tax.income.credits.retirement.phase_out", - "description": null, - "label": "phase out", - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.retirement.phase_out.rate": { - "type": "parameter", - "parameter": "gov.states.ut.tax.income.credits.retirement.phase_out.rate", - "description": "Rate at which the Utah retirement credit is phased out.", - "label": "Retirement credit phase-out rate", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.025, - "2015-01-01": 0.025 - }, - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.retirement.phase_out.threshold": { - "type": "parameterNode", - "parameter": "gov.states.ut.tax.income.credits.retirement.phase_out.threshold", - "description": "Modified AGI threshold after which the Utah retirement credit is phased out.", - "label": "Retirement credit phase-out threshold", - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.retirement.phase_out.threshold.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ut.tax.income.credits.retirement.phase_out.threshold.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.retirement.phase_out.threshold.JOINT": { - "type": "parameter", - "parameter": "gov.states.ut.tax.income.credits.retirement.phase_out.threshold.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 32000, - "2015-01-01": 32000 - }, - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.retirement.phase_out.threshold.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ut.tax.income.credits.retirement.phase_out.threshold.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 16000, - "2015-01-01": 16000 - }, - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.retirement.phase_out.threshold.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ut.tax.income.credits.retirement.phase_out.threshold.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 32000, - "2015-01-01": 32000 - }, - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.credits.retirement.phase_out.threshold.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ut.tax.income.credits.retirement.phase_out.threshold.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 32000, - "2015-01-01": 32000 - }, - "economy": true, - "household": true - }, - "gov.states.ut.tax.income.rate": { - "type": "parameter", - "parameter": "gov.states.ut.tax.income.rate", - "description": "Utah taxes personal income at this flat rate.", - "label": "Utah income tax rate", - "unit": "/1", - "period": "year", - "values": { - "2025-01-01": 0.045, - "2024-01-01": 0.0455, - "2023-01-01": 0.0465, - "2022-01-01": 0.0485, - "2018-05-08": 0.0495, - "2008-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.dc": { - "type": "parameterNode", - "parameter": "gov.states.dc", - "description": null, - "label": "District of Columbia", - "economy": true, - "household": true - }, - "gov.states.dc.tax": { - "type": "parameterNode", - "parameter": "gov.states.dc.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.states.dc.tax.income": { - "type": "parameterNode", - "parameter": "gov.states.dc.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits": { - "type": "parameterNode", - "parameter": "gov.states.dc.tax.income.credits", - "description": null, - "label": "credits", - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.eitc": { - "type": "parameterNode", - "parameter": "gov.states.dc.tax.income.credits.eitc", - "description": null, - "label": "Earned Income Tax Credit", - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.eitc.with_children": { - "type": "parameterNode", - "parameter": "gov.states.dc.tax.income.credits.eitc.with_children", - "description": null, - "label": "with children", - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.eitc.with_children.match": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.credits.eitc.with_children.match", - "description": "DC matches this percentage of the federal earned income tax credit for filers with qualifying children.", - "label": "DC EITC match for filers with qualifying children", - "unit": "/1", - "period": "year", - "values": { - "2029-01-01": 1, - "2025-01-01": 0.85, - "2022-01-01": 0.7, - "2015-01-01": 0.4 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.eitc.without_children": { - "type": "parameterNode", - "parameter": "gov.states.dc.tax.income.credits.eitc.without_children", - "description": null, - "label": "without children", - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.eitc.without_children.phase_out": { - "type": "parameterNode", - "parameter": "gov.states.dc.tax.income.credits.eitc.without_children.phase_out", - "description": null, - "label": "phase out", - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.eitc.without_children.phase_out.start": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.credits.eitc.without_children.phase_out.start", - "description": "DC phases out its EITC for filers without qualifying children for income above this threshold.", - "label": "DC EITC phase-out threshold for filers without qualifying children", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 28100.8956281379, - "2034-01-01": 27556.7472786569, - "2033-01-01": 27019.3168100337, - "2032-01-01": 26495.322103126, - "2031-01-01": 25984.7631579339, - "2030-01-01": 25480.9220935996, - "2029-01-01": 24983.7989101231, - "2028-01-01": 24493.3936075044, - "2027-01-01": 23996.2704240279, - "2026-01-01": 23419.2044583437, - "2025-01-01": 23066.5940885864, - "2024-01-01": 22566, - "2023-01-01": 21888, - "2022-01-01": 20532, - "2021-01-01": 19743, - "2015-01-01": 19743 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.eitc.without_children.phase_out.rate": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.credits.eitc.without_children.phase_out.rate", - "description": "DC phases out its EITC for filers without qualifying children at this rate for income above the threshold.", - "label": "DC EITC phase-out rate for filers without qualifying children", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.0848 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.refundable": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.credits.refundable", - "description": "DC income tax has these refundable credits.", - "label": "DC refundable credits", - "unit": "list", - "period": "year", - "values": { - "2025-01-01": ["dc_eitc", "dc_ptc", "dc_kccatc", "dc_ctc"], - "2021-01-01": ["dc_eitc", "dc_ptc", "dc_kccatc"], - "2015-01-01": ["dc_eitc", "dc_ptc", "dc_kccatc"] - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.ctc": { - "type": "parameterNode", - "parameter": "gov.states.dc.tax.income.credits.ctc", - "description": null, - "label": "Child Tax Credit.", - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.ctc.income_threshold": { - "type": "parameterNode", - "parameter": "gov.states.dc.tax.income.credits.ctc.income_threshold", - "description": "DC limits its Child Tax Credit to filers with taxable income below the following amount, based on filing status.", - "label": "DC Child Tax Credit taxable income threshold", - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.ctc.income_threshold.SINGLE": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.credits.ctc.income_threshold.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 194900, - "2034-01-01": 191100, - "2033-01-01": 187400, - "2032-01-01": 183700, - "2031-01-01": 180200, - "2030-01-01": 176700, - "2029-01-01": 173200, - "2028-01-01": 169800, - "2027-01-01": 166400, - "2026-01-01": 162400, - "2025-01-01": 160000, - "2015-01-01": 160000 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.ctc.income_threshold.JOINT": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.credits.ctc.income_threshold.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2035-01-01": 292300, - "2034-01-01": 286700, - "2033-01-01": 281100, - "2032-01-01": 275600, - "2031-01-01": 270300, - "2030-01-01": 265100, - "2029-01-01": 259900, - "2028-01-01": 254800, - "2027-01-01": 249600, - "2026-01-01": 243600, - "2025-01-01": 240000, - "2015-01-01": 240000 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.ctc.income_threshold.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.credits.ctc.income_threshold.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 146100, - "2034-01-01": 143300, - "2033-01-01": 140500, - "2032-01-01": 137800, - "2031-01-01": 135100, - "2030-01-01": 132500, - "2029-01-01": 129900, - "2028-01-01": 127400, - "2027-01-01": 124800, - "2026-01-01": 121800, - "2025-01-01": 120000, - "2015-01-01": 120000 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.ctc.income_threshold.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.credits.ctc.income_threshold.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2035-01-01": 194900, - "2034-01-01": 191100, - "2033-01-01": 187400, - "2032-01-01": 183700, - "2031-01-01": 180200, - "2030-01-01": 176700, - "2029-01-01": 173200, - "2028-01-01": 169800, - "2027-01-01": 166400, - "2026-01-01": 162400, - "2025-01-01": 160000, - "2015-01-01": 160000 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.ctc.income_threshold.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.credits.ctc.income_threshold.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 194900, - "2034-01-01": 191100, - "2033-01-01": 187400, - "2032-01-01": 183700, - "2031-01-01": 180200, - "2030-01-01": 176700, - "2029-01-01": 173200, - "2028-01-01": 169800, - "2027-01-01": 166400, - "2026-01-01": 162400, - "2025-01-01": 160000, - "2015-01-01": 160000 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.ctc.child": { - "type": "parameterNode", - "parameter": "gov.states.dc.tax.income.credits.ctc.child", - "description": null, - "label": "child", - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.ctc.child.age_threshold": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.credits.ctc.child.age_threshold", - "description": "DC provides a Child Tax Credit amount for children below this age.", - "label": "DC Child Tax Credit child age threshold", - "unit": "age", - "period": "year", - "values": { - "2025-01-01": 6, - "2015-01-01": 6 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.ctc.child.child_cap": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.credits.ctc.child.child_cap", - "description": "DC limits the number of eligible children for the Child Tax Credit to this number.", - "label": "DC Child Tax Credit child cap", - "unit": "child", - "period": "year", - "values": { - "2025-01-01": 3, - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.ctc.phase_out": { - "type": "parameterNode", - "parameter": "gov.states.dc.tax.income.credits.ctc.phase_out", - "description": null, - "label": "phase out", - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.ctc.phase_out.increment": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.credits.ctc.phase_out.increment", - "description": "DC reduces the Child Tax Credit by a certain amount for each of this increment by which one's income exceeds the phase-out thresholds.", - "label": "DC Child Tax Credit phase-out increment", - "unit": "currency-USD", - "period": "year", - "values": { - "2025-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.ctc.phase_out.amount": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.credits.ctc.phase_out.amount", - "description": "DC reduces the Child Tax Credit by this amount for each increment by which one's income exceeds the phase-out thresholds.", - "label": "DC Child Tax Credit phase-out amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2025-01-01": 20, - "2015-01-01": 20 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.ctc.amount": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.credits.ctc.amount", - "description": "DC provides a Child Tax Credit of this amount per eligible child.", - "label": "DC Child Tax Credit amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 510, - "2034-01-01": 500, - "2033-01-01": 490, - "2032-01-01": 480, - "2031-01-01": 470, - "2030-01-01": 460, - "2029-01-01": 450, - "2028-01-01": 445, - "2027-01-01": 435, - "2026-01-01": 425, - "2025-01-01": 420, - "2015-01-01": 420 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.ptc": { - "type": "parameterNode", - "parameter": "gov.states.dc.tax.income.credits.ptc", - "description": null, - "label": "Property Tax Credit", - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.ptc.fraction_nonelderly": { - "type": "parameterNode", - "parameter": "gov.states.dc.tax.income.credits.ptc.fraction_nonelderly", - "description": "DC property tax credit offset is this AGI-specific fraction of US AGI for non-elderly.", - "label": "fraction nonelderly" - }, - "gov.states.dc.tax.income.credits.ptc.fraction_nonelderly[0]": { - "type": "parameterNode", - "parameter": "gov.states.dc.tax.income.credits.ptc.fraction_nonelderly[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.dc.tax.income.credits.ptc.fraction_nonelderly[0].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.credits.ptc.fraction_nonelderly[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.ptc.fraction_nonelderly[0].amount": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.credits.ptc.fraction_nonelderly[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.ptc.fraction_nonelderly[1]": { - "type": "parameterNode", - "parameter": "gov.states.dc.tax.income.credits.ptc.fraction_nonelderly[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.dc.tax.income.credits.ptc.fraction_nonelderly[1].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.credits.ptc.fraction_nonelderly[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.ptc.fraction_nonelderly[1].amount": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.credits.ptc.fraction_nonelderly[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.ptc.fraction_nonelderly[2]": { - "type": "parameterNode", - "parameter": "gov.states.dc.tax.income.credits.ptc.fraction_nonelderly[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.dc.tax.income.credits.ptc.fraction_nonelderly[2].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.credits.ptc.fraction_nonelderly[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 52000, - "2015-01-01": 52000 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.ptc.fraction_nonelderly[2].amount": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.credits.ptc.fraction_nonelderly[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.ptc.fraction_nonelderly[3]": { - "type": "parameterNode", - "parameter": "gov.states.dc.tax.income.credits.ptc.fraction_nonelderly[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.dc.tax.income.credits.ptc.fraction_nonelderly[3].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.credits.ptc.fraction_nonelderly[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 79500, - "2034-01-01": 78000, - "2033-01-01": 76500, - "2032-01-01": 75000, - "2031-01-01": 73500, - "2030-01-01": 72100, - "2029-01-01": 70700, - "2028-01-01": 69300, - "2027-01-01": 67900, - "2026-01-01": 66300, - "2025-01-01": 65300, - "2024-01-01": 63900, - "2023-01-01": 61300, - "2022-01-01": 57600, - "2021-01-01": 56200, - "2015-01-01": 56200 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.ptc.fraction_nonelderly[3].amount": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.credits.ptc.fraction_nonelderly[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.ptc.max": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.credits.ptc.max", - "description": "DC property tax credit is limited to this maximum amount.", - "label": "DC property tax credit maximum amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1700, - "2034-01-01": 1675, - "2033-01-01": 1625, - "2032-01-01": 1600, - "2031-01-01": 1575, - "2030-01-01": 1550, - "2029-01-01": 1500, - "2028-01-01": 1475, - "2027-01-01": 1450, - "2026-01-01": 1425, - "2025-01-01": 1400, - "2024-01-01": 1375, - "2023-01-01": 1325, - "2022-01-01": 1250, - "2021-01-01": 1225, - "2015-01-01": 1225 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.ptc.rent_ratio": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.credits.ptc.rent_ratio", - "description": "DC property tax credit assumes property taxes are this ratio to rent.", - "label": "DC property tax credit property tax to rent ratio", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.ptc.min_elderly_age": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.credits.ptc.min_elderly_age", - "description": "DC property tax credit has a different credit rate for those this age or older.", - "label": "DC property tax minimum elderly age", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 70, - "2015-01-01": 70 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.ptc.takeup": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.credits.ptc.takeup", - "description": "The share of eligible individuals who claim the DC property tax credit.", - "label": "DC property tax credit takeup rate", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.32, - "2015-01-01": 0.32 - }, - "economy": false, - "household": false - }, - "gov.states.dc.tax.income.credits.ptc.fraction_elderly": { - "type": "parameterNode", - "parameter": "gov.states.dc.tax.income.credits.ptc.fraction_elderly", - "description": "DC property tax credit offset is this AGI-specific fraction of US AGI for elderly.", - "label": "fraction elderly" - }, - "gov.states.dc.tax.income.credits.ptc.fraction_elderly[0]": { - "type": "parameterNode", - "parameter": "gov.states.dc.tax.income.credits.ptc.fraction_elderly[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.dc.tax.income.credits.ptc.fraction_elderly[0].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.credits.ptc.fraction_elderly[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.ptc.fraction_elderly[0].amount": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.credits.ptc.fraction_elderly[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.ptc.fraction_elderly[1]": { - "type": "parameterNode", - "parameter": "gov.states.dc.tax.income.credits.ptc.fraction_elderly[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.dc.tax.income.credits.ptc.fraction_elderly[1].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.credits.ptc.fraction_elderly[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 108400, - "2034-01-01": 106300, - "2033-01-01": 104200, - "2032-01-01": 102200, - "2031-01-01": 100200, - "2030-01-01": 98300, - "2029-01-01": 96400, - "2028-01-01": 94500, - "2027-01-01": 92600, - "2026-01-01": 90300, - "2025-01-01": 89000, - "2024-01-01": 87100, - "2023-01-01": 83700, - "2022-01-01": 78600, - "2021-01-01": 76700, - "2015-01-01": 76700 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.ptc.fraction_elderly[1].amount": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.credits.ptc.fraction_elderly[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.cdcc": { - "type": "parameterNode", - "parameter": "gov.states.dc.tax.income.credits.cdcc", - "description": null, - "label": "Child and Dependent Care Credit", - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.cdcc.match": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.credits.cdcc.match", - "description": "DC matches this share of the federal child/dependent care credit.", - "label": "DC CDCC match rate", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.32, - "2015-01-01": 0.32 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.kccatc": { - "type": "parameterNode", - "parameter": "gov.states.dc.tax.income.credits.kccatc", - "description": null, - "label": "Keep Child Care Affordable Tax Credit", - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.kccatc.max_amount": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.credits.kccatc.max_amount", - "description": "DC keep child care affordable tax credit is limited to this maximum amount per eligible child.", - "label": "DC KCCATC maximum amount per eligible child", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1440, - "2034-01-01": 1415, - "2033-01-01": 1385, - "2032-01-01": 1360, - "2031-01-01": 1335, - "2030-01-01": 1305, - "2029-01-01": 1280, - "2028-01-01": 1255, - "2027-01-01": 1230, - "2026-01-01": 1200, - "2025-01-01": 1185, - "2024-01-01": 1160, - "2023-01-01": 1115, - "2022-01-01": 1045, - "2021-01-01": 1020, - "2020-01-01": 1010, - "2018-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.kccatc.income_limit": { - "type": "parameterNode", - "parameter": "gov.states.dc.tax.income.credits.kccatc.income_limit", - "description": "DC limits the keep child care affordable tax credit to those whose DC taxable income does not exceed this limit.", - "label": "DC KCCATC DC taxable income limit", - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.kccatc.income_limit.SINGLE": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.credits.kccatc.income_limit.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "year", - "period": "year", - "values": { - "2035-01-01": 217000, - "2034-01-01": 212800, - "2033-01-01": 208600, - "2032-01-01": 204600, - "2031-01-01": 200700, - "2030-01-01": 196800, - "2029-01-01": 192900, - "2028-01-01": 189100, - "2027-01-01": 185300, - "2026-01-01": 180800, - "2025-01-01": 178100, - "2024-01-01": 174300, - "2023-01-01": 167400, - "2022-01-01": 157200, - "2021-01-01": 153400, - "2019-01-01": 150000, - "2018-01-01": 750000, - "2015-01-01": 750000 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.kccatc.income_limit.JOINT": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.credits.kccatc.income_limit.JOINT", - "description": null, - "label": "JOINT", - "unit": "year", - "period": "year", - "values": { - "2035-01-01": 217000, - "2034-01-01": 212800, - "2033-01-01": 208600, - "2032-01-01": 204600, - "2031-01-01": 200700, - "2030-01-01": 196800, - "2029-01-01": 192900, - "2028-01-01": 189100, - "2027-01-01": 185300, - "2026-01-01": 180800, - "2025-01-01": 178100, - "2024-01-01": 174300, - "2023-01-01": 167400, - "2022-01-01": 157200, - "2021-01-01": 153400, - "2020-01-01": 151900, - "2019-01-01": 150000, - "2018-01-01": 750000, - "2015-01-01": 750000 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.kccatc.income_limit.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.credits.kccatc.income_limit.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "year", - "period": "year", - "values": { - "2035-01-01": 108400, - "2034-01-01": 106300, - "2033-01-01": 104200, - "2032-01-01": 102200, - "2031-01-01": 100200, - "2030-01-01": 98300, - "2029-01-01": 96400, - "2028-01-01": 94500, - "2027-01-01": 92600, - "2026-01-01": 90300, - "2025-01-01": 89000, - "2024-01-01": 87100, - "2023-01-01": 83700, - "2022-01-01": 78600, - "2021-01-01": 76700, - "2020-01-01": 151900, - "2019-01-01": 75000, - "2018-01-01": 375000, - "2015-01-01": 375000 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.kccatc.income_limit.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.credits.kccatc.income_limit.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "year", - "period": "year", - "values": { - "2035-01-01": 217000, - "2034-01-01": 212800, - "2033-01-01": 208600, - "2032-01-01": 204600, - "2031-01-01": 200700, - "2030-01-01": 196800, - "2029-01-01": 192900, - "2028-01-01": 189100, - "2027-01-01": 185300, - "2026-01-01": 180800, - "2025-01-01": 178100, - "2024-01-01": 174300, - "2023-01-01": 167400, - "2022-01-01": 157200, - "2021-01-01": 153400, - "2020-01-01": 151900, - "2019-01-01": 150000, - "2018-01-01": 750000, - "2015-01-01": 750000 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.kccatc.income_limit.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.credits.kccatc.income_limit.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "year", - "period": "year", - "values": { - "2035-01-01": 217000, - "2034-01-01": 212800, - "2033-01-01": 208600, - "2032-01-01": 204600, - "2031-01-01": 200700, - "2030-01-01": 196800, - "2029-01-01": 192900, - "2028-01-01": 189100, - "2027-01-01": 185300, - "2026-01-01": 180800, - "2025-01-01": 178100, - "2024-01-01": 174300, - "2023-01-01": 167400, - "2022-01-01": 157200, - "2021-01-01": 153400, - "2020-01-01": 151900, - "2019-01-01": 150000, - "2018-01-01": 750000, - "2015-01-01": 750000 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.kccatc.max_age": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.credits.kccatc.max_age", - "description": "DC keep child care affordable tax credit is for children this age or less.", - "label": "DC KCCATC maximum child age", - "unit": "year", - "period": "year", - "values": { - "2018-01-01": 3, - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.credits.non_refundable": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.credits.non_refundable", - "description": "DC income tax has these non-refundable credits.", - "label": "DC non-refundable credits", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": ["dc_cdcc"], - "2015-01-01": ["dc_cdcc"] - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.snap": { - "type": "parameterNode", - "parameter": "gov.states.dc.tax.income.snap", - "description": null, - "label": "snap", - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.snap.temporary_local_benefit": { - "type": "parameterNode", - "parameter": "gov.states.dc.tax.income.snap.temporary_local_benefit", - "description": null, - "label": "temporary local benefit", - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.snap.temporary_local_benefit.rate": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.snap.temporary_local_benefit.rate", - "description": "DC provides a temporary local SNAP benefit of this percentage of the maximum allotment.", - "label": "DC temporary local SNAP benefit rate", - "unit": "/1", - "period": "year", - "values": { - "2024-10-01": 0, - "2024-01-01": 0.1, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.subtractions": { - "type": "parameterNode", - "parameter": "gov.states.dc.tax.income.subtractions", - "description": null, - "label": "subtractions", - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.subtractions.disabled_exclusion": { - "type": "parameterNode", - "parameter": "gov.states.dc.tax.income.subtractions.disabled_exclusion", - "description": null, - "label": "disabled exclusion", - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.subtractions.disabled_exclusion.income_limit": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.subtractions.disabled_exclusion.income_limit", - "description": "DC allows an AGI subtraction for disabled persons who meet certain eligibility requirements and have household income below this limit.", - "label": "DC disabled exclusion income limit", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.subtractions.disabled_exclusion.amount": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.subtractions.disabled_exclusion.amount", - "description": "DC allows an AGI subtraction of this amount for disabled persons who meet certain eligibility requirements.", - "label": "DC disabled exclusion amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.subtractions.sources": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.subtractions.sources", - "description": "DC subtracts these items from US AGI when computing DC AGI.", - "label": "DC subtractions from US adjusted gross income", - "unit": "list", - "period": null, - "values": { - "2021-01-01": [ - "taxable_social_security", - "taxable_unemployment_compensation", - "dc_disabled_exclusion_subtraction", - "dc_disability_exclusion" - ], - "2015-01-01": [ - "taxable_social_security", - "taxable_unemployment_compensation", - "dc_disabled_exclusion_subtraction", - "dc_disability_exclusion" - ] - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.additions": { - "type": "parameterNode", - "parameter": "gov.states.dc.tax.income.additions", - "description": null, - "label": "additions", - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.additions.sources": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.additions.sources", - "description": "DC adds these items to US AGI when computing DC AGI.", - "label": "DC additions to US adjusted gross income", - "unit": "list", - "period": null, - "values": { - "2021-01-01": ["dc_self_employment_loss_addition"], - "2015-01-01": ["dc_self_employment_loss_addition"] - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.additions.self_employment_loss": { - "type": "parameterNode", - "parameter": "gov.states.dc.tax.income.additions.self_employment_loss", - "description": null, - "label": "self employment loss", - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.additions.self_employment_loss.threshold": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.additions.self_employment_loss.threshold", - "description": "DC AGI excludes self-employment losses in excess of this threshold.", - "label": "DC AGI addition self-employment loss threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 12000, - "2015-01-01": 12000 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.joint_separately_option": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.joint_separately_option", - "description": "DC offers taxpayers who file married joint on federal return the option to file separately on DC return if this parameter is true.", - "label": "Whether DC offers filing separate option to married-joint taxpayers", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.rates": { - "type": "parameterNode", - "parameter": "gov.states.dc.tax.income.rates", - "description": "DC uses these income tax brackets and rates for all filing units.", - "label": "rates" - }, - "gov.states.dc.tax.income.rates[0]": { - "type": "parameterNode", - "parameter": "gov.states.dc.tax.income.rates[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.dc.tax.income.rates[0].rate": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.rates[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.rates[0].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.rates[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.rates[1]": { - "type": "parameterNode", - "parameter": "gov.states.dc.tax.income.rates[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.dc.tax.income.rates[1].rate": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.rates[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.06, - "2015-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.rates[1].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.rates[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.rates[2]": { - "type": "parameterNode", - "parameter": "gov.states.dc.tax.income.rates[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.dc.tax.income.rates[2].rate": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.rates[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.065, - "2015-01-01": 0.065 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.rates[2].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.rates[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 40000, - "2015-01-01": 40000 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.rates[3]": { - "type": "parameterNode", - "parameter": "gov.states.dc.tax.income.rates[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.dc.tax.income.rates[3].rate": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.rates[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.085, - "2015-01-01": 0.085 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.rates[3].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.rates[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 60000, - "2015-01-01": 60000 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.rates[4]": { - "type": "parameterNode", - "parameter": "gov.states.dc.tax.income.rates[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.dc.tax.income.rates[4].rate": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.rates[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.0925, - "2021-01-01": 0.0875, - "2015-01-01": 0.0875 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.rates[4].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.rates[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 250000, - "2021-01-01": 350000, - "2015-01-01": 350000 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.rates[5]": { - "type": "parameterNode", - "parameter": "gov.states.dc.tax.income.rates[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.dc.tax.income.rates[5].rate": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.rates[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.0975, - "2021-01-01": 0.0895, - "2015-01-01": 0.0895 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.rates[5].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.rates[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 500000, - "2021-01-01": 1000000, - "2015-01-01": 1000000 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.rates[6]": { - "type": "parameterNode", - "parameter": "gov.states.dc.tax.income.rates[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.dc.tax.income.rates[6].rate": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.rates[6].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.1075, - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.rates[6].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.rates[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 1000000, - "2021-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.deductions": { - "type": "parameterNode", - "parameter": "gov.states.dc.tax.income.deductions", - "description": null, - "label": "deductions", - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.deductions.itemized": { - "type": "parameterNode", - "parameter": "gov.states.dc.tax.income.deductions.itemized", - "description": null, - "label": "itemized", - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.deductions.itemized.phase_out": { - "type": "parameterNode", - "parameter": "gov.states.dc.tax.income.deductions.itemized.phase_out", - "description": null, - "label": "phase out", - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.deductions.itemized.phase_out.start": { - "type": "parameterNode", - "parameter": "gov.states.dc.tax.income.deductions.itemized.phase_out.start", - "description": "DC phases out some itemized deductions over this DC AGI threshold.", - "label": "DC itemized deduction phase-out DC AGI start", - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.deductions.itemized.phase_out.start.SINGLE": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.deductions.itemized.phase_out.start.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 200000, - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.deductions.itemized.phase_out.start.JOINT": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.deductions.itemized.phase_out.start.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 200000, - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.deductions.itemized.phase_out.start.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.deductions.itemized.phase_out.start.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.deductions.itemized.phase_out.start.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.deductions.itemized.phase_out.start.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 200000, - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.deductions.itemized.phase_out.start.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.deductions.itemized.phase_out.start.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 200000, - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.states.dc.tax.income.deductions.itemized.phase_out.rate": { - "type": "parameter", - "parameter": "gov.states.dc.tax.income.deductions.itemized.phase_out.rate", - "description": "DC phases out some itemized deductions at this rate on DC AGI above a threshold.", - "label": "DC itemized deduction phase-out rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee", - "description": null, - "label": "Department of Energy & Environment", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap", - "description": null, - "label": "Low Income Home Energy Assistance Program (LIHEAP)", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.income_level_increment": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.income_level_increment", - "description": "The District of Columbia uses this increment to determine filers' income levels under the Low Income Home Energy Assistance Program (LIHEAP).", - "label": "DC LIHEAP Income level increment", - "unit": "currency-USD", - "period": "year", - "values": { - "2023-10-01": 2000, - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap.payment", - "description": null, - "label": "payment", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.heat_in_rent": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.heat_in_rent", - "description": "The District of Columbia provides up to this payment amount under the Low-Income Home Energy Assistance Program (LIHEAP) for filers with heat costs included in rent.", - "label": "DC LIHEAP heat-in-rent payment", - "unit": "currency-USD", - "period": "year", - "values": { - "2023-10-01": 250, - "2015-01-01": 250 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.oil": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.oil", - "description": "The District of Columbia provides up to this payment amount under the Low-Income Home Energy Assistance Program (LIHEAP) for filers who heat primarily with oil.", - "label": "DC LIHEAP Oil payment", - "unit": "currency-USD", - "period": "year", - "values": { - "2023-10-01": 1500, - "2015-01-01": 1500 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap.payment.electricity", - "description": "The District of Columbia provides up to this payment amount under the Low-Income Home Energy Assistance Program (LIHEAP) for filers who heat primarily with electricity.", - "label": "DC LIHEAP Electricity payment", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY", - "description": null, - "label": "MULTI FAMILY", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.1": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.1.1": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.1.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 729, - "2015-01-01": 729 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.1.2": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.1.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 857, - "2015-01-01": 857 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.1.3": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.1.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 943, - "2015-01-01": 943 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.1.4": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.1.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1071, - "2015-01-01": 1071 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.2": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.2.1": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.2.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 694, - "2015-01-01": 694 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.2.2": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.2.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 816, - "2015-01-01": 816 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.2.3": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.2.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 898, - "2015-01-01": 898 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.2.4": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.2.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1020, - "2015-01-01": 1020 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.3": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.3.1": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.3.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 653, - "2015-01-01": 653 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.3.2": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.3.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 768, - "2015-01-01": 768 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.3.3": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.3.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 845, - "2015-01-01": 845 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.3.4": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.3.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 960, - "2015-01-01": 960 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.4": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.4.1": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.4.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 632, - "2015-01-01": 632 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.4.2": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.4.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 744, - "2015-01-01": 744 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.4.3": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.4.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 818, - "2015-01-01": 818 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.4.4": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.4.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 930, - "2015-01-01": 930 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.5": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.5.1": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.5.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 469, - "2015-01-01": 469 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.5.2": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.5.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 552, - "2015-01-01": 552 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.5.3": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.5.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 607, - "2015-01-01": 607 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.5.4": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.5.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 690, - "2015-01-01": 690 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.6": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.6.1": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.6.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 449, - "2015-01-01": 449 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.6.2": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.6.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 528, - "2015-01-01": 528 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.6.3": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.6.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 581, - "2015-01-01": 581 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.6.4": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.6.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 660, - "2015-01-01": 660 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.7": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.7", - "description": null, - "label": "7", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.7.1": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.7.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 367, - "2015-01-01": 367 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.7.2": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.7.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 432, - "2015-01-01": 432 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.7.3": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.7.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 475, - "2015-01-01": 475 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.7.4": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.7.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 540, - "2015-01-01": 540 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.8": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.8", - "description": null, - "label": "8", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.8.1": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.8.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 347, - "2015-01-01": 347 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.8.2": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.8.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 408, - "2015-01-01": 408 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.8.3": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.8.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 449, - "2015-01-01": 449 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.8.4": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.8.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 510, - "2015-01-01": 510 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.9": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.9", - "description": null, - "label": "9", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.9.1": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.9.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 306, - "2015-01-01": 306 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.9.2": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.9.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 360, - "2015-01-01": 360 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.9.3": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.9.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 396, - "2015-01-01": 396 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.9.4": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.9.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 450, - "2015-01-01": 450 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.10": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.10", - "description": null, - "label": "10", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.10.1": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.10.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 250, - "2015-01-01": 250 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.10.2": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.10.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 250, - "2015-01-01": 250 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.10.3": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.10.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 250, - "2015-01-01": 250 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.10.4": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.MULTI_FAMILY.10.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 250, - "2015-01-01": 250 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY", - "description": null, - "label": "SINGLE FAMILY", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.1": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.1.1": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.1.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 948, - "2015-01-01": 948 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.1.2": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.1.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1116, - "2015-01-01": 1116 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.1.3": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.1.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1227, - "2015-01-01": 1227 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.1.4": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.1.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1394, - "2015-01-01": 1394 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.2": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.2.1": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.2.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 903, - "2015-01-01": 903 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.2.2": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.2.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1063, - "2015-01-01": 1063 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.2.3": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.2.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1169, - "2015-01-01": 1169 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.2.4": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.2.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1328, - "2015-01-01": 1328 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.3": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.3.1": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.3.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 850, - "2015-01-01": 850 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.3.2": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.3.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.3.3": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.3.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1100, - "2015-01-01": 1100 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.3.4": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.3.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1250, - "2015-01-01": 1250 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.4": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.4.1": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.4.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 823, - "2015-01-01": 823 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.4.2": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.4.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 969, - "2015-01-01": 969 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.4.3": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.4.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1066, - "2015-01-01": 1066 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.4.4": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.4.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1211, - "2015-01-01": 1211 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.5": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.5.1": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.5.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 611, - "2015-01-01": 611 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.5.2": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.5.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 719, - "2015-01-01": 719 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.5.3": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.5.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 791, - "2015-01-01": 791 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.5.4": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.5.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 898, - "2015-01-01": 898 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.6": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.6.1": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.6.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 584, - "2015-01-01": 584 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.6.2": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.6.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 688, - "2015-01-01": 688 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.6.3": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.6.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 756, - "2015-01-01": 756 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.6.4": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.6.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 859, - "2015-01-01": 859 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.7": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.7", - "description": null, - "label": "7", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.7.1": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.7.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 478, - "2015-01-01": 478 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.7.2": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.7.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 563, - "2015-01-01": 563 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.7.3": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.7.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 619, - "2015-01-01": 619 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.7.4": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.7.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 703, - "2015-01-01": 703 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.8": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.8", - "description": null, - "label": "8", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.8.1": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.8.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 452, - "2015-01-01": 452 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.8.2": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.8.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 531, - "2015-01-01": 531 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.8.3": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.8.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 584, - "2015-01-01": 584 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.8.4": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.8.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 664, - "2015-01-01": 664 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.9": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.9", - "description": null, - "label": "9", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.9.1": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.9.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 398, - "2015-01-01": 398 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.9.2": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.9.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 469, - "2015-01-01": 469 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.9.3": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.9.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 516, - "2015-01-01": 516 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.9.4": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.9.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 586, - "2015-01-01": 586 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.10": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.10", - "description": null, - "label": "10", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.10.1": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.10.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 250, - "2015-01-01": 250 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.10.2": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.10.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 250, - "2015-01-01": 250 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.10.3": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.10.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 250, - "2015-01-01": 250 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.10.4": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.electricity.SINGLE_FAMILY.10.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 273, - "2015-01-01": 273 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap.payment.gas", - "description": "The District of Columbia provides up to this payment amount under the Low-Income Home Energy Assistance Program (LIHEAP) for filers ho heat primarily with gas.", - "label": "DC LIHEAP Gas payment", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY", - "description": null, - "label": "MULTI FAMILY", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.1": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.1.1": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.1.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1045, - "2015-01-01": 1045 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.1.2": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.1.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1229, - "2015-01-01": 1229 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.1.3": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.1.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1290, - "2015-01-01": 1290 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.1.4": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.1.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1536, - "2015-01-01": 1536 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.2": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.2.1": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.2.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 995, - "2015-01-01": 995 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.2.2": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.2.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1170, - "2015-01-01": 1170 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.2.3": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.2.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1229, - "2015-01-01": 1229 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.2.4": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.2.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1463, - "2015-01-01": 1463 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.3": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.3.1": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.3.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 918, - "2015-01-01": 918 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.3.2": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.3.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1080, - "2015-01-01": 1080 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.3.3": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.3.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1134, - "2015-01-01": 1134 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.3.4": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.3.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1350, - "2015-01-01": 1350 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.4": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.4.1": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.4.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 842, - "2015-01-01": 842 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.4.2": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.4.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 990, - "2015-01-01": 990 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.4.3": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.4.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1040, - "2015-01-01": 1040 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.4.4": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.4.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1238, - "2015-01-01": 1238 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.5": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.5.1": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.5.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 765, - "2015-01-01": 765 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.5.2": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.5.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 900, - "2015-01-01": 900 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.5.3": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.5.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 945, - "2015-01-01": 945 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.5.4": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.5.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1125, - "2015-01-01": 1125 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.6": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.6.1": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.6.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 727, - "2015-01-01": 727 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.6.2": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.6.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 855, - "2015-01-01": 855 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.6.3": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.6.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 898, - "2015-01-01": 898 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.6.4": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.6.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1069, - "2015-01-01": 1069 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.7": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.7", - "description": null, - "label": "7", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.7.1": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.7.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 689, - "2015-01-01": 689 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.7.2": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.7.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 810, - "2015-01-01": 810 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.7.3": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.7.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 851, - "2015-01-01": 851 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.7.4": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.7.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1013, - "2015-01-01": 1013 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.8": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.8", - "description": null, - "label": "8", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.8.1": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.8.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 650, - "2015-01-01": 650 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.8.2": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.8.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 765, - "2015-01-01": 765 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.8.3": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.8.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 803, - "2015-01-01": 803 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.8.4": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.8.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 956, - "2015-01-01": 956 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.9": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.9", - "description": null, - "label": "9", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.9.1": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.9.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 574, - "2015-01-01": 574 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.9.2": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.9.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 675, - "2015-01-01": 675 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.9.3": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.9.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 709, - "2015-01-01": 709 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.9.4": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.9.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 844, - "2015-01-01": 844 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.10": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.10", - "description": null, - "label": "10", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.10.1": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.10.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 459, - "2015-01-01": 459 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.10.2": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.10.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 540, - "2015-01-01": 540 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.10.3": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.10.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 567, - "2015-01-01": 567 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.10.4": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.MULTI_FAMILY.10.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 675, - "2015-01-01": 675 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY", - "description": null, - "label": "SINGLE FAMILY", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.1": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.1", - "description": null, - "label": "1", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.1.1": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.1.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1277, - "2015-01-01": 1277 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.1.2": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.1.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1502, - "2015-01-01": 1502 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.1.3": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.1.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1577, - "2015-01-01": 1577 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.1.4": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.1.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1800, - "2015-01-01": 1800 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.2": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.2", - "description": null, - "label": "2", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.2.1": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.2.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1216, - "2015-01-01": 1216 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.2.2": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.2.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1430, - "2015-01-01": 1430 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.2.3": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.2.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1502, - "2015-01-01": 1502 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.2.4": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.2.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1788, - "2015-01-01": 1788 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.3": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.3", - "description": null, - "label": "3", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.3.1": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.3.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1122, - "2015-01-01": 1122 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.3.2": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.3.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1320, - "2015-01-01": 1320 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.3.3": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.3.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1386, - "2015-01-01": 1386 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.3.4": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.3.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1650, - "2015-01-01": 1650 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.4": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.4", - "description": null, - "label": "4", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.4.1": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.4.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1029, - "2015-01-01": 1029 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.4.2": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.4.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1210, - "2015-01-01": 1210 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.4.3": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.4.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1271, - "2015-01-01": 1271 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.4.4": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.4.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1513, - "2015-01-01": 1513 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.5": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.5", - "description": null, - "label": "5", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.5.1": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.5.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 935, - "2015-01-01": 935 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.5.2": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.5.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1100, - "2015-01-01": 1100 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.5.3": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.5.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1155, - "2015-01-01": 1155 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.5.4": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.5.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1375, - "2015-01-01": 1375 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.6": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.6", - "description": null, - "label": "6", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.6.1": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.6.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 888, - "2015-01-01": 888 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.6.2": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.6.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1045, - "2015-01-01": 1045 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.6.3": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.6.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1097, - "2015-01-01": 1097 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.6.4": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.6.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1306, - "2015-01-01": 1306 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.7": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.7", - "description": null, - "label": "7", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.7.1": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.7.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 842, - "2015-01-01": 842 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.7.2": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.7.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 990, - "2015-01-01": 990 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.7.3": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.7.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1040, - "2015-01-01": 1040 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.7.4": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.7.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1238, - "2015-01-01": 1238 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.8": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.8", - "description": null, - "label": "8", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.8.1": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.8.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 795, - "2015-01-01": 795 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.8.2": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.8.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 935, - "2015-01-01": 935 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.8.3": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.8.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 982, - "2015-01-01": 982 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.8.4": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.8.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1169, - "2015-01-01": 1169 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.9": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.9", - "description": null, - "label": "9", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.9.1": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.9.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 701, - "2015-01-01": 701 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.9.2": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.9.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 825, - "2015-01-01": 825 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.9.3": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.9.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 866, - "2015-01-01": 866 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.9.4": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.9.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1031, - "2015-01-01": 1031 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.10": { - "type": "parameterNode", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.10", - "description": null, - "label": "10", - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.10.1": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.10.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-10-01": 561, - "2015-01-01": 561 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.10.2": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.10.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-10-01": 660, - "2015-01-01": 660 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.10.3": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.10.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-10-01": 693, - "2015-01-01": 693 - }, - "economy": true, - "household": true - }, - "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.10.4": { - "type": "parameter", - "parameter": "gov.states.dc.doee.liheap.payment.gas.SINGLE_FAMILY.10.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-10-01": 825, - "2015-01-01": 825 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs", - "description": null, - "label": "Department of Human Services", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp", - "description": null, - "label": "Child Care Subsidy Program (CCSP)", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.qualified_immigration_statuses": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.qualified_immigration_statuses", - "description": "The District of Columbia limits the Child Care Subsidy Program to children of these immigration statuses.", - "label": "DC CCSP qualified immigration statuses", - "unit": "list", - "period": "year", - "values": { - "1975-01-01": [ - "CITIZEN", - "LEGAL_PERMANENT_RESIDENT", - "REFUGEE", - "ASYLEE", - "PAROLED_ONE_YEAR", - "DEPORTATION_WITHHELD" - ] - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.age_threshold": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.age_threshold", - "description": null, - "label": "age threshold", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.age_threshold.teen_parent": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.age_threshold.teen_parent", - "description": "The District of Columbia considers an applicant to be a teen parent when the applicant is at this age or younger under the Child Care Subsidy Program.", - "label": "DC CCSP teen parent age threshold", - "unit": "year", - "period": "year", - "values": { - "2020-01-01": 19, - "2015-01-01": 19 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.age_threshold.elderly": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.age_threshold.elderly", - "description": "The District of Columbia considers an applicant to be elderly when the applicant is at this age or older under the Child Care Subsidy Program.", - "label": "DC CCSP elderly age threshold", - "unit": "year", - "period": "year", - "values": { - "2020-01-01": 62, - "2015-01-01": 62 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.age_threshold.disabled_child": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.age_threshold.disabled_child", - "description": "The District of Columbia limits the Child Care Subsidy Program to applicants with disabled children younger than this age.", - "label": "DC CCSP disabled child age threshold", - "unit": "year", - "period": "year", - "values": { - "2020-01-01": 19, - "2015-01-01": 19 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.age_threshold.child": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.age_threshold.child", - "description": "The District of Columbia limits the Child Care Subsidy Program to applicants with children younger than this age.", - "label": "DC CCSP child age threshold", - "unit": "year", - "period": "year", - "values": { - "2020-01-01": 13, - "2015-01-01": 13 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay", - "description": null, - "label": "copay", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.exempted_rate": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.exempted_rate", - "description": "The District of Columbia exempts households with income below this percentage of the poverty line from under the Child Care Subsidy Program copay.", - "label": "DC CCSP copay exemption FPL limit", - "unit": "/1", - "period": "month", - "values": { - "2020-01-01": 1.5, - "2015-01-01": 1.5 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child", - "description": null, - "label": "second child", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time", - "description": "The District of Columbia applies this amount as the full time copay for the second child, based on household income and poverty level ratio under the Child Care Subsidy Program.", - "label": "DC CCSP full-time copay amount for the second child" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[0]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[0].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[0].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[0].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[1]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[1].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[1].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 1.51, - "2015-01-01": 1.51 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[1].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 1.92, - "2015-01-01": 1.92 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[2]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[2].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[2].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 1.61, - "2015-01-01": 1.61 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[2].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 2.04, - "2015-01-01": 2.04 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[3]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[3].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[3].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 1.71, - "2015-01-01": 1.71 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[3].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 1.12, - "2015-01-01": 1.12 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[4]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[4].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[4].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 1.81, - "2015-01-01": 1.81 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[4].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 1.18, - "2015-01-01": 1.18 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[5]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[5].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[5].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 1.91, - "2015-01-01": 1.91 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[5].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 1.24, - "2015-01-01": 1.24 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[6]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[6].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[6].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 2.01, - "2015-01-01": 2.01 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[6].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[6].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 1.74, - "2015-01-01": 1.74 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[7]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[7].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[7].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 2.11, - "2015-01-01": 2.11 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[7].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[7].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 1.82, - "2015-01-01": 1.82 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[8]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[8].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[8].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 2.21, - "2015-01-01": 2.21 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[8].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[8].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 1.9, - "2015-01-01": 1.9 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[9]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[9].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[9].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 2.31, - "2015-01-01": 2.31 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[9].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[9].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 0.6, - "2015-01-01": 0.6 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[10]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[10]", - "description": null, - "label": "bracket 11" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[10].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[10].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 2.41, - "2015-01-01": 2.41 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[10].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[10].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 2.59, - "2015-01-01": 2.59 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[11]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[11]", - "description": null, - "label": "bracket 12" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[11].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[11].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 2.51, - "2015-01-01": 2.51 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[11].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[11].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 2.69, - "2015-01-01": 2.69 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[12]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[12]", - "description": null, - "label": "bracket 13" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[12].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[12].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 2.61, - "2015-01-01": 2.61 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[12].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[12].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 2.79, - "2015-01-01": 2.79 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[13]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[13]", - "description": null, - "label": "bracket 14" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[13].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[13].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 2.71, - "2015-01-01": 2.71 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[13].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[13].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 3.48, - "2015-01-01": 3.48 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[14]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[14]", - "description": null, - "label": "bracket 15" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[14].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[14].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 2.81, - "2015-01-01": 2.81 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[14].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[14].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 3.6, - "2015-01-01": 3.6 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[15]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[15]", - "description": null, - "label": "bracket 16" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[15].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[15].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 2.91, - "2015-01-01": 2.91 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[15].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[15].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 3.72, - "2015-01-01": 3.72 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[16]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[16]", - "description": null, - "label": "bracket 17" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[16].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[16].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 3.01, - "2015-01-01": 3.01 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[16].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[16].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 4.49, - "2015-01-01": 4.49 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[17]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[17]", - "description": null, - "label": "bracket 18" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[17].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[17].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 3.11, - "2015-01-01": 3.11 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[17].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[17].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 4.64, - "2015-01-01": 4.64 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[18]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[18]", - "description": null, - "label": "bracket 19" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[18].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[18].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 3.21, - "2015-01-01": 3.21 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[18].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[18].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 4.78, - "2015-01-01": 4.78 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[19]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[19]", - "description": null, - "label": "bracket 20" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[19].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[19].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 3.31, - "2015-01-01": 3.31 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[19].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[19].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 4.92, - "2015-01-01": 4.92 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[20]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[20]", - "description": null, - "label": "bracket 21" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[20].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[20].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 3.41, - "2015-01-01": 3.41 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[20].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[20].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 5.07, - "2015-01-01": 5.07 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[21]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[21]", - "description": null, - "label": "bracket 22" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[21].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[21].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 3.51, - "2015-01-01": 3.51 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[21].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[21].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 5.21, - "2015-01-01": 5.21 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[22]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[22]", - "description": null, - "label": "bracket 23" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[22].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[22].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 3.61, - "2015-01-01": 3.61 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[22].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[22].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 5.36, - "2015-01-01": 5.36 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[23]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[23]", - "description": null, - "label": "bracket 24" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[23].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[23].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 3.71, - "2015-01-01": 3.71 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[23].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[23].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 5.5, - "2015-01-01": 5.5 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[24]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[24]", - "description": null, - "label": "bracket 25" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[24].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[24].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 3.81, - "2015-01-01": 3.81 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[24].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[24].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 5.65, - "2015-01-01": 5.65 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[25]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[25]", - "description": null, - "label": "bracket 26" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[25].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[25].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 3.91, - "2015-01-01": 3.91 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[25].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[25].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 5.79, - "2015-01-01": 5.79 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[26]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[26]", - "description": null, - "label": "bracket 27" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[26].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[26].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 4.01, - "2015-01-01": 4.01 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[26].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[26].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 5.94, - "2015-01-01": 5.94 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[27]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[27]", - "description": null, - "label": "bracket 28" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[27].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[27].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 4.11, - "2015-01-01": 4.11 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[27].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[27].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 6.08, - "2015-01-01": 6.08 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[28]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[28]", - "description": null, - "label": "bracket 29" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[28].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[28].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 4.21, - "2015-01-01": 4.21 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[28].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[28].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 6.23, - "2015-01-01": 6.23 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[29]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[29]", - "description": null, - "label": "bracket 30" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[29].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[29].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 4.31, - "2015-01-01": 4.31 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[29].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[29].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 6.37, - "2015-01-01": 6.37 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[30]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[30]", - "description": null, - "label": "bracket 31" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[30].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[30].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 4.41, - "2015-01-01": 4.41 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[30].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[30].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 6.52, - "2015-01-01": 6.52 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[31]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[31]", - "description": null, - "label": "bracket 32" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[31].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[31].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 4.51, - "2015-01-01": 4.51 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.full_time[31].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.full_time[31].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 6.66, - "2015-01-01": 6.66 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time", - "description": "The District of Columbia applies this amount as the part time copay for the second child, based on household income and poverty level ratio under the Child Care Subsidy Program.", - "label": "DC CCSP part-time copay amount for the second child" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[0]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[0].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[0].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[0].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[1]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[1].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[1].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 1.51, - "2015-01-01": 1.51 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[1].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 0.96, - "2015-01-01": 0.96 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[2]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[2].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[2].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 1.61, - "2015-01-01": 1.61 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[2].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 1.02, - "2015-01-01": 1.02 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[3]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[3].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[3].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 1.71, - "2015-01-01": 1.71 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[3].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 0.56, - "2015-01-01": 0.56 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[4]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[4].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[4].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 1.81, - "2015-01-01": 1.81 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[4].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 0.59, - "2015-01-01": 0.59 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[5]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[5].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[5].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 1.91, - "2015-01-01": 1.91 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[5].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 0.62, - "2015-01-01": 0.62 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[6]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[6].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[6].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 2.01, - "2015-01-01": 2.01 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[6].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[6].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 0.87, - "2015-01-01": 0.87 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[7]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[7].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[7].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 2.11, - "2015-01-01": 2.11 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[7].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[7].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 0.91, - "2015-01-01": 0.91 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[8]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[8].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[8].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 2.21, - "2015-01-01": 2.21 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[8].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[8].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 0.95, - "2015-01-01": 0.95 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[9]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[9].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[9].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 2.31, - "2015-01-01": 2.31 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[9].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[9].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 0.3, - "2015-01-01": 0.3 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[10]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[10]", - "description": null, - "label": "bracket 11" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[10].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[10].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 2.41, - "2015-01-01": 2.41 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[10].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[10].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 1.29, - "2015-01-01": 1.29 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[11]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[11]", - "description": null, - "label": "bracket 12" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[11].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[11].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 2.51, - "2015-01-01": 2.51 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[11].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[11].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 1.35, - "2015-01-01": 1.35 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[12]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[12]", - "description": null, - "label": "bracket 13" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[12].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[12].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 2.61, - "2015-01-01": 2.61 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[12].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[12].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 1.4, - "2015-01-01": 1.4 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[13]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[13]", - "description": null, - "label": "bracket 14" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[13].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[13].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 2.71, - "2015-01-01": 2.71 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[13].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[13].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 1.74, - "2015-01-01": 1.74 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[14]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[14]", - "description": null, - "label": "bracket 15" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[14].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[14].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 2.81, - "2015-01-01": 2.81 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[14].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[14].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 1.8, - "2015-01-01": 1.8 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[15]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[15]", - "description": null, - "label": "bracket 16" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[15].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[15].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 2.91, - "2015-01-01": 2.91 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[15].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[15].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 1.86, - "2015-01-01": 1.86 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[16]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[16]", - "description": null, - "label": "bracket 17" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[16].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[16].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 3.01, - "2015-01-01": 3.01 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[16].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[16].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 2.25, - "2015-01-01": 2.25 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[17]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[17]", - "description": null, - "label": "bracket 18" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[17].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[17].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 3.11, - "2015-01-01": 3.11 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[17].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[17].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 2.32, - "2015-01-01": 2.32 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[18]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[18]", - "description": null, - "label": "bracket 19" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[18].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[18].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 3.21, - "2015-01-01": 3.21 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[18].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[18].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 2.39, - "2015-01-01": 2.39 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[19]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[19]", - "description": null, - "label": "bracket 20" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[19].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[19].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 3.31, - "2015-01-01": 3.31 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[19].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[19].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 2.46, - "2015-01-01": 2.46 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[20]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[20]", - "description": null, - "label": "bracket 21" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[20].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[20].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 3.41, - "2015-01-01": 3.41 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[20].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[20].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 2.53, - "2015-01-01": 2.53 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[21]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[21]", - "description": null, - "label": "bracket 22" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[21].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[21].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 3.51, - "2015-01-01": 3.51 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[21].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[21].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 2.61, - "2015-01-01": 2.61 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[22]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[22]", - "description": null, - "label": "bracket 23" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[22].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[22].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 3.61, - "2015-01-01": 3.61 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[22].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[22].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 2.68, - "2015-01-01": 2.68 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[23]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[23]", - "description": null, - "label": "bracket 24" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[23].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[23].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 3.71, - "2015-01-01": 3.71 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[23].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[23].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 2.75, - "2015-01-01": 2.75 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[24]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[24]", - "description": null, - "label": "bracket 25" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[24].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[24].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 3.81, - "2015-01-01": 3.81 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[24].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[24].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 2.82, - "2015-01-01": 2.82 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[25]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[25]", - "description": null, - "label": "bracket 26" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[25].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[25].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 3.91, - "2015-01-01": 3.91 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[25].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[25].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 2.9, - "2015-01-01": 2.9 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[26]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[26]", - "description": null, - "label": "bracket 27" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[26].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[26].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 4.01, - "2015-01-01": 4.01 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[26].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[26].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 2.97, - "2015-01-01": 2.97 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[27]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[27]", - "description": null, - "label": "bracket 28" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[27].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[27].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 4.11, - "2015-01-01": 4.11 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[27].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[27].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 3.04, - "2015-01-01": 3.04 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[28]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[28]", - "description": null, - "label": "bracket 29" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[28].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[28].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 4.21, - "2015-01-01": 4.21 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[28].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[28].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 3.11, - "2015-01-01": 3.11 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[29]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[29]", - "description": null, - "label": "bracket 30" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[29].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[29].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 4.31, - "2015-01-01": 4.31 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[29].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[29].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 3.19, - "2015-01-01": 3.19 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[30]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[30]", - "description": null, - "label": "bracket 31" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[30].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[30].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 4.41, - "2015-01-01": 4.41 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[30].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[30].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 3.26, - "2015-01-01": 3.26 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[31]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[31]", - "description": null, - "label": "bracket 32" - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[31].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[31].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 4.51, - "2015-01-01": 4.51 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.second_child.part_time[31].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.second_child.part_time[31].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 3.33, - "2015-01-01": 3.33 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child", - "description": null, - "label": "first child", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time", - "description": "The District of Columbia applies this amount as the full time copay for the first child, based on household income and poverty level ratio under the Child Care Subsidy Program.", - "label": "DC CCSP full-time copay amount for the first child" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[0]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[0].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[0].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[0].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[1]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[1].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[1].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 1.51, - "2015-01-01": 1.51 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[1].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 1.85, - "2015-01-01": 1.85 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[2]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[2].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[2].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 1.61, - "2015-01-01": 1.61 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[2].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 1.97, - "2015-01-01": 1.97 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[3]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[3].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[3].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 1.71, - "2015-01-01": 1.71 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[3].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 3.13, - "2015-01-01": 3.13 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[4]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[4].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[4].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 1.81, - "2015-01-01": 1.81 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[4].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 3.3, - "2015-01-01": 3.3 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[5]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[5].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[5].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 1.91, - "2015-01-01": 1.91 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[5].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 3.48, - "2015-01-01": 3.48 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[6]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[6].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[6].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 2.01, - "2015-01-01": 2.01 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[6].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[6].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 4.87, - "2015-01-01": 4.87 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[7]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[7].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[7].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 2.11, - "2015-01-01": 2.11 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[7].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[7].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 5.1, - "2015-01-01": 5.1 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[8]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[8].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[8].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 2.21, - "2015-01-01": 2.21 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[8].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[8].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 5.33, - "2015-01-01": 5.33 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[9]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[9].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[9].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 2.31, - "2015-01-01": 2.31 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[9].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[9].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 6.95, - "2015-01-01": 6.95 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[10]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[10]", - "description": null, - "label": "bracket 11" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[10].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[10].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 2.41, - "2015-01-01": 2.41 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[10].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[10].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 7.24, - "2015-01-01": 7.24 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[11]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[11]", - "description": null, - "label": "bracket 12" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[11].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[11].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 2.51, - "2015-01-01": 2.51 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[11].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[11].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 7.53, - "2015-01-01": 7.53 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[12]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[12]", - "description": null, - "label": "bracket 13" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[12].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[12].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 2.61, - "2015-01-01": 2.61 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[12].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[12].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 7.82, - "2015-01-01": 7.82 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[13]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[13]", - "description": null, - "label": "bracket 14" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[13].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[13].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 2.71, - "2015-01-01": 2.71 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[13].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[13].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 9.73, - "2015-01-01": 9.73 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[14]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[14]", - "description": null, - "label": "bracket 15" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[14].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[14].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 2.81, - "2015-01-01": 2.81 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[14].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[14].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 10.08, - "2015-01-01": 10.08 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[15]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[15]", - "description": null, - "label": "bracket 16" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[15].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[15].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 2.91, - "2015-01-01": 2.91 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[15].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[15].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 10.43, - "2015-01-01": 10.43 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[16]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[16]", - "description": null, - "label": "bracket 17" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[16].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[16].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 3.01, - "2015-01-01": 3.01 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[16].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[16].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 12.57, - "2015-01-01": 12.57 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[17]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[17]", - "description": null, - "label": "bracket 18" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[17].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[17].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 3.11, - "2015-01-01": 3.11 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[17].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[17].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 12.97, - "2015-01-01": 12.97 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[18]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[18]", - "description": null, - "label": "bracket 19" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[18].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[18].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 3.21, - "2015-01-01": 3.21 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[18].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[18].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 13.38, - "2015-01-01": 13.38 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[19]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[19]", - "description": null, - "label": "bracket 20" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[19].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[19].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 3.31, - "2015-01-01": 3.31 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[19].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[19].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 13.79, - "2015-01-01": 13.79 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[20]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[20]", - "description": null, - "label": "bracket 21" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[20].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[20].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 3.41, - "2015-01-01": 3.41 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[20].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[20].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 14.19, - "2015-01-01": 14.19 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[21]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[21]", - "description": null, - "label": "bracket 22" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[21].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[21].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 3.51, - "2015-01-01": 3.51 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[21].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[21].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 14.6, - "2015-01-01": 14.6 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[22]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[22]", - "description": null, - "label": "bracket 23" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[22].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[22].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 3.61, - "2015-01-01": 3.61 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[22].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[22].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 15, - "2015-01-01": 15 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[23]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[23]", - "description": null, - "label": "bracket 24" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[23].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[23].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 3.71, - "2015-01-01": 3.71 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[23].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[23].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 15.41, - "2015-01-01": 15.41 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[24]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[24]", - "description": null, - "label": "bracket 25" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[24].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[24].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 3.81, - "2015-01-01": 3.81 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[24].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[24].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 15.81, - "2015-01-01": 15.81 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[25]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[25]", - "description": null, - "label": "bracket 26" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[25].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[25].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 3.91, - "2015-01-01": 3.91 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[25].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[25].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 16.22, - "2015-01-01": 16.22 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[26]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[26]", - "description": null, - "label": "bracket 27" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[26].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[26].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 4.01, - "2015-01-01": 4.01 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[26].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[26].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 16.62, - "2015-01-01": 16.62 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[27]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[27]", - "description": null, - "label": "bracket 28" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[27].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[27].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 4.11, - "2015-01-01": 4.11 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[27].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[27].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 17.03, - "2015-01-01": 17.03 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[28]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[28]", - "description": null, - "label": "bracket 29" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[28].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[28].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 4.21, - "2015-01-01": 4.21 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[28].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[28].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 17.43, - "2015-01-01": 17.43 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[29]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[29]", - "description": null, - "label": "bracket 30" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[29].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[29].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 4.31, - "2015-01-01": 4.31 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[29].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[29].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 17.84, - "2015-01-01": 17.84 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[30]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[30]", - "description": null, - "label": "bracket 31" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[30].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[30].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 4.41, - "2015-01-01": 4.41 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[30].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[30].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 18.25, - "2015-01-01": 18.25 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[31]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[31]", - "description": null, - "label": "bracket 32" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[31].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[31].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 4.51, - "2015-01-01": 4.51 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.full_time[31].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.full_time[31].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 18.65, - "2015-01-01": 18.65 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time", - "description": "The District of Columbia applies this amount as the part time copay for the first child, based on household income and poverty level ratio under the Child Care Subsidy Program.", - "label": "DC CCSP part-time copay amount for the first child" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[0]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[0].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[0].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[0].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[1]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[1].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[1].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 1.51, - "2015-01-01": 1.51 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[1].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 0.93, - "2015-01-01": 0.93 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[2]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[2].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[2].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 1.61, - "2015-01-01": 1.61 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[2].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 0.98, - "2015-01-01": 0.98 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[3]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[3].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[3].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 1.71, - "2015-01-01": 1.71 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[3].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 1.56, - "2015-01-01": 1.56 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[4]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[4].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[4].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 1.81, - "2015-01-01": 1.81 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[4].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 1.65, - "2015-01-01": 1.65 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[5]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[5].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[5].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 1.91, - "2015-01-01": 1.91 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[5].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 1.74, - "2015-01-01": 1.74 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[6]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[6].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[6].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 2.01, - "2015-01-01": 2.01 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[6].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[6].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 2.43, - "2015-01-01": 2.43 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[7]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[7].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[7].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 2.11, - "2015-01-01": 2.11 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[7].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[7].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 2.55, - "2015-01-01": 2.55 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[8]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[8].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[8].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 2.21, - "2015-01-01": 2.21 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[8].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[8].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 2.66, - "2015-01-01": 2.66 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[9]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[9].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[9].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 2.31, - "2015-01-01": 2.31 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[9].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[9].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 3.48, - "2015-01-01": 3.48 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[10]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[10]", - "description": null, - "label": "bracket 11" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[10].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[10].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 2.41, - "2015-01-01": 2.41 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[10].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[10].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 3.62, - "2015-01-01": 3.62 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[11]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[11]", - "description": null, - "label": "bracket 12" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[11].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[11].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 2.51, - "2015-01-01": 2.51 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[11].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[11].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 3.77, - "2015-01-01": 3.77 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[12]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[12]", - "description": null, - "label": "bracket 13" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[12].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[12].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 2.61, - "2015-01-01": 2.61 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[12].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[12].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 3.91, - "2015-01-01": 3.91 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[13]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[13]", - "description": null, - "label": "bracket 14" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[13].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[13].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 2.71, - "2015-01-01": 2.71 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[13].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[13].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 4.87, - "2015-01-01": 4.87 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[14]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[14]", - "description": null, - "label": "bracket 15" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[14].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[14].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 2.81, - "2015-01-01": 2.81 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[14].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[14].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 5.04, - "2015-01-01": 5.04 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[15]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[15]", - "description": null, - "label": "bracket 16" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[15].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[15].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 2.91, - "2015-01-01": 2.91 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[15].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[15].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 5.21, - "2015-01-01": 5.21 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[16]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[16]", - "description": null, - "label": "bracket 17" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[16].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[16].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 3.01, - "2015-01-01": 3.01 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[16].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[16].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 6.28, - "2015-01-01": 6.28 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[17]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[17]", - "description": null, - "label": "bracket 18" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[17].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[17].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 3.11, - "2015-01-01": 3.11 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[17].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[17].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 6.49, - "2015-01-01": 6.49 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[18]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[18]", - "description": null, - "label": "bracket 19" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[18].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[18].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 3.21, - "2015-01-01": 3.21 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[18].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[18].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 6.69, - "2015-01-01": 6.69 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[19]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[19]", - "description": null, - "label": "bracket 20" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[19].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[19].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 3.31, - "2015-01-01": 3.31 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[19].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[19].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 6.89, - "2015-01-01": 6.89 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[20]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[20]", - "description": null, - "label": "bracket 21" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[20].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[20].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 3.41, - "2015-01-01": 3.41 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[20].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[20].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 7.1, - "2015-01-01": 7.1 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[21]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[21]", - "description": null, - "label": "bracket 22" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[21].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[21].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 3.51, - "2015-01-01": 3.51 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[21].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[21].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 7.2, - "2015-01-01": 7.2 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[22]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[22]", - "description": null, - "label": "bracket 23" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[22].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[22].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 3.61, - "2015-01-01": 3.61 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[22].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[22].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 7.5, - "2015-01-01": 7.5 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[23]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[23]", - "description": null, - "label": "bracket 24" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[23].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[23].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 3.71, - "2015-01-01": 3.71 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[23].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[23].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 7.7, - "2015-01-01": 7.7 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[24]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[24]", - "description": null, - "label": "bracket 25" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[24].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[24].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 3.81, - "2015-01-01": 3.81 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[24].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[24].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 7.91, - "2015-01-01": 7.91 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[25]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[25]", - "description": null, - "label": "bracket 26" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[25].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[25].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 3.91, - "2015-01-01": 3.91 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[25].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[25].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 8.11, - "2015-01-01": 8.11 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[26]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[26]", - "description": null, - "label": "bracket 27" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[26].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[26].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 4.01, - "2015-01-01": 4.01 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[26].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[26].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 8.31, - "2015-01-01": 8.31 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[27]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[27]", - "description": null, - "label": "bracket 28" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[27].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[27].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 4.11, - "2015-01-01": 4.11 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[27].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[27].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 8.51, - "2015-01-01": 8.51 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[28]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[28]", - "description": null, - "label": "bracket 29" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[28].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[28].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 4.21, - "2015-01-01": 4.21 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[28].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[28].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 8.72, - "2015-01-01": 8.72 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[29]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[29]", - "description": null, - "label": "bracket 30" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[29].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[29].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 4.31, - "2015-01-01": 4.31 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[29].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[29].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 8.92, - "2015-01-01": 8.92 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[30]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[30]", - "description": null, - "label": "bracket 31" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[30].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[30].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 4.41, - "2015-01-01": 4.41 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[30].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[30].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 9.12, - "2015-01-01": 9.12 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[31]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[31]", - "description": null, - "label": "bracket 32" - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[31].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[31].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2024-10-01": 4.51, - "2015-01-01": 4.51 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.copay.first_child.part_time[31].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.copay.first_child.part_time[31].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 9.33, - "2015-01-01": 9.33 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.income": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.income.countable_income": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.income.countable_income", - "description": null, - "label": "countable income", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.income.countable_income.sources": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.income.countable_income.sources", - "description": "The District of Columbia counts these income sources as countable income under the Child Care Subsidy Program.", - "label": "DC CCSP countable income sources", - "unit": "list", - "period": "year", - "values": { - "2020-01-01": [ - "employment_income", - "self_employment_income", - "dividend_income", - "interest_income", - "rental_income", - "pension_income", - "veterans_benefits", - "military_retirement_pay", - "alimony_income" - ], - "2015-01-01": [ - "employment_income", - "self_employment_income", - "dividend_income", - "interest_income", - "rental_income", - "pension_income", - "veterans_benefits", - "military_retirement_pay", - "alimony_income" - ] - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.income.income_limit": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.income.income_limit", - "description": null, - "label": "income limit", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.income.income_limit.new_applicants_rate": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.income.income_limit.new_applicants_rate", - "description": "The District of Columbia limits the Child Care Subsidy Program to new applicants with income below this percentage of the poverty line.", - "label": "DC CCSP new applicants income limit", - "unit": "/1", - "period": "month", - "values": { - "2020-01-01": 3, - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.income.income_limit.redetermination_rate": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.income.income_limit.redetermination_rate", - "description": "The District of Columbia limits the Child Care Subsidy Program to existing applicants with income below this percentage of the state median income.", - "label": "DC CCSP redetermination income limit", - "unit": "/1", - "period": "month", - "values": { - "2020-01-01": 0.85, - "2015-01-01": 0.85 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates", - "description": "The District of Columbia provides these reimbursement rates under the Child Care Subsidy Program.", - "label": "DC CCSP reimbursement rates", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER", - "description": null, - "label": "CHILD CENTER", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.INFANT_AND_TODDLER": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.INFANT_AND_TODDLER", - "description": null, - "label": "INFANT AND TODDLER", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.INFANT_AND_TODDLER.FULL_TIME_TRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.INFANT_AND_TODDLER.FULL_TIME_TRADITIONAL", - "description": null, - "label": "FULL TIME TRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 98.65, - "2015-01-01": 98.65 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.INFANT_AND_TODDLER.PART_TIME_TRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.INFANT_AND_TODDLER.PART_TIME_TRADITIONAL", - "description": null, - "label": "PART TIME TRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 59.19, - "2015-01-01": 59.19 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.INFANT_AND_TODDLER.EXTENDED_DAY_FULL_TIME": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.INFANT_AND_TODDLER.EXTENDED_DAY_FULL_TIME", - "description": null, - "label": "EXTENDED DAY FULL TIME", - "unit": null, - "period": null, - "values": { - "2024-10-01": 108.51, - "2015-01-01": 108.51 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.INFANT_AND_TODDLER.EXTENDED_DAY_PART_TIME": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.INFANT_AND_TODDLER.EXTENDED_DAY_PART_TIME", - "description": null, - "label": "EXTENDED DAY PART TIME", - "unit": null, - "period": null, - "values": { - "2024-10-01": 69.05, - "2015-01-01": 69.05 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.INFANT_AND_TODDLER.FULL_TIME_NONTRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.INFANT_AND_TODDLER.FULL_TIME_NONTRADITIONAL", - "description": null, - "label": "FULL TIME NONTRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 123.31, - "2015-01-01": 123.31 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.INFANT_AND_TODDLER.PART_TIME_NONTRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.INFANT_AND_TODDLER.PART_TIME_NONTRADITIONAL", - "description": null, - "label": "PART TIME NONTRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 73.98, - "2015-01-01": 73.98 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.INFANT_AND_TODDLER_SPECIAL_NEEDS": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.INFANT_AND_TODDLER_SPECIAL_NEEDS", - "description": null, - "label": "INFANT AND TODDLER SPECIAL NEEDS", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.INFANT_AND_TODDLER_SPECIAL_NEEDS.FULL_TIME_TRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.INFANT_AND_TODDLER_SPECIAL_NEEDS.FULL_TIME_TRADITIONAL", - "description": null, - "label": "FULL TIME TRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 118.38, - "2015-01-01": 118.38 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.INFANT_AND_TODDLER_SPECIAL_NEEDS.PART_TIME_TRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.INFANT_AND_TODDLER_SPECIAL_NEEDS.PART_TIME_TRADITIONAL", - "description": null, - "label": "PART TIME TRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 71.03, - "2015-01-01": 71.03 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.INFANT_AND_TODDLER_SPECIAL_NEEDS.EXTENDED_DAY_FULL_TIME": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.INFANT_AND_TODDLER_SPECIAL_NEEDS.EXTENDED_DAY_FULL_TIME", - "description": null, - "label": "EXTENDED DAY FULL TIME", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.INFANT_AND_TODDLER_SPECIAL_NEEDS.EXTENDED_DAY_PART_TIME": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.INFANT_AND_TODDLER_SPECIAL_NEEDS.EXTENDED_DAY_PART_TIME", - "description": null, - "label": "EXTENDED DAY PART TIME", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.INFANT_AND_TODDLER_SPECIAL_NEEDS.FULL_TIME_NONTRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.INFANT_AND_TODDLER_SPECIAL_NEEDS.FULL_TIME_NONTRADITIONAL", - "description": null, - "label": "FULL TIME NONTRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.INFANT_AND_TODDLER_SPECIAL_NEEDS.PART_TIME_NONTRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.INFANT_AND_TODDLER_SPECIAL_NEEDS.PART_TIME_NONTRADITIONAL", - "description": null, - "label": "PART TIME NONTRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.PRESCHOOL": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.PRESCHOOL", - "description": null, - "label": "PRESCHOOL", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.PRESCHOOL.FULL_TIME_TRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.PRESCHOOL.FULL_TIME_TRADITIONAL", - "description": null, - "label": "FULL TIME TRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 63, - "2015-01-01": 63 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.PRESCHOOL.PART_TIME_TRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.PRESCHOOL.PART_TIME_TRADITIONAL", - "description": null, - "label": "PART TIME TRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 37.8, - "2015-01-01": 37.8 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.PRESCHOOL.EXTENDED_DAY_FULL_TIME": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.PRESCHOOL.EXTENDED_DAY_FULL_TIME", - "description": null, - "label": "EXTENDED DAY FULL TIME", - "unit": null, - "period": null, - "values": { - "2024-10-01": 69.3, - "2015-01-01": 69.3 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.PRESCHOOL.EXTENDED_DAY_PART_TIME": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.PRESCHOOL.EXTENDED_DAY_PART_TIME", - "description": null, - "label": "EXTENDED DAY PART TIME", - "unit": null, - "period": null, - "values": { - "2024-10-01": 44.1, - "2015-01-01": 44.1 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.PRESCHOOL.FULL_TIME_NONTRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.PRESCHOOL.FULL_TIME_NONTRADITIONAL", - "description": null, - "label": "FULL TIME NONTRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 78.75, - "2015-01-01": 78.75 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.PRESCHOOL.PART_TIME_NONTRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.PRESCHOOL.PART_TIME_NONTRADITIONAL", - "description": null, - "label": "PART TIME NONTRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 47.25, - "2015-01-01": 47.25 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.PRESCHOOL_BEFORE_AND_AFTER": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.PRESCHOOL_BEFORE_AND_AFTER", - "description": null, - "label": "PRESCHOOL BEFORE AND AFTER", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.PRESCHOOL_BEFORE_AND_AFTER.FULL_TIME_TRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.PRESCHOOL_BEFORE_AND_AFTER.FULL_TIME_TRADITIONAL", - "description": null, - "label": "FULL TIME TRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 63, - "2015-01-01": 63 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.PRESCHOOL_BEFORE_AND_AFTER.PART_TIME_TRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.PRESCHOOL_BEFORE_AND_AFTER.PART_TIME_TRADITIONAL", - "description": null, - "label": "PART TIME TRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 37.8, - "2015-01-01": 37.8 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.PRESCHOOL_BEFORE_AND_AFTER.EXTENDED_DAY_FULL_TIME": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.PRESCHOOL_BEFORE_AND_AFTER.EXTENDED_DAY_FULL_TIME", - "description": null, - "label": "EXTENDED DAY FULL TIME", - "unit": null, - "period": null, - "values": { - "2024-10-01": 69.3, - "2015-01-01": 69.3 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.PRESCHOOL_BEFORE_AND_AFTER.EXTENDED_DAY_PART_TIME": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.PRESCHOOL_BEFORE_AND_AFTER.EXTENDED_DAY_PART_TIME", - "description": null, - "label": "EXTENDED DAY PART TIME", - "unit": null, - "period": null, - "values": { - "2024-10-01": 44.1, - "2015-01-01": 44.1 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.PRESCHOOL_BEFORE_AND_AFTER.FULL_TIME_NONTRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.PRESCHOOL_BEFORE_AND_AFTER.FULL_TIME_NONTRADITIONAL", - "description": null, - "label": "FULL TIME NONTRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.PRESCHOOL_BEFORE_AND_AFTER.PART_TIME_NONTRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.PRESCHOOL_BEFORE_AND_AFTER.PART_TIME_NONTRADITIONAL", - "description": null, - "label": "PART TIME NONTRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.SCHOOL_AGE_BEFORE_AND_AFTER": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.SCHOOL_AGE_BEFORE_AND_AFTER", - "description": null, - "label": "SCHOOL AGE BEFORE AND AFTER", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.SCHOOL_AGE_BEFORE_AND_AFTER.FULL_TIME_TRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.SCHOOL_AGE_BEFORE_AND_AFTER.FULL_TIME_TRADITIONAL", - "description": null, - "label": "FULL TIME TRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 36.74, - "2015-01-01": 36.74 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.SCHOOL_AGE_BEFORE_AND_AFTER.PART_TIME_TRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.SCHOOL_AGE_BEFORE_AND_AFTER.PART_TIME_TRADITIONAL", - "description": null, - "label": "PART TIME TRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 22.04, - "2015-01-01": 22.04 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.SCHOOL_AGE_BEFORE_AND_AFTER.EXTENDED_DAY_FULL_TIME": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.SCHOOL_AGE_BEFORE_AND_AFTER.EXTENDED_DAY_FULL_TIME", - "description": null, - "label": "EXTENDED DAY FULL TIME", - "unit": null, - "period": null, - "values": { - "2024-10-01": 40.41, - "2015-01-01": 40.41 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.SCHOOL_AGE_BEFORE_AND_AFTER.EXTENDED_DAY_PART_TIME": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.SCHOOL_AGE_BEFORE_AND_AFTER.EXTENDED_DAY_PART_TIME", - "description": null, - "label": "EXTENDED DAY PART TIME", - "unit": null, - "period": null, - "values": { - "2024-10-01": 25.72, - "2015-01-01": 25.72 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.SCHOOL_AGE_BEFORE_AND_AFTER.FULL_TIME_NONTRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.SCHOOL_AGE_BEFORE_AND_AFTER.FULL_TIME_NONTRADITIONAL", - "description": null, - "label": "FULL TIME NONTRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 45.92, - "2015-01-01": 45.92 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.SCHOOL_AGE_BEFORE_AND_AFTER.PART_TIME_NONTRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.SCHOOL_AGE_BEFORE_AND_AFTER.PART_TIME_NONTRADITIONAL", - "description": null, - "label": "PART TIME NONTRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 27.55, - "2015-01-01": 27.55 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.SCHOOL_AGE_BEFORE_OR_AFTER": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.SCHOOL_AGE_BEFORE_OR_AFTER", - "description": null, - "label": "SCHOOL AGE BEFORE OR AFTER", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.SCHOOL_AGE_BEFORE_OR_AFTER.FULL_TIME_TRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.SCHOOL_AGE_BEFORE_OR_AFTER.FULL_TIME_TRADITIONAL", - "description": null, - "label": "FULL TIME TRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 36.74, - "2015-01-01": 36.74 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.SCHOOL_AGE_BEFORE_OR_AFTER.PART_TIME_TRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.SCHOOL_AGE_BEFORE_OR_AFTER.PART_TIME_TRADITIONAL", - "description": null, - "label": "PART TIME TRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 18.37, - "2015-01-01": 18.37 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.SCHOOL_AGE_BEFORE_OR_AFTER.EXTENDED_DAY_FULL_TIME": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.SCHOOL_AGE_BEFORE_OR_AFTER.EXTENDED_DAY_FULL_TIME", - "description": null, - "label": "EXTENDED DAY FULL TIME", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.SCHOOL_AGE_BEFORE_OR_AFTER.EXTENDED_DAY_PART_TIME": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.SCHOOL_AGE_BEFORE_OR_AFTER.EXTENDED_DAY_PART_TIME", - "description": null, - "label": "EXTENDED DAY PART TIME", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.SCHOOL_AGE_BEFORE_OR_AFTER.FULL_TIME_NONTRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.SCHOOL_AGE_BEFORE_OR_AFTER.FULL_TIME_NONTRADITIONAL", - "description": null, - "label": "FULL TIME NONTRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.SCHOOL_AGE_BEFORE_OR_AFTER.PART_TIME_NONTRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.SCHOOL_AGE_BEFORE_OR_AFTER.PART_TIME_NONTRADITIONAL", - "description": null, - "label": "PART TIME NONTRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.PRESCHOOL_AND_SCHOOL_AGE_SPECIAL_NEEDS": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.PRESCHOOL_AND_SCHOOL_AGE_SPECIAL_NEEDS", - "description": null, - "label": "PRESCHOOL AND SCHOOL AGE SPECIAL NEEDS", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.PRESCHOOL_AND_SCHOOL_AGE_SPECIAL_NEEDS.FULL_TIME_TRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.PRESCHOOL_AND_SCHOOL_AGE_SPECIAL_NEEDS.FULL_TIME_TRADITIONAL", - "description": null, - "label": "FULL TIME TRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 75.6, - "2015-01-01": 75.6 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.PRESCHOOL_AND_SCHOOL_AGE_SPECIAL_NEEDS.PART_TIME_TRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.PRESCHOOL_AND_SCHOOL_AGE_SPECIAL_NEEDS.PART_TIME_TRADITIONAL", - "description": null, - "label": "PART TIME TRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 45.36, - "2015-01-01": 45.36 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.PRESCHOOL_AND_SCHOOL_AGE_SPECIAL_NEEDS.EXTENDED_DAY_FULL_TIME": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.PRESCHOOL_AND_SCHOOL_AGE_SPECIAL_NEEDS.EXTENDED_DAY_FULL_TIME", - "description": null, - "label": "EXTENDED DAY FULL TIME", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.PRESCHOOL_AND_SCHOOL_AGE_SPECIAL_NEEDS.EXTENDED_DAY_PART_TIME": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.PRESCHOOL_AND_SCHOOL_AGE_SPECIAL_NEEDS.EXTENDED_DAY_PART_TIME", - "description": null, - "label": "EXTENDED DAY PART TIME", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.PRESCHOOL_AND_SCHOOL_AGE_SPECIAL_NEEDS.FULL_TIME_NONTRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.PRESCHOOL_AND_SCHOOL_AGE_SPECIAL_NEEDS.FULL_TIME_NONTRADITIONAL", - "description": null, - "label": "FULL TIME NONTRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.PRESCHOOL_AND_SCHOOL_AGE_SPECIAL_NEEDS.PART_TIME_NONTRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_CENTER.PRESCHOOL_AND_SCHOOL_AGE_SPECIAL_NEEDS.PART_TIME_NONTRADITIONAL", - "description": null, - "label": "PART TIME NONTRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME", - "description": null, - "label": "CHILD HOME AND EXPANDED HOME", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.INFANT_AND_TODDLER": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.INFANT_AND_TODDLER", - "description": null, - "label": "INFANT AND TODDLER", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.INFANT_AND_TODDLER.FULL_TIME_TRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.INFANT_AND_TODDLER.FULL_TIME_TRADITIONAL", - "description": null, - "label": "FULL TIME TRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 84.28, - "2015-01-01": 84.28 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.INFANT_AND_TODDLER.PART_TIME_TRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.INFANT_AND_TODDLER.PART_TIME_TRADITIONAL", - "description": null, - "label": "PART TIME TRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 50.57, - "2015-01-01": 50.57 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.INFANT_AND_TODDLER.EXTENDED_DAY_FULL_TIME": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.INFANT_AND_TODDLER.EXTENDED_DAY_FULL_TIME", - "description": null, - "label": "EXTENDED DAY FULL TIME", - "unit": null, - "period": null, - "values": { - "2024-10-01": 92.7, - "2015-01-01": 92.7 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.INFANT_AND_TODDLER.EXTENDED_DAY_PART_TIME": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.INFANT_AND_TODDLER.EXTENDED_DAY_PART_TIME", - "description": null, - "label": "EXTENDED DAY PART TIME", - "unit": null, - "period": null, - "values": { - "2024-10-01": 58.99, - "2015-01-01": 58.99 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.INFANT_AND_TODDLER.FULL_TIME_NONTRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.INFANT_AND_TODDLER.FULL_TIME_NONTRADITIONAL", - "description": null, - "label": "FULL TIME NONTRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 105.35, - "2015-01-01": 105.35 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.INFANT_AND_TODDLER.PART_TIME_NONTRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.INFANT_AND_TODDLER.PART_TIME_NONTRADITIONAL", - "description": null, - "label": "PART TIME NONTRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 63.21, - "2015-01-01": 63.21 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.INFANT_AND_TODDLER_SPECIAL_NEEDS": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.INFANT_AND_TODDLER_SPECIAL_NEEDS", - "description": null, - "label": "INFANT AND TODDLER SPECIAL NEEDS", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.INFANT_AND_TODDLER_SPECIAL_NEEDS.FULL_TIME_TRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.INFANT_AND_TODDLER_SPECIAL_NEEDS.FULL_TIME_TRADITIONAL", - "description": null, - "label": "FULL TIME TRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.INFANT_AND_TODDLER_SPECIAL_NEEDS.PART_TIME_TRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.INFANT_AND_TODDLER_SPECIAL_NEEDS.PART_TIME_TRADITIONAL", - "description": null, - "label": "PART TIME TRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.INFANT_AND_TODDLER_SPECIAL_NEEDS.EXTENDED_DAY_FULL_TIME": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.INFANT_AND_TODDLER_SPECIAL_NEEDS.EXTENDED_DAY_FULL_TIME", - "description": null, - "label": "EXTENDED DAY FULL TIME", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.INFANT_AND_TODDLER_SPECIAL_NEEDS.EXTENDED_DAY_PART_TIME": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.INFANT_AND_TODDLER_SPECIAL_NEEDS.EXTENDED_DAY_PART_TIME", - "description": null, - "label": "EXTENDED DAY PART TIME", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.INFANT_AND_TODDLER_SPECIAL_NEEDS.FULL_TIME_NONTRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.INFANT_AND_TODDLER_SPECIAL_NEEDS.FULL_TIME_NONTRADITIONAL", - "description": null, - "label": "FULL TIME NONTRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.INFANT_AND_TODDLER_SPECIAL_NEEDS.PART_TIME_NONTRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.INFANT_AND_TODDLER_SPECIAL_NEEDS.PART_TIME_NONTRADITIONAL", - "description": null, - "label": "PART TIME NONTRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.PRESCHOOL": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.PRESCHOOL", - "description": null, - "label": "PRESCHOOL", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.PRESCHOOL.FULL_TIME_TRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.PRESCHOOL.FULL_TIME_TRADITIONAL", - "description": null, - "label": "FULL TIME TRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 53.04, - "2015-01-01": 53.04 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.PRESCHOOL.PART_TIME_TRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.PRESCHOOL.PART_TIME_TRADITIONAL", - "description": null, - "label": "PART TIME TRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 31.82, - "2015-01-01": 31.82 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.PRESCHOOL.EXTENDED_DAY_FULL_TIME": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.PRESCHOOL.EXTENDED_DAY_FULL_TIME", - "description": null, - "label": "EXTENDED DAY FULL TIME", - "unit": null, - "period": null, - "values": { - "2024-10-01": 58.34, - "2015-01-01": 58.34 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.PRESCHOOL.EXTENDED_DAY_PART_TIME": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.PRESCHOOL.EXTENDED_DAY_PART_TIME", - "description": null, - "label": "EXTENDED DAY PART TIME", - "unit": null, - "period": null, - "values": { - "2024-10-01": 37.13, - "2015-01-01": 37.13 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.PRESCHOOL.FULL_TIME_NONTRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.PRESCHOOL.FULL_TIME_NONTRADITIONAL", - "description": null, - "label": "FULL TIME NONTRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 66.3, - "2015-01-01": 66.3 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.PRESCHOOL.PART_TIME_NONTRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.PRESCHOOL.PART_TIME_NONTRADITIONAL", - "description": null, - "label": "PART TIME NONTRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 39.78, - "2015-01-01": 39.78 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.PRESCHOOL_BEFORE_AND_AFTER": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.PRESCHOOL_BEFORE_AND_AFTER", - "description": null, - "label": "PRESCHOOL BEFORE AND AFTER", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.PRESCHOOL_BEFORE_AND_AFTER.FULL_TIME_TRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.PRESCHOOL_BEFORE_AND_AFTER.FULL_TIME_TRADITIONAL", - "description": null, - "label": "FULL TIME TRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 53.03, - "2015-01-01": 53.03 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.PRESCHOOL_BEFORE_AND_AFTER.PART_TIME_TRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.PRESCHOOL_BEFORE_AND_AFTER.PART_TIME_TRADITIONAL", - "description": null, - "label": "PART TIME TRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 31.82, - "2015-01-01": 31.82 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.PRESCHOOL_BEFORE_AND_AFTER.EXTENDED_DAY_FULL_TIME": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.PRESCHOOL_BEFORE_AND_AFTER.EXTENDED_DAY_FULL_TIME", - "description": null, - "label": "EXTENDED DAY FULL TIME", - "unit": null, - "period": null, - "values": { - "2024-10-01": 58.34, - "2015-01-01": 58.34 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.PRESCHOOL_BEFORE_AND_AFTER.EXTENDED_DAY_PART_TIME": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.PRESCHOOL_BEFORE_AND_AFTER.EXTENDED_DAY_PART_TIME", - "description": null, - "label": "EXTENDED DAY PART TIME", - "unit": null, - "period": null, - "values": { - "2024-10-01": 37.13, - "2015-01-01": 37.13 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.PRESCHOOL_BEFORE_AND_AFTER.FULL_TIME_NONTRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.PRESCHOOL_BEFORE_AND_AFTER.FULL_TIME_NONTRADITIONAL", - "description": null, - "label": "FULL TIME NONTRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.PRESCHOOL_BEFORE_AND_AFTER.PART_TIME_NONTRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.PRESCHOOL_BEFORE_AND_AFTER.PART_TIME_NONTRADITIONAL", - "description": null, - "label": "PART TIME NONTRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.SCHOOL_AGE_BEFORE_AND_AFTER": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.SCHOOL_AGE_BEFORE_AND_AFTER", - "description": null, - "label": "SCHOOL AGE BEFORE AND AFTER", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.SCHOOL_AGE_BEFORE_AND_AFTER.FULL_TIME_TRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.SCHOOL_AGE_BEFORE_AND_AFTER.FULL_TIME_TRADITIONAL", - "description": null, - "label": "FULL TIME TRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 32.2, - "2015-01-01": 32.2 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.SCHOOL_AGE_BEFORE_AND_AFTER.PART_TIME_TRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.SCHOOL_AGE_BEFORE_AND_AFTER.PART_TIME_TRADITIONAL", - "description": null, - "label": "PART TIME TRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 19.32, - "2015-01-01": 19.32 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.SCHOOL_AGE_BEFORE_AND_AFTER.EXTENDED_DAY_FULL_TIME": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.SCHOOL_AGE_BEFORE_AND_AFTER.EXTENDED_DAY_FULL_TIME", - "description": null, - "label": "EXTENDED DAY FULL TIME", - "unit": null, - "period": null, - "values": { - "2024-10-01": 35.42, - "2015-01-01": 35.42 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.SCHOOL_AGE_BEFORE_AND_AFTER.EXTENDED_DAY_PART_TIME": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.SCHOOL_AGE_BEFORE_AND_AFTER.EXTENDED_DAY_PART_TIME", - "description": null, - "label": "EXTENDED DAY PART TIME", - "unit": null, - "period": null, - "values": { - "2024-10-01": 22.54, - "2015-01-01": 22.54 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.SCHOOL_AGE_BEFORE_AND_AFTER.FULL_TIME_NONTRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.SCHOOL_AGE_BEFORE_AND_AFTER.FULL_TIME_NONTRADITIONAL", - "description": null, - "label": "FULL TIME NONTRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 40.25, - "2015-01-01": 40.25 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.SCHOOL_AGE_BEFORE_AND_AFTER.PART_TIME_NONTRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.SCHOOL_AGE_BEFORE_AND_AFTER.PART_TIME_NONTRADITIONAL", - "description": null, - "label": "PART TIME NONTRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 24.15, - "2015-01-01": 24.15 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.SCHOOL_AGE_BEFORE_OR_AFTER": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.SCHOOL_AGE_BEFORE_OR_AFTER", - "description": null, - "label": "SCHOOL AGE BEFORE OR AFTER", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.SCHOOL_AGE_BEFORE_OR_AFTER.FULL_TIME_TRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.SCHOOL_AGE_BEFORE_OR_AFTER.FULL_TIME_TRADITIONAL", - "description": null, - "label": "FULL TIME TRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 32.2, - "2015-01-01": 32.2 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.SCHOOL_AGE_BEFORE_OR_AFTER.PART_TIME_TRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.SCHOOL_AGE_BEFORE_OR_AFTER.PART_TIME_TRADITIONAL", - "description": null, - "label": "PART TIME TRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 16.1, - "2015-01-01": 16.1 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.SCHOOL_AGE_BEFORE_OR_AFTER.EXTENDED_DAY_FULL_TIME": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.SCHOOL_AGE_BEFORE_OR_AFTER.EXTENDED_DAY_FULL_TIME", - "description": null, - "label": "EXTENDED DAY FULL TIME", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.SCHOOL_AGE_BEFORE_OR_AFTER.EXTENDED_DAY_PART_TIME": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.SCHOOL_AGE_BEFORE_OR_AFTER.EXTENDED_DAY_PART_TIME", - "description": null, - "label": "EXTENDED DAY PART TIME", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.SCHOOL_AGE_BEFORE_OR_AFTER.FULL_TIME_NONTRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.SCHOOL_AGE_BEFORE_OR_AFTER.FULL_TIME_NONTRADITIONAL", - "description": null, - "label": "FULL TIME NONTRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.SCHOOL_AGE_BEFORE_OR_AFTER.PART_TIME_NONTRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.SCHOOL_AGE_BEFORE_OR_AFTER.PART_TIME_NONTRADITIONAL", - "description": null, - "label": "PART TIME NONTRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.PRESCHOOL_AND_SCHOOL_AGE_SPECIAL_NEEDS": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.PRESCHOOL_AND_SCHOOL_AGE_SPECIAL_NEEDS", - "description": null, - "label": "PRESCHOOL AND SCHOOL AGE SPECIAL NEEDS", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.PRESCHOOL_AND_SCHOOL_AGE_SPECIAL_NEEDS.FULL_TIME_TRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.PRESCHOOL_AND_SCHOOL_AGE_SPECIAL_NEEDS.FULL_TIME_TRADITIONAL", - "description": null, - "label": "FULL TIME TRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.PRESCHOOL_AND_SCHOOL_AGE_SPECIAL_NEEDS.PART_TIME_TRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.PRESCHOOL_AND_SCHOOL_AGE_SPECIAL_NEEDS.PART_TIME_TRADITIONAL", - "description": null, - "label": "PART TIME TRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.PRESCHOOL_AND_SCHOOL_AGE_SPECIAL_NEEDS.EXTENDED_DAY_FULL_TIME": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.PRESCHOOL_AND_SCHOOL_AGE_SPECIAL_NEEDS.EXTENDED_DAY_FULL_TIME", - "description": null, - "label": "EXTENDED DAY FULL TIME", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.PRESCHOOL_AND_SCHOOL_AGE_SPECIAL_NEEDS.EXTENDED_DAY_PART_TIME": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.PRESCHOOL_AND_SCHOOL_AGE_SPECIAL_NEEDS.EXTENDED_DAY_PART_TIME", - "description": null, - "label": "EXTENDED DAY PART TIME", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.PRESCHOOL_AND_SCHOOL_AGE_SPECIAL_NEEDS.FULL_TIME_NONTRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.PRESCHOOL_AND_SCHOOL_AGE_SPECIAL_NEEDS.FULL_TIME_NONTRADITIONAL", - "description": null, - "label": "FULL TIME NONTRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.PRESCHOOL_AND_SCHOOL_AGE_SPECIAL_NEEDS.PART_TIME_NONTRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.CHILD_HOME_AND_EXPANDED_HOME.PRESCHOOL_AND_SCHOOL_AGE_SPECIAL_NEEDS.PART_TIME_NONTRADITIONAL", - "description": null, - "label": "PART TIME NONTRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE", - "description": null, - "label": "IN HOME CHILD CARE", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.INFANT_AND_TODDLER": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.INFANT_AND_TODDLER", - "description": null, - "label": "INFANT AND TODDLER", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.INFANT_AND_TODDLER.FULL_TIME_TRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.INFANT_AND_TODDLER.FULL_TIME_TRADITIONAL", - "description": null, - "label": "FULL TIME TRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 21.2, - "2015-01-01": 21.2 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.INFANT_AND_TODDLER.PART_TIME_TRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.INFANT_AND_TODDLER.PART_TIME_TRADITIONAL", - "description": null, - "label": "PART TIME TRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 12.72, - "2015-01-01": 12.72 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.INFANT_AND_TODDLER.EXTENDED_DAY_FULL_TIME": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.INFANT_AND_TODDLER.EXTENDED_DAY_FULL_TIME", - "description": null, - "label": "EXTENDED DAY FULL TIME", - "unit": null, - "period": null, - "values": { - "2024-10-01": 23.32, - "2015-01-01": 23.32 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.INFANT_AND_TODDLER.EXTENDED_DAY_PART_TIME": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.INFANT_AND_TODDLER.EXTENDED_DAY_PART_TIME", - "description": null, - "label": "EXTENDED DAY PART TIME", - "unit": null, - "period": null, - "values": { - "2024-10-01": 14.85, - "2015-01-01": 14.85 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.INFANT_AND_TODDLER.FULL_TIME_NONTRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.INFANT_AND_TODDLER.FULL_TIME_NONTRADITIONAL", - "description": null, - "label": "FULL TIME NONTRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 26.51, - "2015-01-01": 26.51 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.INFANT_AND_TODDLER.PART_TIME_NONTRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.INFANT_AND_TODDLER.PART_TIME_NONTRADITIONAL", - "description": null, - "label": "PART TIME NONTRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 15.91, - "2015-01-01": 15.91 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.INFANT_AND_TODDLER_SPECIAL_NEEDS": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.INFANT_AND_TODDLER_SPECIAL_NEEDS", - "description": null, - "label": "INFANT AND TODDLER SPECIAL NEEDS", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.INFANT_AND_TODDLER_SPECIAL_NEEDS.FULL_TIME_TRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.INFANT_AND_TODDLER_SPECIAL_NEEDS.FULL_TIME_TRADITIONAL", - "description": null, - "label": "FULL TIME TRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.INFANT_AND_TODDLER_SPECIAL_NEEDS.PART_TIME_TRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.INFANT_AND_TODDLER_SPECIAL_NEEDS.PART_TIME_TRADITIONAL", - "description": null, - "label": "PART TIME TRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.INFANT_AND_TODDLER_SPECIAL_NEEDS.EXTENDED_DAY_FULL_TIME": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.INFANT_AND_TODDLER_SPECIAL_NEEDS.EXTENDED_DAY_FULL_TIME", - "description": null, - "label": "EXTENDED DAY FULL TIME", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.INFANT_AND_TODDLER_SPECIAL_NEEDS.EXTENDED_DAY_PART_TIME": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.INFANT_AND_TODDLER_SPECIAL_NEEDS.EXTENDED_DAY_PART_TIME", - "description": null, - "label": "EXTENDED DAY PART TIME", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.INFANT_AND_TODDLER_SPECIAL_NEEDS.FULL_TIME_NONTRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.INFANT_AND_TODDLER_SPECIAL_NEEDS.FULL_TIME_NONTRADITIONAL", - "description": null, - "label": "FULL TIME NONTRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.INFANT_AND_TODDLER_SPECIAL_NEEDS.PART_TIME_NONTRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.INFANT_AND_TODDLER_SPECIAL_NEEDS.PART_TIME_NONTRADITIONAL", - "description": null, - "label": "PART TIME NONTRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.PRESCHOOL": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.PRESCHOOL", - "description": null, - "label": "PRESCHOOL", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.PRESCHOOL.FULL_TIME_TRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.PRESCHOOL.FULL_TIME_TRADITIONAL", - "description": null, - "label": "FULL TIME TRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 12.44, - "2015-01-01": 12.44 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.PRESCHOOL.PART_TIME_TRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.PRESCHOOL.PART_TIME_TRADITIONAL", - "description": null, - "label": "PART TIME TRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 7.46, - "2015-01-01": 7.46 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.PRESCHOOL.EXTENDED_DAY_FULL_TIME": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.PRESCHOOL.EXTENDED_DAY_FULL_TIME", - "description": null, - "label": "EXTENDED DAY FULL TIME", - "unit": null, - "period": null, - "values": { - "2024-10-01": 13.69, - "2015-01-01": 13.69 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.PRESCHOOL.EXTENDED_DAY_PART_TIME": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.PRESCHOOL.EXTENDED_DAY_PART_TIME", - "description": null, - "label": "EXTENDED DAY PART TIME", - "unit": null, - "period": null, - "values": { - "2024-10-01": 8.71, - "2015-01-01": 8.71 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.PRESCHOOL.FULL_TIME_NONTRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.PRESCHOOL.FULL_TIME_NONTRADITIONAL", - "description": null, - "label": "FULL TIME NONTRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 15.56, - "2015-01-01": 15.56 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.PRESCHOOL.PART_TIME_NONTRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.PRESCHOOL.PART_TIME_NONTRADITIONAL", - "description": null, - "label": "PART TIME NONTRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 9.34, - "2015-01-01": 9.34 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.PRESCHOOL_BEFORE_AND_AFTER": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.PRESCHOOL_BEFORE_AND_AFTER", - "description": null, - "label": "PRESCHOOL BEFORE AND AFTER", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.PRESCHOOL_BEFORE_AND_AFTER.FULL_TIME_TRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.PRESCHOOL_BEFORE_AND_AFTER.FULL_TIME_TRADITIONAL", - "description": null, - "label": "FULL TIME TRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 12.44, - "2015-01-01": 12.44 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.PRESCHOOL_BEFORE_AND_AFTER.PART_TIME_TRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.PRESCHOOL_BEFORE_AND_AFTER.PART_TIME_TRADITIONAL", - "description": null, - "label": "PART TIME TRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 7.46, - "2015-01-01": 7.46 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.PRESCHOOL_BEFORE_AND_AFTER.EXTENDED_DAY_FULL_TIME": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.PRESCHOOL_BEFORE_AND_AFTER.EXTENDED_DAY_FULL_TIME", - "description": null, - "label": "EXTENDED DAY FULL TIME", - "unit": null, - "period": null, - "values": { - "2024-10-01": 13.69, - "2015-01-01": 13.69 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.PRESCHOOL_BEFORE_AND_AFTER.EXTENDED_DAY_PART_TIME": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.PRESCHOOL_BEFORE_AND_AFTER.EXTENDED_DAY_PART_TIME", - "description": null, - "label": "EXTENDED DAY PART TIME", - "unit": null, - "period": null, - "values": { - "2024-10-01": 8.71, - "2015-01-01": 8.71 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.PRESCHOOL_BEFORE_AND_AFTER.FULL_TIME_NONTRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.PRESCHOOL_BEFORE_AND_AFTER.FULL_TIME_NONTRADITIONAL", - "description": null, - "label": "FULL TIME NONTRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.PRESCHOOL_BEFORE_AND_AFTER.PART_TIME_NONTRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.PRESCHOOL_BEFORE_AND_AFTER.PART_TIME_NONTRADITIONAL", - "description": null, - "label": "PART TIME NONTRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.SCHOOL_AGE_BEFORE_AND_AFTER": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.SCHOOL_AGE_BEFORE_AND_AFTER", - "description": null, - "label": "SCHOOL AGE BEFORE AND AFTER", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.SCHOOL_AGE_BEFORE_AND_AFTER.FULL_TIME_TRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.SCHOOL_AGE_BEFORE_AND_AFTER.FULL_TIME_TRADITIONAL", - "description": null, - "label": "FULL TIME TRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 11.27, - "2015-01-01": 11.27 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.SCHOOL_AGE_BEFORE_AND_AFTER.PART_TIME_TRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.SCHOOL_AGE_BEFORE_AND_AFTER.PART_TIME_TRADITIONAL", - "description": null, - "label": "PART TIME TRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 6.76, - "2015-01-01": 6.76 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.SCHOOL_AGE_BEFORE_AND_AFTER.EXTENDED_DAY_FULL_TIME": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.SCHOOL_AGE_BEFORE_AND_AFTER.EXTENDED_DAY_FULL_TIME", - "description": null, - "label": "EXTENDED DAY FULL TIME", - "unit": null, - "period": null, - "values": { - "2024-10-01": 12.39, - "2015-01-01": 12.39 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.SCHOOL_AGE_BEFORE_AND_AFTER.EXTENDED_DAY_PART_TIME": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.SCHOOL_AGE_BEFORE_AND_AFTER.EXTENDED_DAY_PART_TIME", - "description": null, - "label": "EXTENDED DAY PART TIME", - "unit": null, - "period": null, - "values": { - "2024-10-01": 7.89, - "2015-01-01": 7.89 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.SCHOOL_AGE_BEFORE_AND_AFTER.FULL_TIME_NONTRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.SCHOOL_AGE_BEFORE_AND_AFTER.FULL_TIME_NONTRADITIONAL", - "description": null, - "label": "FULL TIME NONTRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 14.1, - "2015-01-01": 14.1 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.SCHOOL_AGE_BEFORE_AND_AFTER.PART_TIME_NONTRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.SCHOOL_AGE_BEFORE_AND_AFTER.PART_TIME_NONTRADITIONAL", - "description": null, - "label": "PART TIME NONTRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 8.46, - "2015-01-01": 8.46 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.SCHOOL_AGE_BEFORE_OR_AFTER": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.SCHOOL_AGE_BEFORE_OR_AFTER", - "description": null, - "label": "SCHOOL AGE BEFORE OR AFTER", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.SCHOOL_AGE_BEFORE_OR_AFTER.FULL_TIME_TRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.SCHOOL_AGE_BEFORE_OR_AFTER.FULL_TIME_TRADITIONAL", - "description": null, - "label": "FULL TIME TRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 11.27, - "2015-01-01": 11.27 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.SCHOOL_AGE_BEFORE_OR_AFTER.PART_TIME_TRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.SCHOOL_AGE_BEFORE_OR_AFTER.PART_TIME_TRADITIONAL", - "description": null, - "label": "PART TIME TRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 6.19, - "2015-01-01": 6.19 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.SCHOOL_AGE_BEFORE_OR_AFTER.EXTENDED_DAY_FULL_TIME": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.SCHOOL_AGE_BEFORE_OR_AFTER.EXTENDED_DAY_FULL_TIME", - "description": null, - "label": "EXTENDED DAY FULL TIME", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.SCHOOL_AGE_BEFORE_OR_AFTER.EXTENDED_DAY_PART_TIME": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.SCHOOL_AGE_BEFORE_OR_AFTER.EXTENDED_DAY_PART_TIME", - "description": null, - "label": "EXTENDED DAY PART TIME", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.SCHOOL_AGE_BEFORE_OR_AFTER.FULL_TIME_NONTRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.SCHOOL_AGE_BEFORE_OR_AFTER.FULL_TIME_NONTRADITIONAL", - "description": null, - "label": "FULL TIME NONTRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.SCHOOL_AGE_BEFORE_OR_AFTER.PART_TIME_NONTRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.SCHOOL_AGE_BEFORE_OR_AFTER.PART_TIME_NONTRADITIONAL", - "description": null, - "label": "PART TIME NONTRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.PRESCHOOL_AND_SCHOOL_AGE_SPECIAL_NEEDS": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.PRESCHOOL_AND_SCHOOL_AGE_SPECIAL_NEEDS", - "description": null, - "label": "PRESCHOOL AND SCHOOL AGE SPECIAL NEEDS", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.PRESCHOOL_AND_SCHOOL_AGE_SPECIAL_NEEDS.FULL_TIME_TRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.PRESCHOOL_AND_SCHOOL_AGE_SPECIAL_NEEDS.FULL_TIME_TRADITIONAL", - "description": null, - "label": "FULL TIME TRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.PRESCHOOL_AND_SCHOOL_AGE_SPECIAL_NEEDS.PART_TIME_TRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.PRESCHOOL_AND_SCHOOL_AGE_SPECIAL_NEEDS.PART_TIME_TRADITIONAL", - "description": null, - "label": "PART TIME TRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.PRESCHOOL_AND_SCHOOL_AGE_SPECIAL_NEEDS.EXTENDED_DAY_FULL_TIME": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.PRESCHOOL_AND_SCHOOL_AGE_SPECIAL_NEEDS.EXTENDED_DAY_FULL_TIME", - "description": null, - "label": "EXTENDED DAY FULL TIME", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.PRESCHOOL_AND_SCHOOL_AGE_SPECIAL_NEEDS.EXTENDED_DAY_PART_TIME": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.PRESCHOOL_AND_SCHOOL_AGE_SPECIAL_NEEDS.EXTENDED_DAY_PART_TIME", - "description": null, - "label": "EXTENDED DAY PART TIME", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.PRESCHOOL_AND_SCHOOL_AGE_SPECIAL_NEEDS.FULL_TIME_NONTRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.PRESCHOOL_AND_SCHOOL_AGE_SPECIAL_NEEDS.FULL_TIME_NONTRADITIONAL", - "description": null, - "label": "FULL TIME NONTRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.PRESCHOOL_AND_SCHOOL_AGE_SPECIAL_NEEDS.PART_TIME_NONTRADITIONAL": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.reimbursement_rates.IN_HOME_CHILD_CARE.PRESCHOOL_AND_SCHOOL_AGE_SPECIAL_NEEDS.PART_TIME_NONTRADITIONAL", - "description": null, - "label": "PART TIME NONTRADITIONAL", - "unit": null, - "period": null, - "values": { - "2024-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.assets": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.ccsp.assets", - "description": null, - "label": "assets", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.assets.limit": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.assets.limit", - "description": "The District of Columbia limits the Child Care Subsidy Program to households with assets lesser than this amount.", - "label": "DC CCSP assets limit", - "unit": "currency-USD", - "period": "month", - "values": { - "2020-01-01": 1000000, - "2015-01-01": 1000000 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.assets.sources": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.assets.sources", - "description": "The District of Columbia counts these sources as assets under the Child Care Subsidy Program.", - "label": "DC CCSP assets sources", - "unit": "list", - "period": "year", - "values": { - "2020-01-01": ["spm_unit_cash_assets", "assessed_property_value"], - "2015-01-01": ["spm_unit_cash_assets", "assessed_property_value"] - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.ccsp.full_time_schedule_types": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.ccsp.full_time_schedule_types", - "description": "The District of Columbia defines the following schedule types as full-time under the Child Care Subsidy Program.", - "label": "DC CCSP full-time schedule types", - "unit": "list", - "period": "year", - "values": { - "1975-01-01": [ - "FULL_TIME_TRADITIONAL", - "EXTENDED_DAY_FULL_TIME", - "FULL_TIME_NONTRADITIONAL" - ] - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.gac": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.gac", - "description": null, - "label": "General Assistance for Children Program (GAC)", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.gac.income_disregard": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.gac.income_disregard", - "description": null, - "label": "income disregard", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.gac.income_disregard.amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.gac.income_disregard.amount", - "description": "The District of Columbia deducts this flat amount from the gross earned income under the General Assistance for Children program.", - "label": "DC GAC gross earned income disregard amount", - "unit": "currency-USD", - "period": "month", - "values": { - "2020-10-01": 7.5, - "2015-01-01": 7.5 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.qualified_noncitizen_statuses": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.qualified_noncitizen_statuses", - "description": "The District of Columbia considers these statuses as qualified noncitizens for the Temporary Assistance for Needy Families program.", - "label": "DC TANF qualified noncitizen statuses", - "unit": "list", - "period": "year", - "values": { - "1975-01-01": [ - "LEGAL_PERMANENT_RESIDENT", - "ASYLEE", - "REFUGEE", - "PAROLED_ONE_YEAR", - "DEPORTATION_WITHHELD", - "CONDITIONAL_ENTRANT", - "CUBAN_HAITIAN_ENTRANT" - ] - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.power": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.power", - "description": null, - "label": "Program on Work, Employment, and Responsibility (POWER)", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.power.age_threshold": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.power.age_threshold", - "description": null, - "label": "age threshold", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.power.age_threshold.younger": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.power.age_threshold.younger", - "description": "The District of Columbia provides the Program on Work, Employment, and Responsibility (POWER) to filers younger than this age.", - "label": "DC POWER younger age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 19, - "2015-01-01": 19 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.power.age_threshold.older": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.power.age_threshold.older", - "description": "The District of Columbia provides the Program on Work, Employment, and Responsibility (POWER) to filers at this age or older.", - "label": "DC POWER older age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.power.disqualifying_benefits": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.power.disqualifying_benefits", - "description": "The District of Columbia considers receipt of these benefits as disqualifying for the Program on Work, Employment, and Responsibility (POWER).", - "label": "DC POWER disqualifying benefits", - "unit": "list", - "period": "year", - "values": { - "1975-01-01": ["dc_tanf", "ssi", "unemployment_compensation"] - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.snap": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.snap", - "description": null, - "label": "snap", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.snap.min_allotment": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.snap.min_allotment", - "description": null, - "label": "min allotment", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.snap.min_allotment.in_effect": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.snap.min_allotment.in_effect", - "description": "DC provides a separate SNAP minimum allotment amount if this is true.", - "label": "DC SNAP minimum allotment in effect", - "unit": "bool", - "period": "year", - "values": { - "2024-01-01": true, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.snap.min_allotment.amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.snap.min_allotment.amount", - "description": "DC provides the following monthly SNAP minimum allotment amount.", - "label": "DC SNAP minimum allotment amount", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-01-01": 30, - "2015-01-01": 30 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.tanf", - "description": null, - "label": "Temporary Assistance for Needy Families (TANF)", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.age_threshold": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.tanf.age_threshold", - "description": null, - "label": "age threshold", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.age_threshold.minor_child": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.tanf.age_threshold.minor_child", - "description": "The District of Columbia limits the Temporary Assistance for Needy Families program to applicants with children younger than this age.", - "label": "DC TANF minor child age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 18, - "2015-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.age_threshold.student_dependent": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.tanf.age_threshold.student_dependent", - "description": "The District of Columbia provides the Temporary Assistance for Needy Families program to applicants with student dependents younger than this age.", - "label": "DC TANF minor child age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 19, - "2015-01-01": 19 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.standard_payment": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.tanf.standard_payment", - "description": null, - "label": "standard payment", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.standard_payment.max_unit_size": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.tanf.standard_payment.max_unit_size", - "description": "The District of Columbia provides increased the Temporary Assistance for Needy Families program standard payment amount for households with less than or equal to this number of members.", - "label": "DC TANF standard payment max unit size", - "unit": "int", - "period": "month", - "values": { - "2023-10-01": 19, - "2021-10-01": 10, - "2015-01-01": 10 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.standard_payment.amount": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.tanf.standard_payment.amount", - "description": "The District of Columbia provides up to this standard payment amount under the Temporary Assistance for Needy Families program, based on household size.", - "label": "DC TANF standard payment amount", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.standard_payment.amount.1": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.tanf.standard_payment.amount.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2024-10-01": 490, - "2023-10-01": 450, - "2022-10-01": 437, - "2015-01-01": 437 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.standard_payment.amount.2": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.tanf.standard_payment.amount.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2024-10-01": 612, - "2023-10-01": 560, - "2022-10-01": 545, - "2015-01-01": 545 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.standard_payment.amount.3": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.tanf.standard_payment.amount.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2024-10-01": 781, - "2023-10-01": 712, - "2022-10-01": 696, - "2015-01-01": 696 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.standard_payment.amount.4": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.tanf.standard_payment.amount.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2024-10-01": 956, - "2023-10-01": 870, - "2022-10-01": 851, - "2015-01-01": 851 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.standard_payment.amount.5": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.tanf.standard_payment.amount.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2024-10-01": 1104, - "2023-10-01": 1002, - "2022-10-01": 983, - "2015-01-01": 983 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.standard_payment.amount.6": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.tanf.standard_payment.amount.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2024-10-01": 1298, - "2023-10-01": 1178, - "2022-10-01": 1155, - "2015-01-01": 1155 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.standard_payment.amount.7": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.tanf.standard_payment.amount.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2024-10-01": 1489, - "2023-10-01": 1352, - "2022-10-01": 1325, - "2015-01-01": 1325 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.standard_payment.amount.8": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.tanf.standard_payment.amount.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2024-10-01": 1644, - "2023-10-01": 1494, - "2022-10-01": 1463, - "2015-01-01": 1463 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.standard_payment.amount.9": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.tanf.standard_payment.amount.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2024-10-01": 1811, - "2023-10-01": 1642, - "2022-10-01": 1612, - "2015-01-01": 1612 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.standard_payment.amount.10": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.tanf.standard_payment.amount.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2024-10-01": 1967, - "2023-10-01": 1786, - "2022-10-01": 1750, - "2015-01-01": 1750 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.standard_payment.amount.11": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.tanf.standard_payment.amount.11", - "description": null, - "label": "11", - "unit": null, - "period": null, - "values": { - "2023-10-01": 1884, - "2015-01-01": 1884 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.standard_payment.amount.12": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.tanf.standard_payment.amount.12", - "description": null, - "label": "12", - "unit": null, - "period": null, - "values": { - "2023-10-01": 2024, - "2015-01-01": 2024 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.standard_payment.amount.13": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.tanf.standard_payment.amount.13", - "description": null, - "label": "13", - "unit": null, - "period": null, - "values": { - "2023-10-01": 2116, - "2015-01-01": 2116 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.standard_payment.amount.14": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.tanf.standard_payment.amount.14", - "description": null, - "label": "14", - "unit": null, - "period": null, - "values": { - "2023-10-01": 2232, - "2015-01-01": 2232 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.standard_payment.amount.15": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.tanf.standard_payment.amount.15", - "description": null, - "label": "15", - "unit": null, - "period": null, - "values": { - "2023-10-01": 2316, - "2015-01-01": 2316 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.standard_payment.amount.16": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.tanf.standard_payment.amount.16", - "description": null, - "label": "16", - "unit": null, - "period": null, - "values": { - "2023-10-01": 2432, - "2015-01-01": 2432 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.standard_payment.amount.17": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.tanf.standard_payment.amount.17", - "description": null, - "label": "17", - "unit": null, - "period": null, - "values": { - "2023-10-01": 2668, - "2015-01-01": 2668 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.standard_payment.amount.18": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.tanf.standard_payment.amount.18", - "description": null, - "label": "18", - "unit": null, - "period": null, - "values": { - "2023-10-01": 2730, - "2015-01-01": 2730 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.standard_payment.amount.19": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.tanf.standard_payment.amount.19", - "description": null, - "label": "19", - "unit": null, - "period": null, - "values": { - "2023-10-01": 2786, - "2015-01-01": 2786 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.standard_payment.amount.0": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.tanf.standard_payment.amount.0", - "description": null, - "label": "0", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.resource_limit": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.tanf.resource_limit", - "description": null, - "label": "resource limit", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.resource_limit.higher": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.tanf.resource_limit.higher", - "description": null, - "label": "higher", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.resource_limit.higher.age_threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.tanf.resource_limit.higher.age_threshold", - "description": "The District of Columbia provides a higher resource limit under the Temporary Assistance for Needy Families program to applicants with at least one member of this age or older.", - "label": "DC TANF resource limit age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-10-01": 60, - "2015-01-01": 60 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.resource_limit.higher.amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.tanf.resource_limit.higher.amount", - "description": "The District of Columbia limits the Temporary Assistance for Needy Families program to households with up to this resource amount, if they include elderly or disabled members.", - "label": "DC TANF higher resource limit amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-10-01": 4500, - "2022-10-01": 4250, - "2021-10-01": 3000, - "2015-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.resource_limit.lower": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.tanf.resource_limit.lower", - "description": null, - "label": "lower", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.resource_limit.lower.amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.tanf.resource_limit.lower.amount", - "description": "The District of Columbia limits the Temporary Assistance for Needy Families program to households with up to this resource amount if they do not include elderly or disabled members.", - "label": "DC TANF lower resource limit amount", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-10-01": 3000, - "2022-10-01": 2750, - "2021-10-01": 2000, - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.income": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.tanf.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.income.sources": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.tanf.income.sources", - "description": null, - "label": "sources", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.income.sources.earned": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.tanf.income.sources.earned", - "description": "The District of Columbia counts these income sources as earned income under the Temporary Assistance for Needy Families program.", - "label": "DC TANF earned income sources", - "unit": "list", - "period": "year", - "values": { - "2020-01-01": ["employment_income", "self_employment_income"], - "2015-01-01": ["employment_income", "self_employment_income"] - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.income.sources.unearned": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.tanf.income.sources.unearned", - "description": "The District of Columbia counts these income sources as unearned income under the Temporary Assistance for Needy Families program.", - "label": "DC TANF unearned income sources", - "unit": "list", - "period": "year", - "values": { - "2020-01-01": [ - "veterans_benefits", - "rental_income", - "child_support_received", - "alimony_income", - "dividend_income", - "interest_income", - "miscellaneous_income", - "pension_income", - "unemployment_compensation", - "gi_cash_assistance", - "social_security" - ], - "2015-01-01": [ - "veterans_benefits", - "rental_income", - "child_support_received", - "alimony_income", - "dividend_income", - "interest_income", - "miscellaneous_income", - "pension_income", - "unemployment_compensation", - "gi_cash_assistance", - "social_security" - ] - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.income.deductions": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.tanf.income.deductions", - "description": null, - "label": "deductions", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.income.deductions.earned_income_disregard": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.tanf.income.deductions.earned_income_disregard", - "description": null, - "label": "earned income disregard", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.income.deductions.earned_income_disregard.percentage": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.tanf.income.deductions.earned_income_disregard.percentage", - "description": "The District of Columbia excludes this share of earnings from the Temporary Assistance for Needy Families program countable income, when computing the benefit value.", - "label": "DC TANF earned income percentage disregard", - "unit": "/1", - "period": "month", - "values": { - "2020-10-01": 0.67, - "2015-01-01": 0.67 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.income.deductions.child_support": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.tanf.income.deductions.child_support", - "description": "The District of Columbia excludes this amount of monthly child support received, when computing the unearned income under the Temporary Assistance for Needy Families program.", - "label": "DC TANF child support exclusion", - "unit": "currency-USD", - "period": "month", - "values": { - "2005-10-01": 150 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.income.deductions.work_related_expense": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.tanf.income.deductions.work_related_expense", - "description": null, - "label": "work related expense", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.income.deductions.work_related_expense.amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.tanf.income.deductions.work_related_expense.amount", - "description": "The District of Columbia deducts this amount of work-related expenses from the gross earned income under the Temporary Assistance for Needy Families program.", - "label": "DC TANF work-related expense deduction amount", - "unit": "currency-USD", - "period": "month", - "values": { - "2020-10-01": 160, - "2015-01-01": 160 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.income.deductions.child_care": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.tanf.income.deductions.child_care", - "description": null, - "label": "child care", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.income.deductions.child_care.amount": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.tanf.income.deductions.child_care.amount", - "description": "The District of Columbia deducts up to this amount of dependent care expenses per child from countable income under the Temporary Assistance for Needy Families program, depending on child age.", - "label": "DC TANF monthly earned income childcare deduction per child" - }, - "gov.states.dc.dhs.tanf.income.deductions.child_care.amount[0]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.tanf.income.deductions.child_care.amount[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.dc.dhs.tanf.income.deductions.child_care.amount[0].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.tanf.income.deductions.child_care.amount[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2020-10-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.income.deductions.child_care.amount[0].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.tanf.income.deductions.child_care.amount[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2020-10-01": 200, - "2015-01-01": 200 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.income.deductions.child_care.amount[1]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.tanf.income.deductions.child_care.amount[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.dc.dhs.tanf.income.deductions.child_care.amount[1].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.tanf.income.deductions.child_care.amount[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2020-10-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.income.deductions.child_care.amount[1].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.tanf.income.deductions.child_care.amount[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2020-10-01": 175, - "2015-01-01": 175 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.work_requirement": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.tanf.work_requirement", - "description": null, - "label": "work requirement", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.work_requirement.required_hours": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.tanf.work_requirement.required_hours", - "description": null, - "label": "required hours", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.work_requirement.required_hours.two_parents": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.tanf.work_requirement.required_hours.two_parents", - "description": null, - "label": "two parents", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.work_requirement.required_hours.two_parents.amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.tanf.work_requirement.required_hours.two_parents.amount", - "description": "The District of Columbia requires this amount of combined weekly working hours for two-parent applicants under the Temporary Assistance for Needy Families program.", - "label": "DC TANF two-parent work requirement amount", - "unit": "hour", - "period": "week", - "values": { - "2020-10-01": 35, - "2015-01-01": 35 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.work_requirement.required_hours.single_parent": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.tanf.work_requirement.required_hours.single_parent", - "description": null, - "label": "single parent", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.work_requirement.required_hours.single_parent.higher": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.tanf.work_requirement.required_hours.single_parent.higher", - "description": null, - "label": "higher", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.work_requirement.required_hours.single_parent.higher.amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.tanf.work_requirement.required_hours.single_parent.higher.amount", - "description": "The District of Columbia requires this higher amount of weekly working hours under the Temporary Assistance for Needy Families program, if they do not include young child member.", - "label": "DC TANF work requirement higher amount", - "unit": "hour", - "period": "week", - "values": { - "2020-10-01": 30, - "2015-01-01": 30 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.work_requirement.required_hours.single_parent.lower": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.tanf.work_requirement.required_hours.single_parent.lower", - "description": null, - "label": "lower", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.work_requirement.required_hours.single_parent.lower.young_child_age_threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.tanf.work_requirement.required_hours.single_parent.lower.young_child_age_threshold", - "description": "The District of Columbia provides a lower work requirement hours for applicants with children younger than this age under the Temporary Assistance for Needy Families program.", - "label": "DC TANF work requirement young child age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 6, - "2015-01-01": 6 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.work_requirement.required_hours.single_parent.lower.amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.tanf.work_requirement.required_hours.single_parent.lower.amount", - "description": "The District of Columbia requires this lower amount of weekly working hours under the Temporary Assistance for Needy Families program, if they include young child member.", - "label": "DC TANF work requirement lower amount", - "unit": "hour", - "period": "week", - "values": { - "2020-10-01": 20, - "2015-01-01": 20 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.work_requirement.required_hours.single_parent.amount": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.tanf.work_requirement.required_hours.single_parent.amount", - "description": "The District of Columbia requires this amount of weekly working hours under the Temporary Assistance for Needy Families program, based on youngest child age.", - "label": "DC TANF single parent weekly working hours" - }, - "gov.states.dc.dhs.tanf.work_requirement.required_hours.single_parent.amount[0]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.tanf.work_requirement.required_hours.single_parent.amount[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.dc.dhs.tanf.work_requirement.required_hours.single_parent.amount[0].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.tanf.work_requirement.required_hours.single_parent.amount[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.work_requirement.required_hours.single_parent.amount[0].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.tanf.work_requirement.required_hours.single_parent.amount[0].amount", - "description": null, - "label": "amount", - "unit": "int", - "period": null, - "values": { - "2021-01-01": 20, - "2015-01-01": 20 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.work_requirement.required_hours.single_parent.amount[1]": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.tanf.work_requirement.required_hours.single_parent.amount[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.dc.dhs.tanf.work_requirement.required_hours.single_parent.amount[1].threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.tanf.work_requirement.required_hours.single_parent.amount[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 6, - "2015-01-01": 6 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.work_requirement.required_hours.single_parent.amount[1].amount": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.tanf.work_requirement.required_hours.single_parent.amount[1].amount", - "description": null, - "label": "amount", - "unit": "int", - "period": null, - "values": { - "2021-01-01": 30, - "2015-01-01": 30 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.work_requirement.work_exempted": { - "type": "parameterNode", - "parameter": "gov.states.dc.dhs.tanf.work_requirement.work_exempted", - "description": null, - "label": "work exempted", - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.work_requirement.work_exempted.infant_age_threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.tanf.work_requirement.work_exempted.infant_age_threshold", - "description": "The District of Columbia exempts work requirement for single parent applicants with infant younger than this age under the Temporary Assistance for Needy Families program.", - "label": "DC TANF work exempted infant age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.dc.dhs.tanf.work_requirement.work_exempted.elderly_age_threshold": { - "type": "parameter", - "parameter": "gov.states.dc.dhs.tanf.work_requirement.work_exempted.elderly_age_threshold", - "description": "The District of Columbia exempts work requirement for applicants at than this age or older under the Temporary Assistance for Needy Families program.", - "label": "DC TANF work exempted elderly age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": true, - "household": true - }, - "gov.states.al": { - "type": "parameterNode", - "parameter": "gov.states.al", - "description": null, - "label": "Alabama", - "economy": true, - "household": true - }, - "gov.states.al.tax": { - "type": "parameterNode", - "parameter": "gov.states.al.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.states.al.tax.income": { - "type": "parameterNode", - "parameter": "gov.states.al.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.al.tax.income.agi": { - "type": "parameterNode", - "parameter": "gov.states.al.tax.income.agi", - "description": null, - "label": "agi", - "economy": true, - "household": true - }, - "gov.states.al.tax.income.agi.gross_income_sources": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.agi.gross_income_sources", - "description": "Alabama counts these income sources for the state gross income.", - "label": "Alabama gross income income sources", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": [ - "irs_employment_income", - "self_employment_income", - "interest_income", - "dividend_income", - "alimony_income", - "taxable_ira_distributions", - "taxable_401k_distributions", - "taxable_sep_distributions", - "taxable_403b_distributions", - "keogh_distributions", - "pension_income", - "rental_income", - "capital_gains" - ], - "2015-01-01": [ - "irs_employment_income", - "self_employment_income", - "interest_income", - "dividend_income", - "alimony_income", - "taxable_ira_distributions", - "taxable_401k_distributions", - "taxable_sep_distributions", - "taxable_403b_distributions", - "keogh_distributions", - "pension_income", - "rental_income", - "capital_gains" - ] - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.agi.deductions": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.agi.deductions", - "description": "Alabama provides these deductions for the state adjusted gross income.", - "label": "Alabama adjusted gross income deductions", - "unit": "list", - "period": "year", - "values": { - "2023-01-01": [ - "traditional_ira_contributions", - "alimony_expense", - "self_employed_health_insurance_ald", - "al_retirement_exemption" - ], - "2021-01-01": [ - "traditional_ira_contributions", - "alimony_expense", - "self_employed_health_insurance_ald" - ], - "2015-01-01": [ - "traditional_ira_contributions", - "alimony_expense", - "self_employed_health_insurance_ald" - ] - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.exemptions": { - "type": "parameterNode", - "parameter": "gov.states.al.tax.income.exemptions", - "description": null, - "label": "exemptions", - "economy": true, - "household": true - }, - "gov.states.al.tax.income.exemptions.dependent": { - "type": "parameterNode", - "parameter": "gov.states.al.tax.income.exemptions.dependent", - "description": "Alabama provides this dependent exemption amount, based on adjusted gross income.", - "label": "Alabama dependent exemption amount" - }, - "gov.states.al.tax.income.exemptions.dependent[0]": { - "type": "parameterNode", - "parameter": "gov.states.al.tax.income.exemptions.dependent[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.al.tax.income.exemptions.dependent[0].threshold": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.exemptions.dependent[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.exemptions.dependent[0].amount": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.exemptions.dependent[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.exemptions.dependent[1]": { - "type": "parameterNode", - "parameter": "gov.states.al.tax.income.exemptions.dependent[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.al.tax.income.exemptions.dependent[1].threshold": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.exemptions.dependent[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 50000, - "2021-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.exemptions.dependent[1].amount": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.exemptions.dependent[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.exemptions.dependent[2]": { - "type": "parameterNode", - "parameter": "gov.states.al.tax.income.exemptions.dependent[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.al.tax.income.exemptions.dependent[2].threshold": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.exemptions.dependent[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.exemptions.dependent[2].amount": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.exemptions.dependent[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 300, - "2015-01-01": 300 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.exemptions.personal": { - "type": "parameterNode", - "parameter": "gov.states.al.tax.income.exemptions.personal", - "description": "Alabama provides this exemption amount, based on filing status.", - "label": "Alabama personal exemption amount", - "economy": true, - "household": true - }, - "gov.states.al.tax.income.exemptions.personal.SINGLE": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.exemptions.personal.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 1500, - "2015-01-01": 1500 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.exemptions.personal.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.exemptions.personal.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 1500, - "2015-01-01": 1500 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.exemptions.personal.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.exemptions.personal.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 1500, - "2015-01-01": 1500 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.exemptions.personal.JOINT": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.exemptions.personal.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 3000, - "2015-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.exemptions.personal.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.exemptions.personal.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 3000, - "2015-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.exemptions.retirement": { - "type": "parameterNode", - "parameter": "gov.states.al.tax.income.exemptions.retirement", - "description": null, - "label": "retirement", - "economy": true, - "household": true - }, - "gov.states.al.tax.income.exemptions.retirement.age_threshold": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.exemptions.retirement.age_threshold", - "description": "Alabama provides the retirement exemption to filers at or above this age threshold.", - "label": "Alabama retirement exemption age threshold", - "unit": "year", - "period": "year", - "values": { - "2023-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.exemptions.retirement.cap": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.exemptions.retirement.cap", - "description": "Alabama caps the retirement exemption at this amount.", - "label": "Alabama retirement exemption cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2023-01-01": 6000, - "2015-01-01": 6000 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.rates": { - "type": "parameterNode", - "parameter": "gov.states.al.tax.income.rates", - "description": null, - "label": "rates", - "economy": true, - "household": true - }, - "gov.states.al.tax.income.rates.head_of_household": { - "type": "parameterNode", - "parameter": "gov.states.al.tax.income.rates.head_of_household", - "description": "Alabama taxes head of household filers at these rates by taxable income.", - "label": "Alabama head of household income tax rate" - }, - "gov.states.al.tax.income.rates.head_of_household[0]": { - "type": "parameterNode", - "parameter": "gov.states.al.tax.income.rates.head_of_household[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.al.tax.income.rates.head_of_household[0].rate": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.rates.head_of_household[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "1983-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.rates.head_of_household[0].threshold": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.rates.head_of_household[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "1983-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.rates.head_of_household[1]": { - "type": "parameterNode", - "parameter": "gov.states.al.tax.income.rates.head_of_household[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.al.tax.income.rates.head_of_household[1].rate": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.rates.head_of_household[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "1983-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.rates.head_of_household[1].threshold": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.rates.head_of_household[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "1983-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.rates.head_of_household[2]": { - "type": "parameterNode", - "parameter": "gov.states.al.tax.income.rates.head_of_household[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.al.tax.income.rates.head_of_household[2].rate": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.rates.head_of_household[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "1983-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.rates.head_of_household[2].threshold": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.rates.head_of_household[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "1983-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.rates.separate": { - "type": "parameterNode", - "parameter": "gov.states.al.tax.income.rates.separate", - "description": "Alabama taxes separate filers at these rates by taxable income.", - "label": "Alabama separate income tax rate" - }, - "gov.states.al.tax.income.rates.separate[0]": { - "type": "parameterNode", - "parameter": "gov.states.al.tax.income.rates.separate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.al.tax.income.rates.separate[0].rate": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.rates.separate[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "1983-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.rates.separate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.rates.separate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "1983-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.rates.separate[1]": { - "type": "parameterNode", - "parameter": "gov.states.al.tax.income.rates.separate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.al.tax.income.rates.separate[1].rate": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.rates.separate[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "1983-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.rates.separate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.rates.separate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "1983-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.rates.separate[2]": { - "type": "parameterNode", - "parameter": "gov.states.al.tax.income.rates.separate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.al.tax.income.rates.separate[2].rate": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.rates.separate[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "1983-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.rates.separate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.rates.separate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "1983-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.rates.joint": { - "type": "parameterNode", - "parameter": "gov.states.al.tax.income.rates.joint", - "description": "Alabama taxes joint filers at these rates by taxable income.", - "label": "Alabama joint income tax rate" - }, - "gov.states.al.tax.income.rates.joint[0]": { - "type": "parameterNode", - "parameter": "gov.states.al.tax.income.rates.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.al.tax.income.rates.joint[0].rate": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.rates.joint[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "1983-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.rates.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.rates.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "1983-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.rates.joint[1]": { - "type": "parameterNode", - "parameter": "gov.states.al.tax.income.rates.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.al.tax.income.rates.joint[1].rate": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.rates.joint[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "1983-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.rates.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.rates.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "1983-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.rates.joint[2]": { - "type": "parameterNode", - "parameter": "gov.states.al.tax.income.rates.joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.al.tax.income.rates.joint[2].rate": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.rates.joint[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "1983-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.rates.joint[2].threshold": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.rates.joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "1983-01-01": 6000 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.rates.single": { - "type": "parameterNode", - "parameter": "gov.states.al.tax.income.rates.single", - "description": "Alabama taxes single filers at these rates by taxable income.", - "label": "Alabama single income tax rate" - }, - "gov.states.al.tax.income.rates.single[0]": { - "type": "parameterNode", - "parameter": "gov.states.al.tax.income.rates.single[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.al.tax.income.rates.single[0].rate": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.rates.single[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "1983-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.rates.single[0].threshold": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.rates.single[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "1983-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.rates.single[1]": { - "type": "parameterNode", - "parameter": "gov.states.al.tax.income.rates.single[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.al.tax.income.rates.single[1].rate": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.rates.single[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "1983-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.rates.single[1].threshold": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.rates.single[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "1983-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.rates.single[2]": { - "type": "parameterNode", - "parameter": "gov.states.al.tax.income.rates.single[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.al.tax.income.rates.single[2].rate": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.rates.single[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "1983-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.rates.single[2].threshold": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.rates.single[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "1983-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.rates.surviving_spouse": { - "type": "parameterNode", - "parameter": "gov.states.al.tax.income.rates.surviving_spouse", - "description": "Alabama taxes surviving spouse filers at these rates by taxable income.", - "label": "Alabama surviving spouse income tax rate" - }, - "gov.states.al.tax.income.rates.surviving_spouse[0]": { - "type": "parameterNode", - "parameter": "gov.states.al.tax.income.rates.surviving_spouse[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.al.tax.income.rates.surviving_spouse[0].rate": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.rates.surviving_spouse[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "1983-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.rates.surviving_spouse[0].threshold": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.rates.surviving_spouse[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "1983-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.rates.surviving_spouse[1]": { - "type": "parameterNode", - "parameter": "gov.states.al.tax.income.rates.surviving_spouse[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.al.tax.income.rates.surviving_spouse[1].rate": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.rates.surviving_spouse[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "1983-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.rates.surviving_spouse[1].threshold": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.rates.surviving_spouse[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "1983-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.rates.surviving_spouse[2]": { - "type": "parameterNode", - "parameter": "gov.states.al.tax.income.rates.surviving_spouse[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.al.tax.income.rates.surviving_spouse[2].rate": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.rates.surviving_spouse[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "1983-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.rates.surviving_spouse[2].threshold": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.rates.surviving_spouse[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "1983-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.deductions": { - "type": "parameterNode", - "parameter": "gov.states.al.tax.income.deductions", - "description": null, - "label": "deductions", - "economy": true, - "household": true - }, - "gov.states.al.tax.income.deductions.federal_tax": { - "type": "parameterNode", - "parameter": "gov.states.al.tax.income.deductions.federal_tax", - "description": null, - "label": "federal tax", - "economy": true, - "household": true - }, - "gov.states.al.tax.income.deductions.federal_tax.credits": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.deductions.federal_tax.credits", - "description": "Alabama subtracts the following credits for the federal tax deduction.", - "label": "Alabama federal tax deduction subtractable credits", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": ["eitc", "american_opportunity_credit", "refundable_ctc"], - "2015-01-01": ["eitc", "american_opportunity_credit", "refundable_ctc"] - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.deductions.itemized": { - "type": "parameterNode", - "parameter": "gov.states.al.tax.income.deductions.itemized", - "description": null, - "label": "itemized", - "economy": true, - "household": true - }, - "gov.states.al.tax.income.deductions.itemized.sources": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.deductions.itemized.sources", - "description": "Alabama allows for the following itemized deductions.", - "label": "Alabama itemized deductions sources", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": [ - "real_estate_taxes", - "employee_payroll_tax", - "self_employment_tax", - "charitable_deduction", - "al_medical_expense_deduction", - "al_casualty_loss_deduction", - "al_misc_deduction", - "al_interest_deduction" - ], - "2015-01-01": [ - "real_estate_taxes", - "employee_payroll_tax", - "self_employment_tax", - "charitable_deduction", - "al_medical_expense_deduction", - "al_casualty_loss_deduction", - "al_misc_deduction", - "al_interest_deduction" - ] - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.deductions.itemized.medical_expense": { - "type": "parameterNode", - "parameter": "gov.states.al.tax.income.deductions.itemized.medical_expense", - "description": null, - "label": "medical expense", - "economy": true, - "household": true - }, - "gov.states.al.tax.income.deductions.itemized.medical_expense.income_floor": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.deductions.itemized.medical_expense.income_floor", - "description": "Alabama deducts medical expenses over this percentage of adjusted gross income.", - "label": "Alabama medical expenses deduction income floor", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.deductions.itemized.work_related_expense_rate": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.deductions.itemized.work_related_expense_rate", - "description": "Alabama deducts work-related expense over this percentage of adjusted gross income.", - "label": "Alabama work-related expense deduction rate", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.02, - "2015-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.deductions.standard": { - "type": "parameterNode", - "parameter": "gov.states.al.tax.income.deductions.standard", - "description": null, - "label": "standard", - "economy": true, - "household": true - }, - "gov.states.al.tax.income.deductions.standard.amount": { - "type": "parameterNode", - "parameter": "gov.states.al.tax.income.deductions.standard.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.states.al.tax.income.deductions.standard.amount.max": { - "type": "parameterNode", - "parameter": "gov.states.al.tax.income.deductions.standard.amount.max", - "description": "Alabama allows for the following standard deduction maximum amount, based on filing status.", - "label": "Alabama standard deduction maximum amount", - "economy": true, - "household": true - }, - "gov.states.al.tax.income.deductions.standard.amount.max.JOINT": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.deductions.standard.amount.max.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2022-01-01": 8500, - "2021-01-01": 7500, - "2015-01-01": 7500 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.deductions.standard.amount.max.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.deductions.standard.amount.max.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2022-01-01": 5200, - "2021-01-01": 4700, - "2015-01-01": 4700 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.deductions.standard.amount.max.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.deductions.standard.amount.max.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 3000, - "2021-01-01": 2500, - "2015-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.deductions.standard.amount.max.SINGLE": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.deductions.standard.amount.max.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 3000, - "2021-01-01": 2500, - "2015-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.deductions.standard.amount.max.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.deductions.standard.amount.max.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 4250, - "2021-01-01": 3750, - "2015-01-01": 3750 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.deductions.standard.amount.min": { - "type": "parameterNode", - "parameter": "gov.states.al.tax.income.deductions.standard.amount.min", - "description": "Alabama provides the following standard deduction minimum amount, based on filing status.", - "label": "Alabama standard deduction minimum amount", - "economy": true, - "household": true - }, - "gov.states.al.tax.income.deductions.standard.amount.min.JOINT": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.deductions.standard.amount.min.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2022-01-01": 5000, - "2021-01-01": 4000, - "2015-01-01": 4000 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.deductions.standard.amount.min.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.deductions.standard.amount.min.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2022-01-01": 2500, - "2021-01-01": 2000, - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.deductions.standard.amount.min.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.deductions.standard.amount.min.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 2500, - "2021-01-01": 2000, - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.deductions.standard.amount.min.SINGLE": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.deductions.standard.amount.min.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 2500, - "2021-01-01": 2000, - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.deductions.standard.amount.min.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.deductions.standard.amount.min.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 2500, - "2021-01-01": 2000, - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.deductions.standard.phase_out": { - "type": "parameterNode", - "parameter": "gov.states.al.tax.income.deductions.standard.phase_out", - "description": null, - "label": "phase out", - "economy": true, - "household": true - }, - "gov.states.al.tax.income.deductions.standard.phase_out.increment": { - "type": "parameterNode", - "parameter": "gov.states.al.tax.income.deductions.standard.phase_out.increment", - "description": "Alabama phases its standard deduction out in these increments, based on filing status.", - "label": "Alabama standard deduction phase-out increment", - "economy": true, - "household": true - }, - "gov.states.al.tax.income.deductions.standard.phase_out.increment.JOINT": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.deductions.standard.phase_out.increment.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.deductions.standard.phase_out.increment.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.deductions.standard.phase_out.increment.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.deductions.standard.phase_out.increment.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.deductions.standard.phase_out.increment.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.deductions.standard.phase_out.increment.SINGLE": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.deductions.standard.phase_out.increment.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.deductions.standard.phase_out.increment.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.deductions.standard.phase_out.increment.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 250, - "2015-01-01": 250 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.deductions.standard.phase_out.rate": { - "type": "parameterNode", - "parameter": "gov.states.al.tax.income.deductions.standard.phase_out.rate", - "description": "Alabama phases its standard deduction out at this rate, based on filing status.", - "label": "Alabama standard deduction phase-out rate", - "economy": true, - "household": true - }, - "gov.states.al.tax.income.deductions.standard.phase_out.rate.JOINT": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.deductions.standard.phase_out.rate.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 175, - "2015-01-01": 175 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.deductions.standard.phase_out.rate.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.deductions.standard.phase_out.rate.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 135, - "2015-01-01": 135 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.deductions.standard.phase_out.rate.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.deductions.standard.phase_out.rate.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 25, - "2015-01-01": 25 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.deductions.standard.phase_out.rate.SINGLE": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.deductions.standard.phase_out.rate.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 25, - "2015-01-01": 25 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.deductions.standard.phase_out.rate.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.deductions.standard.phase_out.rate.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 88, - "2015-01-01": 88 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.deductions.standard.phase_out.threshold": { - "type": "parameterNode", - "parameter": "gov.states.al.tax.income.deductions.standard.phase_out.threshold", - "description": "Alabama phases its standard deduction out for filers with adjusted gross income above this threshold, based on filing status.", - "label": "Alabama standard deduction phase-out threshold", - "economy": true, - "household": true - }, - "gov.states.al.tax.income.deductions.standard.phase_out.threshold.JOINT": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.deductions.standard.phase_out.threshold.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2022-01-01": 25500, - "2021-01-01": 23000, - "2015-01-01": 23000 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.deductions.standard.phase_out.threshold.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.deductions.standard.phase_out.threshold.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2022-01-01": 25500, - "2021-01-01": 23000, - "2015-01-01": 23000 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.deductions.standard.phase_out.threshold.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.deductions.standard.phase_out.threshold.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 25500, - "2021-01-01": 23000, - "2015-01-01": 23000 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.deductions.standard.phase_out.threshold.SINGLE": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.deductions.standard.phase_out.threshold.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 25500, - "2021-01-01": 23000, - "2015-01-01": 23000 - }, - "economy": true, - "household": true - }, - "gov.states.al.tax.income.deductions.standard.phase_out.threshold.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.al.tax.income.deductions.standard.phase_out.threshold.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 12750, - "2021-01-01": 10500, - "2015-01-01": 10500 - }, - "economy": true, - "household": true - }, - "gov.states.ri": { - "type": "parameterNode", - "parameter": "gov.states.ri", - "description": null, - "label": "Rhode Island", - "economy": true, - "household": true - }, - "gov.states.ri.tax": { - "type": "parameterNode", - "parameter": "gov.states.ri.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.states.ri.tax.income": { - "type": "parameterNode", - "parameter": "gov.states.ri.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.agi": { - "type": "parameterNode", - "parameter": "gov.states.ri.tax.income.agi", - "description": null, - "label": "agi", - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.agi.subtractions": { - "type": "parameterNode", - "parameter": "gov.states.ri.tax.income.agi.subtractions", - "description": null, - "label": "subtractions", - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.agi.subtractions.subtractions": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.agi.subtractions.subtractions", - "description": "Rhode Island subtracts these items from federal adjusted gross income when computing Rhode Island adjusted gross income.", - "label": "Rhode Island adjusted gross income subtractions", - "unit": "list", - "period": "year", - "values": { - "2023-01-01": [ - "ri_social_security_modification", - "ri_tuition_saving_program_contribution_subtraction", - "ri_retirement_income_subtraction", - "us_govt_interest", - "military_retirement_pay" - ], - "2021-01-01": [ - "ri_social_security_modification", - "ri_tuition_saving_program_contribution_subtraction", - "ri_retirement_income_subtraction", - "us_govt_interest" - ], - "2015-01-01": [ - "ri_social_security_modification", - "ri_tuition_saving_program_contribution_subtraction", - "ri_retirement_income_subtraction", - "us_govt_interest" - ] - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.agi.subtractions.tuition_saving_program_contributions": { - "type": "parameterNode", - "parameter": "gov.states.ri.tax.income.agi.subtractions.tuition_saving_program_contributions", - "description": null, - "label": "tuition saving program contributions", - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.agi.subtractions.tuition_saving_program_contributions.cap": { - "type": "parameterNode", - "parameter": "gov.states.ri.tax.income.agi.subtractions.tuition_saving_program_contributions.cap", - "description": "Rhode Island subtracts up to this amount of tuition saving program (section 529 accounts) contributions from state adjusted gross income.", - "label": "Rhode Island tuition saving program contribution deduction cap", - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.agi.subtractions.tuition_saving_program_contributions.cap.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.agi.subtractions.tuition_saving_program_contributions.cap.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.agi.subtractions.tuition_saving_program_contributions.cap.JOINT": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.agi.subtractions.tuition_saving_program_contributions.cap.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.agi.subtractions.tuition_saving_program_contributions.cap.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.agi.subtractions.tuition_saving_program_contributions.cap.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.agi.subtractions.tuition_saving_program_contributions.cap.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.agi.subtractions.tuition_saving_program_contributions.cap.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.agi.subtractions.tuition_saving_program_contributions.cap.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.agi.subtractions.tuition_saving_program_contributions.cap.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.agi.subtractions.social_security": { - "type": "parameterNode", - "parameter": "gov.states.ri.tax.income.agi.subtractions.social_security", - "description": null, - "label": "social security", - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.agi.subtractions.social_security.limit": { - "type": "parameterNode", - "parameter": "gov.states.ri.tax.income.agi.subtractions.social_security.limit", - "description": null, - "label": "limit", - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.agi.subtractions.social_security.limit.birth_year": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.agi.subtractions.social_security.limit.birth_year", - "description": "Rhode Island allows social security modifications for taxpayers or spouses born on or before this date.", - "label": "Rhode Island social security modification birth year threshold", - "unit": "year", - "period": "year", - "values": { - "2024-01-01": 1958, - "2023-01-01": 1957, - "2022-01-01": 1956, - "2021-01-01": 1955, - "2015-01-01": 1955 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.agi.subtractions.social_security.limit.income": { - "type": "parameterNode", - "parameter": "gov.states.ri.tax.income.agi.subtractions.social_security.limit.income", - "description": "Rhode Island subtracts taxable social security benefits for filers with federal adjusted gross income below this amount, based on filing status.", - "label": "Rhode Island social security subtraction income limit", - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.agi.subtractions.social_security.limit.income.JOINT": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.agi.subtractions.social_security.limit.income.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 130250, - "2023-01-01": 126250, - "2022-01-01": 119750, - "2021-01-01": 111200, - "2016-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.agi.subtractions.social_security.limit.income.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.agi.subtractions.social_security.limit.income.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2024-01-01": 104200, - "2023-01-01": 101000, - "2022-01-01": 95800, - "2021-01-01": 88950, - "2016-01-01": 80000, - "2015-01-01": 80000 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.agi.subtractions.social_security.limit.income.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.agi.subtractions.social_security.limit.income.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 130250, - "2023-01-01": 126250, - "2022-01-01": 119750, - "2021-01-01": 111200, - "2016-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.agi.subtractions.social_security.limit.income.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.agi.subtractions.social_security.limit.income.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 104200, - "2023-01-01": 101000, - "2022-01-01": 95800, - "2021-01-01": 88950, - "2016-01-01": 80000, - "2015-01-01": 80000 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.agi.subtractions.social_security.limit.income.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.agi.subtractions.social_security.limit.income.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 104225, - "2023-01-01": 101025, - "2022-01-01": 95800, - "2021-01-01": 88975, - "2016-01-01": 80000, - "2015-01-01": 80000 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.agi.subtractions.taxable_retirement_income": { - "type": "parameterNode", - "parameter": "gov.states.ri.tax.income.agi.subtractions.taxable_retirement_income", - "description": null, - "label": "taxable retirement income", - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.agi.subtractions.taxable_retirement_income.cap": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.agi.subtractions.taxable_retirement_income.cap", - "description": "Rhode Island subtracts up to this amount of taxable retirement income from adjusted gross income.", - "label": "Rhode Island taxable retirement income subtraction cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2023-01-01": 20000, - "2017-01-01": 15000, - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.agi.subtractions.taxable_retirement_income.income_limit": { - "type": "parameterNode", - "parameter": "gov.states.ri.tax.income.agi.subtractions.taxable_retirement_income.income_limit", - "description": "Rhode Island subtracts taxable retirement income for filers with federal adjusted gross income below this amount, based on filing status.", - "label": "Rhode Island taxable retirement income subtraction income limit", - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.agi.subtractions.taxable_retirement_income.income_limit.JOINT": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.agi.subtractions.taxable_retirement_income.income_limit.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 130250, - "2023-01-01": 126250, - "2022-01-01": 119750, - "2021-01-01": 109050, - "2015-01-01": 109050 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.agi.subtractions.taxable_retirement_income.income_limit.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.agi.subtractions.taxable_retirement_income.income_limit.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2024-01-01": 104200, - "2023-01-01": 101000, - "2022-01-01": 95800, - "2021-01-01": 87200, - "2015-01-01": 87200 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.agi.subtractions.taxable_retirement_income.income_limit.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.agi.subtractions.taxable_retirement_income.income_limit.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 130250, - "2023-01-01": 126250, - "2022-01-01": 119750, - "2021-01-01": 109050, - "2015-01-01": 109050 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.agi.subtractions.taxable_retirement_income.income_limit.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.agi.subtractions.taxable_retirement_income.income_limit.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 104200, - "2023-01-01": 101000, - "2022-01-01": 95800, - "2021-01-01": 87200, - "2015-01-01": 87200 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.agi.subtractions.taxable_retirement_income.income_limit.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.agi.subtractions.taxable_retirement_income.income_limit.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 104225, - "2023-01-01": 101025, - "2022-01-01": 95800, - "2021-01-01": 87200, - "2015-01-01": 87200 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.agi.additions": { - "type": "parameterNode", - "parameter": "gov.states.ri.tax.income.agi.additions", - "description": null, - "label": "additions", - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.agi.additions.additions": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.agi.additions.additions", - "description": "Rhode Island adds these items on federal adjusted gross income when computing Rhode Island adjusted gross income.", - "label": "Rhode Island AGI additions", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": ["investment_in_529_plan", "tax_exempt_unemployment_compensation"], - "2015-01-01": ["investment_in_529_plan", "tax_exempt_unemployment_compensation"] - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.credits": { - "type": "parameterNode", - "parameter": "gov.states.ri.tax.income.credits", - "description": null, - "label": "credits", - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.credits.eitc": { - "type": "parameterNode", - "parameter": "gov.states.ri.tax.income.credits.eitc", - "description": null, - "label": "Earned Income Tax Credit", - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.credits.eitc.match": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.credits.eitc.match", - "description": "Rhode Island matches this fraction of the federal earned income tax credit.", - "label": "Rhode Island EITC match", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.16, - "2021-01-01": 0.15, - "2016-01-01": 0.125, - "2015-01-01": 0.1, - "2014-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.credits.refundable": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.credits.refundable", - "description": "Rhode Island provides these refundable income tax credits.", - "label": "Rhode Island refundable income tax credits", - "unit": "list", - "period": "year", - "values": { - "2023-01-01": ["ri_eitc", "ri_property_tax_credit"], - "2022-01-01": ["ri_eitc", "ri_property_tax_credit", "ri_child_tax_rebate"], - "2021-01-01": ["ri_eitc", "ri_property_tax_credit"], - "2015-01-01": ["ri_eitc", "ri_property_tax_credit"] - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.credits.cdcc": { - "type": "parameterNode", - "parameter": "gov.states.ri.tax.income.credits.cdcc", - "description": null, - "label": "Child and Dependent Care Credit", - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.credits.cdcc.rate": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.credits.cdcc.rate", - "description": "Rhode Island matches the Federal Credit for child and dependent care expenses by this rate.", - "label": "Rhode Island CDCC match percent", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.credits.property_tax": { - "type": "parameterNode", - "parameter": "gov.states.ri.tax.income.credits.property_tax", - "description": null, - "label": "property tax", - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.credits.property_tax.income_sources": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.credits.property_tax.income_sources", - "description": "Rhode Island counts these income sources when calculating its property tax credit.", - "label": "Rhode Island property tax credit household income sources", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": [ - "adjusted_gross_income", - "tax_exempt_pension_income", - "tax_exempt_interest_income", - "tax_exempt_social_security", - "tax_exempt_unemployment_compensation", - "alimony_income", - "tanf", - "child_support_received", - "workers_compensation" - ], - "2015-01-01": [ - "adjusted_gross_income", - "tax_exempt_pension_income", - "tax_exempt_interest_income", - "tax_exempt_social_security", - "tax_exempt_unemployment_compensation", - "alimony_income", - "tanf", - "child_support_received", - "workers_compensation" - ] - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.credits.property_tax.max_amount": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.credits.property_tax.max_amount", - "description": "Rhode Island provides the following maximum amount under the property tax credit.", - "label": "Rhode Island property tax credit maximum amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 840, - "2034-01-01": 820, - "2033-01-01": 805, - "2032-01-01": 790, - "2031-01-01": 775, - "2030-01-01": 760, - "2029-01-01": 745, - "2028-01-01": 730, - "2027-01-01": 715, - "2026-01-01": 700, - "2025-01-01": 685, - "2024-01-01": 675, - "2023-01-01": 650, - "2022-01-01": 600, - "2021-01-01": 415, - "2020-01-01": 400, - "2019-01-01": 385, - "2018-01-01": 365, - "2017-01-01": 350, - "2016-01-01": 335, - "2015-01-01": 320, - "2014-01-01": 305, - "2006-01-01": 300, - "1997-01-01": 250, - "1980-01-01": 200, - "1979-01-01": 175, - "1978-01-01": 150, - "1977-01-01": 55 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.credits.property_tax.rate": { - "type": "parameterNode", - "parameter": "gov.states.ri.tax.income.credits.property_tax.rate", - "description": null, - "label": "rate", - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.credits.property_tax.rate.multiple_people": { - "type": "parameterNode", - "parameter": "gov.states.ri.tax.income.credits.property_tax.rate.multiple_people", - "description": "Rhode Island provides a property tax credit for property taxes exceeding this fraction of income, for filers in a multiple-people household, depending on income.", - "label": "Rhode Island property tax credit income threshold for multiple-people households" - }, - "gov.states.ri.tax.income.credits.property_tax.rate.multiple_people[0]": { - "type": "parameterNode", - "parameter": "gov.states.ri.tax.income.credits.property_tax.rate.multiple_people[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ri.tax.income.credits.property_tax.rate.multiple_people[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.credits.property_tax.rate.multiple_people[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.credits.property_tax.rate.multiple_people[0].amount": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.credits.property_tax.rate.multiple_people[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.credits.property_tax.rate.multiple_people[1]": { - "type": "parameterNode", - "parameter": "gov.states.ri.tax.income.credits.property_tax.rate.multiple_people[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ri.tax.income.credits.property_tax.rate.multiple_people[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.credits.property_tax.rate.multiple_people[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 8390, - "2034-01-01": 8230, - "2033-01-01": 8070, - "2032-01-01": 7910, - "2031-01-01": 7760, - "2030-01-01": 7610, - "2029-01-01": 7460, - "2028-01-01": 7315, - "2027-01-01": 7165, - "2026-01-01": 6990, - "2025-01-01": 6885, - "2024-01-01": 6740, - "2023-01-01": 6495, - "2021-01-01": 6000, - "2015-01-01": 6000 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.credits.property_tax.rate.multiple_people[1].amount": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.credits.property_tax.rate.multiple_people[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.credits.property_tax.rate.multiple_people[2]": { - "type": "parameterNode", - "parameter": "gov.states.ri.tax.income.credits.property_tax.rate.multiple_people[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ri.tax.income.credits.property_tax.rate.multiple_people[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.credits.property_tax.rate.multiple_people[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 12580, - "2034-01-01": 12335, - "2033-01-01": 12095, - "2032-01-01": 11860, - "2031-01-01": 11635, - "2030-01-01": 11410, - "2029-01-01": 11185, - "2028-01-01": 10965, - "2027-01-01": 10745, - "2026-01-01": 10485, - "2025-01-01": 10325, - "2024-01-01": 10105, - "2023-01-01": 9740, - "2021-01-01": 9000, - "2015-01-01": 9000 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.credits.property_tax.rate.multiple_people[2].amount": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.credits.property_tax.rate.multiple_people[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.credits.property_tax.rate.multiple_people[3]": { - "type": "parameterNode", - "parameter": "gov.states.ri.tax.income.credits.property_tax.rate.multiple_people[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ri.tax.income.credits.property_tax.rate.multiple_people[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.credits.property_tax.rate.multiple_people[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 20960, - "2034-01-01": 20555, - "2033-01-01": 20155, - "2032-01-01": 19765, - "2031-01-01": 19385, - "2030-01-01": 19005, - "2029-01-01": 18635, - "2028-01-01": 18270, - "2027-01-01": 17900, - "2026-01-01": 17470, - "2025-01-01": 17205, - "2024-01-01": 16835, - "2023-01-01": 16230, - "2021-01-01": 15000, - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.credits.property_tax.rate.multiple_people[3].amount": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.credits.property_tax.rate.multiple_people[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.06, - "2015-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.credits.property_tax.rate.multiple_people[4]": { - "type": "parameterNode", - "parameter": "gov.states.ri.tax.income.credits.property_tax.rate.multiple_people[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ri.tax.income.credits.property_tax.rate.multiple_people[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.credits.property_tax.rate.multiple_people[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 48905, - "2034-01-01": 47960, - "2033-01-01": 47025, - "2032-01-01": 46110, - "2031-01-01": 45225, - "2030-01-01": 44345, - "2029-01-01": 43480, - "2028-01-01": 42625, - "2027-01-01": 41760, - "2026-01-01": 40755, - "2025-01-01": 40145, - "2024-01-01": 39275, - "2023-01-01": 37870, - "2022-01-01": 35000, - "2021-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.credits.property_tax.rate.multiple_people[4].amount": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.credits.property_tax.rate.multiple_people[4].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.credits.property_tax.rate.rent": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.credits.property_tax.rate.rent", - "description": "Rhode Island accounts for the following percentage of rent paid under the property tax credit.", - "label": "Rhode Island property tax credit rent rate", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.credits.property_tax.rate.one_person": { - "type": "parameterNode", - "parameter": "gov.states.ri.tax.income.credits.property_tax.rate.one_person", - "description": "Rhode Island provides a property tax credit for property taxes exceeding this fraction of income, for filers in a one-person household, depending on income.", - "label": "Rhode Island property tax credit income threshold for one-person households" - }, - "gov.states.ri.tax.income.credits.property_tax.rate.one_person[0]": { - "type": "parameterNode", - "parameter": "gov.states.ri.tax.income.credits.property_tax.rate.one_person[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ri.tax.income.credits.property_tax.rate.one_person[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.credits.property_tax.rate.one_person[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.credits.property_tax.rate.one_person[0].amount": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.credits.property_tax.rate.one_person[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.credits.property_tax.rate.one_person[1]": { - "type": "parameterNode", - "parameter": "gov.states.ri.tax.income.credits.property_tax.rate.one_person[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ri.tax.income.credits.property_tax.rate.one_person[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.credits.property_tax.rate.one_person[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 8390, - "2034-01-01": 8230, - "2033-01-01": 8070, - "2032-01-01": 7910, - "2031-01-01": 7760, - "2030-01-01": 7610, - "2029-01-01": 7460, - "2028-01-01": 7315, - "2027-01-01": 7165, - "2026-01-01": 6990, - "2025-01-01": 6885, - "2024-01-01": 6740, - "2023-01-01": 6496, - "2021-01-01": 6000, - "2015-01-01": 6000 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.credits.property_tax.rate.one_person[1].amount": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.credits.property_tax.rate.one_person[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.credits.property_tax.rate.one_person[2]": { - "type": "parameterNode", - "parameter": "gov.states.ri.tax.income.credits.property_tax.rate.one_person[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ri.tax.income.credits.property_tax.rate.one_person[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.credits.property_tax.rate.one_person[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 12580, - "2034-01-01": 12335, - "2033-01-01": 12095, - "2032-01-01": 11860, - "2031-01-01": 11635, - "2030-01-01": 11410, - "2029-01-01": 11185, - "2028-01-01": 10965, - "2027-01-01": 10745, - "2026-01-01": 10485, - "2025-01-01": 10325, - "2024-01-01": 10105, - "2023-01-01": 9740, - "2021-01-01": 9000, - "2015-01-01": 9000 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.credits.property_tax.rate.one_person[2].amount": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.credits.property_tax.rate.one_person[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.credits.property_tax.rate.one_person[3]": { - "type": "parameterNode", - "parameter": "gov.states.ri.tax.income.credits.property_tax.rate.one_person[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ri.tax.income.credits.property_tax.rate.one_person[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.credits.property_tax.rate.one_person[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 16770, - "2034-01-01": 16445, - "2033-01-01": 16125, - "2032-01-01": 15815, - "2031-01-01": 15510, - "2030-01-01": 15205, - "2029-01-01": 14910, - "2028-01-01": 14620, - "2027-01-01": 14320, - "2026-01-01": 13975, - "2025-01-01": 13765, - "2024-01-01": 13470, - "2023-01-01": 12986, - "2021-01-01": 12000, - "2015-01-01": 12000 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.credits.property_tax.rate.one_person[3].amount": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.credits.property_tax.rate.one_person[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.06, - "2015-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.credits.property_tax.rate.one_person[4]": { - "type": "parameterNode", - "parameter": "gov.states.ri.tax.income.credits.property_tax.rate.one_person[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ri.tax.income.credits.property_tax.rate.one_person[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.credits.property_tax.rate.one_person[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 48905, - "2034-01-01": 47960, - "2033-01-01": 47025, - "2032-01-01": 46110, - "2031-01-01": 45225, - "2030-01-01": 44345, - "2029-01-01": 43480, - "2028-01-01": 42625, - "2027-01-01": 41760, - "2026-01-01": 40755, - "2025-01-01": 40145, - "2024-01-01": 39275, - "2023-01-01": 37870, - "2022-01-01": 35000, - "2021-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.credits.property_tax.rate.one_person[4].amount": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.credits.property_tax.rate.one_person[4].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.credits.property_tax.age_threshold": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.credits.property_tax.age_threshold", - "description": "Rhode Island limits its property tax credit to filers this age or older, or who have a disability.", - "label": "Rhode Island property tax credit age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.credits.non_refundable": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.credits.non_refundable", - "description": "Rhode Island provides these non-refundable income tax credits.", - "label": "Rhode Island non-refundable income tax credits", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": ["ri_cdcc"], - "2015-01-01": ["ri_cdcc"] - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.credits.child_tax_rebate": { - "type": "parameterNode", - "parameter": "gov.states.ri.tax.income.credits.child_tax_rebate", - "description": null, - "label": "child tax rebate", - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.credits.child_tax_rebate.limit": { - "type": "parameterNode", - "parameter": "gov.states.ri.tax.income.credits.child_tax_rebate.limit", - "description": null, - "label": "limit", - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.credits.child_tax_rebate.limit.age": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.credits.child_tax_rebate.limit.age", - "description": "Rhode Island limits its child tax rebate to children this age or younger.", - "label": "Rhode Island child tax rebate child age limit", - "unit": "year", - "period": "year", - "values": { - "2022-01-01": 18, - "2015-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.credits.child_tax_rebate.limit.income": { - "type": "parameterNode", - "parameter": "gov.states.ri.tax.income.credits.child_tax_rebate.limit.income", - "description": "Rhode Island limits its child tax rebate to filers with federal adjusted gross income of this amount or less.", - "label": "Rhode Island child tax rebate income limit", - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.credits.child_tax_rebate.limit.income.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.credits.child_tax_rebate.limit.income.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.credits.child_tax_rebate.limit.income.JOINT": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.credits.child_tax_rebate.limit.income.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2022-01-01": 200000, - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.credits.child_tax_rebate.limit.income.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.credits.child_tax_rebate.limit.income.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.credits.child_tax_rebate.limit.income.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.credits.child_tax_rebate.limit.income.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2022-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.credits.child_tax_rebate.limit.income.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.credits.child_tax_rebate.limit.income.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.credits.child_tax_rebate.limit.child": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.credits.child_tax_rebate.limit.child", - "description": "Rhode Island caps the child tax rebate to this number of children.", - "label": "Rhode Island child tax rebate child cap", - "unit": "person", - "period": "year", - "values": { - "2022-01-01": 3, - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.credits.child_tax_rebate.amount": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.credits.child_tax_rebate.amount", - "description": "Rhode Island provides this child tax rebate amount for each eligible child.", - "label": "Rhode Island child tax rebate amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2022-01-01": 250, - "2015-01-01": 250 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.exemption": { - "type": "parameterNode", - "parameter": "gov.states.ri.tax.income.exemption", - "description": null, - "label": "exemption", - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.exemption.reduction": { - "type": "parameterNode", - "parameter": "gov.states.ri.tax.income.exemption.reduction", - "description": null, - "label": "reduction", - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.exemption.reduction.increment": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.exemption.reduction.increment", - "description": "Rhode Island reduces the exemption amount for each of these increments of state adjusted gross income exceeding the threshold.", - "label": "Rhode Island exemption phase out increment", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 8750, - "2034-01-01": 8600, - "2033-01-01": 8400, - "2032-01-01": 8250, - "2031-01-01": 8100, - "2030-01-01": 7950, - "2029-01-01": 7800, - "2028-01-01": 7650, - "2027-01-01": 7450, - "2026-01-01": 7300, - "2025-01-01": 7200, - "2024-01-01": 7050, - "2023-01-01": 6700, - "2022-01-01": 6200, - "2021-01-01": 6000, - "2015-01-01": 6000 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.exemption.reduction.start": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.exemption.reduction.start", - "description": "Rhode Island reduces the exemption for filers with state adjusted gross income above this amount.", - "label": "Rhode Island exemption phase out start", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 306850, - "2034-01-01": 300950, - "2033-01-01": 295050, - "2032-01-01": 289350, - "2031-01-01": 283750, - "2030-01-01": 278250, - "2029-01-01": 272850, - "2028-01-01": 267450, - "2027-01-01": 262050, - "2026-01-01": 255750, - "2025-01-01": 251900, - "2024-01-01": 246450, - "2023-01-01": 233750, - "2022-01-01": 217050, - "2021-01-01": 210750, - "2015-01-01": 210750 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.exemption.reduction.rate": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.exemption.reduction.rate", - "description": "Rhode Island reduces the personal exemption amount by this rate, increased for each increment of state adjusted gross income exceeding the threshold.", - "label": "Rhode Island exemption phase out rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.exemption.amount": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.exemption.amount", - "description": "Rhode Island provides the following amount for each exemption in the tax unit.", - "label": "Rhode Island exemption amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 6150, - "2034-01-01": 6000, - "2033-01-01": 5900, - "2032-01-01": 5800, - "2031-01-01": 5650, - "2030-01-01": 5550, - "2029-01-01": 5450, - "2028-01-01": 5350, - "2027-01-01": 5250, - "2026-01-01": 5100, - "2025-01-01": 5050, - "2024-01-01": 4950, - "2023-01-01": 4700, - "2022-01-01": 4350, - "2021-01-01": 4250, - "2015-01-01": 4250 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.rate": { - "type": "parameterNode", - "parameter": "gov.states.ri.tax.income.rate", - "description": "Rhode Island taxes personal income at this flat rate.", - "label": "Rhode Island income tax rate" - }, - "gov.states.ri.tax.income.rate[0]": { - "type": "parameterNode", - "parameter": "gov.states.ri.tax.income.rate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ri.tax.income.rate[0].rate": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.rate[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0375, - "2015-01-01": 0.0375 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.rate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.rate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.rate[1]": { - "type": "parameterNode", - "parameter": "gov.states.ri.tax.income.rate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ri.tax.income.rate[1].rate": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.rate[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0475, - "2015-01-01": 0.0475 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.rate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.rate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 77450, - "2023-01-01": 73450, - "2022-01-01": 68200, - "2021-01-01": 66200, - "2015-01-01": 66200 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.rate[2]": { - "type": "parameterNode", - "parameter": "gov.states.ri.tax.income.rate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ri.tax.income.rate[2].rate": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.rate[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0599, - "2015-01-01": 0.0599 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.rate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.rate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 176050, - "2023-01-01": 166950, - "2022-01-01": 155050, - "2021-01-01": 150550, - "2015-01-01": 150550 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.deductions": { - "type": "parameterNode", - "parameter": "gov.states.ri.tax.income.deductions", - "description": null, - "label": "deductions", - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.deductions.standard": { - "type": "parameterNode", - "parameter": "gov.states.ri.tax.income.deductions.standard", - "description": null, - "label": "standard", - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.deductions.standard.phase_out": { - "type": "parameterNode", - "parameter": "gov.states.ri.tax.income.deductions.standard.phase_out", - "description": null, - "label": "phase out", - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.deductions.standard.phase_out.increment": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.deductions.standard.phase_out.increment", - "description": "Rhode Island phases the standard deduction out at this increment.", - "label": "Rhode Island standard deduction phase out increment", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 8750, - "2034-01-01": 8600, - "2033-01-01": 8400, - "2032-01-01": 8250, - "2031-01-01": 8100, - "2030-01-01": 7950, - "2029-01-01": 7800, - "2028-01-01": 7650, - "2027-01-01": 7450, - "2026-01-01": 7300, - "2025-01-01": 7200, - "2024-01-01": 7050, - "2023-01-01": 6700, - "2022-01-01": 6200, - "2021-01-01": 6000, - "2015-01-01": 6000 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.deductions.standard.phase_out.start": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.deductions.standard.phase_out.start", - "description": "Rhode Island phases the standard deduction out for filers with income above this threshold.", - "label": "Rhode Island standard deduction phase out start", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 306850, - "2034-01-01": 300950, - "2033-01-01": 295050, - "2032-01-01": 289350, - "2031-01-01": 283750, - "2030-01-01": 278250, - "2029-01-01": 272850, - "2028-01-01": 267450, - "2027-01-01": 262050, - "2026-01-01": 255750, - "2025-01-01": 251900, - "2024-01-01": 246450, - "2023-01-01": 233750, - "2022-01-01": 217050, - "2021-01-01": 210750, - "2015-01-01": 210750 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.deductions.standard.phase_out.percentage": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.deductions.standard.phase_out.percentage", - "description": "Rhode Island phases out this percentage of its standard deduction for each increment by which their income exceeds the threshold.", - "label": "Rhode Island standard deduction phase out rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.deductions.standard.amount": { - "type": "parameterNode", - "parameter": "gov.states.ri.tax.income.deductions.standard.amount", - "description": "Rhode Island provides filers a standard deduction of this amount, depending on filing status.", - "label": "Rhode Island standard deduction amount", - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.deductions.standard.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.deductions.standard.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 10550, - "2023-01-01": 10000, - "2022-01-01": 9300, - "2021-01-01": 9050, - "2015-01-01": 9050 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.deductions.standard.amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.deductions.standard.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 21150, - "2023-01-01": 20050, - "2022-01-01": 18600, - "2021-01-01": 18100, - "2015-01-01": 18100 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.deductions.standard.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.deductions.standard.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2024-01-01": 15850, - "2023-01-01": 15050, - "2022-01-01": 13950, - "2021-01-01": 13550, - "2015-01-01": 13550 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.deductions.standard.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.deductions.standard.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 10575, - "2023-01-01": 10025, - "2022-01-01": 9300, - "2021-01-01": 9050, - "2015-01-01": 9050 - }, - "economy": true, - "household": true - }, - "gov.states.ri.tax.income.deductions.standard.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ri.tax.income.deductions.standard.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 10550, - "2023-01-01": 10000, - "2022-01-01": 9300, - "2021-01-01": 9050, - "2015-01-01": 9050 - }, - "economy": true, - "household": true - }, - "gov.states.in": { - "type": "parameterNode", - "parameter": "gov.states.in", - "description": null, - "label": "Indiana", - "economy": true, - "household": true - }, - "gov.states.in.tax": { - "type": "parameterNode", - "parameter": "gov.states.in.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.states.in.tax.income": { - "type": "parameterNode", - "parameter": "gov.states.in.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.in.tax.income.credits": { - "type": "parameterNode", - "parameter": "gov.states.in.tax.income.credits", - "description": null, - "label": "credits", - "economy": true, - "household": true - }, - "gov.states.in.tax.income.credits.refundable": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.credits.refundable", - "description": "Indiana provides the following refundable income tax credits.", - "label": "Indiana refundable credits", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": ["in_eitc", "in_unified_elderly_tax_credit"], - "2015-01-01": ["in_eitc", "in_unified_elderly_tax_credit"] - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.credits.unified_elderly": { - "type": "parameterNode", - "parameter": "gov.states.in.tax.income.credits.unified_elderly", - "description": null, - "label": "unified elderly", - "economy": true, - "household": true - }, - "gov.states.in.tax.income.credits.unified_elderly.min_age": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.credits.unified_elderly.min_age", - "description": "Indiana allows filers at or above this age to receive the unified tax credit for the elderly.", - "label": "Indiana unified elderly tax credit minimum age for eligibility", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.credits.unified_elderly.amount": { - "type": "parameterNode", - "parameter": "gov.states.in.tax.income.credits.unified_elderly.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.states.in.tax.income.credits.unified_elderly.amount.one_aged": { - "type": "parameterNode", - "parameter": "gov.states.in.tax.income.credits.unified_elderly.amount.one_aged", - "description": "Indiana provides the following amounts under the unified elderly tax credit for filing units containing just one aged head or spouse.", - "label": "Indiana unified elderly tax credit amount for one aged" - }, - "gov.states.in.tax.income.credits.unified_elderly.amount.one_aged[0]": { - "type": "parameterNode", - "parameter": "gov.states.in.tax.income.credits.unified_elderly.amount.one_aged[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.in.tax.income.credits.unified_elderly.amount.one_aged[0].threshold": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.credits.unified_elderly.amount.one_aged[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.credits.unified_elderly.amount.one_aged[0].amount": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.credits.unified_elderly.amount.one_aged[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 100, - "2015-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.credits.unified_elderly.amount.one_aged[1]": { - "type": "parameterNode", - "parameter": "gov.states.in.tax.income.credits.unified_elderly.amount.one_aged[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.in.tax.income.credits.unified_elderly.amount.one_aged[1].threshold": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.credits.unified_elderly.amount.one_aged[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.credits.unified_elderly.amount.one_aged[1].amount": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.credits.unified_elderly.amount.one_aged[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 50, - "2015-01-01": 50 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.credits.unified_elderly.amount.one_aged[2]": { - "type": "parameterNode", - "parameter": "gov.states.in.tax.income.credits.unified_elderly.amount.one_aged[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.in.tax.income.credits.unified_elderly.amount.one_aged[2].threshold": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.credits.unified_elderly.amount.one_aged[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 3000, - "2015-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.credits.unified_elderly.amount.one_aged[2].amount": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.credits.unified_elderly.amount.one_aged[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 40, - "2015-01-01": 40 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.credits.unified_elderly.amount.one_aged[3]": { - "type": "parameterNode", - "parameter": "gov.states.in.tax.income.credits.unified_elderly.amount.one_aged[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.in.tax.income.credits.unified_elderly.amount.one_aged[3].threshold": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.credits.unified_elderly.amount.one_aged[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.credits.unified_elderly.amount.one_aged[3].amount": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.credits.unified_elderly.amount.one_aged[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.credits.unified_elderly.amount.two_aged": { - "type": "parameterNode", - "parameter": "gov.states.in.tax.income.credits.unified_elderly.amount.two_aged", - "description": "Indiana provides the following amounts under the unified elderly tax credit for filing units containing both an aged head and an aged spouse.", - "label": "Indiana unified elderly tax credit amount for two aged" - }, - "gov.states.in.tax.income.credits.unified_elderly.amount.two_aged[0]": { - "type": "parameterNode", - "parameter": "gov.states.in.tax.income.credits.unified_elderly.amount.two_aged[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.in.tax.income.credits.unified_elderly.amount.two_aged[0].threshold": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.credits.unified_elderly.amount.two_aged[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.credits.unified_elderly.amount.two_aged[0].amount": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.credits.unified_elderly.amount.two_aged[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 140, - "2015-01-01": 140 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.credits.unified_elderly.amount.two_aged[1]": { - "type": "parameterNode", - "parameter": "gov.states.in.tax.income.credits.unified_elderly.amount.two_aged[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.in.tax.income.credits.unified_elderly.amount.two_aged[1].threshold": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.credits.unified_elderly.amount.two_aged[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.credits.unified_elderly.amount.two_aged[1].amount": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.credits.unified_elderly.amount.two_aged[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 90, - "2015-01-01": 90 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.credits.unified_elderly.amount.two_aged[2]": { - "type": "parameterNode", - "parameter": "gov.states.in.tax.income.credits.unified_elderly.amount.two_aged[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.in.tax.income.credits.unified_elderly.amount.two_aged[2].threshold": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.credits.unified_elderly.amount.two_aged[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 3000, - "2015-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.credits.unified_elderly.amount.two_aged[2].amount": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.credits.unified_elderly.amount.two_aged[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 80, - "2015-01-01": 80 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.credits.unified_elderly.amount.two_aged[3]": { - "type": "parameterNode", - "parameter": "gov.states.in.tax.income.credits.unified_elderly.amount.two_aged[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.in.tax.income.credits.unified_elderly.amount.two_aged[3].threshold": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.credits.unified_elderly.amount.two_aged[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.credits.unified_elderly.amount.two_aged[3].amount": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.credits.unified_elderly.amount.two_aged[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.credits.earned_income": { - "type": "parameterNode", - "parameter": "gov.states.in.tax.income.credits.earned_income", - "description": null, - "label": "earned income", - "economy": true, - "household": true - }, - "gov.states.in.tax.income.credits.earned_income.match_rate": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.credits.earned_income.match_rate", - "description": "Indiana matches this fraction of the federal earned income tax credit.", - "label": "Indiana federal-EITC match rate", - "unit": "/1", - "period": "year", - "values": { - "2022-01-01": 0.1, - "2021-01-01": 0.09, - "2015-01-01": 0.09 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.credits.earned_income.investment_income_limit": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.credits.earned_income.investment_income_limit", - "description": "Indiana makes any taxpayer with investment income that exceeds this limit EITC ineligible.", - "label": "Indiana EITC investment income limit", - "unit": "float", - "period": "year", - "values": { - "2022-01-01": 3800, - "2021-01-01": 3650, - "2020-01-01": 3650, - "2015-01-01": 3650 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.credits.earned_income.childless": { - "type": "parameterNode", - "parameter": "gov.states.in.tax.income.credits.earned_income.childless", - "description": null, - "label": "childless", - "economy": true, - "household": true - }, - "gov.states.in.tax.income.credits.earned_income.childless.min_age": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.credits.earned_income.childless.min_age", - "description": "Indiana limits its earned income tax credit to filers this age or above if they have no children.", - "label": "Indiana EITC minimum age for childless eligibility", - "unit": "float", - "period": null, - "values": { - "2021-01-01": 25, - "2015-01-01": 25 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.credits.earned_income.childless.maximum": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.credits.earned_income.childless.maximum", - "description": "Indiana has a state EITC that used this maximum childless credit in 2021.", - "label": "Indiana EITC maximum childless credit in 2021", - "unit": "float", - "period": null, - "values": { - "2022-01-01": 0, - "2021-01-01": 545, - "2020-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.credits.earned_income.childless.phase_in_rate": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.credits.earned_income.childless.phase_in_rate", - "description": "Indiana has a state EITC that used this phase-in rate for childless credit in 2021.", - "label": "Indiana EITC phase-in rate for childless credit in 2021", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0, - "2021-01-01": 0.0765, - "2020-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.credits.earned_income.childless.phase_out_start": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.credits.earned_income.childless.phase_out_start", - "description": "Indiana has a state EITC that used this phase-out start income for childless credit in 2021.", - "label": "Indiana EITC phase-out start income for childless credit in 2021", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0, - "2021-01-01": 8950, - "2020-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.credits.earned_income.childless.phase_out_rate": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.credits.earned_income.childless.phase_out_rate", - "description": "Indiana has a state EITC that used this phase-out rate for childless credit in 2021.", - "label": "Indiana EITC phase-out rate for childless credit in 2021", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0, - "2021-01-01": 0.0765, - "2020-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.credits.earned_income.childless.max_age": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.credits.earned_income.childless.max_age", - "description": "Indiana limits its earned income tax credit to filers this age or below if they have no children.", - "label": "Indiana EITC maximum age for childless eligibility", - "unit": "float", - "period": null, - "values": { - "2021-01-01": 64, - "2015-01-01": 64 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.credits.earned_income.max_children": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.credits.earned_income.max_children", - "description": "Indiana has a state EITC that recognizes at most this maximum number of eligible children.", - "label": "IN EITC maximum allowable children", - "unit": "int", - "period": null, - "values": { - "2023-01-01": 3, - "2011-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.credits.earned_income.decoupled": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.credits.earned_income.decoupled", - "description": "Indiana has a state EITC that is decoupled from the federal EITC if this parameter is true.", - "label": "Whether IN EITC is decoupled from federal EITC", - "unit": "bool", - "period": null, - "values": { - "2023-01-01": false, - "2011-01-01": true, - "2010-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.exemptions": { - "type": "parameterNode", - "parameter": "gov.states.in.tax.income.exemptions", - "description": null, - "label": "exemptions", - "economy": true, - "household": true - }, - "gov.states.in.tax.income.exemptions.adoption": { - "type": "parameterNode", - "parameter": "gov.states.in.tax.income.exemptions.adoption", - "description": null, - "label": "adoption", - "economy": true, - "household": true - }, - "gov.states.in.tax.income.exemptions.adoption.amount": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.exemptions.adoption.amount", - "description": "Indiana provides an additional exemption for eligible adopted dependents of this amount.", - "label": "Indiana adopted children exemption additional amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2017-01-01": 3000, - "2015-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.exemptions.base": { - "type": "parameterNode", - "parameter": "gov.states.in.tax.income.exemptions.base", - "description": null, - "label": "base", - "economy": true, - "household": true - }, - "gov.states.in.tax.income.exemptions.base.amount": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.exemptions.base.amount", - "description": "Indiana provides this base exemption amount.", - "label": "Indiana exemptions base amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.exemptions.aged_low_agi": { - "type": "parameterNode", - "parameter": "gov.states.in.tax.income.exemptions.aged_low_agi", - "description": null, - "label": "Aged low-AGI", - "economy": true, - "household": true - }, - "gov.states.in.tax.income.exemptions.aged_low_agi.amount": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.exemptions.aged_low_agi.amount", - "description": "Indiana provides this additional exemption amount for low-income aged filers.", - "label": "Indiana exemptions additional amount for low AGI aged", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.exemptions.aged_low_agi.threshold": { - "type": "parameterNode", - "parameter": "gov.states.in.tax.income.exemptions.aged_low_agi.threshold", - "description": "Indiana limits its additional exemption for aged filers with low adjusted gross income to this income, by filing status.", - "label": "Indiana low AGI aged exemption income limit", - "economy": true, - "household": true - }, - "gov.states.in.tax.income.exemptions.aged_low_agi.threshold.SINGLE": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.exemptions.aged_low_agi.threshold.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 40000, - "2015-01-01": 40000 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.exemptions.aged_low_agi.threshold.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.exemptions.aged_low_agi.threshold.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 40000, - "2015-01-01": 40000 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.exemptions.aged_low_agi.threshold.JOINT": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.exemptions.aged_low_agi.threshold.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 40000, - "2015-01-01": 40000 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.exemptions.aged_low_agi.threshold.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.exemptions.aged_low_agi.threshold.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 40000, - "2015-01-01": 40000 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.exemptions.aged_low_agi.threshold.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.exemptions.aged_low_agi.threshold.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.exemptions.aged_blind": { - "type": "parameterNode", - "parameter": "gov.states.in.tax.income.exemptions.aged_blind", - "description": null, - "label": "Aged and blind", - "economy": true, - "household": true - }, - "gov.states.in.tax.income.exemptions.aged_blind.amount": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.exemptions.aged_blind.amount", - "description": "Indiana provides this additional exemption amount for aged and/or blind filers.", - "label": "Indiana exemptions additional amount for aged and or blind", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.exemptions.additional": { - "type": "parameterNode", - "parameter": "gov.states.in.tax.income.exemptions.additional", - "description": null, - "label": "additional", - "economy": true, - "household": true - }, - "gov.states.in.tax.income.exemptions.additional.amount": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.exemptions.additional.amount", - "description": "Indiana provides this additional exemption amount for qualifying dependent children.", - "label": "Indiana exemptions additional amount for dependent children", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 1500, - "2015-01-01": 1500 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.exemptions.qualifying_child": { - "type": "parameterNode", - "parameter": "gov.states.in.tax.income.exemptions.qualifying_child", - "description": null, - "label": "qualifying child", - "economy": true, - "household": true - }, - "gov.states.in.tax.income.exemptions.qualifying_child.max_ages": { - "type": "parameterNode", - "parameter": "gov.states.in.tax.income.exemptions.qualifying_child.max_ages", - "description": null, - "label": "max ages", - "economy": true, - "household": true - }, - "gov.states.in.tax.income.exemptions.qualifying_child.max_ages.student": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.exemptions.qualifying_child.max_ages.student", - "description": "Indiana considers as children people below this age when compute its additional exemption for student dependents.", - "label": "Indiana additional exemption age limit for students", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 23, - "2015-01-01": 23 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.exemptions.qualifying_child.max_ages.non_student": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.exemptions.qualifying_child.max_ages.non_student", - "description": "Indiana considers as children people below this age when compute its additional exemption for non-student dependents.", - "label": "Indiana additional exemption age limit for non-students", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 18, - "2015-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates": { - "type": "parameterNode", - "parameter": "gov.states.in.tax.income.county_rates", - "description": "Indiana taxes adjusted gross income at these county specific tax rates.", - "label": "Inidiana county tax rates", - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.ADAMS_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.ADAMS_COUNTY_IN", - "description": null, - "label": "ADAMS COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.01624, - "2015-01-01": 0.01624 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.ALLEN_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.ALLEN_COUNTY_IN", - "description": null, - "label": "ALLEN COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.148, - "2015-01-01": 0.148 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.BATHOLOMEW_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.BATHOLOMEW_COUNTY_IN", - "description": null, - "label": "BATHOLOMEW COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.0175, - "2015-01-01": 0.0175 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.BENTON_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.BENTON_COUNTY_IN", - "description": null, - "label": "BENTON COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.0179, - "2015-01-01": 0.0179 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.BLACKFORD_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.BLACKFORD_COUNTY_IN", - "description": null, - "label": "BLACKFORD COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.015, - "2015-01-01": 0.015 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.BOONE_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.BOONE_COUNTY_IN", - "description": null, - "label": "BOONE COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.015, - "2015-01-01": 0.015 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.BROWN_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.BROWN_COUNTY_IN", - "description": null, - "label": "BROWN COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.025234, - "2015-01-01": 0.025234 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.CARROLL_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.CARROLL_COUNTY_IN", - "description": null, - "label": "CARROLL COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.022733, - "2015-01-01": 0.022733 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.CASS_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.CASS_COUNTY_IN", - "description": null, - "label": "CASS COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.027, - "2015-01-01": 0.027 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.CLARK_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.CLARK_COUNTY_IN", - "description": null, - "label": "CLARK COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.02, - "2015-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.CLAY_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.CLAY_COUNTY_IN", - "description": null, - "label": "CLAY COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.0235, - "2015-01-01": 0.0235 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.CLINTON_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.CLINTON_COUNTY_IN", - "description": null, - "label": "CLINTON COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.0245, - "2015-01-01": 0.0245 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.CRAWFORD_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.CRAWFORD_COUNTY_IN", - "description": null, - "label": "CRAWFORD COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.01, - "2015-01-01": 0.01 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.DAVIESS_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.DAVIESS_COUNTY_IN", - "description": null, - "label": "DAVIESS COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.015, - "2015-01-01": 0.015 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.DEARBORN_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.DEARBORN_COUNTY_IN", - "description": null, - "label": "DEARBORN COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.015, - "2015-01-01": 0.015 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.DECATUR_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.DECATUR_COUNTY_IN", - "description": null, - "label": "DECATUR COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.025, - "2015-01-01": 0.025 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.DEKALB_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.DEKALB_COUNTY_IN", - "description": null, - "label": "DEKALB COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.0213, - "2015-01-01": 0.0213 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.DELAWARE_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.DELAWARE_COUNTY_IN", - "description": null, - "label": "DELAWARE COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.015, - "2015-01-01": 0.015 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.DUBOIS_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.DUBOIS_COUNTY_IN", - "description": null, - "label": "DUBOIS COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.012, - "2015-01-01": 0.012 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.ELKHART_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.ELKHART_COUNTY_IN", - "description": null, - "label": "ELKHART COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.02, - "2015-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.FAYETTE_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.FAYETTE_COUNTY_IN", - "description": null, - "label": "FAYETTE COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.0257, - "2015-01-01": 0.0257 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.FLOYD_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.FLOYD_COUNTY_IN", - "description": null, - "label": "FLOYD COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.0135, - "2015-01-01": 0.0135 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.FOUNTAIN_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.FOUNTAIN_COUNTY_IN", - "description": null, - "label": "FOUNTAIN COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.021, - "2015-01-01": 0.021 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.FRANKLIN_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.FRANKLIN_COUNTY_IN", - "description": null, - "label": "FRANKLIN COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.015, - "2015-01-01": 0.015 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.FULTON_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.FULTON_COUNTY_IN", - "description": null, - "label": "FULTON COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.0268, - "2015-01-01": 0.0268 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.GIBSON_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.GIBSON_COUNTY_IN", - "description": null, - "label": "GIBSON COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.009, - "2015-01-01": 0.009 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.GRANT_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.GRANT_COUNTY_IN", - "description": null, - "label": "GRANT COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.0255, - "2015-01-01": 0.0255 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.GREENE_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.GREENE_COUNTY_IN", - "description": null, - "label": "GREENE COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.0195, - "2015-01-01": 0.0195 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.HAMILTON_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.HAMILTON_COUNTY_IN", - "description": null, - "label": "HAMILTON COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.011, - "2015-01-01": 0.011 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.HANCOCK_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.HANCOCK_COUNTY_IN", - "description": null, - "label": "HANCOCK COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.0194, - "2015-01-01": 0.0194 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.HARRISON_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.HARRISON_COUNTY_IN", - "description": null, - "label": "HARRISON COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.01, - "2015-01-01": 0.01 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.HENDRICKS_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.HENDRICKS_COUNTY_IN", - "description": null, - "label": "HENDRICKS COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.017, - "2015-01-01": 0.017 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.HENRY_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.HENRY_COUNTY_IN", - "description": null, - "label": "HENRY COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.017, - "2015-01-01": 0.017 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.HOWARD_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.HOWARD_COUNTY_IN", - "description": null, - "label": "HOWARD COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.0175, - "2015-01-01": 0.0175 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.HUNTINGTON_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.HUNTINGTON_COUNTY_IN", - "description": null, - "label": "HUNTINGTON COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.0195, - "2015-01-01": 0.0195 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.JACKSON_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.JACKSON_COUNTY_IN", - "description": null, - "label": "JACKSON COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.021, - "2015-01-01": 0.021 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.JASPER_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.JASPER_COUNTY_IN", - "description": null, - "label": "JASPER COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.02864, - "2015-01-01": 0.02864 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.JAY_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.JAY_COUNTY_IN", - "description": null, - "label": "JAY COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.0245, - "2015-01-01": 0.0245 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.JEFFERSON_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.JEFFERSON_COUNTY_IN", - "description": null, - "label": "JEFFERSON COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.009, - "2015-01-01": 0.009 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.JENNINGS_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.JENNINGS_COUNTY_IN", - "description": null, - "label": "JENNINGS COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.025, - "2015-01-01": 0.025 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.JOHNSON_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.JOHNSON_COUNTY_IN", - "description": null, - "label": "JOHNSON COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.012, - "2015-01-01": 0.012 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.KNOX_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.KNOX_COUNTY_IN", - "description": null, - "label": "KNOX COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.012, - "2015-01-01": 0.012 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.KOSCIUSKO_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.KOSCIUSKO_COUNTY_IN", - "description": null, - "label": "KOSCIUSKO COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.01, - "2015-01-01": 0.01 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.LAGRANGE_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.LAGRANGE_COUNTY_IN", - "description": null, - "label": "LAGRANGE COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.0165, - "2015-01-01": 0.0165 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.LAKE_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.LAKE_COUNTY_IN", - "description": null, - "label": "LAKE COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.015, - "2015-01-01": 0.015 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.LAPORTE_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.LAPORTE_COUNTY_IN", - "description": null, - "label": "LAPORTE COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.0095, - "2015-01-01": 0.0095 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.LAWRENCE_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.LAWRENCE_COUNTY_IN", - "description": null, - "label": "LAWRENCE COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.0175, - "2015-01-01": 0.0175 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.MADISON_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.MADISON_COUNTY_IN", - "description": null, - "label": "MADISON COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.0175, - "2015-01-01": 0.0175 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.MARION_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.MARION_COUNTY_IN", - "description": null, - "label": "MARION COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.0202, - "2015-01-01": 0.0202 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.MARSHALL_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.MARSHALL_COUNTY_IN", - "description": null, - "label": "MARSHALL COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.0125, - "2015-01-01": 0.0125 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.MARTIN_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.MARTIN_COUNTY_IN", - "description": null, - "label": "MARTIN COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.025, - "2015-01-01": 0.025 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.MIAMI_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.MIAMI_COUNTY_IN", - "description": null, - "label": "MIAMI COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.0254, - "2015-01-01": 0.0254 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.MONROE_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.MONROE_COUNTY_IN", - "description": null, - "label": "MONROE COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.01345, - "2015-01-01": 0.01345 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.MONTGOMERY_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.MONTGOMERY_COUNTY_IN", - "description": null, - "label": "MONTGOMERY COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.023, - "2015-01-01": 0.023 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.MORGAN_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.MORGAN_COUNTY_IN", - "description": null, - "label": "MORGAN COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.0272, - "2015-01-01": 0.0272 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.NEWTON_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.NEWTON_COUNTY_IN", - "description": null, - "label": "NEWTON COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.01, - "2015-01-01": 0.01 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.NOBLE_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.NOBLE_COUNTY_IN", - "description": null, - "label": "NOBLE COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.0175, - "2015-01-01": 0.0175 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.OHIO_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.OHIO_COUNTY_IN", - "description": null, - "label": "OHIO COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.015, - "2015-01-01": 0.015 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.ORANGE_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.ORANGE_COUNTY_IN", - "description": null, - "label": "ORANGE COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.0175, - "2015-01-01": 0.0175 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.OWEN_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.OWEN_COUNTY_IN", - "description": null, - "label": "OWEN COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.01825, - "2015-01-01": 0.01825 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.PARKE_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.PARKE_COUNTY_IN", - "description": null, - "label": "PARKE COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.0265, - "2015-01-01": 0.0265 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.PERRY_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.PERRY_COUNTY_IN", - "description": null, - "label": "PERRY COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.0181, - "2015-01-01": 0.0181 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.PIKE_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.PIKE_COUNTY_IN", - "description": null, - "label": "PIKE COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.0075, - "2015-01-01": 0.0075 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.PORTER_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.PORTER_COUNTY_IN", - "description": null, - "label": "PORTER COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.005, - "2015-01-01": 0.005 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.POSEY_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.POSEY_COUNTY_IN", - "description": null, - "label": "POSEY COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.0125, - "2015-01-01": 0.0125 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.PULASKI_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.PULASKI_COUNTY_IN", - "description": null, - "label": "PULASKI COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.0285, - "2015-01-01": 0.0285 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.PUTNAM_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.PUTNAM_COUNTY_IN", - "description": null, - "label": "PUTNAM COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.021, - "2015-01-01": 0.021 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.RANDOLPH_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.RANDOLPH_COUNTY_IN", - "description": null, - "label": "RANDOLPH COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.025, - "2015-01-01": 0.025 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.RIPLEY_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.RIPLEY_COUNTY_IN", - "description": null, - "label": "RIPLEY COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.0138, - "2015-01-01": 0.0138 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.RUSH_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.RUSH_COUNTY_IN", - "description": null, - "label": "RUSH COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.021, - "2015-01-01": 0.021 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.ST_JOSEPH_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.ST_JOSEPH_COUNTY_IN", - "description": null, - "label": "ST JOSEPH COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.0175, - "2015-01-01": 0.0175 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.SCOTT_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.SCOTT_COUNTY_IN", - "description": null, - "label": "SCOTT COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.0216, - "2015-01-01": 0.0216 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.SHELBY_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.SHELBY_COUNTY_IN", - "description": null, - "label": "SHELBY COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.016, - "2015-01-01": 0.016 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.SPENCER_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.SPENCER_COUNTY_IN", - "description": null, - "label": "SPENCER COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.008, - "2015-01-01": 0.008 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.STARKE_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.STARKE_COUNTY_IN", - "description": null, - "label": "STARKE COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.0171, - "2015-01-01": 0.0171 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.STEUBEN_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.STEUBEN_COUNTY_IN", - "description": null, - "label": "STEUBEN COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.0179, - "2015-01-01": 0.0179 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.SULLIVAN_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.SULLIVAN_COUNTY_IN", - "description": null, - "label": "SULLIVAN COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.017, - "2015-01-01": 0.017 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.SWITZERLAND_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.SWITZERLAND_COUNTY_IN", - "description": null, - "label": "SWITZERLAND COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.0125, - "2015-01-01": 0.0125 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.TIPPECANOE_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.TIPPECANOE_COUNTY_IN", - "description": null, - "label": "TIPPECANOE COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.0128, - "2015-01-01": 0.0128 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.TIPTON_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.TIPTON_COUNTY_IN", - "description": null, - "label": "TIPTON COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.026, - "2015-01-01": 0.026 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.UNION_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.UNION_COUNTY_IN", - "description": null, - "label": "UNION COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.02, - "2015-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.VANDERBURGH_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.VANDERBURGH_COUNTY_IN", - "description": null, - "label": "VANDERBURGH COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.012, - "2015-01-01": 0.012 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.VERMILLION_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.VERMILLION_COUNTY_IN", - "description": null, - "label": "VERMILLION COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.015, - "2015-01-01": 0.015 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.VIGO_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.VIGO_COUNTY_IN", - "description": null, - "label": "VIGO COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.02, - "2015-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.WABASH_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.WABASH_COUNTY_IN", - "description": null, - "label": "WABASH COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.029, - "2015-01-01": 0.029 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.WARREN_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.WARREN_COUNTY_IN", - "description": null, - "label": "WARREN COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.0212, - "2015-01-01": 0.0212 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.WARRICK_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.WARRICK_COUNTY_IN", - "description": null, - "label": "WARRICK COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.00625, - "2015-01-01": 0.00625 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.WASHINGTON_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.WASHINGTON_COUNTY_IN", - "description": null, - "label": "WASHINGTON COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.02, - "2015-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.WAYNE_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.WAYNE_COUNTY_IN", - "description": null, - "label": "WAYNE COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.0125, - "2015-01-01": 0.0125 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.WELLS_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.WELLS_COUNTY_IN", - "description": null, - "label": "WELLS COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.021, - "2015-01-01": 0.021 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.WHITE_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.WHITE_COUNTY_IN", - "description": null, - "label": "WHITE COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.0232, - "2015-01-01": 0.0232 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.county_rates.WHITLEY_COUNTY_IN": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.county_rates.WHITLEY_COUNTY_IN", - "description": null, - "label": "WHITLEY COUNTY IN", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.016829, - "2015-01-01": 0.016829 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.agi_rate": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.agi_rate", - "description": "Indiana taxes Indiana adjusted gross income at this rate.", - "label": "Indiana AGI tax rate", - "unit": "/1", - "period": "year", - "values": { - "2027-01-01": 0.029, - "2026-01-01": 0.0295, - "2025-01-01": 0.03, - "2024-01-01": 0.0305, - "2023-01-01": 0.0315, - "2017-01-01": 0.0323, - "2015-01-01": 0.033, - "2014-01-01": 0.034 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.deductions": { - "type": "parameterNode", - "parameter": "gov.states.in.tax.income.deductions", - "description": null, - "label": "deductions", - "economy": true, - "household": true - }, - "gov.states.in.tax.income.deductions.unemployment_compensation": { - "type": "parameterNode", - "parameter": "gov.states.in.tax.income.deductions.unemployment_compensation", - "description": null, - "label": "unemployment compensation", - "economy": true, - "household": true - }, - "gov.states.in.tax.income.deductions.unemployment_compensation.reduced_agi_haircut": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.deductions.unemployment_compensation.reduced_agi_haircut", - "description": "Indiana applies this haircut when reducing adjusted gross income for computing the maximum unemployment compensation deduction.", - "label": "Indiana haircut to reduced AGI for computing maximum unemployment compensation deduction", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.deductions.unemployment_compensation.agi_reduction": { - "type": "parameterNode", - "parameter": "gov.states.in.tax.income.deductions.unemployment_compensation.agi_reduction", - "description": "Indiana reduces adjusted gross income by this amount when computing the maximum unemployment compensation deduction.", - "label": "Indiana AGI reduction for calculation of maximum unemployment compensation deduction", - "economy": true, - "household": true - }, - "gov.states.in.tax.income.deductions.unemployment_compensation.agi_reduction.SINGLE": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.deductions.unemployment_compensation.agi_reduction.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 12000, - "2015-01-01": 12000 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.deductions.unemployment_compensation.agi_reduction.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.deductions.unemployment_compensation.agi_reduction.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 12000, - "2015-01-01": 12000 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.deductions.unemployment_compensation.agi_reduction.JOINT": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.deductions.unemployment_compensation.agi_reduction.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 18000, - "2015-01-01": 18000 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.deductions.unemployment_compensation.agi_reduction.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.deductions.unemployment_compensation.agi_reduction.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 12000, - "2015-01-01": 12000 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.deductions.unemployment_compensation.agi_reduction.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.deductions.unemployment_compensation.agi_reduction.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 12000, - "2015-01-01": 12000 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.deductions.nonpublic_school": { - "type": "parameterNode", - "parameter": "gov.states.in.tax.income.deductions.nonpublic_school", - "description": null, - "label": "nonpublic school", - "economy": true, - "household": true - }, - "gov.states.in.tax.income.deductions.nonpublic_school.amount": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.deductions.nonpublic_school.amount", - "description": "Indiana provides a deduction of this amount for qualified dependent children in private, parochial, or home school with unreimbursed expenses.", - "label": "Indiana nonpublic school deduction", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.deductions.deductions": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.deductions.deductions", - "description": "Indiana provides the following deductions.", - "label": "Indiana Deductions", - "unit": "list", - "period": null, - "values": { - "2023-01-01": [ - "in_renters_deduction", - "in_homeowners_property_tax_deduction", - "salt_refund_last_year", - "us_govt_interest", - "tax_unit_taxable_social_security", - "in_military_service_deduction", - "in_nonpublic_school_deduction", - "in_nol", - "in_unemployment_compensation_deduction", - "in_other_deductions", - "military_basic_pay" - ], - "2021-01-01": [ - "in_renters_deduction", - "in_homeowners_property_tax_deduction", - "salt_refund_last_year", - "us_govt_interest", - "tax_unit_taxable_social_security", - "in_military_service_deduction", - "in_nonpublic_school_deduction", - "in_nol", - "in_unemployment_compensation_deduction", - "in_other_deductions" - ], - "2015-01-01": [ - "in_renters_deduction", - "in_homeowners_property_tax_deduction", - "salt_refund_last_year", - "us_govt_interest", - "tax_unit_taxable_social_security", - "in_military_service_deduction", - "in_nonpublic_school_deduction", - "in_nol", - "in_unemployment_compensation_deduction", - "in_other_deductions" - ] - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.deductions.homeowners_property_tax": { - "type": "parameterNode", - "parameter": "gov.states.in.tax.income.deductions.homeowners_property_tax", - "description": null, - "label": "homeowners property tax", - "economy": true, - "household": true - }, - "gov.states.in.tax.income.deductions.homeowners_property_tax.max": { - "type": "parameterNode", - "parameter": "gov.states.in.tax.income.deductions.homeowners_property_tax.max", - "description": "Indiana provides a homeowner's property tax deduction up to this amount, by filing status.", - "label": "Indiana max homeowner's property tax deduction", - "economy": true, - "household": true - }, - "gov.states.in.tax.income.deductions.homeowners_property_tax.max.SINGLE": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.deductions.homeowners_property_tax.max.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 2500, - "2015-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.deductions.homeowners_property_tax.max.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.deductions.homeowners_property_tax.max.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 2500, - "2015-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.deductions.homeowners_property_tax.max.JOINT": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.deductions.homeowners_property_tax.max.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 2500, - "2015-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.deductions.homeowners_property_tax.max.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.deductions.homeowners_property_tax.max.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 2500, - "2015-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.deductions.homeowners_property_tax.max.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.deductions.homeowners_property_tax.max.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 1250, - "2015-01-01": 1250 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.deductions.renters": { - "type": "parameterNode", - "parameter": "gov.states.in.tax.income.deductions.renters", - "description": null, - "label": "renters", - "economy": true, - "household": true - }, - "gov.states.in.tax.income.deductions.renters.max": { - "type": "parameterNode", - "parameter": "gov.states.in.tax.income.deductions.renters.max", - "description": "Indiana allows a deduction of up to this amount in rent paid, by filing status.", - "label": "Indiana max renter's deduction", - "economy": true, - "household": true - }, - "gov.states.in.tax.income.deductions.renters.max.SINGLE": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.deductions.renters.max.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 3000, - "2015-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.deductions.renters.max.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.deductions.renters.max.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 3000, - "2015-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.deductions.renters.max.JOINT": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.deductions.renters.max.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 3000, - "2015-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.deductions.renters.max.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.deductions.renters.max.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 3000, - "2015-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.deductions.renters.max.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.deductions.renters.max.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 1500, - "2015-01-01": 1500 - }, - "economy": true, - "household": true - }, - "gov.states.in.tax.income.deductions.military_service": { - "type": "parameterNode", - "parameter": "gov.states.in.tax.income.deductions.military_service", - "description": null, - "label": "military service", - "economy": true, - "household": true - }, - "gov.states.in.tax.income.deductions.military_service.max": { - "type": "parameter", - "parameter": "gov.states.in.tax.income.deductions.military_service.max", - "description": "Indiana provides up a military service deduction of up to this amount per person.", - "label": "Indiana max military service deduction", - "unit": "currency-USD", - "period": "year", - "values": { - "2024-01-01": "Infinity", - "2021-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.id": { - "type": "parameterNode", - "parameter": "gov.states.id", - "description": null, - "label": "Idaho", - "economy": true, - "household": true - }, - "gov.states.id.tax": { - "type": "parameterNode", - "parameter": "gov.states.id.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.states.id.tax.income": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.id.tax.income.other_taxes": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income.other_taxes", - "description": null, - "label": "other taxes", - "economy": true, - "household": true - }, - "gov.states.id.tax.income.other_taxes.pbf": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income.other_taxes.pbf", - "description": null, - "label": "pbf", - "economy": true, - "household": true - }, - "gov.states.id.tax.income.other_taxes.pbf.amount": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.other_taxes.pbf.amount", - "description": "Idaho levies a permanent building fund tax of this amount.", - "label": "Idaho permanent building fund tax amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 10, - "2015-01-01": 10 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.credits": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income.credits", - "description": null, - "label": "credits", - "economy": true, - "household": true - }, - "gov.states.id.tax.income.credits.refundable": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.credits.refundable", - "description": "Idaho provides these refundable tax credits.", - "label": "Idaho refundable tax credits", - "unit": "list", - "period": null, - "values": { - "2021-01-01": ["id_grocery_credit", "id_aged_or_disabled_credit"], - "2002-01-01": ["id_aged_or_disabled_credit"] - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.credits.ctc": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income.credits.ctc", - "description": null, - "label": "Child Tax Credit", - "economy": true, - "household": true - }, - "gov.states.id.tax.income.credits.ctc.amount": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.credits.ctc.amount", - "description": "Idaho provides this child tax credit amount for each qualifying child.", - "label": "Idaho child tax credit amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2018-01-01": 205, - "2015-01-01": 205 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.credits.grocery": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income.credits.grocery", - "description": null, - "label": "grocery", - "economy": true, - "household": true - }, - "gov.states.id.tax.income.credits.grocery.aged": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income.credits.grocery.aged", - "description": null, - "label": "aged", - "economy": true, - "household": true - }, - "gov.states.id.tax.income.credits.grocery.aged.age_threshold": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.credits.grocery.aged.age_threshold", - "description": "Idaho provides an additional amount to the grocery tax credit for filers this age and over.", - "label": "Idaho grocery credit age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.credits.grocery.aged.in_effect": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.credits.grocery.aged.in_effect", - "description": "Idaho provides an additional grocery credit for aged filers if this is true.", - "label": "Idaho grocery credit aged amount in effect", - "unit": "bool", - "period": "year", - "values": { - "2025-01-01": false, - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.credits.grocery.aged.amount": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.credits.grocery.aged.amount", - "description": "Idaho provides this additional amount to the grocery tax credit for aged filers.", - "label": "Idaho grocery credit aged amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 20, - "2015-01-01": 20 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.credits.grocery.base": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income.credits.grocery.base", - "description": null, - "label": "base", - "economy": true, - "household": true - }, - "gov.states.id.tax.income.credits.grocery.base.amount": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.credits.grocery.base.amount", - "description": "Idaho provides this amount under the grocery tax credit.", - "label": "Idaho grocery credit amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2025-01-01": 155, - "2023-01-01": 120, - "2015-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.credits.non_refundable": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.credits.non_refundable", - "description": "Idaho provides the following non-refundable tax credits.", - "label": "Idaho non-refundable credits", - "unit": "list", - "period": "year", - "values": { - "2026-01-01": [], - "2018-01-01": ["id_ctc"], - "2015-01-01": ["id_ctc"] - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.credits.aged_or_disabled": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income.credits.aged_or_disabled", - "description": null, - "label": "aged or disabled", - "economy": true, - "household": true - }, - "gov.states.id.tax.income.credits.aged_or_disabled.support_fraction_threshold": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.credits.aged_or_disabled.support_fraction_threshold", - "description": "Idaho limits its aged or disabled credit to family members of filers for whom the filer pays more than this fraction of their care and support costs.", - "label": "Idaho aged or disabled credit support fraction threshold", - "unit": "/1", - "period": "year", - "values": { - "2002-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.credits.aged_or_disabled.age_threshold": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.credits.aged_or_disabled.age_threshold", - "description": "Idaho limits the aged or disabled credit to filers this age or older.", - "label": "Idaho aged or disabled credit age threshold", - "unit": "year", - "period": "year", - "values": { - "2002-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.credits.aged_or_disabled.person_cap": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.credits.aged_or_disabled.person_cap", - "description": "Idaho limits the aged or disabled credit to this number of people per filing unit.", - "label": "Idaho aged or disabled credit maximum household members", - "unit": "/1", - "period": "year", - "values": { - "2002-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.credits.aged_or_disabled.amount": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.credits.aged_or_disabled.amount", - "description": "Idaho provides this credit for each aged or disabled person in the taxpayer's household.", - "label": "Idaho aged or disabled credit", - "unit": "currency-USD", - "period": "year", - "values": { - "2002-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.subtractions": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income.subtractions", - "description": null, - "label": "subtractions", - "economy": true, - "household": true - }, - "gov.states.id.tax.income.subtractions.subtractions": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.subtractions.subtractions", - "description": "Idaho subtracts these items when calculating state adjusted gross income.", - "label": "Idaho adjusted gross income subtractions", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": [ - "salt_refund_income", - "us_govt_interest", - "military_service_income", - "taxable_social_security", - "id_household_and_dependent_care_expense_deduction", - "id_aged_or_disabled_deduction", - "id_capital_gains_deduction", - "workers_compensation", - "id_retirement_benefits_deduction" - ], - "2015-01-01": [ - "salt_refund_income", - "us_govt_interest", - "military_service_income", - "taxable_social_security", - "id_household_and_dependent_care_expense_deduction", - "id_aged_or_disabled_deduction", - "id_capital_gains_deduction", - "workers_compensation", - "id_retirement_benefits_deduction" - ] - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.subtractions.aged_or_disabled": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income.subtractions.aged_or_disabled", - "description": null, - "label": "aged or disabled", - "economy": true, - "household": true - }, - "gov.states.id.tax.income.subtractions.aged_or_disabled.support_fraction_threshold": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.subtractions.aged_or_disabled.support_fraction_threshold", - "description": "Idaho limits its aged or disabled deduction to family members of filers for whom the filer pays more than this fraction of their care and support costs.", - "label": "Idaho aged or disabled deduction support fraction threshold", - "unit": "/1", - "period": "year", - "values": { - "1999-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.subtractions.aged_or_disabled.age_threshold": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.subtractions.aged_or_disabled.age_threshold", - "description": "Idaho limits the aged or disabled deduction to filers this age or older.", - "label": "Idaho development disabilities deduction age threshold", - "unit": "year", - "period": "year", - "values": { - "1999-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.subtractions.aged_or_disabled.person_cap": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.subtractions.aged_or_disabled.person_cap", - "description": "Idaho limits the aged or disabled deduction to this number of people per filing unit.", - "label": "Idaho aged or disabled deduction maximum household members", - "unit": "/1", - "period": "year", - "values": { - "1999-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.subtractions.aged_or_disabled.amount": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.subtractions.aged_or_disabled.amount", - "description": "Idaho subtracts this amount from adjusted gross income for each aged or disabled person in the taxpayer's household.", - "label": "Idaho aged or disabled deduction", - "unit": "currency-USD", - "period": "year", - "values": { - "1999-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income.main", - "description": null, - "label": "main", - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.head_of_household": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income.main.head_of_household", - "description": "Idaho taxes income of head of household filers at this rate.", - "label": "Idaho head of household income tax schedule" - }, - "gov.states.id.tax.income.main.head_of_household[0]": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income.main.head_of_household[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.id.tax.income.main.head_of_household[0].rate": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.head_of_household[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0, - "2021-01-01": 0.01, - "2015-01-01": 0.01 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.head_of_household[0].threshold": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.head_of_household[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.head_of_household[1]": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income.main.head_of_household[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.id.tax.income.main.head_of_household[1].rate": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.head_of_household[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2025-01-01": 0.053, - "2024-01-01": 0.05695, - "2023-01-01": 0.058, - "2022-01-01": 0.03, - "2021-01-01": 0.031, - "2015-01-01": 0.031 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.head_of_household[1].threshold": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.head_of_household[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 11638.3484242035, - "2034-01-01": 11412.982365786, - "2033-01-01": 11190.398604386, - "2032-01-01": 10973.379437021, - "2031-01-01": 10761.924863691, - "2030-01-01": 10553.2525873784, - "2029-01-01": 10347.3626080834, - "2028-01-01": 10144.2549258059, - "2027-01-01": 9938.36494651089, - "2026-01-01": 9699.36563270762, - "2025-01-01": 9553.32749942073, - "2024-01-01": 9346, - "2023-01-01": 8979, - "2022-01-01": 3324, - "2021-01-01": 3176, - "2015-01-01": 3176 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.head_of_household[2]": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income.main.head_of_household[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.id.tax.income.main.head_of_household[2].rate": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.head_of_household[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.045, - "2015-01-01": 0.045 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.head_of_household[2].threshold": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.head_of_household[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": "Infinity", - "2022-01-01": 9974, - "2021-01-01": 9526, - "2015-01-01": 9526 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.head_of_household[3]": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income.main.head_of_household[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.id.tax.income.main.head_of_household[3].rate": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.head_of_household[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.06, - "2021-01-01": 0.055, - "2015-01-01": 0.055 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.head_of_household[3].threshold": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.head_of_household[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": "Infinity", - "2022-01-01": 16622, - "2021-01-01": 12702, - "2015-01-01": 12702 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.head_of_household[4]": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income.main.head_of_household[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.id.tax.income.main.head_of_household[4].rate": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.head_of_household[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.065, - "2015-01-01": 0.065 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.head_of_household[4].threshold": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.head_of_household[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": "Infinity", - "2021-01-01": 15878, - "2015-01-01": 15878 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.separate": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income.main.separate", - "description": "Idaho taxes income of separate filers at this rate.", - "label": "Idaho separate filers tax schedule" - }, - "gov.states.id.tax.income.main.separate[0]": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income.main.separate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.id.tax.income.main.separate[0].rate": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.separate[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0, - "2021-01-01": 0.01, - "2015-01-01": 0.01 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.separate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.separate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.separate[1]": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income.main.separate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.id.tax.income.main.separate[1].rate": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.separate[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2025-01-01": 0.053, - "2024-01-01": 0.05695, - "2023-01-01": 0.058, - "2022-01-01": 0.03, - "2021-01-01": 0.031, - "2015-01-01": 0.031 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.separate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.separate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 5819.17421210177, - "2034-01-01": 5706.49118289301, - "2033-01-01": 5595.199302193, - "2032-01-01": 5486.68971851049, - "2031-01-01": 5380.96243184548, - "2030-01-01": 5276.62629368922, - "2029-01-01": 5173.68130404171, - "2028-01-01": 5072.12746290295, - "2027-01-01": 4969.18247325545, - "2026-01-01": 4849.68281635381, - "2025-01-01": 4776.66374971037, - "2024-01-01": 4673, - "2023-01-01": 4490, - "2022-01-01": 1662, - "2021-01-01": 1588, - "2015-01-01": 1588 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.separate[2]": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income.main.separate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.id.tax.income.main.separate[2].rate": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.separate[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.045, - "2015-01-01": 0.045 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.separate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.separate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": "Infinity", - "2022-01-01": 4987, - "2021-01-01": 4763, - "2015-01-01": 4763 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.separate[3]": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income.main.separate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.id.tax.income.main.separate[3].rate": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.separate[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.06, - "2021-01-01": 0.055, - "2015-01-01": 0.055 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.separate[3].threshold": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.separate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": "Infinity", - "2022-01-01": 8311, - "2021-01-01": 6351, - "2015-01-01": 6351 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.separate[4]": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income.main.separate[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.id.tax.income.main.separate[4].rate": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.separate[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.065, - "2015-01-01": 0.065 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.separate[4].threshold": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.separate[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": "Infinity", - "2021-01-01": 7939, - "2015-01-01": 7939 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.joint": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income.main.joint", - "description": "Idaho taxes income of joint filers at this rate.", - "label": "Idaho married filers income tax schedule" - }, - "gov.states.id.tax.income.main.joint[0]": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income.main.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.id.tax.income.main.joint[0].rate": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.joint[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0, - "2021-01-01": 0.01, - "2015-01-01": 0.01 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.joint[1]": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income.main.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.id.tax.income.main.joint[1].rate": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.joint[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2025-01-01": 0.053, - "2024-01-01": 0.05695, - "2023-01-01": 0.058, - "2022-01-01": 0.03, - "2021-01-01": 0.031, - "2015-01-01": 0.031 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 11638.3484242035, - "2034-01-01": 11412.982365786, - "2033-01-01": 11190.398604386, - "2032-01-01": 10973.379437021, - "2031-01-01": 10761.924863691, - "2030-01-01": 10553.2525873784, - "2029-01-01": 10347.3626080834, - "2028-01-01": 10144.2549258059, - "2027-01-01": 9938.36494651089, - "2026-01-01": 9699.36563270762, - "2025-01-01": 9553.32749942073, - "2024-01-01": 9346, - "2023-01-01": 8979, - "2022-01-01": 3324, - "2021-01-01": 3176, - "2015-01-01": 3176 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.joint[2]": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income.main.joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.id.tax.income.main.joint[2].rate": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.joint[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.045, - "2015-01-01": 0.045 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.joint[2].threshold": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": "Infinity", - "2022-01-01": 9974, - "2021-01-01": 9526, - "2015-01-01": 9526 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.joint[3]": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income.main.joint[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.id.tax.income.main.joint[3].rate": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.joint[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.06, - "2021-01-01": 0.055, - "2015-01-01": 0.055 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.joint[3].threshold": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.joint[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": "Infinity", - "2022-01-01": 16622, - "2021-01-01": 12702, - "2015-01-01": 12702 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.joint[4]": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income.main.joint[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.id.tax.income.main.joint[4].rate": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.joint[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.065, - "2015-01-01": 0.065 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.joint[4].threshold": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.joint[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": "Infinity", - "2021-01-01": 15878, - "2015-01-01": 15878 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.single": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income.main.single", - "description": "Idaho taxes income of single filers at this rate.", - "label": "Idaho single filers income tax schedule" - }, - "gov.states.id.tax.income.main.single[0]": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income.main.single[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.id.tax.income.main.single[0].rate": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.single[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0, - "2021-01-01": 0.01, - "2015-01-01": 0.01 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.single[0].threshold": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.single[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.single[1]": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income.main.single[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.id.tax.income.main.single[1].rate": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.single[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2025-01-01": 0.053, - "2024-01-01": 0.05695, - "2023-01-01": 0.058, - "2022-01-01": 0.03, - "2021-01-01": 0.031, - "2015-01-01": 0.031 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.single[1].threshold": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.single[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 5819.17421210177, - "2034-01-01": 5706.49118289301, - "2033-01-01": 5595.199302193, - "2032-01-01": 5486.68971851049, - "2031-01-01": 5380.96243184548, - "2030-01-01": 5276.62629368922, - "2029-01-01": 5173.68130404171, - "2028-01-01": 5072.12746290295, - "2027-01-01": 4969.18247325545, - "2026-01-01": 4849.68281635381, - "2025-01-01": 4776.66374971037, - "2024-01-01": 4673, - "2023-01-01": 4490, - "2022-01-01": 1662, - "2021-01-01": 1588, - "2015-01-01": 1588 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.single[2]": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income.main.single[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.id.tax.income.main.single[2].rate": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.single[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.045, - "2015-01-01": 0.045 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.single[2].threshold": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.single[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": "Infinity", - "2022-01-01": 4987, - "2021-01-01": 4763, - "2015-01-01": 4763 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.single[3]": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income.main.single[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.id.tax.income.main.single[3].rate": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.single[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.06, - "2021-01-01": 0.055, - "2015-01-01": 0.055 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.single[3].threshold": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.single[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": "Infinity", - "2022-01-01": 8311, - "2021-01-01": 6351, - "2015-01-01": 6351 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.single[4]": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income.main.single[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.id.tax.income.main.single[4].rate": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.single[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.065, - "2015-01-01": 0.065 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.single[4].threshold": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.single[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": "Infinity", - "2021-01-01": 7939, - "2015-01-01": 7939 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.surviving_spouse": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income.main.surviving_spouse", - "description": "Idaho taxes income of surviving spouse filers at this rate.", - "label": "Idaho surviving spouse filers income tax schedule" - }, - "gov.states.id.tax.income.main.surviving_spouse[0]": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income.main.surviving_spouse[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.id.tax.income.main.surviving_spouse[0].rate": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.surviving_spouse[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0, - "2021-01-01": 0.01, - "2015-01-01": 0.01 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.surviving_spouse[0].threshold": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.surviving_spouse[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.surviving_spouse[1]": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income.main.surviving_spouse[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.id.tax.income.main.surviving_spouse[1].rate": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.surviving_spouse[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2025-01-01": 0.053, - "2024-01-01": 0.05695, - "2023-01-01": 0.058, - "2022-01-01": 0.03, - "2021-01-01": 0.031, - "2015-01-01": 0.031 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.surviving_spouse[1].threshold": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.surviving_spouse[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 11638.3484242035, - "2034-01-01": 11412.982365786, - "2033-01-01": 11190.398604386, - "2032-01-01": 10973.379437021, - "2031-01-01": 10761.924863691, - "2030-01-01": 10553.2525873784, - "2029-01-01": 10347.3626080834, - "2028-01-01": 10144.2549258059, - "2027-01-01": 9938.36494651089, - "2026-01-01": 9699.36563270762, - "2025-01-01": 9553.32749942073, - "2024-01-01": 9346, - "2023-01-01": 8979, - "2022-01-01": 3324, - "2021-01-01": 3176, - "2015-01-01": 3176 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.surviving_spouse[2]": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income.main.surviving_spouse[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.id.tax.income.main.surviving_spouse[2].rate": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.surviving_spouse[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.045, - "2015-01-01": 0.045 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.surviving_spouse[2].threshold": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.surviving_spouse[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": "Infinity", - "2022-01-01": 9974, - "2021-01-01": 9526, - "2015-01-01": 9526 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.surviving_spouse[3]": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income.main.surviving_spouse[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.id.tax.income.main.surviving_spouse[3].rate": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.surviving_spouse[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.06, - "2021-01-01": 0.055, - "2015-01-01": 0.055 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.surviving_spouse[3].threshold": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.surviving_spouse[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": "Infinity", - "2022-01-01": 16622, - "2021-01-01": 12702, - "2015-01-01": 12702 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.surviving_spouse[4]": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income.main.surviving_spouse[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.id.tax.income.main.surviving_spouse[4].rate": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.surviving_spouse[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.065, - "2015-01-01": 0.065 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.main.surviving_spouse[4].threshold": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.main.surviving_spouse[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": "Infinity", - "2022-01-01": "Infinity", - "2021-01-01": 15878, - "2015-01-01": 15878 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.deductions": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income.deductions", - "description": null, - "label": "deductions", - "economy": true, - "household": true - }, - "gov.states.id.tax.income.deductions.retirement_benefits": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income.deductions.retirement_benefits", - "description": null, - "label": "retirement benefits", - "economy": true, - "household": true - }, - "gov.states.id.tax.income.deductions.retirement_benefits.income_sources": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.deductions.retirement_benefits.income_sources", - "description": "Idaho counts the following income sources under the retirement benefits deduction.", - "label": "Idaho retirement benefits deduction income sources", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": ["public_pension_income", "military_retirement_pay"], - "2015-01-01": ["public_pension_income", "military_retirement_pay"] - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.deductions.retirement_benefits.cap": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income.deductions.retirement_benefits.cap", - "description": "Idaho caps the retirement benefits deduction to this amount, based on filing status.", - "label": "Idaho retirement benefit deduction cap", - "economy": true, - "household": true - }, - "gov.states.id.tax.income.deductions.retirement_benefits.cap.SINGLE": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.deductions.retirement_benefits.cap.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 57113.3332043303, - "2034-01-01": 56007.3853225348, - "2033-01-01": 54915.0911182923, - "2032-01-01": 53850.1042691558, - "2031-01-01": 52812.4247751255, - "2030-01-01": 51788.3989586481, - "2029-01-01": 50778.0268197238, - "2028-01-01": 49781.3083583525, - "2027-01-01": 48770.9362194282, - "2026-01-01": 47598.0853176228, - "2025-01-01": 46881.4265389934, - "2024-01-01": 45864, - "2023-01-01": 43524, - "2022-01-01": 40140, - "2021-01-01": 37776, - "2015-01-01": 37776 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.deductions.retirement_benefits.cap.JOINT": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.deductions.retirement_benefits.cap.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 85669.9998064955, - "2034-01-01": 84011.0779838022, - "2033-01-01": 82372.6366774384, - "2032-01-01": 80775.1564037337, - "2031-01-01": 79218.6371626882, - "2030-01-01": 77682.5984379721, - "2029-01-01": 76167.0402295856, - "2028-01-01": 74671.9625375287, - "2027-01-01": 73156.4043291422, - "2026-01-01": 71397.1279764342, - "2025-01-01": 70322.1398084901, - "2024-01-01": 68796, - "2023-01-01": 65286, - "2022-01-01": 60210, - "2021-01-01": 56664, - "2015-01-01": 56664 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.deductions.retirement_benefits.cap.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.deductions.retirement_benefits.cap.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2023-01-01": 0, - "2022-01-01": 0, - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.deductions.retirement_benefits.cap.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.deductions.retirement_benefits.cap.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 57113.3332043303, - "2034-01-01": 56007.3853225348, - "2033-01-01": 54915.0911182923, - "2032-01-01": 53850.1042691558, - "2031-01-01": 52812.4247751255, - "2030-01-01": 51788.3989586481, - "2029-01-01": 50778.0268197238, - "2028-01-01": 49781.3083583525, - "2027-01-01": 48770.9362194282, - "2026-01-01": 47598.0853176228, - "2025-01-01": 46881.4265389934, - "2024-01-01": 45864, - "2023-01-01": 43524, - "2022-01-01": 40140, - "2021-01-01": 37776, - "2015-01-01": 37776 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.deductions.retirement_benefits.cap.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.deductions.retirement_benefits.cap.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 57113.3332043303, - "2034-01-01": 56007.3853225348, - "2033-01-01": 54915.0911182923, - "2032-01-01": 53850.1042691558, - "2031-01-01": 52812.4247751255, - "2030-01-01": 51788.3989586481, - "2029-01-01": 50778.0268197238, - "2028-01-01": 49781.3083583525, - "2027-01-01": 48770.9362194282, - "2026-01-01": 47598.0853176228, - "2025-01-01": 46881.4265389934, - "2024-01-01": 45864, - "2023-01-01": 43524, - "2022-01-01": 40140, - "2021-01-01": 37776, - "2015-01-01": 37776 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.deductions.retirement_benefits.age_eligibility": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income.deductions.retirement_benefits.age_eligibility", - "description": null, - "label": "age eligibility", - "economy": true, - "household": true - }, - "gov.states.id.tax.income.deductions.retirement_benefits.age_eligibility.main": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.deductions.retirement_benefits.age_eligibility.main", - "description": "Idaho limits the retirement benefit deduction to filers this age or older.", - "label": "Idaho retirement benefit deduction age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.deductions.retirement_benefits.age_eligibility.disabled": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.deductions.retirement_benefits.age_eligibility.disabled", - "description": "Idaho limits the retirement benefit deduction to disabled filers at or above this age threshold.", - "label": "Idaho retirement benefit deduction disabled age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 62, - "2015-01-01": 62 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.deductions.capital_gains": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income.deductions.capital_gains", - "description": null, - "label": "capital gains", - "economy": true, - "household": true - }, - "gov.states.id.tax.income.deductions.capital_gains.percentage": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.deductions.capital_gains.percentage", - "description": "Idaho allows filers to deduct this fraction of capital gains on qualified property sales.", - "label": "Idaho capital gains deduction percentage", - "unit": "/1", - "period": null, - "values": { - "2002-01-01": 0.6, - "2001-01-01": 0.8 - }, - "economy": true, - "household": true - }, - "gov.states.id.tax.income.deductions.dependent_care_expenses": { - "type": "parameterNode", - "parameter": "gov.states.id.tax.income.deductions.dependent_care_expenses", - "description": null, - "label": "dependent care expenses", - "economy": true, - "household": true - }, - "gov.states.id.tax.income.deductions.dependent_care_expenses.cap": { - "type": "parameter", - "parameter": "gov.states.id.tax.income.deductions.dependent_care_expenses.cap", - "description": "Idaho caps the household and dependent care expense deduction at the greater of the federal cap and this amount.", - "label": "Idaho dependent care expense deduction cap amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2023-01-01": 12000, - "2004-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.tx": { - "type": "parameterNode", - "parameter": "gov.states.tx", - "description": null, - "label": "Texas", - "economy": false, - "household": false - }, - "gov.states.tx.tanf": { - "type": "parameterNode", - "parameter": "gov.states.tx.tanf", - "description": null, - "label": "TANF", - "economy": false, - "household": false - }, - "gov.states.tx.tanf.monthly_income_limit": { - "type": "parameterNode", - "parameter": "gov.states.tx.tanf.monthly_income_limit", - "description": "Texas limits its TANF eligibility to households with income below this amount, depending on household size.", - "label": "Texas TANF monthly income limit" - }, - "gov.states.tx.tanf.monthly_income_limit[0]": { - "type": "parameterNode", - "parameter": "gov.states.tx.tanf.monthly_income_limit[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.tx.tanf.monthly_income_limit[0].threshold": { - "type": "parameter", - "parameter": "gov.states.tx.tanf.monthly_income_limit[0].threshold", - "description": null, - "label": "threshold", - "unit": "person", - "period": "month", - "values": { - "2023-01-01": 1, - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.states.tx.tanf.monthly_income_limit[0].amount": { - "type": "parameter", - "parameter": "gov.states.tx.tanf.monthly_income_limit[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": "month", - "values": { - "2023-01-01": 2265, - "2015-01-01": 2265 - }, - "economy": false, - "household": false - }, - "gov.states.tx.tanf.monthly_income_limit[1]": { - "type": "parameterNode", - "parameter": "gov.states.tx.tanf.monthly_income_limit[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.tx.tanf.monthly_income_limit[1].threshold": { - "type": "parameter", - "parameter": "gov.states.tx.tanf.monthly_income_limit[1].threshold", - "description": null, - "label": "threshold", - "unit": "person", - "period": "month", - "values": { - "2023-01-01": 2, - "2015-01-01": 2 - }, - "economy": false, - "household": false - }, - "gov.states.tx.tanf.monthly_income_limit[1].amount": { - "type": "parameter", - "parameter": "gov.states.tx.tanf.monthly_income_limit[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": "month", - "values": { - "2023-01-01": 3052, - "2015-01-01": 3052 - }, - "economy": false, - "household": false - }, - "gov.states.tx.tanf.monthly_income_limit[2]": { - "type": "parameterNode", - "parameter": "gov.states.tx.tanf.monthly_income_limit[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.tx.tanf.monthly_income_limit[2].threshold": { - "type": "parameter", - "parameter": "gov.states.tx.tanf.monthly_income_limit[2].threshold", - "description": null, - "label": "threshold", - "unit": "person", - "period": "month", - "values": { - "2023-01-01": 3, - "2015-01-01": 3 - }, - "economy": false, - "household": false - }, - "gov.states.tx.tanf.monthly_income_limit[2].amount": { - "type": "parameter", - "parameter": "gov.states.tx.tanf.monthly_income_limit[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": "month", - "values": { - "2023-01-01": 3839, - "2015-01-01": 3839 - }, - "economy": false, - "household": false - }, - "gov.states.tx.tanf.monthly_income_limit[3]": { - "type": "parameterNode", - "parameter": "gov.states.tx.tanf.monthly_income_limit[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.tx.tanf.monthly_income_limit[3].threshold": { - "type": "parameter", - "parameter": "gov.states.tx.tanf.monthly_income_limit[3].threshold", - "description": null, - "label": "threshold", - "unit": "person", - "period": "month", - "values": { - "2023-01-01": 4, - "2015-01-01": 4 - }, - "economy": false, - "household": false - }, - "gov.states.tx.tanf.monthly_income_limit[3].amount": { - "type": "parameter", - "parameter": "gov.states.tx.tanf.monthly_income_limit[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": "month", - "values": { - "2023-01-01": 4625, - "2015-01-01": 4625 - }, - "economy": false, - "household": false - }, - "gov.states.tx.tanf.monthly_income_limit[4]": { - "type": "parameterNode", - "parameter": "gov.states.tx.tanf.monthly_income_limit[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.tx.tanf.monthly_income_limit[4].threshold": { - "type": "parameter", - "parameter": "gov.states.tx.tanf.monthly_income_limit[4].threshold", - "description": null, - "label": "threshold", - "unit": "person", - "period": "month", - "values": { - "2023-01-01": 5, - "2015-01-01": 5 - }, - "economy": false, - "household": false - }, - "gov.states.tx.tanf.monthly_income_limit[4].amount": { - "type": "parameter", - "parameter": "gov.states.tx.tanf.monthly_income_limit[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": "month", - "values": { - "2023-01-01": 5412, - "2015-01-01": 5412 - }, - "economy": false, - "household": false - }, - "gov.states.wi": { - "type": "parameterNode", - "parameter": "gov.states.wi", - "description": null, - "label": "Wisconsin", - "economy": true, - "household": true - }, - "gov.states.wi.tax": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.states.wi.tax.income": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.credits": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.credits", - "description": null, - "label": "credits", - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.credits.refundable": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.credits.refundable", - "description": "Wisconsin income tax has these refundable credits.", - "label": "Wisconsin refundable credits", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": ["wi_earned_income_credit", "wi_homestead_credit"], - "2015-01-01": ["wi_earned_income_credit", "wi_homestead_credit"] - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.credits.married_couple": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.credits.married_couple", - "description": null, - "label": "married couple", - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.credits.married_couple.income_sources": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.credits.married_couple.income_sources", - "description": "Wisconsin married couple credit has these income sources", - "label": "Wisconsin married couple credit income sources", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": [ - "irs_employment_income", - "self_employment_income", - "partnership_s_corp_income", - "farm_income" - ], - "2015-01-01": [ - "irs_employment_income", - "self_employment_income", - "partnership_s_corp_income", - "farm_income" - ] - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.credits.married_couple.max": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.credits.married_couple.max", - "description": "Wisconsin married couple credit is limited to this maximum.", - "label": "Wisconsin married couple credit cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 480, - "2015-01-01": 480 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.credits.married_couple.rate": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.credits.married_couple.rate", - "description": "Wisconsin married couple credit is calculated using this rate.", - "label": "Wisconsin married couple credit rate", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.credits.homestead": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.credits.homestead", - "description": null, - "label": "homestead", - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.credits.homestead.eligible": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.credits.homestead.eligible", - "description": null, - "label": "eligible", - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.credits.homestead.eligible.earnings_sources": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.credits.homestead.eligible.earnings_sources", - "description": "Wisconsin homestead credits recognizes these earnings sources.", - "label": "Wisconsin homestead credit earnings sources", - "unit": "list", - "period": null, - "values": { - "2021-01-01": [ - "irs_employment_income", - "self_employment_income", - "partnership_s_corp_income", - "farm_income" - ], - "2015-01-01": [ - "irs_employment_income", - "self_employment_income", - "partnership_s_corp_income", - "farm_income" - ] - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.credits.homestead.eligible.min_age": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.credits.homestead.eligible.min_age", - "description": "Wisconsin homestead credit has this minimum age for eligibility.", - "label": "min age", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 18, - "2015-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.credits.homestead.eligible.min_elderly_age": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.credits.homestead.eligible.min_elderly_age", - "description": "Wisconsin homestead credit has this minimum elderly age for eligibility.", - "label": "min elderly age", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 62, - "2015-01-01": 62 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.credits.homestead.eligible.max_income": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.credits.homestead.eligible.max_income", - "description": "Wisconsin homestead credit has this maximum income for eligibility.", - "label": "max income", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 24680, - "2015-01-01": 24680 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.credits.homestead.income": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.credits.homestead.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.credits.homestead.income.sources": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.credits.homestead.income.sources", - "description": "Wisconsin homestead credit recognizes these income sources.", - "label": "Wisconsin homestead credit income sources", - "unit": "list", - "period": null, - "values": { - "2021-01-01": [ - "adjusted_gross_income", - "tax_exempt_interest_income", - "tax_exempt_social_security", - "tax_exempt_pension_income", - "tax_exempt_unemployment_compensation", - "ssi", - "tanf" - ], - "2015-01-01": [ - "adjusted_gross_income", - "tax_exempt_interest_income", - "tax_exempt_social_security", - "tax_exempt_pension_income", - "tax_exempt_unemployment_compensation", - "ssi", - "tanf" - ] - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.credits.homestead.income.exemption": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.credits.homestead.income.exemption", - "description": "Wisconsin homestead credit has this dependent exemption.", - "label": "exemption", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.credits.homestead.property_tax": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.credits.homestead.property_tax", - "description": null, - "label": "property tax", - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.credits.homestead.property_tax.max": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.credits.homestead.property_tax.max", - "description": "Wisconsin homestead credit caps property taxes at this maximum.", - "label": "max", - "unit": "currency-USD", - "period": "year", - "values": { - "2011-01-01": 1460 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.credits.homestead.property_tax.rent_ratio": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.credits.homestead.property_tax.rent_ratio", - "description": "Wisconsin homestead credit assumes property taxes are this ratio to rent.", - "label": "rent ratio", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.credits.homestead.phase_out": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.credits.homestead.phase_out", - "description": null, - "label": "phase out", - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.credits.homestead.phase_out.start": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.credits.homestead.phase_out.start", - "description": "Wisconsin homestead credit phases out capped property taxes starting at this income.", - "label": "start", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 8060, - "2015-01-01": 8060 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.credits.homestead.phase_out.rate": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.credits.homestead.phase_out.rate", - "description": "Wisconsin homestead credit phases out capped property taxes at this rate.", - "label": "rate", - "unit": "/1", - "period": "year", - "values": { - "2012-01-01": 0.08785 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.credits.homestead.rate": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.credits.homestead.rate", - "description": "Wisconsin homestead credit equals eligible property taxes times this rate.", - "label": "rate", - "unit": "/1", - "period": "year", - "values": { - "2012-01-01": 0.8 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.credits.childcare_expense": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.credits.childcare_expense", - "description": null, - "label": "Child and Dependent Care Credit", - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.credits.childcare_expense.fraction": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.credits.childcare_expense.fraction", - "description": "Wisconsin allows this faction of the federal child and dependent care credit as an AGI income subtraction.", - "label": "Wisconsin CDCC fraction of federal CDCC", - "unit": "/1", - "period": "year", - "values": { - "2024-01-01": 1, - "2022-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.credits.property_tax": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.credits.property_tax", - "description": null, - "label": "property tax", - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.credits.property_tax.max": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.credits.property_tax.max", - "description": "Wisconsin property tax credit is limited to this maximum.", - "label": "Wisconsin property tax credit limit", - "unit": "currency-USD", - "period": "year", - "values": { - "2000-01-01": 300 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.credits.property_tax.rent_fraction": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.credits.property_tax.rent_fraction", - "description": "Wisconsin property tax credit considers property taxes to be this fraction of rent.", - "label": "Wisconsin property tax credit fraction of rent considered property tax", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.credits.property_tax.rate": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.credits.property_tax.rate", - "description": "Wisconsin propery tax credit is calculated using this rate.", - "label": "Wisconsin property tax credit rate", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.12, - "2015-01-01": 0.12 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.credits.non_refundable": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.credits.non_refundable", - "description": "Wisconsin income tax has these nonrefundable credits.", - "label": "Wisconsin nonrefundable credits", - "unit": "list", - "period": "year", - "values": { - "2022-01-01": [ - "wi_itemized_deduction_credit", - "wi_childcare_expense_credit", - "wi_property_tax_credit", - "wi_married_couple_credit" - ], - "2021-01-01": [ - "wi_itemized_deduction_credit", - "wi_property_tax_credit", - "wi_married_couple_credit" - ], - "2015-01-01": [ - "wi_itemized_deduction_credit", - "wi_property_tax_credit", - "wi_married_couple_credit" - ] - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.credits.earned_income": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.credits.earned_income", - "description": null, - "label": "Earned Income Tax Credit", - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.credits.earned_income.investment_income_limit": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.credits.earned_income.investment_income_limit", - "description": "Wisconsin limits EITC eligibility to this investment income amount.", - "label": "Wisconsin EITC investment income limit", - "unit": "currency-USD", - "period": "year", - "values": { - "2022-01-01": 3800, - "2021-01-01": 3650, - "2015-01-01": 3650 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.credits.earned_income.apply_federal_investment_income_limit": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.credits.earned_income.apply_federal_investment_income_limit", - "description": "Wisconsin applies the federal investment income limit for the earned income tax credit if this is true.", - "label": "Wisconsin EITC apply federal investment income limit", - "unit": "bool", - "period": "year", - "values": { - "2023-01-01": true, - "2021-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.credits.earned_income.fraction": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.credits.earned_income.fraction", - "description": "Wisconsin matches this fraction of the federal EITC, depending on the number of EITC-eligible children.", - "label": "Wisconsin EITC as fraction of federal EITC" - }, - "gov.states.wi.tax.income.credits.earned_income.fraction[0]": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.credits.earned_income.fraction[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.wi.tax.income.credits.earned_income.fraction[0].threshold": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.credits.earned_income.fraction[0].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.credits.earned_income.fraction[0].amount": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.credits.earned_income.fraction[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.credits.earned_income.fraction[1]": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.credits.earned_income.fraction[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.wi.tax.income.credits.earned_income.fraction[1].threshold": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.credits.earned_income.fraction[1].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "0000-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.credits.earned_income.fraction[1].amount": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.credits.earned_income.fraction[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.credits.earned_income.fraction[2]": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.credits.earned_income.fraction[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.wi.tax.income.credits.earned_income.fraction[2].threshold": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.credits.earned_income.fraction[2].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "0000-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.credits.earned_income.fraction[2].amount": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.credits.earned_income.fraction[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.11, - "2015-01-01": 0.11 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.credits.earned_income.fraction[3]": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.credits.earned_income.fraction[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.wi.tax.income.credits.earned_income.fraction[3].threshold": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.credits.earned_income.fraction[3].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "0000-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.credits.earned_income.fraction[3].amount": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.credits.earned_income.fraction[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.34, - "2015-01-01": 0.34 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.credits.itemized_deduction": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.credits.itemized_deduction", - "description": null, - "label": "itemized deduction", - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.credits.itemized_deduction.rate": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.credits.itemized_deduction.rate", - "description": "Wisconsin has an itemized deduction credit equal to this rate times the excess of itemized deductions over the standard deduction.", - "label": "rate", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.exemption": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.exemption", - "description": null, - "label": "exemption", - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.exemption.base": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.exemption.base", - "description": "Wisconsin exemption includes this base amount.", - "label": "Wisconsin personal exemption base amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2001-01-01": 700 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.exemption.old_age": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.exemption.old_age", - "description": "Wisconsin gives an extra exemption to head/spouse this age or more.", - "label": "Wisconsin personal exemption old age threshold", - "unit": "year", - "period": "year", - "values": { - "2001-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.exemption.extra": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.exemption.extra", - "description": "Wisconsin exemption includes this amount for each elderly taxpayer.", - "label": "Wisconsin personal exemption additional amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2001-01-01": 250 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.rates": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.rates", - "description": null, - "label": "rates", - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.rates.head_of_household": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.rates.head_of_household", - "description": "Wisconsin taxes personal income at these rates for head of household filers.", - "label": "Wisconsin head of household income tax rate" - }, - "gov.states.wi.tax.income.rates.head_of_household[0]": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.rates.head_of_household[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.wi.tax.income.rates.head_of_household[0].rate": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.rates.head_of_household[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.035, - "2021-01-01": 0.0354, - "2015-01-01": 0.0354 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.rates.head_of_household[0].threshold": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.rates.head_of_household[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.rates.head_of_household[1]": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.rates.head_of_household[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.wi.tax.income.rates.head_of_household[1].rate": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.rates.head_of_household[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.044, - "2021-01-01": 0.0465, - "2015-01-01": 0.0465 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.rates.head_of_household[1].threshold": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.rates.head_of_household[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 17832.3506777867, - "2034-01-01": 17487.0433851975, - "2033-01-01": 17145.9991456032, - "2032-01-01": 16813.4810119988, - "2031-01-01": 16489.4889843842, - "2030-01-01": 16169.7600097645, - "2029-01-01": 15854.2940881398, - "2028-01-01": 15543.09121951, - "2027-01-01": 15227.6252978853, - "2026-01-01": 14861.4290456209, - "2025-01-01": 14637.6684990054, - "2024-01-01": 14320, - "2023-01-01": 13810, - "2022-01-01": 12760, - "2021-01-01": 12120, - "2015-01-01": 12120 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.rates.head_of_household[2]": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.rates.head_of_household[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.wi.tax.income.rates.head_of_household[2].rate": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.rates.head_of_household[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.053, - "2015-01-01": 0.053 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.rates.head_of_household[2].threshold": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.rates.head_of_household[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 35664.7013555735, - "2034-01-01": 34974.086770395, - "2033-01-01": 34291.9982912064, - "2032-01-01": 33626.9620239975, - "2031-01-01": 32978.9779687684, - "2030-01-01": 32339.5200195291, - "2029-01-01": 31708.5881762796, - "2028-01-01": 31086.18243902, - "2027-01-01": 30455.2505957706, - "2026-01-01": 29722.8580912418, - "2025-01-01": 29275.3369980109, - "2024-01-01": 28640, - "2023-01-01": 27630, - "2022-01-01": 25520, - "2021-01-01": 24250, - "2015-01-01": 24250 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.rates.head_of_household[3]": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.rates.head_of_household[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.wi.tax.income.rates.head_of_household[3].rate": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.rates.head_of_household[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0765, - "2015-01-01": 0.0765 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.rates.head_of_household[3].threshold": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.rates.head_of_household[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 392647.939400344, - "2034-01-01": 385044.668281189, - "2033-01-01": 377535.264706714, - "2032-01-01": 370213.596221601, - "2031-01-01": 363079.662825851, - "2030-01-01": 356039.59697478, - "2029-01-01": 349093.398668391, - "2028-01-01": 342241.067906683, - "2027-01-01": 335294.869600294, - "2026-01-01": 327231.647512202, - "2025-01-01": 322304.696537808, - "2024-01-01": 315310, - "2023-01-01": 304170, - "2022-01-01": 280950, - "2021-01-01": 266930, - "2015-01-01": 266930 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.rates.separate": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.rates.separate", - "description": "Wisconsin taxes personal income at these rates for separate filers.", - "label": "Wisconsin separate income tax rate" - }, - "gov.states.wi.tax.income.rates.separate[0]": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.rates.separate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.wi.tax.income.rates.separate[0].rate": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.rates.separate[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.035, - "2021-01-01": 0.0354, - "2015-01-01": 0.0354 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.rates.separate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.rates.separate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.rates.separate[1]": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.rates.separate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.wi.tax.income.rates.separate[1].rate": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.rates.separate[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.044, - "2021-01-01": 0.0465, - "2015-01-01": 0.0465 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.rates.separate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.rates.separate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 11892.3847048089, - "2034-01-01": 11662.0994642902, - "2033-01-01": 11434.6572514323, - "2032-01-01": 11212.9010938958, - "2031-01-01": 10996.8309916808, - "2030-01-01": 10783.6039171265, - "2029-01-01": 10573.2198702329, - "2028-01-01": 10365.678851, - "2027-01-01": 10155.2948041065, - "2026-01-01": 9911.07872805027, - "2025-01-01": 9761.85294451829, - "2024-01-01": 9550, - "2023-01-01": 9210, - "2022-01-01": 8510, - "2021-01-01": 8080, - "2015-01-01": 8080 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.rates.separate[2]": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.rates.separate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.wi.tax.income.rates.separate[2].rate": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.rates.separate[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.053, - "2015-01-01": 0.053 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.rates.separate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.rates.separate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 23772.3166507646, - "2034-01-01": 23311.9873061048, - "2033-01-01": 22857.3410397741, - "2032-01-01": 22414.0609301017, - "2031-01-01": 21982.1469770876, - "2030-01-01": 21555.9161024026, - "2029-01-01": 21135.3683060467, - "2028-01-01": 20720.50358802, - "2027-01-01": 20299.9557916641, - "2026-01-01": 19811.7793631916, - "2025-01-01": 19513.4840534926, - "2024-01-01": 19090, - "2023-01-01": 18420, - "2022-01-01": 17010, - "2021-01-01": 16160, - "2015-01-01": 16160 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.rates.separate[3]": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.rates.separate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.wi.tax.income.rates.separate[3].rate": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.rates.separate[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0765, - "2015-01-01": 0.0765 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.rates.separate[3].threshold": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.rates.separate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 261769.443853181, - "2034-01-01": 256700.516061618, - "2033-01-01": 251694.167625506, - "2032-01-01": 246812.977900298, - "2031-01-01": 242056.946885992, - "2030-01-01": 237363.495227137, - "2029-01-01": 232732.622923734, - "2028-01-01": 228164.329975782, - "2027-01-01": 223533.457672379, - "2026-01-01": 218157.891039104, - "2025-01-01": 214873.204970386, - "2024-01-01": 210210, - "2023-01-01": 202780, - "2022-01-01": 187300, - "2021-01-01": 177960, - "2015-01-01": 177960 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.rates.joint": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.rates.joint", - "description": "Wisconsin taxes personal income at these rates for joint filers.", - "label": "Wisconsin joint income tax rate" - }, - "gov.states.wi.tax.income.rates.joint[0]": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.rates.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.wi.tax.income.rates.joint[0].rate": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.rates.joint[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.035, - "2021-01-01": 0.0354, - "2015-01-01": 0.0354 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.rates.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.rates.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.rates.joint[1]": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.rates.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.wi.tax.income.rates.joint[1].rate": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.rates.joint[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.044, - "2021-01-01": 0.0465, - "2015-01-01": 0.0465 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.rates.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.rates.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 23772.3166507646, - "2034-01-01": 23311.9873061048, - "2033-01-01": 22857.3410397741, - "2032-01-01": 22414.0609301017, - "2031-01-01": 21982.1469770876, - "2030-01-01": 21555.9161024026, - "2029-01-01": 21135.3683060467, - "2028-01-01": 20720.50358802, - "2027-01-01": 20299.9557916641, - "2026-01-01": 19811.7793631916, - "2025-01-01": 19513.4840534926, - "2024-01-01": 19090, - "2023-01-01": 18420, - "2022-01-01": 17010, - "2021-01-01": 16160, - "2015-01-01": 16160 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.rates.joint[2]": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.rates.joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.wi.tax.income.rates.joint[2].rate": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.rates.joint[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.053, - "2015-01-01": 0.053 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.rates.joint[2].threshold": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.rates.joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 47557.0860603823, - "2034-01-01": 46636.1862346852, - "2033-01-01": 45726.6555426387, - "2032-01-01": 44839.8631178934, - "2031-01-01": 43975.8089604492, - "2030-01-01": 43123.1239366556, - "2029-01-01": 42281.8080465125, - "2028-01-01": 41451.8612900201, - "2027-01-01": 40610.5453998771, - "2026-01-01": 39633.9368192921, - "2025-01-01": 39037.1899425292, - "2024-01-01": 38190, - "2023-01-01": 36840, - "2022-01-01": 34030, - "2021-01-01": 32330, - "2015-01-01": 32330 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.rates.joint[3]": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.rates.joint[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.wi.tax.income.rates.joint[3].rate": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.rates.joint[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0765, - "2015-01-01": 0.0765 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.rates.joint[3].threshold": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.rates.joint[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 523538.887706361, - "2034-01-01": 513401.032123235, - "2033-01-01": 503388.335251012, - "2032-01-01": 493625.955800595, - "2031-01-01": 484113.893771983, - "2030-01-01": 474726.990454274, - "2029-01-01": 465465.245847468, - "2028-01-01": 456328.659951564, - "2027-01-01": 447066.915344758, - "2026-01-01": 436315.782078209, - "2025-01-01": 429746.409940773, - "2024-01-01": 420420, - "2023-01-01": 405550, - "2022-01-01": 374600, - "2021-01-01": 355910, - "2015-01-01": 355910 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.rates.single": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.rates.single", - "description": "Wisconsin taxes personal income at these rates for single filers.", - "label": "Wisconsin single income tax rate" - }, - "gov.states.wi.tax.income.rates.single[0]": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.rates.single[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.wi.tax.income.rates.single[0].rate": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.rates.single[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.035, - "2021-01-01": 0.0354, - "2015-01-01": 0.0354 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.rates.single[0].threshold": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.rates.single[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.rates.single[1]": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.rates.single[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.wi.tax.income.rates.single[1].rate": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.rates.single[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.044, - "2021-01-01": 0.0465, - "2015-01-01": 0.0465 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.rates.single[1].threshold": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.rates.single[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 17832.3506777867, - "2034-01-01": 17487.0433851975, - "2033-01-01": 17145.9991456032, - "2032-01-01": 16813.4810119988, - "2031-01-01": 16489.4889843842, - "2030-01-01": 16169.7600097645, - "2029-01-01": 15854.2940881398, - "2028-01-01": 15543.09121951, - "2027-01-01": 15227.6252978853, - "2026-01-01": 14861.4290456209, - "2025-01-01": 14637.6684990054, - "2024-01-01": 14320, - "2023-01-01": 13810, - "2022-01-01": 12760, - "2021-01-01": 12120, - "2015-01-01": 12120 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.rates.single[2]": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.rates.single[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.wi.tax.income.rates.single[2].rate": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.rates.single[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.053, - "2015-01-01": 0.053 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.rates.single[2].threshold": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.rates.single[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 35664.7013555735, - "2034-01-01": 34974.086770395, - "2033-01-01": 34291.9982912064, - "2032-01-01": 33626.9620239975, - "2031-01-01": 32978.9779687684, - "2030-01-01": 32339.5200195291, - "2029-01-01": 31708.5881762796, - "2028-01-01": 31086.18243902, - "2027-01-01": 30455.2505957706, - "2026-01-01": 29722.8580912418, - "2025-01-01": 29275.3369980109, - "2024-01-01": 28640, - "2023-01-01": 27630, - "2022-01-01": 25520, - "2021-01-01": 24250, - "2015-01-01": 24250 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.rates.single[3]": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.rates.single[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.wi.tax.income.rates.single[3].rate": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.rates.single[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0765, - "2015-01-01": 0.0765 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.rates.single[3].threshold": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.rates.single[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 392647.939400344, - "2034-01-01": 385044.668281189, - "2033-01-01": 377535.264706714, - "2032-01-01": 370213.596221601, - "2031-01-01": 363079.662825851, - "2030-01-01": 356039.59697478, - "2029-01-01": 349093.398668391, - "2028-01-01": 342241.067906683, - "2027-01-01": 335294.869600294, - "2026-01-01": 327231.647512202, - "2025-01-01": 322304.696537808, - "2024-01-01": 315310, - "2023-01-01": 304170, - "2022-01-01": 280950, - "2021-01-01": 266930, - "2015-01-01": 266930 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.subtractions": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.subtractions", - "description": null, - "label": "subtractions", - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.subtractions.unemployment_compensation": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.subtractions.unemployment_compensation", - "description": null, - "label": "unemployment compensation", - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.subtractions.unemployment_compensation.income_phase_out": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.subtractions.unemployment_compensation.income_phase_out", - "description": null, - "label": "income phase out", - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.subtractions.unemployment_compensation.income_phase_out.base": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.subtractions.unemployment_compensation.income_phase_out.base", - "description": "Wisconsin uses this base income in phase-out of unemployment compensation subtraction.", - "label": "base", - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.subtractions.unemployment_compensation.income_phase_out.base.SINGLE": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.subtractions.unemployment_compensation.income_phase_out.base.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 12000, - "2015-01-01": 12000 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.subtractions.unemployment_compensation.income_phase_out.base.JOINT": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.subtractions.unemployment_compensation.income_phase_out.base.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 18000, - "2015-01-01": 18000 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.subtractions.unemployment_compensation.income_phase_out.base.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.subtractions.unemployment_compensation.income_phase_out.base.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 18000, - "2015-01-01": 18000 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.subtractions.unemployment_compensation.income_phase_out.base.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.subtractions.unemployment_compensation.income_phase_out.base.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 12000, - "2015-01-01": 12000 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.subtractions.unemployment_compensation.income_phase_out.base.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.subtractions.unemployment_compensation.income_phase_out.base.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 12000, - "2015-01-01": 12000 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.subtractions.unemployment_compensation.income_phase_out.rate": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.subtractions.unemployment_compensation.income_phase_out.rate", - "description": "Wisconsin uses this rate to phase-out income in calculation of unemployment compensation subtraction.", - "label": "Wisconsin income phase-out rate for unemployment compensation subtraction", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.subtractions.sources": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.subtractions.sources", - "description": "Wisconsin subtracts these variables from US adjusted gross income when computing its gross income.", - "label": "WI subtractions from US adjusted gross income", - "unit": "list", - "period": null, - "values": { - "2022-01-01": [ - "wi_unemployment_compensation_subtraction", - "tax_unit_taxable_social_security", - "wi_capital_gain_loss_subtraction", - "wi_retirement_income_subtraction" - ], - "2021-01-01": [ - "wi_unemployment_compensation_subtraction", - "tax_unit_taxable_social_security", - "wi_capital_gain_loss_subtraction", - "wi_childcare_expense_subtraction", - "wi_retirement_income_subtraction" - ], - "2015-01-01": [ - "wi_unemployment_compensation_subtraction", - "tax_unit_taxable_social_security", - "wi_capital_gain_loss_subtraction", - "wi_childcare_expense_subtraction", - "wi_retirement_income_subtraction" - ] - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.subtractions.capital_gain": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.subtractions.capital_gain", - "description": null, - "label": "capital gain", - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.subtractions.capital_gain.fraction": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.subtractions.capital_gain.fraction", - "description": "Wisconsin subtracts from AGI this fraction of long-term capital gains.", - "label": "Wisconsin fraction of capital gains subtracted from AGI", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.3, - "2015-01-01": 0.3 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.subtractions.childcare_expense": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.subtractions.childcare_expense", - "description": null, - "label": "childcare expense", - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.subtractions.childcare_expense.max_amount": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.subtractions.childcare_expense.max_amount", - "description": "Wisconsin subtracts from AGI this maximum of child and dependent care expenses per dependent.", - "label": "Wisconsin maximum care expenses per dependent for AGI subtraction", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 3000, - "2015-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.subtractions.childcare_expense.max_dependents": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.subtractions.childcare_expense.max_dependents", - "description": "Wisconsin recognizes this maximum number of dependents as eligible for care expense AGI subtraction.", - "label": "Wisconsin maximum dependents for care expense AGI subtraction", - "unit": "person", - "period": "year", - "values": { - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.subtractions.retirement_income": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.subtractions.retirement_income", - "description": null, - "label": "retirement income", - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.subtractions.retirement_income.max_amount": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.subtractions.retirement_income.max_amount", - "description": "Wisconsin limits retirement income AGI subtraction to this maximum per person.", - "label": "Wisconsin maximum retirement income AGI subtraction per person", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.subtractions.retirement_income.min_age": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.subtractions.retirement_income.min_age", - "description": "Wisconsin limits its retirement income subtraction to filers this age or older.", - "label": "Wisconsin minimum age for retirement income subtraction", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.subtractions.retirement_income.max_agi": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.subtractions.retirement_income.max_agi", - "description": "Wisconsin limits eligibility for retirement income subtraction to this maximum federal AGI.", - "label": "Wisconsin retirement income subtraction maximum adjusted gross income", - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.subtractions.retirement_income.max_agi.SINGLE": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.subtractions.retirement_income.max_agi.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 15000, - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.subtractions.retirement_income.max_agi.JOINT": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.subtractions.retirement_income.max_agi.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.subtractions.retirement_income.max_agi.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.subtractions.retirement_income.max_agi.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 15000, - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.subtractions.retirement_income.max_agi.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.subtractions.retirement_income.max_agi.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 15000, - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.subtractions.retirement_income.max_agi.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.subtractions.retirement_income.max_agi.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 15000, - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.additions": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.additions", - "description": null, - "label": "additions", - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.additions.sources": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.additions.sources", - "description": "Wisconsin adds these variables to US adjusted gross income when computing its gross income.", - "label": "WI additions to US adjusted gross income", - "unit": "list", - "period": null, - "values": { - "2021-01-01": [ - "tax_exempt_interest_income", - "wi_capital_gain_loss_addition", - "form_4972_lumpsum_distributions" - ], - "2015-01-01": [ - "tax_exempt_interest_income", - "wi_capital_gain_loss_addition", - "form_4972_lumpsum_distributions" - ] - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.additions.capital_loss": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.additions.capital_loss", - "description": null, - "label": "capital loss", - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.additions.capital_loss.limit": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.additions.capital_loss.limit", - "description": "Wisconsin limits capital losses to this amount, based on filing status.", - "label": "Wisconsin capital loss limit", - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.additions.capital_loss.limit.SINGLE": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.additions.capital_loss.limit.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2023-01-01": 3000, - "2021-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.additions.capital_loss.limit.JOINT": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.additions.capital_loss.limit.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2023-01-01": 3000, - "2021-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.additions.capital_loss.limit.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.additions.capital_loss.limit.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2023-01-01": 3000, - "2021-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.additions.capital_loss.limit.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.additions.capital_loss.limit.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2023-01-01": 1500, - "2021-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.additions.capital_loss.limit.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.additions.capital_loss.limit.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2023-01-01": 3000, - "2021-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.deductions": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.deductions", - "description": null, - "label": "deductions", - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.deductions.standard": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.deductions.standard", - "description": null, - "label": "standard", - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.deductions.standard.max": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.deductions.standard.max", - "description": "Wisconsin provides this standard deduction amount before phase out.", - "label": "max", - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.deductions.standard.max.SINGLE": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.deductions.standard.max.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 16470, - "2034-01-01": 16160, - "2033-01-01": 15840, - "2032-01-01": 15530, - "2031-01-01": 15230, - "2030-01-01": 14940, - "2029-01-01": 14650, - "2028-01-01": 14360, - "2027-01-01": 14070, - "2026-01-01": 13730, - "2025-01-01": 13520, - "2024-01-01": 13230, - "2023-01-01": 12760, - "2022-01-01": 11790, - "2021-01-01": 11200, - "2015-01-01": 11200 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.deductions.standard.max.JOINT": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.deductions.standard.max.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 30500, - "2034-01-01": 29910, - "2033-01-01": 29320, - "2032-01-01": 28750, - "2031-01-01": 28200, - "2030-01-01": 27650, - "2029-01-01": 27110, - "2028-01-01": 26580, - "2027-01-01": 26040, - "2026-01-01": 25420, - "2025-01-01": 25030, - "2024-01-01": 24490, - "2023-01-01": 23620, - "2022-01-01": 21820, - "2021-01-01": 20730, - "2015-01-01": 20730 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.deductions.standard.max.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.deductions.standard.max.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 30500, - "2034-01-01": 29910, - "2033-01-01": 29320, - "2032-01-01": 28750, - "2031-01-01": 28200, - "2030-01-01": 27650, - "2029-01-01": 27110, - "2028-01-01": 26580, - "2027-01-01": 26040, - "2026-01-01": 25420, - "2025-01-01": 25030, - "2024-01-01": 24490, - "2023-01-01": 23620, - "2022-01-01": 21820, - "2021-01-01": 20730, - "2015-01-01": 20730 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.deductions.standard.max.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.deductions.standard.max.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 14480, - "2034-01-01": 14200, - "2033-01-01": 13930, - "2032-01-01": 13660, - "2031-01-01": 13390, - "2030-01-01": 13130, - "2029-01-01": 12880, - "2028-01-01": 12620, - "2027-01-01": 12370, - "2026-01-01": 12070, - "2025-01-01": 11890, - "2024-01-01": 11630, - "2023-01-01": 11220, - "2022-01-01": 10370, - "2021-01-01": 9850, - "2015-01-01": 9850 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.deductions.standard.max.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.deductions.standard.max.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 21280, - "2034-01-01": 20870, - "2033-01-01": 20460, - "2032-01-01": 20070, - "2031-01-01": 19680, - "2030-01-01": 19300, - "2029-01-01": 18920, - "2028-01-01": 18550, - "2027-01-01": 18170, - "2026-01-01": 17740, - "2025-01-01": 17470, - "2024-01-01": 17090, - "2023-01-01": 16480, - "2022-01-01": 15230, - "2021-01-01": 14470, - "2015-01-01": 14470 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.deductions.standard.phase_out": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.deductions.standard.phase_out", - "description": null, - "label": "phase out", - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.deductions.standard.phase_out.head_of_household": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.deductions.standard.phase_out.head_of_household", - "description": "Wisconsin phases out its standard deduction for head of household filers according to this schedule.", - "label": "Wisconsin standard deduction head of household phase out" - }, - "gov.states.wi.tax.income.deductions.standard.phase_out.head_of_household[0]": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.deductions.standard.phase_out.head_of_household[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.wi.tax.income.deductions.standard.phase_out.head_of_household[0].rate": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.deductions.standard.phase_out.head_of_household[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.deductions.standard.phase_out.head_of_household[0].threshold": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.deductions.standard.phase_out.head_of_household[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.deductions.standard.phase_out.head_of_household[1]": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.deductions.standard.phase_out.head_of_household[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.wi.tax.income.deductions.standard.phase_out.head_of_household[1].rate": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.deductions.standard.phase_out.head_of_household[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.22515, - "2015-01-01": 0.22515 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.deductions.standard.phase_out.head_of_household[1].threshold": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.deductions.standard.phase_out.head_of_household[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 23747.4111330582, - "2034-01-01": 23287.5640611534, - "2033-01-01": 22833.3941135931, - "2032-01-01": 22390.5784147218, - "2031-01-01": 21959.1169645396, - "2030-01-01": 21533.3326387018, - "2029-01-01": 21113.2254372085, - "2028-01-01": 20698.7953600598, - "2027-01-01": 20278.6881585665, - "2026-01-01": 19791.0231773737, - "2025-01-01": 19493.0403824046, - "2024-01-01": 19070, - "2023-01-01": 18400, - "2022-01-01": 16990, - "2021-01-01": 16150, - "2015-01-01": 16150 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.deductions.standard.phase_out.head_of_household[2]": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.deductions.standard.phase_out.head_of_household[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.wi.tax.income.deductions.standard.phase_out.head_of_household[2].rate": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.deductions.standard.phase_out.head_of_household[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.12, - "2015-01-01": 0.12 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.deductions.standard.phase_out.head_of_household[2].threshold": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.deductions.standard.phase_out.head_of_household[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 69460.2436072811, - "2034-01-01": 68115.2090071879, - "2033-01-01": 66786.779772528, - "2032-01-01": 65491.5612687346, - "2031-01-01": 64229.5534958077, - "2030-01-01": 62984.151088314, - "2029-01-01": 61755.3540462535, - "2028-01-01": 60543.1623696263, - "2027-01-01": 59314.3653275659, - "2026-01-01": 57887.9644368498, - "2025-01-01": 57016.3764808676, - "2024-01-01": 55779, - "2023-01-01": 53778, - "2022-01-01": 49705, - "2021-01-01": 47248, - "2015-01-01": 47248 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.deductions.standard.phase_out.separate": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.deductions.standard.phase_out.separate", - "description": "Wisconsin phases out its standard deduction for separate filers according to this schedule.", - "label": "Wisconsin standard deduction separate phase out" - }, - "gov.states.wi.tax.income.deductions.standard.phase_out.separate[0]": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.deductions.standard.phase_out.separate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.wi.tax.income.deductions.standard.phase_out.separate[0].rate": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.deductions.standard.phase_out.separate[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.deductions.standard.phase_out.separate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.deductions.standard.phase_out.separate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.deductions.standard.phase_out.separate[1]": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.deductions.standard.phase_out.separate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.wi.tax.income.deductions.standard.phase_out.separate[1].rate": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.deductions.standard.phase_out.separate[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.19778, - "2015-01-01": 0.19778 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.deductions.standard.phase_out.separate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.deductions.standard.phase_out.separate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 16263.3030622831, - "2034-01-01": 15948.3789532597, - "2033-01-01": 15637.3427961996, - "2032-01-01": 15334.0825430659, - "2031-01-01": 15038.5981938588, - "2030-01-01": 14747.0017966149, - "2029-01-01": 14459.2933513342, - "2028-01-01": 14175.4728580168, - "2027-01-01": 13887.7644127362, - "2026-01-01": 13553.7893390928, - "2025-01-01": 13349.7172204617, - "2024-01-01": 13060, - "2023-01-01": 12600, - "2022-01-01": 11640, - "2021-01-01": 11060, - "2015-01-01": 11060 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.deductions.standard.phase_out.joint": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.deductions.standard.phase_out.joint", - "description": "Wisconsin phases out its standard deduction for joint filers according to this schedule.", - "label": "Wisconsin standard deduction joint phase out" - }, - "gov.states.wi.tax.income.deductions.standard.phase_out.joint[0]": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.deductions.standard.phase_out.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.wi.tax.income.deductions.standard.phase_out.joint[0].rate": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.deductions.standard.phase_out.joint[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.deductions.standard.phase_out.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.deductions.standard.phase_out.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.deductions.standard.phase_out.joint[1]": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.deductions.standard.phase_out.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.wi.tax.income.deductions.standard.phase_out.joint[1].rate": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.deductions.standard.phase_out.joint[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.19778, - "2015-01-01": 0.19778 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.deductions.standard.phase_out.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.deductions.standard.phase_out.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 34269.9923640147, - "2034-01-01": 33606.385053117, - "2033-01-01": 32950.9704250698, - "2032-01-01": 32311.9411627239, - "2031-01-01": 31689.2972660791, - "2030-01-01": 31074.8460522849, - "2029-01-01": 30468.5875213413, - "2028-01-01": 29870.5216732483, - "2027-01-01": 29264.2631423047, - "2026-01-01": 28560.5116854391, - "2025-01-01": 28130.4914170831, - "2024-01-01": 27520, - "2023-01-01": 26550, - "2022-01-01": 24520, - "2021-01-01": 23300, - "2015-01-01": 23300 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.deductions.standard.phase_out.single": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.deductions.standard.phase_out.single", - "description": "Wisconsin phases out its standard deduction for single filers according to this schedule.", - "label": "Wisconsin standard deduction single phase out" - }, - "gov.states.wi.tax.income.deductions.standard.phase_out.single[0]": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.deductions.standard.phase_out.single[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.wi.tax.income.deductions.standard.phase_out.single[0].rate": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.deductions.standard.phase_out.single[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.deductions.standard.phase_out.single[0].threshold": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.deductions.standard.phase_out.single[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.deductions.standard.phase_out.single[1]": { - "type": "parameterNode", - "parameter": "gov.states.wi.tax.income.deductions.standard.phase_out.single[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.wi.tax.income.deductions.standard.phase_out.single[1].rate": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.deductions.standard.phase_out.single[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.12, - "2015-01-01": 0.12 - }, - "economy": true, - "household": true - }, - "gov.states.wi.tax.income.deductions.standard.phase_out.single[1].threshold": { - "type": "parameter", - "parameter": "gov.states.wi.tax.income.deductions.standard.phase_out.single[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 23747.4111330582, - "2034-01-01": 23287.5640611534, - "2033-01-01": 22833.3941135931, - "2032-01-01": 22390.5784147218, - "2031-01-01": 21959.1169645396, - "2030-01-01": 21533.3326387018, - "2029-01-01": 21113.2254372085, - "2028-01-01": 20698.7953600598, - "2027-01-01": 20278.6881585665, - "2026-01-01": 19791.0231773737, - "2025-01-01": 19493.0403824046, - "2024-01-01": 19070, - "2023-01-01": 18400, - "2022-01-01": 16990, - "2021-01-01": 16150, - "2015-01-01": 16150 - }, - "economy": true, - "household": true - }, - "gov.states.ca": { - "type": "parameterNode", - "parameter": "gov.states.ca", - "description": null, - "label": "California", - "economy": true, - "household": true - }, - "gov.states.ca.dhcs": { - "type": "parameterNode", - "parameter": "gov.states.ca.dhcs", - "description": null, - "label": "dhcs", - "economy": true, - "household": true - }, - "gov.states.ca.dhcs.ffyp": { - "type": "parameterNode", - "parameter": "gov.states.ca.dhcs.ffyp", - "description": null, - "label": "ffyp", - "economy": true, - "household": true - }, - "gov.states.ca.dhcs.ffyp.foster_care_age_minimum": { - "type": "parameter", - "parameter": "gov.states.ca.dhcs.ffyp.foster_care_age_minimum", - "description": "California limits participation in the Former Foster Youth Program to individuals who were in foster care at this age or older.", - "label": "California Former Foster Youth Program foster care age minimum", - "unit": "year", - "period": "year", - "values": { - "2022-01-01": 18, - "2015-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.states.ca.dhcs.ffyp.age_threshold": { - "type": "parameter", - "parameter": "gov.states.ca.dhcs.ffyp.age_threshold", - "description": "California limits participation in the Former Foster Youth Program to individuals below this age.", - "label": "California Former Foster Youth Program age limit", - "unit": "year", - "period": "year", - "values": { - "2022-01-01": 26, - "2015-01-01": 26 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cpi": { - "type": "parameter", - "parameter": "gov.states.ca.cpi", - "description": "California CPI (from the current year's June)", - "label": "California income tax CPI uprating", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 437.113882094748, - "2034-01-01": 428.649568336758, - "2033-01-01": 420.289752279483, - "2032-01-01": 412.13893162364, - "2031-01-01": 404.197106369229, - "2030-01-01": 396.359778815534, - "2029-01-01": 388.626948962555, - "2028-01-01": 380.998616810292, - "2027-01-01": 373.265786957313, - "2026-01-01": 364.289434465814, - "2025-01-01": 358.80452431807, - "2024-01-01": 351.017703986387, - "2023-01-01": 332.035, - "2022-01-01": 322.043, - "2021-01-01": 297.447, - "2020-01-01": 284.835, - "2019-01-01": 280.956, - "2015-01-01": 280.956 - }, - "economy": true, - "household": true - }, - "gov.states.ca.foster_care": { - "type": "parameterNode", - "parameter": "gov.states.ca.foster_care", - "description": null, - "label": "foster care", - "economy": true, - "household": true - }, - "gov.states.ca.foster_care.age_threshold": { - "type": "parameter", - "parameter": "gov.states.ca.foster_care.age_threshold", - "description": "California considers the foster child a minor dependent below the following age.", - "label": "California foster care minor dependent age threshold", - "unit": "year", - "period": "year", - "values": { - "2014-01-01": 21, - "2013-01-01": 20, - "2012-01-01": 19, - "2011-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.states.ca.tax.income": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.agi": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.agi", - "description": null, - "label": "Adjusted Gross Income", - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.agi.subtractions": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.agi.subtractions", - "description": "List of California AGI subtractions.", - "label": "California AGI subtractions", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": ["taxable_social_security"], - "2015-01-01": ["taxable_social_security"] - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.credits", - "description": null, - "label": "credits", - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.refundable": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.refundable", - "description": "California provides these refundable income tax credits.", - "label": "California refundable income tax credits", - "unit": "currency-USD", - "period": "year", - "values": { - "2022-01-01": ["ca_foster_youth_tax_credit", "ca_eitc", "ca_yctc", "ca_sf_wftc"], - "2021-01-01": ["ca_eitc", "ca_yctc"], - "2015-01-01": ["ca_eitc", "ca_yctc"] - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.child_dependent_care": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.credits.child_dependent_care", - "description": null, - "label": "child dependent care", - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.child_dependent_care.input": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.child_dependent_care.input", - "description": "California uses this input for the state child/dependent care credit, based on year.", - "label": "California child/dependent care credit input", - "unit": "list", - "period": "year", - "values": { - "2022-01-01": ["cdcc"], - "2021-01-01": ["ca_federal_capped_cdcc"], - "2012-01-01": ["cdcc"] - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.child_dependent_care.rate": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.credits.child_dependent_care.rate", - "description": "California matches this percentage of the federal CDCC, based on AGI.", - "label": "California CDCC match" - }, - "gov.states.ca.tax.income.credits.child_dependent_care.rate[0]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.credits.child_dependent_care.rate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ca.tax.income.credits.child_dependent_care.rate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.child_dependent_care.rate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.child_dependent_care.rate[0].amount": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.child_dependent_care.rate[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2003-01-01": 0.5, - "2000-01-01": 0.63 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.child_dependent_care.rate[1]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.credits.child_dependent_care.rate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ca.tax.income.credits.child_dependent_care.rate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.child_dependent_care.rate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 40000 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.child_dependent_care.rate[1].amount": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.child_dependent_care.rate[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2003-01-01": 0.43, - "2000-01-01": 0.53 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.child_dependent_care.rate[2]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.credits.child_dependent_care.rate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ca.tax.income.credits.child_dependent_care.rate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.child_dependent_care.rate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 70000 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.child_dependent_care.rate[2].amount": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.child_dependent_care.rate[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2003-01-01": 0.34, - "2000-01-01": 0.42 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.child_dependent_care.rate[3]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.credits.child_dependent_care.rate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ca.tax.income.credits.child_dependent_care.rate[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.child_dependent_care.rate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2000-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.child_dependent_care.rate[3].amount": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.child_dependent_care.rate[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.foster_youth": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.credits.foster_youth", - "description": null, - "label": "foster youth", - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.foster_youth.phase_out": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.credits.foster_youth.phase_out", - "description": null, - "label": "phase out", - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.foster_youth.phase_out.increment": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.foster_youth.phase_out.increment", - "description": "California reduces the foster youth tax credit for each of these increments of earned income exceeding the threshold.", - "label": "California foster youth credit phase out increment", - "unit": "currency-USD", - "period": "year", - "values": { - "2022-01-01": 100, - "2015-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.foster_youth.phase_out.start": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.foster_youth.phase_out.start", - "description": "California phases the foster youth tax credit out for filers with earned income above this threshold.", - "label": "California foster youth tax credit phase out start", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 33156.7157225384, - "2034-01-01": 32514.6660037897, - "2033-01-01": 31880.5428247787, - "2032-01-01": 31262.272725243, - "2031-01-01": 30659.8557051825, - "2030-01-01": 30065.3652248597, - "2029-01-01": 29478.8012842745, - "2028-01-01": 28900.1638834269, - "2027-01-01": 28313.5999428418, - "2026-01-01": 27632.7101793787, - "2025-01-01": 27216.6593194496, - "2024-01-01": 26626, - "2023-01-01": 25775, - "2022-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.foster_youth.phase_out.amount": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.foster_youth.phase_out.amount", - "description": "California reduces the foster youth tax credit by this amount for each increment of earned income in excess of the phase-out threshold.", - "label": "California foster youth tax credit phase out amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2022-01-01": 21.66, - "2015-01-01": 21.66 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.foster_youth.amount": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.credits.foster_youth.amount", - "description": "California provides the following foster youth tax credit amount, based on age.", - "label": "California foster youth tax credit base" - }, - "gov.states.ca.tax.income.credits.foster_youth.amount[0]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.credits.foster_youth.amount[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ca.tax.income.credits.foster_youth.amount[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.foster_youth.amount[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.foster_youth.amount[0].amount": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.foster_youth.amount[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.foster_youth.amount[1]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.credits.foster_youth.amount[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ca.tax.income.credits.foster_youth.amount[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.foster_youth.amount[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 18, - "2015-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.foster_youth.amount[1].amount": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.foster_youth.amount[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 1437.04837165963, - "2034-01-01": 1409.22123369539, - "2033-01-01": 1381.73764064428, - "2032-01-01": 1354.94113741945, - "2031-01-01": 1328.8317240209, - "2030-01-01": 1303.06585553549, - "2029-01-01": 1277.64353196322, - "2028-01-01": 1252.56475330409, - "2027-01-01": 1227.14242973182, - "2026-01-01": 1197.63192169319, - "2025-01-01": 1179.59982177739, - "2024-01-01": 1154, - "2023-01-01": 1117, - "2022-01-01": 1083, - "2015-01-01": 1083 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.foster_youth.amount[2]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.credits.foster_youth.amount[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ca.tax.income.credits.foster_youth.amount[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.foster_youth.amount[2].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2022-01-01": 26, - "2015-01-01": 26 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.foster_youth.amount[2].amount": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.foster_youth.amount[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.renter": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.credits.renter", - "description": null, - "label": "renter", - "economy": false, - "household": true - }, - "gov.states.ca.tax.income.credits.renter.income_cap": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.credits.renter.income_cap", - "description": "California limits the renter credit to filers with California AGI below this amount.", - "label": "California renter tax credit AGI cap", - "economy": false, - "household": true - }, - "gov.states.ca.tax.income.credits.renter.income_cap.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.renter.income_cap.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 65278.6071843756, - "2034-01-01": 64014.546179849, - "2033-01-01": 62766.0908667364, - "2032-01-01": 61548.8469364516, - "2031-01-01": 60362.8143889947, - "2030-01-01": 59192.3875329516, - "2029-01-01": 58037.5663683224, - "2028-01-01": 56898.3508951072, - "2027-01-01": 55743.529730478, - "2026-01-01": 54403.0008380234, - "2025-01-01": 53583.884105193, - "2024-01-01": 52421, - "2023-01-01": 50746, - "2022-01-01": 49220, - "2021-01-01": 45448, - "2015-01-01": 45448 - }, - "economy": false, - "household": true - }, - "gov.states.ca.tax.income.credits.renter.income_cap.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.renter.income_cap.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 65278.6071843756, - "2034-01-01": 64014.546179849, - "2033-01-01": 62766.0908667364, - "2032-01-01": 61548.8469364516, - "2031-01-01": 60362.8143889947, - "2030-01-01": 59192.3875329516, - "2029-01-01": 58037.5663683224, - "2028-01-01": 56898.3508951072, - "2027-01-01": 55743.529730478, - "2026-01-01": 54403.0008380234, - "2025-01-01": 53583.884105193, - "2024-01-01": 52421, - "2023-01-01": 50746, - "2022-01-01": 49220, - "2021-01-01": 45448, - "2015-01-01": 45448 - }, - "economy": false, - "household": true - }, - "gov.states.ca.tax.income.credits.renter.income_cap.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.renter.income_cap.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 130557.214368751, - "2034-01-01": 128029.092359698, - "2033-01-01": 125532.181733473, - "2032-01-01": 123097.693872903, - "2031-01-01": 120725.628777989, - "2030-01-01": 118384.775065903, - "2029-01-01": 116075.132736645, - "2028-01-01": 113796.701790214, - "2027-01-01": 111487.059460956, - "2026-01-01": 108806.001676047, - "2025-01-01": 107167.768210386, - "2024-01-01": 104842, - "2023-01-01": 101492, - "2022-01-01": 98440, - "2021-01-01": 90896, - "2015-01-01": 90896 - }, - "economy": false, - "household": true - }, - "gov.states.ca.tax.income.credits.renter.income_cap.JOINT": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.renter.income_cap.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 130557.214368751, - "2034-01-01": 128029.092359698, - "2033-01-01": 125532.181733473, - "2032-01-01": 123097.693872903, - "2031-01-01": 120725.628777989, - "2030-01-01": 118384.775065903, - "2029-01-01": 116075.132736645, - "2028-01-01": 113796.701790214, - "2027-01-01": 111487.059460956, - "2026-01-01": 108806.001676047, - "2025-01-01": 107167.768210386, - "2024-01-01": 104842, - "2023-01-01": 101492, - "2022-01-01": 98440, - "2021-01-01": 90896, - "2015-01-01": 90896 - }, - "economy": false, - "household": true - }, - "gov.states.ca.tax.income.credits.renter.income_cap.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.renter.income_cap.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 130557.214368751, - "2034-01-01": 128029.092359698, - "2033-01-01": 125532.181733473, - "2032-01-01": 123097.693872903, - "2031-01-01": 120725.628777989, - "2030-01-01": 118384.775065903, - "2029-01-01": 116075.132736645, - "2028-01-01": 113796.701790214, - "2027-01-01": 111487.059460956, - "2026-01-01": 108806.001676047, - "2025-01-01": 107167.768210386, - "2024-01-01": 104842, - "2023-01-01": 101492, - "2022-01-01": 98440, - "2021-01-01": 90896, - "2015-01-01": 90896 - }, - "economy": false, - "household": true - }, - "gov.states.ca.tax.income.credits.renter.amount": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.credits.renter.amount", - "description": "California provides a renter credit of this amount.", - "label": "California renter tax credit amount", - "economy": false, - "household": true - }, - "gov.states.ca.tax.income.credits.renter.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.renter.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "1998-01-01": 60 - }, - "economy": false, - "household": true - }, - "gov.states.ca.tax.income.credits.renter.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.renter.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "1998-01-01": 60 - }, - "economy": false, - "household": true - }, - "gov.states.ca.tax.income.credits.renter.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.renter.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "1998-01-01": 120 - }, - "economy": false, - "household": true - }, - "gov.states.ca.tax.income.credits.renter.amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.renter.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "1998-01-01": 120 - }, - "economy": false, - "household": true - }, - "gov.states.ca.tax.income.credits.renter.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.renter.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "1998-01-01": 120 - }, - "economy": false, - "household": true - }, - "gov.states.ca.tax.income.credits.earned_income": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.credits.earned_income", - "description": null, - "label": "earned income", - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.earned_income.phase_in": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.credits.earned_income.phase_in", - "description": null, - "label": "phase in", - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.earned_income.phase_in.rate": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.credits.earned_income.phase_in.rate", - "description": "California phases in the CalEITC at this rate, based on the number of children.", - "label": "CalEITC phase-in rate" - }, - "gov.states.ca.tax.income.credits.earned_income.phase_in.rate[0]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.credits.earned_income.phase_in.rate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ca.tax.income.credits.earned_income.phase_in.rate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.earned_income.phase_in.rate[0].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.earned_income.phase_in.rate[0].amount": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.earned_income.phase_in.rate[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2015-01-01": 0.0765 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.earned_income.phase_in.rate[1]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.credits.earned_income.phase_in.rate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ca.tax.income.credits.earned_income.phase_in.rate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.earned_income.phase_in.rate[1].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.earned_income.phase_in.rate[1].amount": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.earned_income.phase_in.rate[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2015-01-01": 0.34 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.earned_income.phase_in.rate[2]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.credits.earned_income.phase_in.rate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ca.tax.income.credits.earned_income.phase_in.rate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.earned_income.phase_in.rate[2].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.earned_income.phase_in.rate[2].amount": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.earned_income.phase_in.rate[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2015-01-01": 0.4 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.earned_income.phase_in.rate[3]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.credits.earned_income.phase_in.rate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ca.tax.income.credits.earned_income.phase_in.rate[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.earned_income.phase_in.rate[3].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.earned_income.phase_in.rate[3].amount": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.earned_income.phase_in.rate[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2015-01-01": 0.45 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.earned_income.earned_income_amount": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.credits.earned_income.earned_income_amount", - "description": "California stops phasing in the CalEITC at this income level, depending on the number of children.", - "label": "CalEITC phase-in income end" - }, - "gov.states.ca.tax.income.credits.earned_income.earned_income_amount[0]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.credits.earned_income.earned_income_amount[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ca.tax.income.credits.earned_income.earned_income_amount[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.earned_income.earned_income_amount[0].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.earned_income.earned_income_amount[0].amount": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.earned_income.earned_income_amount[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2035-01-01": 5766.13550853072, - "2034-01-01": 5654.47952569759, - "2033-01-01": 5544.20201178832, - "2032-01-01": 5436.68143572679, - "2031-01-01": 5331.91779751299, - "2030-01-01": 5228.53262822305, - "2029-01-01": 5126.52592785698, - "2028-01-01": 5025.89769641477, - "2027-01-01": 4923.8909960487, - "2026-01-01": 4805.48051548863, - "2025-01-01": 4733.12697912312, - "2024-01-01": 4630.40806981305, - "2023-01-01": 4380, - "2022-01-01": 4248, - "2021-01-01": 3922, - "2015-01-01": 3922 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.earned_income.earned_income_amount[1]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.credits.earned_income.earned_income_amount[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ca.tax.income.credits.earned_income.earned_income_amount[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.earned_income.earned_income_amount[1].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.earned_income.earned_income_amount[1].amount": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.earned_income.earned_income_amount[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2035-01-01": 8658.41854785537, - "2034-01-01": 8490.75612797101, - "2033-01-01": 8325.16361450497, - "2032-01-01": 8163.71091387559, - "2031-01-01": 8006.39802608286, - "2030-01-01": 7851.15504470845, - "2029-01-01": 7697.98196975236, - "2028-01-01": 7546.8788012146, - "2027-01-01": 7393.70572625852, - "2026-01-01": 7215.90076492437, - "2025-01-01": 7107.25482687049, - "2024-01-01": 6953.01230026494, - "2023-01-01": 6577, - "2022-01-01": 6379, - "2021-01-01": 5890, - "2015-01-01": 5890 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.earned_income.earned_income_amount[2]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.credits.earned_income.earned_income_amount[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ca.tax.income.credits.earned_income.earned_income_amount[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.earned_income.earned_income_amount[2].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.earned_income.earned_income_amount[2].amount": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.earned_income.earned_income_amount[2].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2035-01-01": 12153.6445239168, - "2034-01-01": 11918.3002240274, - "2033-01-01": 11685.8614093219, - "2032-01-01": 11459.2335649839, - "2031-01-01": 11238.4166910137, - "2030-01-01": 11020.5053022272, - "2029-01-01": 10805.4993986246, - "2028-01-01": 10593.3989802058, - "2027-01-01": 10378.3930766031, - "2026-01-01": 10128.811899313, - "2025-01-01": 9976.30782448964, - "2024-01-01": 9759.80075354203, - "2023-01-01": 9232, - "2022-01-01": 8954, - "2021-01-01": 8268, - "2015-01-01": 8268 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.earned_income.eligibility": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.credits.earned_income.eligibility", - "description": null, - "label": "eligibility", - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.earned_income.eligibility.max_investment_income": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.earned_income.eligibility.max_investment_income", - "description": "California limits the CalEITC to filers with investment income below this threshold.", - "label": "CalEITC investment income limit", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 5957.02355618756, - "2034-01-01": 5841.67119949351, - "2033-01-01": 5727.74294596853, - "2032-01-01": 5616.66289878167, - "2031-01-01": 5508.43105793294, - "2030-01-01": 5401.62332025327, - "2029-01-01": 5296.23968574265, - "2028-01-01": 5192.28015440111, - "2027-01-01": 5086.8965198905, - "2026-01-01": 4964.56605766805, - "2025-01-01": 4889.81725582925, - "2024-01-01": 4783.69783468129, - "2023-01-01": 4525, - "2022-01-01": 4389, - "2021-01-01": 4053, - "2015-01-01": 4053 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.earned_income.eligibility.age": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.credits.earned_income.eligibility.age", - "description": null, - "label": "age", - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.earned_income.eligibility.age.max": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.earned_income.eligibility.age.max", - "description": "California limits CalEITC to filers below this age.", - "label": "CalEITC max age", - "unit": "year", - "period": "year", - "values": { - "2018-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.earned_income.eligibility.age.min": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.earned_income.eligibility.age.min", - "description": "CalEITC is limited to filers this age and above.", - "label": "CalEITC minimum age", - "unit": "year", - "period": "year", - "values": { - "2018-01-01": 18, - "2015-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.earned_income.adjustment": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.credits.earned_income.adjustment", - "description": null, - "label": "adjustment", - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.earned_income.adjustment.factor": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.earned_income.adjustment.factor", - "description": "California defines the following adjustment factor to the federal EITC in its annual Budget Act.", - "label": "CalEITC adjustment factor", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.85 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.earned_income.phase_out": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.credits.earned_income.phase_out", - "description": null, - "label": "phase out", - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.earned_income.phase_out.start": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.credits.earned_income.phase_out.start", - "description": "California phases out the CalEITC at income above this threshold, depending on the number of children.", - "label": "CalEITC phase-out start income" - }, - "gov.states.ca.tax.income.credits.earned_income.phase_out.start[0]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.credits.earned_income.phase_out.start[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ca.tax.income.credits.earned_income.phase_out.start[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.earned_income.phase_out.start[0].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.earned_income.phase_out.start[0].amount": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.earned_income.phase_out.start[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2035-01-01": 5766.13550853072, - "2034-01-01": 5654.47952569759, - "2033-01-01": 5544.20201178832, - "2032-01-01": 5436.68143572679, - "2031-01-01": 5331.91779751299, - "2030-01-01": 5228.53262822305, - "2029-01-01": 5126.52592785698, - "2028-01-01": 5025.89769641477, - "2027-01-01": 4923.8909960487, - "2026-01-01": 4805.48051548863, - "2025-01-01": 4733.12697912312, - "2024-01-01": 4630.40806981305, - "2023-01-01": 4380, - "2022-01-01": 4248, - "2021-01-01": 3922, - "2015-01-01": 3922 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.earned_income.phase_out.start[1]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.credits.earned_income.phase_out.start[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ca.tax.income.credits.earned_income.phase_out.start[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.earned_income.phase_out.start[1].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.earned_income.phase_out.start[1].amount": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.earned_income.phase_out.start[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2035-01-01": 8658.41854785537, - "2034-01-01": 8490.75612797101, - "2033-01-01": 8325.16361450497, - "2032-01-01": 8163.71091387559, - "2031-01-01": 8006.39802608286, - "2030-01-01": 7851.15504470845, - "2029-01-01": 7697.98196975236, - "2028-01-01": 7546.8788012146, - "2027-01-01": 7393.70572625852, - "2026-01-01": 7215.90076492437, - "2025-01-01": 7107.25482687049, - "2024-01-01": 6953.01230026494, - "2023-01-01": 6577, - "2022-01-01": 6379, - "2021-01-01": 5890, - "2015-01-01": 5890 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.earned_income.phase_out.start[2]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.credits.earned_income.phase_out.start[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ca.tax.income.credits.earned_income.phase_out.start[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.earned_income.phase_out.start[2].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.earned_income.phase_out.start[2].amount": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.earned_income.phase_out.start[2].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2035-01-01": 12153.6445239168, - "2034-01-01": 11918.3002240274, - "2033-01-01": 11685.8614093219, - "2032-01-01": 11459.2335649839, - "2031-01-01": 11238.4166910137, - "2030-01-01": 11020.5053022272, - "2029-01-01": 10805.4993986246, - "2028-01-01": 10593.3989802058, - "2027-01-01": 10378.3930766031, - "2026-01-01": 10128.811899313, - "2025-01-01": 9976.30782448964, - "2024-01-01": 9759.80075354203, - "2023-01-01": 9232, - "2022-01-01": 8954, - "2021-01-01": 8268, - "2015-01-01": 8268 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.earned_income.phase_out.rate": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.credits.earned_income.phase_out.rate", - "description": "California phases out the CalEITC at this rate, depending on the number of children.", - "label": "CalEITC phase-out rate" - }, - "gov.states.ca.tax.income.credits.earned_income.phase_out.rate[0]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.credits.earned_income.phase_out.rate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ca.tax.income.credits.earned_income.phase_out.rate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.earned_income.phase_out.rate[0].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.earned_income.phase_out.rate[0].amount": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.earned_income.phase_out.rate[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2015-01-01": 0.0765 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.earned_income.phase_out.rate[1]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.credits.earned_income.phase_out.rate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ca.tax.income.credits.earned_income.phase_out.rate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.earned_income.phase_out.rate[1].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.earned_income.phase_out.rate[1].amount": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.earned_income.phase_out.rate[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2015-01-01": 0.34 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.earned_income.phase_out.rate[2]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.credits.earned_income.phase_out.rate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ca.tax.income.credits.earned_income.phase_out.rate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.earned_income.phase_out.rate[2].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.earned_income.phase_out.rate[2].amount": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.earned_income.phase_out.rate[2].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2015-01-01": 0.4 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.earned_income.phase_out.rate[3]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.credits.earned_income.phase_out.rate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ca.tax.income.credits.earned_income.phase_out.rate[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.earned_income.phase_out.rate[3].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.earned_income.phase_out.rate[3].amount": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.earned_income.phase_out.rate[3].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2015-01-01": 0.45 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.earned_income.phase_out.final": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.credits.earned_income.phase_out.final", - "description": null, - "label": "final", - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.earned_income.phase_out.final.start": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.credits.earned_income.phase_out.final.start", - "description": "Earned income point at which CA filers phase out of CalEITC smoothly at the earnings limit.", - "label": "CalEITC final phase-out threshold" - }, - "gov.states.ca.tax.income.credits.earned_income.phase_out.final.start[0]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.credits.earned_income.phase_out.final.start[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ca.tax.income.credits.earned_income.phase_out.final.start[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.earned_income.phase_out.final.start[0].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.earned_income.phase_out.final.start[0].amount": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.earned_income.phase_out.final.start[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2035-01-01": 311, - "2034-01-01": 305, - "2033-01-01": 299, - "2032-01-01": 293, - "2031-01-01": 288, - "2030-01-01": 282, - "2029-01-01": 277, - "2028-01-01": 271, - "2027-01-01": 266, - "2026-01-01": 259, - "2025-01-01": 255, - "2024-01-01": 250, - "2023-01-01": 236, - "2022-01-01": 229, - "2021-01-01": 212, - "2020-01-01": 203, - "2019-01-01": 200, - "2015-01-01": 200 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.earned_income.phase_out.final.start[1]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.credits.earned_income.phase_out.final.start[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ca.tax.income.credits.earned_income.phase_out.final.start[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.earned_income.phase_out.final.start[1].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.earned_income.phase_out.final.start[1].amount": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.earned_income.phase_out.final.start[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2035-01-01": 786, - "2034-01-01": 770, - "2033-01-01": 755, - "2032-01-01": 741, - "2031-01-01": 727, - "2030-01-01": 712, - "2029-01-01": 699, - "2028-01-01": 685, - "2027-01-01": 671, - "2026-01-01": 655, - "2025-01-01": 645, - "2024-01-01": 631, - "2023-01-01": 597, - "2022-01-01": 579, - "2021-01-01": 535, - "2020-01-01": 512, - "2019-01-01": 505, - "2015-01-01": 505 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.earned_income.phase_out.final.end": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.earned_income.phase_out.final.end", - "description": "California limits CalEITC to filers with less than this amount of earnings.", - "label": "CalEITC max earnings", - "unit": "currency-USD", - "period": "year", - "values": { - "2024-01-01": 31950, - "2023-01-01": 30951, - "2019-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.young_child": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.credits.young_child", - "description": null, - "label": "young child", - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.young_child.ineligible_age": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.young_child.ineligible_age", - "description": "California limits the young child tax credit to filers with children below this age.", - "label": "California young child tax credit ineligible age", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 6, - "2015-01-01": 6 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.young_child.loss_threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.young_child.loss_threshold", - "description": "California limits its Young Child Tax Credit to filers with losses not exceeding this value.", - "label": "California Young Child Tax Credit loss threshold", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 43089.0361838531, - "2034-01-01": 42254.6560904053, - "2033-01-01": 41430.5769857655, - "2032-01-01": 40627.0998587417, - "2031-01-01": 39844.2247093339, - "2030-01-01": 39071.6505487341, - "2029-01-01": 38309.3773769423, - "2028-01-01": 37557.4051939585, - "2027-01-01": 36795.1320221667, - "2026-01-01": 35910.2770835597, - "2025-01-01": 35369.5953493426, - "2024-01-01": 34602, - "2023-01-01": 33497, - "2022-01-01": 32490, - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.young_child.phase_out": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.credits.young_child.phase_out", - "description": null, - "label": "phase out", - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.young_child.phase_out.increment": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.young_child.phase_out.increment", - "description": "California phases out its young child tax credit at a given amount per increment of this value.", - "label": "California young child tax credit phase out increment", - "unit": "currency-USD", - "period": "year", - "values": { - "2019-01-01": 100, - "2015-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.young_child.phase_out.start": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.young_child.phase_out.start", - "description": "California begins to phase out its young child tax credit at this income level.", - "label": "California young child tax credit phase out start", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 33156.7157225384, - "2034-01-01": 32514.6660037897, - "2033-01-01": 31880.5428247787, - "2032-01-01": 31262.272725243, - "2031-01-01": 30659.8557051825, - "2030-01-01": 30065.3652248597, - "2029-01-01": 29478.8012842745, - "2028-01-01": 28900.1638834269, - "2027-01-01": 28313.5999428418, - "2026-01-01": 27632.7101793787, - "2025-01-01": 27216.6593194496, - "2024-01-01": 26626, - "2023-01-01": 25775, - "2019-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.young_child.phase_out.amount": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.young_child.phase_out.amount", - "description": "California phases out its young child tax credit at this amount per increment.", - "label": "California young child tax credit phase out amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2024-01-01": 21.67, - "2022-01-01": 21.66, - "2021-01-01": 20, - "2015-01-01": 20 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.young_child.amount": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.young_child.amount", - "description": "California provides a young child tax credit of this amount.", - "label": "California young child tax credit amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1437.04837165963, - "2034-01-01": 1409.22123369539, - "2033-01-01": 1381.73764064428, - "2032-01-01": 1354.94113741945, - "2031-01-01": 1328.8317240209, - "2030-01-01": 1303.06585553549, - "2029-01-01": 1277.64353196322, - "2028-01-01": 1252.56475330409, - "2027-01-01": 1227.14242973182, - "2026-01-01": 1197.63192169319, - "2025-01-01": 1179.59982177739, - "2024-01-01": 1154, - "2023-01-01": 1117, - "2022-01-01": 1083, - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.credits.nonrefundable": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.credits.nonrefundable", - "description": "California provides these nonrefundable income tax credits.", - "label": "California nonrefundable income tax credits", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": ["ca_exemptions", "ca_cdcc", "ca_renter_credit"], - "2015-01-01": ["ca_exemptions", "ca_cdcc", "ca_renter_credit"] - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.mental_health_services": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.mental_health_services", - "description": "California levies this additional mental health services tax.", - "label": "California mental health services tax" - }, - "gov.states.ca.tax.income.mental_health_services[0]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.mental_health_services[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ca.tax.income.mental_health_services[0].rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.mental_health_services[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2005-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.mental_health_services[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.mental_health_services[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.mental_health_services[1]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.mental_health_services[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ca.tax.income.mental_health_services[1].rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.mental_health_services[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2005-01-01": 0.01 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.mental_health_services[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.mental_health_services[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2005-01-01": 1000000 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.exemptions": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.exemptions", - "description": null, - "label": "exemptions", - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.exemptions.dependent_amount": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.exemptions.dependent_amount", - "description": "California exempts this amount from taxable income per dependent.", - "label": "California dependent exemption amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 574.072183132659, - "2034-01-01": 562.955796129612, - "2033-01-01": 551.976648472282, - "2032-01-01": 541.271979506385, - "2031-01-01": 530.841789231921, - "2030-01-01": 520.548838303174, - "2029-01-01": 510.393126720143, - "2028-01-01": 500.374654482829, - "2027-01-01": 490.218942899799, - "2026-01-01": 478.430083102741, - "2025-01-01": 471.226618578318, - "2024-01-01": 461, - "2023-01-01": 446, - "2022-01-01": 433, - "2021-01-01": 400, - "1999-01-01": 227 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.exemptions.personal_scale": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.exemptions.personal_scale", - "description": "Scaling factor for personal exemption based on filing status", - "label": "California income personal exemption scaling factor", - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.exemptions.personal_scale.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.exemptions.personal_scale.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.exemptions.personal_scale.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.exemptions.personal_scale.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.exemptions.personal_scale.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.exemptions.personal_scale.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.exemptions.personal_scale.JOINT": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.exemptions.personal_scale.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.exemptions.personal_scale.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.exemptions.personal_scale.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.exemptions.phase_out": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.exemptions.phase_out", - "description": null, - "label": "phase out", - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.exemptions.phase_out.increment": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.exemptions.phase_out.increment", - "description": "California reduces its exemption for each of these increments of income in excess of the threshold.", - "label": "California exemption phase out increment", - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.exemptions.phase_out.increment.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.exemptions.phase_out.increment.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "1991-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.exemptions.phase_out.increment.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.exemptions.phase_out.increment.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "1991-01-01": 1250 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.exemptions.phase_out.increment.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.exemptions.phase_out.increment.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "1991-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.exemptions.phase_out.increment.JOINT": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.exemptions.phase_out.increment.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "1991-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.exemptions.phase_out.increment.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.exemptions.phase_out.increment.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "1991-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.exemptions.phase_out.start": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.exemptions.phase_out.start", - "description": "California reduces the exemption amount for filers with income exceeding this threshold.", - "label": "California exemption phase out start", - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.exemptions.phase_out.start.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.exemptions.phase_out.start.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2023-01-01": 237035, - "2022-01-01": 229908, - "2021-01-01": 212288, - "1991-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.exemptions.phase_out.start.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.exemptions.phase_out.start.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2023-01-01": 237035, - "2022-01-01": 229908, - "2021-01-01": 212288, - "1991-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.exemptions.phase_out.start.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.exemptions.phase_out.start.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2023-01-01": 474075, - "2022-01-01": 459821, - "2021-01-01": 424581, - "1991-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.exemptions.phase_out.start.JOINT": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.exemptions.phase_out.start.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2023-01-01": 474075, - "2022-01-01": 459821, - "2021-01-01": 424581, - "1991-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.exemptions.phase_out.start.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.exemptions.phase_out.start.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2023-01-01": 355558, - "2022-01-01": 344867, - "2021-01-01": 318437, - "1991-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.exemptions.phase_out.amount": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.exemptions.phase_out.amount", - "description": "California reduces its exemption by this amount for each increment of income exceeding the threshold.", - "label": "California exemption phase out amount", - "unit": "currency-USD", - "period": "year", - "values": { - "1991-01-01": 6 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.exemptions.amount": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.exemptions.amount", - "description": "California exempts this amount from taxable income.", - "label": "California income exemption amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 185.546106912725, - "2034-01-01": 181.953174887879, - "2033-01-01": 178.404600048525, - "2032-01-01": 174.944739580155, - "2031-01-01": 171.573593482768, - "2030-01-01": 168.246804570874, - "2029-01-01": 164.964372844471, - "2028-01-01": 161.726298303561, - "2027-01-01": 158.443866577158, - "2026-01-01": 154.633584343402, - "2025-01-01": 152.305349605573, - "2024-01-01": 149, - "2023-01-01": 144, - "2022-01-01": 140, - "2021-01-01": 129, - "1991-01-01": 52 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.amt": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.amt", - "description": null, - "label": "amt", - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.amt.tentative_min_tax_rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.amt.tentative_min_tax_rate", - "description": "California multiplies the alternative minimum tax by this rate to calculate the tentative alternative minimum tax.", - "label": "California tentative alternative minimum tax rate", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.07, - "2015-01-01": 0.07 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.amt.exemption": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.amt.exemption", - "description": null, - "label": "exemption", - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.amt.exemption.amti": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.amt.exemption.amti", - "description": null, - "label": "amti", - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.amt.exemption.amti.threshold": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.amt.exemption.amti.threshold", - "description": null, - "label": "threshold", - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.amt.exemption.amti.threshold.upper": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.amt.exemption.amti.threshold.upper", - "description": "California limits the alternative minimum tax exemption amount to filers with alternative minimum taxable income above this threshold, based on filing status.", - "label": "California alternative minimum tax exemption upper AMTI threshold", - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.amt.exemption.amti.threshold.upper.JOINT": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.amt.exemption.amti.threshold.upper.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 930498, - "2023-01-01": 900771, - "2022-01-01": 873686, - "2021-01-01": 806727, - "2015-01-01": 806727 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.amt.exemption.amti.threshold.upper.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.amt.exemption.amti.threshold.upper.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2024-01-01": 697870, - "2023-01-01": 675575, - "2022-01-01": 655262, - "2021-01-01": 605043, - "2015-01-01": 605043 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.amt.exemption.amti.threshold.upper.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.amt.exemption.amti.threshold.upper.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 930498, - "2023-01-01": 900771, - "2022-01-01": 873686, - "2021-01-01": 806727, - "2015-01-01": 806727 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.amt.exemption.amti.threshold.upper.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.amt.exemption.amti.threshold.upper.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 697870, - "2023-01-01": 675575, - "2022-01-01": 655262, - "2021-01-01": 605043, - "2015-01-01": 605043 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.amt.exemption.amti.threshold.upper.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.amt.exemption.amti.threshold.upper.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 465231, - "2023-01-01": 450368, - "2022-01-01": 436827, - "2021-01-01": 403348, - "2015-01-01": 403348 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.amt.exemption.amti.threshold.lower": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.amt.exemption.amti.threshold.lower", - "description": "California provides a flat alternative minimum tax exemption amount for filers with alternative minimum taxable income below this amount, based on filing status.", - "label": "California alternative minimum tax exemption lower AMTI threshold", - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.amt.exemption.amti.threshold.lower.JOINT": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.amt.exemption.amti.threshold.lower.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 489719, - "2023-01-01": 474075, - "2022-01-01": 422750, - "2021-01-01": 390351, - "2015-01-01": 390351 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.amt.exemption.amti.threshold.lower.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.amt.exemption.amti.threshold.lower.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2024-01-01": 367291, - "2023-01-01": 355558, - "2022-01-01": 317062, - "2021-01-01": 292763, - "2015-01-01": 292763 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.amt.exemption.amti.threshold.lower.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.amt.exemption.amti.threshold.lower.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 489719, - "2023-01-01": 474075, - "2022-01-01": 422750, - "2021-01-01": 390351, - "2015-01-01": 390351 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.amt.exemption.amti.threshold.lower.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.amt.exemption.amti.threshold.lower.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 244857, - "2023-01-01": 237035, - "2022-01-01": 317062, - "2021-01-01": 292763, - "2015-01-01": 292763 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.amt.exemption.amti.threshold.lower.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.amt.exemption.amti.threshold.lower.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 244857, - "2023-01-01": 237035, - "2022-01-01": 211371, - "2021-01-01": 195172, - "2015-01-01": 195172 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.amt.exemption.amount": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.amt.exemption.amount", - "description": "California provides the following alternative minimum tax exemption amount.", - "label": "California exemption amount", - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.amt.exemption.amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.amt.exemption.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 120065, - "2023-01-01": 116229, - "2022-01-01": 112734, - "2021-01-01": 104094, - "2015-01-01": 104094 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.amt.exemption.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.amt.exemption.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2024-01-01": 90048, - "2023-01-01": 87171, - "2022-01-01": 84550, - "2021-01-01": 78070, - "2015-01-01": 78070 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.amt.exemption.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.amt.exemption.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 120065, - "2023-01-01": 116229, - "2022-01-01": 112734, - "2021-01-01": 104094, - "2015-01-01": 104094 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.amt.exemption.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.amt.exemption.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 90048, - "2023-01-01": 87171, - "2022-01-01": 84550, - "2021-01-01": 78070, - "2015-01-01": 78070 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.amt.exemption.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.amt.exemption.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 60029, - "2023-01-01": 58111, - "2022-01-01": 56364, - "2021-01-01": 52044, - "2015-01-01": 52044 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.amt.amti": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.amt.amti", - "description": null, - "label": "amti", - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.amt.amti.sources": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.amt.amti.sources", - "description": "California adds the following items to calculate the total adjustments for the alternative minimum taxable income.", - "label": "California altenative minimum taxable income adjustments", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": [ - "medical_expense_deduction", - "real_estate_taxes", - "mortgage_interest", - "misc_deduction" - ], - "2015-01-01": [ - "medical_expense_deduction", - "real_estate_taxes", - "mortgage_interest", - "misc_deduction" - ] - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates", - "description": null, - "label": "rates", - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.head_of_household": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.head_of_household", - "description": "California taxes income at these rates for head of household filers.", - "label": "California head of household income tax rate" - }, - "gov.states.ca.tax.income.rates.head_of_household[0]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.head_of_household[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ca.tax.income.rates.head_of_household[0].rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.head_of_household[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.01, - "2015-01-01": 0.01 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.head_of_household[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.head_of_household[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.head_of_household[1]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.head_of_household[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ca.tax.income.rates.head_of_household[1].rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.head_of_household[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.02, - "2015-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.head_of_household[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.head_of_household[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2035-01-01": 26807.0539832901, - "2034-01-01": 26287.959703432, - "2033-01-01": 25775.2739949302, - "2032-01-01": 25275.4054291409, - "2031-01-01": 24788.3540060641, - "2030-01-01": 24307.7111543437, - "2029-01-01": 23833.4768739794, - "2028-01-01": 23365.6511649715, - "2027-01-01": 22891.4168846073, - "2026-01-01": 22340.9206051035, - "2025-01-01": 22004.545375565, - "2024-01-01": 21527, - "2023-01-01": 20839, - "2022-01-01": 20212, - "2021-01-01": 18663, - "2015-01-01": 18663 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.head_of_household[2]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.head_of_household[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ca.tax.income.rates.head_of_household[2].rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.head_of_household[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.head_of_household[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.head_of_household[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2035-01-01": 63509.0701513354, - "2034-01-01": 62279.2746260525, - "2033-01-01": 61064.6617615757, - "2032-01-01": 59880.4142187107, - "2031-01-01": 58726.5319974577, - "2030-01-01": 57587.8324370106, - "2029-01-01": 56464.3155373694, - "2028-01-01": 55355.9812985343, - "2027-01-01": 54232.4643988932, - "2026-01-01": 52928.2738356611, - "2025-01-01": 52131.3612743909, - "2024-01-01": 51000, - "2023-01-01": 49371, - "2022-01-01": 47887, - "2021-01-01": 44217, - "2015-01-01": 44217 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.head_of_household[3]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.head_of_household[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ca.tax.income.rates.head_of_household[3].rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.head_of_household[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.06, - "2015-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.head_of_household[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.head_of_household[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2035-01-01": 81869.4178044979, - "2034-01-01": 80284.0908042196, - "2033-01-01": 78718.3357422163, - "2032-01-01": 77191.7245567631, - "2031-01-01": 75704.2572478599, - "2030-01-01": 74236.3618772318, - "2029-01-01": 72788.0384448787, - "2028-01-01": 71359.2869508007, - "2027-01-01": 69910.9635184477, - "2026-01-01": 68229.7340206217, - "2025-01-01": 67202.4356004619, - "2024-01-01": 65744, - "2023-01-01": 63644, - "2022-01-01": 61730, - "2021-01-01": 56999, - "2015-01-01": 56999 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.head_of_household[4]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.head_of_household[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ca.tax.income.rates.head_of_household[4].rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.head_of_household[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.08, - "2015-01-01": 0.08 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.head_of_household[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.head_of_household[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2035-01-01": 101320.627133201, - "2034-01-01": 99358.6451112576, - "2033-01-01": 97420.8850895851, - "2032-01-01": 95531.5690684544, - "2031-01-01": 93690.6970478656, - "2030-01-01": 91874.0470275476, - "2029-01-01": 90081.6190075005, - "2028-01-01": 88313.4129877244, - "2027-01-01": 86520.9849676773, - "2026-01-01": 84440.3151444065, - "2025-01-01": 83168.9427201871, - "2024-01-01": 81364, - "2023-01-01": 78765, - "2022-01-01": 76397, - "2021-01-01": 70542, - "2015-01-01": 70542 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.head_of_household[5]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.head_of_household[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ca.tax.income.rates.head_of_household[5].rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.head_of_household[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.093, - "2015-01-01": 0.093 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.head_of_household[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.head_of_household[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2035-01-01": 119679.729510478, - "2034-01-01": 117362.240127177, - "2033-01-01": 115073.361723917, - "2032-01-01": 112841.705280738, - "2031-01-01": 110667.27079764, - "2030-01-01": 108521.447294584, - "2029-01-01": 106404.234771568, - "2028-01-01": 104315.633228593, - "2027-01-01": 102198.420705577, - "2026-01-01": 99740.7375200761, - "2025-01-01": 98238.9948627036, - "2024-01-01": 96107, - "2023-01-01": 93037, - "2022-01-01": 90240, - "2021-01-01": 83324, - "2015-01-01": 83324 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.head_of_household[6]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.head_of_household[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.ca.tax.income.rates.head_of_household[6].rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.head_of_household[6].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.103, - "2015-01-01": 0.103 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.head_of_household[6].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.head_of_household[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2035-01-01": 610799.104818411, - "2034-01-01": 598971.534297184, - "2033-01-01": 587289.983165108, - "2032-01-01": 575900.470811335, - "2031-01-01": 564802.997235863, - "2030-01-01": 553851.543049542, - "2029-01-01": 543046.108252371, - "2028-01-01": 532386.692844353, - "2027-01-01": 521581.258047182, - "2026-01-01": 509038.192519116, - "2025-01-01": 501373.878148232, - "2024-01-01": 490493, - "2023-01-01": 474824, - "2022-01-01": 460547, - "2021-01-01": 425251, - "2015-01-01": 425251 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.head_of_household[7]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.head_of_household[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.ca.tax.income.rates.head_of_household[7].rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.head_of_household[7].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.113, - "2015-01-01": 0.113 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.head_of_household[7].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.head_of_household[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2035-01-01": 732960.669168333, - "2034-01-01": 718767.550783768, - "2033-01-01": 704749.656082963, - "2032-01-01": 691082.208749678, - "2031-01-01": 677765.208783914, - "2030-01-01": 664623.432501909, - "2029-01-01": 651656.879903665, - "2028-01-01": 638865.55098918, - "2027-01-01": 625898.998390936, - "2026-01-01": 610847.283955947, - "2025-01-01": 601650.084834854, - "2024-01-01": 588593, - "2023-01-01": 569790, - "2022-01-01": 552658, - "2021-01-01": 510303, - "2015-01-01": 510303 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.head_of_household[8]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.head_of_household[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.ca.tax.income.rates.head_of_household[8].rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.head_of_household[8].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.123, - "2015-01-01": 0.123 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.head_of_household[8].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.head_of_household[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2035-01-01": 1221599.45491271, - "2034-01-01": 1197944.28975662, - "2033-01-01": 1174581.16367653, - "2032-01-01": 1151802.11574844, - "2031-01-01": 1129607.14597235, - "2030-01-01": 1107704.21527227, - "2029-01-01": 1086093.32364818, - "2028-01-01": 1064774.4711001, - "2027-01-01": 1043163.57947602, - "2026-01-01": 1018077.42284752, - "2025-01-01": 1002748.77848002, - "2024-01-01": 980987, - "2023-01-01": 949649, - "2022-01-01": 921059, - "2021-01-01": 850503, - "2015-01-01": 850503 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.separate": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.separate", - "description": "California taxes income at these rates for separate filers.", - "label": "California separate income tax rate" - }, - "gov.states.ca.tax.income.rates.separate[0]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.separate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ca.tax.income.rates.separate[0].rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.separate[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.01, - "2015-01-01": 0.01 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.separate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.separate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.separate[1]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.separate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ca.tax.income.rates.separate[1].rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.separate[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.02, - "2015-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.separate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.separate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2035-01-01": 13394.1874225052, - "2034-01-01": 13134.8211348592, - "2033-01-01": 12878.6569001472, - "2032-01-01": 12628.896771303, - "2031-01-01": 12385.5407483266, - "2030-01-01": 12145.386778284, - "2029-01-01": 11908.4348611754, - "2028-01-01": 11674.6849970007, - "2027-01-01": 11437.7330798921, - "2026-01-01": 11162.67673287, - "2025-01-01": 10994.6063111245, - "2024-01-01": 10756, - "2023-01-01": 10412, - "2022-01-01": 10099, - "2021-01-01": 9325, - "2015-01-01": 9325 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.separate[2]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.separate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ca.tax.income.rates.separate[2].rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.separate[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.separate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.separate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2035-01-01": 31753.2897997824, - "2034-01-01": 31138.4161507787, - "2033-01-01": 30531.1335344788, - "2032-01-01": 29939.0329835864, - "2031-01-01": 29362.1144981014, - "2030-01-01": 28792.7870453202, - "2029-01-01": 28231.0506252428, - "2028-01-01": 27676.9052378691, - "2027-01-01": 27115.1688177917, - "2026-01-01": 26463.0991085397, - "2025-01-01": 26064.6584536411, - "2024-01-01": 25499, - "2023-01-01": 24684, - "2022-01-01": 23942, - "2021-01-01": 22107, - "2015-01-01": 22107 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.separate[3]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.separate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ca.tax.income.rates.separate[3].rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.separate[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.06, - "2015-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.separate[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.separate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2035-01-01": 50116.1280047156, - "2034-01-01": 49145.6746534409, - "2033-01-01": 48187.2022077375, - "2032-01-01": 47252.6915731767, - "2031-01-01": 46342.1427497585, - "2030-01-01": 45443.5748319116, - "2029-01-01": 44556.9878196359, - "2028-01-01": 43682.3817129316, - "2027-01-01": 42795.794700656, - "2026-01-01": 41766.634912082, - "2025-01-01": 41137.7771468208, - "2024-01-01": 40245, - "2023-01-01": 38959, - "2022-01-01": 37788, - "2021-01-01": 34892, - "2015-01-01": 34892 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.separate[4]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.separate[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ca.tax.income.rates.separate[4].rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.separate[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.08, - "2015-01-01": 0.08 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.separate[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.separate[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2035-01-01": 69568.582609304, - "2034-01-01": 68221.4501227265, - "2033-01-01": 66890.9489014154, - "2032-01-01": 65593.7102106371, - "2031-01-01": 64329.7340503916, - "2030-01-01": 63082.3891554124, - "2029-01-01": 61851.6755256996, - "2028-01-01": 60637.5931612533, - "2027-01-01": 59406.8795315405, - "2026-01-01": 57978.2538451577, - "2025-01-01": 57105.3064501004, - "2024-01-01": 55866, - "2023-01-01": 54081, - "2022-01-01": 52455, - "2021-01-01": 48435, - "2015-01-01": 48435 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.separate[5]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.separate[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ca.tax.income.rates.separate[5].rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.separate[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.093, - "2015-01-01": 0.093 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.separate[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.separate[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2035-01-01": 87923.9491589252, - "2034-01-01": 86221.3816519033, - "2033-01-01": 84539.8334968198, - "2032-01-01": 82900.3240456135, - "2031-01-01": 81302.8532982842, - "2030-01-01": 79726.4019028935, - "2029-01-01": 78170.9698594413, - "2028-01-01": 76636.5571679277, - "2027-01-01": 75081.1251244755, - "2026-01-01": 73275.5627929547, - "2025-01-01": 72172.2920419538, - "2024-01-01": 70606, - "2023-01-01": 68350, - "2022-01-01": 66295, - "2021-01-01": 61214, - "2015-01-01": 61214 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.separate[6]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.separate[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.ca.tax.income.rates.separate[6].rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.separate[6].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.103, - "2015-01-01": 0.103 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.separate[6].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.separate[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2035-01-01": 449119.955523735, - "2034-01-01": 440423.155046225, - "2033-01-01": 431833.722475845, - "2032-01-01": 423459.025719725, - "2031-01-01": 415299.064777864, - "2030-01-01": 407246.471743133, - "2029-01-01": 399301.246615532, - "2028-01-01": 391463.38939506, - "2027-01-01": 383518.164267459, - "2026-01-01": 374295.261045014, - "2025-01-01": 368659.698546285, - "2024-01-01": 360659, - "2023-01-01": 349137, - "2022-01-01": 338639, - "2021-01-01": 312686, - "2015-01-01": 312686 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.separate[7]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.separate[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.ca.tax.income.rates.separate[7].rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.separate[7].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.113, - "2015-01-01": 0.113 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.separate[7].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.separate[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2035-01-01": 538939.214580118, - "2034-01-01": 528503.145638929, - "2033-01-01": 518195.91705504, - "2032-01-01": 508146.369185748, - "2031-01-01": 498354.502031053, - "2030-01-01": 488691.475233657, - "2029-01-01": 479157.288793559, - "2028-01-01": 469751.94271076, - "2027-01-01": 460217.756270662, - "2026-01-01": 449150.369578711, - "2025-01-01": 442387.753958036, - "2024-01-01": 432787, - "2023-01-01": 418961, - "2022-01-01": 406364, - "2021-01-01": 375221, - "2015-01-01": 375221 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.separate[8]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.separate[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.ca.tax.income.rates.separate[8].rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.separate[8].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.123, - "2015-01-01": 0.123 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.separate[8].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.separate[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2035-01-01": 898234.929943928, - "2034-01-01": 880841.42544346, - "2033-01-01": 863662.655566455, - "2032-01-01": 846913.354936374, - "2031-01-01": 830593.523553219, - "2030-01-01": 814488.426793526, - "2029-01-01": 798598.064657296, - "2028-01-01": 782922.437144529, - "2027-01-01": 767032.075008299, - "2026-01-01": 748586.370852864, - "2025-01-01": 737315.308358353, - "2024-01-01": 721314, - "2023-01-01": 698271, - "2022-01-01": 677275, - "2021-01-01": 625369, - "2015-01-01": 625369 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.joint": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.joint", - "description": "California taxes income at these rates for joint filers.", - "label": "California joint income tax rate" - }, - "gov.states.ca.tax.income.rates.joint[0]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ca.tax.income.rates.joint[0].rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.joint[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.01, - "2015-01-01": 0.01 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.joint[1]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ca.tax.income.rates.joint[1].rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.joint[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.02, - "2015-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2035-01-01": 26788.3748450103, - "2034-01-01": 26269.6422697185, - "2033-01-01": 25757.3138002944, - "2032-01-01": 25257.793542606, - "2031-01-01": 24771.0814966531, - "2030-01-01": 24290.7735565681, - "2029-01-01": 23816.8697223508, - "2028-01-01": 23349.3699940014, - "2027-01-01": 22875.4661597841, - "2026-01-01": 22325.35346574, - "2025-01-01": 21989.212622249, - "2024-01-01": 21512, - "2023-01-01": 20824, - "2022-01-01": 20198, - "2021-01-01": 18650, - "2015-01-01": 18650 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.joint[2]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ca.tax.income.rates.joint[2].rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.joint[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.joint[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2035-01-01": 63506.5795995648, - "2034-01-01": 62276.8323015574, - "2033-01-01": 61062.2670689576, - "2032-01-01": 59878.0659671727, - "2031-01-01": 58724.2289962028, - "2030-01-01": 57585.5740906405, - "2029-01-01": 56462.1012504856, - "2028-01-01": 55353.8104757383, - "2027-01-01": 54230.3376355834, - "2026-01-01": 52926.1982170793, - "2025-01-01": 52129.3169072821, - "2024-01-01": 50998, - "2023-01-01": 49368, - "2022-01-01": 47884, - "2021-01-01": 44214, - "2015-01-01": 44214 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.joint[3]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.joint[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ca.tax.income.rates.joint[3].rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.joint[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.06, - "2015-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.joint[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.joint[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2035-01-01": 100232.256009431, - "2034-01-01": 98291.3493068818, - "2033-01-01": 96374.404415475, - "2032-01-01": 94505.3831463534, - "2031-01-01": 92684.285499517, - "2030-01-01": 90887.1496638232, - "2029-01-01": 89113.9756392719, - "2028-01-01": 87364.7634258632, - "2027-01-01": 85591.589401312, - "2026-01-01": 83533.269824164, - "2025-01-01": 82275.5542936416, - "2024-01-01": 80490, - "2023-01-01": 77918, - "2022-01-01": 75576, - "2021-01-01": 69784, - "2015-01-01": 69784 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.joint[4]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.joint[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ca.tax.income.rates.joint[4].rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.joint[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.08, - "2015-01-01": 0.08 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.joint[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.joint[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2035-01-01": 139137.165218608, - "2034-01-01": 136442.900245453, - "2033-01-01": 133781.897802831, - "2032-01-01": 131187.420421274, - "2031-01-01": 128659.468100783, - "2030-01-01": 126164.778310825, - "2029-01-01": 123703.351051399, - "2028-01-01": 121275.186322507, - "2027-01-01": 118813.759063081, - "2026-01-01": 115956.507690315, - "2025-01-01": 114210.612900201, - "2024-01-01": 111732, - "2023-01-01": 108162, - "2022-01-01": 104910, - "2021-01-01": 96870, - "2015-01-01": 96870 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.joint[5]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.joint[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ca.tax.income.rates.joint[5].rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.joint[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.093, - "2015-01-01": 0.093 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.joint[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.joint[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2035-01-01": 175847.898317851, - "2034-01-01": 172442.763303807, - "2033-01-01": 169079.66699364, - "2032-01-01": 165800.648091227, - "2031-01-01": 162605.706596568, - "2030-01-01": 159452.803805787, - "2029-01-01": 156341.939718883, - "2028-01-01": 153273.114335855, - "2027-01-01": 150162.250248951, - "2026-01-01": 146551.125585909, - "2025-01-01": 144344.584083908, - "2024-01-01": 141212, - "2023-01-01": 136700, - "2022-01-01": 132590, - "2021-01-01": 122428, - "2015-01-01": 122428 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.joint[6]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.joint[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.ca.tax.income.rates.joint[6].rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.joint[6].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.103, - "2015-01-01": 0.103 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.joint[6].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.joint[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2035-01-01": 898239.91104747, - "2034-01-01": 880846.31009245, - "2033-01-01": 863667.444951691, - "2032-01-01": 846918.05143945, - "2031-01-01": 830598.129555729, - "2030-01-01": 814492.943486266, - "2029-01-01": 798602.493231064, - "2028-01-01": 782926.778790121, - "2027-01-01": 767036.328534918, - "2026-01-01": 748590.522090028, - "2025-01-01": 737319.39709257, - "2024-01-01": 721318, - "2023-01-01": 698274, - "2022-01-01": 677278, - "2021-01-01": 625372, - "2015-01-01": 625372 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.joint[7]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.joint[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.ca.tax.income.rates.joint[7].rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.joint[7].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.113, - "2015-01-01": 0.113 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.joint[7].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.joint[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2035-01-01": 1077878.42916024, - "2034-01-01": 1057006.29127786, - "2033-01-01": 1036391.83411008, - "2032-01-01": 1016292.7383715, - "2031-01-01": 996709.004062106, - "2030-01-01": 977382.950467313, - "2029-01-01": 958314.577587118, - "2028-01-01": 939503.88542152, - "2027-01-01": 920435.512541325, - "2026-01-01": 898300.739157422, - "2025-01-01": 884775.507916071, - "2024-01-01": 865574, - "2023-01-01": 837922, - "2022-01-01": 812728, - "2021-01-01": 750442, - "2015-01-01": 750442 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.joint[8]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.joint[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.ca.tax.income.rates.joint[8].rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.joint[8].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.123, - "2015-01-01": 0.123 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.joint[8].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.joint[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2035-01-01": 1796469.85988786, - "2034-01-01": 1761682.85088692, - "2033-01-01": 1727325.31113291, - "2032-01-01": 1693826.70987275, - "2031-01-01": 1661187.04710644, - "2030-01-01": 1628976.85358705, - "2029-01-01": 1597196.12931459, - "2028-01-01": 1565844.87428906, - "2027-01-01": 1534064.1500166, - "2026-01-01": 1497172.74170573, - "2025-01-01": 1474630.61671671, - "2024-01-01": 1442628, - "2023-01-01": 1396542, - "2022-01-01": 1354550, - "2021-01-01": 1250738, - "2015-01-01": 1250738 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.single": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.single", - "description": "California taxes income at these rates for single filers.", - "label": "California single income tax rate" - }, - "gov.states.ca.tax.income.rates.single[0]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.single[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ca.tax.income.rates.single[0].rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.single[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.01, - "2015-01-01": 0.01 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.single[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.single[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.single[1]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.single[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ca.tax.income.rates.single[1].rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.single[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.02, - "2015-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.single[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.single[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2035-01-01": 13394.1874225052, - "2034-01-01": 13134.8211348592, - "2033-01-01": 12878.6569001472, - "2032-01-01": 12628.896771303, - "2031-01-01": 12385.5407483266, - "2030-01-01": 12145.386778284, - "2029-01-01": 11908.4348611754, - "2028-01-01": 11674.6849970007, - "2027-01-01": 11437.7330798921, - "2026-01-01": 11162.67673287, - "2025-01-01": 10994.6063111245, - "2024-01-01": 10756, - "2023-01-01": 10412, - "2022-01-01": 10099, - "2021-01-01": 9325, - "2015-01-01": 9325 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.single[2]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.single[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ca.tax.income.rates.single[2].rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.single[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.single[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.single[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2035-01-01": 31753.2897997824, - "2034-01-01": 31138.4161507787, - "2033-01-01": 30531.1335344788, - "2032-01-01": 29939.0329835864, - "2031-01-01": 29362.1144981014, - "2030-01-01": 28792.7870453202, - "2029-01-01": 28231.0506252428, - "2028-01-01": 27676.9052378691, - "2027-01-01": 27115.1688177917, - "2026-01-01": 26463.0991085397, - "2025-01-01": 26064.6584536411, - "2024-01-01": 25499, - "2023-01-01": 24684, - "2022-01-01": 23942, - "2021-01-01": 22107, - "2015-01-01": 22107 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.single[3]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.single[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ca.tax.income.rates.single[3].rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.single[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.06, - "2015-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.single[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.single[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2035-01-01": 50116.1280047156, - "2034-01-01": 49145.6746534409, - "2033-01-01": 48187.2022077375, - "2032-01-01": 47252.6915731767, - "2031-01-01": 46342.1427497585, - "2030-01-01": 45443.5748319116, - "2029-01-01": 44556.9878196359, - "2028-01-01": 43682.3817129316, - "2027-01-01": 42795.794700656, - "2026-01-01": 41766.634912082, - "2025-01-01": 41137.7771468208, - "2024-01-01": 40245, - "2023-01-01": 38959, - "2022-01-01": 37788, - "2021-01-01": 34892, - "2015-01-01": 34892 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.single[4]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.single[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ca.tax.income.rates.single[4].rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.single[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.08, - "2015-01-01": 0.08 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.single[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.single[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2035-01-01": 69568.582609304, - "2034-01-01": 68221.4501227265, - "2033-01-01": 66890.9489014154, - "2032-01-01": 65593.7102106371, - "2031-01-01": 64329.7340503916, - "2030-01-01": 63082.3891554124, - "2029-01-01": 61851.6755256996, - "2028-01-01": 60637.5931612533, - "2027-01-01": 59406.8795315405, - "2026-01-01": 57978.2538451577, - "2025-01-01": 57105.3064501004, - "2024-01-01": 55866, - "2023-01-01": 54081, - "2022-01-01": 52455, - "2021-01-01": 48435, - "2015-01-01": 48435 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.single[5]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.single[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ca.tax.income.rates.single[5].rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.single[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.093, - "2015-01-01": 0.093 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.single[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.single[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2035-01-01": 87923.9491589252, - "2034-01-01": 86221.3816519033, - "2033-01-01": 84539.8334968198, - "2032-01-01": 82900.3240456135, - "2031-01-01": 81302.8532982842, - "2030-01-01": 79726.4019028935, - "2029-01-01": 78170.9698594413, - "2028-01-01": 76636.5571679277, - "2027-01-01": 75081.1251244755, - "2026-01-01": 73275.5627929547, - "2025-01-01": 72172.2920419538, - "2024-01-01": 70606, - "2023-01-01": 68350, - "2022-01-01": 66295, - "2021-01-01": 61214, - "2015-01-01": 61214 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.single[6]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.single[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.ca.tax.income.rates.single[6].rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.single[6].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.103, - "2015-01-01": 0.103 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.single[6].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.single[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2035-01-01": 449119.955523735, - "2034-01-01": 440423.155046225, - "2033-01-01": 431833.722475845, - "2032-01-01": 423459.025719725, - "2031-01-01": 415299.064777864, - "2030-01-01": 407246.471743133, - "2029-01-01": 399301.246615532, - "2028-01-01": 391463.38939506, - "2027-01-01": 383518.164267459, - "2026-01-01": 374295.261045014, - "2025-01-01": 368659.698546285, - "2024-01-01": 360659, - "2023-01-01": 349137, - "2022-01-01": 338639, - "2021-01-01": 312686, - "2015-01-01": 312686 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.single[7]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.single[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.ca.tax.income.rates.single[7].rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.single[7].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.113, - "2015-01-01": 0.113 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.single[7].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.single[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2035-01-01": 538939.214580118, - "2034-01-01": 528503.145638929, - "2033-01-01": 518195.91705504, - "2032-01-01": 508146.369185748, - "2031-01-01": 498354.502031053, - "2030-01-01": 488691.475233657, - "2029-01-01": 479157.288793559, - "2028-01-01": 469751.94271076, - "2027-01-01": 460217.756270662, - "2026-01-01": 449150.369578711, - "2025-01-01": 442387.753958036, - "2024-01-01": 432787, - "2023-01-01": 418961, - "2022-01-01": 406364, - "2021-01-01": 375221, - "2015-01-01": 375221 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.single[8]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.single[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.ca.tax.income.rates.single[8].rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.single[8].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.123, - "2015-01-01": 0.123 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.single[8].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.single[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2035-01-01": 898234.929943928, - "2034-01-01": 880841.42544346, - "2033-01-01": 863662.655566455, - "2032-01-01": 846913.354936374, - "2031-01-01": 830593.523553219, - "2030-01-01": 814488.426793526, - "2029-01-01": 798598.064657296, - "2028-01-01": 782922.437144529, - "2027-01-01": 767032.075008299, - "2026-01-01": 748586.370852864, - "2025-01-01": 737315.308358353, - "2024-01-01": 721314, - "2023-01-01": 698271, - "2022-01-01": 677275, - "2021-01-01": 625369, - "2015-01-01": 625369 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.surviving_spouse": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.surviving_spouse", - "description": "California taxes income at these rates for surviving spouse filers.", - "label": "California surviving spouse income tax rate" - }, - "gov.states.ca.tax.income.rates.surviving_spouse[0]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.surviving_spouse[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ca.tax.income.rates.surviving_spouse[0].rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.surviving_spouse[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.01, - "2015-01-01": 0.01 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.surviving_spouse[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.surviving_spouse[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.surviving_spouse[1]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.surviving_spouse[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ca.tax.income.rates.surviving_spouse[1].rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.surviving_spouse[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.02, - "2015-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.surviving_spouse[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.surviving_spouse[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2035-01-01": 26788.3748450103, - "2034-01-01": 26269.6422697185, - "2033-01-01": 25757.3138002944, - "2032-01-01": 25257.793542606, - "2031-01-01": 24771.0814966531, - "2030-01-01": 24290.7735565681, - "2029-01-01": 23816.8697223508, - "2028-01-01": 23349.3699940014, - "2027-01-01": 22875.4661597841, - "2026-01-01": 22325.35346574, - "2025-01-01": 21989.212622249, - "2024-01-01": 21512, - "2023-01-01": 20824, - "2022-01-01": 20198, - "2021-01-01": 18650, - "2015-01-01": 18650 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.surviving_spouse[2]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.surviving_spouse[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ca.tax.income.rates.surviving_spouse[2].rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.surviving_spouse[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.surviving_spouse[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.surviving_spouse[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2035-01-01": 63506.5795995648, - "2034-01-01": 62276.8323015574, - "2033-01-01": 61062.2670689576, - "2032-01-01": 59878.0659671727, - "2031-01-01": 58724.2289962028, - "2030-01-01": 57585.5740906405, - "2029-01-01": 56462.1012504856, - "2028-01-01": 55353.8104757383, - "2027-01-01": 54230.3376355834, - "2026-01-01": 52926.1982170793, - "2025-01-01": 52129.3169072821, - "2024-01-01": 50998, - "2023-01-01": 49368, - "2022-01-01": 47884, - "2021-01-01": 44214, - "2015-01-01": 44214 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.surviving_spouse[3]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.surviving_spouse[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ca.tax.income.rates.surviving_spouse[3].rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.surviving_spouse[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.06, - "2015-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.surviving_spouse[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.surviving_spouse[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2035-01-01": 100232.256009431, - "2034-01-01": 98291.3493068818, - "2033-01-01": 96374.404415475, - "2032-01-01": 94505.3831463534, - "2031-01-01": 92684.285499517, - "2030-01-01": 90887.1496638232, - "2029-01-01": 89113.9756392719, - "2028-01-01": 87364.7634258632, - "2027-01-01": 85591.589401312, - "2026-01-01": 83533.269824164, - "2025-01-01": 82275.5542936416, - "2024-01-01": 80490, - "2023-01-01": 77918, - "2022-01-01": 75576, - "2021-01-01": 69784, - "2015-01-01": 69784 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.surviving_spouse[4]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.surviving_spouse[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ca.tax.income.rates.surviving_spouse[4].rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.surviving_spouse[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.08, - "2015-01-01": 0.08 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.surviving_spouse[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.surviving_spouse[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2035-01-01": 139137.165218608, - "2034-01-01": 136442.900245453, - "2033-01-01": 133781.897802831, - "2032-01-01": 131187.420421274, - "2031-01-01": 128659.468100783, - "2030-01-01": 126164.778310825, - "2029-01-01": 123703.351051399, - "2028-01-01": 121275.186322507, - "2027-01-01": 118813.759063081, - "2026-01-01": 115956.507690315, - "2025-01-01": 114210.612900201, - "2024-01-01": 111732, - "2023-01-01": 108162, - "2022-01-01": 104910, - "2021-01-01": 96870, - "2015-01-01": 96870 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.surviving_spouse[5]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.surviving_spouse[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ca.tax.income.rates.surviving_spouse[5].rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.surviving_spouse[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.093, - "2015-01-01": 0.093 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.surviving_spouse[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.surviving_spouse[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2035-01-01": 175847.898317851, - "2034-01-01": 172442.763303807, - "2033-01-01": 169079.66699364, - "2032-01-01": 165800.648091227, - "2031-01-01": 162605.706596568, - "2030-01-01": 159452.803805787, - "2029-01-01": 156341.939718883, - "2028-01-01": 153273.114335855, - "2027-01-01": 150162.250248951, - "2026-01-01": 146551.125585909, - "2025-01-01": 144344.584083908, - "2024-01-01": 141212, - "2023-01-01": 136700, - "2022-01-01": 132590, - "2021-01-01": 122428, - "2015-01-01": 122428 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.surviving_spouse[6]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.surviving_spouse[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.ca.tax.income.rates.surviving_spouse[6].rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.surviving_spouse[6].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.103, - "2015-01-01": 0.103 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.surviving_spouse[6].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.surviving_spouse[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2035-01-01": 898239.91104747, - "2034-01-01": 880846.31009245, - "2033-01-01": 863667.444951691, - "2032-01-01": 846918.05143945, - "2031-01-01": 830598.129555729, - "2030-01-01": 814492.943486266, - "2029-01-01": 798602.493231064, - "2028-01-01": 782926.778790121, - "2027-01-01": 767036.328534918, - "2026-01-01": 748590.522090028, - "2025-01-01": 737319.39709257, - "2024-01-01": 721318, - "2023-01-01": 698274, - "2022-01-01": 677278, - "2021-01-01": 625372, - "2015-01-01": 625372 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.surviving_spouse[7]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.surviving_spouse[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.ca.tax.income.rates.surviving_spouse[7].rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.surviving_spouse[7].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.113, - "2015-01-01": 0.113 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.surviving_spouse[7].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.surviving_spouse[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2035-01-01": 1077878.42916024, - "2034-01-01": 1057006.29127786, - "2033-01-01": 1036391.83411008, - "2032-01-01": 1016292.7383715, - "2031-01-01": 996709.004062106, - "2030-01-01": 977382.950467313, - "2029-01-01": 958314.577587118, - "2028-01-01": 939503.88542152, - "2027-01-01": 920435.512541325, - "2026-01-01": 898300.739157422, - "2025-01-01": 884775.507916071, - "2024-01-01": 865574, - "2023-01-01": 837922, - "2022-01-01": 812728, - "2021-01-01": 750442, - "2015-01-01": 750442 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.surviving_spouse[8]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.rates.surviving_spouse[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.ca.tax.income.rates.surviving_spouse[8].rate": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.surviving_spouse[8].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.123, - "2015-01-01": 0.123 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.rates.surviving_spouse[8].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.rates.surviving_spouse[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency_USD", - "period": null, - "values": { - "2035-01-01": 1796469.85988786, - "2034-01-01": 1761682.85088692, - "2033-01-01": 1727325.31113291, - "2032-01-01": 1693826.70987275, - "2031-01-01": 1661187.04710644, - "2030-01-01": 1628976.85358705, - "2029-01-01": 1597196.12931459, - "2028-01-01": 1565844.87428906, - "2027-01-01": 1534064.1500166, - "2026-01-01": 1497172.74170573, - "2025-01-01": 1474630.61671671, - "2024-01-01": 1442628, - "2023-01-01": 1396542, - "2022-01-01": 1354550, - "2021-01-01": 1250738, - "2015-01-01": 1250738 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.use_tax": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.use_tax", - "description": null, - "label": "Use tax", - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.use_tax.main": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.use_tax.main", - "description": "California levies its use tax as a dollar amount by AGI for income below the top threshold.", - "label": "CA main use tax" - }, - "gov.states.ca.tax.income.use_tax.main[0]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.use_tax.main[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ca.tax.income.use_tax.main[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.use_tax.main[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.use_tax.main[0].amount": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.use_tax.main[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 0, - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.use_tax.main[1]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.use_tax.main[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ca.tax.income.use_tax.main[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.use_tax.main[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.use_tax.main[1].amount": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.use_tax.main[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 1, - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.use_tax.main[2]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.use_tax.main[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ca.tax.income.use_tax.main[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.use_tax.main[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.use_tax.main[2].amount": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.use_tax.main[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 2, - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.use_tax.main[3]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.use_tax.main[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ca.tax.income.use_tax.main[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.use_tax.main[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.use_tax.main[3].amount": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.use_tax.main[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 3, - "2021-01-01": 3, - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.use_tax.main[4]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.use_tax.main[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ca.tax.income.use_tax.main[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.use_tax.main[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 40000, - "2015-01-01": 40000 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.use_tax.main[4].amount": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.use_tax.main[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 4, - "2021-01-01": 4, - "2015-01-01": 4 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.use_tax.main[5]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.use_tax.main[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ca.tax.income.use_tax.main[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.use_tax.main[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.use_tax.main[5].amount": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.use_tax.main[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 5, - "2021-01-01": 4, - "2015-01-01": 4 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.use_tax.main[6]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.use_tax.main[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.ca.tax.income.use_tax.main[6].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.use_tax.main[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 60000, - "2015-01-01": 60000 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.use_tax.main[6].amount": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.use_tax.main[6].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 6, - "2021-01-01": 5, - "2015-01-01": 5 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.use_tax.main[7]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.use_tax.main[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.ca.tax.income.use_tax.main[7].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.use_tax.main[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 70000, - "2015-01-01": 70000 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.use_tax.main[7].amount": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.use_tax.main[7].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 7, - "2021-01-01": 6, - "2015-01-01": 6 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.use_tax.main[8]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.use_tax.main[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.ca.tax.income.use_tax.main[8].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.use_tax.main[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 80000, - "2015-01-01": 80000 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.use_tax.main[8].amount": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.use_tax.main[8].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 8, - "2021-01-01": 7, - "2015-01-01": 7 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.use_tax.main[9]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.use_tax.main[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.ca.tax.income.use_tax.main[9].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.use_tax.main[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 90000, - "2015-01-01": 90000 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.use_tax.main[9].amount": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.use_tax.main[9].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 9, - "2021-01-01": 8, - "2015-01-01": 8 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.use_tax.main[10]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.use_tax.main[10]", - "description": null, - "label": "bracket 11" - }, - "gov.states.ca.tax.income.use_tax.main[10].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.use_tax.main[10].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.use_tax.main[10].amount": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.use_tax.main[10].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 10, - "2021-01-01": 9, - "2015-01-01": 9 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.use_tax.main[11]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.use_tax.main[11]", - "description": null, - "label": "bracket 12" - }, - "gov.states.ca.tax.income.use_tax.main[11].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.use_tax.main[11].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 125000, - "2015-01-01": 125000 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.use_tax.main[11].amount": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.use_tax.main[11].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 12, - "2021-01-01": 11, - "2015-01-01": 11 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.use_tax.main[12]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.use_tax.main[12]", - "description": null, - "label": "bracket 13" - }, - "gov.states.ca.tax.income.use_tax.main[12].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.use_tax.main[12].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.use_tax.main[12].amount": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.use_tax.main[12].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 15, - "2021-01-01": 13, - "2015-01-01": 13 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.use_tax.main[13]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.use_tax.main[13]", - "description": null, - "label": "bracket 14" - }, - "gov.states.ca.tax.income.use_tax.main[13].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.use_tax.main[13].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 175000, - "2015-01-01": 175000 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.use_tax.main[13].amount": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.use_tax.main[13].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 17, - "2021-01-01": 15, - "2015-01-01": 15 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.use_tax.main[14]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.use_tax.main[14]", - "description": null, - "label": "bracket 15" - }, - "gov.states.ca.tax.income.use_tax.main[14].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.use_tax.main[14].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 200000, - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.use_tax.main[14].amount": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.use_tax.main[14].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.use_tax.additional": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.use_tax.additional", - "description": "California levies its use tax as a proportional income tax for income above the provided threshold.", - "label": "CA additional use tax" - }, - "gov.states.ca.tax.income.use_tax.additional[0]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.use_tax.additional[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ca.tax.income.use_tax.additional[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.use_tax.additional[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.use_tax.additional[0].amount": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.use_tax.additional[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.use_tax.additional[1]": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.use_tax.additional[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ca.tax.income.use_tax.additional[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.use_tax.additional[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 200000, - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.use_tax.additional[1].amount": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.use_tax.additional[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.00009, - "2021-01-01": 0.00008, - "2015-01-01": 0.00008 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.deductions": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.deductions", - "description": null, - "label": "deductions", - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.deductions.itemized": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.deductions.itemized", - "description": null, - "label": "itemized", - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.deductions.itemized.limit": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.deductions.itemized.limit", - "description": null, - "label": "limit", - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.deductions.itemized.limit.agi_fraction": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.deductions.itemized.limit.agi_fraction", - "description": "Fraction of AGI used in CA itemized deduction limitation.", - "label": "fraction of AGI used to compute CA itemized deductions limitation", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.06, - "2015-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.deductions.itemized.limit.agi_threshold": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.deductions.itemized.limit.agi_threshold", - "description": "Federal AGI above which CA itemized deductions are limited.", - "label": "California itemized deduction limitation threshold", - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.deductions.itemized.limit.agi_threshold.JOINT": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.deductions.itemized.limit.agi_threshold.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 489719, - "2023-01-01": 474075, - "2022-01-01": 459821, - "2021-01-01": 424581, - "2015-01-01": 424581 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.deductions.itemized.limit.agi_threshold.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.deductions.itemized.limit.agi_threshold.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2024-01-01": 367291, - "2023-01-01": 355558, - "2022-01-01": 344867, - "2021-01-01": 318437, - "2015-01-01": 318437 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.deductions.itemized.limit.agi_threshold.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.deductions.itemized.limit.agi_threshold.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 489719, - "2023-01-01": 474075, - "2022-01-01": 459821, - "2021-01-01": 424581, - "2015-01-01": 424581 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.deductions.itemized.limit.agi_threshold.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.deductions.itemized.limit.agi_threshold.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 244857, - "2023-01-01": 237035, - "2022-01-01": 229908, - "2021-01-01": 212288, - "2015-01-01": 212288 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.deductions.itemized.limit.agi_threshold.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.deductions.itemized.limit.agi_threshold.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 244857, - "2023-01-01": 237035, - "2022-01-01": 229908, - "2021-01-01": 212288, - "2015-01-01": 212288 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.deductions.itemized.limit.ded_fraction": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.deductions.itemized.limit.ded_fraction", - "description": "Fraction of itemized deductions subject to CA limitation.", - "label": "California fraction of itemized deductions subject to limitation", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.8, - "2015-01-01": 0.8 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.deductions.itemized.limit.excluded_deductions": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.deductions.itemized.limit.excluded_deductions", - "description": "Itemized deductions excluded from CA high-AGI limitation.", - "label": "itemized deductions excluded from CA high-AGI limitation", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": [ - "medical_expense_deduction", - "casualty_loss_deduction", - "non_mortgage_interest" - ], - "2015-01-01": [ - "medical_expense_deduction", - "casualty_loss_deduction", - "non_mortgage_interest" - ] - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.deductions.standard": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.deductions.standard", - "description": null, - "label": "standard", - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.deductions.standard.amount": { - "type": "parameterNode", - "parameter": "gov.states.ca.tax.income.deductions.standard.amount", - "description": "California provides filers a standard deduction of this amount, depending on filing status.", - "label": "California standard deduction", - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.deductions.standard.amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.deductions.standard.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 11080, - "2023-01-01": 10726, - "2022-01-01": 10404, - "2021-01-01": 9606, - "2015-01-01": 9606 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.deductions.standard.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.deductions.standard.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2024-01-01": 11080, - "2023-01-01": 10726, - "2022-01-01": 10404, - "2021-01-01": 9606, - "2015-01-01": 9606 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.deductions.standard.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.deductions.standard.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 11080, - "2023-01-01": 10726, - "2022-01-01": 10404, - "2021-01-01": 9606, - "2015-01-01": 9606 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.deductions.standard.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.deductions.standard.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 5540, - "2023-01-01": 5363, - "2022-01-01": 5202, - "2021-01-01": 4803, - "2015-01-01": 4803 - }, - "economy": true, - "household": true - }, - "gov.states.ca.tax.income.deductions.standard.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ca.tax.income.deductions.standard.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 5540, - "2023-01-01": 5363, - "2022-01-01": 5202, - "2021-01-01": 4803, - "2015-01-01": 4803 - }, - "economy": true, - "household": true - }, - "gov.states.ca.fcc": { - "type": "parameterNode", - "parameter": "gov.states.ca.fcc", - "description": null, - "label": "fcc", - "economy": true, - "household": true - }, - "gov.states.ca.fcc.lifeline": { - "type": "parameterNode", - "parameter": "gov.states.ca.fcc.lifeline", - "description": null, - "label": "lifeline", - "economy": true, - "household": true - }, - "gov.states.ca.fcc.lifeline.max_amount": { - "type": "parameter", - "parameter": "gov.states.ca.fcc.lifeline.max_amount", - "description": "California provides the following maximum Lifeline benefit amount.", - "label": "California Lifeline maximum benefit", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-01-01": 19, - "2015-01-01": 19 - }, - "economy": true, - "household": true - }, - "gov.states.ca.fcc.lifeline.in_effect": { - "type": "parameter", - "parameter": "gov.states.ca.fcc.lifeline.in_effect", - "description": "California provides a separate maximum Lifeline benefit amount if this is true.", - "label": "California Lifeline maximum benefit in effect", - "unit": "bool", - "period": "year", - "values": { - "2024-01-01": true, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.ca.cpuc": { - "type": "parameterNode", - "parameter": "gov.states.ca.cpuc", - "description": null, - "label": "California Public Utilities Commission (CPUC)", - "economy": false, - "household": false - }, - "gov.states.ca.cpuc.care": { - "type": "parameterNode", - "parameter": "gov.states.ca.cpuc.care", - "description": null, - "label": "CARE", - "economy": false, - "household": false - }, - "gov.states.ca.cpuc.care.discount": { - "type": "parameter", - "parameter": "gov.states.ca.cpuc.care.discount", - "description": "California CARE recipient households recieve a discount on their energy expenses between 30 and 35%, ballparked here at 32.5% for simplicity.", - "label": "CARE poverty line threshold", - "unit": "/1", - "period": "year", - "values": { - "2021-06-01": 0.325, - "2015-01-01": 0.325 - }, - "economy": false, - "household": false - }, - "gov.states.ca.cpuc.care.eligibility": { - "type": "parameterNode", - "parameter": "gov.states.ca.cpuc.care.eligibility", - "description": null, - "label": "eligibility", - "economy": false, - "household": false - }, - "gov.states.ca.cpuc.care.eligibility.categorical": { - "type": "parameter", - "parameter": "gov.states.ca.cpuc.care.eligibility.categorical", - "description": "California provides CARE eligibility to households that are enrolled in these programs.", - "label": "CARE non-tribal categorical eligibility programs", - "unit": "list", - "period": null, - "values": { - "2022-06-01": ["medicaid", "wic", "snap", "ssi"], - "2015-01-01": ["medicaid", "wic", "snap", "ssi"] - }, - "economy": false, - "household": false - }, - "gov.states.ca.cpuc.care.eligibility.fpl_limit": { - "type": "parameter", - "parameter": "gov.states.ca.cpuc.care.eligibility.fpl_limit", - "description": "California provides CARE eligibility to households with income below this percent of the (CARE-adjusted) poverty line.", - "label": "CARE poverty line threshold", - "unit": "/1", - "period": "year", - "values": { - "2022-06-01": 2, - "2015-01-01": 2 - }, - "economy": false, - "household": false - }, - "gov.states.ca.cpuc.care.eligibility.tribal_categorical": { - "type": "parameter", - "parameter": "gov.states.ca.cpuc.care.eligibility.tribal_categorical", - "description": "California provides CARE eligibility to tribal households that are enrolled in these programs.", - "label": "CARE tribal categorical eligibility programs", - "unit": "list", - "period": null, - "values": { - "2022-06-01": ["tanf", "head_start"], - "2015-01-01": ["tanf", "head_start"] - }, - "economy": false, - "household": false - }, - "gov.states.ca.cpuc.fera": { - "type": "parameterNode", - "parameter": "gov.states.ca.cpuc.fera", - "description": null, - "label": "FERA", - "economy": false, - "household": false - }, - "gov.states.ca.cpuc.fera.discount": { - "type": "parameter", - "parameter": "gov.states.ca.cpuc.fera.discount", - "description": "California FERA recipient households recieve a discount on their energy expenses of 18%", - "label": "FERA poverty line threshold", - "unit": "/1", - "period": "year", - "values": { - "2021-06-01": 0.18, - "2015-01-01": 0.18 - }, - "economy": false, - "household": false - }, - "gov.states.ca.cpuc.fera.eligibility": { - "type": "parameterNode", - "parameter": "gov.states.ca.cpuc.fera.eligibility", - "description": null, - "label": "eligibility", - "economy": false, - "household": false - }, - "gov.states.ca.cpuc.fera.eligibility.fpl_limit": { - "type": "parameter", - "parameter": "gov.states.ca.cpuc.fera.eligibility.fpl_limit", - "description": "Eligibility for California's FERA program requires that a household make no more than this value times the poverty line.", - "label": "FERA poverty line threshold", - "unit": "/1", - "period": "year", - "values": { - "2022-06-01": 2.5, - "2015-01-01": 2.5 - }, - "economy": false, - "household": false - }, - "gov.states.ca.cpuc.fera.eligibility.minimum_household_size": { - "type": "parameter", - "parameter": "gov.states.ca.cpuc.fera.eligibility.minimum_household_size", - "description": "Eligibility for California's FERA program requires a minimum household of this size to qualify.", - "label": "CARE poverty line threshold", - "unit": "/1", - "period": "year", - "values": { - "2022-06-01": 3, - "2015-01-01": 3 - }, - "economy": false, - "household": false - }, - "gov.states.ca.infant": { - "type": "parameterNode", - "parameter": "gov.states.ca.infant", - "description": null, - "label": "infant", - "economy": true, - "household": true - }, - "gov.states.ca.infant.age_limit": { - "type": "parameter", - "parameter": "gov.states.ca.infant.age_limit", - "description": "California defines infants as children at or below this age threshold.", - "label": "California infant age limit", - "unit": "year", - "period": "year", - "values": { - "2020-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss", - "description": null, - "label": "cdss", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.capi": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.capi", - "description": null, - "label": "capi", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.capi.payment_standard_offset": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.capi.payment_standard_offset", - "description": null, - "label": "payment standard offset", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.capi.payment_standard_offset.couple": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.capi.payment_standard_offset.couple", - "description": "California reduces the Supplemental Security Income / State Supplemental Payment payment standard by this amount for couples when calculating the Cash Assistance Program for Immigrants.", - "label": "California CAPI couple payment standard offset", - "unit": "currency-USD", - "period": "year", - "values": { - "1991-01-01": 20 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.capi.payment_standard_offset.single": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.capi.payment_standard_offset.single", - "description": "California reduces the Supplemental Security Income / State Supplemental Payment payment standard by this amount for single filers when calculating the Cash Assistance Program for Immigrants.", - "label": "California CAPI single payment standard offset", - "unit": "currency-USD", - "period": "year", - "values": { - "1991-01-01": 10 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.capi.resources": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.capi.resources", - "description": null, - "label": "resources", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.capi.resources.vehicle": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.capi.resources.vehicle", - "description": null, - "label": "vehicle", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.capi.resources.vehicle.disregard": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.capi.resources.vehicle.disregard", - "description": "California counts the value of a vehicle exceeding this threshold as resources for the Cash Assistance Program for Immigrants.", - "label": "California CAPI vehicle value disregard", - "unit": "currency-USD", - "period": "month", - "values": { - "1991-01-01": 4500 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.capi.resources.limit": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.capi.resources.limit", - "description": null, - "label": "limit", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.capi.resources.limit.couple": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.capi.resources.limit.couple", - "description": "California limits the Cash Assistance Program for Immigrants to couples with resources at or below this amount.", - "label": "California CAPI couple resource limit", - "unit": "currency-USD", - "period": "year", - "values": { - "1991-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.capi.resources.limit.single": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.capi.resources.limit.single", - "description": "California limits the Cash Assistance Program for Immigrants to single filers with resources at or below this amount.", - "label": "California CAPI single resource limit", - "unit": "currency-USD", - "period": "year", - "values": { - "1991-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.state_supplement": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.state_supplement", - "description": null, - "label": "state supplement", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.state_supplement.payment_standard": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.state_supplement.payment_standard", - "description": null, - "label": "payment standard", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.state_supplement.payment_standard.allowance": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.state_supplement.payment_standard.allowance", - "description": null, - "label": "allowance", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.state_supplement.payment_standard.allowance.food": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.state_supplement.payment_standard.allowance.food", - "description": null, - "label": "food", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.state_supplement.payment_standard.allowance.food.married": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.state_supplement.payment_standard.allowance.food.married", - "description": "California provides the following state supplement food allowance for married adults whose living arrangements prevents them from preparing their own meals.", - "label": "California state supplement food allowance married amount", - "unit": "currency-USD", - "period": "month", - "values": { - "2025-01-01": 257.74, - "1991-01-01": 136 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.state_supplement.payment_standard.allowance.food.single": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.state_supplement.payment_standard.allowance.food.single", - "description": "California provides the following state supplement food allowance for single adults whose living arrangements prevents them from preparing their own meals.", - "label": "California state supplement food allowance single amount", - "unit": "currency-USD", - "period": "month", - "values": { - "2025-01-01": 128.87, - "1991-01-01": 68 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.state_supplement.payment_standard.allowance.out_of_home_care": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.state_supplement.payment_standard.allowance.out_of_home_care", - "description": "California provides the following state supplement allowance for filers in a nonmedical out-of-home care facility.", - "label": "California state supplement out-of-home care allowance amount", - "unit": "currency-USD", - "period": "month", - "values": { - "2025-01-01": 1140.31, - "1991-01-01": 709 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.state_supplement.payment_standard.allowance.medical_care_facility": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.state_supplement.payment_standard.allowance.medical_care_facility", - "description": "California provides the following state supplement allowance for filers receiving care in a medical facility.", - "label": "California state supplement medical care facility allowance amount", - "unit": "currency-USD", - "period": "month", - "values": { - "2025-01-01": 62, - "1991-01-01": 42 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.state_supplement.payment_standard.blind": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.state_supplement.payment_standard.blind", - "description": null, - "label": "blind", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.state_supplement.payment_standard.blind.single": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.state_supplement.payment_standard.blind.single", - "description": "California provides the following state supplement amount to single filers who are blind.", - "label": "California state supplement blind allowance single amount", - "unit": "currency-USD", - "period": "month", - "values": { - "2025-01-01": 1291.32, - "1991-01-01": 704 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.state_supplement.payment_standard.blind.married": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.state_supplement.payment_standard.blind.married", - "description": null, - "label": "married", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.state_supplement.payment_standard.blind.married.two_blind": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.state_supplement.payment_standard.blind.married.two_blind", - "description": "California provides the following state supplement amount to married filers with two blind members who are both eligible.", - "label": "California state supplement blind allowance married two blind amount", - "unit": "currency-USD", - "period": "month", - "values": { - "2025-01-01": 2283.35, - "1991-01-01": 1372 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.state_supplement.payment_standard.blind.married.one_blind": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.state_supplement.payment_standard.blind.married.one_blind", - "description": "California provides the following state supplement amount to married filers with one blind member who are both eligible.", - "label": "California state supplement blind allowance married one blind amount", - "unit": "currency-USD", - "period": "month", - "values": { - "2025-01-01": 2197.44, - "1991-01-01": 1295 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.state_supplement.payment_standard.dependent": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.state_supplement.payment_standard.dependent", - "description": null, - "label": "dependent", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.state_supplement.payment_standard.dependent.age_limit": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.state_supplement.payment_standard.dependent.age_limit", - "description": "California provides a state supplement amount for dependents below this age threshold.", - "label": "California state supplement dependent age limit", - "unit": "year", - "period": "year", - "values": { - "1991-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.state_supplement.payment_standard.dependent.amount": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.state_supplement.payment_standard.dependent.amount", - "description": "California provides the following state supplement amount for eligible dependents.", - "label": "California state supplement dependent amount", - "unit": "currency-USD", - "period": "month", - "values": { - "2025-01-01": 1064.27, - "1991-01-01": 499 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.state_supplement.payment_standard.aged_or_disabled": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.state_supplement.payment_standard.aged_or_disabled", - "description": null, - "label": "aged or disabled", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.state_supplement.payment_standard.aged_or_disabled.amount": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.state_supplement.payment_standard.aged_or_disabled.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.state_supplement.payment_standard.aged_or_disabled.amount.married": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.state_supplement.payment_standard.aged_or_disabled.amount.married", - "description": "California provides the following state supplement amount to two eligible aged or disabled married filers.", - "label": "California state supplement aged or disabled allowance married amount", - "unit": "currency-USD", - "period": "month", - "values": { - "2025-01-01": 2057.83, - "1991-01-01": 1167 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.state_supplement.payment_standard.aged_or_disabled.amount.single": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.state_supplement.payment_standard.aged_or_disabled.amount.single", - "description": "California provides the following state supplement amount to aged or disabled single filers.", - "label": "California state supplement aged or disabled allowance single amount", - "unit": "currency-USD", - "period": "month", - "values": { - "2025-01-01": 1206.94, - "1991-01-01": 630 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.state_supplement.payment_standard.aged_or_disabled.age_threshold": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.state_supplement.payment_standard.aged_or_disabled.age_threshold", - "description": "California provides a state supplement amount for dependents below this age threshold.", - "label": "California state supplement aged or disabled age threshold", - "unit": "year", - "period": "year", - "values": { - "1991-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf", - "description": null, - "label": "tanf", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.cash", - "description": null, - "label": "cash", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment", - "description": null, - "label": "monthly payment", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment.region2": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment.region2", - "description": null, - "label": "region2", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment.region2.non_exempt": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment.region2.non_exempt", - "description": "California CalWORKs provides up to this amount of monthly payments for non-exempt Region 2 receivers, by household size.", - "label": "California CalWORKs monthly payment level - non-exempt map region 2", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment.region2.non_exempt.1": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment.region2.non_exempt.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2024-10-01": 695, - "2023-10-01": 693, - "2015-01-01": 693 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment.region2.non_exempt.2": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment.region2.non_exempt.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2024-10-01": 884, - "2023-10-01": 881, - "2015-01-01": 881 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment.region2.non_exempt.3": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment.region2.non_exempt.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2024-10-01": 1115, - "2023-10-01": 1112, - "2015-01-01": 1112 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment.region2.non_exempt.4": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment.region2.non_exempt.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2024-10-01": 1346, - "2023-10-01": 1342, - "2015-01-01": 1342 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment.region2.non_exempt.5": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment.region2.non_exempt.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2024-10-01": 1578, - "2023-10-01": 1573, - "2015-01-01": 1573 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment.region2.non_exempt.6": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment.region2.non_exempt.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2024-10-01": 1808, - "2023-10-01": 1803, - "2015-01-01": 1803 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment.region2.non_exempt.7": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment.region2.non_exempt.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2024-10-01": 2039, - "2023-10-01": 2033, - "2015-01-01": 2033 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment.region2.non_exempt.8": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment.region2.non_exempt.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2024-10-01": 2271, - "2023-10-01": 2264, - "2015-01-01": 2264 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment.region2.non_exempt.9": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment.region2.non_exempt.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2024-10-01": 2501, - "2023-10-01": 2494, - "2015-01-01": 2494 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment.region2.non_exempt.10": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment.region2.non_exempt.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2024-10-01": 2731, - "2023-10-01": 2723, - "2015-01-01": 2723 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment.region2.exempt": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment.region2.exempt", - "description": "California CalWORKs provides up to this amount of monthly payments for exempt Region 2 receivers, by household size.", - "label": "California CalWORKs monthly payment level - exempt map region 2", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment.region2.exempt.1": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment.region2.exempt.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2024-10-01": 770, - "2023-10-01": 768, - "2015-01-01": 768 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment.region2.exempt.2": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment.region2.exempt.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2024-10-01": 987, - "2023-10-01": 984, - "2015-01-01": 984 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment.region2.exempt.3": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment.region2.exempt.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2024-10-01": 1248, - "2023-10-01": 1244, - "2015-01-01": 1244 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment.region2.exempt.4": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment.region2.exempt.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2024-10-01": 1498, - "2023-10-01": 1494, - "2015-01-01": 1494 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment.region2.exempt.5": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment.region2.exempt.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2024-10-01": 1758, - "2023-10-01": 1753, - "2015-01-01": 1753 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment.region2.exempt.6": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment.region2.exempt.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2024-10-01": 2018, - "2023-10-01": 2012, - "2015-01-01": 2012 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment.region2.exempt.7": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment.region2.exempt.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2024-10-01": 2274, - "2023-10-01": 2267, - "2015-01-01": 2267 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment.region2.exempt.8": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment.region2.exempt.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2024-10-01": 2537, - "2023-10-01": 2529, - "2015-01-01": 2529 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment.region2.exempt.9": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment.region2.exempt.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2024-10-01": 2791, - "2023-10-01": 2783, - "2015-01-01": 2783 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment.region2.exempt.10": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment.region2.exempt.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2024-10-01": 3054, - "2023-10-01": 3045, - "2015-01-01": 3045 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment.region1": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment.region1", - "description": null, - "label": "region1", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment.region1.non_exempt": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment.region1.non_exempt", - "description": "California CalWORKs provides up to this amount of monthly payments for non-exempt Region 1 receivers, by household size.", - "label": "California CalWORKs monthly payment level - non-exempt map region 1", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment.region1.non_exempt.1": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment.region1.non_exempt.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2024-10-01": 734, - "2023-01-01": 732, - "2015-01-01": 732 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment.region1.non_exempt.2": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment.region1.non_exempt.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2024-10-01": 930, - "2023-01-01": 927, - "2015-01-01": 927 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment.region1.non_exempt.3": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment.region1.non_exempt.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2024-10-01": 1175, - "2023-01-01": 1171, - "2015-01-01": 1171 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment.region1.non_exempt.4": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment.region1.non_exempt.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2024-10-01": 1416, - "2023-01-01": 1412, - "2015-01-01": 1412 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment.region1.non_exempt.5": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment.region1.non_exempt.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2024-10-01": 1659, - "2023-01-01": 1654, - "2015-01-01": 1654 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment.region1.non_exempt.6": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment.region1.non_exempt.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2024-10-01": 1902, - "2023-01-01": 1896, - "2015-01-01": 1896 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment.region1.non_exempt.7": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment.region1.non_exempt.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2024-10-01": 2145, - "2023-01-01": 2139, - "2015-01-01": 2139 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment.region1.non_exempt.8": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment.region1.non_exempt.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2024-10-01": 2389, - "2023-01-01": 2382, - "2015-01-01": 2382 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment.region1.non_exempt.9": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment.region1.non_exempt.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2024-10-01": 2631, - "2023-01-01": 2623, - "2015-01-01": 2623 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment.region1.non_exempt.10": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment.region1.non_exempt.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2024-10-01": 2876, - "2023-01-01": 2867, - "2015-01-01": 2867 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment.region1.exempt": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment.region1.exempt", - "description": "California CalWORKs provides up to this amount of monthly payments for exempt Region 1 receivers, by household size.", - "label": "California CalWORKs monthly payment level - exempt map region 1", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment.region1.exempt.1": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment.region1.exempt.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2024-10-01": 809, - "2023-01-01": 807, - "2015-01-01": 807 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment.region1.exempt.2": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment.region1.exempt.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2024-10-01": 1039, - "2023-01-01": 1036, - "2015-01-01": 1036 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment.region1.exempt.3": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment.region1.exempt.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2024-10-01": 1314, - "2023-01-01": 1310, - "2015-01-01": 1310 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment.region1.exempt.4": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment.region1.exempt.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2024-10-01": 1579, - "2023-01-01": 1574, - "2015-01-01": 1574 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment.region1.exempt.5": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment.region1.exempt.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2024-10-01": 1850, - "2023-01-01": 1844, - "2015-01-01": 1844 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment.region1.exempt.6": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment.region1.exempt.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2024-10-01": 2123, - "2023-01-01": 2117, - "2015-01-01": 2117 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment.region1.exempt.7": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment.region1.exempt.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2024-10-01": 2395, - "2023-01-01": 2388, - "2015-01-01": 2388 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment.region1.exempt.8": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment.region1.exempt.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2024-10-01": 2669, - "2023-01-01": 2661, - "2015-01-01": 2661 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment.region1.exempt.9": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment.region1.exempt.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2024-10-01": 2939, - "2023-01-01": 2930, - "2015-01-01": 2930 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment.region1.exempt.10": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment.region1.exempt.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2024-10-01": 3215, - "2023-01-01": 3205, - "2015-01-01": 3205 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.monthly_payment.max_au_size": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.monthly_payment.max_au_size", - "description": "California CalWORKs provide the maximum monthly payment for the AU which is over this size.", - "label": "California CalWORKs maximum assistance unit size for payment standards", - "unit": "int", - "period": "month", - "values": { - "2023-01-01": 10, - "2015-01-01": 10 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.income": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.cash.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.income.disregards": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.cash.income.disregards", - "description": null, - "label": "disregards", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.income.disregards.applicant": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.cash.income.disregards.applicant", - "description": null, - "label": "applicant", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.income.disregards.applicant.flat": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.income.disregards.applicant.flat", - "description": "California disregards this amount of monthly earned income when determining CalWORKS eligibility for new applicants.", - "label": "California CalWORKs recipient flat earnings exclusion for applicants", - "unit": "currency-USD", - "period": "month", - "values": { - "2022-07-01": 450, - "2015-01-01": 450 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.income.disregards.recipient": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.cash.income.disregards.recipient", - "description": null, - "label": "recipient", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.income.disregards.recipient.flat": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.income.disregards.recipient.flat", - "description": "California disregards this amount of monthly income when computing CalWORKS payments for recipients.", - "label": "California CalWORKs flat monthly income exclusion for recipients", - "unit": "currency-USD", - "period": "month", - "values": { - "2022-06-01": 600, - "2015-01-01": 600 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.income.disregards.recipient.percentage": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.income.disregards.recipient.percentage", - "description": "California disregards this percentage of monthly earned income when computing CalWORKS payments for recipients.", - "label": "California CalWORKs monthly percentage earnings exclusion", - "unit": "/1", - "period": "month", - "values": { - "2022-06-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.income.monthly_limit": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.cash.income.monthly_limit", - "description": null, - "label": "monthly limit", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region2": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region2", - "description": null, - "label": "region2", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region2.main": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region2.main", - "description": "California limits CalWORKs to households with income up to this threshold in Region 2.", - "label": "California CalWORKs monthly income limit for region 2", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region2.main.1": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region2.main.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-07-01": 818, - "2015-01-01": 818 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region2.main.2": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region2.main.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-07-01": 1343, - "2015-01-01": 1343 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region2.main.3": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region2.main.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-07-01": 1664, - "2015-01-01": 1664 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region2.main.4": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region2.main.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-07-01": 1978, - "2015-01-01": 1978 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region2.main.5": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region2.main.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2023-07-01": 2262, - "2015-01-01": 2262 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region2.main.6": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region2.main.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2023-07-01": 2540, - "2015-01-01": 2540 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region2.main.7": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region2.main.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2023-07-01": 2783, - "2015-01-01": 2783 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region2.main.8": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region2.main.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2023-07-01": 3040, - "2015-01-01": 3040 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region2.main.9": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region2.main.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2023-07-01": 3285, - "2015-01-01": 3285 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region2.main.10": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region2.main.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2023-07-01": 3576, - "2015-01-01": 3576 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region2.additional": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region2.additional", - "description": "California CalWORKs increases the income limit by this amount for each person above the max relevant AU size in Region 2.", - "label": "California CalWORKs monthly income limit additional for region 2", - "unit": "currency-USD", - "period": "month", - "values": { - "2023-07-01": 34, - "2015-01-01": 34 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region1": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region1", - "description": null, - "label": "region1", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region1.main": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region1.main", - "description": "California limits CalWORKs to households with income up to this threshold in Region 1.", - "label": "California CalWORKs monthly income limit for region 1", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region1.main.1": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region1.main.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2023-01-01": 862, - "2015-01-01": 862 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region1.main.2": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region1.main.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2023-01-01": 1415, - "2015-01-01": 1415 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region1.main.3": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region1.main.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2023-01-01": 1753, - "2015-01-01": 1753 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region1.main.4": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region1.main.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2023-01-01": 2080, - "2015-01-01": 2080 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region1.main.5": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region1.main.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2023-01-01": 2373, - "2015-01-01": 2373 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region1.main.6": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region1.main.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2023-01-01": 2670, - "2015-01-01": 2670 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region1.main.7": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region1.main.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2023-01-01": 2934, - "2015-01-01": 2934 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region1.main.8": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region1.main.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2023-01-01": 3193, - "2015-01-01": 3193 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region1.main.9": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region1.main.9", - "description": null, - "label": "9", - "unit": null, - "period": null, - "values": { - "2023-01-01": 3464, - "2015-01-01": 3464 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region1.main.10": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region1.main.10", - "description": null, - "label": "10", - "unit": null, - "period": null, - "values": { - "2023-01-01": 3760, - "2015-01-01": 3760 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region1.additional": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.income.monthly_limit.region1.additional", - "description": "California CalWORKs increases the income limit by this amount for each person above the max relevant AU size in Region 1.", - "label": "California CalWORKs monthly income limit additional for region 1", - "unit": "currency-USD", - "period": "month", - "values": { - "2023-01-01": 34, - "2015-01-01": 34 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.income.monthly_limit.max_au_size": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.income.monthly_limit.max_au_size", - "description": "California provides an extra monthly income limit for the CalWORKS assistance unit over this size.", - "label": "California CalWORKs maximum assistance unit size for MBSAC", - "unit": "int", - "period": "month", - "values": { - "2023-01-01": 10, - "2015-01-01": 10 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.income.sources": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.cash.income.sources", - "description": null, - "label": "sources", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.income.sources.db_unearned": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.income.sources.db_unearned", - "description": "California CalWORKs counts these income sources as disability-based unearned income.", - "label": "California CalWORKs disability-based unearned income breakdown", - "unit": "list", - "period": "month", - "values": { - "2017-12-20": [ - "ca_state_disability_insurance", - "workers_compensation", - "social_security_disability" - ], - "2015-01-01": [ - "ca_state_disability_insurance", - "workers_compensation", - "social_security_disability" - ] - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.income.sources.earned": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.income.sources.earned", - "description": "California CalWORKs counts these income sources as earned income.", - "label": "California CalWORKs earned income breakdown", - "unit": "list", - "period": "month", - "values": { - "2017-12-20": ["employment_income", "self_employment_income"], - "2015-01-01": ["employment_income", "self_employment_income"] - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.income.sources.other_unearned": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.income.sources.other_unearned", - "description": "California CalWORKs counts these income sources as other unearned income.", - "label": "California CalWORKs other unearned income breakdown", - "unit": "list", - "period": "month", - "values": { - "2017-12-20": [ - "social_security_retirement", - "social_security_survivors", - "social_security_dependents", - "interest_income", - "dividend_income", - "capital_gains" - ], - "2015-01-01": [ - "social_security_retirement", - "social_security_survivors", - "social_security_dependents", - "interest_income", - "dividend_income", - "capital_gains" - ] - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.region1_counties": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.region1_counties", - "description": "California CalWORKs lists these counties in the State as Region 1 and all other counties as Region 2.", - "label": "California CalWORKs region 1 counties", - "unit": "list", - "period": "year", - "values": { - "2023-01-01": [ - "ALAMEDA_COUNTY_CA", - "CONTRA_COSTA_COUNTY_CA", - "LOS_ANGELES_COUNTY_CA", - "MARIN_COUNTY_CA", - "MONTEREY_COUNTY_CA", - "NAPA_COUNTY_CA", - "ORANGE_COUNTY_CA", - "SAN_DIEGO_COUNTY_CA", - "SAN_FRANCISCO_COUNTY_CA", - "SAN_LUIS_OBISPO_COUNTY_CA", - "SAN_MATEO_COUNTY_CA", - "SANTA_BARBARA_COUNTY_CA", - "SANTA_CLARA_COUNTY_CA", - "SANTA_CRUZ_COUNTY_CA", - "SOLANO_COUNTY_CA", - "SONOMA_COUNTY_CA", - "VENTURA_COUNTY_CA" - ], - "2015-01-01": [ - "ALAMEDA_COUNTY_CA", - "CONTRA_COSTA_COUNTY_CA", - "LOS_ANGELES_COUNTY_CA", - "MARIN_COUNTY_CA", - "MONTEREY_COUNTY_CA", - "NAPA_COUNTY_CA", - "ORANGE_COUNTY_CA", - "SAN_DIEGO_COUNTY_CA", - "SAN_FRANCISCO_COUNTY_CA", - "SAN_LUIS_OBISPO_COUNTY_CA", - "SAN_MATEO_COUNTY_CA", - "SANTA_BARBARA_COUNTY_CA", - "SANTA_CLARA_COUNTY_CA", - "SANTA_CRUZ_COUNTY_CA", - "SOLANO_COUNTY_CA", - "SONOMA_COUNTY_CA", - "VENTURA_COUNTY_CA" - ] - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.immigration_status": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.cash.immigration_status", - "description": null, - "label": "immigration status", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.immigration_status.eligible_statuses": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.immigration_status.eligible_statuses", - "description": "California provides the CalWORKs Child Care program to filers of the following immigration statuses.", - "label": "California CalWORKs Child Care Eligible Immigration Statuses", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": [ - "CITIZEN", - "LEGAL_PERMANENT_RESIDENT", - "ASYLEE", - "PAROLED_ONE_YEAR", - "REFUGEE" - ], - "2015-01-01": [ - "CITIZEN", - "LEGAL_PERMANENT_RESIDENT", - "ASYLEE", - "PAROLED_ONE_YEAR", - "REFUGEE" - ] - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.exempt": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.exempt", - "description": "California provides CalWORKs assistance units the exempt maximum aid payment if they participate in any of these programs.", - "label": "California CalWORKs exempt breakdown", - "unit": "list", - "period": "year", - "values": { - "2023-01-01": [ - "ssi", - "ca_in_home_supportive_services", - "ca_state_disability_insurance", - "workers_compensation" - ], - "2015-01-01": [ - "ssi", - "ca_in_home_supportive_services", - "ca_state_disability_insurance", - "workers_compensation" - ] - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.resources": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.cash.resources", - "description": null, - "label": "resources", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.resources.sources": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.resources.sources", - "description": "California counts the following resources under the CalWORKs program.", - "label": "California CalWORKs TANF resources", - "unit": "list", - "period": "year", - "values": { - "2022-07-01": ["assessed_property_value", "spm_unit_cash_assets"], - "2015-01-01": ["assessed_property_value", "spm_unit_cash_assets"] - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.resources.limit": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.cash.resources.limit", - "description": null, - "label": "limit", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.resources.limit.without_elderly_or_disabled_member": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.resources.limit.without_elderly_or_disabled_member", - "description": "California imposes this CalWORKs resource limit for households without an elderly or disabled member.", - "label": "California CalWORKs resources limit for households without elderly or disabled people", - "unit": "currency-USD", - "period": "year", - "values": { - "2025-01-01": 12137, - "2023-01-01": 10888, - "2015-01-01": 10888 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.resources.limit.age_threshold": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.resources.limit.age_threshold", - "description": "California CalWORKs provides a higher resource limit to households with at least one person at or over this age.", - "label": "California CalWORKs resource limit age threshold", - "unit": "year", - "period": "year", - "values": { - "2023-01-01": 60, - "2015-01-01": 60 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.resources.limit.with_elderly_or_disabled_member": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.resources.limit.with_elderly_or_disabled_member", - "description": "California imposes this CalWORKs resource limit for households with an elderly or disabled member.", - "label": "California CalWORKs resources limit for households with elderly or disabled people", - "unit": "currency-USD", - "period": "year", - "values": { - "2025-01-01": 18206, - "2023-01-01": 16333, - "2015-01-01": 16333 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.cash.resources.limit.vehicle": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.cash.resources.limit.vehicle", - "description": "California limits CalWORKs to households with vehicle value below this amount.", - "label": "California CalWORKs vehicle value limit", - "unit": "currency-USD", - "period": "year", - "values": { - "2024-07-01": 32968, - "2023-01-01": 32045, - "2015-01-01": 32045 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care", - "description": null, - "label": "child care", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.child_care_time": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.child_care_time", - "description": null, - "label": "child care time", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.child_care_time.hourly_care": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.child_care_time.hourly_care", - "description": null, - "label": "hourly care", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.child_care_time.hourly_care.weekly_child_care_hours_limit": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.child_care_time.hourly_care.weekly_child_care_hours_limit", - "description": "California CalWORKs hourly child care limits the following maximum weekly child care hours.", - "label": "California CalWORKs hourly child care hours per week limit", - "unit": "hour", - "period": "week", - "values": { - "2018-10-18": 30, - "2015-01-01": 30 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.child_care_time.hourly_care.daily_child_care_hours_limit": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.child_care_time.hourly_care.daily_child_care_hours_limit", - "description": "California CalWORKs hourly child care limits the following maximum daily child care hours.", - "label": "California CalWORKs hourly child care hours per day limit", - "unit": "hour", - "period": "day", - "values": { - "2018-10-18": 6, - "2015-01-01": 6 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.child_care_time.weekly_care": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.child_care_time.weekly_care", - "description": null, - "label": "weekly care", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.child_care_time.weekly_care.weekly_child_care_hours_threshold": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.child_care_time.weekly_care.weekly_child_care_hours_threshold", - "description": "California CalWORKs weekly child care requires the corresponding weekly child care hours.", - "label": "California CalWORKs weekly child care hours per week requirement", - "unit": "hour", - "period": "week", - "values": { - "2018-10-18": 30, - "2015-01-01": 30 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.child_care_time.daily_care": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.child_care_time.daily_care", - "description": null, - "label": "daily care", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.child_care_time.daily_care.daily_child_care_hours_limit": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.child_care_time.daily_care.daily_child_care_hours_limit", - "description": "California CalWORKs daily child care limits the following minimum daily child care hours.", - "label": "California CalWORKs daily child care hours per day limit", - "unit": "hour", - "period": "day", - "values": { - "2018-10-18": 6, - "2015-01-01": 6 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.child_care_time.daily_care.child_care_days_limit": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.child_care_time.daily_care.child_care_days_limit", - "description": "California CalWORKs daily child care limits the following maximum number of days per month.", - "label": "California CalWORKs daily child care days per month limit", - "unit": "day", - "period": "month", - "values": { - "2018-10-18": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.child_care_time.monthly_care": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.child_care_time.monthly_care", - "description": null, - "label": "monthly care", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.child_care_time.monthly_care.child_care_weeks_requirement": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.child_care_time.monthly_care.child_care_weeks_requirement", - "description": "California CalWORKs monthly child care requires the child care need occurs in every week of the month", - "label": "California CalWORKs monthly child care weeks per month requirement", - "unit": "week", - "period": "month", - "values": { - "2018-10-18": 4, - "2015-01-01": 4 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.child_care_time.monthly_care.weekly_child_care_hours_threshold": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.child_care_time.monthly_care.weekly_child_care_hours_threshold", - "description": "California CalWORKs monthly child care requires the corresponding weekly child care hours.", - "label": "California CalWORKs monthly child care hours per week requirement", - "unit": "hour", - "period": "week", - "values": { - "2018-10-18": 30, - "2015-01-01": 30 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings", - "description": null, - "label": "rate ceilings", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.age_threshold": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.age_threshold", - "description": null, - "label": "age threshold", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.age_threshold.lower": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.age_threshold.lower", - "description": "California partition payment level based on age threshold.", - "label": "California CalWORKs Child Care lower age threshold", - "unit": "year", - "period": "year", - "values": { - "2018-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.age_threshold.higher": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.age_threshold.higher", - "description": "California partition payment level based on age threshold.", - "label": "California CalWORKs Child Care lower age threshold", - "unit": "year", - "period": "year", - "values": { - "2018-01-01": 5, - "2015-01-01": 5 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.evening_or_weekend_I": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.evening_or_weekend_I", - "description": "California multiplies the child care reimbursement for Evening/Weekend Care I under the CalWORKs Child Care by this factor.", - "label": "California CalWORKs Child Care Evening/Weekend (50% or more of time) Regional Market Rate Ceilings", - "unit": "/1", - "period": "year", - "values": { - "2018-01-01": 1.25, - "2015-01-01": 1.25 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard", - "description": null, - "label": "standard", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger", - "description": "California CalWORKs Child Care provides up to this child care reimbursement for younger children.", - "label": "California CalWORKs Child Care Standard Regional Market Rate Ceilings", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.CHILD_CARE_CENTER": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.CHILD_CARE_CENTER", - "description": null, - "label": "CHILD CARE CENTER", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.CHILD_CARE_CENTER.HOURLY": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.CHILD_CARE_CENTER.HOURLY", - "description": null, - "label": "HOURLY", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.CHILD_CARE_CENTER.HOURLY.True": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.CHILD_CARE_CENTER.HOURLY.True", - "description": null, - "label": "True", - "unit": null, - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.CHILD_CARE_CENTER.HOURLY.False": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.CHILD_CARE_CENTER.HOURLY.False", - "description": null, - "label": "False", - "unit": null, - "period": null, - "values": { - "2022-01-01": 19.46, - "2018-01-01": 16.28, - "2015-01-01": 16.28 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.CHILD_CARE_CENTER.DAILY": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.CHILD_CARE_CENTER.DAILY", - "description": null, - "label": "DAILY", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.CHILD_CARE_CENTER.DAILY.True": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.CHILD_CARE_CENTER.DAILY.True", - "description": null, - "label": "True", - "unit": null, - "period": null, - "values": { - "2022-01-01": 100.01, - "2018-01-01": 96.53, - "2015-01-01": 96.53 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.CHILD_CARE_CENTER.DAILY.False": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.CHILD_CARE_CENTER.DAILY.False", - "description": null, - "label": "False", - "unit": null, - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.CHILD_CARE_CENTER.WEEKLY": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.CHILD_CARE_CENTER.WEEKLY", - "description": null, - "label": "WEEKLY", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.CHILD_CARE_CENTER.WEEKLY.True": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.CHILD_CARE_CENTER.WEEKLY.True", - "description": null, - "label": "True", - "unit": null, - "period": null, - "values": { - "2022-01-01": 406.72, - "2018-01-01": 398.15, - "2015-01-01": 398.15 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.CHILD_CARE_CENTER.WEEKLY.False": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.CHILD_CARE_CENTER.WEEKLY.False", - "description": null, - "label": "False", - "unit": null, - "period": null, - "values": { - "2022-01-01": 277.58, - "2018-01-01": 274.31, - "2015-01-01": 274.31 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.CHILD_CARE_CENTER.MONTHLY": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.CHILD_CARE_CENTER.MONTHLY", - "description": null, - "label": "MONTHLY", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.CHILD_CARE_CENTER.MONTHLY.True": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.CHILD_CARE_CENTER.MONTHLY.True", - "description": null, - "label": "True", - "unit": null, - "period": null, - "values": { - "2022-01-01": 1688.28, - "2018-01-01": 1594.48, - "2015-01-01": 1594.48 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.CHILD_CARE_CENTER.MONTHLY.False": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.CHILD_CARE_CENTER.MONTHLY.False", - "description": null, - "label": "False", - "unit": null, - "period": null, - "values": { - "2022-01-01": 1114.98, - "2018-01-01": 1048.63, - "2015-01-01": 1048.63 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.FAMILY_CHILD_CARE_HOME": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.FAMILY_CHILD_CARE_HOME", - "description": null, - "label": "FAMILY CHILD CARE HOME", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.FAMILY_CHILD_CARE_HOME.HOURLY": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.FAMILY_CHILD_CARE_HOME.HOURLY", - "description": null, - "label": "HOURLY", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.FAMILY_CHILD_CARE_HOME.HOURLY.True": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.FAMILY_CHILD_CARE_HOME.HOURLY.True", - "description": null, - "label": "True", - "unit": null, - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.FAMILY_CHILD_CARE_HOME.HOURLY.False": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.FAMILY_CHILD_CARE_HOME.HOURLY.False", - "description": null, - "label": "False", - "unit": null, - "period": null, - "values": { - "2022-01-01": 13.14, - "2018-01-01": 11.34, - "2015-01-01": 11.34 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.FAMILY_CHILD_CARE_HOME.DAILY": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.FAMILY_CHILD_CARE_HOME.DAILY", - "description": null, - "label": "DAILY", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.FAMILY_CHILD_CARE_HOME.DAILY.True": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.FAMILY_CHILD_CARE_HOME.DAILY.True", - "description": null, - "label": "True", - "unit": null, - "period": null, - "values": { - "2022-01-01": 61.31, - "2018-01-01": 56.4, - "2015-01-01": 56.4 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.FAMILY_CHILD_CARE_HOME.DAILY.False": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.FAMILY_CHILD_CARE_HOME.DAILY.False", - "description": null, - "label": "False", - "unit": null, - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.FAMILY_CHILD_CARE_HOME.WEEKLY": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.FAMILY_CHILD_CARE_HOME.WEEKLY", - "description": null, - "label": "WEEKLY", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.FAMILY_CHILD_CARE_HOME.WEEKLY.True": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.FAMILY_CHILD_CARE_HOME.WEEKLY.True", - "description": null, - "label": "True", - "unit": null, - "period": null, - "values": { - "2022-01-01": 275.79, - "2018-01-01": 232.26, - "2015-01-01": 232.26 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.FAMILY_CHILD_CARE_HOME.WEEKLY.False": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.FAMILY_CHILD_CARE_HOME.WEEKLY.False", - "description": null, - "label": "False", - "unit": null, - "period": null, - "values": { - "2022-01-01": 188.51, - "2018-01-01": 178.58, - "2015-01-01": 178.58 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.FAMILY_CHILD_CARE_HOME.MONTHLY": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.FAMILY_CHILD_CARE_HOME.MONTHLY", - "description": null, - "label": "MONTHLY", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.FAMILY_CHILD_CARE_HOME.MONTHLY.True": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.FAMILY_CHILD_CARE_HOME.MONTHLY.True", - "description": null, - "label": "True", - "unit": null, - "period": null, - "values": { - "2022-01-01": 1122.2, - "2018-01-01": 927.25, - "2015-01-01": 927.25 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.FAMILY_CHILD_CARE_HOME.MONTHLY.False": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.FAMILY_CHILD_CARE_HOME.MONTHLY.False", - "description": null, - "label": "False", - "unit": null, - "period": null, - "values": { - "2022-01-01": 752.59, - "2018-01-01": 690.93, - "2015-01-01": 690.93 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.LICENSE_EXEMPT": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.LICENSE_EXEMPT", - "description": null, - "label": "LICENSE EXEMPT", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.LICENSE_EXEMPT.HOURLY": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.LICENSE_EXEMPT.HOURLY", - "description": null, - "label": "HOURLY", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.LICENSE_EXEMPT.HOURLY.True": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.LICENSE_EXEMPT.HOURLY.True", - "description": null, - "label": "True", - "unit": null, - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.LICENSE_EXEMPT.HOURLY.False": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.LICENSE_EXEMPT.HOURLY.False", - "description": null, - "label": "False", - "unit": null, - "period": null, - "values": { - "2022-01-01": 9.2, - "2018-01-01": 3.61, - "2015-01-01": 3.61 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.LICENSE_EXEMPT.DAILY": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.LICENSE_EXEMPT.DAILY", - "description": null, - "label": "DAILY", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.LICENSE_EXEMPT.DAILY.True": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.LICENSE_EXEMPT.DAILY.True", - "description": null, - "label": "True", - "unit": null, - "period": null, - "values": { - "2022-01-01": 42.91, - "2018-01-01": 39.48, - "2015-01-01": 39.48 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.LICENSE_EXEMPT.DAILY.False": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.LICENSE_EXEMPT.DAILY.False", - "description": null, - "label": "False", - "unit": null, - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.LICENSE_EXEMPT.WEEKLY": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.LICENSE_EXEMPT.WEEKLY", - "description": null, - "label": "WEEKLY", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.LICENSE_EXEMPT.WEEKLY.True": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.LICENSE_EXEMPT.WEEKLY.True", - "description": null, - "label": "True", - "unit": null, - "period": null, - "values": { - "2022-01-01": 193.06, - "2018-01-01": 162.58, - "2015-01-01": 162.58 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.LICENSE_EXEMPT.WEEKLY.False": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.LICENSE_EXEMPT.WEEKLY.False", - "description": null, - "label": "False", - "unit": null, - "period": null, - "values": { - "2022-01-01": 131.96, - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.LICENSE_EXEMPT.MONTHLY": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.LICENSE_EXEMPT.MONTHLY", - "description": null, - "label": "MONTHLY", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.LICENSE_EXEMPT.MONTHLY.True": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.LICENSE_EXEMPT.MONTHLY.True", - "description": null, - "label": "True", - "unit": null, - "period": null, - "values": { - "2022-01-01": 758.54, - "2018-01-01": 649.08, - "2015-01-01": 649.08 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.LICENSE_EXEMPT.MONTHLY.False": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.younger.LICENSE_EXEMPT.MONTHLY.False", - "description": null, - "label": "False", - "unit": null, - "period": null, - "values": { - "2022-01-01": 536.81, - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle", - "description": "California CalWORKs Child Care provides up to this child care reimbursement for middle children.", - "label": "California CalWORKs Child Care Standard Regional Market Rate Ceilings", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.CHILD_CARE_CENTER": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.CHILD_CARE_CENTER", - "description": null, - "label": "CHILD CARE CENTER", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.CHILD_CARE_CENTER.HOURLY": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.CHILD_CARE_CENTER.HOURLY", - "description": null, - "label": "HOURLY", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.CHILD_CARE_CENTER.HOURLY.True": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.CHILD_CARE_CENTER.HOURLY.True", - "description": null, - "label": "True", - "unit": null, - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.CHILD_CARE_CENTER.HOURLY.False": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.CHILD_CARE_CENTER.HOURLY.False", - "description": null, - "label": "False", - "unit": null, - "period": null, - "values": { - "2022-01-01": 14.11, - "2018-01-01": 12.19, - "2015-01-01": 12.19 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.CHILD_CARE_CENTER.DAILY": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.CHILD_CARE_CENTER.DAILY", - "description": null, - "label": "DAILY", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.CHILD_CARE_CENTER.DAILY.True": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.CHILD_CARE_CENTER.DAILY.True", - "description": null, - "label": "True", - "unit": null, - "period": null, - "values": { - "2022-01-01": 73.99, - "2018-01-01": 67.37, - "2015-01-01": 67.37 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.CHILD_CARE_CENTER.DAILY.False": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.CHILD_CARE_CENTER.DAILY.False", - "description": null, - "label": "False", - "unit": null, - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.CHILD_CARE_CENTER.WEEKLY": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.CHILD_CARE_CENTER.WEEKLY", - "description": null, - "label": "WEEKLY", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.CHILD_CARE_CENTER.WEEKLY.True": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.CHILD_CARE_CENTER.WEEKLY.True", - "description": null, - "label": "True", - "unit": null, - "period": null, - "values": { - "2022-01-01": 309.93, - "2018-01-01": 301.55, - "2015-01-01": 301.55 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.CHILD_CARE_CENTER.WEEKLY.False": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.CHILD_CARE_CENTER.WEEKLY.False", - "description": null, - "label": "False", - "unit": null, - "period": null, - "values": { - "2018-01-01": 227.58, - "2015-01-01": 227.58 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.CHILD_CARE_CENTER.MONTHLY": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.CHILD_CARE_CENTER.MONTHLY", - "description": null, - "label": "MONTHLY", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.CHILD_CARE_CENTER.MONTHLY.True": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.CHILD_CARE_CENTER.MONTHLY.True", - "description": null, - "label": "True", - "unit": null, - "period": null, - "values": { - "2022-01-01": 1253.26, - "2018-01-01": 1124.28, - "2015-01-01": 1124.28 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.CHILD_CARE_CENTER.MONTHLY.False": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.CHILD_CARE_CENTER.MONTHLY.False", - "description": null, - "label": "False", - "unit": null, - "period": null, - "values": { - "2022-01-01": 793.85, - "2018-01-01": 727.62, - "2015-01-01": 727.62 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.FAMILY_CHILD_CARE_HOME": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.FAMILY_CHILD_CARE_HOME", - "description": null, - "label": "FAMILY CHILD CARE HOME", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.FAMILY_CHILD_CARE_HOME.HOURLY": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.FAMILY_CHILD_CARE_HOME.HOURLY", - "description": null, - "label": "HOURLY", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.FAMILY_CHILD_CARE_HOME.HOURLY.True": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.FAMILY_CHILD_CARE_HOME.HOURLY.True", - "description": null, - "label": "True", - "unit": null, - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.FAMILY_CHILD_CARE_HOME.HOURLY.False": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.FAMILY_CHILD_CARE_HOME.HOURLY.False", - "description": null, - "label": "False", - "unit": null, - "period": null, - "values": { - "2022-01-01": 12.28, - "2018-01-01": 10.83, - "2015-01-01": 10.83 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.FAMILY_CHILD_CARE_HOME.DAILY": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.FAMILY_CHILD_CARE_HOME.DAILY", - "description": null, - "label": "DAILY", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.FAMILY_CHILD_CARE_HOME.DAILY.True": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.FAMILY_CHILD_CARE_HOME.DAILY.True", - "description": null, - "label": "True", - "unit": null, - "period": null, - "values": { - "2022-01-01": 55.69, - "2018-01-01": 51.96, - "2015-01-01": 51.96 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.FAMILY_CHILD_CARE_HOME.DAILY.False": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.FAMILY_CHILD_CARE_HOME.DAILY.False", - "description": null, - "label": "False", - "unit": null, - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.FAMILY_CHILD_CARE_HOME.WEEKLY": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.FAMILY_CHILD_CARE_HOME.WEEKLY", - "description": null, - "label": "WEEKLY", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.FAMILY_CHILD_CARE_HOME.WEEKLY.True": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.FAMILY_CHILD_CARE_HOME.WEEKLY.True", - "description": null, - "label": "True", - "unit": null, - "period": null, - "values": { - "2022-01-01": 245.28, - "2018-01-01": 214.55, - "2015-01-01": 214.55 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.FAMILY_CHILD_CARE_HOME.WEEKLY.False": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.FAMILY_CHILD_CARE_HOME.WEEKLY.False", - "description": null, - "label": "False", - "unit": null, - "period": null, - "values": { - "2022-01-01": 178.27, - "2018-01-01": 171.73, - "2015-01-01": 171.73 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.FAMILY_CHILD_CARE_HOME.MONTHLY": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.FAMILY_CHILD_CARE_HOME.MONTHLY", - "description": null, - "label": "MONTHLY", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.FAMILY_CHILD_CARE_HOME.MONTHLY.True": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.FAMILY_CHILD_CARE_HOME.MONTHLY.True", - "description": null, - "label": "True", - "unit": null, - "period": null, - "values": { - "2022-01-01": 1006.2, - "2018-01-01": 866.57, - "2015-01-01": 866.57 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.FAMILY_CHILD_CARE_HOME.MONTHLY.False": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.FAMILY_CHILD_CARE_HOME.MONTHLY.False", - "description": null, - "label": "False", - "unit": null, - "period": null, - "values": { - "2022-01-01": 690.52, - "2018-01-01": 638.63, - "2015-01-01": 638.63 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.LICENSE_EXEMPT": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.LICENSE_EXEMPT", - "description": null, - "label": "LICENSE EXEMPT", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.LICENSE_EXEMPT.HOURLY": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.LICENSE_EXEMPT.HOURLY", - "description": null, - "label": "HOURLY", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.LICENSE_EXEMPT.HOURLY.True": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.LICENSE_EXEMPT.HOURLY.True", - "description": null, - "label": "True", - "unit": null, - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.LICENSE_EXEMPT.HOURLY.False": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.LICENSE_EXEMPT.HOURLY.False", - "description": null, - "label": "False", - "unit": null, - "period": null, - "values": { - "2022-01-01": 8.59, - "2018-01-01": 3.34, - "2015-01-01": 3.34 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.LICENSE_EXEMPT.DAILY": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.LICENSE_EXEMPT.DAILY", - "description": null, - "label": "DAILY", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.LICENSE_EXEMPT.DAILY.True": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.LICENSE_EXEMPT.DAILY.True", - "description": null, - "label": "True", - "unit": null, - "period": null, - "values": { - "2022-01-01": 38.98, - "2018-01-01": 36.37, - "2015-01-01": 36.37 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.LICENSE_EXEMPT.DAILY.False": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.LICENSE_EXEMPT.DAILY.False", - "description": null, - "label": "False", - "unit": null, - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.LICENSE_EXEMPT.WEEKLY": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.LICENSE_EXEMPT.WEEKLY", - "description": null, - "label": "WEEKLY", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.LICENSE_EXEMPT.WEEKLY.True": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.LICENSE_EXEMPT.WEEKLY.True", - "description": null, - "label": "True", - "unit": null, - "period": null, - "values": { - "2022-01-01": 171.69, - "2018-01-01": 150.18, - "2015-01-01": 150.18 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.LICENSE_EXEMPT.WEEKLY.False": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.LICENSE_EXEMPT.WEEKLY.False", - "description": null, - "label": "False", - "unit": null, - "period": null, - "values": { - "2022-01-01": 124.79, - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.LICENSE_EXEMPT.MONTHLY": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.LICENSE_EXEMPT.MONTHLY", - "description": null, - "label": "MONTHLY", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.LICENSE_EXEMPT.MONTHLY.True": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.LICENSE_EXEMPT.MONTHLY.True", - "description": null, - "label": "True", - "unit": null, - "period": null, - "values": { - "2022-01-01": 704.34, - "2018-01-01": 606.6, - "2015-01-01": 606.6 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.LICENSE_EXEMPT.MONTHLY.False": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.middle.LICENSE_EXEMPT.MONTHLY.False", - "description": null, - "label": "False", - "unit": null, - "period": null, - "values": { - "2022-01-01": 483.36, - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older", - "description": "California CalWORKs Child Care provides up to this child care reimbursement for older children.", - "label": "California CalWORKs Child Care Standard Regional Market Rate Ceilings", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.CHILD_CARE_CENTER": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.CHILD_CARE_CENTER", - "description": null, - "label": "CHILD CARE CENTER", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.CHILD_CARE_CENTER.HOURLY": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.CHILD_CARE_CENTER.HOURLY", - "description": null, - "label": "HOURLY", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.CHILD_CARE_CENTER.HOURLY.True": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.CHILD_CARE_CENTER.HOURLY.True", - "description": null, - "label": "True", - "unit": null, - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.CHILD_CARE_CENTER.HOURLY.False": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.CHILD_CARE_CENTER.HOURLY.False", - "description": null, - "label": "False", - "unit": null, - "period": null, - "values": { - "2022-01-01": 11.45, - "2018-01-01": 11.24, - "2015-01-01": 11.24 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.CHILD_CARE_CENTER.DAILY": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.CHILD_CARE_CENTER.DAILY", - "description": null, - "label": "DAILY", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.CHILD_CARE_CENTER.DAILY.True": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.CHILD_CARE_CENTER.DAILY.True", - "description": null, - "label": "True", - "unit": null, - "period": null, - "values": { - "2022-01-01": 59.82, - "2018-01-01": 55.72, - "2015-01-01": 55.72 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.CHILD_CARE_CENTER.DAILY.False": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.CHILD_CARE_CENTER.DAILY.False", - "description": null, - "label": "False", - "unit": null, - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.CHILD_CARE_CENTER.WEEKLY": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.CHILD_CARE_CENTER.WEEKLY", - "description": null, - "label": "WEEKLY", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.CHILD_CARE_CENTER.WEEKLY.True": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.CHILD_CARE_CENTER.WEEKLY.True", - "description": null, - "label": "True", - "unit": null, - "period": null, - "values": { - "2022-01-01": 277.15, - "2018-01-01": 234.53, - "2015-01-01": 234.53 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.CHILD_CARE_CENTER.WEEKLY.False": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.CHILD_CARE_CENTER.WEEKLY.False", - "description": null, - "label": "False", - "unit": null, - "period": null, - "values": { - "2018-01-01": 139.94, - "2015-01-01": 139.94 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.CHILD_CARE_CENTER.MONTHLY": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.CHILD_CARE_CENTER.MONTHLY", - "description": null, - "label": "MONTHLY", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.CHILD_CARE_CENTER.MONTHLY.True": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.CHILD_CARE_CENTER.MONTHLY.True", - "description": null, - "label": "True", - "unit": null, - "period": null, - "values": { - "2022-01-01": 1001.5, - "2018-01-01": 904.68, - "2015-01-01": 904.68 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.CHILD_CARE_CENTER.MONTHLY.False": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.CHILD_CARE_CENTER.MONTHLY.False", - "description": null, - "label": "False", - "unit": null, - "period": null, - "values": { - "2018-01-01": 501.85, - "2015-01-01": 501.85 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.FAMILY_CHILD_CARE_HOME": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.FAMILY_CHILD_CARE_HOME", - "description": null, - "label": "FAMILY CHILD CARE HOME", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.FAMILY_CHILD_CARE_HOME.HOURLY": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.FAMILY_CHILD_CARE_HOME.HOURLY", - "description": null, - "label": "HOURLY", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.FAMILY_CHILD_CARE_HOME.HOURLY.True": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.FAMILY_CHILD_CARE_HOME.HOURLY.True", - "description": null, - "label": "True", - "unit": null, - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.FAMILY_CHILD_CARE_HOME.HOURLY.False": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.FAMILY_CHILD_CARE_HOME.HOURLY.False", - "description": null, - "label": "False", - "unit": null, - "period": null, - "values": { - "2022-01-01": 10.3, - "2018-01-01": 9.85, - "2015-01-01": 9.85 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.FAMILY_CHILD_CARE_HOME.DAILY": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.FAMILY_CHILD_CARE_HOME.DAILY", - "description": null, - "label": "DAILY", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.FAMILY_CHILD_CARE_HOME.DAILY.True": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.FAMILY_CHILD_CARE_HOME.DAILY.True", - "description": null, - "label": "True", - "unit": null, - "period": null, - "values": { - "2022-01-01": 43.95, - "2018-01-01": 41.35, - "2015-01-01": 41.35 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.FAMILY_CHILD_CARE_HOME.DAILY.False": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.FAMILY_CHILD_CARE_HOME.DAILY.False", - "description": null, - "label": "False", - "unit": null, - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.FAMILY_CHILD_CARE_HOME.WEEKLY": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.FAMILY_CHILD_CARE_HOME.WEEKLY", - "description": null, - "label": "WEEKLY", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.FAMILY_CHILD_CARE_HOME.WEEKLY.True": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.FAMILY_CHILD_CARE_HOME.WEEKLY.True", - "description": null, - "label": "True", - "unit": null, - "period": null, - "values": { - "2022-01-01": 182.67, - "2018-01-01": 168.78, - "2015-01-01": 168.78 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.FAMILY_CHILD_CARE_HOME.WEEKLY.False": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.FAMILY_CHILD_CARE_HOME.WEEKLY.False", - "description": null, - "label": "False", - "unit": null, - "period": null, - "values": { - "2022-01-01": 142.51, - "2018-01-01": 137.2, - "2015-01-01": 137.2 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.FAMILY_CHILD_CARE_HOME.MONTHLY": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.FAMILY_CHILD_CARE_HOME.MONTHLY", - "description": null, - "label": "MONTHLY", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.FAMILY_CHILD_CARE_HOME.MONTHLY.True": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.FAMILY_CHILD_CARE_HOME.MONTHLY.True", - "description": null, - "label": "True", - "unit": null, - "period": null, - "values": { - "2022-01-01": 752.63, - "2018-01-01": 657.27, - "2015-01-01": 657.27 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.FAMILY_CHILD_CARE_HOME.MONTHLY.False": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.FAMILY_CHILD_CARE_HOME.MONTHLY.False", - "description": null, - "label": "False", - "unit": null, - "period": null, - "values": { - "2022-01-01": 555.69, - "2018-01-01": 524.7, - "2015-01-01": 524.7 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.LICENSE_EXEMPT": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.LICENSE_EXEMPT", - "description": null, - "label": "LICENSE EXEMPT", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.LICENSE_EXEMPT.HOURLY": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.LICENSE_EXEMPT.HOURLY", - "description": null, - "label": "HOURLY", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.LICENSE_EXEMPT.HOURLY.True": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.LICENSE_EXEMPT.HOURLY.True", - "description": null, - "label": "True", - "unit": null, - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.LICENSE_EXEMPT.HOURLY.False": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.LICENSE_EXEMPT.HOURLY.False", - "description": null, - "label": "False", - "unit": null, - "period": null, - "values": { - "2022-01-01": 7.21, - "2018-01-01": 2.63, - "2015-01-01": 2.63 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.LICENSE_EXEMPT.DAILY": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.LICENSE_EXEMPT.DAILY", - "description": null, - "label": "DAILY", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.LICENSE_EXEMPT.DAILY.True": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.LICENSE_EXEMPT.DAILY.True", - "description": null, - "label": "True", - "unit": null, - "period": null, - "values": { - "2022-01-01": 30.76, - "2018-01-01": 28.95, - "2015-01-01": 28.95 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.LICENSE_EXEMPT.DAILY.False": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.LICENSE_EXEMPT.DAILY.False", - "description": null, - "label": "False", - "unit": null, - "period": null, - "values": { - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.LICENSE_EXEMPT.WEEKLY": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.LICENSE_EXEMPT.WEEKLY", - "description": null, - "label": "WEEKLY", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.LICENSE_EXEMPT.WEEKLY.True": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.LICENSE_EXEMPT.WEEKLY.True", - "description": null, - "label": "True", - "unit": null, - "period": null, - "values": { - "2022-01-01": 127.87, - "2018-01-01": 118.15, - "2015-01-01": 118.15 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.LICENSE_EXEMPT.WEEKLY.False": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.LICENSE_EXEMPT.WEEKLY.False", - "description": null, - "label": "False", - "unit": null, - "period": null, - "values": { - "2022-01-01": 99.76, - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.LICENSE_EXEMPT.MONTHLY": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.LICENSE_EXEMPT.MONTHLY", - "description": null, - "label": "MONTHLY", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.LICENSE_EXEMPT.MONTHLY.True": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.LICENSE_EXEMPT.MONTHLY.True", - "description": null, - "label": "True", - "unit": null, - "period": null, - "values": { - "2022-01-01": 526.84, - "2018-01-01": 460.09, - "2015-01-01": 460.09 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.LICENSE_EXEMPT.MONTHLY.False": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.standard.older.LICENSE_EXEMPT.MONTHLY.False", - "description": null, - "label": "False", - "unit": null, - "period": null, - "values": { - "2022-01-01": 388.98, - "2018-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.severely_disabled": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.severely_disabled", - "description": "California multiplies the child care reimbursement for Severely Disabled under the CalWORKs Child Care by this factor.", - "label": "California CalWORKs Child Care Severely Disabled Regional Market Rate Ceilings", - "unit": "/1", - "period": "year", - "values": { - "2018-01-01": 1.5, - "2015-01-01": 1.5 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.evening_or_weekend_II": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.evening_or_weekend_II", - "description": "California multiplies the child care reimbursement for Evening/Weekend Care Ii under the CalWORKs Child Care by this factor.", - "label": "California CalWORKs Child Care Evening/Weekend (at least 10% but less than 50% of time) Regional Market Rate Ceilings", - "unit": "/1", - "period": "year", - "values": { - "2018-01-01": 1.125, - "2015-01-01": 1.125 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.rate_ceilings.exceptional_needs": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.rate_ceilings.exceptional_needs", - "description": "California multiplies the child care reimbursement for Exceptional Needs under the CalWORKs Child Care by this factor.", - "label": "California CalWORKs Child Care Exceptional Needs Regional Market Rate Ceilings", - "unit": "/1", - "period": "year", - "values": { - "2018-01-01": 1.2, - "2015-01-01": 1.2 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.eligibility": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.eligibility", - "description": null, - "label": "eligibility", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.eligibility.age_threshold": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.eligibility.age_threshold", - "description": "California provides the CalWORKs Child Care to children below this age.", - "label": "California CalWORKs Child Care age threshold", - "unit": "year", - "period": "year", - "values": { - "2017-11-16": 13, - "2015-01-01": 13 - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.eligibility.immigration_status": { - "type": "parameterNode", - "parameter": "gov.states.ca.cdss.tanf.child_care.eligibility.immigration_status", - "description": null, - "label": "immigration status", - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.eligibility.immigration_status.eligible_statuses": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.eligibility.immigration_status.eligible_statuses", - "description": "California provides the CalWORKs Child Care program to filers of the following immigration statuses.", - "label": "California CalWORKs Child Care Eligible Immigration Statuses", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": [ - "CITIZEN", - "LEGAL_PERMANENT_RESIDENT", - "ASYLEE", - "PAROLED_ONE_YEAR", - "REFUGEE" - ], - "2015-01-01": [ - "CITIZEN", - "LEGAL_PERMANENT_RESIDENT", - "ASYLEE", - "PAROLED_ONE_YEAR", - "REFUGEE" - ] - }, - "economy": true, - "household": true - }, - "gov.states.ca.cdss.tanf.child_care.eligibility.disabled_age_threshold": { - "type": "parameter", - "parameter": "gov.states.ca.cdss.tanf.child_care.eligibility.disabled_age_threshold", - "description": "California provides the CalWORKs Child Care to disabled children below this age.", - "label": "California CalWORKs Child Care disabled age threshold", - "unit": "year", - "period": "year", - "values": { - "2017-11-16": 18, - "2015-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.states.ca.calepa": { - "type": "parameterNode", - "parameter": "gov.states.ca.calepa", - "description": null, - "label": "California Environmental Protection Agency (CalEPA)", - "economy": false, - "household": false - }, - "gov.states.ca.calepa.carb": { - "type": "parameterNode", - "parameter": "gov.states.ca.calepa.carb", - "description": null, - "label": "California Air Resources Board (CARB)", - "economy": false, - "household": false - }, - "gov.states.ca.calepa.carb.cvrp": { - "type": "parameterNode", - "parameter": "gov.states.ca.calepa.carb.cvrp", - "description": null, - "label": "Clean Vehicle Rebate Project", - "economy": false, - "household": false - }, - "gov.states.ca.calepa.carb.cvrp.income_cap": { - "type": "parameterNode", - "parameter": "gov.states.ca.calepa.carb.cvrp.income_cap", - "description": "Maximum income to be eligible for the California Clean Vehicle Rebate Project.", - "label": "income cap", - "economy": false, - "household": false - }, - "gov.states.ca.calepa.carb.cvrp.income_cap.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ca.calepa.carb.cvrp.income_cap.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": null, - "values": { - "2022-02-24": 135000, - "2016-11-01": 150000, - "2015-01-01": 150000 - }, - "economy": false, - "household": false - }, - "gov.states.ca.calepa.carb.cvrp.income_cap.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ca.calepa.carb.cvrp.income_cap.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": null, - "values": { - "2022-02-24": 175000, - "2016-11-01": 204000, - "2015-01-01": 204000 - }, - "economy": false, - "household": false - }, - "gov.states.ca.calepa.carb.cvrp.income_cap.JOINT": { - "type": "parameter", - "parameter": "gov.states.ca.calepa.carb.cvrp.income_cap.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": null, - "values": { - "2022-02-24": 200000, - "2016-11-01": 300000, - "2015-01-01": 300000 - }, - "economy": false, - "household": false - }, - "gov.states.ca.calepa.carb.cvrp.income_cap.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ca.calepa.carb.cvrp.income_cap.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": null, - "values": { - "2022-02-24": 200000, - "2016-11-01": 300000, - "2015-01-01": 300000 - }, - "economy": false, - "household": false - }, - "gov.states.ca.calepa.carb.cvrp.income_cap.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ca.calepa.carb.cvrp.income_cap.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": null, - "values": { - "2022-02-24": 135000, - "2016-11-01": 150000, - "2015-01-01": 150000 - }, - "economy": false, - "household": false - }, - "gov.states.ca.calepa.carb.cvrp.increased_rebate": { - "type": "parameterNode", - "parameter": "gov.states.ca.calepa.carb.cvrp.increased_rebate", - "description": null, - "label": "Increased rebate", - "economy": false, - "household": false - }, - "gov.states.ca.calepa.carb.cvrp.increased_rebate.fpl_limit": { - "type": "parameter", - "parameter": "gov.states.ca.calepa.carb.cvrp.increased_rebate.fpl_limit", - "description": "Income limit as a percent of the federal poverty guideline to qualify for an increased rebate under California's Clean Vehicle Rebate Project.", - "label": "Maximum FPL percent to qualify for an increased California CVRP rebate", - "unit": "/1", - "period": null, - "values": { - "2016-01-01": 4, - "2015-01-01": 4 - }, - "economy": false, - "household": false - }, - "gov.states.ca.calepa.carb.cvrp.increased_rebate.categorical_eligibility": { - "type": "parameter", - "parameter": "gov.states.ca.calepa.carb.cvrp.increased_rebate.categorical_eligibility", - "description": "List of programs that qualify a household for an increased rebate under California's Clean Vehicle Rebate Project.", - "label": "categorical eligibility", - "unit": "list", - "period": null, - "values": { - "2016-01-01": ["medicaid", "ssi"], - "2015-01-01": ["medicaid", "ssi"] - }, - "economy": false, - "household": false - }, - "gov.states.ca.calepa.carb.cvrp.increased_rebate.amount": { - "type": "parameter", - "parameter": "gov.states.ca.calepa.carb.cvrp.increased_rebate.amount", - "description": "Amount of the increased rebate for low- and moderate-income participants in California's Clean Vehicle Rebate Project, based on the date of purchase.", - "label": "Amount of increased California CVRP rebate", - "unit": "currency-USD", - "period": null, - "values": { - "2019-12-03": 2500, - "2016-01-01": 2000, - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.states.mn": { - "type": "parameterNode", - "parameter": "gov.states.mn", - "description": null, - "label": "Minnesota", - "economy": true, - "household": true - }, - "gov.states.mn.tax": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.niit": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.niit", - "description": null, - "label": "niit", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.niit.in_effect": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.niit.in_effect", - "description": "Minnesota's Net Investment Income Tax is in effect since this year.", - "label": "Minnesota NIIT is in effect", - "unit": "bool", - "period": "year", - "values": { - "2024-01-01": true, - "2021-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.niit.rate": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.niit.rate", - "description": "Minnesota taxes net investment income at the following rates.", - "label": "Minnesota net investment income tax rate" - }, - "gov.states.mn.tax.income.niit.rate[0]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.niit.rate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.mn.tax.income.niit.rate[0].rate": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.niit.rate[0].rate", - "description": null, - "label": "rate", - "unit": null, - "period": null, - "values": { - "2024-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.niit.rate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.niit.rate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.niit.rate[1]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.niit.rate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.mn.tax.income.niit.rate[1].rate": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.niit.rate[1].rate", - "description": null, - "label": "rate", - "unit": null, - "period": null, - "values": { - "2024-01-01": 0.01, - "2015-01-01": 0.01 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.niit.rate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.niit.rate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 1000000, - "2015-01-01": 1000000 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits", - "description": null, - "label": "credits", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.refundable": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.refundable", - "description": "Minnesota provides these refundable tax credits.", - "label": "Minnesota refundable tax credits", - "unit": "list", - "period": "year", - "values": { - "2023-01-01": ["mn_cdcc", "mn_child_and_working_families_credits"], - "2021-01-01": ["mn_cdcc", "mn_wfc"], - "2015-01-01": ["mn_cdcc", "mn_wfc"] - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.marriage": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.marriage", - "description": null, - "label": "marriage", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.marriage.income_sources": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.marriage.income_sources", - "description": "Minnesota counts these income sources when determining its marriage credit.", - "label": "Minnesota marriage credit income sources", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": [ - "irs_employment_income", - "self_employment_income", - "taxable_social_security", - "taxable_pension_income" - ], - "2015-01-01": [ - "irs_employment_income", - "self_employment_income", - "taxable_social_security", - "taxable_pension_income" - ] - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.marriage.minimum_individual_income": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.marriage.minimum_individual_income", - "description": "Minnesota provides a marriage credit for joint filers where the lesser income of the two spouses is at least this minimum amount.", - "label": "Minnesota marriage credit minimum individual income for eligibility", - "unit": "currency-USD", - "period": "year", - "values": { - "2024-01-01": 30000, - "2023-01-01": 28000, - "2021-01-01": 26000, - "2015-01-01": 26000 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.marriage.standard_deduction_fraction": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.marriage.standard_deduction_fraction", - "description": "Minnesota provides a marriage credit for joint filers the calculation of which involves this fraction of their standard deduction.", - "label": "Minnesota marriage credit standard deduction fraction", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.marriage.maximum_amount": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.marriage.maximum_amount", - "description": "Minnesota provides a marriage credit for joint filers where this is the maximum credit amount.", - "label": "Minnesota marriage credit minimum amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2242.74186946186, - "2034-01-01": 2199.31320787295, - "2033-01-01": 2156.42070259996, - "2032-01-01": 2114.60050995878, - "2031-01-01": 2073.85262994944, - "2030-01-01": 2033.640906256, - "2029-01-01": 1993.96533887848, - "2028-01-01": 1954.82592781687, - "2027-01-01": 1915.15036043934, - "2026-01-01": 1869.09453290246, - "2025-01-01": 1840.95258147408, - "2024-01-01": 1801, - "2023-01-01": 1710, - "2022-01-01": 1596, - "2021-01-01": 1548, - "2015-01-01": 1548 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.marriage.minimum_taxable_income": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.marriage.minimum_taxable_income", - "description": "Minnesota provides a marriage credit for joint filers where their taxable income is at least this minimum amount.", - "label": "Minnesota marriage credit minimum taxable income for eligibility", - "unit": "currency-USD", - "period": "year", - "values": { - "2024-01-01": 47000, - "2023-01-01": 44000, - "2022-01-01": 42000, - "2021-01-01": 40000, - "2015-01-01": 40000 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cdcc": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cdcc", - "description": null, - "label": "Child and Dependent Care Credit", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cdcc.phaseout_threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cdcc.phaseout_threshold", - "description": "Minnesota has a child/dependent care credit which begins to be phased out when federal AGI exceeds this threshold.", - "label": "Minnesota CDCC phaseout threshold", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 77720, - "2034-01-01": 76210, - "2033-01-01": 74730, - "2032-01-01": 73280, - "2031-01-01": 71870, - "2030-01-01": 70470, - "2029-01-01": 69100, - "2028-01-01": 67740, - "2027-01-01": 66370, - "2026-01-01": 64770, - "2025-01-01": 63790, - "2024-01-01": 62410, - "2023-01-01": 59210, - "2022-01-01": 55300, - "2021-01-01": 53630, - "2015-01-01": 53630 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cdcc.child_age": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cdcc.child_age", - "description": "Minnesota has a child/dependent care credit in which children under this age qualify as a dependent.", - "label": "Minnesota CDCC dependent child age", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 13, - "2015-01-01": 13 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cdcc.maximum_expense": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cdcc.maximum_expense", - "description": "Minnesota has a child/dependent care credit in which this is the maximum care expense allowed per qualified dependent.", - "label": "Minnesota CDCC maximum allowed care expense per qualified dependent", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 3000, - "2015-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cdcc.phaseout_rate": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cdcc.phaseout_rate", - "description": "Minnesota has a child/dependent care credit which is phased out at this rate above a federal AGI threshold.", - "label": "Minnesota CDCC excess AGI phaseout rate", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cdcc.separate_filers_excluded": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cdcc.separate_filers_excluded", - "description": "Minnesota excludes separate filers from the dependent care credit if this is true.", - "label": "Minnesota CDCC separate filers excluded", - "unit": "bool", - "period": "year", - "values": { - "2023-01-01": false, - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cdcc.maximum_dependents": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cdcc.maximum_dependents", - "description": "Minnesota has a child/dependent care credit in which this is the maximum number of qualified dependents allowed.", - "label": "Minnesota CDCC maximum number of qualified dependents", - "unit": "person", - "period": "year", - "values": { - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction", - "description": "Minnesota has a child/dependent care credit in which the pre-phaseout credit amount is qualified expense times this AGI-related fractional amount.", - "label": "Minnesota CDCC expense fraction" - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[0]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[0].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[0].amount": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.35, - "2015-01-01": 0.35 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[1]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[1].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 15000, - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[1].amount": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.34, - "2015-01-01": 0.34 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[2]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[2].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 17000, - "2015-01-01": 17000 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[2].amount": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.33, - "2015-01-01": 0.33 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[3]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[3].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 19000, - "2015-01-01": 19000 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[3].amount": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.32, - "2015-01-01": 0.32 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[4]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[4].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 21000, - "2015-01-01": 21000 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[4].amount": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[4].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.31, - "2015-01-01": 0.31 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[5]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[5].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 23000, - "2015-01-01": 23000 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[5].amount": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[5].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.3, - "2015-01-01": 0.3 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[6]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[6].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[6].amount": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[6].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.29, - "2015-01-01": 0.29 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[7]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[7].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 27000, - "2015-01-01": 27000 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[7].amount": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[7].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.28, - "2015-01-01": 0.28 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[8]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[8].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 29000, - "2015-01-01": 29000 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[8].amount": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[8].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.27, - "2015-01-01": 0.27 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[9]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[9].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 31000, - "2015-01-01": 31000 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[9].amount": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[9].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.26, - "2015-01-01": 0.26 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[10]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[10]", - "description": null, - "label": "bracket 11" - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[10].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[10].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 33000, - "2015-01-01": 33000 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[10].amount": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[10].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[11]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[11]", - "description": null, - "label": "bracket 12" - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[11].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[11].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 35000, - "2015-01-01": 35000 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[11].amount": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[11].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.24, - "2015-01-01": 0.24 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[12]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[12]", - "description": null, - "label": "bracket 13" - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[12].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[12].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 37000, - "2015-01-01": 37000 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[12].amount": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[12].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.23, - "2015-01-01": 0.23 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[13]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[13]", - "description": null, - "label": "bracket 14" - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[13].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[13].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 39000, - "2015-01-01": 39000 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[13].amount": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[13].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.22, - "2015-01-01": 0.22 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[14]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[14]", - "description": null, - "label": "bracket 15" - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[14].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[14].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 41000, - "2015-01-01": 41000 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[14].amount": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[14].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.21, - "2015-01-01": 0.21 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[15]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[15]", - "description": null, - "label": "bracket 16" - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[15].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[15].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 43000, - "2015-01-01": 43000 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cdcc.expense_fraction[15].amount": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cdcc.expense_fraction[15].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cwfc", - "description": null, - "label": "Child and Working Families Tax Credit", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc", - "description": null, - "label": "Working Families Credit", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.eligible": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.eligible", - "description": null, - "label": "eligible", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.eligible.childless_adult_age": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.eligible.childless_adult_age", - "description": null, - "label": "childless adult age", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.eligible.childless_adult_age.maximum": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.eligible.childless_adult_age.maximum", - "description": "Minnesota has a working family credit (WFC) for which childless adults must be at least a minimum age and no more than this age.", - "label": "Minnesota WFC maximum eligibility age for childless adults", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 64, - "2015-01-01": 64 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.eligible.childless_adult_age.minimum": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.eligible.childless_adult_age.minimum", - "description": "Minnesota has a working family credit (WFC) for which childless adults must be at least this age and no more than a maximum age.", - "label": "Minnesota WFC minimum eligibility age for childless adults", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 19, - "2015-01-01": 19 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation", - "description": null, - "label": "Working Families Tax Credit computation pre 2023 Child and Working Families Tax Credit creation", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in", - "description": null, - "label": "phase in", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.earnings_maximum": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.earnings_maximum", - "description": "Minnesota has a working family credit (WFC) in which the credit is phased in a a rate that is applied to earnings up to this maximum.", - "label": "Minnesota WFC maximum earnings to which the phasein rate is applied" - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.earnings_maximum[0]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.earnings_maximum[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.earnings_maximum[0].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.earnings_maximum[0].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.earnings_maximum[0].amount": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.earnings_maximum[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 7570, - "2021-01-01": 7340, - "2015-01-01": 7340 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.earnings_maximum[1]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.earnings_maximum[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.earnings_maximum[1].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.earnings_maximum[1].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.earnings_maximum[1].amount": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.earnings_maximum[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 12650, - "2021-01-01": 12270, - "2015-01-01": 12270 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.earnings_maximum[2]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.earnings_maximum[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.earnings_maximum[2].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.earnings_maximum[2].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.earnings_maximum[2].amount": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.earnings_maximum[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 20750, - "2021-01-01": 20120, - "2015-01-01": 20120 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.earnings_maximum[3]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.earnings_maximum[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.earnings_maximum[3].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.earnings_maximum[3].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2021-01-01": 3, - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.earnings_maximum[3].amount": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.earnings_maximum[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 21170, - "2021-01-01": 20530, - "2015-01-01": 20530 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.rate": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.rate", - "description": "Minnesota has a working family credit (WFC) in which these phasein rates are applied to earnings up to a maximum.", - "label": "Minnesota WFC phasein rate by number of children" - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.rate[0]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.rate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.rate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.rate[0].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.rate[0].amount": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.rate[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.039, - "2015-01-01": 0.039 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.rate[1]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.rate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.rate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.rate[1].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.rate[1].amount": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.rate[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0935, - "2015-01-01": 0.0935 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.rate[2]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.rate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.rate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.rate[2].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.rate[2].amount": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.rate[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.11, - "2015-01-01": 0.11 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.rate[3]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.rate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.rate[3].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.rate[3].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2021-01-01": 3, - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.rate[3].amount": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_in.rate[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.125, - "2015-01-01": 0.125 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out", - "description": null, - "label": "phase out", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.rate": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.rate", - "description": "Minnesota has a working family credit (WFC) in which these phaseout rates are applied to income beyond a threshold.", - "label": "Minnesota WFC phaseout rate by number of children" - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.rate[0]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.rate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.rate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.rate[0].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.rate[0].amount": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.rate[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.02, - "2015-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.rate[1]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.rate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.rate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.rate[1].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.rate[1].amount": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.rate[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.06, - "2015-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.rate[2]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.rate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.rate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.rate[2].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.rate[2].amount": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.rate[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.105, - "2015-01-01": 0.105 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.rate[3]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.rate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.rate[3].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.rate[3].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2021-01-01": 3, - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.rate[3].amount": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.rate[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.105, - "2015-01-01": 0.105 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold", - "description": null, - "label": "threshold", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.other": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.other", - "description": "Minnesota has a working family credit (WFC) in which the credit is phased out at a rate when income exceeds this threshold for non-joint filers.", - "label": "Minnesota WFC phaseout threshold for non-joint filers" - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.other[0]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.other[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.other[0].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.other[0].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.other[0].amount": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.other[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 9240, - "2021-01-01": 8960, - "2015-01-01": 8960 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.other[1]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.other[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.other[1].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.other[1].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.other[1].amount": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.other[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 24110, - "2021-01-01": 23380, - "2015-01-01": 23380 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.other[2]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.other[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.other[2].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.other[2].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.other[2].amount": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.other[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 28590, - "2021-01-01": 27720, - "2015-01-01": 27720 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.other[3]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.other[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.other[3].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.other[3].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2021-01-01": 3, - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.other[3].amount": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.other[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 28900, - "2021-01-01": 28030, - "2015-01-01": 28030 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.joint": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.joint", - "description": "Minnesota has a working family credit (WFC) in which the credit is phased out at a rate when income exceeds this threshold for joint filers.", - "label": "Minnesota WFC phaseout threshold for joint filers" - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.joint[0]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.joint[0].amount": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.joint[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 15430, - "2021-01-01": 14960, - "2015-01-01": 14960 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.joint[1]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.joint[1].amount": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.joint[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 30290, - "2021-01-01": 29380, - "2015-01-01": 29380 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.joint[2]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.joint[2].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.joint[2].amount": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.joint[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 34770, - "2021-01-01": 33720, - "2015-01-01": 33720 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.joint[3]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.joint[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.joint[3].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.joint[3].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2021-01-01": 3, - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.joint[3].amount": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.pre_cwfc_legislation.phase_out.threshold.joint[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 35090, - "2021-01-01": 34030, - "2015-01-01": 34030 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.phase_in": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.phase_in", - "description": "Minnesota phases the working family credit in at this rate, based on earned income.", - "label": "Minnesota working family credit phase-in rate" - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.phase_in[0]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.phase_in[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.phase_in[0].rate": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.phase_in[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.phase_in[0].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.phase_in[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.phase_in[1]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.phase_in[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.phase_in[1].rate": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.phase_in[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.phase_in[1].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.phase_in[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 11480, - "2034-01-01": 11260, - "2033-01-01": 11040, - "2032-01-01": 10830, - "2031-01-01": 10620, - "2030-01-01": 10410, - "2029-01-01": 10210, - "2028-01-01": 10010, - "2027-01-01": 9800, - "2026-01-01": 9570, - "2025-01-01": 9420, - "2024-01-01": 9220, - "2023-01-01": 8750, - "2015-01-01": 8750 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.additional": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.additional", - "description": null, - "label": "additional", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.additional.age_threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.additional.age_threshold", - "description": "Minnesota provides an additional working family credit amount for each qualifying child over this age threshold.", - "label": "Minnesota working family credit additional amount age threshold", - "unit": "year", - "period": "year", - "values": { - "2023-01-01": 18, - "2015-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.additional.amount": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.additional.amount", - "description": "Minnesota provides an additional working family credit amount, based on the number of qualifying older children.", - "label": "Minnesota working family credit additional amount" - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.additional.amount[0]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.additional.amount[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.additional.amount[0].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.additional.amount[0].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.additional.amount[0].amount": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.additional.amount[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 0, - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.additional.amount[1]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.additional.amount[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.additional.amount[1].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.additional.amount[1].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2023-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.additional.amount[1].amount": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.additional.amount[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 1210, - "2034-01-01": 1180, - "2033-01-01": 1160, - "2032-01-01": 1140, - "2031-01-01": 1120, - "2030-01-01": 1100, - "2029-01-01": 1070, - "2028-01-01": 1050, - "2027-01-01": 1030, - "2026-01-01": 1010, - "2025-01-01": 990, - "2024-01-01": 970, - "2023-01-01": 925, - "2015-01-01": 925 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.additional.amount[2]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.additional.amount[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.additional.amount[2].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.additional.amount[2].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2023-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.additional.amount[2].amount": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.additional.amount[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 2750, - "2034-01-01": 2700, - "2033-01-01": 2650, - "2032-01-01": 2590, - "2031-01-01": 2540, - "2030-01-01": 2500, - "2029-01-01": 2450, - "2028-01-01": 2400, - "2027-01-01": 2350, - "2026-01-01": 2290, - "2025-01-01": 2260, - "2024-01-01": 2210, - "2023-01-01": 2100, - "2015-01-01": 2100 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.additional.amount[3]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.additional.amount[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.additional.amount[3].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.additional.amount[3].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2023-01-01": 3, - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.wfc.additional.amount[3].amount": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.wfc.additional.amount[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 3280, - "2034-01-01": 3210, - "2033-01-01": 3150, - "2032-01-01": 3090, - "2031-01-01": 3030, - "2030-01-01": 2970, - "2029-01-01": 2910, - "2028-01-01": 2850, - "2027-01-01": 2800, - "2026-01-01": 2730, - "2025-01-01": 2690, - "2024-01-01": 2630, - "2023-01-01": 2500, - "2015-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.ctc": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cwfc.ctc", - "description": null, - "label": "Child Tax Credit", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.ctc.amount": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.ctc.amount", - "description": "Minnesota provides the following child tax credit amount for each qualifying child.", - "label": "Minnesota child tax credit amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2280, - "2034-01-01": 2280, - "2033-01-01": 2220, - "2032-01-01": 2160, - "2031-01-01": 2160, - "2030-01-01": 2100, - "2029-01-01": 2040, - "2028-01-01": 1980, - "2027-01-01": 1980, - "2026-01-01": 1920, - "2025-01-01": 1920, - "2024-01-01": 1860, - "2023-01-01": 1750, - "2015-01-01": 1750 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.phase_out": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cwfc.phase_out", - "description": null, - "label": "phase out", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.phase_out.rate": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cwfc.phase_out.rate", - "description": null, - "label": "rate", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.phase_out.rate.main": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.phase_out.rate.main", - "description": "Minnesota phases the child and working families tax credit out at this rate, for filers without qualifying older children.", - "label": "Minnesota child and working families tax credit main phase-out rate", - "unit": "/1", - "period": "year", - "values": { - "2023-01-01": 0.12, - "2015-01-01": 0.12 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.phase_out.rate.ctc_ineligible_with_qualifying_older_children": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.phase_out.rate.ctc_ineligible_with_qualifying_older_children", - "description": "Minnesota phases the child and working families tax credit out at this rate, for filers ineligible for the child tax credit with eligible older children.", - "label": "Minnesota child and working families tax credit phase-out ctc ineligible with qualifying older children rate", - "unit": "/1", - "period": "year", - "values": { - "2023-01-01": 0.09, - "2015-01-01": 0.09 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.phase_out.threshold": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.credits.cwfc.phase_out.threshold", - "description": null, - "label": "threshold", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.phase_out.threshold.other": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.phase_out.threshold.other", - "description": "Minnesota phases the child and working families tax credit out over this threshold for non-joint filers with the larger of earned income or adjusted gross income.", - "label": "Minnesota child and working families tax credit non-joint phase-out threshold", - "unit": "currency-USD", - "period": "year", - "values": { - "2024-01-01": 31090, - "2023-01-01": 29500, - "2015-01-01": 29500 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.cwfc.phase_out.threshold.joint": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.cwfc.phase_out.threshold.joint", - "description": "Minnesota phases the child and working families tax credit out over this threshold for joint filers with the larger of earned income or adjusted gross income.", - "label": "Minnesota child and working families tax credit joint phase-out threshold", - "unit": "currency-USD", - "period": "year", - "values": { - "2024-01-01": 36880, - "2023-01-01": 35000, - "2015-01-01": 35000 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.credits.nonrefundable": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.credits.nonrefundable", - "description": "Minnesota provides these nonrefundable tax credits.", - "label": "Minnesota nonrefundable tax credits", - "unit": "list", - "period": null, - "values": { - "2021-01-01": ["mn_marriage_credit"], - "2015-01-01": ["mn_marriage_credit"] - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.exemptions": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.exemptions", - "description": null, - "label": "exemptions", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.exemptions.agi_step_size": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.exemptions.agi_step_size", - "description": "Minnesota limits exemptions when federal adjusted gross income is above a threshold in steps of this size.", - "label": "federal adjusted gross income step size used to limit Minnesota exemptions", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.exemptions.agi_step_size.JOINT": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.exemptions.agi_step_size.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 2500, - "2015-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.exemptions.agi_step_size.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.exemptions.agi_step_size.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 2500, - "2015-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.exemptions.agi_step_size.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.exemptions.agi_step_size.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 2500, - "2015-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.exemptions.agi_step_size.SINGLE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.exemptions.agi_step_size.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 2500, - "2015-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.exemptions.agi_step_size.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.exemptions.agi_step_size.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 1250, - "2015-01-01": 1250 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.exemptions.agi_threshold": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.exemptions.agi_threshold", - "description": "Minnesota limits exemptions when federal adjusted gross income is above this threshold.", - "label": "federal adjusted gross income threshold above which Minnesota exemptions are limited", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.exemptions.agi_threshold.JOINT": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.exemptions.agi_threshold.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 434400, - "2034-01-01": 426000, - "2033-01-01": 417650, - "2032-01-01": 409550, - "2031-01-01": 401700, - "2030-01-01": 393900, - "2029-01-01": 386200, - "2028-01-01": 378600, - "2027-01-01": 370950, - "2026-01-01": 362000, - "2025-01-01": 356550, - "2024-01-01": 348850, - "2023-01-01": 330950, - "2022-01-01": 309050, - "2021-01-01": 299750, - "2015-01-01": 299750 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.exemptions.agi_threshold.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.exemptions.agi_threshold.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 362000, - "2034-01-01": 354950, - "2033-01-01": 348050, - "2032-01-01": 341300, - "2031-01-01": 334700, - "2030-01-01": 328250, - "2029-01-01": 321800, - "2028-01-01": 315500, - "2027-01-01": 309100, - "2026-01-01": 301650, - "2025-01-01": 297100, - "2024-01-01": 290700, - "2023-01-01": 275800, - "2022-01-01": 257550, - "2021-01-01": 249800, - "2015-01-01": 249800 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.exemptions.agi_threshold.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.exemptions.agi_threshold.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 434400, - "2034-01-01": 426000, - "2033-01-01": 417650, - "2032-01-01": 409550, - "2031-01-01": 401700, - "2030-01-01": 393900, - "2029-01-01": 386200, - "2028-01-01": 378600, - "2027-01-01": 370950, - "2026-01-01": 362000, - "2025-01-01": 356550, - "2024-01-01": 348850, - "2023-01-01": 330950, - "2022-01-01": 309050, - "2021-01-01": 299750, - "2015-01-01": 299750 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.exemptions.agi_threshold.SINGLE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.exemptions.agi_threshold.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 289550, - "2034-01-01": 283950, - "2033-01-01": 278400, - "2032-01-01": 273000, - "2031-01-01": 267750, - "2030-01-01": 262550, - "2029-01-01": 257450, - "2028-01-01": 252400, - "2027-01-01": 247250, - "2026-01-01": 241300, - "2025-01-01": 237700, - "2024-01-01": 232550, - "2023-01-01": 220650, - "2022-01-01": 206050, - "2021-01-01": 199850, - "2015-01-01": 199850 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.exemptions.agi_threshold.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.exemptions.agi_threshold.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 217200, - "2034-01-01": 213000, - "2033-01-01": 208800, - "2032-01-01": 204750, - "2031-01-01": 200850, - "2030-01-01": 196950, - "2029-01-01": 193100, - "2028-01-01": 189300, - "2027-01-01": 185450, - "2026-01-01": 181000, - "2025-01-01": 178250, - "2024-01-01": 174425, - "2023-01-01": 165475, - "2022-01-01": 154525, - "2021-01-01": 149875, - "2015-01-01": 149875 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.exemptions.agi_step_fraction": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.exemptions.agi_step_fraction", - "description": "Minnesota limits exemptions when federal adjusted gross income is above a threshold by this fraction of AGI per step above the threshold.", - "label": "Minnesota fraction of federal adjusted gross income steps above threshold that is used to limit exemptions", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.02, - "2015-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.exemptions.amount": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.exemptions.amount", - "description": "Minnesota allows this exemption amount per dependent.", - "label": "Minnesota exemption amount per dependent", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 6250, - "2034-01-01": 6150, - "2033-01-01": 6000, - "2032-01-01": 5900, - "2031-01-01": 5800, - "2030-01-01": 5700, - "2029-01-01": 5550, - "2028-01-01": 5450, - "2027-01-01": 5350, - "2026-01-01": 5200, - "2025-01-01": 5150, - "2024-01-01": 5050, - "2023-01-01": 4800, - "2022-01-01": 4450, - "2021-01-01": 4350, - "2015-01-01": 4350 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.amt": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.amt", - "description": null, - "label": "Alternative Minimum Tax", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.amt.income_threshold": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.amt.income_threshold", - "description": "Minnesota has an alternative income tax (AMT) levied only on some tax units with AMT taxable income above this threshold.", - "label": "Minnesota AMT taxable income threshold", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.amt.income_threshold.JOINT": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.amt.income_threshold.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.amt.income_threshold.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.amt.income_threshold.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 112500, - "2015-01-01": 112500 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.amt.income_threshold.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.amt.income_threshold.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.amt.income_threshold.SINGLE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.amt.income_threshold.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 112500, - "2015-01-01": 112500 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.amt.income_threshold.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.amt.income_threshold.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 75000, - "2015-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.amt.fractional_income_threshold": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.amt.fractional_income_threshold", - "description": "Minnesota has an alternative income tax (AMT) the calculation of which involves this fractional excess income threshold.", - "label": "Minnesota fractional excess income threshold", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.amt.fractional_income_threshold.JOINT": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.amt.fractional_income_threshold.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 115450, - "2034-01-01": 113210, - "2033-01-01": 111010, - "2032-01-01": 108850, - "2031-01-01": 106760, - "2030-01-01": 104690, - "2029-01-01": 102640, - "2028-01-01": 100630, - "2027-01-01": 98590, - "2026-01-01": 96220, - "2025-01-01": 94770, - "2024-01-01": 92710, - "2023-01-01": 87960, - "2022-01-01": 82150, - "2021-01-01": 79660, - "2015-01-01": 79660 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.amt.fractional_income_threshold.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.amt.fractional_income_threshold.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 86580, - "2034-01-01": 84910, - "2033-01-01": 83250, - "2032-01-01": 81640, - "2031-01-01": 80060, - "2030-01-01": 78510, - "2029-01-01": 76980, - "2028-01-01": 75470, - "2027-01-01": 73940, - "2026-01-01": 72160, - "2025-01-01": 71070, - "2024-01-01": 69530, - "2023-01-01": 65970, - "2022-01-01": 61610, - "2021-01-01": 59750, - "2015-01-01": 59750 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.amt.fractional_income_threshold.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.amt.fractional_income_threshold.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 115450, - "2034-01-01": 113210, - "2033-01-01": 111010, - "2032-01-01": 108850, - "2031-01-01": 106760, - "2030-01-01": 104690, - "2029-01-01": 102640, - "2028-01-01": 100630, - "2027-01-01": 98590, - "2026-01-01": 96220, - "2025-01-01": 94770, - "2024-01-01": 92710, - "2023-01-01": 87960, - "2022-01-01": 82150, - "2021-01-01": 79660, - "2015-01-01": 79660 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.amt.fractional_income_threshold.SINGLE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.amt.fractional_income_threshold.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 86580, - "2034-01-01": 84910, - "2033-01-01": 83250, - "2032-01-01": 81640, - "2031-01-01": 80060, - "2030-01-01": 78510, - "2029-01-01": 76980, - "2028-01-01": 75470, - "2027-01-01": 73940, - "2026-01-01": 72160, - "2025-01-01": 71070, - "2024-01-01": 69530, - "2023-01-01": 65970, - "2022-01-01": 61610, - "2021-01-01": 59750, - "2015-01-01": 59750 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.amt.fractional_income_threshold.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.amt.fractional_income_threshold.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 57730, - "2034-01-01": 56610, - "2033-01-01": 55510, - "2032-01-01": 54430, - "2031-01-01": 53380, - "2030-01-01": 52350, - "2029-01-01": 51330, - "2028-01-01": 50320, - "2027-01-01": 49300, - "2026-01-01": 48110, - "2025-01-01": 47390, - "2024-01-01": 46360, - "2023-01-01": 43990, - "2022-01-01": 41080, - "2021-01-01": 39840, - "2015-01-01": 39840 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.amt.rate": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.amt.rate", - "description": "Minnesota has an alternative income tax (AMT) the calculation of which involves this tax rate.", - "label": "Minnesota AMT rate", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.0675, - "2015-01-01": 0.0675 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.rates": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.rates", - "description": null, - "label": "rates", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.rates.head_of_household": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.rates.head_of_household", - "description": "Minnesota levies income taxes at these rates for filers who file as head of household.", - "label": "Minnesota head of household income tax rates" - }, - "gov.states.mn.tax.income.rates.head_of_household[0]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.rates.head_of_household[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.mn.tax.income.rates.head_of_household[0].rate": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.rates.head_of_household[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0535, - "2015-01-01": 0.0535 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.rates.head_of_household[0].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.rates.head_of_household[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.rates.head_of_household[1]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.rates.head_of_household[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.mn.tax.income.rates.head_of_household[1].rate": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.rates.head_of_household[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.068, - "2015-01-01": 0.068 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.rates.head_of_household[1].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.rates.head_of_household[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 49420, - "2034-01-01": 48470, - "2033-01-01": 47520, - "2032-01-01": 46600, - "2031-01-01": 45700, - "2030-01-01": 44820, - "2029-01-01": 43940, - "2028-01-01": 43080, - "2027-01-01": 42210, - "2026-01-01": 41190, - "2025-01-01": 40570, - "2024-01-01": 39690, - "2023-01-01": 37010, - "2022-01-01": 34570, - "2021-01-01": 33520, - "2015-01-01": 33520 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.rates.head_of_household[2]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.rates.head_of_household[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.mn.tax.income.rates.head_of_household[2].rate": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.rates.head_of_household[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0785, - "2015-01-01": 0.0785 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.rates.head_of_household[2].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.rates.head_of_household[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 195210, - "2034-01-01": 191430, - "2033-01-01": 187700, - "2032-01-01": 184060, - "2031-01-01": 180510, - "2030-01-01": 177010, - "2029-01-01": 173560, - "2028-01-01": 170150, - "2027-01-01": 166700, - "2026-01-01": 162690, - "2025-01-01": 160240, - "2024-01-01": 156760, - "2023-01-01": 148730, - "2022-01-01": 138890, - "2021-01-01": 134700, - "2015-01-01": 134700 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.rates.head_of_household[3]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.rates.head_of_household[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.mn.tax.income.rates.head_of_household[3].rate": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.rates.head_of_household[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0985, - "2015-01-01": 0.0985 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.rates.head_of_household[3].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.rates.head_of_household[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 319890, - "2034-01-01": 313690, - "2033-01-01": 307570, - "2032-01-01": 301610, - "2031-01-01": 295800, - "2030-01-01": 290060, - "2029-01-01": 284400, - "2028-01-01": 278820, - "2027-01-01": 273160, - "2026-01-01": 266590, - "2025-01-01": 262580, - "2024-01-01": 256880, - "2023-01-01": 243720, - "2022-01-01": 227600, - "2021-01-01": 220730, - "2015-01-01": 220730 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.rates.separate": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.rates.separate", - "description": "Minnesota levies income taxes at these rates for filers who file as separate.", - "label": "Minnesota separate income tax rates" - }, - "gov.states.mn.tax.income.rates.separate[0]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.rates.separate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.mn.tax.income.rates.separate[0].rate": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.rates.separate[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0535, - "2015-01-01": 0.0535 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.rates.separate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.rates.separate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.rates.separate[1]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.rates.separate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.mn.tax.income.rates.separate[1].rate": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.rates.separate[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.068, - "2015-01-01": 0.068 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.rates.separate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.rates.separate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 28850, - "2034-01-01": 28290, - "2033-01-01": 27740, - "2032-01-01": 27200, - "2031-01-01": 26670, - "2030-01-01": 26160, - "2029-01-01": 25650, - "2028-01-01": 25140, - "2027-01-01": 24630, - "2026-01-01": 24040, - "2025-01-01": 23680, - "2024-01-01": 23165, - "2023-01-01": 21975, - "2022-01-01": 20525, - "2021-01-01": 19905, - "2015-01-01": 19905 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.rates.separate[2]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.rates.separate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.mn.tax.income.rates.separate[2].rate": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.rates.separate[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0785, - "2015-01-01": 0.0785 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.rates.separate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.rates.separate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 114590, - "2034-01-01": 112370, - "2033-01-01": 110180, - "2032-01-01": 108040, - "2031-01-01": 105960, - "2030-01-01": 103910, - "2029-01-01": 101880, - "2028-01-01": 99880, - "2027-01-01": 97850, - "2026-01-01": 95500, - "2025-01-01": 94060, - "2024-01-01": 92020, - "2023-01-01": 87305, - "2022-01-01": 81530, - "2021-01-01": 79070, - "2015-01-01": 79070 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.rates.separate[3]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.rates.separate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.mn.tax.income.rates.separate[3].rate": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.rates.separate[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0985, - "2015-01-01": 0.0985 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.rates.separate[3].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.rates.separate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 200150, - "2034-01-01": 196270, - "2033-01-01": 192440, - "2032-01-01": 188710, - "2031-01-01": 185070, - "2030-01-01": 181490, - "2029-01-01": 177950, - "2028-01-01": 174450, - "2027-01-01": 170910, - "2026-01-01": 166800, - "2025-01-01": 164290, - "2024-01-01": 160725, - "2023-01-01": 152485, - "2022-01-01": 142405, - "2021-01-01": 138100, - "2015-01-01": 138100 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.rates.joint": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.rates.joint", - "description": "Minnesota levies income taxes at these rates for filers who file as joint.", - "label": "Minnesota joint income tax rates" - }, - "gov.states.mn.tax.income.rates.joint[0]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.rates.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.mn.tax.income.rates.joint[0].rate": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.rates.joint[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0535, - "2015-01-01": 0.0535 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.rates.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.rates.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.rates.joint[1]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.rates.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.mn.tax.income.rates.joint[1].rate": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.rates.joint[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.068, - "2015-01-01": 0.068 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.rates.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.rates.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 57690, - "2034-01-01": 56580, - "2033-01-01": 55470, - "2032-01-01": 54400, - "2031-01-01": 53350, - "2030-01-01": 52310, - "2029-01-01": 51290, - "2028-01-01": 50290, - "2027-01-01": 49270, - "2026-01-01": 48080, - "2025-01-01": 47360, - "2024-01-01": 46330, - "2023-01-01": 43950, - "2022-01-01": 41050, - "2021-01-01": 39810, - "2015-01-01": 39810 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.rates.joint[2]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.rates.joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.mn.tax.income.rates.joint[2].rate": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.rates.joint[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0785, - "2015-01-01": 0.0785 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.rates.joint[2].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.rates.joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 229180, - "2034-01-01": 224740, - "2033-01-01": 220360, - "2032-01-01": 216090, - "2031-01-01": 211920, - "2030-01-01": 207810, - "2029-01-01": 203760, - "2028-01-01": 199760, - "2027-01-01": 195700, - "2026-01-01": 191000, - "2025-01-01": 188120, - "2024-01-01": 184040, - "2023-01-01": 174610, - "2022-01-01": 163060, - "2021-01-01": 158140, - "2015-01-01": 158140 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.rates.joint[3]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.rates.joint[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.mn.tax.income.rates.joint[3].rate": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.rates.joint[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0985, - "2015-01-01": 0.0985 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.rates.joint[3].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.rates.joint[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 400290, - "2034-01-01": 392540, - "2033-01-01": 384890, - "2032-01-01": 377420, - "2031-01-01": 370150, - "2030-01-01": 362970, - "2029-01-01": 355890, - "2028-01-01": 348910, - "2027-01-01": 341820, - "2026-01-01": 333600, - "2025-01-01": 328580, - "2024-01-01": 321450, - "2023-01-01": 304970, - "2022-01-01": 284810, - "2021-01-01": 276200, - "2015-01-01": 276200 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.rates.single": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.rates.single", - "description": "Minnesota levies income taxes at these rates for filers who file as single.", - "label": "Minnesota single income tax rates" - }, - "gov.states.mn.tax.income.rates.single[0]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.rates.single[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.mn.tax.income.rates.single[0].rate": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.rates.single[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0535, - "2015-01-01": 0.0535 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.rates.single[0].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.rates.single[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.rates.single[1]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.rates.single[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.mn.tax.income.rates.single[1].rate": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.rates.single[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.068, - "2015-01-01": 0.068 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.rates.single[1].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.rates.single[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 39460, - "2034-01-01": 38700, - "2033-01-01": 37940, - "2032-01-01": 37210, - "2031-01-01": 36490, - "2030-01-01": 35780, - "2029-01-01": 35090, - "2028-01-01": 34400, - "2027-01-01": 33700, - "2026-01-01": 32890, - "2025-01-01": 32390, - "2024-01-01": 31690, - "2023-01-01": 30070, - "2022-01-01": 28080, - "2021-01-01": 27230, - "2015-01-01": 27230 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.rates.single[2]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.rates.single[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.mn.tax.income.rates.single[2].rate": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.rates.single[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0785, - "2015-01-01": 0.0785 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.rates.single[2].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.rates.single[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 130370, - "2034-01-01": 127840, - "2033-01-01": 125350, - "2032-01-01": 122920, - "2031-01-01": 120550, - "2030-01-01": 118210, - "2029-01-01": 115910, - "2028-01-01": 113630, - "2027-01-01": 111330, - "2026-01-01": 108650, - "2025-01-01": 107010, - "2024-01-01": 104690, - "2023-01-01": 98760, - "2022-01-01": 92230, - "2021-01-01": 89440, - "2015-01-01": 89440 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.rates.single[3]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.rates.single[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.mn.tax.income.rates.single[3].rate": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.rates.single[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0985, - "2015-01-01": 0.0985 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.rates.single[3].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.rates.single[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 240640, - "2034-01-01": 235980, - "2033-01-01": 231380, - "2032-01-01": 226890, - "2031-01-01": 222520, - "2030-01-01": 218200, - "2029-01-01": 213940, - "2028-01-01": 209740, - "2027-01-01": 205490, - "2026-01-01": 200550, - "2025-01-01": 197530, - "2024-01-01": 193240, - "2023-01-01": 183340, - "2022-01-01": 171220, - "2021-01-01": 166040, - "2015-01-01": 166040 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.rates.surviving_spouse": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.rates.surviving_spouse", - "description": "Minnesota levies income taxes at these rates for filers who file as surviving spouse.", - "label": "Minnesota surviving spouse income tax rates" - }, - "gov.states.mn.tax.income.rates.surviving_spouse[0]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.rates.surviving_spouse[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.mn.tax.income.rates.surviving_spouse[0].rate": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.rates.surviving_spouse[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0535, - "2015-01-01": 0.0535 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.rates.surviving_spouse[0].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.rates.surviving_spouse[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.rates.surviving_spouse[1]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.rates.surviving_spouse[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.mn.tax.income.rates.surviving_spouse[1].rate": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.rates.surviving_spouse[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.068, - "2015-01-01": 0.068 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.rates.surviving_spouse[1].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.rates.surviving_spouse[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 56450, - "2034-01-01": 55360, - "2033-01-01": 54280, - "2032-01-01": 53220, - "2031-01-01": 52200, - "2030-01-01": 51190, - "2029-01-01": 50190, - "2028-01-01": 49200, - "2027-01-01": 48200, - "2026-01-01": 47040, - "2025-01-01": 46340, - "2024-01-01": 45330, - "2023-01-01": 43950, - "2022-01-01": 41050, - "2021-01-01": 39810, - "2015-01-01": 39810 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.rates.surviving_spouse[2]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.rates.surviving_spouse[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.mn.tax.income.rates.surviving_spouse[2].rate": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.rates.surviving_spouse[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0785, - "2015-01-01": 0.0785 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.rates.surviving_spouse[2].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.rates.surviving_spouse[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 229180, - "2034-01-01": 224740, - "2033-01-01": 220360, - "2032-01-01": 216090, - "2031-01-01": 211920, - "2030-01-01": 207810, - "2029-01-01": 203760, - "2028-01-01": 199760, - "2027-01-01": 195700, - "2026-01-01": 191000, - "2025-01-01": 188120, - "2024-01-01": 184040, - "2023-01-01": 174610, - "2022-01-01": 163060, - "2021-01-01": 158140, - "2015-01-01": 158140 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.rates.surviving_spouse[3]": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.rates.surviving_spouse[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.mn.tax.income.rates.surviving_spouse[3].rate": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.rates.surviving_spouse[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0985, - "2015-01-01": 0.0985 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.rates.surviving_spouse[3].threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.rates.surviving_spouse[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 400290, - "2034-01-01": 392540, - "2033-01-01": 384890, - "2032-01-01": 377420, - "2031-01-01": 370150, - "2030-01-01": 362970, - "2029-01-01": 355890, - "2028-01-01": 348910, - "2027-01-01": 341820, - "2026-01-01": 333600, - "2025-01-01": 328580, - "2024-01-01": 321450, - "2023-01-01": 304970, - "2022-01-01": 284810, - "2021-01-01": 276200, - "2015-01-01": 276200 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.subtractions", - "description": null, - "label": "subtractions", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.elderly_disabled": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.subtractions.elderly_disabled", - "description": null, - "label": "elderly disabled", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.elderly_disabled.agi_offset_base": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.subtractions.elderly_disabled.agi_offset_base", - "description": "Minnesota allows a subtraction from federal adjusted gross income to get its taxable income that is available to tax units with elderly or disabled heads or spouses that met certain eligibility conditions with this variable being base offset against US AGI.", - "label": "Minnesota base AGI offset in elderly/disabled subtraction calculations", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.elderly_disabled.agi_offset_base.JOINT": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.elderly_disabled.agi_offset_base.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 14500, - "2015-01-01": 14500 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.elderly_disabled.agi_offset_base.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.elderly_disabled.agi_offset_base.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 14500, - "2015-01-01": 14500 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.elderly_disabled.agi_offset_base.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.elderly_disabled.agi_offset_base.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 14500, - "2015-01-01": 14500 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.elderly_disabled.agi_offset_base.SINGLE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.elderly_disabled.agi_offset_base.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 14500, - "2015-01-01": 14500 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.elderly_disabled.agi_offset_base.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.elderly_disabled.agi_offset_base.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 9000, - "2015-01-01": 9000 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.elderly_disabled.base_amount": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.subtractions.elderly_disabled.base_amount", - "description": "Minnesota allows a subtraction from federal adjusted gross income to get its taxable income that is available to tax units with elderly or disabled heads or spouses that met certain eligibility conditions with this variable being a base amount in the calculation of the subtraction amount.", - "label": "Minnesota base amount in elderly/disabled subtraction calculations", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.elderly_disabled.base_amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.elderly_disabled.base_amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 12000, - "2015-01-01": 12000 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.elderly_disabled.base_amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.elderly_disabled.base_amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 9600, - "2015-01-01": 9600 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.elderly_disabled.base_amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.elderly_disabled.base_amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 9600, - "2015-01-01": 9600 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.elderly_disabled.base_amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.elderly_disabled.base_amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 9600, - "2015-01-01": 9600 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.elderly_disabled.base_amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.elderly_disabled.base_amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 6000, - "2015-01-01": 6000 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.elderly_disabled.minimum_age": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.elderly_disabled.minimum_age", - "description": "Minnesota allows a subtraction from federal adjusted gross income to get its taxable income that is available to tax units with elderly or disabled heads or spouses that met certain eligibility conditions such as being at least this old to be considered age eligible.", - "label": "Minnesota elderly/disabled subtraction minimum age for age eligibility", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.elderly_disabled.net_agi_fraction": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.elderly_disabled.net_agi_fraction", - "description": "Minnesota allows a subtraction from federal adjusted gross income to get its taxable income that is available to tax units with elderly or disabled heads or spouses that met certain eligibility conditions with this variable being the fraction of net AGI that reduces the subtraction amount.", - "label": "Minnesota elderly/disabled subraction net AGI fraction", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.elderly_disabled.agi_offset_extra": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.elderly_disabled.agi_offset_extra", - "description": "Minnesota allows a subtraction from federal adjusted gross income to get its taxable income that is available to tax units with elderly or disabled heads or spouses that met certain eligibility conditions with this variable being extra offset against US AGI when there are two aged/disabled spouses in the tax unit.", - "label": "Minnesota extra AGI offset in elderly/disabled subtraction calculations", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 3500, - "2015-01-01": 3500 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.sources": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.sources", - "description": "Minnesota subtracts these variables from federal adjusted gross income when computing its taxable income.", - "label": "Minnesota subtractions from federal adjusted gross income", - "unit": "list", - "period": "year", - "values": { - "2023-01-01": [ - "mn_charity_subtraction", - "mn_social_security_subtraction", - "us_govt_interest", - "mn_elderly_disabled_subtraction", - "mn_public_pension_subtraction" - ], - "2021-01-01": [ - "mn_charity_subtraction", - "mn_social_security_subtraction", - "us_govt_interest", - "mn_elderly_disabled_subtraction" - ], - "2015-01-01": [ - "mn_charity_subtraction", - "mn_social_security_subtraction", - "us_govt_interest", - "mn_elderly_disabled_subtraction" - ] - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.charity": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.subtractions.charity", - "description": null, - "label": "charity", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.charity.fraction": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.charity.fraction", - "description": "Minnesota allows subtraction from federal adjusted gross income of this fraction of charitable contributions in excess of a threshold for tax units that do not itemize Minnesota deductions.", - "label": "Minnesota charity subtraction fraction", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.charity.threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.charity.threshold", - "description": "Minnesota allows subtraction from federal adjusted gross income of a fraction of charitable contributions in excess of this threshold for tax units that do not itemize Minnesota deductions.", - "label": "Minnesota charity subtraction threshold", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.social_security": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.subtractions.social_security", - "description": null, - "label": "social security", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.social_security.income_amount": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.subtractions.social_security.income_amount", - "description": "Minnesota allows subtraction from federal adjusted gross income of the lesser of US-taxable social security and an alternative amount with the complex calculation of the alternative subtraction amount including this income amount.", - "label": "Minnesota social security subtraction income amount", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.social_security.income_amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.social_security.income_amount.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 116680, - "2034-01-01": 114420, - "2033-01-01": 112190, - "2032-01-01": 110010, - "2031-01-01": 107890, - "2030-01-01": 105800, - "2029-01-01": 103740, - "2028-01-01": 101700, - "2027-01-01": 99640, - "2026-01-01": 97240, - "2025-01-01": 95780, - "2024-01-01": 93700, - "2023-01-01": 88630, - "2022-01-01": 82770, - "2021-01-01": 80270, - "2015-01-01": 80270 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.social_security.income_amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.social_security.income_amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 91170, - "2034-01-01": 89400, - "2033-01-01": 87660, - "2032-01-01": 85960, - "2031-01-01": 84300, - "2030-01-01": 82670, - "2029-01-01": 81050, - "2028-01-01": 79460, - "2027-01-01": 77850, - "2026-01-01": 75980, - "2025-01-01": 74830, - "2024-01-01": 73210, - "2023-01-01": 69250, - "2022-01-01": 64670, - "2021-01-01": 62710, - "2015-01-01": 62710 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.social_security.income_amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.social_security.income_amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 116680, - "2034-01-01": 114420, - "2033-01-01": 112190, - "2032-01-01": 110010, - "2031-01-01": 107890, - "2030-01-01": 105800, - "2029-01-01": 103740, - "2028-01-01": 101700, - "2027-01-01": 99640, - "2026-01-01": 97240, - "2025-01-01": 95780, - "2024-01-01": 93700, - "2023-01-01": 88630, - "2022-01-01": 82770, - "2021-01-01": 80270, - "2015-01-01": 80270 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.social_security.income_amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.social_security.income_amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 91170, - "2034-01-01": 89400, - "2033-01-01": 87660, - "2032-01-01": 85960, - "2031-01-01": 84300, - "2030-01-01": 82670, - "2029-01-01": 81050, - "2028-01-01": 79460, - "2027-01-01": 77850, - "2026-01-01": 75980, - "2025-01-01": 74830, - "2024-01-01": 73210, - "2023-01-01": 69250, - "2022-01-01": 64670, - "2021-01-01": 62710, - "2015-01-01": 62710 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.social_security.income_amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.social_security.income_amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 58340, - "2034-01-01": 57210, - "2033-01-01": 56090, - "2032-01-01": 55010, - "2031-01-01": 53950, - "2030-01-01": 52900, - "2029-01-01": 51870, - "2028-01-01": 50850, - "2027-01-01": 49820, - "2026-01-01": 48620, - "2025-01-01": 47890, - "2024-01-01": 46850, - "2023-01-01": 44315, - "2022-01-01": 41385, - "2021-01-01": 40135, - "2015-01-01": 40135 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.social_security.reduction": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.subtractions.social_security.reduction", - "description": null, - "label": "reduction", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.social_security.reduction.increment": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.subtractions.social_security.reduction.increment", - "description": "Minnesota reduces the social security subtraction in these increments of adjusted gross income.", - "label": "Minnesota social security subtraction reduction increment", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.social_security.reduction.increment.SINGLE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.social_security.reduction.increment.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2023-01-01": 4000, - "2015-01-01": 4000 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.social_security.reduction.increment.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.social_security.reduction.increment.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2023-01-01": 2000, - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.social_security.reduction.increment.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.social_security.reduction.increment.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2023-01-01": 4000, - "2015-01-01": 4000 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.social_security.reduction.increment.JOINT": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.social_security.reduction.increment.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2023-01-01": 4000, - "2015-01-01": 4000 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.social_security.reduction.increment.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.social_security.reduction.increment.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2023-01-01": 4000, - "2015-01-01": 4000 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.social_security.reduction.start": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.subtractions.social_security.reduction.start", - "description": "Minnesota reduces the social security subtraction for filers with adjusted gross income above this amount, based on filing status.", - "label": "Minnesota social security subtraction reduction start", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.social_security.reduction.start.JOINT": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.social_security.reduction.start.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 131230, - "2034-01-01": 128690, - "2033-01-01": 126180, - "2032-01-01": 123730, - "2031-01-01": 121350, - "2030-01-01": 118990, - "2029-01-01": 116670, - "2028-01-01": 114380, - "2027-01-01": 112060, - "2026-01-01": 109360, - "2025-01-01": 107720, - "2024-01-01": 105380, - "2023-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.social_security.reduction.start.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.social_security.reduction.start.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 102350, - "2034-01-01": 100370, - "2033-01-01": 98410, - "2032-01-01": 96500, - "2031-01-01": 94640, - "2030-01-01": 92810, - "2029-01-01": 91000, - "2028-01-01": 89210, - "2027-01-01": 87400, - "2026-01-01": 85300, - "2025-01-01": 84010, - "2024-01-01": 82190, - "2023-01-01": 78000, - "2015-01-01": 78000 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.social_security.reduction.start.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.social_security.reduction.start.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 131230, - "2034-01-01": 128690, - "2033-01-01": 126180, - "2032-01-01": 123730, - "2031-01-01": 121350, - "2030-01-01": 118990, - "2029-01-01": 116670, - "2028-01-01": 114380, - "2027-01-01": 112060, - "2026-01-01": 109360, - "2025-01-01": 107720, - "2024-01-01": 105380, - "2023-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.social_security.reduction.start.SINGLE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.social_security.reduction.start.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 102350, - "2034-01-01": 100370, - "2033-01-01": 98410, - "2032-01-01": 96500, - "2031-01-01": 94640, - "2030-01-01": 92810, - "2029-01-01": 91000, - "2028-01-01": 89210, - "2027-01-01": 87400, - "2026-01-01": 85300, - "2025-01-01": 84010, - "2024-01-01": 82190, - "2023-01-01": 78000, - "2015-01-01": 78000 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.social_security.reduction.start.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.social_security.reduction.start.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 65610, - "2034-01-01": 64340, - "2033-01-01": 63090, - "2032-01-01": 61860, - "2031-01-01": 60670, - "2030-01-01": 59500, - "2029-01-01": 58340, - "2028-01-01": 57190, - "2027-01-01": 56030, - "2026-01-01": 54680, - "2025-01-01": 53860, - "2024-01-01": 52690, - "2023-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.social_security.reduction.rate": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.social_security.reduction.rate", - "description": "Minnesota reduces the social security subtraction by this fraction for each increment of adjusted gross income.", - "label": "Minnesota social security subtraction reduction rate", - "unit": "/1", - "period": "year", - "values": { - "2023-01-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.social_security.reduction.applies": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.social_security.reduction.applies", - "description": "Minnesota reduced the social security subtraction if this is true.", - "label": "Minnesota social security subtraction reduction applies", - "unit": "bool", - "period": "year", - "values": { - "2023-01-01": true, - "2021-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.social_security.net_income_fraction": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.social_security.net_income_fraction", - "description": "Minnesota allows subtraction from federal adjusted gross income of the lesser of US-taxable social security and an alternative amount with the complex calculation of the alternative subtraction amount including this fraction which is applied to a net income amout.", - "label": "Minnesota social security subtraction net income fraction", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.social_security.total_benefit_fraction": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.social_security.total_benefit_fraction", - "description": "Minnesota allows subtraction from federal adjusted gross income of the lesser of US-taxable social security and an alternative amount with the complex calculation of the alternative subtraction amount including this fraction which is applied to total social security benefits.", - "label": "Minnesota social security subtraction total benefit fraction", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.social_security.alternative_amount": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.subtractions.social_security.alternative_amount", - "description": "Minnesota allows subtraction from federal adjusted gross income of the lesser of US-taxable social security and an alternative amount with the complex calculation of the alternative subtraction amount including this alternative subtraction amount.", - "label": "Minnesota social security subtraction alternative subtraction amount", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.social_security.alternative_amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.social_security.alternative_amount.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 7690, - "2034-01-01": 7540, - "2033-01-01": 7390, - "2032-01-01": 7250, - "2031-01-01": 7110, - "2030-01-01": 6970, - "2029-01-01": 6840, - "2028-01-01": 6700, - "2027-01-01": 6570, - "2026-01-01": 6410, - "2025-01-01": 6310, - "2024-01-01": 6170, - "2023-01-01": 5840, - "2022-01-01": 5450, - "2021-01-01": 5290, - "2015-01-01": 5290 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.social_security.alternative_amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.social_security.alternative_amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 6000, - "2034-01-01": 5890, - "2033-01-01": 5770, - "2032-01-01": 5660, - "2031-01-01": 5550, - "2030-01-01": 5440, - "2029-01-01": 5340, - "2028-01-01": 5230, - "2027-01-01": 5130, - "2026-01-01": 5000, - "2025-01-01": 4930, - "2024-01-01": 4820, - "2023-01-01": 4560, - "2022-01-01": 4260, - "2021-01-01": 4130, - "2015-01-01": 4130 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.social_security.alternative_amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.social_security.alternative_amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 7690, - "2034-01-01": 7540, - "2033-01-01": 7390, - "2032-01-01": 7250, - "2031-01-01": 7110, - "2030-01-01": 6970, - "2029-01-01": 6840, - "2028-01-01": 6700, - "2027-01-01": 6570, - "2026-01-01": 6410, - "2025-01-01": 6310, - "2024-01-01": 6170, - "2023-01-01": 5840, - "2022-01-01": 5450, - "2021-01-01": 5290, - "2015-01-01": 5290 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.social_security.alternative_amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.social_security.alternative_amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 6000, - "2034-01-01": 5890, - "2033-01-01": 5770, - "2032-01-01": 5660, - "2031-01-01": 5550, - "2030-01-01": 5440, - "2029-01-01": 5340, - "2028-01-01": 5230, - "2027-01-01": 5130, - "2026-01-01": 5000, - "2025-01-01": 4930, - "2024-01-01": 4820, - "2023-01-01": 4560, - "2022-01-01": 4260, - "2021-01-01": 4130, - "2015-01-01": 4130 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.social_security.alternative_amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.social_security.alternative_amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3840, - "2034-01-01": 3770, - "2033-01-01": 3700, - "2032-01-01": 3620, - "2031-01-01": 3550, - "2030-01-01": 3490, - "2029-01-01": 3420, - "2028-01-01": 3350, - "2027-01-01": 3280, - "2026-01-01": 3200, - "2025-01-01": 3160, - "2024-01-01": 3090, - "2023-01-01": 2920, - "2022-01-01": 2725, - "2021-01-01": 2645, - "2015-01-01": 2645 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.pension_income": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.subtractions.pension_income", - "description": null, - "label": "pension income", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.pension_income.reduction": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.subtractions.pension_income.reduction", - "description": null, - "label": "reduction", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.pension_income.reduction.increment": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.pension_income.reduction.increment", - "description": "Minnesota reduces the public pension subtraction by this fraction for each increments of adjusted gross income.", - "label": "Minnesota public pension subtraction reduction increment", - "unit": "/1", - "period": "year", - "values": { - "2023-01-01": 2000, - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.pension_income.reduction.start": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.subtractions.pension_income.reduction.start", - "description": "Minnesota provides the full public pension income subtraction for filers with adjusted gross income below this amount, based on filing status.", - "label": "Minnesota public pension income subtraction agi threshold", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.pension_income.reduction.start.JOINT": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.pension_income.reduction.start.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 131230, - "2034-01-01": 128690, - "2033-01-01": 126180, - "2032-01-01": 123730, - "2031-01-01": 121350, - "2030-01-01": 118990, - "2029-01-01": 116670, - "2028-01-01": 114380, - "2027-01-01": 112060, - "2026-01-01": 109360, - "2025-01-01": 107720, - "2024-01-01": 105380, - "2023-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.pension_income.reduction.start.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.pension_income.reduction.start.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 102350, - "2034-01-01": 100370, - "2033-01-01": 98410, - "2032-01-01": 96500, - "2031-01-01": 94640, - "2030-01-01": 92810, - "2029-01-01": 91000, - "2028-01-01": 89210, - "2027-01-01": 87400, - "2026-01-01": 85300, - "2025-01-01": 84010, - "2024-01-01": 82190, - "2023-01-01": 78000, - "2015-01-01": 78000 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.pension_income.reduction.start.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.pension_income.reduction.start.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 131230, - "2034-01-01": 128690, - "2033-01-01": 126180, - "2032-01-01": 123730, - "2031-01-01": 121350, - "2030-01-01": 118990, - "2029-01-01": 116670, - "2028-01-01": 114380, - "2027-01-01": 112060, - "2026-01-01": 109360, - "2025-01-01": 107720, - "2024-01-01": 105380, - "2023-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.pension_income.reduction.start.SINGLE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.pension_income.reduction.start.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 102350, - "2034-01-01": 100370, - "2033-01-01": 98410, - "2032-01-01": 96500, - "2031-01-01": 94640, - "2030-01-01": 92810, - "2029-01-01": 91000, - "2028-01-01": 89210, - "2027-01-01": 87400, - "2026-01-01": 85300, - "2025-01-01": 84010, - "2024-01-01": 82190, - "2023-01-01": 78000, - "2015-01-01": 78000 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.pension_income.reduction.start.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.pension_income.reduction.start.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 65610, - "2034-01-01": 64340, - "2033-01-01": 63090, - "2032-01-01": 61860, - "2031-01-01": 60670, - "2030-01-01": 59500, - "2029-01-01": 58340, - "2028-01-01": 57190, - "2027-01-01": 56030, - "2026-01-01": 54680, - "2025-01-01": 53860, - "2024-01-01": 52690, - "2023-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.pension_income.reduction.rate": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.pension_income.reduction.rate", - "description": "Minnesota reduces the public pension subtraction by this fraction for each increment of adjusted gross income.", - "label": "Minnesota public pension subtraction reduction rate", - "unit": "/1", - "period": "year", - "values": { - "2023-01-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.pension_income.cap": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.subtractions.pension_income.cap", - "description": "Minnesota caps the public pension income subtraction at this amount, based on filing status.", - "label": "Minnesota public pension income subtraction cap", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.pension_income.cap.JOINT": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.pension_income.cap.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 32800, - "2034-01-01": 32170, - "2033-01-01": 31540, - "2032-01-01": 30930, - "2031-01-01": 30330, - "2030-01-01": 29740, - "2029-01-01": 29160, - "2028-01-01": 28590, - "2027-01-01": 28010, - "2026-01-01": 27340, - "2025-01-01": 26920, - "2024-01-01": 26340, - "2023-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.pension_income.cap.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.pension_income.cap.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 16400, - "2034-01-01": 16080, - "2033-01-01": 15770, - "2032-01-01": 15460, - "2031-01-01": 15170, - "2030-01-01": 14870, - "2029-01-01": 14580, - "2028-01-01": 14290, - "2027-01-01": 14000, - "2026-01-01": 13670, - "2025-01-01": 13460, - "2024-01-01": 13170, - "2023-01-01": 12500, - "2015-01-01": 12500 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.pension_income.cap.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.pension_income.cap.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 32800, - "2034-01-01": 32170, - "2033-01-01": 31540, - "2032-01-01": 30930, - "2031-01-01": 30330, - "2030-01-01": 29740, - "2029-01-01": 29160, - "2028-01-01": 28590, - "2027-01-01": 28010, - "2026-01-01": 27340, - "2025-01-01": 26920, - "2024-01-01": 26340, - "2023-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.pension_income.cap.SINGLE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.pension_income.cap.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 16400, - "2034-01-01": 16080, - "2033-01-01": 15770, - "2032-01-01": 15460, - "2031-01-01": 15170, - "2030-01-01": 14870, - "2029-01-01": 14580, - "2028-01-01": 14290, - "2027-01-01": 14000, - "2026-01-01": 13670, - "2025-01-01": 13460, - "2024-01-01": 13170, - "2023-01-01": 12500, - "2015-01-01": 12500 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.subtractions.pension_income.cap.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.subtractions.pension_income.cap.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 16400, - "2034-01-01": 16080, - "2033-01-01": 15770, - "2032-01-01": 15460, - "2031-01-01": 15170, - "2030-01-01": 14870, - "2029-01-01": 14580, - "2028-01-01": 14290, - "2027-01-01": 14000, - "2026-01-01": 13670, - "2025-01-01": 13460, - "2024-01-01": 13170, - "2023-01-01": 12500, - "2015-01-01": 12500 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.additions": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.additions", - "description": null, - "label": "additions", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.additions.sources": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.additions.sources", - "description": "Minnesota adds these variables to federal adjusted gross income when computing its taxable income.", - "label": "Minnesota additions to federal AGI", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": ["form_4972_lumpsum_distributions"], - "2015-01-01": ["form_4972_lumpsum_distributions"] - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.deductions", - "description": null, - "label": "deductions", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.itemized": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.deductions.itemized", - "description": null, - "label": "itemized", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.itemized.alternate_reduction_applies": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.deductions.itemized.alternate_reduction_applies", - "description": "Minnesota applies an alternate itemized deduction reduction if this is true.", - "label": "Minnesota itemized deduction alternate reduction applies", - "unit": "bool", - "period": "year", - "values": { - "2023-01-01": true, - "2021-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.itemized.reduction": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.deductions.itemized.reduction", - "description": null, - "label": "reduction", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.itemized.reduction.alternate": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.deductions.itemized.reduction.alternate", - "description": null, - "label": "alternate", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.itemized.reduction.alternate.income_threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.deductions.itemized.reduction.alternate.income_threshold", - "description": "Minnesota reduces the itemized deductions by a flat rate for filers with adjusted gross income above this threshold.", - "label": "Minnesota itemized deduction alternate reduction income threshold", - "unit": "currency-USD", - "period": "year", - "values": { - "2024-01-01": 1053750, - "2021-01-01": 1000000, - "2015-01-01": 1000000 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.itemized.reduction.alternate.rate": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.deductions.itemized.reduction.alternate.rate", - "description": "Minnesota reduces the itemized deductions when federal adjusted gross income is above a threshold by applying this fraction to a subset of itemized deductions.", - "label": "Minnesota alternate itemized deduction reduction rate", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.8, - "2015-01-01": 0.8 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.itemized.reduction.excess_agi_fraction": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.deductions.itemized.reduction.excess_agi_fraction", - "description": null, - "label": "excess agi fraction", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.itemized.reduction.excess_agi_fraction.high": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.deductions.itemized.reduction.excess_agi_fraction.high", - "description": "Minnesota reduces itemized deductions by this fraction of the excess of adjusted gross income above the higher threshold.", - "label": "Minnesota itemized deductions higher excess AGI fraction", - "unit": "/1", - "period": "year", - "values": { - "2023-01-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.itemized.reduction.excess_agi_fraction.low": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.deductions.itemized.reduction.excess_agi_fraction.low", - "description": "Minnesota reduces itemized deductions by this fraction of the excess of adjusted gross income above the lower threshold.", - "label": "Minnesota itmeized deductions lower excess AGI fraction", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.itemized.reduction.agi_threshold": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.deductions.itemized.reduction.agi_threshold", - "description": null, - "label": "agi threshold", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.itemized.reduction.agi_threshold.high": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.deductions.itemized.reduction.agi_threshold.high", - "description": "Minnesota reduces itemized deductions by a higher rate when federal adjusted gross income is above this threshold.", - "label": "Minnesota itemized deduction higher reduction AGI threshold", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.itemized.reduction.agi_threshold.high.JOINT": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.deductions.itemized.reduction.agi_threshold.high.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 400150, - "2034-01-01": 392400, - "2033-01-01": 384750, - "2032-01-01": 377300, - "2031-01-01": 370000, - "2030-01-01": 362850, - "2029-01-01": 355750, - "2028-01-01": 348750, - "2027-01-01": 341700, - "2026-01-01": 333500, - "2025-01-01": 328450, - "2024-01-01": 321350, - "2023-01-01": 304970, - "2015-01-01": 304970 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.itemized.reduction.agi_threshold.high.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.deductions.itemized.reduction.agi_threshold.high.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 400150, - "2034-01-01": 392400, - "2033-01-01": 384750, - "2032-01-01": 377300, - "2031-01-01": 370000, - "2030-01-01": 362850, - "2029-01-01": 355750, - "2028-01-01": 348750, - "2027-01-01": 341700, - "2026-01-01": 333500, - "2025-01-01": 328450, - "2024-01-01": 321350, - "2023-01-01": 304970, - "2015-01-01": 304970 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.itemized.reduction.agi_threshold.high.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.deductions.itemized.reduction.agi_threshold.high.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 400150, - "2034-01-01": 392400, - "2033-01-01": 384750, - "2032-01-01": 377300, - "2031-01-01": 370000, - "2030-01-01": 362850, - "2029-01-01": 355750, - "2028-01-01": 348750, - "2027-01-01": 341700, - "2026-01-01": 333500, - "2025-01-01": 328450, - "2024-01-01": 321350, - "2023-01-01": 304970, - "2015-01-01": 304970 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.itemized.reduction.agi_threshold.high.SINGLE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.deductions.itemized.reduction.agi_threshold.high.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 400150, - "2034-01-01": 392400, - "2033-01-01": 384750, - "2032-01-01": 377300, - "2031-01-01": 370000, - "2030-01-01": 362850, - "2029-01-01": 355750, - "2028-01-01": 348750, - "2027-01-01": 341700, - "2026-01-01": 333500, - "2025-01-01": 328450, - "2024-01-01": 321350, - "2023-01-01": 304970, - "2015-01-01": 304970 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.itemized.reduction.agi_threshold.high.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.deductions.itemized.reduction.agi_threshold.high.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 200050, - "2034-01-01": 196200, - "2033-01-01": 192350, - "2032-01-01": 188650, - "2031-01-01": 185000, - "2030-01-01": 181400, - "2029-01-01": 177850, - "2028-01-01": 174350, - "2027-01-01": 170850, - "2026-01-01": 166750, - "2025-01-01": 164200, - "2024-01-01": 160675, - "2023-01-01": 152485, - "2015-01-01": 152485 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.itemized.reduction.agi_threshold.low": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.deductions.itemized.reduction.agi_threshold.low", - "description": "Minnesota reduces itemized deductions by a lower rate when federal adjusted gross income is above this threshold.", - "label": "Minnesota itemized deduction lower reduction AGI threshold", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.itemized.reduction.agi_threshold.low.JOINT": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.deductions.itemized.reduction.agi_threshold.low.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 289500, - "2034-01-01": 283900, - "2033-01-01": 278350, - "2032-01-01": 272950, - "2031-01-01": 267700, - "2030-01-01": 262500, - "2029-01-01": 257400, - "2028-01-01": 252350, - "2027-01-01": 247200, - "2026-01-01": 241250, - "2025-01-01": 237650, - "2024-01-01": 232500, - "2023-01-01": 220650, - "2022-01-01": 206050, - "2021-01-01": 199850, - "2015-01-01": 199850 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.itemized.reduction.agi_threshold.low.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.deductions.itemized.reduction.agi_threshold.low.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 289500, - "2034-01-01": 283900, - "2033-01-01": 278350, - "2032-01-01": 272950, - "2031-01-01": 267700, - "2030-01-01": 262500, - "2029-01-01": 257400, - "2028-01-01": 252350, - "2027-01-01": 247200, - "2026-01-01": 241250, - "2025-01-01": 237650, - "2024-01-01": 232500, - "2023-01-01": 220650, - "2022-01-01": 206050, - "2021-01-01": 199850, - "2015-01-01": 199850 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.itemized.reduction.agi_threshold.low.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.deductions.itemized.reduction.agi_threshold.low.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 289500, - "2034-01-01": 283900, - "2033-01-01": 278350, - "2032-01-01": 272950, - "2031-01-01": 267700, - "2030-01-01": 262500, - "2029-01-01": 257400, - "2028-01-01": 252350, - "2027-01-01": 247200, - "2026-01-01": 241250, - "2025-01-01": 237650, - "2024-01-01": 232500, - "2023-01-01": 220650, - "2022-01-01": 206050, - "2021-01-01": 199850, - "2015-01-01": 199850 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.itemized.reduction.agi_threshold.low.SINGLE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.deductions.itemized.reduction.agi_threshold.low.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 289500, - "2034-01-01": 283900, - "2033-01-01": 278350, - "2032-01-01": 272950, - "2031-01-01": 267700, - "2030-01-01": 262500, - "2029-01-01": 257400, - "2028-01-01": 252350, - "2027-01-01": 247200, - "2026-01-01": 241250, - "2025-01-01": 237650, - "2024-01-01": 232500, - "2023-01-01": 220650, - "2022-01-01": 206050, - "2021-01-01": 199850, - "2015-01-01": 199850 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.itemized.reduction.agi_threshold.low.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.deductions.itemized.reduction.agi_threshold.low.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 144750, - "2034-01-01": 141950, - "2033-01-01": 139150, - "2032-01-01": 136450, - "2031-01-01": 133850, - "2030-01-01": 131250, - "2029-01-01": 128700, - "2028-01-01": 126150, - "2027-01-01": 123600, - "2026-01-01": 120600, - "2025-01-01": 118800, - "2024-01-01": 116250, - "2023-01-01": 110325, - "2022-01-01": 103025, - "2021-01-01": 99925, - "2015-01-01": 99925 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.standard": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.deductions.standard", - "description": null, - "label": "standard", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.standard.reduction": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.deductions.standard.reduction", - "description": null, - "label": "reduction", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.standard.reduction.alternate_reduction_applies": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.deductions.standard.reduction.alternate_reduction_applies", - "description": "Minnesota applies an alternate standard deduction reduction if this is true.", - "label": "Minnesota standard deduction alternate reduction applies", - "unit": "bool", - "period": "year", - "values": { - "2023-01-01": true, - "2021-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.standard.reduction.alternate": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.deductions.standard.reduction.alternate", - "description": null, - "label": "alternate", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.standard.reduction.alternate.income_threshold": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.deductions.standard.reduction.alternate.income_threshold", - "description": "Minnesota reduces the standard deduction by a flat rate for filers with adjusted gross income above this threshold.", - "label": "Minnesota standard deduction alternate reduction income threshold", - "unit": "currency-USD", - "period": "year", - "values": { - "2024-01-01": 1053750, - "2023-01-01": 1000000, - "2015-01-01": 1000000 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.standard.reduction.alternate.rate": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.deductions.standard.reduction.alternate.rate", - "description": "Minnesota reduces the standard deduction when federal adjusted gross income is above a threshold by applying this fraction to a subset of the standard deduction.", - "label": "Minnesota fraction of subset of itemized deductions that can limit total itemized deductions", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.8, - "2015-01-01": 0.8 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.standard.reduction.excess_agi_fraction": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.deductions.standard.reduction.excess_agi_fraction", - "description": null, - "label": "excess agi fraction", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.standard.reduction.excess_agi_fraction.high": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.deductions.standard.reduction.excess_agi_fraction.high", - "description": "Minnesota reduces the standard deduction by this fraction of the excess of adjusted gross income above the higher threshold.", - "label": "Minnesota standard deduction higher excess AGI fraction", - "unit": "/1", - "period": "year", - "values": { - "2023-01-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.standard.reduction.excess_agi_fraction.low": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.deductions.standard.reduction.excess_agi_fraction.low", - "description": "Minnesota reduces the standard deduction by this fraction of the excess of adjusted gross income above the lower threshold.", - "label": "Minnesota standard deduction lower excess AGI fraction", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.standard.reduction.agi_threshold": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.deductions.standard.reduction.agi_threshold", - "description": null, - "label": "agi threshold", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.standard.reduction.agi_threshold.high": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.deductions.standard.reduction.agi_threshold.high", - "description": "Minnesota reduces the standard deduction by a higher rate for filers with adjusted gross income above this threshold.", - "label": "Minnesota standard deduction higher reduction AGI threshold", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.standard.reduction.agi_threshold.high.JOINT": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.deductions.standard.reduction.agi_threshold.high.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 400150, - "2034-01-01": 392400, - "2033-01-01": 384750, - "2032-01-01": 377300, - "2031-01-01": 370000, - "2030-01-01": 362850, - "2029-01-01": 355750, - "2028-01-01": 348750, - "2027-01-01": 341700, - "2026-01-01": 333500, - "2025-01-01": 328450, - "2024-01-01": 321350, - "2023-01-01": 304970, - "2015-01-01": 304970 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.standard.reduction.agi_threshold.high.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.deductions.standard.reduction.agi_threshold.high.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 400150, - "2034-01-01": 392400, - "2033-01-01": 384750, - "2032-01-01": 377300, - "2031-01-01": 370000, - "2030-01-01": 362850, - "2029-01-01": 355750, - "2028-01-01": 348750, - "2027-01-01": 341700, - "2026-01-01": 333500, - "2025-01-01": 328450, - "2024-01-01": 321350, - "2023-01-01": 304970, - "2015-01-01": 304970 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.standard.reduction.agi_threshold.high.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.deductions.standard.reduction.agi_threshold.high.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 400150, - "2034-01-01": 392400, - "2033-01-01": 384750, - "2032-01-01": 377300, - "2031-01-01": 370000, - "2030-01-01": 362850, - "2029-01-01": 355750, - "2028-01-01": 348750, - "2027-01-01": 341700, - "2026-01-01": 333500, - "2025-01-01": 328450, - "2024-01-01": 321350, - "2023-01-01": 304970, - "2015-01-01": 304970 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.standard.reduction.agi_threshold.high.SINGLE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.deductions.standard.reduction.agi_threshold.high.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 400150, - "2034-01-01": 392400, - "2033-01-01": 384750, - "2032-01-01": 377300, - "2031-01-01": 370000, - "2030-01-01": 362850, - "2029-01-01": 355750, - "2028-01-01": 348750, - "2027-01-01": 341700, - "2026-01-01": 333500, - "2025-01-01": 328450, - "2024-01-01": 321350, - "2023-01-01": 304970, - "2015-01-01": 304970 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.standard.reduction.agi_threshold.high.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.deductions.standard.reduction.agi_threshold.high.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 200050, - "2034-01-01": 196200, - "2033-01-01": 192350, - "2032-01-01": 188650, - "2031-01-01": 185000, - "2030-01-01": 181400, - "2029-01-01": 177850, - "2028-01-01": 174350, - "2027-01-01": 170850, - "2026-01-01": 166750, - "2025-01-01": 164200, - "2024-01-01": 160675, - "2023-01-01": 152485, - "2015-01-01": 152485 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.standard.reduction.agi_threshold.low": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.deductions.standard.reduction.agi_threshold.low", - "description": "Minnesota reduces the standard deduction by a lower rate for filers with adjusted gross income above this threshold.", - "label": "Minnesota standard deduction lower reduction AGI threshold", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.standard.reduction.agi_threshold.low.JOINT": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.deductions.standard.reduction.agi_threshold.low.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 289500, - "2034-01-01": 283900, - "2033-01-01": 278350, - "2032-01-01": 272950, - "2031-01-01": 267700, - "2030-01-01": 262500, - "2029-01-01": 257400, - "2028-01-01": 252350, - "2027-01-01": 247200, - "2026-01-01": 241250, - "2025-01-01": 237650, - "2024-01-01": 232500, - "2023-01-01": 220650, - "2022-01-01": 206050, - "2021-01-01": 199850, - "2015-01-01": 199850 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.standard.reduction.agi_threshold.low.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.deductions.standard.reduction.agi_threshold.low.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 289500, - "2034-01-01": 283900, - "2033-01-01": 278350, - "2032-01-01": 272950, - "2031-01-01": 267700, - "2030-01-01": 262500, - "2029-01-01": 257400, - "2028-01-01": 252350, - "2027-01-01": 247200, - "2026-01-01": 241250, - "2025-01-01": 237650, - "2024-01-01": 232500, - "2023-01-01": 220650, - "2022-01-01": 206050, - "2021-01-01": 199850, - "2015-01-01": 199850 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.standard.reduction.agi_threshold.low.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.deductions.standard.reduction.agi_threshold.low.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 289500, - "2034-01-01": 283900, - "2033-01-01": 278350, - "2032-01-01": 272950, - "2031-01-01": 267700, - "2030-01-01": 262500, - "2029-01-01": 257400, - "2028-01-01": 252350, - "2027-01-01": 247200, - "2026-01-01": 241250, - "2025-01-01": 237650, - "2024-01-01": 232500, - "2023-01-01": 220650, - "2022-01-01": 206050, - "2021-01-01": 199850, - "2015-01-01": 199850 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.standard.reduction.agi_threshold.low.SINGLE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.deductions.standard.reduction.agi_threshold.low.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 289500, - "2034-01-01": 283900, - "2033-01-01": 278350, - "2032-01-01": 272950, - "2031-01-01": 267700, - "2030-01-01": 262500, - "2029-01-01": 257400, - "2028-01-01": 252350, - "2027-01-01": 247200, - "2026-01-01": 241250, - "2025-01-01": 237650, - "2024-01-01": 232500, - "2023-01-01": 220650, - "2022-01-01": 206050, - "2021-01-01": 199850, - "2015-01-01": 199850 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.standard.reduction.agi_threshold.low.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.deductions.standard.reduction.agi_threshold.low.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 144750, - "2034-01-01": 141950, - "2033-01-01": 139150, - "2032-01-01": 136450, - "2031-01-01": 133850, - "2030-01-01": 131250, - "2029-01-01": 128700, - "2028-01-01": 126150, - "2027-01-01": 123600, - "2026-01-01": 120600, - "2025-01-01": 118800, - "2024-01-01": 116250, - "2023-01-01": 110325, - "2022-01-01": 103025, - "2021-01-01": 99925, - "2015-01-01": 99925 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.standard.base": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.deductions.standard.base", - "description": "Minnesota provides this base standard deduction amount.", - "label": "Minnesota base standard deduction amount", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.standard.base.JOINT": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.deductions.standard.base.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 36250, - "2034-01-01": 35550, - "2033-01-01": 34900, - "2032-01-01": 34200, - "2031-01-01": 33550, - "2030-01-01": 32900, - "2029-01-01": 32250, - "2028-01-01": 31600, - "2027-01-01": 30950, - "2026-01-01": 30250, - "2025-01-01": 29750, - "2024-01-01": 29150, - "2023-01-01": 27650, - "2022-01-01": 25800, - "2021-01-01": 25050, - "2015-01-01": 25050 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.standard.base.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.deductions.standard.base.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 27250, - "2034-01-01": 26700, - "2033-01-01": 26200, - "2032-01-01": 25700, - "2031-01-01": 25200, - "2030-01-01": 24700, - "2029-01-01": 24200, - "2028-01-01": 23750, - "2027-01-01": 23250, - "2026-01-01": 22700, - "2025-01-01": 22350, - "2024-01-01": 21900, - "2023-01-01": 20800, - "2022-01-01": 19400, - "2021-01-01": 18800, - "2015-01-01": 18800 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.standard.base.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.deductions.standard.base.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 36250, - "2034-01-01": 35550, - "2033-01-01": 34900, - "2032-01-01": 34200, - "2031-01-01": 33550, - "2030-01-01": 32900, - "2029-01-01": 32250, - "2028-01-01": 31600, - "2027-01-01": 30950, - "2026-01-01": 30250, - "2025-01-01": 29750, - "2024-01-01": 29150, - "2023-01-01": 27650, - "2022-01-01": 25800, - "2021-01-01": 25050, - "2015-01-01": 25050 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.standard.base.SINGLE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.deductions.standard.base.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 18100, - "2034-01-01": 17750, - "2033-01-01": 17450, - "2032-01-01": 17100, - "2031-01-01": 16750, - "2030-01-01": 16450, - "2029-01-01": 16100, - "2028-01-01": 15800, - "2027-01-01": 15450, - "2026-01-01": 15100, - "2025-01-01": 14850, - "2024-01-01": 14575, - "2023-01-01": 13825, - "2022-01-01": 12900, - "2021-01-01": 12525, - "2015-01-01": 12525 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.standard.base.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.deductions.standard.base.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 18100, - "2034-01-01": 17750, - "2033-01-01": 17450, - "2032-01-01": 17100, - "2031-01-01": 16750, - "2030-01-01": 16450, - "2029-01-01": 16100, - "2028-01-01": 15800, - "2027-01-01": 15450, - "2026-01-01": 15100, - "2025-01-01": 14850, - "2024-01-01": 14575, - "2023-01-01": 13825, - "2022-01-01": 12900, - "2021-01-01": 12525, - "2015-01-01": 12525 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.standard.extra": { - "type": "parameterNode", - "parameter": "gov.states.mn.tax.income.deductions.standard.extra", - "description": "Minnesota provides this extra standard deduction amount for each aged/blind head/spouse.", - "label": "Minnesota extra standard deduction amount for each aged/blind head/spouse", - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.standard.extra.JOINT": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.deductions.standard.extra.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1900, - "2034-01-01": 1850, - "2033-01-01": 1850, - "2032-01-01": 1800, - "2031-01-01": 1750, - "2030-01-01": 1750, - "2029-01-01": 1700, - "2028-01-01": 1650, - "2027-01-01": 1600, - "2026-01-01": 1600, - "2025-01-01": 1550, - "2024-01-01": 1550, - "2023-01-01": 1450, - "2022-01-01": 1350, - "2021-01-01": 1300, - "2015-01-01": 1300 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.standard.extra.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.deductions.standard.extra.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2400, - "2034-01-01": 2350, - "2033-01-01": 2300, - "2032-01-01": 2250, - "2031-01-01": 2200, - "2030-01-01": 2200, - "2029-01-01": 2150, - "2028-01-01": 2100, - "2027-01-01": 2050, - "2026-01-01": 2000, - "2025-01-01": 1950, - "2024-01-01": 1950, - "2023-01-01": 1850, - "2022-01-01": 1700, - "2021-01-01": 1650, - "2015-01-01": 1650 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.standard.extra.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.deductions.standard.extra.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1900, - "2034-01-01": 1850, - "2033-01-01": 1850, - "2032-01-01": 1800, - "2031-01-01": 1750, - "2030-01-01": 1750, - "2029-01-01": 1700, - "2028-01-01": 1650, - "2027-01-01": 1600, - "2026-01-01": 1600, - "2025-01-01": 1550, - "2024-01-01": 1550, - "2023-01-01": 1450, - "2022-01-01": 1350, - "2021-01-01": 1300, - "2015-01-01": 1300 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.standard.extra.SINGLE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.deductions.standard.extra.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2400, - "2034-01-01": 2350, - "2033-01-01": 2300, - "2032-01-01": 2250, - "2031-01-01": 2200, - "2030-01-01": 2200, - "2029-01-01": 2150, - "2028-01-01": 2100, - "2027-01-01": 2050, - "2026-01-01": 2000, - "2025-01-01": 1950, - "2024-01-01": 1950, - "2023-01-01": 1850, - "2022-01-01": 1700, - "2021-01-01": 1650, - "2015-01-01": 1650 - }, - "economy": true, - "household": true - }, - "gov.states.mn.tax.income.deductions.standard.extra.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.mn.tax.income.deductions.standard.extra.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 2400, - "2034-01-01": 2350, - "2033-01-01": 2300, - "2032-01-01": 2250, - "2031-01-01": 2200, - "2030-01-01": 2200, - "2029-01-01": 2150, - "2028-01-01": 2100, - "2027-01-01": 2050, - "2026-01-01": 2000, - "2025-01-01": 1950, - "2024-01-01": 1950, - "2023-01-01": 1450, - "2022-01-01": 1350, - "2021-01-01": 1300, - "2015-01-01": 1300 - }, - "economy": true, - "household": true - }, - "gov.states.nj": { - "type": "parameterNode", - "parameter": "gov.states.nj", - "description": null, - "label": "New Jersey", - "economy": true, - "household": true - }, - "gov.states.nj.njdhs": { - "type": "parameterNode", - "parameter": "gov.states.nj.njdhs", - "description": null, - "label": "Department of Human Services", - "economy": false, - "household": false - }, - "gov.states.nj.njdhs.tanf": { - "type": "parameterNode", - "parameter": "gov.states.nj.njdhs.tanf", - "description": null, - "label": "Temporary Assistance for Needy Families", - "economy": false, - "household": false - }, - "gov.states.nj.njdhs.tanf.maximum_allowable_income": { - "type": "parameterNode", - "parameter": "gov.states.nj.njdhs.tanf.maximum_allowable_income", - "description": null, - "label": "maximum allowable income", - "economy": false, - "household": false - }, - "gov.states.nj.njdhs.tanf.maximum_allowable_income.main": { - "type": "parameterNode", - "parameter": "gov.states.nj.njdhs.tanf.maximum_allowable_income.main", - "description": "New Jersey limits its TANF program to households with up to this income level, by household size.", - "label": "New Jersey TANF monthly maximum allowable income", - "economy": false, - "household": false - }, - "gov.states.nj.njdhs.tanf.maximum_allowable_income.main.1": { - "type": "parameter", - "parameter": "gov.states.nj.njdhs.tanf.maximum_allowable_income.main.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2023-01-01": 321, - "2015-01-01": 321 - }, - "economy": false, - "household": false - }, - "gov.states.nj.njdhs.tanf.maximum_allowable_income.main.2": { - "type": "parameter", - "parameter": "gov.states.nj.njdhs.tanf.maximum_allowable_income.main.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2023-01-01": 638, - "2015-01-01": 638 - }, - "economy": false, - "household": false - }, - "gov.states.nj.njdhs.tanf.maximum_allowable_income.main.3": { - "type": "parameter", - "parameter": "gov.states.nj.njdhs.tanf.maximum_allowable_income.main.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2023-01-01": 839, - "2015-01-01": 839 - }, - "economy": false, - "household": false - }, - "gov.states.nj.njdhs.tanf.maximum_allowable_income.main.4": { - "type": "parameter", - "parameter": "gov.states.nj.njdhs.tanf.maximum_allowable_income.main.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2023-01-01": 966, - "2015-01-01": 966 - }, - "economy": false, - "household": false - }, - "gov.states.nj.njdhs.tanf.maximum_allowable_income.main.5": { - "type": "parameter", - "parameter": "gov.states.nj.njdhs.tanf.maximum_allowable_income.main.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2023-01-01": 1092, - "2015-01-01": 1092 - }, - "economy": false, - "household": false - }, - "gov.states.nj.njdhs.tanf.maximum_allowable_income.main.6": { - "type": "parameter", - "parameter": "gov.states.nj.njdhs.tanf.maximum_allowable_income.main.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2023-01-01": 1221, - "2015-01-01": 1221 - }, - "economy": false, - "household": false - }, - "gov.states.nj.njdhs.tanf.maximum_allowable_income.main.7": { - "type": "parameter", - "parameter": "gov.states.nj.njdhs.tanf.maximum_allowable_income.main.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2023-01-01": 1341, - "2015-01-01": 1341 - }, - "economy": false, - "household": false - }, - "gov.states.nj.njdhs.tanf.maximum_allowable_income.main.8": { - "type": "parameter", - "parameter": "gov.states.nj.njdhs.tanf.maximum_allowable_income.main.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2023-01-01": 1442, - "2015-01-01": 1442 - }, - "economy": false, - "household": false - }, - "gov.states.nj.njdhs.tanf.maximum_allowable_income.additional": { - "type": "parameter", - "parameter": "gov.states.nj.njdhs.tanf.maximum_allowable_income.additional", - "description": "New Jersey limits its TANF program to households with up to this income level for people beyond size.", - "label": "New Jersey TANF monthly income limit per additional person", - "unit": "currency-USD", - "period": "month", - "values": { - "2023-01-01": 99, - "2015-01-01": 99 - }, - "economy": false, - "household": false - }, - "gov.states.nj.njdhs.tanf.income": { - "type": "parameterNode", - "parameter": "gov.states.nj.njdhs.tanf.income", - "description": null, - "label": "income", - "economy": false, - "household": false - }, - "gov.states.nj.njdhs.tanf.income.earned": { - "type": "parameter", - "parameter": "gov.states.nj.njdhs.tanf.income.earned", - "description": "New Jersey TANF counts these income sources as earned income.", - "label": "earned", - "unit": "list", - "period": null, - "values": { - "2023-03-22": ["employment_income", "self_employment_income"], - "2015-01-01": ["employment_income", "self_employment_income"] - }, - "economy": false, - "household": false - }, - "gov.states.nj.njdhs.tanf.income.unearned": { - "type": "parameter", - "parameter": "gov.states.nj.njdhs.tanf.income.unearned", - "description": "New Jersey TANF counts these income sources as unearned income.", - "label": "unearned", - "unit": "list", - "period": null, - "values": { - "2021-01-01": [ - "veterans_benefits", - "rental_income", - "alimony_income", - "dividend_income", - "interest_income", - "pension_income", - "unemployment_compensation", - "gi_cash_assistance", - "social_security" - ], - "2015-01-01": [ - "veterans_benefits", - "rental_income", - "alimony_income", - "dividend_income", - "interest_income", - "pension_income", - "unemployment_compensation", - "gi_cash_assistance", - "social_security" - ] - }, - "economy": false, - "household": false - }, - "gov.states.nj.njdhs.tanf.maximum_benefit": { - "type": "parameterNode", - "parameter": "gov.states.nj.njdhs.tanf.maximum_benefit", - "description": null, - "label": "maximum benefit", - "economy": false, - "household": false - }, - "gov.states.nj.njdhs.tanf.maximum_benefit.main": { - "type": "parameterNode", - "parameter": "gov.states.nj.njdhs.tanf.maximum_benefit.main", - "description": "New Jersey limits its TANF program to households with this maximum benefits, by household size.", - "label": "New Jersey TANF monthly maximum benefit", - "economy": false, - "household": false - }, - "gov.states.nj.njdhs.tanf.maximum_benefit.main.1": { - "type": "parameter", - "parameter": "gov.states.nj.njdhs.tanf.maximum_benefit.main.1", - "description": null, - "label": "1", - "unit": "currency-USD", - "period": "month", - "values": { - "2023-01-01": 214, - "2015-01-01": 214 - }, - "economy": false, - "household": false - }, - "gov.states.nj.njdhs.tanf.maximum_benefit.main.2": { - "type": "parameter", - "parameter": "gov.states.nj.njdhs.tanf.maximum_benefit.main.2", - "description": null, - "label": "2", - "unit": "currency-USD", - "period": "month", - "values": { - "2023-01-01": 425, - "2015-01-01": 425 - }, - "economy": false, - "household": false - }, - "gov.states.nj.njdhs.tanf.maximum_benefit.main.3": { - "type": "parameter", - "parameter": "gov.states.nj.njdhs.tanf.maximum_benefit.main.3", - "description": null, - "label": "3", - "unit": "currency-USD", - "period": "month", - "values": { - "2023-01-01": 559, - "2015-01-01": 559 - }, - "economy": false, - "household": false - }, - "gov.states.nj.njdhs.tanf.maximum_benefit.main.4": { - "type": "parameter", - "parameter": "gov.states.nj.njdhs.tanf.maximum_benefit.main.4", - "description": null, - "label": "4", - "unit": "currency-USD", - "period": "month", - "values": { - "2023-01-01": 644, - "2015-01-01": 644 - }, - "economy": false, - "household": false - }, - "gov.states.nj.njdhs.tanf.maximum_benefit.main.5": { - "type": "parameter", - "parameter": "gov.states.nj.njdhs.tanf.maximum_benefit.main.5", - "description": null, - "label": "5", - "unit": "currency-USD", - "period": "month", - "values": { - "2023-01-01": 728, - "2015-01-01": 728 - }, - "economy": false, - "household": false - }, - "gov.states.nj.njdhs.tanf.maximum_benefit.main.6": { - "type": "parameter", - "parameter": "gov.states.nj.njdhs.tanf.maximum_benefit.main.6", - "description": null, - "label": "6", - "unit": "currency-USD", - "period": "month", - "values": { - "2023-01-01": 814, - "2015-01-01": 814 - }, - "economy": false, - "household": false - }, - "gov.states.nj.njdhs.tanf.maximum_benefit.main.7": { - "type": "parameter", - "parameter": "gov.states.nj.njdhs.tanf.maximum_benefit.main.7", - "description": null, - "label": "7", - "unit": "currency-USD", - "period": "month", - "values": { - "2023-01-01": 894, - "2015-01-01": 894 - }, - "economy": false, - "household": false - }, - "gov.states.nj.njdhs.tanf.maximum_benefit.main.8": { - "type": "parameter", - "parameter": "gov.states.nj.njdhs.tanf.maximum_benefit.main.8", - "description": null, - "label": "8", - "unit": "currency-USD", - "period": "month", - "values": { - "2023-01-01": 961, - "2015-01-01": 961 - }, - "economy": false, - "household": false - }, - "gov.states.nj.njdhs.tanf.maximum_benefit.additional": { - "type": "parameter", - "parameter": "gov.states.nj.njdhs.tanf.maximum_benefit.additional", - "description": "New Jersey limits its TANF program to households with this maximum benefit for people beyond size.", - "label": "New Jersey TANF monthly maximum benefit per additional person", - "unit": "currency-USD", - "period": "month", - "values": { - "2023-01-01": 66, - "2015-01-01": 66 - }, - "economy": false, - "household": false - }, - "gov.states.nj.njdhs.tanf.eligibility": { - "type": "parameterNode", - "parameter": "gov.states.nj.njdhs.tanf.eligibility", - "description": null, - "label": "eligibility", - "economy": false, - "household": false - }, - "gov.states.nj.njdhs.tanf.eligibility.resources": { - "type": "parameterNode", - "parameter": "gov.states.nj.njdhs.tanf.eligibility.resources", - "description": null, - "label": "resources", - "economy": false, - "household": false - }, - "gov.states.nj.njdhs.tanf.eligibility.resources.limit": { - "type": "parameter", - "parameter": "gov.states.nj.njdhs.tanf.eligibility.resources.limit", - "description": "New Jersey limits its TANF eligibility to households with up to this amount of resources.", - "label": "New Jersey TANF resource limit", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 2000, - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.states.nj.snap": { - "type": "parameterNode", - "parameter": "gov.states.nj.snap", - "description": null, - "label": "snap", - "economy": true, - "household": true - }, - "gov.states.nj.snap.in_effect": { - "type": "parameter", - "parameter": "gov.states.nj.snap.in_effect", - "description": "New Jersey provides a separate SNAP minimum allotment amount if this is true.", - "label": "New Jersey SNAP minimum allotment in effect", - "unit": "bool", - "period": "year", - "values": { - "2023-03-01": true, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.nj.snap.amount": { - "type": "parameter", - "parameter": "gov.states.nj.snap.amount", - "description": "New Jersey provides a minimum monthly SNAP allotment of this amount.", - "label": "New Jersey SNAP minimum allotment amount", - "unit": "currency-USD", - "period": "month", - "values": { - "2023-01-01": 95, - "2015-01-01": 95 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.states.nj.tax.income": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.credits": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.credits", - "description": null, - "label": "credits", - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.credits.eitc": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.credits.eitc", - "description": null, - "label": "Earned Income Tax Credit", - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.credits.eitc.match": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.credits.eitc.match", - "description": "New Jersey matches this fraction of the federal earned income tax credit.", - "label": "New Jersey EITC match", - "unit": "/1", - "period": "year", - "values": { - "2020-01-01": 0.4, - "2019-01-01": 0.39, - "2018-01-01": 0.37, - "2016-01-01": 0.35, - "2015-01-01": 0.3, - "2010-01-01": 0.2, - "2009-01-01": 0.25, - "2008-01-01": 0.225, - "2003-01-01": 0.2, - "2002-01-01": 0.175, - "2001-01-01": 0.15, - "2000-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.credits.eitc.eligibility": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.credits.eitc.eligibility", - "description": null, - "label": "eligibility", - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.credits.eitc.eligibility.age": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.credits.eitc.eligibility.age", - "description": null, - "label": "age", - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.credits.eitc.eligibility.age.min": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.credits.eitc.eligibility.age.min", - "description": "New Jersey limits the earned income tax credit for filers without children to this age or older.", - "label": "New Jersey EITC minimum childless age", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 18, - "2015-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.credits.ctc": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.credits.ctc", - "description": null, - "label": "Child Tax Credit", - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.credits.ctc.age_limit": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.credits.ctc.age_limit", - "description": "New Jersey provides a child tax credit to filers for each dependent below this age.", - "label": "New Jersey child tax credit age limit", - "unit": "year", - "period": "year", - "values": { - "2022-01-01": 6, - "2015-01-01": 6 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.credits.ctc.amount": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.credits.ctc.amount", - "description": "New Jersey provides this child credit amount for each qualifying dependent, depending on taxable income.", - "label": "New Jersey child tax credit amount" - }, - "gov.states.nj.tax.income.credits.ctc.amount[0]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.credits.ctc.amount[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nj.tax.income.credits.ctc.amount[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.credits.ctc.amount[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.credits.ctc.amount[0].amount": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.credits.ctc.amount[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 1000, - "2022-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.credits.ctc.amount[1]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.credits.ctc.amount[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nj.tax.income.credits.ctc.amount[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.credits.ctc.amount[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.credits.ctc.amount[1].amount": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.credits.ctc.amount[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 800, - "2022-01-01": 400, - "2015-01-01": 400 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.credits.ctc.amount[2]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.credits.ctc.amount[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nj.tax.income.credits.ctc.amount[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.credits.ctc.amount[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 40000, - "2015-01-01": 40000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.credits.ctc.amount[2].amount": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.credits.ctc.amount[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 600, - "2022-01-01": 300, - "2015-01-01": 300 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.credits.ctc.amount[3]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.credits.ctc.amount[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.nj.tax.income.credits.ctc.amount[3].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.credits.ctc.amount[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.credits.ctc.amount[3].amount": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.credits.ctc.amount[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 400, - "2022-01-01": 200, - "2015-01-01": 200 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.credits.ctc.amount[4]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.credits.ctc.amount[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.nj.tax.income.credits.ctc.amount[4].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.credits.ctc.amount[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 60000, - "2015-01-01": 60000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.credits.ctc.amount[4].amount": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.credits.ctc.amount[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 200, - "2022-01-01": 100, - "2015-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.credits.ctc.amount[5]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.credits.ctc.amount[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.nj.tax.income.credits.ctc.amount[5].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.credits.ctc.amount[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 80000, - "2015-01-01": 80000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.credits.ctc.amount[5].amount": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.credits.ctc.amount[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.credits.cdcc": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.credits.cdcc", - "description": null, - "label": "Child and Dependent Care Credit", - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.credits.cdcc.rate": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.credits.cdcc.rate", - "description": "New Jersey matches this share of the federal Child and Dependent Care Credit, depending on taxable income.", - "label": "New Jersey CDCC match rate" - }, - "gov.states.nj.tax.income.credits.cdcc.rate[0]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.credits.cdcc.rate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nj.tax.income.credits.cdcc.rate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.credits.cdcc.rate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.credits.cdcc.rate[0].amount": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.credits.cdcc.rate[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.credits.cdcc.rate[1]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.credits.cdcc.rate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nj.tax.income.credits.cdcc.rate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.credits.cdcc.rate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.credits.cdcc.rate[1].amount": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.credits.cdcc.rate[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.4, - "2015-01-01": 0.4 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.credits.cdcc.rate[2]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.credits.cdcc.rate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nj.tax.income.credits.cdcc.rate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.credits.cdcc.rate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 60000, - "2015-01-01": 60000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.credits.cdcc.rate[2].amount": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.credits.cdcc.rate[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.3, - "2015-01-01": 0.3 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.credits.cdcc.rate[3]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.credits.cdcc.rate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.nj.tax.income.credits.cdcc.rate[3].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.credits.cdcc.rate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 90000, - "2015-01-01": 90000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.credits.cdcc.rate[3].amount": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.credits.cdcc.rate[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.credits.cdcc.rate[4]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.credits.cdcc.rate[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.nj.tax.income.credits.cdcc.rate[4].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.credits.cdcc.rate[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 120000, - "2015-01-01": 120000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.credits.cdcc.rate[4].amount": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.credits.cdcc.rate[4].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.credits.cdcc.rate[5]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.credits.cdcc.rate[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.nj.tax.income.credits.cdcc.rate[5].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.credits.cdcc.rate[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.credits.cdcc.rate[5].amount": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.credits.cdcc.rate[5].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.credits.property_tax": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.credits.property_tax", - "description": null, - "label": "property tax", - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.credits.property_tax.age_threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.credits.property_tax.age_threshold", - "description": "New Jersey limits the property tax credit to filers of this age or older.", - "label": "New Jersey property tax credit senior age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.credits.property_tax.income_limit": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.credits.property_tax.income_limit", - "description": "New Jersey limits the property tax credit to filers with federal adjusted gross income below this limit, based on filing status.", - "label": "New Jersey property tax credit income limit", - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.credits.property_tax.income_limit.SINGLE": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.credits.property_tax.income_limit.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.credits.property_tax.income_limit.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.credits.property_tax.income_limit.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.credits.property_tax.income_limit.JOINT": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.credits.property_tax.income_limit.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.credits.property_tax.income_limit.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.credits.property_tax.income_limit.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.credits.property_tax.income_limit.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.credits.property_tax.income_limit.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.credits.property_tax.amount": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.credits.property_tax.amount", - "description": "New Jersey offers a refundable property tax credit of this amount.", - "label": "New Jersey property tax credit amount", - "unit": "currency-USD", - "period": "year", - "values": { - "1998-01-01": 50, - "1997-01-01": 37.5, - "1996-01-01": 25 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.filing_threshold": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.filing_threshold", - "description": "New Jersey requires filing income taxes if income is this amount or higher.", - "label": "NJ filing threshold", - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.filing_threshold.SINGLE": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.filing_threshold.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.filing_threshold.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.filing_threshold.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.filing_threshold.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.filing_threshold.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.filing_threshold.JOINT": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.filing_threshold.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.filing_threshold.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.filing_threshold.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exemptions": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.exemptions", - "description": null, - "label": "exemptions", - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exemptions.senior": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.exemptions.senior", - "description": null, - "label": "senior", - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exemptions.senior.age_threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exemptions.senior.age_threshold", - "description": "New Jersey provides an additional exemption amount for filers above this age threshold.", - "label": "New Jersey senior exemption age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exemptions.senior.amount": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exemptions.senior.amount", - "description": "New Jersey provides this exemption amount per qualifying person.", - "label": "New Jersey senior exemption amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exemptions.regular": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.exemptions.regular", - "description": null, - "label": "regular", - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exemptions.regular.amount": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.exemptions.regular.amount", - "description": "New Jersey provides a regular exemption of this amount, based on filing status.", - "label": "New Jersey Regular Exemption", - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exemptions.regular.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exemptions.regular.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exemptions.regular.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exemptions.regular.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exemptions.regular.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exemptions.regular.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exemptions.regular.amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exemptions.regular.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 2000, - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exemptions.regular.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exemptions.regular.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exemptions.dependents_attending_college": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.exemptions.dependents_attending_college", - "description": null, - "label": "dependents attending college", - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exemptions.dependents_attending_college.age_threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exemptions.dependents_attending_college.age_threshold", - "description": "New Jersey limits its exemption for dependents attending college to people below this age.", - "label": "New Jersey dependent attending college exemption age limit", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 22, - "2015-01-01": 22 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exemptions.dependents_attending_college.amount": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exemptions.dependents_attending_college.amount", - "description": "New Jersey provides an exemption of this value per dependent attending colleges.", - "label": "New Jersey dependent attending college exemption", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exemptions.blind_or_disabled": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.exemptions.blind_or_disabled", - "description": null, - "label": "blind or disabled", - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exemptions.blind_or_disabled.amount": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exemptions.blind_or_disabled.amount", - "description": "New Jersey provides an exemption of this amount per blind or disabled filer or spouse.", - "label": "New Jersey blind or disabled exemption", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exemptions.dependents": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.exemptions.dependents", - "description": null, - "label": "dependents", - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exemptions.dependents.amount": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exemptions.dependents.amount", - "description": "New Jersey provides an exemption of this value per dependent.", - "label": "New Jersey dependent exemption", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 1500, - "2015-01-01": 1500 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.all_exclusions": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.all_exclusions", - "description": "All exclusions from New Jersey total income.", - "label": "New Jersey exclusions from New Jersey total income", - "unit": "list", - "period": null, - "values": { - "2021-01-01": [ - "nj_pension_retirement_exclusion", - "nj_other_retirement_income_exclusion", - "nj_other_retirement_special_exclusion" - ], - "2015-01-01": [ - "nj_pension_retirement_exclusion", - "nj_other_retirement_income_exclusion", - "nj_other_retirement_special_exclusion" - ] - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.subtractions": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.subtractions", - "description": "Subtractions from federal adjusted gross income.", - "label": "New Jersey subtractions from federal adjusted gross income", - "unit": "list", - "period": null, - "values": { - "2021-01-01": ["taxable_social_security"], - "2015-01-01": ["taxable_social_security"] - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.exclusions", - "description": null, - "label": "exclusions", - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.exclusions.retirement", - "description": null, - "label": "retirement", - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.max_amount": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.max_amount", - "description": "Filers (and/or spouses) can exclude no more than this amount of retirement income from taxable income", - "label": "New Jersey pension/retirement maximum exclusion amount", - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.max_amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.max_amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2020-01-01": 75000, - "2019-01-01": 60000, - "2018-01-01": 45000, - "2017-01-01": 30000, - "2003-01-01": 15000, - "2002-01-01": 13125, - "2001-01-01": 11250, - "2000-01-01": 9375 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.max_amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.max_amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2020-01-01": 50000, - "2019-01-01": 40000, - "2018-01-01": 30000, - "2017-01-01": 20000, - "2003-01-01": 10000, - "2002-01-01": 8750, - "2001-01-01": 7500, - "2000-01-01": 6250 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.max_amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.max_amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2020-01-01": 75000, - "2019-01-01": 60000, - "2018-01-01": 45000, - "2017-01-01": 30000, - "2003-01-01": 15000, - "2002-01-01": 13125, - "2001-01-01": 11250, - "2000-01-01": 9375 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.max_amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.max_amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 100000, - "2020-01-01": 100000, - "2019-01-01": 80000, - "2018-01-01": 60000, - "2017-01-01": 40000, - "2003-01-01": 20000, - "2002-01-01": 17500, - "2001-01-01": 15000, - "2000-01-01": 12500 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.max_amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.max_amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2020-01-01": 75000, - "2019-01-01": 60000, - "2018-01-01": 45000, - "2017-01-01": 30000, - "2003-01-01": 15000, - "2002-01-01": 13125, - "2001-01-01": 11250, - "2000-01-01": 9375 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.age_threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.age_threshold", - "description": "Filers (and/or spouses) must be at or above this age to subtract retirement income from taxable income", - "label": "NJ pension/retirement exclusion and other retirement income exclusion qualifying age", - "unit": null, - "period": "year", - "values": { - "2021-01-01": 62, - "2015-01-01": 62 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.special_exclusion": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.special_exclusion", - "description": null, - "label": "special exclusion", - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.special_exclusion.amount": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.special_exclusion.amount", - "description": "Filers that will never be eligible for social security or railroad benefits get this exclusion.", - "label": "NJ other retirement income special exclusion.", - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.special_exclusion.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.special_exclusion.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 3000, - "2015-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.special_exclusion.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.special_exclusion.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 3000, - "2015-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.special_exclusion.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.special_exclusion.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 6000, - "2015-01-01": 6000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.special_exclusion.amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.special_exclusion.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 6000, - "2015-01-01": 6000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.special_exclusion.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.special_exclusion.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 6000, - "2015-01-01": 6000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.other_retirement_income": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.other_retirement_income", - "description": null, - "label": "other retirement income", - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.other_retirement_income.earned_income_threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.other_retirement_income.earned_income_threshold", - "description": "New Jersey filers with more than this amount of earned income are not eligible for other retirement exclusion.", - "label": "NJ other retirement earned income exclusion threshold.", - "unit": null, - "period": null, - "values": { - "2021-01-01": 3000, - "2015-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.pension": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension", - "description": null, - "label": "pension", - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage", - "description": null, - "label": "percentage", - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.head_of_household": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.head_of_household", - "description": "New Jersey allows the exclusion of this fraction of retirement income depending on total income.", - "label": "New Jersey pension/retirement exclusion fraction" - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.head_of_household[0]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.head_of_household[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.head_of_household[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.head_of_household[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.head_of_household[0].amount": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.head_of_household[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.head_of_household[1]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.head_of_household[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.head_of_household[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.head_of_household[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.head_of_household[1].amount": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.head_of_household[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.375, - "2015-01-01": 0.375 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.head_of_household[2]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.head_of_household[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.head_of_household[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.head_of_household[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 125000, - "2015-01-01": 125000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.head_of_household[2].amount": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.head_of_household[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.1875, - "2015-01-01": 0.1875 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.head_of_household[3]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.head_of_household[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.head_of_household[3].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.head_of_household[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.head_of_household[3].amount": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.head_of_household[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.separate": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.separate", - "description": "New Jersey allows the exclusion of this fraction of retirement income depending on total income.", - "label": "New Jersey pension/retirement exclusion fraction" - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.separate[0]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.separate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.separate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.separate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.separate[0].amount": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.separate[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.separate[1]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.separate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.separate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.separate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.separate[1].amount": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.separate[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.separate[2]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.separate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.separate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.separate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 125000, - "2015-01-01": 125000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.separate[2].amount": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.separate[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.125, - "2015-01-01": 0.125 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.separate[3]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.separate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.separate[3].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.separate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.separate[3].amount": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.separate[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.joint": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.joint", - "description": "New Jersey allows the exclusion of this fraction of retirement income depending on total income.", - "label": "New Jersey pension/retirement exclusion fraction" - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.joint[0]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.joint[0].amount": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.joint[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.joint[1]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.joint[1].amount": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.joint[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.joint[2]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.joint[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 125000, - "2015-01-01": 125000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.joint[2].amount": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.joint[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.joint[3]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.joint[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.joint[3].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.joint[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.joint[3].amount": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.joint[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.single": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.single", - "description": "New Jersey allows the exclusion of this fraction of retirement income depending on total income.", - "label": "New Jersey pension/retirement exclusion fraction" - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.single[0]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.single[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.single[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.single[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.single[0].amount": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.single[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.single[1]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.single[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.single[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.single[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.single[1].amount": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.single[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.375, - "2015-01-01": 0.375 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.single[2]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.single[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.single[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.single[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 125000, - "2015-01-01": 125000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.single[2].amount": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.single[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.1875, - "2015-01-01": 0.1875 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.single[3]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.single[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.single[3].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.single[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.single[3].amount": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.single[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.surviving_spouse": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.surviving_spouse", - "description": "New Jersey allows the exclusion of this fraction of retirement income depending on total income.", - "label": "New Jersey pension/retirement exclusion fraction" - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.surviving_spouse[0]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.surviving_spouse[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.surviving_spouse[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.surviving_spouse[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.surviving_spouse[0].amount": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.surviving_spouse[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.surviving_spouse[1]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.surviving_spouse[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.surviving_spouse[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.surviving_spouse[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.surviving_spouse[1].amount": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.surviving_spouse[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.375, - "2015-01-01": 0.375 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.surviving_spouse[2]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.surviving_spouse[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.surviving_spouse[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.surviving_spouse[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 125000, - "2015-01-01": 125000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.surviving_spouse[2].amount": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.surviving_spouse[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.1875, - "2015-01-01": 0.1875 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.surviving_spouse[3]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.surviving_spouse[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.surviving_spouse[3].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.surviving_spouse[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.surviving_spouse[3].amount": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.exclusions.retirement.pension.percentage.surviving_spouse[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.main", - "description": null, - "label": "main", - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.head_of_household": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.main.head_of_household", - "description": "Progressive rate schedule for a head of household filer in New Jersey.", - "label": "New Jersey State income tax rates for joint filers" - }, - "gov.states.nj.tax.income.main.head_of_household[0]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.main.head_of_household[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nj.tax.income.main.head_of_household[0].rate": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.head_of_household[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.014, - "2018-01-01": 0.014, - "2004-01-01": 0.014, - "1996-01-01": 0.014, - "1995-01-01": 0.017, - "1994-01-01": 0.019, - "1991-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.head_of_household[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.head_of_household[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2020-01-01": 0, - "2018-01-01": 0, - "2004-01-01": 0, - "1996-01-01": 0, - "1995-01-01": 0, - "1994-01-01": 0, - "1991-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.head_of_household[1]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.main.head_of_household[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nj.tax.income.main.head_of_household[1].rate": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.head_of_household[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.0175, - "2018-01-01": 0.0175, - "2004-01-01": 0.0175, - "1996-01-01": 0.02125, - "1995-01-01": 0.02125, - "1994-01-01": 0.02375, - "1991-01-01": 0.025 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.head_of_household[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.head_of_household[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2020-01-01": 20000, - "2018-01-01": 20000, - "2004-01-01": 20000, - "1996-01-01": 20000, - "1995-01-01": 20000, - "1994-01-01": 20000, - "1991-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.head_of_household[2]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.main.head_of_household[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nj.tax.income.main.head_of_household[2].rate": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.head_of_household[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.0245, - "2018-01-01": 0.0245, - "2004-01-01": 0.0245, - "1996-01-01": 0.0245, - "1995-01-01": 0.02975, - "1994-01-01": 0.03325, - "1991-01-01": 0.035 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.head_of_household[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.head_of_household[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2020-01-01": 50000, - "2018-01-01": 50000, - "2004-01-01": 50000, - "1996-01-01": 50000, - "1995-01-01": 50000, - "1994-01-01": 50000, - "1991-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.head_of_household[3]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.main.head_of_household[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.nj.tax.income.main.head_of_household[3].rate": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.head_of_household[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.035, - "2018-01-01": 0.035, - "2004-01-01": 0.035, - "1996-01-01": 0.035, - "1995-01-01": 0.0425, - "1994-01-01": 0.0475, - "1991-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.head_of_household[3].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.head_of_household[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2020-01-01": 70000, - "2018-01-01": 70000, - "2004-01-01": 70000, - "1996-01-01": 70000, - "1995-01-01": 70000, - "1994-01-01": 70000, - "1991-01-01": 70000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.head_of_household[4]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.main.head_of_household[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.nj.tax.income.main.head_of_household[4].rate": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.head_of_household[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.05525, - "2018-01-01": 0.05525, - "2004-01-01": 0.05525, - "1996-01-01": 0.05525, - "1995-01-01": 0.06013, - "1994-01-01": 0.06175, - "1991-01-01": 0.065 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.head_of_household[4].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.head_of_household[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2020-01-01": 80000, - "2018-01-01": 80000, - "2004-01-01": 80000, - "1996-01-01": 80000, - "1995-01-01": 80000, - "1994-01-01": 80000, - "1991-01-01": 80000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.head_of_household[5]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.main.head_of_household[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.nj.tax.income.main.head_of_household[5].rate": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.head_of_household[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.0637, - "2018-01-01": 0.0637, - "2004-01-01": 0.0637, - "1996-01-01": 0.0637, - "1995-01-01": 0.0658, - "1994-01-01": 0.0665, - "1991-01-01": 0.07 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.head_of_household[5].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.head_of_household[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2020-01-01": 150000, - "2018-01-01": 150000, - "2004-01-01": 150000, - "1996-01-01": 150000, - "1995-01-01": 150000, - "1994-01-01": 150000, - "1991-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.head_of_household[6]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.main.head_of_household[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.nj.tax.income.main.head_of_household[6].rate": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.head_of_household[6].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.0897, - "2018-01-01": 0.0897, - "2004-01-01": 0.0897 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.head_of_household[6].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.head_of_household[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2020-01-01": 500000, - "2018-01-01": 500000, - "2004-01-01": 500000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.head_of_household[7]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.main.head_of_household[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.nj.tax.income.main.head_of_household[7].rate": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.head_of_household[7].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.1075, - "2018-01-01": 0.1075, - "2015-01-01": 0.1075 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.head_of_household[7].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.head_of_household[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2020-01-01": 1000000, - "2018-01-01": 5000000, - "2015-01-01": 5000000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.separate": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.main.separate", - "description": "Progressive rate schedule for a single filer in New Jersey.", - "label": "New Jersey State income tax rates for single filers" - }, - "gov.states.nj.tax.income.main.separate[0]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.main.separate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nj.tax.income.main.separate[0].rate": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.separate[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.014, - "2018-01-01": 0.014, - "2004-01-01": 0.014, - "1996-01-01": 0.014, - "1995-01-01": 0.017, - "1994-01-01": 0.019, - "1991-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.separate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.separate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2020-01-01": 0, - "2018-01-01": 0, - "2004-01-01": 0, - "1996-01-01": 0, - "1995-01-01": 0, - "1994-01-01": 0, - "1991-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.separate[1]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.main.separate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nj.tax.income.main.separate[1].rate": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.separate[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.0175, - "2018-01-01": 0.0175, - "2004-01-01": 0.0175, - "1996-01-01": 0.0175, - "1995-01-01": 0.02125, - "1994-01-01": 0.02375, - "1991-01-01": 0.025 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.separate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.separate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2020-01-01": 20000, - "2018-01-01": 20000, - "2004-01-01": 20000, - "1996-01-01": 20000, - "1995-01-01": 20000, - "1994-01-01": 20000, - "1991-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.separate[2]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.main.separate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nj.tax.income.main.separate[2].rate": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.separate[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.035, - "2018-01-01": 0.035, - "2004-01-01": 0.035, - "1996-01-01": 0.035, - "1995-01-01": 0.0425, - "1994-01-01": 0.0475, - "1991-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.separate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.separate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2020-01-01": 35000, - "2018-01-01": 35000, - "2004-01-01": 35000, - "1996-01-01": 35000, - "1995-01-01": 35000, - "1994-01-01": 35000, - "1991-01-01": 35000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.separate[3]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.main.separate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.nj.tax.income.main.separate[3].rate": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.separate[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.05525, - "2018-01-01": 0.05525, - "2004-01-01": 0.05525, - "1996-01-01": 0.05525, - "1995-01-01": 0.06013, - "1994-01-01": 0.06175, - "1991-01-01": 0.065 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.separate[3].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.separate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2020-01-01": 40000, - "2018-01-01": 40000, - "2004-01-01": 40000, - "1996-01-01": 40000, - "1995-01-01": 40000, - "1994-01-01": 40000, - "1991-01-01": 40000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.separate[4]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.main.separate[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.nj.tax.income.main.separate[4].rate": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.separate[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.0637, - "2018-01-01": 0.0637, - "2004-01-01": 0.0637, - "1996-01-01": 0.0637, - "1995-01-01": 0.0658, - "1994-01-01": 0.0665, - "1991-01-01": 0.07 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.separate[4].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.separate[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2020-01-01": 75000, - "2018-01-01": 75000, - "2004-01-01": 75000, - "1996-01-01": 75000, - "1995-01-01": 75000, - "1994-01-01": 75000, - "1991-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.separate[5]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.main.separate[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.nj.tax.income.main.separate[5].rate": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.separate[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.0897, - "2018-01-01": 0.0897, - "2004-01-01": 0.0897 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.separate[5].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.separate[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2020-01-01": 500000, - "2018-01-01": 500000, - "2004-01-01": 500000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.separate[6]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.main.separate[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.nj.tax.income.main.separate[6].rate": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.separate[6].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.1075, - "2018-01-01": 0.1075, - "2015-01-01": 0.1075 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.separate[6].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.separate[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2020-01-01": 1000000, - "2018-01-01": 5000000, - "2015-01-01": 5000000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.joint": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.main.joint", - "description": "Progressive rate schedule for a joint filer in New Jersey.", - "label": "New Jersey State income tax rates for joint filers" - }, - "gov.states.nj.tax.income.main.joint[0]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.main.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nj.tax.income.main.joint[0].rate": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.joint[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.014, - "2018-01-01": 0.014, - "2004-01-01": 0.014, - "1996-01-01": 0.014, - "1995-01-01": 0.017, - "1994-01-01": 0.019, - "1991-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2020-01-01": 0, - "2018-01-01": 0, - "2004-01-01": 0, - "1996-01-01": 0, - "1995-01-01": 0, - "1994-01-01": 0, - "1991-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.joint[1]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.main.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nj.tax.income.main.joint[1].rate": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.joint[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.0175, - "2018-01-01": 0.0175, - "2004-01-01": 0.0175, - "1996-01-01": 0.02125, - "1995-01-01": 0.02125, - "1994-01-01": 0.02375, - "1991-01-01": 0.025 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2020-01-01": 20000, - "2018-01-01": 20000, - "2004-01-01": 20000, - "1996-01-01": 20000, - "1995-01-01": 20000, - "1994-01-01": 20000, - "1991-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.joint[2]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.main.joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nj.tax.income.main.joint[2].rate": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.joint[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.0245, - "2018-01-01": 0.0245, - "2004-01-01": 0.0245, - "1996-01-01": 0.0245, - "1995-01-01": 0.02975, - "1994-01-01": 0.03325, - "1991-01-01": 0.035 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.joint[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2020-01-01": 50000, - "2018-01-01": 50000, - "2004-01-01": 50000, - "1996-01-01": 50000, - "1995-01-01": 50000, - "1994-01-01": 50000, - "1991-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.joint[3]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.main.joint[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.nj.tax.income.main.joint[3].rate": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.joint[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.035, - "2018-01-01": 0.035, - "2004-01-01": 0.035, - "1996-01-01": 0.035, - "1995-01-01": 0.0425, - "1994-01-01": 0.0475, - "1991-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.joint[3].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.joint[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2020-01-01": 70000, - "2018-01-01": 70000, - "2004-01-01": 70000, - "1996-01-01": 70000, - "1995-01-01": 70000, - "1994-01-01": 70000, - "1991-01-01": 70000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.joint[4]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.main.joint[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.nj.tax.income.main.joint[4].rate": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.joint[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.05525, - "2018-01-01": 0.05525, - "2004-01-01": 0.05525, - "1996-01-01": 0.05525, - "1995-01-01": 0.06013, - "1994-01-01": 0.06175, - "1991-01-01": 0.065 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.joint[4].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.joint[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2020-01-01": 80000, - "2018-01-01": 80000, - "2004-01-01": 80000, - "1996-01-01": 80000, - "1995-01-01": 80000, - "1994-01-01": 80000, - "1991-01-01": 80000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.joint[5]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.main.joint[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.nj.tax.income.main.joint[5].rate": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.joint[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.0637, - "2018-01-01": 0.0637, - "2004-01-01": 0.0637, - "1996-01-01": 0.0637, - "1995-01-01": 0.0658, - "1994-01-01": 0.0665, - "1991-01-01": 0.07 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.joint[5].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.joint[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2020-01-01": 150000, - "2018-01-01": 150000, - "2004-01-01": 150000, - "1996-01-01": 150000, - "1995-01-01": 150000, - "1994-01-01": 150000, - "1991-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.joint[6]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.main.joint[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.nj.tax.income.main.joint[6].rate": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.joint[6].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.0897, - "2018-01-01": 0.0897, - "2004-01-01": 0.0897 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.joint[6].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.joint[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2020-01-01": 500000, - "2018-01-01": 500000, - "2004-01-01": 500000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.joint[7]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.main.joint[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.nj.tax.income.main.joint[7].rate": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.joint[7].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.1075, - "2018-01-01": 0.1075, - "2015-01-01": 0.1075 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.joint[7].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.joint[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2020-01-01": 1000000, - "2018-01-01": 5000000, - "2015-01-01": 5000000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.single": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.main.single", - "description": "Progressive rate schedule for a single filer in New Jersey.", - "label": "New Jersey State income tax rates for single filers" - }, - "gov.states.nj.tax.income.main.single[0]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.main.single[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nj.tax.income.main.single[0].rate": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.single[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.014, - "2018-01-01": 0.014, - "2004-01-01": 0.014, - "1996-01-01": 0.014, - "1995-01-01": 0.017, - "1994-01-01": 0.019, - "1991-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.single[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.single[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2020-01-01": 0, - "2018-01-01": 0, - "2004-01-01": 0, - "1996-01-01": 0, - "1995-01-01": 0, - "1994-01-01": 0, - "1991-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.single[1]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.main.single[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nj.tax.income.main.single[1].rate": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.single[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.0175, - "2018-01-01": 0.0175, - "2004-01-01": 0.0175, - "1996-01-01": 0.0175, - "1995-01-01": 0.02125, - "1994-01-01": 0.02375, - "1991-01-01": 0.025 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.single[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.single[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2020-01-01": 20000, - "2018-01-01": 20000, - "2004-01-01": 20000, - "1996-01-01": 20000, - "1995-01-01": 20000, - "1994-01-01": 20000, - "1991-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.single[2]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.main.single[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nj.tax.income.main.single[2].rate": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.single[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.035, - "2018-01-01": 0.035, - "2004-01-01": 0.035, - "1996-01-01": 0.035, - "1995-01-01": 0.0425, - "1994-01-01": 0.0475, - "1991-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.single[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.single[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2020-01-01": 35000, - "2018-01-01": 35000, - "2004-01-01": 35000, - "1996-01-01": 35000, - "1995-01-01": 35000, - "1994-01-01": 35000, - "1991-01-01": 35000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.single[3]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.main.single[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.nj.tax.income.main.single[3].rate": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.single[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.05525, - "2018-01-01": 0.05525, - "2004-01-01": 0.05525, - "1996-01-01": 0.05525, - "1995-01-01": 0.06013, - "1994-01-01": 0.06175, - "1991-01-01": 0.065 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.single[3].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.single[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2020-01-01": 40000, - "2018-01-01": 40000, - "2004-01-01": 40000, - "1996-01-01": 40000, - "1995-01-01": 40000, - "1994-01-01": 40000, - "1991-01-01": 40000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.single[4]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.main.single[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.nj.tax.income.main.single[4].rate": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.single[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.0637, - "2018-01-01": 0.0637, - "2004-01-01": 0.0637, - "1996-01-01": 0.0637, - "1995-01-01": 0.0658, - "1994-01-01": 0.0665, - "1991-01-01": 0.07 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.single[4].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.single[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2020-01-01": 75000, - "2018-01-01": 75000, - "2004-01-01": 75000, - "1996-01-01": 75000, - "1995-01-01": 75000, - "1994-01-01": 75000, - "1991-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.single[5]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.main.single[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.nj.tax.income.main.single[5].rate": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.single[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.0897, - "2018-01-01": 0.0897, - "2004-01-01": 0.0897 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.single[5].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.single[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2020-01-01": 500000, - "2018-01-01": 500000, - "2004-01-01": 500000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.single[6]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.main.single[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.nj.tax.income.main.single[6].rate": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.single[6].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.1075, - "2018-01-01": 0.1075, - "2015-01-01": 0.1075 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.single[6].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.single[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2020-01-01": 1000000, - "2018-01-01": 5000000, - "2015-01-01": 5000000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.surviving_spouse": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.main.surviving_spouse", - "description": "Progressive rate schedule for a surviving spouse filer in New Jersey.", - "label": "New Jersey State income tax rates for joint filers" - }, - "gov.states.nj.tax.income.main.surviving_spouse[0]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.main.surviving_spouse[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nj.tax.income.main.surviving_spouse[0].rate": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.surviving_spouse[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.014, - "2018-01-01": 0.014, - "2004-01-01": 0.014, - "1996-01-01": 0.014, - "1995-01-01": 0.017, - "1994-01-01": 0.019, - "1991-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.surviving_spouse[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.surviving_spouse[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2020-01-01": 0, - "2018-01-01": 0, - "2004-01-01": 0, - "1996-01-01": 0, - "1995-01-01": 0, - "1994-01-01": 0, - "1991-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.surviving_spouse[1]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.main.surviving_spouse[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nj.tax.income.main.surviving_spouse[1].rate": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.surviving_spouse[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.0175, - "2018-01-01": 0.0175, - "2004-01-01": 0.0175, - "1996-01-01": 0.02125, - "1995-01-01": 0.02125, - "1994-01-01": 0.02375, - "1991-01-01": 0.025 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.surviving_spouse[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.surviving_spouse[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2020-01-01": 20000, - "2018-01-01": 20000, - "2004-01-01": 20000, - "1996-01-01": 20000, - "1995-01-01": 20000, - "1994-01-01": 20000, - "1991-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.surviving_spouse[2]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.main.surviving_spouse[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nj.tax.income.main.surviving_spouse[2].rate": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.surviving_spouse[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.0245, - "2018-01-01": 0.0245, - "2004-01-01": 0.0245, - "1996-01-01": 0.0245, - "1995-01-01": 0.02975, - "1994-01-01": 0.03325, - "1991-01-01": 0.035 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.surviving_spouse[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.surviving_spouse[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2020-01-01": 50000, - "2018-01-01": 50000, - "2004-01-01": 50000, - "1996-01-01": 50000, - "1995-01-01": 50000, - "1994-01-01": 50000, - "1991-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.surviving_spouse[3]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.main.surviving_spouse[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.nj.tax.income.main.surviving_spouse[3].rate": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.surviving_spouse[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.035, - "2018-01-01": 0.035, - "2004-01-01": 0.035, - "1996-01-01": 0.035, - "1995-01-01": 0.0425, - "1994-01-01": 0.0475, - "1991-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.surviving_spouse[3].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.surviving_spouse[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2020-01-01": 70000, - "2018-01-01": 70000, - "2004-01-01": 70000, - "1996-01-01": 70000, - "1995-01-01": 70000, - "1994-01-01": 70000, - "1991-01-01": 70000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.surviving_spouse[4]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.main.surviving_spouse[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.nj.tax.income.main.surviving_spouse[4].rate": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.surviving_spouse[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.05525, - "2018-01-01": 0.05525, - "2004-01-01": 0.05525, - "1996-01-01": 0.05525, - "1995-01-01": 0.06013, - "1994-01-01": 0.06175, - "1991-01-01": 0.065 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.surviving_spouse[4].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.surviving_spouse[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2020-01-01": 80000, - "2018-01-01": 80000, - "2004-01-01": 80000, - "1996-01-01": 80000, - "1995-01-01": 80000, - "1994-01-01": 80000, - "1991-01-01": 80000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.surviving_spouse[5]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.main.surviving_spouse[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.nj.tax.income.main.surviving_spouse[5].rate": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.surviving_spouse[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.0637, - "2018-01-01": 0.0637, - "2004-01-01": 0.0637, - "1996-01-01": 0.0637, - "1995-01-01": 0.0658, - "1994-01-01": 0.0665, - "1991-01-01": 0.07 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.surviving_spouse[5].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.surviving_spouse[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2020-01-01": 150000, - "2018-01-01": 150000, - "2004-01-01": 150000, - "1996-01-01": 150000, - "1995-01-01": 150000, - "1994-01-01": 150000, - "1991-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.surviving_spouse[6]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.main.surviving_spouse[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.nj.tax.income.main.surviving_spouse[6].rate": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.surviving_spouse[6].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.0897, - "2018-01-01": 0.0897, - "2004-01-01": 0.0897 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.surviving_spouse[6].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.surviving_spouse[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2020-01-01": 500000, - "2018-01-01": 500000, - "2004-01-01": 500000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.surviving_spouse[7]": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.main.surviving_spouse[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.nj.tax.income.main.surviving_spouse[7].rate": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.surviving_spouse[7].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0.1075, - "2018-01-01": 0.1075, - "2015-01-01": 0.1075 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.main.surviving_spouse[7].threshold": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.main.surviving_spouse[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2020-01-01": 1000000, - "2018-01-01": 5000000, - "2015-01-01": 5000000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.deductions": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.deductions", - "description": null, - "label": "deductions", - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.deductions.property_tax": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.deductions.property_tax", - "description": null, - "label": "property tax", - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.deductions.property_tax.limit": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.deductions.property_tax.limit", - "description": "New Jersey allows for a property tax credit or deduction on up to this amount of paid property taxes.", - "label": "New Jersey property tax deduction/credit property tax limit", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 15000, - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.deductions.property_tax.qualifying_rent_fraction": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.deductions.property_tax.qualifying_rent_fraction", - "description": "New Jersey considers this percent of rent paid property taxes.", - "label": "New Jersey percent of rent considered property taxes", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.18, - "2015-01-01": 0.18 - }, - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.deductions.medical_expenses": { - "type": "parameterNode", - "parameter": "gov.states.nj.tax.income.deductions.medical_expenses", - "description": null, - "label": "medical expenses", - "economy": true, - "household": true - }, - "gov.states.nj.tax.income.deductions.medical_expenses.rate": { - "type": "parameter", - "parameter": "gov.states.nj.tax.income.deductions.medical_expenses.rate", - "description": "New Jersey deducts from taxable income the excess of medical expenses over this fraction of state adjusted gross income.", - "label": "New Jersey medical expense deduction rate", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.02, - "2015-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.ky": { - "type": "parameterNode", - "parameter": "gov.states.ky", - "description": null, - "label": "Kentucky", - "economy": true, - "household": true - }, - "gov.states.ky.tax": { - "type": "parameterNode", - "parameter": "gov.states.ky.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.states.ky.tax.income": { - "type": "parameterNode", - "parameter": "gov.states.ky.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.ky.tax.income.credits": { - "type": "parameterNode", - "parameter": "gov.states.ky.tax.income.credits", - "description": null, - "label": "credits", - "economy": true, - "household": true - }, - "gov.states.ky.tax.income.credits.non_refundable": { - "type": "parameter", - "parameter": "gov.states.ky.tax.income.credits.non_refundable", - "description": "Kentucky provides the following non-refundable tax credits.", - "label": "Kentucky non-refundable credits", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": [ - "ky_family_size_tax_credit", - "ky_tuition_tax_credit", - "ky_personal_tax_credits", - "ky_cdcc" - ], - "2015-01-01": [ - "ky_family_size_tax_credit", - "ky_tuition_tax_credit", - "ky_personal_tax_credits", - "ky_cdcc" - ] - }, - "economy": true, - "household": true - }, - "gov.states.ky.tax.income.credits.tuition_tax": { - "type": "parameterNode", - "parameter": "gov.states.ky.tax.income.credits.tuition_tax", - "description": null, - "label": "tuition tax", - "economy": true, - "household": true - }, - "gov.states.ky.tax.income.credits.tuition_tax.rate": { - "type": "parameter", - "parameter": "gov.states.ky.tax.income.credits.tuition_tax.rate", - "description": "Kentucky matches this fraction of the American Opportunity and the Lifetime Learning credits, for undergraduate education at Kentucky institutions.", - "label": "Kentucky tuition tax credit rate", - "unit": "/1", - "period": null, - "values": { - "2005-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.ky.tax.income.credits.personal": { - "type": "parameterNode", - "parameter": "gov.states.ky.tax.income.credits.personal", - "description": null, - "label": "personal", - "economy": true, - "household": true - }, - "gov.states.ky.tax.income.credits.personal.amount": { - "type": "parameterNode", - "parameter": "gov.states.ky.tax.income.credits.personal.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.states.ky.tax.income.credits.personal.amount.military": { - "type": "parameter", - "parameter": "gov.states.ky.tax.income.credits.personal.amount.military", - "description": "Kentucky provides this personal tax credit for filers who served in the military.", - "label": "Kentucky personal tax credits military service amount", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 20, - "2015-01-01": 20 - }, - "economy": true, - "household": true - }, - "gov.states.ky.tax.income.credits.personal.amount.blind": { - "type": "parameter", - "parameter": "gov.states.ky.tax.income.credits.personal.amount.blind", - "description": "Kentucky provides this personal tax credit for blind filers.", - "label": "Kentucky personal tax credits blind amount", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 40, - "2015-01-01": 40 - }, - "economy": true, - "household": true - }, - "gov.states.ky.tax.income.credits.personal.amount.aged": { - "type": "parameterNode", - "parameter": "gov.states.ky.tax.income.credits.personal.amount.aged", - "description": "Kentucky provides this aged personal tax credits amount, depending on filers age.", - "label": "Kentucky personal tax credits aged amount" - }, - "gov.states.ky.tax.income.credits.personal.amount.aged[0]": { - "type": "parameterNode", - "parameter": "gov.states.ky.tax.income.credits.personal.amount.aged[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ky.tax.income.credits.personal.amount.aged[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ky.tax.income.credits.personal.amount.aged[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ky.tax.income.credits.personal.amount.aged[0].amount": { - "type": "parameter", - "parameter": "gov.states.ky.tax.income.credits.personal.amount.aged[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ky.tax.income.credits.personal.amount.aged[1]": { - "type": "parameterNode", - "parameter": "gov.states.ky.tax.income.credits.personal.amount.aged[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ky.tax.income.credits.personal.amount.aged[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ky.tax.income.credits.personal.amount.aged[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.ky.tax.income.credits.personal.amount.aged[1].amount": { - "type": "parameter", - "parameter": "gov.states.ky.tax.income.credits.personal.amount.aged[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 40, - "2015-01-01": 40 - }, - "economy": true, - "household": true - }, - "gov.states.ky.tax.income.credits.family_size": { - "type": "parameterNode", - "parameter": "gov.states.ky.tax.income.credits.family_size", - "description": null, - "label": "family size", - "economy": true, - "household": true - }, - "gov.states.ky.tax.income.credits.family_size.family_size_cap": { - "type": "parameter", - "parameter": "gov.states.ky.tax.income.credits.family_size.family_size_cap", - "description": "Kentucky caps the family size at this number when calculating the poverty threshold for the family size tax credit.", - "label": "Kentucky family size tax credit family size cap", - "unit": "people", - "period": "year", - "values": { - "2005-01-01": 4 - }, - "economy": true, - "household": true - }, - "gov.states.ky.tax.income.credits.family_size.rate": { - "type": "parameterNode", - "parameter": "gov.states.ky.tax.income.credits.family_size.rate", - "description": "Kentucky provides a credit for a fraction of tax liability, based on modified gross income as a percent of a modified poverty line.", - "label": "Kentucky family size tax credit rate" - }, - "gov.states.ky.tax.income.credits.family_size.rate[0]": { - "type": "parameterNode", - "parameter": "gov.states.ky.tax.income.credits.family_size.rate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ky.tax.income.credits.family_size.rate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ky.tax.income.credits.family_size.rate[0].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2005-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ky.tax.income.credits.family_size.rate[0].amount": { - "type": "parameter", - "parameter": "gov.states.ky.tax.income.credits.family_size.rate[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2005-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.ky.tax.income.credits.family_size.rate[1]": { - "type": "parameterNode", - "parameter": "gov.states.ky.tax.income.credits.family_size.rate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ky.tax.income.credits.family_size.rate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ky.tax.income.credits.family_size.rate[1].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2005-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.ky.tax.income.credits.family_size.rate[1].amount": { - "type": "parameter", - "parameter": "gov.states.ky.tax.income.credits.family_size.rate[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2005-01-01": 0.9 - }, - "economy": true, - "household": true - }, - "gov.states.ky.tax.income.credits.family_size.rate[2]": { - "type": "parameterNode", - "parameter": "gov.states.ky.tax.income.credits.family_size.rate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ky.tax.income.credits.family_size.rate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ky.tax.income.credits.family_size.rate[2].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2005-01-01": 1.04 - }, - "economy": true, - "household": true - }, - "gov.states.ky.tax.income.credits.family_size.rate[2].amount": { - "type": "parameter", - "parameter": "gov.states.ky.tax.income.credits.family_size.rate[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2005-01-01": 0.8 - }, - "economy": true, - "household": true - }, - "gov.states.ky.tax.income.credits.family_size.rate[3]": { - "type": "parameterNode", - "parameter": "gov.states.ky.tax.income.credits.family_size.rate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ky.tax.income.credits.family_size.rate[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ky.tax.income.credits.family_size.rate[3].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2005-01-01": 1.08 - }, - "economy": true, - "household": true - }, - "gov.states.ky.tax.income.credits.family_size.rate[3].amount": { - "type": "parameter", - "parameter": "gov.states.ky.tax.income.credits.family_size.rate[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2005-01-01": 0.7 - }, - "economy": true, - "household": true - }, - "gov.states.ky.tax.income.credits.family_size.rate[4]": { - "type": "parameterNode", - "parameter": "gov.states.ky.tax.income.credits.family_size.rate[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ky.tax.income.credits.family_size.rate[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ky.tax.income.credits.family_size.rate[4].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2005-01-01": 1.12 - }, - "economy": true, - "household": true - }, - "gov.states.ky.tax.income.credits.family_size.rate[4].amount": { - "type": "parameter", - "parameter": "gov.states.ky.tax.income.credits.family_size.rate[4].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2005-01-01": 0.6 - }, - "economy": true, - "household": true - }, - "gov.states.ky.tax.income.credits.family_size.rate[5]": { - "type": "parameterNode", - "parameter": "gov.states.ky.tax.income.credits.family_size.rate[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ky.tax.income.credits.family_size.rate[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ky.tax.income.credits.family_size.rate[5].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2005-01-01": 1.16 - }, - "economy": true, - "household": true - }, - "gov.states.ky.tax.income.credits.family_size.rate[5].amount": { - "type": "parameter", - "parameter": "gov.states.ky.tax.income.credits.family_size.rate[5].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2005-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.ky.tax.income.credits.family_size.rate[6]": { - "type": "parameterNode", - "parameter": "gov.states.ky.tax.income.credits.family_size.rate[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.ky.tax.income.credits.family_size.rate[6].threshold": { - "type": "parameter", - "parameter": "gov.states.ky.tax.income.credits.family_size.rate[6].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2005-01-01": 1.2 - }, - "economy": true, - "household": true - }, - "gov.states.ky.tax.income.credits.family_size.rate[6].amount": { - "type": "parameter", - "parameter": "gov.states.ky.tax.income.credits.family_size.rate[6].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2005-01-01": 0.4 - }, - "economy": true, - "household": true - }, - "gov.states.ky.tax.income.credits.family_size.rate[7]": { - "type": "parameterNode", - "parameter": "gov.states.ky.tax.income.credits.family_size.rate[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.ky.tax.income.credits.family_size.rate[7].threshold": { - "type": "parameter", - "parameter": "gov.states.ky.tax.income.credits.family_size.rate[7].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2005-01-01": 1.24 - }, - "economy": true, - "household": true - }, - "gov.states.ky.tax.income.credits.family_size.rate[7].amount": { - "type": "parameter", - "parameter": "gov.states.ky.tax.income.credits.family_size.rate[7].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2005-01-01": 0.3 - }, - "economy": true, - "household": true - }, - "gov.states.ky.tax.income.credits.family_size.rate[8]": { - "type": "parameterNode", - "parameter": "gov.states.ky.tax.income.credits.family_size.rate[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.ky.tax.income.credits.family_size.rate[8].threshold": { - "type": "parameter", - "parameter": "gov.states.ky.tax.income.credits.family_size.rate[8].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2005-01-01": 1.27 - }, - "economy": true, - "household": true - }, - "gov.states.ky.tax.income.credits.family_size.rate[8].amount": { - "type": "parameter", - "parameter": "gov.states.ky.tax.income.credits.family_size.rate[8].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2005-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.states.ky.tax.income.credits.family_size.rate[9]": { - "type": "parameterNode", - "parameter": "gov.states.ky.tax.income.credits.family_size.rate[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.ky.tax.income.credits.family_size.rate[9].threshold": { - "type": "parameter", - "parameter": "gov.states.ky.tax.income.credits.family_size.rate[9].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2005-01-01": 1.3 - }, - "economy": true, - "household": true - }, - "gov.states.ky.tax.income.credits.family_size.rate[9].amount": { - "type": "parameter", - "parameter": "gov.states.ky.tax.income.credits.family_size.rate[9].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2005-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.ky.tax.income.credits.family_size.rate[10]": { - "type": "parameterNode", - "parameter": "gov.states.ky.tax.income.credits.family_size.rate[10]", - "description": null, - "label": "bracket 11" - }, - "gov.states.ky.tax.income.credits.family_size.rate[10].threshold": { - "type": "parameter", - "parameter": "gov.states.ky.tax.income.credits.family_size.rate[10].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "2005-01-01": 1.33 - }, - "economy": true, - "household": true - }, - "gov.states.ky.tax.income.credits.family_size.rate[10].amount": { - "type": "parameter", - "parameter": "gov.states.ky.tax.income.credits.family_size.rate[10].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2005-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ky.tax.income.credits.dependent_care_service": { - "type": "parameterNode", - "parameter": "gov.states.ky.tax.income.credits.dependent_care_service", - "description": null, - "label": "dependent care service", - "economy": true, - "household": true - }, - "gov.states.ky.tax.income.credits.dependent_care_service.match": { - "type": "parameter", - "parameter": "gov.states.ky.tax.income.credits.dependent_care_service.match", - "description": "Kentucky matches the federal child and dependent care credit at the following rate for its dependent care service credit.", - "label": "Kentucky dependent care service credit rate", - "unit": "/1", - "period": null, - "values": { - "1990-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.states.ky.tax.income.subtractions": { - "type": "parameter", - "parameter": "gov.states.ky.tax.income.subtractions", - "description": "Kentucky subtracts these sources from adjusted gross income.", - "label": "subtractions", - "unit": "list", - "period": null, - "values": { - "2021-01-01": [ - "us_govt_interest", - "ky_pension_income_exclusion", - "taxable_social_security", - "military_service_income" - ], - "2015-01-01": [ - "us_govt_interest", - "ky_pension_income_exclusion", - "taxable_social_security", - "military_service_income" - ] - }, - "economy": true, - "household": true - }, - "gov.states.ky.tax.income.rate": { - "type": "parameter", - "parameter": "gov.states.ky.tax.income.rate", - "description": "Kentucky taxes individual income at this rate.", - "label": "Kentucky income tax rate", - "unit": "/1", - "period": null, - "values": { - "2026-01-01": 0.035, - "2024-01-01": 0.04, - "2023-01-01": 0.045, - "2021-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.ky.tax.income.exclusions": { - "type": "parameterNode", - "parameter": "gov.states.ky.tax.income.exclusions", - "description": null, - "label": "exclusions", - "economy": true, - "household": true - }, - "gov.states.ky.tax.income.exclusions.pension_income": { - "type": "parameterNode", - "parameter": "gov.states.ky.tax.income.exclusions.pension_income", - "description": null, - "label": "pension income", - "economy": true, - "household": true - }, - "gov.states.ky.tax.income.exclusions.pension_income.threshold": { - "type": "parameter", - "parameter": "gov.states.ky.tax.income.exclusions.pension_income.threshold", - "description": "Kentucky caps the pension income at this amount for most individuals.", - "label": "Kentucky income tax rate", - "unit": null, - "period": null, - "values": { - "2018-01-01": 31110, - "2005-01-01": 41110, - "2004-01-01": 40200, - "2003-01-01": 39400, - "2002-01-01": 38775, - "2001-01-01": 37500, - "2000-01-01": 36414, - "1999-01-01": 35700 - }, - "economy": true, - "household": true - }, - "gov.states.ky.tax.income.exclusions.pension_income.other_retirement_income_sources": { - "type": "parameter", - "parameter": "gov.states.ky.tax.income.exclusions.pension_income.other_retirement_income_sources", - "description": "Kentucky counts these income sources as other retirement income for Part II of the Schedule P pension income exclusion.", - "label": "Kentucky other retirement income sources", - "unit": "list", - "period": "year", - "values": { - "1999-01-01": ["taxable_ira_distributions", "taxable_401k_distributions"] - }, - "economy": true, - "household": true - }, - "gov.states.ky.tax.income.deductions": { - "type": "parameterNode", - "parameter": "gov.states.ky.tax.income.deductions", - "description": null, - "label": "deductions", - "economy": true, - "household": true - }, - "gov.states.ky.tax.income.deductions.standard": { - "type": "parameter", - "parameter": "gov.states.ky.tax.income.deductions.standard", - "description": "Kentucky provides this standard deduction amount.", - "label": "Kentucky standard deduction amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 3983.67996380876, - "2034-01-01": 3906.53961547777, - "2033-01-01": 3830.35161712618, - "2032-01-01": 3756.06831873338, - "2031-01-01": 3683.68972029937, - "2030-01-01": 3612.26347184476, - "2029-01-01": 3541.78957336954, - "2028-01-01": 3472.26802487371, - "2027-01-01": 3401.79412639849, - "2026-01-01": 3319.98726316847, - "2025-01-01": 3270, - "2024-01-01": 3160, - "2023-01-01": 2980, - "2022-01-01": 2770, - "2021-01-01": 2690, - "2015-01-01": 2690 - }, - "economy": true, - "household": true - }, - "gov.states.pa": { - "type": "parameterNode", - "parameter": "gov.states.pa", - "description": null, - "label": "Pennsylvania", - "economy": true, - "household": true - }, - "gov.states.pa.tax": { - "type": "parameterNode", - "parameter": "gov.states.pa.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.states.pa.tax.income": { - "type": "parameterNode", - "parameter": "gov.states.pa.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.pa.tax.income.forgiveness": { - "type": "parameterNode", - "parameter": "gov.states.pa.tax.income.forgiveness", - "description": null, - "label": "forgiveness", - "economy": true, - "household": true - }, - "gov.states.pa.tax.income.forgiveness.tax_back": { - "type": "parameter", - "parameter": "gov.states.pa.tax.income.forgiveness.tax_back", - "description": "Pennsylvania reduces its tax forgiveness by this percent per given amount of eligibility income.", - "label": "PA tax forgiveness percentage", - "unit": "/1", - "period": "year", - "values": { - "2004-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.income.forgiveness.base": { - "type": "parameter", - "parameter": "gov.states.pa.tax.income.forgiveness.base", - "description": "Pennsylvania starts reducing its tax forgiveness when eligibility income exceeds this amount, or double for joint filers.", - "label": "PA base eligibility income", - "unit": "currency-USD", - "period": "year", - "values": { - "2004-01-01": 6500 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.income.forgiveness.eligibility_income_sources": { - "type": "parameter", - "parameter": "gov.states.pa.tax.income.forgiveness.eligibility_income_sources", - "description": "Pennsylvania defines eligibility income based on these sources", - "label": "PA eligibility income sources", - "unit": "list", - "period": null, - "values": { - "2004-01-01": ["pa_total_taxable_income", "alimony_income", "tax_exempt_interest_income"] - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.income.forgiveness.rate_increment": { - "type": "parameter", - "parameter": "gov.states.pa.tax.income.forgiveness.rate_increment", - "description": "Pennsylvania reduces its tax forgiveness by a given percent per this amount of eligibility income.", - "label": "PA tax forgiveness rate decrease for each additional increment of eligibility income", - "unit": "currency-USD", - "period": "year", - "values": { - "2004-01-01": 250 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.income.forgiveness.dependent_rate": { - "type": "parameter", - "parameter": "gov.states.pa.tax.income.forgiveness.dependent_rate", - "description": "Pennsylvania increases the tax forgiveness eligibility income threshold by this amount for each dependent.", - "label": "PA tax forgiveness rate increase for each additional dependent", - "unit": "currency-USD", - "period": "year", - "values": { - "2004-01-01": 9500 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.income.credits": { - "type": "parameterNode", - "parameter": "gov.states.pa.tax.income.credits", - "description": null, - "label": "credits", - "economy": true, - "household": true - }, - "gov.states.pa.tax.income.credits.refundable": { - "type": "parameter", - "parameter": "gov.states.pa.tax.income.credits.refundable", - "description": "Pennsylvania provides these refundable credits.", - "label": "Pennsylvania refundable credits", - "unit": "list", - "period": "year", - "values": { - "2022-01-01": ["pa_cdcc"], - "2021-01-01": [], - "2015-01-01": [] - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.income.credits.cdcc": { - "type": "parameterNode", - "parameter": "gov.states.pa.tax.income.credits.cdcc", - "description": null, - "label": "cdcc", - "economy": true, - "household": true - }, - "gov.states.pa.tax.income.credits.cdcc.match": { - "type": "parameter", - "parameter": "gov.states.pa.tax.income.credits.cdcc.match", - "description": "Pennsylvania matches this percentage of the federal Child and Dependent Care Credit.", - "label": "Pennsylvania Child and Dependent Care Credit match", - "unit": "/1", - "period": "year", - "values": { - "2023-01-01": 1, - "2022-01-01": 0.3, - "2015-01-01": 0.3 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.income.nontaxable_income_sources": { - "type": "parameter", - "parameter": "gov.states.pa.tax.income.nontaxable_income_sources", - "description": "Income sources in US AGI but not taxable under the PA income tax.", - "label": "PA nontaxable income sources", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": [ - "pa_nontaxable_pension_income", - "taxable_unemployment_compensation", - "taxable_social_security" - ], - "2015-01-01": [ - "pa_nontaxable_pension_income", - "taxable_unemployment_compensation", - "taxable_social_security" - ] - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.income.rate": { - "type": "parameter", - "parameter": "gov.states.pa.tax.income.rate", - "description": "Pennsylvania taxes income at this rate.", - "label": "PA income tax rate", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.0307, - "2015-01-01": 0.0307 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax": { - "type": "parameterNode", - "parameter": "gov.states.pa.tax.use_tax", - "description": null, - "label": "use tax", - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.higher": { - "type": "parameterNode", - "parameter": "gov.states.pa.tax.use_tax.higher", - "description": null, - "label": "higher", - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.higher.cap": { - "type": "parameterNode", - "parameter": "gov.states.pa.tax.use_tax.higher.cap", - "description": null, - "label": "cap", - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.higher.cap.rest_of_pa": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.higher.cap.rest_of_pa", - "description": "Pennsylvania caps the use tax at this amount for people outside Philadelphia and Allegheny County.", - "label": "Rest of PA use tax cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 75, - "2015-01-01": 75 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.higher.cap.allegheny_county": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.higher.cap.allegheny_county", - "description": "Pennsylvania caps the use tax for Allegheny County at this amount.", - "label": "PA Alleghney County use tax cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 88, - "2015-01-01": 88 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.higher.cap.philadelphia_county": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.higher.cap.philadelphia_county", - "description": "Pennsylvania caps the use tax for Philadelphia at this amount.", - "label": "PA Philadelphia use tax cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 100, - "2015-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.higher.rate": { - "type": "parameterNode", - "parameter": "gov.states.pa.tax.use_tax.higher.rate", - "description": null, - "label": "rate", - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.higher.rate.rest_of_pa": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.higher.rate.rest_of_pa", - "description": "Pennsylvania levies a use tax at this percent of taxable income for residents outside Philadelphia and Allegheny County with taxable income over the higher threshold.", - "label": "Rest of PA Use Tax Rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0003, - "2015-01-01": 0.0003 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.higher.rate.allegheny_county": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.higher.rate.allegheny_county", - "description": "Pennsylvania levies a use tax at this percent of taxable income for Allegheny County residents with taxable income over the higher threshold.", - "label": "PA Allegheny County Use Tax Rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.00035, - "2015-01-01": 0.00035 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.higher.rate.philadelphia_county": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.higher.rate.philadelphia_county", - "description": "Pennsylvania levies a use tax at this percent of taxable income for Philadelphia residents with taxable income over the higher threshold.", - "label": "PA Philadelphia Use Tax Rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0004, - "2015-01-01": 0.0004 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.higher.threshold": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.higher.threshold", - "description": "Pennsylvania moves to a percentage based use tax system at this threshold.", - "label": "PA use Tax higher threshold", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 200000, - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main": { - "type": "parameterNode", - "parameter": "gov.states.pa.tax.use_tax.main", - "description": null, - "label": "main", - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.rest_of_pa": { - "type": "parameterNode", - "parameter": "gov.states.pa.tax.use_tax.main.rest_of_pa", - "description": "Pennsylvania levies a use tax of this amount depending on taxable income for residents outside Philadelphia and Allegheny County.", - "label": "PA main Use Tax for counties other than Philadelphia and Allegheny" - }, - "gov.states.pa.tax.use_tax.main.rest_of_pa[0]": { - "type": "parameterNode", - "parameter": "gov.states.pa.tax.use_tax.main.rest_of_pa[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.pa.tax.use_tax.main.rest_of_pa[0].threshold": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.rest_of_pa[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.rest_of_pa[0].amount": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.rest_of_pa[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 6, - "2015-01-01": 6 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.rest_of_pa[1]": { - "type": "parameterNode", - "parameter": "gov.states.pa.tax.use_tax.main.rest_of_pa[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.pa.tax.use_tax.main.rest_of_pa[1].threshold": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.rest_of_pa[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 15000, - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.rest_of_pa[1].amount": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.rest_of_pa[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 12, - "2015-01-01": 12 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.rest_of_pa[2]": { - "type": "parameterNode", - "parameter": "gov.states.pa.tax.use_tax.main.rest_of_pa[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.pa.tax.use_tax.main.rest_of_pa[2].threshold": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.rest_of_pa[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.rest_of_pa[2].amount": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.rest_of_pa[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 17, - "2015-01-01": 17 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.rest_of_pa[3]": { - "type": "parameterNode", - "parameter": "gov.states.pa.tax.use_tax.main.rest_of_pa[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.pa.tax.use_tax.main.rest_of_pa[3].threshold": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.rest_of_pa[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.rest_of_pa[3].amount": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.rest_of_pa[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 23, - "2015-01-01": 23 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.rest_of_pa[4]": { - "type": "parameterNode", - "parameter": "gov.states.pa.tax.use_tax.main.rest_of_pa[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.pa.tax.use_tax.main.rest_of_pa[4].threshold": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.rest_of_pa[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 75000, - "2015-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.rest_of_pa[4].amount": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.rest_of_pa[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 32, - "2015-01-01": 32 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.rest_of_pa[5]": { - "type": "parameterNode", - "parameter": "gov.states.pa.tax.use_tax.main.rest_of_pa[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.pa.tax.use_tax.main.rest_of_pa[5].threshold": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.rest_of_pa[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.rest_of_pa[5].amount": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.rest_of_pa[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 44, - "2015-01-01": 44 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.rest_of_pa[6]": { - "type": "parameterNode", - "parameter": "gov.states.pa.tax.use_tax.main.rest_of_pa[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.pa.tax.use_tax.main.rest_of_pa[6].threshold": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.rest_of_pa[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.rest_of_pa[6].amount": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.rest_of_pa[6].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 57, - "2015-01-01": 57 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.rest_of_pa[7]": { - "type": "parameterNode", - "parameter": "gov.states.pa.tax.use_tax.main.rest_of_pa[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.pa.tax.use_tax.main.rest_of_pa[7].threshold": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.rest_of_pa[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 200000, - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.rest_of_pa[7].amount": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.rest_of_pa[7].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.allegheny_county": { - "type": "parameterNode", - "parameter": "gov.states.pa.tax.use_tax.main.allegheny_county", - "description": "Pennsylvania levies a use tax of this amount depending on taxable income for Allegheny County residents.", - "label": "PA main Use Tax amount for Allegheny County" - }, - "gov.states.pa.tax.use_tax.main.allegheny_county[0]": { - "type": "parameterNode", - "parameter": "gov.states.pa.tax.use_tax.main.allegheny_county[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.pa.tax.use_tax.main.allegheny_county[0].threshold": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.allegheny_county[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.allegheny_county[0].amount": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.allegheny_county[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 7, - "2015-01-01": 7 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.allegheny_county[1]": { - "type": "parameterNode", - "parameter": "gov.states.pa.tax.use_tax.main.allegheny_county[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.pa.tax.use_tax.main.allegheny_county[1].threshold": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.allegheny_county[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 15000, - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.allegheny_county[1].amount": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.allegheny_county[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 14, - "2015-01-01": 14 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.allegheny_county[2]": { - "type": "parameterNode", - "parameter": "gov.states.pa.tax.use_tax.main.allegheny_county[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.pa.tax.use_tax.main.allegheny_county[2].threshold": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.allegheny_county[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.allegheny_county[2].amount": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.allegheny_county[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 19, - "2015-01-01": 19 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.allegheny_county[3]": { - "type": "parameterNode", - "parameter": "gov.states.pa.tax.use_tax.main.allegheny_county[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.pa.tax.use_tax.main.allegheny_county[3].threshold": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.allegheny_county[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.allegheny_county[3].amount": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.allegheny_county[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 26, - "2015-01-01": 26 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.allegheny_county[4]": { - "type": "parameterNode", - "parameter": "gov.states.pa.tax.use_tax.main.allegheny_county[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.pa.tax.use_tax.main.allegheny_county[4].threshold": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.allegheny_county[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 75000, - "2015-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.allegheny_county[4].amount": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.allegheny_county[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 37, - "2015-01-01": 37 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.allegheny_county[5]": { - "type": "parameterNode", - "parameter": "gov.states.pa.tax.use_tax.main.allegheny_county[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.pa.tax.use_tax.main.allegheny_county[5].threshold": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.allegheny_county[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.allegheny_county[5].amount": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.allegheny_county[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 52, - "2015-01-01": 52 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.allegheny_county[6]": { - "type": "parameterNode", - "parameter": "gov.states.pa.tax.use_tax.main.allegheny_county[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.pa.tax.use_tax.main.allegheny_county[6].threshold": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.allegheny_county[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.allegheny_county[6].amount": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.allegheny_county[6].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 66, - "2015-01-01": 66 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.allegheny_county[7]": { - "type": "parameterNode", - "parameter": "gov.states.pa.tax.use_tax.main.allegheny_county[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.pa.tax.use_tax.main.allegheny_county[7].threshold": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.allegheny_county[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 200000, - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.allegheny_county[7].amount": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.allegheny_county[7].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.philadelphia_county": { - "type": "parameterNode", - "parameter": "gov.states.pa.tax.use_tax.main.philadelphia_county", - "description": "Pennsylvania levies a use tax of this amount depending on taxable income for Philadelphia residents.", - "label": "PA main Use Tax for Philadelphia" - }, - "gov.states.pa.tax.use_tax.main.philadelphia_county[0]": { - "type": "parameterNode", - "parameter": "gov.states.pa.tax.use_tax.main.philadelphia_county[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.pa.tax.use_tax.main.philadelphia_county[0].threshold": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.philadelphia_county[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.philadelphia_county[0].amount": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.philadelphia_county[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 8, - "2015-01-01": 8 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.philadelphia_county[1]": { - "type": "parameterNode", - "parameter": "gov.states.pa.tax.use_tax.main.philadelphia_county[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.pa.tax.use_tax.main.philadelphia_county[1].threshold": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.philadelphia_county[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 15000, - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.philadelphia_county[1].amount": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.philadelphia_county[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 17, - "2015-01-01": 17 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.philadelphia_county[2]": { - "type": "parameterNode", - "parameter": "gov.states.pa.tax.use_tax.main.philadelphia_county[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.pa.tax.use_tax.main.philadelphia_county[2].threshold": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.philadelphia_county[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.philadelphia_county[2].amount": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.philadelphia_county[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 22, - "2015-01-01": 22 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.philadelphia_county[3]": { - "type": "parameterNode", - "parameter": "gov.states.pa.tax.use_tax.main.philadelphia_county[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.pa.tax.use_tax.main.philadelphia_county[3].threshold": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.philadelphia_county[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.philadelphia_county[3].amount": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.philadelphia_county[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 30, - "2015-01-01": 30 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.philadelphia_county[4]": { - "type": "parameterNode", - "parameter": "gov.states.pa.tax.use_tax.main.philadelphia_county[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.pa.tax.use_tax.main.philadelphia_county[4].threshold": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.philadelphia_county[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 75000, - "2015-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.philadelphia_county[4].amount": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.philadelphia_county[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 43, - "2015-01-01": 43 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.philadelphia_county[5]": { - "type": "parameterNode", - "parameter": "gov.states.pa.tax.use_tax.main.philadelphia_county[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.pa.tax.use_tax.main.philadelphia_county[5].threshold": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.philadelphia_county[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.philadelphia_county[5].amount": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.philadelphia_county[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 59, - "2015-01-01": 59 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.philadelphia_county[6]": { - "type": "parameterNode", - "parameter": "gov.states.pa.tax.use_tax.main.philadelphia_county[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.pa.tax.use_tax.main.philadelphia_county[6].threshold": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.philadelphia_county[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.philadelphia_county[6].amount": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.philadelphia_county[6].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 76, - "2015-01-01": 76 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.philadelphia_county[7]": { - "type": "parameterNode", - "parameter": "gov.states.pa.tax.use_tax.main.philadelphia_county[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.pa.tax.use_tax.main.philadelphia_county[7].threshold": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.philadelphia_county[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 200000, - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.states.pa.tax.use_tax.main.philadelphia_county[7].amount": { - "type": "parameter", - "parameter": "gov.states.pa.tax.use_tax.main.philadelphia_county[7].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.pa.dhs": { - "type": "parameterNode", - "parameter": "gov.states.pa.dhs", - "description": null, - "label": "Department of Human Services", - "economy": true, - "household": true - }, - "gov.states.pa.dhs.tanf": { - "type": "parameterNode", - "parameter": "gov.states.pa.dhs.tanf", - "description": null, - "label": "Temporary Assistance for Needy Families", - "economy": true, - "household": true - }, - "gov.states.pa.dhs.tanf.cash_assistance": { - "type": "parameterNode", - "parameter": "gov.states.pa.dhs.tanf.cash_assistance", - "description": null, - "label": "cash assistance", - "economy": true, - "household": true - }, - "gov.states.pa.dhs.tanf.cash_assistance.age_limit": { - "type": "parameter", - "parameter": "gov.states.pa.dhs.tanf.cash_assistance.age_limit", - "description": "Pennsylvania limits TANF eligibility to people below this age, or students exactly this age.", - "label": "Pennsylvania TANF age eligibility", - "unit": "year", - "period": null, - "values": { - "2023-01-01": 18, - "2015-01-01": 18 - }, - "economy": false, - "household": false - }, - "gov.states.pa.dhs.tanf.resource_limit": { - "type": "parameter", - "parameter": "gov.states.pa.dhs.tanf.resource_limit", - "description": "Pennsylvania limits TANF benefits to households with resources at or below this amount.", - "label": "Pennsylvania TANF resource limit", - "unit": "currency-USD", - "period": null, - "values": { - "1988-11-01": 1000 - }, - "economy": false, - "household": false - }, - "gov.states.pa.dhs.tanf.pregnancy_eligibility": { - "type": "parameterNode", - "parameter": "gov.states.pa.dhs.tanf.pregnancy_eligibility", - "description": null, - "label": "pregnancy eligibility", - "economy": true, - "household": true - }, - "gov.states.pa.dhs.tanf.pregnancy_eligibility.age_limit": { - "type": "parameter", - "parameter": "gov.states.pa.dhs.tanf.pregnancy_eligibility.age_limit", - "description": "Pennsylvania has limitation for applying TANF to pregnant women above or equal to this age.", - "label": "Pennsylvania TANF age limitation for pregnant women with child receiving TANF", - "unit": "year", - "period": null, - "values": { - "2013-08-16": 18 - }, - "economy": true, - "household": true - }, - "gov.states.wv": { - "type": "parameterNode", - "parameter": "gov.states.wv", - "description": null, - "label": "West Virginia", - "economy": true, - "household": true - }, - "gov.states.wv.tax": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.states.wv.tax.income": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits", - "description": null, - "label": "credits", - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.refundable": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.refundable", - "description": "West Virginia allows these refundable tax credits.", - "label": "West Virginia refundable tax credits", - "unit": "list", - "period": "year", - "values": { - "2020-01-01": ["wv_sctc", "wv_homestead_excess_property_tax_credit"], - "2015-01-01": ["wv_sctc", "wv_homestead_excess_property_tax_credit"] - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.sctc": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.sctc", - "description": null, - "label": "sctc", - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.sctc.max_amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.sctc.max_amount", - "description": "West Virginia provides a senior citizens tax credit of up to this maximum amount.", - "label": "West Virginia senior citizens tax credit max amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2007-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.sctc.fpg_percentage": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.sctc.fpg_percentage", - "description": "West Virginia qualifies filers for the senior citizens tax credit with modified gross income below this percentage of the federal poverty guidelines.", - "label": "West Virginia senior citizens tax credit federal poverty guidelines percentage", - "unit": "/1", - "period": "year", - "values": { - "2012-01-01": 1.5 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.cdcc": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.cdcc", - "description": null, - "label": "cdcc", - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.cdcc.match": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.cdcc.match", - "description": "West Virginia matches this percentage of the federal Child and Dependent Care Credit.", - "label": "West Virginia CDCC match", - "unit": "/1", - "period": "year", - "values": { - "2024-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.non_refundable": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.non_refundable", - "description": "West Virginia allows these non-refundable tax credits.", - "label": "West Virginia non-refundable tax credits", - "unit": "list", - "period": "year", - "values": { - "2024-01-01": ["wv_low_income_family_tax_credit", "wv_cdcc"], - "2022-01-01": ["wv_low_income_family_tax_credit"], - "2015-01-01": ["wv_low_income_family_tax_credit"] - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.heptc": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.heptc", - "description": null, - "label": "heptc", - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.heptc.gross_household_income": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.heptc.gross_household_income", - "description": null, - "label": "gross household income", - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.heptc.gross_household_income.sources": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.heptc.gross_household_income.sources", - "description": "West Virginia counts these sources as gross household income for the homestead excess property tax credit.", - "label": "West Virginia homestead property excess tax credit gross household income sources", - "unit": "list", - "period": "year", - "values": { - "2012-01-01": [ - "adjusted_gross_income", - "wv_additions", - "tax_exempt_interest_income", - "workers_compensation", - "tax_exempt_social_security" - ] - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.heptc.rate": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.heptc.rate", - "description": null, - "label": "rate", - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.heptc.rate.fpg": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.heptc.rate.fpg", - "description": "West Virginia limits the homestead excess property tax credit to filers with adjusted gross income below this multiple of the federal poverty guidelines.", - "label": "West Virginia homestead excess property tax credit poverty guidelines rate", - "unit": "/1", - "period": "year", - "values": { - "2008-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.heptc.rate.household_income": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.heptc.rate.household_income", - "description": "West Virginia provides a homestead property tax credit for property taxes in excess of this fraction of gross household income less the amount of the senior citizen tax credit.", - "label": "West Virginia homestead excess property tax credit gross household income rate", - "unit": "/1", - "period": "year", - "values": { - "2012-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.heptc.cap": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.heptc.cap", - "description": "West Virginia caps the homestead excess property tax credit at this amount.", - "label": "West Virginia homestead excess property tax credit cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2008-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc", - "description": null, - "label": "liftc", - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.fpg_percent": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.fpg_percent", - "description": "West Virginia reduces its low-income family tax credit for filers with modified adjusted gross income exceeding this fraction of the federal poverty guideline.", - "label": "West Virginia low-income family tax credit MAGI limit", - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.fpg_percent.SINGLE": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.fpg_percent.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2007-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.fpg_percent.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.fpg_percent.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2007-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.fpg_percent.JOINT": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.fpg_percent.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2007-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.fpg_percent.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.fpg_percent.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2007-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.fpg_percent.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.fpg_percent.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2007-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.head_of_household": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.head_of_household", - "description": "West Virginia allows for this low-income family tax credit amount for head of household filers.", - "label": "West Virginia low-income family tax credit for head of household filers" - }, - "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[0]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[0].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[0].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[1]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[1].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[1].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0.9 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[2]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[2].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 300 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[2].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0.8 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[3]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[3].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 600 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[3].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0.7 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[4]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[4].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 900 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[4].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[4].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0.6 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[5]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[5].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 1200 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[5].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[5].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[6]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[6].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 1500 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[6].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[6].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0.4 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[7]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[7].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 1800 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[7].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[7].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0.3 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[8]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[8].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 2100 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[8].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[8].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[9]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[9].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 2400 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[9].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[9].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[10]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[10]", - "description": null, - "label": "bracket 11" - }, - "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[10].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[10].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 2700 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[10].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.head_of_household[10].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.separate": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.separate", - "description": "West Virginia allows for this low-income family tax credit amount for married filing separately filers.", - "label": "West Virginia low-income family tax credit for married filing separately filers" - }, - "gov.states.wv.tax.income.credits.liftc.amount.separate[0]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.separate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.wv.tax.income.credits.liftc.amount.separate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.separate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.separate[0].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.separate[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.separate[1]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.separate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.wv.tax.income.credits.liftc.amount.separate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.separate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.separate[1].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.separate[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0.9 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.separate[2]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.separate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.wv.tax.income.credits.liftc.amount.separate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.separate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 150 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.separate[2].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.separate[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0.8 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.separate[3]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.separate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.wv.tax.income.credits.liftc.amount.separate[3].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.separate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 300 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.separate[3].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.separate[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0.7 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.separate[4]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.separate[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.wv.tax.income.credits.liftc.amount.separate[4].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.separate[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 450 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.separate[4].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.separate[4].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0.6 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.separate[5]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.separate[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.wv.tax.income.credits.liftc.amount.separate[5].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.separate[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 600 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.separate[5].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.separate[5].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.separate[6]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.separate[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.wv.tax.income.credits.liftc.amount.separate[6].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.separate[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 750 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.separate[6].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.separate[6].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0.4 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.separate[7]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.separate[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.wv.tax.income.credits.liftc.amount.separate[7].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.separate[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 900 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.separate[7].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.separate[7].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0.3 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.separate[8]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.separate[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.wv.tax.income.credits.liftc.amount.separate[8].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.separate[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 1050 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.separate[8].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.separate[8].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.separate[9]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.separate[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.wv.tax.income.credits.liftc.amount.separate[9].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.separate[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 1200 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.separate[9].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.separate[9].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.separate[10]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.separate[10]", - "description": null, - "label": "bracket 11" - }, - "gov.states.wv.tax.income.credits.liftc.amount.separate[10].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.separate[10].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 1350 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.separate[10].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.separate[10].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.joint": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.joint", - "description": "West Virginia allows for this low-income family tax credit amount for joint filers.", - "label": "West Virginia low-income family tax credit for joint filers" - }, - "gov.states.wv.tax.income.credits.liftc.amount.joint[0]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.wv.tax.income.credits.liftc.amount.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.joint[0].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.joint[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.joint[1]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.wv.tax.income.credits.liftc.amount.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.joint[1].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.joint[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0.9 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.joint[2]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.wv.tax.income.credits.liftc.amount.joint[2].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 300 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.joint[2].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.joint[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0.8 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.joint[3]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.joint[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.wv.tax.income.credits.liftc.amount.joint[3].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.joint[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 600 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.joint[3].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.joint[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0.7 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.joint[4]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.joint[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.wv.tax.income.credits.liftc.amount.joint[4].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.joint[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 900 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.joint[4].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.joint[4].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0.6 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.joint[5]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.joint[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.wv.tax.income.credits.liftc.amount.joint[5].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.joint[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 1200 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.joint[5].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.joint[5].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.joint[6]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.joint[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.wv.tax.income.credits.liftc.amount.joint[6].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.joint[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 1500 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.joint[6].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.joint[6].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0.4 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.joint[7]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.joint[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.wv.tax.income.credits.liftc.amount.joint[7].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.joint[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 1800 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.joint[7].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.joint[7].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0.3 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.joint[8]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.joint[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.wv.tax.income.credits.liftc.amount.joint[8].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.joint[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 2100 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.joint[8].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.joint[8].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.joint[9]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.joint[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.wv.tax.income.credits.liftc.amount.joint[9].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.joint[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 2400 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.joint[9].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.joint[9].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.joint[10]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.joint[10]", - "description": null, - "label": "bracket 11" - }, - "gov.states.wv.tax.income.credits.liftc.amount.joint[10].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.joint[10].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 2700 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.joint[10].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.joint[10].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.single": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.single", - "description": "West Virginia allows for this low-income family tax credit amount for single filers.", - "label": "West Virginia low-income family tax credit for single filers" - }, - "gov.states.wv.tax.income.credits.liftc.amount.single[0]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.single[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.wv.tax.income.credits.liftc.amount.single[0].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.single[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.single[0].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.single[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.single[1]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.single[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.wv.tax.income.credits.liftc.amount.single[1].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.single[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.single[1].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.single[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0.9 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.single[2]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.single[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.wv.tax.income.credits.liftc.amount.single[2].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.single[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 300 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.single[2].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.single[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0.8 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.single[3]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.single[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.wv.tax.income.credits.liftc.amount.single[3].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.single[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 600 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.single[3].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.single[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0.7 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.single[4]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.single[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.wv.tax.income.credits.liftc.amount.single[4].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.single[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 900 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.single[4].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.single[4].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0.6 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.single[5]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.single[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.wv.tax.income.credits.liftc.amount.single[5].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.single[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 1200 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.single[5].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.single[5].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.single[6]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.single[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.wv.tax.income.credits.liftc.amount.single[6].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.single[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 1500 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.single[6].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.single[6].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0.4 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.single[7]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.single[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.wv.tax.income.credits.liftc.amount.single[7].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.single[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 1800 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.single[7].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.single[7].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0.3 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.single[8]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.single[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.wv.tax.income.credits.liftc.amount.single[8].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.single[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 2100 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.single[8].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.single[8].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.single[9]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.single[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.wv.tax.income.credits.liftc.amount.single[9].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.single[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 2400 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.single[9].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.single[9].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.single[10]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.single[10]", - "description": null, - "label": "bracket 11" - }, - "gov.states.wv.tax.income.credits.liftc.amount.single[10].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.single[10].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 2700 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.single[10].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.single[10].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse", - "description": "West Virginia allows for this low-income family tax credit amount for surviving spouse filers.", - "label": "West Virginia low-income family tax credit for surviving spouse filers" - }, - "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[0]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[0].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[0].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[1]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[1].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[1].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0.9 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[2]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[2].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 300 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[2].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0.8 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[3]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[3].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 600 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[3].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0.7 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[4]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[4].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 900 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[4].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[4].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0.6 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[5]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[5].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 1200 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[5].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[5].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[6]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[6].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 1500 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[6].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[6].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0.4 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[7]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[7].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 1800 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[7].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[7].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0.3 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[8]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[8].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 2100 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[8].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[8].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[9]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[9].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 2400 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[9].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[9].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[10]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[10]", - "description": null, - "label": "bracket 11" - }, - "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[10].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[10].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2007-01-01": 2700 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[10].amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.amount.surviving_spouse[10].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.credits.liftc.max_family_size": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.credits.liftc.max_family_size", - "description": "West Virginia limits the number of eligible tax unit members for the low-income family tax credit to this amount.", - "label": "West Virginia family size of low-income family tax credit max family size", - "unit": "/1", - "period": "year", - "values": { - "2007-01-01": 8 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.exemptions": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.exemptions", - "description": null, - "label": "exemptions", - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.exemptions.homestead_exemption": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.exemptions.homestead_exemption", - "description": null, - "label": "homestead exemption", - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.exemptions.homestead_exemption.max_amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.exemptions.homestead_exemption.max_amount", - "description": "West Virginia provides a homestead exemption of up to this maximum amount.", - "label": "West Virginia homestead exemption max amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2012-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.exemptions.personal": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.exemptions.personal", - "description": "West Virginia provides an income tax exemption of this value for each person in the filing unit.", - "label": "West Virginia personal exemption", - "unit": "currency-USD", - "period": "year", - "values": { - "1987-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.exemptions.base_personal": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.exemptions.base_personal", - "description": "West Virginia provides an income tax exemption of this value for tax units with no exemptions claimed.", - "label": "West Virginia personal exemption", - "unit": "currency-USD", - "period": "year", - "values": { - "1987-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.rates", - "description": null, - "label": "rates", - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.separate": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.rates.separate", - "description": "West Virginia taxes income at these rates for married filers, filing separately.", - "label": "West Virginia income tax rate married filers, filing separately" - }, - "gov.states.wv.tax.income.rates.separate[0]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.rates.separate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.wv.tax.income.rates.separate[0].rate": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.separate[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.0236, - "2022-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.separate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.separate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.separate[1]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.rates.separate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.wv.tax.income.rates.separate[1].rate": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.separate[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.0315, - "2022-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.separate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.separate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.separate[2]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.rates.separate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.wv.tax.income.rates.separate[2].rate": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.separate[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.0354, - "2022-01-01": 0.045, - "2015-01-01": 0.045 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.separate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.separate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 12500, - "2015-01-01": 12500 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.separate[3]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.rates.separate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.wv.tax.income.rates.separate[3].rate": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.separate[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.0472, - "2022-01-01": 0.06, - "2015-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.separate[3].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.separate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.separate[4]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.rates.separate[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.wv.tax.income.rates.separate[4].rate": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.separate[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.0512, - "2022-01-01": 0.065, - "2015-01-01": 0.065 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.separate[4].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.separate[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.joint": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.rates.joint", - "description": "West Virginia income tax rate for joint filers.", - "label": "West Virginia income tax rate for joint filers" - }, - "gov.states.wv.tax.income.rates.joint[0]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.rates.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.wv.tax.income.rates.joint[0].rate": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.joint[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.0236, - "2022-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.joint[1]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.rates.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.wv.tax.income.rates.joint[1].rate": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.joint[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.0315, - "2022-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.joint[2]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.rates.joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.wv.tax.income.rates.joint[2].rate": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.joint[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.0354, - "2022-01-01": 0.045, - "2015-01-01": 0.045 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.joint[2].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.joint[3]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.rates.joint[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.wv.tax.income.rates.joint[3].rate": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.joint[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.0472, - "2022-01-01": 0.06, - "2015-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.joint[3].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.joint[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 40000, - "2015-01-01": 40000 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.joint[4]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.rates.joint[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.wv.tax.income.rates.joint[4].rate": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.joint[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.0512, - "2022-01-01": 0.065, - "2015-01-01": 0.065 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.joint[4].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.joint[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 60000, - "2015-01-01": 60000 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.single": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.rates.single", - "description": "West Virginia taxes income at these rates for single filers.", - "label": "West Virginia income tax rate for single filers" - }, - "gov.states.wv.tax.income.rates.single[0]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.rates.single[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.wv.tax.income.rates.single[0].rate": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.single[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.0236, - "2022-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.single[0].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.single[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.single[1]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.rates.single[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.wv.tax.income.rates.single[1].rate": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.single[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.0315, - "2022-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.single[1].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.single[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.single[2]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.rates.single[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.wv.tax.income.rates.single[2].rate": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.single[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.0354, - "2022-01-01": 0.045, - "2015-01-01": 0.045 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.single[2].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.single[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.single[3]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.rates.single[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.wv.tax.income.rates.single[3].rate": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.single[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.0472, - "2022-01-01": 0.06, - "2015-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.single[3].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.single[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 40000, - "2015-01-01": 40000 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.single[4]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.rates.single[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.wv.tax.income.rates.single[4].rate": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.single[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.0512, - "2022-01-01": 0.065, - "2015-01-01": 0.065 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.single[4].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.single[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 60000, - "2015-01-01": 60000 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.head": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.rates.head", - "description": "West Virginia income tax rate for head of household filers.", - "label": "West Virginia income tax rate for head of household filers" - }, - "gov.states.wv.tax.income.rates.head[0]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.rates.head[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.wv.tax.income.rates.head[0].rate": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.head[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.0236, - "2022-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.head[0].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.head[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.head[1]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.rates.head[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.wv.tax.income.rates.head[1].rate": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.head[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.0315, - "2022-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.head[1].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.head[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.head[2]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.rates.head[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.wv.tax.income.rates.head[2].rate": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.head[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.0354, - "2022-01-01": 0.045, - "2015-01-01": 0.045 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.head[2].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.head[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.head[3]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.rates.head[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.wv.tax.income.rates.head[3].rate": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.head[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.0472, - "2022-01-01": 0.06, - "2015-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.head[3].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.head[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 40000, - "2015-01-01": 40000 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.head[4]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.rates.head[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.wv.tax.income.rates.head[4].rate": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.head[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.0512, - "2022-01-01": 0.065, - "2015-01-01": 0.065 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.head[4].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.head[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 60000, - "2015-01-01": 60000 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.surviving_spouse": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.rates.surviving_spouse", - "description": "West Virginia taxes income at these rates for surviving spouse filers.", - "label": "West Virginia income tax rate for surviving spouse filers" - }, - "gov.states.wv.tax.income.rates.surviving_spouse[0]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.rates.surviving_spouse[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.wv.tax.income.rates.surviving_spouse[0].rate": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.surviving_spouse[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.0236, - "2022-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.surviving_spouse[0].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.surviving_spouse[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.surviving_spouse[1]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.rates.surviving_spouse[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.wv.tax.income.rates.surviving_spouse[1].rate": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.surviving_spouse[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.0315, - "2022-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.surviving_spouse[1].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.surviving_spouse[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.surviving_spouse[2]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.rates.surviving_spouse[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.wv.tax.income.rates.surviving_spouse[2].rate": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.surviving_spouse[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.0354, - "2022-01-01": 0.045, - "2015-01-01": 0.045 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.surviving_spouse[2].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.surviving_spouse[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.surviving_spouse[3]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.rates.surviving_spouse[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.wv.tax.income.rates.surviving_spouse[3].rate": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.surviving_spouse[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.0472, - "2022-01-01": 0.06, - "2015-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.surviving_spouse[3].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.surviving_spouse[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 40000, - "2015-01-01": 40000 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.surviving_spouse[4]": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.rates.surviving_spouse[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.wv.tax.income.rates.surviving_spouse[4].rate": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.surviving_spouse[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.0512, - "2022-01-01": 0.065, - "2015-01-01": 0.065 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.rates.surviving_spouse[4].threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.rates.surviving_spouse[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 60000, - "2015-01-01": 60000 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.subtractions": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.subtractions", - "description": null, - "label": "subtractions", - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.subtractions.senior_citizen_disability_deduction": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.subtractions.senior_citizen_disability_deduction", - "description": null, - "label": "senior citizen disability deduction", - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.subtractions.senior_citizen_disability_deduction.age_threshold": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.subtractions.senior_citizen_disability_deduction.age_threshold", - "description": "West Virginia limits the senior citizen deduction to filers this age or older.", - "label": "West Virginia senior citizen deduction age threshold", - "unit": "year", - "period": "year", - "values": { - "1986-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.subtractions.senior_citizen_disability_deduction.modification_sources": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.subtractions.senior_citizen_disability_deduction.modification_sources", - "description": "West Virginia reduces the adjusted gross income by the total value of these modifications under the senior citizen or disability deduction.", - "label": "West Virginia senior citizen or disability deduction modification sources", - "unit": "list", - "period": "year", - "values": { - "1986-01-01": [ - "us_govt_interest", - "military_retirement_pay", - "wv_public_pension_subtraction_person", - "wv_social_security_benefits_subtraction_person" - ] - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.subtractions.senior_citizen_disability_deduction.cap": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.subtractions.senior_citizen_disability_deduction.cap", - "description": "West Virginia caps the reduced adjusted gross income at this amount under the senior citizen or disability deduction.", - "label": "West Virginia senior citizen or disability deduction cap", - "unit": "currency-USD", - "period": "year", - "values": { - "1986-01-01": 8000 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.subtractions.low_income_earned_income": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.subtractions.low_income_earned_income", - "description": null, - "label": "low income earned income", - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.subtractions.low_income_earned_income.income_limit": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.subtractions.low_income_earned_income.income_limit", - "description": "West Virginia limits the low-income earned income exclusion to filers with federal adjusted gross income below this amount.", - "label": "West Virginia low-income earned income exclusion income limit", - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.subtractions.low_income_earned_income.income_limit.SINGLE": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.subtractions.low_income_earned_income.income_limit.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.subtractions.low_income_earned_income.income_limit.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.subtractions.low_income_earned_income.income_limit.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.subtractions.low_income_earned_income.income_limit.JOINT": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.subtractions.low_income_earned_income.income_limit.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.subtractions.low_income_earned_income.income_limit.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.subtractions.low_income_earned_income.income_limit.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.subtractions.low_income_earned_income.income_limit.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.subtractions.low_income_earned_income.income_limit.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.subtractions.low_income_earned_income.amount": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.subtractions.low_income_earned_income.amount", - "description": "West Virginia caps the low-income earned income exclusion to this amount of earned income.", - "label": "West Virginia low-income earned income exclusion low-income earned income exclusion limit", - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.subtractions.low_income_earned_income.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.subtractions.low_income_earned_income.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.subtractions.low_income_earned_income.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.subtractions.low_income_earned_income.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.subtractions.low_income_earned_income.amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.subtractions.low_income_earned_income.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.subtractions.low_income_earned_income.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.subtractions.low_income_earned_income.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.subtractions.low_income_earned_income.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.subtractions.low_income_earned_income.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.subtractions.subtractions": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.subtractions.subtractions", - "description": "West Virginia subtracts these sources from adjusted gross income.", - "label": "West Virginia subtractions", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": [ - "us_govt_interest", - "military_retirement_pay", - "wv_public_pension_subtraction", - "wv_social_security_benefits_subtraction", - "military_service_income", - "salt_refund_income", - "investment_in_529_plan", - "wv_senior_citizen_disability_deduction", - "wv_low_income_earned_income_exclusion" - ], - "2015-01-01": [ - "us_govt_interest", - "military_retirement_pay", - "wv_public_pension_subtraction", - "wv_social_security_benefits_subtraction", - "military_service_income", - "salt_refund_income", - "investment_in_529_plan", - "wv_senior_citizen_disability_deduction", - "wv_low_income_earned_income_exclusion" - ] - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.subtractions.social_security_benefits": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.subtractions.social_security_benefits", - "description": null, - "label": "social security benefits", - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.subtractions.social_security_benefits.social_security_benefits_above_income_limit": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.subtractions.social_security_benefits.social_security_benefits_above_income_limit", - "description": null, - "label": "social security benefits above income limit", - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.subtractions.social_security_benefits.social_security_benefits_above_income_limit.rate": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.subtractions.social_security_benefits.social_security_benefits_above_income_limit.rate", - "description": "West Virginia subtracts this fraction of taxable Social Security benefits from adjusted gross income for households above the income limit.", - "label": "West Virginia Social Security subtraction rate above income limit", - "unit": "/1", - "period": "year", - "values": { - "2026-01-01": 1, - "2025-01-01": 0.65, - "2024-01-01": 0.35, - "2015-01-01": 0.35 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.subtractions.social_security_benefits.social_security_benefits_above_income_limit.applies": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.subtractions.social_security_benefits.social_security_benefits_above_income_limit.applies", - "description": "West Virginia exempts a fraction of Social Security benefits for households above the income limits if this is true.", - "label": null, - "unit": "bool", - "period": "year", - "values": { - "2024-01-01": true, - "2021-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.subtractions.social_security_benefits.income_limit": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.subtractions.social_security_benefits.income_limit", - "description": "West Virginia limits its social security benefits subtraction to filers with federal adjusted gross income at or below this amount.", - "label": "West Virginia social security benefits subtraction income limit", - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.subtractions.social_security_benefits.income_limit.JOINT": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.subtractions.social_security_benefits.income_limit.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2020-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.subtractions.social_security_benefits.income_limit.SINGLE": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.subtractions.social_security_benefits.income_limit.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2020-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.subtractions.social_security_benefits.income_limit.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.subtractions.social_security_benefits.income_limit.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2020-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.subtractions.social_security_benefits.income_limit.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.subtractions.social_security_benefits.income_limit.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2020-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.subtractions.social_security_benefits.income_limit.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.subtractions.social_security_benefits.income_limit.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2020-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.subtractions.social_security_benefits.rate": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.subtractions.social_security_benefits.rate", - "description": "West Virginia subtracts this fraction of taxable social security benefits from adjusted gross income.", - "label": "West Virginia social security benefits subtraction rate", - "unit": "/1", - "period": "year", - "values": { - "2022-01-01": 1, - "2021-01-01": 0.65, - "2020-01-01": 0.35, - "2015-01-01": 0.35 - }, - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.subtractions.public_pension": { - "type": "parameterNode", - "parameter": "gov.states.wv.tax.income.subtractions.public_pension", - "description": null, - "label": "public pension", - "economy": true, - "household": true - }, - "gov.states.wv.tax.income.subtractions.public_pension.max_amount": { - "type": "parameter", - "parameter": "gov.states.wv.tax.income.subtractions.public_pension.max_amount", - "description": "West Virginia provides a pension subtraction of up to this maximum amount.", - "label": "West Virginia public pension subtraction max amount", - "unit": "currency-USD", - "period": "year", - "values": { - "1989-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.ia": { - "type": "parameterNode", - "parameter": "gov.states.ia", - "description": null, - "label": "Iowa", - "economy": true, - "household": true - }, - "gov.states.ia.tax": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.states.ia.tax.income": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.tax_reduction": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.tax_reduction", - "description": null, - "label": "tax reduction", - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.tax_reduction.elderly_age": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.tax_reduction.elderly_age", - "description": "Iowa considers single tax units with head this age or older to be elderly in tax reduction worksheet calculations.", - "label": "Iowa elderly age threshold used in tax reduction worksheet", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.tax_reduction.threshold": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.tax_reduction.threshold", - "description": null, - "label": "threshold", - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.tax_reduction.threshold.nonelderly": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.tax_reduction.threshold.nonelderly", - "description": "Iowa has a tax reduction worksheet for single tax units that uses this modified income threshold for the nonelderly.", - "label": "Iowa tax reduction worksheet modified income threshold for nonelderly", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 9000, - "2015-01-01": 9000 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.tax_reduction.threshold.elderly": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.tax_reduction.threshold.elderly", - "description": "Iowa has a tax reduction worksheet for single tax units that uses this modified income threshold for the elderly.", - "label": "Iowa tax reduction worksheet modified income threshold for elderly", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 24000, - "2015-01-01": 24000 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.reportable_social_security": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.reportable_social_security", - "description": null, - "label": "reportable social security", - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.reportable_social_security.deduction": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.reportable_social_security.deduction", - "description": "Iowa calculates reportable social security using this income deduction.", - "label": "Iowa reportable social security income deduction", - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.reportable_social_security.deduction.JOINT": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.reportable_social_security.deduction.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 32000, - "2015-01-01": 32000 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.reportable_social_security.deduction.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.reportable_social_security.deduction.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.reportable_social_security.deduction.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.reportable_social_security.deduction.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.reportable_social_security.deduction.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.reportable_social_security.deduction.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.reportable_social_security.deduction.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.reportable_social_security.deduction.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.reportable_social_security.fraction": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.reportable_social_security.fraction", - "description": "Iowa calculates reportable social security using this fraction.", - "label": "Iowa reportable social security fraction", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.alternative_minimum_tax": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.alternative_minimum_tax", - "description": null, - "label": "alternative minimum tax", - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.alternative_minimum_tax.exemption": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.alternative_minimum_tax.exemption", - "description": "Iowa imposes an alternative minimum tax in which the AMT taxable income exemption is this amount.", - "label": "Iowa alternative minimum tax exemption amount", - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.alternative_minimum_tax.exemption.JOINT": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.alternative_minimum_tax.exemption.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.alternative_minimum_tax.exemption.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.alternative_minimum_tax.exemption.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 112500, - "2015-01-01": 112500 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.alternative_minimum_tax.exemption.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.alternative_minimum_tax.exemption.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 112500, - "2015-01-01": 112500 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.alternative_minimum_tax.exemption.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.alternative_minimum_tax.exemption.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 112500, - "2015-01-01": 112500 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.alternative_minimum_tax.exemption.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.alternative_minimum_tax.exemption.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 75000, - "2015-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.alternative_minimum_tax.in_effect": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.alternative_minimum_tax.in_effect", - "description": "Iowa imposes an alternative minimum tax if this is true.", - "label": "Iowa alternative minimum tax availability", - "unit": "bool", - "period": "year", - "values": { - "2023-01-01": false, - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.alternative_minimum_tax.fraction": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.alternative_minimum_tax.fraction", - "description": "Iowa imposes an alternative minimum tax that uses this fraction.", - "label": "Iowa alternative minimum tax fraction", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.alternative_minimum_tax.rate": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.alternative_minimum_tax.rate", - "description": "Iowa imposes an alternative minimum tax with this rate.", - "label": "Iowa alternative minimum tax rate", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.064, - "2015-01-01": 0.064 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.alternative_minimum_tax.threshold": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.alternative_minimum_tax.threshold", - "description": "Iowa imposes an alternative minimum tax in which the AMT taxable income threshold is this amount.", - "label": "Iowa alternative minimum tax threshold amount", - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.alternative_minimum_tax.threshold.JOINT": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.alternative_minimum_tax.threshold.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 35000, - "2015-01-01": 35000 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.alternative_minimum_tax.threshold.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.alternative_minimum_tax.threshold.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 26000, - "2015-01-01": 26000 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.alternative_minimum_tax.threshold.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.alternative_minimum_tax.threshold.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 26000, - "2015-01-01": 26000 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.alternative_minimum_tax.threshold.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.alternative_minimum_tax.threshold.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 26000, - "2015-01-01": 26000 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.alternative_minimum_tax.threshold.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.alternative_minimum_tax.threshold.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 17500, - "2015-01-01": 17500 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.gross_income": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.gross_income", - "description": null, - "label": "gross income", - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.gross_income.sources": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.gross_income.sources", - "description": "Iowa gross income sources.", - "label": "Iowa gross income sources", - "unit": "list", - "period": null, - "values": { - "2021-01-01": [ - "irs_employment_income", - "taxable_interest_income", - "dividend_income", - "alimony_income", - "self_employment_income", - "capital_gains", - "taxable_pension_income", - "partnership_s_corp_income", - "rental_income", - "farm_income", - "taxable_unemployment_compensation", - "miscellaneous_income" - ], - "2015-01-01": [ - "irs_employment_income", - "taxable_interest_income", - "dividend_income", - "alimony_income", - "self_employment_income", - "capital_gains", - "taxable_pension_income", - "partnership_s_corp_income", - "rental_income", - "farm_income", - "taxable_unemployment_compensation", - "miscellaneous_income" - ] - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.modified_income": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.modified_income", - "description": null, - "label": "modified income", - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.modified_income.sources": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.modified_income.sources", - "description": "Iowa modified income sources.", - "label": "Iowa modified income sources", - "unit": "list", - "period": null, - "values": { - "2023-01-01": [ - "ia_taxable_income_consolidated", - "taxable_income_deductions", - "qualified_business_income_deduction" - ], - "2021-01-01": ["ia_net_income", "ia_pension_exclusion", "ia_reportable_social_security"], - "2015-01-01": ["ia_net_income", "ia_pension_exclusion", "ia_reportable_social_security"] - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.credits": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.credits", - "description": null, - "label": "credits", - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.credits.refundable": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.credits.refundable", - "description": "Iowa provides these refundable tax credits.", - "label": "Iowa refundable tax credits", - "unit": "list", - "period": null, - "values": { - "2021-01-01": ["ia_cdcc", "ia_eitc"], - "2015-01-01": ["ia_cdcc", "ia_eitc"] - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.credits.exemption": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.credits.exemption", - "description": null, - "label": "exemption", - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.credits.exemption.dependent": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.credits.exemption.dependent", - "description": "Iowa has an nonrefundable exemption credit in which each tax unit dependent receives this dependent exemption amount.", - "label": "Iowa dependent exemption amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 40, - "2015-01-01": 40 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.credits.exemption.elderly_age": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.credits.exemption.elderly_age", - "description": "Iowa gives an additional exemption credit to a head or spouse who is at least this age.", - "label": "Iowa elderly age threshold used in additional exemption credit calculations", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.credits.exemption.personal": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.credits.exemption.personal", - "description": "Iowa has an nonrefundable exemption credit in which each tax unit head and spouse receive this personal exemption amount.", - "label": "Iowa personal exemption amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 40, - "2015-01-01": 40 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.credits.exemption.additional": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.credits.exemption.additional", - "description": "Iowa has an nonrefundable exemption credit in which each elderly and/blind head and spouse receive this additional exemption amount for each condition.", - "label": "Iowa additional (elderly and/or blind) exemption amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 20, - "2015-01-01": 20 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.credits.earned_income": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.credits.earned_income", - "description": null, - "label": "Earned Income Tax Credit", - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.credits.earned_income.fraction": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.credits.earned_income.fraction", - "description": "Iowa provides an earned income tax credit (EITC) that is this fraction of the federal EITC amount.", - "label": "Iowa EITC fraction", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.15, - "2015-01-01": 0.15 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.credits.nonrefundable": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.credits.nonrefundable", - "description": "Iowa provides these nonrefundable tax credits.", - "label": "Iowa nonrefundable tax credits", - "unit": "list", - "period": null, - "values": { - "2021-01-01": ["ia_exemption_credit"], - "2015-01-01": ["ia_exemption_credit"] - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.credits.child_care": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.credits.child_care", - "description": null, - "label": "Child and Dependent Care Credit", - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.credits.child_care.fraction": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.credits.child_care.fraction", - "description": "Iowa has a child/dependent care credit that is a net-income-based fraction of the federal credit.", - "label": "Iowa CDCC fraction" - }, - "gov.states.ia.tax.income.credits.child_care.fraction[0]": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.credits.child_care.fraction[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ia.tax.income.credits.child_care.fraction[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.credits.child_care.fraction[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.credits.child_care.fraction[0].amount": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.credits.child_care.fraction[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.75, - "2015-01-01": 0.75 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.credits.child_care.fraction[1]": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.credits.child_care.fraction[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ia.tax.income.credits.child_care.fraction[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.credits.child_care.fraction[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.credits.child_care.fraction[1].amount": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.credits.child_care.fraction[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.65, - "2015-01-01": 0.65 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.credits.child_care.fraction[2]": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.credits.child_care.fraction[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ia.tax.income.credits.child_care.fraction[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.credits.child_care.fraction[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.credits.child_care.fraction[2].amount": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.credits.child_care.fraction[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.55, - "2015-01-01": 0.55 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.credits.child_care.fraction[3]": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.credits.child_care.fraction[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ia.tax.income.credits.child_care.fraction[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.credits.child_care.fraction[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.credits.child_care.fraction[3].amount": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.credits.child_care.fraction[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.credits.child_care.fraction[4]": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.credits.child_care.fraction[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ia.tax.income.credits.child_care.fraction[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.credits.child_care.fraction[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 35000, - "2015-01-01": 35000 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.credits.child_care.fraction[4].amount": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.credits.child_care.fraction[4].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.4, - "2015-01-01": 0.4 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.credits.child_care.fraction[5]": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.credits.child_care.fraction[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ia.tax.income.credits.child_care.fraction[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.credits.child_care.fraction[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 40000, - "2015-01-01": 40000 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.credits.child_care.fraction[5].amount": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.credits.child_care.fraction[5].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.3, - "2015-01-01": 0.3 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.credits.child_care.fraction[6]": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.credits.child_care.fraction[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.ia.tax.income.credits.child_care.fraction[6].threshold": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.credits.child_care.fraction[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 90000, - "2015-01-01": 90000 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.credits.child_care.fraction[6].amount": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.credits.child_care.fraction[6].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.taxable_income": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.taxable_income", - "description": null, - "label": "taxable income", - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.taxable_income.subtractions": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.taxable_income.subtractions", - "description": "Iowa subtracts these sources from taxable income on and after 2023.", - "label": "Iowa taxable income subtractions", - "unit": "list", - "period": "year", - "values": { - "2024-01-01": [ - "us_govt_interest", - "military_retirement_pay", - "taxable_social_security", - "military_service_income", - "ia_pension_exclusion" - ], - "2021-01-01": [ - "us_govt_interest", - "taxable_social_security", - "military_service_income", - "ia_pension_exclusion" - ], - "2015-01-01": [ - "us_govt_interest", - "taxable_social_security", - "military_service_income", - "ia_pension_exclusion" - ] - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.taxable_income.additions": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.taxable_income.additions", - "description": "Iowa adds these sources to taxable income on and after 2023.", - "label": "Iowa taxable income additions", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": [], - "2015-01-01": [] - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.pension_exclusion": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.pension_exclusion", - "description": null, - "label": "pension exclusion", - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.pension_exclusion.minimum_age": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.pension_exclusion.minimum_age", - "description": "Iowa allows an exclusion of taxable pension income to get its net income that is available to elderly or disabled heads or spouses where elderly is defined as being at least this minimum age.", - "label": "Iowa pension exclusion minimum age for age eligibility", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 55, - "2015-01-01": 55 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.pension_exclusion.maximum_amount": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.pension_exclusion.maximum_amount", - "description": "Iowa allows an exclusion of taxable pension income to get its net income that is capped at this amount.", - "label": "Iowa maximum pension exclusion amount", - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.pension_exclusion.maximum_amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.pension_exclusion.maximum_amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2023-01-01": "Infinity", - "2021-01-01": 12000, - "2015-01-01": 12000 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.pension_exclusion.maximum_amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.pension_exclusion.maximum_amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2023-01-01": "Infinity", - "2021-01-01": 6000, - "2015-01-01": 6000 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.pension_exclusion.maximum_amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.pension_exclusion.maximum_amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2023-01-01": "Infinity", - "2021-01-01": 6000, - "2015-01-01": 6000 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.pension_exclusion.maximum_amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.pension_exclusion.maximum_amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2023-01-01": "Infinity", - "2021-01-01": 6000, - "2015-01-01": 6000 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.pension_exclusion.maximum_amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.pension_exclusion.maximum_amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2023-01-01": "Infinity", - "2021-01-01": 6000, - "2015-01-01": 6000 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.rates": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.rates", - "description": null, - "label": "rates", - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.rates.by_filing_status": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.rates.by_filing_status", - "description": null, - "label": "by filing status", - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.rates.by_filing_status.other": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.rates.by_filing_status.other", - "description": "Iowa levies income taxes at these rates for all filers other than joint filers post 2023.", - "label": "Iowa other filers income tax rates and brackets post 2023" - }, - "gov.states.ia.tax.income.rates.by_filing_status.other[0]": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.rates.by_filing_status.other[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ia.tax.income.rates.by_filing_status.other[0].rate": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.rates.by_filing_status.other[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2026-01-01": 0.039, - "2023-01-01": 0.044, - "2015-01-01": 0.044 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.rates.by_filing_status.other[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.rates.by_filing_status.other[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.rates.by_filing_status.other[1]": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.rates.by_filing_status.other[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ia.tax.income.rates.by_filing_status.other[1].rate": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.rates.by_filing_status.other[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.0482, - "2015-01-01": 0.0482 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.rates.by_filing_status.other[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.rates.by_filing_status.other[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2026-01-01": "Infinity", - "2024-01-01": 6210, - "2023-01-01": 6000, - "2015-01-01": 6000 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.rates.by_filing_status.other[2]": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.rates.by_filing_status.other[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ia.tax.income.rates.by_filing_status.other[2].rate": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.rates.by_filing_status.other[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.057, - "2015-01-01": 0.057 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.rates.by_filing_status.other[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.rates.by_filing_status.other[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": "Infinity", - "2024-01-01": 31050, - "2023-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.rates.by_filing_status.other[3]": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.rates.by_filing_status.other[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ia.tax.income.rates.by_filing_status.other[3].rate": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.rates.by_filing_status.other[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.06, - "2015-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.rates.by_filing_status.other[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.rates.by_filing_status.other[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": "Infinity", - "2023-01-01": 75000, - "2015-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.rates.by_filing_status.other[4]": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.rates.by_filing_status.other[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ia.tax.income.rates.by_filing_status.other[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.rates.by_filing_status.other[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.rates.by_filing_status.active": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.rates.by_filing_status.active", - "description": "Iowa applies a new income tax rate structure if this is true.", - "label": "Iowa post 2023 income tax structure applies", - "unit": "bool", - "period": "year", - "values": { - "2023-01-01": true, - "2020-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.rates.by_filing_status.joint": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.rates.by_filing_status.joint", - "description": "Iowa levies income taxes at these rates for all joint filers post 2023.", - "label": "Iowa joint filers income tax rates and brackets post 2023" - }, - "gov.states.ia.tax.income.rates.by_filing_status.joint[0]": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.rates.by_filing_status.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ia.tax.income.rates.by_filing_status.joint[0].rate": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.rates.by_filing_status.joint[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2026-01-01": 0.039, - "2023-01-01": 0.044, - "2015-01-01": 0.044 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.rates.by_filing_status.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.rates.by_filing_status.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.rates.by_filing_status.joint[1]": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.rates.by_filing_status.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ia.tax.income.rates.by_filing_status.joint[1].rate": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.rates.by_filing_status.joint[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.0482, - "2015-01-01": 0.0482 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.rates.by_filing_status.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.rates.by_filing_status.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2026-01-01": "Infinity", - "2024-01-01": 12420, - "2023-01-01": 12000, - "2015-01-01": 12000 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.rates.by_filing_status.joint[2]": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.rates.by_filing_status.joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ia.tax.income.rates.by_filing_status.joint[2].rate": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.rates.by_filing_status.joint[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.057, - "2015-01-01": 0.057 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.rates.by_filing_status.joint[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.rates.by_filing_status.joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": "Infinity", - "2024-01-01": 62100, - "2023-01-01": 60000, - "2015-01-01": 60000 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.rates.by_filing_status.joint[3]": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.rates.by_filing_status.joint[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ia.tax.income.rates.by_filing_status.joint[3].rate": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.rates.by_filing_status.joint[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.06, - "2015-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.rates.by_filing_status.joint[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.rates.by_filing_status.joint[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": "Infinity", - "2023-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.rates.by_filing_status.joint[4]": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.rates.by_filing_status.joint[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ia.tax.income.rates.by_filing_status.joint[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.rates.by_filing_status.joint[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.rates.combined": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.rates.combined", - "description": "Iowa levies income taxes at these rates for all filers pre 2023.", - "label": "Iowa income tax rates and brackets for all filers" - }, - "gov.states.ia.tax.income.rates.combined[0]": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.rates.combined[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.ia.tax.income.rates.combined[0].rate": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.rates.combined[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0033, - "2015-01-01": 0.0033 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.rates.combined[0].threshold": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.rates.combined[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.rates.combined[1]": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.rates.combined[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.ia.tax.income.rates.combined[1].rate": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.rates.combined[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0067, - "2015-01-01": 0.0067 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.rates.combined[1].threshold": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.rates.combined[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 1743, - "2021-01-01": 1676, - "2015-01-01": 1676 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.rates.combined[2]": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.rates.combined[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.ia.tax.income.rates.combined[2].rate": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.rates.combined[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0225, - "2015-01-01": 0.0225 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.rates.combined[2].threshold": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.rates.combined[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 3486, - "2021-01-01": 3352, - "2015-01-01": 3352 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.rates.combined[3]": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.rates.combined[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.ia.tax.income.rates.combined[3].rate": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.rates.combined[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0414, - "2015-01-01": 0.0414 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.rates.combined[3].threshold": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.rates.combined[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 6972, - "2021-01-01": 6704, - "2015-01-01": 6704 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.rates.combined[4]": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.rates.combined[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.ia.tax.income.rates.combined[4].rate": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.rates.combined[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0563, - "2015-01-01": 0.0563 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.rates.combined[4].threshold": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.rates.combined[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 15687, - "2021-01-01": 15084, - "2015-01-01": 15084 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.rates.combined[5]": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.rates.combined[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.ia.tax.income.rates.combined[5].rate": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.rates.combined[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0596, - "2015-01-01": 0.0596 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.rates.combined[5].threshold": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.rates.combined[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 26145, - "2021-01-01": 25140, - "2015-01-01": 25140 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.rates.combined[6]": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.rates.combined[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.ia.tax.income.rates.combined[6].rate": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.rates.combined[6].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0625, - "2015-01-01": 0.0625 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.rates.combined[6].threshold": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.rates.combined[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 34860, - "2021-01-01": 33520, - "2015-01-01": 33520 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.rates.combined[7]": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.rates.combined[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.ia.tax.income.rates.combined[7].rate": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.rates.combined[7].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0744, - "2015-01-01": 0.0744 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.rates.combined[7].threshold": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.rates.combined[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 52290, - "2021-01-01": 50280, - "2015-01-01": 50280 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.rates.combined[8]": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.rates.combined[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.ia.tax.income.rates.combined[8].rate": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.rates.combined[8].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.0853, - "2015-01-01": 0.0853 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.rates.combined[8].threshold": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.rates.combined[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 78435, - "2021-01-01": 75420, - "2015-01-01": 75420 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.married_filing_separately_on_same_return": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.married_filing_separately_on_same_return", - "description": null, - "label": "married filing separately on same return", - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.married_filing_separately_on_same_return.availability": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.married_filing_separately_on_same_return.availability", - "description": "Iowa allows married couples to file separately on the same tax return if this is true.", - "label": "Iowa married filing separately on the same return availability", - "unit": "bool", - "period": "year", - "values": { - "2023-01-01": false, - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.alternate_tax": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.alternate_tax", - "description": null, - "label": "alternate tax", - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.alternate_tax.elderly_age": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.alternate_tax.elderly_age", - "description": "Iowa allows an alternate tax for non-single filing units where the deduction varies depending on whether head or spouse age is at least this age.", - "label": "Iowa alternate tax age threshold that determines deduction amount", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.alternate_tax.rate": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.alternate_tax.rate", - "description": "Iowa allows an alternate tax for non-single filing units that has this flat tax rate.", - "label": "Iowa alternate tax rate", - "unit": "/1", - "period": "year", - "values": { - "2024-01-01": 0.057, - "2023-01-01": 0.06, - "2021-01-01": 0.0853, - "2015-01-01": 0.0853 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.alternate_tax.deduction": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.alternate_tax.deduction", - "description": null, - "label": "deduction", - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.alternate_tax.deduction.nonelderly": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.alternate_tax.deduction.nonelderly", - "description": "Iowa has a alternate tax with this deduction against modified income for tax units without an elderly head or spouse.", - "label": "Iowa deduction used in tax alternate tax calculations for nonelderly", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 13500, - "2015-01-01": 13500 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.alternate_tax.deduction.elderly": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.alternate_tax.deduction.elderly", - "description": "Iowa has a alternate tax with this deduction against modified income for tax units with elderly head or spouse.", - "label": "Iowa deduction used in tax alternate tax calculations for elderly", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 32000, - "2015-01-01": 32000 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.income_adjustments": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.income_adjustments", - "description": null, - "label": "income adjustments", - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.income_adjustments.sources": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.income_adjustments.sources", - "description": "Iowa subtracts these sources from gross income.", - "label": "Iowa gross income adjustments sources", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": [ - "traditional_ira_contributions", - "self_employment_tax_ald_person", - "alimony_expense", - "ia_pension_exclusion" - ], - "2015-01-01": [ - "traditional_ira_contributions", - "self_employment_tax_ald_person", - "alimony_expense", - "ia_pension_exclusion" - ] - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.tax_exempt": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.tax_exempt", - "description": null, - "label": "tax exempt", - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.tax_exempt.elderly_age": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.tax_exempt.elderly_age", - "description": "Iowa considers tax units with head or spouse this age or older to be elderly in exempt from income taxation calculations.", - "label": "Iowa elderly age threshold used in tax exemption calculations", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.tax_exempt.income_limit": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.tax_exempt.income_limit", - "description": null, - "label": "income limit", - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.tax_exempt.income_limit.other_elderly": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.tax_exempt.income_limit.other_elderly", - "description": "Iowa considers tax units other than singles with modified net income no greater than this limit to be exempt from income taxation.", - "label": "Iowa tax exemption income limit for elderly nonsingle tax units", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 32000, - "2015-01-01": 32000 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.tax_exempt.income_limit.single_nonelderly": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.tax_exempt.income_limit.single_nonelderly", - "description": "Iowa considers single tax units with modified net income no greater than this limit to be exempt from income taxation.", - "label": "Iowa tax exemption income limit for nonelderly single tax units", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 9000, - "2015-01-01": 9000 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.tax_exempt.income_limit.other_nonelderly": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.tax_exempt.income_limit.other_nonelderly", - "description": "Iowa considers tax units other than singles with modified net income no greater than this limit to be exempt from income taxation.", - "label": "Iowa tax exemption income limit for nonelderly nonsingle tax units", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 13500, - "2015-01-01": 13500 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.tax_exempt.income_limit.single_elderly": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.tax_exempt.income_limit.single_elderly", - "description": "Iowa considers single tax units with modified net income no greater than this limit to be exempt from income taxation.", - "label": "Iowa tax exemption income limit for nonelderly single tax units", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 24000, - "2015-01-01": 24000 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.deductions": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.deductions", - "description": null, - "label": "deductions", - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.deductions.sources": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.deductions.sources", - "description": "Iowa allows these deductions against net income to reach taxable income.", - "label": "Iowa deductions against net income to reach taxable income", - "unit": "list", - "period": null, - "values": { - "2024-01-01": ["ia_qbi_deduction", "ia_basic_deduction"], - "2021-01-01": ["ia_fedtax_deduction", "ia_qbi_deduction", "ia_basic_deduction"], - "2015-01-01": ["ia_fedtax_deduction", "ia_qbi_deduction", "ia_basic_deduction"] - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.deductions.itemized": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.deductions.itemized", - "description": null, - "label": "itemized", - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.deductions.itemized.applies_federal": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.deductions.itemized.applies_federal", - "description": "Iowa applies the federal itemized deduction if this is true.", - "label": "Iowa federal itemized deduction applies", - "unit": "bool", - "period": "year", - "values": { - "2023-01-01": true, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.deductions.standard": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.deductions.standard", - "description": null, - "label": "standard", - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.deductions.standard.applies_federal": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.deductions.standard.applies_federal", - "description": "Iowa applies the federal standard deduction if this is true.", - "label": "Iowa federal standard deduction applies", - "unit": "bool", - "period": "year", - "values": { - "2023-01-01": true, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.deductions.standard.amount": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.deductions.standard.amount", - "description": "Iowa allows this standard deduction amount.", - "label": "Iowa standard deduction amount", - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.deductions.standard.amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.deductions.standard.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2022-01-01": 5450, - "2021-01-01": 5240, - "2015-01-01": 5240 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.deductions.standard.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.deductions.standard.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2022-01-01": 5450, - "2021-01-01": 5240, - "2015-01-01": 5240 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.deductions.standard.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.deductions.standard.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 5450, - "2021-01-01": 5240, - "2015-01-01": 5240 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.deductions.standard.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.deductions.standard.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 2210, - "2021-01-01": 2130, - "2015-01-01": 2130 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.deductions.standard.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.deductions.standard.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 2210, - "2021-01-01": 2130, - "2015-01-01": 2130 - }, - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.deductions.qualified_business_income": { - "type": "parameterNode", - "parameter": "gov.states.ia.tax.income.deductions.qualified_business_income", - "description": null, - "label": "qualified business income", - "economy": true, - "household": true - }, - "gov.states.ia.tax.income.deductions.qualified_business_income.fraction": { - "type": "parameter", - "parameter": "gov.states.ia.tax.income.deductions.qualified_business_income.fraction", - "description": "Iowa allows a deduction of this fraction of the federal qualified business income deduction (QBID).", - "label": "Iowa federal QBID fraction", - "unit": "/1", - "period": "year", - "values": { - "2022-01-01": 0.75, - "2021-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.az": { - "type": "parameterNode", - "parameter": "gov.states.az", - "description": null, - "label": "Arizona", - "economy": true, - "household": true - }, - "gov.states.az.tax": { - "type": "parameterNode", - "parameter": "gov.states.az.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.states.az.tax.income": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits", - "description": null, - "label": "credits", - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.dependent_credit": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.dependent_credit", - "description": null, - "label": "dependent credit", - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.dependent_credit.reduction": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.dependent_credit.reduction", - "description": null, - "label": "reduction", - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.dependent_credit.reduction.increment": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.dependent_credit.reduction.increment", - "description": "Arizona reduces the dependent tax credit amount in these increments of federal adjusted gross income.", - "label": "Arizona dependent tax credit reduction increment", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.dependent_credit.reduction.start": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.dependent_credit.reduction.start", - "description": "Arizona phases the dependent tax credit out for filers with adjusted gross income above this threshold.", - "label": "Arizona dependent tax credit phase out start", - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.dependent_credit.reduction.start.SINGLE": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.dependent_credit.reduction.start.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 200000, - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.dependent_credit.reduction.start.JOINT": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.dependent_credit.reduction.start.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 400000, - "2015-01-01": 400000 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.dependent_credit.reduction.start.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.dependent_credit.reduction.start.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 200000, - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.dependent_credit.reduction.start.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.dependent_credit.reduction.start.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 200000, - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.dependent_credit.reduction.start.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.dependent_credit.reduction.start.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 200000, - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.dependent_credit.reduction.percentage": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.dependent_credit.reduction.percentage", - "description": "Arizona reduces the dependent tax credit amount by this percentage based on the federal adjusted gross income increments.", - "label": "Arizona dependent tax credit reduction percentage", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.dependent_credit.amount": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.dependent_credit.amount", - "description": "Arizona allows this base amount under the dependent tax credit, based on the dependent age.", - "label": "Arizona dependent tax credit amount" - }, - "gov.states.az.tax.income.credits.dependent_credit.amount[0]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.dependent_credit.amount[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.az.tax.income.credits.dependent_credit.amount[0].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.dependent_credit.amount[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.dependent_credit.amount[0].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.dependent_credit.amount[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 100, - "2015-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.dependent_credit.amount[1]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.dependent_credit.amount[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.az.tax.income.credits.dependent_credit.amount[1].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.dependent_credit.amount[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 17, - "2015-01-01": 17 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.dependent_credit.amount[1].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.dependent_credit.amount[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 25, - "2015-01-01": 25 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.refundable": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.refundable", - "description": "Arizona refundable tax credits.", - "label": "Arizona refundable tax credits", - "unit": "list", - "period": "year", - "values": { - "2019-01-01": ["az_increased_excise_tax_credit", "az_property_tax_credit"], - "2015-01-01": ["az_increased_excise_tax_credit", "az_property_tax_credit"] - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.charitable_contribution": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.charitable_contribution", - "description": null, - "label": "charitable contribution", - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.charitable_contribution.ceiling": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.charitable_contribution.ceiling", - "description": null, - "label": "ceiling", - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.charitable_contribution.ceiling.qualifying_organization": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.charitable_contribution.ceiling.qualifying_organization", - "description": "Arizona caps its credit for contributions to Arizona-based organizations at this amount.", - "label": "Arizona charitable contribution credit cap", - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.charitable_contribution.ceiling.qualifying_organization.JOINT": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.charitable_contribution.ceiling.qualifying_organization.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 1169, - "2034-01-01": 1146, - "2033-01-01": 1124, - "2032-01-01": 1102, - "2031-01-01": 1081, - "2030-01-01": 1060, - "2029-01-01": 1039, - "2028-01-01": 1019, - "2027-01-01": 998, - "2026-01-01": 974, - "2025-01-01": 959, - "2024-01-01": 938, - "2023-01-01": 841, - "2022-01-01": 800, - "2021-01-01": 800, - "2015-01-01": 800 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.charitable_contribution.ceiling.qualifying_organization.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.charitable_contribution.ceiling.qualifying_organization.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 586, - "2034-01-01": 574, - "2033-01-01": 563, - "2032-01-01": 552, - "2031-01-01": 542, - "2030-01-01": 531, - "2029-01-01": 521, - "2028-01-01": 511, - "2027-01-01": 500, - "2026-01-01": 488, - "2025-01-01": 481, - "2024-01-01": 470, - "2023-01-01": 421, - "2022-01-01": 400, - "2021-01-01": 400, - "2015-01-01": 400 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.charitable_contribution.ceiling.qualifying_organization.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.charitable_contribution.ceiling.qualifying_organization.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 586, - "2034-01-01": 574, - "2033-01-01": 563, - "2032-01-01": 552, - "2031-01-01": 542, - "2030-01-01": 531, - "2029-01-01": 521, - "2028-01-01": 511, - "2027-01-01": 500, - "2026-01-01": 488, - "2025-01-01": 481, - "2024-01-01": 470, - "2023-01-01": 421, - "2022-01-01": 400, - "2021-01-01": 400, - "2015-01-01": 400 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.charitable_contribution.ceiling.qualifying_organization.SINGLE": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.charitable_contribution.ceiling.qualifying_organization.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 586, - "2034-01-01": 574, - "2033-01-01": 563, - "2032-01-01": 552, - "2031-01-01": 542, - "2030-01-01": 531, - "2029-01-01": 521, - "2028-01-01": 511, - "2027-01-01": 500, - "2026-01-01": 488, - "2025-01-01": 481, - "2024-01-01": 470, - "2023-01-01": 421, - "2022-01-01": 400, - "2021-01-01": 400, - "2015-01-01": 400 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.charitable_contribution.ceiling.qualifying_organization.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.charitable_contribution.ceiling.qualifying_organization.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 586, - "2034-01-01": 574, - "2033-01-01": 563, - "2032-01-01": 552, - "2031-01-01": 542, - "2030-01-01": 531, - "2029-01-01": 521, - "2028-01-01": 511, - "2027-01-01": 500, - "2026-01-01": 488, - "2025-01-01": 481, - "2024-01-01": 470, - "2023-01-01": 421, - "2022-01-01": 400, - "2021-01-01": 400, - "2015-01-01": 400 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.charitable_contribution.ceiling.qualifying_foster": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.charitable_contribution.ceiling.qualifying_foster", - "description": "Arizona caps the credit for contributions to a qualifying foster care charitable organization at this amount.", - "label": "Arizona credit for contributions to foster organizations cap", - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.charitable_contribution.ceiling.qualifying_foster.JOINT": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.charitable_contribution.ceiling.qualifying_foster.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 1461, - "2034-01-01": 1433, - "2033-01-01": 1405, - "2032-01-01": 1378, - "2031-01-01": 1351, - "2030-01-01": 1325, - "2029-01-01": 1299, - "2028-01-01": 1274, - "2027-01-01": 1248, - "2026-01-01": 1218, - "2025-01-01": 1200, - "2024-01-01": 1173, - "2023-01-01": 1051, - "2022-01-01": 1000, - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.charitable_contribution.ceiling.qualifying_foster.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.charitable_contribution.ceiling.qualifying_foster.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 731, - "2034-01-01": 717, - "2033-01-01": 703, - "2032-01-01": 690, - "2031-01-01": 676, - "2030-01-01": 663, - "2029-01-01": 650, - "2028-01-01": 638, - "2027-01-01": 625, - "2026-01-01": 610, - "2025-01-01": 601, - "2024-01-01": 587, - "2023-01-01": 526, - "2022-01-01": 500, - "2021-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.charitable_contribution.ceiling.qualifying_foster.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.charitable_contribution.ceiling.qualifying_foster.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 731, - "2034-01-01": 717, - "2033-01-01": 703, - "2032-01-01": 690, - "2031-01-01": 676, - "2030-01-01": 663, - "2029-01-01": 650, - "2028-01-01": 638, - "2027-01-01": 625, - "2026-01-01": 610, - "2025-01-01": 601, - "2024-01-01": 587, - "2023-01-01": 526, - "2022-01-01": 500, - "2021-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.charitable_contribution.ceiling.qualifying_foster.SINGLE": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.charitable_contribution.ceiling.qualifying_foster.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 731, - "2034-01-01": 717, - "2033-01-01": 703, - "2032-01-01": 690, - "2031-01-01": 676, - "2030-01-01": 663, - "2029-01-01": 650, - "2028-01-01": 638, - "2027-01-01": 625, - "2026-01-01": 610, - "2025-01-01": 601, - "2024-01-01": 587, - "2023-01-01": 526, - "2022-01-01": 500, - "2021-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.charitable_contribution.ceiling.qualifying_foster.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.charitable_contribution.ceiling.qualifying_foster.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 731, - "2034-01-01": 717, - "2033-01-01": 703, - "2032-01-01": 690, - "2031-01-01": 676, - "2030-01-01": 663, - "2029-01-01": 650, - "2028-01-01": 638, - "2027-01-01": 625, - "2026-01-01": 610, - "2025-01-01": 601, - "2024-01-01": 587, - "2023-01-01": 526, - "2022-01-01": 500, - "2021-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax", - "description": null, - "label": "property tax", - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.income_sources": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.income_sources", - "description": "Arizona accounts for the following income sources for the property tax credit.", - "label": "Arizona property tax credit income sources", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": [ - "capital_gains_excluded_from_taxable_income", - "tax_exempt_interest_income", - "public_pension_income", - "az_agi" - ], - "2015-01-01": [ - "capital_gains_excluded_from_taxable_income", - "tax_exempt_interest_income", - "public_pension_income", - "az_agi" - ] - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating", - "description": "Arizona provides this property tax credit amount for filers cohabitating with other people, based on income.", - "label": "Arizona property tax credit cohabitating amount" - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[0]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[0].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[0].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 502, - "2015-01-01": 502 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[1]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[1].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 2500, - "2015-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[1].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 479, - "2015-01-01": 479 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[2]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[2].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 2650, - "2015-01-01": 2650 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[2].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[2].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 457, - "2015-01-01": 457 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[3]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[3].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 2800, - "2015-01-01": 2800 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[3].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[3].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 435, - "2015-01-01": 435 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[4]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[4].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 2950, - "2015-01-01": 2950 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[4].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[4].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 412, - "2015-01-01": 412 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[5]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[5].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 3100, - "2015-01-01": 3100 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[5].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[5].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 390, - "2015-01-01": 390 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[6]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[6].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 3250, - "2015-01-01": 3250 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[6].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[6].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 368, - "2015-01-01": 368 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[7]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[7].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 3400, - "2015-01-01": 3400 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[7].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[7].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 345, - "2015-01-01": 345 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[8]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[8].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 3550, - "2015-01-01": 3550 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[8].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[8].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 323, - "2015-01-01": 323 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[9]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[9].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 3700, - "2015-01-01": 3700 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[9].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[9].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 301, - "2015-01-01": 301 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[10]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[10]", - "description": null, - "label": "bracket 11" - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[10].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[10].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 3850, - "2015-01-01": 3850 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[10].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[10].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 279, - "2015-01-01": 279 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[11]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[11]", - "description": null, - "label": "bracket 12" - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[11].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[11].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 4000, - "2015-01-01": 4000 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[11].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[11].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 256, - "2015-01-01": 256 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[12]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[12]", - "description": null, - "label": "bracket 13" - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[12].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[12].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 4150, - "2015-01-01": 4150 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[12].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[12].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 234, - "2015-01-01": 234 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[13]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[13]", - "description": null, - "label": "bracket 14" - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[13].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[13].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 4300, - "2015-01-01": 4300 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[13].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[13].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 212, - "2015-01-01": 212 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[14]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[14]", - "description": null, - "label": "bracket 15" - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[14].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[14].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 4450, - "2015-01-01": 4450 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[14].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[14].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 189, - "2015-01-01": 189 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[15]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[15]", - "description": null, - "label": "bracket 16" - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[15].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[15].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 4600, - "2015-01-01": 4600 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[15].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[15].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 167, - "2015-01-01": 167 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[16]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[16]", - "description": null, - "label": "bracket 17" - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[16].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[16].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 4750, - "2015-01-01": 4750 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[16].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[16].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 145, - "2015-01-01": 145 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[17]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[17]", - "description": null, - "label": "bracket 18" - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[17].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[17].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 4900, - "2015-01-01": 4900 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[17].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[17].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 123, - "2015-01-01": 123 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[18]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[18]", - "description": null, - "label": "bracket 19" - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[18].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[18].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 5050, - "2015-01-01": 5050 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[18].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[18].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 100, - "2015-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[19]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[19]", - "description": null, - "label": "bracket 20" - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[19].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[19].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 5200, - "2015-01-01": 5200 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[19].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[19].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 78, - "2015-01-01": 78 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[20]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[20]", - "description": null, - "label": "bracket 21" - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[20].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[20].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 5350, - "2015-01-01": 5350 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[20].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[20].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 56, - "2015-01-01": 56 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[21]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[21]", - "description": null, - "label": "bracket 22" - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[21].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[21].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 5500, - "2015-01-01": 5500 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[21].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.cohabitating[21].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone", - "description": "Arizona provides this property tax credit amount for filers living alone, based on income.", - "label": "Arizona property tax credit living alone amount" - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[0]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[0].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[0].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 502, - "2015-01-01": 502 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[1]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[1].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 1751, - "2015-01-01": 1751 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[1].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 479, - "2015-01-01": 479 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[2]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[2].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 1851, - "2015-01-01": 1851 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[2].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[2].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 457, - "2015-01-01": 457 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[3]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[3].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 1951, - "2015-01-01": 1951 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[3].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[3].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 435, - "2015-01-01": 435 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[4]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[4].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 2051, - "2015-01-01": 2051 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[4].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[4].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 412, - "2015-01-01": 412 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[5]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[5].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 2151, - "2015-01-01": 2151 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[5].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[5].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 390, - "2015-01-01": 390 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[6]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[6].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 2251, - "2015-01-01": 2251 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[6].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[6].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 368, - "2015-01-01": 368 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[7]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[7].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 2351, - "2015-01-01": 2351 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[7].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[7].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 345, - "2015-01-01": 345 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[8]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[8].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 2451, - "2015-01-01": 2451 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[8].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[8].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 323, - "2015-01-01": 323 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[9]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[9].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 2551, - "2015-01-01": 2551 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[9].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[9].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 301, - "2015-01-01": 301 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[10]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[10]", - "description": null, - "label": "bracket 11" - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[10].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[10].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 2651, - "2015-01-01": 2651 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[10].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[10].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 279, - "2015-01-01": 279 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[11]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[11]", - "description": null, - "label": "bracket 12" - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[11].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[11].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 2751, - "2015-01-01": 2751 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[11].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[11].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 256, - "2015-01-01": 256 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[12]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[12]", - "description": null, - "label": "bracket 13" - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[12].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[12].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 2851, - "2015-01-01": 2851 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[12].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[12].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 234, - "2015-01-01": 234 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[13]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[13]", - "description": null, - "label": "bracket 14" - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[13].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[13].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 2951, - "2015-01-01": 2951 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[13].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[13].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 212, - "2015-01-01": 212 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[14]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[14]", - "description": null, - "label": "bracket 15" - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[14].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[14].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 3051, - "2015-01-01": 3051 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[14].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[14].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 189, - "2015-01-01": 189 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[15]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[15]", - "description": null, - "label": "bracket 16" - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[15].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[15].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 3151, - "2015-01-01": 3151 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[15].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[15].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 167, - "2015-01-01": 167 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[16]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[16]", - "description": null, - "label": "bracket 17" - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[16].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[16].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 3251, - "2015-01-01": 3251 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[16].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[16].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 145, - "2015-01-01": 145 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[17]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[17]", - "description": null, - "label": "bracket 18" - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[17].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[17].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 3351, - "2015-01-01": 3351 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[17].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[17].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 123, - "2015-01-01": 123 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[18]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[18]", - "description": null, - "label": "bracket 19" - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[18].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[18].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 3451, - "2015-01-01": 3451 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[18].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[18].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 100, - "2015-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[19]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[19]", - "description": null, - "label": "bracket 20" - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[19].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[19].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 3551, - "2015-01-01": 3551 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[19].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[19].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 78, - "2015-01-01": 78 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[20]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[20]", - "description": null, - "label": "bracket 21" - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[20].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[20].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 3651, - "2015-01-01": 3651 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[20].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[20].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 56, - "2015-01-01": 56 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[21]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[21]", - "description": null, - "label": "bracket 22" - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[21].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[21].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 3751, - "2015-01-01": 3751 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.amount.living_alone[21].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.amount.living_alone[21].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.property_tax.age_threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.property_tax.age_threshold", - "description": "Arizona limits the property tax credit to filers of this age or older.", - "label": "Arizona property tax credit age threshold", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.non_refundable": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.non_refundable", - "description": "Arizona non-refundable tax credits.", - "label": "Arizona non-refundable tax credits", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": [ - "az_charitable_contributions_credit", - "az_dependent_tax_credit", - "az_family_tax_credit" - ], - "2019-01-01": ["az_dependent_tax_credit", "az_family_tax_credit"], - "2015-01-01": ["az_dependent_tax_credit", "az_family_tax_credit"] - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.family_tax_credits": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.family_tax_credits", - "description": null, - "label": "family tax credits", - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.family_tax_credits.amount": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.family_tax_credits.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.family_tax_credits.amount.cap": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.family_tax_credits.amount.cap", - "description": "Arizona caps its family tax credit at this total amount, depending on filing status.", - "label": "Arizona family tax credit maximum amount", - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.family_tax_credits.amount.cap.SINGLE": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.family_tax_credits.amount.cap.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 120, - "2015-01-01": 120 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.family_tax_credits.amount.cap.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.family_tax_credits.amount.cap.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 240, - "2015-01-01": 240 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.family_tax_credits.amount.cap.JOINT": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.family_tax_credits.amount.cap.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 240, - "2015-01-01": 240 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.family_tax_credits.amount.cap.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.family_tax_credits.amount.cap.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 240, - "2015-01-01": 240 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.family_tax_credits.amount.cap.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.family_tax_credits.amount.cap.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 120, - "2015-01-01": 120 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.family_tax_credits.amount.per_person": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.family_tax_credits.amount.per_person", - "description": "Arizona provides the following family income tax credit amount per person.", - "label": "Arizona Family Income Tax Credit amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 40, - "2015-01-01": 40 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.family_tax_credits.income_limit": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.family_tax_credits.income_limit", - "description": null, - "label": "income limit", - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.family_tax_credits.income_limit.head_of_household": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.family_tax_credits.income_limit.head_of_household", - "description": "Arizona qualifies head of household with income below this amount for the family tax credit.", - "label": "Arizona family tax credit head of household maximum income" - }, - "gov.states.az.tax.income.credits.family_tax_credits.income_limit.head_of_household[0]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.family_tax_credits.income_limit.head_of_household[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.az.tax.income.credits.family_tax_credits.income_limit.head_of_household[0].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.family_tax_credits.income_limit.head_of_household[0].threshold", - "description": null, - "label": "threshold", - "unit": "dependent", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.family_tax_credits.income_limit.head_of_household[0].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.family_tax_credits.income_limit.head_of_household[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.family_tax_credits.income_limit.head_of_household[1]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.family_tax_credits.income_limit.head_of_household[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.az.tax.income.credits.family_tax_credits.income_limit.head_of_household[1].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.family_tax_credits.income_limit.head_of_household[1].threshold", - "description": null, - "label": "threshold", - "unit": "dependent", - "period": null, - "values": { - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.family_tax_credits.income_limit.head_of_household[1].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.family_tax_credits.income_limit.head_of_household[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 20135, - "2015-01-01": 20135 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.family_tax_credits.income_limit.head_of_household[2]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.family_tax_credits.income_limit.head_of_household[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.az.tax.income.credits.family_tax_credits.income_limit.head_of_household[2].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.family_tax_credits.income_limit.head_of_household[2].threshold", - "description": null, - "label": "threshold", - "unit": "dependent", - "period": null, - "values": { - "2021-01-01": 3, - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.family_tax_credits.income_limit.head_of_household[2].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.family_tax_credits.income_limit.head_of_household[2].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 23800, - "2015-01-01": 23800 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.family_tax_credits.income_limit.head_of_household[3]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.family_tax_credits.income_limit.head_of_household[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.az.tax.income.credits.family_tax_credits.income_limit.head_of_household[3].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.family_tax_credits.income_limit.head_of_household[3].threshold", - "description": null, - "label": "threshold", - "unit": "dependent", - "period": null, - "values": { - "2021-01-01": 4, - "2015-01-01": 4 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.family_tax_credits.income_limit.head_of_household[3].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.family_tax_credits.income_limit.head_of_household[3].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 25200, - "2015-01-01": 25200 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.family_tax_credits.income_limit.head_of_household[4]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.family_tax_credits.income_limit.head_of_household[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.az.tax.income.credits.family_tax_credits.income_limit.head_of_household[4].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.family_tax_credits.income_limit.head_of_household[4].threshold", - "description": null, - "label": "threshold", - "unit": "dependent", - "period": null, - "values": { - "2021-01-01": 5, - "2015-01-01": 5 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.family_tax_credits.income_limit.head_of_household[4].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.family_tax_credits.income_limit.head_of_household[4].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 26575, - "2015-01-01": 26575 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.family_tax_credits.income_limit.separate": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.family_tax_credits.income_limit.separate", - "description": "Arizona qualifies separate filers with income below this amount for the family tax credit.", - "label": "Arizona family tax credit separate maximum income", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.family_tax_credits.income_limit.joint": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.family_tax_credits.income_limit.joint", - "description": "Arizona qualifies joint filers with income below this amount for the family tax credit.", - "label": "Arizona family tax credit joint maximum income" - }, - "gov.states.az.tax.income.credits.family_tax_credits.income_limit.joint[0]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.family_tax_credits.income_limit.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.az.tax.income.credits.family_tax_credits.income_limit.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.family_tax_credits.income_limit.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "dependent", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.family_tax_credits.income_limit.joint[0].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.family_tax_credits.income_limit.joint[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.family_tax_credits.income_limit.joint[1]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.family_tax_credits.income_limit.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.az.tax.income.credits.family_tax_credits.income_limit.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.family_tax_credits.income_limit.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "dependent", - "period": null, - "values": { - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.family_tax_credits.income_limit.joint[1].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.family_tax_credits.income_limit.joint[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 23600, - "2015-01-01": 23600 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.family_tax_credits.income_limit.joint[2]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.family_tax_credits.income_limit.joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.az.tax.income.credits.family_tax_credits.income_limit.joint[2].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.family_tax_credits.income_limit.joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "dependent", - "period": null, - "values": { - "2021-01-01": 3, - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.family_tax_credits.income_limit.joint[2].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.family_tax_credits.income_limit.joint[2].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 27300, - "2015-01-01": 27300 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.family_tax_credits.income_limit.joint[3]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.family_tax_credits.income_limit.joint[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.az.tax.income.credits.family_tax_credits.income_limit.joint[3].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.family_tax_credits.income_limit.joint[3].threshold", - "description": null, - "label": "threshold", - "unit": "dependent", - "period": null, - "values": { - "2021-01-01": 4, - "2015-01-01": 4 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.family_tax_credits.income_limit.joint[3].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.family_tax_credits.income_limit.joint[3].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 31000, - "2015-01-01": 31000 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.family_tax_credits.income_limit.single": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.family_tax_credits.income_limit.single", - "description": "Arizona qualifies single filers with income below this amount for the family tax credit.", - "label": "Arizona family tax credit single maximum income", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.increased_excise": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.increased_excise", - "description": null, - "label": "increased excise", - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.increased_excise.income_threshold": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.credits.increased_excise.income_threshold", - "description": "Arizona limits its Increased Excise Tax Credit to filers with federal adjusted gross income below the following amount, based on filing status.", - "label": "Arizona Increased Excise Tax Credit income threshold", - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.increased_excise.income_threshold.SINGLE": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.increased_excise.income_threshold.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2001-01-01": 12500 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.increased_excise.income_threshold.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.increased_excise.income_threshold.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2001-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.increased_excise.income_threshold.JOINT": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.increased_excise.income_threshold.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2001-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.increased_excise.income_threshold.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.increased_excise.income_threshold.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2001-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.increased_excise.income_threshold.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.increased_excise.income_threshold.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2001-01-01": 12500 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.increased_excise.max_amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.increased_excise.max_amount", - "description": "Arizona allows for the following increase excise tax credit maximum amount.", - "label": "Arizona increase excise tax credit max amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2001-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.credits.increased_excise.amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.credits.increased_excise.amount", - "description": "Arizona provides the following amount per personal or dependent exemption under the Increased Excise Tax Credit.", - "label": "Arizona increase excise tax credit amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2001-01-01": 25 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.exemptions": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.exemptions", - "description": null, - "label": "exemptions", - "economy": true, - "household": true - }, - "gov.states.az.tax.income.exemptions.parent_grandparent": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.exemptions.parent_grandparent", - "description": null, - "label": "parent grandparent", - "economy": true, - "household": true - }, - "gov.states.az.tax.income.exemptions.parent_grandparent.cost_rate": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.exemptions.parent_grandparent.cost_rate", - "description": "Arizona allows for the parent and grandparent exemptions if the filer paid care and support costs over this percentage of total costs.", - "label": "Arizona parents and grandparents exemption cost rate", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.exemptions.parent_grandparent.min_age": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.exemptions.parent_grandparent.min_age", - "description": "Arizona extends the parents and grandparents exemption to filers this age or older.", - "label": "Arizona parents and grandparents exemption age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.exemptions.parent_grandparent.amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.exemptions.parent_grandparent.amount", - "description": "Arizona provides an exemption of this amount per qualifying parent and grandparent.", - "label": "Arizona parents and grandparents exemption amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.exemptions.stillborn": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.exemptions.stillborn", - "description": "Arizona provides an exemption of this amount for each stillborn child.", - "label": "Arizona stillborn exemption amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 2300, - "2015-01-01": 2300 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.exemptions.blind": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.exemptions.blind", - "description": "Arizona provides an exemption of this amount per blind filer or spouse.", - "label": "Arizona blind exemption amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 1500, - "2015-01-01": 1500 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.exemptions.aged": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.exemptions.aged", - "description": "Arizona provides this aged exemption amount, based on age.", - "label": "Arizona aged exemption amount" - }, - "gov.states.az.tax.income.exemptions.aged[0]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.exemptions.aged[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.az.tax.income.exemptions.aged[0].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.exemptions.aged[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.exemptions.aged[0].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.exemptions.aged[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.exemptions.aged[1]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.exemptions.aged[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.az.tax.income.exemptions.aged[1].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.exemptions.aged[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.exemptions.aged[1].amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.exemptions.aged[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 2100 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.subtractions": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.subtractions", - "description": null, - "label": "subtractions", - "economy": true, - "household": true - }, - "gov.states.az.tax.income.subtractions.college_savings": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.subtractions.college_savings", - "description": null, - "label": "college savings", - "economy": true, - "household": true - }, - "gov.states.az.tax.income.subtractions.college_savings.cap": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.subtractions.college_savings.cap", - "description": "Arizona subtracts 529 contributions up to this amount, per beneficiary, from adjusted gross income, depending on filing status.", - "label": "Arizona college savings plan subtraction cap", - "economy": true, - "household": true - }, - "gov.states.az.tax.income.subtractions.college_savings.cap.SINGLE": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.subtractions.college_savings.cap.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 2000, - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.subtractions.college_savings.cap.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.subtractions.college_savings.cap.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 2000, - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.subtractions.college_savings.cap.JOINT": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.subtractions.college_savings.cap.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 4000, - "2015-01-01": 4000 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.subtractions.college_savings.cap.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.subtractions.college_savings.cap.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 4000, - "2015-01-01": 4000 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.subtractions.military_retirement": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.subtractions.military_retirement", - "description": null, - "label": "military retirement", - "economy": true, - "household": true - }, - "gov.states.az.tax.income.subtractions.military_retirement.max_amount": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.subtractions.military_retirement.max_amount", - "description": "Arizona caps the military retirement subtraction at this amount for each eligible individual.", - "label": "Arizona military retirement subtraction max amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": "Infinity", - "2019-01-01": 3500, - "2018-01-01": 2500, - "2015-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.subtractions.capital_gains": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.subtractions.capital_gains", - "description": null, - "label": "capital gains", - "economy": true, - "household": true - }, - "gov.states.az.tax.income.subtractions.capital_gains.rate": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.subtractions.capital_gains.rate", - "description": "Arizona subtracts this fraction of long term capital gains from adjusted gross income.", - "label": "Arizona long-term net capital gains subtraction rate", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.25, - "2014-01-01": 0.2, - "2013-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.subtractions.subtractions": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.subtractions.subtractions", - "description": "Arizona counts these sources as subtractions.", - "label": "Arizona adjusted gross income subtractions", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": [ - "us_govt_interest", - "az_public_pension_exclusion", - "az_long_term_capital_gains_subtraction", - "az_military_retirement_subtraction", - "taxable_social_security", - "military_service_income", - "az_529_college_savings_plan_subtraction" - ], - "2015-01-01": [ - "us_govt_interest", - "az_public_pension_exclusion", - "az_long_term_capital_gains_subtraction", - "az_military_retirement_subtraction", - "taxable_social_security", - "military_service_income", - "az_529_college_savings_plan_subtraction" - ] - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.subtractions.pension": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.subtractions.pension", - "description": null, - "label": "pension", - "economy": true, - "household": true - }, - "gov.states.az.tax.income.subtractions.pension.public_pension_cap": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.subtractions.pension.public_pension_cap", - "description": "Arizona caps the pension exclusion at this amount.", - "label": "Arizona pension exclusion cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 2500, - "2015-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.main": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.main", - "description": null, - "label": "main", - "economy": true, - "household": true - }, - "gov.states.az.tax.income.main.head_of_household": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.main.head_of_household", - "description": "Arizona taxes the personal income for head of household filers at this rate.", - "label": "Arizona income tax rate head of household filers" - }, - "gov.states.az.tax.income.main.head_of_household[0]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.main.head_of_household[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.az.tax.income.main.head_of_household[0].rate": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.main.head_of_household[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.025, - "2022-01-01": 0.0255, - "2019-01-01": 0.0259, - "2015-01-01": 0.0259 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.main.head_of_household[0].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.main.head_of_household[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2019-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.main.head_of_household[1]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.main.head_of_household[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.az.tax.income.main.head_of_household[1].rate": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.main.head_of_household[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.025, - "2022-01-01": 0.0298, - "2019-01-01": 0.0334, - "2015-01-01": 0.0334 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.main.head_of_household[1].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.main.head_of_household[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 57305, - "2021-01-01": 55615, - "2019-01-01": 53000, - "2015-01-01": 53000 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.main.head_of_household[2]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.main.head_of_household[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.az.tax.income.main.head_of_household[2].rate": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.main.head_of_household[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.025, - "2019-01-01": 0.0417, - "2015-01-01": 0.0417 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.main.head_of_household[2].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.main.head_of_household[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": "Infinity", - "2021-01-01": 111229, - "2019-01-01": 106000, - "2015-01-01": 106000 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.main.head_of_household[3]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.main.head_of_household[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.az.tax.income.main.head_of_household[3].rate": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.main.head_of_household[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.025, - "2019-01-01": 0.045, - "2015-01-01": 0.045 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.main.head_of_household[3].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.main.head_of_household[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": "Infinity", - "2021-01-01": 333684, - "2019-01-01": 318000, - "2015-01-01": 318000 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.main.separate": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.main.separate", - "description": "Arizona taxes the personal income for separate filers at this rate.", - "label": "Arizona income tax rate separate filers" - }, - "gov.states.az.tax.income.main.separate[0]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.main.separate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.az.tax.income.main.separate[0].rate": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.main.separate[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.025, - "2022-01-01": 0.0255, - "2019-01-01": 0.0259, - "2015-01-01": 0.0259 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.main.separate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.main.separate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2019-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.main.separate[1]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.main.separate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.az.tax.income.main.separate[1].rate": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.main.separate[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.025, - "2022-01-01": 0.0298, - "2019-01-01": 0.0334, - "2015-01-01": 0.0334 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.main.separate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.main.separate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 28653, - "2021-01-01": 27808, - "2019-01-01": 26500, - "2015-01-01": 26500 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.main.separate[2]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.main.separate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.az.tax.income.main.separate[2].rate": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.main.separate[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.025, - "2019-01-01": 0.0417, - "2015-01-01": 0.0417 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.main.separate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.main.separate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": "Infinity", - "2021-01-01": 55615, - "2019-01-01": 53000, - "2015-01-01": 53000 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.main.separate[3]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.main.separate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.az.tax.income.main.separate[3].rate": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.main.separate[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.025, - "2019-01-01": 0.045, - "2015-01-01": 0.045 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.main.separate[3].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.main.separate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": "Infinity", - "2021-01-01": 166843, - "2019-01-01": 159000, - "2015-01-01": 159000 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.main.joint": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.main.joint", - "description": "Arizona taxes the personal income for joint filers at this rate.", - "label": "Arizona income tax rate joint filers" - }, - "gov.states.az.tax.income.main.joint[0]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.main.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.az.tax.income.main.joint[0].rate": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.main.joint[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.025, - "2022-01-01": 0.0255, - "2019-01-01": 0.0259, - "2015-01-01": 0.0259 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.main.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.main.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2019-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.main.joint[1]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.main.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.az.tax.income.main.joint[1].rate": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.main.joint[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.025, - "2022-01-01": 0.0298, - "2019-01-01": 0.0334, - "2015-01-01": 0.0334 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.main.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.main.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 57305, - "2021-01-01": 55615, - "2019-01-01": 53000, - "2015-01-01": 53000 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.main.joint[2]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.main.joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.az.tax.income.main.joint[2].rate": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.main.joint[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.025, - "2019-01-01": 0.0417, - "2015-01-01": 0.0417 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.main.joint[2].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.main.joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": "Infinity", - "2021-01-01": 111229, - "2019-01-01": 106000, - "2015-01-01": 106000 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.main.joint[3]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.main.joint[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.az.tax.income.main.joint[3].rate": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.main.joint[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.025, - "2019-01-01": 0.045, - "2015-01-01": 0.045 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.main.joint[3].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.main.joint[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": "Infinity", - "2021-01-01": 333684, - "2019-01-01": 318000, - "2015-01-01": 318000 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.main.single": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.main.single", - "description": "Arizona taxes the personal income for single filers at this rate.", - "label": "Arizona income tax rate single filers" - }, - "gov.states.az.tax.income.main.single[0]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.main.single[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.az.tax.income.main.single[0].rate": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.main.single[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.025, - "2022-01-01": 0.0255, - "2019-01-01": 0.0259, - "2015-01-01": 0.0259 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.main.single[0].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.main.single[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2019-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.main.single[1]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.main.single[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.az.tax.income.main.single[1].rate": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.main.single[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.025, - "2022-01-01": 0.0298, - "2019-01-01": 0.0334, - "2015-01-01": 0.0334 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.main.single[1].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.main.single[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": 28653, - "2021-01-01": 27808, - "2019-01-01": 26500, - "2015-01-01": 26500 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.main.single[2]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.main.single[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.az.tax.income.main.single[2].rate": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.main.single[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.025, - "2019-01-01": 0.0417, - "2015-01-01": 0.0417 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.main.single[2].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.main.single[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": "Infinity", - "2021-01-01": 55615, - "2019-01-01": 53000, - "2015-01-01": 53000 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.main.single[3]": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.main.single[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.az.tax.income.main.single[3].rate": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.main.single[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.025, - "2019-01-01": 0.045, - "2015-01-01": 0.045 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.main.single[3].threshold": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.main.single[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2022-01-01": "Infinity", - "2021-01-01": 166843, - "2019-01-01": 159000, - "2015-01-01": 159000 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.deductions": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.deductions", - "description": null, - "label": "deductions", - "economy": true, - "household": true - }, - "gov.states.az.tax.income.deductions.standard": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.deductions.standard", - "description": null, - "label": "standard", - "economy": true, - "household": true - }, - "gov.states.az.tax.income.deductions.standard.increased": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.deductions.standard.increased", - "description": null, - "label": "increased", - "economy": true, - "household": true - }, - "gov.states.az.tax.income.deductions.standard.increased.rate": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.deductions.standard.increased.rate", - "description": "Arizona increases the standard deduction by this fraction of charitable contributions that would have been allowed if the taxpayer elected to claim itemized deductions.", - "label": "Arizona increased standard deduction for charitable contributions rate", - "unit": "currency-USD", - "period": "year", - "values": { - "2024-01-01": 0.33, - "2023-01-01": 0.31, - "2022-01-01": 0.27, - "2019-01-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.deductions.standard.amount": { - "type": "parameterNode", - "parameter": "gov.states.az.tax.income.deductions.standard.amount", - "description": "Arizona provides filers a standard deduction of this amount, depending on their filing status.", - "label": "Arizona standard deduction", - "economy": true, - "household": true - }, - "gov.states.az.tax.income.deductions.standard.amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.deductions.standard.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 29200, - "2023-01-01": 27700, - "2022-01-01": 25900, - "2021-01-01": 25100, - "2015-01-01": 25100 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.deductions.standard.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.deductions.standard.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2024-01-01": 21900, - "2023-01-01": 20800, - "2022-01-01": 19400, - "2021-01-01": 18800, - "2015-01-01": 18800 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.deductions.standard.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.deductions.standard.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 14600, - "2023-01-01": 13850, - "2022-01-01": 12950, - "2021-01-01": 12550, - "2015-01-01": 12550 - }, - "economy": true, - "household": true - }, - "gov.states.az.tax.income.deductions.standard.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.az.tax.income.deductions.standard.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 14600, - "2023-01-01": 13850, - "2022-01-01": 12950, - "2021-01-01": 12550, - "2015-01-01": 12550 - }, - "economy": true, - "household": true - }, - "gov.states.az.hhs": { - "type": "parameterNode", - "parameter": "gov.states.az.hhs", - "description": null, - "label": "hhs", - "economy": true, - "household": true - }, - "gov.states.az.hhs.tanf": { - "type": "parameterNode", - "parameter": "gov.states.az.hhs.tanf", - "description": null, - "label": "tanf", - "economy": true, - "household": true - }, - "gov.states.az.hhs.tanf.eligibility": { - "type": "parameterNode", - "parameter": "gov.states.az.hhs.tanf.eligibility", - "description": null, - "label": "eligibility", - "economy": true, - "household": true - }, - "gov.states.az.hhs.tanf.eligibility.age_threshold": { - "type": "parameterNode", - "parameter": "gov.states.az.hhs.tanf.eligibility.age_threshold", - "description": null, - "label": "age threshold", - "economy": true, - "household": true - }, - "gov.states.az.hhs.tanf.eligibility.age_threshold.student": { - "type": "parameter", - "parameter": "gov.states.az.hhs.tanf.eligibility.age_threshold.student", - "description": "Arizona limits the cash assistance to filers with student children below this age threshold.", - "label": "Arizona cash assistance student age threshold", - "unit": "year", - "period": "year", - "values": { - "2023-01-01": 19, - "2015-01-01": 19 - }, - "economy": true, - "household": true - }, - "gov.states.az.hhs.tanf.eligibility.age_threshold.non_student": { - "type": "parameter", - "parameter": "gov.states.az.hhs.tanf.eligibility.age_threshold.non_student", - "description": "Arizona limits the cash assistance to filers with non-student children below this age threshold.", - "label": "Arizona cash assistance non-student age threshold", - "unit": "year", - "period": "year", - "values": { - "2023-01-01": 18, - "2015-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.states.mt": { - "type": "parameterNode", - "parameter": "gov.states.mt", - "description": null, - "label": "Montana", - "economy": true, - "household": true - }, - "gov.states.mt.tax": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.states.mt.tax.income": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.credits", - "description": null, - "label": "credits", - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.eitc": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.credits.eitc", - "description": null, - "label": "Earned Income Tax Credit", - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.eitc.match": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.eitc.match", - "description": "Montana matches this fraction of the federal earned income tax credit.", - "label": "Montana EITC match", - "unit": "year", - "period": "year", - "values": { - "2026-01-01": 0.2, - "2024-01-01": 0.1, - "2021-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.refundable": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.refundable", - "description": "Montana provides these refundable tax credits.", - "label": "Montana refundable tax credits", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": ["mt_eitc"], - "2015-01-01": ["mt_eitc"] - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.capital_gain": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.credits.capital_gain", - "description": null, - "label": "capital gain", - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.capital_gain.percentage": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.capital_gain.percentage", - "description": "Montana provides a credit for this fraction of the filer's net capital gains.", - "label": "Montana capital gains credit rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.02, - "2015-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter", - "description": null, - "label": "elderly homeowner or renter", - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.multiplier": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.multiplier", - "description": "Montana multiplies the capped elderly homeowner or renter credit amount by this multiplier.", - "label": "Montana elderly homeowner or renter credit multiplier" - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.multiplier[0]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.multiplier[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.multiplier[0].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.multiplier[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2009-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.multiplier[0].amount": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.multiplier[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2009-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.multiplier[1]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.multiplier[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.multiplier[1].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.multiplier[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2009-01-01": 35000 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.multiplier[1].amount": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.multiplier[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2009-01-01": 0.4 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.multiplier[2]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.multiplier[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.multiplier[2].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.multiplier[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2009-01-01": 37501 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.multiplier[2].amount": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.multiplier[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2009-01-01": 0.3 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.multiplier[3]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.multiplier[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.multiplier[3].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.multiplier[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2009-01-01": 40001 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.multiplier[3].amount": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.multiplier[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2009-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.multiplier[4]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.multiplier[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.multiplier[4].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.multiplier[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2009-01-01": 42501 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.multiplier[4].amount": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.multiplier[4].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2009-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.multiplier[5]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.multiplier[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.multiplier[5].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.multiplier[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2009-01-01": 45000 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.multiplier[5].amount": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.multiplier[5].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2009-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.gross_income_sources": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.gross_income_sources", - "description": "Montana gross income sources for the calculation of the elderly homeowner or renter credit.", - "label": "Montana elderly homeowner or renter credit gross income sources", - "unit": "list", - "period": "year", - "values": { - "2009-01-01": [ - "adjusted_gross_income_person", - "tax_exempt_interest_income", - "taxable_ira_distributions", - "tax_exempt_ira_distributions", - "pension_income", - "mt_refundable_credits_before_renter_credit" - ] - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income", - "description": null, - "label": "net household income", - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.standard_exclusion": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.standard_exclusion", - "description": "Montana excludes this amount of net household income when computing net household income for elderly homeowner or renter credit.", - "label": "Montana elderly homeowner or renter credit net household income standard exclusion", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 12600, - "2009-01-01": 6300 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate", - "description": "Montana reduces net household income by this fraction under the elderly homeowner or renter credit, depending on gross household income reduced by the standard exclusion.", - "label": "Montana elderly or homeowner credit household income reduction rate" - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[0]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2009-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[0].amount": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2009-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[1]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2009-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[1].amount": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2009-01-01": 0.006 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[2]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2009-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[2].amount": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2009-01-01": 0.016 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[3]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[3].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2009-01-01": 4000 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[3].amount": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2009-01-01": 0.024 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[4]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[4].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2009-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[4].amount": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[4].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2009-01-01": 0.028 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[5]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[5].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2009-01-01": 6000 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[5].amount": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[5].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2009-01-01": 0.032 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[6]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[6].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2009-01-01": 7000 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[6].amount": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[6].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2009-01-01": 0.035 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[7]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[7].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2009-01-01": 8000 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[7].amount": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[7].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2009-01-01": 0.039 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[8]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[8].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2009-01-01": 9000 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[8].amount": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[8].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2009-01-01": 0.042 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[9]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[9].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2009-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[9].amount": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[9].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2009-01-01": 0.045 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[10]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[10]", - "description": null, - "label": "bracket 11" - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[10].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[10].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2009-01-01": 11000 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[10].amount": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[10].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2009-01-01": 0.048 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[11]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[11]", - "description": null, - "label": "bracket 12" - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[11].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[11].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2009-01-01": 12000 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[11].amount": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.net_household_income.reduction_rate[11].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2009-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.age_threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.age_threshold", - "description": "Montana limits the elderly homeowner or renter credit to filers of this age or older.", - "label": "Montana elderly homeowner or renter credit age threshold", - "unit": "year", - "period": "year", - "values": { - "2009-01-01": 62 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.rent_equivalent_tax_rate": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.rent_equivalent_tax_rate", - "description": "Montana counts this fraction of rent as property tax for its elderly homeowner or renter credit.", - "label": "Montana elderly homeowner or renter credit rent equivalent rate", - "unit": "currency-USD", - "period": "year", - "values": { - "2009-01-01": 0.15 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.cap": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.elderly_homeowner_or_renter.cap", - "description": "Montana caps the pre-multiplier amount of the elderly homeowner or renter credit to this amount.", - "label": "Montana elderly homeowner or renter credit pre multiplier cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2022-01-01": 1150, - "2009-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.non_refundable": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.non_refundable", - "description": "Montana provides the following non-refundable tax credits.", - "label": "Montana non-refundable tax credits", - "unit": "list", - "period": "year", - "values": { - "2024-01-01": [], - "2023-01-01": [ - "mt_capital_gain_credit", - "mt_income_tax_rebate", - "mt_property_tax_rebate" - ], - "2022-01-01": ["mt_capital_gain_credit", "mt_property_tax_rebate"], - "2021-01-01": ["mt_capital_gain_credit"], - "2015-01-01": ["mt_capital_gain_credit"] - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.rebate": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.credits.rebate", - "description": null, - "label": "rebate", - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.rebate.property": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.credits.rebate.property", - "description": null, - "label": "property", - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.rebate.property.amount": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.rebate.property.amount", - "description": "Montana provides the following property tax rebate amount.", - "label": "Montana property tax rebate amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2022-01-01": 675, - "2015-01-01": 675 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.rebate.amount": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.credits.rebate.amount", - "description": "Montana provides the following income tax rebate amount, based on filing status.", - "label": "Montana income tax rebate amount", - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.rebate.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.rebate.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2023-01-01": 1250, - "2015-01-01": 1250 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.rebate.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.rebate.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2023-01-01": 1250, - "2015-01-01": 1250 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.rebate.amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.rebate.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2023-01-01": 2500, - "2015-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.rebate.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.rebate.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2023-01-01": 2500, - "2015-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.credits.rebate.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.credits.rebate.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2023-01-01": 1250, - "2015-01-01": 1250 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.married_filing_separately_on_same_return_allowed": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.married_filing_separately_on_same_return_allowed", - "description": "Montana allows married couples to file separately on the same tax return, if this is true.", - "label": "Montana married filing separately on same return allowed", - "unit": "bool", - "period": "year", - "values": { - "2024-01-01": false, - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.exemptions": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.exemptions", - "description": null, - "label": "exemptions", - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.exemptions.interest": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.exemptions.interest", - "description": null, - "label": "interest", - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.exemptions.interest.age_threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.exemptions.interest.age_threshold", - "description": "Montana partially excludes interest from adjusted gross income of filers and spouses at or above this age threshold.", - "label": "Montana senior interest income exclusion age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.exemptions.interest.cap": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.exemptions.interest.cap", - "description": "Montana caps the interest income exclusion to this amount, based on filing status.", - "label": "Montana senior interest income exclusion cap", - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.exemptions.interest.cap.SINGLE": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.exemptions.interest.cap.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 800, - "2015-01-01": 800 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.exemptions.interest.cap.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.exemptions.interest.cap.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 800, - "2015-01-01": 800 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.exemptions.interest.cap.JOINT": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.exemptions.interest.cap.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 1600, - "2015-01-01": 1600 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.exemptions.interest.cap.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.exemptions.interest.cap.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 800, - "2015-01-01": 800 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.exemptions.interest.cap.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.exemptions.interest.cap.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 800, - "2015-01-01": 800 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.exemptions.age_threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.exemptions.age_threshold", - "description": "Montana provides an additional tax exemption to filers this age or older.", - "label": "Montana income tax aged exemption age threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.exemptions.amount": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.exemptions.amount", - "description": "Montana deducts this amount for each eligible exemption when computing taxable income.", - "label": "Montana income tax exemption amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2023-01-01": 2960, - "2022-01-01": 2710, - "2021-01-01": 2580, - "2015-01-01": 2580 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.exemptions.applies": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.exemptions.applies", - "description": "Montana applies a state-specific exemption structure if this is true.", - "label": "Montana income tax exemptions applies", - "unit": "bool", - "period": "year", - "values": { - "2024-01-01": false, - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.subtractions": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.subtractions", - "description": null, - "label": "subtractions", - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.subtractions.tuition": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.subtractions.tuition", - "description": null, - "label": "tuition", - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.subtractions.tuition.cap": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.subtractions.tuition.cap", - "description": "Montana caps the tuition subtraction at this maximum amount.", - "label": "Montana tuition subtraction cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 3000, - "2015-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.subtractions.disability_income": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.subtractions.disability_income", - "description": null, - "label": "disability income", - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.subtractions.disability_income.age_threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.subtractions.disability_income.age_threshold", - "description": "Montana limits the disability income exclusion to filers under this age.", - "label": "Montana disability income exclusion age limit", - "unit": "year", - "period": "year", - "values": { - "2010-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.subtractions.disability_income.cap": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.subtractions.disability_income.cap", - "description": "Montana caps the individual disability income exclusion at this amount.", - "label": "Montana disability income exclusion cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 5200, - "2015-01-01": 5200 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.subtractions.old_age": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.subtractions.old_age", - "description": null, - "label": "old age", - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.subtractions.old_age.amount": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.subtractions.old_age.amount", - "description": "Montana provides an old age subtraction of this amount for each taxpayer, based on age.", - "label": "Montana old age subtraction amount" - }, - "gov.states.mt.tax.income.subtractions.old_age.amount[0]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.subtractions.old_age.amount[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.mt.tax.income.subtractions.old_age.amount[0].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.subtractions.old_age.amount[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2024-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.subtractions.old_age.amount[0].amount": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.subtractions.old_age.amount[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.subtractions.old_age.amount[1]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.subtractions.old_age.amount[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.mt.tax.income.subtractions.old_age.amount[1].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.subtractions.old_age.amount[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2024-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.subtractions.old_age.amount[1].amount": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.subtractions.old_age.amount[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 5500, - "2015-01-01": 5500 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.subtractions.subtractions": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.subtractions.subtractions", - "description": "Montana counts these sources as subtractions.", - "label": "Montana adjusted gross income subtractions", - "unit": "list", - "period": "year", - "values": { - "2024-01-01": [ - "mt_interest_exemption_person", - "mt_tuition_subtraction_person", - "mt_old_age_subtraction", - "mt_disability_income_exclusion_person" - ], - "2021-01-01": [ - "mt_interest_exemption_person", - "us_govt_interest", - "mt_tuition_subtraction_person", - "mt_disability_income_exclusion_person" - ], - "2010-01-01": ["mt_disability_income_exclusion_person"] - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.additions": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.additions", - "description": null, - "label": "additions", - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.additions.additions": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.additions.additions", - "description": "Montana counts these sources as additions.", - "label": "Montana adjusted gross income additions", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": [], - "2015-01-01": [] - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.social_security": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.social_security", - "description": null, - "label": "social security", - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.social_security.amount": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.social_security.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.social_security.amount.upper": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.social_security.amount.upper", - "description": "Montana uses this amount when calculating the taxable social security benefits, based on filing status.", - "label": "Montana social security benefits amount", - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.social_security.amount.upper.SINGLE": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.social_security.amount.upper.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 34000, - "2015-01-01": 34000 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.social_security.amount.upper.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.social_security.amount.upper.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 34000, - "2015-01-01": 34000 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.social_security.amount.upper.JOINT": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.social_security.amount.upper.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 44000, - "2015-01-01": 44000 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.social_security.amount.upper.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.social_security.amount.upper.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 22000, - "2015-01-01": 22000 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.social_security.amount.upper.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.social_security.amount.upper.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 34000, - "2015-01-01": 34000 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.social_security.amount.lower": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.social_security.amount.lower", - "description": "Montana uses this amount when calculating the taxable social security benefits, based on filing status.", - "label": "Montana social security benefits amount", - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.social_security.amount.lower.SINGLE": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.social_security.amount.lower.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.social_security.amount.lower.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.social_security.amount.lower.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.social_security.amount.lower.JOINT": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.social_security.amount.lower.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 32000, - "2015-01-01": 32000 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.social_security.amount.lower.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.social_security.amount.lower.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 16000, - "2015-01-01": 16000 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.social_security.amount.lower.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.social_security.amount.lower.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.social_security.applies": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.social_security.applies", - "description": "Montana increases state adjusted gross income by the federal taxable social security benefits excess over state taxable social security benefits, if this is true.", - "label": "Montana social security adjustment applies", - "unit": "bool", - "period": "year", - "values": { - "2024-01-01": false, - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main", - "description": null, - "label": "main", - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.head_of_household": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.head_of_household", - "description": "Montana taxes head of household filers at this rate structure.", - "label": "Montana income tax rates for head of household filers" - }, - "gov.states.mt.tax.income.main.head_of_household[0]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.head_of_household[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.mt.tax.income.main.head_of_household[0].rate": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.head_of_household[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.047, - "2021-01-01": 0.01, - "2015-01-01": 0.01 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.head_of_household[0].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.head_of_household[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.head_of_household[1]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.head_of_household[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.mt.tax.income.main.head_of_household[1].rate": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.head_of_household[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.054, - "2026-01-01": 0.0565, - "2024-01-01": 0.059, - "2021-01-01": 0.02, - "2015-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.head_of_household[1].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.head_of_household[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 114200, - "2034-01-01": 112000, - "2033-01-01": 109800, - "2032-01-01": 107700, - "2031-01-01": 105600, - "2030-01-01": 103500, - "2029-01-01": 101500, - "2028-01-01": 99500, - "2027-01-01": 97500, - "2026-01-01": 71250, - "2024-01-01": 30750, - "2023-01-01": 3600, - "2022-01-01": 3300, - "2021-01-01": 3100, - "2015-01-01": 3100 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.head_of_household[2]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.head_of_household[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.mt.tax.income.main.head_of_household[2].rate": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.head_of_household[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.059, - "2021-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.head_of_household[2].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.head_of_household[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": "Infinity", - "2023-01-01": 6300, - "2022-01-01": 5800, - "2021-01-01": 5500, - "2015-01-01": 5500 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.head_of_household[3]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.head_of_household[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.mt.tax.income.main.head_of_household[3].rate": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.head_of_household[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.059, - "2021-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.head_of_household[3].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.head_of_household[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": "Infinity", - "2023-01-01": 9700, - "2022-01-01": 8900, - "2021-01-01": 8400, - "2015-01-01": 8400 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.head_of_household[4]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.head_of_household[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.mt.tax.income.main.head_of_household[4].rate": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.head_of_household[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.059, - "2021-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.head_of_household[4].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.head_of_household[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": "Infinity", - "2023-01-01": 13000, - "2022-01-01": 12000, - "2021-01-01": 11400, - "2015-01-01": 11400 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.head_of_household[5]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.head_of_household[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.mt.tax.income.main.head_of_household[5].rate": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.head_of_household[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.059, - "2021-01-01": 0.06, - "2015-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.head_of_household[5].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.head_of_household[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": "Infinity", - "2023-01-01": 16800, - "2022-01-01": 15400, - "2021-01-01": 14600, - "2015-01-01": 14600 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.head_of_household[6]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.head_of_household[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.mt.tax.income.main.head_of_household[6].rate": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.head_of_household[6].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.059, - "2022-01-01": 0.0675, - "2021-01-01": 0.069, - "2015-01-01": 0.069 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.head_of_household[6].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.head_of_household[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": "Infinity", - "2023-01-01": 21600, - "2022-01-01": 19800, - "2021-01-01": 18800, - "2015-01-01": 18800 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.separate": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.separate", - "description": "Montana taxes separate filers at this rate structure.", - "label": "Montana income tax rate separate filers" - }, - "gov.states.mt.tax.income.main.separate[0]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.separate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.mt.tax.income.main.separate[0].rate": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.separate[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.047, - "2021-01-01": 0.01, - "2015-01-01": 0.01 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.separate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.separate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.separate[1]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.separate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.mt.tax.income.main.separate[1].rate": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.separate[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.054, - "2026-01-01": 0.0565, - "2024-01-01": 0.059, - "2021-01-01": 0.02, - "2015-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.separate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.separate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 76100, - "2034-01-01": 74600, - "2033-01-01": 73200, - "2032-01-01": 71800, - "2031-01-01": 70400, - "2030-01-01": 69000, - "2029-01-01": 67700, - "2028-01-01": 66300, - "2027-01-01": 65000, - "2026-01-01": 47500, - "2024-01-01": 20500, - "2023-01-01": 3600, - "2022-01-01": 3300, - "2021-01-01": 3100, - "2015-01-01": 3100 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.separate[2]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.separate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.mt.tax.income.main.separate[2].rate": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.separate[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.059, - "2021-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.separate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.separate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": "Infinity", - "2023-01-01": 6300, - "2022-01-01": 5800, - "2021-01-01": 5500, - "2015-01-01": 5500 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.separate[3]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.separate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.mt.tax.income.main.separate[3].rate": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.separate[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.059, - "2021-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.separate[3].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.separate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": "Infinity", - "2023-01-01": 9700, - "2022-01-01": 8900, - "2021-01-01": 8400, - "2015-01-01": 8400 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.separate[4]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.separate[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.mt.tax.income.main.separate[4].rate": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.separate[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.059, - "2021-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.separate[4].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.separate[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": "Infinity", - "2023-01-01": 13000, - "2022-01-01": 12000, - "2021-01-01": 11400, - "2015-01-01": 11400 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.separate[5]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.separate[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.mt.tax.income.main.separate[5].rate": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.separate[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.059, - "2021-01-01": 0.06, - "2015-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.separate[5].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.separate[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": "Infinity", - "2023-01-01": 16800, - "2022-01-01": 15400, - "2021-01-01": 14600, - "2015-01-01": 14600 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.separate[6]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.separate[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.mt.tax.income.main.separate[6].rate": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.separate[6].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.059, - "2022-01-01": 0.0675, - "2021-01-01": 0.069, - "2015-01-01": 0.069 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.separate[6].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.separate[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": "Infinity", - "2023-01-01": 21600, - "2022-01-01": 19800, - "2021-01-01": 18800, - "2015-01-01": 18800 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.capital_gains": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.capital_gains", - "description": null, - "label": "capital gains", - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.capital_gains.rates": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.capital_gains.rates", - "description": null, - "label": "rates", - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.capital_gains.rates.main": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.capital_gains.rates.main", - "description": "Montana taxes net long-term capital gains at this rate when nonqualified income exceeds the threshold, based on filing status.", - "label": "Montana capital gains tax rate when nonqualified income exceeds threshold", - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.capital_gains.rates.main.JOINT": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.capital_gains.rates.main.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 0.041, - "2015-01-01": 0.041 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.capital_gains.rates.main.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.capital_gains.rates.main.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2024-01-01": 0.041, - "2015-01-01": 0.041 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.capital_gains.rates.main.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.capital_gains.rates.main.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 0.041, - "2015-01-01": 0.041 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.capital_gains.rates.main.SINGLE": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.capital_gains.rates.main.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 0.041, - "2015-01-01": 0.041 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.capital_gains.rates.main.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.capital_gains.rates.main.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 0.041, - "2015-01-01": 0.041 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.capital_gains.rates.head_of_household": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.capital_gains.rates.head_of_household", - "description": "Montana taxes the net long-term capital gains by the following marginal rates for head of household filers, according to the taxable income.", - "label": "Montana capital gains tax rates for head of household filers" - }, - "gov.states.mt.tax.income.main.capital_gains.rates.head_of_household[0]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.capital_gains.rates.head_of_household[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.mt.tax.income.main.capital_gains.rates.head_of_household[0].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.capital_gains.rates.head_of_household[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.capital_gains.rates.head_of_household[0].amount": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.capital_gains.rates.head_of_household[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.capital_gains.rates.head_of_household[1]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.capital_gains.rates.head_of_household[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.mt.tax.income.main.capital_gains.rates.head_of_household[1].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.capital_gains.rates.head_of_household[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 114200, - "2034-01-01": 112000, - "2033-01-01": 109800, - "2032-01-01": 107700, - "2031-01-01": 105600, - "2030-01-01": 103500, - "2029-01-01": 101500, - "2028-01-01": 99500, - "2027-01-01": 97500, - "2026-01-01": 71250, - "2024-01-01": 30750, - "2015-01-01": 30750 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.capital_gains.rates.head_of_household[1].amount": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.capital_gains.rates.head_of_household[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 0.041, - "2015-01-01": 0.041 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.capital_gains.rates.separate": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.capital_gains.rates.separate", - "description": "Montana taxes the net long-term capital gains by the following marginal rates for separate filers, according to the taxable income.", - "label": "Montana capital gains tax rates for separate filers" - }, - "gov.states.mt.tax.income.main.capital_gains.rates.separate[0]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.capital_gains.rates.separate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.mt.tax.income.main.capital_gains.rates.separate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.capital_gains.rates.separate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.capital_gains.rates.separate[0].amount": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.capital_gains.rates.separate[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.capital_gains.rates.separate[1]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.capital_gains.rates.separate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.mt.tax.income.main.capital_gains.rates.separate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.capital_gains.rates.separate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 76100, - "2034-01-01": 74600, - "2033-01-01": 73200, - "2032-01-01": 71800, - "2031-01-01": 70400, - "2030-01-01": 69000, - "2029-01-01": 67700, - "2028-01-01": 66300, - "2027-01-01": 65000, - "2026-01-01": 47500, - "2024-01-01": 20500, - "2015-01-01": 20500 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.capital_gains.rates.separate[1].amount": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.capital_gains.rates.separate[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 0.041, - "2015-01-01": 0.041 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.capital_gains.rates.joint": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.capital_gains.rates.joint", - "description": "Montana taxes the net long-term capital gains by the following marginal rates for joint filers, according to the taxable income.", - "label": "Montana capital gains tax rates for joint filers" - }, - "gov.states.mt.tax.income.main.capital_gains.rates.joint[0]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.capital_gains.rates.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.mt.tax.income.main.capital_gains.rates.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.capital_gains.rates.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.capital_gains.rates.joint[0].amount": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.capital_gains.rates.joint[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.capital_gains.rates.joint[1]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.capital_gains.rates.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.mt.tax.income.main.capital_gains.rates.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.capital_gains.rates.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 152200, - "2034-01-01": 149300, - "2033-01-01": 146400, - "2032-01-01": 143500, - "2031-01-01": 140800, - "2030-01-01": 138000, - "2029-01-01": 135300, - "2028-01-01": 132700, - "2027-01-01": 130000, - "2026-01-01": 95000, - "2024-01-01": 41000, - "2015-01-01": 41000 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.capital_gains.rates.joint[1].amount": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.capital_gains.rates.joint[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 0.041, - "2015-01-01": 0.041 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.capital_gains.rates.single": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.capital_gains.rates.single", - "description": "Montana taxes the net long-term capital gains by the following marginal rates for single filers, according to the taxable income.", - "label": "Montana capital gains tax rates for single filers" - }, - "gov.states.mt.tax.income.main.capital_gains.rates.single[0]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.capital_gains.rates.single[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.mt.tax.income.main.capital_gains.rates.single[0].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.capital_gains.rates.single[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.capital_gains.rates.single[0].amount": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.capital_gains.rates.single[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.capital_gains.rates.single[1]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.capital_gains.rates.single[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.mt.tax.income.main.capital_gains.rates.single[1].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.capital_gains.rates.single[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 76100, - "2034-01-01": 74600, - "2033-01-01": 73200, - "2032-01-01": 71800, - "2031-01-01": 70400, - "2030-01-01": 69000, - "2029-01-01": 67700, - "2028-01-01": 66300, - "2027-01-01": 65000, - "2026-01-01": 47500, - "2024-01-01": 20500, - "2015-01-01": 20500 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.capital_gains.rates.single[1].amount": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.capital_gains.rates.single[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 0.041, - "2015-01-01": 0.041 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.capital_gains.rates.surviving_spouse": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.capital_gains.rates.surviving_spouse", - "description": "Montana taxes the net long-term capital gains by the following marginal rates for surviving spouse filers, according to the taxable income.", - "label": "Montana capital gains tax rates for surviving spouse filers" - }, - "gov.states.mt.tax.income.main.capital_gains.rates.surviving_spouse[0]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.capital_gains.rates.surviving_spouse[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.mt.tax.income.main.capital_gains.rates.surviving_spouse[0].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.capital_gains.rates.surviving_spouse[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.capital_gains.rates.surviving_spouse[0].amount": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.capital_gains.rates.surviving_spouse[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.capital_gains.rates.surviving_spouse[1]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.capital_gains.rates.surviving_spouse[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.mt.tax.income.main.capital_gains.rates.surviving_spouse[1].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.capital_gains.rates.surviving_spouse[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 152200, - "2034-01-01": 149300, - "2033-01-01": 146400, - "2032-01-01": 143500, - "2031-01-01": 140800, - "2030-01-01": 138000, - "2029-01-01": 135300, - "2028-01-01": 132700, - "2027-01-01": 130000, - "2026-01-01": 95000, - "2024-01-01": 41000, - "2015-01-01": 41000 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.capital_gains.rates.surviving_spouse[1].amount": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.capital_gains.rates.surviving_spouse[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2024-01-01": 0.041, - "2015-01-01": 0.041 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.capital_gains.in_effect": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.capital_gains.in_effect", - "description": "Montana taxes capital gains at a separate tax rate from other income if this is true.", - "label": "Montana capital gains tax rate in effect", - "unit": "bool", - "period": "year", - "values": { - "2024-01-01": true, - "2021-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.capital_gains.threshold": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.capital_gains.threshold", - "description": "Montana taxes net long-term capital gains above this threshold by a higher rate, based on filing status.", - "label": "Montana capital gains tax threshold", - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.capital_gains.threshold.JOINT": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.capital_gains.threshold.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2024-01-01": 41000, - "2015-01-01": 41000 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.capital_gains.threshold.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.capital_gains.threshold.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2024-01-01": 30750, - "2015-01-01": 30750 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.capital_gains.threshold.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.capital_gains.threshold.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 41000, - "2015-01-01": 41000 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.capital_gains.threshold.SINGLE": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.capital_gains.threshold.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 20500, - "2015-01-01": 20500 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.capital_gains.threshold.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.capital_gains.threshold.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2024-01-01": 20500, - "2015-01-01": 20500 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.joint": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.joint", - "description": "Montana taxes joint filers at this rate structure.", - "label": "Montana income tax rate joint filers" - }, - "gov.states.mt.tax.income.main.joint[0]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.mt.tax.income.main.joint[0].rate": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.joint[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.047, - "2021-01-01": 0.01, - "2015-01-01": 0.01 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.joint[1]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.mt.tax.income.main.joint[1].rate": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.joint[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.054, - "2026-01-01": 0.0565, - "2024-01-01": 0.059, - "2021-01-01": 0.02, - "2015-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 152200, - "2034-01-01": 149300, - "2033-01-01": 146400, - "2032-01-01": 143500, - "2031-01-01": 140800, - "2030-01-01": 138000, - "2029-01-01": 135300, - "2028-01-01": 132700, - "2027-01-01": 130000, - "2026-01-01": 95000, - "2024-01-01": 41000, - "2023-01-01": 3600, - "2022-01-01": 3300, - "2021-01-01": 3100, - "2015-01-01": 3100 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.joint[2]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.mt.tax.income.main.joint[2].rate": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.joint[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.059, - "2021-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.joint[2].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": "Infinity", - "2023-01-01": 6300, - "2022-01-01": 5800, - "2021-01-01": 5500, - "2015-01-01": 5500 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.joint[3]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.joint[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.mt.tax.income.main.joint[3].rate": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.joint[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.059, - "2021-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.joint[3].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.joint[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": "Infinity", - "2023-01-01": 9700, - "2022-01-01": 8900, - "2021-01-01": 8400, - "2015-01-01": 8400 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.joint[4]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.joint[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.mt.tax.income.main.joint[4].rate": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.joint[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.059, - "2021-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.joint[4].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.joint[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": "Infinity", - "2023-01-01": 13000, - "2022-01-01": 12000, - "2021-01-01": 11400, - "2015-01-01": 11400 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.joint[5]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.joint[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.mt.tax.income.main.joint[5].rate": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.joint[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.059, - "2021-01-01": 0.06, - "2015-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.joint[5].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.joint[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": "Infinity", - "2023-01-01": 16800, - "2022-01-01": 15400, - "2021-01-01": 14600, - "2015-01-01": 14600 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.joint[6]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.joint[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.mt.tax.income.main.joint[6].rate": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.joint[6].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.059, - "2022-01-01": 0.0675, - "2021-01-01": 0.069, - "2015-01-01": 0.069 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.joint[6].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.joint[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": "Infinity", - "2023-01-01": 21600, - "2022-01-01": 19800, - "2021-01-01": 18800, - "2015-01-01": 18800 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.single": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.single", - "description": "Montana taxes single filers at this rate structure.", - "label": "Montana income tax rate single filers" - }, - "gov.states.mt.tax.income.main.single[0]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.single[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.mt.tax.income.main.single[0].rate": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.single[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.047, - "2021-01-01": 0.01, - "2015-01-01": 0.01 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.single[0].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.single[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.single[1]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.single[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.mt.tax.income.main.single[1].rate": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.single[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.054, - "2026-01-01": 0.0565, - "2024-01-01": 0.059, - "2021-01-01": 0.02, - "2015-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.single[1].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.single[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 76100, - "2034-01-01": 74600, - "2033-01-01": 73200, - "2032-01-01": 71800, - "2031-01-01": 70400, - "2030-01-01": 69000, - "2029-01-01": 67700, - "2028-01-01": 66300, - "2027-01-01": 65000, - "2026-01-01": 47500, - "2024-01-01": 20500, - "2023-01-01": 3600, - "2022-01-01": 3300, - "2021-01-01": 3100, - "2015-01-01": 3100 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.single[2]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.single[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.mt.tax.income.main.single[2].rate": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.single[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.059, - "2021-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.single[2].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.single[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": "Infinity", - "2023-01-01": 6300, - "2022-01-01": 5800, - "2021-01-01": 5500, - "2015-01-01": 5500 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.single[3]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.single[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.mt.tax.income.main.single[3].rate": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.single[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.059, - "2021-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.single[3].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.single[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": "Infinity", - "2023-01-01": 9700, - "2022-01-01": 8900, - "2021-01-01": 8400, - "2015-01-01": 8400 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.single[4]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.single[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.mt.tax.income.main.single[4].rate": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.single[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.059, - "2021-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.single[4].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.single[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": "Infinity", - "2023-01-01": 13000, - "2022-01-01": 12000, - "2021-01-01": 11400, - "2015-01-01": 11400 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.single[5]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.single[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.mt.tax.income.main.single[5].rate": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.single[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.059, - "2021-01-01": 0.06, - "2015-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.single[5].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.single[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": "Infinity", - "2023-01-01": 16800, - "2022-01-01": 15400, - "2021-01-01": 14600, - "2015-01-01": 14600 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.single[6]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.single[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.mt.tax.income.main.single[6].rate": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.single[6].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.059, - "2022-01-01": 0.0675, - "2021-01-01": 0.069, - "2015-01-01": 0.069 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.single[6].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.single[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": "Infinity", - "2023-01-01": 21600, - "2022-01-01": 19800, - "2021-01-01": 18800, - "2015-01-01": 18800 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.surviving_spouse": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.surviving_spouse", - "description": "Montana taxes surviving spouses at this rate structure.", - "label": "Montana income tax surviving spouses" - }, - "gov.states.mt.tax.income.main.surviving_spouse[0]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.surviving_spouse[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.mt.tax.income.main.surviving_spouse[0].rate": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.surviving_spouse[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.047, - "2021-01-01": 0.01, - "2015-01-01": 0.01 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.surviving_spouse[0].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.surviving_spouse[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.surviving_spouse[1]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.surviving_spouse[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.mt.tax.income.main.surviving_spouse[1].rate": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.surviving_spouse[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2027-01-01": 0.054, - "2026-01-01": 0.0565, - "2024-01-01": 0.059, - "2021-01-01": 0.02, - "2015-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.surviving_spouse[1].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.surviving_spouse[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 152200, - "2034-01-01": 149300, - "2033-01-01": 146400, - "2032-01-01": 143500, - "2031-01-01": 140800, - "2030-01-01": 138000, - "2029-01-01": 135300, - "2028-01-01": 132700, - "2027-01-01": 130000, - "2026-01-01": 95000, - "2024-01-01": 41000, - "2023-01-01": 3600, - "2022-01-01": 3300, - "2021-01-01": 3100, - "2015-01-01": 3100 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.surviving_spouse[2]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.surviving_spouse[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.mt.tax.income.main.surviving_spouse[2].rate": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.surviving_spouse[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.059, - "2021-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.surviving_spouse[2].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.surviving_spouse[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": "Infinity", - "2023-01-01": 6300, - "2022-01-01": 5800, - "2021-01-01": 5500, - "2015-01-01": 5500 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.surviving_spouse[3]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.surviving_spouse[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.mt.tax.income.main.surviving_spouse[3].rate": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.surviving_spouse[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.059, - "2021-01-01": 0.04, - "2015-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.surviving_spouse[3].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.surviving_spouse[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": "Infinity", - "2023-01-01": 9700, - "2022-01-01": 8900, - "2021-01-01": 8400, - "2015-01-01": 8400 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.surviving_spouse[4]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.surviving_spouse[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.mt.tax.income.main.surviving_spouse[4].rate": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.surviving_spouse[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.059, - "2021-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.surviving_spouse[4].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.surviving_spouse[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": "Infinity", - "2023-01-01": 13000, - "2022-01-01": 12000, - "2021-01-01": 11400, - "2015-01-01": 11400 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.surviving_spouse[5]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.surviving_spouse[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.mt.tax.income.main.surviving_spouse[5].rate": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.surviving_spouse[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.059, - "2021-01-01": 0.06, - "2015-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.surviving_spouse[5].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.surviving_spouse[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": "Infinity", - "2023-01-01": 16800, - "2022-01-01": 15400, - "2021-01-01": 14600, - "2015-01-01": 14600 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.surviving_spouse[6]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.main.surviving_spouse[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.mt.tax.income.main.surviving_spouse[6].rate": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.surviving_spouse[6].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2024-01-01": 0.059, - "2022-01-01": 0.0675, - "2021-01-01": 0.069, - "2015-01-01": 0.069 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.main.surviving_spouse[6].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.main.surviving_spouse[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2024-01-01": "Infinity", - "2023-01-01": 21600, - "2022-01-01": 19800, - "2021-01-01": 18800, - "2015-01-01": 18800 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.deductions": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.deductions", - "description": null, - "label": "deductions", - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.deductions.itemized": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.deductions.itemized", - "description": null, - "label": "itemized", - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.deductions.itemized.federal_income_tax": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.deductions.itemized.federal_income_tax", - "description": null, - "label": "federal income tax", - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.deductions.itemized.federal_income_tax.cap": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.deductions.itemized.federal_income_tax.cap", - "description": "Montana caps the federal income tax deduction to this amount, based on filing status.", - "label": "Montana federal income tax deduction cap", - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.deductions.itemized.federal_income_tax.cap.JOINT": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.deductions.itemized.federal_income_tax.cap.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.deductions.itemized.federal_income_tax.cap.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.deductions.itemized.federal_income_tax.cap.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.deductions.itemized.federal_income_tax.cap.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.deductions.itemized.federal_income_tax.cap.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.deductions.itemized.federal_income_tax.cap.SINGLE": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.deductions.itemized.federal_income_tax.cap.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.deductions.itemized.federal_income_tax.cap.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.deductions.itemized.federal_income_tax.cap.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.deductions.itemized.misc_deductions": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.deductions.itemized.misc_deductions", - "description": "Montana counts these sources as miscellaneous deductions.", - "label": "Montana miscellaneous deductions", - "unit": "list", - "period": "year", - "values": { - "2024-01-01": [], - "2021-01-01": ["mt_child_dependent_care_expense_deduction", "casualty_loss_deduction"], - "2015-01-01": ["mt_child_dependent_care_expense_deduction", "casualty_loss_deduction"] - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.deductions.standard": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.deductions.standard", - "description": null, - "label": "standard", - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.deductions.standard.state_specific_deduction_applies": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.deductions.standard.state_specific_deduction_applies", - "description": "Montana uses a state specific standard deduction in lieu of the federal standard deduction, if this is true.", - "label": "Montana state specific standard deduction applies", - "unit": "bool", - "period": "year", - "values": { - "2024-01-01": false, - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.deductions.standard.floor": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.deductions.standard.floor", - "description": "Montana provides a minimum standard deduction of this amount, based on filing status. Starting in 2024, Montana uses the federal standard deduction instead of this Montana-specific calculation.", - "label": "Montana minimum standard deduction", - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.deductions.standard.floor.JOINT": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.deductions.standard.floor.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2023-01-01": 4920, - "2022-01-01": 4520, - "2021-01-01": 4280, - "2015-01-01": 4280 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.deductions.standard.floor.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.deductions.standard.floor.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2023-01-01": 4920, - "2022-01-01": 4520, - "2021-01-01": 4280, - "2015-01-01": 4280 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.deductions.standard.floor.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.deductions.standard.floor.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2023-01-01": 2460, - "2022-01-01": 2260, - "2021-01-01": 2140, - "2015-01-01": 2140 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.deductions.standard.floor.SINGLE": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.deductions.standard.floor.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2023-01-01": 2460, - "2022-01-01": 2260, - "2021-01-01": 2140, - "2015-01-01": 2140 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.deductions.standard.floor.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.deductions.standard.floor.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2023-01-01": 2460, - "2022-01-01": 2260, - "2021-01-01": 2140, - "2015-01-01": 2140 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.deductions.standard.cap": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.deductions.standard.cap", - "description": "Montana provides this maximum standard deduction amount, based on filing status. Starting in 2024, Montana uses the federal standard deduction instead of this Montana-specific calculation.", - "label": "Montana standard deduction max amount", - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.deductions.standard.cap.JOINT": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.deductions.standard.cap.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2023-01-01": 11080, - "2022-01-01": 10180, - "2021-01-01": 9660, - "2015-01-01": 9660 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.deductions.standard.cap.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.deductions.standard.cap.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2023-01-01": 11080, - "2022-01-01": 10180, - "2021-01-01": 9660, - "2015-01-01": 9660 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.deductions.standard.cap.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.deductions.standard.cap.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2023-01-01": 5540, - "2022-01-01": 5090, - "2021-01-01": 4830, - "2015-01-01": 4830 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.deductions.standard.cap.SINGLE": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.deductions.standard.cap.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2023-01-01": 5540, - "2022-01-01": 5090, - "2021-01-01": 4830, - "2015-01-01": 4830 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.deductions.standard.cap.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.deductions.standard.cap.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2023-01-01": 5540, - "2022-01-01": 5090, - "2021-01-01": 4830, - "2015-01-01": 4830 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.deductions.standard.rate": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.deductions.standard.rate", - "description": "Montana provides a standard deduction equal to this percentage of Montana adjusted gross income, subject to minimum and maximum values.", - "label": "Montana standard deduction rate", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.deductions.child_dependent_care_expense": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.deductions.child_dependent_care_expense", - "description": null, - "label": "child dependent care expense", - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.deductions.child_dependent_care_expense.phase_out": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.deductions.child_dependent_care_expense.phase_out", - "description": "Montana phases its child and dependent care expense deduction out by this rate of state adjusted gross income.", - "label": "Montana Child and Dependent Care Expense Deduction income limit" - }, - "gov.states.mt.tax.income.deductions.child_dependent_care_expense.phase_out[0]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.deductions.child_dependent_care_expense.phase_out[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.mt.tax.income.deductions.child_dependent_care_expense.phase_out[0].rate": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.deductions.child_dependent_care_expense.phase_out[0].rate", - "description": null, - "label": "rate", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.deductions.child_dependent_care_expense.phase_out[0].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.deductions.child_dependent_care_expense.phase_out[0].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.deductions.child_dependent_care_expense.phase_out[1]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.deductions.child_dependent_care_expense.phase_out[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.mt.tax.income.deductions.child_dependent_care_expense.phase_out[1].rate": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.deductions.child_dependent_care_expense.phase_out[1].rate", - "description": null, - "label": "rate", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.deductions.child_dependent_care_expense.phase_out[1].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.deductions.child_dependent_care_expense.phase_out[1].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2021-01-01": 18000, - "2015-01-01": 18000 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.deductions.child_dependent_care_expense.age_limit": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.deductions.child_dependent_care_expense.age_limit", - "description": "Montana limits the child and dependent care expense deduction to expenses for dependents who have a disability or are below this age.", - "label": "Montana Child and Dependent Care Expense deduction age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 15, - "2015-01-01": 15 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.deductions.child_dependent_care_expense.cap": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.deductions.child_dependent_care_expense.cap", - "description": "Montana caps the childcare expenses under the child and dependent care expense deduction to the following amount, based on the number of qualifying children.", - "label": "Montana Child and Dependent Care Expense Deduction cap" - }, - "gov.states.mt.tax.income.deductions.child_dependent_care_expense.cap[0]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.deductions.child_dependent_care_expense.cap[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.mt.tax.income.deductions.child_dependent_care_expense.cap[0].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.deductions.child_dependent_care_expense.cap[0].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.deductions.child_dependent_care_expense.cap[0].amount": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.deductions.child_dependent_care_expense.cap[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.deductions.child_dependent_care_expense.cap[1]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.deductions.child_dependent_care_expense.cap[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.mt.tax.income.deductions.child_dependent_care_expense.cap[1].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.deductions.child_dependent_care_expense.cap[1].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.deductions.child_dependent_care_expense.cap[1].amount": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.deductions.child_dependent_care_expense.cap[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 2400, - "2015-01-01": 2400 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.deductions.child_dependent_care_expense.cap[2]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.deductions.child_dependent_care_expense.cap[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.mt.tax.income.deductions.child_dependent_care_expense.cap[2].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.deductions.child_dependent_care_expense.cap[2].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.deductions.child_dependent_care_expense.cap[2].amount": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.deductions.child_dependent_care_expense.cap[2].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 3600, - "2015-01-01": 3600 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.deductions.child_dependent_care_expense.cap[3]": { - "type": "parameterNode", - "parameter": "gov.states.mt.tax.income.deductions.child_dependent_care_expense.cap[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.mt.tax.income.deductions.child_dependent_care_expense.cap[3].threshold": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.deductions.child_dependent_care_expense.cap[3].threshold", - "description": null, - "label": "threshold", - "unit": "child", - "period": null, - "values": { - "2021-01-01": 3, - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.states.mt.tax.income.deductions.child_dependent_care_expense.cap[3].amount": { - "type": "parameter", - "parameter": "gov.states.mt.tax.income.deductions.child_dependent_care_expense.cap[3].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 4800, - "2015-01-01": 4800 - }, - "economy": true, - "household": true - }, - "gov.states.nm": { - "type": "parameterNode", - "parameter": "gov.states.nm", - "description": null, - "label": "New Mexico", - "economy": true, - "household": true - }, - "gov.states.nm.tax": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.states.nm.tax.income": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates", - "description": null, - "label": "rebates", - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income", - "description": null, - "label": "low income", - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions", - "description": "New Mexico provides the following low income comprehensive tax rebate for filers with three exemptions.", - "label": "New Mexico comprehensive low income tax rebate three exemptions amount" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[0]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[0].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 352, - "2021-01-01": 325, - "2015-01-01": 325 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[1]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[1].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 438, - "2021-01-01": 405, - "2015-01-01": 405 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[2]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 7500, - "2015-01-01": 7500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[2].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 422, - "2021-01-01": 390, - "2015-01-01": 390 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[3]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[3].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 8000, - "2015-01-01": 8000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[3].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 406, - "2021-01-01": 375, - "2015-01-01": 375 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[4]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[4].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 9000, - "2015-01-01": 9000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[4].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 368, - "2021-01-01": 340, - "2015-01-01": 340 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[5]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[5].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[5].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 298, - "2021-01-01": 275, - "2015-01-01": 275 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[6]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[6].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 11500, - "2015-01-01": 11500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[6].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[6].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 254, - "2021-01-01": 235, - "2015-01-01": 235 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[7]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[7].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 13000, - "2015-01-01": 13000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[7].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[7].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 238, - "2021-01-01": 220, - "2015-01-01": 220 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[8]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[8].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 14500, - "2015-01-01": 14500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[8].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[8].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 200, - "2021-01-01": 185, - "2015-01-01": 185 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[9]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[9].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 16500, - "2015-01-01": 16500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[9].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[9].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 179, - "2021-01-01": 165, - "2015-01-01": 165 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[10]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[10]", - "description": null, - "label": "bracket 11" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[10].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[10].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 18000, - "2015-01-01": 18000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[10].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[10].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 157, - "2021-01-01": 145, - "2015-01-01": 145 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[11]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[11]", - "description": null, - "label": "bracket 12" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[11].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[11].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 19500, - "2015-01-01": 19500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[11].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[11].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 151, - "2021-01-01": 140, - "2015-01-01": 140 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[12]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[12]", - "description": null, - "label": "bracket 13" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[12].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[12].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 23000, - "2015-01-01": 23000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[12].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[12].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 130, - "2021-01-01": 120, - "2015-01-01": 120 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[13]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[13]", - "description": null, - "label": "bracket 14" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[13].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[13].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 24500, - "2015-01-01": 24500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[13].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[13].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 124, - "2021-01-01": 115, - "2015-01-01": 115 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[14]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[14]", - "description": null, - "label": "bracket 15" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[14].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[14].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 26000, - "2015-01-01": 26000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[14].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[14].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 114, - "2021-01-01": 105, - "2015-01-01": 105 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[15]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[15]", - "description": null, - "label": "bracket 16" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[15].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[15].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 27500, - "2015-01-01": 27500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[15].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[15].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 108, - "2021-01-01": 100, - "2015-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[16]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[16]", - "description": null, - "label": "bracket 17" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[16].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[16].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 29500, - "2015-01-01": 29500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[16].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[16].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 87, - "2021-01-01": 80, - "2015-01-01": 80 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[17]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[17]", - "description": null, - "label": "bracket 18" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[17].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[17].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 31000, - "2015-01-01": 31000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[17].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[17].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 70, - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[18]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[18]", - "description": null, - "label": "bracket 19" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[18].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[18].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 32500, - "2015-01-01": 32500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[18].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[18].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 54, - "2021-01-01": 50, - "2015-01-01": 50 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[19]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[19]", - "description": null, - "label": "bracket 20" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[19].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[19].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 34000, - "2015-01-01": 34000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[19].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[19].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 43, - "2021-01-01": 40, - "2015-01-01": 40 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[20]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[20]", - "description": null, - "label": "bracket 21" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[20].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[20].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 36000, - "2015-01-01": 36000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[20].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.three_exemptions[20].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions", - "description": "New Mexico provides the following low income comprehensive tax rebate for filers with two exemptions.", - "label": "New Mexico comprehensive low income tax rebate two exemptions amount" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[0]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[0].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 281, - "2021-01-01": 260, - "2015-01-01": 260 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[1]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[1].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 341, - "2021-01-01": 315, - "2015-01-01": 315 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[2]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 7500, - "2015-01-01": 7500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[2].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 335, - "2021-01-01": 310, - "2015-01-01": 310 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[3]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[3].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 8000, - "2015-01-01": 8000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[3].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 308, - "2021-01-01": 285, - "2015-01-01": 285 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[4]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[4].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 9000, - "2015-01-01": 9000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[4].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 271, - "2021-01-01": 250, - "2015-01-01": 250 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[5]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[5].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[5].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 227, - "2021-01-01": 210, - "2015-01-01": 210 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[6]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[6].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 11500, - "2015-01-01": 11500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[6].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[6].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 200, - "2021-01-01": 185, - "2015-01-01": 185 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[7]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[7].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 13000, - "2015-01-01": 13000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[7].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[7].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 184, - "2021-01-01": 170, - "2015-01-01": 170 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[8]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[8].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 14500, - "2015-01-01": 14500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[8].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[8].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 168, - "2021-01-01": 155, - "2015-01-01": 155 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[9]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[9].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 16500, - "2015-01-01": 16500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[9].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[9].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 141, - "2021-01-01": 130, - "2015-01-01": 130 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[10]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[10]", - "description": null, - "label": "bracket 11" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[10].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[10].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 18000, - "2015-01-01": 18000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[10].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[10].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 124, - "2021-01-01": 115, - "2015-01-01": 115 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[11]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[11]", - "description": null, - "label": "bracket 12" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[11].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[11].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 19500, - "2015-01-01": 19500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[11].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[11].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 114, - "2021-01-01": 105, - "2015-01-01": 105 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[12]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[12]", - "description": null, - "label": "bracket 13" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[12].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[12].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 23000, - "2015-01-01": 23000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[12].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[12].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 108, - "2021-01-01": 100, - "2015-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[13]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[13]", - "description": null, - "label": "bracket 14" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[13].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[13].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 24500, - "2015-01-01": 24500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[13].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[13].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 97, - "2021-01-01": 90, - "2015-01-01": 90 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[14]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[14]", - "description": null, - "label": "bracket 15" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[14].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[14].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 26000, - "2015-01-01": 26000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[14].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[14].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 87, - "2021-01-01": 80, - "2015-01-01": 80 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[15]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[15]", - "description": null, - "label": "bracket 16" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[15].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[15].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 27500, - "2015-01-01": 27500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[15].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[15].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 81, - "2021-01-01": 75, - "2015-01-01": 75 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[16]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[16]", - "description": null, - "label": "bracket 17" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[16].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[16].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 29500, - "2015-01-01": 29500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[16].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[16].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 60, - "2021-01-01": 55, - "2015-01-01": 55 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[17]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[17]", - "description": null, - "label": "bracket 18" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[17].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[17].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 31000, - "2015-01-01": 31000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[17].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[17].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 54, - "2021-01-01": 50, - "2015-01-01": 50 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[18]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[18]", - "description": null, - "label": "bracket 19" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[18].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[18].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 32500, - "2015-01-01": 32500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[18].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[18].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 43, - "2021-01-01": 40, - "2015-01-01": 40 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[19]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[19]", - "description": null, - "label": "bracket 20" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[19].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[19].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 34000, - "2015-01-01": 34000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[19].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[19].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 38, - "2021-01-01": 35, - "2015-01-01": 35 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[20]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[20]", - "description": null, - "label": "bracket 21" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[20].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[20].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 36000, - "2015-01-01": 36000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[20].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.two_exemptions[20].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions", - "description": "New Mexico provides the following low income comprehensive tax rebate for filers with four exemptions.", - "label": "New Mexico comprehensive low income tax rebate four exemptions amount" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[0]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[0].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 422, - "2021-01-01": 390, - "2015-01-01": 390 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[1]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[1].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 546, - "2021-01-01": 505, - "2015-01-01": 505 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[2]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 7500, - "2015-01-01": 7500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[2].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 536, - "2021-01-01": 495, - "2015-01-01": 495 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[3]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[3].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 8000, - "2015-01-01": 8000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[3].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 519, - "2021-01-01": 480, - "2015-01-01": 480 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[4]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[4].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 9000, - "2015-01-01": 9000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[4].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 460, - "2021-01-01": 425, - "2015-01-01": 425 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[5]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[5].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[5].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 390, - "2021-01-01": 360, - "2015-01-01": 360 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[6]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[6].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 11500, - "2015-01-01": 11500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[6].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[6].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 319, - "2021-01-01": 295, - "2015-01-01": 295 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[7]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[7].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 13000, - "2015-01-01": 13000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[7].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[7].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 298, - "2021-01-01": 275, - "2015-01-01": 275 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[8]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[8].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 14500, - "2015-01-01": 14500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[8].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[8].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 254, - "2021-01-01": 235, - "2015-01-01": 235 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[9]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[9].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 16500, - "2015-01-01": 16500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[9].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[9].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 227, - "2021-01-01": 210, - "2015-01-01": 210 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[10]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[10]", - "description": null, - "label": "bracket 11" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[10].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[10].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 18000, - "2015-01-01": 18000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[10].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[10].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 195, - "2021-01-01": 180, - "2015-01-01": 180 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[11]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[11]", - "description": null, - "label": "bracket 12" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[11].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[11].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 19500, - "2015-01-01": 19500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[11].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[11].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 179, - "2021-01-01": 165, - "2015-01-01": 165 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[12]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[12]", - "description": null, - "label": "bracket 13" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[12].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[12].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 23000, - "2015-01-01": 23000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[12].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[12].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 157, - "2021-01-01": 145, - "2015-01-01": 145 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[13]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[13]", - "description": null, - "label": "bracket 14" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[13].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[13].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 24500, - "2015-01-01": 24500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[13].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[13].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 151, - "2021-01-01": 140, - "2015-01-01": 140 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[14]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[14]", - "description": null, - "label": "bracket 15" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[14].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[14].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 26000, - "2015-01-01": 26000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[14].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[14].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 141, - "2021-01-01": 130, - "2015-01-01": 130 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[15]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[15]", - "description": null, - "label": "bracket 16" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[15].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[15].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 27500, - "2015-01-01": 27500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[15].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[15].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 124, - "2021-01-01": 115, - "2015-01-01": 115 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[16]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[16]", - "description": null, - "label": "bracket 17" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[16].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[16].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 29500, - "2015-01-01": 29500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[16].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[16].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 108, - "2021-01-01": 100, - "2015-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[17]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[17]", - "description": null, - "label": "bracket 18" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[17].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[17].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 31000, - "2015-01-01": 31000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[17].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[17].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 87, - "2021-01-01": 80, - "2015-01-01": 80 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[18]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[18]", - "description": null, - "label": "bracket 19" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[18].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[18].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 32500, - "2015-01-01": 32500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[18].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[18].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 70, - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[19]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[19]", - "description": null, - "label": "bracket 20" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[19].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[19].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 34000, - "2015-01-01": 34000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[19].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[19].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 60, - "2021-01-01": 55, - "2015-01-01": 55 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[20]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[20]", - "description": null, - "label": "bracket 21" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[20].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[20].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 36000, - "2015-01-01": 36000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[20].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.four_exemptions[20].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions", - "description": "New Mexico provides the following low income comprehensive tax rebate for filers with six or more exemptions.", - "label": "New Mexico comprehensive low income tax rebate six exemptions amount" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[0]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[0].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 563, - "2021-01-01": 520, - "2015-01-01": 520 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[1]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[1].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 730, - "2021-01-01": 675, - "2015-01-01": 675 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[2]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 1500, - "2015-01-01": 1500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[2].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 763, - "2021-01-01": 705, - "2015-01-01": 705 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[3]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[3].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 2500, - "2015-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[3].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 790, - "2021-01-01": 730, - "2015-01-01": 730 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[4]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[4].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 8000, - "2015-01-01": 8000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[4].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 757, - "2021-01-01": 700, - "2015-01-01": 700 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[5]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[5].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 9000, - "2015-01-01": 9000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[5].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 720, - "2021-01-01": 665, - "2015-01-01": 665 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[6]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[6].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[6].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[6].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 649, - "2021-01-01": 600, - "2015-01-01": 600 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[7]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[7].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 11500, - "2015-01-01": 11500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[7].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[7].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 519, - "2021-01-01": 480, - "2015-01-01": 480 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[8]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[8].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 13000, - "2015-01-01": 13000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[8].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[8].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 422, - "2021-01-01": 390, - "2015-01-01": 390 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[9]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[9].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 14500, - "2015-01-01": 14500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[9].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[9].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 362, - "2021-01-01": 335, - "2015-01-01": 335 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[10]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[10]", - "description": null, - "label": "bracket 11" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[10].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[10].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 16500, - "2015-01-01": 16500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[10].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[10].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 325, - "2021-01-01": 300, - "2015-01-01": 300 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[11]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[11]", - "description": null, - "label": "bracket 12" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[11].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[11].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 18000, - "2015-01-01": 18000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[11].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[11].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 281, - "2021-01-01": 260, - "2015-01-01": 260 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[12]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[12]", - "description": null, - "label": "bracket 13" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[12].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[12].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 19500, - "2015-01-01": 19500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[12].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[12].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 249, - "2021-01-01": 230, - "2015-01-01": 230 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[13]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[13]", - "description": null, - "label": "bracket 14" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[13].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[13].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 23000, - "2015-01-01": 23000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[13].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[13].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 211, - "2021-01-01": 195, - "2015-01-01": 195 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[14]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[14]", - "description": null, - "label": "bracket 15" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[14].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[14].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 24500, - "2015-01-01": 24500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[14].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[14].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 195, - "2021-01-01": 180, - "2015-01-01": 180 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[15]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[15]", - "description": null, - "label": "bracket 16" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[15].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[15].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 26000, - "2015-01-01": 26000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[15].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[15].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 184, - "2021-01-01": 170, - "2015-01-01": 170 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[16]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[16]", - "description": null, - "label": "bracket 17" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[16].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[16].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 27500, - "2015-01-01": 27500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[16].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[16].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 168, - "2021-01-01": 155, - "2015-01-01": 155 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[17]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[17]", - "description": null, - "label": "bracket 18" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[17].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[17].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 29500, - "2015-01-01": 29500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[17].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[17].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 141, - "2021-01-01": 130, - "2015-01-01": 130 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[18]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[18]", - "description": null, - "label": "bracket 19" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[18].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[18].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 31000, - "2015-01-01": 31000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[18].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[18].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 114, - "2021-01-01": 105, - "2015-01-01": 105 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[19]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[19]", - "description": null, - "label": "bracket 20" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[19].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[19].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 32500, - "2015-01-01": 32500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[19].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[19].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 97, - "2021-01-01": 90, - "2015-01-01": 90 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[20]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[20]", - "description": null, - "label": "bracket 21" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[20].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[20].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 34000, - "2015-01-01": 34000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[20].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[20].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 81, - "2021-01-01": 75, - "2015-01-01": 75 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[21]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[21]", - "description": null, - "label": "bracket 22" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[21].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[21].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 36000, - "2015-01-01": 36000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[21].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.six_exemptions[21].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions", - "description": "New Mexico provides the following low income comprehensive tax rebate for filers with five exemptions.", - "label": "New Mexico comprehensive low income tax rebate five exemptions amount" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[0]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[0].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 492, - "2021-01-01": 455, - "2015-01-01": 455 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[1]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[1].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 617, - "2021-01-01": 570, - "2015-01-01": 570 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[2]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 7500, - "2015-01-01": 7500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[2].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 622, - "2021-01-01": 575, - "2015-01-01": 575 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[3]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[3].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 9000, - "2015-01-01": 9000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[3].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 552, - "2021-01-01": 510, - "2015-01-01": 510 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[4]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[4].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[4].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 481, - "2021-01-01": 445, - "2015-01-01": 445 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[5]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[5].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 11500, - "2015-01-01": 11500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[5].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 395, - "2021-01-01": 365, - "2015-01-01": 365 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[6]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[6].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 13000, - "2015-01-01": 13000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[6].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[6].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 341, - "2021-01-01": 315, - "2015-01-01": 315 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[7]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[7].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 14500, - "2015-01-01": 14500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[7].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[7].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 305, - "2021-01-01": 285, - "2015-01-01": 285 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[8]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[8].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 16500, - "2015-01-01": 16500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[8].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[8].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 271, - "2021-01-01": 250, - "2015-01-01": 250 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[9]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[9].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 18000, - "2015-01-01": 18000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[9].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[9].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 238, - "2021-01-01": 220, - "2015-01-01": 220 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[10]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[10]", - "description": null, - "label": "bracket 11" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[10].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[10].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 19500, - "2015-01-01": 19500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[10].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[10].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 200, - "2021-01-01": 185, - "2015-01-01": 185 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[11]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[11]", - "description": null, - "label": "bracket 12" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[11].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[11].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 23000, - "2015-01-01": 23000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[11].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[11].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 184, - "2021-01-01": 170, - "2015-01-01": 170 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[12]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[12]", - "description": null, - "label": "bracket 13" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[12].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[12].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 24500, - "2015-01-01": 24500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[12].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[12].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 168, - "2021-01-01": 155, - "2015-01-01": 155 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[13]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[13]", - "description": null, - "label": "bracket 14" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[13].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[13].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 26000, - "2015-01-01": 26000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[13].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[13].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 151, - "2021-01-01": 140, - "2015-01-01": 140 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[14]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[14]", - "description": null, - "label": "bracket 15" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[14].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[14].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 27500, - "2015-01-01": 27500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[14].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[14].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 141, - "2021-01-01": 130, - "2015-01-01": 130 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[15]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[15]", - "description": null, - "label": "bracket 16" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[15].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[15].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 29500, - "2015-01-01": 29500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[15].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[15].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 124, - "2021-01-01": 115, - "2015-01-01": 115 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[16]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[16]", - "description": null, - "label": "bracket 17" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[16].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[16].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 31000, - "2015-01-01": 31000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[16].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[16].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 108, - "2021-01-01": 100, - "2015-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[17]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[17]", - "description": null, - "label": "bracket 18" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[17].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[17].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 32500, - "2015-01-01": 32500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[17].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[17].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 87, - "2021-01-01": 80, - "2015-01-01": 80 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[18]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[18]", - "description": null, - "label": "bracket 19" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[18].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[18].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 34000, - "2015-01-01": 34000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[18].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[18].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 70, - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[19]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[19]", - "description": null, - "label": "bracket 20" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[19].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[19].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 36000, - "2015-01-01": 36000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[19].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.five_exemptions[19].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption", - "description": "New Mexico provides the following low income comprehensive tax rebate for filers with one exemption.", - "label": "New Mexico comprehensive low income tax rebate one exemption amount" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[0]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[0].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 211, - "2021-01-01": 195, - "2015-01-01": 195 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[1]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[1].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 238, - "2021-01-01": 220, - "2015-01-01": 220 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[2]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 7500, - "2015-01-01": 7500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[2].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 222, - "2021-01-01": 205, - "2015-01-01": 205 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[3]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[3].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 8000, - "2015-01-01": 8000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[3].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 200, - "2021-01-01": 185, - "2015-01-01": 185 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[4]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[4].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 9000, - "2015-01-01": 9000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[4].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 184, - "2021-01-01": 170, - "2015-01-01": 170 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[5]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[5].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[5].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 157, - "2021-01-01": 145, - "2015-01-01": 145 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[6]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[6].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 11500, - "2015-01-01": 11500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[6].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[6].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 141, - "2021-01-01": 130, - "2015-01-01": 130 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[7]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[7].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 13000, - "2015-01-01": 13000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[7].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[7].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 124, - "2021-01-01": 115, - "2015-01-01": 115 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[8]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[8].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 14500, - "2015-01-01": 14500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[8].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[8].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 114, - "2021-01-01": 105, - "2015-01-01": 105 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[9]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[9].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 16500, - "2015-01-01": 16500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[9].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[9].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 108, - "2021-01-01": 100, - "2015-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[10]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[10]", - "description": null, - "label": "bracket 11" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[10].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[10].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 18000, - "2015-01-01": 18000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[10].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[10].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 97, - "2021-01-01": 90, - "2015-01-01": 90 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[11]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[11]", - "description": null, - "label": "bracket 12" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[11].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[11].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 19500, - "2015-01-01": 19500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[11].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[11].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 87, - "2021-01-01": 80, - "2015-01-01": 80 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[12]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[12]", - "description": null, - "label": "bracket 13" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[12].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[12].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 23000, - "2015-01-01": 23000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[12].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[12].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 81, - "2021-01-01": 75, - "2015-01-01": 75 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[13]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[13]", - "description": null, - "label": "bracket 14" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[13].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[13].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 24500, - "2015-01-01": 24500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[13].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[13].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 70, - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[14]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[14]", - "description": null, - "label": "bracket 15" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[14].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[14].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 26000, - "2015-01-01": 26000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[14].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[14].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 60, - "2021-01-01": 55, - "2015-01-01": 55 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[15]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[15]", - "description": null, - "label": "bracket 16" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[15].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[15].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 27500, - "2015-01-01": 27500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[15].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[15].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 54, - "2021-01-01": 50, - "2015-01-01": 50 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[16]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[16]", - "description": null, - "label": "bracket 17" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[16].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[16].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 29500, - "2015-01-01": 29500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[16].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[16].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 43, - "2021-01-01": 40, - "2015-01-01": 40 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[17]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[17]", - "description": null, - "label": "bracket 18" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[17].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[17].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 31000, - "2015-01-01": 31000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[17].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[17].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 38, - "2021-01-01": 35, - "2015-01-01": 35 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[18]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[18]", - "description": null, - "label": "bracket 19" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[18].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[18].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 32500, - "2015-01-01": 32500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[18].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[18].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 27, - "2021-01-01": 25, - "2015-01-01": 25 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[19]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[19]", - "description": null, - "label": "bracket 20" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[19].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[19].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 34000, - "2015-01-01": 34000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[19].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[19].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 16, - "2021-01-01": 15, - "2015-01-01": 15 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[20]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[20]", - "description": null, - "label": "bracket 21" - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[20].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[20].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 36000, - "2015-01-01": 36000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[20].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.amount.one_exemption[20].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.divisor": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.divisor", - "description": "New Mexico divides its low income comprehensive tax rebate by this number for married filing separately filers.", - "label": "New Mexico low income rebate divisor for married filing separately", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.exemptions": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.exemptions", - "description": null, - "label": "exemptions", - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.exemptions.blind": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.exemptions.blind", - "description": "New Mexico provides an additional exemption under the low income comprehensive tax rebate for blind filers.", - "label": "New Mexico low income rebate blind exemption", - "unit": null, - "period": null, - "values": { - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.exemptions.aged": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.exemptions.aged", - "description": "New Mexico provides an additional exemption amount under the low income comprehensive tax rebate for people this age or older.", - "label": "New Mexico low income rebate aged exemption" - }, - "gov.states.nm.tax.income.rebates.low_income.exemptions.aged[0]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.exemptions.aged[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nm.tax.income.rebates.low_income.exemptions.aged[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.exemptions.aged[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.exemptions.aged[0].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.exemptions.aged[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.exemptions.aged[1]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.low_income.exemptions.aged[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nm.tax.income.rebates.low_income.exemptions.aged[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.exemptions.aged[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.low_income.exemptions.aged[1].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.low_income.exemptions.aged[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.property_tax": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.property_tax", - "description": null, - "label": "property tax", - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability", - "description": "New Mexico provides the following maximum property tax liability for elderly homeowners.", - "label": "New Mexico elderly max property tax liability" - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[0]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[0].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 20, - "2015-01-01": 20 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[1]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[1].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 25, - "2015-01-01": 25 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[2]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 2000, - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[2].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 30, - "2015-01-01": 30 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[3]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[3].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 3000, - "2015-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[3].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 35, - "2015-01-01": 35 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[4]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[4].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 4000, - "2015-01-01": 4000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[4].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 40, - "2015-01-01": 40 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[5]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[5].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 5000, - "2015-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[5].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 45, - "2015-01-01": 45 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[6]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[6].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 6000, - "2015-01-01": 6000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[6].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[6].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 50, - "2015-01-01": 50 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[7]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[7].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 7000, - "2015-01-01": 7000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[7].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[7].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 55, - "2015-01-01": 55 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[8]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[8].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 8000, - "2015-01-01": 8000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[8].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[8].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[9]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[9].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 9000, - "2015-01-01": 9000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[9].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[9].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 75, - "2015-01-01": 75 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[10]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[10]", - "description": null, - "label": "bracket 11" - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[10].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[10].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[10].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[10].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 90, - "2015-01-01": 90 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[11]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[11]", - "description": null, - "label": "bracket 12" - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[11].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[11].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 11000, - "2015-01-01": 11000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[11].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[11].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 105, - "2015-01-01": 105 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[12]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[12]", - "description": null, - "label": "bracket 13" - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[12].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[12].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 12000, - "2015-01-01": 12000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[12].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[12].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 120, - "2015-01-01": 120 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[13]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[13]", - "description": null, - "label": "bracket 14" - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[13].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[13].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 13000, - "2015-01-01": 13000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[13].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[13].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 135, - "2015-01-01": 135 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[14]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[14]", - "description": null, - "label": "bracket 15" - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[14].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[14].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 14000, - "2015-01-01": 14000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[14].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[14].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 150, - "2015-01-01": 150 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[15]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[15]", - "description": null, - "label": "bracket 16" - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[15].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[15].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 15000, - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[15].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[15].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 180, - "2015-01-01": 180 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[16]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[16]", - "description": null, - "label": "bracket 17" - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[16].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[16].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 16000, - "2015-01-01": 16000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[16].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_property_tax_liability[16].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.property_tax.income_threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.income_threshold", - "description": "New Mexico provides the property tax rebate for filers with income below this threshold.", - "label": "New Mexico property tax rebate income threshold", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 16000, - "2015-01-01": 16000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.property_tax.max_amount": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_amount", - "description": "New Mexico provides the following maximum property tax rebate amount depending on filing status.", - "label": "New Mexico property tax rebate max amount", - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.property_tax.max_amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 250, - "2015-01-01": 250 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.property_tax.max_amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 250, - "2015-01-01": 250 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.property_tax.max_amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 250, - "2015-01-01": 250 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.property_tax.max_amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 250, - "2015-01-01": 250 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.property_tax.max_amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.max_amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 125, - "2015-01-01": 125 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.property_tax.rent_rate": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.rent_rate", - "description": "New Mexico treats this percentage of rent as property tax for the property tax rebate.", - "label": "New Mexico property tax rebate rent rate", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.06, - "2015-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.property_tax.age_eligibility": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.property_tax.age_eligibility", - "description": "New Mexico provides the property tax rebate for filers at or above this age threshold.", - "label": "New Mexico property tax rebate age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.2021_income": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.2021_income", - "description": null, - "label": "2021 income", - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.2021_income.supplemental": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.2021_income.supplemental", - "description": null, - "label": "supplemental", - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.2021_income.supplemental.amount": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.2021_income.supplemental.amount", - "description": "New Mexico provides the following supplemental 2021 income tax rebate amount, based on filing status.", - "label": "New Mexico supplemental 2021 income tax rebate amount", - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.2021_income.supplemental.amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.2021_income.supplemental.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.2021_income.supplemental.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.2021_income.supplemental.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.2021_income.supplemental.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.2021_income.supplemental.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.2021_income.supplemental.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.2021_income.supplemental.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.2021_income.supplemental.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.2021_income.supplemental.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.2021_income.additional": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.2021_income.additional", - "description": null, - "label": "additional", - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.2021_income.additional.amount": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.2021_income.additional.amount", - "description": "New Mexico provides the following additional 2021 income tax rebate amount, based on filing status.", - "label": "New Mexico additional 2021 income tax rebate amount", - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.2021_income.additional.amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.2021_income.additional.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.2021_income.additional.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.2021_income.additional.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.2021_income.additional.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.2021_income.additional.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.2021_income.additional.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.2021_income.additional.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.2021_income.additional.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.2021_income.additional.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.2021_income.main": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.2021_income.main", - "description": null, - "label": "main", - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.2021_income.main.income_limit": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.2021_income.main.income_limit", - "description": "New Mexico provides the main 2021 income tax rebate for filers with AGI below this limit, based on filing status.", - "label": "New Mexico main 2021 income tax rebate income limit", - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.2021_income.main.income_limit.JOINT": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.2021_income.main.income_limit.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.2021_income.main.income_limit.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.2021_income.main.income_limit.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.2021_income.main.income_limit.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.2021_income.main.income_limit.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.2021_income.main.income_limit.SINGLE": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.2021_income.main.income_limit.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 75000, - "2015-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.2021_income.main.income_limit.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.2021_income.main.income_limit.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 75000, - "2015-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.2021_income.main.amount": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.rebates.2021_income.main.amount", - "description": "New Mexico provides the following main 2021 income tax rebate amount, based on filing status.", - "label": "New Mexico main 2021 income tax rebate amount", - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.2021_income.main.amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.2021_income.main.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.2021_income.main.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.2021_income.main.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.2021_income.main.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.2021_income.main.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.2021_income.main.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.2021_income.main.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 250, - "2015-01-01": 250 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.rebates.2021_income.main.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.rebates.2021_income.main.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 250, - "2015-01-01": 250 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.credits": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.credits", - "description": null, - "label": "credits", - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.credits.eitc": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.credits.eitc", - "description": null, - "label": "Earned Income Tax Credit", - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.credits.eitc.match": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.credits.eitc.match", - "description": "New Mexico's Working Families Tax Credit matches this percentage of the federal Earned Income Tax Credit.", - "label": "New Mexico EITC match", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.25, - "2021-01-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.credits.eitc.eligibility": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.credits.eitc.eligibility", - "description": null, - "label": "eligibility", - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.credits.eitc.eligibility.age": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.credits.eitc.eligibility.age", - "description": null, - "label": "age", - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.credits.eitc.eligibility.age.min": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.credits.eitc.eligibility.age.min", - "description": "New Mexico limits Earned Income Tax Credit eligibility for filers without children to those this age or older.", - "label": "New Mexico EITC minimum childless age", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 18, - "2015-01-01": 18 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.credits.refundable": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.credits.refundable", - "description": "New Mexico refundable tax credits.", - "label": "New Mexico refundable tax credits", - "unit": "list", - "period": "year", - "values": { - "2023-01-01": [ - "nm_cdcc", - "nm_ctc", - "nm_medical_expense_credit", - "nm_eitc", - "nm_low_income_comprehensive_tax_rebate", - "nm_property_tax_rebate" - ], - "2022-01-01": [ - "nm_cdcc", - "nm_medical_expense_credit", - "nm_eitc", - "nm_low_income_comprehensive_tax_rebate", - "nm_property_tax_rebate" - ], - "2021-01-01": [ - "nm_cdcc", - "nm_medical_expense_credit", - "nm_eitc", - "nm_low_income_comprehensive_tax_rebate", - "nm_property_tax_rebate", - "nm_2021_income_rebate", - "nm_additional_2021_income_rebate", - "nm_supplemental_2021_income_rebate" - ], - "2015-01-01": [ - "nm_cdcc", - "nm_medical_expense_credit", - "nm_eitc", - "nm_low_income_comprehensive_tax_rebate", - "nm_property_tax_rebate", - "nm_2021_income_rebate", - "nm_additional_2021_income_rebate", - "nm_supplemental_2021_income_rebate" - ] - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.credits.ctc": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.credits.ctc", - "description": null, - "label": "Child Tax Credit", - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.credits.ctc.amount": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.credits.ctc.amount", - "description": "New Mexico provides the following child income tax credit amount for filers, based on adjusted gross income.", - "label": "New Mexico child income tax credit amount" - }, - "gov.states.nm.tax.income.credits.ctc.amount[0]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.credits.ctc.amount[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nm.tax.income.credits.ctc.amount[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.credits.ctc.amount[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.credits.ctc.amount[0].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.credits.ctc.amount[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 774.561600669228, - "2034-01-01": 759.562917988327, - "2033-01-01": 744.749404229413, - "2032-01-01": 730.306228314472, - "2031-01-01": 716.233390243503, - "2030-01-01": 702.345721094521, - "2029-01-01": 688.643220867525, - "2028-01-01": 675.125889562516, - "2027-01-01": 661.423389335521, - "2026-01-01": 645.517378936886, - "2025-01-01": 635.798170836689, - "2024-01-01": 622, - "2023-01-01": 600, - "2015-01-01": 600 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.credits.ctc.amount[1]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.credits.ctc.amount[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nm.tax.income.credits.ctc.amount[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.credits.ctc.amount[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.credits.ctc.amount[1].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.credits.ctc.amount[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 515.544216522605, - "2034-01-01": 505.561170493838, - "2033-01-01": 495.701371946908, - "2032-01-01": 486.088068363652, - "2031-01-01": 476.721259744068, - "2030-01-01": 467.477698606321, - "2029-01-01": 458.357384950411, - "2028-01-01": 449.360318776337, - "2027-01-01": 440.240005120427, - "2026-01-01": 429.653046430661, - "2025-01-01": 423.183991521526, - "2024-01-01": 414, - "2023-01-01": 400, - "2015-01-01": 400 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.credits.ctc.amount[2]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.credits.ctc.amount[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nm.tax.income.credits.ctc.amount[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.credits.ctc.amount[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.credits.ctc.amount[2].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.credits.ctc.amount[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 257.772108261303, - "2034-01-01": 252.780585246919, - "2033-01-01": 247.850685973454, - "2032-01-01": 243.044034181826, - "2031-01-01": 238.360629872034, - "2030-01-01": 233.738849303161, - "2029-01-01": 229.178692475205, - "2028-01-01": 224.680159388169, - "2027-01-01": 220.120002560213, - "2026-01-01": 214.82652321533, - "2025-01-01": 211.591995760763, - "2024-01-01": 207, - "2023-01-01": 200, - "2015-01-01": 200 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.credits.ctc.amount[3]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.credits.ctc.amount[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.nm.tax.income.credits.ctc.amount[3].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.credits.ctc.amount[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 75001, - "2015-01-01": 75001 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.credits.ctc.amount[3].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.credits.ctc.amount[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 128.263416187991, - "2034-01-01": 125.779711499675, - "2033-01-01": 123.326669832202, - "2032-01-01": 120.934954206416, - "2031-01-01": 118.604564622316, - "2030-01-01": 116.304838059061, - "2029-01-01": 114.035774516648, - "2028-01-01": 111.797373995079, - "2027-01-01": 109.528310452667, - "2026-01-01": 106.894356962218, - "2025-01-01": 105.284906103182, - "2024-01-01": 103, - "2023-01-01": 100, - "2015-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.credits.ctc.amount[4]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.credits.ctc.amount[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.nm.tax.income.credits.ctc.amount[4].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.credits.ctc.amount[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.credits.ctc.amount[4].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.credits.ctc.amount[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 95.8862431696633, - "2034-01-01": 94.0294930628636, - "2033-01-01": 92.1956657968887, - "2032-01-01": 90.4076842125632, - "2031-01-01": 88.6655483098871, - "2030-01-01": 86.9463352480356, - "2029-01-01": 85.2500450270088, - "2028-01-01": 83.5766776468066, - "2027-01-01": 81.8803874257799, - "2026-01-01": 79.9113153989393, - "2025-01-01": 78.7081336887862, - "2024-01-01": 77, - "2023-01-01": 75, - "2015-01-01": 75 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.credits.ctc.amount[5]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.credits.ctc.amount[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.nm.tax.income.credits.ctc.amount[5].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.credits.ctc.amount[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 200000, - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.credits.ctc.amount[5].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.credits.ctc.amount[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 63.5090701513354, - "2034-01-01": 62.2792746260525, - "2033-01-01": 61.0646617615757, - "2032-01-01": 59.8804142187107, - "2031-01-01": 58.7265319974577, - "2030-01-01": 57.5878324370106, - "2029-01-01": 56.4643155373694, - "2028-01-01": 55.3559812985343, - "2027-01-01": 54.2324643988932, - "2026-01-01": 52.9282738356611, - "2025-01-01": 52.1313612743909, - "2024-01-01": 51, - "2023-01-01": 50, - "2015-01-01": 50 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.credits.ctc.amount[6]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.credits.ctc.amount[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.nm.tax.income.credits.ctc.amount[6].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.credits.ctc.amount[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2023-01-01": 350000, - "2015-01-01": 350000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.credits.ctc.amount[6].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.credits.ctc.amount[6].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 32.9117323546274, - "2034-01-01": 32.2744265165387, - "2033-01-01": 31.6449886517598, - "2032-01-01": 31.0312867336004, - "2031-01-01": 30.4333207620604, - "2030-01-01": 29.8432227638302, - "2029-01-01": 29.2609927389097, - "2028-01-01": 28.6866306872989, - "2027-01-01": 28.1044006623784, - "2026-01-01": 27.4285417550721, - "2025-01-01": 27.0155649493329, - "2024-01-01": 26.429269804869, - "2023-01-01": 25, - "2015-01-01": 25 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.credits.cdcc": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.credits.cdcc", - "description": null, - "label": "Child and Dependent Care Credit", - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.credits.cdcc.income_limit_as_fraction_of_minimum_wage": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.credits.cdcc.income_limit_as_fraction_of_minimum_wage", - "description": "New Mexico provides the child and dependent day care credit for filers with modified gross income at or below this fraction of full-time minimum wage.", - "label": "New Mexico CDCC MAGI limit as fraction of minimum wage", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.credits.cdcc.max_amount": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.credits.cdcc.max_amount", - "description": null, - "label": "max amount", - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.credits.cdcc.max_amount.total": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.credits.cdcc.max_amount.total", - "description": "New Mexico provides up to this total amount under its Child Day Care Credit.", - "label": "New Mexico credit for child and dependent care max amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 1200, - "2015-01-01": 1200 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.credits.cdcc.max_amount.per_child": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.credits.cdcc.max_amount.per_child", - "description": "New Mexico provides up to this amount per child under its Child Day Care Credit.", - "label": "New Mexico credit for child and dependent care one dependent max amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 480, - "2015-01-01": 480 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.credits.cdcc.divisor": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.credits.cdcc.divisor", - "description": "New Mexico divides the credit for dependent day care for separate filers by this divisor.", - "label": "New Mexico credit for dependent day care separate divisor", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.credits.cdcc.age_eligible": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.credits.cdcc.age_eligible", - "description": "New Mexico provides the credit for dependent day care for dependents below this age threshold.", - "label": "New Mexico credit for dependent day care child eligible age", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 15, - "2015-01-01": 15 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.credits.cdcc.full_time_hours": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.credits.cdcc.full_time_hours", - "description": "New Mexico provides the credit for child and dependent day care for filers with modified gross income based on these full time working hours.", - "label": "New Mexico credit for dependent day care full time hours", - "unit": "hours", - "period": null, - "values": { - "2021-01-01": 40, - "2015-01-01": 40 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.credits.cdcc.rate": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.credits.cdcc.rate", - "description": "New Mexico matches up to this share of the federal Child and Dependent Care Credit for its Child Day Care Credit.", - "label": "New Mexico dependent day care credit rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.4, - "2015-01-01": 0.4 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.credits.unreimbursed_medical_care_expense": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.credits.unreimbursed_medical_care_expense", - "description": null, - "label": "unreimbursed medical care expense", - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.credits.unreimbursed_medical_care_expense.min_expenses": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.credits.unreimbursed_medical_care_expense.min_expenses", - "description": "New Mexico provides the unreimbursed medical care expense credit for filers with expenses at or above this amount.", - "label": "New Mexico medical care expense credit minimum expenses", - "unit": "currency-USD", - "period": "year", - "values": { - "2005-01-01": 28000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.credits.unreimbursed_medical_care_expense.age_eligibility": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.credits.unreimbursed_medical_care_expense.age_eligibility", - "description": "New Mexico provides the unreimbursed medical care expense credit for filers at or above this age threshold.", - "label": "New Mexico medical care expense credit age threshold", - "unit": "year", - "period": "year", - "values": { - "2005-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.credits.unreimbursed_medical_care_expense.amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.credits.unreimbursed_medical_care_expense.amount", - "description": "New Mexico provides this amount under the unreimbursed medical care expense credit.", - "label": "New Mexico medical care expense credit amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2005-01-01": 2800 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions", - "description": null, - "label": "exemptions", - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.low_and_middle_income": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.low_and_middle_income", - "description": null, - "label": "low and middle income", - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.low_and_middle_income.reduction": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.low_and_middle_income.reduction", - "description": null, - "label": "reduction", - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.low_and_middle_income.reduction.income_threshold": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.low_and_middle_income.reduction.income_threshold", - "description": "New Mexico reduces the low- and middle-income exemption for filers with adjusted gross income above this amount.", - "label": "New Mexico low- and middle-income exemption reduction threshold", - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.low_and_middle_income.reduction.income_threshold.JOINT": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.low_and_middle_income.reduction.income_threshold.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.low_and_middle_income.reduction.income_threshold.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.low_and_middle_income.reduction.income_threshold.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.low_and_middle_income.reduction.income_threshold.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.low_and_middle_income.reduction.income_threshold.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.low_and_middle_income.reduction.income_threshold.SINGLE": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.low_and_middle_income.reduction.income_threshold.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 20000, - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.low_and_middle_income.reduction.income_threshold.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.low_and_middle_income.reduction.income_threshold.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 15000, - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.low_and_middle_income.reduction.rate": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.low_and_middle_income.reduction.rate", - "description": "New Mexico reduces the low- and middle-income exemption at this rate, based on the filing status.", - "label": "New Mexico low- and middle-income exemption reduction rate", - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.low_and_middle_income.reduction.rate.JOINT": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.low_and_middle_income.reduction.rate.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.low_and_middle_income.reduction.rate.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.low_and_middle_income.reduction.rate.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.low_and_middle_income.reduction.rate.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.low_and_middle_income.reduction.rate.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.low_and_middle_income.reduction.rate.SINGLE": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.low_and_middle_income.reduction.rate.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.15, - "2015-01-01": 0.15 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.low_and_middle_income.reduction.rate.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.low_and_middle_income.reduction.rate.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.low_and_middle_income.max_amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.low_and_middle_income.max_amount", - "description": "New Mexico provides this maximum low- and middle-income exemption amount.", - "label": "New Mexico low- and middle-income exemption maximum amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 2500, - "2015-01-01": 2500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.low_and_middle_income.income_limit": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.low_and_middle_income.income_limit", - "description": "New Mexico provides the low- and middle-income exemption for filers with adjusted gross income below this amount.", - "label": "New Mexico low- and middle-income exemption income limit", - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.low_and_middle_income.income_limit.JOINT": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.low_and_middle_income.income_limit.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2021-01-01": 55000, - "2015-01-01": 55000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.low_and_middle_income.income_limit.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.low_and_middle_income.income_limit.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2021-01-01": 55000, - "2015-01-01": 55000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.low_and_middle_income.income_limit.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.low_and_middle_income.income_limit.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 55000, - "2015-01-01": 55000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.low_and_middle_income.income_limit.SINGLE": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.low_and_middle_income.income_limit.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 36667, - "2015-01-01": 36667 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.low_and_middle_income.income_limit.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.low_and_middle_income.income_limit.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2021-01-01": 27500, - "2015-01-01": 27500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.exemptions": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.exemptions", - "description": "New Mexico applies the following exemptions to federal adjusted gross income.", - "label": "New Mexico exemptions", - "unit": "list", - "period": "year", - "values": { - "2027-01-01": [ - "nm_aged_blind_exemption", - "nm_hundred_year_exemption", - "nm_low_and_middle_income_exemption", - "nm_medical_expense_exemption", - "nm_social_security_income_exemption" - ], - "2022-01-01": [ - "nm_aged_blind_exemption", - "nm_hundred_year_exemption", - "nm_low_and_middle_income_exemption", - "nm_medical_expense_exemption", - "nm_social_security_income_exemption", - "nm_armed_forces_retirement_pay_exemption_person" - ], - "2021-01-01": [ - "nm_aged_blind_exemption", - "nm_hundred_year_exemption", - "nm_low_and_middle_income_exemption", - "nm_medical_expense_exemption", - "nm_social_security_income_exemption" - ], - "2015-01-01": [ - "nm_aged_blind_exemption", - "nm_hundred_year_exemption", - "nm_low_and_middle_income_exemption", - "nm_medical_expense_exemption", - "nm_social_security_income_exemption" - ] - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged", - "description": null, - "label": "blind and aged", - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household", - "description": "New Mexico provides this blind & aged exemption amount for head of household filers, depending on their adjusted gross income.", - "label": "New Mexico blind and aged exemption amount for head of household filers" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[0]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[0].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 8000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[1]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[1].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 7000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[2]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 33000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[2].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 6000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[3]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[3].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 36000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[3].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[4]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[4].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 39000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[4].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 4000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[5]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[5].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 42000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[5].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[6]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[6].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 45000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[6].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[6].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[7]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[7].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 48000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[7].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[7].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[8]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[8].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 51000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[8].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.head_of_household[8].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.separate": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.separate", - "description": "New Mexico provides this blind & aged exemption amount for separate filers, depending on their adjusted gross income.", - "label": "New Mexico blind and aged exemption amount for separate filers" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[0]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[0].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 8000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[1]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[1].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 7000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[2]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 16500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[2].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 6000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[3]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[3].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 18000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[3].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[4]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[4].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 19500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[4].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 4000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[5]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[5].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 21000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[5].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[6]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[6].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 22500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[6].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[6].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[7]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[7].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 24000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[7].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[7].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[8]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[8].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 25500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[8].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.separate[8].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.age_threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.age_threshold", - "description": "New Mexico provides the aged or blind exemption for filers at or above this age threshold.", - "label": "New Mexico aged and blind exemption age threshold", - "unit": "year", - "period": "year", - "values": { - "1987-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.joint": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.joint", - "description": "New Mexico provides this blind & aged exemption amount for joint filers, depending on their adjusted gross income.", - "label": "New Mexico blind and aged exemption amount for joint filers" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[0]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[0].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 8000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[1]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[1].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 7000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[2]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 33000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[2].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 6000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[3]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[3].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 36000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[3].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[4]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[4].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 39000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[4].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 4000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[5]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[5].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 42000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[5].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[6]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[6].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 45000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[6].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[6].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[7]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[7].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 48000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[7].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[7].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[8]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[8].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 51000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[8].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.joint[8].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.single": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.single", - "description": "New Mexico provides this blind & aged exemption amount for single filers, depending on their adjusted gross income.", - "label": "New Mexico blind and aged exemption amount for single filers" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.single[0]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.single[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.single[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.single[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.single[0].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.single[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 8000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.single[1]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.single[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.single[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.single[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 18000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.single[1].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.single[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 7000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.single[2]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.single[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.single[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.single[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 19500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.single[2].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.single[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 6000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.single[3]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.single[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.single[3].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.single[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 21000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.single[3].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.single[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.single[4]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.single[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.single[4].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.single[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 22500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.single[4].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.single[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 4000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.single[5]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.single[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.single[5].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.single[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 24000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.single[5].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.single[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.single[6]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.single[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.single[6].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.single[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 25500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.single[6].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.single[6].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.single[7]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.single[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.single[7].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.single[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 27000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.single[7].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.single[7].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.single[8]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.single[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.single[8].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.single[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 28500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.single[8].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.single[8].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse", - "description": "New Mexico provides this blind & aged exemption amount for surviving spouse filers, depending on their adjusted gross income.", - "label": "New Mexico blind and aged exemption amount for surviving spouse filers" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[0]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[0].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 8000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[1]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[1].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 7000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[2]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 33000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[2].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 6000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[3]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[3].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 36000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[3].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 5000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[4]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[4].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 39000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[4].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[4].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 4000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[5]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[5].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 42000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[5].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[5].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[6]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[6].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 45000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[6].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[6].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[7]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[7].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 48000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[7].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[7].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[8]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[8].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 51000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[8].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.blind_and_aged.surviving_spouse[8].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "1987-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.armed_forces_retirement_pay": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.armed_forces_retirement_pay", - "description": null, - "label": "armed forces retirement pay", - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.armed_forces_retirement_pay.cap": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.armed_forces_retirement_pay.cap", - "description": "New Mexico exempts this amount of armed forces retirement pay.", - "label": "New Mexico armed forces retirement pay exemption cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2024-01-01": 30000, - "2023-01-01": 20000, - "2022-01-01": 10000, - "2015-01-01": 10000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.unreimbursed_medical_care_expense": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.unreimbursed_medical_care_expense", - "description": null, - "label": "unreimbursed medical care expense", - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.unreimbursed_medical_care_expense.min_expenses": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.unreimbursed_medical_care_expense.min_expenses", - "description": "New Mexico provides the unreimbursed medical care expense exemption for filers with expenses at or above this amount.", - "label": "New Mexico medical care expense exemption minimum expenses", - "unit": "currency-USD", - "period": "year", - "values": { - "2005-01-01": 28000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.unreimbursed_medical_care_expense.age_eligibility": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.unreimbursed_medical_care_expense.age_eligibility", - "description": "New Mexico provides the unreimbursed medical care expense exemption for filers at or above this age threshold.", - "label": "New Mexico medical care expense exemption age threshold", - "unit": "year", - "period": "year", - "values": { - "2005-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.unreimbursed_medical_care_expense.amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.unreimbursed_medical_care_expense.amount", - "description": "New Mexico provides this amount under the unreimbursed medical care expense exemption.", - "label": "New Mexico medical care expense exemption amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2005-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.hundred_year": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.hundred_year", - "description": null, - "label": "hundred year", - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.hundred_year.age_eligibility": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.hundred_year.age_eligibility", - "description": "New Mexico provides the hundred year exemption for filers at or above this age threshold.", - "label": "New Mexico hundred year exemption age threshold", - "unit": "year", - "period": "year", - "values": { - "2002-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.social_security_income": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.social_security_income", - "description": null, - "label": "social security income", - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.social_security_income.income_limit": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.exemptions.social_security_income.income_limit", - "description": "New Mexico exempts taxable Social Security benefits for filers with adjusted gross income at or below this amount.", - "label": "New Mexico social security income exemption income limit", - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.social_security_income.income_limit.JOINT": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.social_security_income.income_limit.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2022-01-01": 150000, - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.social_security_income.income_limit.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.social_security_income.income_limit.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2022-01-01": 150000, - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.social_security_income.income_limit.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.social_security_income.income_limit.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 150000, - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.social_security_income.income_limit.SINGLE": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.social_security_income.income_limit.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 100000, - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.exemptions.social_security_income.income_limit.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.exemptions.social_security_income.income_limit.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 75000, - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.modified_gross_income": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.modified_gross_income", - "description": "New Mexico includes these income sources in its modified gross income concept.", - "label": "New Mexico modified gross income elements", - "unit": "list", - "period": null, - "values": { - "2021-01-01": [ - "tax_unit_social_security", - "tax_unit_unemployment_compensation", - "capital_gains", - "tanf", - "ssi", - "interest_income", - "dividend_income", - "alimony_income", - "child_support_received", - "rental_income", - "pension_income", - "unemployment_compensation", - "irs_employment_income", - "self_employment_income", - "veterans_benefits" - ], - "2015-01-01": [ - "tax_unit_social_security", - "tax_unit_unemployment_compensation", - "capital_gains", - "tanf", - "ssi", - "interest_income", - "dividend_income", - "alimony_income", - "child_support_received", - "rental_income", - "pension_income", - "unemployment_compensation", - "irs_employment_income", - "self_employment_income", - "veterans_benefits" - ] - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.other_deductions_and_exemptions": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.other_deductions_and_exemptions", - "description": "New Mexico other deduction and exemptions elements.", - "label": "New Mexico other deduction and exemption elements", - "unit": "list", - "period": null, - "values": { - "2021-01-01": ["us_govt_interest", "investment_in_529_plan", "military_service_income"], - "2015-01-01": ["us_govt_interest", "investment_in_529_plan", "military_service_income"] - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.main", - "description": null, - "label": "main", - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.head_of_household": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.main.head_of_household", - "description": "New Mexico taxes the income of head of household filers at this rate.", - "label": "New Mexico income tax rate head of household filers" - }, - "gov.states.nm.tax.income.main.head_of_household[0]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.main.head_of_household[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nm.tax.income.main.head_of_household[0].rate": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.head_of_household[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2008-01-01": 0.017 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.head_of_household[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.head_of_household[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2008-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.head_of_household[1]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.main.head_of_household[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nm.tax.income.main.head_of_household[1].rate": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.head_of_household[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2008-01-01": 0.032 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.head_of_household[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.head_of_household[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2008-01-01": 8000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.head_of_household[2]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.main.head_of_household[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nm.tax.income.main.head_of_household[2].rate": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.head_of_household[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2008-01-01": 0.047 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.head_of_household[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.head_of_household[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2008-01-01": 16000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.head_of_household[3]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.main.head_of_household[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.nm.tax.income.main.head_of_household[3].rate": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.head_of_household[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2008-01-01": 0.049 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.head_of_household[3].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.head_of_household[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2008-01-01": 24000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.head_of_household[4]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.main.head_of_household[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.nm.tax.income.main.head_of_household[4].rate": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.head_of_household[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2008-01-01": 0.059 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.head_of_household[4].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.head_of_household[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2008-01-01": 315000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.separate": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.main.separate", - "description": "New Mexico taxes the income of married individuals filing separate returns at this rate.", - "label": "New Mexico income tax rate married separate filers" - }, - "gov.states.nm.tax.income.main.separate[0]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.main.separate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nm.tax.income.main.separate[0].rate": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.separate[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2008-01-01": 0.017 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.separate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.separate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2008-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.separate[1]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.main.separate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nm.tax.income.main.separate[1].rate": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.separate[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2008-01-01": 0.032 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.separate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.separate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2008-01-01": 4000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.separate[2]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.main.separate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nm.tax.income.main.separate[2].rate": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.separate[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2008-01-01": 0.047 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.separate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.separate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2008-01-01": 8000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.separate[3]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.main.separate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.nm.tax.income.main.separate[3].rate": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.separate[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2008-01-01": 0.049 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.separate[3].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.separate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2008-01-01": 12000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.separate[4]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.main.separate[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.nm.tax.income.main.separate[4].rate": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.separate[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2008-01-01": 0.059 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.separate[4].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.separate[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2008-01-01": 157500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.joint": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.main.joint", - "description": "New Mexico taxes the income of joint filers at this rate.", - "label": "New Mexico income tax rate joint filers" - }, - "gov.states.nm.tax.income.main.joint[0]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.main.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nm.tax.income.main.joint[0].rate": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.joint[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2008-01-01": 0.017 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2008-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.joint[1]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.main.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nm.tax.income.main.joint[1].rate": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.joint[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2008-01-01": 0.032 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2008-01-01": 8000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.joint[2]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.main.joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nm.tax.income.main.joint[2].rate": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.joint[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2008-01-01": 0.047 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.joint[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2008-01-01": 16000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.joint[3]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.main.joint[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.nm.tax.income.main.joint[3].rate": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.joint[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2008-01-01": 0.049 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.joint[3].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.joint[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2008-01-01": 24000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.joint[4]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.main.joint[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.nm.tax.income.main.joint[4].rate": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.joint[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2008-01-01": 0.059 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.joint[4].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.joint[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2008-01-01": 315000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.single": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.main.single", - "description": "New Mexico taxes the income of single filers at this rate.", - "label": "New Mexico income tax rate single filers" - }, - "gov.states.nm.tax.income.main.single[0]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.main.single[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nm.tax.income.main.single[0].rate": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.single[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2008-01-01": 0.017 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.single[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.single[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2008-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.single[1]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.main.single[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nm.tax.income.main.single[1].rate": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.single[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2008-01-01": 0.032 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.single[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.single[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2008-01-01": 5500 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.single[2]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.main.single[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nm.tax.income.main.single[2].rate": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.single[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2008-01-01": 0.047 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.single[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.single[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2008-01-01": 11000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.single[3]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.main.single[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.nm.tax.income.main.single[3].rate": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.single[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2008-01-01": 0.049 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.single[3].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.single[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2008-01-01": 16000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.single[4]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.main.single[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.nm.tax.income.main.single[4].rate": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.single[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2008-01-01": 0.059 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.single[4].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.single[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2008-01-01": 210000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.surviving_spouse": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.main.surviving_spouse", - "description": "New Mexico taxes the income of surviving spouse filers at this rate.", - "label": "New Mexico income tax rate surviving spouse filers" - }, - "gov.states.nm.tax.income.main.surviving_spouse[0]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.main.surviving_spouse[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nm.tax.income.main.surviving_spouse[0].rate": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.surviving_spouse[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2008-01-01": 0.017 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.surviving_spouse[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.surviving_spouse[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2008-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.surviving_spouse[1]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.main.surviving_spouse[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nm.tax.income.main.surviving_spouse[1].rate": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.surviving_spouse[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2008-01-01": 0.032 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.surviving_spouse[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.surviving_spouse[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2008-01-01": 8000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.surviving_spouse[2]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.main.surviving_spouse[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nm.tax.income.main.surviving_spouse[2].rate": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.surviving_spouse[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2008-01-01": 0.047 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.surviving_spouse[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.surviving_spouse[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2008-01-01": 16000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.surviving_spouse[3]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.main.surviving_spouse[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.nm.tax.income.main.surviving_spouse[3].rate": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.surviving_spouse[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2008-01-01": 0.049 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.surviving_spouse[3].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.surviving_spouse[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2008-01-01": 24000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.surviving_spouse[4]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.main.surviving_spouse[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.nm.tax.income.main.surviving_spouse[4].rate": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.surviving_spouse[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2008-01-01": 0.059 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.main.surviving_spouse[4].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.main.surviving_spouse[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2008-01-01": 315000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.deductions": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.deductions", - "description": null, - "label": "deductions", - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.deductions.medical_care_expense": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense", - "description": null, - "label": "medical care expense", - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.head_of_household": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.head_of_household", - "description": "New Mexico provides the medical care expense deduction at these rates for individuals filing as head of household, depending on their adjusted gross income.", - "label": "New Mexico medical care expense deduction head of household filers rate" - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.head_of_household[0]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.head_of_household[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.head_of_household[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.head_of_household[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.head_of_household[0].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.head_of_household[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2025-01-01": 0, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.head_of_household[1]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.head_of_household[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.head_of_household[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.head_of_household[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 20000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.head_of_household[1].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.head_of_household[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2025-01-01": 0, - "2015-01-01": 0.15 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.head_of_household[2]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.head_of_household[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.head_of_household[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.head_of_household[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.head_of_household[2].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.head_of_household[2].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2025-01-01": 0, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.separate": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.separate", - "description": "New Mexico provides the medical care expense deduction at these rates for separate filers, depending on their adjusted gross income.", - "label": "New Mexico medical care expense deduction separate filers rate" - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.separate[0]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.separate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.separate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.separate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.separate[0].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.separate[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2025-01-01": 0, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.separate[1]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.separate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.separate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.separate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.separate[1].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.separate[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2025-01-01": 0, - "2015-01-01": 0.15 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.separate[2]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.separate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.separate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.separate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 35000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.separate[2].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.separate[2].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2025-01-01": 0, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.joint": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.joint", - "description": "New Mexico provides the medical care expense deduction at these rates for joint filers, depending on their adjusted gross income.", - "label": "New Mexico medical care expense deduction joint filers rate" - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.joint[0]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.joint[0].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.joint[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2025-01-01": 0, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.joint[1]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.joint[1].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.joint[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2025-01-01": 0, - "2015-01-01": 0.15 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.joint[2]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.joint[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 70000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.joint[2].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.joint[2].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2025-01-01": 0, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.single": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.single", - "description": "New Mexico provides the medical care expense deduction at these rates for single filers, depending on their adjusted gross income.", - "label": "New Mexico medical care expense deduction single filers rate" - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.single[0]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.single[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.single[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.single[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.single[0].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.single[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2025-01-01": 0, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.single[1]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.single[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.single[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.single[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.single[1].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.single[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2025-01-01": 0, - "2015-01-01": 0.15 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.single[2]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.single[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.single[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.single[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 35000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.single[2].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.single[2].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2025-01-01": 0, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.surviving_spouse": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.surviving_spouse", - "description": "New Mexico provides the medical care expense deduction at these rates for surviving spouse filers, depending on their adjusted gross income.", - "label": "New Mexico medical care expense deduction surviving spouse filers rate" - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.surviving_spouse[0]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.surviving_spouse[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.surviving_spouse[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.surviving_spouse[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.surviving_spouse[0].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.surviving_spouse[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2025-01-01": 0, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.surviving_spouse[1]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.surviving_spouse[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.surviving_spouse[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.surviving_spouse[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.surviving_spouse[1].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.surviving_spouse[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2025-01-01": 0, - "2015-01-01": 0.15 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.surviving_spouse[2]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.surviving_spouse[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.surviving_spouse[2].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.surviving_spouse[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 70000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.deductions.medical_care_expense.surviving_spouse[2].amount": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.deductions.medical_care_expense.surviving_spouse[2].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2025-01-01": 0, - "2015-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.deductions.net_capital_gains": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.deductions.net_capital_gains", - "description": null, - "label": "net capital gains", - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.deductions.net_capital_gains.capped_element": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.deductions.net_capital_gains.capped_element", - "description": "New Mexico allows filers to deduct this amount of their net capital gains, depending on filing status, or a percentage of it, whichever is greater.", - "label": "New Mexico net capital gain deduction capped element" - }, - "gov.states.nm.tax.income.deductions.net_capital_gains.capped_element[0]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.deductions.net_capital_gains.capped_element[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.nm.tax.income.deductions.net_capital_gains.capped_element[0].rate": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.deductions.net_capital_gains.capped_element[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2019-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.deductions.net_capital_gains.capped_element[0].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.deductions.net_capital_gains.capped_element[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2019-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.deductions.net_capital_gains.capped_element[1]": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.deductions.net_capital_gains.capped_element[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.nm.tax.income.deductions.net_capital_gains.capped_element[1].rate": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.deductions.net_capital_gains.capped_element[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2019-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.deductions.net_capital_gains.capped_element[1].threshold": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.deductions.net_capital_gains.capped_element[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2019-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.deductions.net_capital_gains.uncapped_element_percent": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.deductions.net_capital_gains.uncapped_element_percent", - "description": "New Mexico allows filers to deduct this percentage of their net capital gains, or an amount of it, whichever is greater.", - "label": "New Mexico net capital gain deduction uncapped element percent", - "unit": "/1", - "period": null, - "values": { - "2019-01-01": 0.4, - "2015-01-01": 0.4 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.deductions.certain_dependents": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.deductions.certain_dependents", - "description": null, - "label": "certain dependents", - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.deductions.certain_dependents.amount": { - "type": "parameterNode", - "parameter": "gov.states.nm.tax.income.deductions.certain_dependents.amount", - "description": "New Mexico provides this amount per dependent for its deduction for certain dependents.", - "label": "New Mexico deduction for certain dependents", - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.deductions.certain_dependents.amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.deductions.certain_dependents.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2019-01-01": 4000, - "2015-01-01": 4000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.deductions.certain_dependents.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.deductions.certain_dependents.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2019-01-01": 4000, - "2015-01-01": 4000 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.deductions.certain_dependents.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.deductions.certain_dependents.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2019-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.deductions.certain_dependents.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.deductions.certain_dependents.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2019-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.nm.tax.income.deductions.certain_dependents.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.nm.tax.income.deductions.certain_dependents.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2019-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.md": { - "type": "parameterNode", - "parameter": "gov.states.md", - "description": null, - "label": "Maryland", - "economy": true, - "household": true - }, - "gov.states.md.tax": { - "type": "parameterNode", - "parameter": "gov.states.md.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.states.md.tax.income": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.md.tax.income.agi": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.agi", - "description": null, - "label": "AGI", - "economy": true, - "household": true - }, - "gov.states.md.tax.income.agi.subtractions": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.agi.subtractions", - "description": null, - "label": "subtractions", - "economy": true, - "household": true - }, - "gov.states.md.tax.income.agi.subtractions.sources": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.agi.subtractions.sources", - "description": "Maryland subtracts the following sources from federal adjusted gross income.", - "label": "Maryland adjusted gross income subtractions", - "unit": "list", - "period": "year", - "values": { - "2022-01-01": [ - "md_dependent_care_subtraction", - "md_pension_subtraction", - "md_socsec_subtraction", - "md_two_income_subtraction", - "md_hundred_year_subtraction" - ], - "2021-01-01": [ - "md_dependent_care_subtraction", - "md_pension_subtraction", - "md_socsec_subtraction", - "md_two_income_subtraction" - ], - "2015-01-01": [ - "md_dependent_care_subtraction", - "md_pension_subtraction", - "md_socsec_subtraction", - "md_two_income_subtraction" - ] - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.agi.subtractions.max_two_income_subtraction": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.agi.subtractions.max_two_income_subtraction", - "description": "Maryland maximum two-income AGI subtraction", - "label": "MD max two-income AGI subtraction", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 1200, - "2015-01-01": 1200 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.agi.subtractions.max_care_expense_year_offset": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.agi.subtractions.max_care_expense_year_offset", - "description": "Decoupled year offset for maximum CDCC expense cap", - "label": "Decoupled year offset for maximum CDCC expense cap", - "unit": "int", - "period": "year", - "values": { - "2022-01-01": 0, - "2021-01-01": -2, - "2020-01-01": -1, - "2019-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.agi.subtractions.hundred_year": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.agi.subtractions.hundred_year", - "description": null, - "label": "hundred year", - "economy": true, - "household": true - }, - "gov.states.md.tax.income.agi.subtractions.hundred_year.age_threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.agi.subtractions.hundred_year.age_threshold", - "description": "Maryland limits the hundred year subtraction to individuals this age or older.", - "label": "Maryland hundred year subtraction age eligibility", - "unit": "year", - "period": "year", - "values": { - "2022-01-01": 100, - "2015-01-01": 100 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.agi.subtractions.hundred_year.amount": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.agi.subtractions.hundred_year.amount", - "description": "Maryland subtracts this amount from adjusted gross income under the hundred year subtraction.", - "label": "Maryland hundred year subtraction amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2022-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.agi.subtractions.pension": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.agi.subtractions.pension", - "description": null, - "label": "pension", - "economy": true, - "household": true - }, - "gov.states.md.tax.income.agi.subtractions.pension.max_amount": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.agi.subtractions.pension.max_amount", - "description": "Maryland provides the following maximum pension subtraction from adjusted gross income.", - "label": "Maryland max pension AGI subtraction", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 50824.3403842834, - "2034-01-01": 49700.5869152425, - "2033-01-01": 48602.7964785085, - "2032-01-01": 47543.6883373833, - "2031-01-01": 46497.4305859857, - "2030-01-01": 45489.9862566227, - "2029-01-01": 44508.3738331408, - "2028-01-01": 43565.5748316934, - "2027-01-01": 42766.7526457661, - "2026-01-01": 41718.5279979817, - "2025-01-01": 40762.7474803808, - "2024-01-01": 39500, - "2023-01-01": 36200, - "2021-01-01": 34300, - "2015-01-01": 34300 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.agi.subtractions.pension.min_age": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.agi.subtractions.pension.min_age", - "description": "Maryland pension AGI subtraction minimum eligibility age", - "label": "Maryland pension AGI subtraction minimum eligibility age", - "unit": "int", - "period": "year", - "values": { - "2021-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.credits", - "description": null, - "label": "credits", - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.eitc": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.credits.eitc", - "description": null, - "label": "Earned Income Tax Credit", - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.eitc.non_refundable": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.credits.eitc.non_refundable", - "description": null, - "label": "non refundable", - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.eitc.non_refundable.unmarried_childless": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.credits.eitc.non_refundable.unmarried_childless", - "description": null, - "label": "unmarried childless", - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.eitc.non_refundable.unmarried_childless.max_amount": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.eitc.non_refundable.unmarried_childless.max_amount", - "description": "Maryland provides up to this amount for its Earned Income Tax Credit to individuals without a qualifying child.", - "label": "Maryland childless EITC maximum", - "unit": "currency-USD", - "period": "year", - "values": { - "2023-01-01": "Infinity", - "2019-01-01": 530, - "2015-01-01": 530 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.eitc.non_refundable.unmarried_childless.match": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.eitc.non_refundable.unmarried_childless.match", - "description": "Maryland matches this percentage of the federal Earned Income Tax Credit to individuals without a qualifying child.", - "label": "Maryland childless EITC match", - "unit": "/1", - "period": "year", - "values": { - "2019-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.eitc.non_refundable.married_or_has_child": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.credits.eitc.non_refundable.married_or_has_child", - "description": null, - "label": "married or has child", - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.eitc.non_refundable.married_or_has_child.match": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.eitc.non_refundable.married_or_has_child.match", - "description": "Maryland matches this percent of the federal Earned Income Tax Credit for individuals with qualifying child or married couples filing jointly or separately with or without a qualifying child.", - "label": "Maryland non-refundable EITC match", - "unit": "/1", - "period": "year", - "values": { - "2019-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.eitc.refundable": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.credits.eitc.refundable", - "description": null, - "label": "refundable", - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.eitc.refundable.married_or_has_child": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.credits.eitc.refundable.married_or_has_child", - "description": null, - "label": "married or has child", - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.eitc.refundable.married_or_has_child.match": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.eitc.refundable.married_or_has_child.match", - "description": "Maryland matches this percent of the federal Earned Income Tax Credit as a refundable credit for filers who are not single and childless.", - "label": "Maryland refundable EITC match", - "unit": "/1", - "period": "year", - "values": { - "2020-01-01": 0.45, - "2018-01-01": 0.28, - "2017-01-01": 0.27, - "2016-01-01": 0.26, - "2015-01-01": 0.255, - "2014-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.refundable": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.refundable", - "description": "Maryland list of refundable tax credits.", - "label": "refundable", - "unit": null, - "period": null, - "values": { - "2020-01-01": [ - "md_refundable_cdcc", - "md_refundable_eitc", - "md_montgomery_eitc", - "md_ctc" - ], - "2015-01-01": ["md_refundable_cdcc", "md_refundable_eitc", "md_montgomery_eitc", "md_ctc"] - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.poverty_line": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.credits.poverty_line", - "description": null, - "label": "Poverty Line Credit", - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.poverty_line.earned_income_share": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.poverty_line.earned_income_share", - "description": "Maryland provides up to this share of earned income in its Poverty Line Credit.", - "label": "Maryland Poverty Line Credit rate", - "unit": "/1", - "period": "year", - "values": { - "2018-01-01": 0.05, - "2015-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.senior_tax": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.credits.senior_tax", - "description": null, - "label": "senior tax", - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.senior_tax.income_threshold": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.credits.senior_tax.income_threshold", - "description": "Maryland limits its senior tax credit to filers with adjusted gross income threshold below this amount, based on filing status.", - "label": "Maryland Senior Tax Credit income threshold", - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.senior_tax.income_threshold.JOINT": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.senior_tax.income_threshold.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2022-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.senior_tax.income_threshold.SINGLE": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.senior_tax.income_threshold.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.senior_tax.income_threshold.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.senior_tax.income_threshold.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2022-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.senior_tax.income_threshold.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.senior_tax.income_threshold.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.senior_tax.income_threshold.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.senior_tax.income_threshold.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2022-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.senior_tax.amount": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.credits.senior_tax.amount", - "description": null, - "label": "amount", - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.senior_tax.amount.head_of_household": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.senior_tax.amount.head_of_household", - "description": "Maryland provides this senior tax credit amount for head of household filers.", - "label": "Maryland Senior Tax Credit head of houshehold amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2022-01-01": 1750, - "2015-01-01": 1750 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.senior_tax.amount.separate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.senior_tax.amount.separate", - "description": "Maryland provides this senior tax credit amount for separate filers.", - "label": "Maryland Senior Tax Credit separate amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2022-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.senior_tax.amount.joint": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.credits.senior_tax.amount.joint", - "description": "Maryland provides this senior tax credit amount for joint filers, based on the number of aged people.", - "label": "Maryland Senior Tax Credit joint amount", - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.senior_tax.amount.joint.1": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.senior_tax.amount.joint.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2022-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.senior_tax.amount.joint.2": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.senior_tax.amount.joint.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2022-01-01": 1750, - "2015-01-01": 1750 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.senior_tax.amount.joint.0": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.senior_tax.amount.joint.0", - "description": null, - "label": "0", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.senior_tax.amount.single": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.senior_tax.amount.single", - "description": "Maryland provides this senior tax credit amount for single filers.", - "label": "Maryland Senior Tax Credit single amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2022-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.senior_tax.amount.surviving_spouse": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.senior_tax.amount.surviving_spouse", - "description": "Maryland provides this senior tax credit amount for surviving spouse filers.", - "label": "Maryland Senior Tax Credit surviving spouse amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2022-01-01": 1750, - "2015-01-01": 1750 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.senior_tax.age_eligibility": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.senior_tax.age_eligibility", - "description": "Maryland allows filers at or above this age to receive the senior tax credit.", - "label": "Maryland Senior Tax Credit age eligibility", - "unit": "year", - "period": "year", - "values": { - "2022-01-01": 65, - "2015-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.ctc": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.credits.ctc", - "description": null, - "label": "Child Tax Credit", - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.ctc.age_threshold": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.credits.ctc.age_threshold", - "description": null, - "label": "age threshold", - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.ctc.age_threshold.main": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.ctc.age_threshold.main", - "description": "Maryland limits its Child Tax Credit to children below this age.", - "label": "Maryland Child Tax Credit main age limit", - "unit": "year", - "period": "year", - "values": { - "2023-01-01": 6, - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.ctc.age_threshold.disabled": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.ctc.age_threshold.disabled", - "description": "Maryland limits its Child Tax Credit to disabled children below this age.", - "label": "Maryland Child Tax Credit disabled age limit", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 17, - "2015-01-01": 17 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.ctc.reduced_by_federal_credit": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.ctc.reduced_by_federal_credit", - "description": "Maryland reduces its child tax credit by the federal child tax credit amount when this is true.", - "label": "Maryland CTC reduced by federal credit", - "unit": "bool", - "period": "year", - "values": { - "2023-01-01": false, - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.ctc.phase_out": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.credits.ctc.phase_out", - "description": null, - "label": "phase out", - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.ctc.phase_out.increment": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.ctc.phase_out.increment", - "description": "Maryland reduces the Child Tax Credit for every dollar amount (or fraction thereof) of federal adjusted gross income above the threshold by this increment.", - "label": "Maryland Child Tax Credit phase-out income increment", - "unit": "currency-USD", - "period": "year", - "values": { - "2025-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.ctc.phase_out.rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.ctc.phase_out.rate", - "description": "Maryland reduces the Child Tax Credit by this amount for every increment of federal adjusted gross income above the phase-out threshold.", - "label": "Maryland Child Tax Credit phase-out rate per increment of excess federal adjusted gross income", - "unit": "currency-USD", - "period": "year", - "values": { - "2025-01-01": 50, - "2015-01-01": 50 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.ctc.phase_out.applies": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.ctc.phase_out.applies", - "description": "Maryland phases out its Child Tax Credit when this is true.", - "label": "Maryland Child Tax Credit phase-out applies", - "unit": "bool", - "period": "year", - "values": { - "2025-01-01": true, - "2013-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.ctc.phase_out.threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.ctc.phase_out.threshold", - "description": "Maryland phases out its Child Tax Credit for filers with federal adjusted gross income above this threshold.", - "label": "Maryland Child Tax Credit phase-out threshold", - "unit": "currency-USD", - "period": "year", - "values": { - "2025-01-01": 15000, - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.ctc.amount": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.ctc.amount", - "description": "Maryland's Child Tax Credit provides this amount to eligible children.", - "label": "Maryland Child Tax Credit amount per eligible child", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 500, - "2015-01-01": 500 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.ctc.agi_cap": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.ctc.agi_cap", - "description": "Maryland limits its Child Tax Credit to filers below this adjusted gross income.", - "label": "Maryland Child Tax Credit AGI cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2023-01-01": 15000, - "2021-01-01": 6000, - "2015-01-01": 6000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.cdcc": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.credits.cdcc", - "description": null, - "label": "Child and Dependent Care Credit", - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.cdcc.percent": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.cdcc.percent", - "description": "Maryland matches up to this share of the federal Child and Dependent Care Credit.", - "label": "Maryland percent of federal CDCC", - "unit": "/1", - "period": "year", - "values": { - "2019-01-01": 0.32, - "2015-01-01": 0.32 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.cdcc.eligibility": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.credits.cdcc.eligibility", - "description": null, - "label": "eligibility", - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.cdcc.eligibility.refundable_agi_cap": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.credits.cdcc.eligibility.refundable_agi_cap", - "description": "Maryland limits its refundable Child and Dependent Care Credit to filers with adjusted gross income below these thresholds.", - "label": "Maryland refundable CDCC AGI cap", - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.cdcc.eligibility.refundable_agi_cap.JOINT": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.cdcc.eligibility.refundable_agi_cap.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 110950, - "2034-01-01": 108800, - "2033-01-01": 106650, - "2032-01-01": 104600, - "2031-01-01": 102550, - "2030-01-01": 100600, - "2029-01-01": 98600, - "2028-01-01": 96700, - "2027-01-01": 94700, - "2026-01-01": 92450, - "2025-01-01": 91050, - "2024-01-01": 89100, - "2023-01-01": 84500, - "2022-01-01": 83650, - "2021-01-01": 78150, - "2020-01-01": 75750, - "2019-01-01": 75000, - "2015-01-01": 75000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.cdcc.eligibility.refundable_agi_cap.SINGLE": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.cdcc.eligibility.refundable_agi_cap.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 73950, - "2034-01-01": 72500, - "2033-01-01": 71100, - "2032-01-01": 69700, - "2031-01-01": 68350, - "2030-01-01": 67050, - "2029-01-01": 65750, - "2028-01-01": 64450, - "2027-01-01": 63150, - "2026-01-01": 61600, - "2025-01-01": 60700, - "2024-01-01": 59400, - "2023-01-01": 56300, - "2022-01-01": 55750, - "2021-01-01": 52100, - "2020-01-01": 50500, - "2019-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.cdcc.eligibility.refundable_agi_cap.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.cdcc.eligibility.refundable_agi_cap.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 73950, - "2034-01-01": 72500, - "2033-01-01": 71100, - "2032-01-01": 69700, - "2031-01-01": 68350, - "2030-01-01": 67050, - "2029-01-01": 65750, - "2028-01-01": 64450, - "2027-01-01": 63150, - "2026-01-01": 61600, - "2025-01-01": 60700, - "2024-01-01": 59400, - "2023-01-01": 56300, - "2022-01-01": 55750, - "2021-01-01": 52100, - "2020-01-01": 50500, - "2019-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.cdcc.eligibility.refundable_agi_cap.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.cdcc.eligibility.refundable_agi_cap.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 73950, - "2034-01-01": 72500, - "2033-01-01": 71100, - "2032-01-01": 69700, - "2031-01-01": 68350, - "2030-01-01": 67050, - "2029-01-01": 65750, - "2028-01-01": 64450, - "2027-01-01": 63150, - "2026-01-01": 61600, - "2025-01-01": 60700, - "2024-01-01": 59400, - "2023-01-01": 56300, - "2022-01-01": 55750, - "2021-01-01": 52100, - "2020-01-01": 50500, - "2019-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.cdcc.eligibility.refundable_agi_cap.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.cdcc.eligibility.refundable_agi_cap.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 73950, - "2034-01-01": 72500, - "2033-01-01": 71100, - "2032-01-01": 69700, - "2031-01-01": 68350, - "2030-01-01": 67050, - "2029-01-01": 65750, - "2028-01-01": 64450, - "2027-01-01": 63150, - "2026-01-01": 61600, - "2025-01-01": 60700, - "2024-01-01": 59400, - "2023-01-01": 56300, - "2022-01-01": 55750, - "2021-01-01": 52100, - "2020-01-01": 50500, - "2019-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.cdcc.eligibility.agi_cap": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.credits.cdcc.eligibility.agi_cap", - "description": "Maryland limits its Child and Dependent Care Credit to filers whose adjusted gross income does not exceed these thresholds.", - "label": "Maryland CDCC AGI cap", - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.cdcc.eligibility.agi_cap.JOINT": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.cdcc.eligibility.agi_cap.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 211550, - "2034-01-01": 207450, - "2033-01-01": 203400, - "2032-01-01": 199450, - "2031-01-01": 195600, - "2030-01-01": 191800, - "2029-01-01": 188100, - "2028-01-01": 184400, - "2027-01-01": 180650, - "2026-01-01": 176300, - "2025-01-01": 173650, - "2024-01-01": 169900, - "2023-01-01": 161100, - "2022-01-01": 159500, - "2021-01-01": 149050, - "2020-01-01": 144450, - "2019-01-01": 143000, - "2015-01-01": 143000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.cdcc.eligibility.agi_cap.SINGLE": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.cdcc.eligibility.agi_cap.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 136100, - "2034-01-01": 133450, - "2033-01-01": 130850, - "2032-01-01": 128300, - "2031-01-01": 125850, - "2030-01-01": 123400, - "2029-01-01": 121000, - "2028-01-01": 118600, - "2027-01-01": 116200, - "2026-01-01": 113400, - "2025-01-01": 111700, - "2024-01-01": 109300, - "2023-01-01": 103650, - "2022-01-01": 102600, - "2021-01-01": 95900, - "2020-01-01": 92950, - "2019-01-01": 92000, - "2015-01-01": 92000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.cdcc.eligibility.agi_cap.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.cdcc.eligibility.agi_cap.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 136100, - "2034-01-01": 133450, - "2033-01-01": 130850, - "2032-01-01": 128300, - "2031-01-01": 125850, - "2030-01-01": 123400, - "2029-01-01": 121000, - "2028-01-01": 118600, - "2027-01-01": 116200, - "2026-01-01": 113400, - "2025-01-01": 111700, - "2024-01-01": 109300, - "2023-01-01": 103650, - "2022-01-01": 102600, - "2021-01-01": 95900, - "2020-01-01": 92950, - "2019-01-01": 92000, - "2015-01-01": 92000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.cdcc.eligibility.agi_cap.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.cdcc.eligibility.agi_cap.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 136100, - "2034-01-01": 133450, - "2033-01-01": 130850, - "2032-01-01": 128300, - "2031-01-01": 125850, - "2030-01-01": 123400, - "2029-01-01": 121000, - "2028-01-01": 118600, - "2027-01-01": 116200, - "2026-01-01": 113400, - "2025-01-01": 111700, - "2024-01-01": 109300, - "2023-01-01": 103650, - "2022-01-01": 102600, - "2021-01-01": 95900, - "2020-01-01": 92950, - "2019-01-01": 92000, - "2015-01-01": 92000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.cdcc.eligibility.agi_cap.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.cdcc.eligibility.agi_cap.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 136100, - "2034-01-01": 133450, - "2033-01-01": 130850, - "2032-01-01": 128300, - "2031-01-01": 125850, - "2030-01-01": 123400, - "2029-01-01": 121000, - "2028-01-01": 118600, - "2027-01-01": 116200, - "2026-01-01": 113400, - "2025-01-01": 111700, - "2024-01-01": 109300, - "2023-01-01": 103650, - "2022-01-01": 102600, - "2021-01-01": 95900, - "2020-01-01": 92950, - "2019-01-01": 92000, - "2015-01-01": 92000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.cdcc.phase_out": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.credits.cdcc.phase_out", - "description": null, - "label": "Phase-out", - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.cdcc.phase_out.increment": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.credits.cdcc.phase_out.increment", - "description": "Maryland reduces its Child and Dependent Care Credit by a percentage for each of these increments of a filer's income above its phase-out start.", - "label": "Maryland CDCC phase-out increment", - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.cdcc.phase_out.increment.JOINT": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.cdcc.phase_out.increment.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2019-01-01": 3000, - "2015-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.cdcc.phase_out.increment.SINGLE": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.cdcc.phase_out.increment.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2019-01-01": 2000, - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.cdcc.phase_out.increment.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.cdcc.phase_out.increment.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2019-01-01": 2000, - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.cdcc.phase_out.increment.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.cdcc.phase_out.increment.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2019-01-01": 2000, - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.cdcc.phase_out.increment.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.cdcc.phase_out.increment.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2019-01-01": 2000, - "2015-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.cdcc.phase_out.percent": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.cdcc.phase_out.percent", - "description": "Maryland reduces its Child and Dependent Care Credit by this percentage for each increment of a filer's income above its phase-out start.", - "label": "Maryland CDCC phase-out percent", - "unit": "/1", - "period": "year", - "values": { - "2019-01-01": 0.01, - "2015-01-01": 0.01 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.cdcc.phase_out.start": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.credits.cdcc.phase_out.start", - "description": "Maryland phases out its Child and Dependent Care Credit for filers above this income level.", - "label": "Maryland CDCC phase-out start", - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.cdcc.phase_out.start.JOINT": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.cdcc.phase_out.start.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2019-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.cdcc.phase_out.start.SINGLE": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.cdcc.phase_out.start.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2019-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.cdcc.phase_out.start.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.cdcc.phase_out.start.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2019-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.cdcc.phase_out.start.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.cdcc.phase_out.start.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2019-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.cdcc.phase_out.start.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.cdcc.phase_out.start.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2019-01-01": 30000, - "2015-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.credits.non_refundable": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.credits.non_refundable", - "description": "Maryland list of non-refundable tax credits.", - "label": "non refundable", - "unit": null, - "period": null, - "values": { - "2022-01-01": [ - "md_cdcc", - "md_non_refundable_eitc", - "md_poverty_line_credit", - "md_senior_tax_credit" - ], - "2020-01-01": ["md_cdcc", "md_non_refundable_eitc", "md_poverty_line_credit"], - "2015-01-01": ["md_cdcc", "md_non_refundable_eitc", "md_poverty_line_credit"] - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.exemptions": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.exemptions", - "description": null, - "label": "exemptions", - "economy": true, - "household": true - }, - "gov.states.md.tax.income.exemptions.aged": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.exemptions.aged", - "description": null, - "label": "aged", - "economy": true, - "household": true - }, - "gov.states.md.tax.income.exemptions.aged.age": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.exemptions.aged.age", - "description": "Maryland provides an additional tax exemption to people of at least this age.", - "label": "Maryland income tax aged exemption age threshold", - "unit": "year", - "period": "year", - "values": { - "2013-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.exemptions.aged.amount": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.exemptions.aged.amount", - "description": "Maryland provides a tax exemption of this amount per aged head or spouse.", - "label": "Maryland income tax aged exemption", - "unit": "currency-USD", - "period": "year", - "values": { - "2013-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.exemptions.aged.aged_dependent": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.exemptions.aged.aged_dependent", - "description": "Maryland provides a tax exemption of this amount per aged dependent.", - "label": "Maryland income tax aged dependent exemption", - "unit": "currency-USD", - "period": "year", - "values": { - "2013-01-01": 3200 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.exemptions.blind": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.exemptions.blind", - "description": "Maryland provides an exemption of this amount per blind head or spouse.", - "label": "Maryland income tax blind exemption", - "unit": "currency-USD", - "period": "year", - "values": { - "2021-01-01": 1000, - "2015-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.exemptions.personal": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.exemptions.personal", - "description": null, - "label": "personal", - "economy": true, - "household": true - }, - "gov.states.md.tax.income.exemptions.personal.separate": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.exemptions.personal.separate", - "description": "Maryland provides a personal exemption of this amount for married filing separately filers, based on adjusted gross income.", - "label": "Maryland personal exemption for married filing separate filers, based on AGI" - }, - "gov.states.md.tax.income.exemptions.personal.separate[0]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.exemptions.personal.separate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.md.tax.income.exemptions.personal.separate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.exemptions.personal.separate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.exemptions.personal.separate[0].amount": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.exemptions.personal.separate[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 3200, - "2015-01-01": 3200 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.exemptions.personal.separate[1]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.exemptions.personal.separate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.md.tax.income.exemptions.personal.separate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.exemptions.personal.separate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.exemptions.personal.separate[1].amount": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.exemptions.personal.separate[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 1600, - "2015-01-01": 1600 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.exemptions.personal.separate[2]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.exemptions.personal.separate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.md.tax.income.exemptions.personal.separate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.exemptions.personal.separate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 125000, - "2015-01-01": 125000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.exemptions.personal.separate[2].amount": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.exemptions.personal.separate[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 800, - "2015-01-01": 800 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.exemptions.personal.separate[3]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.exemptions.personal.separate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.md.tax.income.exemptions.personal.separate[3].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.exemptions.personal.separate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.exemptions.personal.separate[3].amount": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.exemptions.personal.separate[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.exemptions.personal.joint": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.exemptions.personal.joint", - "description": "Maryland provides a personal exemption of this amount for joint filers, based on adjusted gross income.", - "label": "Maryland personal exemption for joint filers, based on AGI" - }, - "gov.states.md.tax.income.exemptions.personal.joint[0]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.exemptions.personal.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.md.tax.income.exemptions.personal.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.exemptions.personal.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.exemptions.personal.joint[0].amount": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.exemptions.personal.joint[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 3200, - "2015-01-01": 3200 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.exemptions.personal.joint[1]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.exemptions.personal.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.md.tax.income.exemptions.personal.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.exemptions.personal.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.exemptions.personal.joint[1].amount": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.exemptions.personal.joint[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 1600, - "2015-01-01": 1600 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.exemptions.personal.joint[2]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.exemptions.personal.joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.md.tax.income.exemptions.personal.joint[2].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.exemptions.personal.joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 175000, - "2015-01-01": 175000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.exemptions.personal.joint[2].amount": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.exemptions.personal.joint[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 800, - "2015-01-01": 800 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.exemptions.personal.joint[3]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.exemptions.personal.joint[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.md.tax.income.exemptions.personal.joint[3].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.exemptions.personal.joint[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 200000, - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.exemptions.personal.joint[3].amount": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.exemptions.personal.joint[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.exemptions.personal.single": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.exemptions.personal.single", - "description": "Maryland provides a personal exemption of this amount for single filers, based on adjusted gross income.", - "label": "Maryland personal exemption for single filers, based on AGI" - }, - "gov.states.md.tax.income.exemptions.personal.single[0]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.exemptions.personal.single[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.md.tax.income.exemptions.personal.single[0].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.exemptions.personal.single[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.exemptions.personal.single[0].amount": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.exemptions.personal.single[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 3200, - "2015-01-01": 3200 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.exemptions.personal.single[1]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.exemptions.personal.single[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.md.tax.income.exemptions.personal.single[1].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.exemptions.personal.single[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.exemptions.personal.single[1].amount": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.exemptions.personal.single[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 1600, - "2015-01-01": 1600 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.exemptions.personal.single[2]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.exemptions.personal.single[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.md.tax.income.exemptions.personal.single[2].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.exemptions.personal.single[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 125000, - "2015-01-01": 125000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.exemptions.personal.single[2].amount": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.exemptions.personal.single[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 800, - "2015-01-01": 800 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.exemptions.personal.single[3]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.exemptions.personal.single[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.md.tax.income.exemptions.personal.single[3].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.exemptions.personal.single[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.exemptions.personal.single[3].amount": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.exemptions.personal.single[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.exemptions.personal.head": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.exemptions.personal.head", - "description": "Maryland provides a personal exemption of this amount for head of household filers, based on adjusted gross income.", - "label": "Maryland personal exemption for head of household filers, based on AGI" - }, - "gov.states.md.tax.income.exemptions.personal.head[0]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.exemptions.personal.head[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.md.tax.income.exemptions.personal.head[0].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.exemptions.personal.head[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.exemptions.personal.head[0].amount": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.exemptions.personal.head[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 3200, - "2015-01-01": 3200 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.exemptions.personal.head[1]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.exemptions.personal.head[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.md.tax.income.exemptions.personal.head[1].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.exemptions.personal.head[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.exemptions.personal.head[1].amount": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.exemptions.personal.head[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 1600, - "2015-01-01": 1600 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.exemptions.personal.head[2]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.exemptions.personal.head[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.md.tax.income.exemptions.personal.head[2].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.exemptions.personal.head[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 175000, - "2015-01-01": 175000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.exemptions.personal.head[2].amount": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.exemptions.personal.head[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 800, - "2015-01-01": 800 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.exemptions.personal.head[3]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.exemptions.personal.head[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.md.tax.income.exemptions.personal.head[3].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.exemptions.personal.head[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 200000, - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.exemptions.personal.head[3].amount": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.exemptions.personal.head[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.exemptions.personal.surviving_spouse": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.exemptions.personal.surviving_spouse", - "description": "Maryland provides a personal exemption of this amount for surviving spouse filers, based on adjusted gross income.", - "label": "Maryland personal exemption for surviving spouse filers, based on AGI" - }, - "gov.states.md.tax.income.exemptions.personal.surviving_spouse[0]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.exemptions.personal.surviving_spouse[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.md.tax.income.exemptions.personal.surviving_spouse[0].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.exemptions.personal.surviving_spouse[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.exemptions.personal.surviving_spouse[0].amount": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.exemptions.personal.surviving_spouse[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 3200, - "2015-01-01": 3200 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.exemptions.personal.surviving_spouse[1]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.exemptions.personal.surviving_spouse[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.md.tax.income.exemptions.personal.surviving_spouse[1].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.exemptions.personal.surviving_spouse[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 150000, - "2015-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.exemptions.personal.surviving_spouse[1].amount": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.exemptions.personal.surviving_spouse[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 1600, - "2015-01-01": 1600 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.exemptions.personal.surviving_spouse[2]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.exemptions.personal.surviving_spouse[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.md.tax.income.exemptions.personal.surviving_spouse[2].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.exemptions.personal.surviving_spouse[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 175000, - "2015-01-01": 175000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.exemptions.personal.surviving_spouse[2].amount": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.exemptions.personal.surviving_spouse[2].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 800, - "2015-01-01": 800 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.exemptions.personal.surviving_spouse[3]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.exemptions.personal.surviving_spouse[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.md.tax.income.exemptions.personal.surviving_spouse[3].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.exemptions.personal.surviving_spouse[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 200000, - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.exemptions.personal.surviving_spouse[3].amount": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.exemptions.personal.surviving_spouse[3].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.capital_gains": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.capital_gains", - "description": null, - "label": "capital gains", - "economy": true, - "household": true - }, - "gov.states.md.tax.income.capital_gains.surtax_rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.capital_gains.surtax_rate", - "description": "Maryland applies this surtax rate to net capital gains for high earners.", - "label": "Maryland capital gains surtax rate", - "unit": "/1", - "period": "year", - "values": { - "2025-01-01": 0.02, - "2015-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.capital_gains.surtax_applies": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.capital_gains.surtax_applies", - "description": "Maryland applies a capital gains surtax in the following years.", - "label": "Maryland capital gains surtax applies", - "unit": "bool", - "period": "year", - "values": { - "2025-01-01": true, - "2013-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.capital_gains.surtax_threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.capital_gains.surtax_threshold", - "description": "Maryland applies the capital gains surtax to filers with adjusted gross income exceeding this threshold.", - "label": "Maryland capital gains surtax AGI threshold", - "unit": "currency-USD", - "period": "year", - "values": { - "2025-01-01": 350000, - "2015-01-01": 350000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates", - "description": null, - "label": "rates", - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.head_of_household": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.head_of_household", - "description": "Maryland taxes income at these rates for head of household filers.", - "label": "Maryland income tax rate for head of household filers" - }, - "gov.states.md.tax.income.rates.head_of_household[0]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.head_of_household[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.md.tax.income.rates.head_of_household[0].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.head_of_household[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.head_of_household[0].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.head_of_household[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2013-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.head_of_household[1]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.head_of_household[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.md.tax.income.rates.head_of_household[1].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.head_of_household[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.head_of_household[1].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.head_of_household[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2013-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.head_of_household[2]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.head_of_household[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.md.tax.income.rates.head_of_household[2].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.head_of_household[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.head_of_household[2].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.head_of_household[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2013-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.head_of_household[3]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.head_of_household[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.md.tax.income.rates.head_of_household[3].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.head_of_household[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.0475 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.head_of_household[3].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.head_of_household[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2013-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.head_of_household[4]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.head_of_household[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.md.tax.income.rates.head_of_household[4].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.head_of_household[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.head_of_household[4].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.head_of_household[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2013-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.head_of_household[5]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.head_of_household[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.md.tax.income.rates.head_of_household[5].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.head_of_household[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.0525 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.head_of_household[5].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.head_of_household[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2013-01-01": 175000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.head_of_household[6]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.head_of_household[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.md.tax.income.rates.head_of_household[6].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.head_of_household[6].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.055 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.head_of_household[6].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.head_of_household[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2013-01-01": 225000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.head_of_household[7]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.head_of_household[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.md.tax.income.rates.head_of_household[7].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.head_of_household[7].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.0575 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.head_of_household[7].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.head_of_household[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2013-01-01": 300000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.head_of_household[8]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.head_of_household[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.md.tax.income.rates.head_of_household[8].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.head_of_household[8].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2025-01-01": 0.0625, - "2015-01-01": 0.0625 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.head_of_household[8].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.head_of_household[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": 600000, - "2013-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.head_of_household[9]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.head_of_household[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.md.tax.income.rates.head_of_household[9].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.head_of_household[9].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2025-01-01": 0.065, - "2015-01-01": 0.065 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.head_of_household[9].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.head_of_household[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": 1200000, - "2013-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.separate": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.separate", - "description": "Maryland taxes income at these rates for married filing separately filers.", - "label": "Maryland income tax rate for married filing separately filers." - }, - "gov.states.md.tax.income.rates.separate[0]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.separate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.md.tax.income.rates.separate[0].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.separate[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.separate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.separate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2013-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.separate[1]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.separate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.md.tax.income.rates.separate[1].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.separate[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.separate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.separate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2013-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.separate[2]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.separate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.md.tax.income.rates.separate[2].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.separate[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.separate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.separate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2013-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.separate[3]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.separate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.md.tax.income.rates.separate[3].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.separate[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.0475 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.separate[3].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.separate[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2013-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.separate[4]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.separate[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.md.tax.income.rates.separate[4].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.separate[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.separate[4].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.separate[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2013-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.separate[5]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.separate[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.md.tax.income.rates.separate[5].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.separate[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.0525 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.separate[5].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.separate[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2013-01-01": 125000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.separate[6]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.separate[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.md.tax.income.rates.separate[6].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.separate[6].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.055 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.separate[6].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.separate[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2013-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.separate[7]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.separate[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.md.tax.income.rates.separate[7].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.separate[7].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.0575 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.separate[7].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.separate[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2013-01-01": 250000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.separate[8]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.separate[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.md.tax.income.rates.separate[8].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.separate[8].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2025-01-01": 0.0625, - "2015-01-01": 0.0625 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.separate[8].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.separate[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": 500000, - "2013-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.separate[9]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.separate[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.md.tax.income.rates.separate[9].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.separate[9].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2025-01-01": 0.065, - "2015-01-01": 0.065 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.separate[9].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.separate[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": 1000000, - "2013-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.joint": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.joint", - "description": "Maryland taxes income at these rates for joint filers.", - "label": "Maryland income tax rate for joint filers" - }, - "gov.states.md.tax.income.rates.joint[0]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.md.tax.income.rates.joint[0].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.joint[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2013-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.joint[1]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.md.tax.income.rates.joint[1].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.joint[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2013-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.joint[2]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.md.tax.income.rates.joint[2].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.joint[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.joint[2].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2013-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.joint[3]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.joint[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.md.tax.income.rates.joint[3].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.joint[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.0475 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.joint[3].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.joint[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2013-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.joint[4]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.joint[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.md.tax.income.rates.joint[4].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.joint[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.joint[4].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.joint[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2013-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.joint[5]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.joint[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.md.tax.income.rates.joint[5].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.joint[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.0525 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.joint[5].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.joint[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2013-01-01": 175000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.joint[6]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.joint[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.md.tax.income.rates.joint[6].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.joint[6].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.055 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.joint[6].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.joint[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2013-01-01": 225000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.joint[7]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.joint[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.md.tax.income.rates.joint[7].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.joint[7].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.0575 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.joint[7].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.joint[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2013-01-01": 300000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.joint[8]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.joint[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.md.tax.income.rates.joint[8].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.joint[8].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2025-01-01": 0.0625, - "2015-01-01": 0.0625 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.joint[8].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.joint[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": 600000, - "2013-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.joint[9]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.joint[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.md.tax.income.rates.joint[9].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.joint[9].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2025-01-01": 0.065, - "2015-01-01": 0.065 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.joint[9].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.joint[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": 1200000, - "2013-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.single": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.single", - "description": "Maryland taxes income at these rates for single filers.", - "label": "Maryland income tax rate for single filers." - }, - "gov.states.md.tax.income.rates.single[0]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.single[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.md.tax.income.rates.single[0].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.single[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.single[0].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.single[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2013-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.single[1]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.single[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.md.tax.income.rates.single[1].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.single[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.single[1].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.single[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2013-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.single[2]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.single[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.md.tax.income.rates.single[2].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.single[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.single[2].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.single[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2013-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.single[3]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.single[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.md.tax.income.rates.single[3].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.single[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.0475 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.single[3].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.single[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2013-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.single[4]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.single[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.md.tax.income.rates.single[4].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.single[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.single[4].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.single[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2013-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.single[5]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.single[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.md.tax.income.rates.single[5].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.single[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.0525 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.single[5].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.single[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2013-01-01": 125000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.single[6]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.single[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.md.tax.income.rates.single[6].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.single[6].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.055 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.single[6].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.single[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2013-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.single[7]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.single[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.md.tax.income.rates.single[7].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.single[7].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.0575 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.single[7].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.single[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2013-01-01": 250000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.single[8]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.single[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.md.tax.income.rates.single[8].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.single[8].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2025-01-01": 0.0625, - "2015-01-01": 0.0625 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.single[8].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.single[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": 500000, - "2013-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.single[9]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.single[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.md.tax.income.rates.single[9].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.single[9].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2025-01-01": 0.065, - "2015-01-01": 0.065 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.single[9].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.single[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": 1000000, - "2013-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.surviving_spouse": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.surviving_spouse", - "description": "Maryland taxes income at these rates for surviving spouse filers.", - "label": "Maryland income tax rate for surviving spouse filers" - }, - "gov.states.md.tax.income.rates.surviving_spouse[0]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.surviving_spouse[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.md.tax.income.rates.surviving_spouse[0].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.surviving_spouse[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.surviving_spouse[0].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.surviving_spouse[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2013-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.surviving_spouse[1]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.surviving_spouse[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.md.tax.income.rates.surviving_spouse[1].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.surviving_spouse[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.surviving_spouse[1].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.surviving_spouse[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2013-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.surviving_spouse[2]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.surviving_spouse[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.md.tax.income.rates.surviving_spouse[2].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.surviving_spouse[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.surviving_spouse[2].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.surviving_spouse[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2013-01-01": 2000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.surviving_spouse[3]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.surviving_spouse[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.md.tax.income.rates.surviving_spouse[3].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.surviving_spouse[3].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.0475 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.surviving_spouse[3].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.surviving_spouse[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2013-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.surviving_spouse[4]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.surviving_spouse[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.md.tax.income.rates.surviving_spouse[4].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.surviving_spouse[4].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.05 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.surviving_spouse[4].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.surviving_spouse[4].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2013-01-01": 150000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.surviving_spouse[5]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.surviving_spouse[5]", - "description": null, - "label": "bracket 6" - }, - "gov.states.md.tax.income.rates.surviving_spouse[5].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.surviving_spouse[5].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.0525 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.surviving_spouse[5].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.surviving_spouse[5].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2013-01-01": 175000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.surviving_spouse[6]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.surviving_spouse[6]", - "description": null, - "label": "bracket 7" - }, - "gov.states.md.tax.income.rates.surviving_spouse[6].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.surviving_spouse[6].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.055 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.surviving_spouse[6].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.surviving_spouse[6].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2013-01-01": 225000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.surviving_spouse[7]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.surviving_spouse[7]", - "description": null, - "label": "bracket 8" - }, - "gov.states.md.tax.income.rates.surviving_spouse[7].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.surviving_spouse[7].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2013-01-01": 0.0575 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.surviving_spouse[7].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.surviving_spouse[7].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2013-01-01": 300000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.surviving_spouse[8]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.surviving_spouse[8]", - "description": null, - "label": "bracket 9" - }, - "gov.states.md.tax.income.rates.surviving_spouse[8].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.surviving_spouse[8].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2025-01-01": 0.0625, - "2015-01-01": 0.0625 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.surviving_spouse[8].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.surviving_spouse[8].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": 600000, - "2013-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.surviving_spouse[9]": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.rates.surviving_spouse[9]", - "description": null, - "label": "bracket 10" - }, - "gov.states.md.tax.income.rates.surviving_spouse[9].rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.surviving_spouse[9].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2025-01-01": 0.065, - "2015-01-01": 0.065 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.rates.surviving_spouse[9].threshold": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.rates.surviving_spouse[9].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": 1200000, - "2013-01-01": "Infinity" - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.deductions": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.deductions", - "description": null, - "label": "deductions", - "economy": true, - "household": true - }, - "gov.states.md.tax.income.deductions.itemized": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.deductions.itemized", - "description": null, - "label": "itemized", - "economy": true, - "household": true - }, - "gov.states.md.tax.income.deductions.itemized.phase_out": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.deductions.itemized.phase_out", - "description": null, - "label": "phase out", - "economy": true, - "household": true - }, - "gov.states.md.tax.income.deductions.itemized.phase_out.rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.deductions.itemized.phase_out.rate", - "description": "Maryland reduces itemized deductions by this rate of the amount over the phase-out threshold.", - "label": "Maryland itemized deduction phase-out rate", - "unit": "/1", - "period": "year", - "values": { - "2025-01-01": 0.075, - "2015-01-01": 0.075 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.deductions.itemized.phase_out.applies": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.deductions.itemized.phase_out.applies", - "description": "Maryland phases out itemized deductions in the following years.", - "label": "Maryland itemized deduction phase-out applies", - "unit": "bool", - "period": "year", - "values": { - "2025-01-01": true, - "2013-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.deductions.itemized.phase_out.threshold": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.deductions.itemized.phase_out.threshold", - "description": "Maryland phases out itemized deductions for filers with federal adjusted gross income above these thresholds.", - "label": "Maryland itemized deduction phase-out threshold", - "economy": true, - "household": true - }, - "gov.states.md.tax.income.deductions.itemized.phase_out.threshold.SINGLE": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.deductions.itemized.phase_out.threshold.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2025-01-01": 200000, - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.deductions.itemized.phase_out.threshold.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.deductions.itemized.phase_out.threshold.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2025-01-01": 200000, - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.deductions.itemized.phase_out.threshold.JOINT": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.deductions.itemized.phase_out.threshold.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2025-01-01": 200000, - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.deductions.itemized.phase_out.threshold.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.deductions.itemized.phase_out.threshold.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2025-01-01": 100000, - "2015-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.deductions.itemized.phase_out.threshold.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.deductions.itemized.phase_out.threshold.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2025-01-01": 200000, - "2015-01-01": 200000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.deductions.standard": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.deductions.standard", - "description": null, - "label": "standard", - "economy": true, - "household": true - }, - "gov.states.md.tax.income.deductions.standard.max": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.deductions.standard.max", - "description": "Maryland provides a standard deduction of up to this amount.", - "label": "Maryland maximum standard deduction", - "economy": true, - "household": true - }, - "gov.states.md.tax.income.deductions.standard.max.JOINT": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.deductions.standard.max.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2035-01-01": 6750, - "2034-01-01": 6650, - "2033-01-01": 6500, - "2032-01-01": 6350, - "2031-01-01": 6250, - "2030-01-01": 6150, - "2029-01-01": 6000, - "2028-01-01": 5900, - "2027-01-01": 5750, - "2026-01-01": 5650, - "2025-01-01": 5550, - "2024-01-01": 5450, - "2023-01-01": 5150, - "2022-01-01": 4850, - "2021-01-01": 4700, - "2018-01-01": 4500, - "2015-01-01": 4500 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.deductions.standard.max.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.deductions.standard.max.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2035-01-01": 6750, - "2034-01-01": 6650, - "2033-01-01": 6500, - "2032-01-01": 6350, - "2031-01-01": 6250, - "2030-01-01": 6150, - "2029-01-01": 6000, - "2028-01-01": 5900, - "2027-01-01": 5750, - "2026-01-01": 5650, - "2025-01-01": 5550, - "2024-01-01": 5450, - "2023-01-01": 5150, - "2022-01-01": 4850, - "2021-01-01": 4700, - "2018-01-01": 4500, - "2015-01-01": 4500 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.deductions.standard.max.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.deductions.standard.max.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 6750, - "2034-01-01": 6650, - "2033-01-01": 6500, - "2032-01-01": 6350, - "2031-01-01": 6250, - "2030-01-01": 6150, - "2029-01-01": 6000, - "2028-01-01": 5900, - "2027-01-01": 5750, - "2026-01-01": 5650, - "2025-01-01": 5550, - "2024-01-01": 5450, - "2023-01-01": 5150, - "2022-01-01": 4850, - "2021-01-01": 4700, - "2018-01-01": 4500, - "2015-01-01": 4500 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.deductions.standard.max.SINGLE": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.deductions.standard.max.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 3350, - "2034-01-01": 3250, - "2033-01-01": 3200, - "2032-01-01": 3150, - "2031-01-01": 3100, - "2030-01-01": 3000, - "2029-01-01": 2950, - "2028-01-01": 2900, - "2027-01-01": 2850, - "2026-01-01": 2800, - "2025-01-01": 2750, - "2024-01-01": 2700, - "2023-01-01": 2550, - "2022-01-01": 2400, - "2021-01-01": 2350, - "2018-01-01": 2250, - "2015-01-01": 2250 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.deductions.standard.max.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.deductions.standard.max.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 3350, - "2034-01-01": 3250, - "2033-01-01": 3200, - "2032-01-01": 3150, - "2031-01-01": 3100, - "2030-01-01": 3000, - "2029-01-01": 2950, - "2028-01-01": 2900, - "2027-01-01": 2850, - "2026-01-01": 2800, - "2025-01-01": 2750, - "2024-01-01": 2700, - "2023-01-01": 2550, - "2022-01-01": 2400, - "2021-01-01": 2350, - "2018-01-01": 2250, - "2015-01-01": 2250 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.deductions.standard.rate": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.deductions.standard.rate", - "description": "Maryland provides a standard deduction of this share of a filer's adjusted gross income.", - "label": "Maryland standard deduction as a percent of AGI", - "unit": "/1", - "period": "year", - "values": { - "2018-01-01": 0.15, - "2015-01-01": 0.15 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.deductions.standard.flat_deduction": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.deductions.standard.flat_deduction", - "description": null, - "label": "flat deduction", - "economy": true, - "household": true - }, - "gov.states.md.tax.income.deductions.standard.flat_deduction.amount": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.deductions.standard.flat_deduction.amount", - "description": "Maryland applies the following flat standard deduction amount post 2025, based on filing status.", - "label": "Maryland standard deduction flat amount", - "economy": true, - "household": true - }, - "gov.states.md.tax.income.deductions.standard.flat_deduction.amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.deductions.standard.flat_deduction.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 8150, - "2034-01-01": 8000, - "2033-01-01": 7800, - "2032-01-01": 7650, - "2031-01-01": 7500, - "2030-01-01": 7400, - "2029-01-01": 7250, - "2028-01-01": 7100, - "2027-01-01": 6950, - "2026-01-01": 6800, - "2025-01-01": 6700, - "2015-01-01": 6700 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.deductions.standard.flat_deduction.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.deductions.standard.flat_deduction.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 8150, - "2034-01-01": 8000, - "2033-01-01": 7800, - "2032-01-01": 7650, - "2031-01-01": 7500, - "2030-01-01": 7400, - "2029-01-01": 7250, - "2028-01-01": 7100, - "2027-01-01": 6950, - "2026-01-01": 6800, - "2025-01-01": 6700, - "2015-01-01": 6700 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.deductions.standard.flat_deduction.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.deductions.standard.flat_deduction.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 8150, - "2034-01-01": 8000, - "2033-01-01": 7800, - "2032-01-01": 7650, - "2031-01-01": 7500, - "2030-01-01": 7400, - "2029-01-01": 7250, - "2028-01-01": 7100, - "2027-01-01": 6950, - "2026-01-01": 6800, - "2025-01-01": 6700, - "2015-01-01": 6700 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.deductions.standard.flat_deduction.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.deductions.standard.flat_deduction.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 4050, - "2034-01-01": 4000, - "2033-01-01": 3900, - "2032-01-01": 3800, - "2031-01-01": 3750, - "2030-01-01": 3700, - "2029-01-01": 3600, - "2028-01-01": 3550, - "2027-01-01": 3450, - "2026-01-01": 3400, - "2025-01-01": 3350, - "2015-01-01": 3350 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.deductions.standard.flat_deduction.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.deductions.standard.flat_deduction.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 4050, - "2034-01-01": 4000, - "2033-01-01": 3900, - "2032-01-01": 3800, - "2031-01-01": 3750, - "2030-01-01": 3700, - "2029-01-01": 3600, - "2028-01-01": 3550, - "2027-01-01": 3450, - "2026-01-01": 3400, - "2025-01-01": 3350, - "2015-01-01": 3350 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.deductions.standard.flat_deduction.applies": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.deductions.standard.flat_deduction.applies", - "description": "Maryland applies a flat standard deduction amount in the following years.", - "label": "Maryland standard deduction flat amount applies", - "unit": "bool", - "period": "year", - "values": { - "2025-01-01": true, - "2013-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.deductions.standard.min": { - "type": "parameterNode", - "parameter": "gov.states.md.tax.income.deductions.standard.min", - "description": "Maryland provides a standard deduction of at least this amount.", - "label": "Maryland minimum standard deduction", - "economy": true, - "household": true - }, - "gov.states.md.tax.income.deductions.standard.min.JOINT": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.deductions.standard.min.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "2035-01-01": 4500, - "2034-01-01": 4450, - "2033-01-01": 4350, - "2032-01-01": 4250, - "2031-01-01": 4200, - "2030-01-01": 4100, - "2029-01-01": 4000, - "2028-01-01": 3950, - "2027-01-01": 3850, - "2026-01-01": 3750, - "2025-01-01": 3700, - "2024-01-01": 3650, - "2023-01-01": 3450, - "2022-01-01": 3200, - "2021-01-01": 3100, - "2018-01-01": 3000, - "2015-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.deductions.standard.min.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.deductions.standard.min.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "2035-01-01": 4500, - "2034-01-01": 4450, - "2033-01-01": 4350, - "2032-01-01": 4250, - "2031-01-01": 4200, - "2030-01-01": 4100, - "2029-01-01": 4000, - "2028-01-01": 3950, - "2027-01-01": 3850, - "2026-01-01": 3750, - "2025-01-01": 3700, - "2024-01-01": 3650, - "2023-01-01": 3450, - "2022-01-01": 3200, - "2021-01-01": 3100, - "2018-01-01": 3000, - "2015-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.deductions.standard.min.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.deductions.standard.min.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 4500, - "2034-01-01": 4450, - "2033-01-01": 4350, - "2032-01-01": 4250, - "2031-01-01": 4200, - "2030-01-01": 4100, - "2029-01-01": 4000, - "2028-01-01": 3950, - "2027-01-01": 3850, - "2026-01-01": 3750, - "2025-01-01": 3700, - "2024-01-01": 3650, - "2023-01-01": 3450, - "2022-01-01": 3200, - "2021-01-01": 3100, - "2018-01-01": 3000, - "2015-01-01": 3000 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.deductions.standard.min.SINGLE": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.deductions.standard.min.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 2200, - "2034-01-01": 2150, - "2033-01-01": 2150, - "2032-01-01": 2100, - "2031-01-01": 2050, - "2030-01-01": 2000, - "2029-01-01": 1950, - "2028-01-01": 1950, - "2027-01-01": 1900, - "2026-01-01": 1850, - "2025-01-01": 1800, - "2024-01-01": 1800, - "2023-01-01": 1700, - "2022-01-01": 1600, - "2021-01-01": 1550, - "2018-01-01": 1500, - "2015-01-01": 1500 - }, - "economy": true, - "household": true - }, - "gov.states.md.tax.income.deductions.standard.min.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.md.tax.income.deductions.standard.min.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "2035-01-01": 2200, - "2034-01-01": 2150, - "2033-01-01": 2150, - "2032-01-01": 2100, - "2031-01-01": 2050, - "2030-01-01": 2000, - "2029-01-01": 1950, - "2028-01-01": 1950, - "2027-01-01": 1900, - "2026-01-01": 1850, - "2025-01-01": 1800, - "2024-01-01": 1800, - "2023-01-01": 1700, - "2022-01-01": 1600, - "2021-01-01": 1550, - "2018-01-01": 1500, - "2015-01-01": 1500 - }, - "economy": true, - "household": true - }, - "gov.states.md.tanf": { - "type": "parameterNode", - "parameter": "gov.states.md.tanf", - "description": null, - "label": "Temporary Assistance for Needy Families", - "economy": true, - "household": true - }, - "gov.states.md.tanf.income": { - "type": "parameterNode", - "parameter": "gov.states.md.tanf.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.md.tanf.income.deductions": { - "type": "parameterNode", - "parameter": "gov.states.md.tanf.income.deductions", - "description": null, - "label": "deductions", - "economy": true, - "household": true - }, - "gov.states.md.tanf.income.deductions.earned": { - "type": "parameterNode", - "parameter": "gov.states.md.tanf.income.deductions.earned", - "description": null, - "label": "earned", - "economy": true, - "household": true - }, - "gov.states.md.tanf.income.deductions.earned.self_employed": { - "type": "parameter", - "parameter": "gov.states.md.tanf.income.deductions.earned.self_employed", - "description": "Maryland excludes this share of earnings from TANF countable earned income, for individuals with self employment income.", - "label": "Maryland TANF earnings exclusion percent for self-employed individuals", - "unit": "/1", - "period": "month", - "values": { - "2022-11-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.md.tanf.income.deductions.earned.not_self_employed": { - "type": "parameter", - "parameter": "gov.states.md.tanf.income.deductions.earned.not_self_employed", - "description": "Maryland excludes this share of earnings from TANF countable earned income, for individuals without self employment income.", - "label": "Maryland TANF earnings exclusion percent for non-self-employed individuals", - "unit": "/1", - "period": "month", - "values": { - "2022-11-01": 0.4, - "2015-01-01": 0.4 - }, - "economy": true, - "household": true - }, - "gov.states.md.tanf.income.deductions.earned.new": { - "type": "parameter", - "parameter": "gov.states.md.tanf.income.deductions.earned.new", - "description": "Maryland excludes this share of earnings from TANF countable earned income, for individuals not currently enrolled in TANF.", - "label": "Maryland TANF earnings exclusion percent for new enrollees", - "unit": "/1", - "period": "month", - "values": { - "2022-11-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": true, - "household": true - }, - "gov.states.md.tanf.maximum_benefit": { - "type": "parameterNode", - "parameter": "gov.states.md.tanf.maximum_benefit", - "description": null, - "label": "maximum benefit", - "economy": true, - "household": true - }, - "gov.states.md.tanf.maximum_benefit.main": { - "type": "parameterNode", - "parameter": "gov.states.md.tanf.maximum_benefit.main", - "description": "Maryland TANF grant standard by number of caretakers and children.", - "label": "main", - "economy": true, - "household": true - }, - "gov.states.md.tanf.maximum_benefit.main.1": { - "type": "parameter", - "parameter": "gov.states.md.tanf.maximum_benefit.main.1", - "description": null, - "label": "1", - "unit": null, - "period": null, - "values": { - "2021-10-01": 328, - "2015-01-01": 328 - }, - "economy": true, - "household": true - }, - "gov.states.md.tanf.maximum_benefit.main.2": { - "type": "parameter", - "parameter": "gov.states.md.tanf.maximum_benefit.main.2", - "description": null, - "label": "2", - "unit": null, - "period": null, - "values": { - "2021-10-01": 575, - "2015-01-01": 575 - }, - "economy": true, - "household": true - }, - "gov.states.md.tanf.maximum_benefit.main.3": { - "type": "parameter", - "parameter": "gov.states.md.tanf.maximum_benefit.main.3", - "description": null, - "label": "3", - "unit": null, - "period": null, - "values": { - "2021-10-01": 727, - "2015-01-01": 727 - }, - "economy": true, - "household": true - }, - "gov.states.md.tanf.maximum_benefit.main.4": { - "type": "parameter", - "parameter": "gov.states.md.tanf.maximum_benefit.main.4", - "description": null, - "label": "4", - "unit": null, - "period": null, - "values": { - "2021-10-01": 870, - "2015-01-01": 870 - }, - "economy": true, - "household": true - }, - "gov.states.md.tanf.maximum_benefit.main.5": { - "type": "parameter", - "parameter": "gov.states.md.tanf.maximum_benefit.main.5", - "description": null, - "label": "5", - "unit": null, - "period": null, - "values": { - "2021-10-01": 1010, - "2015-01-01": 1010 - }, - "economy": true, - "household": true - }, - "gov.states.md.tanf.maximum_benefit.main.6": { - "type": "parameter", - "parameter": "gov.states.md.tanf.maximum_benefit.main.6", - "description": null, - "label": "6", - "unit": null, - "period": null, - "values": { - "2021-10-01": 1110, - "2015-01-01": 1110 - }, - "economy": true, - "household": true - }, - "gov.states.md.tanf.maximum_benefit.main.7": { - "type": "parameter", - "parameter": "gov.states.md.tanf.maximum_benefit.main.7", - "description": null, - "label": "7", - "unit": null, - "period": null, - "values": { - "2021-10-01": 1247, - "2015-01-01": 1247 - }, - "economy": true, - "household": true - }, - "gov.states.md.tanf.maximum_benefit.main.8": { - "type": "parameter", - "parameter": "gov.states.md.tanf.maximum_benefit.main.8", - "description": null, - "label": "8", - "unit": null, - "period": null, - "values": { - "2021-10-01": 1372, - "2015-01-01": 1372 - }, - "economy": true, - "household": true - }, - "gov.states.md.tanf.maximum_benefit.additional": { - "type": "parameter", - "parameter": "gov.states.md.tanf.maximum_benefit.additional", - "description": "Maryland TANF grant standard additional amount per child over 10.", - "label": "additional", - "unit": "currency-USD", - "period": "month", - "values": { - "2021-10-01": 136, - "2015-01-01": 136 - }, - "economy": true, - "household": true - }, - "gov.states.md.usda": { - "type": "parameterNode", - "parameter": "gov.states.md.usda", - "description": null, - "label": "usda", - "economy": true, - "household": true - }, - "gov.states.md.usda.snap": { - "type": "parameterNode", - "parameter": "gov.states.md.usda.snap", - "description": null, - "label": "snap", - "economy": true, - "household": true - }, - "gov.states.md.usda.snap.min_allotment": { - "type": "parameterNode", - "parameter": "gov.states.md.usda.snap.min_allotment", - "description": null, - "label": "min allotment", - "economy": true, - "household": true - }, - "gov.states.md.usda.snap.min_allotment.age_threshold": { - "type": "parameter", - "parameter": "gov.states.md.usda.snap.min_allotment.age_threshold", - "description": "Maryland supplements the Supplemental Nutritional Assistant Program minimum allotment for households that include individuals this age or older.", - "label": "Maryland SNAP age threshold for supplement minimum allotment", - "unit": "year", - "period": "year", - "values": { - "2016-10-01": 62, - "2015-01-01": 62 - }, - "economy": true, - "household": true - }, - "gov.states.md.usda.snap.min_allotment.in_effect": { - "type": "parameter", - "parameter": "gov.states.md.usda.snap.min_allotment.in_effect", - "description": "Maryland provides a separate SNAP minimum allotment amount if this is true.", - "label": "Maryland SNAP minimum allotment in effect", - "unit": "bool", - "period": "year", - "values": { - "2016-10-01": true, - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.md.usda.snap.min_allotment.amount": { - "type": "parameter", - "parameter": "gov.states.md.usda.snap.min_allotment.amount", - "description": "Maryland provides the following monthly SNAP minimum allotment amount.", - "label": "Maryland SNAP minimum allotment amount", - "unit": "currency-USD", - "period": "month", - "values": { - "2022-10-01": 40, - "2016-01-01": 30, - "2015-01-01": 30 - }, - "economy": true, - "household": true - }, - "gov.states.ak": { - "type": "parameterNode", - "parameter": "gov.states.ak", - "description": null, - "label": "Alaska", - "economy": true, - "household": true - }, - "gov.states.ak.dor": { - "type": "parameterNode", - "parameter": "gov.states.ak.dor", - "description": null, - "label": "dor", - "economy": true, - "household": true - }, - "gov.states.ak.dor.permanent_fund_dividend": { - "type": "parameter", - "parameter": "gov.states.ak.dor.permanent_fund_dividend", - "description": "Alaska provides this Permanent Fund Dividend amount.", - "label": "Alaska taxable permanent fund dividend", - "unit": "currency-USD", - "period": "year", - "values": { - "2024-01-01": 1403.83, - "2023-01-01": 1312, - "2022-01-01": 2622, - "2015-01-01": 2622 - }, - "economy": true, - "household": true - }, - "gov.states.ak.dor.energy_relief": { - "type": "parameter", - "parameter": "gov.states.ak.dor.energy_relief", - "description": "Alaska provides this one-time energy relief payment.", - "label": "Alaska energy relief", - "unit": "currency-USD", - "period": "year", - "values": { - "2024-01-01": 298.17, - "2023-01-01": 0, - "2022-01-01": 662, - "2015-01-01": 662 - }, - "economy": true, - "household": true - }, - "gov.states.la": { - "type": "parameterNode", - "parameter": "gov.states.la", - "description": null, - "label": "Louisiana", - "economy": true, - "household": true - }, - "gov.states.la.tax": { - "type": "parameterNode", - "parameter": "gov.states.la.tax", - "description": null, - "label": "tax", - "economy": true, - "household": true - }, - "gov.states.la.tax.income": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income", - "description": null, - "label": "income", - "economy": true, - "household": true - }, - "gov.states.la.tax.income.exempt_income": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.exempt_income", - "description": null, - "label": "exempt income", - "economy": true, - "household": true - }, - "gov.states.la.tax.income.exempt_income.reduction": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.exempt_income.reduction", - "description": null, - "label": "reduction", - "economy": true, - "household": true - }, - "gov.states.la.tax.income.exempt_income.reduction.in_effect": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.exempt_income.reduction.in_effect", - "description": "Louisiana reduces the exempt adjusted gross income if this is true.", - "label": "Louisiana exempt adjusted gross income reduction in effect", - "unit": "bool", - "period": "year", - "values": { - "2022-01-01": false, - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.exempt_income.reduction.rate": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.exempt_income.reduction.rate", - "description": "Louisiana reduces the exempt adjusted gross income by this rate, based on the exempt income amount.", - "label": "Louisiana exempt adjusted gross income reduction rate" - }, - "gov.states.la.tax.income.exempt_income.reduction.rate[0]": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.exempt_income.reduction.rate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.la.tax.income.exempt_income.reduction.rate[0].rate": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.exempt_income.reduction.rate[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.exempt_income.reduction.rate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.exempt_income.reduction.rate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.exempt_income.reduction.rate[1]": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.exempt_income.reduction.rate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.la.tax.income.exempt_income.reduction.rate[1].rate": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.exempt_income.reduction.rate[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.exempt_income.reduction.rate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.exempt_income.reduction.rate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 15000, - "2015-01-01": 15000 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.exempt_income.reduction.rate[2]": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.exempt_income.reduction.rate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.la.tax.income.exempt_income.reduction.rate[2].rate": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.exempt_income.reduction.rate[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.45, - "2015-01-01": 0.45 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.exempt_income.reduction.rate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.exempt_income.reduction.rate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 50000, - "2015-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.exempt_income.sources": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.exempt_income.sources", - "description": "Louisiana exempts these sources from adjusted gross income.", - "label": "Louisiana adjusted gross income exempt income", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": [ - "us_govt_interest", - "military_retirement_pay", - "la_retirement_exemption_person", - "taxable_social_security", - "la_military_pay_exclusion", - "la_disability_income_exemption_person" - ], - "2015-01-01": [ - "us_govt_interest", - "military_retirement_pay", - "la_retirement_exemption_person", - "taxable_social_security", - "la_military_pay_exclusion", - "la_disability_income_exemption_person" - ] - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.exempt_income.disability": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.exempt_income.disability", - "description": null, - "label": "disability", - "economy": true, - "household": true - }, - "gov.states.la.tax.income.exempt_income.disability.cap": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.exempt_income.disability.cap", - "description": "Louisiana caps the disability income exemption at this amount.", - "label": "Louisiana disability income exemption cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2025-01-01": 12000, - "2014-01-01": 6000 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.exempt_income.military_pay_exclusion": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.exempt_income.military_pay_exclusion", - "description": null, - "label": "military pay exclusion", - "economy": true, - "household": true - }, - "gov.states.la.tax.income.exempt_income.military_pay_exclusion.max_amount": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.exempt_income.military_pay_exclusion.max_amount", - "description": "Louisiana allows for this maximum military pay exclusion amount.", - "label": "Louisiana military pay exclusion max amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2022-01-01": 50000, - "2003-01-01": 30000 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.exempt_income.retirement": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.exempt_income.retirement", - "description": null, - "label": "retirement", - "economy": true, - "household": true - }, - "gov.states.la.tax.income.exempt_income.retirement.cap": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.exempt_income.retirement.cap", - "description": "Louisiana caps the retirement income exemption at this amount for filers, based on age.", - "label": "Louisiana retirement income exemption cap" - }, - "gov.states.la.tax.income.exempt_income.retirement.cap[0]": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.exempt_income.retirement.cap[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.la.tax.income.exempt_income.retirement.cap[0].threshold": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.exempt_income.retirement.cap[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.exempt_income.retirement.cap[0].amount": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.exempt_income.retirement.cap[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.exempt_income.retirement.cap[1]": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.exempt_income.retirement.cap[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.la.tax.income.exempt_income.retirement.cap[1].threshold": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.exempt_income.retirement.cap[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2001-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.exempt_income.retirement.cap[1].amount": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.exempt_income.retirement.cap[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2025-01-01": 12000, - "2001-01-01": 6000 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.credits": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.credits", - "description": null, - "label": "credits", - "economy": true, - "household": true - }, - "gov.states.la.tax.income.credits.eitc": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.credits.eitc", - "description": null, - "label": "Earned Income Tax Credit", - "economy": true, - "household": true - }, - "gov.states.la.tax.income.credits.eitc.match": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.credits.eitc.match", - "description": "Louisiana matches this percent of the federal EITC.", - "label": "Louisiana EITC match", - "unit": "/1", - "period": null, - "values": { - "2019-01-01": 0.05, - "2018-01-01": 0.035, - "2015-01-01": 0.035 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.credits.refundable": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.credits.refundable", - "description": "Louisiana provides the following refundable tax credits.", - "label": "Louisiana refundable tax credits", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": ["la_refundable_cdcc", "la_eitc"], - "2015-01-01": ["la_refundable_cdcc", "la_eitc"] - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.credits.school_readiness": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.credits.school_readiness", - "description": null, - "label": "school readiness", - "economy": true, - "household": true - }, - "gov.states.la.tax.income.credits.school_readiness.age_threshold": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.credits.school_readiness.age_threshold", - "description": "Louisiana provides the school readiness tax credit to filers with children below this age threshold.", - "label": "Louisiana school readiness tax credit child age threshold", - "unit": "year", - "period": "year", - "values": { - "2021-01-01": 6, - "2015-01-01": 6 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.credits.school_readiness.rate": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.credits.school_readiness.rate", - "description": "Louisiana matches this fraction of the Louisiana child care credit as the school readiness credit, based on the quality rating of the child care facility.", - "label": "Louisiana refundable school readiness tax credit as fraction of Louisiana CDCC amount" - }, - "gov.states.la.tax.income.credits.school_readiness.rate[0]": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.credits.school_readiness.rate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.la.tax.income.credits.school_readiness.rate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.credits.school_readiness.rate[0].threshold", - "description": null, - "label": "threshold", - "unit": "Child care facility quality rating", - "period": null, - "values": { - "2021-01-01": 5, - "2015-01-01": 5 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.credits.school_readiness.rate[0].amount": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.credits.school_readiness.rate[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.credits.school_readiness.rate[1]": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.credits.school_readiness.rate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.la.tax.income.credits.school_readiness.rate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.credits.school_readiness.rate[1].threshold", - "description": null, - "label": "threshold", - "unit": "Child care facility quality rating", - "period": null, - "values": { - "2021-01-01": 4, - "2015-01-01": 4 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.credits.school_readiness.rate[1].amount": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.credits.school_readiness.rate[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.5, - "2015-01-01": 1.5 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.credits.school_readiness.rate[2]": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.credits.school_readiness.rate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.la.tax.income.credits.school_readiness.rate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.credits.school_readiness.rate[2].threshold", - "description": null, - "label": "threshold", - "unit": "Child care facility quality rating", - "period": null, - "values": { - "2021-01-01": 3, - "2015-01-01": 3 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.credits.school_readiness.rate[2].amount": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.credits.school_readiness.rate[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.credits.school_readiness.rate[3]": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.credits.school_readiness.rate[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.la.tax.income.credits.school_readiness.rate[3].threshold": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.credits.school_readiness.rate[3].threshold", - "description": null, - "label": "threshold", - "unit": "Child care facility quality rating", - "period": null, - "values": { - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.credits.school_readiness.rate[3].amount": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.credits.school_readiness.rate[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.5, - "2015-01-01": 0.5 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.credits.school_readiness.rate[4]": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.credits.school_readiness.rate[4]", - "description": null, - "label": "bracket 5" - }, - "gov.states.la.tax.income.credits.school_readiness.rate[4].threshold": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.credits.school_readiness.rate[4].threshold", - "description": null, - "label": "threshold", - "unit": "Child care facility quality rating", - "period": null, - "values": { - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.credits.school_readiness.rate[4].amount": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.credits.school_readiness.rate[4].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.credits.cdcc": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.credits.cdcc", - "description": null, - "label": "Child and Dependent Care Credit", - "economy": true, - "household": true - }, - "gov.states.la.tax.income.credits.cdcc.non_refundable": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.credits.cdcc.non_refundable", - "description": null, - "label": "non refundable", - "economy": true, - "household": true - }, - "gov.states.la.tax.income.credits.cdcc.non_refundable.match": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.credits.cdcc.non_refundable.match", - "description": "Louisiana matches this percentage of the federal child and dependent care credit, depending on federal adjusted gross income, as the non-refundable state CDCC.", - "label": "Louisiana CDCC non-refundable match" - }, - "gov.states.la.tax.income.credits.cdcc.non_refundable.match[0]": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.credits.cdcc.non_refundable.match[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.la.tax.income.credits.cdcc.non_refundable.match[0].threshold": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.credits.cdcc.non_refundable.match[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2006-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.credits.cdcc.non_refundable.match[0].amount": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.credits.cdcc.non_refundable.match[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2006-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.credits.cdcc.non_refundable.match[1]": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.credits.cdcc.non_refundable.match[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.la.tax.income.credits.cdcc.non_refundable.match[1].threshold": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.credits.cdcc.non_refundable.match[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2006-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.credits.cdcc.non_refundable.match[1].amount": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.credits.cdcc.non_refundable.match[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2006-01-01": 0.3 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.credits.cdcc.non_refundable.match[2]": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.credits.cdcc.non_refundable.match[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.la.tax.income.credits.cdcc.non_refundable.match[2].threshold": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.credits.cdcc.non_refundable.match[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2006-01-01": 35000 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.credits.cdcc.non_refundable.match[2].amount": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.credits.cdcc.non_refundable.match[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2006-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.credits.cdcc.non_refundable.match[3]": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.credits.cdcc.non_refundable.match[3]", - "description": null, - "label": "bracket 4" - }, - "gov.states.la.tax.income.credits.cdcc.non_refundable.match[3].threshold": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.credits.cdcc.non_refundable.match[3].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2006-01-01": 60000 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.credits.cdcc.non_refundable.match[3].amount": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.credits.cdcc.non_refundable.match[3].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2006-01-01": 0.1 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.credits.cdcc.non_refundable.upper_bracket_cap": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.credits.cdcc.non_refundable.upper_bracket_cap", - "description": "Louisiana limits its non-refundable child and dependent care credit to this maximum amount, for filers with income in the top bracket.", - "label": "Louisiana non-refundable CDCC upper bracket cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2006-01-01": 25 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.credits.cdcc.refundable": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.credits.cdcc.refundable", - "description": null, - "label": "refundable", - "economy": true, - "household": true - }, - "gov.states.la.tax.income.credits.cdcc.refundable.match": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.credits.cdcc.refundable.match", - "description": "Louisiana matches this percentage of the federal child and dependent care credit, depending on federal adjusted gross income, as the non-refundable state CDCC.", - "label": "Louisiana CDCC refundable match" - }, - "gov.states.la.tax.income.credits.cdcc.refundable.match[0]": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.credits.cdcc.refundable.match[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.la.tax.income.credits.cdcc.refundable.match[0].threshold": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.credits.cdcc.refundable.match[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2006-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.credits.cdcc.refundable.match[0].amount": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.credits.cdcc.refundable.match[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2007-01-01": 0.5, - "2006-01-01": 0.25 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.credits.cdcc.refundable.match[1]": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.credits.cdcc.refundable.match[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.la.tax.income.credits.cdcc.refundable.match[1].threshold": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.credits.cdcc.refundable.match[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2006-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.credits.cdcc.refundable.match[1].amount": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.credits.cdcc.refundable.match[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2006-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.credits.non_refundable": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.credits.non_refundable", - "description": "Louisiana provides the following non-refundable tax credits.", - "label": "Louisiana non-refundable tax credits", - "unit": "list", - "period": "year", - "values": { - "2021-01-01": ["la_non_refundable_cdcc"], - "2015-01-01": ["la_non_refundable_cdcc"] - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.exemptions": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.exemptions", - "description": null, - "label": "exemptions", - "economy": true, - "household": true - }, - "gov.states.la.tax.income.exemptions.dependent": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.exemptions.dependent", - "description": "Louisiana reduces taxable income by this amount for each dependent.", - "label": "Louisiana dependent exemption amount", - "unit": "currency-USD", - "period": "year", - "values": { - "1983-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.exemptions.personal": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.exemptions.personal", - "description": "Louisiana reduces taxable income by this personal exemption amount, based on filing status.", - "label": "Louisiana personal exemption amount", - "economy": true, - "household": true - }, - "gov.states.la.tax.income.exemptions.personal.SINGLE": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.exemptions.personal.SINGLE", - "description": null, - "label": "SINGLE", - "unit": null, - "period": null, - "values": { - "1983-01-01": 4500 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.exemptions.personal.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.exemptions.personal.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": null, - "period": null, - "values": { - "1983-01-01": 4500 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.exemptions.personal.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.exemptions.personal.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": null, - "period": null, - "values": { - "1983-01-01": 9000 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.exemptions.personal.JOINT": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.exemptions.personal.JOINT", - "description": null, - "label": "JOINT", - "unit": null, - "period": null, - "values": { - "1983-01-01": 9000 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.exemptions.personal.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.exemptions.personal.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": null, - "period": null, - "values": { - "1983-01-01": 9000 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.exemptions.blind": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.exemptions.blind", - "description": "Louisiana reduces taxable income by this amount for each blind head or spouse.", - "label": "Louisiana blind exemption amount", - "unit": "currency-USD", - "period": "year", - "values": { - "2014-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.exemptions.surviving_spouse": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.exemptions.surviving_spouse", - "description": "Louisiana reduces taxable income by this amount for each qualifying surviving spouse.", - "label": "Louisiana qualifying surviving spouse exemption amount", - "unit": "currency-USD", - "period": "year", - "values": { - "1983-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.exemptions.aged": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.exemptions.aged", - "description": "Louisiana reduces taxable income by this amount for each aged head or spouse.", - "label": "Louisiana aged exemption amount" - }, - "gov.states.la.tax.income.exemptions.aged[0]": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.exemptions.aged[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.la.tax.income.exemptions.aged[0].threshold": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.exemptions.aged[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2014-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.exemptions.aged[0].amount": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.exemptions.aged[0].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2014-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.exemptions.aged[1]": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.exemptions.aged[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.la.tax.income.exemptions.aged[1].threshold": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.exemptions.aged[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2014-01-01": 65 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.exemptions.aged[1].amount": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.exemptions.aged[1].amount", - "description": null, - "label": "amount", - "unit": "currency-USD", - "period": null, - "values": { - "2014-01-01": 1000 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.main": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.main", - "description": null, - "label": "main", - "economy": true, - "household": true - }, - "gov.states.la.tax.income.main.by_filing_status": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.main.by_filing_status", - "description": null, - "label": "by filing status", - "economy": true, - "household": true - }, - "gov.states.la.tax.income.main.by_filing_status.head_of_household": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.main.by_filing_status.head_of_household", - "description": "Louisiana taxes the income of head of household filers at this rate, pre 2025.", - "label": "Louisiana income tax rate head of household filers pre 2025" - }, - "gov.states.la.tax.income.main.by_filing_status.head_of_household[0]": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.main.by_filing_status.head_of_household[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.la.tax.income.main.by_filing_status.head_of_household[0].rate": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.main.by_filing_status.head_of_household[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.0185, - "2009-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.main.by_filing_status.head_of_household[0].threshold": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.main.by_filing_status.head_of_household[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2009-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.main.by_filing_status.head_of_household[1]": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.main.by_filing_status.head_of_household[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.la.tax.income.main.by_filing_status.head_of_household[1].rate": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.main.by_filing_status.head_of_household[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.035, - "2009-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.main.by_filing_status.head_of_household[1].threshold": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.main.by_filing_status.head_of_household[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2009-01-01": 12500 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.main.by_filing_status.head_of_household[2]": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.main.by_filing_status.head_of_household[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.la.tax.income.main.by_filing_status.head_of_household[2].rate": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.main.by_filing_status.head_of_household[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.0425, - "2009-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.main.by_filing_status.head_of_household[2].threshold": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.main.by_filing_status.head_of_household[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2009-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.main.by_filing_status.separate": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.main.by_filing_status.separate", - "description": "Louisiana taxes the income of married individuals filing separate returns at this rate, pre 2025.", - "label": "Louisiana income tax rate married separate filers pre 2025" - }, - "gov.states.la.tax.income.main.by_filing_status.separate[0]": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.main.by_filing_status.separate[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.la.tax.income.main.by_filing_status.separate[0].rate": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.main.by_filing_status.separate[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.0185, - "2009-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.main.by_filing_status.separate[0].threshold": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.main.by_filing_status.separate[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2009-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.main.by_filing_status.separate[1]": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.main.by_filing_status.separate[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.la.tax.income.main.by_filing_status.separate[1].rate": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.main.by_filing_status.separate[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.035, - "2009-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.main.by_filing_status.separate[1].threshold": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.main.by_filing_status.separate[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2009-01-01": 12500 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.main.by_filing_status.separate[2]": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.main.by_filing_status.separate[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.la.tax.income.main.by_filing_status.separate[2].rate": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.main.by_filing_status.separate[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.0425, - "2009-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.main.by_filing_status.separate[2].threshold": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.main.by_filing_status.separate[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2009-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.main.by_filing_status.joint": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.main.by_filing_status.joint", - "description": "Louisiana taxes the income of joint filers at this rate, pre 2025.", - "label": "Louisiana income tax rate joint filers pre 2025" - }, - "gov.states.la.tax.income.main.by_filing_status.joint[0]": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.main.by_filing_status.joint[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.la.tax.income.main.by_filing_status.joint[0].rate": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.main.by_filing_status.joint[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.0185, - "2009-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.main.by_filing_status.joint[0].threshold": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.main.by_filing_status.joint[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2009-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.main.by_filing_status.joint[1]": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.main.by_filing_status.joint[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.la.tax.income.main.by_filing_status.joint[1].rate": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.main.by_filing_status.joint[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.035, - "2009-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.main.by_filing_status.joint[1].threshold": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.main.by_filing_status.joint[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2009-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.main.by_filing_status.joint[2]": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.main.by_filing_status.joint[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.la.tax.income.main.by_filing_status.joint[2].rate": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.main.by_filing_status.joint[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.0425, - "2009-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.main.by_filing_status.joint[2].threshold": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.main.by_filing_status.joint[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2009-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.main.by_filing_status.single": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.main.by_filing_status.single", - "description": "Louisiana taxes the income of single filers at this rate, pre 2025.", - "label": "Louisiana income tax rate single filers pre 2025" - }, - "gov.states.la.tax.income.main.by_filing_status.single[0]": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.main.by_filing_status.single[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.la.tax.income.main.by_filing_status.single[0].rate": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.main.by_filing_status.single[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.0185, - "2009-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.main.by_filing_status.single[0].threshold": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.main.by_filing_status.single[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2009-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.main.by_filing_status.single[1]": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.main.by_filing_status.single[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.la.tax.income.main.by_filing_status.single[1].rate": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.main.by_filing_status.single[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.035, - "2009-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.main.by_filing_status.single[1].threshold": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.main.by_filing_status.single[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2009-01-01": 12500 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.main.by_filing_status.single[2]": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.main.by_filing_status.single[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.la.tax.income.main.by_filing_status.single[2].rate": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.main.by_filing_status.single[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.0425, - "2009-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.main.by_filing_status.single[2].threshold": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.main.by_filing_status.single[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2009-01-01": 50000 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.main.by_filing_status.surviving_spouse": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.main.by_filing_status.surviving_spouse", - "description": "Louisiana taxes the income of surviving spouse filers at this rate, pre 2025.", - "label": "Louisiana income tax rate surviving spouse filers pre 2025" - }, - "gov.states.la.tax.income.main.by_filing_status.surviving_spouse[0]": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.main.by_filing_status.surviving_spouse[0]", - "description": null, - "label": "bracket 1" - }, - "gov.states.la.tax.income.main.by_filing_status.surviving_spouse[0].rate": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.main.by_filing_status.surviving_spouse[0].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.0185, - "2009-01-01": 0.02 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.main.by_filing_status.surviving_spouse[0].threshold": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.main.by_filing_status.surviving_spouse[0].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2009-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.main.by_filing_status.surviving_spouse[1]": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.main.by_filing_status.surviving_spouse[1]", - "description": null, - "label": "bracket 2" - }, - "gov.states.la.tax.income.main.by_filing_status.surviving_spouse[1].rate": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.main.by_filing_status.surviving_spouse[1].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.035, - "2009-01-01": 0.04 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.main.by_filing_status.surviving_spouse[1].threshold": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.main.by_filing_status.surviving_spouse[1].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2009-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.main.by_filing_status.surviving_spouse[2]": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.main.by_filing_status.surviving_spouse[2]", - "description": null, - "label": "bracket 3" - }, - "gov.states.la.tax.income.main.by_filing_status.surviving_spouse[2].rate": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.main.by_filing_status.surviving_spouse[2].rate", - "description": null, - "label": "rate", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 0.0425, - "2009-01-01": 0.06 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.main.by_filing_status.surviving_spouse[2].threshold": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.main.by_filing_status.surviving_spouse[2].threshold", - "description": null, - "label": "threshold", - "unit": "currency-USD", - "period": null, - "values": { - "2009-01-01": 100000 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.main.flat": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.main.flat", - "description": null, - "label": "flat", - "economy": true, - "household": true - }, - "gov.states.la.tax.income.main.flat.rate": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.main.flat.rate", - "description": "Louisiana taxes income at this flat rate, post 2024.", - "label": "Louisiana flat income tax rate post 2024", - "unit": "/1", - "period": "year", - "values": { - "2025-01-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.main.flat.applies": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.main.flat.applies", - "description": "Louisiana applies a flat income tax rate if this is true.", - "label": "Lousiana flat income tax rate applies", - "unit": "bool", - "period": "year", - "values": { - "2025-01-01": true, - "2020-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.deductions": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.deductions", - "description": null, - "label": "deductions", - "economy": true, - "household": true - }, - "gov.states.la.tax.income.deductions.federal_tax": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.deductions.federal_tax", - "description": null, - "label": "federal tax", - "economy": true, - "household": true - }, - "gov.states.la.tax.income.deductions.federal_tax.availability": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.deductions.federal_tax.availability", - "description": "Louisiana allows for a federal tax deduction if this is true.", - "label": "Louisiana federal tax deduction availability", - "unit": "bool", - "period": "year", - "values": { - "2022-01-01": false, - "2021-01-01": true, - "2015-01-01": true - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.deductions.itemized": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.deductions.itemized", - "description": null, - "label": "itemized", - "economy": true, - "household": true - }, - "gov.states.la.tax.income.deductions.itemized.relevant_federal_deductions": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.deductions.itemized.relevant_federal_deductions", - "description": "Louisiana subtracts from adjusted gross income the excess of these relevant federal deductions over the standard deduction, based on year.", - "label": "Louisiana itemized deductions relevant federal deductions", - "unit": "list", - "period": "year", - "values": { - "2022-01-01": ["medical_expense_deduction"], - "2021-01-01": ["taxable_income_deductions_if_itemizing"], - "2015-01-01": ["taxable_income_deductions_if_itemizing"] - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.deductions.itemized.excess_fraction": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.deductions.itemized.excess_fraction", - "description": "Louisiana subtracts this fraction of the excess of the either the federal itemized deductions or the medical expense deduction amount over the federal standard deduction from adjusted gross income.", - "label": "Louisiana itemized deductions excess fraction", - "unit": "/1", - "period": "year", - "values": { - "2009-01-01": 1, - "2008-01-01": 0.65, - "2007-01-01": 0.575 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.deductions.standard": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.deductions.standard", - "description": null, - "label": "standard", - "economy": true, - "household": true - }, - "gov.states.la.tax.income.deductions.standard.amount": { - "type": "parameterNode", - "parameter": "gov.states.la.tax.income.deductions.standard.amount", - "description": "Louisiana provides the following standard deduction amount, based on filing status.", - "label": "Louisiana standard deduction amount", - "economy": true, - "household": true - }, - "gov.states.la.tax.income.deductions.standard.amount.SINGLE": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.deductions.standard.amount.SINGLE", - "description": null, - "label": "SINGLE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-02-01": 15791.0996340362, - "2034-02-01": 15430.6807560083, - "2033-02-01": 15090.0651130369, - "2032-02-01": 14761.3314110993, - "2031-02-01": 14436.5583561731, - "2030-02-01": 14119.7065952694, - "2029-02-01": 13810.7761283883, - "2028-02-01": 13509.7669555299, - "2027-02-01": 13208.7577826714, - "2026-02-01": 12907.7486098129, - "2025-02-01": 12602.7787899431, - "2025-01-01": 12500, - "2015-01-01": 12500 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.deductions.standard.amount.SURVIVING_SPOUSE": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.deductions.standard.amount.SURVIVING_SPOUSE", - "description": null, - "label": "SURVIVING SPOUSE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-02-01": 31582.1992680724, - "2034-02-01": 30861.3615120166, - "2033-02-01": 30180.1302260737, - "2032-02-01": 29522.6628221986, - "2031-02-01": 28873.1167123461, - "2030-02-01": 28239.4131905388, - "2029-02-01": 27621.5522567767, - "2028-02-01": 27019.5339110597, - "2027-02-01": 26417.5155653428, - "2026-02-01": 25815.4972196258, - "2025-02-01": 25205.5575798862, - "2025-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.deductions.standard.amount.SEPARATE": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.deductions.standard.amount.SEPARATE", - "description": null, - "label": "SEPARATE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-02-01": 15791.0996340362, - "2034-02-01": 15430.6807560083, - "2033-02-01": 15090.0651130369, - "2032-02-01": 14761.3314110993, - "2031-02-01": 14436.5583561731, - "2030-02-01": 14119.7065952694, - "2029-02-01": 13810.7761283883, - "2028-02-01": 13509.7669555299, - "2027-02-01": 13208.7577826714, - "2026-02-01": 12907.7486098129, - "2025-02-01": 12602.7787899431, - "2025-01-01": 12500, - "2015-01-01": 12500 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.deductions.standard.amount.HEAD_OF_HOUSEHOLD": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.deductions.standard.amount.HEAD_OF_HOUSEHOLD", - "description": null, - "label": "HEAD OF HOUSEHOLD", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-02-01": 31582.1992680724, - "2034-02-01": 30861.3615120166, - "2033-02-01": 30180.1302260737, - "2032-02-01": 29522.6628221986, - "2031-02-01": 28873.1167123461, - "2030-02-01": 28239.4131905388, - "2029-02-01": 27621.5522567767, - "2028-02-01": 27019.5339110597, - "2027-02-01": 26417.5155653428, - "2026-02-01": 25815.4972196258, - "2025-02-01": 25205.5575798862, - "2025-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.deductions.standard.amount.JOINT": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.deductions.standard.amount.JOINT", - "description": null, - "label": "JOINT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-02-01": 31582.1992680724, - "2034-02-01": 30861.3615120166, - "2033-02-01": 30180.1302260737, - "2032-02-01": 29522.6628221986, - "2031-02-01": 28873.1167123461, - "2030-02-01": 28239.4131905388, - "2029-02-01": 27621.5522567767, - "2028-02-01": 27019.5339110597, - "2027-02-01": 26417.5155653428, - "2026-02-01": 25815.4972196258, - "2025-02-01": 25205.5575798862, - "2025-01-01": 25000, - "2015-01-01": 25000 - }, - "economy": true, - "household": true - }, - "gov.states.la.tax.income.deductions.standard.applies": { - "type": "parameter", - "parameter": "gov.states.la.tax.income.deductions.standard.applies", - "description": "Louisiana applies a standard deduction and repeals personal exemptions, if this is true.", - "label": "Lousiana standard deduction applies", - "unit": "bool", - "period": "year", - "values": { - "2025-01-01": true, - "2020-01-01": false, - "2015-01-01": false - }, - "economy": true, - "household": true - }, - "gov.hhs": { - "type": "parameterNode", - "parameter": "gov.hhs", - "description": null, - "label": "Department of Health and Human Services (HHS)", - "economy": false, - "household": true - }, - "gov.hhs.fpg": { - "type": "parameterNode", - "parameter": "gov.hhs.fpg", - "description": "Federal poverty guidelines published by the Department of Health and Human Services.", - "label": "Federal poverty guidelines", - "economy": false, - "household": true - }, - "gov.hhs.fpg.first_person": { - "type": "parameterNode", - "parameter": "gov.hhs.fpg.first_person", - "description": null, - "label": "first person", - "economy": false, - "household": true - }, - "gov.hhs.fpg.first_person.CONTIGUOUS_US": { - "type": "parameter", - "parameter": "gov.hhs.fpg.first_person.CONTIGUOUS_US", - "description": null, - "label": "CONTIGUOUS US", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 19589.3480973175, - "2034-01-01": 19159.7785402371, - "2033-01-01": 18739.9719276357, - "2032-01-01": 18329.9282595134, - "2031-01-01": 17924.7660636307, - "2030-01-01": 17534.2482844666, - "2029-01-01": 17148.6119775421, - "2028-01-01": 16772.7386150967, - "2027-01-01": 16406.6281971304, - "2026-01-01": 16030.754834685, - "2025-01-01": 15650, - "2024-01-01": 15060, - "2023-01-01": 14580, - "2022-01-01": 13590, - "2021-01-01": 12880, - "2020-01-01": 12760, - "2019-01-01": 12490, - "2018-01-01": 12140, - "2017-01-01": 12060, - "2015-01-01": 12060 - }, - "economy": false, - "household": true - }, - "gov.hhs.fpg.first_person.AK": { - "type": "parameter", - "parameter": "gov.hhs.fpg.first_person.AK", - "description": null, - "label": "AK", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 24471.0386774797, - "2034-01-01": 23934.4198378041, - "2033-01-01": 23409.9968808484, - "2032-01-01": 22897.7698066126, - "2031-01-01": 22391.6406737367, - "2030-01-01": 21903.8053649407, - "2029-01-01": 21422.0679975047, - "2028-01-01": 20952.5265127885, - "2027-01-01": 20495.1809107923, - "2026-01-01": 20025.6394260761, - "2025-01-01": 19550, - "2024-01-01": 18810, - "2023-01-01": 18210, - "2022-01-01": 16990, - "2021-01-01": 16090, - "2020-01-01": 15950, - "2019-01-01": 15600, - "2018-01-01": 15180, - "2017-01-01": 15060, - "2015-01-01": 15060 - }, - "economy": false, - "household": true - }, - "gov.hhs.fpg.first_person.HI": { - "type": "parameter", - "parameter": "gov.hhs.fpg.first_person.HI", - "description": null, - "label": "HI", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 22518.3624454148, - "2034-01-01": 22024.5633187773, - "2033-01-01": 21541.9868995633, - "2032-01-01": 21070.6331877729, - "2031-01-01": 20604.8908296943, - "2030-01-01": 20155.9825327511, - "2029-01-01": 19712.6855895197, - "2028-01-01": 19280.6113537118, - "2027-01-01": 18859.7598253275, - "2026-01-01": 18427.6855895197, - "2025-01-01": 17990, - "2024-01-01": 17310, - "2023-01-01": 16770, - "2022-01-01": 15630, - "2021-01-01": 14820, - "2020-01-01": 14680, - "2019-01-01": 14380, - "2018-01-01": 13960, - "2017-01-01": 13860, - "2015-01-01": 13860 - }, - "economy": false, - "household": true - }, - "gov.hhs.fpg.first_person.GU": { - "type": "parameter", - "parameter": "gov.hhs.fpg.first_person.GU", - "description": null, - "label": "GU", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.fpg.first_person.PR": { - "type": "parameter", - "parameter": "gov.hhs.fpg.first_person.PR", - "description": null, - "label": "PR", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.fpg.first_person.VI": { - "type": "parameter", - "parameter": "gov.hhs.fpg.first_person.VI", - "description": null, - "label": "VI", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.fpg.additional_person": { - "type": "parameterNode", - "parameter": "gov.hhs.fpg.additional_person", - "description": null, - "label": "additional person", - "economy": false, - "household": true - }, - "gov.hhs.fpg.additional_person.CONTIGUOUS_US": { - "type": "parameter", - "parameter": "gov.hhs.fpg.additional_person.CONTIGUOUS_US", - "description": null, - "label": "CONTIGUOUS US", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 6884.43543356207, - "2034-01-01": 6733.46849656893, - "2033-01-01": 6585.93262632564, - "2032-01-01": 6441.82782283219, - "2031-01-01": 6299.43855271366, - "2030-01-01": 6162.1958827199, - "2029-01-01": 6026.66874610106, - "2028-01-01": 5894.57267623207, - "2027-01-01": 5765.90767311291, - "2026-01-01": 5633.81160324392, - "2025-01-01": 5500, - "2024-01-01": 5380, - "2023-01-01": 5140, - "2022-01-01": 4720, - "2021-01-01": 4540, - "2020-01-01": 4480, - "2019-01-01": 4420, - "2018-01-01": 4320, - "2017-01-01": 4180, - "2015-01-01": 4180 - }, - "economy": false, - "household": true - }, - "gov.hhs.fpg.additional_person.AK": { - "type": "parameter", - "parameter": "gov.hhs.fpg.additional_person.AK", - "description": null, - "label": "AK", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 8611.80286961946, - "2034-01-01": 8422.95695570805, - "2033-01-01": 8238.40299438553, - "2032-01-01": 8058.1409856519, - "2031-01-01": 7880.02495321273, - "2030-01-01": 7708.34684965689, - "2029-01-01": 7538.81472239551, - "2028-01-01": 7373.57454772302, - "2027-01-01": 7212.62632563943, - "2026-01-01": 7047.38615096694, - "2025-01-01": 6880, - "2024-01-01": 6730, - "2023-01-01": 6430, - "2022-01-01": 5900, - "2021-01-01": 5680, - "2020-01-01": 5600, - "2019-01-01": 5530, - "2018-01-01": 5400, - "2017-01-01": 5230, - "2015-01-01": 5230 - }, - "economy": false, - "household": true - }, - "gov.hhs.fpg.additional_person.HI": { - "type": "parameter", - "parameter": "gov.hhs.fpg.additional_person.HI", - "description": null, - "label": "HI", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 7923.35932626326, - "2034-01-01": 7749.61010605115, - "2033-01-01": 7579.80973175296, - "2032-01-01": 7413.95820336868, - "2031-01-01": 7250.08109794136, - "2030-01-01": 7092.1272613849, - "2029-01-01": 6936.1478477854, - "2028-01-01": 6784.11728009981, - "2027-01-01": 6636.03555832813, - "2026-01-01": 6484.00499064255, - "2025-01-01": 6330, - "2024-01-01": 6190, - "2023-01-01": 5910, - "2022-01-01": 5430, - "2021-01-01": 5220, - "2020-01-01": 5150, - "2019-01-01": 5080, - "2018-01-01": 4810, - "2017-01-01": 4810, - "2015-01-01": 4810 - }, - "economy": false, - "household": true - }, - "gov.hhs.fpg.additional_person.GU": { - "type": "parameter", - "parameter": "gov.hhs.fpg.additional_person.GU", - "description": null, - "label": "GU", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.fpg.additional_person.PR": { - "type": "parameter", - "parameter": "gov.hhs.fpg.additional_person.PR", - "description": null, - "label": "PR", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.fpg.additional_person.VI": { - "type": "parameter", - "parameter": "gov.hhs.fpg.additional_person.VI", - "description": null, - "label": "VI", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 0, - "2034-01-01": 0, - "2033-01-01": 0, - "2032-01-01": 0, - "2031-01-01": 0, - "2030-01-01": 0, - "2029-01-01": 0, - "2028-01-01": 0, - "2027-01-01": 0, - "2026-01-01": 0, - "2025-01-01": 0, - "2024-01-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.medicare": { - "type": "parameterNode", - "parameter": "gov.hhs.medicare", - "description": null, - "label": "medicare", - "economy": false, - "household": true - }, - "gov.hhs.medicare.eligibility": { - "type": "parameterNode", - "parameter": "gov.hhs.medicare.eligibility", - "description": null, - "label": "eligibility", - "economy": false, - "household": true - }, - "gov.hhs.medicare.eligibility.min_months_receiving_social_security_disability": { - "type": "parameter", - "parameter": "gov.hhs.medicare.eligibility.min_months_receiving_social_security_disability", - "description": "Minimum number of months of receiving social security disability for Medicare eligibility.", - "label": "Minimum number of months of receiving social security disability for Medicare eligibility", - "unit": null, - "period": "year", - "values": { - "1966-01-01": 24 - }, - "economy": false, - "household": true - }, - "gov.hhs.medicare.eligibility.min_age": { - "type": "parameter", - "parameter": "gov.hhs.medicare.eligibility.min_age", - "description": "Minimum age for age-based Medicare eligibility.", - "label": "Minimum age for age-based Medicare eligibility", - "unit": null, - "period": "year", - "values": { - "1966-01-01": 65 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip": { - "type": "parameterNode", - "parameter": "gov.hhs.chip", - "description": null, - "label": "chip", - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant": { - "type": "parameterNode", - "parameter": "gov.hhs.chip.pregnant", - "description": null, - "label": "pregnant", - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit": { - "type": "parameterNode", - "parameter": "gov.hhs.chip.pregnant.income_limit", - "description": "State governments limit standard Children's Health Insurance Program pregnancy eligibility to these incomes, as a share of the federal poverty line.", - "label": "CHIP pregnant income limit", - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.AK": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.AK", - "description": null, - "label": "AK", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.AL": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.AL", - "description": null, - "label": "AL", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.AR": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.AR", - "description": null, - "label": "AR", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.AZ": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.AZ", - "description": null, - "label": "AZ", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.CA": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.CA", - "description": null, - "label": "CA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.CO": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.CO", - "description": null, - "label": "CO", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.6, - "2015-01-01": 2.6 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.CT": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.CT", - "description": null, - "label": "CT", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.DC": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.DC", - "description": null, - "label": "DC", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.DE": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.DE", - "description": null, - "label": "DE", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.FL": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.FL", - "description": null, - "label": "FL", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.GA": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.GA", - "description": null, - "label": "GA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.HI": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.HI", - "description": null, - "label": "HI", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.IA": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.IA", - "description": null, - "label": "IA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.ID": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.ID", - "description": null, - "label": "ID", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.IL": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.IL", - "description": null, - "label": "IL", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.IN": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.IN", - "description": null, - "label": "IN", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.KS": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.KS", - "description": null, - "label": "KS", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.KY": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.KY", - "description": null, - "label": "KY", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.13, - "2015-01-01": 2.13 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.LA": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.LA", - "description": null, - "label": "LA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.MA": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.MA", - "description": null, - "label": "MA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.MD": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.MD", - "description": null, - "label": "MD", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.ME": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.ME", - "description": null, - "label": "ME", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.MI": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.MI", - "description": null, - "label": "MI", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.MN": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.MN", - "description": null, - "label": "MN", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.MO": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.MO", - "description": null, - "label": "MO", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 3, - "2015-01-01": 3 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.MS": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.MS", - "description": null, - "label": "MS", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.MT": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.MT", - "description": null, - "label": "MT", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.NC": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.NC", - "description": null, - "label": "NC", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.ND": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.ND", - "description": null, - "label": "ND", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.NE": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.NE", - "description": null, - "label": "NE", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.NH": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.NH", - "description": null, - "label": "NH", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.NJ": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.NJ", - "description": null, - "label": "NJ", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.NM": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.NM", - "description": null, - "label": "NM", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.NV": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.NV", - "description": null, - "label": "NV", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.NY": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.NY", - "description": null, - "label": "NY", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.OH": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.OH", - "description": null, - "label": "OH", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.OK": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.OK", - "description": null, - "label": "OK", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.OR": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.OR", - "description": null, - "label": "OR", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.PA": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.PA", - "description": null, - "label": "PA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.RI": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.RI", - "description": null, - "label": "RI", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.53, - "2015-01-01": 2.53 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.SC": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.SC", - "description": null, - "label": "SC", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.SD": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.SD", - "description": null, - "label": "SD", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.TN": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.TN", - "description": null, - "label": "TN", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.TX": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.TX", - "description": null, - "label": "TX", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.UT": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.UT", - "description": null, - "label": "UT", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.VA": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.VA", - "description": null, - "label": "VA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.VT": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.VT", - "description": null, - "label": "VT", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.WA": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.WA", - "description": null, - "label": "WA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.WI": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.WI", - "description": null, - "label": "WI", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.WV": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.WV", - "description": null, - "label": "WV", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 3, - "2015-01-01": 3 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.WY": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.WY", - "description": null, - "label": "WY", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.PW": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.PW", - "description": null, - "label": "PW", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.VI": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.VI", - "description": null, - "label": "VI", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.PR": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.PR", - "description": null, - "label": "PR", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.AP": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.AP", - "description": null, - "label": "AP", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.GU": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.GU", - "description": null, - "label": "GU", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.AE": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.AE", - "description": null, - "label": "AE", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.MP": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.MP", - "description": null, - "label": "MP", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.pregnant.income_limit.AA": { - "type": "parameter", - "parameter": "gov.hhs.chip.pregnant.income_limit.AA", - "description": null, - "label": "AA", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child": { - "type": "parameterNode", - "parameter": "gov.hhs.chip.child", - "description": null, - "label": "child", - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit": { - "type": "parameterNode", - "parameter": "gov.hhs.chip.child.income_limit", - "description": "The US limits the Children's Health Insurance Program for children to families with income below this fraction of the poverty line.", - "label": "CHIP child income limit", - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.AK": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.AK", - "description": null, - "label": "AK", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.AL": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.AL", - "description": null, - "label": "AL", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 3.17, - "2015-01-01": 3.17 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.AR": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.AR", - "description": null, - "label": "AR", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 2.16, - "2015-01-01": 2.16 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.AZ": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.AZ", - "description": null, - "label": "AZ", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 2.05, - "2015-01-01": 2.05 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.CA": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.CA", - "description": null, - "label": "CA", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.CO": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.CO", - "description": null, - "label": "CO", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 2.65, - "2015-01-01": 2.65 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.CT": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.CT", - "description": null, - "label": "CT", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 3.23, - "2015-01-01": 3.23 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.DC": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.DC", - "description": null, - "label": "DC", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.DE": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.DE", - "description": null, - "label": "DE", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 2.17, - "2015-01-01": 2.17 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.FL": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.FL", - "description": null, - "label": "FL", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 2.15, - "2015-01-01": 2.15 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.GA": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.GA", - "description": null, - "label": "GA", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 2.52, - "2015-01-01": 2.52 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.HI": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.HI", - "description": null, - "label": "HI", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.IA": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.IA", - "description": null, - "label": "IA", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 3.07, - "2015-01-01": 3.07 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.ID": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.ID", - "description": null, - "label": "ID", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 1.9, - "2015-01-01": 1.9 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.IL": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.IL", - "description": null, - "label": "IL", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.IN": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.IN", - "description": null, - "label": "IN", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 2.55, - "2015-01-01": 2.55 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.KS": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.KS", - "description": null, - "label": "KS", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 2.55, - "2018-04-01": 2.43, - "2015-01-01": 2.43 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.KY": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.KY", - "description": null, - "label": "KY", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": "-Infinity", - "2018-04-01": 2.18, - "2015-01-01": 2.18 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.LA": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.LA", - "description": null, - "label": "LA", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 2.55, - "2015-01-01": 2.55 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.MA": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.MA", - "description": null, - "label": "MA", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 3.05, - "2015-01-01": 3.05 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.MD": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.MD", - "description": null, - "label": "MD", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.ME": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.ME", - "description": null, - "label": "ME", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": "-Infinity", - "2018-04-01": 2.13, - "2015-01-01": 2.13 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.MI": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.MI", - "description": null, - "label": "MI", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.MN": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.MN", - "description": null, - "label": "MN", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.MO": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.MO", - "description": null, - "label": "MO", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 3.05, - "2015-01-01": 3.05 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.MS": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.MS", - "description": null, - "label": "MS", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 2.14, - "2015-01-01": 2.14 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.MT": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.MT", - "description": null, - "label": "MT", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 2.66, - "2015-01-01": 2.66 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.NC": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.NC", - "description": null, - "label": "NC", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": "-Infinity", - "2018-04-01": 2.16, - "2015-01-01": 2.16 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.ND": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.ND", - "description": null, - "label": "ND", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": "-Infinity", - "2018-04-01": 1.75, - "2015-01-01": 1.75 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.NE": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.NE", - "description": null, - "label": "NE", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.NH": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.NH", - "description": null, - "label": "NH", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.NJ": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.NJ", - "description": null, - "label": "NJ", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 3.55, - "2015-01-01": 3.55 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.NM": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.NM", - "description": null, - "label": "NM", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.NV": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.NV", - "description": null, - "label": "NV", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 2.05, - "2015-01-01": 2.05 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.NY": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.NY", - "description": null, - "label": "NY", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 4.05, - "2015-01-01": 4.05 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.OH": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.OH", - "description": null, - "label": "OH", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.OK": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.OK", - "description": null, - "label": "OK", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.OR": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.OR", - "description": null, - "label": "OR", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 3.05, - "2015-01-01": 3.05 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.PA": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.PA", - "description": null, - "label": "PA", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 3.19, - "2015-01-01": 3.19 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.RI": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.RI", - "description": null, - "label": "RI", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.SC": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.SC", - "description": null, - "label": "SC", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.SD": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.SD", - "description": null, - "label": "SD", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 2.09, - "2015-01-01": 2.09 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.TN": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.TN", - "description": null, - "label": "TN", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 2.55, - "2015-01-01": 2.55 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.TX": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.TX", - "description": null, - "label": "TX", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 2.06, - "2015-01-01": 2.06 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.UT": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.UT", - "description": null, - "label": "UT", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 2.05, - "2015-01-01": 2.05 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.VA": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.VA", - "description": null, - "label": "VA", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 2.05, - "2015-01-01": 2.05 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.VT": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.VT", - "description": null, - "label": "VT", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.WA": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.WA", - "description": null, - "label": "WA", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 3.17, - "2015-01-01": 3.17 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.WI": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.WI", - "description": null, - "label": "WI", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 3.06, - "2015-01-01": 3.06 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.WV": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.WV", - "description": null, - "label": "WV", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 3.05, - "2015-01-01": 3.05 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.WY": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.WY", - "description": null, - "label": "WY", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.PW": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.PW", - "description": null, - "label": "PW", - "unit": "/1", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.VI": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.VI", - "description": null, - "label": "VI", - "unit": "/1", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.PR": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.PR", - "description": null, - "label": "PR", - "unit": "/1", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.AP": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.AP", - "description": null, - "label": "AP", - "unit": "/1", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.GU": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.GU", - "description": null, - "label": "GU", - "unit": "/1", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.AE": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.AE", - "description": null, - "label": "AE", - "unit": "/1", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.MP": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.MP", - "description": null, - "label": "MP", - "unit": "/1", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.income_limit.AA": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.income_limit.AA", - "description": null, - "label": "AA", - "unit": "/1", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.child.max_age": { - "type": "parameter", - "parameter": "gov.hhs.chip.child.max_age", - "description": "The US limits the Children's Health Insurance Program to children under this age.", - "label": "Maximum age for CHIP eligibility", - "unit": "/1", - "period": null, - "values": { - "1966-01-01": 19 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep": { - "type": "parameterNode", - "parameter": "gov.hhs.chip.fcep", - "description": null, - "label": "fcep", - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit": { - "type": "parameterNode", - "parameter": "gov.hhs.chip.fcep.income_limit", - "description": "State governments limit Children's Health Insurance Program from-conception-to-end-of-pregnancy eligibility to these incomes, as a share of the federal poverty line.", - "label": "CHIP FCEP pregnant income limit", - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.AK": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.AK", - "description": null, - "label": "AK", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.AL": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.AL", - "description": null, - "label": "AL", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 3.17, - "2015-01-01": 3.17 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.AR": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.AR", - "description": null, - "label": "AR", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 2.14, - "2015-01-01": 2.14 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.AZ": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.AZ", - "description": null, - "label": "AZ", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.CA": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.CA", - "description": null, - "label": "CA", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 3.22, - "2015-01-01": 3.22 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.CO": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.CO", - "description": null, - "label": "CO", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 2.65, - "2015-01-01": 2.65 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.CT": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.CT", - "description": null, - "label": "CT", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 2.63, - "2015-01-01": 2.63 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.DC": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.DC", - "description": null, - "label": "DC", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 3.24, - "2015-01-01": 3.24 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.DE": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.DE", - "description": null, - "label": "DE", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.FL": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.FL", - "description": null, - "label": "FL", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.GA": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.GA", - "description": null, - "label": "GA", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.HI": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.HI", - "description": null, - "label": "HI", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.IA": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.IA", - "description": null, - "label": "IA", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.ID": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.ID", - "description": null, - "label": "ID", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.IL": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.IL", - "description": null, - "label": "IL", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 2.13, - "2015-01-01": 2.13 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.IN": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.IN", - "description": null, - "label": "IN", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.KS": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.KS", - "description": null, - "label": "KS", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.KY": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.KY", - "description": null, - "label": "KY", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.LA": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.LA", - "description": null, - "label": "LA", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 2.14, - "2015-01-01": 2.14 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.MA": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.MA", - "description": null, - "label": "MA", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 2.05, - "2015-01-01": 2.05 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.MD": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.MD", - "description": null, - "label": "MD", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 2.64, - "2015-01-01": 2.64 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.ME": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.ME", - "description": null, - "label": "ME", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 2.13, - "2015-01-01": 2.13 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.MI": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.MI", - "description": null, - "label": "MI", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.MN": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.MN", - "description": null, - "label": "MN", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 2.83, - "2015-01-01": 2.83 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.MO": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.MO", - "description": null, - "label": "MO", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 3.05, - "2015-01-01": 3.05 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.MS": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.MS", - "description": null, - "label": "MS", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.MT": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.MT", - "description": null, - "label": "MT", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.NC": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.NC", - "description": null, - "label": "NC", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.ND": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.ND", - "description": null, - "label": "ND", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.NE": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.NE", - "description": null, - "label": "NE", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 2.02, - "2015-01-01": 2.02 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.NH": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.NH", - "description": null, - "label": "NH", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.NJ": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.NJ", - "description": null, - "label": "NJ", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.NM": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.NM", - "description": null, - "label": "NM", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.NV": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.NV", - "description": null, - "label": "NV", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.NY": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.NY", - "description": null, - "label": "NY", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 2.23, - "2015-01-01": 2.23 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.OH": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.OH", - "description": null, - "label": "OH", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.OK": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.OK", - "description": null, - "label": "OK", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 2.1, - "2015-01-01": 2.1 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.OR": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.OR", - "description": null, - "label": "OR", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 1.9, - "2015-01-01": 1.9 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.PA": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.PA", - "description": null, - "label": "PA", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.RI": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.RI", - "description": null, - "label": "RI", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 2.58, - "2015-01-01": 2.58 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.SC": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.SC", - "description": null, - "label": "SC", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.SD": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.SD", - "description": null, - "label": "SD", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.TN": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.TN", - "description": null, - "label": "TN", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 2.55, - "2015-01-01": 2.55 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.TX": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.TX", - "description": null, - "label": "TX", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 2.07, - "2015-01-01": 2.07 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.UT": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.UT", - "description": null, - "label": "UT", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.VA": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.VA", - "description": null, - "label": "VA", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 2.05, - "2015-01-01": 2.05 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.VT": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.VT", - "description": null, - "label": "VT", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.WA": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.WA", - "description": null, - "label": "WA", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 2.15, - "2015-01-01": 2.15 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.WI": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.WI", - "description": null, - "label": "WI", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 3.06, - "2015-01-01": 3.06 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.WV": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.WV", - "description": null, - "label": "WV", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.WY": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.WY", - "description": null, - "label": "WY", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.PW": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.PW", - "description": null, - "label": "PW", - "unit": "/1", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.VI": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.VI", - "description": null, - "label": "VI", - "unit": "/1", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.PR": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.PR", - "description": null, - "label": "PR", - "unit": "/1", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.AP": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.AP", - "description": null, - "label": "AP", - "unit": "/1", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.GU": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.GU", - "description": null, - "label": "GU", - "unit": "/1", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.AE": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.AE", - "description": null, - "label": "AE", - "unit": "/1", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.MP": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.MP", - "description": null, - "label": "MP", - "unit": "/1", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.chip.fcep.income_limit.AA": { - "type": "parameter", - "parameter": "gov.hhs.chip.fcep.income_limit.AA", - "description": null, - "label": "AA", - "unit": "/1", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.liheap": { - "type": "parameterNode", - "parameter": "gov.hhs.liheap", - "description": null, - "label": "liheap", - "economy": false, - "household": true - }, - "gov.hhs.liheap.smi_limit": { - "type": "parameter", - "parameter": "gov.hhs.liheap.smi_limit", - "description": "The US Department of Health and Human Services requires states to provide assistance only to households with income below this percentage of the state median income through the Low Income Home Energy Assistance Program.", - "label": "LIHEAP state median income limit", - "unit": "/1", - "period": "year", - "values": { - "2021-01-01": 0.6, - "2015-01-01": 0.6 - }, - "economy": false, - "household": true - }, - "gov.hhs.ccdf": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf", - "description": null, - "label": "Child Care Development Fund (CCDF)", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.copay_percent", - "description": "CCDF family copay as percentage of income in excess of FPL by county", - "label": "copay percent", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.ALBANY_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.ALBANY_COUNTY_NY", - "description": null, - "label": "ALBANY COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.ALLEGANY_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.ALLEGANY_COUNTY_NY", - "description": null, - "label": "ALLEGANY COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.BRONX_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.BRONX_COUNTY_NY", - "description": null, - "label": "BRONX COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.BROOME_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.BROOME_COUNTY_NY", - "description": null, - "label": "BROOME COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.CATTARAUGUS_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.CATTARAUGUS_COUNTY_NY", - "description": null, - "label": "CATTARAUGUS COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.CAYUGA_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.CAYUGA_COUNTY_NY", - "description": null, - "label": "CAYUGA COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.CHAUTAUQUA_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.CHAUTAUQUA_COUNTY_NY", - "description": null, - "label": "CHAUTAUQUA COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.CHEMUNG_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.CHEMUNG_COUNTY_NY", - "description": null, - "label": "CHEMUNG COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.CHENANGO_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.CHENANGO_COUNTY_NY", - "description": null, - "label": "CHENANGO COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.CLINTON_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.CLINTON_COUNTY_NY", - "description": null, - "label": "CLINTON COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.COLUMBIA_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.COLUMBIA_COUNTY_NY", - "description": null, - "label": "COLUMBIA COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.CORTLAND_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.CORTLAND_COUNTY_NY", - "description": null, - "label": "CORTLAND COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.35, - "2015-01-01": 0.35 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.DELAWARE_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.DELAWARE_COUNTY_NY", - "description": null, - "label": "DELAWARE COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.DUTCHESS_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.DUTCHESS_COUNTY_NY", - "description": null, - "label": "DUTCHESS COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.ERIE_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.ERIE_COUNTY_NY", - "description": null, - "label": "ERIE COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.ESSEX_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.ESSEX_COUNTY_NY", - "description": null, - "label": "ESSEX COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.FRANKLIN_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.FRANKLIN_COUNTY_NY", - "description": null, - "label": "FRANKLIN COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.FULTON_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.FULTON_COUNTY_NY", - "description": null, - "label": "FULTON COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.GENESEE_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.GENESEE_COUNTY_NY", - "description": null, - "label": "GENESEE COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.GREENE_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.GREENE_COUNTY_NY", - "description": null, - "label": "GREENE COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.HAMILTON_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.HAMILTON_COUNTY_NY", - "description": null, - "label": "HAMILTON COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.HERKIMER_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.HERKIMER_COUNTY_NY", - "description": null, - "label": "HERKIMER COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.JEFFERSON_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.JEFFERSON_COUNTY_NY", - "description": null, - "label": "JEFFERSON COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.KINGS_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.KINGS_COUNTY_NY", - "description": null, - "label": "KINGS COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.LEWIS_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.LEWIS_COUNTY_NY", - "description": null, - "label": "LEWIS COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.LIVINGSTON_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.LIVINGSTON_COUNTY_NY", - "description": null, - "label": "LIVINGSTON COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.MADISON_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.MADISON_COUNTY_NY", - "description": null, - "label": "MADISON COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.MONROE_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.MONROE_COUNTY_NY", - "description": null, - "label": "MONROE COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.MONTGOMERY_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.MONTGOMERY_COUNTY_NY", - "description": null, - "label": "MONTGOMERY COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.NASSAU_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.NASSAU_COUNTY_NY", - "description": null, - "label": "NASSAU COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.NEW_YORK_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.NEW_YORK_COUNTY_NY", - "description": null, - "label": "NEW YORK COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.NIAGARA_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.NIAGARA_COUNTY_NY", - "description": null, - "label": "NIAGARA COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.ONEIDA_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.ONEIDA_COUNTY_NY", - "description": null, - "label": "ONEIDA COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.ONONDAGA_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.ONONDAGA_COUNTY_NY", - "description": null, - "label": "ONONDAGA COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.35, - "2015-01-01": 0.35 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.ONTARIO_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.ONTARIO_COUNTY_NY", - "description": null, - "label": "ONTARIO COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.ORANGE_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.ORANGE_COUNTY_NY", - "description": null, - "label": "ORANGE COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.ORLEANS_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.ORLEANS_COUNTY_NY", - "description": null, - "label": "ORLEANS COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.OSWEGO_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.OSWEGO_COUNTY_NY", - "description": null, - "label": "OSWEGO COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.15, - "2015-01-01": 0.15 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.OTSEGO_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.OTSEGO_COUNTY_NY", - "description": null, - "label": "OTSEGO COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.PUTNAM_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.PUTNAM_COUNTY_NY", - "description": null, - "label": "PUTNAM COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.QUEENS_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.QUEENS_COUNTY_NY", - "description": null, - "label": "QUEENS COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.RENSSELAER_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.RENSSELAER_COUNTY_NY", - "description": null, - "label": "RENSSELAER COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.RICHMOND_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.RICHMOND_COUNTY_NY", - "description": null, - "label": "RICHMOND COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.ROCKLAND_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.ROCKLAND_COUNTY_NY", - "description": null, - "label": "ROCKLAND COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.SARATOGA_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.SARATOGA_COUNTY_NY", - "description": null, - "label": "SARATOGA COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.SCHENECTADY_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.SCHENECTADY_COUNTY_NY", - "description": null, - "label": "SCHENECTADY COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.SCHOHARIE_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.SCHOHARIE_COUNTY_NY", - "description": null, - "label": "SCHOHARIE COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.3, - "2015-01-01": 0.3 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.SCHUYLER_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.SCHUYLER_COUNTY_NY", - "description": null, - "label": "SCHUYLER COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.15, - "2015-01-01": 0.15 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.SENECA_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.SENECA_COUNTY_NY", - "description": null, - "label": "SENECA COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.ST_LAWRENCE_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.ST_LAWRENCE_COUNTY_NY", - "description": null, - "label": "ST LAWRENCE COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.15, - "2015-01-01": 0.15 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.STEUBEN_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.STEUBEN_COUNTY_NY", - "description": null, - "label": "STEUBEN COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.SUFFOLK_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.SUFFOLK_COUNTY_NY", - "description": null, - "label": "SUFFOLK COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.SULLIVAN_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.SULLIVAN_COUNTY_NY", - "description": null, - "label": "SULLIVAN COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.TIOGA_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.TIOGA_COUNTY_NY", - "description": null, - "label": "TIOGA COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.TOMPKINS_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.TOMPKINS_COUNTY_NY", - "description": null, - "label": "TOMPKINS COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.ULSTER_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.ULSTER_COUNTY_NY", - "description": null, - "label": "ULSTER COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.WARREN_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.WARREN_COUNTY_NY", - "description": null, - "label": "WARREN COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.WASHINGTON_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.WASHINGTON_COUNTY_NY", - "description": null, - "label": "WASHINGTON COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.1, - "2015-01-01": 0.1 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.WAYNE_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.WAYNE_COUNTY_NY", - "description": null, - "label": "WAYNE COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.WESCHESTER_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.WESCHESTER_COUNTY_NY", - "description": null, - "label": "WESCHESTER COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.27, - "2015-01-01": 0.27 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.WYOMING_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.WYOMING_COUNTY_NY", - "description": null, - "label": "WYOMING COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.25, - "2015-01-01": 0.25 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.copay_percent.YATES_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.copay_percent.YATES_COUNTY_NY", - "description": null, - "label": "YATES COUNTY NY", - "unit": "/1", - "period": null, - "values": { - "2021-10-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.asset_limit": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.asset_limit", - "description": "CCDF asset limit", - "label": "asset limit", - "unit": "currency-USD", - "period": null, - "values": { - "2015-01-01": 1000000, - "1991-01-01": "Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.county_cluster", - "description": "County clusters for CCDF market rates", - "label": "county cluster", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.NASSAU_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.NASSAU_COUNTY_NY", - "description": null, - "label": "NASSAU COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 1, - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.PUTNAM_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.PUTNAM_COUNTY_NY", - "description": null, - "label": "PUTNAM COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 1, - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.ROCKLAND_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.ROCKLAND_COUNTY_NY", - "description": null, - "label": "ROCKLAND COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 1, - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.SUFFOLK_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.SUFFOLK_COUNTY_NY", - "description": null, - "label": "SUFFOLK COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 1, - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.WESCHESTER_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.WESCHESTER_COUNTY_NY", - "description": null, - "label": "WESCHESTER COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 1, - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.COLUMBIA_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.COLUMBIA_COUNTY_NY", - "description": null, - "label": "COLUMBIA COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 2, - "2015-01-01": 2 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.ERIE_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.ERIE_COUNTY_NY", - "description": null, - "label": "ERIE COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 2, - "2015-01-01": 2 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.MONROE_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.MONROE_COUNTY_NY", - "description": null, - "label": "MONROE COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 2, - "2015-01-01": 2 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.ONONDAGA_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.ONONDAGA_COUNTY_NY", - "description": null, - "label": "ONONDAGA COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 2, - "2015-01-01": 2 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.ONTARIO_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.ONTARIO_COUNTY_NY", - "description": null, - "label": "ONTARIO COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 2, - "2015-01-01": 2 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.RENSSELAER_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.RENSSELAER_COUNTY_NY", - "description": null, - "label": "RENSSELAER COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 2, - "2015-01-01": 2 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.SCHENECTADY_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.SCHENECTADY_COUNTY_NY", - "description": null, - "label": "SCHENECTADY COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 2, - "2015-01-01": 2 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.TOMPKINS_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.TOMPKINS_COUNTY_NY", - "description": null, - "label": "TOMPKINS COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 2, - "2015-01-01": 2 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.WARREN_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.WARREN_COUNTY_NY", - "description": null, - "label": "WARREN COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 2, - "2015-01-01": 2 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.ALLEGANY_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.ALLEGANY_COUNTY_NY", - "description": null, - "label": "ALLEGANY COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 3, - "2015-01-01": 3 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.BROOME_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.BROOME_COUNTY_NY", - "description": null, - "label": "BROOME COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 3, - "2015-01-01": 3 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.CATTARAUGUS_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.CATTARAUGUS_COUNTY_NY", - "description": null, - "label": "CATTARAUGUS COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 3, - "2015-01-01": 3 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.CAYUGA_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.CAYUGA_COUNTY_NY", - "description": null, - "label": "CAYUGA COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 3, - "2015-01-01": 3 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.CHAUTAUQUA_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.CHAUTAUQUA_COUNTY_NY", - "description": null, - "label": "CHAUTAUQUA COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 3, - "2015-01-01": 3 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.CHEMUNG_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.CHEMUNG_COUNTY_NY", - "description": null, - "label": "CHEMUNG COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 3, - "2015-01-01": 3 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.CHENANGO_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.CHENANGO_COUNTY_NY", - "description": null, - "label": "CHENANGO COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 3, - "2015-01-01": 3 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.CLINTON_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.CLINTON_COUNTY_NY", - "description": null, - "label": "CLINTON COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 3, - "2015-01-01": 3 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.CORTLAND_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.CORTLAND_COUNTY_NY", - "description": null, - "label": "CORTLAND COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 3, - "2015-01-01": 3 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.DELAWARE_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.DELAWARE_COUNTY_NY", - "description": null, - "label": "DELAWARE COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 3, - "2015-01-01": 3 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.ESSEX_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.ESSEX_COUNTY_NY", - "description": null, - "label": "ESSEX COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 3, - "2015-01-01": 3 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.FRANKLIN_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.FRANKLIN_COUNTY_NY", - "description": null, - "label": "FRANKLIN COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 3, - "2015-01-01": 3 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.FULTON_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.FULTON_COUNTY_NY", - "description": null, - "label": "FULTON COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 3, - "2015-01-01": 3 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.GENESEE_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.GENESEE_COUNTY_NY", - "description": null, - "label": "GENESEE COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 3, - "2015-01-01": 3 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.GREENE_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.GREENE_COUNTY_NY", - "description": null, - "label": "GREENE COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 3, - "2015-01-01": 3 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.HAMILTON_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.HAMILTON_COUNTY_NY", - "description": null, - "label": "HAMILTON COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 3, - "2015-01-01": 3 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.HERKIMER_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.HERKIMER_COUNTY_NY", - "description": null, - "label": "HERKIMER COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 3, - "2015-01-01": 3 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.JEFFERSON_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.JEFFERSON_COUNTY_NY", - "description": null, - "label": "JEFFERSON COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 3, - "2015-01-01": 3 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.LEWIS_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.LEWIS_COUNTY_NY", - "description": null, - "label": "LEWIS COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 3, - "2015-01-01": 3 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.LIVINGSTON_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.LIVINGSTON_COUNTY_NY", - "description": null, - "label": "LIVINGSTON COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 3, - "2015-01-01": 3 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.MADISON_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.MADISON_COUNTY_NY", - "description": null, - "label": "MADISON COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 3, - "2015-01-01": 3 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.MONTGOMERY_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.MONTGOMERY_COUNTY_NY", - "description": null, - "label": "MONTGOMERY COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 3, - "2015-01-01": 3 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.NIAGARA_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.NIAGARA_COUNTY_NY", - "description": null, - "label": "NIAGARA COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 3, - "2015-01-01": 3 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.ONEIDA_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.ONEIDA_COUNTY_NY", - "description": null, - "label": "ONEIDA COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 3, - "2015-01-01": 3 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.ORLEANS_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.ORLEANS_COUNTY_NY", - "description": null, - "label": "ORLEANS COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 3, - "2015-01-01": 3 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.OSWEGO_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.OSWEGO_COUNTY_NY", - "description": null, - "label": "OSWEGO COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 3, - "2015-01-01": 3 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.OTSEGO_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.OTSEGO_COUNTY_NY", - "description": null, - "label": "OTSEGO COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 3, - "2015-01-01": 3 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.SCHOHARIE_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.SCHOHARIE_COUNTY_NY", - "description": null, - "label": "SCHOHARIE COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 3, - "2015-01-01": 3 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.SCHUYLER_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.SCHUYLER_COUNTY_NY", - "description": null, - "label": "SCHUYLER COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 3, - "2015-01-01": 3 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.SENECA_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.SENECA_COUNTY_NY", - "description": null, - "label": "SENECA COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 3, - "2015-01-01": 3 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.ST_LAWRENCE_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.ST_LAWRENCE_COUNTY_NY", - "description": null, - "label": "ST LAWRENCE COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 3, - "2015-01-01": 3 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.STEUBEN_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.STEUBEN_COUNTY_NY", - "description": null, - "label": "STEUBEN COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 3, - "2015-01-01": 3 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.SULLIVAN_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.SULLIVAN_COUNTY_NY", - "description": null, - "label": "SULLIVAN COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 3, - "2015-01-01": 3 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.TIOGA_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.TIOGA_COUNTY_NY", - "description": null, - "label": "TIOGA COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 3, - "2015-01-01": 3 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.WASHINGTON_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.WASHINGTON_COUNTY_NY", - "description": null, - "label": "WASHINGTON COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 3, - "2015-01-01": 3 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.WAYNE_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.WAYNE_COUNTY_NY", - "description": null, - "label": "WAYNE COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 3, - "2015-01-01": 3 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.WYOMING_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.WYOMING_COUNTY_NY", - "description": null, - "label": "WYOMING COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 3, - "2015-01-01": 3 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.YATES_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.YATES_COUNTY_NY", - "description": null, - "label": "YATES COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 3, - "2015-01-01": 3 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.ALBANY_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.ALBANY_COUNTY_NY", - "description": null, - "label": "ALBANY COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 4, - "2015-01-01": 4 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.DUTCHESS_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.DUTCHESS_COUNTY_NY", - "description": null, - "label": "DUTCHESS COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 4, - "2015-01-01": 4 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.ORANGE_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.ORANGE_COUNTY_NY", - "description": null, - "label": "ORANGE COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 4, - "2015-01-01": 4 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.SARATOGA_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.SARATOGA_COUNTY_NY", - "description": null, - "label": "SARATOGA COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 4, - "2015-01-01": 4 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.ULSTER_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.ULSTER_COUNTY_NY", - "description": null, - "label": "ULSTER COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 4, - "2015-01-01": 4 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.BRONX_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.BRONX_COUNTY_NY", - "description": null, - "label": "BRONX COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 5, - "2015-01-01": 5 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.KINGS_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.KINGS_COUNTY_NY", - "description": null, - "label": "KINGS COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 5, - "2015-01-01": 5 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.NEW_YORK_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.NEW_YORK_COUNTY_NY", - "description": null, - "label": "NEW YORK COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 5, - "2015-01-01": 5 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.QUEENS_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.QUEENS_COUNTY_NY", - "description": null, - "label": "QUEENS COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 5, - "2015-01-01": 5 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.county_cluster.RICHMOND_COUNTY_NY": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.county_cluster.RICHMOND_COUNTY_NY", - "description": null, - "label": "RICHMOND COUNTY NY", - "unit": null, - "period": null, - "values": { - "2021-10-01": 5, - "2015-01-01": 5 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.age_limit": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.age_limit", - "description": "Age at which children are no longer eligible for CCDF", - "label": "age limit", - "unit": "year", - "period": null, - "values": { - "2021-10-01": 13, - "2015-01-01": 13 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount", - "description": "CCDF benefit rate by county cluster, provider type, duration of care, and child age", - "label": "amount", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.1", - "description": null, - "label": "1", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.DCC_SACC": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.1.DCC_SACC", - "description": null, - "label": "DCC SACC", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.DCC_SACC.WEEKLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.1.DCC_SACC.WEEKLY", - "description": null, - "label": "WEEKLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.DCC_SACC.WEEKLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.DCC_SACC.WEEKLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 364, - "2015-01-01": 364 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.DCC_SACC.WEEKLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.DCC_SACC.WEEKLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 338, - "2015-01-01": 338 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.DCC_SACC.WEEKLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.DCC_SACC.WEEKLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 310, - "2015-01-01": 310 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.DCC_SACC.WEEKLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.DCC_SACC.WEEKLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 317, - "2015-01-01": 317 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.DCC_SACC.DAILY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.1.DCC_SACC.DAILY", - "description": null, - "label": "DAILY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.DCC_SACC.DAILY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.DCC_SACC.DAILY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 65, - "2015-01-01": 65 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.DCC_SACC.DAILY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.DCC_SACC.DAILY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 62, - "2015-01-01": 62 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.DCC_SACC.DAILY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.DCC_SACC.DAILY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 55, - "2015-01-01": 55 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.DCC_SACC.DAILY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.DCC_SACC.DAILY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 65, - "2015-01-01": 65 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.DCC_SACC.PART_DAY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.1.DCC_SACC.PART_DAY", - "description": null, - "label": "PART DAY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.DCC_SACC.PART_DAY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.DCC_SACC.PART_DAY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 43, - "2015-01-01": 43 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.DCC_SACC.PART_DAY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.DCC_SACC.PART_DAY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 41, - "2015-01-01": 41 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.DCC_SACC.PART_DAY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.DCC_SACC.PART_DAY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 37, - "2015-01-01": 37 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.DCC_SACC.PART_DAY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.DCC_SACC.PART_DAY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 43, - "2015-01-01": 43 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.DCC_SACC.HOURLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.1.DCC_SACC.HOURLY", - "description": null, - "label": "HOURLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.DCC_SACC.HOURLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.DCC_SACC.HOURLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 9.5, - "2015-01-01": 9.5 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.DCC_SACC.HOURLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.DCC_SACC.HOURLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 11, - "2015-01-01": 11 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.DCC_SACC.HOURLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.DCC_SACC.HOURLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 10, - "2015-01-01": 10 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.DCC_SACC.HOURLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.DCC_SACC.HOURLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 8, - "2015-01-01": 8 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.FDC_GFDC": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.1.FDC_GFDC", - "description": null, - "label": "FDC GFDC", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.FDC_GFDC.WEEKLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.1.FDC_GFDC.WEEKLY", - "description": null, - "label": "WEEKLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.FDC_GFDC.WEEKLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.FDC_GFDC.WEEKLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 300, - "2015-01-01": 300 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.FDC_GFDC.WEEKLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.FDC_GFDC.WEEKLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 295, - "2015-01-01": 295 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.FDC_GFDC.WEEKLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.FDC_GFDC.WEEKLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 285, - "2015-01-01": 285 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.FDC_GFDC.WEEKLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.FDC_GFDC.WEEKLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 275, - "2015-01-01": 275 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.FDC_GFDC.DAILY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.1.FDC_GFDC.DAILY", - "description": null, - "label": "DAILY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.FDC_GFDC.DAILY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.FDC_GFDC.DAILY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.FDC_GFDC.DAILY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.FDC_GFDC.DAILY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.FDC_GFDC.DAILY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.FDC_GFDC.DAILY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.FDC_GFDC.DAILY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.FDC_GFDC.DAILY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 57, - "2015-01-01": 57 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.FDC_GFDC.PART_DAY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.1.FDC_GFDC.PART_DAY", - "description": null, - "label": "PART DAY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.FDC_GFDC.PART_DAY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.FDC_GFDC.PART_DAY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 40, - "2015-01-01": 40 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.FDC_GFDC.PART_DAY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.FDC_GFDC.PART_DAY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 40, - "2015-01-01": 40 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.FDC_GFDC.PART_DAY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.FDC_GFDC.PART_DAY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 40, - "2015-01-01": 40 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.FDC_GFDC.PART_DAY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.FDC_GFDC.PART_DAY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 38, - "2015-01-01": 38 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.FDC_GFDC.HOURLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.1.FDC_GFDC.HOURLY", - "description": null, - "label": "HOURLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.FDC_GFDC.HOURLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.FDC_GFDC.HOURLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 10, - "2015-01-01": 10 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.FDC_GFDC.HOURLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.FDC_GFDC.HOURLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 10, - "2015-01-01": 10 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.FDC_GFDC.HOURLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.FDC_GFDC.HOURLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 10, - "2015-01-01": 10 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.FDC_GFDC.HOURLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.FDC_GFDC.HOURLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 10, - "2015-01-01": 10 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_GC": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.1.LE_GC", - "description": null, - "label": "LE GC", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_GC.WEEKLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.1.LE_GC.WEEKLY", - "description": null, - "label": "WEEKLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_GC.WEEKLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_GC.WEEKLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_GC.WEEKLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_GC.WEEKLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_GC.WEEKLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_GC.WEEKLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 233, - "2015-01-01": 233 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_GC.WEEKLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_GC.WEEKLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 238, - "2015-01-01": 238 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_GC.DAILY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.1.LE_GC.DAILY", - "description": null, - "label": "DAILY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_GC.DAILY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_GC.DAILY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_GC.DAILY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_GC.DAILY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_GC.DAILY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_GC.DAILY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 41, - "2015-01-01": 41 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_GC.DAILY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_GC.DAILY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 49, - "2015-01-01": 49 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_GC.PART_DAY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.1.LE_GC.PART_DAY", - "description": null, - "label": "PART DAY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_GC.PART_DAY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_GC.PART_DAY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_GC.PART_DAY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_GC.PART_DAY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_GC.PART_DAY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_GC.PART_DAY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 28, - "2015-01-01": 28 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_GC.PART_DAY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_GC.PART_DAY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 32, - "2015-01-01": 32 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_GC.HOURLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.1.LE_GC.HOURLY", - "description": null, - "label": "HOURLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_GC.HOURLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_GC.HOURLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_GC.HOURLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_GC.HOURLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_GC.HOURLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_GC.HOURLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 7.5, - "2015-01-01": 7.5 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_GC.HOURLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_GC.HOURLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 6, - "2015-01-01": 6 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_STD": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.1.LE_STD", - "description": null, - "label": "LE STD", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_STD.WEEKLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.1.LE_STD.WEEKLY", - "description": null, - "label": "WEEKLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_STD.WEEKLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_STD.WEEKLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 195, - "2015-01-01": 195 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_STD.WEEKLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_STD.WEEKLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 192, - "2015-01-01": 192 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_STD.WEEKLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_STD.WEEKLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 185, - "2015-01-01": 185 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_STD.WEEKLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_STD.WEEKLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 179, - "2015-01-01": 179 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_STD.DAILY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.1.LE_STD.DAILY", - "description": null, - "label": "DAILY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_STD.DAILY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_STD.DAILY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 39, - "2015-01-01": 39 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_STD.DAILY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_STD.DAILY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 39, - "2015-01-01": 39 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_STD.DAILY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_STD.DAILY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 39, - "2015-01-01": 39 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_STD.DAILY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_STD.DAILY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 37, - "2015-01-01": 37 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_STD.PART_DAY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.1.LE_STD.PART_DAY", - "description": null, - "label": "PART DAY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_STD.PART_DAY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_STD.PART_DAY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 26, - "2015-01-01": 26 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_STD.PART_DAY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_STD.PART_DAY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 26, - "2015-01-01": 26 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_STD.PART_DAY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_STD.PART_DAY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 26, - "2015-01-01": 26 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_STD.PART_DAY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_STD.PART_DAY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 25, - "2015-01-01": 25 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_STD.HOURLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.1.LE_STD.HOURLY", - "description": null, - "label": "HOURLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_STD.HOURLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_STD.HOURLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 6.5, - "2015-01-01": 6.5 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_STD.HOURLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_STD.HOURLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 6.5, - "2015-01-01": 6.5 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_STD.HOURLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_STD.HOURLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 6.5, - "2015-01-01": 6.5 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_STD.HOURLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_STD.HOURLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 6.5, - "2015-01-01": 6.5 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_ENH": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.1.LE_ENH", - "description": null, - "label": "LE ENH", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_ENH.WEEKLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.1.LE_ENH.WEEKLY", - "description": null, - "label": "WEEKLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_ENH.WEEKLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_ENH.WEEKLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 210, - "2015-01-01": 210 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_ENH.WEEKLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_ENH.WEEKLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 207, - "2015-01-01": 207 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_ENH.WEEKLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_ENH.WEEKLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 200, - "2015-01-01": 200 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_ENH.WEEKLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_ENH.WEEKLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 193, - "2015-01-01": 193 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_ENH.DAILY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.1.LE_ENH.DAILY", - "description": null, - "label": "DAILY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_ENH.DAILY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_ENH.DAILY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 42, - "2015-01-01": 42 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_ENH.DAILY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_ENH.DAILY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 42, - "2015-01-01": 42 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_ENH.DAILY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_ENH.DAILY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 42, - "2015-01-01": 42 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_ENH.DAILY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_ENH.DAILY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 40, - "2015-01-01": 40 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_ENH.PART_DAY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.1.LE_ENH.PART_DAY", - "description": null, - "label": "PART DAY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_ENH.PART_DAY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_ENH.PART_DAY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 28, - "2015-01-01": 28 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_ENH.PART_DAY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_ENH.PART_DAY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 28, - "2015-01-01": 28 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_ENH.PART_DAY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_ENH.PART_DAY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 28, - "2015-01-01": 28 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_ENH.PART_DAY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_ENH.PART_DAY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 27, - "2015-01-01": 27 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_ENH.HOURLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.1.LE_ENH.HOURLY", - "description": null, - "label": "HOURLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_ENH.HOURLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_ENH.HOURLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 7, - "2015-01-01": 7 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_ENH.HOURLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_ENH.HOURLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 7, - "2015-01-01": 7 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_ENH.HOURLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_ENH.HOURLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 7, - "2015-01-01": 7 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.1.LE_ENH.HOURLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.1.LE_ENH.HOURLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 7, - "2015-01-01": 7 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.2", - "description": null, - "label": "2", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.DCC_SACC": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.2.DCC_SACC", - "description": null, - "label": "DCC SACC", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.DCC_SACC.WEEKLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.2.DCC_SACC.WEEKLY", - "description": null, - "label": "WEEKLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.DCC_SACC.WEEKLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.DCC_SACC.WEEKLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 280, - "2015-01-01": 280 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.DCC_SACC.WEEKLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.DCC_SACC.WEEKLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 264, - "2015-01-01": 264 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.DCC_SACC.WEEKLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.DCC_SACC.WEEKLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 245, - "2015-01-01": 245 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.DCC_SACC.WEEKLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.DCC_SACC.WEEKLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 215, - "2015-01-01": 215 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.DCC_SACC.DAILY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.2.DCC_SACC.DAILY", - "description": null, - "label": "DAILY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.DCC_SACC.DAILY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.DCC_SACC.DAILY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 59, - "2015-01-01": 59 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.DCC_SACC.DAILY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.DCC_SACC.DAILY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 55, - "2015-01-01": 55 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.DCC_SACC.DAILY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.DCC_SACC.DAILY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 51, - "2015-01-01": 51 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.DCC_SACC.DAILY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.DCC_SACC.DAILY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 45, - "2015-01-01": 45 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.DCC_SACC.PART_DAY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.2.DCC_SACC.PART_DAY", - "description": null, - "label": "PART DAY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.DCC_SACC.PART_DAY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.DCC_SACC.PART_DAY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 39, - "2015-01-01": 39 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.DCC_SACC.PART_DAY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.DCC_SACC.PART_DAY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 37, - "2015-01-01": 37 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.DCC_SACC.PART_DAY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.DCC_SACC.PART_DAY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 34, - "2015-01-01": 34 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.DCC_SACC.PART_DAY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.DCC_SACC.PART_DAY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 30, - "2015-01-01": 30 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.DCC_SACC.HOURLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.2.DCC_SACC.HOURLY", - "description": null, - "label": "HOURLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.DCC_SACC.HOURLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.DCC_SACC.HOURLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 9.75, - "2015-01-01": 9.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.DCC_SACC.HOURLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.DCC_SACC.HOURLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 9.25, - "2015-01-01": 9.25 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.DCC_SACC.HOURLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.DCC_SACC.HOURLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 9, - "2015-01-01": 9 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.DCC_SACC.HOURLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.DCC_SACC.HOURLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 9, - "2015-01-01": 9 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.FDC_GFDC": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.2.FDC_GFDC", - "description": null, - "label": "FDC GFDC", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.FDC_GFDC.WEEKLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.2.FDC_GFDC.WEEKLY", - "description": null, - "label": "WEEKLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.FDC_GFDC.WEEKLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.FDC_GFDC.WEEKLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 190, - "2015-01-01": 190 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.FDC_GFDC.WEEKLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.FDC_GFDC.WEEKLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 185, - "2015-01-01": 185 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.FDC_GFDC.WEEKLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.FDC_GFDC.WEEKLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 180, - "2015-01-01": 180 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.FDC_GFDC.WEEKLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.FDC_GFDC.WEEKLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 175, - "2015-01-01": 175 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.FDC_GFDC.DAILY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.2.FDC_GFDC.DAILY", - "description": null, - "label": "DAILY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.FDC_GFDC.DAILY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.FDC_GFDC.DAILY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 40, - "2015-01-01": 40 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.FDC_GFDC.DAILY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.FDC_GFDC.DAILY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 40, - "2015-01-01": 40 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.FDC_GFDC.DAILY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.FDC_GFDC.DAILY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 38, - "2015-01-01": 38 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.FDC_GFDC.DAILY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.FDC_GFDC.DAILY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 35, - "2015-01-01": 35 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.FDC_GFDC.PART_DAY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.2.FDC_GFDC.PART_DAY", - "description": null, - "label": "PART DAY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.FDC_GFDC.PART_DAY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.FDC_GFDC.PART_DAY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 27, - "2015-01-01": 27 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.FDC_GFDC.PART_DAY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.FDC_GFDC.PART_DAY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 27, - "2015-01-01": 27 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.FDC_GFDC.PART_DAY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.FDC_GFDC.PART_DAY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 25, - "2015-01-01": 25 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.FDC_GFDC.PART_DAY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.FDC_GFDC.PART_DAY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 23, - "2015-01-01": 23 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.FDC_GFDC.HOURLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.2.FDC_GFDC.HOURLY", - "description": null, - "label": "HOURLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.FDC_GFDC.HOURLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.FDC_GFDC.HOURLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 8, - "2015-01-01": 8 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.FDC_GFDC.HOURLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.FDC_GFDC.HOURLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 8, - "2015-01-01": 8 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.FDC_GFDC.HOURLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.FDC_GFDC.HOURLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 8, - "2015-01-01": 8 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.FDC_GFDC.HOURLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.FDC_GFDC.HOURLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 8, - "2015-01-01": 8 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_GC": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.2.LE_GC", - "description": null, - "label": "LE GC", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_GC.WEEKLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.2.LE_GC.WEEKLY", - "description": null, - "label": "WEEKLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_GC.WEEKLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_GC.WEEKLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_GC.WEEKLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_GC.WEEKLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_GC.WEEKLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_GC.WEEKLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 184, - "2015-01-01": 184 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_GC.WEEKLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_GC.WEEKLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 161, - "2015-01-01": 161 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_GC.DAILY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.2.LE_GC.DAILY", - "description": null, - "label": "DAILY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_GC.DAILY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_GC.DAILY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_GC.DAILY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_GC.DAILY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_GC.DAILY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_GC.DAILY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 38, - "2015-01-01": 38 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_GC.DAILY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_GC.DAILY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 34, - "2015-01-01": 34 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_GC.PART_DAY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.2.LE_GC.PART_DAY", - "description": null, - "label": "PART DAY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_GC.PART_DAY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_GC.PART_DAY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_GC.PART_DAY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_GC.PART_DAY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_GC.PART_DAY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_GC.PART_DAY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 26, - "2015-01-01": 26 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_GC.PART_DAY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_GC.PART_DAY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 23, - "2015-01-01": 23 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_GC.HOURLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.2.LE_GC.HOURLY", - "description": null, - "label": "HOURLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_GC.HOURLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_GC.HOURLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_GC.HOURLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_GC.HOURLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_GC.HOURLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_GC.HOURLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 6.75, - "2015-01-01": 6.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_GC.HOURLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_GC.HOURLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 6.75, - "2015-01-01": 6.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_STD": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.2.LE_STD", - "description": null, - "label": "LE STD", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_STD.WEEKLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.2.LE_STD.WEEKLY", - "description": null, - "label": "WEEKLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_STD.WEEKLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_STD.WEEKLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 124, - "2015-01-01": 124 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_STD.WEEKLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_STD.WEEKLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 120, - "2015-01-01": 120 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_STD.WEEKLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_STD.WEEKLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 117, - "2015-01-01": 117 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_STD.WEEKLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_STD.WEEKLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 114, - "2015-01-01": 114 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_STD.DAILY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.2.LE_STD.DAILY", - "description": null, - "label": "DAILY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_STD.DAILY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_STD.DAILY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 26, - "2015-01-01": 26 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_STD.DAILY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_STD.DAILY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 26, - "2015-01-01": 26 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_STD.DAILY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_STD.DAILY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 25, - "2015-01-01": 25 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_STD.DAILY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_STD.DAILY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 23, - "2015-01-01": 23 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_STD.PART_DAY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.2.LE_STD.PART_DAY", - "description": null, - "label": "PART DAY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_STD.PART_DAY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_STD.PART_DAY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 18, - "2015-01-01": 18 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_STD.PART_DAY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_STD.PART_DAY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 18, - "2015-01-01": 18 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_STD.PART_DAY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_STD.PART_DAY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 16, - "2015-01-01": 16 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_STD.PART_DAY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_STD.PART_DAY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 15, - "2015-01-01": 15 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_STD.HOURLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.2.LE_STD.HOURLY", - "description": null, - "label": "HOURLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_STD.HOURLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_STD.HOURLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 5.2, - "2015-01-01": 5.2 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_STD.HOURLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_STD.HOURLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 5.2, - "2015-01-01": 5.2 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_STD.HOURLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_STD.HOURLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 5.2, - "2015-01-01": 5.2 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_STD.HOURLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_STD.HOURLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 5.2, - "2015-01-01": 5.2 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_ENH": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.2.LE_ENH", - "description": null, - "label": "LE ENH", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_ENH.WEEKLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.2.LE_ENH.WEEKLY", - "description": null, - "label": "WEEKLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_ENH.WEEKLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_ENH.WEEKLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 133, - "2015-01-01": 133 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_ENH.WEEKLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_ENH.WEEKLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 130, - "2015-01-01": 130 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_ENH.WEEKLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_ENH.WEEKLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 126, - "2015-01-01": 126 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_ENH.WEEKLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_ENH.WEEKLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 123, - "2015-01-01": 123 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_ENH.DAILY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.2.LE_ENH.DAILY", - "description": null, - "label": "DAILY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_ENH.DAILY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_ENH.DAILY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 28, - "2015-01-01": 28 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_ENH.DAILY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_ENH.DAILY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 28, - "2015-01-01": 28 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_ENH.DAILY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_ENH.DAILY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 27, - "2015-01-01": 27 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_ENH.DAILY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_ENH.DAILY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 25, - "2015-01-01": 25 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_ENH.PART_DAY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.2.LE_ENH.PART_DAY", - "description": null, - "label": "PART DAY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_ENH.PART_DAY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_ENH.PART_DAY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 19, - "2015-01-01": 19 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_ENH.PART_DAY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_ENH.PART_DAY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 19, - "2015-01-01": 19 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_ENH.PART_DAY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_ENH.PART_DAY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 18, - "2015-01-01": 18 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_ENH.PART_DAY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_ENH.PART_DAY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 16, - "2015-01-01": 16 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_ENH.HOURLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.2.LE_ENH.HOURLY", - "description": null, - "label": "HOURLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_ENH.HOURLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_ENH.HOURLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 5.6, - "2015-01-01": 5.6 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_ENH.HOURLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_ENH.HOURLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 5.6, - "2015-01-01": 5.6 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_ENH.HOURLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_ENH.HOURLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 5.6, - "2015-01-01": 5.6 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.2.LE_ENH.HOURLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.2.LE_ENH.HOURLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 5.6, - "2015-01-01": 5.6 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.3", - "description": null, - "label": "3", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.DCC_SACC": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.3.DCC_SACC", - "description": null, - "label": "DCC SACC", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.DCC_SACC.WEEKLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.3.DCC_SACC.WEEKLY", - "description": null, - "label": "WEEKLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.DCC_SACC.WEEKLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.DCC_SACC.WEEKLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 220, - "2015-01-01": 220 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.DCC_SACC.WEEKLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.DCC_SACC.WEEKLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 206, - "2015-01-01": 206 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.DCC_SACC.WEEKLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.DCC_SACC.WEEKLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 195, - "2015-01-01": 195 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.DCC_SACC.WEEKLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.DCC_SACC.WEEKLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 180, - "2015-01-01": 180 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.DCC_SACC.DAILY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.3.DCC_SACC.DAILY", - "description": null, - "label": "DAILY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.DCC_SACC.DAILY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.DCC_SACC.DAILY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 48, - "2015-01-01": 48 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.DCC_SACC.DAILY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.DCC_SACC.DAILY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 45, - "2015-01-01": 45 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.DCC_SACC.DAILY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.DCC_SACC.DAILY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 44, - "2015-01-01": 44 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.DCC_SACC.DAILY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.DCC_SACC.DAILY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 39, - "2015-01-01": 39 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.DCC_SACC.PART_DAY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.3.DCC_SACC.PART_DAY", - "description": null, - "label": "PART DAY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.DCC_SACC.PART_DAY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.DCC_SACC.PART_DAY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 32, - "2015-01-01": 32 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.DCC_SACC.PART_DAY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.DCC_SACC.PART_DAY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 30, - "2015-01-01": 30 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.DCC_SACC.PART_DAY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.DCC_SACC.PART_DAY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 29, - "2015-01-01": 29 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.DCC_SACC.PART_DAY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.DCC_SACC.PART_DAY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 26, - "2015-01-01": 26 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.DCC_SACC.HOURLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.3.DCC_SACC.HOURLY", - "description": null, - "label": "HOURLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.DCC_SACC.HOURLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.DCC_SACC.HOURLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 8, - "2015-01-01": 8 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.DCC_SACC.HOURLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.DCC_SACC.HOURLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 8, - "2015-01-01": 8 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.DCC_SACC.HOURLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.DCC_SACC.HOURLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 8, - "2015-01-01": 8 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.DCC_SACC.HOURLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.DCC_SACC.HOURLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 7, - "2015-01-01": 7 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.FDC_GFDC": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.3.FDC_GFDC", - "description": null, - "label": "FDC GFDC", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.FDC_GFDC.WEEKLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.3.FDC_GFDC.WEEKLY", - "description": null, - "label": "WEEKLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.FDC_GFDC.WEEKLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.FDC_GFDC.WEEKLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 160, - "2015-01-01": 160 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.FDC_GFDC.WEEKLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.FDC_GFDC.WEEKLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 150, - "2015-01-01": 150 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.FDC_GFDC.WEEKLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.FDC_GFDC.WEEKLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 150, - "2015-01-01": 150 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.FDC_GFDC.WEEKLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.FDC_GFDC.WEEKLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 150, - "2015-01-01": 150 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.FDC_GFDC.DAILY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.3.FDC_GFDC.DAILY", - "description": null, - "label": "DAILY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.FDC_GFDC.DAILY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.FDC_GFDC.DAILY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 35, - "2015-01-01": 35 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.FDC_GFDC.DAILY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.FDC_GFDC.DAILY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 35, - "2015-01-01": 35 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.FDC_GFDC.DAILY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.FDC_GFDC.DAILY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 33, - "2015-01-01": 33 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.FDC_GFDC.DAILY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.FDC_GFDC.DAILY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 30, - "2015-01-01": 30 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.FDC_GFDC.PART_DAY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.3.FDC_GFDC.PART_DAY", - "description": null, - "label": "PART DAY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.FDC_GFDC.PART_DAY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.FDC_GFDC.PART_DAY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 23, - "2015-01-01": 23 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.FDC_GFDC.PART_DAY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.FDC_GFDC.PART_DAY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 23, - "2015-01-01": 23 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.FDC_GFDC.PART_DAY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.FDC_GFDC.PART_DAY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 22, - "2015-01-01": 22 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.FDC_GFDC.PART_DAY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.FDC_GFDC.PART_DAY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 20, - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.FDC_GFDC.HOURLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.3.FDC_GFDC.HOURLY", - "description": null, - "label": "HOURLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.FDC_GFDC.HOURLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.FDC_GFDC.HOURLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 5, - "2015-01-01": 5 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.FDC_GFDC.HOURLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.FDC_GFDC.HOURLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 5, - "2015-01-01": 5 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.FDC_GFDC.HOURLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.FDC_GFDC.HOURLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 5, - "2015-01-01": 5 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.FDC_GFDC.HOURLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.FDC_GFDC.HOURLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 5, - "2015-01-01": 5 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_GC": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.3.LE_GC", - "description": null, - "label": "LE GC", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_GC.WEEKLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.3.LE_GC.WEEKLY", - "description": null, - "label": "WEEKLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_GC.WEEKLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_GC.WEEKLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_GC.WEEKLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_GC.WEEKLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_GC.WEEKLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_GC.WEEKLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 146, - "2015-01-01": 146 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_GC.WEEKLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_GC.WEEKLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 135, - "2015-01-01": 135 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_GC.DAILY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.3.LE_GC.DAILY", - "description": null, - "label": "DAILY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_GC.DAILY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_GC.DAILY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_GC.DAILY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_GC.DAILY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_GC.DAILY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_GC.DAILY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 33, - "2015-01-01": 33 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_GC.DAILY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_GC.DAILY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 29, - "2015-01-01": 29 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_GC.PART_DAY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.3.LE_GC.PART_DAY", - "description": null, - "label": "PART DAY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_GC.PART_DAY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_GC.PART_DAY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_GC.PART_DAY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_GC.PART_DAY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_GC.PART_DAY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_GC.PART_DAY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 22, - "2015-01-01": 22 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_GC.PART_DAY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_GC.PART_DAY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 20, - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_GC.HOURLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.3.LE_GC.HOURLY", - "description": null, - "label": "HOURLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_GC.HOURLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_GC.HOURLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_GC.HOURLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_GC.HOURLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_GC.HOURLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_GC.HOURLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 6, - "2015-01-01": 6 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_GC.HOURLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_GC.HOURLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 5.25, - "2015-01-01": 5.25 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_STD": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.3.LE_STD", - "description": null, - "label": "LE STD", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_STD.WEEKLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.3.LE_STD.WEEKLY", - "description": null, - "label": "WEEKLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_STD.WEEKLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_STD.WEEKLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 104, - "2015-01-01": 104 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_STD.WEEKLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_STD.WEEKLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 98, - "2015-01-01": 98 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_STD.WEEKLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_STD.WEEKLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 98, - "2015-01-01": 98 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_STD.WEEKLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_STD.WEEKLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 98, - "2015-01-01": 98 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_STD.DAILY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.3.LE_STD.DAILY", - "description": null, - "label": "DAILY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_STD.DAILY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_STD.DAILY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 23, - "2015-01-01": 23 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_STD.DAILY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_STD.DAILY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 23, - "2015-01-01": 23 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_STD.DAILY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_STD.DAILY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 21, - "2015-01-01": 21 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_STD.DAILY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_STD.DAILY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 20, - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_STD.PART_DAY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.3.LE_STD.PART_DAY", - "description": null, - "label": "PART DAY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_STD.PART_DAY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_STD.PART_DAY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 15, - "2015-01-01": 15 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_STD.PART_DAY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_STD.PART_DAY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 15, - "2015-01-01": 15 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_STD.PART_DAY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_STD.PART_DAY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 14, - "2015-01-01": 14 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_STD.PART_DAY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_STD.PART_DAY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 13, - "2015-01-01": 13 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_STD.HOURLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.3.LE_STD.HOURLY", - "description": null, - "label": "HOURLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_STD.HOURLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_STD.HOURLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 3.25, - "2015-01-01": 3.25 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_STD.HOURLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_STD.HOURLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 3.25, - "2015-01-01": 3.25 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_STD.HOURLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_STD.HOURLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 3.25, - "2015-01-01": 3.25 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_STD.HOURLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_STD.HOURLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 3.25, - "2015-01-01": 3.25 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_ENH": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.3.LE_ENH", - "description": null, - "label": "LE ENH", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_ENH.WEEKLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.3.LE_ENH.WEEKLY", - "description": null, - "label": "WEEKLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_ENH.WEEKLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_ENH.WEEKLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 112, - "2015-01-01": 112 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_ENH.WEEKLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_ENH.WEEKLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 105, - "2015-01-01": 105 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_ENH.WEEKLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_ENH.WEEKLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 105, - "2015-01-01": 105 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_ENH.WEEKLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_ENH.WEEKLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 105, - "2015-01-01": 105 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_ENH.DAILY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.3.LE_ENH.DAILY", - "description": null, - "label": "DAILY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_ENH.DAILY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_ENH.DAILY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 25, - "2015-01-01": 25 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_ENH.DAILY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_ENH.DAILY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 25, - "2015-01-01": 25 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_ENH.DAILY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_ENH.DAILY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 23, - "2015-01-01": 23 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_ENH.DAILY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_ENH.DAILY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 21, - "2015-01-01": 21 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_ENH.PART_DAY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.3.LE_ENH.PART_DAY", - "description": null, - "label": "PART DAY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_ENH.PART_DAY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_ENH.PART_DAY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 16, - "2015-01-01": 16 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_ENH.PART_DAY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_ENH.PART_DAY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 16, - "2015-01-01": 16 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_ENH.PART_DAY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_ENH.PART_DAY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 15, - "2015-01-01": 15 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_ENH.PART_DAY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_ENH.PART_DAY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 14, - "2015-01-01": 14 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_ENH.HOURLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.3.LE_ENH.HOURLY", - "description": null, - "label": "HOURLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_ENH.HOURLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_ENH.HOURLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 3.5, - "2015-01-01": 3.5 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_ENH.HOURLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_ENH.HOURLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 3.5, - "2015-01-01": 3.5 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_ENH.HOURLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_ENH.HOURLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 3.5, - "2015-01-01": 3.5 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.3.LE_ENH.HOURLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.3.LE_ENH.HOURLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 3.5, - "2015-01-01": 3.5 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.4", - "description": null, - "label": "4", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.DCC_SACC": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.4.DCC_SACC", - "description": null, - "label": "DCC SACC", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.DCC_SACC.WEEKLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.4.DCC_SACC.WEEKLY", - "description": null, - "label": "WEEKLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.DCC_SACC.WEEKLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.DCC_SACC.WEEKLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 282, - "2015-01-01": 282 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.DCC_SACC.WEEKLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.DCC_SACC.WEEKLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 265, - "2015-01-01": 265 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.DCC_SACC.WEEKLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.DCC_SACC.WEEKLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 250, - "2015-01-01": 250 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.DCC_SACC.WEEKLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.DCC_SACC.WEEKLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 230, - "2015-01-01": 230 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.DCC_SACC.DAILY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.4.DCC_SACC.DAILY", - "description": null, - "label": "DAILY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.DCC_SACC.DAILY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.DCC_SACC.DAILY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 59, - "2015-01-01": 59 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.DCC_SACC.DAILY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.DCC_SACC.DAILY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 55, - "2015-01-01": 55 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.DCC_SACC.DAILY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.DCC_SACC.DAILY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 52, - "2015-01-01": 52 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.DCC_SACC.DAILY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.DCC_SACC.DAILY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 50, - "2015-01-01": 50 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.DCC_SACC.PART_DAY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.4.DCC_SACC.PART_DAY", - "description": null, - "label": "PART DAY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.DCC_SACC.PART_DAY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.DCC_SACC.PART_DAY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 39, - "2015-01-01": 39 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.DCC_SACC.PART_DAY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.DCC_SACC.PART_DAY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 37, - "2015-01-01": 37 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.DCC_SACC.PART_DAY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.DCC_SACC.PART_DAY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 35, - "2015-01-01": 35 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.DCC_SACC.PART_DAY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.DCC_SACC.PART_DAY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 33, - "2015-01-01": 33 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.DCC_SACC.HOURLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.4.DCC_SACC.HOURLY", - "description": null, - "label": "HOURLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.DCC_SACC.HOURLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.DCC_SACC.HOURLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 8.5, - "2015-01-01": 8.5 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.DCC_SACC.HOURLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.DCC_SACC.HOURLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 8.25, - "2015-01-01": 8.25 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.DCC_SACC.HOURLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.DCC_SACC.HOURLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 9, - "2015-01-01": 9 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.DCC_SACC.HOURLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.DCC_SACC.HOURLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 9.75, - "2015-01-01": 9.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.FDC_GFDC": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.4.FDC_GFDC", - "description": null, - "label": "FDC GFDC", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.FDC_GFDC.WEEKLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.4.FDC_GFDC.WEEKLY", - "description": null, - "label": "WEEKLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.FDC_GFDC.WEEKLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.FDC_GFDC.WEEKLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 225, - "2015-01-01": 225 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.FDC_GFDC.WEEKLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.FDC_GFDC.WEEKLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 210, - "2015-01-01": 210 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.FDC_GFDC.WEEKLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.FDC_GFDC.WEEKLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 200, - "2015-01-01": 200 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.FDC_GFDC.WEEKLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.FDC_GFDC.WEEKLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 200, - "2015-01-01": 200 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.FDC_GFDC.DAILY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.4.FDC_GFDC.DAILY", - "description": null, - "label": "DAILY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.FDC_GFDC.DAILY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.FDC_GFDC.DAILY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 45, - "2015-01-01": 45 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.FDC_GFDC.DAILY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.FDC_GFDC.DAILY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 45, - "2015-01-01": 45 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.FDC_GFDC.DAILY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.FDC_GFDC.DAILY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 45, - "2015-01-01": 45 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.FDC_GFDC.DAILY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.FDC_GFDC.DAILY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 40, - "2015-01-01": 40 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.FDC_GFDC.PART_DAY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.4.FDC_GFDC.PART_DAY", - "description": null, - "label": "PART DAY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.FDC_GFDC.PART_DAY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.FDC_GFDC.PART_DAY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 30, - "2015-01-01": 30 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.FDC_GFDC.PART_DAY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.FDC_GFDC.PART_DAY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 30, - "2015-01-01": 30 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.FDC_GFDC.PART_DAY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.FDC_GFDC.PART_DAY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 30, - "2015-01-01": 30 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.FDC_GFDC.PART_DAY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.FDC_GFDC.PART_DAY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 27, - "2015-01-01": 27 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.FDC_GFDC.HOURLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.4.FDC_GFDC.HOURLY", - "description": null, - "label": "HOURLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.FDC_GFDC.HOURLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.FDC_GFDC.HOURLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 8.75, - "2015-01-01": 8.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.FDC_GFDC.HOURLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.FDC_GFDC.HOURLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 8.75, - "2015-01-01": 8.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.FDC_GFDC.HOURLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.FDC_GFDC.HOURLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 8.5, - "2015-01-01": 8.5 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.FDC_GFDC.HOURLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.FDC_GFDC.HOURLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 9, - "2015-01-01": 9 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_GC": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.4.LE_GC", - "description": null, - "label": "LE GC", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_GC.WEEKLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.4.LE_GC.WEEKLY", - "description": null, - "label": "WEEKLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_GC.WEEKLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_GC.WEEKLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_GC.WEEKLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_GC.WEEKLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_GC.WEEKLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_GC.WEEKLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 188, - "2015-01-01": 188 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_GC.WEEKLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_GC.WEEKLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 173, - "2015-01-01": 173 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_GC.DAILY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.4.LE_GC.DAILY", - "description": null, - "label": "DAILY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_GC.DAILY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_GC.DAILY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_GC.DAILY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_GC.DAILY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_GC.DAILY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_GC.DAILY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 39, - "2015-01-01": 39 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_GC.DAILY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_GC.DAILY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 38, - "2015-01-01": 38 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_GC.PART_DAY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.4.LE_GC.PART_DAY", - "description": null, - "label": "PART DAY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_GC.PART_DAY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_GC.PART_DAY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_GC.PART_DAY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_GC.PART_DAY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_GC.PART_DAY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_GC.PART_DAY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 26, - "2015-01-01": 26 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_GC.PART_DAY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_GC.PART_DAY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 25, - "2015-01-01": 25 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_GC.HOURLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.4.LE_GC.HOURLY", - "description": null, - "label": "HOURLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_GC.HOURLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_GC.HOURLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_GC.HOURLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_GC.HOURLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_GC.HOURLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_GC.HOURLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 6.75, - "2015-01-01": 6.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_GC.HOURLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_GC.HOURLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 7.31, - "2015-01-01": 7.31 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_STD": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.4.LE_STD", - "description": null, - "label": "LE STD", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_STD.WEEKLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.4.LE_STD.WEEKLY", - "description": null, - "label": "WEEKLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_STD.WEEKLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_STD.WEEKLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 146, - "2015-01-01": 146 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_STD.WEEKLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_STD.WEEKLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 137, - "2015-01-01": 137 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_STD.WEEKLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_STD.WEEKLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 130, - "2015-01-01": 130 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_STD.WEEKLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_STD.WEEKLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 130, - "2015-01-01": 130 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_STD.DAILY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.4.LE_STD.DAILY", - "description": null, - "label": "DAILY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_STD.DAILY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_STD.DAILY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 29, - "2015-01-01": 29 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_STD.DAILY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_STD.DAILY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 29, - "2015-01-01": 29 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_STD.DAILY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_STD.DAILY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 29, - "2015-01-01": 29 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_STD.DAILY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_STD.DAILY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 26, - "2015-01-01": 26 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_STD.PART_DAY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.4.LE_STD.PART_DAY", - "description": null, - "label": "PART DAY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_STD.PART_DAY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_STD.PART_DAY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 20, - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_STD.PART_DAY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_STD.PART_DAY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 20, - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_STD.PART_DAY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_STD.PART_DAY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 20, - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_STD.PART_DAY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_STD.PART_DAY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 18, - "2015-01-01": 18 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_STD.HOURLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.4.LE_STD.HOURLY", - "description": null, - "label": "HOURLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_STD.HOURLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_STD.HOURLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 5.69, - "2015-01-01": 5.69 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_STD.HOURLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_STD.HOURLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 5.69, - "2015-01-01": 5.69 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_STD.HOURLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_STD.HOURLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 5.53, - "2015-01-01": 5.53 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_STD.HOURLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_STD.HOURLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 5.85, - "2015-01-01": 5.85 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_ENH": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.4.LE_ENH", - "description": null, - "label": "LE ENH", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_ENH.WEEKLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.4.LE_ENH.WEEKLY", - "description": null, - "label": "WEEKLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_ENH.WEEKLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_ENH.WEEKLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 158, - "2015-01-01": 158 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_ENH.WEEKLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_ENH.WEEKLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 147, - "2015-01-01": 147 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_ENH.WEEKLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_ENH.WEEKLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 140, - "2015-01-01": 140 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_ENH.WEEKLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_ENH.WEEKLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 140, - "2015-01-01": 140 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_ENH.DAILY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.4.LE_ENH.DAILY", - "description": null, - "label": "DAILY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_ENH.DAILY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_ENH.DAILY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 32, - "2015-01-01": 32 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_ENH.DAILY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_ENH.DAILY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 32, - "2015-01-01": 32 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_ENH.DAILY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_ENH.DAILY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 32, - "2015-01-01": 32 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_ENH.DAILY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_ENH.DAILY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 28, - "2015-01-01": 28 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_ENH.PART_DAY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.4.LE_ENH.PART_DAY", - "description": null, - "label": "PART DAY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_ENH.PART_DAY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_ENH.PART_DAY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 21, - "2015-01-01": 21 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_ENH.PART_DAY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_ENH.PART_DAY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 21, - "2015-01-01": 21 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_ENH.PART_DAY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_ENH.PART_DAY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 21, - "2015-01-01": 21 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_ENH.PART_DAY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_ENH.PART_DAY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 19, - "2015-01-01": 19 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_ENH.HOURLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.4.LE_ENH.HOURLY", - "description": null, - "label": "HOURLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_ENH.HOURLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_ENH.HOURLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 6.13, - "2015-01-01": 6.13 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_ENH.HOURLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_ENH.HOURLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 6.13, - "2015-01-01": 6.13 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_ENH.HOURLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_ENH.HOURLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 5.95, - "2015-01-01": 5.95 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.4.LE_ENH.HOURLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.4.LE_ENH.HOURLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 6.3, - "2015-01-01": 6.3 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.5", - "description": null, - "label": "5", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.DCC_SACC": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.5.DCC_SACC", - "description": null, - "label": "DCC SACC", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.DCC_SACC.WEEKLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.5.DCC_SACC.WEEKLY", - "description": null, - "label": "WEEKLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.DCC_SACC.WEEKLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.DCC_SACC.WEEKLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 406, - "2015-01-01": 406 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.DCC_SACC.WEEKLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.DCC_SACC.WEEKLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 315, - "2015-01-01": 315 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.DCC_SACC.WEEKLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.DCC_SACC.WEEKLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 289, - "2015-01-01": 289 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.DCC_SACC.WEEKLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.DCC_SACC.WEEKLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 236, - "2015-01-01": 236 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.DCC_SACC.DAILY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.5.DCC_SACC.DAILY", - "description": null, - "label": "DAILY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.DCC_SACC.DAILY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.DCC_SACC.DAILY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 69, - "2015-01-01": 69 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.DCC_SACC.DAILY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.DCC_SACC.DAILY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.DCC_SACC.DAILY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.DCC_SACC.DAILY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 54, - "2015-01-01": 54 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.DCC_SACC.DAILY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.DCC_SACC.DAILY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 47, - "2015-01-01": 47 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.DCC_SACC.PART_DAY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.5.DCC_SACC.PART_DAY", - "description": null, - "label": "PART DAY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.DCC_SACC.PART_DAY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.DCC_SACC.PART_DAY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 46, - "2015-01-01": 46 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.DCC_SACC.PART_DAY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.DCC_SACC.PART_DAY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 40, - "2015-01-01": 40 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.DCC_SACC.PART_DAY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.DCC_SACC.PART_DAY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 36, - "2015-01-01": 36 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.DCC_SACC.PART_DAY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.DCC_SACC.PART_DAY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 31, - "2015-01-01": 31 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.DCC_SACC.HOURLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.5.DCC_SACC.HOURLY", - "description": null, - "label": "HOURLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.DCC_SACC.HOURLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.DCC_SACC.HOURLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 15.75, - "2015-01-01": 15.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.DCC_SACC.HOURLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.DCC_SACC.HOURLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 17, - "2015-01-01": 17 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.DCC_SACC.HOURLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.DCC_SACC.HOURLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 15.75, - "2015-01-01": 15.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.DCC_SACC.HOURLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.DCC_SACC.HOURLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 10, - "2015-01-01": 10 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.FDC_GFDC": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.5.FDC_GFDC", - "description": null, - "label": "FDC GFDC", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.FDC_GFDC.WEEKLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.5.FDC_GFDC.WEEKLY", - "description": null, - "label": "WEEKLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.FDC_GFDC.WEEKLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.FDC_GFDC.WEEKLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 200, - "2015-01-01": 200 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.FDC_GFDC.WEEKLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.FDC_GFDC.WEEKLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 196, - "2015-01-01": 196 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.FDC_GFDC.WEEKLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.FDC_GFDC.WEEKLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 185, - "2015-01-01": 185 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.FDC_GFDC.WEEKLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.FDC_GFDC.WEEKLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 170, - "2015-01-01": 170 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.FDC_GFDC.DAILY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.5.FDC_GFDC.DAILY", - "description": null, - "label": "DAILY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.FDC_GFDC.DAILY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.FDC_GFDC.DAILY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 40, - "2015-01-01": 40 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.FDC_GFDC.DAILY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.FDC_GFDC.DAILY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 40, - "2015-01-01": 40 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.FDC_GFDC.DAILY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.FDC_GFDC.DAILY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 35, - "2015-01-01": 35 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.FDC_GFDC.DAILY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.FDC_GFDC.DAILY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 35, - "2015-01-01": 35 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.FDC_GFDC.PART_DAY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.5.FDC_GFDC.PART_DAY", - "description": null, - "label": "PART DAY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.FDC_GFDC.PART_DAY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.FDC_GFDC.PART_DAY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 27, - "2015-01-01": 27 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.FDC_GFDC.PART_DAY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.FDC_GFDC.PART_DAY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 27, - "2015-01-01": 27 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.FDC_GFDC.PART_DAY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.FDC_GFDC.PART_DAY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 23, - "2015-01-01": 23 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.FDC_GFDC.PART_DAY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.FDC_GFDC.PART_DAY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 23, - "2015-01-01": 23 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.FDC_GFDC.HOURLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.5.FDC_GFDC.HOURLY", - "description": null, - "label": "HOURLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.FDC_GFDC.HOURLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.FDC_GFDC.HOURLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 16, - "2015-01-01": 16 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.FDC_GFDC.HOURLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.FDC_GFDC.HOURLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 15, - "2015-01-01": 15 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.FDC_GFDC.HOURLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.FDC_GFDC.HOURLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 15, - "2015-01-01": 15 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.FDC_GFDC.HOURLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.FDC_GFDC.HOURLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 15, - "2015-01-01": 15 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_GC": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.5.LE_GC", - "description": null, - "label": "LE GC", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_GC.WEEKLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.5.LE_GC.WEEKLY", - "description": null, - "label": "WEEKLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_GC.WEEKLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_GC.WEEKLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_GC.WEEKLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_GC.WEEKLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_GC.WEEKLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_GC.WEEKLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 217, - "2015-01-01": 217 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_GC.WEEKLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_GC.WEEKLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 177, - "2015-01-01": 177 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_GC.DAILY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.5.LE_GC.DAILY", - "description": null, - "label": "DAILY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_GC.DAILY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_GC.DAILY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_GC.DAILY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_GC.DAILY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_GC.DAILY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_GC.DAILY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 41, - "2015-01-01": 41 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_GC.DAILY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_GC.DAILY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 35, - "2015-01-01": 35 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_GC.PART_DAY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.5.LE_GC.PART_DAY", - "description": null, - "label": "PART DAY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_GC.PART_DAY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_GC.PART_DAY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_GC.PART_DAY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_GC.PART_DAY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_GC.PART_DAY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_GC.PART_DAY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 27, - "2015-01-01": 27 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_GC.PART_DAY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_GC.PART_DAY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 23, - "2015-01-01": 23 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_GC.HOURLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.5.LE_GC.HOURLY", - "description": null, - "label": "HOURLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_GC.HOURLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_GC.HOURLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_GC.HOURLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_GC.HOURLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_GC.HOURLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_GC.HOURLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 11.81, - "2015-01-01": 11.81 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_GC.HOURLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_GC.HOURLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 7.5, - "2015-01-01": 7.5 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_STD": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.5.LE_STD", - "description": null, - "label": "LE STD", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_STD.WEEKLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.5.LE_STD.WEEKLY", - "description": null, - "label": "WEEKLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_STD.WEEKLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_STD.WEEKLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 130, - "2015-01-01": 130 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_STD.WEEKLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_STD.WEEKLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 127, - "2015-01-01": 127 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_STD.WEEKLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_STD.WEEKLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 120, - "2015-01-01": 120 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_STD.WEEKLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_STD.WEEKLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 111, - "2015-01-01": 111 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_STD.DAILY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.5.LE_STD.DAILY", - "description": null, - "label": "DAILY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_STD.DAILY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_STD.DAILY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 26, - "2015-01-01": 26 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_STD.DAILY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_STD.DAILY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 26, - "2015-01-01": 26 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_STD.DAILY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_STD.DAILY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 23, - "2015-01-01": 23 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_STD.DAILY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_STD.DAILY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 23, - "2015-01-01": 23 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_STD.PART_DAY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.5.LE_STD.PART_DAY", - "description": null, - "label": "PART DAY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_STD.PART_DAY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_STD.PART_DAY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 18, - "2015-01-01": 18 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_STD.PART_DAY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_STD.PART_DAY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 18, - "2015-01-01": 18 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_STD.PART_DAY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_STD.PART_DAY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 15, - "2015-01-01": 15 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_STD.PART_DAY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_STD.PART_DAY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 15, - "2015-01-01": 15 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_STD.HOURLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.5.LE_STD.HOURLY", - "description": null, - "label": "HOURLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_STD.HOURLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_STD.HOURLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 10.4, - "2015-01-01": 10.4 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_STD.HOURLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_STD.HOURLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 9.75, - "2015-01-01": 9.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_STD.HOURLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_STD.HOURLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 9.75, - "2015-01-01": 9.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_STD.HOURLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_STD.HOURLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 9.75, - "2015-01-01": 9.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_ENH": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.5.LE_ENH", - "description": null, - "label": "LE ENH", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_ENH.WEEKLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.5.LE_ENH.WEEKLY", - "description": null, - "label": "WEEKLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_ENH.WEEKLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_ENH.WEEKLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 140, - "2015-01-01": 140 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_ENH.WEEKLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_ENH.WEEKLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 137, - "2015-01-01": 137 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_ENH.WEEKLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_ENH.WEEKLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 130, - "2015-01-01": 130 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_ENH.WEEKLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_ENH.WEEKLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 119, - "2015-01-01": 119 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_ENH.DAILY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.5.LE_ENH.DAILY", - "description": null, - "label": "DAILY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_ENH.DAILY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_ENH.DAILY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 28, - "2015-01-01": 28 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_ENH.DAILY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_ENH.DAILY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 28, - "2015-01-01": 28 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_ENH.DAILY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_ENH.DAILY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 25, - "2015-01-01": 25 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_ENH.DAILY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_ENH.DAILY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 25, - "2015-01-01": 25 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_ENH.PART_DAY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.5.LE_ENH.PART_DAY", - "description": null, - "label": "PART DAY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_ENH.PART_DAY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_ENH.PART_DAY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 19, - "2015-01-01": 19 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_ENH.PART_DAY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_ENH.PART_DAY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 19, - "2015-01-01": 19 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_ENH.PART_DAY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_ENH.PART_DAY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 16, - "2015-01-01": 16 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_ENH.PART_DAY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_ENH.PART_DAY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 16, - "2015-01-01": 16 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_ENH.HOURLY": { - "type": "parameterNode", - "parameter": "gov.hhs.ccdf.amount.5.LE_ENH.HOURLY", - "description": null, - "label": "HOURLY", - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_ENH.HOURLY.INFANT": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_ENH.HOURLY.INFANT", - "description": null, - "label": "INFANT", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 11.2, - "2015-01-01": 11.2 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_ENH.HOURLY.TODDLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_ENH.HOURLY.TODDLER", - "description": null, - "label": "TODDLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 10.5, - "2015-01-01": 10.5 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_ENH.HOURLY.PRESCHOOLER": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_ENH.HOURLY.PRESCHOOLER", - "description": null, - "label": "PRESCHOOLER", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 10.5, - "2015-01-01": 10.5 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.amount.5.LE_ENH.HOURLY.SCHOOL_AGE": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.amount.5.LE_ENH.HOURLY.SCHOOL_AGE", - "description": null, - "label": "SCHOOL AGE", - "unit": "currency-USD", - "period": null, - "values": { - "2021-10-01": 10.5, - "2015-01-01": 10.5 - }, - "economy": false, - "household": false - }, - "gov.hhs.ccdf.income_limit_smi": { - "type": "parameter", - "parameter": "gov.hhs.ccdf.income_limit_smi", - "description": "CCDF income limit as share of State Median Income (SMI)", - "label": "income limit smi", - "unit": "/1", - "period": null, - "values": { - "2015-01-01": 0.85, - "1991-01-01": 0.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.head_start": { - "type": "parameterNode", - "parameter": "gov.hhs.head_start", - "description": null, - "label": "head start", - "economy": false, - "household": true - }, - "gov.hhs.head_start.early_head_start": { - "type": "parameterNode", - "parameter": "gov.hhs.head_start.early_head_start", - "description": null, - "label": "early head start", - "economy": false, - "household": true - }, - "gov.hhs.head_start.early_head_start.age_limit": { - "type": "parameter", - "parameter": "gov.hhs.head_start.early_head_start.age_limit", - "description": "The Administration for Children and Families limits the Early Head Start participants to children below this age limit.", - "label": "Early Head Start children age limit", - "unit": "year", - "period": "year", - "values": { - "2021-09-01": 3, - "2015-01-01": 3 - }, - "economy": false, - "household": true - }, - "gov.hhs.head_start.age_range": { - "type": "parameterNode", - "parameter": "gov.hhs.head_start.age_range", - "description": "The Administration for Children and Families limits Head Start participants to children within this age range.", - "label": "Head Start children age range" - }, - "gov.hhs.head_start.age_range[0]": { - "type": "parameterNode", - "parameter": "gov.hhs.head_start.age_range[0]", - "description": null, - "label": "bracket 1" - }, - "gov.hhs.head_start.age_range[0].threshold": { - "type": "parameter", - "parameter": "gov.hhs.head_start.age_range[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": "year", - "values": { - "2021-09-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.head_start.age_range[0].amount": { - "type": "parameter", - "parameter": "gov.hhs.head_start.age_range[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": "year", - "values": { - "2021-09-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.head_start.age_range[1]": { - "type": "parameterNode", - "parameter": "gov.hhs.head_start.age_range[1]", - "description": null, - "label": "bracket 2" - }, - "gov.hhs.head_start.age_range[1].threshold": { - "type": "parameter", - "parameter": "gov.hhs.head_start.age_range[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": "year", - "values": { - "2021-09-01": 3, - "2015-01-01": 3 - }, - "economy": false, - "household": true - }, - "gov.hhs.head_start.age_range[1].amount": { - "type": "parameter", - "parameter": "gov.hhs.head_start.age_range[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": "year", - "values": { - "2021-09-01": true, - "2015-01-01": true - }, - "economy": false, - "household": true - }, - "gov.hhs.head_start.age_range[2]": { - "type": "parameterNode", - "parameter": "gov.hhs.head_start.age_range[2]", - "description": null, - "label": "bracket 3" - }, - "gov.hhs.head_start.age_range[2].threshold": { - "type": "parameter", - "parameter": "gov.hhs.head_start.age_range[2].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": "year", - "values": { - "2021-09-01": 5, - "2015-01-01": 5 - }, - "economy": false, - "household": true - }, - "gov.hhs.head_start.age_range[2].amount": { - "type": "parameter", - "parameter": "gov.hhs.head_start.age_range[2].amount", - "description": null, - "label": "amount", - "unit": null, - "period": "year", - "values": { - "2021-09-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.head_start.categorical_eligibility": { - "type": "parameter", - "parameter": "gov.hhs.head_start.categorical_eligibility", - "description": "The Administration for Children and Families requires participation in one of the following programs to qualify for the Early Head Start or Head Start programs.", - "label": "Head Start qualifying programs", - "unit": "list", - "period": "year", - "values": { - "2021-09-01": ["tanf", "ssi", "snap", "is_homeless", "was_in_foster_care"], - "2015-01-01": ["tanf", "ssi", "snap", "is_homeless", "was_in_foster_care"] - }, - "economy": false, - "household": true - }, - "gov.hhs.uprating": { - "type": "parameter", - "parameter": "gov.hhs.uprating", - "description": "The US indexes the federal poverty guidelines according to this schedule, annually updating based on CPI-U in the calendar year.", - "label": "Poverty line uprating", - "unit": "currency-USD", - "period": null, - "values": { - "2035-01-01": 401.3, - "2034-01-01": 392.5, - "2033-01-01": 383.9, - "2032-01-01": 375.5, - "2031-01-01": 367.2, - "2030-01-01": 359.2, - "2029-01-01": 351.3, - "2028-01-01": 343.6, - "2027-01-01": 336.1, - "2026-01-01": 328.4, - "2025-01-01": 320.6, - "2024-01-01": 313.6, - "2015-01-01": 313.6 - }, - "economy": false, - "household": true - }, - "gov.hhs.medicaid": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid", - "description": null, - "label": "medicaid", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.income": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.income", - "description": null, - "label": "income", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.income.modification": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.income.modification", - "description": "Income sources not included in AGI but included in Medicaid/CHIP/ACA-related MAGI.", - "label": "Medicaid/CHIP/ACA-related MAGI additions over AGI", - "unit": "list", - "period": null, - "values": { - "2010-01-01": [ - "foreign_earned_income_exclusion", - "tax_exempt_interest_income", - "tax_exempt_social_security" - ] - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility", - "description": null, - "label": "eligibility", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.work_requirements": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.work_requirements", - "description": null, - "label": "work requirements", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.work_requirements.dependent_age_limit": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.work_requirements.dependent_age_limit", - "description": "The Department of Health and Human Services exempts Medicaid work requirement to individuals with a dependent child at this age or younger.", - "label": "Medicaid work requirement dependent child age limit", - "unit": "year", - "period": "year", - "values": { - "2027-01-01": 13, - "2015-01-01": 13 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.work_requirements.age_range": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.work_requirements.age_range", - "description": "The Department of Health and Human Services requires individuals within these age brackets to meet Medicaid work requirements.", - "label": "Medicaid work requirements age threshold" - }, - "gov.hhs.medicaid.eligibility.work_requirements.age_range[0]": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.work_requirements.age_range[0]", - "description": null, - "label": "bracket 1" - }, - "gov.hhs.medicaid.eligibility.work_requirements.age_range[0].threshold": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.work_requirements.age_range[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": "year", - "values": { - "2027-01-01": 0, - "2015-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.work_requirements.age_range[0].amount": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.work_requirements.age_range[0].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": "year", - "values": { - "2027-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.work_requirements.age_range[1]": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.work_requirements.age_range[1]", - "description": null, - "label": "bracket 2" - }, - "gov.hhs.medicaid.eligibility.work_requirements.age_range[1].threshold": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.work_requirements.age_range[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": "year", - "values": { - "2027-01-01": 19, - "2015-01-01": 19 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.work_requirements.age_range[1].amount": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.work_requirements.age_range[1].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": "year", - "values": { - "2027-01-01": true, - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.work_requirements.age_range[2]": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.work_requirements.age_range[2]", - "description": null, - "label": "bracket 3" - }, - "gov.hhs.medicaid.eligibility.work_requirements.age_range[2].threshold": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.work_requirements.age_range[2].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": "year", - "values": { - "2027-01-01": 65, - "2015-01-01": 65 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.work_requirements.age_range[2].amount": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.work_requirements.age_range[2].amount", - "description": null, - "label": "amount", - "unit": "bool", - "period": "year", - "values": { - "2027-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.work_requirements.monthly_hours_threshold": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.work_requirements.monthly_hours_threshold", - "description": "The Department of Health and Human Services limits Medicaid to individuals working more than this number of monthly hours.", - "label": "Medicaid work requirement monthly hours threshold", - "unit": "hours", - "period": "month", - "values": { - "2027-01-01": 80, - "2015-01-01": 80 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.work_requirements.applies": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.work_requirements.applies", - "description": "The Department of Health and Human Services limits Medicaid to filers who meet work requirements, if this is true.", - "label": "Medicaid work requirements apply", - "unit": "bool", - "period": "year", - "values": { - "2027-01-01": true, - "0000-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant", - "description": "The following states provide Medicaid coverage to undocumented immigrants.", - "label": "Medicaid undocumented immigrant eligibility", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.AL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.AL", - "description": null, - "label": "AL", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.AK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.AK", - "description": null, - "label": "AK", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.AZ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.AZ", - "description": null, - "label": "AZ", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.AR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.AR", - "description": null, - "label": "AR", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.CA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.CA", - "description": null, - "label": "CA", - "unit": "bool", - "period": "year", - "values": { - "2022-01-01": true, - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.CO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.CO", - "description": null, - "label": "CO", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.CT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.CT", - "description": null, - "label": "CT", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.DC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.DC", - "description": null, - "label": "DC", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.DE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.DE", - "description": null, - "label": "DE", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.FL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.FL", - "description": null, - "label": "FL", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.GA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.GA", - "description": null, - "label": "GA", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.HI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.HI", - "description": null, - "label": "HI", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.ID": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.ID", - "description": null, - "label": "ID", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.IL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.IL", - "description": null, - "label": "IL", - "unit": "bool", - "period": "year", - "values": { - "2022-01-01": true, - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.IN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.IN", - "description": null, - "label": "IN", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.IA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.IA", - "description": null, - "label": "IA", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.KS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.KS", - "description": null, - "label": "KS", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.KY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.KY", - "description": null, - "label": "KY", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.LA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.LA", - "description": null, - "label": "LA", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.ME": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.ME", - "description": null, - "label": "ME", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.MD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.MD", - "description": null, - "label": "MD", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.MA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.MA", - "description": null, - "label": "MA", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.MI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.MI", - "description": null, - "label": "MI", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.MN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.MN", - "description": null, - "label": "MN", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.MS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.MS", - "description": null, - "label": "MS", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.MO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.MO", - "description": null, - "label": "MO", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.MT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.MT", - "description": null, - "label": "MT", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.NE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.NE", - "description": null, - "label": "NE", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.NV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.NV", - "description": null, - "label": "NV", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.NH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.NH", - "description": null, - "label": "NH", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.NJ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.NJ", - "description": null, - "label": "NJ", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.NM": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.NM", - "description": null, - "label": "NM", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.NY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.NY", - "description": null, - "label": "NY", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.NC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.NC", - "description": null, - "label": "NC", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.ND": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.ND", - "description": null, - "label": "ND", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.OH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.OH", - "description": null, - "label": "OH", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.OK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.OK", - "description": null, - "label": "OK", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.OR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.OR", - "description": null, - "label": "OR", - "unit": "bool", - "period": "year", - "values": { - "2023-07-01": true, - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.PA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.PA", - "description": null, - "label": "PA", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.RI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.RI", - "description": null, - "label": "RI", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.SC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.SC", - "description": null, - "label": "SC", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.SD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.SD", - "description": null, - "label": "SD", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.TN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.TN", - "description": null, - "label": "TN", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.TX": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.TX", - "description": null, - "label": "TX", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.UT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.UT", - "description": null, - "label": "UT", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.VT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.VT", - "description": null, - "label": "VT", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.VA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.VA", - "description": null, - "label": "VA", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.WA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.WA", - "description": null, - "label": "WA", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.WV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.WV", - "description": null, - "label": "WV", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.WI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.WI", - "description": null, - "label": "WI", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.WY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.WY", - "description": null, - "label": "WY", - "unit": "bool", - "period": "year", - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.PW": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.PW", - "description": null, - "label": "PW", - "unit": "bool", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.VI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.VI", - "description": null, - "label": "VI", - "unit": "bool", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.PR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.PR", - "description": null, - "label": "PR", - "unit": "bool", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.AP": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.AP", - "description": null, - "label": "AP", - "unit": "bool", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.GU": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.GU", - "description": null, - "label": "GU", - "unit": "bool", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.AE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.AE", - "description": null, - "label": "AE", - "unit": "bool", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.MP": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.MP", - "description": null, - "label": "MP", - "unit": "bool", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.undocumented_immigrant.AA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.undocumented_immigrant.AA", - "description": null, - "label": "AA", - "unit": "bool", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories", - "description": null, - "label": "categories", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent", - "description": null, - "label": "parent", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit", - "description": "Maximum family income for parents to qualify for Medicaid.", - "label": "Medicaid parent income limit", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.AK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.AK", - "description": null, - "label": "AK", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.36, - "2015-01-01": 1.36 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.AL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.AL", - "description": null, - "label": "AL", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.18, - "2015-01-01": 0.18 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.AR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.AR", - "description": null, - "label": "AR", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.2, - "2015-01-01": 0.2 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.AZ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.AZ", - "description": null, - "label": "AZ", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.11, - "2015-01-01": 1.11 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.CA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.CA", - "description": null, - "label": "CA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.14, - "2015-01-01": 1.14 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.CO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.CO", - "description": null, - "label": "CO", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.73, - "2015-01-01": 0.73 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.CT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.CT", - "description": null, - "label": "CT", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.6, - "2015-01-01": 1.6 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.DC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.DC", - "description": null, - "label": "DC", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.21, - "2015-01-01": 2.21 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.DE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.DE", - "description": null, - "label": "DE", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.92, - "2015-01-01": 0.92 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.FL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.FL", - "description": null, - "label": "FL", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.32, - "2015-01-01": 0.32 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.GA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.GA", - "description": null, - "label": "GA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.36, - "2015-01-01": 0.36 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.HI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.HI", - "description": null, - "label": "HI", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.1, - "2015-01-01": 1.1 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.IA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.IA", - "description": null, - "label": "IA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.54, - "2015-01-01": 0.54 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.ID": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.ID", - "description": null, - "label": "ID", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.27, - "2015-01-01": 0.27 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.IL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.IL", - "description": null, - "label": "IL", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.IN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.IN", - "description": null, - "label": "IN", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.22, - "2015-01-01": 0.22 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.KS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.KS", - "description": null, - "label": "KS", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.38, - "2015-01-01": 0.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.KY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.KY", - "description": null, - "label": "KY", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.27, - "2015-01-01": 0.27 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.LA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.LA", - "description": null, - "label": "LA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.24, - "2015-01-01": 0.24 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.MA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.MA", - "description": null, - "label": "MA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.MD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.MD", - "description": null, - "label": "MD", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.28, - "2015-01-01": 1.28 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.ME": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.ME", - "description": null, - "label": "ME", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.05, - "2015-01-01": 1.05 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.MI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.MI", - "description": null, - "label": "MI", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.59, - "2015-01-01": 0.59 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.MN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.MN", - "description": null, - "label": "MN", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.MO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.MO", - "description": null, - "label": "MO", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.22, - "2015-01-01": 0.22 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.MS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.MS", - "description": null, - "label": "MS", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.26, - "2015-01-01": 0.26 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.MT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.MT", - "description": null, - "label": "MT", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.29, - "2015-01-01": 0.29 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.NC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.NC", - "description": null, - "label": "NC", - "unit": "/1", - "period": null, - "values": { - "2023-12-01": 1.38, - "2021-01-01": 0.45, - "2015-01-01": 0.45 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.ND": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.ND", - "description": null, - "label": "ND", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.53, - "2015-01-01": 0.53 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.NE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.NE", - "description": null, - "label": "NE", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.63, - "2015-01-01": 0.63 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.NH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.NH", - "description": null, - "label": "NH", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.67, - "2015-01-01": 0.67 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.NJ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.NJ", - "description": null, - "label": "NJ", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.34, - "2015-01-01": 0.34 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.NM": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.NM", - "description": null, - "label": "NM", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.47, - "2015-01-01": 0.47 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.NV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.NV", - "description": null, - "label": "NV", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.35, - "2015-01-01": 0.35 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.NY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.NY", - "description": null, - "label": "NY", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.OH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.OH", - "description": null, - "label": "OH", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.95, - "2015-01-01": 0.95 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.OK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.OK", - "description": null, - "label": "OK", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.43, - "2015-01-01": 0.43 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.OR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.OR", - "description": null, - "label": "OR", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.42, - "2015-01-01": 0.42 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.PA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.PA", - "description": null, - "label": "PA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.38, - "2015-01-01": 0.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.RI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.RI", - "description": null, - "label": "RI", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.21, - "2015-01-01": 1.21 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.SC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.SC", - "description": null, - "label": "SC", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.SD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.SD", - "description": null, - "label": "SD", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.57, - "2015-01-01": 0.57 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.TN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.TN", - "description": null, - "label": "TN", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.TX": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.TX", - "description": null, - "label": "TX", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.19, - "2015-01-01": 0.19 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.UT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.UT", - "description": null, - "label": "UT", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.46, - "2015-01-01": 0.46 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.VA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.VA", - "description": null, - "label": "VA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.54, - "2015-01-01": 0.54 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.VT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.VT", - "description": null, - "label": "VT", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.54, - "2015-01-01": 0.54 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.WA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.WA", - "description": null, - "label": "WA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.42, - "2015-01-01": 0.42 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.WI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.WI", - "description": null, - "label": "WI", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.WV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.WV", - "description": null, - "label": "WV", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.23, - "2015-01-01": 0.23 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.WY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.WY", - "description": null, - "label": "WY", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.56, - "2015-01-01": 0.56 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.PW": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.PW", - "description": null, - "label": "PW", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.VI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.VI", - "description": null, - "label": "VI", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.PR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.PR", - "description": null, - "label": "PR", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.AP": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.AP", - "description": null, - "label": "AP", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.GU": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.GU", - "description": null, - "label": "GU", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.AE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.AE", - "description": null, - "label": "AE", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.MP": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.MP", - "description": null, - "label": "MP", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.parent.income_limit.AA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.parent.income_limit.AA", - "description": null, - "label": "AA", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient", - "description": null, - "label": "ssi recipient", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered", - "description": "Whether all SSI recipients are covered under Medicaid. States which do not cover SSI recipients are known as 209(b) states - they can apply rules more restrictive than current SSI rules (but no more restrictive than SSI rules in 1972).", - "label": "Medicaid covers all SSI recipients", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.AK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.AK", - "description": null, - "label": "AK", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.AL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.AL", - "description": null, - "label": "AL", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.AR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.AR", - "description": null, - "label": "AR", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.AZ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.AZ", - "description": null, - "label": "AZ", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.CA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.CA", - "description": null, - "label": "CA", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.CO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.CO", - "description": null, - "label": "CO", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.CT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.CT", - "description": null, - "label": "CT", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.DC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.DC", - "description": null, - "label": "DC", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.DE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.DE", - "description": null, - "label": "DE", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.FL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.FL", - "description": null, - "label": "FL", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.GA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.GA", - "description": null, - "label": "GA", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.HI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.HI", - "description": null, - "label": "HI", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.IA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.IA", - "description": null, - "label": "IA", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.ID": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.ID", - "description": null, - "label": "ID", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.IL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.IL", - "description": null, - "label": "IL", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.IN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.IN", - "description": null, - "label": "IN", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.KS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.KS", - "description": null, - "label": "KS", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.KY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.KY", - "description": null, - "label": "KY", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.LA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.LA", - "description": null, - "label": "LA", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.MA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.MA", - "description": null, - "label": "MA", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.MD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.MD", - "description": null, - "label": "MD", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.ME": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.ME", - "description": null, - "label": "ME", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.MI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.MI", - "description": null, - "label": "MI", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.MN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.MN", - "description": null, - "label": "MN", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.MO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.MO", - "description": null, - "label": "MO", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.MS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.MS", - "description": null, - "label": "MS", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.MT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.MT", - "description": null, - "label": "MT", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.NC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.NC", - "description": null, - "label": "NC", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.ND": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.ND", - "description": null, - "label": "ND", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.NE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.NE", - "description": null, - "label": "NE", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.NH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.NH", - "description": null, - "label": "NH", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.NJ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.NJ", - "description": null, - "label": "NJ", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.NM": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.NM", - "description": null, - "label": "NM", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.NV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.NV", - "description": null, - "label": "NV", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.NY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.NY", - "description": null, - "label": "NY", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.OH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.OH", - "description": null, - "label": "OH", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.OK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.OK", - "description": null, - "label": "OK", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.OR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.OR", - "description": null, - "label": "OR", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.PA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.PA", - "description": null, - "label": "PA", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.RI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.RI", - "description": null, - "label": "RI", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.SC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.SC", - "description": null, - "label": "SC", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.SD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.SD", - "description": null, - "label": "SD", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.TN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.TN", - "description": null, - "label": "TN", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.TX": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.TX", - "description": null, - "label": "TX", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.UT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.UT", - "description": null, - "label": "UT", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.VA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.VA", - "description": null, - "label": "VA", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": false, - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.VT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.VT", - "description": null, - "label": "VT", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.WA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.WA", - "description": null, - "label": "WA", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.WI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.WI", - "description": null, - "label": "WI", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.WV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.WV", - "description": null, - "label": "WV", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.WY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.WY", - "description": null, - "label": "WY", - "unit": "bool", - "period": null, - "values": { - "2021-01-01": true, - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.PW": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.PW", - "description": null, - "label": "PW", - "unit": "bool", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.VI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.VI", - "description": null, - "label": "VI", - "unit": "bool", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.PR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.PR", - "description": null, - "label": "PR", - "unit": "bool", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.AP": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.AP", - "description": null, - "label": "AP", - "unit": "bool", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.GU": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.GU", - "description": null, - "label": "GU", - "unit": "bool", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.AE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.AE", - "description": null, - "label": "AE", - "unit": "bool", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.MP": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.MP", - "description": null, - "label": "MP", - "unit": "bool", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.AA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.ssi_recipient.is_covered.AA", - "description": null, - "label": "AA", - "unit": "bool", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled", - "description": null, - "label": "senior or disabled", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income", - "description": null, - "label": "income", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit", - "description": null, - "label": "limit", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple", - "description": "Maximum income limit (of SSI countable income) for a couple to qualify for Medicaid under the optional senior or disabled pathway, as percent of Federal Poverty Line.", - "label": "Medicaid senior or disabled income limit (couple)", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.AK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.AK", - "description": null, - "label": "AK", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.83 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.AL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.AL", - "description": null, - "label": "AL", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.AZ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.AZ", - "description": null, - "label": "AZ", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.AR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.AR", - "description": null, - "label": "AR", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.8 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.CA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.CA", - "description": null, - "label": "CA", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.CO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.CO", - "description": null, - "label": "CO", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.CT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.CT", - "description": null, - "label": "CT", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.98 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.DE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.DE", - "description": null, - "label": "DE", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.DC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.DC", - "description": null, - "label": "DC", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.FL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.FL", - "description": null, - "label": "FL", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.88 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.GA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.GA", - "description": null, - "label": "GA", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.HI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.HI", - "description": null, - "label": "HI", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.ID": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.ID", - "description": null, - "label": "ID", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.78 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.IL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.IL", - "description": null, - "label": "IL", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.IN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.IN", - "description": null, - "label": "IN", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.IA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.IA", - "description": null, - "label": "IA", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.KS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.KS", - "description": null, - "label": "KS", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.KY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.KY", - "description": null, - "label": "KY", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.LA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.LA", - "description": null, - "label": "LA", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.ME": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.ME", - "description": null, - "label": "ME", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.MD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.MD", - "description": null, - "label": "MD", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.MA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.MA", - "description": null, - "label": "MA", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.MI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.MI", - "description": null, - "label": "MI", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.MN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.MN", - "description": null, - "label": "MN", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.MS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.MS", - "description": null, - "label": "MS", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.MO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.MO", - "description": null, - "label": "MO", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.85 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.MT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.MT", - "description": null, - "label": "MT", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.NE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.NE", - "description": null, - "label": "NE", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.NV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.NV", - "description": null, - "label": "NV", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.NH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.NH", - "description": null, - "label": "NH", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.NJ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.NJ", - "description": null, - "label": "NJ", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.NM": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.NM", - "description": null, - "label": "NM", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.NY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.NY", - "description": null, - "label": "NY", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.82 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.NC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.NC", - "description": null, - "label": "NC", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.ND": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.ND", - "description": null, - "label": "ND", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.OH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.OH", - "description": null, - "label": "OH", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.OK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.OK", - "description": null, - "label": "OK", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.OR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.OR", - "description": null, - "label": "OR", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.PA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.PA", - "description": null, - "label": "PA", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.RI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.RI", - "description": null, - "label": "RI", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.SC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.SC", - "description": null, - "label": "SC", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.SD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.SD", - "description": null, - "label": "SD", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.TN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.TN", - "description": null, - "label": "TN", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.TX": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.TX", - "description": null, - "label": "TX", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.UT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.UT", - "description": null, - "label": "UT", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.VT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.VT", - "description": null, - "label": "VT", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.8 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.VA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.VA", - "description": null, - "label": "VA", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.8 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.WA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.WA", - "description": null, - "label": "WA", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.WV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.WV", - "description": null, - "label": "WV", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.WI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.WI", - "description": null, - "label": "WI", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.WY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.WY", - "description": null, - "label": "WY", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.PW": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.PW", - "description": null, - "label": "PW", - "unit": "/1", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.VI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.VI", - "description": null, - "label": "VI", - "unit": "/1", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.PR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.PR", - "description": null, - "label": "PR", - "unit": "/1", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.AP": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.AP", - "description": null, - "label": "AP", - "unit": "/1", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.GU": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.GU", - "description": null, - "label": "GU", - "unit": "/1", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.AE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.AE", - "description": null, - "label": "AE", - "unit": "/1", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.MP": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.MP", - "description": null, - "label": "MP", - "unit": "/1", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.AA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.couple.AA", - "description": null, - "label": "AA", - "unit": "/1", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual", - "description": "Maximum income limit (of SSI countable income) for an individual to qualify for Medicaid under the optional senior or disabled pathway, as percent of Federal Poverty Line.", - "label": "Medicaid senior or disabled income limit (individual)", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.AK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.AK", - "description": null, - "label": "AK", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.83 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.AL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.AL", - "description": null, - "label": "AL", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.AZ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.AZ", - "description": null, - "label": "AZ", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.AR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.AR", - "description": null, - "label": "AR", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.8 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.CA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.CA", - "description": null, - "label": "CA", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.CO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.CO", - "description": null, - "label": "CO", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.CT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.CT", - "description": null, - "label": "CT", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.98 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.DE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.DE", - "description": null, - "label": "DE", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.DC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.DC", - "description": null, - "label": "DC", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.FL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.FL", - "description": null, - "label": "FL", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.88 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.GA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.GA", - "description": null, - "label": "GA", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.HI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.HI", - "description": null, - "label": "HI", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.ID": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.ID", - "description": null, - "label": "ID", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.78 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.IL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.IL", - "description": null, - "label": "IL", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.IN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.IN", - "description": null, - "label": "IN", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.IA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.IA", - "description": null, - "label": "IA", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.KS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.KS", - "description": null, - "label": "KS", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.KY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.KY", - "description": null, - "label": "KY", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.LA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.LA", - "description": null, - "label": "LA", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.ME": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.ME", - "description": null, - "label": "ME", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.MD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.MD", - "description": null, - "label": "MD", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.MA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.MA", - "description": null, - "label": "MA", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.MI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.MI", - "description": null, - "label": "MI", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.MN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.MN", - "description": null, - "label": "MN", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.MS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.MS", - "description": null, - "label": "MS", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.MO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.MO", - "description": null, - "label": "MO", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.85 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.MT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.MT", - "description": null, - "label": "MT", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.NE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.NE", - "description": null, - "label": "NE", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.NV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.NV", - "description": null, - "label": "NV", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.NH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.NH", - "description": null, - "label": "NH", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.NJ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.NJ", - "description": null, - "label": "NJ", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.NM": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.NM", - "description": null, - "label": "NM", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.NY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.NY", - "description": null, - "label": "NY", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.82 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.NC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.NC", - "description": null, - "label": "NC", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.ND": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.ND", - "description": null, - "label": "ND", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.OH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.OH", - "description": null, - "label": "OH", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.OK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.OK", - "description": null, - "label": "OK", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.OR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.OR", - "description": null, - "label": "OR", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.PA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.PA", - "description": null, - "label": "PA", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.RI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.RI", - "description": null, - "label": "RI", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.SC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.SC", - "description": null, - "label": "SC", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.SD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.SD", - "description": null, - "label": "SD", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.TN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.TN", - "description": null, - "label": "TN", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.TX": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.TX", - "description": null, - "label": "TX", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.UT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.UT", - "description": null, - "label": "UT", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.VT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.VT", - "description": null, - "label": "VT", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.8 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.VA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.VA", - "description": null, - "label": "VA", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.8 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.WA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.WA", - "description": null, - "label": "WA", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.WV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.WV", - "description": null, - "label": "WV", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.WI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.WI", - "description": null, - "label": "WI", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.WY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.WY", - "description": null, - "label": "WY", - "unit": "/1", - "period": "year", - "values": { - "2015-01-01": 0.75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.PW": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.PW", - "description": null, - "label": "PW", - "unit": "/1", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.VI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.VI", - "description": null, - "label": "VI", - "unit": "/1", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.PR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.PR", - "description": null, - "label": "PR", - "unit": "/1", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.AP": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.AP", - "description": null, - "label": "AP", - "unit": "/1", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.GU": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.GU", - "description": null, - "label": "GU", - "unit": "/1", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.AE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.AE", - "description": null, - "label": "AE", - "unit": "/1", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.MP": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.MP", - "description": null, - "label": "MP", - "unit": "/1", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.AA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.limit.individual.AA", - "description": null, - "label": "AA", - "unit": "/1", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard", - "description": null, - "label": "disregard", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple", - "description": "Income disregard for couples applying for the optional pathway to Medicaid eligibility for seniors or people with disabilities.", - "label": "Medicaid senior or disabled income disregard (couple)", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.AL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.AL", - "description": null, - "label": "AL", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.AK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.AK", - "description": null, - "label": "AK", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.AZ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.AZ", - "description": null, - "label": "AZ", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.AR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.AR", - "description": null, - "label": "AR", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.CA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.CA", - "description": null, - "label": "CA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 310 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.CO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.CO", - "description": null, - "label": "CO", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.CT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.CT", - "description": null, - "label": "CT", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 339 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.DC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.DC", - "description": null, - "label": "DC", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.DE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.DE", - "description": null, - "label": "DE", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 100 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.FL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.FL", - "description": null, - "label": "FL", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.GA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.GA", - "description": null, - "label": "GA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.HI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.HI", - "description": null, - "label": "HI", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.ID": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.ID", - "description": null, - "label": "ID", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.IL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.IL", - "description": null, - "label": "IL", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 25 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.IN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.IN", - "description": null, - "label": "IN", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.IA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.IA", - "description": null, - "label": "IA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.KS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.KS", - "description": null, - "label": "KS", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.KY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.KY", - "description": null, - "label": "KY", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.LA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.LA", - "description": null, - "label": "LA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.ME": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.ME", - "description": null, - "label": "ME", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.MD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.MD", - "description": null, - "label": "MD", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.MA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.MA", - "description": null, - "label": "MA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.MI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.MI", - "description": null, - "label": "MI", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.MN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.MN", - "description": null, - "label": "MN", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.MS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.MS", - "description": null, - "label": "MS", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.MO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.MO", - "description": null, - "label": "MO", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.MT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.MT", - "description": null, - "label": "MT", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.NE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.NE", - "description": null, - "label": "NE", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.NV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.NV", - "description": null, - "label": "NV", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.NH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.NH", - "description": null, - "label": "NH", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.NJ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.NJ", - "description": null, - "label": "NJ", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.NM": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.NM", - "description": null, - "label": "NM", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.NY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.NY", - "description": null, - "label": "NY", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.NC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.NC", - "description": null, - "label": "NC", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.ND": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.ND", - "description": null, - "label": "ND", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.OH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.OH", - "description": null, - "label": "OH", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.OK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.OK", - "description": null, - "label": "OK", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.OR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.OR", - "description": null, - "label": "OR", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.PA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.PA", - "description": null, - "label": "PA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.RI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.RI", - "description": null, - "label": "RI", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.SC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.SC", - "description": null, - "label": "SC", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.SD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.SD", - "description": null, - "label": "SD", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.TN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.TN", - "description": null, - "label": "TN", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.TX": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.TX", - "description": null, - "label": "TX", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.UT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.UT", - "description": null, - "label": "UT", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.VT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.VT", - "description": null, - "label": "VT", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.VA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.VA", - "description": null, - "label": "VA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.WA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.WA", - "description": null, - "label": "WA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.WV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.WV", - "description": null, - "label": "WV", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.WI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.WI", - "description": null, - "label": "WI", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.WY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.WY", - "description": null, - "label": "WY", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.PW": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.PW", - "description": null, - "label": "PW", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.VI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.VI", - "description": null, - "label": "VI", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.PR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.PR", - "description": null, - "label": "PR", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.AP": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.AP", - "description": null, - "label": "AP", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.GU": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.GU", - "description": null, - "label": "GU", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.AE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.AE", - "description": null, - "label": "AE", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.MP": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.MP", - "description": null, - "label": "MP", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.AA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.couple.AA", - "description": null, - "label": "AA", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual", - "description": "Income disregard for individuals applying for the optional pathway to Medicaid eligibility for seniors or people with disabilities.", - "label": "Medicaid senior or disabled income disregard (individual)", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.AL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.AL", - "description": null, - "label": "AL", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.AK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.AK", - "description": null, - "label": "AK", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.AZ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.AZ", - "description": null, - "label": "AZ", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.AR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.AR", - "description": null, - "label": "AR", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.CA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.CA", - "description": null, - "label": "CA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 230 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.CO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.CO", - "description": null, - "label": "CO", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.CT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.CT", - "description": null, - "label": "CT", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 339 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.DC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.DC", - "description": null, - "label": "DC", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.DE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.DE", - "description": null, - "label": "DE", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.FL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.FL", - "description": null, - "label": "FL", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.GA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.GA", - "description": null, - "label": "GA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.HI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.HI", - "description": null, - "label": "HI", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.ID": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.ID", - "description": null, - "label": "ID", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.IL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.IL", - "description": null, - "label": "IL", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 25 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.IN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.IN", - "description": null, - "label": "IN", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.IA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.IA", - "description": null, - "label": "IA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.KS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.KS", - "description": null, - "label": "KS", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.KY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.KY", - "description": null, - "label": "KY", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.LA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.LA", - "description": null, - "label": "LA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.ME": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.ME", - "description": null, - "label": "ME", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 75 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.MD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.MD", - "description": null, - "label": "MD", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.MA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.MA", - "description": null, - "label": "MA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.MI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.MI", - "description": null, - "label": "MI", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.MN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.MN", - "description": null, - "label": "MN", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.MS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.MS", - "description": null, - "label": "MS", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.MO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.MO", - "description": null, - "label": "MO", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.MT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.MT", - "description": null, - "label": "MT", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.NE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.NE", - "description": null, - "label": "NE", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.NV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.NV", - "description": null, - "label": "NV", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.NH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.NH", - "description": null, - "label": "NH", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 13 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.NJ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.NJ", - "description": null, - "label": "NJ", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.NM": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.NM", - "description": null, - "label": "NM", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.NY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.NY", - "description": null, - "label": "NY", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.NC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.NC", - "description": null, - "label": "NC", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.ND": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.ND", - "description": null, - "label": "ND", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.OH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.OH", - "description": null, - "label": "OH", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.OK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.OK", - "description": null, - "label": "OK", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.OR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.OR", - "description": null, - "label": "OR", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.PA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.PA", - "description": null, - "label": "PA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.RI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.RI", - "description": null, - "label": "RI", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.SC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.SC", - "description": null, - "label": "SC", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.SD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.SD", - "description": null, - "label": "SD", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.TN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.TN", - "description": null, - "label": "TN", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.TX": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.TX", - "description": null, - "label": "TX", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.UT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.UT", - "description": null, - "label": "UT", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.VT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.VT", - "description": null, - "label": "VT", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.VA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.VA", - "description": null, - "label": "VA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.WA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.WA", - "description": null, - "label": "WA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.WV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.WV", - "description": null, - "label": "WV", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.WI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.WI", - "description": null, - "label": "WI", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.WY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.WY", - "description": null, - "label": "WY", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 20 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.PW": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.PW", - "description": null, - "label": "PW", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.VI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.VI", - "description": null, - "label": "VI", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.PR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.PR", - "description": null, - "label": "PR", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.AP": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.AP", - "description": null, - "label": "AP", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.GU": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.GU", - "description": null, - "label": "GU", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.AE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.AE", - "description": null, - "label": "AE", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.MP": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.MP", - "description": null, - "label": "MP", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.AA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.income.disregard.individual.AA", - "description": null, - "label": "AA", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets", - "description": null, - "label": "assets", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit", - "description": null, - "label": "limit", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple", - "description": "Asset limit (of SSI countable assets) for a couple to qualify for Medicaid under the optional senior or disabled pathway.", - "label": "Medicaid senior or disabled asset limit (couple)", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.AL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.AL", - "description": null, - "label": "AL", - "unit": "currency-USD", - "period": "year", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.AK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.AK", - "description": null, - "label": "AK", - "unit": "currency-USD", - "period": "year", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.AZ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.AZ", - "description": null, - "label": "AZ", - "unit": "currency-USD", - "period": "year", - "values": { - "2015-01-01": "Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.AR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.AR", - "description": null, - "label": "AR", - "unit": "currency-USD", - "period": "year", - "values": { - "2024-01-01": 14130, - "2015-01-01": 11340 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.CA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.CA", - "description": null, - "label": "CA", - "unit": "currency-USD", - "period": "year", - "values": { - "2024-01-01": "Infinity", - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.CO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.CO", - "description": null, - "label": "CO", - "unit": "currency-USD", - "period": "year", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.CT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.CT", - "description": null, - "label": "CT", - "unit": "currency-USD", - "period": "year", - "values": { - "2015-01-01": 2400 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.DC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.DC", - "description": null, - "label": "DC", - "unit": "currency-USD", - "period": "year", - "values": { - "2024-01-01": 6000, - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.DE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.DE", - "description": null, - "label": "DE", - "unit": "currency-USD", - "period": "year", - "values": { - "2024-01-01": 3000, - "2015-01-01": 6000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.FL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.FL", - "description": null, - "label": "FL", - "unit": "currency-USD", - "period": "year", - "values": { - "2015-01-01": 6000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.GA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.GA", - "description": null, - "label": "GA", - "unit": "currency-USD", - "period": "year", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.HI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.HI", - "description": null, - "label": "HI", - "unit": "currency-USD", - "period": "year", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.ID": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.ID", - "description": null, - "label": "ID", - "unit": "currency-USD", - "period": "year", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.IL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.IL", - "description": null, - "label": "IL", - "unit": "currency-USD", - "period": "year", - "values": { - "2024-01-01": 17500, - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.IN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.IN", - "description": null, - "label": "IN", - "unit": "currency-USD", - "period": "year", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.IA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.IA", - "description": null, - "label": "IA", - "unit": "currency-USD", - "period": "year", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.KS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.KS", - "description": null, - "label": "KS", - "unit": "currency-USD", - "period": "year", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.KY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.KY", - "description": null, - "label": "KY", - "unit": "currency-USD", - "period": "year", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.LA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.LA", - "description": null, - "label": "LA", - "unit": "currency-USD", - "period": "year", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.ME": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.ME", - "description": null, - "label": "ME", - "unit": "currency-USD", - "period": "year", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.MD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.MD", - "description": null, - "label": "MD", - "unit": "currency-USD", - "period": "year", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.MA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.MA", - "description": null, - "label": "MA", - "unit": "currency-USD", - "period": "year", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.MI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.MI", - "description": null, - "label": "MI", - "unit": "currency-USD", - "period": "year", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.MN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.MN", - "description": null, - "label": "MN", - "unit": "currency-USD", - "period": "year", - "values": { - "2015-01-01": 6000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.MS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.MS", - "description": null, - "label": "MS", - "unit": "currency-USD", - "period": "year", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.MO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.MO", - "description": null, - "label": "MO", - "unit": "currency-USD", - "period": "year", - "values": { - "2024-01-01": 11452, - "2015-01-01": 6000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.MT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.MT", - "description": null, - "label": "MT", - "unit": "currency-USD", - "period": "year", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.NE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.NE", - "description": null, - "label": "NE", - "unit": "currency-USD", - "period": "year", - "values": { - "2015-01-01": 6000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.NV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.NV", - "description": null, - "label": "NV", - "unit": "currency-USD", - "period": "year", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.NH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.NH", - "description": null, - "label": "NH", - "unit": "currency-USD", - "period": "year", - "values": { - "2015-01-01": 1500 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.NJ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.NJ", - "description": null, - "label": "NJ", - "unit": "currency-USD", - "period": "year", - "values": { - "2015-01-01": 6000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.NM": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.NM", - "description": null, - "label": "NM", - "unit": "currency-USD", - "period": "year", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.NY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.NY", - "description": null, - "label": "NY", - "unit": "currency-USD", - "period": "year", - "values": { - "2024-01-01": 42312, - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.NC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.NC", - "description": null, - "label": "NC", - "unit": "currency-USD", - "period": "year", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.ND": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.ND", - "description": null, - "label": "ND", - "unit": "currency-USD", - "period": "year", - "values": { - "2015-01-01": 6000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.OH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.OH", - "description": null, - "label": "OH", - "unit": "currency-USD", - "period": "year", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.OK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.OK", - "description": null, - "label": "OK", - "unit": "currency-USD", - "period": "year", - "values": { - "2024-01-01": 14130, - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.OR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.OR", - "description": null, - "label": "OR", - "unit": "currency-USD", - "period": "year", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.PA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.PA", - "description": null, - "label": "PA", - "unit": "currency-USD", - "period": "year", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.RI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.RI", - "description": null, - "label": "RI", - "unit": "currency-USD", - "period": "year", - "values": { - "2015-01-01": 6000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.SC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.SC", - "description": null, - "label": "SC", - "unit": "currency-USD", - "period": "year", - "values": { - "2024-01-01": 14130, - "2015-01-01": 11340 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.SD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.SD", - "description": null, - "label": "SD", - "unit": "currency-USD", - "period": "year", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.TN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.TN", - "description": null, - "label": "TN", - "unit": "currency-USD", - "period": "year", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.TX": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.TX", - "description": null, - "label": "TX", - "unit": "currency-USD", - "period": "year", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.UT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.UT", - "description": null, - "label": "UT", - "unit": "currency-USD", - "period": "year", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.VT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.VT", - "description": null, - "label": "VT", - "unit": "currency-USD", - "period": "year", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.VA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.VA", - "description": null, - "label": "VA", - "unit": "currency-USD", - "period": "year", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.WA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.WA", - "description": null, - "label": "WA", - "unit": "currency-USD", - "period": "year", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.WV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.WV", - "description": null, - "label": "WV", - "unit": "currency-USD", - "period": "year", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.WI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.WI", - "description": null, - "label": "WI", - "unit": "currency-USD", - "period": "year", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.WY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.WY", - "description": null, - "label": "WY", - "unit": "currency-USD", - "period": "year", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.PW": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.PW", - "description": null, - "label": "PW", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.VI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.VI", - "description": null, - "label": "VI", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.PR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.PR", - "description": null, - "label": "PR", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.AP": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.AP", - "description": null, - "label": "AP", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.GU": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.GU", - "description": null, - "label": "GU", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.AE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.AE", - "description": null, - "label": "AE", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.MP": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.MP", - "description": null, - "label": "MP", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.AA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.couple.AA", - "description": null, - "label": "AA", - "unit": "currency-USD", - "period": "year", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual", - "description": "Asset limit (of SSI countable assets) for an individual to qualify for Medicaid under the optional senior or disabled pathway.", - "label": "Medicaid senior or disabled asset limit (individual)", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.AL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.AL", - "description": null, - "label": "AL", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.AK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.AK", - "description": null, - "label": "AK", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.AZ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.AZ", - "description": null, - "label": "AZ", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.AR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.AR", - "description": null, - "label": "AR", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-01-01": 9430, - "2015-01-01": 7560 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.CA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.CA", - "description": null, - "label": "CA", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-01-01": "Infinity", - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.CO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.CO", - "description": null, - "label": "CO", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.CT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.CT", - "description": null, - "label": "CT", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 1600 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.DC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.DC", - "description": null, - "label": "DC", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-01-01": 4000, - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.DE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.DE", - "description": null, - "label": "DE", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-01-01": 2000, - "2015-01-01": 4000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.FL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.FL", - "description": null, - "label": "FL", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 5000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.GA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.GA", - "description": null, - "label": "GA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.HI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.HI", - "description": null, - "label": "HI", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.ID": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.ID", - "description": null, - "label": "ID", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.IL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.IL", - "description": null, - "label": "IL", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-01-01": 17500, - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.IN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.IN", - "description": null, - "label": "IN", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.IA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.IA", - "description": null, - "label": "IA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.KS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.KS", - "description": null, - "label": "KS", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.KY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.KY", - "description": null, - "label": "KY", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.LA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.LA", - "description": null, - "label": "LA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.ME": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.ME", - "description": null, - "label": "ME", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.MD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.MD", - "description": null, - "label": "MD", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.MA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.MA", - "description": null, - "label": "MA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.MI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.MI", - "description": null, - "label": "MI", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.MN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.MN", - "description": null, - "label": "MN", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.MS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.MS", - "description": null, - "label": "MS", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.MO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.MO", - "description": null, - "label": "MO", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-01-01": 5726, - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.MT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.MT", - "description": null, - "label": "MT", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.NE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.NE", - "description": null, - "label": "NE", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 4000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.NV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.NV", - "description": null, - "label": "NV", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.NH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.NH", - "description": null, - "label": "NH", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 1500 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.NJ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.NJ", - "description": null, - "label": "NJ", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 4000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.NM": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.NM", - "description": null, - "label": "NM", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.NY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.NY", - "description": null, - "label": "NY", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-01-01": 31175, - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.NC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.NC", - "description": null, - "label": "NC", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.ND": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.ND", - "description": null, - "label": "ND", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.OH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.OH", - "description": null, - "label": "OH", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.OK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.OK", - "description": null, - "label": "OK", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-01-01": 9430, - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.OR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.OR", - "description": null, - "label": "OR", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.PA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.PA", - "description": null, - "label": "PA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.RI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.RI", - "description": null, - "label": "RI", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 4000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.SC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.SC", - "description": null, - "label": "SC", - "unit": "currency-USD", - "period": "month", - "values": { - "2024-01-01": 9430, - "2015-01-01": 7560 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.SD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.SD", - "description": null, - "label": "SD", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.TN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.TN", - "description": null, - "label": "TN", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.TX": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.TX", - "description": null, - "label": "TX", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.UT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.UT", - "description": null, - "label": "UT", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.VT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.VT", - "description": null, - "label": "VT", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.VA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.VA", - "description": null, - "label": "VA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.WA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.WA", - "description": null, - "label": "WA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.WV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.WV", - "description": null, - "label": "WV", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.WI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.WI", - "description": null, - "label": "WI", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.WY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.WY", - "description": null, - "label": "WY", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.PW": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.PW", - "description": null, - "label": "PW", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.VI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.VI", - "description": null, - "label": "VI", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.PR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.PR", - "description": null, - "label": "PR", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.AP": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.AP", - "description": null, - "label": "AP", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.GU": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.GU", - "description": null, - "label": "GU", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.AE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.AE", - "description": null, - "label": "AE", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.MP": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.MP", - "description": null, - "label": "MP", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.AA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.senior_or_disabled.assets.limit.individual.AA", - "description": null, - "label": "AA", - "unit": "currency-USD", - "period": "month", - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult", - "description": null, - "label": "young adult", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.age_range": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.age_range", - "description": "Age range defining a young adult for Medicaid. This is an optional group for States to cover.", - "label": "Medicaid young child age range" - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.age_range[0]": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.age_range[0]", - "description": null, - "label": "bracket 1" - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.age_range[0].threshold": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.age_range[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2015-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.age_range[0].amount": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.age_range[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.age_range[1]": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.age_range[1]", - "description": null, - "label": "bracket 2" - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.age_range[1].threshold": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.age_range[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2015-01-01": 19 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.age_range[1].amount": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.age_range[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.age_range[2]": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.age_range[2]", - "description": null, - "label": "bracket 3" - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.age_range[2].threshold": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.age_range[2].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2015-01-01": 21 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.age_range[2].amount": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.age_range[2].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit", - "description": "Maximum family income for young adults to qualify for Medicaid (specifically as young adults).", - "label": "Medicaid pregnant income limit", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.AK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.AK", - "description": null, - "label": "AK", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.AL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.AL", - "description": null, - "label": "AL", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.AR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.AR", - "description": null, - "label": "AR", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.AZ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.AZ", - "description": null, - "label": "AZ", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.CA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.CA", - "description": null, - "label": "CA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.CO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.CO", - "description": null, - "label": "CO", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.CT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.CT", - "description": null, - "label": "CT", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.DC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.DC", - "description": null, - "label": "DC", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.21, - "2015-01-01": 2.21 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.DE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.DE", - "description": null, - "label": "DE", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.FL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.FL", - "description": null, - "label": "FL", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 0.32, - "2015-01-01": 0.32 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.GA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.GA", - "description": null, - "label": "GA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.HI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.HI", - "description": null, - "label": "HI", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.IA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.IA", - "description": null, - "label": "IA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.ID": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.ID", - "description": null, - "label": "ID", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.IL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.IL", - "description": null, - "label": "IL", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.IN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.IN", - "description": null, - "label": "IN", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.KS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.KS", - "description": null, - "label": "KS", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.KY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.KY", - "description": null, - "label": "KY", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.LA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.LA", - "description": null, - "label": "LA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.MA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.MA", - "description": null, - "label": "MA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.55, - "2015-01-01": 1.55 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.MD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.MD", - "description": null, - "label": "MD", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.ME": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.ME", - "description": null, - "label": "ME", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.61, - "2015-01-01": 1.61 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.MI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.MI", - "description": null, - "label": "MI", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.MN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.MN", - "description": null, - "label": "MN", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.MO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.MO", - "description": null, - "label": "MO", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.MS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.MS", - "description": null, - "label": "MS", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.MT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.MT", - "description": null, - "label": "MT", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.NC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.NC", - "description": null, - "label": "NC", - "unit": "/1", - "period": null, - "values": { - "2023-12-01": 2.16, - "2021-01-01": 0.45, - "2015-01-01": 0.45 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.ND": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.ND", - "description": null, - "label": "ND", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.NE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.NE", - "description": null, - "label": "NE", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.NH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.NH", - "description": null, - "label": "NH", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.NJ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.NJ", - "description": null, - "label": "NJ", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.NM": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.NM", - "description": null, - "label": "NM", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.NV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.NV", - "description": null, - "label": "NV", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.NY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.NY", - "description": null, - "label": "NY", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.OH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.OH", - "description": null, - "label": "OH", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.OK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.OK", - "description": null, - "label": "OK", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.OR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.OR", - "description": null, - "label": "OR", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.PA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.PA", - "description": null, - "label": "PA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.RI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.RI", - "description": null, - "label": "RI", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.SC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.SC", - "description": null, - "label": "SC", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.SD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.SD", - "description": null, - "label": "SD", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.TN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.TN", - "description": null, - "label": "TN", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.TX": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.TX", - "description": null, - "label": "TX", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.UT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.UT", - "description": null, - "label": "UT", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.VA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.VA", - "description": null, - "label": "VA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.VT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.VT", - "description": null, - "label": "VT", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.WA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.WA", - "description": null, - "label": "WA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.WI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.WI", - "description": null, - "label": "WI", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.WV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.WV", - "description": null, - "label": "WV", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.WY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.WY", - "description": null, - "label": "WY", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.PW": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.PW", - "description": null, - "label": "PW", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.VI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.VI", - "description": null, - "label": "VI", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.PR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.PR", - "description": null, - "label": "PR", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.AP": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.AP", - "description": null, - "label": "AP", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.GU": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.GU", - "description": null, - "label": "GU", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.AE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.AE", - "description": null, - "label": "AE", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.MP": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.MP", - "description": null, - "label": "MP", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.AA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_adult.income_limit.AA", - "description": null, - "label": "AA", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant", - "description": null, - "label": "pregnant", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage", - "description": "Number of days after giving birth for which the parent is covered as pregnant under Medicaid postpartum coverage (provided they meet the means test).", - "label": "Medicaid postpartum coverage", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.AK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.AK", - "description": null, - "label": "AK", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.AL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.AL", - "description": null, - "label": "AL", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.AR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.AR", - "description": null, - "label": "AR", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.AZ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.AZ", - "description": null, - "label": "AZ", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.CA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.CA", - "description": null, - "label": "CA", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.CO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.CO", - "description": null, - "label": "CO", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.CT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.CT", - "description": null, - "label": "CT", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.DC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.DC", - "description": null, - "label": "DC", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.DE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.DE", - "description": null, - "label": "DE", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.FL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.FL", - "description": null, - "label": "FL", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.GA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.GA", - "description": null, - "label": "GA", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.HI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.HI", - "description": null, - "label": "HI", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.IA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.IA", - "description": null, - "label": "IA", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.ID": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.ID", - "description": null, - "label": "ID", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.IL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.IL", - "description": null, - "label": "IL", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 365, - "2015-01-01": 365 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.IN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.IN", - "description": null, - "label": "IN", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.KS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.KS", - "description": null, - "label": "KS", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.KY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.KY", - "description": null, - "label": "KY", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.LA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.LA", - "description": null, - "label": "LA", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 365, - "2015-01-01": 365 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.MA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.MA", - "description": null, - "label": "MA", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.MD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.MD", - "description": null, - "label": "MD", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.ME": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.ME", - "description": null, - "label": "ME", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.MI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.MI", - "description": null, - "label": "MI", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 365, - "2015-01-01": 365 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.MN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.MN", - "description": null, - "label": "MN", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.MO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.MO", - "description": null, - "label": "MO", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.MS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.MS", - "description": null, - "label": "MS", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.MT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.MT", - "description": null, - "label": "MT", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.NC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.NC", - "description": null, - "label": "NC", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.ND": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.ND", - "description": null, - "label": "ND", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.NE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.NE", - "description": null, - "label": "NE", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.NH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.NH", - "description": null, - "label": "NH", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.NJ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.NJ", - "description": null, - "label": "NJ", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 365, - "2015-01-01": 365 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.NM": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.NM", - "description": null, - "label": "NM", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.NV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.NV", - "description": null, - "label": "NV", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.NY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.NY", - "description": null, - "label": "NY", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.OH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.OH", - "description": null, - "label": "OH", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.OK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.OK", - "description": null, - "label": "OK", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.OR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.OR", - "description": null, - "label": "OR", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.PA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.PA", - "description": null, - "label": "PA", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.RI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.RI", - "description": null, - "label": "RI", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.SC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.SC", - "description": null, - "label": "SC", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.SD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.SD", - "description": null, - "label": "SD", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.TN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.TN", - "description": null, - "label": "TN", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.TX": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.TX", - "description": null, - "label": "TX", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.UT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.UT", - "description": null, - "label": "UT", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.VA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.VA", - "description": null, - "label": "VA", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 365, - "2015-01-01": 365 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.VT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.VT", - "description": null, - "label": "VT", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.WA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.WA", - "description": null, - "label": "WA", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.WI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.WI", - "description": null, - "label": "WI", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.WV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.WV", - "description": null, - "label": "WV", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.WY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.WY", - "description": null, - "label": "WY", - "unit": "day", - "period": null, - "values": { - "2021-01-01": 60, - "2015-01-01": 60 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.PW": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.PW", - "description": null, - "label": "PW", - "unit": "day", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.VI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.VI", - "description": null, - "label": "VI", - "unit": "day", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.PR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.PR", - "description": null, - "label": "PR", - "unit": "day", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.AP": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.AP", - "description": null, - "label": "AP", - "unit": "day", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.GU": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.GU", - "description": null, - "label": "GU", - "unit": "day", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.AE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.AE", - "description": null, - "label": "AE", - "unit": "day", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.MP": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.MP", - "description": null, - "label": "MP", - "unit": "day", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.AA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.postpartum_coverage.AA", - "description": null, - "label": "AA", - "unit": "day", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit", - "description": "Maximum family income for pregnant people to qualify for Medicaid.", - "label": "Medicaid pregnant income limit", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.AK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.AK", - "description": null, - "label": "AK", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.05, - "2015-01-01": 2.05 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.AL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.AL", - "description": null, - "label": "AL", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.46, - "2015-01-01": 1.46 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.AR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.AR", - "description": null, - "label": "AR", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.14, - "2015-01-01": 2.14 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.AZ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.AZ", - "description": null, - "label": "AZ", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.61, - "2015-01-01": 1.61 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.CA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.CA", - "description": null, - "label": "CA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.13, - "2015-01-01": 2.13 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.CO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.CO", - "description": null, - "label": "CO", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.CT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.CT", - "description": null, - "label": "CT", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.63, - "2015-01-01": 2.63 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.DC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.DC", - "description": null, - "label": "DC", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 3.24, - "2015-01-01": 3.24 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.DE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.DE", - "description": null, - "label": "DE", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.17, - "2015-01-01": 2.17 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.FL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.FL", - "description": null, - "label": "FL", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.96, - "2015-01-01": 1.96 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.GA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.GA", - "description": null, - "label": "GA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.25, - "2015-01-01": 2.25 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.HI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.HI", - "description": null, - "label": "HI", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.96, - "2015-01-01": 1.96 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.IA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.IA", - "description": null, - "label": "IA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 3.8, - "2015-01-01": 3.8 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.ID": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.ID", - "description": null, - "label": "ID", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.IL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.IL", - "description": null, - "label": "IL", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.13, - "2015-01-01": 2.13 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.IN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.IN", - "description": null, - "label": "IN", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.13, - "2018-01-01": 2.18, - "2015-01-01": 2.18 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.KS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.KS", - "description": null, - "label": "KS", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.71, - "2015-01-01": 1.71 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.KY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.KY", - "description": null, - "label": "KY", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.LA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.LA", - "description": null, - "label": "LA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.MA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.MA", - "description": null, - "label": "MA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.05, - "2015-01-01": 2.05 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.MD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.MD", - "description": null, - "label": "MD", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.64, - "2015-01-01": 2.64 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.ME": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.ME", - "description": null, - "label": "ME", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.14, - "2015-01-01": 2.14 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.MI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.MI", - "description": null, - "label": "MI", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.MN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.MN", - "description": null, - "label": "MN", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.83, - "2015-01-01": 2.83 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.MO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.MO", - "description": null, - "label": "MO", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.01, - "2015-01-01": 2.01 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.MS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.MS", - "description": null, - "label": "MS", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.99, - "2015-01-01": 1.99 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.MT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.MT", - "description": null, - "label": "MT", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.62, - "2015-01-01": 1.62 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.NC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.NC", - "description": null, - "label": "NC", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.01, - "2015-01-01": 2.01 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.ND": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.ND", - "description": null, - "label": "ND", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.62, - "2018-01-01": 1.52, - "2015-01-01": 1.52 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.NE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.NE", - "description": null, - "label": "NE", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.99, - "2015-01-01": 1.99 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.NH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.NH", - "description": null, - "label": "NH", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.01, - "2015-01-01": 2.01 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.NJ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.NJ", - "description": null, - "label": "NJ", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.99, - "2015-01-01": 1.99 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.NM": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.NM", - "description": null, - "label": "NM", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.55, - "2015-01-01": 2.55 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.NV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.NV", - "description": null, - "label": "NV", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.65, - "2015-01-01": 1.65 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.NY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.NY", - "description": null, - "label": "NY", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.23, - "2015-01-01": 2.23 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.OH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.OH", - "description": null, - "label": "OH", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.05, - "2015-01-01": 2.05 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.OK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.OK", - "description": null, - "label": "OK", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 2.1, - "2021-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.OR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.OR", - "description": null, - "label": "OR", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.9, - "2015-01-01": 1.9 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.PA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.PA", - "description": null, - "label": "PA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.2, - "2015-01-01": 2.2 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.RI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.RI", - "description": null, - "label": "RI", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 2.58, - "2021-01-01": 1.95, - "2015-01-01": 1.95 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.SC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.SC", - "description": null, - "label": "SC", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.99, - "2015-01-01": 1.99 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.SD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.SD", - "description": null, - "label": "SD", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.TN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.TN", - "description": null, - "label": "TN", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.TX": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.TX", - "description": null, - "label": "TX", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.03, - "2015-01-01": 2.03 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.UT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.UT", - "description": null, - "label": "UT", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.44, - "2015-01-01": 1.44 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.VA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.VA", - "description": null, - "label": "VA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.48, - "2015-01-01": 1.48 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.VT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.VT", - "description": null, - "label": "VT", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.13, - "2015-01-01": 2.13 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.WA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.WA", - "description": null, - "label": "WA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.98, - "2015-01-01": 1.98 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.WI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.WI", - "description": null, - "label": "WI", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 3.06, - "2015-01-01": 3.06 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.WV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.WV", - "description": null, - "label": "WV", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.9, - "2018-01-01": 1.63, - "2015-01-01": 1.63 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.WY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.WY", - "description": null, - "label": "WY", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.59, - "2015-01-01": 1.59 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.PW": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.PW", - "description": null, - "label": "PW", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.VI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.VI", - "description": null, - "label": "VI", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.PR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.PR", - "description": null, - "label": "PR", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.AP": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.AP", - "description": null, - "label": "AP", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.GU": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.GU", - "description": null, - "label": "GU", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.AE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.AE", - "description": null, - "label": "AE", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.MP": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.MP", - "description": null, - "label": "MP", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.AA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.pregnant.income_limit.AA", - "description": null, - "label": "AA", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.covered": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.covered", - "description": "Categories of person covered under Medicaid. These are not mutually exclusive - a person only needs to qualify under one category.", - "label": "Medicaid categories", - "unit": "list", - "period": null, - "values": { - "2015-01-01": [ - "is_pregnant_for_medicaid", - "is_infant_for_medicaid", - "is_young_child_for_medicaid", - "is_older_child_for_medicaid", - "is_parent_for_medicaid", - "is_adult_for_medicaid", - "is_young_adult_for_medicaid", - "is_ssi_recipient_for_medicaid", - "is_optional_senior_or_disabled_for_medicaid", - "is_medically_needy_for_medicaid" - ] - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult", - "description": null, - "label": "adult", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.age_range": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.age_range", - "description": "Age range defining an adult for Medicaid.", - "label": "Medicaid adult age range" - }, - "gov.hhs.medicaid.eligibility.categories.adult.age_range[0]": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.age_range[0]", - "description": null, - "label": "bracket 1" - }, - "gov.hhs.medicaid.eligibility.categories.adult.age_range[0].threshold": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.age_range[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2015-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.age_range[0].amount": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.age_range[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.age_range[1]": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.age_range[1]", - "description": null, - "label": "bracket 2" - }, - "gov.hhs.medicaid.eligibility.categories.adult.age_range[1].threshold": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.age_range[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2015-01-01": 19 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.age_range[1].amount": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.age_range[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.age_range[2]": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.age_range[2]", - "description": null, - "label": "bracket 3" - }, - "gov.hhs.medicaid.eligibility.categories.adult.age_range[2].threshold": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.age_range[2].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2015-01-01": 65 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.age_range[2].amount": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.age_range[2].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit", - "description": "Maximum family income for adults to qualify for Medicaid.", - "label": "Medicaid adult income limit", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.AK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.AK", - "description": null, - "label": "AK", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.AL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.AL", - "description": null, - "label": "AL", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.AR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.AR", - "description": null, - "label": "AR", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.AZ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.AZ", - "description": null, - "label": "AZ", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.CA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.CA", - "description": null, - "label": "CA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.CO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.CO", - "description": null, - "label": "CO", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.CT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.CT", - "description": null, - "label": "CT", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.DC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.DC", - "description": null, - "label": "DC", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.15, - "2015-01-01": 2.15 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.DE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.DE", - "description": null, - "label": "DE", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.FL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.FL", - "description": null, - "label": "FL", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.GA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.GA", - "description": null, - "label": "GA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.HI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.HI", - "description": null, - "label": "HI", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.IA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.IA", - "description": null, - "label": "IA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.ID": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.ID", - "description": null, - "label": "ID", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.38, - "2018-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.IL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.IL", - "description": null, - "label": "IL", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.IN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.IN", - "description": null, - "label": "IN", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.38, - "2018-01-01": 1.39, - "2015-01-01": 1.39 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.KS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.KS", - "description": null, - "label": "KS", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.KY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.KY", - "description": null, - "label": "KY", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.LA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.LA", - "description": null, - "label": "LA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.MA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.MA", - "description": null, - "label": "MA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.MD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.MD", - "description": null, - "label": "MD", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.ME": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.ME", - "description": null, - "label": "ME", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.38, - "2018-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.MI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.MI", - "description": null, - "label": "MI", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.MN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.MN", - "description": null, - "label": "MN", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.MO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.MO", - "description": null, - "label": "MO", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.38, - "2018-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.MS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.MS", - "description": null, - "label": "MS", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.MT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.MT", - "description": null, - "label": "MT", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.NC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.NC", - "description": null, - "label": "NC", - "unit": "/1", - "period": null, - "values": { - "2023-12-01": 1.38, - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.ND": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.ND", - "description": null, - "label": "ND", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.NE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.NE", - "description": null, - "label": "NE", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.38, - "2018-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.NH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.NH", - "description": null, - "label": "NH", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.NJ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.NJ", - "description": null, - "label": "NJ", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.NM": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.NM", - "description": null, - "label": "NM", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.NV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.NV", - "description": null, - "label": "NV", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.NY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.NY", - "description": null, - "label": "NY", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.OH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.OH", - "description": null, - "label": "OH", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.OK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.OK", - "description": null, - "label": "OK", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.38, - "2018-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.OR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.OR", - "description": null, - "label": "OR", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.PA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.PA", - "description": null, - "label": "PA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.RI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.RI", - "description": null, - "label": "RI", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.SC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.SC", - "description": null, - "label": "SC", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.SD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.SD", - "description": null, - "label": "SD", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.TN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.TN", - "description": null, - "label": "TN", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.TX": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.TX", - "description": null, - "label": "TX", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.UT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.UT", - "description": null, - "label": "UT", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.38, - "2018-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.VA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.VA", - "description": null, - "label": "VA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.38, - "2018-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.VT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.VT", - "description": null, - "label": "VT", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.WA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.WA", - "description": null, - "label": "WA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.WI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.WI", - "description": null, - "label": "WI", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1, - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.WV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.WV", - "description": null, - "label": "WV", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.WY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.WY", - "description": null, - "label": "WY", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.PW": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.PW", - "description": null, - "label": "PW", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.VI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.VI", - "description": null, - "label": "VI", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.PR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.PR", - "description": null, - "label": "PR", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.AP": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.AP", - "description": null, - "label": "AP", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.GU": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.GU", - "description": null, - "label": "GU", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.AE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.AE", - "description": null, - "label": "AE", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.MP": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.MP", - "description": null, - "label": "MP", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.adult.income_limit.AA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.adult.income_limit.AA", - "description": null, - "label": "AA", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy", - "description": null, - "label": "medically needy", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit", - "description": null, - "label": "limit", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income", - "description": null, - "label": "income", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple", - "description": "Maximum income for a couple to qualify for Medicaid under the 'medically needy' pathway.", - "label": "Medicaid medically needy pathway for couples income limit", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.AK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.AK", - "description": null, - "label": "AK", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.AL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.AL", - "description": null, - "label": "AL", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.AR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.AR", - "description": null, - "label": "AR", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.AZ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.AZ", - "description": null, - "label": "AZ", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 217 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.CA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.CA", - "description": null, - "label": "CA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 934 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.CO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.CO", - "description": null, - "label": "CO", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.CT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.CT", - "description": null, - "label": "CT", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 696 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.DC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.DC", - "description": null, - "label": "DC", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 652 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.DE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.DE", - "description": null, - "label": "DE", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.FL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.FL", - "description": null, - "label": "FL", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 241 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.GA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.GA", - "description": null, - "label": "GA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 375 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.HI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.HI", - "description": null, - "label": "HI", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 632 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.IA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.IA", - "description": null, - "label": "IA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.ID": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.ID", - "description": null, - "label": "ID", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 1372 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.IL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.IL", - "description": null, - "label": "IL", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.IN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.IN", - "description": null, - "label": "IN", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 483 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.KS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.KS", - "description": null, - "label": "KS", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 475 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.KY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.KY", - "description": null, - "label": "KY", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 291 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.LA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.LA", - "description": null, - "label": "LA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 192 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.MA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.MA", - "description": null, - "label": "MA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 341 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.MD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.MD", - "description": null, - "label": "MD", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 392 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.ME": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.ME", - "description": null, - "label": "ME", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 650 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.MI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.MI", - "description": null, - "label": "MI", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 1372 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.MN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.MN", - "description": null, - "label": "MN", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 1098 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.MO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.MO", - "description": null, - "label": "MO", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.MS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.MS", - "description": null, - "label": "MS", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.MT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.MT", - "description": null, - "label": "MT", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 525 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.NC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.NC", - "description": null, - "label": "NC", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 392 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.ND": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.ND", - "description": null, - "label": "ND", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.NE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.NE", - "description": null, - "label": "NE", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 675 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.NH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.NH", - "description": null, - "label": "NH", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 434 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.NJ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.NJ", - "description": null, - "label": "NJ", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.NM": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.NM", - "description": null, - "label": "NM", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 1233 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.NV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.NV", - "description": null, - "label": "NV", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 317 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.NY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.NY", - "description": null, - "label": "NY", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 1139 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.OH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.OH", - "description": null, - "label": "OH", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.OK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.OK", - "description": null, - "label": "OK", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.OR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.OR", - "description": null, - "label": "OR", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.PA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.PA", - "description": null, - "label": "PA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 442 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.RI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.RI", - "description": null, - "label": "RI", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 947 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.SC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.SC", - "description": null, - "label": "SC", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.SD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.SD", - "description": null, - "label": "SD", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.TN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.TN", - "description": null, - "label": "TN", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 258 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.TX": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.TX", - "description": null, - "label": "TX", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 216 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.UT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.UT", - "description": null, - "label": "UT", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 1372 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.VA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.VA", - "description": null, - "label": "VA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 1041 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.VT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.VT", - "description": null, - "label": "VT", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 659 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.WA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.WA", - "description": null, - "label": "WA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 750 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.WV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.WV", - "description": null, - "label": "WV", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 275 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.WI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.WI", - "description": null, - "label": "WI", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 592 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.WY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.couple.WY", - "description": null, - "label": "WY", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual", - "description": "Maximum income for an individual to qualify for Medicaid under the 'medically needy' pathway.", - "label": "Medicaid medically needy pathway for individuals income limit", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.AK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.AK", - "description": null, - "label": "AK", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.AL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.AL", - "description": null, - "label": "AL", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.AR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.AR", - "description": null, - "label": "AR", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.AZ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.AZ", - "description": null, - "label": "AZ", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 108 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.CA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.CA", - "description": null, - "label": "CA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 600 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.CO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.CO", - "description": null, - "label": "CO", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.CT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.CT", - "description": null, - "label": "CT", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 523 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.DC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.DC", - "description": null, - "label": "DC", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 652 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.DE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.DE", - "description": null, - "label": "DE", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.FL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.FL", - "description": null, - "label": "FL", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 180 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.GA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.GA", - "description": null, - "label": "GA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 317 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.HI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.HI", - "description": null, - "label": "HI", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 469 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.IA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.IA", - "description": null, - "label": "IA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.ID": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.ID", - "description": null, - "label": "ID", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 1012 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.IL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.IL", - "description": null, - "label": "IL", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.IN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.IN", - "description": null, - "label": "IN", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 483 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.KS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.KS", - "description": null, - "label": "KS", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 475 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.KY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.KY", - "description": null, - "label": "KY", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 235 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.LA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.LA", - "description": null, - "label": "LA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 100 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.MA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.MA", - "description": null, - "label": "MA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 315 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.MD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.MD", - "description": null, - "label": "MD", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 350 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.ME": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.ME", - "description": null, - "label": "ME", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 522 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.MI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.MI", - "description": null, - "label": "MI", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 1012 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.MN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.MN", - "description": null, - "label": "MN", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 810 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.MO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.MO", - "description": null, - "label": "MO", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.MS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.MS", - "description": null, - "label": "MS", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.MT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.MT", - "description": null, - "label": "MT", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 525 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.NC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.NC", - "description": null, - "label": "NC", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 392 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.ND": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.ND", - "description": null, - "label": "ND", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.NE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.NE", - "description": null, - "label": "NE", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 591 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.NH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.NH", - "description": null, - "label": "NH", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 367 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.NJ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.NJ", - "description": null, - "label": "NJ", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.NM": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.NM", - "description": null, - "label": "NM", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 842 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.NV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.NV", - "description": null, - "label": "NV", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 242 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.NY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.NY", - "description": null, - "label": "NY", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 840 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.OH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.OH", - "description": null, - "label": "OH", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.OK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.OK", - "description": null, - "label": "OK", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.OR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.OR", - "description": null, - "label": "OR", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.PA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.PA", - "description": null, - "label": "PA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 425 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.RI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.RI", - "description": null, - "label": "RI", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 903 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.SC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.SC", - "description": null, - "label": "SC", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.SD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.SD", - "description": null, - "label": "SD", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.TN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.TN", - "description": null, - "label": "TN", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 241 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.TX": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.TX", - "description": null, - "label": "TX", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 104 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.UT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.UT", - "description": null, - "label": "UT", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 1012 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.VA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.VA", - "description": null, - "label": "VA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 1041 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.VT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.VT", - "description": null, - "label": "VT", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 493 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.WA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.WA", - "description": null, - "label": "WA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 750 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.WV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.WV", - "description": null, - "label": "WV", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 200 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.WI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.WI", - "description": null, - "label": "WI", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 592 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.WY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.income.individual.WY", - "description": null, - "label": "WY", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets", - "description": null, - "label": "assets", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple", - "description": "Maximum assets for a couple to qualify for Medicaid under the 'medically needy' pathway.", - "label": "Medicaid medically needy pathway for couples asset limit", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.AK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.AK", - "description": null, - "label": "AK", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.AL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.AL", - "description": null, - "label": "AL", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.AR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.AR", - "description": null, - "label": "AR", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.AZ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.AZ", - "description": null, - "label": "AZ", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.CA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.CA", - "description": null, - "label": "CA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.CO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.CO", - "description": null, - "label": "CO", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.CT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.CT", - "description": null, - "label": "CT", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2400 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.DC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.DC", - "description": null, - "label": "DC", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 6000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.DE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.DE", - "description": null, - "label": "DE", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.FL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.FL", - "description": null, - "label": "FL", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 6000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.GA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.GA", - "description": null, - "label": "GA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 4000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.HI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.HI", - "description": null, - "label": "HI", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.IA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.IA", - "description": null, - "label": "IA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.ID": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.ID", - "description": null, - "label": "ID", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.IL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.IL", - "description": null, - "label": "IL", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.IN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.IN", - "description": null, - "label": "IN", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 10000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.KS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.KS", - "description": null, - "label": "KS", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.KY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.KY", - "description": null, - "label": "KY", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 4000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.LA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.LA", - "description": null, - "label": "LA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.MA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.MA", - "description": null, - "label": "MA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.MD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.MD", - "description": null, - "label": "MD", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.ME": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.ME", - "description": null, - "label": "ME", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.MI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.MI", - "description": null, - "label": "MI", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.MN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.MN", - "description": null, - "label": "MN", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 6000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.MO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.MO", - "description": null, - "label": "MO", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.MS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.MS", - "description": null, - "label": "MS", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.MT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.MT", - "description": null, - "label": "MT", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.NC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.NC", - "description": null, - "label": "NC", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 6000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.ND": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.ND", - "description": null, - "label": "ND", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.NE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.NE", - "description": null, - "label": "NE", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 4000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.NH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.NH", - "description": null, - "label": "NH", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 6000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.NJ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.NJ", - "description": null, - "label": "NJ", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.NM": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.NM", - "description": null, - "label": "NM", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 22200 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.NV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.NV", - "description": null, - "label": "NV", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.NY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.NY", - "description": null, - "label": "NY", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 6000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.OH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.OH", - "description": null, - "label": "OH", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.OK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.OK", - "description": null, - "label": "OK", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.OR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.OR", - "description": null, - "label": "OR", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.PA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.PA", - "description": null, - "label": "PA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 3200 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.RI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.RI", - "description": null, - "label": "RI", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 6000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.SC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.SC", - "description": null, - "label": "SC", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.SD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.SD", - "description": null, - "label": "SD", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.TN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.TN", - "description": null, - "label": "TN", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.TX": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.TX", - "description": null, - "label": "TX", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.UT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.UT", - "description": null, - "label": "UT", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.VA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.VA", - "description": null, - "label": "VA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.VT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.VT", - "description": null, - "label": "VT", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.WA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.WA", - "description": null, - "label": "WA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.WV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.WV", - "description": null, - "label": "WV", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.WI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.WI", - "description": null, - "label": "WI", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.WY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.couple.WY", - "description": null, - "label": "WY", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual", - "description": "Maximum assets for an individual to qualify for Medicaid under the 'medically needy' pathway.", - "label": "Medicaid medically needy pathway for individuals asset limit", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.AK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.AK", - "description": null, - "label": "AK", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.AL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.AL", - "description": null, - "label": "AL", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.AR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.AR", - "description": null, - "label": "AR", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.AZ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.AZ", - "description": null, - "label": "AZ", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.CA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.CA", - "description": null, - "label": "CA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.CO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.CO", - "description": null, - "label": "CO", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.CT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.CT", - "description": null, - "label": "CT", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 1600 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.DC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.DC", - "description": null, - "label": "DC", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 4000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.DE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.DE", - "description": null, - "label": "DE", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.FL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.FL", - "description": null, - "label": "FL", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 5000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.GA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.GA", - "description": null, - "label": "GA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.HI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.HI", - "description": null, - "label": "HI", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.IA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.IA", - "description": null, - "label": "IA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.ID": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.ID", - "description": null, - "label": "ID", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.IL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.IL", - "description": null, - "label": "IL", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.IN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.IN", - "description": null, - "label": "IN", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 10000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.KS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.KS", - "description": null, - "label": "KS", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.KY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.KY", - "description": null, - "label": "KY", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.LA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.LA", - "description": null, - "label": "LA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.MA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.MA", - "description": null, - "label": "MA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.MD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.MD", - "description": null, - "label": "MD", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2500 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.ME": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.ME", - "description": null, - "label": "ME", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.MI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.MI", - "description": null, - "label": "MI", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.MN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.MN", - "description": null, - "label": "MN", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.MO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.MO", - "description": null, - "label": "MO", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.MS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.MS", - "description": null, - "label": "MS", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.MT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.MT", - "description": null, - "label": "MT", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.NC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.NC", - "description": null, - "label": "NC", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 4000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.ND": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.ND", - "description": null, - "label": "ND", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.NE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.NE", - "description": null, - "label": "NE", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2500 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.NH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.NH", - "description": null, - "label": "NH", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 4000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.NJ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.NJ", - "description": null, - "label": "NJ", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.NM": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.NM", - "description": null, - "label": "NM", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 15150 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.NV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.NV", - "description": null, - "label": "NV", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.NY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.NY", - "description": null, - "label": "NY", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 3000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.OH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.OH", - "description": null, - "label": "OH", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.OK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.OK", - "description": null, - "label": "OK", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.OR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.OR", - "description": null, - "label": "OR", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.PA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.PA", - "description": null, - "label": "PA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2400 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.RI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.RI", - "description": null, - "label": "RI", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 4000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.SC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.SC", - "description": null, - "label": "SC", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.SD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.SD", - "description": null, - "label": "SD", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.TN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.TN", - "description": null, - "label": "TN", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.TX": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.TX", - "description": null, - "label": "TX", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.UT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.UT", - "description": null, - "label": "UT", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.VA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.VA", - "description": null, - "label": "VA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.VT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.VT", - "description": null, - "label": "VT", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.WA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.WA", - "description": null, - "label": "WA", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.WV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.WV", - "description": null, - "label": "WV", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.WI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.WI", - "description": null, - "label": "WI", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": 2000 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.WY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.limit.assets.individual.WY", - "description": null, - "label": "WY", - "unit": "currency-USD", - "period": "month", - "values": { - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories", - "description": null, - "label": "categories", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled", - "description": "Whether people with disabilities can qualify for Medicaid under the 'medically needy' pathway.", - "label": "Medicaid medically needy pathway for people with disabilities", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.AK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.AK", - "description": null, - "label": "AK", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.AL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.AL", - "description": null, - "label": "AL", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.AR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.AR", - "description": null, - "label": "AR", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.AZ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.AZ", - "description": null, - "label": "AZ", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.CA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.CA", - "description": null, - "label": "CA", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.CO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.CO", - "description": null, - "label": "CO", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.CT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.CT", - "description": null, - "label": "CT", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.DC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.DC", - "description": null, - "label": "DC", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.DE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.DE", - "description": null, - "label": "DE", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.FL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.FL", - "description": null, - "label": "FL", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.GA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.GA", - "description": null, - "label": "GA", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.HI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.HI", - "description": null, - "label": "HI", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.IA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.IA", - "description": null, - "label": "IA", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.ID": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.ID", - "description": null, - "label": "ID", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.IL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.IL", - "description": null, - "label": "IL", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.IN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.IN", - "description": null, - "label": "IN", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.KS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.KS", - "description": null, - "label": "KS", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.KY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.KY", - "description": null, - "label": "KY", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.LA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.LA", - "description": null, - "label": "LA", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.MA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.MA", - "description": null, - "label": "MA", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.MD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.MD", - "description": null, - "label": "MD", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.ME": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.ME", - "description": null, - "label": "ME", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.MI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.MI", - "description": null, - "label": "MI", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.MN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.MN", - "description": null, - "label": "MN", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.MO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.MO", - "description": null, - "label": "MO", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.MS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.MS", - "description": null, - "label": "MS", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.MT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.MT", - "description": null, - "label": "MT", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.NC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.NC", - "description": null, - "label": "NC", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.ND": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.ND", - "description": null, - "label": "ND", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.NE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.NE", - "description": null, - "label": "NE", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.NH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.NH", - "description": null, - "label": "NH", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.NJ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.NJ", - "description": null, - "label": "NJ", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.NM": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.NM", - "description": null, - "label": "NM", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.NV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.NV", - "description": null, - "label": "NV", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.NY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.NY", - "description": null, - "label": "NY", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.OH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.OH", - "description": null, - "label": "OH", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.OK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.OK", - "description": null, - "label": "OK", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.OR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.OR", - "description": null, - "label": "OR", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.PA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.PA", - "description": null, - "label": "PA", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.RI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.RI", - "description": null, - "label": "RI", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.SC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.SC", - "description": null, - "label": "SC", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.SD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.SD", - "description": null, - "label": "SD", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.TN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.TN", - "description": null, - "label": "TN", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.TX": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.TX", - "description": null, - "label": "TX", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.UT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.UT", - "description": null, - "label": "UT", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.VA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.VA", - "description": null, - "label": "VA", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.VT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.VT", - "description": null, - "label": "VT", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.WA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.WA", - "description": null, - "label": "WA", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.WI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.WI", - "description": null, - "label": "WI", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.WV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.WV", - "description": null, - "label": "WV", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.WY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.disabled.WY", - "description": null, - "label": "WY", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent", - "description": "Whether parents can qualify for Medicaid under the 'medically needy' pathway.", - "label": "Medicaid medically needy pathway for parents", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.AK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.AK", - "description": null, - "label": "AK", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.AL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.AL", - "description": null, - "label": "AL", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.AR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.AR", - "description": null, - "label": "AR", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.AZ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.AZ", - "description": null, - "label": "AZ", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.CA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.CA", - "description": null, - "label": "CA", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.CO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.CO", - "description": null, - "label": "CO", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.CT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.CT", - "description": null, - "label": "CT", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.DC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.DC", - "description": null, - "label": "DC", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.DE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.DE", - "description": null, - "label": "DE", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.FL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.FL", - "description": null, - "label": "FL", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.GA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.GA", - "description": null, - "label": "GA", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.HI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.HI", - "description": null, - "label": "HI", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.IA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.IA", - "description": null, - "label": "IA", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.ID": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.ID", - "description": null, - "label": "ID", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.IL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.IL", - "description": null, - "label": "IL", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.IN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.IN", - "description": null, - "label": "IN", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.KS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.KS", - "description": null, - "label": "KS", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.KY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.KY", - "description": null, - "label": "KY", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.LA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.LA", - "description": null, - "label": "LA", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.MA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.MA", - "description": null, - "label": "MA", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.MD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.MD", - "description": null, - "label": "MD", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.ME": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.ME", - "description": null, - "label": "ME", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.MI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.MI", - "description": null, - "label": "MI", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.MN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.MN", - "description": null, - "label": "MN", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.MO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.MO", - "description": null, - "label": "MO", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.MS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.MS", - "description": null, - "label": "MS", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.MT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.MT", - "description": null, - "label": "MT", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.NC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.NC", - "description": null, - "label": "NC", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.ND": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.ND", - "description": null, - "label": "ND", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.NE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.NE", - "description": null, - "label": "NE", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.NH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.NH", - "description": null, - "label": "NH", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.NJ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.NJ", - "description": null, - "label": "NJ", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.NM": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.NM", - "description": null, - "label": "NM", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.NV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.NV", - "description": null, - "label": "NV", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.NY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.NY", - "description": null, - "label": "NY", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.OH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.OH", - "description": null, - "label": "OH", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.OK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.OK", - "description": null, - "label": "OK", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.OR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.OR", - "description": null, - "label": "OR", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.PA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.PA", - "description": null, - "label": "PA", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.RI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.RI", - "description": null, - "label": "RI", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.SC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.SC", - "description": null, - "label": "SC", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.SD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.SD", - "description": null, - "label": "SD", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.TN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.TN", - "description": null, - "label": "TN", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.TX": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.TX", - "description": null, - "label": "TX", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.UT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.UT", - "description": null, - "label": "UT", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.VA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.VA", - "description": null, - "label": "VA", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.VT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.VT", - "description": null, - "label": "VT", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.WA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.WA", - "description": null, - "label": "WA", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.WI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.WI", - "description": null, - "label": "WI", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.WV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.WV", - "description": null, - "label": "WV", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.WY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.parent.WY", - "description": null, - "label": "WY", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior", - "description": "Whether seniors can qualify for Medicaid under the 'medically needy' pathway.", - "label": "Medicaid medically needy pathway for seniors", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.AK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.AK", - "description": null, - "label": "AK", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.AL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.AL", - "description": null, - "label": "AL", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.AR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.AR", - "description": null, - "label": "AR", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.AZ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.AZ", - "description": null, - "label": "AZ", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.CA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.CA", - "description": null, - "label": "CA", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.CO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.CO", - "description": null, - "label": "CO", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.CT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.CT", - "description": null, - "label": "CT", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.DC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.DC", - "description": null, - "label": "DC", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.DE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.DE", - "description": null, - "label": "DE", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.FL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.FL", - "description": null, - "label": "FL", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.GA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.GA", - "description": null, - "label": "GA", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.HI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.HI", - "description": null, - "label": "HI", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.IA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.IA", - "description": null, - "label": "IA", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.ID": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.ID", - "description": null, - "label": "ID", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.IL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.IL", - "description": null, - "label": "IL", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.IN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.IN", - "description": null, - "label": "IN", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.KS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.KS", - "description": null, - "label": "KS", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.KY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.KY", - "description": null, - "label": "KY", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.LA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.LA", - "description": null, - "label": "LA", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.MA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.MA", - "description": null, - "label": "MA", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.MD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.MD", - "description": null, - "label": "MD", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.ME": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.ME", - "description": null, - "label": "ME", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.MI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.MI", - "description": null, - "label": "MI", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.MN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.MN", - "description": null, - "label": "MN", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.MO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.MO", - "description": null, - "label": "MO", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.MS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.MS", - "description": null, - "label": "MS", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.MT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.MT", - "description": null, - "label": "MT", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.NC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.NC", - "description": null, - "label": "NC", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.ND": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.ND", - "description": null, - "label": "ND", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.NE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.NE", - "description": null, - "label": "NE", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.NH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.NH", - "description": null, - "label": "NH", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.NJ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.NJ", - "description": null, - "label": "NJ", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.NM": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.NM", - "description": null, - "label": "NM", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.NV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.NV", - "description": null, - "label": "NV", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.NY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.NY", - "description": null, - "label": "NY", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.OH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.OH", - "description": null, - "label": "OH", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.OK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.OK", - "description": null, - "label": "OK", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.OR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.OR", - "description": null, - "label": "OR", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.PA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.PA", - "description": null, - "label": "PA", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.RI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.RI", - "description": null, - "label": "RI", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.SC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.SC", - "description": null, - "label": "SC", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.SD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.SD", - "description": null, - "label": "SD", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.TN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.TN", - "description": null, - "label": "TN", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.TX": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.TX", - "description": null, - "label": "TX", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.UT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.UT", - "description": null, - "label": "UT", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.VA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.VA", - "description": null, - "label": "VA", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.VT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.VT", - "description": null, - "label": "VT", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.WA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.WA", - "description": null, - "label": "WA", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.WI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.WI", - "description": null, - "label": "WI", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.WV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.WV", - "description": null, - "label": "WV", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.WY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.senior.WY", - "description": null, - "label": "WY", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child", - "description": null, - "label": "child", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child_categories": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child_categories", - "description": "Medicaid categories grouped as children to decide whether children can qualify for Medicaid under the 'medically needy' pathway.", - "label": "Medicaid medically needy pathway for children", - "unit": "list", - "period": null, - "values": { - "2010-01-01": [ - "is_infant_for_medicaid_nfc", - "is_young_child_for_medicaid_nfc", - "is_older_child_for_medicaid_nfc", - "is_young_adult_for_medicaid_nfc" - ] - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child", - "description": "Whether children can qualify for Medicaid under the 'medically needy' pathway.", - "label": "Medicaid medically needy pathway for children", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.AK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.AK", - "description": null, - "label": "AK", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.AL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.AL", - "description": null, - "label": "AL", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.AR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.AR", - "description": null, - "label": "AR", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.AZ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.AZ", - "description": null, - "label": "AZ", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.CA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.CA", - "description": null, - "label": "CA", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.CO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.CO", - "description": null, - "label": "CO", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.CT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.CT", - "description": null, - "label": "CT", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.DC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.DC", - "description": null, - "label": "DC", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.DE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.DE", - "description": null, - "label": "DE", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.FL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.FL", - "description": null, - "label": "FL", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.GA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.GA", - "description": null, - "label": "GA", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.HI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.HI", - "description": null, - "label": "HI", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.IA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.IA", - "description": null, - "label": "IA", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.ID": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.ID", - "description": null, - "label": "ID", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.IL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.IL", - "description": null, - "label": "IL", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.IN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.IN", - "description": null, - "label": "IN", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.KS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.KS", - "description": null, - "label": "KS", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.KY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.KY", - "description": null, - "label": "KY", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.LA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.LA", - "description": null, - "label": "LA", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.MA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.MA", - "description": null, - "label": "MA", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.MD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.MD", - "description": null, - "label": "MD", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.ME": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.ME", - "description": null, - "label": "ME", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.MI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.MI", - "description": null, - "label": "MI", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.MN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.MN", - "description": null, - "label": "MN", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.MO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.MO", - "description": null, - "label": "MO", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.MS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.MS", - "description": null, - "label": "MS", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.MT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.MT", - "description": null, - "label": "MT", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.NC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.NC", - "description": null, - "label": "NC", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.ND": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.ND", - "description": null, - "label": "ND", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.NE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.NE", - "description": null, - "label": "NE", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.NH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.NH", - "description": null, - "label": "NH", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.NJ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.NJ", - "description": null, - "label": "NJ", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.NM": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.NM", - "description": null, - "label": "NM", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.NV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.NV", - "description": null, - "label": "NV", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.NY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.NY", - "description": null, - "label": "NY", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.OH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.OH", - "description": null, - "label": "OH", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.OK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.OK", - "description": null, - "label": "OK", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.OR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.OR", - "description": null, - "label": "OR", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.PA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.PA", - "description": null, - "label": "PA", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.RI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.RI", - "description": null, - "label": "RI", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.SC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.SC", - "description": null, - "label": "SC", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.SD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.SD", - "description": null, - "label": "SD", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.TN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.TN", - "description": null, - "label": "TN", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.TX": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.TX", - "description": null, - "label": "TX", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.UT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.UT", - "description": null, - "label": "UT", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.VA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.VA", - "description": null, - "label": "VA", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.VT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.VT", - "description": null, - "label": "VT", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.WA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.WA", - "description": null, - "label": "WA", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.WI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.WI", - "description": null, - "label": "WI", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.WV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.WV", - "description": null, - "label": "WV", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.WY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.child.child.WY", - "description": null, - "label": "WY", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant", - "description": "Whether pregnant people can qualify for Medicaid under the 'medically needy' pathway.", - "label": "Medicaid medically needy pathway for pregnant people", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.AK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.AK", - "description": null, - "label": "AK", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.AL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.AL", - "description": null, - "label": "AL", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.AR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.AR", - "description": null, - "label": "AR", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.AZ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.AZ", - "description": null, - "label": "AZ", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.CA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.CA", - "description": null, - "label": "CA", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.CO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.CO", - "description": null, - "label": "CO", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.CT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.CT", - "description": null, - "label": "CT", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.DC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.DC", - "description": null, - "label": "DC", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.DE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.DE", - "description": null, - "label": "DE", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.FL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.FL", - "description": null, - "label": "FL", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.GA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.GA", - "description": null, - "label": "GA", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.HI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.HI", - "description": null, - "label": "HI", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.IA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.IA", - "description": null, - "label": "IA", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.ID": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.ID", - "description": null, - "label": "ID", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.IL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.IL", - "description": null, - "label": "IL", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.IN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.IN", - "description": null, - "label": "IN", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.KS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.KS", - "description": null, - "label": "KS", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.KY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.KY", - "description": null, - "label": "KY", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.LA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.LA", - "description": null, - "label": "LA", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.MA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.MA", - "description": null, - "label": "MA", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.MD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.MD", - "description": null, - "label": "MD", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.ME": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.ME", - "description": null, - "label": "ME", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.MI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.MI", - "description": null, - "label": "MI", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.MN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.MN", - "description": null, - "label": "MN", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.MO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.MO", - "description": null, - "label": "MO", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.MS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.MS", - "description": null, - "label": "MS", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.MT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.MT", - "description": null, - "label": "MT", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.NC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.NC", - "description": null, - "label": "NC", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.ND": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.ND", - "description": null, - "label": "ND", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.NE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.NE", - "description": null, - "label": "NE", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.NH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.NH", - "description": null, - "label": "NH", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.NJ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.NJ", - "description": null, - "label": "NJ", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.NM": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.NM", - "description": null, - "label": "NM", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.NV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.NV", - "description": null, - "label": "NV", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.NY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.NY", - "description": null, - "label": "NY", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.OH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.OH", - "description": null, - "label": "OH", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.OK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.OK", - "description": null, - "label": "OK", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.OR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.OR", - "description": null, - "label": "OR", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.PA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.PA", - "description": null, - "label": "PA", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.RI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.RI", - "description": null, - "label": "RI", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.SC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.SC", - "description": null, - "label": "SC", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.SD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.SD", - "description": null, - "label": "SD", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.TN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.TN", - "description": null, - "label": "TN", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.TX": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.TX", - "description": null, - "label": "TX", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.UT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.UT", - "description": null, - "label": "UT", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.VA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.VA", - "description": null, - "label": "VA", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.VT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.VT", - "description": null, - "label": "VT", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.WA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.WA", - "description": null, - "label": "WA", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.WI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.WI", - "description": null, - "label": "WI", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.WV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.WV", - "description": null, - "label": "WV", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.WY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.medically_needy.categories.pregnant.WY", - "description": null, - "label": "WY", - "unit": "bool", - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child", - "description": null, - "label": "older child", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.age_range": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.age_range", - "description": "Age range defining an older child for Medicaid.", - "label": "Medicaid older child age range" - }, - "gov.hhs.medicaid.eligibility.categories.older_child.age_range[0]": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.age_range[0]", - "description": null, - "label": "bracket 1" - }, - "gov.hhs.medicaid.eligibility.categories.older_child.age_range[0].threshold": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.age_range[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2015-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.age_range[0].amount": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.age_range[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.age_range[1]": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.age_range[1]", - "description": null, - "label": "bracket 2" - }, - "gov.hhs.medicaid.eligibility.categories.older_child.age_range[1].threshold": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.age_range[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2015-01-01": 6 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.age_range[1].amount": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.age_range[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.age_range[2]": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.age_range[2]", - "description": null, - "label": "bracket 3" - }, - "gov.hhs.medicaid.eligibility.categories.older_child.age_range[2].threshold": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.age_range[2].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2015-01-01": 19 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.age_range[2].amount": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.age_range[2].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit", - "description": "Maximum family income for older children to qualify for Medicaid.", - "label": "Medicaid older child income limit", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.AK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.AK", - "description": null, - "label": "AK", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.08, - "2015-01-01": 2.08 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.AL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.AL", - "description": null, - "label": "AL", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.46, - "2015-01-01": 1.46 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.AR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.AR", - "description": null, - "label": "AR", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.47, - "2015-01-01": 1.47 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.AZ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.AZ", - "description": null, - "label": "AZ", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.CA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.CA", - "description": null, - "label": "CA", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.66, - "2015-01-01": 2.66 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.CO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.CO", - "description": null, - "label": "CO", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.47, - "2015-01-01": 1.47 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.CT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.CT", - "description": null, - "label": "CT", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.01, - "2015-01-01": 2.01 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.DC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.DC", - "description": null, - "label": "DC", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.24, - "2015-01-01": 3.24 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.DE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.DE", - "description": null, - "label": "DE", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.FL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.FL", - "description": null, - "label": "FL", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.GA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.GA", - "description": null, - "label": "GA", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.HI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.HI", - "description": null, - "label": "HI", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.13, - "2015-01-01": 3.13 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.IA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.IA", - "description": null, - "label": "IA", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.72, - "2015-01-01": 1.72 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.ID": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.ID", - "description": null, - "label": "ID", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.IL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.IL", - "description": null, - "label": "IL", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 3.18, - "2018-01-01": 1.47, - "2015-01-01": 1.47 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.IN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.IN", - "description": null, - "label": "IN", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.63, - "2018-01-01": 1.65, - "2015-01-01": 1.65 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.KS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.KS", - "description": null, - "label": "KS", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.KY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.KY", - "description": null, - "label": "KY", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.64, - "2015-01-01": 1.64 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.LA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.LA", - "description": null, - "label": "LA", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.17, - "2015-01-01": 2.17 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.MA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.MA", - "description": null, - "label": "MA", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.55, - "2015-01-01": 1.55 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.MD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.MD", - "description": null, - "label": "MD", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.22, - "2015-01-01": 3.22 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.ME": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.ME", - "description": null, - "label": "ME", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.62, - "2015-01-01": 1.62 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.MI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.MI", - "description": null, - "label": "MI", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.17, - "2015-01-01": 2.17 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.MN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.MN", - "description": null, - "label": "MN", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.8, - "2015-01-01": 2.8 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.MO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.MO", - "description": null, - "label": "MO", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.55, - "2015-01-01": 1.55 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.MS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.MS", - "description": null, - "label": "MS", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.MT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.MT", - "description": null, - "label": "MT", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.48, - "2015-01-01": 1.48 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.NC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.NC", - "description": null, - "label": "NC", - "unit": "/1", - "period": null, - "values": { - "2023-12-01": 2.16, - "2018-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.ND": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.ND", - "description": null, - "label": "ND", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.75, - "2018-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.NE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.NE", - "description": null, - "label": "NE", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.18, - "2015-01-01": 2.18 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.NH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.NH", - "description": null, - "label": "NH", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.23, - "2015-01-01": 3.23 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.NJ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.NJ", - "description": null, - "label": "NJ", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.47, - "2015-01-01": 1.47 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.NM": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.NM", - "description": null, - "label": "NM", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.45, - "2015-01-01": 2.45 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.NV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.NV", - "description": null, - "label": "NV", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.NY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.NY", - "description": null, - "label": "NY", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.54, - "2015-01-01": 1.54 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.OH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.OH", - "description": null, - "label": "OH", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.11, - "2015-01-01": 2.11 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.OK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.OK", - "description": null, - "label": "OK", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.1, - "2015-01-01": 2.1 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.OR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.OR", - "description": null, - "label": "OR", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.PA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.PA", - "description": null, - "label": "PA", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.RI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.RI", - "description": null, - "label": "RI", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.66, - "2015-01-01": 2.66 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.SC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.SC", - "description": null, - "label": "SC", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.13, - "2015-01-01": 2.13 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.SD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.SD", - "description": null, - "label": "SD", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.87, - "2015-01-01": 1.87 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.TN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.TN", - "description": null, - "label": "TN", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.16, - "2015-01-01": 2.16 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.TX": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.TX", - "description": null, - "label": "TX", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.UT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.UT", - "description": null, - "label": "UT", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.VA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.VA", - "description": null, - "label": "VA", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.48, - "2015-01-01": 1.48 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.VT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.VT", - "description": null, - "label": "VT", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 3.17, - "2015-01-01": 3.17 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.WA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.WA", - "description": null, - "label": "WA", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 2.15, - "2015-01-01": 2.15 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.WI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.WI", - "description": null, - "label": "WI", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.56, - "2015-01-01": 1.56 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.WV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.WV", - "description": null, - "label": "WV", - "unit": "/1", - "period": null, - "values": { - "2018-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.WY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.WY", - "description": null, - "label": "WY", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.05, - "2018-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.PW": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.PW", - "description": null, - "label": "PW", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.VI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.VI", - "description": null, - "label": "VI", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.PR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.PR", - "description": null, - "label": "PR", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.AP": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.AP", - "description": null, - "label": "AP", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.GU": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.GU", - "description": null, - "label": "GU", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.AE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.AE", - "description": null, - "label": "AE", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.MP": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.MP", - "description": null, - "label": "MP", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.AA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.older_child.income_limit.AA", - "description": null, - "label": "AA", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant", - "description": null, - "label": "infant", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.age_range": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.age_range", - "description": null, - "label": "age range", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.age_range.in_mn": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.age_range.in_mn", - "description": "Minnesota defines the age limit for infants eligible for Medicaid at this age.", - "label": "Medicaid infant age upper bound in Minnesota", - "unit": "year", - "period": "year", - "values": { - "2015-01-01": 2 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.age_range.other": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.age_range.other", - "description": "All states except California and Minnesota define the age limits for infants eligible for Medicaid.", - "label": "Medicaid infant age range in default states", - "unit": "year", - "period": "year", - "values": { - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.age_range.in_ca": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.age_range.in_ca", - "description": "California defines the age limit for infants eligible for Medicaid at this age.", - "label": "Medicaid infant age range in California", - "unit": "year", - "period": "year", - "values": { - "2015-01-01": 2 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit", - "description": "Maximum family income for infants to qualify for Medicaid.", - "label": "Medicaid infant income limit", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.AK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.AK", - "description": null, - "label": "AK", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.08, - "2015-01-01": 2.08 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.AL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.AL", - "description": null, - "label": "AL", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.46, - "2015-01-01": 1.46 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.AR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.AR", - "description": null, - "label": "AR", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.47, - "2015-01-01": 1.47 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.AZ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.AZ", - "description": null, - "label": "AZ", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.52, - "2015-01-01": 1.52 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.CA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.CA", - "description": null, - "label": "CA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.66, - "2015-01-01": 2.66 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.CO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.CO", - "description": null, - "label": "CO", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.47, - "2015-01-01": 1.47 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.CT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.CT", - "description": null, - "label": "CT", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.01, - "2015-01-01": 2.01 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.DC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.DC", - "description": null, - "label": "DC", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 3.24, - "2015-01-01": 3.24 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.DE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.DE", - "description": null, - "label": "DE", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.17, - "2015-01-01": 2.17 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.FL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.FL", - "description": null, - "label": "FL", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.11, - "2015-01-01": 2.11 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.GA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.GA", - "description": null, - "label": "GA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.1, - "2015-01-01": 2.1 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.HI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.HI", - "description": null, - "label": "HI", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 3.13, - "2015-01-01": 3.13 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.IA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.IA", - "description": null, - "label": "IA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 3.8, - "2015-01-01": 3.8 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.ID": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.ID", - "description": null, - "label": "ID", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.47, - "2015-01-01": 1.47 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.IL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.IL", - "description": null, - "label": "IL", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 3.18, - "2021-01-01": 1.47, - "2015-01-01": 1.47 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.IN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.IN", - "description": null, - "label": "IN", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.13, - "2018-01-01": 2.18, - "2015-01-01": 2.18 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.KS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.KS", - "description": null, - "label": "KS", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.71, - "2015-01-01": 1.71 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.KY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.KY", - "description": null, - "label": "KY", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.LA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.LA", - "description": null, - "label": "LA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.17, - "2015-01-01": 2.17 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.MA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.MA", - "description": null, - "label": "MA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.05, - "2015-01-01": 2.05 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.MD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.MD", - "description": null, - "label": "MD", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 3.22, - "2015-01-01": 3.22 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.ME": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.ME", - "description": null, - "label": "ME", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.96, - "2015-01-01": 1.96 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.MI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.MI", - "description": null, - "label": "MI", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.17, - "2015-01-01": 2.17 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.MN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.MN", - "description": null, - "label": "MN", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.88, - "2015-01-01": 2.88 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.MO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.MO", - "description": null, - "label": "MO", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.01, - "2015-01-01": 2.01 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.MS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.MS", - "description": null, - "label": "MS", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.99, - "2015-01-01": 1.99 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.MT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.MT", - "description": null, - "label": "MT", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.48, - "2015-01-01": 1.48 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.NC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.NC", - "description": null, - "label": "NC", - "unit": "/1", - "period": null, - "values": { - "2023-12-01": 2.16, - "2021-01-01": 2.15, - "2015-01-01": 2.15 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.ND": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.ND", - "description": null, - "label": "ND", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.75, - "2018-01-01": 1.52, - "2015-01-01": 1.52 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.NE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.NE", - "description": null, - "label": "NE", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.18, - "2015-01-01": 2.18 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.NH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.NH", - "description": null, - "label": "NH", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 3.23, - "2015-01-01": 3.23 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.NJ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.NJ", - "description": null, - "label": "NJ", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.99, - "2015-01-01": 1.99 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.NM": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.NM", - "description": null, - "label": "NM", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 3.05, - "2015-01-01": 3.05 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.NV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.NV", - "description": null, - "label": "NV", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.65, - "2015-01-01": 1.65 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.NY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.NY", - "description": null, - "label": "NY", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.23, - "2015-01-01": 2.23 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.OH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.OH", - "description": null, - "label": "OH", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.11, - "2015-01-01": 2.11 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.OK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.OK", - "description": null, - "label": "OK", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.1, - "2015-01-01": 2.1 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.OR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.OR", - "description": null, - "label": "OR", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.9, - "2015-01-01": 1.9 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.PA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.PA", - "description": null, - "label": "PA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.2, - "2015-01-01": 2.2 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.RI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.RI", - "description": null, - "label": "RI", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.66, - "2015-01-01": 2.66 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.SC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.SC", - "description": null, - "label": "SC", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.13, - "2015-01-01": 2.13 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.SD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.SD", - "description": null, - "label": "SD", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.87, - "2015-01-01": 1.87 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.TN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.TN", - "description": null, - "label": "TN", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2, - "2015-01-01": 2 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.TX": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.TX", - "description": null, - "label": "TX", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.03, - "2015-01-01": 2.03 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.UT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.UT", - "description": null, - "label": "UT", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.44, - "2015-01-01": 1.44 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.VA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.VA", - "description": null, - "label": "VA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.48, - "2015-01-01": 1.48 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.VT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.VT", - "description": null, - "label": "VT", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 3.17, - "2015-01-01": 3.17 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.WA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.WA", - "description": null, - "label": "WA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.15, - "2015-01-01": 2.15 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.WI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.WI", - "description": null, - "label": "WI", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 3.06, - "2015-01-01": 3.06 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.WV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.WV", - "description": null, - "label": "WV", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.63, - "2015-01-01": 1.63 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.WY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.WY", - "description": null, - "label": "WY", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.05, - "2018-01-01": 1.59, - "2015-01-01": 1.59 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.PW": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.PW", - "description": null, - "label": "PW", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.VI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.VI", - "description": null, - "label": "VI", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.PR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.PR", - "description": null, - "label": "PR", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.AP": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.AP", - "description": null, - "label": "AP", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.GU": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.GU", - "description": null, - "label": "GU", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.AE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.AE", - "description": null, - "label": "AE", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.MP": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.MP", - "description": null, - "label": "MP", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.infant.income_limit.AA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.infant.income_limit.AA", - "description": null, - "label": "AA", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child", - "description": null, - "label": "young child", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.age_range": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.age_range", - "description": "Age range defining a young child for Medicaid.", - "label": "Medicaid young child age range" - }, - "gov.hhs.medicaid.eligibility.categories.young_child.age_range[0]": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.age_range[0]", - "description": null, - "label": "bracket 1" - }, - "gov.hhs.medicaid.eligibility.categories.young_child.age_range[0].threshold": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.age_range[0].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2015-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.age_range[0].amount": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.age_range[0].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.age_range[1]": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.age_range[1]", - "description": null, - "label": "bracket 2" - }, - "gov.hhs.medicaid.eligibility.categories.young_child.age_range[1].threshold": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.age_range[1].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2015-01-01": 1 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.age_range[1].amount": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.age_range[1].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2015-01-01": true - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.age_range[2]": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.age_range[2]", - "description": null, - "label": "bracket 3" - }, - "gov.hhs.medicaid.eligibility.categories.young_child.age_range[2].threshold": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.age_range[2].threshold", - "description": null, - "label": "threshold", - "unit": "year", - "period": null, - "values": { - "2015-01-01": 6 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.age_range[2].amount": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.age_range[2].amount", - "description": null, - "label": "amount", - "unit": null, - "period": null, - "values": { - "2015-01-01": false - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit", - "description": "Maximum family income for young children to qualify for Medicaid.", - "label": "Medicaid young child income limit", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.AK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.AK", - "description": null, - "label": "AK", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.08, - "2015-01-01": 2.08 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.AL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.AL", - "description": null, - "label": "AL", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.46, - "2015-01-01": 1.46 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.AR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.AR", - "description": null, - "label": "AR", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.47, - "2015-01-01": 1.47 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.AZ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.AZ", - "description": null, - "label": "AZ", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.46, - "2015-01-01": 1.46 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.CA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.CA", - "description": null, - "label": "CA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.66, - "2015-01-01": 2.66 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.CO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.CO", - "description": null, - "label": "CO", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.47, - "2015-01-01": 1.47 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.CT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.CT", - "description": null, - "label": "CT", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.01, - "2015-01-01": 2.01 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.DC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.DC", - "description": null, - "label": "DC", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 3.24, - "2015-01-01": 3.24 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.DE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.DE", - "description": null, - "label": "DE", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.47, - "2015-01-01": 1.47 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.FL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.FL", - "description": null, - "label": "FL", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.45, - "2015-01-01": 1.45 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.GA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.GA", - "description": null, - "label": "GA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.54, - "2015-01-01": 1.54 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.HI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.HI", - "description": null, - "label": "HI", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 3.13, - "2015-01-01": 3.13 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.IA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.IA", - "description": null, - "label": "IA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.72, - "2015-01-01": 1.72 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.ID": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.ID", - "description": null, - "label": "ID", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.47, - "2015-01-01": 1.47 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.IL": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.IL", - "description": null, - "label": "IL", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 3.18, - "2021-01-01": 1.47, - "2015-01-01": 1.47 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.IN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.IN", - "description": null, - "label": "IN", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.63, - "2018-01-01": 1.65, - "2015-01-01": 1.65 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.KS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.KS", - "description": null, - "label": "KS", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.54, - "2015-01-01": 1.54 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.KY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.KY", - "description": null, - "label": "KY", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.64, - "2015-01-01": 1.64 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.LA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.LA", - "description": null, - "label": "LA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.17, - "2015-01-01": 2.17 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.MA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.MA", - "description": null, - "label": "MA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.55, - "2015-01-01": 1.55 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.MD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.MD", - "description": null, - "label": "MD", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 3.22, - "2015-01-01": 3.22 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.ME": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.ME", - "description": null, - "label": "ME", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.62, - "2015-01-01": 1.62 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.MI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.MI", - "description": null, - "label": "MI", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.17, - "2015-01-01": 2.17 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.MN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.MN", - "description": null, - "label": "MN", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.8, - "2015-01-01": 2.8 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.MO": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.MO", - "description": null, - "label": "MO", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.55, - "2015-01-01": 1.55 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.MS": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.MS", - "description": null, - "label": "MS", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.48, - "2015-01-01": 1.48 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.MT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.MT", - "description": null, - "label": "MT", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.48, - "2015-01-01": 1.48 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.NC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.NC", - "description": null, - "label": "NC", - "unit": "/1", - "period": null, - "values": { - "2023-12-01": 2.16, - "2021-01-01": 2.15, - "2015-01-01": 2.15 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.ND": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.ND", - "description": null, - "label": "ND", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.75, - "2018-01-01": 1.52, - "2015-01-01": 1.52 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.NE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.NE", - "description": null, - "label": "NE", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.18, - "2015-01-01": 2.18 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.NH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.NH", - "description": null, - "label": "NH", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 3.23, - "2015-01-01": 3.23 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.NJ": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.NJ", - "description": null, - "label": "NJ", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.47, - "2015-01-01": 1.47 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.NM": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.NM", - "description": null, - "label": "NM", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 3.05, - "2015-01-01": 3.05 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.NV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.NV", - "description": null, - "label": "NV", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.65, - "2015-01-01": 1.65 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.NY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.NY", - "description": null, - "label": "NY", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.54, - "2015-01-01": 1.54 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.OH": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.OH", - "description": null, - "label": "OH", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.11, - "2015-01-01": 2.11 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.OK": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.OK", - "description": null, - "label": "OK", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.1, - "2015-01-01": 2.1 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.OR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.OR", - "description": null, - "label": "OR", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.38, - "2015-01-01": 1.38 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.PA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.PA", - "description": null, - "label": "PA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.62, - "2015-01-01": 1.62 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.RI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.RI", - "description": null, - "label": "RI", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.66, - "2015-01-01": 2.66 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.SC": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.SC", - "description": null, - "label": "SC", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.13, - "2015-01-01": 2.13 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.SD": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.SD", - "description": null, - "label": "SD", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.87, - "2015-01-01": 1.87 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.TN": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.TN", - "description": null, - "label": "TN", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.47, - "2015-01-01": 1.47 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.TX": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.TX", - "description": null, - "label": "TX", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.49, - "2015-01-01": 1.49 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.UT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.UT", - "description": null, - "label": "UT", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.44, - "2015-01-01": 1.44 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.VA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.VA", - "description": null, - "label": "VA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.48, - "2015-01-01": 1.48 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.VT": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.VT", - "description": null, - "label": "VT", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 3.17, - "2015-01-01": 3.17 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.WA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.WA", - "description": null, - "label": "WA", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.15, - "2015-01-01": 2.15 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.WI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.WI", - "description": null, - "label": "WI", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.91, - "2015-01-01": 1.91 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.WV": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.WV", - "description": null, - "label": "WV", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 1.46, - "2015-01-01": 1.46 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.WY": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.WY", - "description": null, - "label": "WY", - "unit": "/1", - "period": null, - "values": { - "2021-01-01": 2.05, - "2018-01-01": 1.59, - "2015-01-01": 1.59 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.PW": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.PW", - "description": null, - "label": "PW", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.VI": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.VI", - "description": null, - "label": "VI", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.PR": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.PR", - "description": null, - "label": "PR", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.AP": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.AP", - "description": null, - "label": "AP", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.GU": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.GU", - "description": null, - "label": "GU", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.AE": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.AE", - "description": null, - "label": "AE", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.MP": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.MP", - "description": null, - "label": "MP", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.AA": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.eligibility.categories.young_child.income_limit.AA", - "description": null, - "label": "AA", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.hhs.medicaid.geography": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.geography", - "description": null, - "label": "geography", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.geography.__pycache__": { - "type": "parameterNode", - "parameter": "gov.hhs.medicaid.geography.__pycache__", - "description": null, - "label": " pycache ", - "economy": false, - "household": false - }, - "gov.hhs.medicaid.takeup_rate": { - "type": "parameter", - "parameter": "gov.hhs.medicaid.takeup_rate", - "description": "Percentage of people who do enroll in Medicaid, if eligible.", - "label": "Medicaid takeup rate", - "unit": "/1", - "period": "year", - "values": { - "2018-01-01": 0.93, - "2015-01-01": 0.93 - }, - "economy": false, - "household": false - }, - "gov.hhs.tanf": { - "type": "parameterNode", - "parameter": "gov.hhs.tanf", - "description": null, - "label": "Temporary Assistance for Needy Families (TANF)", - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash": { - "type": "parameterNode", - "parameter": "gov.hhs.tanf.non_cash", - "description": null, - "label": "Non-cash", - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit": { - "type": "parameterNode", - "parameter": "gov.hhs.tanf.non_cash.asset_limit", - "description": "Asset limit for TANF non-cash benefit used for SNAP BBCE, by state.", - "label": "asset limit", - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.AL": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.AL", - "description": null, - "label": "AL", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.AK": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.AK", - "description": null, - "label": "AK", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.AZ": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.AZ", - "description": null, - "label": "AZ", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.AR": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.AR", - "description": null, - "label": "AR", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.CA": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.CA", - "description": null, - "label": "CA", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.CO": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.CO", - "description": null, - "label": "CO", - "unit": "currency-USD", - "period": null, - "values": { - "2022-11-30": "Infinity", - "2020-07-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.CT": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.CT", - "description": null, - "label": "CT", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.DE": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.DE", - "description": null, - "label": "DE", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.DC": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.DC", - "description": null, - "label": "DC", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.FL": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.FL", - "description": null, - "label": "FL", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.GA": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.GA", - "description": null, - "label": "GA", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.GU": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.GU", - "description": null, - "label": "GU", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.HI": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.HI", - "description": null, - "label": "HI", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.ID": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.ID", - "description": null, - "label": "ID", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": 5000, - "2015-01-01": 5000 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.IL": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.IL", - "description": null, - "label": "IL", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.IN": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.IN", - "description": null, - "label": "IN", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": 5000, - "2015-01-01": 5000 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.IA": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.IA", - "description": null, - "label": "IA", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.KS": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.KS", - "description": null, - "label": "KS", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.KY": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.KY", - "description": null, - "label": "KY", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.LA": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.LA", - "description": null, - "label": "LA", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.ME": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.ME", - "description": null, - "label": "ME", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.MD": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.MD", - "description": null, - "label": "MD", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.MA": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.MA", - "description": null, - "label": "MA", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.MI": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.MI", - "description": null, - "label": "MI", - "unit": "currency-USD", - "period": null, - "values": { - "2023-07-01": "Infinity", - "2020-07-01": 15000, - "2015-01-01": 15000 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.MN": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.MN", - "description": null, - "label": "MN", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.MS": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.MS", - "description": null, - "label": "MS", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.MT": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.MT", - "description": null, - "label": "MT", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.NE": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.NE", - "description": null, - "label": "NE", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": 25000, - "2015-01-01": 25000 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.NV": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.NV", - "description": null, - "label": "NV", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.NH": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.NH", - "description": null, - "label": "NH", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.NJ": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.NJ", - "description": null, - "label": "NJ", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.NM": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.NM", - "description": null, - "label": "NM", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.NY": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.NY", - "description": null, - "label": "NY", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.NC": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.NC", - "description": null, - "label": "NC", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.ND": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.ND", - "description": null, - "label": "ND", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.OH": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.OH", - "description": null, - "label": "OH", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.OK": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.OK", - "description": null, - "label": "OK", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.OR": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.OR", - "description": null, - "label": "OR", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.PA": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.PA", - "description": null, - "label": "PA", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.RI": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.RI", - "description": null, - "label": "RI", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.SC": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.SC", - "description": null, - "label": "SC", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.TX": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.TX", - "description": null, - "label": "TX", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": 5000, - "2015-01-01": 5000 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.UT": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.UT", - "description": null, - "label": "UT", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.VT": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.VT", - "description": null, - "label": "VT", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.VI": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.VI", - "description": null, - "label": "VI", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.VA": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.VA", - "description": null, - "label": "VA", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.WA": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.WA", - "description": null, - "label": "WA", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.WV": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.WV", - "description": null, - "label": "WV", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.WI": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.WI", - "description": null, - "label": "WI", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": "Infinity", - "2015-01-01": "Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.WY": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.WY", - "description": null, - "label": "WY", - "unit": "currency-USD", - "period": null, - "values": { - "2020-07-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.PW": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.PW", - "description": null, - "label": "PW", - "unit": "currency-USD", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.MO": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.MO", - "description": null, - "label": "MO", - "unit": "currency-USD", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.PR": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.PR", - "description": null, - "label": "PR", - "unit": "currency-USD", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.AP": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.AP", - "description": null, - "label": "AP", - "unit": "currency-USD", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.SD": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.SD", - "description": null, - "label": "SD", - "unit": "currency-USD", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.TN": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.TN", - "description": null, - "label": "TN", - "unit": "currency-USD", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.AE": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.AE", - "description": null, - "label": "AE", - "unit": "currency-USD", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.MP": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.MP", - "description": null, - "label": "MP", - "unit": "currency-USD", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.asset_limit.AA": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.asset_limit.AA", - "description": null, - "label": "AA", - "unit": "currency-USD", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit": { - "type": "parameterNode", - "parameter": "gov.hhs.tanf.non_cash.income_limit", - "description": null, - "label": "income limit", - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies": { - "type": "parameterNode", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies", - "description": null, - "label": "net applies", - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod": { - "type": "parameterNode", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod", - "description": "Whether the SNAP net income limit applies to elderly/disabled households seeking BBCE.", - "label": "hheod", - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.AL": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.AL", - "description": null, - "label": "AL", - "unit": null, - "period": null, - "values": { - "2020-07-01": true, - "2015-01-01": true - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.AZ": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.AZ", - "description": null, - "label": "AZ", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.CA": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.CA", - "description": null, - "label": "CA", - "unit": null, - "period": null, - "values": { - "2020-07-01": true, - "2015-01-01": true - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.CO": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.CO", - "description": null, - "label": "CO", - "unit": null, - "period": null, - "values": { - "2024-07-01": false, - "2020-07-01": true, - "2015-01-01": true - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.CT": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.CT", - "description": null, - "label": "CT", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.DC": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.DC", - "description": null, - "label": "DC", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.DE": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.DE", - "description": null, - "label": "DE", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.FL": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.FL", - "description": null, - "label": "FL", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.GA": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.GA", - "description": null, - "label": "GA", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.GU": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.GU", - "description": null, - "label": "GU", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.HI": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.HI", - "description": null, - "label": "HI", - "unit": null, - "period": null, - "values": { - "2022-07-01": true, - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.IA": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.IA", - "description": null, - "label": "IA", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.ID": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.ID", - "description": null, - "label": "ID", - "unit": null, - "period": null, - "values": { - "2024-07-01": true, - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.IL": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.IL", - "description": null, - "label": "IL", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.IN": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.IN", - "description": null, - "label": "IN", - "unit": null, - "period": null, - "values": { - "2020-07-01": true, - "2015-01-01": true - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.KY": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.KY", - "description": null, - "label": "KY", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.LA": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.LA", - "description": null, - "label": "LA", - "unit": null, - "period": null, - "values": { - "2020-07-01": true, - "2015-01-01": true - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.MA": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.MA", - "description": null, - "label": "MA", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.MD": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.MD", - "description": null, - "label": "MD", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.ME": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.ME", - "description": null, - "label": "ME", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.MI": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.MI", - "description": null, - "label": "MI", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.MN": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.MN", - "description": null, - "label": "MN", - "unit": null, - "period": null, - "values": { - "2024-07-01": true, - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.MT": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.MT", - "description": null, - "label": "MT", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.NC": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.NC", - "description": null, - "label": "NC", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.ND": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.ND", - "description": null, - "label": "ND", - "unit": null, - "period": null, - "values": { - "2020-07-01": true, - "2015-01-01": true - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.NE": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.NE", - "description": null, - "label": "NE", - "unit": null, - "period": null, - "values": { - "2020-07-01": true, - "2015-01-01": true - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.NH": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.NH", - "description": null, - "label": "NH", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.NJ": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.NJ", - "description": null, - "label": "NJ", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.NM": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.NM", - "description": null, - "label": "NM", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.NV": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.NV", - "description": null, - "label": "NV", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.NY": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.NY", - "description": null, - "label": "NY", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.OH": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.OH", - "description": null, - "label": "OH", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.OK": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.OK", - "description": null, - "label": "OK", - "unit": null, - "period": null, - "values": { - "2020-07-01": true, - "2015-01-01": true - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.OR": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.OR", - "description": null, - "label": "OR", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.PA": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.PA", - "description": null, - "label": "PA", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.RI": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.RI", - "description": null, - "label": "RI", - "unit": null, - "period": null, - "values": { - "2020-07-01": true, - "2015-01-01": true - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.SC": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.SC", - "description": null, - "label": "SC", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.TX": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.TX", - "description": null, - "label": "TX", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.VA": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.VA", - "description": null, - "label": "VA", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.VI": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.VI", - "description": null, - "label": "VI", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.VT": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.VT", - "description": null, - "label": "VT", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.WA": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.WA", - "description": null, - "label": "WA", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.WI": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.WI", - "description": null, - "label": "WI", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.WV": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.WV", - "description": null, - "label": "WV", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.PW": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.PW", - "description": null, - "label": "PW", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.AR": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.AR", - "description": null, - "label": "AR", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.MO": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.MO", - "description": null, - "label": "MO", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.AK": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.AK", - "description": null, - "label": "AK", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.MS": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.MS", - "description": null, - "label": "MS", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.PR": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.PR", - "description": null, - "label": "PR", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.AP": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.AP", - "description": null, - "label": "AP", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.SD": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.SD", - "description": null, - "label": "SD", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.TN": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.TN", - "description": null, - "label": "TN", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.UT": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.UT", - "description": null, - "label": "UT", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.AE": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.AE", - "description": null, - "label": "AE", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.MP": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.MP", - "description": null, - "label": "MP", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.AA": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.AA", - "description": null, - "label": "AA", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.KS": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.KS", - "description": null, - "label": "KS", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.WY": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.hheod.WY", - "description": null, - "label": "WY", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod": { - "type": "parameterNode", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod", - "description": "Whether the SNAP net income limit applies to non-elderly/disabled households seeking BBCE.", - "label": "non hheod", - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.AL": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.AL", - "description": null, - "label": "AL", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.AZ": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.AZ", - "description": null, - "label": "AZ", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.CA": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.CA", - "description": null, - "label": "CA", - "unit": null, - "period": null, - "values": { - "2020-07-01": true, - "2015-01-01": true - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.CO": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.CO", - "description": null, - "label": "CO", - "unit": null, - "period": null, - "values": { - "2024-07-01": false, - "2020-07-01": true, - "2015-01-01": true - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.CT": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.CT", - "description": null, - "label": "CT", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.DC": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.DC", - "description": null, - "label": "DC", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.DE": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.DE", - "description": null, - "label": "DE", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.FL": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.FL", - "description": null, - "label": "FL", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.GA": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.GA", - "description": null, - "label": "GA", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.GU": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.GU", - "description": null, - "label": "GU", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.HI": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.HI", - "description": null, - "label": "HI", - "unit": null, - "period": null, - "values": { - "2022-07-01": true, - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.IA": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.IA", - "description": null, - "label": "IA", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.ID": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.ID", - "description": null, - "label": "ID", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.IL": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.IL", - "description": null, - "label": "IL", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.IN": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.IN", - "description": null, - "label": "IN", - "unit": null, - "period": null, - "values": { - "2020-07-01": true, - "2015-01-01": true - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.KY": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.KY", - "description": null, - "label": "KY", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.LA": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.LA", - "description": null, - "label": "LA", - "unit": null, - "period": null, - "values": { - "2020-07-01": true, - "2015-01-01": true - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.MA": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.MA", - "description": null, - "label": "MA", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.MD": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.MD", - "description": null, - "label": "MD", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.ME": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.ME", - "description": null, - "label": "ME", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.MI": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.MI", - "description": null, - "label": "MI", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.MN": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.MN", - "description": null, - "label": "MN", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.MT": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.MT", - "description": null, - "label": "MT", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.NC": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.NC", - "description": null, - "label": "NC", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.ND": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.ND", - "description": null, - "label": "ND", - "unit": null, - "period": null, - "values": { - "2020-07-01": true, - "2015-01-01": true - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.NE": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.NE", - "description": null, - "label": "NE", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.NH": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.NH", - "description": null, - "label": "NH", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.NJ": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.NJ", - "description": null, - "label": "NJ", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.NM": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.NM", - "description": null, - "label": "NM", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.NV": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.NV", - "description": null, - "label": "NV", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.NY": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.NY", - "description": null, - "label": "NY", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.OH": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.OH", - "description": null, - "label": "OH", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.OK": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.OK", - "description": null, - "label": "OK", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.OR": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.OR", - "description": null, - "label": "OR", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.PA": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.PA", - "description": null, - "label": "PA", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.RI": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.RI", - "description": null, - "label": "RI", - "unit": null, - "period": null, - "values": { - "2020-07-01": true, - "2015-01-01": true - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.SC": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.SC", - "description": null, - "label": "SC", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.TX": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.TX", - "description": null, - "label": "TX", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.VA": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.VA", - "description": null, - "label": "VA", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.VI": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.VI", - "description": null, - "label": "VI", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.VT": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.VT", - "description": null, - "label": "VT", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.WA": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.WA", - "description": null, - "label": "WA", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.WI": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.WI", - "description": null, - "label": "WI", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.WV": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.WV", - "description": null, - "label": "WV", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.PW": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.PW", - "description": null, - "label": "PW", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.AR": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.AR", - "description": null, - "label": "AR", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.MO": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.MO", - "description": null, - "label": "MO", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.AK": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.AK", - "description": null, - "label": "AK", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.MS": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.MS", - "description": null, - "label": "MS", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.PR": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.PR", - "description": null, - "label": "PR", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.AP": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.AP", - "description": null, - "label": "AP", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.SD": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.SD", - "description": null, - "label": "SD", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.TN": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.TN", - "description": null, - "label": "TN", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.UT": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.UT", - "description": null, - "label": "UT", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.AE": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.AE", - "description": null, - "label": "AE", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.MP": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.MP", - "description": null, - "label": "MP", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.AA": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.AA", - "description": null, - "label": "AA", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.KS": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.KS", - "description": null, - "label": "KS", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.WY": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.net_applies.non_hheod.WY", - "description": null, - "label": "WY", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross": { - "type": "parameterNode", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross", - "description": "Gross income limit as a percent of the poverty line for TANF non-cash benefit used for SNAP BBCE, by state.", - "label": "gross", - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.AL": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.AL", - "description": null, - "label": "AL", - "unit": "/1", - "period": null, - "values": { - "2020-07-01": 1.3, - "2015-01-01": 1.3 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.AK": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.AK", - "description": null, - "label": "AK", - "unit": "/1", - "period": null, - "values": { - "2020-07-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.AZ": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.AZ", - "description": null, - "label": "AZ", - "unit": "/1", - "period": null, - "values": { - "2020-07-01": 1.85, - "2015-01-01": 1.85 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.AR": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.AR", - "description": null, - "label": "AR", - "unit": "/1", - "period": null, - "values": { - "2020-07-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.CA": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.CA", - "description": null, - "label": "CA", - "unit": "/1", - "period": null, - "values": { - "2020-07-01": 2, - "2015-01-01": 2 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.CO": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.CO", - "description": null, - "label": "CO", - "unit": "/1", - "period": null, - "values": { - "2022-11-30": 2, - "2020-07-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.CT": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.CT", - "description": null, - "label": "CT", - "unit": "/1", - "period": null, - "values": { - "2022-10-01": 2, - "2020-07-01": 1.85, - "2015-01-01": 1.85 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.DE": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.DE", - "description": null, - "label": "DE", - "unit": "/1", - "period": null, - "values": { - "2020-07-01": 2, - "2015-01-01": 2 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.DC": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.DC", - "description": null, - "label": "DC", - "unit": "/1", - "period": null, - "values": { - "2020-07-01": 2, - "2015-01-01": 2 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.FL": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.FL", - "description": null, - "label": "FL", - "unit": "/1", - "period": null, - "values": { - "2020-07-01": 2, - "2015-01-01": 2 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.GA": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.GA", - "description": null, - "label": "GA", - "unit": "/1", - "period": null, - "values": { - "2020-07-01": 1.3, - "2015-01-01": 1.3 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.GU": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.GU", - "description": null, - "label": "GU", - "unit": "/1", - "period": null, - "values": { - "2020-07-01": 1.65, - "2015-01-01": 1.65 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.HI": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.HI", - "description": null, - "label": "HI", - "unit": "/1", - "period": null, - "values": { - "2020-07-01": 2, - "2015-01-01": 2 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.ID": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.ID", - "description": null, - "label": "ID", - "unit": "/1", - "period": null, - "values": { - "2020-07-01": 1.3, - "2015-01-01": 1.3 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.IL": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.IL", - "description": null, - "label": "IL", - "unit": "/1", - "period": null, - "values": { - "2020-07-01": 1.65, - "2015-01-01": 1.65 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.IN": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.IN", - "description": null, - "label": "IN", - "unit": "/1", - "period": null, - "values": { - "2020-07-01": 1.3, - "2015-01-01": 1.3 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.IA": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.IA", - "description": null, - "label": "IA", - "unit": "/1", - "period": null, - "values": { - "2020-07-01": 1.6, - "2015-01-01": 1.6 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.KS": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.KS", - "description": null, - "label": "KS", - "unit": "/1", - "period": null, - "values": { - "2020-07-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.KY": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.KY", - "description": null, - "label": "KY", - "unit": "/1", - "period": null, - "values": { - "2020-07-01": 2, - "2015-01-01": 2 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.LA": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.LA", - "description": null, - "label": "LA", - "unit": "/1", - "period": null, - "values": { - "2022-07-01": 2, - "2020-07-01": 1.3, - "2015-01-01": 1.3 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.ME": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.ME", - "description": null, - "label": "ME", - "unit": "/1", - "period": null, - "values": { - "2024-07-01": 2, - "2020-07-01": 1.85, - "2015-01-01": 1.85 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.MD": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.MD", - "description": null, - "label": "MD", - "unit": "/1", - "period": null, - "values": { - "2020-07-01": 2, - "2015-01-01": 2 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.MA": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.MA", - "description": null, - "label": "MA", - "unit": "/1", - "period": null, - "values": { - "2020-07-01": 2, - "2015-01-01": 2 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.MI": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.MI", - "description": null, - "label": "MI", - "unit": "/1", - "period": null, - "values": { - "2020-07-01": 2, - "2015-01-01": 2 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.MN": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.MN", - "description": null, - "label": "MN", - "unit": "/1", - "period": null, - "values": { - "2022-09-01": 2, - "2020-07-01": 1.65, - "2015-01-01": 1.65 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.MO": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.MO", - "description": null, - "label": "MO", - "unit": "/1", - "period": null, - "values": { - "2024-07-01": "-Infinity", - "2020-07-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.MS": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.MS", - "description": null, - "label": "MS", - "unit": "/1", - "period": null, - "values": { - "2020-07-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.MT": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.MT", - "description": null, - "label": "MT", - "unit": "/1", - "period": null, - "values": { - "2020-07-01": 2, - "2015-01-01": 2 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.NE": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.NE", - "description": null, - "label": "NE", - "unit": "/1", - "period": null, - "values": { - "2021-06-01": 1.65, - "2020-07-01": 1.3, - "2015-01-01": 1.3 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.NV": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.NV", - "description": null, - "label": "NV", - "unit": "/1", - "period": null, - "values": { - "2020-07-01": 2, - "2015-01-01": 2 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.NH": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.NH", - "description": null, - "label": "NH", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 2, - "2020-07-01": 1.85, - "2015-01-01": 1.85 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.NJ": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.NJ", - "description": null, - "label": "NJ", - "unit": "/1", - "period": null, - "values": { - "2020-07-01": 1.85, - "2015-01-01": 1.85 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.NM": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.NM", - "description": null, - "label": "NM", - "unit": "/1", - "period": null, - "values": { - "2020-07-01": 1.65, - "2015-01-01": 1.65 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.NY": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.NY", - "description": null, - "label": "NY", - "unit": "/1", - "period": null, - "values": { - "2020-07-01": 1.5, - "2015-01-01": 1.5 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.NC": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.NC", - "description": null, - "label": "NC", - "unit": "/1", - "period": null, - "values": { - "2020-07-01": 2, - "2015-01-01": 2 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.ND": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.ND", - "description": null, - "label": "ND", - "unit": "/1", - "period": null, - "values": { - "2020-07-01": 2, - "2015-01-01": 2 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.OH": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.OH", - "description": null, - "label": "OH", - "unit": "/1", - "period": null, - "values": { - "2020-07-01": 1.3, - "2015-01-01": 1.3 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.OK": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.OK", - "description": null, - "label": "OK", - "unit": "/1", - "period": null, - "values": { - "2020-07-01": 1.3, - "2015-01-01": 1.3 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.OR": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.OR", - "description": null, - "label": "OR", - "unit": "/1", - "period": null, - "values": { - "2022-01-01": 2, - "2020-07-01": 1.85, - "2015-01-01": 1.85 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.PA": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.PA", - "description": null, - "label": "PA", - "unit": "/1", - "period": null, - "values": { - "2022-10-01": 2, - "2020-07-01": 1.6, - "2015-01-01": 1.6 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.RI": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.RI", - "description": null, - "label": "RI", - "unit": "/1", - "period": null, - "values": { - "2020-07-01": 1.85, - "2015-01-01": 1.85 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.SC": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.SC", - "description": null, - "label": "SC", - "unit": "/1", - "period": null, - "values": { - "2020-07-01": 1.3, - "2015-01-01": 1.3 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.TX": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.TX", - "description": null, - "label": "TX", - "unit": "/1", - "period": null, - "values": { - "2020-07-01": 1.65, - "2015-01-01": 1.65 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.TN": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.TN", - "description": null, - "label": "TN", - "unit": "/1", - "period": null, - "values": { - "2023-07-01": "-Infinity", - "2020-07-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.UT": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.UT", - "description": null, - "label": "UT", - "unit": "/1", - "period": null, - "values": { - "2020-07-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.VT": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.VT", - "description": null, - "label": "VT", - "unit": "/1", - "period": null, - "values": { - "2020-07-01": 1.85, - "2015-01-01": 1.85 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.VI": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.VI", - "description": null, - "label": "VI", - "unit": "/1", - "period": null, - "values": { - "2020-07-01": 1.75, - "2015-01-01": 1.75 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.VA": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.VA", - "description": null, - "label": "VA", - "unit": "/1", - "period": null, - "values": { - "2021-07-01": 2, - "2020-07-01": 1.3, - "2015-01-01": 1.3 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.WA": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.WA", - "description": null, - "label": "WA", - "unit": "/1", - "period": null, - "values": { - "2020-07-01": 2, - "2015-01-01": 2 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.WV": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.WV", - "description": null, - "label": "WV", - "unit": "/1", - "period": null, - "values": { - "2020-07-01": 2, - "2015-01-01": 2 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.WI": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.WI", - "description": null, - "label": "WI", - "unit": "/1", - "period": null, - "values": { - "2020-07-01": 2, - "2015-01-01": 2 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.WY": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.WY", - "description": null, - "label": "WY", - "unit": "/1", - "period": null, - "values": { - "2020-07-01": "-Infinity", - "2015-01-01": "-Infinity" - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.PW": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.PW", - "description": null, - "label": "PW", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.PR": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.PR", - "description": null, - "label": "PR", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.AP": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.AP", - "description": null, - "label": "AP", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.SD": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.SD", - "description": null, - "label": "SD", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.AE": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.AE", - "description": null, - "label": "AE", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.MP": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.MP", - "description": null, - "label": "MP", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.income_limit.gross.AA": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.income_limit.gross.AA", - "description": null, - "label": "AA", - "unit": "/1", - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod": { - "type": "parameterNode", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod", - "description": "Requires all members in household to be elderly or disabled for the household to be classified as elderly or disabled for non-cash TANF benefit; otherwise any.", - "label": "requires all for hheod", - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.AL": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.AL", - "description": null, - "label": "AL", - "unit": null, - "period": null, - "values": { - "2020-07-01": true, - "2015-01-01": true - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.GA": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.GA", - "description": null, - "label": "GA", - "unit": null, - "period": null, - "values": { - "2020-07-01": true, - "2015-01-01": true - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.ID": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.ID", - "description": null, - "label": "ID", - "unit": null, - "period": null, - "values": { - "2024-07-02": false, - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.IL": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.IL", - "description": null, - "label": "IL", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.IN": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.IN", - "description": null, - "label": "IN", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.LA": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.LA", - "description": null, - "label": "LA", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.NE": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.NE", - "description": null, - "label": "NE", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.OH": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.OH", - "description": null, - "label": "OH", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.OK": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.OK", - "description": null, - "label": "OK", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.PA": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.PA", - "description": null, - "label": "PA", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.RI": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.RI", - "description": null, - "label": "RI", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.SC": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.SC", - "description": null, - "label": "SC", - "unit": null, - "period": null, - "values": { - "2020-07-01": true, - "2015-01-01": true - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.VI": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.VI", - "description": null, - "label": "VI", - "unit": null, - "period": null, - "values": { - "2020-07-01": false, - "2015-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.MS": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.MS", - "description": null, - "label": "MS", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.PR": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.PR", - "description": null, - "label": "PR", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.GU": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.GU", - "description": null, - "label": "GU", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.CT": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.CT", - "description": null, - "label": "CT", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.OR": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.OR", - "description": null, - "label": "OR", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.TX": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.TX", - "description": null, - "label": "TX", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.AE": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.AE", - "description": null, - "label": "AE", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.IA": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.IA", - "description": null, - "label": "IA", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.WA": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.WA", - "description": null, - "label": "WA", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.AR": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.AR", - "description": null, - "label": "AR", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.AK": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.AK", - "description": null, - "label": "AK", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.TN": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.TN", - "description": null, - "label": "TN", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.UT": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.UT", - "description": null, - "label": "UT", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.WI": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.WI", - "description": null, - "label": "WI", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.CO": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.CO", - "description": null, - "label": "CO", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.MP": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.MP", - "description": null, - "label": "MP", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.AA": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.AA", - "description": null, - "label": "AA", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.KS": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.KS", - "description": null, - "label": "KS", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.ME": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.ME", - "description": null, - "label": "ME", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.AZ": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.AZ", - "description": null, - "label": "AZ", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.DE": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.DE", - "description": null, - "label": "DE", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.MN": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.MN", - "description": null, - "label": "MN", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.KY": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.KY", - "description": null, - "label": "KY", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.MA": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.MA", - "description": null, - "label": "MA", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.MT": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.MT", - "description": null, - "label": "MT", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.VA": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.VA", - "description": null, - "label": "VA", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.MI": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.MI", - "description": null, - "label": "MI", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.NJ": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.NJ", - "description": null, - "label": "NJ", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.FL": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.FL", - "description": null, - "label": "FL", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.HI": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.HI", - "description": null, - "label": "HI", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.NC": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.NC", - "description": null, - "label": "NC", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.WV": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.WV", - "description": null, - "label": "WV", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.WY": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.WY", - "description": null, - "label": "WY", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.PW": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.PW", - "description": null, - "label": "PW", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.NY": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.NY", - "description": null, - "label": "NY", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.MO": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.MO", - "description": null, - "label": "MO", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.CA": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.CA", - "description": null, - "label": "CA", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.MD": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.MD", - "description": null, - "label": "MD", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.NV": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.NV", - "description": null, - "label": "NV", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.AP": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.AP", - "description": null, - "label": "AP", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.NM": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.NM", - "description": null, - "label": "NM", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.DC": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.DC", - "description": null, - "label": "DC", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.NH": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.NH", - "description": null, - "label": "NH", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.SD": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.SD", - "description": null, - "label": "SD", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.VT": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.VT", - "description": null, - "label": "VT", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.non_cash.requires_all_for_hheod.ND": { - "type": "parameter", - "parameter": "gov.hhs.tanf.non_cash.requires_all_for_hheod.ND", - "description": null, - "label": "ND", - "unit": null, - "period": null, - "values": { - "2040-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.abolish_tanf": { - "type": "parameter", - "parameter": "gov.hhs.tanf.abolish_tanf", - "description": "Abolish TANF cash payments.", - "label": "Abolish TANF", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.cash": { - "type": "parameterNode", - "parameter": "gov.hhs.tanf.cash", - "description": null, - "label": "cash", - "economy": false, - "household": true - }, - "gov.hhs.tanf.cash.eligibility": { - "type": "parameterNode", - "parameter": "gov.hhs.tanf.cash.eligibility", - "description": null, - "label": "eligibility", - "economy": false, - "household": true - }, - "gov.hhs.tanf.cash.eligibility.age_limit": { - "type": "parameterNode", - "parameter": "gov.hhs.tanf.cash.eligibility.age_limit", - "description": null, - "label": "age limit", - "economy": false, - "household": true - }, - "gov.hhs.tanf.cash.eligibility.age_limit.student": { - "type": "parameter", - "parameter": "gov.hhs.tanf.cash.eligibility.age_limit.student", - "description": "The Temporary Assistance for Needy Families (TANF) program defines one of the qualifying criteria of a minor child as an individual who has not yet reached this age and is a full-time student in a secondary school (or an equivalent level of vocational or technical training).", - "label": "TANF minor child student age limit", - "unit": "year", - "period": "year", - "values": { - "2010-07-01": 19 - }, - "economy": false, - "household": true - }, - "gov.hhs.tanf.cash.eligibility.age_limit.non_student": { - "type": "parameter", - "parameter": "gov.hhs.tanf.cash.eligibility.age_limit.non_student", - "description": "The Temporary Assistance for Needy Families (TANF) program defines one of the qualifying criteria of a minor child as an individual who has not yet reached this age.", - "label": "TANF minor child non student age limit", - "unit": "year", - "period": "year", - "values": { - "2010-07-01": 18 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi": { - "type": "parameterNode", - "parameter": "gov.hhs.smi", - "description": null, - "label": "State Median Income (SMI)", - "economy": false, - "household": true - }, - "gov.hhs.smi.household_size_adjustment": { - "type": "parameterNode", - "parameter": "gov.hhs.smi.household_size_adjustment", - "description": "The US Department of Health and Human Services household size adjustments for state median income.", - "label": "HHS SMI household size adjustments", - "economy": false, - "household": true - }, - "gov.hhs.smi.household_size_adjustment.first_person": { - "type": "parameter", - "parameter": "gov.hhs.smi.household_size_adjustment.first_person", - "description": null, - "label": "first person", - "unit": "/1", - "period": "year", - "values": { - "2021-10-01": 0.52, - "2015-01-01": 0.52 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.household_size_adjustment.second_to_sixth_person": { - "type": "parameter", - "parameter": "gov.hhs.smi.household_size_adjustment.second_to_sixth_person", - "description": null, - "label": "second to sixth person", - "unit": "/1", - "period": "year", - "values": { - "2021-10-01": 0.16, - "2015-01-01": 0.16 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.household_size_adjustment.additional_person": { - "type": "parameter", - "parameter": "gov.hhs.smi.household_size_adjustment.additional_person", - "description": null, - "label": "additional person", - "unit": "/1", - "period": "year", - "values": { - "2021-10-01": 0.03, - "2015-01-01": 0.03 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount": { - "type": "parameterNode", - "parameter": "gov.hhs.smi.amount", - "description": "The US Department of Health and Human Services provides these state median income for 4-person households, by state.", - "label": "HHS SMI 4-person household", - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.AK": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.AK", - "description": null, - "label": "AK", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 186830.444271482, - "2034-01-01": 179820.917872818, - "2033-01-01": 173016.823641767, - "2032-01-01": 166681.143582392, - "2031-01-01": 160467.916179452, - "2030-01-01": 154580.913719127, - "2029-01-01": 148933.181711023, - "2028-01-01": 144048.74035475, - "2027-01-01": 139022.342735231, - "2026-01-01": 133800.341193413, - "2025-01-01": 128599.619622745, - "2024-10-01": 121634, - "2023-10-01": 112227, - "2022-10-01": 109805, - "2021-10-01": 104070, - "2015-01-01": 104070 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.AL": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.AL", - "description": null, - "label": "AL", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 146619.366771909, - "2034-01-01": 141118.484268789, - "2033-01-01": 135778.819250578, - "2032-01-01": 130806.752722572, - "2031-01-01": 125930.783653498, - "2030-01-01": 121310.826899216, - "2029-01-01": 116878.64297997, - "2028-01-01": 113045.46845917, - "2027-01-01": 109100.890588087, - "2026-01-01": 105002.808167266, - "2025-01-01": 100921.425679408, - "2024-10-01": 95455, - "2023-10-01": 88407, - "2022-10-01": 83791, - "2021-10-01": 80762, - "2015-01-01": 80762 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.AR": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.AR", - "description": null, - "label": "AR", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 132982.713498628, - "2034-01-01": 127993.452543491, - "2033-01-01": 123150.414690245, - "2032-01-01": 118640.786029669, - "2031-01-01": 114218.317074736, - "2030-01-01": 110028.049452134, - "2029-01-01": 106008.090443422, - "2028-01-01": 102531.428660516, - "2027-01-01": 98953.7248383515, - "2026-01-01": 95236.7934911462, - "2025-01-01": 91535.0088632983, - "2024-10-01": 86577, - "2023-10-01": 78985, - "2022-10-01": 74456, - "2021-10-01": 71485, - "2015-01-01": 71485 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.AZ": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.AZ", - "description": null, - "label": "AZ", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 156339.207041487, - "2034-01-01": 150473.654437485, - "2033-01-01": 144780.006911965, - "2032-01-01": 139478.327089849, - "2031-01-01": 134279.115317207, - "2030-01-01": 129352.887688261, - "2029-01-01": 124626.880922218, - "2028-01-01": 120539.593695246, - "2027-01-01": 116333.517853725, - "2026-01-01": 111963.761182639, - "2025-01-01": 107611.811533468, - "2024-10-01": 101783, - "2023-10-01": 92454, - "2022-10-01": 86079, - "2021-10-01": 82227, - "2015-01-01": 82227 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.CA": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.CA", - "description": null, - "label": "CA", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 187278.957760533, - "2034-01-01": 180252.603980476, - "2033-01-01": 173432.175537646, - "2032-01-01": 167081.285762425, - "2031-01-01": 160853.14260894, - "2030-01-01": 154952.007548204, - "2029-01-01": 149290.717342998, - "2028-01-01": 144394.550179171, - "2027-01-01": 139356.085965566, - "2026-01-01": 134121.548254173, - "2025-01-01": 128908.341599576, - "2024-10-01": 121926, - "2023-10-01": 110879, - "2022-10-01": 103856, - "2021-10-01": 98644, - "2015-01-01": 98644 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.CO": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.CO", - "description": null, - "label": "CO", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 199840.40746417, - "2034-01-01": 192342.77174906, - "2033-01-01": 185064.873498269, - "2032-01-01": 178288.007503195, - "2031-01-01": 171642.121171806, - "2030-01-01": 165345.176500923, - "2029-01-01": 159304.163912483, - "2028-01-01": 154079.593823391, - "2027-01-01": 148703.182327511, - "2026-01-01": 143117.546003813, - "2025-01-01": 137554.671484927, - "2024-10-01": 130104, - "2023-10-01": 118538, - "2022-10-01": 110786, - "2021-10-01": 106120, - "2015-01-01": 106120 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.CT": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.CT", - "description": null, - "label": "CT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 224030.951776053, - "2034-01-01": 215625.732398048, - "2033-01-01": 207466.849553765, - "2032-01-01": 199869.648576242, - "2031-01-01": 192419.282260894, - "2030-01-01": 185360.09675482, - "2029-01-01": 178587.8237343, - "2028-01-01": 172730.823017917, - "2027-01-01": 166703.600596557, - "2026-01-01": 160441.826825417, - "2025-01-01": 154205.570159958, - "2024-10-01": 145853, - "2023-10-01": 133184, - "2022-10-01": 127443, - "2021-10-01": 125087, - "2015-01-01": 125087 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.DC": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.DC", - "description": null, - "label": "DC", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 283431.340983567, - "2034-01-01": 272797.530875263, - "2033-01-01": 262475.371873794, - "2032-01-01": 252863.821131764, - "2031-01-01": 243438.037333421, - "2030-01-01": 234507.153460561, - "2029-01-01": 225939.255103232, - "2028-01-01": 218529.307709688, - "2027-01-01": 210904.005403246, - "2026-01-01": 202981.961940859, - "2025-01-01": 195092.201283252, - "2024-10-01": 184525, - "2023-10-01": 159662, - "2022-10-01": 152043, - "2021-10-01": 137563, - "2015-01-01": 137563 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.DE": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.DE", - "description": null, - "label": "DE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 185799.784849724, - "2034-01-01": 178828.926851453, - "2033-01-01": 172062.367744044, - "2032-01-01": 165761.638778277, - "2031-01-01": 159582.686952785, - "2030-01-01": 153728.160433816, - "2029-01-01": 148111.584419738, - "2028-01-01": 143254.088326715, - "2027-01-01": 138255.419079219, - "2026-01-01": 133062.224968173, - "2025-01-01": 127890.193436261, - "2024-10-01": 120963, - "2023-10-01": 111871, - "2022-10-01": 105076, - "2021-10-01": 103900, - "2015-01-01": 103900 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.FL": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.FL", - "description": null, - "label": "FL", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 150586.867943894, - "2034-01-01": 144937.132269064, - "2033-01-01": 139452.976603512, - "2032-01-01": 134346.36659594, - "2031-01-01": 129338.454432158, - "2030-01-01": 124593.482243417, - "2029-01-01": 120041.363998432, - "2028-01-01": 116104.464269028, - "2027-01-01": 112053.146629039, - "2026-01-01": 107844.170625974, - "2025-01-01": 103652.346453909, - "2024-10-01": 98038, - "2023-10-01": 88895, - "2022-10-01": 83452, - "2021-10-01": 81077, - "2015-01-01": 81077 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.GA": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.GA", - "description": null, - "label": "GA", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 162652.188000395, - "2034-01-01": 156549.784240478, - "2033-01-01": 150626.227090268, - "2032-01-01": 145110.465308798, - "2031-01-01": 139701.309239116, - "2030-01-01": 134576.160419451, - "2029-01-01": 129659.317385972, - "2028-01-01": 125406.985401989, - "2027-01-01": 121031.068116331, - "2026-01-01": 116484.860565253, - "2025-01-01": 111957.179084067, - "2024-10-01": 105893, - "2023-10-01": 95238, - "2022-10-01": 89932, - "2021-10-01": 84851, - "2015-01-01": 84851 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.HI": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.HI", - "description": null, - "label": "HI", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 198310.546385077, - "2034-01-01": 190870.308176363, - "2033-01-01": 183648.12525068, - "2032-01-01": 176923.138971303, - "2031-01-01": 170328.129652044, - "2030-01-01": 164079.390700372, - "2029-01-01": 158084.624565062, - "2028-01-01": 152900.050723655, - "2027-01-01": 147564.79788431, - "2026-01-01": 142021.921919851, - "2025-01-01": 136501.633509162, - "2024-10-01": 129108, - "2023-10-01": 119285, - "2022-10-01": 112242, - "2021-10-01": 108498, - "2015-01-01": 108498 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.IA": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.IA", - "description": null, - "label": "IA", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 174411.843042098, - "2034-01-01": 167868.239172769, - "2033-01-01": 161516.412415106, - "2032-01-01": 155601.864385263, - "2031-01-01": 149801.629595841, - "2030-01-01": 144305.935609231, - "2029-01-01": 139033.607791448, - "2028-01-01": 134473.834771047, - "2027-01-01": 129781.541306236, - "2026-01-01": 124906.645692576, - "2025-01-01": 120051.615572481, - "2024-10-01": 113549, - "2023-10-01": 104510, - "2022-10-01": 97935, - "2021-10-01": 94221, - "2015-01-01": 94221 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.ID": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.ID", - "description": null, - "label": "ID", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 149491.696307957, - "2034-01-01": 143883.049410297, - "2033-01-01": 138438.778309806, - "2032-01-01": 133369.307094697, - "2031-01-01": 128397.815924537, - "2030-01-01": 123687.352448444, - "2029-01-01": 119168.340349124, - "2028-01-01": 115260.072471727, - "2027-01-01": 111238.21880976, - "2026-01-01": 107059.853385146, - "2025-01-01": 102898.515051578, - "2024-10-01": 97325, - "2023-10-01": 86721, - "2022-10-01": 81293, - "2021-10-01": 79820, - "2015-01-01": 79820 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.IL": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.IL", - "description": null, - "label": "IL", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 187601.518831427, - "2034-01-01": 180563.06316749, - "2033-01-01": 173730.887517559, - "2032-01-01": 167369.059248065, - "2031-01-01": 161130.189013709, - "2030-01-01": 155218.890096513, - "2029-01-01": 149547.849133116, - "2028-01-01": 144643.2490255, - "2027-01-01": 139596.106781904, - "2026-01-01": 134352.553332116, - "2025-01-01": 129130.367678804, - "2024-10-01": 122136, - "2023-10-01": 112679, - "2022-10-01": 106151, - "2021-10-01": 102167, - "2015-01-01": 102167 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.IN": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.IN", - "description": null, - "label": "IN", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 158706.190899803, - "2034-01-01": 152751.833519337, - "2033-01-01": 146971.983869329, - "2032-01-01": 141590.036334472, - "2031-01-01": 136312.108220774, - "2030-01-01": 131311.297245138, - "2029-01-01": 126513.738486852, - "2028-01-01": 122364.569515219, - "2027-01-01": 118094.813463135, - "2026-01-01": 113658.898445074, - "2025-01-01": 109241.060048182, - "2024-10-01": 103324, - "2023-10-01": 95373, - "2022-10-01": 89193, - "2021-10-01": 86578, - "2015-01-01": 86578 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.KS": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.KS", - "description": null, - "label": "KS", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 164910.115496647, - "2034-01-01": 158722.998549578, - "2033-01-01": 152717.21094966, - "2032-01-01": 147124.879708276, - "2031-01-01": 141640.6340725, - "2030-01-01": 136444.338257614, - "2029-01-01": 131459.239916804, - "2028-01-01": 127147.877326299, - "2027-01-01": 122711.213830693, - "2026-01-01": 118101.89611086, - "2025-01-01": 113511.36163866, - "2024-10-01": 107363, - "2023-10-01": 98343, - "2022-10-01": 92146, - "2021-10-01": 90284, - "2015-01-01": 90284 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.KY": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.KY", - "description": null, - "label": "KY", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 147924.971106476, - "2034-01-01": 142375.104787656, - "2033-01-01": 136987.891550227, - "2032-01-01": 131971.550164447, - "2031-01-01": 127052.161958516, - "2030-01-01": 122391.065785229, - "2029-01-01": 117919.414511404, - "2028-01-01": 114052.106646696, - "2027-01-01": 110072.40341612, - "2026-01-01": 105937.828720848, - "2025-01-01": 101820.102666758, - "2024-10-01": 96305, - "2023-10-01": 87555, - "2022-10-01": 82499, - "2021-10-01": 80407, - "2015-01-01": 80407 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.LA": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.LA", - "description": null, - "label": "LA", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 147150.824536332, - "2034-01-01": 141630.002738822, - "2033-01-01": 136270.982798435, - "2032-01-01": 131280.893798911, - "2031-01-01": 126387.25058707, - "2030-01-01": 121750.547669287, - "2029-01-01": 117302.298215118, - "2028-01-01": 113455.229415504, - "2027-01-01": 109496.35345691, - "2026-01-01": 105383.416533783, - "2025-01-01": 101287.240076612, - "2024-10-01": 95801, - "2023-10-01": 86934, - "2022-10-01": 83464, - "2021-10-01": 81779, - "2015-01-01": 81779 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.MA": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.MA", - "description": null, - "label": "MA", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 242197.284087733, - "2034-01-01": 233110.498135274, - "2033-01-01": 224290.02377488, - "2032-01-01": 216076.777217486, - "2031-01-01": 208022.271923771, - "2030-01-01": 200390.667701728, - "2029-01-01": 193069.241266374, - "2028-01-01": 186737.305187176, - "2027-01-01": 180221.344381432, - "2026-01-01": 173451.812810376, - "2025-01-01": 166709.86748865, - "2024-10-01": 157680, - "2023-10-01": 145491, - "2022-10-01": 135936, - "2021-10-01": 131252, - "2015-01-01": 131252 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.MD": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.MD", - "description": null, - "label": "MD", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 229247.225093925, - "2034-01-01": 220646.300965192, - "2033-01-01": 212297.449000362, - "2032-01-01": 204523.356944016, - "2031-01-01": 196899.518406589, - "2030-01-01": 189675.96882176, - "2029-01-01": 182746.01211165, - "2028-01-01": 176752.638647139, - "2027-01-01": 170585.080083615, - "2026-01-01": 164177.508943023, - "2025-01-01": 157796.049041182, - "2024-10-01": 149249, - "2023-10-01": 136443, - "2022-10-01": 127853, - "2021-10-01": 124807, - "2015-01-01": 124807 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.ME": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.ME", - "description": null, - "label": "ME", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 173966.401563245, - "2034-01-01": 167439.509819273, - "2033-01-01": 161103.905395226, - "2032-01-01": 155204.462905094, - "2031-01-01": 149419.041703541, - "2030-01-01": 143937.383518709, - "2029-01-01": 138678.521033664, - "2028-01-01": 134130.393507067, - "2027-01-01": 129450.083988436, - "2026-01-01": 124587.638680178, - "2025-01-01": 119745.008129738, - "2024-10-01": 113259, - "2023-10-01": 104719, - "2022-10-01": 98914, - "2021-10-01": 93560, - "2015-01-01": 93560 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.MI": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.MI", - "description": null, - "label": "MI", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 171570.233608039, - "2034-01-01": 165133.241572882, - "2033-01-01": 158884.90211587, - "2032-01-01": 153066.71701177, - "2031-01-01": 147360.982696685, - "2030-01-01": 141954.827445556, - "2029-01-01": 136768.39916421, - "2028-01-01": 132282.916362902, - "2027-01-01": 127667.072209929, - "2026-01-01": 122871.600958309, - "2025-01-01": 118095.671541189, - "2024-10-01": 111699, - "2023-10-01": 103103, - "2022-10-01": 96917, - "2021-10-01": 93492, - "2015-01-01": 93492 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.MN": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.MN", - "description": null, - "label": "MN", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 211492.542148909, - "2034-01-01": 203557.740285679, - "2033-01-01": 195855.488163136, - "2032-01-01": 188683.482084447, - "2031-01-01": 181650.092726941, - "2030-01-01": 174985.990841266, - "2029-01-01": 168592.743721252, - "2028-01-01": 163063.543577006, - "2027-01-01": 157373.648578637, - "2026-01-01": 151462.329438487, - "2025-01-01": 145575.099280266, - "2024-10-01": 137690, - "2023-10-01": 125645, - "2022-10-01": 117587, - "2021-10-01": 112942, - "2015-01-01": 112942 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.MO": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.MO", - "description": null, - "label": "MO", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 162547.73965363, - "2034-01-01": 156449.254598969, - "2033-01-01": 150529.501306296, - "2032-01-01": 145017.281513448, - "2031-01-01": 139611.598974715, - "2030-01-01": 134489.74130857, - "2029-01-01": 129576.055663458, - "2028-01-01": 125326.454346987, - "2027-01-01": 120953.347090088, - "2026-01-01": 116410.058920967, - "2025-01-01": 111885.284925079, - "2024-10-01": 105825, - "2023-10-01": 97499, - "2022-10-01": 91159, - "2021-10-01": 88519, - "2015-01-01": 88519 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.MS": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.MS", - "description": null, - "label": "MS", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 126460.835846189, - "2034-01-01": 121716.263457479, - "2033-01-01": 117110.742943998, - "2032-01-01": 112822.28022002, - "2031-01-01": 108616.702624023, - "2030-01-01": 104631.938499182, - "2029-01-01": 100809.130534639, - "2028-01-01": 97502.9748437682, - "2027-01-01": 94100.7325232604, - "2026-01-01": 90566.0908199586, - "2025-01-01": 87045.8529947239, - "2024-10-01": 82331, - "2023-10-01": 75300, - "2022-10-01": 70961, - "2021-10-01": 68871, - "2015-01-01": 68871 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.MT": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.MT", - "description": null, - "label": "MT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 158044.172701922, - "2034-01-01": 152114.652997417, - "2033-01-01": 146358.913091507, - "2032-01-01": 140999.415513944, - "2031-01-01": 135743.503456701, - "2030-01-01": 130763.552586465, - "2029-01-01": 125986.00609856, - "2028-01-01": 121854.144740132, - "2027-01-01": 117602.199311509, - "2026-01-01": 113184.788023199, - "2025-01-01": 108785.377952243, - "2024-10-01": 102893, - "2023-10-01": 95501, - "2022-10-01": 90180, - "2021-10-01": 87442, - "2015-01-01": 87442 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.NC": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.NC", - "description": null, - "label": "NC", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 161183.767125282, - "2034-01-01": 155136.455751023, - "2033-01-01": 149266.376362662, - "2032-01-01": 143800.410774171, - "2031-01-01": 138440.08846312, - "2030-01-01": 133361.209390006, - "2029-01-01": 128488.755522384, - "2028-01-01": 124274.813511077, - "2027-01-01": 119938.401923861, - "2026-01-01": 115433.237448519, - "2025-01-01": 110946.431790059, - "2024-10-01": 104937, - "2023-10-01": 95852, - "2022-10-01": 88855, - "2021-10-01": 84549, - "2015-01-01": 84549 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.ND": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.ND", - "description": null, - "label": "ND", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 189069.93970654, - "2034-01-01": 181976.391656946, - "2033-01-01": 175090.738245165, - "2032-01-01": 168679.113782691, - "2031-01-01": 162391.409789706, - "2030-01-01": 156433.841125958, - "2029-01-01": 150718.410996705, - "2028-01-01": 145775.420916412, - "2027-01-01": 140688.772974374, - "2026-01-01": 135404.176448851, - "2025-01-01": 130141.114972812, - "2024-10-01": 123092, - "2023-10-01": 114503, - "2022-10-01": 107076, - "2021-10-01": 104087, - "2015-01-01": 104087 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.NE": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.NE", - "description": null, - "label": "NE", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 173508.672043597, - "2034-01-01": 166998.953449129, - "2033-01-01": 160680.018871349, - "2032-01-01": 154796.098625472, - "2031-01-01": 149025.899662488, - "2030-01-01": 143558.664473965, - "2029-01-01": 138313.638779115, - "2028-01-01": 133777.478001323, - "2027-01-01": 129109.483020491, - "2026-01-01": 124259.831474333, - "2025-01-01": 119429.942550643, - "2024-10-01": 112961, - "2023-10-01": 102274, - "2022-10-01": 95903, - "2021-10-01": 93660, - "2015-01-01": 93660 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.NH": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.NH", - "description": null, - "label": "NH", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 225150.699493582, - "2034-01-01": 216703.469290111, - "2033-01-01": 208503.806855464, - "2032-01-01": 200868.633676392, - "2031-01-01": 193381.029066021, - "2030-01-01": 186286.560458236, - "2029-01-01": 179480.438377141, - "2028-01-01": 173594.163298748, - "2027-01-01": 167536.815716128, - "2026-01-01": 161243.744453136, - "2025-01-01": 154976.317834991, - "2024-10-01": 146582, - "2023-10-01": 133449, - "2022-10-01": 124902, - "2021-10-01": 120821, - "2015-01-01": 120821 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.NJ": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.NJ", - "description": null, - "label": "NJ", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 235798.286843254, - "2034-01-01": 226951.579215744, - "2033-01-01": 218364.147068601, - "2032-01-01": 210367.899402366, - "2031-01-01": 202526.19896059, - "2030-01-01": 195096.226290988, - "2029-01-01": 187968.236325254, - "2028-01-01": 181803.593788078, - "2027-01-01": 175459.788567803, - "2026-01-01": 168869.112073643, - "2025-01-01": 162305.292983591, - "2024-10-01": 153514, - "2023-10-01": 141384, - "2022-10-01": 133238, - "2021-10-01": 128786, - "2015-01-01": 128786 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.NM": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.NM", - "description": null, - "label": "NM", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 125757.345510622, - "2034-01-01": 121039.166754372, - "2033-01-01": 116459.266340188, - "2032-01-01": 112194.659951339, - "2031-01-01": 108012.477607908, - "2030-01-01": 104049.880370012, - "2029-01-01": 100248.33834476, - "2028-01-01": 96960.5745027248, - "2027-01-01": 93577.258552391, - "2026-01-01": 90062.279745205, - "2025-01-01": 86561.6246885989, - "2024-10-01": 81873, - "2023-10-01": 76101, - "2022-10-01": 71118, - "2021-10-01": 67949, - "2015-01-01": 67949 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.NV": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.NV", - "description": null, - "label": "NV", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 147496.425683718, - "2034-01-01": 141962.637582051, - "2033-01-01": 136591.031348343, - "2032-01-01": 131589.222533525, - "2031-01-01": 126684.086020751, - "2030-01-01": 122036.493256761, - "2029-01-01": 117577.796561674, - "2028-01-01": 113721.692465143, - "2027-01-01": 109753.518617272, - "2026-01-01": 105630.921974437, - "2025-01-01": 101525.125161499, - "2024-10-01": 96026, - "2023-10-01": 89325, - "2022-10-01": 85150, - "2021-10-01": 82509, - "2015-01-01": 82509 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.NY": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.NY", - "description": null, - "label": "NY", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 196304.523725142, - "2034-01-01": 188939.547708551, - "2033-01-01": 181790.421223219, - "2032-01-01": 175133.461960611, - "2031-01-01": 168605.164868099, - "2030-01-01": 162419.635423746, - "2029-01-01": 156485.509717942, - "2028-01-01": 151353.380755527, - "2027-01-01": 146072.096997944, - "2026-01-01": 140585.290339876, - "2025-01-01": 135120.842749775, - "2024-10-01": 127802, - "2023-10-01": 116765, - "2022-10-01": 109716, - "2021-10-01": 104972, - "2015-01-01": 104972 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.OH": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.OH", - "description": null, - "label": "OH", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 167914.541471251, - "2034-01-01": 161614.704120054, - "2033-01-01": 155499.499676853, - "2032-01-01": 149805.28417452, - "2031-01-01": 144221.123442635, - "2030-01-01": 138930.158564721, - "2029-01-01": 133854.238876197, - "2028-01-01": 129464.329437829, - "2027-01-01": 124946.836291437, - "2026-01-01": 120253.543408279, - "2025-01-01": 115579.375976609, - "2024-10-01": 109319, - "2023-10-01": 100106, - "2022-10-01": 93649, - "2021-10-01": 91185, - "2015-01-01": 91185 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.OK": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.OK", - "description": null, - "label": "OK", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 138280.395086772, - "2034-01-01": 133092.37509593, - "2033-01-01": 128056.40335082, - "2032-01-01": 123367.122943819, - "2031-01-01": 118768.47445592, - "2030-01-01": 114411.27759079, - "2029-01-01": 110231.17398685, - "2028-01-01": 106616.01114143, - "2027-01-01": 102895.781007628, - "2026-01-01": 99030.776890328, - "2025-01-01": 95181.5228978516, - "2024-10-01": 90026, - "2023-10-01": 83103, - "2022-10-01": 78027, - "2021-10-01": 76142, - "2015-01-01": 76142 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.OR": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.OR", - "description": null, - "label": "OR", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 181222.489653241, - "2034-01-01": 174423.363150013, - "2033-01-01": 167823.502505275, - "2032-01-01": 161677.995982056, - "2031-01-01": 155651.266542252, - "2030-01-01": 149940.969986383, - "2029-01-01": 144462.761874242, - "2028-01-01": 139724.933269271, - "2027-01-01": 134849.409399762, - "2026-01-01": 129784.152909732, - "2025-01-01": 124739.537645316, - "2024-10-01": 117983, - "2023-10-01": 107136, - "2022-10-01": 100210, - "2021-10-01": 94050, - "2015-01-01": 94050 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.PA": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.PA", - "description": null, - "label": "PA", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 186268.266405068, - "2034-01-01": 179279.831861165, - "2033-01-01": 172496.211333918, - "2032-01-01": 166179.59550742, - "2031-01-01": 159985.063873997, - "2030-01-01": 154115.775563503, - "2029-01-01": 148485.037733959, - "2028-01-01": 143615.293794003, - "2027-01-01": 138604.020741042, - "2026-01-01": 133397.732343282, - "2025-01-01": 128212.659884663, - "2024-10-01": 121268, - "2023-10-01": 111335, - "2022-10-01": 104230, - "2021-10-01": 100995, - "2015-01-01": 100995 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.PR": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.PR", - "description": null, - "label": "PR", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 60576.969113724, - "2034-01-01": 58304.2353212769, - "2033-01-01": 56098.1098277126, - "2032-01-01": 54043.8606031405, - "2031-01-01": 52029.3148156372, - "2030-01-01": 50120.5425724298, - "2029-01-01": 48289.3501843179, - "2028-01-01": 46705.6433407651, - "2027-01-01": 45075.909308187, - "2026-01-01": 43382.7536378464, - "2025-01-01": 41696.4976789535, - "2024-10-01": 39438, - "2023-10-01": 35747, - "2022-10-01": 33705, - "2021-10-01": 32843, - "2015-01-01": 32843 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.RI": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.RI", - "description": null, - "label": "RI", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 192504.447109002, - "2034-01-01": 185282.042810107, - "2033-01-01": 178271.309612241, - "2032-01-01": 171743.216229788, - "2031-01-01": 165341.2943662, - "2030-01-01": 159275.50483081, - "2029-01-01": 153456.252342923, - "2028-01-01": 148423.471489716, - "2027-01-01": 143244.423190234, - "2026-01-01": 137863.830516862, - "2025-01-01": 132505.164083064, - "2024-10-01": 125328, - "2023-10-01": 114343, - "2022-10-01": 109100, - "2021-10-01": 107837, - "2015-01-01": 107837 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.SC": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.SC", - "description": null, - "label": "SC", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 150792.692627225, - "2034-01-01": 145135.234797921, - "2033-01-01": 139643.583295456, - "2032-01-01": 134529.993486777, - "2031-01-01": 129515.236423772, - "2030-01-01": 124763.778726624, - "2029-01-01": 120205.43856927, - "2028-01-01": 116263.157818591, - "2027-01-01": 112206.302768988, - "2026-01-01": 107991.573866186, - "2025-01-01": 103794.020237797, - "2024-10-01": 98172, - "2023-10-01": 89725, - "2022-10-01": 83778, - "2021-10-01": 80973, - "2015-01-01": 80973 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.SD": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.SD", - "description": null, - "label": "SD", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 162391.067133482, - "2034-01-01": 156298.460136705, - "2033-01-01": 150384.412630338, - "2032-01-01": 144877.505820423, - "2031-01-01": 139477.033578113, - "2030-01-01": 134360.112642249, - "2029-01-01": 129451.163079686, - "2028-01-01": 125205.657764484, - "2027-01-01": 120836.765550724, - "2026-01-01": 116297.856454537, - "2025-01-01": 111777.443686597, - "2024-10-01": 105723, - "2023-10-01": 96351, - "2022-10-01": 91281, - "2021-10-01": 88721, - "2015-01-01": 88721 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.TN": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.TN", - "description": null, - "label": "TN", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 151107.573672621, - "2034-01-01": 145438.30209953, - "2033-01-01": 139935.183085372, - "2032-01-01": 134810.915222759, - "2031-01-01": 129785.686485571, - "2030-01-01": 125024.306928544, - "2029-01-01": 120456.448173909, - "2028-01-01": 116505.935263818, - "2027-01-01": 112440.608803984, - "2026-01-01": 108217.078823227, - "2025-01-01": 104010.759981805, - "2024-10-01": 98377, - "2023-10-01": 90197, - "2022-10-01": 84838, - "2021-10-01": 80773, - "2015-01-01": 80773 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.TX": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.TX", - "description": null, - "label": "TX", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 158535.694333759, - "2034-01-01": 152587.733663344, - "2033-01-01": 146814.093251374, - "2032-01-01": 141437.927492062, - "2031-01-01": 136165.669406825, - "2030-01-01": 131170.230755317, - "2029-01-01": 126377.825969218, - "2028-01-01": 122233.11441073, - "2027-01-01": 117967.945317357, - "2026-01-01": 113536.795761018, - "2025-01-01": 109123.703406304, - "2024-10-01": 103213, - "2023-10-01": 94466, - "2022-10-01": 88783, - "2021-10-01": 85391, - "2015-01-01": 85391 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.UT": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.UT", - "description": null, - "label": "UT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 171347.512868613, - "2034-01-01": 164918.876896134, - "2033-01-01": 158678.64860593, - "2032-01-01": 152868.016271686, - "2031-01-01": 147169.688750535, - "2030-01-01": 141770.551400295, - "2029-01-01": 136590.855785319, - "2028-01-01": 132111.195730912, - "2027-01-01": 127501.343551029, - "2026-01-01": 122712.09745211, - "2025-01-01": 117942.367819818, - "2024-10-01": 111554, - "2023-10-01": 100752, - "2022-10-01": 93679, - "2021-10-01": 90542, - "2015-01-01": 90542 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.VA": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.VA", - "description": null, - "label": "VA", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 205832.363357285, - "2034-01-01": 198109.92074212, - "2033-01-01": 190613.804134658, - "2032-01-01": 183633.742586435, - "2031-01-01": 176788.58795754, - "2030-01-01": 170302.837553082, - "2029-01-01": 164080.693023214, - "2028-01-01": 158699.470964025, - "2027-01-01": 153161.854730047, - "2026-01-01": 147408.740332664, - "2025-01-01": 141679.070223342, - "2024-10-01": 134005, - "2023-10-01": 121130, - "2022-10-01": 114081, - "2021-10-01": 108955, - "2015-01-01": 108955 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.VT": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.VT", - "description": null, - "label": "VT", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 192516.735149798, - "2034-01-01": 185293.869826755, - "2033-01-01": 178282.689116238, - "2032-01-01": 171754.179029241, - "2031-01-01": 165351.848514953, - "2030-01-01": 159285.671785031, - "2029-01-01": 153466.047839689, - "2028-01-01": 148432.945731481, - "2027-01-01": 143253.566840381, - "2026-01-01": 137872.630710308, - "2025-01-01": 132513.622219416, - "2024-10-01": 125336, - "2023-10-01": 110661, - "2022-10-01": 101554, - "2021-10-01": 99184, - "2015-01-01": 99184 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.WA": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.WA", - "description": null, - "label": "WA", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 201299.612308687, - "2034-01-01": 193747.229976029, - "2033-01-01": 186416.189597876, - "2032-01-01": 179589.839938232, - "2031-01-01": 172895.426336237, - "2030-01-01": 166552.502314702, - "2029-01-01": 160467.379153496, - "2028-01-01": 155204.660032979, - "2027-01-01": 149788.990782371, - "2026-01-01": 144162.568975463, - "2025-01-01": 138559.075176672, - "2024-10-01": 131054, - "2023-10-01": 120416, - "2022-10-01": 112299, - "2021-10-01": 107085, - "2015-01-01": 107085 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.WI": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.WI", - "description": null, - "label": "WI", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 180843.096393666, - "2034-01-01": 174058.204011001, - "2033-01-01": 167472.160319377, - "2032-01-01": 161339.519548946, - "2031-01-01": 155325.4071995, - "2030-01-01": 149627.065274801, - "2029-01-01": 144160.325911579, - "2028-01-01": 139432.416054778, - "2027-01-01": 134567.099201499, - "2026-01-01": 129512.446937103, - "2025-01-01": 124478.392685463, - "2024-10-01": 117736, - "2023-10-01": 108490, - "2022-10-01": 102898, - "2021-10-01": 99688, - "2015-01-01": 99688 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.WV": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.WV", - "description": null, - "label": "WV", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 139255.758324949, - "2034-01-01": 134031.144542378, - "2033-01-01": 128959.651480558, - "2032-01-01": 124237.295150396, - "2031-01-01": 119606.210013198, - "2030-01-01": 115218.279582105, - "2029-01-01": 111008.691542686, - "2028-01-01": 107368.029081523, - "2027-01-01": 103621.558237982, - "2026-01-01": 99729.2922450629, - "2025-01-01": 95852.8874707542, - "2024-10-01": 90661, - "2023-10-01": 84092, - "2022-10-01": 78811, - "2021-10-01": 77096, - "2015-01-01": 77096 - }, - "economy": false, - "household": true - }, - "gov.hhs.smi.amount.WY": { - "type": "parameter", - "parameter": "gov.hhs.smi.amount.WY", - "description": null, - "label": "WY", - "unit": "currency-USD", - "period": "year", - "values": { - "2035-01-01": 171627.065796721, - "2034-01-01": 165187.941524879, - "2033-01-01": 158937.532321855, - "2032-01-01": 153117.41995924, - "2031-01-01": 147409.795634668, - "2030-01-01": 142001.84960883, - "2029-01-01": 136813.703336755, - "2028-01-01": 132326.734731065, - "2027-01-01": 127709.361591855, - "2026-01-01": 122912.301852995, - "2025-01-01": 118134.790421815, - "2024-10-01": 111736, - "2023-10-01": 104110, - "2022-10-01": 98354, - "2021-10-01": 95814, - "2015-01-01": 95814 - }, - "economy": false, - "household": true - }, - "gov.doe": { - "type": "parameterNode", - "parameter": "gov.doe", - "description": null, - "label": "Department of Energy (DOE)", - "economy": false, - "household": false - }, - "gov.doe.residential_efficiency_electrification_rebate": { - "type": "parameterNode", - "parameter": "gov.doe.residential_efficiency_electrification_rebate", - "description": null, - "label": "residential efficiency electrification rebate", - "economy": false, - "household": false - }, - "gov.doe.residential_efficiency_electrification_rebate.percent": { - "type": "parameterNode", - "parameter": "gov.doe.residential_efficiency_electrification_rebate.percent", - "description": "The US caps projects costs residential efficiency and electrification program rebates at this percentage per year for for retrofits by income AMI ratio.", - "label": "Residential efficiency and electrification rebate percent cap for retrofits by income to AMI ratio" - }, - "gov.doe.residential_efficiency_electrification_rebate.percent[0]": { - "type": "parameterNode", - "parameter": "gov.doe.residential_efficiency_electrification_rebate.percent[0]", - "description": null, - "label": "bracket 1" - }, - "gov.doe.residential_efficiency_electrification_rebate.percent[0].threshold": { - "type": "parameter", - "parameter": "gov.doe.residential_efficiency_electrification_rebate.percent[0].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "0000-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.doe.residential_efficiency_electrification_rebate.percent[0].amount": { - "type": "parameter", - "parameter": "gov.doe.residential_efficiency_electrification_rebate.percent[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2031-10-01": 0, - "2023-01-01": 0.8, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.doe.residential_efficiency_electrification_rebate.percent[1]": { - "type": "parameterNode", - "parameter": "gov.doe.residential_efficiency_electrification_rebate.percent[1]", - "description": null, - "label": "bracket 2" - }, - "gov.doe.residential_efficiency_electrification_rebate.percent[1].threshold": { - "type": "parameter", - "parameter": "gov.doe.residential_efficiency_electrification_rebate.percent[1].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "0000-01-01": 0.8 - }, - "economy": false, - "household": false - }, - "gov.doe.residential_efficiency_electrification_rebate.percent[1].amount": { - "type": "parameter", - "parameter": "gov.doe.residential_efficiency_electrification_rebate.percent[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2031-10-01": 0, - "2023-01-01": 0.5, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.doe.residential_efficiency_electrification_rebate.cap": { - "type": "parameterNode", - "parameter": "gov.doe.residential_efficiency_electrification_rebate.cap", - "description": null, - "label": "cap", - "economy": false, - "household": false - }, - "gov.doe.residential_efficiency_electrification_rebate.cap.high": { - "type": "parameterNode", - "parameter": "gov.doe.residential_efficiency_electrification_rebate.cap.high", - "description": "The US caps residential efficiency and electrification program rebates at this amount per year for retrofits achieving at least the high threshold of energy savings, by income-AMI ratio.", - "label": "Residential efficiency and electrification rebate cap for large retrofits" - }, - "gov.doe.residential_efficiency_electrification_rebate.cap.high[0]": { - "type": "parameterNode", - "parameter": "gov.doe.residential_efficiency_electrification_rebate.cap.high[0]", - "description": null, - "label": "bracket 1" - }, - "gov.doe.residential_efficiency_electrification_rebate.cap.high[0].threshold": { - "type": "parameter", - "parameter": "gov.doe.residential_efficiency_electrification_rebate.cap.high[0].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "0000-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.doe.residential_efficiency_electrification_rebate.cap.high[0].amount": { - "type": "parameter", - "parameter": "gov.doe.residential_efficiency_electrification_rebate.cap.high[0].amount", - "description": null, - "label": "amount", - "unit": "currency_USD", - "period": null, - "values": { - "2031-10-01": 0, - "2023-01-01": 8000, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.doe.residential_efficiency_electrification_rebate.cap.high[1]": { - "type": "parameterNode", - "parameter": "gov.doe.residential_efficiency_electrification_rebate.cap.high[1]", - "description": null, - "label": "bracket 2" - }, - "gov.doe.residential_efficiency_electrification_rebate.cap.high[1].threshold": { - "type": "parameter", - "parameter": "gov.doe.residential_efficiency_electrification_rebate.cap.high[1].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "0000-01-01": 0.8 - }, - "economy": false, - "household": false - }, - "gov.doe.residential_efficiency_electrification_rebate.cap.high[1].amount": { - "type": "parameter", - "parameter": "gov.doe.residential_efficiency_electrification_rebate.cap.high[1].amount", - "description": null, - "label": "amount", - "unit": "currency_USD", - "period": null, - "values": { - "2031-10-01": 0, - "2023-01-01": 4000, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.doe.residential_efficiency_electrification_rebate.cap.medium": { - "type": "parameterNode", - "parameter": "gov.doe.residential_efficiency_electrification_rebate.cap.medium", - "description": "The US caps residential efficiency and electrification program rebates at this amount per year for retrofits achieving between the medium and high thresholds of energy savings, by income-AMI ratio.", - "label": "Residential efficiency and electrification rebate cap for medium retrofits" - }, - "gov.doe.residential_efficiency_electrification_rebate.cap.medium[0]": { - "type": "parameterNode", - "parameter": "gov.doe.residential_efficiency_electrification_rebate.cap.medium[0]", - "description": null, - "label": "bracket 1" - }, - "gov.doe.residential_efficiency_electrification_rebate.cap.medium[0].threshold": { - "type": "parameter", - "parameter": "gov.doe.residential_efficiency_electrification_rebate.cap.medium[0].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "0000-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.doe.residential_efficiency_electrification_rebate.cap.medium[0].amount": { - "type": "parameter", - "parameter": "gov.doe.residential_efficiency_electrification_rebate.cap.medium[0].amount", - "description": null, - "label": "amount", - "unit": "currency_USD", - "period": null, - "values": { - "2031-10-01": 0, - "2023-01-01": 4000, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.doe.residential_efficiency_electrification_rebate.cap.medium[1]": { - "type": "parameterNode", - "parameter": "gov.doe.residential_efficiency_electrification_rebate.cap.medium[1]", - "description": null, - "label": "bracket 2" - }, - "gov.doe.residential_efficiency_electrification_rebate.cap.medium[1].threshold": { - "type": "parameter", - "parameter": "gov.doe.residential_efficiency_electrification_rebate.cap.medium[1].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "0000-01-01": 0.8 - }, - "economy": false, - "household": false - }, - "gov.doe.residential_efficiency_electrification_rebate.cap.medium[1].amount": { - "type": "parameter", - "parameter": "gov.doe.residential_efficiency_electrification_rebate.cap.medium[1].amount", - "description": null, - "label": "amount", - "unit": "currency_USD", - "period": null, - "values": { - "2031-10-01": 0, - "2023-01-01": 2000, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.doe.residential_efficiency_electrification_rebate.cap.low": { - "type": "parameterNode", - "parameter": "gov.doe.residential_efficiency_electrification_rebate.cap.low", - "description": "The US caps residential efficiency and electrification program rebates at this amount per one-percent reduction of the state's average home energy usage, per year, for retrofits achieving low energy savings, by income AMI ratio.", - "label": "Residential efficiency and electrification rebate cap for small retrofits, per one-percent reduction relative to the average home energy usage in one's state" - }, - "gov.doe.residential_efficiency_electrification_rebate.cap.low[0]": { - "type": "parameterNode", - "parameter": "gov.doe.residential_efficiency_electrification_rebate.cap.low[0]", - "description": null, - "label": "bracket 1" - }, - "gov.doe.residential_efficiency_electrification_rebate.cap.low[0].threshold": { - "type": "parameter", - "parameter": "gov.doe.residential_efficiency_electrification_rebate.cap.low[0].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "0000-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.doe.residential_efficiency_electrification_rebate.cap.low[0].amount": { - "type": "parameter", - "parameter": "gov.doe.residential_efficiency_electrification_rebate.cap.low[0].amount", - "description": null, - "label": "amount", - "unit": "currency_USD", - "period": null, - "values": { - "2031-10-01": 0, - "2023-01-01": 200, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.doe.residential_efficiency_electrification_rebate.cap.low[1]": { - "type": "parameterNode", - "parameter": "gov.doe.residential_efficiency_electrification_rebate.cap.low[1]", - "description": null, - "label": "bracket 2" - }, - "gov.doe.residential_efficiency_electrification_rebate.cap.low[1].threshold": { - "type": "parameter", - "parameter": "gov.doe.residential_efficiency_electrification_rebate.cap.low[1].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "0000-01-01": 0.8 - }, - "economy": false, - "household": false - }, - "gov.doe.residential_efficiency_electrification_rebate.cap.low[1].amount": { - "type": "parameter", - "parameter": "gov.doe.residential_efficiency_electrification_rebate.cap.low[1].amount", - "description": null, - "label": "amount", - "unit": "currency_USD", - "period": null, - "values": { - "2031-10-01": 0, - "2023-01-01": 100, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.doe.residential_efficiency_electrification_rebate.threshold": { - "type": "parameterNode", - "parameter": "gov.doe.residential_efficiency_electrification_rebate.threshold", - "description": null, - "label": "threshold", - "economy": false, - "household": false - }, - "gov.doe.residential_efficiency_electrification_rebate.threshold.high": { - "type": "parameter", - "parameter": "gov.doe.residential_efficiency_electrification_rebate.threshold.high", - "description": "The US limits high residential efficiency and electrification rebates to retrofits achieving at least this percentage of modeled energy savings.", - "label": "Energy savings to qualify for a high residential efficiency and electrification rebate", - "unit": "/1", - "period": null, - "values": { - "0000-01-01": 0.35 - }, - "economy": false, - "household": false - }, - "gov.doe.residential_efficiency_electrification_rebate.threshold.medium": { - "type": "parameter", - "parameter": "gov.doe.residential_efficiency_electrification_rebate.threshold.medium", - "description": "The US limits medium residential efficiency and electrification rebates to retrofits achieving at least this percentage of modeled energy savings.", - "label": "Energy savings to qualify for a medium residential efficiency and electrification rebate", - "unit": "/1", - "period": null, - "values": { - "0000-01-01": 0.2 - }, - "economy": false, - "household": false - }, - "gov.doe.residential_efficiency_electrification_rebate.threshold.low": { - "type": "parameter", - "parameter": "gov.doe.residential_efficiency_electrification_rebate.threshold.low", - "description": "The US limits residential efficiency and electrification rebates to retrofits achieving at least this percentage of modeled energy savings.", - "label": "Energy savings to qualify for a residential efficiency and electrification rebate", - "unit": "/1", - "period": null, - "values": { - "0000-01-01": 0.15 - }, - "economy": false, - "household": false - }, - "gov.doe.high_efficiency_electric_home_rebate": { - "type": "parameterNode", - "parameter": "gov.doe.high_efficiency_electric_home_rebate", - "description": null, - "label": "high efficiency electric home rebate", - "economy": false, - "household": false - }, - "gov.doe.high_efficiency_electric_home_rebate.percent_covered": { - "type": "parameterNode", - "parameter": "gov.doe.high_efficiency_electric_home_rebate.percent_covered", - "description": "The US covers this percentage of expenditures for its high-efficiency electric home program rebate program, based on a household's ratio of income to area median income", - "label": "High efficiency electric home rebate percent covered" - }, - "gov.doe.high_efficiency_electric_home_rebate.percent_covered[0]": { - "type": "parameterNode", - "parameter": "gov.doe.high_efficiency_electric_home_rebate.percent_covered[0]", - "description": null, - "label": "bracket 1" - }, - "gov.doe.high_efficiency_electric_home_rebate.percent_covered[0].threshold": { - "type": "parameter", - "parameter": "gov.doe.high_efficiency_electric_home_rebate.percent_covered[0].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "0000-01-01": "-Infinity" - }, - "economy": false, - "household": false - }, - "gov.doe.high_efficiency_electric_home_rebate.percent_covered[0].amount": { - "type": "parameter", - "parameter": "gov.doe.high_efficiency_electric_home_rebate.percent_covered[0].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 1, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.doe.high_efficiency_electric_home_rebate.percent_covered[1]": { - "type": "parameterNode", - "parameter": "gov.doe.high_efficiency_electric_home_rebate.percent_covered[1]", - "description": null, - "label": "bracket 2" - }, - "gov.doe.high_efficiency_electric_home_rebate.percent_covered[1].threshold": { - "type": "parameter", - "parameter": "gov.doe.high_efficiency_electric_home_rebate.percent_covered[1].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "0000-01-01": 0.8 - }, - "economy": false, - "household": false - }, - "gov.doe.high_efficiency_electric_home_rebate.percent_covered[1].amount": { - "type": "parameter", - "parameter": "gov.doe.high_efficiency_electric_home_rebate.percent_covered[1].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0.5, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.doe.high_efficiency_electric_home_rebate.percent_covered[2]": { - "type": "parameterNode", - "parameter": "gov.doe.high_efficiency_electric_home_rebate.percent_covered[2]", - "description": null, - "label": "bracket 3" - }, - "gov.doe.high_efficiency_electric_home_rebate.percent_covered[2].threshold": { - "type": "parameter", - "parameter": "gov.doe.high_efficiency_electric_home_rebate.percent_covered[2].threshold", - "description": null, - "label": "threshold", - "unit": "/1", - "period": null, - "values": { - "0000-01-01": 1.5 - }, - "economy": false, - "household": false - }, - "gov.doe.high_efficiency_electric_home_rebate.percent_covered[2].amount": { - "type": "parameter", - "parameter": "gov.doe.high_efficiency_electric_home_rebate.percent_covered[2].amount", - "description": null, - "label": "amount", - "unit": "/1", - "period": null, - "values": { - "2023-01-01": 0, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.doe.high_efficiency_electric_home_rebate.cap": { - "type": "parameterNode", - "parameter": "gov.doe.high_efficiency_electric_home_rebate.cap", - "description": null, - "label": "cap", - "economy": false, - "household": false - }, - "gov.doe.high_efficiency_electric_home_rebate.cap.insulation_air_sealing_ventilation": { - "type": "parameter", - "parameter": "gov.doe.high_efficiency_electric_home_rebate.cap.insulation_air_sealing_ventilation", - "description": "The US caps high-efficiency home program rebates at this amount per year for insulation, air sealing, and ventilation.", - "label": "High efficiency electric home rebate annual cap on insulation, air sealing, and ventilation", - "unit": "currency-USD", - "period": "year", - "values": { - "2032-01-01": 0, - "2023-01-01": 1600, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.doe.high_efficiency_electric_home_rebate.cap.electric_heat_pump_clothes_dryer": { - "type": "parameter", - "parameter": "gov.doe.high_efficiency_electric_home_rebate.cap.electric_heat_pump_clothes_dryer", - "description": "The US caps high-efficiency home program rebates at this amount per year for heat pump clothes dryers.", - "label": "High efficiency electric home rebate annual cap on electric heat pump clothes dryers", - "unit": "currency-USD", - "period": "year", - "values": { - "2032-01-01": 0, - "2023-01-01": 840, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.doe.high_efficiency_electric_home_rebate.cap.electric_wiring": { - "type": "parameter", - "parameter": "gov.doe.high_efficiency_electric_home_rebate.cap.electric_wiring", - "description": "The US caps high-efficiency home program rebates at this amount per year for electric wiring.", - "label": "High efficiency electric home rebate annual cap on electric wiring", - "unit": "currency-USD", - "period": "year", - "values": { - "2032-01-01": 0, - "2023-01-01": 2500, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.doe.high_efficiency_electric_home_rebate.cap.electric_load_service_center_upgrade": { - "type": "parameter", - "parameter": "gov.doe.high_efficiency_electric_home_rebate.cap.electric_load_service_center_upgrade", - "description": "The US caps high-efficiency home program rebates at this amount per year for electric load service center upgrades.", - "label": "High efficiency electric home rebate annual cap on electric load service center upgrades", - "unit": "currency-USD", - "period": "year", - "values": { - "2032-01-01": 0, - "2023-01-01": 4000, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.doe.high_efficiency_electric_home_rebate.cap.heat_pump": { - "type": "parameter", - "parameter": "gov.doe.high_efficiency_electric_home_rebate.cap.heat_pump", - "description": "The US caps high-efficiency home program rebates at this amount per year for heat pumps.", - "label": "High efficiency electric home rebate annual cap on electric heat pumps", - "unit": "currency-USD", - "period": "year", - "values": { - "2032-01-01": 0, - "2023-01-01": 8000, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.doe.high_efficiency_electric_home_rebate.cap.heat_pump_water_heater": { - "type": "parameter", - "parameter": "gov.doe.high_efficiency_electric_home_rebate.cap.heat_pump_water_heater", - "description": "The US caps high-efficiency home program rebates at this amount per year for heat pump water heaters.", - "label": "High efficiency electric home rebate annual cap on electric heat pump water heaters", - "unit": "currency-USD", - "period": "year", - "values": { - "2032-01-01": 0, - "2023-01-01": 1750, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.doe.high_efficiency_electric_home_rebate.cap.total": { - "type": "parameter", - "parameter": "gov.doe.high_efficiency_electric_home_rebate.cap.total", - "description": "The US caps high-efficiency home program rebates at this amount per year for appliance and non-appliance upgrades.", - "label": "High efficiency electric home rebate total annual cap", - "unit": "currency-USD", - "period": "year", - "values": { - "2032-01-01": 0, - "2023-01-01": 14000, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.doe.high_efficiency_electric_home_rebate.cap.electric_stove_cooktop_range_or_oven": { - "type": "parameter", - "parameter": "gov.doe.high_efficiency_electric_home_rebate.cap.electric_stove_cooktop_range_or_oven", - "description": "The US caps high-efficiency home program rebates at this amount per year for electric stoves, cooktops, ranges, or ovens.", - "label": "High efficiency electric home rebate annual cap on electric stoves, cooktops ranges, or ovens", - "unit": "currency-USD", - "period": "year", - "values": { - "2032-01-01": 0, - "2023-01-01": 840, - "0000-01-01": 0 - }, - "economy": false, - "household": false - }, - "gov.doe.high_efficiency_electric_home_rebate.elements": { - "type": "parameter", - "parameter": "gov.doe.high_efficiency_electric_home_rebate.elements", - "description": "The US covers this percentage of expenditures for its high-efficiency electric home program rebate program, based on a household's ratio of income to area median income", - "label": "High efficiency electric home rebate elements", - "unit": "list", - "period": null, - "values": { - "2032-01-01": [], - "2023-01-01": [ - "electric_heat_pump_clothes_dryer", - "electric_load_service_center_upgrade", - "electric_stove_cooktop_range_or_oven", - "electric_wiring", - "heat_pump_water_heater", - "heat_pump", - "insulation_air_sealing_ventilation" - ], - "0000-01-01": [] - }, - "economy": false, - "household": false - }, - "gov.simulation": { - "type": "parameterNode", - "parameter": "gov.simulation", - "description": null, - "label": "simulation", - "economy": true, - "household": true - }, - "gov.simulation.reported_broadband_subsidy": { - "type": "parameter", - "parameter": "gov.simulation.reported_broadband_subsidy", - "description": "Broadband subsidies are taken as reported in the CPS ASEC.", - "label": "Use reported broadband subsidies", - "unit": "bool", - "period": null, - "values": { - "2000-01-01": true - }, - "economy": true, - "household": true - }, - "gov.simulation.reported_snap": { - "type": "parameter", - "parameter": "gov.simulation.reported_snap", - "description": "SNAP benefits are taken as reported in the CPS ASEC.", - "label": "Use reported SNAP benefits", - "unit": "bool", - "period": null, - "values": { - "2000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.simulation.limit_itemized_deductions_to_taxable_income": { - "type": "parameter", - "parameter": "gov.simulation.limit_itemized_deductions_to_taxable_income", - "description": "Limits itemized deductions to taxable income.", - "label": "Limit itemized deductions to taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": true - }, - "economy": true, - "household": true - }, - "gov.simulation.branch_to_determine_itemization": { - "type": "parameter", - "parameter": "gov.simulation.branch_to_determine_itemization", - "description": "PolicyEngine branches to determine itemization if this is true; otherwise it compares the standard against itemized deductions.", - "label": "Branch to determine itemization", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": true - }, - "economy": true, - "household": true - }, - "gov.simulation.include_health_benefits_in_net_income": { - "type": "parameter", - "parameter": "gov.simulation.include_health_benefits_in_net_income", - "description": "Whether to include health benefits in net income.", - "label": "Include health benefits in net income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.simulation.capital_gains_responses": { - "type": "parameterNode", - "parameter": "gov.simulation.capital_gains_responses", - "description": null, - "label": "capital gains responses", - "economy": true, - "household": true - }, - "gov.simulation.capital_gains_responses.elasticity": { - "type": "parameter", - "parameter": "gov.simulation.capital_gains_responses.elasticity", - "description": "Elasticity of capital gains with respect to the capital gains marginal tax rate.", - "label": "capital gains elasticity", - "unit": "/1", - "period": null, - "values": { - "2000-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.simulation.labor_supply_responses": { - "type": "parameterNode", - "parameter": "gov.simulation.labor_supply_responses", - "description": null, - "label": "labor supply responses", - "economy": true, - "household": true - }, - "gov.simulation.labor_supply_responses.elasticities": { - "type": "parameterNode", - "parameter": "gov.simulation.labor_supply_responses.elasticities", - "description": null, - "label": "Elasticities", - "economy": true, - "household": true - }, - "gov.simulation.labor_supply_responses.elasticities.income": { - "type": "parameter", - "parameter": "gov.simulation.labor_supply_responses.elasticities.income", - "description": "Percent change (of the change in disposable income) in labor supply given a 1% change in disposable income.", - "label": "income elasticity of labor supply", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.simulation.labor_supply_responses.elasticities.substitution": { - "type": "parameterNode", - "parameter": "gov.simulation.labor_supply_responses.elasticities.substitution", - "description": null, - "label": "substitution", - "economy": true, - "household": true - }, - "gov.simulation.labor_supply_responses.elasticities.substitution.all": { - "type": "parameter", - "parameter": "gov.simulation.labor_supply_responses.elasticities.substitution.all", - "description": "Percent change (of the change in the effective marginal wage) in labor supply given a 1% change in the effective marginal wage. This parameter overrides all other substitution elasticities if provided.", - "label": "substitution elasticity of labor supply", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.simulation.labor_supply_responses.elasticities.substitution.by_position_and_decile": { - "type": "parameterNode", - "parameter": "gov.simulation.labor_supply_responses.elasticities.substitution.by_position_and_decile", - "description": null, - "label": "by position and decile", - "economy": true, - "household": true - }, - "gov.simulation.labor_supply_responses.elasticities.substitution.by_position_and_decile.primary": { - "type": "parameterNode", - "parameter": "gov.simulation.labor_supply_responses.elasticities.substitution.by_position_and_decile.primary", - "description": null, - "label": "primary adult", - "economy": true, - "household": true - }, - "gov.simulation.labor_supply_responses.elasticities.substitution.by_position_and_decile.primary.1": { - "type": "parameter", - "parameter": "gov.simulation.labor_supply_responses.elasticities.substitution.by_position_and_decile.primary.1", - "description": null, - "label": "primary adult, 1st decile substitution elasticity", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.simulation.labor_supply_responses.elasticities.substitution.by_position_and_decile.primary.2": { - "type": "parameter", - "parameter": "gov.simulation.labor_supply_responses.elasticities.substitution.by_position_and_decile.primary.2", - "description": null, - "label": "primary adult, 2nd decile substitution elasticity", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.simulation.labor_supply_responses.elasticities.substitution.by_position_and_decile.primary.3": { - "type": "parameter", - "parameter": "gov.simulation.labor_supply_responses.elasticities.substitution.by_position_and_decile.primary.3", - "description": null, - "label": "primary adult, 3rd decile substitution elasticity", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.simulation.labor_supply_responses.elasticities.substitution.by_position_and_decile.primary.4": { - "type": "parameter", - "parameter": "gov.simulation.labor_supply_responses.elasticities.substitution.by_position_and_decile.primary.4", - "description": null, - "label": "primary adult, 4th decile substitution elasticity", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.simulation.labor_supply_responses.elasticities.substitution.by_position_and_decile.primary.5": { - "type": "parameter", - "parameter": "gov.simulation.labor_supply_responses.elasticities.substitution.by_position_and_decile.primary.5", - "description": null, - "label": "primary adult, 5th decile substitution elasticity", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.simulation.labor_supply_responses.elasticities.substitution.by_position_and_decile.primary.6": { - "type": "parameter", - "parameter": "gov.simulation.labor_supply_responses.elasticities.substitution.by_position_and_decile.primary.6", - "description": null, - "label": "primary adult, 6th decile substitution elasticity", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.simulation.labor_supply_responses.elasticities.substitution.by_position_and_decile.primary.7": { - "type": "parameter", - "parameter": "gov.simulation.labor_supply_responses.elasticities.substitution.by_position_and_decile.primary.7", - "description": null, - "label": "primary adult, 7th decile substitution elasticity", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.simulation.labor_supply_responses.elasticities.substitution.by_position_and_decile.primary.8": { - "type": "parameter", - "parameter": "gov.simulation.labor_supply_responses.elasticities.substitution.by_position_and_decile.primary.8", - "description": null, - "label": "primary adult, 8th decile substitution elasticity", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.simulation.labor_supply_responses.elasticities.substitution.by_position_and_decile.primary.9": { - "type": "parameter", - "parameter": "gov.simulation.labor_supply_responses.elasticities.substitution.by_position_and_decile.primary.9", - "description": null, - "label": "primary adult, 9th decile substitution elasticity", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.simulation.labor_supply_responses.elasticities.substitution.by_position_and_decile.primary.10": { - "type": "parameter", - "parameter": "gov.simulation.labor_supply_responses.elasticities.substitution.by_position_and_decile.primary.10", - "description": null, - "label": "primary adult, 10th decile substitution elasticity", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.simulation.labor_supply_responses.elasticities.substitution.by_position_and_decile.secondary": { - "type": "parameter", - "parameter": "gov.simulation.labor_supply_responses.elasticities.substitution.by_position_and_decile.secondary", - "description": null, - "label": "secondary adult, all deciles substitution elasticity", - "unit": "/1", - "period": null, - "values": { - "2020-01-01": 0, - "2015-01-01": 0 - }, - "economy": true, - "household": true - }, - "gov.simulation.labor_supply_responses.bounds": { - "type": "parameterNode", - "parameter": "gov.simulation.labor_supply_responses.bounds", - "description": null, - "label": "Bounds", - "economy": true, - "household": true - }, - "gov.simulation.labor_supply_responses.bounds.income_change": { - "type": "parameter", - "parameter": "gov.simulation.labor_supply_responses.bounds.income_change", - "description": "Net income changes larger than this will be capped at this value.", - "label": "Income change LSR bound", - "unit": "/1", - "period": null, - "values": { - "0000-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.simulation.labor_supply_responses.bounds.effective_wage_rate_change": { - "type": "parameter", - "parameter": "gov.simulation.labor_supply_responses.bounds.effective_wage_rate_change", - "description": "Effective wage rate changes larger than this will be capped at this value.", - "label": "Effective wage rate change LSR bound", - "unit": "/1", - "period": null, - "values": { - "0000-01-01": 1 - }, - "economy": true, - "household": true - }, - "gov.abolitions": { - "type": "parameterNode", - "parameter": "gov.abolitions", - "description": null, - "label": "Abolitions", - "economy": true, - "household": true - }, - "gov.abolitions.flat_tax": { - "type": "parameter", - "parameter": "gov.abolitions.flat_tax", - "description": "Set all values of Flat tax to zero.", - "label": "Abolish Flat tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.basic_income_phase_out": { - "type": "parameter", - "parameter": "gov.abolitions.basic_income_phase_out", - "description": "Set all values of Basic income phase-out to zero.", - "label": "Abolish Basic income phase-out", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.basic_income_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.basic_income_eligible", - "description": "Set all values of Basic income eligible to zero.", - "label": "Abolish Basic income eligible", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.basic_income": { - "type": "parameter", - "parameter": "gov.abolitions.basic_income", - "description": "Set all values of basic income to zero.", - "label": "Abolish basic income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.basic_income_phase_in": { - "type": "parameter", - "parameter": "gov.abolitions.basic_income_phase_in", - "description": "Set all values of Basic income phase-in to zero.", - "label": "Abolish Basic income phase-in", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.basic_income_before_phase_out": { - "type": "parameter", - "parameter": "gov.abolitions.basic_income_before_phase_out", - "description": "Set all values of Basic income before phase-outs to zero.", - "label": "Abolish Basic income before phase-outs", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxsim_pensions": { - "type": "parameter", - "parameter": "gov.abolitions.taxsim_pensions", - "description": "Set all values of Pensions to zero.", - "label": "Abolish Pensions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxsim_v18": { - "type": "parameter", - "parameter": "gov.abolitions.taxsim_v18", - "description": "Set all values of Taxable income in TAXSIM to zero.", - "label": "Abolish Taxable income in TAXSIM", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxsim_sbusinc": { - "type": "parameter", - "parameter": "gov.abolitions.taxsim_sbusinc", - "description": "Set all values of QBI for the spouse taxpayer (TAXSIM) to zero.", - "label": "Abolish QBI for the spouse taxpayer (TAXSIM)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxsim_depx": { - "type": "parameter", - "parameter": "gov.abolitions.taxsim_depx", - "description": "Set all values of Number of dependents to zero.", - "label": "Abolish Number of dependents", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxsim_fiitax": { - "type": "parameter", - "parameter": "gov.abolitions.taxsim_fiitax", - "description": "Set all values of Federal income tax to zero.", - "label": "Abolish Federal income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxsim_age2": { - "type": "parameter", - "parameter": "gov.abolitions.taxsim_age2", - "description": "Set all values of Age of second dependent to zero.", - "label": "Abolish Age of second dependent", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxsim_siitax": { - "type": "parameter", - "parameter": "gov.abolitions.taxsim_siitax", - "description": "Set all values of State income tax liability to zero.", - "label": "Abolish State income tax liability", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxsim_stcg": { - "type": "parameter", - "parameter": "gov.abolitions.taxsim_stcg", - "description": "Set all values of Short-term capital gains to zero.", - "label": "Abolish Short-term capital gains", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxsim_page": { - "type": "parameter", - "parameter": "gov.abolitions.taxsim_page", - "description": "Set all values of Age of primary taxpayer to zero.", - "label": "Abolish Age of primary taxpayer", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxsim_pui": { - "type": "parameter", - "parameter": "gov.abolitions.taxsim_pui", - "description": "Set all values of Unemployment compensation (primary taxpayer) to zero.", - "label": "Abolish Unemployment compensation (primary taxpayer)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxsim_v10": { - "type": "parameter", - "parameter": "gov.abolitions.taxsim_v10", - "description": "Set all values of Federal AGI to zero.", - "label": "Abolish Federal AGI", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxsim_v11": { - "type": "parameter", - "parameter": "gov.abolitions.taxsim_v11", - "description": "Set all values of UI in AGI to zero.", - "label": "Abolish UI in AGI", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxsim_v12": { - "type": "parameter", - "parameter": "gov.abolitions.taxsim_v12", - "description": "Set all values of Social Security in AGI to zero.", - "label": "Abolish Social Security in AGI", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxsim_scorp": { - "type": "parameter", - "parameter": "gov.abolitions.taxsim_scorp", - "description": "Set all values of S-corp income to zero.", - "label": "Abolish S-corp income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxsim_ltcg": { - "type": "parameter", - "parameter": "gov.abolitions.taxsim_ltcg", - "description": "Set all values of Long-term capital gains to zero.", - "label": "Abolish Long-term capital gains", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxsim_state": { - "type": "parameter", - "parameter": "gov.abolitions.taxsim_state", - "description": "Set all values of State code to zero.", - "label": "Abolish State code", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxsim_v25": { - "type": "parameter", - "parameter": "gov.abolitions.taxsim_v25", - "description": "Set all values of EITC to zero.", - "label": "Abolish EITC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxsim_mstat": { - "type": "parameter", - "parameter": "gov.abolitions.taxsim_mstat", - "description": "Set all values of Marital Status to zero.", - "label": "Abolish Marital Status", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxsim_pbusinc": { - "type": "parameter", - "parameter": "gov.abolitions.taxsim_pbusinc", - "description": "Set all values of QBI for the primary taxpayer (TAXSIM) to zero.", - "label": "Abolish QBI for the primary taxpayer (TAXSIM)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxsim_year": { - "type": "parameter", - "parameter": "gov.abolitions.taxsim_year", - "description": "Set all values of Policy year to zero.", - "label": "Abolish Policy year", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxsim_age1": { - "type": "parameter", - "parameter": "gov.abolitions.taxsim_age1", - "description": "Set all values of Age of first dependent to zero.", - "label": "Abolish Age of first dependent", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxsim_dividends": { - "type": "parameter", - "parameter": "gov.abolitions.taxsim_dividends", - "description": "Set all values of Dividends to zero.", - "label": "Abolish Dividends", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxsim_psemp": { - "type": "parameter", - "parameter": "gov.abolitions.taxsim_psemp", - "description": "Set all values of Self-employment income of taxpayer (excluding QBI) to zero.", - "label": "Abolish Self-employment income of taxpayer (excluding QBI)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxsim_taxsimid": { - "type": "parameter", - "parameter": "gov.abolitions.taxsim_taxsimid", - "description": "Set all values of Tax unit ID to zero.", - "label": "Abolish Tax unit ID", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxsim_dep17": { - "type": "parameter", - "parameter": "gov.abolitions.taxsim_dep17", - "description": "Set all values of Children under 17 to zero.", - "label": "Abolish Children under 17", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxsim_dep18": { - "type": "parameter", - "parameter": "gov.abolitions.taxsim_dep18", - "description": "Set all values of Children under 13 to zero.", - "label": "Abolish Children under 13", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxsim_sage": { - "type": "parameter", - "parameter": "gov.abolitions.taxsim_sage", - "description": "Set all values of Age of spouse to zero.", - "label": "Abolish Age of spouse", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxsim_swages": { - "type": "parameter", - "parameter": "gov.abolitions.taxsim_swages", - "description": "Set all values of Wages for spouse to zero.", - "label": "Abolish Wages for spouse", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxsim_age3": { - "type": "parameter", - "parameter": "gov.abolitions.taxsim_age3", - "description": "Set all values of Age of third dependent to zero.", - "label": "Abolish Age of third dependent", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxsim_ssemp": { - "type": "parameter", - "parameter": "gov.abolitions.taxsim_ssemp", - "description": "Set all values of Self-employment income of spouse (excluding QBI) to zero.", - "label": "Abolish Self-employment income of spouse (excluding QBI)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxsim_intrec": { - "type": "parameter", - "parameter": "gov.abolitions.taxsim_intrec", - "description": "Set all values of Taxable interest to zero.", - "label": "Abolish Taxable interest", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxsim_ui": { - "type": "parameter", - "parameter": "gov.abolitions.taxsim_ui", - "description": "Set all values of Unemployment compensation (spouse) to zero.", - "label": "Abolish Unemployment compensation (spouse)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxsim_tfica": { - "type": "parameter", - "parameter": "gov.abolitions.taxsim_tfica", - "description": "Set all values of Employee share of FICA + SECA + Additional Medicare Tax to zero.", - "label": "Abolish Employee share of FICA + SECA + Additional Medicare Tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxsim_pwages": { - "type": "parameter", - "parameter": "gov.abolitions.taxsim_pwages", - "description": "Set all values of Wages for primary taxpayer to zero.", - "label": "Abolish Wages for primary taxpayer", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxsim_dep13": { - "type": "parameter", - "parameter": "gov.abolitions.taxsim_dep13", - "description": "Set all values of Children under 13 to zero.", - "label": "Abolish Children under 13", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxsim_childcare": { - "type": "parameter", - "parameter": "gov.abolitions.taxsim_childcare", - "description": "Set all values of Childcare to zero.", - "label": "Abolish Childcare", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxsim_gssi": { - "type": "parameter", - "parameter": "gov.abolitions.taxsim_gssi", - "description": "Set all values of Gross Social Security Income to zero.", - "label": "Abolish Gross Social Security Income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.bonus_guaranteed_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.bonus_guaranteed_deduction", - "description": "Set all values of Bonus guaranteed deduction to zero.", - "label": "Abolish Bonus guaranteed deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.healthcare_benefit_value": { - "type": "parameter", - "parameter": "gov.abolitions.healthcare_benefit_value", - "description": "Set all values of Cash equivalent of health coverage to zero.", - "label": "Abolish Cash equivalent of health coverage", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.marginal_tax_rate_including_health_benefits": { - "type": "parameter", - "parameter": "gov.abolitions.marginal_tax_rate_including_health_benefits", - "description": "Set all values of Marginal tax rate including health benefits to zero.", - "label": "Abolish Marginal tax rate including health benefits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.cliff_evaluated": { - "type": "parameter", - "parameter": "gov.abolitions.cliff_evaluated", - "description": "Set all values of cliff evaluated to zero.", - "label": "Abolish cliff evaluated", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.cliff_gap": { - "type": "parameter", - "parameter": "gov.abolitions.cliff_gap", - "description": "Set all values of cliff gap to zero.", - "label": "Abolish cliff gap", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_on_cliff": { - "type": "parameter", - "parameter": "gov.abolitions.is_on_cliff", - "description": "Set all values of is on a tax-benefit cliff to zero.", - "label": "Abolish is on a tax-benefit cliff", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.child_index": { - "type": "parameter", - "parameter": "gov.abolitions.child_index", - "description": "Set all values of Index of child in household to zero.", - "label": "Abolish Index of child in household", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.emp_self_emp_ratio": { - "type": "parameter", - "parameter": "gov.abolitions.emp_self_emp_ratio", - "description": "Set all values of Share of earnings from wages and salaries to zero.", - "label": "Abolish Share of earnings from wages and salaries", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.household_net_income_including_health_benefits": { - "type": "parameter", - "parameter": "gov.abolitions.household_net_income_including_health_benefits", - "description": "Set all values of Net income including health benefits to zero.", - "label": "Abolish Net income including health benefits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.marginal_tax_rate": { - "type": "parameter", - "parameter": "gov.abolitions.marginal_tax_rate", - "description": "Set all values of marginal tax rate to zero.", - "label": "Abolish marginal tax rate", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.adult_index": { - "type": "parameter", - "parameter": "gov.abolitions.adult_index", - "description": "Set all values of Index of adult in household to zero.", - "label": "Abolish Index of adult in household", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.adult_earnings_index": { - "type": "parameter", - "parameter": "gov.abolitions.adult_earnings_index", - "description": "Set all values of index of adult in household by earnings to zero.", - "label": "Abolish index of adult in household by earnings", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.military_disabled_head": { - "type": "parameter", - "parameter": "gov.abolitions.military_disabled_head", - "description": "Set all values of Tax unit head is legally disabled as a result of military service to zero.", - "label": "Abolish Tax unit head is legally disabled as a result of military service", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tax_unit_household_id": { - "type": "parameter", - "parameter": "gov.abolitions.tax_unit_household_id", - "description": "Set all values of Tax unit household ID to zero.", - "label": "Abolish Tax unit household ID", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_tax_unit_head": { - "type": "parameter", - "parameter": "gov.abolitions.is_tax_unit_head", - "description": "Set all values of Head of tax unit to zero.", - "label": "Abolish Head of tax unit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.spouse_separate_tax_unit_size": { - "type": "parameter", - "parameter": "gov.abolitions.spouse_separate_tax_unit_size", - "description": "Set all values of Size of spouse's tax unit if they file separately to zero.", - "label": "Abolish Size of spouse's tax unit if they file separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.older_spouse_birth_year": { - "type": "parameter", - "parameter": "gov.abolitions.older_spouse_birth_year", - "description": "Set all values of Birth year of head or spouse of tax unit depending on which is greater to zero.", - "label": "Abolish Birth year of head or spouse of tax unit depending on which is greater", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tax_unit_children": { - "type": "parameter", - "parameter": "gov.abolitions.tax_unit_children", - "description": "Set all values of Number of children in tax unit to zero.", - "label": "Abolish Number of children in tax unit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxpayer_has_itin": { - "type": "parameter", - "parameter": "gov.abolitions.taxpayer_has_itin", - "description": "Set all values of Tax unit head or spouse has ITIN to zero.", - "label": "Abolish Tax unit head or spouse has ITIN", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.blind_head": { - "type": "parameter", - "parameter": "gov.abolitions.blind_head", - "description": "Set all values of Tax unit head is blind to zero.", - "label": "Abolish Tax unit head is blind", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.disabled_tax_unit_head_or_spouse": { - "type": "parameter", - "parameter": "gov.abolitions.disabled_tax_unit_head_or_spouse", - "description": "Set all values of Head or Spouse of tax unit is disabled to zero.", - "label": "Abolish Head or Spouse of tax unit is disabled", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.disabled_spouse": { - "type": "parameter", - "parameter": "gov.abolitions.disabled_spouse", - "description": "Set all values of Tax unit spouse is legally disabled to zero.", - "label": "Abolish Tax unit spouse is legally disabled", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tax_unit_dependents": { - "type": "parameter", - "parameter": "gov.abolitions.tax_unit_dependents", - "description": "Set all values of Number of dependents in the tax unit to zero.", - "label": "Abolish Number of dependents in the tax unit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_tax_unit_head_or_spouse": { - "type": "parameter", - "parameter": "gov.abolitions.is_tax_unit_head_or_spouse", - "description": "Set all values of Head or Spouse of tax unit to zero.", - "label": "Abolish Head or Spouse of tax unit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tax_unit_parents": { - "type": "parameter", - "parameter": "gov.abolitions.tax_unit_parents", - "description": "Set all values of Number of parents in the tax unit to zero.", - "label": "Abolish Number of parents in the tax unit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_tax_unit_spouse": { - "type": "parameter", - "parameter": "gov.abolitions.is_tax_unit_spouse", - "description": "Set all values of Spouse of tax unit to zero.", - "label": "Abolish Spouse of tax unit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tax_unit_grandparents": { - "type": "parameter", - "parameter": "gov.abolitions.tax_unit_grandparents", - "description": "Set all values of Number of grandparents in the tax unit to zero.", - "label": "Abolish Number of grandparents in the tax unit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.military_disabled_spouse": { - "type": "parameter", - "parameter": "gov.abolitions.military_disabled_spouse", - "description": "Set all values of Tax unit spouse is legally disabled as a result of military service to zero.", - "label": "Abolish Tax unit spouse is legally disabled as a result of military service", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.age_spouse": { - "type": "parameter", - "parameter": "gov.abolitions.age_spouse", - "description": "Set all values of Age of spouse of tax unit to zero.", - "label": "Abolish Age of spouse of tax unit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.head_is_dependent_elsewhere": { - "type": "parameter", - "parameter": "gov.abolitions.head_is_dependent_elsewhere", - "description": "Set all values of Is tax-unit head a dependent elsewhere to zero.", - "label": "Abolish Is tax-unit head a dependent elsewhere", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.blind_spouse": { - "type": "parameter", - "parameter": "gov.abolitions.blind_spouse", - "description": "Set all values of Tax unit spouse is blind to zero.", - "label": "Abolish Tax unit spouse is blind", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.head_of_household_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.head_of_household_eligible", - "description": "Set all values of Qualifies for head of household filing status to zero.", - "label": "Abolish Qualifies for head of household filing status", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.spouse_is_dependent_elsewhere": { - "type": "parameter", - "parameter": "gov.abolitions.spouse_is_dependent_elsewhere", - "description": "Set all values of Tax-unit spouse is dependent elsewhere to zero.", - "label": "Abolish Tax-unit spouse is dependent elsewhere", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.head_is_disabled": { - "type": "parameter", - "parameter": "gov.abolitions.head_is_disabled", - "description": "Set all values of Tax unit head is disabled to zero.", - "label": "Abolish Tax unit head is disabled", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tax_unit_married": { - "type": "parameter", - "parameter": "gov.abolitions.tax_unit_married", - "description": "Set all values of Tax unit is married to zero.", - "label": "Abolish Tax unit is married", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.disabled_head": { - "type": "parameter", - "parameter": "gov.abolitions.disabled_head", - "description": "Set all values of Tax unit head is legally disabled to zero.", - "label": "Abolish Tax unit head is legally disabled", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_tax_unit_dependent": { - "type": "parameter", - "parameter": "gov.abolitions.is_tax_unit_dependent", - "description": "Set all values of Is a dependent in the tax unit to zero.", - "label": "Abolish Is a dependent in the tax unit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tax_unit_child_dependents": { - "type": "parameter", - "parameter": "gov.abolitions.tax_unit_child_dependents", - "description": "Set all values of Number of child dependents in the tax unit to zero.", - "label": "Abolish Number of child dependents in the tax unit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_child_of_tax_head": { - "type": "parameter", - "parameter": "gov.abolitions.is_child_of_tax_head", - "description": "Set all values of Is a child to zero.", - "label": "Abolish Is a child", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.age_head": { - "type": "parameter", - "parameter": "gov.abolitions.age_head", - "description": "Set all values of Age of head of tax unit to zero.", - "label": "Abolish Age of head of tax unit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.spouse_is_disabled": { - "type": "parameter", - "parameter": "gov.abolitions.spouse_is_disabled", - "description": "Set all values of Tax unit spouse is disabled to zero.", - "label": "Abolish Tax unit spouse is disabled", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.surviving_spouse_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.surviving_spouse_eligible", - "description": "Set all values of Qualifies for surviving spouse filing status to zero.", - "label": "Abolish Qualifies for surviving spouse filing status", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.greater_age_head_spouse": { - "type": "parameter", - "parameter": "gov.abolitions.greater_age_head_spouse", - "description": "Set all values of Age of head or spouse of tax unit depending on which is greater to zero.", - "label": "Abolish Age of head or spouse of tax unit depending on which is greater", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.household_size": { - "type": "parameter", - "parameter": "gov.abolitions.household_size", - "description": "Set all values of Household size to zero.", - "label": "Abolish Household size", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_adult": { - "type": "parameter", - "parameter": "gov.abolitions.is_adult", - "description": "Set all values of Is an adult to zero.", - "label": "Abolish Is an adult", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_father": { - "type": "parameter", - "parameter": "gov.abolitions.is_father", - "description": "Set all values of Is a father to zero.", - "label": "Abolish Is a father", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_child_dependent": { - "type": "parameter", - "parameter": "gov.abolitions.is_child_dependent", - "description": "Set all values of Is a child dependent based on the IRS definition to zero.", - "label": "Abolish Is a child dependent based on the IRS definition", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_in_k12_school": { - "type": "parameter", - "parameter": "gov.abolitions.is_in_k12_school", - "description": "Set all values of Is in a K-12 school to zero.", - "label": "Abolish Is in a K-12 school", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_male": { - "type": "parameter", - "parameter": "gov.abolitions.is_male", - "description": "Set all values of is male to zero.", - "label": "Abolish is male", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_full_time_student": { - "type": "parameter", - "parameter": "gov.abolitions.is_full_time_student", - "description": "Set all values of Is a full time student to zero.", - "label": "Abolish Is a full time student", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_married": { - "type": "parameter", - "parameter": "gov.abolitions.is_married", - "description": "Set all values of Married to zero.", - "label": "Abolish Married", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_retired": { - "type": "parameter", - "parameter": "gov.abolitions.is_retired", - "description": "Set all values of Is retired to zero.", - "label": "Abolish Is retired", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_mother": { - "type": "parameter", - "parameter": "gov.abolitions.is_mother", - "description": "Set all values of Is a mother to zero.", - "label": "Abolish Is a mother", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.has_disabled_spouse": { - "type": "parameter", - "parameter": "gov.abolitions.has_disabled_spouse", - "description": "Set all values of person's marriage partner in JOINT filing unit is disabled to zero.", - "label": "Abolish person's marriage partner in JOINT filing unit is disabled", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_pregnant": { - "type": "parameter", - "parameter": "gov.abolitions.is_pregnant", - "description": "Set all values of Is pregnant to zero.", - "label": "Abolish Is pregnant", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.share_of_care_and_support_costs_paid_by_tax_filer": { - "type": "parameter", - "parameter": "gov.abolitions.share_of_care_and_support_costs_paid_by_tax_filer", - "description": "Set all values of The percentage of care and support costs of a senior paid by the tax filer to zero.", - "label": "Abolish The percentage of care and support costs of a senior paid by the tax filer", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_veteran": { - "type": "parameter", - "parameter": "gov.abolitions.is_veteran", - "description": "Set all values of Is veteran to zero.", - "label": "Abolish Is veteran", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_parent": { - "type": "parameter", - "parameter": "gov.abolitions.is_parent", - "description": "Set all values of Is a parent to zero.", - "label": "Abolish Is a parent", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.count_days_postpartum": { - "type": "parameter", - "parameter": "gov.abolitions.count_days_postpartum", - "description": "Set all values of Number of days postpartum to zero.", - "label": "Abolish Number of days postpartum", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.person_id": { - "type": "parameter", - "parameter": "gov.abolitions.person_id", - "description": "Set all values of Unique reference for this person to zero.", - "label": "Abolish Unique reference for this person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.spm_unit_weight": { - "type": "parameter", - "parameter": "gov.abolitions.spm_unit_weight", - "description": "Set all values of SPM unit weight to zero.", - "label": "Abolish SPM unit weight", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.person_weight": { - "type": "parameter", - "parameter": "gov.abolitions.person_weight", - "description": "Set all values of Person weight to zero.", - "label": "Abolish Person weight", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tax_unit_weight": { - "type": "parameter", - "parameter": "gov.abolitions.tax_unit_weight", - "description": "Set all values of Tax unit weight to zero.", - "label": "Abolish Tax unit weight", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.marital_unit_weight": { - "type": "parameter", - "parameter": "gov.abolitions.marital_unit_weight", - "description": "Set all values of Marital unit weight to zero.", - "label": "Abolish Marital unit weight", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.lives_in_vehicle": { - "type": "parameter", - "parameter": "gov.abolitions.lives_in_vehicle", - "description": "Set all values of Lives in vehicle to zero.", - "label": "Abolish Lives in vehicle", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.monthly_age": { - "type": "parameter", - "parameter": "gov.abolitions.monthly_age", - "description": "Set all values of Monthly age to zero.", - "label": "Abolish Monthly age", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_senior": { - "type": "parameter", - "parameter": "gov.abolitions.is_senior", - "description": "Set all values of Is a senior to zero.", - "label": "Abolish Is a senior", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.birth_year": { - "type": "parameter", - "parameter": "gov.abolitions.birth_year", - "description": "Set all values of Birth year to zero.", - "label": "Abolish Birth year", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_wa_adult": { - "type": "parameter", - "parameter": "gov.abolitions.is_wa_adult", - "description": "Set all values of Is a working-age adult to zero.", - "label": "Abolish Is a working-age adult", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_child": { - "type": "parameter", - "parameter": "gov.abolitions.is_child", - "description": "Set all values of Is a child to zero.", - "label": "Abolish Is a child", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.spm_unit_count_children": { - "type": "parameter", - "parameter": "gov.abolitions.spm_unit_count_children", - "description": "Set all values of children in SPM unit to zero.", - "label": "Abolish children in SPM unit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.spm_unit_size": { - "type": "parameter", - "parameter": "gov.abolitions.spm_unit_size", - "description": "Set all values of SPM unit size to zero.", - "label": "Abolish SPM unit size", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.spm_unit_is_married": { - "type": "parameter", - "parameter": "gov.abolitions.spm_unit_is_married", - "description": "Set all values of SPM unit is married to zero.", - "label": "Abolish SPM unit is married", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.spm_unit_count_adults": { - "type": "parameter", - "parameter": "gov.abolitions.spm_unit_count_adults", - "description": "Set all values of adults in SPM unit to zero.", - "label": "Abolish adults in SPM unit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.investment_in_529_plan": { - "type": "parameter", - "parameter": "gov.abolitions.investment_in_529_plan", - "description": "Set all values of 529 plan investment to zero.", - "label": "Abolish 529 plan investment", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mortgage_interest": { - "type": "parameter", - "parameter": "gov.abolitions.mortgage_interest", - "description": "Set all values of Mortgage interest to zero.", - "label": "Abolish Mortgage interest", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.non_mortgage_interest": { - "type": "parameter", - "parameter": "gov.abolitions.non_mortgage_interest", - "description": "Set all values of Non-mortgage interest to zero.", - "label": "Abolish Non-mortgage interest", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.deductible_interest_expense": { - "type": "parameter", - "parameter": "gov.abolitions.deductible_interest_expense", - "description": "Set all values of Interest paid on all loans to zero.", - "label": "Abolish Interest paid on all loans", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.care_expenses": { - "type": "parameter", - "parameter": "gov.abolitions.care_expenses", - "description": "Set all values of Care expenses to zero.", - "label": "Abolish Care expenses", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pre_subsidy_childcare_expenses": { - "type": "parameter", - "parameter": "gov.abolitions.pre_subsidy_childcare_expenses", - "description": "Set all values of Pre subsidy child care expenses to zero.", - "label": "Abolish Pre subsidy child care expenses", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.childcare_hours_per_week": { - "type": "parameter", - "parameter": "gov.abolitions.childcare_hours_per_week", - "description": "Set all values of Child care hours per week to zero.", - "label": "Abolish Child care hours per week", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tax_unit_childcare_expenses": { - "type": "parameter", - "parameter": "gov.abolitions.tax_unit_childcare_expenses", - "description": "Set all values of Childcare expenses to zero.", - "label": "Abolish Childcare expenses", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.childcare_expenses": { - "type": "parameter", - "parameter": "gov.abolitions.childcare_expenses", - "description": "Set all values of Child care expenses to zero.", - "label": "Abolish Child care expenses", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.spm_unit_payroll_tax": { - "type": "parameter", - "parameter": "gov.abolitions.spm_unit_payroll_tax", - "description": "Set all values of Payroll tax to zero.", - "label": "Abolish Payroll tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.spm_unit_state_tax": { - "type": "parameter", - "parameter": "gov.abolitions.spm_unit_state_tax", - "description": "Set all values of State income tax to zero.", - "label": "Abolish State income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.spm_unit_federal_tax": { - "type": "parameter", - "parameter": "gov.abolitions.spm_unit_federal_tax", - "description": "Set all values of Federal income tax to zero.", - "label": "Abolish Federal income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.spm_unit_self_employment_tax": { - "type": "parameter", - "parameter": "gov.abolitions.spm_unit_self_employment_tax", - "description": "Set all values of Self employment tax to zero.", - "label": "Abolish Self employment tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.utility_expense": { - "type": "parameter", - "parameter": "gov.abolitions.utility_expense", - "description": "Set all values of Utility expenses to zero.", - "label": "Abolish Utility expenses", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.has_heating_cooling_expense": { - "type": "parameter", - "parameter": "gov.abolitions.has_heating_cooling_expense", - "description": "Set all values of Has heating/cooling costs to zero.", - "label": "Abolish Has heating/cooling costs", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.count_distinct_utility_expenses": { - "type": "parameter", - "parameter": "gov.abolitions.count_distinct_utility_expenses", - "description": "Set all values of Number of distinct utility expenses to zero.", - "label": "Abolish Number of distinct utility expenses", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.has_phone_expense": { - "type": "parameter", - "parameter": "gov.abolitions.has_phone_expense", - "description": "Set all values of Has phone costs to zero.", - "label": "Abolish Has phone costs", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.phone_expense": { - "type": "parameter", - "parameter": "gov.abolitions.phone_expense", - "description": "Set all values of Phone expense to zero.", - "label": "Abolish Phone expense", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.electricity_expense": { - "type": "parameter", - "parameter": "gov.abolitions.electricity_expense", - "description": "Set all values of Electricity expense to zero.", - "label": "Abolish Electricity expense", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.rent": { - "type": "parameter", - "parameter": "gov.abolitions.rent", - "description": "Set all values of Rent to zero.", - "label": "Abolish Rent", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.rents": { - "type": "parameter", - "parameter": "gov.abolitions.rents", - "description": "Set all values of Tax unit pays rent to zero.", - "label": "Abolish Tax unit pays rent", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.housing_cost": { - "type": "parameter", - "parameter": "gov.abolitions.housing_cost", - "description": "Set all values of Housing cost to zero.", - "label": "Abolish Housing cost", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.heating_expenses": { - "type": "parameter", - "parameter": "gov.abolitions.heating_expenses", - "description": "Set all values of Tax unit heating cost to zero.", - "label": "Abolish Tax unit heating cost", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.health_insurance_premiums": { - "type": "parameter", - "parameter": "gov.abolitions.health_insurance_premiums", - "description": "Set all values of Health insurance premiums to zero.", - "label": "Abolish Health insurance premiums", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.medical_out_of_pocket_expenses": { - "type": "parameter", - "parameter": "gov.abolitions.medical_out_of_pocket_expenses", - "description": "Set all values of Medical out of pocket expenses to zero.", - "label": "Abolish Medical out of pocket expenses", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.self_employed_health_insurance_premiums": { - "type": "parameter", - "parameter": "gov.abolitions.self_employed_health_insurance_premiums", - "description": "Set all values of Self-employed health insurance premiums to zero.", - "label": "Abolish Self-employed health insurance premiums", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.able_contributions": { - "type": "parameter", - "parameter": "gov.abolitions.able_contributions", - "description": "Set all values of ABLE contributions to zero.", - "label": "Abolish ABLE contributions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.fsla_overtime_salary_threshold": { - "type": "parameter", - "parameter": "gov.abolitions.fsla_overtime_salary_threshold", - "description": "Set all values of FSLA applicable salary threshold to determine eligibility for overtime pay to zero.", - "label": "Abolish FSLA applicable salary threshold to determine eligibility for overtime pay", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.spouse_separate_adjusted_gross_income": { - "type": "parameter", - "parameter": "gov.abolitions.spouse_separate_adjusted_gross_income", - "description": "Set all values of Spouse's tax unit's adjusted gross income if they file separately to zero.", - "label": "Abolish Spouse's tax unit's adjusted gross income if they file separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.net_capital_gains": { - "type": "parameter", - "parameter": "gov.abolitions.net_capital_gains", - "description": "Set all values of Net capital gains before loss limitation to zero.", - "label": "Abolish Net capital gains before loss limitation", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.equiv_household_net_income": { - "type": "parameter", - "parameter": "gov.abolitions.equiv_household_net_income", - "description": "Set all values of equivalised net income to zero.", - "label": "Abolish equivalised net income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.household_income_decile": { - "type": "parameter", - "parameter": "gov.abolitions.household_income_decile", - "description": "Set all values of household income decile to zero.", - "label": "Abolish household income decile", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.household_net_income": { - "type": "parameter", - "parameter": "gov.abolitions.household_net_income", - "description": "Set all values of net income to zero.", - "label": "Abolish net income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.household_benefits": { - "type": "parameter", - "parameter": "gov.abolitions.household_benefits", - "description": "Set all values of benefits to zero.", - "label": "Abolish benefits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.household_refundable_state_tax_credits": { - "type": "parameter", - "parameter": "gov.abolitions.household_refundable_state_tax_credits", - "description": "Set all values of refundable State income tax credits to zero.", - "label": "Abolish refundable State income tax credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.household_health_benefits": { - "type": "parameter", - "parameter": "gov.abolitions.household_health_benefits", - "description": "Set all values of Household health benefits to zero.", - "label": "Abolish Household health benefits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.household_refundable_tax_credits": { - "type": "parameter", - "parameter": "gov.abolitions.household_refundable_tax_credits", - "description": "Set all values of refundable tax credits to zero.", - "label": "Abolish refundable tax credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.income_decile": { - "type": "parameter", - "parameter": "gov.abolitions.income_decile", - "description": "Set all values of income decile to zero.", - "label": "Abolish income decile", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.household_tax_before_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.household_tax_before_refundable_credits", - "description": "Set all values of total tax before refundable credits to zero.", - "label": "Abolish total tax before refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.person_in_poverty": { - "type": "parameter", - "parameter": "gov.abolitions.person_in_poverty", - "description": "Set all values of person in poverty to zero.", - "label": "Abolish person in poverty", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.household_count_people": { - "type": "parameter", - "parameter": "gov.abolitions.household_count_people", - "description": "Set all values of Number of people to zero.", - "label": "Abolish Number of people", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.household_market_income": { - "type": "parameter", - "parameter": "gov.abolitions.household_market_income", - "description": "Set all values of market income to zero.", - "label": "Abolish market income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.household_tax": { - "type": "parameter", - "parameter": "gov.abolitions.household_tax", - "description": "Set all values of total tax after refundable credits to zero.", - "label": "Abolish total tax after refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.household_state_tax_before_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.household_state_tax_before_refundable_credits", - "description": "Set all values of household State tax before refundable credits to zero.", - "label": "Abolish household State tax before refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.household_state_benefits": { - "type": "parameter", - "parameter": "gov.abolitions.household_state_benefits", - "description": "Set all values of Household state benefits to zero.", - "label": "Abolish Household state benefits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.household_local_benefits": { - "type": "parameter", - "parameter": "gov.abolitions.household_local_benefits", - "description": "Set all values of Household local benefits to zero.", - "label": "Abolish Household local benefits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.household_state_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.household_state_income_tax", - "description": "Set all values of household State tax to zero.", - "label": "Abolish household State tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_eligible_for_fsla_overtime": { - "type": "parameter", - "parameter": "gov.abolitions.is_eligible_for_fsla_overtime", - "description": "Set all values of is eligible for overtime pay to zero.", - "label": "Abolish is eligible for overtime pay", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.weekly_hours_worked": { - "type": "parameter", - "parameter": "gov.abolitions.weekly_hours_worked", - "description": "Set all values of average weekly hours worked to zero.", - "label": "Abolish average weekly hours worked", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.weekly_hours_worked_behavioural_response_income_elasticity": { - "type": "parameter", - "parameter": "gov.abolitions.weekly_hours_worked_behavioural_response_income_elasticity", - "description": "Set all values of behavioural response in weekly hours worked (income effect) to zero.", - "label": "Abolish behavioural response in weekly hours worked (income effect)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.weekly_hours_worked_behavioural_response_substitution_elasticity": { - "type": "parameter", - "parameter": "gov.abolitions.weekly_hours_worked_behavioural_response_substitution_elasticity", - "description": "Set all values of behavioural response in weekly hours worked (substitution effect) to zero.", - "label": "Abolish behavioural response in weekly hours worked (substitution effect)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.weekly_hours_worked_behavioural_response": { - "type": "parameter", - "parameter": "gov.abolitions.weekly_hours_worked_behavioural_response", - "description": "Set all values of behavioural response in weekly hours worked to zero.", - "label": "Abolish behavioural response in weekly hours worked", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.fsla_overtime_premium": { - "type": "parameter", - "parameter": "gov.abolitions.fsla_overtime_premium", - "description": "Set all values of premium income from overtime hours worked to zero.", - "label": "Abolish premium income from overtime hours worked", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.employment_income_last_year": { - "type": "parameter", - "parameter": "gov.abolitions.employment_income_last_year", - "description": "Set all values of employment income last year to zero.", - "label": "Abolish employment income last year", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.interest_income": { - "type": "parameter", - "parameter": "gov.abolitions.interest_income", - "description": "Set all values of interest income to zero.", - "label": "Abolish interest income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dividend_income": { - "type": "parameter", - "parameter": "gov.abolitions.dividend_income", - "description": "Set all values of ordinary dividend income to zero.", - "label": "Abolish ordinary dividend income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.capital_gains": { - "type": "parameter", - "parameter": "gov.abolitions.capital_gains", - "description": "Set all values of Capital gains (both short-term and long-term) to zero.", - "label": "Abolish Capital gains (both short-term and long-term)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.long_term_capital_gains": { - "type": "parameter", - "parameter": "gov.abolitions.long_term_capital_gains", - "description": "Set all values of long-term capital gains to zero.", - "label": "Abolish long-term capital gains", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.capital_losses": { - "type": "parameter", - "parameter": "gov.abolitions.capital_losses", - "description": "Set all values of Capital losses (expressed as a non-negative number) to zero.", - "label": "Abolish Capital losses (expressed as a non-negative number)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxable_retirement_distributions": { - "type": "parameter", - "parameter": "gov.abolitions.taxable_retirement_distributions", - "description": "Set all values of Taxable retirement account distributions to zero.", - "label": "Abolish Taxable retirement account distributions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.retirement_distributions": { - "type": "parameter", - "parameter": "gov.abolitions.retirement_distributions", - "description": "Set all values of Retirement account distributions to zero.", - "label": "Abolish Retirement account distributions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.private_pension_income": { - "type": "parameter", - "parameter": "gov.abolitions.private_pension_income", - "description": "Set all values of private pension income to zero.", - "label": "Abolish private pension income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tax_exempt_retirement_distributions": { - "type": "parameter", - "parameter": "gov.abolitions.tax_exempt_retirement_distributions", - "description": "Set all values of Tax-exempt retirement account distributions to zero.", - "label": "Abolish Tax-exempt retirement account distributions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.public_pension_income": { - "type": "parameter", - "parameter": "gov.abolitions.public_pension_income", - "description": "Set all values of public pension income to zero.", - "label": "Abolish public pension income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.sep_distributions": { - "type": "parameter", - "parameter": "gov.abolitions.sep_distributions", - "description": "Set all values of SEP distributions to zero.", - "label": "Abolish SEP distributions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pension_income": { - "type": "parameter", - "parameter": "gov.abolitions.pension_income", - "description": "Set all values of pension income to zero.", - "label": "Abolish pension income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tax_exempt_pension_income": { - "type": "parameter", - "parameter": "gov.abolitions.tax_exempt_pension_income", - "description": "Set all values of tax-exempt pension income to zero.", - "label": "Abolish tax-exempt pension income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxable_pension_income": { - "type": "parameter", - "parameter": "gov.abolitions.taxable_pension_income", - "description": "Set all values of taxable pension income to zero.", - "label": "Abolish taxable pension income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.market_income": { - "type": "parameter", - "parameter": "gov.abolitions.market_income", - "description": "Set all values of Market income to zero.", - "label": "Abolish Market income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.deep_poverty_line": { - "type": "parameter", - "parameter": "gov.abolitions.deep_poverty_line", - "description": "Set all values of deep poverty line to zero.", - "label": "Abolish deep poverty line", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.spm_unit_state_fips": { - "type": "parameter", - "parameter": "gov.abolitions.spm_unit_state_fips", - "description": "Set all values of SPM unit state FIPS code to zero.", - "label": "Abolish SPM unit state FIPS code", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.spm_unit_energy_subsidy": { - "type": "parameter", - "parameter": "gov.abolitions.spm_unit_energy_subsidy", - "description": "Set all values of SPM unit school energy subsidy to zero.", - "label": "Abolish SPM unit school energy subsidy", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.poverty_gap": { - "type": "parameter", - "parameter": "gov.abolitions.poverty_gap", - "description": "Set all values of poverty gap to zero.", - "label": "Abolish poverty gap", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.spm_unit_taxes": { - "type": "parameter", - "parameter": "gov.abolitions.spm_unit_taxes", - "description": "Set all values of Taxes to zero.", - "label": "Abolish Taxes", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.spm_unit_broadband_subsidy": { - "type": "parameter", - "parameter": "gov.abolitions.spm_unit_broadband_subsidy", - "description": "Set all values of SPM unit broadband subsidy to zero.", - "label": "Abolish SPM unit broadband subsidy", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.spm_unit_oecd_equiv_net_income": { - "type": "parameter", - "parameter": "gov.abolitions.spm_unit_oecd_equiv_net_income", - "description": "Set all values of Equivalised income to zero.", - "label": "Abolish Equivalised income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.spm_unit_paycheck_withholdings": { - "type": "parameter", - "parameter": "gov.abolitions.spm_unit_paycheck_withholdings", - "description": "Set all values of Paycheck withholdings of the SPM unit to zero.", - "label": "Abolish Paycheck withholdings of the SPM unit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.spm_unit_net_income": { - "type": "parameter", - "parameter": "gov.abolitions.spm_unit_net_income", - "description": "Set all values of Net income to zero.", - "label": "Abolish Net income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.in_poverty": { - "type": "parameter", - "parameter": "gov.abolitions.in_poverty", - "description": "Set all values of in poverty to zero.", - "label": "Abolish in poverty", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.spm_unit_market_income": { - "type": "parameter", - "parameter": "gov.abolitions.spm_unit_market_income", - "description": "Set all values of Market income to zero.", - "label": "Abolish Market income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.deep_poverty_gap": { - "type": "parameter", - "parameter": "gov.abolitions.deep_poverty_gap", - "description": "Set all values of deep poverty gap to zero.", - "label": "Abolish deep poverty gap", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.in_deep_poverty": { - "type": "parameter", - "parameter": "gov.abolitions.in_deep_poverty", - "description": "Set all values of in deep poverty to zero.", - "label": "Abolish in deep poverty", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.poverty_line": { - "type": "parameter", - "parameter": "gov.abolitions.poverty_line", - "description": "Set all values of poverty line to zero.", - "label": "Abolish poverty line", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.spm_unit_spm_expenses": { - "type": "parameter", - "parameter": "gov.abolitions.spm_unit_spm_expenses", - "description": "Set all values of SPM unit's SPM expenses (other than taxes) to zero.", - "label": "Abolish SPM unit's SPM expenses (other than taxes)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.spm_unit_capped_housing_subsidy": { - "type": "parameter", - "parameter": "gov.abolitions.spm_unit_capped_housing_subsidy", - "description": "Set all values of Housing subsidies to zero.", - "label": "Abolish Housing subsidies", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.spm_unit_benefits": { - "type": "parameter", - "parameter": "gov.abolitions.spm_unit_benefits", - "description": "Set all values of Benefits to zero.", - "label": "Abolish Benefits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.spm_unit_pell_grant": { - "type": "parameter", - "parameter": "gov.abolitions.spm_unit_pell_grant", - "description": "Set all values of Pell Grant amount to zero.", - "label": "Abolish Pell Grant amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.spm_unit_is_in_spm_poverty": { - "type": "parameter", - "parameter": "gov.abolitions.spm_unit_is_in_spm_poverty", - "description": "Set all values of SPM unit in SPM poverty to zero.", - "label": "Abolish SPM unit in SPM poverty", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.spm_unit_wic": { - "type": "parameter", - "parameter": "gov.abolitions.spm_unit_wic", - "description": "Set all values of SPM unit WIC to zero.", - "label": "Abolish SPM unit WIC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.spm_unit_income_decile": { - "type": "parameter", - "parameter": "gov.abolitions.spm_unit_income_decile", - "description": "Set all values of Income decile to zero.", - "label": "Abolish Income decile", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.spm_unit_is_in_deep_spm_poverty": { - "type": "parameter", - "parameter": "gov.abolitions.spm_unit_is_in_deep_spm_poverty", - "description": "Set all values of SPM unit in deep SPM poverty to zero.", - "label": "Abolish SPM unit in deep SPM poverty", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.medicaid_rating_area": { - "type": "parameter", - "parameter": "gov.abolitions.medicaid_rating_area", - "description": "Set all values of Medicaid rating area to zero.", - "label": "Abolish Medicaid rating area", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.self_employment_income": { - "type": "parameter", - "parameter": "gov.abolitions.self_employment_income", - "description": "Set all values of self-employment income to zero.", - "label": "Abolish self-employment income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.employment_income": { - "type": "parameter", - "parameter": "gov.abolitions.employment_income", - "description": "Set all values of employment income to zero.", - "label": "Abolish employment income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.federal_state_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.federal_state_income_tax", - "description": "Set all values of Total federal and state income tax to zero.", - "label": "Abolish Total federal and state income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tax_unit_is_filer": { - "type": "parameter", - "parameter": "gov.abolitions.tax_unit_is_filer", - "description": "Set all values of files taxes to zero.", - "label": "Abolish files taxes", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tax_unit_is_joint": { - "type": "parameter", - "parameter": "gov.abolitions.tax_unit_is_joint", - "description": "Set all values of Is joint-filing tax unit to zero.", - "label": "Abolish Is joint-filing tax unit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.head_spouse_count": { - "type": "parameter", - "parameter": "gov.abolitions.head_spouse_count", - "description": "Set all values of Head and spouse count to zero.", - "label": "Abolish Head and spouse count", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tax_unit_count_dependents": { - "type": "parameter", - "parameter": "gov.abolitions.tax_unit_count_dependents", - "description": "Set all values of Number of dependents to zero.", - "label": "Abolish Number of dependents", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tax_unit_size": { - "type": "parameter", - "parameter": "gov.abolitions.tax_unit_size", - "description": "Set all values of Tax unit size to zero.", - "label": "Abolish Tax unit size", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.income_tax_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.income_tax_refundable_credits", - "description": "Set all values of federal refundable income tax credits to zero.", - "label": "Abolish federal refundable income tax credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.income_tax_capped_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.income_tax_capped_non_refundable_credits", - "description": "Set all values of non-refundable tax credits to zero.", - "label": "Abolish non-refundable tax credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.income_tax_unavailable_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.income_tax_unavailable_non_refundable_credits", - "description": "Set all values of unavailable non-refundable tax credits to zero.", - "label": "Abolish unavailable non-refundable tax credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.income_tax_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.income_tax_non_refundable_credits", - "description": "Set all values of federal non-refundable income tax credits to zero.", - "label": "Abolish federal non-refundable income tax credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.capped_home_energy_audit_credit": { - "type": "parameter", - "parameter": "gov.abolitions.capped_home_energy_audit_credit", - "description": "Set all values of Capped home energy audit credit to zero.", - "label": "Abolish Capped home energy audit credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.energy_efficient_home_improvement_credit": { - "type": "parameter", - "parameter": "gov.abolitions.energy_efficient_home_improvement_credit", - "description": "Set all values of Energy efficient home improvement credit to zero.", - "label": "Abolish Energy efficient home improvement credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.energy_efficient_home_improvement_credit_credit_limit": { - "type": "parameter", - "parameter": "gov.abolitions.energy_efficient_home_improvement_credit_credit_limit", - "description": "Set all values of Energy efficient home improvement credit credit limit to zero.", - "label": "Abolish Energy efficient home improvement credit credit limit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.energy_efficient_home_improvement_credit_potential": { - "type": "parameter", - "parameter": "gov.abolitions.energy_efficient_home_improvement_credit_potential", - "description": "Set all values of Potential value of the Energy efficient home improvement credit to zero.", - "label": "Abolish Potential value of the Energy efficient home improvement credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.capped_energy_efficient_door_credit": { - "type": "parameter", - "parameter": "gov.abolitions.capped_energy_efficient_door_credit", - "description": "Set all values of Capped energy-efficient exterior door credit to zero.", - "label": "Abolish Capped energy-efficient exterior door credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.capped_energy_efficient_roof_credit": { - "type": "parameter", - "parameter": "gov.abolitions.capped_energy_efficient_roof_credit", - "description": "Set all values of Capped credit on energy-efficient roof credit to zero.", - "label": "Abolish Capped credit on energy-efficient roof credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.capped_energy_efficient_window_credit": { - "type": "parameter", - "parameter": "gov.abolitions.capped_energy_efficient_window_credit", - "description": "Set all values of Capped energy efficient window credit to zero.", - "label": "Abolish Capped energy efficient window credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.capped_energy_efficient_insulation_credit": { - "type": "parameter", - "parameter": "gov.abolitions.capped_energy_efficient_insulation_credit", - "description": "Set all values of Capped energy efficient insulation credit to zero.", - "label": "Abolish Capped energy efficient insulation credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.capped_advanced_main_air_circulating_fan_credit": { - "type": "parameter", - "parameter": "gov.abolitions.capped_advanced_main_air_circulating_fan_credit", - "description": "Set all values of Capped advanced main air circulating fan credit to zero.", - "label": "Abolish Capped advanced main air circulating fan credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.capped_energy_efficient_central_air_conditioner_credit": { - "type": "parameter", - "parameter": "gov.abolitions.capped_energy_efficient_central_air_conditioner_credit", - "description": "Set all values of Capped energy efficient central air conditioner credit to zero.", - "label": "Abolish Capped energy efficient central air conditioner credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.capped_heat_pump_heat_pump_water_heater_biomass_stove_boiler_credit": { - "type": "parameter", - "parameter": "gov.abolitions.capped_heat_pump_heat_pump_water_heater_biomass_stove_boiler_credit", - "description": "Set all values of Capped credit on heat pumps, heat pump water heaters, and biomass stoves and boilers to zero.", - "label": "Abolish Capped credit on heat pumps, heat pump water heaters, and biomass stoves and boilers", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.capped_qualified_furnace_or_hot_water_boiler_credit": { - "type": "parameter", - "parameter": "gov.abolitions.capped_qualified_furnace_or_hot_water_boiler_credit", - "description": "Set all values of Capped qualified furnace or hot water boiler credit to zero.", - "label": "Abolish Capped qualified furnace or hot water boiler credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.lifetime_learning_credit_potential": { - "type": "parameter", - "parameter": "gov.abolitions.lifetime_learning_credit_potential", - "description": "Set all values of Potential value of the Lifetime Learning Credit to zero.", - "label": "Abolish Potential value of the Lifetime Learning Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.education_credit_phase_out": { - "type": "parameter", - "parameter": "gov.abolitions.education_credit_phase_out", - "description": "Set all values of Education credit phase-out to zero.", - "label": "Abolish Education credit phase-out", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.lifetime_learning_credit": { - "type": "parameter", - "parameter": "gov.abolitions.lifetime_learning_credit", - "description": "Set all values of Lifetime Learning Credit to zero.", - "label": "Abolish Lifetime Learning Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.education_tax_credits": { - "type": "parameter", - "parameter": "gov.abolitions.education_tax_credits", - "description": "Set all values of Education tax credits to zero.", - "label": "Abolish Education tax credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.lifetime_learning_credit_credit_limit": { - "type": "parameter", - "parameter": "gov.abolitions.lifetime_learning_credit_credit_limit", - "description": "Set all values of Lifetime Learning Credit credit limit to zero.", - "label": "Abolish Lifetime Learning Credit credit limit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.non_refundable_american_opportunity_credit": { - "type": "parameter", - "parameter": "gov.abolitions.non_refundable_american_opportunity_credit", - "description": "Set all values of Non-refundable American Opportunity Credit to zero.", - "label": "Abolish Non-refundable American Opportunity Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.non_refundable_american_opportunity_credit_potential": { - "type": "parameter", - "parameter": "gov.abolitions.non_refundable_american_opportunity_credit_potential", - "description": "Set all values of Potential value of the Non-refundable American Opportunity Credit to zero.", - "label": "Abolish Potential value of the Non-refundable American Opportunity Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.refundable_american_opportunity_credit": { - "type": "parameter", - "parameter": "gov.abolitions.refundable_american_opportunity_credit", - "description": "Set all values of Refundable American Opportunity Credit to zero.", - "label": "Abolish Refundable American Opportunity Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.non_refundable_american_opportunity_credit_credit_limit": { - "type": "parameter", - "parameter": "gov.abolitions.non_refundable_american_opportunity_credit_credit_limit", - "description": "Set all values of Non-refundable American Opportunity Credit credit limit to zero.", - "label": "Abolish Non-refundable American Opportunity Credit credit limit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.american_opportunity_credit": { - "type": "parameter", - "parameter": "gov.abolitions.american_opportunity_credit", - "description": "Set all values of American Opportunity Credit to zero.", - "label": "Abolish American Opportunity Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.new_clean_vehicle_credit_potential": { - "type": "parameter", - "parameter": "gov.abolitions.new_clean_vehicle_credit_potential", - "description": "Set all values of Potential value of the New clean vehicle credit to zero.", - "label": "Abolish Potential value of the New clean vehicle credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.new_clean_vehicle_credit": { - "type": "parameter", - "parameter": "gov.abolitions.new_clean_vehicle_credit", - "description": "Set all values of New clean vehicle credit to zero.", - "label": "Abolish New clean vehicle credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.new_clean_vehicle_credit_credit_limit": { - "type": "parameter", - "parameter": "gov.abolitions.new_clean_vehicle_credit_credit_limit", - "description": "Set all values of New clean vehicle credit credit limit to zero.", - "label": "Abolish New clean vehicle credit credit limit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.new_clean_vehicle_credit_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.new_clean_vehicle_credit_eligible", - "description": "Set all values of Eligible for new clean vehicle credit to zero.", - "label": "Abolish Eligible for new clean vehicle credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.used_clean_vehicle_credit_potential": { - "type": "parameter", - "parameter": "gov.abolitions.used_clean_vehicle_credit_potential", - "description": "Set all values of Potential value of the Used clean vehicle credit to zero.", - "label": "Abolish Potential value of the Used clean vehicle credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.used_clean_vehicle_credit_credit_limit": { - "type": "parameter", - "parameter": "gov.abolitions.used_clean_vehicle_credit_credit_limit", - "description": "Set all values of Used clean vehicle credit credit limit to zero.", - "label": "Abolish Used clean vehicle credit credit limit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.used_clean_vehicle_credit": { - "type": "parameter", - "parameter": "gov.abolitions.used_clean_vehicle_credit", - "description": "Set all values of Used clean vehicle credit to zero.", - "label": "Abolish Used clean vehicle credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.used_clean_vehicle_credit_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.used_clean_vehicle_credit_eligible", - "description": "Set all values of Eligible for used clean vehicle credit to zero.", - "label": "Abolish Eligible for used clean vehicle credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ctc_value": { - "type": "parameter", - "parameter": "gov.abolitions.ctc_value", - "description": "Set all values of CTC value to zero.", - "label": "Abolish CTC value", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ctc": { - "type": "parameter", - "parameter": "gov.abolitions.ctc", - "description": "Set all values of Child Tax Credit to zero.", - "label": "Abolish Child Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.non_refundable_ctc": { - "type": "parameter", - "parameter": "gov.abolitions.non_refundable_ctc", - "description": "Set all values of non-refundable CTC to zero.", - "label": "Abolish non-refundable CTC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ctc_social_security_tax": { - "type": "parameter", - "parameter": "gov.abolitions.ctc_social_security_tax", - "description": "Set all values of Refundable Child Tax Credit Social Security Tax to zero.", - "label": "Abolish Refundable Child Tax Credit Social Security Tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ctc_limiting_tax_liability": { - "type": "parameter", - "parameter": "gov.abolitions.ctc_limiting_tax_liability", - "description": "Set all values of CTC-limiting tax liability to zero.", - "label": "Abolish CTC-limiting tax liability", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ctc_refundable_maximum": { - "type": "parameter", - "parameter": "gov.abolitions.ctc_refundable_maximum", - "description": "Set all values of Maximum refundable CTC to zero.", - "label": "Abolish Maximum refundable CTC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.refundable_ctc": { - "type": "parameter", - "parameter": "gov.abolitions.refundable_ctc", - "description": "Set all values of refundable CTC to zero.", - "label": "Abolish refundable CTC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ctc_phase_in": { - "type": "parameter", - "parameter": "gov.abolitions.ctc_phase_in", - "description": "Set all values of CTC phase-in to zero.", - "label": "Abolish CTC phase-in", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ctc_qualifying_children": { - "type": "parameter", - "parameter": "gov.abolitions.ctc_qualifying_children", - "description": "Set all values of CTC-qualifying children to zero.", - "label": "Abolish CTC-qualifying children", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ctc_maximum": { - "type": "parameter", - "parameter": "gov.abolitions.ctc_maximum", - "description": "Set all values of Maximum CTC to zero.", - "label": "Abolish Maximum CTC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ctc_maximum_with_arpa_addition": { - "type": "parameter", - "parameter": "gov.abolitions.ctc_maximum_with_arpa_addition", - "description": "Set all values of Maximum CTC for ARPA to zero.", - "label": "Abolish Maximum CTC for ARPA", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ctc_qualifying_child": { - "type": "parameter", - "parameter": "gov.abolitions.ctc_qualifying_child", - "description": "Set all values of CTC-qualifying child to zero.", - "label": "Abolish CTC-qualifying child", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ctc_adult_individual_maximum": { - "type": "parameter", - "parameter": "gov.abolitions.ctc_adult_individual_maximum", - "description": "Set all values of CTC maximum amount (adult dependent) to zero.", - "label": "Abolish CTC maximum amount (adult dependent)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.meets_ctc_identification_requirements": { - "type": "parameter", - "parameter": "gov.abolitions.meets_ctc_identification_requirements", - "description": "Set all values of Person meets CTC identification requirements to zero.", - "label": "Abolish Person meets CTC identification requirements", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.filer_meets_ctc_identification_requirements": { - "type": "parameter", - "parameter": "gov.abolitions.filer_meets_ctc_identification_requirements", - "description": "Set all values of Filer meets CTC identification requirements to zero.", - "label": "Abolish Filer meets CTC identification requirements", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.meets_ctc_child_identification_requirements": { - "type": "parameter", - "parameter": "gov.abolitions.meets_ctc_child_identification_requirements", - "description": "Set all values of Child meets CTC identification requirements to zero.", - "label": "Abolish Child meets CTC identification requirements", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ctc_child_individual_maximum_arpa": { - "type": "parameter", - "parameter": "gov.abolitions.ctc_child_individual_maximum_arpa", - "description": "Set all values of CTC maximum amount (child under ARPA) to zero.", - "label": "Abolish CTC maximum amount (child under ARPA)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ctc_child_individual_maximum": { - "type": "parameter", - "parameter": "gov.abolitions.ctc_child_individual_maximum", - "description": "Set all values of CTC maximum amount (child) to zero.", - "label": "Abolish CTC maximum amount (child)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ctc_individual_maximum": { - "type": "parameter", - "parameter": "gov.abolitions.ctc_individual_maximum", - "description": "Set all values of CTC individual amount maximum to zero.", - "label": "Abolish CTC individual amount maximum", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ctc_phase_out": { - "type": "parameter", - "parameter": "gov.abolitions.ctc_phase_out", - "description": "Set all values of CTC reduction from income to zero.", - "label": "Abolish CTC reduction from income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ctc_phase_out_threshold": { - "type": "parameter", - "parameter": "gov.abolitions.ctc_phase_out_threshold", - "description": "Set all values of CTC phase-out threshold to zero.", - "label": "Abolish CTC phase-out threshold", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ctc_arpa_max_addition": { - "type": "parameter", - "parameter": "gov.abolitions.ctc_arpa_max_addition", - "description": "Set all values of Maximum additional CTC from ARPA to zero.", - "label": "Abolish Maximum additional CTC from ARPA", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ctc_arpa_phase_out_threshold": { - "type": "parameter", - "parameter": "gov.abolitions.ctc_arpa_phase_out_threshold", - "description": "Set all values of CTC ARPA phase-out threshold to zero.", - "label": "Abolish CTC ARPA phase-out threshold", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ctc_arpa_uncapped_phase_out": { - "type": "parameter", - "parameter": "gov.abolitions.ctc_arpa_uncapped_phase_out", - "description": "Set all values of Uncapped phase-out of ARPA CTC increase to zero.", - "label": "Abolish Uncapped phase-out of ARPA CTC increase", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ctc_arpa_phase_out": { - "type": "parameter", - "parameter": "gov.abolitions.ctc_arpa_phase_out", - "description": "Set all values of Phase-out of CTC ARPA addition to zero.", - "label": "Abolish Phase-out of CTC ARPA addition", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ctc_arpa_phase_out_cap": { - "type": "parameter", - "parameter": "gov.abolitions.ctc_arpa_phase_out_cap", - "description": "Set all values of Cap on phase-out of ARPA CTC expansion to zero.", - "label": "Abolish Cap on phase-out of ARPA CTC expansion", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ctc_arpa_addition": { - "type": "parameter", - "parameter": "gov.abolitions.ctc_arpa_addition", - "description": "Set all values of Additional CTC from ARPA to zero.", - "label": "Abolish Additional CTC from ARPA", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.rrc_caa": { - "type": "parameter", - "parameter": "gov.abolitions.rrc_caa", - "description": "Set all values of Recovery Rebate Credit (CAA) to zero.", - "label": "Abolish Recovery Rebate Credit (CAA)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.rrc_arpa": { - "type": "parameter", - "parameter": "gov.abolitions.rrc_arpa", - "description": "Set all values of Recovery Rebate Credit (ARPA) to zero.", - "label": "Abolish Recovery Rebate Credit (ARPA)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.recovery_rebate_credit": { - "type": "parameter", - "parameter": "gov.abolitions.recovery_rebate_credit", - "description": "Set all values of Recovery Rebate Credit to zero.", - "label": "Abolish Recovery Rebate Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.rrc_cares": { - "type": "parameter", - "parameter": "gov.abolitions.rrc_cares", - "description": "Set all values of Recovery Rebate Credit (CARES) to zero.", - "label": "Abolish Recovery Rebate Credit (CARES)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.foreign_tax_credit_credit_limit": { - "type": "parameter", - "parameter": "gov.abolitions.foreign_tax_credit_credit_limit", - "description": "Set all values of Foreign tax credit credit limit to zero.", - "label": "Abolish Foreign tax credit credit limit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.foreign_tax_credit": { - "type": "parameter", - "parameter": "gov.abolitions.foreign_tax_credit", - "description": "Set all values of Foreign tax credit to zero.", - "label": "Abolish Foreign tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.spouse_earned": { - "type": "parameter", - "parameter": "gov.abolitions.spouse_earned", - "description": "Set all values of Spouse's adjusted earnings to zero.", - "label": "Abolish Spouse's adjusted earnings", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.cdcc_rate": { - "type": "parameter", - "parameter": "gov.abolitions.cdcc_rate", - "description": "Set all values of CDCC credit rate to zero.", - "label": "Abolish CDCC credit rate", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.cdcc_credit_limit": { - "type": "parameter", - "parameter": "gov.abolitions.cdcc_credit_limit", - "description": "Set all values of Child/dependent care credit credit limit to zero.", - "label": "Abolish Child/dependent care credit credit limit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.capped_count_cdcc_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.capped_count_cdcc_eligible", - "description": "Set all values of Capped child/dependent care eligiable count to zero.", - "label": "Abolish Capped child/dependent care eligiable count", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.cdcc": { - "type": "parameter", - "parameter": "gov.abolitions.cdcc", - "description": "Set all values of Child/dependent care credit to zero.", - "label": "Abolish Child/dependent care credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.capped_cdcc": { - "type": "parameter", - "parameter": "gov.abolitions.capped_cdcc", - "description": "Set all values of Capped child/dependent care credit to zero.", - "label": "Abolish Capped child/dependent care credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.count_cdcc_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.count_cdcc_eligible", - "description": "Set all values of CDCC-eligible children to zero.", - "label": "Abolish CDCC-eligible children", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.cdcc_potential": { - "type": "parameter", - "parameter": "gov.abolitions.cdcc_potential", - "description": "Set all values of Potential value of the Child/dependent care credit to zero.", - "label": "Abolish Potential value of the Child/dependent care credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_cdcc_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.is_cdcc_eligible", - "description": "Set all values of CDCC-eligible to zero.", - "label": "Abolish CDCC-eligible", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.head_earned": { - "type": "parameter", - "parameter": "gov.abolitions.head_earned", - "description": "Set all values of Head's adjusted earnings to zero.", - "label": "Abolish Head's adjusted earnings", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.cdcc_limit": { - "type": "parameter", - "parameter": "gov.abolitions.cdcc_limit", - "description": "Set all values of CDCC-relevant care expense limit to zero.", - "label": "Abolish CDCC-relevant care expense limit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.cdcc_relevant_expenses": { - "type": "parameter", - "parameter": "gov.abolitions.cdcc_relevant_expenses", - "description": "Set all values of CDCC-relevant care expenses to zero.", - "label": "Abolish CDCC-relevant care expenses", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.min_head_spouse_earned": { - "type": "parameter", - "parameter": "gov.abolitions.min_head_spouse_earned", - "description": "Set all values of Less of head and spouse's earnings to zero.", - "label": "Abolish Less of head and spouse's earnings", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.residential_clean_energy_credit": { - "type": "parameter", - "parameter": "gov.abolitions.residential_clean_energy_credit", - "description": "Set all values of Residential clean energy credit to zero.", - "label": "Abolish Residential clean energy credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.residential_clean_energy_credit_potential": { - "type": "parameter", - "parameter": "gov.abolitions.residential_clean_energy_credit_potential", - "description": "Set all values of Potential value of the Residential clean energy credit to zero.", - "label": "Abolish Potential value of the Residential clean energy credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.residential_clean_energy_credit_credit_limit": { - "type": "parameter", - "parameter": "gov.abolitions.residential_clean_energy_credit_credit_limit", - "description": "Set all values of Residential clean energy credit credit limit to zero.", - "label": "Abolish Residential clean energy credit credit limit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.savers_credit_person": { - "type": "parameter", - "parameter": "gov.abolitions.savers_credit_person", - "description": "Set all values of Retirement Savings Credit for eahc individual person to zero.", - "label": "Abolish Retirement Savings Credit for eahc individual person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.savers_credit_potential": { - "type": "parameter", - "parameter": "gov.abolitions.savers_credit_potential", - "description": "Set all values of Potential value of the Retirement Savings Credit to zero.", - "label": "Abolish Potential value of the Retirement Savings Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.savers_credit_qualified_contributions": { - "type": "parameter", - "parameter": "gov.abolitions.savers_credit_qualified_contributions", - "description": "Set all values of Retirement Savings Credit qualified contributions to zero.", - "label": "Abolish Retirement Savings Credit qualified contributions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.savers_credit": { - "type": "parameter", - "parameter": "gov.abolitions.savers_credit", - "description": "Set all values of Retirement Savings Credit to zero.", - "label": "Abolish Retirement Savings Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.savers_credit_eligible_person": { - "type": "parameter", - "parameter": "gov.abolitions.savers_credit_eligible_person", - "description": "Set all values of Eligible person for the retirement saving contributions credit to zero.", - "label": "Abolish Eligible person for the retirement saving contributions credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.savers_credit_credit_limit": { - "type": "parameter", - "parameter": "gov.abolitions.savers_credit_credit_limit", - "description": "Set all values of Retirement Savings Credit to zero.", - "label": "Abolish Retirement Savings Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.filer_meets_eitc_identification_requirements": { - "type": "parameter", - "parameter": "gov.abolitions.filer_meets_eitc_identification_requirements", - "description": "Set all values of Filer meets EITC identification requirements to zero.", - "label": "Abolish Filer meets EITC identification requirements", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.eitc_relevant_investment_income": { - "type": "parameter", - "parameter": "gov.abolitions.eitc_relevant_investment_income", - "description": "Set all values of EITC-relevant investment income to zero.", - "label": "Abolish EITC-relevant investment income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.eitc_reduction": { - "type": "parameter", - "parameter": "gov.abolitions.eitc_reduction", - "description": "Set all values of EITC reduction to zero.", - "label": "Abolish EITC reduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.eitc_phased_in": { - "type": "parameter", - "parameter": "gov.abolitions.eitc_phased_in", - "description": "Set all values of EITC phase-in amount to zero.", - "label": "Abolish EITC phase-in amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.meets_eitc_identification_requirements": { - "type": "parameter", - "parameter": "gov.abolitions.meets_eitc_identification_requirements", - "description": "Set all values of Person meets EITC identification requirements to zero.", - "label": "Abolish Person meets EITC identification requirements", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.eitc_phase_in_rate": { - "type": "parameter", - "parameter": "gov.abolitions.eitc_phase_in_rate", - "description": "Set all values of EITC phase-in rate to zero.", - "label": "Abolish EITC phase-in rate", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.eitc_phase_out_start": { - "type": "parameter", - "parameter": "gov.abolitions.eitc_phase_out_start", - "description": "Set all values of EITC phase-out start to zero.", - "label": "Abolish EITC phase-out start", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.eitc_child_count": { - "type": "parameter", - "parameter": "gov.abolitions.eitc_child_count", - "description": "Set all values of EITC-qualifying children to zero.", - "label": "Abolish EITC-qualifying children", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.eitc_phase_out_rate": { - "type": "parameter", - "parameter": "gov.abolitions.eitc_phase_out_rate", - "description": "Set all values of EITC phase-out rate to zero.", - "label": "Abolish EITC phase-out rate", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.eitc": { - "type": "parameter", - "parameter": "gov.abolitions.eitc", - "description": "Set all values of Federal earned income credit to zero.", - "label": "Abolish Federal earned income credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.eitc_agi_limit": { - "type": "parameter", - "parameter": "gov.abolitions.eitc_agi_limit", - "description": "Set all values of Maximum AGI to qualify for EITC to zero.", - "label": "Abolish Maximum AGI to qualify for EITC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.eitc_maximum": { - "type": "parameter", - "parameter": "gov.abolitions.eitc_maximum", - "description": "Set all values of Maximum EITC to zero.", - "label": "Abolish Maximum EITC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.eitc_demographic_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.eitc_demographic_eligible", - "description": "Set all values of Meets demographic eligibility for EITC to zero.", - "label": "Abolish Meets demographic eligibility for EITC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.eitc_investment_income_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.eitc_investment_income_eligible", - "description": "Set all values of Meets investment income eligibility for EITC to zero.", - "label": "Abolish Meets investment income eligibility for EITC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.eitc_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.eitc_eligible", - "description": "Set all values of Eligible for EITC to zero.", - "label": "Abolish Eligible for EITC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.elderly_disabled_credit": { - "type": "parameter", - "parameter": "gov.abolitions.elderly_disabled_credit", - "description": "Set all values of Elderly or disabled credit to zero.", - "label": "Abolish Elderly or disabled credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.elderly_disabled_credit_credit_limit": { - "type": "parameter", - "parameter": "gov.abolitions.elderly_disabled_credit_credit_limit", - "description": "Set all values of Elderly or disabled credit credit limit to zero.", - "label": "Abolish Elderly or disabled credit credit limit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.section_22_income": { - "type": "parameter", - "parameter": "gov.abolitions.section_22_income", - "description": "Set all values of Section 22 income to zero.", - "label": "Abolish Section 22 income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.qualifies_for_elderly_or_disabled_credit": { - "type": "parameter", - "parameter": "gov.abolitions.qualifies_for_elderly_or_disabled_credit", - "description": "Set all values of Qualifies for elderly or disabled credit to zero.", - "label": "Abolish Qualifies for elderly or disabled credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.elderly_disabled_credit_potential": { - "type": "parameter", - "parameter": "gov.abolitions.elderly_disabled_credit_potential", - "description": "Set all values of Potential value of the Elderly or disabled credit to zero.", - "label": "Abolish Potential value of the Elderly or disabled credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.estate_tax_credit": { - "type": "parameter", - "parameter": "gov.abolitions.estate_tax_credit", - "description": "Set all values of Estate tax credit to zero.", - "label": "Abolish Estate tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_tce_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.is_tce_eligible", - "description": "Set all values of Eligible person for the Tax Counseling for the Elderly program to zero.", - "label": "Abolish Eligible person for the Tax Counseling for the Elderly program", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.adjusted_earnings": { - "type": "parameter", - "parameter": "gov.abolitions.adjusted_earnings", - "description": "Set all values of Personal earned income adjusted for self-employment tax to zero.", - "label": "Abolish Personal earned income adjusted for self-employment tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.filer_adjusted_earnings": { - "type": "parameter", - "parameter": "gov.abolitions.filer_adjusted_earnings", - "description": "Set all values of Filer earned income adjusted for self-employment tax to zero.", - "label": "Abolish Filer earned income adjusted for self-employment tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.taxable_income", - "description": "Set all values of IRS taxable income to zero.", - "label": "Abolish IRS taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.exemptions_count": { - "type": "parameter", - "parameter": "gov.abolitions.exemptions_count", - "description": "Set all values of Number of tax exemptions to zero.", - "label": "Abolish Number of tax exemptions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.exemptions": { - "type": "parameter", - "parameter": "gov.abolitions.exemptions", - "description": "Set all values of Exemptions to zero.", - "label": "Abolish Exemptions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.adjusted_gross_income": { - "type": "parameter", - "parameter": "gov.abolitions.adjusted_gross_income", - "description": "Set all values of Adjusted gross income to zero.", - "label": "Abolish Adjusted gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.positive_gross_income": { - "type": "parameter", - "parameter": "gov.abolitions.positive_gross_income", - "description": "Set all values of Positive Gross Income to zero.", - "label": "Abolish Positive Gross Income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.adjusted_gross_income_person": { - "type": "parameter", - "parameter": "gov.abolitions.adjusted_gross_income_person", - "description": "Set all values of Federal adjusted gross income for each person to zero.", - "label": "Abolish Federal adjusted gross income for each person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.positive_agi": { - "type": "parameter", - "parameter": "gov.abolitions.positive_agi", - "description": "Set all values of Positive AGI to zero.", - "label": "Abolish Positive AGI", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.irs_employment_income": { - "type": "parameter", - "parameter": "gov.abolitions.irs_employment_income", - "description": "Set all values of IRS employment income to zero.", - "label": "Abolish IRS employment income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pre_tax_contributions": { - "type": "parameter", - "parameter": "gov.abolitions.pre_tax_contributions", - "description": "Set all values of Pre-tax contributions to zero.", - "label": "Abolish Pre-tax contributions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tax_unit_partnership_s_corp_income": { - "type": "parameter", - "parameter": "gov.abolitions.tax_unit_partnership_s_corp_income", - "description": "Set all values of Tax unit partnership/S-corp income to zero.", - "label": "Abolish Tax unit partnership/S-corp income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.has_qdiv_or_ltcg": { - "type": "parameter", - "parameter": "gov.abolitions.has_qdiv_or_ltcg", - "description": "Set all values of Has qualified dividends or long-term capital gains to zero.", - "label": "Abolish Has qualified dividends or long-term capital gains", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tax_unit_rental_income": { - "type": "parameter", - "parameter": "gov.abolitions.tax_unit_rental_income", - "description": "Set all values of Tax unit rental income to zero.", - "label": "Abolish Tax unit rental income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.loss_limited_net_capital_gains": { - "type": "parameter", - "parameter": "gov.abolitions.loss_limited_net_capital_gains", - "description": "Set all values of Loss-limited net capital gains to zero.", - "label": "Abolish Loss-limited net capital gains", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.irs_gross_income": { - "type": "parameter", - "parameter": "gov.abolitions.irs_gross_income", - "description": "Set all values of Gross income to zero.", - "label": "Abolish Gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.earned_income_last_year": { - "type": "parameter", - "parameter": "gov.abolitions.earned_income_last_year", - "description": "Set all values of Earned income last year to zero.", - "label": "Abolish Earned income last year", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.earned_income": { - "type": "parameter", - "parameter": "gov.abolitions.earned_income", - "description": "Set all values of Earned income to zero.", - "label": "Abolish Earned income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tax_unit_earned_income_last_year": { - "type": "parameter", - "parameter": "gov.abolitions.tax_unit_earned_income_last_year", - "description": "Set all values of Tax unit earned income last year to zero.", - "label": "Abolish Tax unit earned income last year", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tax_unit_earned_income": { - "type": "parameter", - "parameter": "gov.abolitions.tax_unit_earned_income", - "description": "Set all values of Tax unit earned income to zero.", - "label": "Abolish Tax unit earned income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tax_unit_taxable_unemployment_compensation": { - "type": "parameter", - "parameter": "gov.abolitions.tax_unit_taxable_unemployment_compensation", - "description": "Set all values of Taxable unemployment compensation to zero.", - "label": "Abolish Taxable unemployment compensation", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tax_unit_unemployment_compensation": { - "type": "parameter", - "parameter": "gov.abolitions.tax_unit_unemployment_compensation", - "description": "Set all values of Tax unit unemployment compensation to zero.", - "label": "Abolish Tax unit unemployment compensation", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxable_uc_agi": { - "type": "parameter", - "parameter": "gov.abolitions.taxable_uc_agi", - "description": "Set all values of Taxable unemployment compensation for SS adjusted gross income to zero.", - "label": "Abolish Taxable unemployment compensation for SS adjusted gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxable_unemployment_compensation": { - "type": "parameter", - "parameter": "gov.abolitions.taxable_unemployment_compensation", - "description": "Set all values of Taxable unemployment compensation to zero.", - "label": "Abolish Taxable unemployment compensation", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tax_exempt_unemployment_compensation": { - "type": "parameter", - "parameter": "gov.abolitions.tax_exempt_unemployment_compensation", - "description": "Set all values of Tax-exempt unemployment compensation to zero.", - "label": "Abolish Tax-exempt unemployment compensation", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxable_social_security": { - "type": "parameter", - "parameter": "gov.abolitions.taxable_social_security", - "description": "Set all values of Taxable Social Security to zero.", - "label": "Abolish Taxable Social Security", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tax_unit_social_security": { - "type": "parameter", - "parameter": "gov.abolitions.tax_unit_social_security", - "description": "Set all values of Tax unit Social Security to zero.", - "label": "Abolish Tax unit Social Security", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tax_unit_ss_combined_income_excess": { - "type": "parameter", - "parameter": "gov.abolitions.tax_unit_ss_combined_income_excess", - "description": "Set all values of Taxable Social Security combined income excess over base amount to zero.", - "label": "Abolish Taxable Social Security combined income excess over base amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tax_unit_combined_income_for_social_security_taxability": { - "type": "parameter", - "parameter": "gov.abolitions.tax_unit_combined_income_for_social_security_taxability", - "description": "Set all values of Taxable Social Security combined income to zero.", - "label": "Abolish Taxable Social Security combined income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tax_exempt_social_security": { - "type": "parameter", - "parameter": "gov.abolitions.tax_exempt_social_security", - "description": "Set all values of Tax-exempt Social Security to zero.", - "label": "Abolish Tax-exempt Social Security", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tax_unit_taxable_social_security": { - "type": "parameter", - "parameter": "gov.abolitions.tax_unit_taxable_social_security", - "description": "Set all values of Taxable Social Security benefits to zero.", - "label": "Abolish Taxable Social Security benefits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxable_ss_magi": { - "type": "parameter", - "parameter": "gov.abolitions.taxable_ss_magi", - "description": "Set all values of Modified adjusted gross income (SS) to zero.", - "label": "Abolish Modified adjusted gross income (SS)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.self_employed_health_insurance_ald_person": { - "type": "parameter", - "parameter": "gov.abolitions.self_employed_health_insurance_ald_person", - "description": "Set all values of Self-employed health insurance ALD for each person to zero.", - "label": "Abolish Self-employed health insurance ALD for each person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.self_employment_tax_ald": { - "type": "parameter", - "parameter": "gov.abolitions.self_employment_tax_ald", - "description": "Set all values of Self-employment tax ALD deduction to zero.", - "label": "Abolish Self-employment tax ALD deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.loss_ald": { - "type": "parameter", - "parameter": "gov.abolitions.loss_ald", - "description": "Set all values of Business loss ALD to zero.", - "label": "Abolish Business loss ALD", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.limited_capital_loss": { - "type": "parameter", - "parameter": "gov.abolitions.limited_capital_loss", - "description": "Set all values of Limited capital loss deduction to zero.", - "label": "Abolish Limited capital loss deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.self_employment_tax_ald_person": { - "type": "parameter", - "parameter": "gov.abolitions.self_employment_tax_ald_person", - "description": "Set all values of Self-employment tax ALD deduction for each person to zero.", - "label": "Abolish Self-employment tax ALD deduction for each person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.alimony_expense_ald": { - "type": "parameter", - "parameter": "gov.abolitions.alimony_expense_ald", - "description": "Set all values of Alimony expense ALD to zero.", - "label": "Abolish Alimony expense ALD", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.self_employed_pension_contribution_ald": { - "type": "parameter", - "parameter": "gov.abolitions.self_employed_pension_contribution_ald", - "description": "Set all values of Self-employed pension contribution ALD to zero.", - "label": "Abolish Self-employed pension contribution ALD", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.above_the_line_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.above_the_line_deductions", - "description": "Set all values of Above-the-line deductions to zero.", - "label": "Abolish Above-the-line deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.self_employed_pension_contribution_ald_person": { - "type": "parameter", - "parameter": "gov.abolitions.self_employed_pension_contribution_ald_person", - "description": "Set all values of Self-employed pension contribution ALD for each person to zero.", - "label": "Abolish Self-employed pension contribution ALD for each person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.self_employed_health_insurance_ald": { - "type": "parameter", - "parameter": "gov.abolitions.self_employed_health_insurance_ald", - "description": "Set all values of Self-employed health insurance ALD to zero.", - "label": "Abolish Self-employed health insurance ALD", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.student_loan_interest_ald_magi": { - "type": "parameter", - "parameter": "gov.abolitions.student_loan_interest_ald_magi", - "description": "Set all values of Modified adjusted gross income for the student loan interest ALD to zero.", - "label": "Abolish Modified adjusted gross income for the student loan interest ALD", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.student_loan_interest_ald_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.student_loan_interest_ald_eligible", - "description": "Set all values of Eligible for the Student loan interest ALD to zero.", - "label": "Abolish Eligible for the Student loan interest ALD", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.student_loan_interest_ald": { - "type": "parameter", - "parameter": "gov.abolitions.student_loan_interest_ald", - "description": "Set all values of Student loan interest ALD to zero.", - "label": "Abolish Student loan interest ALD", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.capped_property_taxes": { - "type": "parameter", - "parameter": "gov.abolitions.capped_property_taxes", - "description": "Set all values of Local real estate taxes limited by the federal SALT cap. to zero.", - "label": "Abolish Local real estate taxes limited by the federal SALT cap.", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxable_income_deductions_if_itemizing": { - "type": "parameter", - "parameter": "gov.abolitions.taxable_income_deductions_if_itemizing", - "description": "Set all values of Deductions if itemizing to zero.", - "label": "Abolish Deductions if itemizing", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxable_income_deductions_if_not_itemizing": { - "type": "parameter", - "parameter": "gov.abolitions.taxable_income_deductions_if_not_itemizing", - "description": "Set all values of Deductions if not itemizing to zero.", - "label": "Abolish Deductions if not itemizing", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tuition_and_fees_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.tuition_and_fees_deduction", - "description": "Set all values of Tuition and fees deduction to zero.", - "label": "Abolish Tuition and fees deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tax_liability_if_not_itemizing": { - "type": "parameter", - "parameter": "gov.abolitions.tax_liability_if_not_itemizing", - "description": "Set all values of Tax liability if not itemizing to zero.", - "label": "Abolish Tax liability if not itemizing", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tax_unit_itemizes": { - "type": "parameter", - "parameter": "gov.abolitions.tax_unit_itemizes", - "description": "Set all values of Itemizes tax deductions to zero.", - "label": "Abolish Itemizes tax deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.itemized_deductions_less_salt": { - "type": "parameter", - "parameter": "gov.abolitions.itemized_deductions_less_salt", - "description": "Set all values of Itemized tax deductions other than SALT deduction to zero.", - "label": "Abolish Itemized tax deductions other than SALT deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tax_liability_if_itemizing": { - "type": "parameter", - "parameter": "gov.abolitions.tax_liability_if_itemizing", - "description": "Set all values of Tax liability if itemizing to zero.", - "label": "Abolish Tax liability if itemizing", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxable_income_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.taxable_income_deductions", - "description": "Set all values of Taxable income deductions to zero.", - "label": "Abolish Taxable income deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tuition_and_fees_deduction_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.tuition_and_fees_deduction_eligible", - "description": "Set all values of Tuition and fees deduction eligible to zero.", - "label": "Abolish Tuition and fees deduction eligible", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.qualified_business_income_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.qualified_business_income_deduction", - "description": "Set all values of Qualified business income deduction for tax unit to zero.", - "label": "Abolish Qualified business income deduction for tax unit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxable_income_less_qbid": { - "type": "parameter", - "parameter": "gov.abolitions.taxable_income_less_qbid", - "description": "Set all values of Taxable income (not considering QBID) to zero.", - "label": "Abolish Taxable income (not considering QBID)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.qualified_business_income": { - "type": "parameter", - "parameter": "gov.abolitions.qualified_business_income", - "description": "Set all values of Qualified business income to zero.", - "label": "Abolish Qualified business income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.qbid_amount": { - "type": "parameter", - "parameter": "gov.abolitions.qbid_amount", - "description": "Set all values of Per-cap qualified business income deduction amount for each person to zero.", - "label": "Abolish Per-cap qualified business income deduction amount for each person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.qualified_business_income_deduction_person": { - "type": "parameter", - "parameter": "gov.abolitions.qualified_business_income_deduction_person", - "description": "Set all values of Qualified business income deduction for each person to zero.", - "label": "Abolish Qualified business income deduction for each person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.total_itemized_taxable_income_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.total_itemized_taxable_income_deductions", - "description": "Set all values of Total values of itemized taxable income deductions to zero.", - "label": "Abolish Total values of itemized taxable income deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.salt": { - "type": "parameter", - "parameter": "gov.abolitions.salt", - "description": "Set all values of State and local sales or income tax and real estate taxes subject to the SALT deduction to zero.", - "label": "Abolish State and local sales or income tax and real estate taxes subject to the SALT deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.casualty_loss_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.casualty_loss_deduction", - "description": "Set all values of Casualty loss deduction to zero.", - "label": "Abolish Casualty loss deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.salt_cap": { - "type": "parameter", - "parameter": "gov.abolitions.salt_cap", - "description": "Set all values of SALT cap to zero.", - "label": "Abolish SALT cap", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.salt_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.salt_deduction", - "description": "Set all values of SALT deduction to zero.", - "label": "Abolish SALT deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.charitable_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.charitable_deduction", - "description": "Set all values of Charitable deduction to zero.", - "label": "Abolish Charitable deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.interest_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.interest_deduction", - "description": "Set all values of Interest deduction to zero.", - "label": "Abolish Interest deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.state_and_local_sales_or_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.state_and_local_sales_or_income_tax", - "description": "Set all values of State and local sales or income tax to zero.", - "label": "Abolish State and local sales or income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wagering_losses_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.wagering_losses_deduction", - "description": "Set all values of Wagering losses deduction to zero.", - "label": "Abolish Wagering losses deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.reported_salt": { - "type": "parameter", - "parameter": "gov.abolitions.reported_salt", - "description": "Set all values of Reported State and local sales or income tax and real estate taxes subject to the SALT deduction limited to taxable income to zero.", - "label": "Abolish Reported State and local sales or income tax and real estate taxes subject to the SALT deduction limited to taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.total_misc_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.total_misc_deductions", - "description": "Set all values of Total miscellaneous deductions subject to the AGI floor to zero.", - "label": "Abolish Total miscellaneous deductions subject to the AGI floor", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.misc_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.misc_deduction", - "description": "Set all values of Miscellaneous deduction to zero.", - "label": "Abolish Miscellaneous deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.charitable_deduction_for_non_itemizers": { - "type": "parameter", - "parameter": "gov.abolitions.charitable_deduction_for_non_itemizers", - "description": "Set all values of Charitable deduction for non-itemizers to zero.", - "label": "Abolish Charitable deduction for non-itemizers", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.itemized_taxable_income_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.itemized_taxable_income_deductions", - "description": "Set all values of Itemized taxable income deductions to zero.", - "label": "Abolish Itemized taxable income deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.itemized_taxable_income_deductions_reduction": { - "type": "parameter", - "parameter": "gov.abolitions.itemized_taxable_income_deductions_reduction", - "description": "Set all values of Itemized taxable income deductions reduction to zero.", - "label": "Abolish Itemized taxable income deductions reduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.medical_expense_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.medical_expense_deduction", - "description": "Set all values of Medical expense deduction to zero.", - "label": "Abolish Medical expense deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.overtime_income_deduction_ssn_requirement_met": { - "type": "parameter", - "parameter": "gov.abolitions.overtime_income_deduction_ssn_requirement_met", - "description": "Set all values of SSN requirement met for the overtime income deduction to zero.", - "label": "Abolish SSN requirement met for the overtime income deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.overtime_income_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.overtime_income_deduction", - "description": "Set all values of Overtime income deduction to zero.", - "label": "Abolish Overtime income deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tip_income_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.tip_income_deduction", - "description": "Set all values of Tip income deduction to zero.", - "label": "Abolish Tip income deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tip_income_deduction_ssn_requirement_met": { - "type": "parameter", - "parameter": "gov.abolitions.tip_income_deduction_ssn_requirement_met", - "description": "Set all values of SSN requirement met for the tip income deduction to zero.", - "label": "Abolish SSN requirement met for the tip income deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.additional_standard_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.additional_standard_deduction", - "description": "Set all values of Additional standard deduction to zero.", - "label": "Abolish Additional standard deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.aged_blind_count": { - "type": "parameter", - "parameter": "gov.abolitions.aged_blind_count", - "description": "Set all values of Aged and or blind head and spouse count to zero.", - "label": "Abolish Aged and or blind head and spouse count", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.aged_head": { - "type": "parameter", - "parameter": "gov.abolitions.aged_head", - "description": "Set all values of Aged head to zero.", - "label": "Abolish Aged head", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_irs_aged": { - "type": "parameter", - "parameter": "gov.abolitions.is_irs_aged", - "description": "Set all values of Aged person under the IRS requirements to zero.", - "label": "Abolish Aged person under the IRS requirements", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.standard_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.standard_deduction", - "description": "Set all values of Standard deduction to zero.", - "label": "Abolish Standard deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.basic_standard_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.basic_standard_deduction", - "description": "Set all values of Basic standard deduction to zero.", - "label": "Abolish Basic standard deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.aged_spouse": { - "type": "parameter", - "parameter": "gov.abolitions.aged_spouse", - "description": "Set all values of Aged spouse to zero.", - "label": "Abolish Aged spouse", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.additional_senior_deduction_eligible_person": { - "type": "parameter", - "parameter": "gov.abolitions.additional_senior_deduction_eligible_person", - "description": "Set all values of Person is eligible for the additional senior deduction to zero.", - "label": "Abolish Person is eligible for the additional senior deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.additional_senior_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.additional_senior_deduction", - "description": "Set all values of Senior deduction to zero.", - "label": "Abolish Senior deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.auto_loan_interest_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.auto_loan_interest_deduction", - "description": "Set all values of Auto loan interest deduction to zero.", - "label": "Abolish Auto loan interest deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.employee_payroll_tax": { - "type": "parameter", - "parameter": "gov.abolitions.employee_payroll_tax", - "description": "Set all values of employee-side payroll tax to zero.", - "label": "Abolish employee-side payroll tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.payroll_tax_gross_wages": { - "type": "parameter", - "parameter": "gov.abolitions.payroll_tax_gross_wages", - "description": "Set all values of Gross wages and salaries for payroll taxes to zero.", - "label": "Abolish Gross wages and salaries for payroll taxes", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.employee_medicare_tax": { - "type": "parameter", - "parameter": "gov.abolitions.employee_medicare_tax", - "description": "Set all values of employee-side health insurance payroll tax to zero.", - "label": "Abolish employee-side health insurance payroll tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.employer_medicare_tax": { - "type": "parameter", - "parameter": "gov.abolitions.employer_medicare_tax", - "description": "Set all values of Employer-side health insurance payroll tax to zero.", - "label": "Abolish Employer-side health insurance payroll tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.employer_social_security_tax": { - "type": "parameter", - "parameter": "gov.abolitions.employer_social_security_tax", - "description": "Set all values of Employer-side OASDI payroll tax to zero.", - "label": "Abolish Employer-side OASDI payroll tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.employee_social_security_tax": { - "type": "parameter", - "parameter": "gov.abolitions.employee_social_security_tax", - "description": "Set all values of employee-side OASDI payroll tax to zero.", - "label": "Abolish employee-side OASDI payroll tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxable_earnings_for_social_security": { - "type": "parameter", - "parameter": "gov.abolitions.taxable_earnings_for_social_security", - "description": "Set all values of Taxable gross earnings for OASDI FICA to zero.", - "label": "Abolish Taxable gross earnings for OASDI FICA", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.taxable_self_employment_income": { - "type": "parameter", - "parameter": "gov.abolitions.taxable_self_employment_income", - "description": "Set all values of Taxable self-employment income to zero.", - "label": "Abolish Taxable self-employment income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.self_employment_tax": { - "type": "parameter", - "parameter": "gov.abolitions.self_employment_tax", - "description": "Set all values of self-employment tax to zero.", - "label": "Abolish self-employment tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.social_security_taxable_self_employment_income": { - "type": "parameter", - "parameter": "gov.abolitions.social_security_taxable_self_employment_income", - "description": "Set all values of Taxable self-employment income for computing Social Security tax to zero.", - "label": "Abolish Taxable self-employment income for computing Social Security tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.self_employment_medicare_tax": { - "type": "parameter", - "parameter": "gov.abolitions.self_employment_medicare_tax", - "description": "Set all values of Self-employment Medicare tax to zero.", - "label": "Abolish Self-employment Medicare tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.self_employment_social_security_tax": { - "type": "parameter", - "parameter": "gov.abolitions.self_employment_social_security_tax", - "description": "Set all values of Self-employment Social Security tax to zero.", - "label": "Abolish Self-employment Social Security tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.net_investment_income": { - "type": "parameter", - "parameter": "gov.abolitions.net_investment_income", - "description": "Set all values of net investment income (NII) that is base of the NII Tax (NIIT) to zero.", - "label": "Abolish net investment income (NII) that is base of the NII Tax (NIIT)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.additional_medicare_tax": { - "type": "parameter", - "parameter": "gov.abolitions.additional_medicare_tax", - "description": "Set all values of Additional Medicare Tax to zero.", - "label": "Abolish Additional Medicare Tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.income_tax_excluding_ptc": { - "type": "parameter", - "parameter": "gov.abolitions.income_tax_excluding_ptc", - "description": "Set all values of income tax (excluding PTC) to zero.", - "label": "Abolish income tax (excluding PTC)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.income_tax", - "description": "Set all values of Federal income tax to zero.", - "label": "Abolish Federal income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.net_investment_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.net_investment_income_tax", - "description": "Set all values of Net Investment Income Tax to zero.", - "label": "Abolish Net Investment Income Tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.income_tax_before_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.income_tax_before_refundable_credits", - "description": "Set all values of Federal income tax before refundable credits to zero.", - "label": "Abolish Federal income tax before refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.amt_tax_including_cg": { - "type": "parameter", - "parameter": "gov.abolitions.amt_tax_including_cg", - "description": "Set all values of Alternative Minimum Tax computed using the capital gains rates to zero.", - "label": "Abolish Alternative Minimum Tax computed using the capital gains rates", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.alternative_minimum_tax": { - "type": "parameter", - "parameter": "gov.abolitions.alternative_minimum_tax", - "description": "Set all values of Alternative Minimum Tax to zero.", - "label": "Abolish Alternative Minimum Tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.amt_part_iii_required": { - "type": "parameter", - "parameter": "gov.abolitions.amt_part_iii_required", - "description": "Set all values of Alternative Minimum Tax Part III required to zero.", - "label": "Abolish Alternative Minimum Tax Part III required", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.regular_tax_before_credits": { - "type": "parameter", - "parameter": "gov.abolitions.regular_tax_before_credits", - "description": "Set all values of Regular tax before credits to zero.", - "label": "Abolish Regular tax before credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.amt_lower_base_tax": { - "type": "parameter", - "parameter": "gov.abolitions.amt_lower_base_tax", - "description": "Set all values of Alternative Minimum Tax lower base tax amount to zero.", - "label": "Abolish Alternative Minimum Tax lower base tax amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.amt_base_tax": { - "type": "parameter", - "parameter": "gov.abolitions.amt_base_tax", - "description": "Set all values of Alternative Minimum Tax base tax to zero.", - "label": "Abolish Alternative Minimum Tax base tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.amt_higher_base_tax": { - "type": "parameter", - "parameter": "gov.abolitions.amt_higher_base_tax", - "description": "Set all values of Alternative Minimum Tax higher base tax amount to zero.", - "label": "Abolish Alternative Minimum Tax higher base tax amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.amt_income": { - "type": "parameter", - "parameter": "gov.abolitions.amt_income", - "description": "Set all values of AMT taxable income to zero.", - "label": "Abolish AMT taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.amt_separate_addition": { - "type": "parameter", - "parameter": "gov.abolitions.amt_separate_addition", - "description": "Set all values of AMT taxable income separate addition to zero.", - "label": "Abolish AMT taxable income separate addition", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.amt_excluded_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.amt_excluded_deductions", - "description": "Set all values of AMT taxable income excluded deductions to zero.", - "label": "Abolish AMT taxable income excluded deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.amt_income_less_exemptions": { - "type": "parameter", - "parameter": "gov.abolitions.amt_income_less_exemptions", - "description": "Set all values of Alternative Minimum Tax Income less exemptions to zero.", - "label": "Abolish Alternative Minimum Tax Income less exemptions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.amt_kiddie_tax_applies": { - "type": "parameter", - "parameter": "gov.abolitions.amt_kiddie_tax_applies", - "description": "Set all values of Alternative Minimum Tax kiddie tax applies to zero.", - "label": "Abolish Alternative Minimum Tax kiddie tax applies", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.income_tax_main_rates": { - "type": "parameter", - "parameter": "gov.abolitions.income_tax_main_rates", - "description": "Set all values of Income tax main rates to zero.", - "label": "Abolish Income tax main rates", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.income_tax_before_credits": { - "type": "parameter", - "parameter": "gov.abolitions.income_tax_before_credits", - "description": "Set all values of income tax before credits to zero.", - "label": "Abolish income tax before credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.capital_gains_tax": { - "type": "parameter", - "parameter": "gov.abolitions.capital_gains_tax", - "description": "Set all values of Maximum income tax after capital gains tax to zero.", - "label": "Abolish Maximum income tax after capital gains tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dwks14": { - "type": "parameter", - "parameter": "gov.abolitions.dwks14", - "description": "Set all values of IRS Form 1040 Schedule D worksheet (part 5 of 6) to zero.", - "label": "Abolish IRS Form 1040 Schedule D worksheet (part 5 of 6)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dwks09": { - "type": "parameter", - "parameter": "gov.abolitions.dwks09", - "description": "Set all values of IRS Form 1040 Schedule D worksheet (part 2 of 6) to zero.", - "label": "Abolish IRS Form 1040 Schedule D worksheet (part 2 of 6)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dwks10": { - "type": "parameter", - "parameter": "gov.abolitions.dwks10", - "description": "Set all values of IRS Form 1040 Schedule D worksheet (part 3 of 6) to zero.", - "label": "Abolish IRS Form 1040 Schedule D worksheet (part 3 of 6)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dwks13": { - "type": "parameter", - "parameter": "gov.abolitions.dwks13", - "description": "Set all values of IRS Form 1040 Schedule D worksheet (part 4 of 6) to zero.", - "label": "Abolish IRS Form 1040 Schedule D worksheet (part 4 of 6)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dwks19": { - "type": "parameter", - "parameter": "gov.abolitions.dwks19", - "description": "Set all values of IRS Form 1040 Schedule D worksheet (part 6 of 6) to zero.", - "label": "Abolish IRS Form 1040 Schedule D worksheet (part 6 of 6)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dividend_income_reduced_by_investment_income": { - "type": "parameter", - "parameter": "gov.abolitions.dividend_income_reduced_by_investment_income", - "description": "Set all values of Dividend income reduced by investment income to zero.", - "label": "Abolish Dividend income reduced by investment income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.capital_gains_excluded_from_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.capital_gains_excluded_from_taxable_income", - "description": "Set all values of Capital gains excluded from taxable income to zero.", - "label": "Abolish Capital gains excluded from taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.adjusted_net_capital_gain": { - "type": "parameter", - "parameter": "gov.abolitions.adjusted_net_capital_gain", - "description": "Set all values of Adjusted net capital gain to zero.", - "label": "Abolish Adjusted net capital gain", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.capital_gains_28_percent_rate_gain": { - "type": "parameter", - "parameter": "gov.abolitions.capital_gains_28_percent_rate_gain", - "description": "Set all values of 28-percent rate gain to zero.", - "label": "Abolish 28-percent rate gain", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.net_capital_gain": { - "type": "parameter", - "parameter": "gov.abolitions.net_capital_gain", - "description": "Set all values of Net capital gain to zero.", - "label": "Abolish Net capital gain", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.estate_tax_before_credits": { - "type": "parameter", - "parameter": "gov.abolitions.estate_tax_before_credits", - "description": "Set all values of Estate tax before credits to zero.", - "label": "Abolish Estate tax before credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.estate_tax": { - "type": "parameter", - "parameter": "gov.abolitions.estate_tax", - "description": "Set all values of Estate tax to zero.", - "label": "Abolish Estate tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.vita_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.vita_eligible", - "description": "Set all values of Eligible for the VITA program to zero.", - "label": "Abolish Eligible for the VITA program", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.state_sales_tax_income_bracket": { - "type": "parameter", - "parameter": "gov.abolitions.state_sales_tax_income_bracket", - "description": "Set all values of State Sales Tax Income Bracket to zero.", - "label": "Abolish State Sales Tax Income Bracket", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.never_eligible_for_social_security_benefits": { - "type": "parameter", - "parameter": "gov.abolitions.never_eligible_for_social_security_benefits", - "description": "Set all values of Never eligible for Social Security to zero.", - "label": "Abolish Never eligible for Social Security", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.social_security": { - "type": "parameter", - "parameter": "gov.abolitions.social_security", - "description": "Set all values of Social Security to zero.", - "label": "Abolish Social Security", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_ssi_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.is_ssi_eligible", - "description": "Set all values of Is SSI eligible person to zero.", - "label": "Abolish Is SSI eligible person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tax_unit_ssi": { - "type": "parameter", - "parameter": "gov.abolitions.tax_unit_ssi", - "description": "Set all values of Total SSI for the tax unit to zero.", - "label": "Abolish Total SSI for the tax unit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ssi_claim_is_joint": { - "type": "parameter", - "parameter": "gov.abolitions.ssi_claim_is_joint", - "description": "Set all values of SSI claim is joint to zero.", - "label": "Abolish SSI claim is joint", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ssi_amount_if_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ssi_amount_if_eligible", - "description": "Set all values of SSI amount if eligible to zero.", - "label": "Abolish SSI amount if eligible", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.uncapped_ssi": { - "type": "parameter", - "parameter": "gov.abolitions.uncapped_ssi", - "description": "Set all values of Uncapped SSI to zero.", - "label": "Abolish Uncapped SSI", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ssi": { - "type": "parameter", - "parameter": "gov.abolitions.ssi", - "description": "Set all values of SSI to zero.", - "label": "Abolish SSI", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_ssi_aged": { - "type": "parameter", - "parameter": "gov.abolitions.is_ssi_aged", - "description": "Set all values of Is aged for SSI to zero.", - "label": "Abolish Is aged for SSI", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_ssi_eligible_individual": { - "type": "parameter", - "parameter": "gov.abolitions.is_ssi_eligible_individual", - "description": "Set all values of Is an SSI-eligible individual to zero.", - "label": "Abolish Is an SSI-eligible individual", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_ssi_disabled": { - "type": "parameter", - "parameter": "gov.abolitions.is_ssi_disabled", - "description": "Set all values of SSI disabled to zero.", - "label": "Abolish SSI disabled", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_ssi_qualified_noncitizen": { - "type": "parameter", - "parameter": "gov.abolitions.is_ssi_qualified_noncitizen", - "description": "Set all values of Is an SSI qualified noncitizen to zero.", - "label": "Abolish Is an SSI qualified noncitizen", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_ssi_ineligible_child": { - "type": "parameter", - "parameter": "gov.abolitions.is_ssi_ineligible_child", - "description": "Set all values of Is an SSI-ineligible child to zero.", - "label": "Abolish Is an SSI-ineligible child", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_ssi_ineligible_spouse": { - "type": "parameter", - "parameter": "gov.abolitions.is_ssi_ineligible_spouse", - "description": "Set all values of Is an SSI-ineligible spouse to zero.", - "label": "Abolish Is an SSI-ineligible spouse", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_ssi_ineligible_parent": { - "type": "parameter", - "parameter": "gov.abolitions.is_ssi_ineligible_parent", - "description": "Set all values of Is an SSI-ineligible parent in respect of a child to zero.", - "label": "Abolish Is an SSI-ineligible parent in respect of a child", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_ssi_eligible_spouse": { - "type": "parameter", - "parameter": "gov.abolitions.is_ssi_eligible_spouse", - "description": "Set all values of Is an SSI-eligible spouse to zero.", - "label": "Abolish Is an SSI-eligible spouse", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_ssi_aged_blind_disabled": { - "type": "parameter", - "parameter": "gov.abolitions.is_ssi_aged_blind_disabled", - "description": "Set all values of SSI aged, blind, or disabled to zero.", - "label": "Abolish SSI aged, blind, or disabled", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ssi_countable_income": { - "type": "parameter", - "parameter": "gov.abolitions.ssi_countable_income", - "description": "Set all values of SSI countable income to zero.", - "label": "Abolish SSI countable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ssi_engaged_in_sga": { - "type": "parameter", - "parameter": "gov.abolitions.ssi_engaged_in_sga", - "description": "Set all values of Income less than the SGA limit to zero.", - "label": "Abolish Income less than the SGA limit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ssi_unearned_income": { - "type": "parameter", - "parameter": "gov.abolitions.ssi_unearned_income", - "description": "Set all values of SSI earned income to zero.", - "label": "Abolish SSI earned income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_ssi_blind_or_disabled_working_student_exclusion_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.is_ssi_blind_or_disabled_working_student_exclusion_eligible", - "description": "Set all values of Eligible for SSI blind or disabled working student earned income exclusion to zero.", - "label": "Abolish Eligible for SSI blind or disabled working student earned income exclusion", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ssi_blind_or_disabled_working_student_exclusion": { - "type": "parameter", - "parameter": "gov.abolitions.ssi_blind_or_disabled_working_student_exclusion", - "description": "Set all values of SSI blind or disabled working student earned income exclusion to zero.", - "label": "Abolish SSI blind or disabled working student earned income exclusion", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ssi_earned_income": { - "type": "parameter", - "parameter": "gov.abolitions.ssi_earned_income", - "description": "Set all values of SSI earned income to zero.", - "label": "Abolish SSI earned income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ssi_ineligible_parent_allocation": { - "type": "parameter", - "parameter": "gov.abolitions.ssi_ineligible_parent_allocation", - "description": "Set all values of SSI ineligible parent allocation to zero.", - "label": "Abolish SSI ineligible parent allocation", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ssi_ineligible_child_allocation": { - "type": "parameter", - "parameter": "gov.abolitions.ssi_ineligible_child_allocation", - "description": "Set all values of SSI ineligible child allocation to zero.", - "label": "Abolish SSI ineligible child allocation", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ssi_income_deemed_from_ineligible_spouse": { - "type": "parameter", - "parameter": "gov.abolitions.ssi_income_deemed_from_ineligible_spouse", - "description": "Set all values of SSI income (deemed from ineligible spouse) to zero.", - "label": "Abolish SSI income (deemed from ineligible spouse)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ssi_earned_income_deemed_from_ineligible_spouse": { - "type": "parameter", - "parameter": "gov.abolitions.ssi_earned_income_deemed_from_ineligible_spouse", - "description": "Set all values of SSI earned income (deemed from ineligible spouse) to zero.", - "label": "Abolish SSI earned income (deemed from ineligible spouse)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ssi_unearned_income_deemed_from_ineligible_spouse": { - "type": "parameter", - "parameter": "gov.abolitions.ssi_unearned_income_deemed_from_ineligible_spouse", - "description": "Set all values of SSI unearned income (deemed from ineligible spouse) to zero.", - "label": "Abolish SSI unearned income (deemed from ineligible spouse)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ssi_unearned_income_deemed_from_ineligible_parent": { - "type": "parameter", - "parameter": "gov.abolitions.ssi_unearned_income_deemed_from_ineligible_parent", - "description": "Set all values of SSI unearned income (deemed from ineligible parent) to zero.", - "label": "Abolish SSI unearned income (deemed from ineligible parent)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ssi_marital_earned_income": { - "type": "parameter", - "parameter": "gov.abolitions.ssi_marital_earned_income", - "description": "Set all values of Total SSI earned income for a marital unit to zero.", - "label": "Abolish Total SSI earned income for a marital unit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ssi_marital_both_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ssi_marital_both_eligible", - "description": "Set all values of Both members of the marital unit are eligible for SSI to zero.", - "label": "Abolish Both members of the marital unit are eligible for SSI", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ssi_marital_unearned_income": { - "type": "parameter", - "parameter": "gov.abolitions.ssi_marital_unearned_income", - "description": "Set all values of Total SSI unearned income for a marital unit to zero.", - "label": "Abolish Total SSI unearned income for a marital unit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.meets_ssi_resource_test": { - "type": "parameter", - "parameter": "gov.abolitions.meets_ssi_resource_test", - "description": "Set all values of Meets SSI resource test to zero.", - "label": "Abolish Meets SSI resource test", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.takes_up_aca_if_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.takes_up_aca_if_eligible", - "description": "Set all values of Whether a random eligible SPM unit does not claim ACA Premium Tax Credit to zero.", - "label": "Abolish Whether a random eligible SPM unit does not claim ACA Premium Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.aca_ptc_phase_out_rate": { - "type": "parameter", - "parameter": "gov.abolitions.aca_ptc_phase_out_rate", - "description": "Set all values of ACA PTC phase-out rate (i.e., IRS Form 8962 'applicable figure') to zero.", - "label": "Abolish ACA PTC phase-out rate (i.e., IRS Form 8962 'applicable figure')", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.premium_tax_credit": { - "type": "parameter", - "parameter": "gov.abolitions.premium_tax_credit", - "description": "Set all values of Affordable Care Act Premium Tax Credit to zero.", - "label": "Abolish Affordable Care Act Premium Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.aca_ptc": { - "type": "parameter", - "parameter": "gov.abolitions.aca_ptc", - "description": "Set all values of ACA premium tax credit for tax unit to zero.", - "label": "Abolish ACA premium tax credit for tax unit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.slcsp_age_0": { - "type": "parameter", - "parameter": "gov.abolitions.slcsp_age_0", - "description": "Set all values of Second-lowest ACA silver-plan for a person aged 0 to zero.", - "label": "Abolish Second-lowest ACA silver-plan for a person aged 0", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.slcsp_family_tier_applies": { - "type": "parameter", - "parameter": "gov.abolitions.slcsp_family_tier_applies", - "description": "Set all values of ACA family tier applies, rather than age curves to zero.", - "label": "Abolish ACA family tier applies, rather than age curves", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.slcsp": { - "type": "parameter", - "parameter": "gov.abolitions.slcsp", - "description": "Set all values of Second-lowest ACA silver-plan cost to zero.", - "label": "Abolish Second-lowest ACA silver-plan cost", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.slcsp_age_curve_applies": { - "type": "parameter", - "parameter": "gov.abolitions.slcsp_age_curve_applies", - "description": "Set all values of ACA age curve applies, rather than family tier to zero.", - "label": "Abolish ACA age curve applies, rather than family tier", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.slcsp_age_curve_amount_person": { - "type": "parameter", - "parameter": "gov.abolitions.slcsp_age_curve_amount_person", - "description": "Set all values of Second-lowest ACA silver-plan cost, for people in age curve states to zero.", - "label": "Abolish Second-lowest ACA silver-plan cost, for people in age curve states", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.slcsp_family_tier_multiplier": { - "type": "parameter", - "parameter": "gov.abolitions.slcsp_family_tier_multiplier", - "description": "Set all values of ACA family tier multiplier for premium calculation to zero.", - "label": "Abolish ACA family tier multiplier for premium calculation", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.slcsp_rating_area_default": { - "type": "parameter", - "parameter": "gov.abolitions.slcsp_rating_area_default", - "description": "Set all values of Second-lowest ACA silver-plan cost rating area outside of LA County to zero.", - "label": "Abolish Second-lowest ACA silver-plan cost rating area outside of LA County", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.slcsp_rating_area_la_county": { - "type": "parameter", - "parameter": "gov.abolitions.slcsp_rating_area_la_county", - "description": "Set all values of Second-lowest ACA silver-plan cost rating area in Los Angeles County to zero.", - "label": "Abolish Second-lowest ACA silver-plan cost rating area in Los Angeles County", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.slcsp_rating_area": { - "type": "parameter", - "parameter": "gov.abolitions.slcsp_rating_area", - "description": "Set all values of Second-lowest ACA silver-plan cost rating area to zero.", - "label": "Abolish Second-lowest ACA silver-plan cost rating area", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.slcsp_family_tier_amount": { - "type": "parameter", - "parameter": "gov.abolitions.slcsp_family_tier_amount", - "description": "Set all values of ACA family tier premium amount to zero.", - "label": "Abolish ACA family tier premium amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_aca_eshi_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.is_aca_eshi_eligible", - "description": "Set all values of Person is eligible for employer-sponsored health insurance under ACA rules to zero.", - "label": "Abolish Person is eligible for employer-sponsored health insurance under ACA rules", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_aca_ptc_immigration_status_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.is_aca_ptc_immigration_status_eligible", - "description": "Set all values of Person is eligible for ACA premium tax credit and pays ACA premium due to immigration status to zero.", - "label": "Abolish Person is eligible for ACA premium tax credit and pays ACA premium due to immigration status", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.aca_magi_fraction": { - "type": "parameter", - "parameter": "gov.abolitions.aca_magi_fraction", - "description": "Set all values of ACA-related modified AGI as fraction of prior-year FPL to zero.", - "label": "Abolish ACA-related modified AGI as fraction of prior-year FPL", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.aca_child_index": { - "type": "parameter", - "parameter": "gov.abolitions.aca_child_index", - "description": "Set all values of Index of child in tax unit (1 = oldest) to zero.", - "label": "Abolish Index of child in tax unit (1 = oldest)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.aca_magi": { - "type": "parameter", - "parameter": "gov.abolitions.aca_magi", - "description": "Set all values of ACA-related modified AGI for this tax unit to zero.", - "label": "Abolish ACA-related modified AGI for this tax unit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_aca_ptc_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.is_aca_ptc_eligible", - "description": "Set all values of Person is eligible for ACA premium tax credit and pays ACA premium to zero.", - "label": "Abolish Person is eligible for ACA premium tax credit and pays ACA premium", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_co_denver_dhs_elderly": { - "type": "parameter", - "parameter": "gov.abolitions.is_co_denver_dhs_elderly", - "description": "Set all values of Denver DHS elderly to zero.", - "label": "Abolish Denver DHS elderly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.has_co_denver_dhs_elderly_disabled": { - "type": "parameter", - "parameter": "gov.abolitions.has_co_denver_dhs_elderly_disabled", - "description": "Set all values of Has Denver DHS elderly or disabled people to zero.", - "label": "Abolish Has Denver DHS elderly or disabled people", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_denver_property_tax_relief_income": { - "type": "parameter", - "parameter": "gov.abolitions.co_denver_property_tax_relief_income", - "description": "Set all values of Denver Property Tax Relief income to zero.", - "label": "Abolish Denver Property Tax Relief income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_denver_renter_property_tax_relief": { - "type": "parameter", - "parameter": "gov.abolitions.co_denver_renter_property_tax_relief", - "description": "Set all values of Denver Property Tax Relief for renters to zero.", - "label": "Abolish Denver Property Tax Relief for renters", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_denver_property_tax_relief": { - "type": "parameter", - "parameter": "gov.abolitions.co_denver_property_tax_relief", - "description": "Set all values of Denver Property Tax Relief to zero.", - "label": "Abolish Denver Property Tax Relief", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_denver_homeowner_property_tax_relief": { - "type": "parameter", - "parameter": "gov.abolitions.co_denver_homeowner_property_tax_relief", - "description": "Set all values of Denver Property Tax Relief for homeowners to zero.", - "label": "Abolish Denver Property Tax Relief for homeowners", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_denver_property_tax_relief_renter_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.co_denver_property_tax_relief_renter_eligible", - "description": "Set all values of Eligible for the renter Denver Property Tax Relief to zero.", - "label": "Abolish Eligible for the renter Denver Property Tax Relief", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_denver_property_tax_relief_homeowner_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.co_denver_property_tax_relief_homeowner_eligible", - "description": "Set all values of Eligible for the homeowner Denver Property Tax Relief to zero.", - "label": "Abolish Eligible for the homeowner Denver Property Tax Relief", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nyc_income_tax_before_credits": { - "type": "parameter", - "parameter": "gov.abolitions.nyc_income_tax_before_credits", - "description": "Set all values of NYC income tax before credits to zero.", - "label": "Abolish NYC income tax before credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nyc_income_tax_before_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.nyc_income_tax_before_refundable_credits", - "description": "Set all values of NYC income tax to zero.", - "label": "Abolish NYC income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nyc_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.nyc_non_refundable_credits", - "description": "Set all values of NYC non-refundable tax credits to zero.", - "label": "Abolish NYC non-refundable tax credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nyc_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.nyc_refundable_credits", - "description": "Set all values of NYC refundable credits to zero.", - "label": "Abolish NYC refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nyc_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.nyc_income_tax", - "description": "Set all values of NYC income tax to zero.", - "label": "Abolish NYC income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nyc_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.nyc_eitc", - "description": "Set all values of NYC EITC to zero.", - "label": "Abolish NYC EITC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nyc_household_credit": { - "type": "parameter", - "parameter": "gov.abolitions.nyc_household_credit", - "description": "Set all values of NYC Household Credit to zero.", - "label": "Abolish NYC Household Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nyc_cdcc": { - "type": "parameter", - "parameter": "gov.abolitions.nyc_cdcc", - "description": "Set all values of NYC Child and Dependent Care Credit to zero.", - "label": "Abolish NYC Child and Dependent Care Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nyc_cdcc_applicable_percentage": { - "type": "parameter", - "parameter": "gov.abolitions.nyc_cdcc_applicable_percentage", - "description": "Set all values of NYC CDCC rate to zero.", - "label": "Abolish NYC CDCC rate", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nyc_cdcc_age_restricted_expenses": { - "type": "parameter", - "parameter": "gov.abolitions.nyc_cdcc_age_restricted_expenses", - "description": "Set all values of Childcare expenses for children under NYC CDCC age limit to zero.", - "label": "Abolish Childcare expenses for children under NYC CDCC age limit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nyc_cdcc_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.nyc_cdcc_eligible", - "description": "Set all values of Eligible for NYC CDCC to zero.", - "label": "Abolish Eligible for NYC CDCC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nyc_cdcc_share_qualifying_childcare_expenses": { - "type": "parameter", - "parameter": "gov.abolitions.nyc_cdcc_share_qualifying_childcare_expenses", - "description": "Set all values of Share of Childcare expenses that qualify towards NYC CDCC to zero.", - "label": "Abolish Share of Childcare expenses that qualify towards NYC CDCC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nyc_school_tax_credit_rate_reduction_amount": { - "type": "parameter", - "parameter": "gov.abolitions.nyc_school_tax_credit_rate_reduction_amount", - "description": "Set all values of NYC School Tax Credit Rate Reduction Amount to zero.", - "label": "Abolish NYC School Tax Credit Rate Reduction Amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nyc_school_tax_credit": { - "type": "parameter", - "parameter": "gov.abolitions.nyc_school_tax_credit", - "description": "Set all values of NYC School Tax Credit to zero.", - "label": "Abolish NYC School Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nyc_school_tax_credit_rate_reduction_amount_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.nyc_school_tax_credit_rate_reduction_amount_eligible", - "description": "Set all values of Eligible for NYC School Tax Credit Rate Reduction Amount to zero.", - "label": "Abolish Eligible for NYC School Tax Credit Rate Reduction Amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nyc_school_tax_credit_fixed_amount": { - "type": "parameter", - "parameter": "gov.abolitions.nyc_school_tax_credit_fixed_amount", - "description": "Set all values of NYC School Tax Credit Fixed Amount to zero.", - "label": "Abolish NYC School Tax Credit Fixed Amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nyc_school_tax_credit_fixed_amount_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.nyc_school_tax_credit_fixed_amount_eligible", - "description": "Set all values of Eligible for NYC School Tax Credit Fixed Amount to zero.", - "label": "Abolish Eligible for NYC School Tax Credit Fixed Amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nyc_school_credit_income": { - "type": "parameter", - "parameter": "gov.abolitions.nyc_school_credit_income", - "description": "Set all values of NYC income used for school tax credit to zero.", - "label": "Abolish NYC income used for school tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nyc_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.nyc_taxable_income", - "description": "Set all values of NYC taxable income to zero.", - "label": "Abolish NYC taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.local_sales_tax": { - "type": "parameter", - "parameter": "gov.abolitions.local_sales_tax", - "description": "Set all values of Local sales tax to zero.", - "label": "Abolish Local sales tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.local_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.local_income_tax", - "description": "Set all values of Local income tax to zero.", - "label": "Abolish Local income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.in_riv": { - "type": "parameter", - "parameter": "gov.abolitions.in_riv", - "description": "Set all values of Is in Riverside County to zero.", - "label": "Abolish Is in Riverside County", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_riv_share_payment": { - "type": "parameter", - "parameter": "gov.abolitions.ca_riv_share_payment", - "description": "Set all values of Riverside County Sharing Households Assist Riverside's Energy program (SHARE) payment to zero.", - "label": "Abolish Riverside County Sharing Households Assist Riverside's Energy program (SHARE) payment", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_riv_share_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ca_riv_share_eligible", - "description": "Set all values of Eligible for the Riverside County Sharing Households Assist Riverside's Energy program (SHARE) to zero.", - "label": "Abolish Eligible for the Riverside County Sharing Households Assist Riverside's Energy program (SHARE)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_riv_share_countable_income": { - "type": "parameter", - "parameter": "gov.abolitions.ca_riv_share_countable_income", - "description": "Set all values of Riverside County Sharing Households Assist Riverside's Energy program (SHARE) countable income to zero.", - "label": "Abolish Riverside County Sharing Households Assist Riverside's Energy program (SHARE) countable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_riv_share_electricity_emergency_payment": { - "type": "parameter", - "parameter": "gov.abolitions.ca_riv_share_electricity_emergency_payment", - "description": "Set all values of Riverside County Sharing Households Assist Riverside's Energy program (SHARE) electric emergency payment to zero.", - "label": "Abolish Riverside County Sharing Households Assist Riverside's Energy program (SHARE) electric emergency payment", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_riv_liheap_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ca_riv_liheap_eligible", - "description": "Set all values of Eligible for the California Riverside County LIHEAP to zero.", - "label": "Abolish Eligible for the California Riverside County LIHEAP", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_riv_liheap_countable_income": { - "type": "parameter", - "parameter": "gov.abolitions.ca_riv_liheap_countable_income", - "description": "Set all values of Riverside County Low Income Home Energy Assistance Program (LIHEAP) countable income to zero.", - "label": "Abolish Riverside County Low Income Home Energy Assistance Program (LIHEAP) countable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_sf_wftc": { - "type": "parameter", - "parameter": "gov.abolitions.ca_sf_wftc", - "description": "Set all values of San Francisco Working Families Tax Credit to zero.", - "label": "Abolish San Francisco Working Families Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.in_la": { - "type": "parameter", - "parameter": "gov.abolitions.in_la", - "description": "Set all values of Is in Los Angeles County to zero.", - "label": "Abolish Is in Los Angeles County", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_la_expectant_parent_payment": { - "type": "parameter", - "parameter": "gov.abolitions.ca_la_expectant_parent_payment", - "description": "Set all values of Los Angeles County expectant parent payment to zero.", - "label": "Abolish Los Angeles County expectant parent payment", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_la_expectant_parent_payment_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ca_la_expectant_parent_payment_eligible", - "description": "Set all values of Eligible for the Los Angeles County expectant parent payment to zero.", - "label": "Abolish Eligible for the Los Angeles County expectant parent payment", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_la_infant_supplement_eligible_person": { - "type": "parameter", - "parameter": "gov.abolitions.ca_la_infant_supplement_eligible_person", - "description": "Set all values of Eligible for the Los Angeles County infant supplement to zero.", - "label": "Abolish Eligible for the Los Angeles County infant supplement", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_la_infant_supplement": { - "type": "parameter", - "parameter": "gov.abolitions.ca_la_infant_supplement", - "description": "Set all values of Los Angeles County infant supplement to zero.", - "label": "Abolish Los Angeles County infant supplement", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_general_relief_net_income": { - "type": "parameter", - "parameter": "gov.abolitions.la_general_relief_net_income", - "description": "Set all values of Net Income under the Los Angeles County General Relief after state and federal deductions to zero.", - "label": "Abolish Net Income under the Los Angeles County General Relief after state and federal deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_general_relief": { - "type": "parameter", - "parameter": "gov.abolitions.la_general_relief", - "description": "Set all values of Los Angeles County General Relief to zero.", - "label": "Abolish Los Angeles County General Relief", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_general_relief_gross_income": { - "type": "parameter", - "parameter": "gov.abolitions.la_general_relief_gross_income", - "description": "Set all values of Gross Income sources accounted for under the Los Angeles County General Relief to zero.", - "label": "Abolish Gross Income sources accounted for under the Los Angeles County General Relief", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_general_relief_base_amount": { - "type": "parameter", - "parameter": "gov.abolitions.la_general_relief_base_amount", - "description": "Set all values of Los Angeles County General Relief base amount to zero.", - "label": "Abolish Los Angeles County General Relief base amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_general_relief_rent_contribution": { - "type": "parameter", - "parameter": "gov.abolitions.la_general_relief_rent_contribution", - "description": "Set all values of Los Angeles County General Relief rent contribution to zero.", - "label": "Abolish Los Angeles County General Relief rent contribution", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_general_relief_housing_subsidy": { - "type": "parameter", - "parameter": "gov.abolitions.la_general_relief_housing_subsidy", - "description": "Set all values of Los Angeles County General Relief Housing Subsidy to zero.", - "label": "Abolish Los Angeles County General Relief Housing Subsidy", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_general_relief_housing_subsidy_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.la_general_relief_housing_subsidy_eligible", - "description": "Set all values of Eligible for the Los Angeles County General Relief Housing Subsidy to zero.", - "label": "Abolish Eligible for the Los Angeles County General Relief Housing Subsidy", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_general_relief_housing_subsidy_base_amount_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.la_general_relief_housing_subsidy_base_amount_eligible", - "description": "Set all values of Eligible for the Los Angeles County General Relief Housing Subsidy based on the base amount requirements to zero.", - "label": "Abolish Eligible for the Los Angeles County General Relief Housing Subsidy based on the base amount requirements", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_general_relief_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.la_general_relief_eligible", - "description": "Set all values of Eligible for the Los Angeles County General Relief to zero.", - "label": "Abolish Eligible for the Los Angeles County General Relief", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_general_relief_personal_property_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.la_general_relief_personal_property_eligible", - "description": "Set all values of Eligible for the Los Angeles County General Relief based on the personal property value requirements to zero.", - "label": "Abolish Eligible for the Los Angeles County General Relief based on the personal property value requirements", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_general_relief_home_value_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.la_general_relief_home_value_eligible", - "description": "Set all values of Eligible for the Los Angeles County General Relief based on the home value requirements to zero.", - "label": "Abolish Eligible for the Los Angeles County General Relief based on the home value requirements", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_general_relief_motor_vehicle_value_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.la_general_relief_motor_vehicle_value_eligible", - "description": "Set all values of Eligible for the Los Angeles County General Relief based on the motor vehicle value requirements to zero.", - "label": "Abolish Eligible for the Los Angeles County General Relief based on the motor vehicle value requirements", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_general_relief_age_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.la_general_relief_age_eligible", - "description": "Set all values of Eligible for the Los Angeles County General Relief based on the age requirements to zero.", - "label": "Abolish Eligible for the Los Angeles County General Relief based on the age requirements", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_general_relief_net_income_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.la_general_relief_net_income_eligible", - "description": "Set all values of Eligible for the Los Angeles County General Relief based on the net income requirements to zero.", - "label": "Abolish Eligible for the Los Angeles County General Relief based on the net income requirements", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_general_relief_net_income_limit": { - "type": "parameter", - "parameter": "gov.abolitions.la_general_relief_net_income_limit", - "description": "Set all values of Limit for the Los Angeles County General Relief net income requirements to zero.", - "label": "Abolish Limit for the Los Angeles County General Relief net income requirements", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_general_relief_cash_asset_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.la_general_relief_cash_asset_eligible", - "description": "Set all values of Eligible for the Los Angeles County General Relief based on the cash asset requirements to zero.", - "label": "Abolish Eligible for the Los Angeles County General Relief based on the cash asset requirements", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_general_relief_cash_asset_limit": { - "type": "parameter", - "parameter": "gov.abolitions.la_general_relief_cash_asset_limit", - "description": "Set all values of Limit for the Los Angeles County General Relief cash asset requirements to zero.", - "label": "Abolish Limit for the Los Angeles County General Relief cash asset requirements", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_general_relief_immigration_status_eligible_person": { - "type": "parameter", - "parameter": "gov.abolitions.la_general_relief_immigration_status_eligible_person", - "description": "Set all values of Eligible Person for the Los Angeles County General Relief based on the immigration status requirements to zero.", - "label": "Abolish Eligible Person for the Los Angeles County General Relief based on the immigration status requirements", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_general_relief_immigration_status_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.la_general_relief_immigration_status_eligible", - "description": "Set all values of Eligible for the Los Angeles County General Relief based on the immigration status requirements to zero.", - "label": "Abolish Eligible for the Los Angeles County General Relief based on the immigration status requirements", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_la_ez_save_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ca_la_ez_save_eligible", - "description": "Set all values of Eligible for the Los Angeles County EZ Save program to zero.", - "label": "Abolish Eligible for the Los Angeles County EZ Save program", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_la_ez_save_fpg": { - "type": "parameter", - "parameter": "gov.abolitions.ca_la_ez_save_fpg", - "description": "Set all values of Los Angeles County EZ save federal poverty guideline to zero.", - "label": "Abolish Los Angeles County EZ save federal poverty guideline", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_la_ez_save_countable_income": { - "type": "parameter", - "parameter": "gov.abolitions.ca_la_ez_save_countable_income", - "description": "Set all values of Los Angeles County EZ Save program countable income to zero.", - "label": "Abolish Los Angeles County EZ Save program countable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_la_ez_save": { - "type": "parameter", - "parameter": "gov.abolitions.ca_la_ez_save", - "description": "Set all values of Los Angeles County EZ Save program to zero.", - "label": "Abolish Los Angeles County EZ Save program", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_montgomery_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.md_montgomery_eitc", - "description": "Set all values of Montgomery County, Maryland EITC to zero.", - "label": "Abolish Montgomery County, Maryland EITC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.fcc_fpg_ratio": { - "type": "parameter", - "parameter": "gov.abolitions.fcc_fpg_ratio", - "description": "Set all values of Federal poverty ratio per FCC to zero.", - "label": "Abolish Federal poverty ratio per FCC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_acp_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.is_acp_eligible", - "description": "Set all values of Eligible for Affordable Connectivity Program to zero.", - "label": "Abolish Eligible for Affordable Connectivity Program", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.acp": { - "type": "parameter", - "parameter": "gov.abolitions.acp", - "description": "Set all values of Affordable Connectivity Program to zero.", - "label": "Abolish Affordable Connectivity Program", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.lifeline": { - "type": "parameter", - "parameter": "gov.abolitions.lifeline", - "description": "Set all values of Lifeline to zero.", - "label": "Abolish Lifeline", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.broadband_cost_after_lifeline": { - "type": "parameter", - "parameter": "gov.abolitions.broadband_cost_after_lifeline", - "description": "Set all values of Broadband costs after Lifeline to zero.", - "label": "Abolish Broadband costs after Lifeline", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_lifeline_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.is_lifeline_eligible", - "description": "Set all values of Eligible for Lifeline to zero.", - "label": "Abolish Eligible for Lifeline", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ebb": { - "type": "parameter", - "parameter": "gov.abolitions.ebb", - "description": "Set all values of Emergency Broadband Benefit amount to zero.", - "label": "Abolish Emergency Broadband Benefit amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_ebb_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.is_ebb_eligible", - "description": "Set all values of Eligible for Emergency Broadband Benefit to zero.", - "label": "Abolish Eligible for Emergency Broadband Benefit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pr_gross_income": { - "type": "parameter", - "parameter": "gov.abolitions.pr_gross_income", - "description": "Set all values of Puerto Rico gross income to zero.", - "label": "Abolish Puerto Rico gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pr_gross_income_person": { - "type": "parameter", - "parameter": "gov.abolitions.pr_gross_income_person", - "description": "Set all values of Puerto Rico gross income person to zero.", - "label": "Abolish Puerto Rico gross income person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pr_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.pr_refundable_credits", - "description": "Set all values of Puerto Rico refundable credits to zero.", - "label": "Abolish Puerto Rico refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pr_low_income_credit_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.pr_low_income_credit_eligible", - "description": "Set all values of Eligible unit for the Puerto Rico low income credit to zero.", - "label": "Abolish Eligible unit for the Puerto Rico low income credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pr_low_income_credit": { - "type": "parameter", - "parameter": "gov.abolitions.pr_low_income_credit", - "description": "Set all values of Puerto Rico low income credit to zero.", - "label": "Abolish Puerto Rico low income credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pr_low_income_credit_eligible_person": { - "type": "parameter", - "parameter": "gov.abolitions.pr_low_income_credit_eligible_person", - "description": "Set all values of Eligible person for the Puerto Rico low income credit to zero.", - "label": "Abolish Eligible person for the Puerto Rico low income credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pr_compensatory_low_income_credit": { - "type": "parameter", - "parameter": "gov.abolitions.pr_compensatory_low_income_credit", - "description": "Set all values of Additional compensatory low income credit to zero.", - "label": "Abolish Additional compensatory low income credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pr_low_income_credit_eligible_people": { - "type": "parameter", - "parameter": "gov.abolitions.pr_low_income_credit_eligible_people", - "description": "Set all values of Eligible people for the Puerto Rico low income credit to zero.", - "label": "Abolish Eligible people for the Puerto Rico low income credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pr_earned_income_credit_eligible_person": { - "type": "parameter", - "parameter": "gov.abolitions.pr_earned_income_credit_eligible_person", - "description": "Set all values of Puerto Rico earned income credit eligible person to zero.", - "label": "Abolish Puerto Rico earned income credit eligible person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pr_earned_income_credit_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.pr_earned_income_credit_eligible", - "description": "Set all values of Puerto Rico earned income credit eligible unit to zero.", - "label": "Abolish Puerto Rico earned income credit eligible unit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pr_earned_income_credit_unearned_income": { - "type": "parameter", - "parameter": "gov.abolitions.pr_earned_income_credit_unearned_income", - "description": "Set all values of Puerto Rico earned income credit unearned income to zero.", - "label": "Abolish Puerto Rico earned income credit unearned income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pr_earned_income_credit": { - "type": "parameter", - "parameter": "gov.abolitions.pr_earned_income_credit", - "description": "Set all values of Puerto Rico earned income credit to zero.", - "label": "Abolish Puerto Rico earned income credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pr_charitable_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.pr_charitable_deduction", - "description": "Set all values of Puerto Rico charitable deduction to zero.", - "label": "Abolish Puerto Rico charitable deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pr_casualty_loss_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.pr_casualty_loss_deduction", - "description": "Set all values of Puerto Rico casualty loss deduction to zero.", - "label": "Abolish Puerto Rico casualty loss deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pr_mortgage_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.pr_mortgage_deduction", - "description": "Set all values of Puerto Rico home mortgage deduction to zero.", - "label": "Abolish Puerto Rico home mortgage deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pr_medical_expense_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.pr_medical_expense_deduction", - "description": "Set all values of Puerto Rico medical expense deduction to zero.", - "label": "Abolish Puerto Rico medical expense deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pr_education_deduction_beneficiary_count": { - "type": "parameter", - "parameter": "gov.abolitions.pr_education_deduction_beneficiary_count", - "description": "Set all values of Puerto Rico education contribution deduction beneficiary count to zero.", - "label": "Abolish Puerto Rico education contribution deduction beneficiary count", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pr_education_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.pr_education_deduction", - "description": "Set all values of Puerto Rico education contribution deduction to zero.", - "label": "Abolish Puerto Rico education contribution deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pr_retirement_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.pr_retirement_deduction", - "description": "Set all values of Puerto Rico retirement contribution deduction to zero.", - "label": "Abolish Puerto Rico retirement contribution deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pr_retirement_deduction_eligibility": { - "type": "parameter", - "parameter": "gov.abolitions.pr_retirement_deduction_eligibility", - "description": "Set all values of Puerto Rico retirement contribution deduction eligibility to zero.", - "label": "Abolish Puerto Rico retirement contribution deduction eligibility", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hud_max_subsidy": { - "type": "parameter", - "parameter": "gov.abolitions.hud_max_subsidy", - "description": "Set all values of HUD max subsidy to zero.", - "label": "Abolish HUD max subsidy", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ami": { - "type": "parameter", - "parameter": "gov.abolitions.ami", - "description": "Set all values of Area median income to zero.", - "label": "Abolish Area median income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hud_annual_income": { - "type": "parameter", - "parameter": "gov.abolitions.hud_annual_income", - "description": "Set all values of HUD annual income to zero.", - "label": "Abolish HUD annual income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_hud_elderly_disabled_family": { - "type": "parameter", - "parameter": "gov.abolitions.is_hud_elderly_disabled_family", - "description": "Set all values of HUD elderly or disabled family to zero.", - "label": "Abolish HUD elderly or disabled family", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.housing_assistance": { - "type": "parameter", - "parameter": "gov.abolitions.housing_assistance", - "description": "Set all values of Housing assistance to zero.", - "label": "Abolish Housing assistance", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hud_adjusted_income": { - "type": "parameter", - "parameter": "gov.abolitions.hud_adjusted_income", - "description": "Set all values of HUD adjusted income to zero.", - "label": "Abolish HUD adjusted income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hud_gross_rent": { - "type": "parameter", - "parameter": "gov.abolitions.hud_gross_rent", - "description": "Set all values of HUD gross rent to zero.", - "label": "Abolish HUD gross rent", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_eligible_for_housing_assistance": { - "type": "parameter", - "parameter": "gov.abolitions.is_eligible_for_housing_assistance", - "description": "Set all values of Is eligible for HUD voucher to zero.", - "label": "Abolish Is eligible for HUD voucher", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hud_hap": { - "type": "parameter", - "parameter": "gov.abolitions.hud_hap", - "description": "Set all values of HUD housing assistance payment to zero.", - "label": "Abolish HUD housing assistance payment", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hud_utility_allowance": { - "type": "parameter", - "parameter": "gov.abolitions.hud_utility_allowance", - "description": "Set all values of HUD utility allowance to zero.", - "label": "Abolish HUD utility allowance", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pha_payment_standard": { - "type": "parameter", - "parameter": "gov.abolitions.pha_payment_standard", - "description": "Set all values of HUD payment standard to zero.", - "label": "Abolish HUD payment standard", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hud_minimum_rent": { - "type": "parameter", - "parameter": "gov.abolitions.hud_minimum_rent", - "description": "Set all values of HUD minimum rent to zero.", - "label": "Abolish HUD minimum rent", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hud_ttp": { - "type": "parameter", - "parameter": "gov.abolitions.hud_ttp", - "description": "Set all values of HUD total tenant payment to zero.", - "label": "Abolish HUD total tenant payment", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hud_ttp_adjusted_income_share": { - "type": "parameter", - "parameter": "gov.abolitions.hud_ttp_adjusted_income_share", - "description": "Set all values of HUD adjusted income share for total tenant payment to zero.", - "label": "Abolish HUD adjusted income share for total tenant payment", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hud_ttp_income_share": { - "type": "parameter", - "parameter": "gov.abolitions.hud_ttp_income_share", - "description": "Set all values of HUD income share for total tenant payment to zero.", - "label": "Abolish HUD income share for total tenant payment", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hud_especially_low_income_factor": { - "type": "parameter", - "parameter": "gov.abolitions.hud_especially_low_income_factor", - "description": "Set all values of HUD Especially Low income factor to zero.", - "label": "Abolish HUD Especially Low income factor", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hud_low_income_factor": { - "type": "parameter", - "parameter": "gov.abolitions.hud_low_income_factor", - "description": "Set all values of HUD Low income factor to zero.", - "label": "Abolish HUD Low income factor", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hud_very_low_income_factor": { - "type": "parameter", - "parameter": "gov.abolitions.hud_very_low_income_factor", - "description": "Set all values of HUD Very Low income factor to zero.", - "label": "Abolish HUD Very Low income factor", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hud_moderate_income_factor": { - "type": "parameter", - "parameter": "gov.abolitions.hud_moderate_income_factor", - "description": "Set all values of HUD Moderate income factor to zero.", - "label": "Abolish HUD Moderate income factor", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pell_grant": { - "type": "parameter", - "parameter": "gov.abolitions.pell_grant", - "description": "Set all values of Pell Grant to zero.", - "label": "Abolish Pell Grant", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pell_grant_uses_sai": { - "type": "parameter", - "parameter": "gov.abolitions.pell_grant_uses_sai", - "description": "Set all values of Pell Grant uses the student aid index to zero.", - "label": "Abolish Pell Grant uses the student aid index", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pell_grant_sai": { - "type": "parameter", - "parameter": "gov.abolitions.pell_grant_sai", - "description": "Set all values of Pell Grant student aid index to zero.", - "label": "Abolish Pell Grant student aid index", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pell_grant_max_fpg_percent_limit": { - "type": "parameter", - "parameter": "gov.abolitions.pell_grant_max_fpg_percent_limit", - "description": "Set all values of The maximum FPG percent to qualify for the maximum Pell Grant to zero.", - "label": "Abolish The maximum FPG percent to qualify for the maximum Pell Grant", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pell_grant_min_fpg_percent_limit": { - "type": "parameter", - "parameter": "gov.abolitions.pell_grant_min_fpg_percent_limit", - "description": "Set all values of The maximum FPG percent to qualify for the minimum Pell Grant to zero.", - "label": "Abolish The maximum FPG percent to qualify for the minimum Pell Grant", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pell_grant_contribution_from_assets": { - "type": "parameter", - "parameter": "gov.abolitions.pell_grant_contribution_from_assets", - "description": "Set all values of Pell Grant head contribution from assets to zero.", - "label": "Abolish Pell Grant head contribution from assets", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pell_grant_head_assets": { - "type": "parameter", - "parameter": "gov.abolitions.pell_grant_head_assets", - "description": "Set all values of Pell Grant head assets to zero.", - "label": "Abolish Pell Grant head assets", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pell_grant_head_available_income": { - "type": "parameter", - "parameter": "gov.abolitions.pell_grant_head_available_income", - "description": "Set all values of Pell Grant head available income to zero.", - "label": "Abolish Pell Grant head available income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pell_grant_head_contribution": { - "type": "parameter", - "parameter": "gov.abolitions.pell_grant_head_contribution", - "description": "Set all values of Pell Grant head contribution to zero.", - "label": "Abolish Pell Grant head contribution", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pell_grant_dependent_contribution": { - "type": "parameter", - "parameter": "gov.abolitions.pell_grant_dependent_contribution", - "description": "Set all values of Pell Grant dependent contribution to zero.", - "label": "Abolish Pell Grant dependent contribution", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pell_grant_dependent_allowances": { - "type": "parameter", - "parameter": "gov.abolitions.pell_grant_dependent_allowances", - "description": "Set all values of Pell Grant dependent allowances to zero.", - "label": "Abolish Pell Grant dependent allowances", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pell_grant_uses_efc": { - "type": "parameter", - "parameter": "gov.abolitions.pell_grant_uses_efc", - "description": "Set all values of Pell Grant uses the expected family contribution to zero.", - "label": "Abolish Pell Grant uses the expected family contribution", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pell_grant_efc": { - "type": "parameter", - "parameter": "gov.abolitions.pell_grant_efc", - "description": "Set all values of Pell Grant expected family contribution to zero.", - "label": "Abolish Pell Grant expected family contribution", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pell_grant_simplified_formula_applies": { - "type": "parameter", - "parameter": "gov.abolitions.pell_grant_simplified_formula_applies", - "description": "Set all values of Use Pell Grant simplified formula to zero.", - "label": "Abolish Use Pell Grant simplified formula", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pell_grant_dependents_in_college": { - "type": "parameter", - "parameter": "gov.abolitions.pell_grant_dependents_in_college", - "description": "Set all values of Pell Grant dependents in college to zero.", - "label": "Abolish Pell Grant dependents in college", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.has_usda_elderly_disabled": { - "type": "parameter", - "parameter": "gov.abolitions.has_usda_elderly_disabled", - "description": "Set all values of Has USDA elderly or disabled people to zero.", - "label": "Abolish Has USDA elderly or disabled people", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.has_all_usda_elderly_disabled": { - "type": "parameter", - "parameter": "gov.abolitions.has_all_usda_elderly_disabled", - "description": "Set all values of Has all USDA elderly or disabled people to zero.", - "label": "Abolish Has all USDA elderly or disabled people", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_usda_elderly": { - "type": "parameter", - "parameter": "gov.abolitions.is_usda_elderly", - "description": "Set all values of USDA elderly to zero.", - "label": "Abolish USDA elderly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_usda_disabled": { - "type": "parameter", - "parameter": "gov.abolitions.is_usda_disabled", - "description": "Set all values of USDA disabled status to zero.", - "label": "Abolish USDA disabled status", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.commodity_supplemental_food_program_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.commodity_supplemental_food_program_eligible", - "description": "Set all values of Commodity Supplemental Food Program eligible to zero.", - "label": "Abolish Commodity Supplemental Food Program eligible", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.commodity_supplemental_food_program": { - "type": "parameter", - "parameter": "gov.abolitions.commodity_supplemental_food_program", - "description": "Set all values of Commodity Supplemental Food Program to zero.", - "label": "Abolish Commodity Supplemental Food Program", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_wic_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.is_wic_eligible", - "description": "Set all values of Is eligible for WIC to zero.", - "label": "Abolish Is eligible for WIC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wic": { - "type": "parameter", - "parameter": "gov.abolitions.wic", - "description": "Set all values of WIC to zero.", - "label": "Abolish WIC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.meets_wic_income_test": { - "type": "parameter", - "parameter": "gov.abolitions.meets_wic_income_test", - "description": "Set all values of Meets WIC income test to zero.", - "label": "Abolish Meets WIC income test", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_wic_at_nutritional_risk": { - "type": "parameter", - "parameter": "gov.abolitions.is_wic_at_nutritional_risk", - "description": "Set all values of At nutritional risk for WIC to zero.", - "label": "Abolish At nutritional risk for WIC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wic_fpg": { - "type": "parameter", - "parameter": "gov.abolitions.wic_fpg", - "description": "Set all values of Pregnancy-adjusted poverty line for WIC to zero.", - "label": "Abolish Pregnancy-adjusted poverty line for WIC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.meets_wic_categorical_eligibility": { - "type": "parameter", - "parameter": "gov.abolitions.meets_wic_categorical_eligibility", - "description": "Set all values of Meets WIC categorical (program participation) eligibility to zero.", - "label": "Abolish Meets WIC categorical (program participation) eligibility", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.would_claim_wic": { - "type": "parameter", - "parameter": "gov.abolitions.would_claim_wic", - "description": "Set all values of Would claim WIC to zero.", - "label": "Abolish Would claim WIC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.school_meal_daily_subsidy": { - "type": "parameter", - "parameter": "gov.abolitions.school_meal_daily_subsidy", - "description": "Set all values of School meal subsidies per child per day to zero.", - "label": "Abolish School meal subsidies per child per day", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.free_school_meals": { - "type": "parameter", - "parameter": "gov.abolitions.free_school_meals", - "description": "Set all values of free school meals to zero.", - "label": "Abolish free school meals", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.meets_school_meal_categorical_eligibility": { - "type": "parameter", - "parameter": "gov.abolitions.meets_school_meal_categorical_eligibility", - "description": "Set all values of School meal categorical eligibility to zero.", - "label": "Abolish School meal categorical eligibility", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.school_meal_net_subsidy": { - "type": "parameter", - "parameter": "gov.abolitions.school_meal_net_subsidy", - "description": "Set all values of Free and reduced price school meals to zero.", - "label": "Abolish Free and reduced price school meals", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.school_meal_fpg_ratio": { - "type": "parameter", - "parameter": "gov.abolitions.school_meal_fpg_ratio", - "description": "Set all values of School meal FPG ratio to zero.", - "label": "Abolish School meal FPG ratio", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.reduced_price_school_meals": { - "type": "parameter", - "parameter": "gov.abolitions.reduced_price_school_meals", - "description": "Set all values of reduced price school meals to zero.", - "label": "Abolish reduced price school meals", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.school_meal_paid_daily_subsidy": { - "type": "parameter", - "parameter": "gov.abolitions.school_meal_paid_daily_subsidy", - "description": "Set all values of School meal subsidies per full-price child per day to zero.", - "label": "Abolish School meal subsidies per full-price child per day", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.school_meal_countable_income": { - "type": "parameter", - "parameter": "gov.abolitions.school_meal_countable_income", - "description": "Set all values of Countable income for school meals to zero.", - "label": "Abolish Countable income for school meals", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.snap": { - "type": "parameter", - "parameter": "gov.abolitions.snap", - "description": "Set all values of SNAP allotment to zero.", - "label": "Abolish SNAP allotment", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.snap_normal_allotment": { - "type": "parameter", - "parameter": "gov.abolitions.snap_normal_allotment", - "description": "Set all values of SNAP normal allotment to zero.", - "label": "Abolish SNAP normal allotment", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.snap_expected_contribution": { - "type": "parameter", - "parameter": "gov.abolitions.snap_expected_contribution", - "description": "Set all values of SNAP expected food contribution to zero.", - "label": "Abolish SNAP expected food contribution", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.snap_min_allotment": { - "type": "parameter", - "parameter": "gov.abolitions.snap_min_allotment", - "description": "Set all values of SNAP minimum allotment to zero.", - "label": "Abolish SNAP minimum allotment", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.snap_max_allotment": { - "type": "parameter", - "parameter": "gov.abolitions.snap_max_allotment", - "description": "Set all values of SNAP maximum allotment to zero.", - "label": "Abolish SNAP maximum allotment", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.snap_unit_size": { - "type": "parameter", - "parameter": "gov.abolitions.snap_unit_size", - "description": "Set all values of SNAP unit to zero.", - "label": "Abolish SNAP unit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.snap_emergency_allotment": { - "type": "parameter", - "parameter": "gov.abolitions.snap_emergency_allotment", - "description": "Set all values of SNAP emergency allotment to zero.", - "label": "Abolish SNAP emergency allotment", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.takes_up_snap_if_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.takes_up_snap_if_eligible", - "description": "Set all values of Whether a random eligible SPM unit does not claim SNAP to zero.", - "label": "Abolish Whether a random eligible SPM unit does not claim SNAP", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.snap_fpg": { - "type": "parameter", - "parameter": "gov.abolitions.snap_fpg", - "description": "Set all values of SNAP federal poverty guideline to zero.", - "label": "Abolish SNAP federal poverty guideline", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.snap_excluded_child_earner": { - "type": "parameter", - "parameter": "gov.abolitions.snap_excluded_child_earner", - "description": "Set all values of Excluded child earner to zero.", - "label": "Abolish Excluded child earner", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.snap_countable_earner": { - "type": "parameter", - "parameter": "gov.abolitions.snap_countable_earner", - "description": "Set all values of Countable income earner to zero.", - "label": "Abolish Countable income earner", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.snap_net_income": { - "type": "parameter", - "parameter": "gov.abolitions.snap_net_income", - "description": "Set all values of SNAP net income to zero.", - "label": "Abolish SNAP net income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.snap_unearned_income": { - "type": "parameter", - "parameter": "gov.abolitions.snap_unearned_income", - "description": "Set all values of SNAP unearned income to zero.", - "label": "Abolish SNAP unearned income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.snap_net_income_fpg_ratio": { - "type": "parameter", - "parameter": "gov.abolitions.snap_net_income_fpg_ratio", - "description": "Set all values of SNAP net income to FPL ratio to zero.", - "label": "Abolish SNAP net income to FPL ratio", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.snap_earned_income": { - "type": "parameter", - "parameter": "gov.abolitions.snap_earned_income", - "description": "Set all values of SNAP earned income to zero.", - "label": "Abolish SNAP earned income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.snap_earned_income_person": { - "type": "parameter", - "parameter": "gov.abolitions.snap_earned_income_person", - "description": "Set all values of SNAP earned income person to zero.", - "label": "Abolish SNAP earned income person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.snap_gross_income": { - "type": "parameter", - "parameter": "gov.abolitions.snap_gross_income", - "description": "Set all values of SNAP gross income to zero.", - "label": "Abolish SNAP gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.snap_gross_income_fpg_ratio": { - "type": "parameter", - "parameter": "gov.abolitions.snap_gross_income_fpg_ratio", - "description": "Set all values of SNAP gross income to FPL ratio to zero.", - "label": "Abolish SNAP gross income to FPL ratio", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.snap_child_support_gross_income_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.snap_child_support_gross_income_deduction", - "description": "Set all values of SNAP child support payment deduction from gross income to zero.", - "label": "Abolish SNAP child support payment deduction from gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.snap_earned_income_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.snap_earned_income_deduction", - "description": "Set all values of SNAP earned income deduction to zero.", - "label": "Abolish SNAP earned income deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.snap_dependent_care_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.snap_dependent_care_deduction", - "description": "Set all values of SNAP dependent care deduction to zero.", - "label": "Abolish SNAP dependent care deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.snap_child_support_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.snap_child_support_deduction", - "description": "Set all values of SNAP child support payment deduction to zero.", - "label": "Abolish SNAP child support payment deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.snap_excess_medical_expense_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.snap_excess_medical_expense_deduction", - "description": "Set all values of SNAP excess medical expense deduction to zero.", - "label": "Abolish SNAP excess medical expense deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.snap_standard_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.snap_standard_deduction", - "description": "Set all values of SNAP standard deduction to zero.", - "label": "Abolish SNAP standard deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.snap_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.snap_deductions", - "description": "Set all values of SNAP income deductions to zero.", - "label": "Abolish SNAP income deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.snap_self_employment_income_after_expense_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.snap_self_employment_income_after_expense_deduction", - "description": "Set all values of Self-employment income after the SNAP self-employment expense deduction to zero.", - "label": "Abolish Self-employment income after the SNAP self-employment expense deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.snap_self_employment_expense_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.snap_self_employment_expense_deduction", - "description": "Set all values of SNAP self-employment expense deduction to zero.", - "label": "Abolish SNAP self-employment expense deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.snap_excess_shelter_expense_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.snap_excess_shelter_expense_deduction", - "description": "Set all values of SNAP shelter deduction to zero.", - "label": "Abolish SNAP shelter deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.snap_standard_utility_allowance": { - "type": "parameter", - "parameter": "gov.abolitions.snap_standard_utility_allowance", - "description": "Set all values of SNAP Standard Utility Allowance to zero.", - "label": "Abolish SNAP Standard Utility Allowance", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.snap_limited_utility_allowance_by_household_size": { - "type": "parameter", - "parameter": "gov.abolitions.snap_limited_utility_allowance_by_household_size", - "description": "Set all values of SNAP Limited Utility Allowance by household size to zero.", - "label": "Abolish SNAP Limited Utility Allowance by household size", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.snap_individual_utility_allowance": { - "type": "parameter", - "parameter": "gov.abolitions.snap_individual_utility_allowance", - "description": "Set all values of SNAP Individual Utility Allowance to zero.", - "label": "Abolish SNAP Individual Utility Allowance", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.snap_state_using_standard_utility_allowance": { - "type": "parameter", - "parameter": "gov.abolitions.snap_state_using_standard_utility_allowance", - "description": "Set all values of Whether a state always uses the standard utility allowance to zero.", - "label": "Abolish Whether a state always uses the standard utility allowance", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.snap_standard_utility_allowance_by_household_size": { - "type": "parameter", - "parameter": "gov.abolitions.snap_standard_utility_allowance_by_household_size", - "description": "Set all values of SNAP Standard Utility Allowance by household size to zero.", - "label": "Abolish SNAP Standard Utility Allowance by household size", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.snap_limited_utility_allowance": { - "type": "parameter", - "parameter": "gov.abolitions.snap_limited_utility_allowance", - "description": "Set all values of SNAP Limited Utility Allowance to zero.", - "label": "Abolish SNAP Limited Utility Allowance", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.snap_utility_allowance": { - "type": "parameter", - "parameter": "gov.abolitions.snap_utility_allowance", - "description": "Set all values of Standard Utility Allowance to zero.", - "label": "Abolish Standard Utility Allowance", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.snap_net_income_pre_shelter": { - "type": "parameter", - "parameter": "gov.abolitions.snap_net_income_pre_shelter", - "description": "Set all values of SNAP net income (pre-shelter) to zero.", - "label": "Abolish SNAP net income (pre-shelter)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.meets_snap_gross_income_test": { - "type": "parameter", - "parameter": "gov.abolitions.meets_snap_gross_income_test", - "description": "Set all values of Meets SNAP gross income test to zero.", - "label": "Abolish Meets SNAP gross income test", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.meets_snap_net_income_test": { - "type": "parameter", - "parameter": "gov.abolitions.meets_snap_net_income_test", - "description": "Set all values of Meets SNAP net income test to zero.", - "label": "Abolish Meets SNAP net income test", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.meets_snap_asset_test": { - "type": "parameter", - "parameter": "gov.abolitions.meets_snap_asset_test", - "description": "Set all values of Meets SNAP asset test to zero.", - "label": "Abolish Meets SNAP asset test", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_snap_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.is_snap_eligible", - "description": "Set all values of SNAP eligible to zero.", - "label": "Abolish SNAP eligible", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.meets_snap_categorical_eligibility": { - "type": "parameter", - "parameter": "gov.abolitions.meets_snap_categorical_eligibility", - "description": "Set all values of SNAP categorical eligibility to zero.", - "label": "Abolish SNAP categorical eligibility", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.meets_snap_general_work_requirements": { - "type": "parameter", - "parameter": "gov.abolitions.meets_snap_general_work_requirements", - "description": "Set all values of Person is eligible for SNAP benefits via general work requirements to zero.", - "label": "Abolish Person is eligible for SNAP benefits via general work requirements", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.meets_snap_abawd_work_requirements": { - "type": "parameter", - "parameter": "gov.abolitions.meets_snap_abawd_work_requirements", - "description": "Set all values of Person is eligible for SNAP benefits via Able-Bodied Adult Without Dependents (ABAWD) work requirements to zero.", - "label": "Abolish Person is eligible for SNAP benefits via Able-Bodied Adult Without Dependents (ABAWD) work requirements", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.meets_snap_work_requirements": { - "type": "parameter", - "parameter": "gov.abolitions.meets_snap_work_requirements", - "description": "Set all values of SPM Unit is eligible for SNAP benefits via work requirements to zero.", - "label": "Abolish SPM Unit is eligible for SNAP benefits via work requirements", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_snap_ineligible_student": { - "type": "parameter", - "parameter": "gov.abolitions.is_snap_ineligible_student", - "description": "Set all values of Is an ineligible student for SNAP to zero.", - "label": "Abolish Is an ineligible student for SNAP", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nd_income_tax_before_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.nd_income_tax_before_refundable_credits", - "description": "Set all values of North Dakota income tax before refundable credits to zero.", - "label": "Abolish North Dakota income tax before refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nd_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.nd_income_tax", - "description": "Set all values of North Dakota income tax to zero.", - "label": "Abolish North Dakota income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nd_withheld_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.nd_withheld_income_tax", - "description": "Set all values of North Dakota withheld income tax to zero.", - "label": "Abolish North Dakota withheld income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nd_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.nd_taxable_income", - "description": "Set all values of North Dakota taxable income to zero.", - "label": "Abolish North Dakota taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nd_income_tax_before_credits": { - "type": "parameter", - "parameter": "gov.abolitions.nd_income_tax_before_credits", - "description": "Set all values of North Dakota income tax before credits to zero.", - "label": "Abolish North Dakota income tax before credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nd_nonrefundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.nd_nonrefundable_credits", - "description": "Set all values of North Dakota nonrefundable income tax credits to zero.", - "label": "Abolish North Dakota nonrefundable income tax credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nd_additions": { - "type": "parameter", - "parameter": "gov.abolitions.nd_additions", - "description": "Set all values of North Dakota additions to federal taxable income to zero.", - "label": "Abolish North Dakota additions to federal taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nd_mpc": { - "type": "parameter", - "parameter": "gov.abolitions.nd_mpc", - "description": "Set all values of North Dakota marriage-penalty nonrefundable credit amount to zero.", - "label": "Abolish North Dakota marriage-penalty nonrefundable credit amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nd_rtrc": { - "type": "parameter", - "parameter": "gov.abolitions.nd_rtrc", - "description": "Set all values of North Dakota resident-tax-relief nonrefundable credit amount to zero.", - "label": "Abolish North Dakota resident-tax-relief nonrefundable credit amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nd_subtractions": { - "type": "parameter", - "parameter": "gov.abolitions.nd_subtractions", - "description": "Set all values of North Dakota subtractions from federal taxable income to zero.", - "label": "Abolish North Dakota subtractions from federal taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nd_qdiv_subtraction": { - "type": "parameter", - "parameter": "gov.abolitions.nd_qdiv_subtraction", - "description": "Set all values of North Dakota qualified dividends subtraction from federal taxable income to zero.", - "label": "Abolish North Dakota qualified dividends subtraction from federal taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nd_ltcg_subtraction": { - "type": "parameter", - "parameter": "gov.abolitions.nd_ltcg_subtraction", - "description": "Set all values of North Dakota long-term capital gains subtraction from federal taxable income to zero.", - "label": "Abolish North Dakota long-term capital gains subtraction from federal taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_child_care_subsidies": { - "type": "parameter", - "parameter": "gov.abolitions.co_child_care_subsidies", - "description": "Set all values of Colorado child care subsidies to zero.", - "label": "Abolish Colorado child care subsidies", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_state_supplement": { - "type": "parameter", - "parameter": "gov.abolitions.co_state_supplement", - "description": "Set all values of Colorado State Supplement to zero.", - "label": "Abolish Colorado State Supplement", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_state_supplement_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.co_state_supplement_eligible", - "description": "Set all values of Colorado State Supplement Eligible to zero.", - "label": "Abolish Colorado State Supplement Eligible", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_oap_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.co_oap_eligible", - "description": "Set all values of Colorado Old Age Pension Eligible to zero.", - "label": "Abolish Colorado Old Age Pension Eligible", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_oap": { - "type": "parameter", - "parameter": "gov.abolitions.co_oap", - "description": "Set all values of Colorado Old Age Pension to zero.", - "label": "Abolish Colorado Old Age Pension", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_tanf_income_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.co_tanf_income_eligible", - "description": "Set all values of Colorado TANF income eligible to zero.", - "label": "Abolish Colorado TANF income eligible", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_tanf": { - "type": "parameter", - "parameter": "gov.abolitions.co_tanf", - "description": "Set all values of Colorado TANF to zero.", - "label": "Abolish Colorado TANF", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_tanf_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.co_tanf_eligible", - "description": "Set all values of Colorado TANF eligible to zero.", - "label": "Abolish Colorado TANF eligible", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_tanf_need_standard": { - "type": "parameter", - "parameter": "gov.abolitions.co_tanf_need_standard", - "description": "Set all values of Colorado TANF need standard to zero.", - "label": "Abolish Colorado TANF need standard", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_tanf_count_children": { - "type": "parameter", - "parameter": "gov.abolitions.co_tanf_count_children", - "description": "Set all values of Colorado TANF number of children to zero.", - "label": "Abolish Colorado TANF number of children", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_tanf_grant_standard": { - "type": "parameter", - "parameter": "gov.abolitions.co_tanf_grant_standard", - "description": "Set all values of Colorado TANF grant standard to zero.", - "label": "Abolish Colorado TANF grant standard", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_tanf_countable_gross_unearned_income": { - "type": "parameter", - "parameter": "gov.abolitions.co_tanf_countable_gross_unearned_income", - "description": "Set all values of Colorado TANF countable gross unearned income to zero.", - "label": "Abolish Colorado TANF countable gross unearned income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_tanf_countable_earned_income_need": { - "type": "parameter", - "parameter": "gov.abolitions.co_tanf_countable_earned_income_need", - "description": "Set all values of Colorado TANF total countable income for need determination to zero.", - "label": "Abolish Colorado TANF total countable income for need determination", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_tanf_countable_earned_income_grant_standard": { - "type": "parameter", - "parameter": "gov.abolitions.co_tanf_countable_earned_income_grant_standard", - "description": "Set all values of Colorado TANF total countable earned income for grant standard to zero.", - "label": "Abolish Colorado TANF total countable earned income for grant standard", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_tanf_countable_gross_earned_income": { - "type": "parameter", - "parameter": "gov.abolitions.co_tanf_countable_gross_earned_income", - "description": "Set all values of Colorado TANF countable gross earned income to zero.", - "label": "Abolish Colorado TANF countable gross earned income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_chp_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.co_chp_eligible", - "description": "Set all values of Colorado Child Health Plan Plus eligibility to zero.", - "label": "Abolish Colorado Child Health Plan Plus eligibility", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_chp": { - "type": "parameter", - "parameter": "gov.abolitions.co_chp", - "description": "Set all values of Colorado Child Health Plan Plus expense savings to zero.", - "label": "Abolish Colorado Child Health Plan Plus expense savings", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_chp_out_of_pocket_maximum": { - "type": "parameter", - "parameter": "gov.abolitions.co_chp_out_of_pocket_maximum", - "description": "Set all values of Colorado Child Health Plan Plus out of pocket maximum to zero.", - "label": "Abolish Colorado Child Health Plan Plus out of pocket maximum", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_income_tax_before_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.co_income_tax_before_refundable_credits", - "description": "Set all values of Colorado income tax before refundable credits to zero.", - "label": "Abolish Colorado income tax before refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_income_tax_before_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.co_income_tax_before_non_refundable_credits", - "description": "Set all values of Colorado income tax before non-refundable credits to zero.", - "label": "Abolish Colorado income tax before non-refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.co_refundable_credits", - "description": "Set all values of Colorado refundable credits to zero.", - "label": "Abolish Colorado refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.co_taxable_income", - "description": "Set all values of Colorado taxable income to zero.", - "label": "Abolish Colorado taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.co_income_tax", - "description": "Set all values of Colorado income tax to zero.", - "label": "Abolish Colorado income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_withheld_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.co_withheld_income_tax", - "description": "Set all values of Colorado withheld income tax to zero.", - "label": "Abolish Colorado withheld income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.co_eitc", - "description": "Set all values of Colorado EITC to zero.", - "label": "Abolish Colorado EITC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_sales_tax_refund_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.co_sales_tax_refund_eligible", - "description": "Set all values of Eligible for the Colorado sales tax refund to zero.", - "label": "Abolish Eligible for the Colorado sales tax refund", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_sales_tax_refund": { - "type": "parameter", - "parameter": "gov.abolitions.co_sales_tax_refund", - "description": "Set all values of Colorado sales tax refund to zero.", - "label": "Abolish Colorado sales tax refund", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_modified_agi": { - "type": "parameter", - "parameter": "gov.abolitions.co_modified_agi", - "description": "Set all values of Colorado modified adjusted gross income for the sales tax refund to zero.", - "label": "Abolish Colorado modified adjusted gross income for the sales tax refund", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_ctc": { - "type": "parameter", - "parameter": "gov.abolitions.co_ctc", - "description": "Set all values of Colorado child tax credit to zero.", - "label": "Abolish Colorado child tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_ctc_eligible_child": { - "type": "parameter", - "parameter": "gov.abolitions.co_ctc_eligible_child", - "description": "Set all values of Colorado child tax credit eligible child to zero.", - "label": "Abolish Colorado child tax credit eligible child", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_ctc_eligible_children_count": { - "type": "parameter", - "parameter": "gov.abolitions.co_ctc_eligible_children_count", - "description": "Set all values of Colorado child tax credit eligible children count to zero.", - "label": "Abolish Colorado child tax credit eligible children count", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_refundable_ctc": { - "type": "parameter", - "parameter": "gov.abolitions.co_refundable_ctc", - "description": "Set all values of Refundable Child Tax Credit replicated to include the Colorado limitations to zero.", - "label": "Abolish Refundable Child Tax Credit replicated to include the Colorado limitations", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_non_refundable_ctc": { - "type": "parameter", - "parameter": "gov.abolitions.co_non_refundable_ctc", - "description": "Set all values of Non-refundable Child Tax Credit replicated to include the Colorado limitations to zero.", - "label": "Abolish Non-refundable Child Tax Credit replicated to include the Colorado limitations", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_federal_ctc_child_individual_maximum": { - "type": "parameter", - "parameter": "gov.abolitions.co_federal_ctc_child_individual_maximum", - "description": "Set all values of CTC maximum amount (child) replicated to account for the Colorado state CTC child eligibility to zero.", - "label": "Abolish CTC maximum amount (child) replicated to account for the Colorado state CTC child eligibility", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_federal_ctc_maximum": { - "type": "parameter", - "parameter": "gov.abolitions.co_federal_ctc_maximum", - "description": "Set all values of Maximum CTC replicated to include the Colorado limitations to zero.", - "label": "Abolish Maximum CTC replicated to include the Colorado limitations", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_federal_ctc": { - "type": "parameter", - "parameter": "gov.abolitions.co_federal_ctc", - "description": "Set all values of Child Tax Credit replicated to include the Colorado limitations to zero.", - "label": "Abolish Child Tax Credit replicated to include the Colorado limitations", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_low_income_cdcc_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.co_low_income_cdcc_eligible", - "description": "Set all values of Eligible for the Colorado Low-income Child Care Expenses Credit to zero.", - "label": "Abolish Eligible for the Colorado Low-income Child Care Expenses Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_cdcc": { - "type": "parameter", - "parameter": "gov.abolitions.co_cdcc", - "description": "Set all values of Colorado Child Care Expenses Credit to zero.", - "label": "Abolish Colorado Child Care Expenses Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_low_income_cdcc": { - "type": "parameter", - "parameter": "gov.abolitions.co_low_income_cdcc", - "description": "Set all values of Colorado Low-income Child Care Expenses Credit to zero.", - "label": "Abolish Colorado Low-income Child Care Expenses Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_family_affordability_credit": { - "type": "parameter", - "parameter": "gov.abolitions.co_family_affordability_credit", - "description": "Set all values of Colorado Family Affordability Credit to zero.", - "label": "Abolish Colorado Family Affordability Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_income_qualified_senior_housing_credit": { - "type": "parameter", - "parameter": "gov.abolitions.co_income_qualified_senior_housing_credit", - "description": "Set all values of Colorado Income Qualified Senior Housing Income Tax Credit to zero.", - "label": "Abolish Colorado Income Qualified Senior Housing Income Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_income_qualified_senior_housing_credit_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.co_income_qualified_senior_housing_credit_eligible", - "description": "Set all values of Eligible for Colorado Income Qualified Senior Housing Income Tax Credit to zero.", - "label": "Abolish Eligible for Colorado Income Qualified Senior Housing Income Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_subtractions": { - "type": "parameter", - "parameter": "gov.abolitions.co_subtractions", - "description": "Set all values of Colorado subtractions to zero.", - "label": "Abolish Colorado subtractions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_military_retirement_subtraction": { - "type": "parameter", - "parameter": "gov.abolitions.co_military_retirement_subtraction", - "description": "Set all values of Colorado military retirement subtraction to zero.", - "label": "Abolish Colorado military retirement subtraction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_charitable_contribution_subtraction": { - "type": "parameter", - "parameter": "gov.abolitions.co_charitable_contribution_subtraction", - "description": "Set all values of Colorado charitable contribution subtraction to zero.", - "label": "Abolish Colorado charitable contribution subtraction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_charitable_contribution_subtraction_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.co_charitable_contribution_subtraction_eligible", - "description": "Set all values of Eligible for the Colorado charitable contribution subtraction to zero.", - "label": "Abolish Eligible for the Colorado charitable contribution subtraction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_collegeinvest_subtraction": { - "type": "parameter", - "parameter": "gov.abolitions.co_collegeinvest_subtraction", - "description": "Set all values of Colorado collegeinvest subtraction to zero.", - "label": "Abolish Colorado collegeinvest subtraction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_able_contribution_subtraction": { - "type": "parameter", - "parameter": "gov.abolitions.co_able_contribution_subtraction", - "description": "Set all values of Colorado able contribution subtraction to zero.", - "label": "Abolish Colorado able contribution subtraction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_pension_subtraction": { - "type": "parameter", - "parameter": "gov.abolitions.co_pension_subtraction", - "description": "Set all values of Colorado pension and annuity subtraction to zero.", - "label": "Abolish Colorado pension and annuity subtraction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_social_security_subtraction_indv": { - "type": "parameter", - "parameter": "gov.abolitions.co_social_security_subtraction_indv", - "description": "Set all values of Colorado social security subtraction for eligible individuals to zero.", - "label": "Abolish Colorado social security subtraction for eligible individuals", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_pension_subtraction_indv": { - "type": "parameter", - "parameter": "gov.abolitions.co_pension_subtraction_indv", - "description": "Set all values of Colorado pension and annuity subtraction for eligible individuals to zero.", - "label": "Abolish Colorado pension and annuity subtraction for eligible individuals", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_pension_subtraction_indv_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.co_pension_subtraction_indv_eligible", - "description": "Set all values of Eligible for the Colorado pension and annuity subtraction for eligible individuals to zero.", - "label": "Abolish Eligible for the Colorado pension and annuity subtraction for eligible individuals", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_social_security_subtraction_indv_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.co_social_security_subtraction_indv_eligible", - "description": "Set all values of Eligible for the Colorado social security subtraction for eligible individuals to zero.", - "label": "Abolish Eligible for the Colorado social security subtraction for eligible individuals", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_pension_subtraction_income": { - "type": "parameter", - "parameter": "gov.abolitions.co_pension_subtraction_income", - "description": "Set all values of Income for the Colorado pension and annuity subtraction to zero.", - "label": "Abolish Income for the Colorado pension and annuity subtraction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_additions": { - "type": "parameter", - "parameter": "gov.abolitions.co_additions", - "description": "Set all values of Colorado additions to federal taxable income to zero.", - "label": "Abolish Colorado additions to federal taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_state_addback": { - "type": "parameter", - "parameter": "gov.abolitions.co_state_addback", - "description": "Set all values of Colorado state income tax addback to zero.", - "label": "Abolish Colorado state income tax addback", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_qualified_business_income_deduction_addback_required": { - "type": "parameter", - "parameter": "gov.abolitions.co_qualified_business_income_deduction_addback_required", - "description": "Set all values of Required to add back the Colorado qualified business income deduction to zero.", - "label": "Abolish Required to add back the Colorado qualified business income deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_qualified_business_income_deduction_addback": { - "type": "parameter", - "parameter": "gov.abolitions.co_qualified_business_income_deduction_addback", - "description": "Set all values of Colorado qualified business income deduction addback to zero.", - "label": "Abolish Colorado qualified business income deduction addback", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_federal_deduction_addback": { - "type": "parameter", - "parameter": "gov.abolitions.co_federal_deduction_addback", - "description": "Set all values of Colorado federal deductions addback to zero.", - "label": "Abolish Colorado federal deductions addback", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_federal_deduction_addback_required": { - "type": "parameter", - "parameter": "gov.abolitions.co_federal_deduction_addback_required", - "description": "Set all values of Required to add back the Colorado federal deductions to zero.", - "label": "Abolish Required to add back the Colorado federal deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_ccap_subsidy": { - "type": "parameter", - "parameter": "gov.abolitions.co_ccap_subsidy", - "description": "Set all values of Colorado Child Care Assistance Program to zero.", - "label": "Abolish Colorado Child Care Assistance Program", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_ccap_countable_income": { - "type": "parameter", - "parameter": "gov.abolitions.co_ccap_countable_income", - "description": "Set all values of Colorado Child Care Assitance Program Countable Income to zero.", - "label": "Abolish Colorado Child Care Assitance Program Countable Income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_ccap_eligible_children": { - "type": "parameter", - "parameter": "gov.abolitions.co_ccap_eligible_children", - "description": "Set all values of Number of children eligible for Colorado Child Care Assistance Program to zero.", - "label": "Abolish Number of children eligible for Colorado Child Care Assistance Program", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_ccap_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.co_ccap_eligible", - "description": "Set all values of Eligible for Colorado Child Care Assistance Program to zero.", - "label": "Abolish Eligible for Colorado Child Care Assistance Program", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_ccap_parent_fee": { - "type": "parameter", - "parameter": "gov.abolitions.co_ccap_parent_fee", - "description": "Set all values of Colorado Child Care Assistance Program parent fee to zero.", - "label": "Abolish Colorado Child Care Assistance Program parent fee", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_ccap_child_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.co_ccap_child_eligible", - "description": "Set all values of Child eligibility for Colorado Child Care Assistance Program to zero.", - "label": "Abolish Child eligibility for Colorado Child Care Assistance Program", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_ccap_add_on_parent_fee": { - "type": "parameter", - "parameter": "gov.abolitions.co_ccap_add_on_parent_fee", - "description": "Set all values of Colorado Child Care Assistance Program add on parent fee to zero.", - "label": "Abolish Colorado Child Care Assistance Program add on parent fee", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_ccap_base_parent_fee": { - "type": "parameter", - "parameter": "gov.abolitions.co_ccap_base_parent_fee", - "description": "Set all values of Colorado Child Care Assistance Program base parent fee to zero.", - "label": "Abolish Colorado Child Care Assistance Program base parent fee", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_ccap_smi": { - "type": "parameter", - "parameter": "gov.abolitions.co_ccap_smi", - "description": "Set all values of State median income for Colorado CCAP to zero.", - "label": "Abolish State median income for Colorado CCAP", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_ccap_re_determination_income_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.co_ccap_re_determination_income_eligible", - "description": "Set all values of Eligible for the re-determination of Colorado Child Care Assistance Program through income to zero.", - "label": "Abolish Eligible for the re-determination of Colorado Child Care Assistance Program through income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_ccap_re_determination_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.co_ccap_re_determination_eligible", - "description": "Set all values of Eligible for the re-determination of the Colorado Child Care Assistance Program to zero.", - "label": "Abolish Eligible for the re-determination of the Colorado Child Care Assistance Program", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_ccap_entry_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.co_ccap_entry_eligible", - "description": "Set all values of Eligible for the entry of the Colorado Child Care Assistance Program to zero.", - "label": "Abolish Eligible for the entry of the Colorado Child Care Assistance Program", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_ccap_smi_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.co_ccap_smi_eligible", - "description": "Set all values of Meets Colorado Child Care Assistance Program state median income-based income eligibility test to zero.", - "label": "Abolish Meets Colorado Child Care Assistance Program state median income-based income eligibility test", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_ccap_entry_income_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.co_ccap_entry_income_eligible", - "description": "Set all values of Eligible for the entry of Colorado Child Care Assistance Program through income to zero.", - "label": "Abolish Eligible for the entry of Colorado Child Care Assistance Program through income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.co_ccap_fpg_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.co_ccap_fpg_eligible", - "description": "Set all values of Meets Colorado Child Care Assistance Program poverty-based income eligibility test to zero.", - "label": "Abolish Meets Colorado Child Care Assistance Program poverty-based income eligibility test", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_taxable_income_indv": { - "type": "parameter", - "parameter": "gov.abolitions.de_taxable_income_indv", - "description": "Set all values of Delaware taxable income when married couples are filing separately to zero.", - "label": "Abolish Delaware taxable income when married couples are filing separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.de_income_tax", - "description": "Set all values of Delaware personal income tax to zero.", - "label": "Abolish Delaware personal income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_withheld_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.de_withheld_income_tax", - "description": "Set all values of Delaware withheld income tax to zero.", - "label": "Abolish Delaware withheld income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_pre_exclusions_agi": { - "type": "parameter", - "parameter": "gov.abolitions.de_pre_exclusions_agi", - "description": "Set all values of Delaware individual adjusted gross income before exclusions to zero.", - "label": "Abolish Delaware individual adjusted gross income before exclusions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.de_non_refundable_credits", - "description": "Set all values of Delaware non-refundable credits to zero.", - "label": "Abolish Delaware non-refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_taxable_income_joint": { - "type": "parameter", - "parameter": "gov.abolitions.de_taxable_income_joint", - "description": "Set all values of Delaware taxable income when married filing jointly to zero.", - "label": "Abolish Delaware taxable income when married filing jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_income_tax_before_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.de_income_tax_before_refundable_credits", - "description": "Set all values of Delaware personal income tax before refundable credits to zero.", - "label": "Abolish Delaware personal income tax before refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_files_separately": { - "type": "parameter", - "parameter": "gov.abolitions.de_files_separately", - "description": "Set all values of married couple files separately on the Delaware tax return to zero.", - "label": "Abolish married couple files separately on the Delaware tax return", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_income_tax_before_non_refundable_credits_unit": { - "type": "parameter", - "parameter": "gov.abolitions.de_income_tax_before_non_refundable_credits_unit", - "description": "Set all values of Delaware personal income tax before non-refundable credits combined to zero.", - "label": "Abolish Delaware personal income tax before non-refundable credits combined", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_agi_joint": { - "type": "parameter", - "parameter": "gov.abolitions.de_agi_joint", - "description": "Set all values of Delaware adjusted gross income for each individual whe married filing jointly to zero.", - "label": "Abolish Delaware adjusted gross income for each individual whe married filing jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_income_tax_before_non_refundable_credits_joint": { - "type": "parameter", - "parameter": "gov.abolitions.de_income_tax_before_non_refundable_credits_joint", - "description": "Set all values of Delaware personal income tax before non-refundable credits when married filing jointly to zero.", - "label": "Abolish Delaware personal income tax before non-refundable credits when married filing jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_income_tax_before_non_refundable_credits_indv": { - "type": "parameter", - "parameter": "gov.abolitions.de_income_tax_before_non_refundable_credits_indv", - "description": "Set all values of Delaware personal income tax before non-refundable credits when married filing separately to zero.", - "label": "Abolish Delaware personal income tax before non-refundable credits when married filing separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.de_refundable_credits", - "description": "Set all values of Delaware refundable credits to zero.", - "label": "Abolish Delaware refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_agi_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.de_agi_indiv", - "description": "Set all values of Delaware adjusted gross income for each individual when married filing separately to zero.", - "label": "Abolish Delaware adjusted gross income for each individual when married filing separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.de_eitc", - "description": "Set all values of Delaware EITC to zero.", - "label": "Abolish Delaware EITC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_refundable_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.de_refundable_eitc", - "description": "Set all values of Delaware refundable EITC to zero.", - "label": "Abolish Delaware refundable EITC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_refundable_eitc_if_claimed": { - "type": "parameter", - "parameter": "gov.abolitions.de_refundable_eitc_if_claimed", - "description": "Set all values of Delaware refundable EITC if claimed to zero.", - "label": "Abolish Delaware refundable EITC if claimed", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_non_refundable_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.de_non_refundable_eitc", - "description": "Set all values of Delaware non-refundable EITC to zero.", - "label": "Abolish Delaware non-refundable EITC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_non_refundable_eitc_if_claimed": { - "type": "parameter", - "parameter": "gov.abolitions.de_non_refundable_eitc_if_claimed", - "description": "Set all values of Delaware non-refundable EITC if claimed to zero.", - "label": "Abolish Delaware non-refundable EITC if claimed", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_claims_refundable_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.de_claims_refundable_eitc", - "description": "Set all values of Filer claims refundable Delaware EITC to zero.", - "label": "Abolish Filer claims refundable Delaware EITC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_income_tax_if_claiming_refundable_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.de_income_tax_if_claiming_refundable_eitc", - "description": "Set all values of Delaware tax liability if claiming refundable Delaware EITC to zero.", - "label": "Abolish Delaware tax liability if claiming refundable Delaware EITC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_income_tax_if_claiming_non_refundable_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.de_income_tax_if_claiming_non_refundable_eitc", - "description": "Set all values of Delaware tax liability if claiming non-refundable Delaware EITC to zero.", - "label": "Abolish Delaware tax liability if claiming non-refundable Delaware EITC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_relief_rebate": { - "type": "parameter", - "parameter": "gov.abolitions.de_relief_rebate", - "description": "Set all values of Delaware relief rebate to zero.", - "label": "Abolish Delaware relief rebate", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_cdcc": { - "type": "parameter", - "parameter": "gov.abolitions.de_cdcc", - "description": "Set all values of Delaware dependent care credit to zero.", - "label": "Abolish Delaware dependent care credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_personal_credit": { - "type": "parameter", - "parameter": "gov.abolitions.de_personal_credit", - "description": "Set all values of Delaware personal credit to zero.", - "label": "Abolish Delaware personal credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_aged_personal_credit": { - "type": "parameter", - "parameter": "gov.abolitions.de_aged_personal_credit", - "description": "Set all values of Delaware aged personal credit to zero.", - "label": "Abolish Delaware aged personal credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_subtractions": { - "type": "parameter", - "parameter": "gov.abolitions.de_subtractions", - "description": "Set all values of Delaware subtractions to zero.", - "label": "Abolish Delaware subtractions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_pension_exclusion_income": { - "type": "parameter", - "parameter": "gov.abolitions.de_pension_exclusion_income", - "description": "Set all values of Income sources for the Delaware pension exclusion to zero.", - "label": "Abolish Income sources for the Delaware pension exclusion", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_pension_exclusion": { - "type": "parameter", - "parameter": "gov.abolitions.de_pension_exclusion", - "description": "Set all values of Delaware individual pension exclusion to zero.", - "label": "Abolish Delaware individual pension exclusion", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_elderly_or_disabled_income_exclusion_joint": { - "type": "parameter", - "parameter": "gov.abolitions.de_elderly_or_disabled_income_exclusion_joint", - "description": "Set all values of Delaware individual aged or disabled exclusion when married filing jointly to zero.", - "label": "Abolish Delaware individual aged or disabled exclusion when married filing jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_elderly_or_disabled_income_exclusion_eligible_person": { - "type": "parameter", - "parameter": "gov.abolitions.de_elderly_or_disabled_income_exclusion_eligible_person", - "description": "Set all values of Eligible person for the Delaware elderly or disabled income exclusion to zero.", - "label": "Abolish Eligible person for the Delaware elderly or disabled income exclusion", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_elderly_or_disabled_income_exclusion_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.de_elderly_or_disabled_income_exclusion_indiv", - "description": "Set all values of Delaware individual aged or disabled exclusion when married filing sepaartely to zero.", - "label": "Abolish Delaware individual aged or disabled exclusion when married filing sepaartely", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_tax_unit_itemizes": { - "type": "parameter", - "parameter": "gov.abolitions.de_tax_unit_itemizes", - "description": "Set all values of Whether the tax unit in Delaware itemizes the deductions to zero.", - "label": "Abolish Whether the tax unit in Delaware itemizes the deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_deduction_joint": { - "type": "parameter", - "parameter": "gov.abolitions.de_deduction_joint", - "description": "Set all values of Delaware deduction when married filing jointly to zero.", - "label": "Abolish Delaware deduction when married filing jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_deduction_indv": { - "type": "parameter", - "parameter": "gov.abolitions.de_deduction_indv", - "description": "Set all values of Delaware deduction when married couples are filing separately to zero.", - "label": "Abolish Delaware deduction when married couples are filing separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_itemized_deductions_unit": { - "type": "parameter", - "parameter": "gov.abolitions.de_itemized_deductions_unit", - "description": "Set all values of Delaware itemized deductions to zero.", - "label": "Abolish Delaware itemized deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_itemized_deductions_joint": { - "type": "parameter", - "parameter": "gov.abolitions.de_itemized_deductions_joint", - "description": "Set all values of Delaware itemized deductions when married filing jointly to zero.", - "label": "Abolish Delaware itemized deductions when married filing jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_itemized_deductions_indv": { - "type": "parameter", - "parameter": "gov.abolitions.de_itemized_deductions_indv", - "description": "Set all values of Delaware itemized deductions when married couples are filing separately to zero.", - "label": "Abolish Delaware itemized deductions when married couples are filing separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_capped_real_estate_tax": { - "type": "parameter", - "parameter": "gov.abolitions.de_capped_real_estate_tax", - "description": "Set all values of Delaware capped real estate tax to zero.", - "label": "Abolish Delaware capped real estate tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_base_standard_deduction_joint": { - "type": "parameter", - "parameter": "gov.abolitions.de_base_standard_deduction_joint", - "description": "Set all values of Delaware base standard deduction when married couples are filing jointly to zero.", - "label": "Abolish Delaware base standard deduction when married couples are filing jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_standard_deduction_indv": { - "type": "parameter", - "parameter": "gov.abolitions.de_standard_deduction_indv", - "description": "Set all values of Delaware standard deduction when married couples are filing separately to zero.", - "label": "Abolish Delaware standard deduction when married couples are filing separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_standard_deduction_joint": { - "type": "parameter", - "parameter": "gov.abolitions.de_standard_deduction_joint", - "description": "Set all values of Delaware standard deduction when married filing jointly to zero.", - "label": "Abolish Delaware standard deduction when married filing jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_base_standard_deduction_indv": { - "type": "parameter", - "parameter": "gov.abolitions.de_base_standard_deduction_indv", - "description": "Set all values of Delaware base standard deduction when married couples are filing separately to zero.", - "label": "Abolish Delaware base standard deduction when married couples are filing separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_additional_standard_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.de_additional_standard_deduction", - "description": "Set all values of Delaware additional standard deduction to zero.", - "label": "Abolish Delaware additional standard deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ks_withheld_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.ks_withheld_income_tax", - "description": "Set all values of Kansas withheld income tax to zero.", - "label": "Abolish Kansas withheld income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ks_income_tax_before_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ks_income_tax_before_refundable_credits", - "description": "Set all values of Kansas income tax before refundable credits to zero.", - "label": "Abolish Kansas income tax before refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ks_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.ks_income_tax", - "description": "Set all values of Kansas income tax to zero.", - "label": "Abolish Kansas income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ks_income_tax_before_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ks_income_tax_before_credits", - "description": "Set all values of Kansas income tax before credits to zero.", - "label": "Abolish Kansas income tax before credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ks_agi": { - "type": "parameter", - "parameter": "gov.abolitions.ks_agi", - "description": "Set all values of Kansas AGI to zero.", - "label": "Abolish Kansas AGI", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ks_agi_subtractions": { - "type": "parameter", - "parameter": "gov.abolitions.ks_agi_subtractions", - "description": "Set all values of Kansas AGI subtractions from federal AGI to zero.", - "label": "Abolish Kansas AGI subtractions from federal AGI", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ks_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.ks_taxable_income", - "description": "Set all values of Kansas taxable income to zero.", - "label": "Abolish Kansas taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ks_fstc": { - "type": "parameter", - "parameter": "gov.abolitions.ks_fstc", - "description": "Set all values of Kansas food sales tax credit to zero.", - "label": "Abolish Kansas food sales tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ks_nonrefundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ks_nonrefundable_credits", - "description": "Set all values of Kansas nonrefundable income tax credits to zero.", - "label": "Abolish Kansas nonrefundable income tax credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ks_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ks_refundable_credits", - "description": "Set all values of Kansas refundable income tax credits to zero.", - "label": "Abolish Kansas refundable income tax credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ks_cdcc": { - "type": "parameter", - "parameter": "gov.abolitions.ks_cdcc", - "description": "Set all values of Kansas child and dependent care expenses credit to zero.", - "label": "Abolish Kansas child and dependent care expenses credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ks_refundable_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.ks_refundable_eitc", - "description": "Set all values of Kansas refundable EITC amount to zero.", - "label": "Abolish Kansas refundable EITC amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ks_nonrefundable_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.ks_nonrefundable_eitc", - "description": "Set all values of Kansas EITC nonrefundable amount to zero.", - "label": "Abolish Kansas EITC nonrefundable amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ks_total_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.ks_total_eitc", - "description": "Set all values of Kansas total EITC amount (both nonrefundable and refundable) to zero.", - "label": "Abolish Kansas total EITC amount (both nonrefundable and refundable)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ks_count_exemptions": { - "type": "parameter", - "parameter": "gov.abolitions.ks_count_exemptions", - "description": "Set all values of number of KS exemptions to zero.", - "label": "Abolish number of KS exemptions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ks_disabled_veteran_exemptions_eligible_person": { - "type": "parameter", - "parameter": "gov.abolitions.ks_disabled_veteran_exemptions_eligible_person", - "description": "Set all values of Eligible person for the Kansas disabled veteran exemption to zero.", - "label": "Abolish Eligible person for the Kansas disabled veteran exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ks_exemptions": { - "type": "parameter", - "parameter": "gov.abolitions.ks_exemptions", - "description": "Set all values of Kansas exemptions amount to zero.", - "label": "Abolish Kansas exemptions amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ks_standard_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.ks_standard_deduction", - "description": "Set all values of Kansas standard deduction to zero.", - "label": "Abolish Kansas standard deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ks_itemized_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.ks_itemized_deductions", - "description": "Set all values of Kansas itemized deductions to zero.", - "label": "Abolish Kansas itemized deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.me_income_tax_before_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.me_income_tax_before_refundable_credits", - "description": "Set all values of Maine income tax to zero.", - "label": "Abolish Maine income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.me_income_tax_before_credits": { - "type": "parameter", - "parameter": "gov.abolitions.me_income_tax_before_credits", - "description": "Set all values of Maine main income tax (before credits and supplemental tax) to zero.", - "label": "Abolish Maine main income tax (before credits and supplemental tax)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.me_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.me_refundable_credits", - "description": "Set all values of Maine refundable credits to zero.", - "label": "Abolish Maine refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.me_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.me_non_refundable_credits", - "description": "Set all values of Maine non refundable credits to zero.", - "label": "Abolish Maine non refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.me_withheld_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.me_withheld_income_tax", - "description": "Set all values of Maine withheld income tax to zero.", - "label": "Abolish Maine withheld income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.me_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.me_income_tax", - "description": "Set all values of Maine income tax to zero.", - "label": "Abolish Maine income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.me_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.me_eitc", - "description": "Set all values of Maine EITC to zero.", - "label": "Abolish Maine EITC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.me_sales_and_property_tax_fairness_credit_income": { - "type": "parameter", - "parameter": "gov.abolitions.me_sales_and_property_tax_fairness_credit_income", - "description": "Set all values of Maine sales and property tax fairness credit total income to zero.", - "label": "Abolish Maine sales and property tax fairness credit total income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.me_sales_tax_fairness_credit": { - "type": "parameter", - "parameter": "gov.abolitions.me_sales_tax_fairness_credit", - "description": "Set all values of Maine sales tax fairness credit to zero.", - "label": "Abolish Maine sales tax fairness credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.me_sales_tax_fairness_credit_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.me_sales_tax_fairness_credit_eligible", - "description": "Set all values of Eligible for the Maine sales tax fairness credit to zero.", - "label": "Abolish Eligible for the Maine sales tax fairness credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.me_property_tax_fairness_credit_veterans_cap": { - "type": "parameter", - "parameter": "gov.abolitions.me_property_tax_fairness_credit_veterans_cap", - "description": "Set all values of Veterans cap for Maine property tax fairness credit to zero.", - "label": "Abolish Veterans cap for Maine property tax fairness credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.me_property_tax_fairness_credit_base_cap": { - "type": "parameter", - "parameter": "gov.abolitions.me_property_tax_fairness_credit_base_cap", - "description": "Set all values of Maine property tax fairness credit base cap to zero.", - "label": "Abolish Maine property tax fairness credit base cap", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.me_property_tax_fairness_credit_cap": { - "type": "parameter", - "parameter": "gov.abolitions.me_property_tax_fairness_credit_cap", - "description": "Set all values of Maine property tax fairness credit cap to zero.", - "label": "Abolish Maine property tax fairness credit cap", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.me_property_tax_fairness_credit_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.me_property_tax_fairness_credit_eligible", - "description": "Set all values of Eligible for the maine property tax fairness credit to zero.", - "label": "Abolish Eligible for the maine property tax fairness credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.me_property_tax_fairness_credit_benefit_base": { - "type": "parameter", - "parameter": "gov.abolitions.me_property_tax_fairness_credit_benefit_base", - "description": "Set all values of Maine property tax fairness credit benefit base to zero.", - "label": "Abolish Maine property tax fairness credit benefit base", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.me_property_tax_fairness_credit_countable_rent_property_tax": { - "type": "parameter", - "parameter": "gov.abolitions.me_property_tax_fairness_credit_countable_rent_property_tax", - "description": "Set all values of Countable rent and property tax for Maine property tax fairness credit to zero.", - "label": "Abolish Countable rent and property tax for Maine property tax fairness credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.me_property_tax_fairness_credit": { - "type": "parameter", - "parameter": "gov.abolitions.me_property_tax_fairness_credit", - "description": "Set all values of Maine property tax fairness credit to zero.", - "label": "Abolish Maine property tax fairness credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.me_property_tax_fairness_credit_countable_rent": { - "type": "parameter", - "parameter": "gov.abolitions.me_property_tax_fairness_credit_countable_rent", - "description": "Set all values of Countable rent for Maine property tax fairness credit to zero.", - "label": "Abolish Countable rent for Maine property tax fairness credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.me_child_care_credit": { - "type": "parameter", - "parameter": "gov.abolitions.me_child_care_credit", - "description": "Set all values of Maine child care credit to zero.", - "label": "Abolish Maine child care credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.me_refundable_child_care_credit": { - "type": "parameter", - "parameter": "gov.abolitions.me_refundable_child_care_credit", - "description": "Set all values of Maine refundable child care credit to zero.", - "label": "Abolish Maine refundable child care credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.me_non_refundable_child_care_credit": { - "type": "parameter", - "parameter": "gov.abolitions.me_non_refundable_child_care_credit", - "description": "Set all values of Maine non-refundable child care credit to zero.", - "label": "Abolish Maine non-refundable child care credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.me_dependent_exemption_credit_amount_person": { - "type": "parameter", - "parameter": "gov.abolitions.me_dependent_exemption_credit_amount_person", - "description": "Set all values of Maine dependent exemption credit amount for each person to zero.", - "label": "Abolish Maine dependent exemption credit amount for each person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.me_dependent_exemption_credit": { - "type": "parameter", - "parameter": "gov.abolitions.me_dependent_exemption_credit", - "description": "Set all values of Maine dependent exemption credit to zero.", - "label": "Abolish Maine dependent exemption credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.me_agi_subtractions": { - "type": "parameter", - "parameter": "gov.abolitions.me_agi_subtractions", - "description": "Set all values of ME AGI subtractions to zero.", - "label": "Abolish ME AGI subtractions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.me_agi": { - "type": "parameter", - "parameter": "gov.abolitions.me_agi", - "description": "Set all values of Maine adjusted gross income to zero.", - "label": "Abolish Maine adjusted gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.me_pension_income_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.me_pension_income_deduction", - "description": "Set all values of Maine pension income deduction to zero.", - "label": "Abolish Maine pension income deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.me_exemptions": { - "type": "parameter", - "parameter": "gov.abolitions.me_exemptions", - "description": "Set all values of Maine income exemptions to zero.", - "label": "Abolish Maine income exemptions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.me_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.me_deductions", - "description": "Set all values of Maine income deductions to zero.", - "label": "Abolish Maine income deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.me_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.me_taxable_income", - "description": "Set all values of Maine taxable income to zero.", - "label": "Abolish Maine taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.me_itemized_deductions_pre_phaseout": { - "type": "parameter", - "parameter": "gov.abolitions.me_itemized_deductions_pre_phaseout", - "description": "Set all values of Maine itemized deductions before phaseout to zero.", - "label": "Abolish Maine itemized deductions before phaseout", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.me_deduction_phaseout_percentage": { - "type": "parameter", - "parameter": "gov.abolitions.me_deduction_phaseout_percentage", - "description": "Set all values of Maine deduction phaseout percentage to zero.", - "label": "Abolish Maine deduction phaseout percentage", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.me_personal_exemption_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.me_personal_exemption_deduction", - "description": "Set all values of Maine personal exemption deduction to zero.", - "label": "Abolish Maine personal exemption deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.or_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.or_income_tax", - "description": "Set all values of OR income tax after refundable credits to zero.", - "label": "Abolish OR income tax after refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.or_agi": { - "type": "parameter", - "parameter": "gov.abolitions.or_agi", - "description": "Set all values of Oregon adjusted gross income to zero.", - "label": "Abolish Oregon adjusted gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.or_income_tax_before_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.or_income_tax_before_refundable_credits", - "description": "Set all values of OR income tax before refundable credits to zero.", - "label": "Abolish OR income tax before refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.or_withheld_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.or_withheld_income_tax", - "description": "Set all values of Oregon withheld income tax to zero.", - "label": "Abolish Oregon withheld income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.or_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.or_taxable_income", - "description": "Set all values of OR taxable income to zero.", - "label": "Abolish OR taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.or_income_tax_before_credits": { - "type": "parameter", - "parameter": "gov.abolitions.or_income_tax_before_credits", - "description": "Set all values of OR income tax before credits to zero.", - "label": "Abolish OR income tax before credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.or_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.or_non_refundable_credits", - "description": "Set all values of OR uncapped non-refundable tax credits to zero.", - "label": "Abolish OR uncapped non-refundable tax credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.or_ctc": { - "type": "parameter", - "parameter": "gov.abolitions.or_ctc", - "description": "Set all values of Oregon Child Tax Credit to zero.", - "label": "Abolish Oregon Child Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.or_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.or_eitc", - "description": "Set all values of OR EITC to zero.", - "label": "Abolish OR EITC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.or_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.or_refundable_credits", - "description": "Set all values of Oregon refundable tax credits to zero.", - "label": "Abolish Oregon refundable tax credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.or_retirement_credit_eligible_person": { - "type": "parameter", - "parameter": "gov.abolitions.or_retirement_credit_eligible_person", - "description": "Set all values of Eligible person for the Oregon Retirement Income Tax Credit to zero.", - "label": "Abolish Eligible person for the Oregon Retirement Income Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.or_retirement_credit": { - "type": "parameter", - "parameter": "gov.abolitions.or_retirement_credit", - "description": "Set all values of Oregon Retirement Income Tax Credit to zero.", - "label": "Abolish Oregon Retirement Income Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.or_retirement_credit_household_income": { - "type": "parameter", - "parameter": "gov.abolitions.or_retirement_credit_household_income", - "description": "Set all values of Household income for the Oregon Retirement Income Tax Credit to zero.", - "label": "Abolish Household income for the Oregon Retirement Income Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.or_wfhdc_household_income": { - "type": "parameter", - "parameter": "gov.abolitions.or_wfhdc_household_income", - "description": "Set all values of Household income for the Oregon working family household and dependent care credit to zero.", - "label": "Abolish Household income for the Oregon working family household and dependent care credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.or_wfhdc_employment_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.or_wfhdc_employment_eligible", - "description": "Set all values of Employment eligible for the Oregon working family household and dependent care credit to zero.", - "label": "Abolish Employment eligible for the Oregon working family household and dependent care credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.or_wfhdc_income_category": { - "type": "parameter", - "parameter": "gov.abolitions.or_wfhdc_income_category", - "description": "Set all values of Oregon working family household and dependent care credit percentage table row letter to zero.", - "label": "Abolish Oregon working family household and dependent care credit percentage table row letter", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.or_wfhdc_income_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.or_wfhdc_income_eligible", - "description": "Set all values of Income eligible for the Oregon working family household and dependent care credit to zero.", - "label": "Abolish Income eligible for the Oregon working family household and dependent care credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.or_working_family_household_and_dependent_care_credit": { - "type": "parameter", - "parameter": "gov.abolitions.or_working_family_household_and_dependent_care_credit", - "description": "Set all values of Oregon working family household and dependent care credit to zero.", - "label": "Abolish Oregon working family household and dependent care credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.or_wfhdc_has_qualified_individual_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.or_wfhdc_has_qualified_individual_eligible", - "description": "Set all values of Check if household has eligible individuals for Oregon Working Family Household and Dependent Care Credit to zero.", - "label": "Abolish Check if household has eligible individuals for Oregon Working Family Household and Dependent Care Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.or_wfhdc_household_size_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.or_wfhdc_household_size_eligible", - "description": "Set all values of Household size eligible for the Oregon working family household and dependent care credit to zero.", - "label": "Abolish Household size eligible for the Oregon working family household and dependent care credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.or_wfhdc_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.or_wfhdc_eligible", - "description": "Set all values of Eligible for the Oregon working family household and dependent care credit to zero.", - "label": "Abolish Eligible for the Oregon working family household and dependent care credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.or_cdcc_relevant_expenses": { - "type": "parameter", - "parameter": "gov.abolitions.or_cdcc_relevant_expenses", - "description": "Set all values of Oregon working family household and dependent care expenses to zero.", - "label": "Abolish Oregon working family household and dependent care expenses", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.or_disabled_child_dependent_exemptions": { - "type": "parameter", - "parameter": "gov.abolitions.or_disabled_child_dependent_exemptions", - "description": "Set all values of OR disabled child dependent exemptions to zero.", - "label": "Abolish OR disabled child dependent exemptions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.or_severely_disabled_exemptions": { - "type": "parameter", - "parameter": "gov.abolitions.or_severely_disabled_exemptions", - "description": "Set all values of OR severely disabled exemptions for tax head or spouse to zero.", - "label": "Abolish OR severely disabled exemptions for tax head or spouse", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.or_regular_exemptions": { - "type": "parameter", - "parameter": "gov.abolitions.or_regular_exemptions", - "description": "Set all values of OR regular exemptions to zero.", - "label": "Abolish OR regular exemptions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.or_exemption_credit": { - "type": "parameter", - "parameter": "gov.abolitions.or_exemption_credit", - "description": "Set all values of OR exemption credit to zero.", - "label": "Abolish OR exemption credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.or_kicker": { - "type": "parameter", - "parameter": "gov.abolitions.or_kicker", - "description": "Set all values of OR Kicker to zero.", - "label": "Abolish OR Kicker", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.or_federal_tax_liability_subtraction": { - "type": "parameter", - "parameter": "gov.abolitions.or_federal_tax_liability_subtraction", - "description": "Set all values of OR federal tax liability subtraction to zero.", - "label": "Abolish OR federal tax liability subtraction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.or_income_subtractions": { - "type": "parameter", - "parameter": "gov.abolitions.or_income_subtractions", - "description": "Set all values of OR income subtractions to zero.", - "label": "Abolish OR income subtractions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.or_standard_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.or_standard_deduction", - "description": "Set all values of OR standard deduction to zero.", - "label": "Abolish OR standard deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.or_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.or_deductions", - "description": "Set all values of OR deductions to zero.", - "label": "Abolish OR deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.or_itemized_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.or_itemized_deductions", - "description": "Set all values of OR itemized deductions to zero.", - "label": "Abolish OR itemized deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ga_agi": { - "type": "parameter", - "parameter": "gov.abolitions.ga_agi", - "description": "Set all values of Georgia adjusted gross income to zero.", - "label": "Abolish Georgia adjusted gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ga_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.ga_taxable_income", - "description": "Set all values of Georgia taxable income to zero.", - "label": "Abolish Georgia taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ga_subtractions": { - "type": "parameter", - "parameter": "gov.abolitions.ga_subtractions", - "description": "Set all values of Georgia subtractions from federal adjusted gross income to zero.", - "label": "Abolish Georgia subtractions from federal adjusted gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ga_withheld_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.ga_withheld_income_tax", - "description": "Set all values of Georgia withheld income tax to zero.", - "label": "Abolish Georgia withheld income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ga_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.ga_income_tax", - "description": "Set all values of Georgia income tax after refundable credits to zero.", - "label": "Abolish Georgia income tax after refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ga_income_tax_before_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ga_income_tax_before_non_refundable_credits", - "description": "Set all values of Georgia income tax before non-refundable credits to zero.", - "label": "Abolish Georgia income tax before non-refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ga_income_tax_before_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ga_income_tax_before_refundable_credits", - "description": "Set all values of Georgia income tax before refundable credits to zero.", - "label": "Abolish Georgia income tax before refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ga_additions": { - "type": "parameter", - "parameter": "gov.abolitions.ga_additions", - "description": "Set all values of Georgia additions to federal adjusted gross income to zero.", - "label": "Abolish Georgia additions to federal adjusted gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ga_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ga_non_refundable_credits", - "description": "Set all values of Georgia non-refundable credits to zero.", - "label": "Abolish Georgia non-refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ga_low_income_credit": { - "type": "parameter", - "parameter": "gov.abolitions.ga_low_income_credit", - "description": "Set all values of Georgia low income credit to zero.", - "label": "Abolish Georgia low income credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ga_cdcc": { - "type": "parameter", - "parameter": "gov.abolitions.ga_cdcc", - "description": "Set all values of Georgia non-refundable dependent care credit to zero.", - "label": "Abolish Georgia non-refundable dependent care credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ga_exemptions": { - "type": "parameter", - "parameter": "gov.abolitions.ga_exemptions", - "description": "Set all values of Georgia Exemptions to zero.", - "label": "Abolish Georgia Exemptions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ga_retirement_exclusion_person": { - "type": "parameter", - "parameter": "gov.abolitions.ga_retirement_exclusion_person", - "description": "Set all values of Georgia retirement exclusion for each person to zero.", - "label": "Abolish Georgia retirement exclusion for each person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ga_retirement_exclusion": { - "type": "parameter", - "parameter": "gov.abolitions.ga_retirement_exclusion", - "description": "Set all values of Georgia retirement exclusion to zero.", - "label": "Abolish Georgia retirement exclusion", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ga_retirement_income_exclusion_retirement_income": { - "type": "parameter", - "parameter": "gov.abolitions.ga_retirement_income_exclusion_retirement_income", - "description": "Set all values of Georgia retirement income for the retirement income exclusion to zero.", - "label": "Abolish Georgia retirement income for the retirement income exclusion", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ga_retirement_exclusion_countable_earned_income": { - "type": "parameter", - "parameter": "gov.abolitions.ga_retirement_exclusion_countable_earned_income", - "description": "Set all values of Countable earned income for the Georgia retirement exclusion for each person to zero.", - "label": "Abolish Countable earned income for the Georgia retirement exclusion for each person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ga_retirement_exclusion_eligible_person": { - "type": "parameter", - "parameter": "gov.abolitions.ga_retirement_exclusion_eligible_person", - "description": "Set all values of Eligible person for the Georgia retirement exclusion to zero.", - "label": "Abolish Eligible person for the Georgia retirement exclusion", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ga_military_retirement_exclusion_eligible_person": { - "type": "parameter", - "parameter": "gov.abolitions.ga_military_retirement_exclusion_eligible_person", - "description": "Set all values of Eligible person for the Georgia military retirement exclusion to zero.", - "label": "Abolish Eligible person for the Georgia military retirement exclusion", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ga_military_retirement_exclusion_person": { - "type": "parameter", - "parameter": "gov.abolitions.ga_military_retirement_exclusion_person", - "description": "Set all values of Georgia military retirement exclusion to zero.", - "label": "Abolish Georgia military retirement exclusion", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ga_military_retirement_exclusion": { - "type": "parameter", - "parameter": "gov.abolitions.ga_military_retirement_exclusion", - "description": "Set all values of Georgia military retirement exclusion to zero.", - "label": "Abolish Georgia military retirement exclusion", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ga_standard_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.ga_standard_deduction", - "description": "Set all values of Georgia standard deduction to zero.", - "label": "Abolish Georgia standard deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ga_additional_standard_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.ga_additional_standard_deduction", - "description": "Set all values of Georgia additional standard deduction to zero.", - "label": "Abolish Georgia additional standard deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ga_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.ga_deductions", - "description": "Set all values of Georgia deductions to zero.", - "label": "Abolish Georgia deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.vt_normal_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.vt_normal_income_tax", - "description": "Set all values of Vermont normal income tax before non-refundable credits to zero.", - "label": "Abolish Vermont normal income tax before non-refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.vt_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.vt_income_tax", - "description": "Set all values of Vermont income tax to zero.", - "label": "Abolish Vermont income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.vt_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.vt_eitc", - "description": "Set all values of Vermont earned income tax credit to zero.", - "label": "Abolish Vermont earned income tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.vt_amt": { - "type": "parameter", - "parameter": "gov.abolitions.vt_amt", - "description": "Set all values of Vermont alternative minimum tax (AMT) to zero.", - "label": "Abolish Vermont alternative minimum tax (AMT)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.vt_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.vt_refundable_credits", - "description": "Set all values of Vermont refundable credits to zero.", - "label": "Abolish Vermont refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.vt_income_tax_before_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.vt_income_tax_before_non_refundable_credits", - "description": "Set all values of Vermont income tax before non-refundable credits to zero.", - "label": "Abolish Vermont income tax before non-refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.vt_income_tax_before_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.vt_income_tax_before_refundable_credits", - "description": "Set all values of Vermont income tax before refundable credits to zero.", - "label": "Abolish Vermont income tax before refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.vt_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.vt_taxable_income", - "description": "Set all values of Vermont taxable income to zero.", - "label": "Abolish Vermont taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.vt_withheld_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.vt_withheld_income_tax", - "description": "Set all values of Vermont withheld income tax to zero.", - "label": "Abolish Vermont withheld income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.vt_elderly_or_disabled_credit": { - "type": "parameter", - "parameter": "gov.abolitions.vt_elderly_or_disabled_credit", - "description": "Set all values of Vermont elderly or disabled credit to zero.", - "label": "Abolish Vermont elderly or disabled credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.vt_veteran_tax_credit": { - "type": "parameter", - "parameter": "gov.abolitions.vt_veteran_tax_credit", - "description": "Set all values of Vermont veteran tax credit to zero.", - "label": "Abolish Vermont veteran tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.vt_charitable_contribution_credit": { - "type": "parameter", - "parameter": "gov.abolitions.vt_charitable_contribution_credit", - "description": "Set all values of Vermont charitable contribution credit to zero.", - "label": "Abolish Vermont charitable contribution credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.vt_ctc": { - "type": "parameter", - "parameter": "gov.abolitions.vt_ctc", - "description": "Set all values of Vermont child tax credit to zero.", - "label": "Abolish Vermont child tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.vt_low_income_cdcc": { - "type": "parameter", - "parameter": "gov.abolitions.vt_low_income_cdcc", - "description": "Set all values of Vermont low-income child care and dependent care credit to zero.", - "label": "Abolish Vermont low-income child care and dependent care credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.vt_low_income_cdcc_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.vt_low_income_cdcc_eligible", - "description": "Set all values of Eligible for the Vermont low-income child care and dependent care credit to zero.", - "label": "Abolish Eligible for the Vermont low-income child care and dependent care credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.vt_cdcc": { - "type": "parameter", - "parameter": "gov.abolitions.vt_cdcc", - "description": "Set all values of Vermont child care and dependent care credit to zero.", - "label": "Abolish Vermont child care and dependent care credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.vt_renter_credit_income": { - "type": "parameter", - "parameter": "gov.abolitions.vt_renter_credit_income", - "description": "Set all values of Vermont renter credit income to zero.", - "label": "Abolish Vermont renter credit income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.vt_renter_credit": { - "type": "parameter", - "parameter": "gov.abolitions.vt_renter_credit", - "description": "Set all values of Vermont renter credit to zero.", - "label": "Abolish Vermont renter credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.vt_renter_credit_countable_tax_exempt_ss": { - "type": "parameter", - "parameter": "gov.abolitions.vt_renter_credit_countable_tax_exempt_ss", - "description": "Set all values of Vermont renter credit countable tax exempt social security to zero.", - "label": "Abolish Vermont renter credit countable tax exempt social security", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.vt_personal_exemptions": { - "type": "parameter", - "parameter": "gov.abolitions.vt_personal_exemptions", - "description": "Set all values of Vermont personal exemptions to zero.", - "label": "Abolish Vermont personal exemptions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.vt_agi": { - "type": "parameter", - "parameter": "gov.abolitions.vt_agi", - "description": "Set all values of Vermont adjusted gross income to zero.", - "label": "Abolish Vermont adjusted gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.vt_additions": { - "type": "parameter", - "parameter": "gov.abolitions.vt_additions", - "description": "Set all values of Vermont AGI additions to zero.", - "label": "Abolish Vermont AGI additions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.vt_subtractions": { - "type": "parameter", - "parameter": "gov.abolitions.vt_subtractions", - "description": "Set all values of Vermont subtractions to zero.", - "label": "Abolish Vermont subtractions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.vt_medical_expense_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.vt_medical_expense_deduction", - "description": "Set all values of Vermont medical expense deduction to zero.", - "label": "Abolish Vermont medical expense deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.vt_percentage_capital_gains_exclusion": { - "type": "parameter", - "parameter": "gov.abolitions.vt_percentage_capital_gains_exclusion", - "description": "Set all values of Vermont percentage capital gains exclusion to zero.", - "label": "Abolish Vermont percentage capital gains exclusion", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.vt_capital_gains_exclusion": { - "type": "parameter", - "parameter": "gov.abolitions.vt_capital_gains_exclusion", - "description": "Set all values of Vermont capital gains exclusion to zero.", - "label": "Abolish Vermont capital gains exclusion", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.vt_military_retirement_pay_exclusion": { - "type": "parameter", - "parameter": "gov.abolitions.vt_military_retirement_pay_exclusion", - "description": "Set all values of Vermont military retirement income exclusion to zero.", - "label": "Abolish Vermont military retirement income exclusion", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.vt_military_retirement_cap_based_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.vt_military_retirement_cap_based_exemption", - "description": "Set all values of Vermont military retirement cap-based exemption to zero.", - "label": "Abolish Vermont military retirement cap-based exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.vt_retirement_income_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.vt_retirement_income_exemption", - "description": "Set all values of Vermont retirement income exemption to zero.", - "label": "Abolish Vermont retirement income exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.vt_military_retirement_income_based_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.vt_military_retirement_income_based_exemption", - "description": "Set all values of Vermont military retirement income-based exemption to zero.", - "label": "Abolish Vermont military retirement income-based exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.vt_retirement_income_exemption_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.vt_retirement_income_exemption_eligible", - "description": "Set all values of Vermont retirement income exemption eligibility status to zero.", - "label": "Abolish Vermont retirement income exemption eligibility status", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.vt_csrs_retirement_pay_exclusion": { - "type": "parameter", - "parameter": "gov.abolitions.vt_csrs_retirement_pay_exclusion", - "description": "Set all values of Vermont Civil Service Retirement System (CSRS) retirement income exclusion to zero.", - "label": "Abolish Vermont Civil Service Retirement System (CSRS) retirement income exclusion", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.vt_standard_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.vt_standard_deduction", - "description": "Set all values of Vermont standard deduction to zero.", - "label": "Abolish Vermont standard deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ct_income_tax_after_personal_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ct_income_tax_after_personal_credits", - "description": "Set all values of Connecticut income tax after personal tax credits to zero.", - "label": "Abolish Connecticut income tax after personal tax credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ct_income_tax_after_amt": { - "type": "parameter", - "parameter": "gov.abolitions.ct_income_tax_after_amt", - "description": "Set all values of Connecticut income tax after the addition of the alternative minimum tax to zero.", - "label": "Abolish Connecticut income tax after the addition of the alternative minimum tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ct_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.ct_taxable_income", - "description": "Set all values of Connecticut taxable income to zero.", - "label": "Abolish Connecticut taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ct_agi_subtractions": { - "type": "parameter", - "parameter": "gov.abolitions.ct_agi_subtractions", - "description": "Set all values of Connecticut subtractions from federal adjusted gross income to zero.", - "label": "Abolish Connecticut subtractions from federal adjusted gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ct_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ct_refundable_credits", - "description": "Set all values of Connecticut refundable credits to zero.", - "label": "Abolish Connecticut refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ct_agi": { - "type": "parameter", - "parameter": "gov.abolitions.ct_agi", - "description": "Set all values of Connecticut adjusted gross income to zero.", - "label": "Abolish Connecticut adjusted gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ct_income_tax_before_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ct_income_tax_before_refundable_credits", - "description": "Set all values of Connecticut income tax before refundable credits to zero.", - "label": "Abolish Connecticut income tax before refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ct_withheld_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.ct_withheld_income_tax", - "description": "Set all values of Connecticut withheld income tax to zero.", - "label": "Abolish Connecticut withheld income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ct_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ct_non_refundable_credits", - "description": "Set all values of Connecticut non-refundable credits to zero.", - "label": "Abolish Connecticut non-refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ct_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.ct_income_tax", - "description": "Set all values of Connecticut income tax to zero.", - "label": "Abolish Connecticut income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ct_personal_credit_rate": { - "type": "parameter", - "parameter": "gov.abolitions.ct_personal_credit_rate", - "description": "Set all values of Connecticut personal credit rate to zero.", - "label": "Abolish Connecticut personal credit rate", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ct_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.ct_eitc", - "description": "Set all values of Connecticut Earned Income Tax Credit to zero.", - "label": "Abolish Connecticut Earned Income Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ct_property_tax_credit_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ct_property_tax_credit_eligible", - "description": "Set all values of Eligible for the Connecticut Property Tax Credit to zero.", - "label": "Abolish Eligible for the Connecticut Property Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ct_property_tax_credit": { - "type": "parameter", - "parameter": "gov.abolitions.ct_property_tax_credit", - "description": "Set all values of Connecticut property tax credit to zero.", - "label": "Abolish Connecticut property tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ct_personal_exemptions": { - "type": "parameter", - "parameter": "gov.abolitions.ct_personal_exemptions", - "description": "Set all values of Connecticut Personal Exemptions to zero.", - "label": "Abolish Connecticut Personal Exemptions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ct_social_security_benefit_adjustment": { - "type": "parameter", - "parameter": "gov.abolitions.ct_social_security_benefit_adjustment", - "description": "Set all values of Connecticut social security benefit adjustment to zero.", - "label": "Abolish Connecticut social security benefit adjustment", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ct_subtractions": { - "type": "parameter", - "parameter": "gov.abolitions.ct_subtractions", - "description": "Set all values of Connecticut subtractions to zero.", - "label": "Abolish Connecticut subtractions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ct_tuition_subtraction": { - "type": "parameter", - "parameter": "gov.abolitions.ct_tuition_subtraction", - "description": "Set all values of Connecticut tuition subtraction to zero.", - "label": "Abolish Connecticut tuition subtraction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ct_pension_annuity_subtraction": { - "type": "parameter", - "parameter": "gov.abolitions.ct_pension_annuity_subtraction", - "description": "Set all values of Connecticut pension and annuity subtraction to zero.", - "label": "Abolish Connecticut pension and annuity subtraction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ct_child_tax_rebate": { - "type": "parameter", - "parameter": "gov.abolitions.ct_child_tax_rebate", - "description": "Set all values of Connecticut child tax rebate to zero.", - "label": "Abolish Connecticut child tax rebate", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ct_additions": { - "type": "parameter", - "parameter": "gov.abolitions.ct_additions", - "description": "Set all values of Connecticut additions to zero.", - "label": "Abolish Connecticut additions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ct_income_tax_recapture": { - "type": "parameter", - "parameter": "gov.abolitions.ct_income_tax_recapture", - "description": "Set all values of Connecticut income tax recapture to zero.", - "label": "Abolish Connecticut income tax recapture", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ct_income_tax_high_tax_recapture": { - "type": "parameter", - "parameter": "gov.abolitions.ct_income_tax_high_tax_recapture", - "description": "Set all values of Connecticut income tax recapture at high brackets to zero.", - "label": "Abolish Connecticut income tax recapture at high brackets", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ct_income_tax_phase_out_add_back": { - "type": "parameter", - "parameter": "gov.abolitions.ct_income_tax_phase_out_add_back", - "description": "Set all values of Connecticut income tax phase out add back to zero.", - "label": "Abolish Connecticut income tax phase out add back", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ct_income_tax_middle_tax_recapture": { - "type": "parameter", - "parameter": "gov.abolitions.ct_income_tax_middle_tax_recapture", - "description": "Set all values of Connecticut income tax recapture at middle brackets to zero.", - "label": "Abolish Connecticut income tax recapture at middle brackets", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ct_income_tax_low_tax_recapture": { - "type": "parameter", - "parameter": "gov.abolitions.ct_income_tax_low_tax_recapture", - "description": "Set all values of Connecticut income tax recapture at low brackets to zero.", - "label": "Abolish Connecticut income tax recapture at low brackets", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_drive_clean_rebate": { - "type": "parameter", - "parameter": "gov.abolitions.ny_drive_clean_rebate", - "description": "Set all values of New York Drive Clean Rebate to zero.", - "label": "Abolish New York Drive Clean Rebate", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_income_tax_before_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ny_income_tax_before_refundable_credits", - "description": "Set all values of NY income tax to zero.", - "label": "Abolish NY income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_supplemental_tax": { - "type": "parameter", - "parameter": "gov.abolitions.ny_supplemental_tax", - "description": "Set all values of NY supplemental income tax to zero.", - "label": "Abolish NY supplemental income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_withheld_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.ny_withheld_income_tax", - "description": "Set all values of New York withheld income tax to zero.", - "label": "Abolish New York withheld income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ny_non_refundable_credits", - "description": "Set all values of NY capped non-refundable tax credits to zero.", - "label": "Abolish NY capped non-refundable tax credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ny_refundable_credits", - "description": "Set all values of NY refundable credits to zero.", - "label": "Abolish NY refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_allowable_college_tuition_expenses": { - "type": "parameter", - "parameter": "gov.abolitions.ny_allowable_college_tuition_expenses", - "description": "Set all values of New York allowable college tuition expenses for the credit and deduction to zero.", - "label": "Abolish New York allowable college tuition expenses for the credit and deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_income_tax_before_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ny_income_tax_before_credits", - "description": "Set all values of NY income tax before credits to zero.", - "label": "Abolish NY income tax before credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_main_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.ny_main_income_tax", - "description": "Set all values of NY main income tax (before credits and supplemental tax) to zero.", - "label": "Abolish NY main income tax (before credits and supplemental tax)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.ny_income_tax", - "description": "Set all values of NY income tax to zero.", - "label": "Abolish NY income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_geothermal_energy_system_credit": { - "type": "parameter", - "parameter": "gov.abolitions.ny_geothermal_energy_system_credit", - "description": "Set all values of New York geothermal energy system equipment credit to zero.", - "label": "Abolish New York geothermal energy system equipment credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.ny_eitc", - "description": "Set all values of New York EITC to zero.", - "label": "Abolish New York EITC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_household_credit": { - "type": "parameter", - "parameter": "gov.abolitions.ny_household_credit", - "description": "Set all values of NY household credit to zero.", - "label": "Abolish NY household credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_real_property_tax_credit": { - "type": "parameter", - "parameter": "gov.abolitions.ny_real_property_tax_credit", - "description": "Set all values of NY real property tax credit to zero.", - "label": "Abolish NY real property tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_supplemental_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.ny_supplemental_eitc", - "description": "Set all values of NY Supplemental EITC to zero.", - "label": "Abolish NY Supplemental EITC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_inflation_refund_credit": { - "type": "parameter", - "parameter": "gov.abolitions.ny_inflation_refund_credit", - "description": "Set all values of New York 2025 inflation refund credits to zero.", - "label": "Abolish New York 2025 inflation refund credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_ctc_post_2024": { - "type": "parameter", - "parameter": "gov.abolitions.ny_ctc_post_2024", - "description": "Set all values of New York CTC post-2024 to zero.", - "label": "Abolish New York CTC post-2024", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_ctc_pre_2024_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ny_ctc_pre_2024_eligible", - "description": "Set all values of NY CTC pre-2024 eligibility to zero.", - "label": "Abolish NY CTC pre-2024 eligibility", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_ctc_post_2024_phase_out": { - "type": "parameter", - "parameter": "gov.abolitions.ny_ctc_post_2024_phase_out", - "description": "Set all values of New York CTC post-2024 phase-out amount to zero.", - "label": "Abolish New York CTC post-2024 phase-out amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_ctc_post_2024_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ny_ctc_post_2024_eligible", - "description": "Set all values of New York CTC post-2024 eligibility to zero.", - "label": "Abolish New York CTC post-2024 eligibility", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_ctc_post_2024_base": { - "type": "parameter", - "parameter": "gov.abolitions.ny_ctc_post_2024_base", - "description": "Set all values of New York CTC post-2024 base amount to zero.", - "label": "Abolish New York CTC post-2024 base amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_ctc": { - "type": "parameter", - "parameter": "gov.abolitions.ny_ctc", - "description": "Set all values of NY CTC to zero.", - "label": "Abolish NY CTC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_additional_ctc": { - "type": "parameter", - "parameter": "gov.abolitions.ny_additional_ctc", - "description": "Set all values of New York additional Empire State Child Credit to zero.", - "label": "Abolish New York additional Empire State Child Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_ctc_pre_2024": { - "type": "parameter", - "parameter": "gov.abolitions.ny_ctc_pre_2024", - "description": "Set all values of NY CTC pre-2024 rules to zero.", - "label": "Abolish NY CTC pre-2024 rules", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_cdcc_max": { - "type": "parameter", - "parameter": "gov.abolitions.ny_cdcc_max", - "description": "Set all values of Maximum NY CDCC to zero.", - "label": "Abolish Maximum NY CDCC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_cdcc": { - "type": "parameter", - "parameter": "gov.abolitions.ny_cdcc", - "description": "Set all values of NY CDCC to zero.", - "label": "Abolish NY CDCC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_cdcc_rate": { - "type": "parameter", - "parameter": "gov.abolitions.ny_cdcc_rate", - "description": "Set all values of NY CDCC rate to zero.", - "label": "Abolish NY CDCC rate", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_college_tuition_credit_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ny_college_tuition_credit_eligible", - "description": "Set all values of New York college tuition credit eligible to zero.", - "label": "Abolish New York college tuition credit eligible", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_college_tuition_credit": { - "type": "parameter", - "parameter": "gov.abolitions.ny_college_tuition_credit", - "description": "Set all values of NY college tuition credit to zero.", - "label": "Abolish NY college tuition credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_solar_energy_systems_equipment_credit": { - "type": "parameter", - "parameter": "gov.abolitions.ny_solar_energy_systems_equipment_credit", - "description": "Set all values of New York solar energy systems equipment credit to zero.", - "label": "Abolish New York solar energy systems equipment credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_pension_exclusion": { - "type": "parameter", - "parameter": "gov.abolitions.ny_pension_exclusion", - "description": "Set all values of New York pension exclusion to zero.", - "label": "Abolish New York pension exclusion", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_agi_subtractions": { - "type": "parameter", - "parameter": "gov.abolitions.ny_agi_subtractions", - "description": "Set all values of New York AGI subtractions to zero.", - "label": "Abolish New York AGI subtractions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_agi": { - "type": "parameter", - "parameter": "gov.abolitions.ny_agi", - "description": "Set all values of NY adjusted gross income to zero.", - "label": "Abolish NY adjusted gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.ny_deductions", - "description": "Set all values of NY income deductions to zero.", - "label": "Abolish NY income deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.ny_taxable_income", - "description": "Set all values of NY taxable income to zero.", - "label": "Abolish NY taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_exemptions": { - "type": "parameter", - "parameter": "gov.abolitions.ny_exemptions", - "description": "Set all values of NY exemptions to zero.", - "label": "Abolish NY exemptions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_standard_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.ny_standard_deduction", - "description": "Set all values of NY standard deduction to zero.", - "label": "Abolish NY standard deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_itemizes": { - "type": "parameter", - "parameter": "gov.abolitions.ny_itemizes", - "description": "Set all values of Itemizes New York deductions to zero.", - "label": "Abolish Itemizes New York deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_itemized_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.ny_itemized_deductions", - "description": "Set all values of New York itemized deductions to zero.", - "label": "Abolish New York itemized deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_itemized_deductions_max": { - "type": "parameter", - "parameter": "gov.abolitions.ny_itemized_deductions_max", - "description": "Set all values of NY uncapped itemized deductions to zero.", - "label": "Abolish NY uncapped itemized deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_college_tuition_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.ny_college_tuition_deduction", - "description": "Set all values of New York itemized deduction for college tuition expenses to zero.", - "label": "Abolish New York itemized deduction for college tuition expenses", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_itemized_deductions_reduction": { - "type": "parameter", - "parameter": "gov.abolitions.ny_itemized_deductions_reduction", - "description": "Set all values of NY itemized deductions reduction to zero.", - "label": "Abolish NY itemized deductions reduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_itemized_deductions_reduction_applies": { - "type": "parameter", - "parameter": "gov.abolitions.ny_itemized_deductions_reduction_applies", - "description": "Set all values of Whether the reduction to the New York itemized deductions applies to zero.", - "label": "Abolish Whether the reduction to the New York itemized deductions applies", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_itemized_deductions_reduction_based_on_charitable_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.ny_itemized_deductions_reduction_based_on_charitable_deduction", - "description": "Set all values of New York itemized deductions reduction based on charitable deduction to zero.", - "label": "Abolish New York itemized deductions reduction based on charitable deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_itemized_deductions_reduction_based_on_charitable_deduction_applies": { - "type": "parameter", - "parameter": "gov.abolitions.ny_itemized_deductions_reduction_based_on_charitable_deduction_applies", - "description": "Set all values of New York itemized deductions reduction based on charitable deduction to zero.", - "label": "Abolish New York itemized deductions reduction based on charitable deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_itemized_deductions_higher_incremental_reduction": { - "type": "parameter", - "parameter": "gov.abolitions.ny_itemized_deductions_higher_incremental_reduction", - "description": "Set all values of New York itemized deductions higher incremental reduction to zero.", - "label": "Abolish New York itemized deductions higher incremental reduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_itemized_deductions_incremental_reduction": { - "type": "parameter", - "parameter": "gov.abolitions.ny_itemized_deductions_incremental_reduction", - "description": "Set all values of New York itemized deductions incremental reduction to zero.", - "label": "Abolish New York itemized deductions incremental reduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_itemized_deductions_lower_incremental_reduction": { - "type": "parameter", - "parameter": "gov.abolitions.ny_itemized_deductions_lower_incremental_reduction", - "description": "Set all values of New York itemized deductions lower incremental reduction to zero.", - "label": "Abolish New York itemized deductions lower incremental reduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_tanf": { - "type": "parameter", - "parameter": "gov.abolitions.ny_tanf", - "description": "Set all values of New York TANF to zero.", - "label": "Abolish New York TANF", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_tanf_resources_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ny_tanf_resources_eligible", - "description": "Set all values of New York TANF resources eligible to zero.", - "label": "Abolish New York TANF resources eligible", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_tanf_need_standard": { - "type": "parameter", - "parameter": "gov.abolitions.ny_tanf_need_standard", - "description": "Set all values of New York TANF need standard to zero.", - "label": "Abolish New York TANF need standard", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_tanf_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ny_tanf_eligible", - "description": "Set all values of New York TANF eligible to zero.", - "label": "Abolish New York TANF eligible", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_tanf_income_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ny_tanf_income_eligible", - "description": "Set all values of New York TANF income eligible to zero.", - "label": "Abolish New York TANF income eligible", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_tanf_grant_standard": { - "type": "parameter", - "parameter": "gov.abolitions.ny_tanf_grant_standard", - "description": "Set all values of New York TANF grant standard to zero.", - "label": "Abolish New York TANF grant standard", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_tanf_countable_earned_income": { - "type": "parameter", - "parameter": "gov.abolitions.ny_tanf_countable_earned_income", - "description": "Set all values of New York TANF countable earned income to zero.", - "label": "Abolish New York TANF countable earned income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_tanf_gross_earned_income": { - "type": "parameter", - "parameter": "gov.abolitions.ny_tanf_gross_earned_income", - "description": "Set all values of New York TANF gross earned income to zero.", - "label": "Abolish New York TANF gross earned income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ny_tanf_countable_gross_unearned_income": { - "type": "parameter", - "parameter": "gov.abolitions.ny_tanf_countable_gross_unearned_income", - "description": "Set all values of New York TANF countable gross unearned income to zero.", - "label": "Abolish New York TANF countable gross unearned income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.va_must_file": { - "type": "parameter", - "parameter": "gov.abolitions.va_must_file", - "description": "Set all values of Tax unit must file Virginia income taxes to zero.", - "label": "Abolish Tax unit must file Virginia income taxes", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.va_agi": { - "type": "parameter", - "parameter": "gov.abolitions.va_agi", - "description": "Set all values of Virginia adjusted federal adjusted gross income to zero.", - "label": "Abolish Virginia adjusted federal adjusted gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.va_rebate": { - "type": "parameter", - "parameter": "gov.abolitions.va_rebate", - "description": "Set all values of Virginia rebate to zero.", - "label": "Abolish Virginia rebate", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.va_agi_share": { - "type": "parameter", - "parameter": "gov.abolitions.va_agi_share", - "description": "Set all values of Virginia share of state adjusted gross income of each person to zero.", - "label": "Abolish Virginia share of state adjusted gross income of each person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.va_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.va_income_tax", - "description": "Set all values of Virginia income tax to zero.", - "label": "Abolish Virginia income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.va_subtractions": { - "type": "parameter", - "parameter": "gov.abolitions.va_subtractions", - "description": "Set all values of Virginia subtractions from the adjusted gross income to zero.", - "label": "Abolish Virginia subtractions from the adjusted gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.va_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.va_non_refundable_credits", - "description": "Set all values of Virginia non-refundable income tax credits to zero.", - "label": "Abolish Virginia non-refundable income tax credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.va_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.va_taxable_income", - "description": "Set all values of Virginia taxable income to zero.", - "label": "Abolish Virginia taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.va_agi_person": { - "type": "parameter", - "parameter": "gov.abolitions.va_agi_person", - "description": "Set all values of Virginia adjusted gross income for each person to zero.", - "label": "Abolish Virginia adjusted gross income for each person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.va_withheld_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.va_withheld_income_tax", - "description": "Set all values of Virginia withheld income tax to zero.", - "label": "Abolish Virginia withheld income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.va_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.va_refundable_credits", - "description": "Set all values of Virginia refundable income tax credits to zero.", - "label": "Abolish Virginia refundable income tax credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.va_income_tax_before_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.va_income_tax_before_non_refundable_credits", - "description": "Set all values of Virginia income tax before non-refundable credits to zero.", - "label": "Abolish Virginia income tax before non-refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.va_income_tax_before_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.va_income_tax_before_refundable_credits", - "description": "Set all values of Virginia income tax before credits to zero.", - "label": "Abolish Virginia income tax before credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.va_refundable_eitc_if_claimed": { - "type": "parameter", - "parameter": "gov.abolitions.va_refundable_eitc_if_claimed", - "description": "Set all values of Virginia refundable earned income tax credit if claimed to zero.", - "label": "Abolish Virginia refundable earned income tax credit if claimed", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.va_non_refundable_eitc_if_claimed": { - "type": "parameter", - "parameter": "gov.abolitions.va_non_refundable_eitc_if_claimed", - "description": "Set all values of Virginia non-refundable EITC if claimed to zero.", - "label": "Abolish Virginia non-refundable EITC if claimed", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.va_eitc_person": { - "type": "parameter", - "parameter": "gov.abolitions.va_eitc_person", - "description": "Set all values of Virginia Earned Income Tax Credit per individual when married filing seperately to zero.", - "label": "Abolish Virginia Earned Income Tax Credit per individual when married filing seperately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.va_non_refundable_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.va_non_refundable_eitc", - "description": "Set all values of Virginia non-refundable EITC to zero.", - "label": "Abolish Virginia non-refundable EITC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.va_refundable_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.va_refundable_eitc", - "description": "Set all values of Virginia refundable earned income tax credit to zero.", - "label": "Abolish Virginia refundable earned income tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.va_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.va_eitc", - "description": "Set all values of Virginia Earned Income Tax Credit to zero.", - "label": "Abolish Virginia Earned Income Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.va_claims_refundable_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.va_claims_refundable_eitc", - "description": "Set all values of Filer claims refundable Virginia EITC to zero.", - "label": "Abolish Filer claims refundable Virginia EITC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.va_income_tax_if_claiming_refundable_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.va_income_tax_if_claiming_refundable_eitc", - "description": "Set all values of Virginia tax liability if claiming refundable Virginia EITC to zero.", - "label": "Abolish Virginia tax liability if claiming refundable Virginia EITC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.va_income_tax_if_claiming_non_refundable_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.va_income_tax_if_claiming_non_refundable_eitc", - "description": "Set all values of Virginia tax liability if claiming non-refundable Virginia EITC to zero.", - "label": "Abolish Virginia tax liability if claiming non-refundable Virginia EITC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.va_low_income_tax_credit": { - "type": "parameter", - "parameter": "gov.abolitions.va_low_income_tax_credit", - "description": "Set all values of Virginia low income tax credit to zero.", - "label": "Abolish Virginia low income tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.va_low_income_tax_credit_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.va_low_income_tax_credit_eligible", - "description": "Set all values of Eligible for the Virginia Low Income Tax Credit to zero.", - "label": "Abolish Eligible for the Virginia Low Income Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.va_low_income_tax_credit_agi_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.va_low_income_tax_credit_agi_eligible", - "description": "Set all values of Eligible for the Virginia low income tax credit to zero.", - "label": "Abolish Eligible for the Virginia low income tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.va_personal_exemption_person": { - "type": "parameter", - "parameter": "gov.abolitions.va_personal_exemption_person", - "description": "Set all values of Virginia personal exemption for each person to zero.", - "label": "Abolish Virginia personal exemption for each person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.va_total_exemptions": { - "type": "parameter", - "parameter": "gov.abolitions.va_total_exemptions", - "description": "Set all values of Virginia exemptions to zero.", - "label": "Abolish Virginia exemptions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.va_aged_blind_exemption_person": { - "type": "parameter", - "parameter": "gov.abolitions.va_aged_blind_exemption_person", - "description": "Set all values of Virginia aged/blind exemption for each person to zero.", - "label": "Abolish Virginia aged/blind exemption for each person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.va_aged_blind_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.va_aged_blind_exemption", - "description": "Set all values of Virginia aged/blind exemption to zero.", - "label": "Abolish Virginia aged/blind exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.va_personal_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.va_personal_exemption", - "description": "Set all values of Virginia personal exemption to zero.", - "label": "Abolish Virginia personal exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.va_disability_income_subtraction": { - "type": "parameter", - "parameter": "gov.abolitions.va_disability_income_subtraction", - "description": "Set all values of Virginia disability income subtraction to zero.", - "label": "Abolish Virginia disability income subtraction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.va_national_guard_subtraction": { - "type": "parameter", - "parameter": "gov.abolitions.va_national_guard_subtraction", - "description": "Set all values of Virginia national guard pay subtraction to zero.", - "label": "Abolish Virginia national guard pay subtraction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.va_federal_state_employees_subtraction": { - "type": "parameter", - "parameter": "gov.abolitions.va_federal_state_employees_subtraction", - "description": "Set all values of Virginia federal state employees subtraction to zero.", - "label": "Abolish Virginia federal state employees subtraction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.va_military_benefit_subtraction": { - "type": "parameter", - "parameter": "gov.abolitions.va_military_benefit_subtraction", - "description": "Set all values of Virginia military benefit subtraction to zero.", - "label": "Abolish Virginia military benefit subtraction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.va_military_basic_pay_subtraction": { - "type": "parameter", - "parameter": "gov.abolitions.va_military_basic_pay_subtraction", - "description": "Set all values of Virginia military basic pay subtraction to zero.", - "label": "Abolish Virginia military basic pay subtraction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.va_age_deduction_agi": { - "type": "parameter", - "parameter": "gov.abolitions.va_age_deduction_agi", - "description": "Set all values of Virginia adjusted gross income for the age deduction to zero.", - "label": "Abolish Virginia adjusted gross income for the age deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.va_age_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.va_age_deduction", - "description": "Set all values of Virginia age deduction to zero.", - "label": "Abolish Virginia age deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.va_agi_less_exemptions_person": { - "type": "parameter", - "parameter": "gov.abolitions.va_agi_less_exemptions_person", - "description": "Set all values of Difference between individual VAGI and personal exemption amounts to zero.", - "label": "Abolish Difference between individual VAGI and personal exemption amounts", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.va_spouse_tax_adjustment_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.va_spouse_tax_adjustment_eligible", - "description": "Set all values of Eligible for Virginia's spouse tax adjustment to zero.", - "label": "Abolish Eligible for Virginia's spouse tax adjustment", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.va_spouse_tax_adjustment": { - "type": "parameter", - "parameter": "gov.abolitions.va_spouse_tax_adjustment", - "description": "Set all values of Virginia Spouse Tax Adjustment to zero.", - "label": "Abolish Virginia Spouse Tax Adjustment", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.va_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.va_deductions", - "description": "Set all values of Virginia deductions to zero.", - "label": "Abolish Virginia deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.va_standard_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.va_standard_deduction", - "description": "Set all values of Virginia standard deduction to zero.", - "label": "Abolish Virginia standard deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.va_capped_state_and_local_sales_or_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.va_capped_state_and_local_sales_or_income_tax", - "description": "Set all values of Capped state and local sales or income tax for Virginia itemized deductions purposes to zero.", - "label": "Abolish Capped state and local sales or income tax for Virginia itemized deductions purposes", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.va_itemized_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.va_itemized_deductions", - "description": "Set all values of Virginia itemized deductions to zero.", - "label": "Abolish Virginia itemized deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.va_reduced_itemized_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.va_reduced_itemized_deductions", - "description": "Set all values of Virginia reduced itemized deductions to zero.", - "label": "Abolish Virginia reduced itemized deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.va_child_dependent_care_expense_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.va_child_dependent_care_expense_deduction", - "description": "Set all values of Virginia child and dependent care expense deduction to zero.", - "label": "Abolish Virginia child and dependent care expense deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.va_child_dependent_care_deduction_cdcc_limit": { - "type": "parameter", - "parameter": "gov.abolitions.va_child_dependent_care_deduction_cdcc_limit", - "description": "Set all values of Federal CDCC-relevant care expense limit for Virginia tax purposes to zero.", - "label": "Abolish Federal CDCC-relevant care expense limit for Virginia tax purposes", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ar_taxable_capital_gains_joint": { - "type": "parameter", - "parameter": "gov.abolitions.ar_taxable_capital_gains_joint", - "description": "Set all values of Arkansas taxable capital gains when married filing jointly to zero.", - "label": "Abolish Arkansas taxable capital gains when married filing jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ar_files_separately": { - "type": "parameter", - "parameter": "gov.abolitions.ar_files_separately", - "description": "Set all values of married couple files separately on the Arkansas tax return to zero.", - "label": "Abolish married couple files separately on the Arkansas tax return", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ar_income_tax_before_non_refundable_credits_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.ar_income_tax_before_non_refundable_credits_indiv", - "description": "Set all values of Arkansas income tax before non refundable credits when married couples are filing separately to zero.", - "label": "Abolish Arkansas income tax before non refundable credits when married couples are filing separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ar_taxable_capital_gains_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.ar_taxable_capital_gains_indiv", - "description": "Set all values of Arkansas taxable capital gains when married filing separately to zero.", - "label": "Abolish Arkansas taxable capital gains when married filing separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ar_exemptions": { - "type": "parameter", - "parameter": "gov.abolitions.ar_exemptions", - "description": "Set all values of Arkansas exemptions from income tax for each individual to zero.", - "label": "Abolish Arkansas exemptions from income tax for each individual", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ar_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ar_non_refundable_credits", - "description": "Set all values of Arkansas non-refundable credits to zero.", - "label": "Abolish Arkansas non-refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ar_gross_income_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.ar_gross_income_indiv", - "description": "Set all values of Arkansas gross income when married filing separately to zero.", - "label": "Abolish Arkansas gross income when married filing separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ar_agi_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.ar_agi_indiv", - "description": "Set all values of Arkansas adjusted gross income for each individual to zero.", - "label": "Abolish Arkansas adjusted gross income for each individual", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ar_taxable_income_joint": { - "type": "parameter", - "parameter": "gov.abolitions.ar_taxable_income_joint", - "description": "Set all values of Arkansas taxable income when married filing jointly to zero.", - "label": "Abolish Arkansas taxable income when married filing jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ar_agi_joint": { - "type": "parameter", - "parameter": "gov.abolitions.ar_agi_joint", - "description": "Set all values of Arkansas adjusted gross income for each individual to zero.", - "label": "Abolish Arkansas adjusted gross income for each individual", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ar_gross_income_joint": { - "type": "parameter", - "parameter": "gov.abolitions.ar_gross_income_joint", - "description": "Set all values of Arkansas gross income when married filing jointly to zero.", - "label": "Abolish Arkansas gross income when married filing jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ar_taxable_income_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.ar_taxable_income_indiv", - "description": "Set all values of Arkansas taxable income when married couples are filing separately to zero.", - "label": "Abolish Arkansas taxable income when married couples are filing separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ar_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ar_refundable_credits", - "description": "Set all values of Arkansas refundable credits to zero.", - "label": "Abolish Arkansas refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ar_withheld_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.ar_withheld_income_tax", - "description": "Set all values of Arkansas withheld income tax to zero.", - "label": "Abolish Arkansas withheld income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ar_income_tax_before_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ar_income_tax_before_refundable_credits", - "description": "Set all values of Arkansas income tax before refundable credits to zero.", - "label": "Abolish Arkansas income tax before refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ar_income_tax_before_non_refundable_credits_unit": { - "type": "parameter", - "parameter": "gov.abolitions.ar_income_tax_before_non_refundable_credits_unit", - "description": "Set all values of Arkansas income tax before non refundable credits combined to zero.", - "label": "Abolish Arkansas income tax before non refundable credits combined", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ar_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.ar_income_tax", - "description": "Set all values of Arkansas income tax to zero.", - "label": "Abolish Arkansas income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ar_income_tax_before_non_refundable_credits_joint": { - "type": "parameter", - "parameter": "gov.abolitions.ar_income_tax_before_non_refundable_credits_joint", - "description": "Set all values of Arkansas income tax before non refundable credits when married filing jointly to zero.", - "label": "Abolish Arkansas income tax before non refundable credits when married filing jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ar_low_income_tax_joint": { - "type": "parameter", - "parameter": "gov.abolitions.ar_low_income_tax_joint", - "description": "Set all values of Arkansas low income tax when married couples are filing separately to zero.", - "label": "Abolish Arkansas low income tax when married couples are filing separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ar_inflation_relief_credit_person": { - "type": "parameter", - "parameter": "gov.abolitions.ar_inflation_relief_credit_person", - "description": "Set all values of Arkansas inflation relief income-tax credit for each individual to zero.", - "label": "Abolish Arkansas inflation relief income-tax credit for each individual", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ar_inflation_relief_credit": { - "type": "parameter", - "parameter": "gov.abolitions.ar_inflation_relief_credit", - "description": "Set all values of Arkansas inflation relief income-tax credit to zero.", - "label": "Abolish Arkansas inflation relief income-tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ar_cdcc": { - "type": "parameter", - "parameter": "gov.abolitions.ar_cdcc", - "description": "Set all values of Arkansas Child and Dependent Care Credit to zero.", - "label": "Abolish Arkansas Child and Dependent Care Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ar_personal_credits_base": { - "type": "parameter", - "parameter": "gov.abolitions.ar_personal_credits_base", - "description": "Set all values of Arkansas base personal credits to zero.", - "label": "Abolish Arkansas base personal credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ar_personal_credit_dependent": { - "type": "parameter", - "parameter": "gov.abolitions.ar_personal_credit_dependent", - "description": "Set all values of Arkansas personal tax credit dependent amount to zero.", - "label": "Abolish Arkansas personal tax credit dependent amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ar_personal_credit_disabled_dependent": { - "type": "parameter", - "parameter": "gov.abolitions.ar_personal_credit_disabled_dependent", - "description": "Set all values of Arkansas disabled dependent personal tax credit amount to zero.", - "label": "Abolish Arkansas disabled dependent personal tax credit amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ar_personal_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ar_personal_credits", - "description": "Set all values of Arkansas personal credits to zero.", - "label": "Abolish Arkansas personal credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ar_retirement_or_disability_benefits_exemption_person": { - "type": "parameter", - "parameter": "gov.abolitions.ar_retirement_or_disability_benefits_exemption_person", - "description": "Set all values of Arkansas individual retirement or disability benefits exemption to zero.", - "label": "Abolish Arkansas individual retirement or disability benefits exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ar_military_retirement_income_person": { - "type": "parameter", - "parameter": "gov.abolitions.ar_military_retirement_income_person", - "description": "Set all values of Arkansas military retirement income for each person to zero.", - "label": "Abolish Arkansas military retirement income for each person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ar_retirement_or_disability_benefits_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.ar_retirement_or_disability_benefits_exemption", - "description": "Set all values of Arkansas retirement or disability benefits exemption to zero.", - "label": "Abolish Arkansas retirement or disability benefits exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ar_capped_retirement_or_disability_benefits_exemption_person": { - "type": "parameter", - "parameter": "gov.abolitions.ar_capped_retirement_or_disability_benefits_exemption_person", - "description": "Set all values of Arkansas capped individual retirement or disability benefits exemption to zero.", - "label": "Abolish Arkansas capped individual retirement or disability benefits exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ar_deduction_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.ar_deduction_indiv", - "description": "Set all values of Arkansas deduction when married couples are filing separately to zero.", - "label": "Abolish Arkansas deduction when married couples are filing separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ar_deduction_joint": { - "type": "parameter", - "parameter": "gov.abolitions.ar_deduction_joint", - "description": "Set all values of Arkansas deduction when married filing jointly to zero.", - "label": "Abolish Arkansas deduction when married filing jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ar_tax_unit_itemizes": { - "type": "parameter", - "parameter": "gov.abolitions.ar_tax_unit_itemizes", - "description": "Set all values of Whether the tax unit in Arkansas itemizes the deductions when married filing separately to zero.", - "label": "Abolish Whether the tax unit in Arkansas itemizes the deductions when married filing separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ar_misc_deduction_joint": { - "type": "parameter", - "parameter": "gov.abolitions.ar_misc_deduction_joint", - "description": "Set all values of Arkansas miscellaneous deduction when married filing jointly to zero.", - "label": "Abolish Arkansas miscellaneous deduction when married filing jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ar_itemized_deductions_joint": { - "type": "parameter", - "parameter": "gov.abolitions.ar_itemized_deductions_joint", - "description": "Set all values of Arkansas itemized deductions when married filing jointly to zero.", - "label": "Abolish Arkansas itemized deductions when married filing jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ar_medical_expense_deduction_joint": { - "type": "parameter", - "parameter": "gov.abolitions.ar_medical_expense_deduction_joint", - "description": "Set all values of Arkansas medical and dental expense deduction when married filing jointly to zero.", - "label": "Abolish Arkansas medical and dental expense deduction when married filing jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ar_misc_deduction_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.ar_misc_deduction_indiv", - "description": "Set all values of Arkansas miscellaneous deduction when married filing separately to zero.", - "label": "Abolish Arkansas miscellaneous deduction when married filing separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ar_medical_expense_deduction_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.ar_medical_expense_deduction_indiv", - "description": "Set all values of Arkansas medical and dental expense deduction when married filing separately to zero.", - "label": "Abolish Arkansas medical and dental expense deduction when married filing separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ar_itemized_deductions_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.ar_itemized_deductions_indiv", - "description": "Set all values of Arkansas itemized deductions when married couples are filing separately to zero.", - "label": "Abolish Arkansas itemized deductions when married couples are filing separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ar_post_secondary_education_tuition_deduction_person": { - "type": "parameter", - "parameter": "gov.abolitions.ar_post_secondary_education_tuition_deduction_person", - "description": "Set all values of Arkansas person post-secondary education tuition deduction to zero.", - "label": "Abolish Arkansas person post-secondary education tuition deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ar_post_secondary_education_tuition_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.ar_post_secondary_education_tuition_deduction", - "description": "Set all values of Arkansas post-secondary education tuition deduction to zero.", - "label": "Abolish Arkansas post-secondary education tuition deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ar_standard_deduction_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.ar_standard_deduction_indiv", - "description": "Set all values of Arkansas standard deduction when married couples are filing separately to zero.", - "label": "Abolish Arkansas standard deduction when married couples are filing separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ar_standard_deduction_joint": { - "type": "parameter", - "parameter": "gov.abolitions.ar_standard_deduction_joint", - "description": "Set all values of Arkansas standard deduction when married filing jointly to zero.", - "label": "Abolish Arkansas standard deduction when married filing jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ne_child_care_subsidies": { - "type": "parameter", - "parameter": "gov.abolitions.ne_child_care_subsidies", - "description": "Set all values of Nebraska child care subsidies to zero.", - "label": "Abolish Nebraska child care subsidies", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ne_dhhs_has_special_needs": { - "type": "parameter", - "parameter": "gov.abolitions.ne_dhhs_has_special_needs", - "description": "Set all values of Has special needs under Nebraska Department of Health and Human Services to zero.", - "label": "Abolish Has special needs under Nebraska Department of Health and Human Services", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ne_child_care_subsidy_eligible_child": { - "type": "parameter", - "parameter": "gov.abolitions.ne_child_care_subsidy_eligible_child", - "description": "Set all values of Nebraska Child Care Subsidy program eligible child to zero.", - "label": "Abolish Nebraska Child Care Subsidy program eligible child", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ne_child_care_subsidy": { - "type": "parameter", - "parameter": "gov.abolitions.ne_child_care_subsidy", - "description": "Set all values of Nebraska Child Care Subsidy to zero.", - "label": "Abolish Nebraska Child Care Subsidy", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ne_child_care_subsidy_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ne_child_care_subsidy_eligible", - "description": "Set all values of Eligible for the Nebraska Child Care Subsidy program to zero.", - "label": "Abolish Eligible for the Nebraska Child Care Subsidy program", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ne_child_care_subsidy_income_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ne_child_care_subsidy_income_eligible", - "description": "Set all values of Nebraska Child Care Subsidy program income eligible to zero.", - "label": "Abolish Nebraska Child Care Subsidy program income eligible", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ne_income_tax_before_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ne_income_tax_before_credits", - "description": "Set all values of NE income tax before credits to zero.", - "label": "Abolish NE income tax before credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ne_withheld_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.ne_withheld_income_tax", - "description": "Set all values of Nebraska withheld income tax to zero.", - "label": "Abolish Nebraska withheld income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ne_income_tax_before_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ne_income_tax_before_refundable_credits", - "description": "Set all values of NE income tax before refundable credits to zero.", - "label": "Abolish NE income tax before refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ne_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.ne_income_tax", - "description": "Set all values of NE income tax to zero.", - "label": "Abolish NE income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ne_nonrefundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ne_nonrefundable_credits", - "description": "Set all values of NE nonrefundable income tax credits to zero.", - "label": "Abolish NE nonrefundable income tax credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ne_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.ne_taxable_income", - "description": "Set all values of NE taxable income to zero.", - "label": "Abolish NE taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ne_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ne_refundable_credits", - "description": "Set all values of NE refundable income tax credits to zero.", - "label": "Abolish NE refundable income tax credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ne_elderly_disabled_credit": { - "type": "parameter", - "parameter": "gov.abolitions.ne_elderly_disabled_credit", - "description": "Set all values of NE elderly/disabled tax credit to zero.", - "label": "Abolish NE elderly/disabled tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ne_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.ne_eitc", - "description": "Set all values of NE EITC amount to zero.", - "label": "Abolish NE EITC amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ne_school_readiness_credit": { - "type": "parameter", - "parameter": "gov.abolitions.ne_school_readiness_credit", - "description": "Set all values of Nebraska school readiness tax credit to zero.", - "label": "Abolish Nebraska school readiness tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ne_refundable_ctc": { - "type": "parameter", - "parameter": "gov.abolitions.ne_refundable_ctc", - "description": "Set all values of Nebraska refundable Child Tax Credit to zero.", - "label": "Abolish Nebraska refundable Child Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ne_refundable_ctc_total_household_income": { - "type": "parameter", - "parameter": "gov.abolitions.ne_refundable_ctc_total_household_income", - "description": "Set all values of Nebraska refundable Child Tax Credit total household income to zero.", - "label": "Abolish Nebraska refundable Child Tax Credit total household income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ne_refundable_ctc_income_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ne_refundable_ctc_income_eligible", - "description": "Set all values of Nebraska refundable Child Tax Credit total household income eligible child to zero.", - "label": "Abolish Nebraska refundable Child Tax Credit total household income eligible child", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ne_refundable_ctc_eligible_child": { - "type": "parameter", - "parameter": "gov.abolitions.ne_refundable_ctc_eligible_child", - "description": "Set all values of Nebraska refundable Child Tax Credit eligible child to zero.", - "label": "Abolish Nebraska refundable Child Tax Credit eligible child", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ne_cdcc_refundable_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ne_cdcc_refundable_eligible", - "description": "Set all values of Eligible for the Nebraska refundable CDCC to zero.", - "label": "Abolish Eligible for the Nebraska refundable CDCC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ne_cdcc_nonrefundable": { - "type": "parameter", - "parameter": "gov.abolitions.ne_cdcc_nonrefundable", - "description": "Set all values of Nebraska nonrefundable cdcc to zero.", - "label": "Abolish Nebraska nonrefundable cdcc", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ne_cdcc_refundable": { - "type": "parameter", - "parameter": "gov.abolitions.ne_cdcc_refundable", - "description": "Set all values of Nebraska refundable cdcc to zero.", - "label": "Abolish Nebraska refundable cdcc", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ne_exemptions": { - "type": "parameter", - "parameter": "gov.abolitions.ne_exemptions", - "description": "Set all values of Nebraska exemptions amount to zero.", - "label": "Abolish Nebraska exemptions amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ne_agi": { - "type": "parameter", - "parameter": "gov.abolitions.ne_agi", - "description": "Set all values of NE AGI to zero.", - "label": "Abolish NE AGI", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ne_agi_subtractions": { - "type": "parameter", - "parameter": "gov.abolitions.ne_agi_subtractions", - "description": "Set all values of Nebraska subtractions from federal adjusted gross income to zero.", - "label": "Abolish Nebraska subtractions from federal adjusted gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ne_social_security_subtraction": { - "type": "parameter", - "parameter": "gov.abolitions.ne_social_security_subtraction", - "description": "Set all values of Nebraska social security subtraction to zero.", - "label": "Abolish Nebraska social security subtraction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ne_military_retirement_subtraction": { - "type": "parameter", - "parameter": "gov.abolitions.ne_military_retirement_subtraction", - "description": "Set all values of Nebraska military retirement subtraction to zero.", - "label": "Abolish Nebraska military retirement subtraction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ne_itemized_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.ne_itemized_deductions", - "description": "Set all values of NE itemized deductions to zero.", - "label": "Abolish NE itemized deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ne_standard_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.ne_standard_deduction", - "description": "Set all values of NE standard deduction to zero.", - "label": "Abolish NE standard deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ne_base_standard_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.ne_base_standard_deduction", - "description": "Set all values of Nebraska standard deduction to zero.", - "label": "Abolish Nebraska standard deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wa_capital_gains_tax": { - "type": "parameter", - "parameter": "gov.abolitions.wa_capital_gains_tax", - "description": "Set all values of Washington capital gains tax to zero.", - "label": "Abolish Washington capital gains tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wa_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.wa_income_tax", - "description": "Set all values of Washington income tax to zero.", - "label": "Abolish Washington income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wa_income_tax_before_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.wa_income_tax_before_refundable_credits", - "description": "Set all values of Washington income tax before refundable credits to zero.", - "label": "Abolish Washington income tax before refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wa_working_families_tax_credit": { - "type": "parameter", - "parameter": "gov.abolitions.wa_working_families_tax_credit", - "description": "Set all values of Washington Working Families Tax Credit to zero.", - "label": "Abolish Washington Working Families Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wa_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.wa_refundable_credits", - "description": "Set all values of Washington refundable tax credits to zero.", - "label": "Abolish Washington refundable tax credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wa_tanf_resources_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.wa_tanf_resources_eligible", - "description": "Set all values of Washington TANF resources eligible to zero.", - "label": "Abolish Washington TANF resources eligible", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hi_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.hi_refundable_credits", - "description": "Set all values of Hawaii refundable credits to zero.", - "label": "Abolish Hawaii refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hi_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.hi_taxable_income", - "description": "Set all values of Hawaii taxable income to zero.", - "label": "Abolish Hawaii taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hi_subtractions": { - "type": "parameter", - "parameter": "gov.abolitions.hi_subtractions", - "description": "Set all values of Hawaii subtractions from federal adjusted gross income to zero.", - "label": "Abolish Hawaii subtractions from federal adjusted gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hi_agi": { - "type": "parameter", - "parameter": "gov.abolitions.hi_agi", - "description": "Set all values of Hawaii adjusted gross income to zero.", - "label": "Abolish Hawaii adjusted gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hi_income_tax_before_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.hi_income_tax_before_non_refundable_credits", - "description": "Set all values of Hawaii income tax before non-refundable credits to zero.", - "label": "Abolish Hawaii income tax before non-refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hi_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.hi_non_refundable_credits", - "description": "Set all values of Hawaii non-refundable credits to zero.", - "label": "Abolish Hawaii non-refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hi_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.hi_income_tax", - "description": "Set all values of Hawaii income tax to zero.", - "label": "Abolish Hawaii income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hi_withheld_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.hi_withheld_income_tax", - "description": "Set all values of Hawaii withheld income tax to zero.", - "label": "Abolish Hawaii withheld income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hi_income_tax_before_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.hi_income_tax_before_refundable_credits", - "description": "Set all values of Hawaii income tax before refundable credits to zero.", - "label": "Abolish Hawaii income tax before refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hi_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.hi_eitc", - "description": "Set all values of Hawaii earned income tax credit to zero.", - "label": "Abolish Hawaii earned income tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hi_cdcc": { - "type": "parameter", - "parameter": "gov.abolitions.hi_cdcc", - "description": "Set all values of Hawaii child and dependent care credit to zero.", - "label": "Abolish Hawaii child and dependent care credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hi_cdcc_min_head_spouse_earned": { - "type": "parameter", - "parameter": "gov.abolitions.hi_cdcc_min_head_spouse_earned", - "description": "Set all values of Hawaii minimum income between head and spouse for the CDCC to zero.", - "label": "Abolish Hawaii minimum income between head and spouse for the CDCC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hi_cdcc_income_floor_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.hi_cdcc_income_floor_eligible", - "description": "Set all values of Hawaii income floor eligible to zero.", - "label": "Abolish Hawaii income floor eligible", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hi_dependent_care_benefits": { - "type": "parameter", - "parameter": "gov.abolitions.hi_dependent_care_benefits", - "description": "Set all values of Hawaii Dependent Care Benefits to zero.", - "label": "Abolish Hawaii Dependent Care Benefits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hi_food_excise_credit_minor_child_count": { - "type": "parameter", - "parameter": "gov.abolitions.hi_food_excise_credit_minor_child_count", - "description": "Set all values of Minor child's number for the Hawaii Food/Excise Tax Credit to zero.", - "label": "Abolish Minor child's number for the Hawaii Food/Excise Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hi_food_excise_credit": { - "type": "parameter", - "parameter": "gov.abolitions.hi_food_excise_credit", - "description": "Set all values of Hawaii Food/Excise Tax Credit to zero.", - "label": "Abolish Hawaii Food/Excise Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hi_food_excise_credit_child_receiving_public_support": { - "type": "parameter", - "parameter": "gov.abolitions.hi_food_excise_credit_child_receiving_public_support", - "description": "Set all values of Child received support for the hawaii food excise credit to zero.", - "label": "Abolish Child received support for the hawaii food excise credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hi_food_excise_exemption_amount": { - "type": "parameter", - "parameter": "gov.abolitions.hi_food_excise_exemption_amount", - "description": "Set all values of Exemption amount for Hawaii Food/Excise Tax Credit to zero.", - "label": "Abolish Exemption amount for Hawaii Food/Excise Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hi_food_excise_credit_minor_child_amount": { - "type": "parameter", - "parameter": "gov.abolitions.hi_food_excise_credit_minor_child_amount", - "description": "Set all values of Minor child amount for the Hawaii Food/Excise Tax Credit to zero.", - "label": "Abolish Minor child amount for the Hawaii Food/Excise Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hi_tax_credit_for_low_income_household_renters": { - "type": "parameter", - "parameter": "gov.abolitions.hi_tax_credit_for_low_income_household_renters", - "description": "Set all values of Hawaii low income household renters tax credit to zero.", - "label": "Abolish Hawaii low income household renters tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hi_tax_credit_for_low_income_household_renters_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.hi_tax_credit_for_low_income_household_renters_eligible", - "description": "Set all values of Eligible for the Hawaii low income household renters tax credit to zero.", - "label": "Abolish Eligible for the Hawaii low income household renters tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hi_regular_exemptions": { - "type": "parameter", - "parameter": "gov.abolitions.hi_regular_exemptions", - "description": "Set all values of Hawaii regular exemptions to zero.", - "label": "Abolish Hawaii regular exemptions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hi_exemptions": { - "type": "parameter", - "parameter": "gov.abolitions.hi_exemptions", - "description": "Set all values of Hawaii exemptions to zero.", - "label": "Abolish Hawaii exemptions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hi_disabled_exemptions": { - "type": "parameter", - "parameter": "gov.abolitions.hi_disabled_exemptions", - "description": "Set all values of Hawaii disabled exemptions to zero.", - "label": "Abolish Hawaii disabled exemptions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hi_military_pay_exclusion": { - "type": "parameter", - "parameter": "gov.abolitions.hi_military_pay_exclusion", - "description": "Set all values of Hawaii military reserve or national guard duty pay exclusion to zero.", - "label": "Abolish Hawaii military reserve or national guard duty pay exclusion", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hi_alternative_tax_on_capital_gains_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.hi_alternative_tax_on_capital_gains_eligible", - "description": "Set all values of Eligible for the Hawaii alternative tax on capital gains to zero.", - "label": "Abolish Eligible for the Hawaii alternative tax on capital gains", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hi_alternative_tax_on_capital_gains": { - "type": "parameter", - "parameter": "gov.abolitions.hi_alternative_tax_on_capital_gains", - "description": "Set all values of Hawaii alternative tax on capital gains to zero.", - "label": "Abolish Hawaii alternative tax on capital gains", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hi_taxable_income_for_alternative_tax": { - "type": "parameter", - "parameter": "gov.abolitions.hi_taxable_income_for_alternative_tax", - "description": "Set all values of Hawaii eligible capital gains for the alternative tax capital gains to zero.", - "label": "Abolish Hawaii eligible capital gains for the alternative tax capital gains", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hi_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.hi_deductions", - "description": "Set all values of Hawaii deductions to zero.", - "label": "Abolish Hawaii deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hi_itemized_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.hi_itemized_deductions", - "description": "Set all values of Hawaii itemized deduction to zero.", - "label": "Abolish Hawaii itemized deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hi_interest_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.hi_interest_deduction", - "description": "Set all values of Hawaii interest deduction to zero.", - "label": "Abolish Hawaii interest deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hi_salt_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.hi_salt_deduction", - "description": "Set all values of Hawaii state and local tax deduction to zero.", - "label": "Abolish Hawaii state and local tax deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hi_reduced_itemized_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.hi_reduced_itemized_deductions", - "description": "Set all values of Hawaii reduced itemized deduction to zero.", - "label": "Abolish Hawaii reduced itemized deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hi_medical_expense_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.hi_medical_expense_deduction", - "description": "Set all values of Hawaii medical expense deduction to zero.", - "label": "Abolish Hawaii medical expense deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hi_casualty_loss_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.hi_casualty_loss_deduction", - "description": "Set all values of Hawaii casualty loss deduction to zero.", - "label": "Abolish Hawaii casualty loss deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hi_total_itemized_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.hi_total_itemized_deductions", - "description": "Set all values of Hawaii total itemized deduction to zero.", - "label": "Abolish Hawaii total itemized deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hi_standard_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.hi_standard_deduction", - "description": "Set all values of Hawaii standard deduction to zero.", - "label": "Abolish Hawaii standard deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.state_sales_tax": { - "type": "parameter", - "parameter": "gov.abolitions.state_sales_tax", - "description": "Set all values of State sales tax to zero.", - "label": "Abolish State sales tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.state_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.state_refundable_credits", - "description": "Set all values of state refundable credits to zero.", - "label": "Abolish state refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.state_itemized_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.state_itemized_deductions", - "description": "Set all values of State itemized deductions to zero.", - "label": "Abolish State itemized deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.state_standard_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.state_standard_deduction", - "description": "Set all values of State standard deduction to zero.", - "label": "Abolish State standard deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.state_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.state_eitc", - "description": "Set all values of State Earned Income Tax Credit to zero.", - "label": "Abolish State Earned Income Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.state_agi": { - "type": "parameter", - "parameter": "gov.abolitions.state_agi", - "description": "Set all values of State adjusted gross income to zero.", - "label": "Abolish State adjusted gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.state_property_tax_credit": { - "type": "parameter", - "parameter": "gov.abolitions.state_property_tax_credit", - "description": "Set all values of State Property Tax Credit to zero.", - "label": "Abolish State Property Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.state_withheld_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.state_withheld_income_tax", - "description": "Set all values of state income tax before refundable credits to zero.", - "label": "Abolish state income tax before refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.state_cdcc": { - "type": "parameter", - "parameter": "gov.abolitions.state_cdcc", - "description": "Set all values of State Child and Dependent Care Tax Credit to zero.", - "label": "Abolish State Child and Dependent Care Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.state_ctc": { - "type": "parameter", - "parameter": "gov.abolitions.state_ctc", - "description": "Set all values of State Child Tax Credit to zero.", - "label": "Abolish State Child Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.state_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.state_income_tax", - "description": "Set all values of state income tax to zero.", - "label": "Abolish state income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ar_standard_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.ar_standard_deduction", - "description": "Set all values of Arkansas standard deduction to zero.", - "label": "Abolish Arkansas standard deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ar_itemized_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.ar_itemized_deductions", - "description": "Set all values of Arkansas itemized deductions to zero.", - "label": "Abolish Arkansas itemized deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ar_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.ar_taxable_income", - "description": "Set all values of Arkansas taxable income to zero.", - "label": "Abolish Arkansas taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ar_agi": { - "type": "parameter", - "parameter": "gov.abolitions.ar_agi", - "description": "Set all values of Arkansas adjusted gross income to zero.", - "label": "Abolish Arkansas adjusted gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.dc_taxable_income", - "description": "Set all values of DC taxable income to zero.", - "label": "Abolish DC taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_standard_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.de_standard_deduction", - "description": "Set all values of Delaware standard deduction to zero.", - "label": "Abolish Delaware standard deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_itemized_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.de_itemized_deductions", - "description": "Set all values of Delaware itemized deductions to zero.", - "label": "Abolish Delaware itemized deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.de_taxable_income", - "description": "Set all values of Delaware taxable income to zero.", - "label": "Abolish Delaware taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.de_agi": { - "type": "parameter", - "parameter": "gov.abolitions.de_agi", - "description": "Set all values of Delaware adjusted gross income to zero.", - "label": "Abolish Delaware adjusted gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_standard_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.ia_standard_deduction", - "description": "Set all values of Iowa standard deduction to zero.", - "label": "Abolish Iowa standard deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_itemized_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.ia_itemized_deductions", - "description": "Set all values of Iowa itemized deductions to zero.", - "label": "Abolish Iowa itemized deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.ia_taxable_income", - "description": "Set all values of Iowa taxable income to zero.", - "label": "Abolish Iowa taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_agi": { - "type": "parameter", - "parameter": "gov.abolitions.ia_agi", - "description": "Set all values of Iowa adjusted gross income to zero.", - "label": "Abolish Iowa adjusted gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ky_standard_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.ky_standard_deduction", - "description": "Set all values of Kentucky standard deduction to zero.", - "label": "Abolish Kentucky standard deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ky_itemized_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.ky_itemized_deductions", - "description": "Set all values of Kentucky itemized deductions to zero.", - "label": "Abolish Kentucky itemized deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ky_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.ky_taxable_income", - "description": "Set all values of Kentucky taxable income to zero.", - "label": "Abolish Kentucky taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ms_standard_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.ms_standard_deduction", - "description": "Set all values of Mississippi standard deduction to zero.", - "label": "Abolish Mississippi standard deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ms_itemized_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.ms_itemized_deductions", - "description": "Set all values of Mississippi itemized deductions to zero.", - "label": "Abolish Mississippi itemized deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ms_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.ms_taxable_income", - "description": "Set all values of Mississippi taxable income to zero.", - "label": "Abolish Mississippi taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_standard_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.mt_standard_deduction", - "description": "Set all values of Montana standard deduction to zero.", - "label": "Abolish Montana standard deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_itemized_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.mt_itemized_deductions", - "description": "Set all values of Montana itemized deductions to zero.", - "label": "Abolish Montana itemized deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.mt_taxable_income", - "description": "Set all values of Montana taxable income to zero.", - "label": "Abolish Montana taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.state_income_tax_before_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.state_income_tax_before_refundable_credits", - "description": "Set all values of state income tax before refundable credits to zero.", - "label": "Abolish state income tax before refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.state_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.state_taxable_income", - "description": "Set all values of State taxable income to zero.", - "label": "Abolish State taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nh_education_tax_credit": { - "type": "parameter", - "parameter": "gov.abolitions.nh_education_tax_credit", - "description": "Set all values of New Hampshire Education Tax Credit to zero.", - "label": "Abolish New Hampshire Education Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nh_income_tax_before_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.nh_income_tax_before_refundable_credits", - "description": "Set all values of New Hampshire income tax before refundable credits to zero.", - "label": "Abolish New Hampshire income tax before refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nh_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.nh_income_tax", - "description": "Set all values of New Hampshire income tax to zero.", - "label": "Abolish New Hampshire income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nh_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.nh_taxable_income", - "description": "Set all values of New Hampshire taxable income to zero.", - "label": "Abolish New Hampshire taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nh_base_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.nh_base_exemption", - "description": "Set all values of New Hampshire base exemption to zero.", - "label": "Abolish New Hampshire base exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nh_old_age_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.nh_old_age_exemption", - "description": "Set all values of New Hampshire old age exemption to zero.", - "label": "Abolish New Hampshire old age exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nh_total_exemptions": { - "type": "parameter", - "parameter": "gov.abolitions.nh_total_exemptions", - "description": "Set all values of New Hampshire total exemption allowance to zero.", - "label": "Abolish New Hampshire total exemption allowance", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nh_disabled_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.nh_disabled_exemption", - "description": "Set all values of New Hampshire disabled exemption to zero.", - "label": "Abolish New Hampshire disabled exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nh_blind_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.nh_blind_exemption", - "description": "Set all values of New Hampshire blind exemption to zero.", - "label": "Abolish New Hampshire blind exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mo_tanf_income_limit": { - "type": "parameter", - "parameter": "gov.abolitions.mo_tanf_income_limit", - "description": "Set all values of Missouri TANF income limit / maximum benefit to zero.", - "label": "Abolish Missouri TANF income limit / maximum benefit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mo_withheld_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.mo_withheld_income_tax", - "description": "Set all values of Missouri withheld income tax to zero.", - "label": "Abolish Missouri withheld income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mo_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.mo_non_refundable_credits", - "description": "Set all values of Missouri non-refundable credits to zero.", - "label": "Abolish Missouri non-refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mo_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.mo_refundable_credits", - "description": "Set all values of Missouri refundable credits to zero.", - "label": "Abolish Missouri refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mo_wftc": { - "type": "parameter", - "parameter": "gov.abolitions.mo_wftc", - "description": "Set all values of Missouri Working Families Tax Credit to zero.", - "label": "Abolish Missouri Working Families Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mo_property_tax_credit": { - "type": "parameter", - "parameter": "gov.abolitions.mo_property_tax_credit", - "description": "Set all values of Missouri property tax credit to zero.", - "label": "Abolish Missouri property tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mo_ptc_net_income": { - "type": "parameter", - "parameter": "gov.abolitions.mo_ptc_net_income", - "description": "Set all values of Missouri property tax credit net income to zero.", - "label": "Abolish Missouri property tax credit net income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mo_ptc_gross_income": { - "type": "parameter", - "parameter": "gov.abolitions.mo_ptc_gross_income", - "description": "Set all values of Missouri property tax credit gross income to zero.", - "label": "Abolish Missouri property tax credit gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mo_ptc_income_offset": { - "type": "parameter", - "parameter": "gov.abolitions.mo_ptc_income_offset", - "description": "Set all values of Missouri property tax credit gross income offset amount to zero.", - "label": "Abolish Missouri property tax credit gross income offset amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mo_ptc_taxunit_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.mo_ptc_taxunit_eligible", - "description": "Set all values of Missouri property tax credit taxunit eligible to zero.", - "label": "Abolish Missouri property tax credit taxunit eligible", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mo_adjusted_gross_income": { - "type": "parameter", - "parameter": "gov.abolitions.mo_adjusted_gross_income", - "description": "Set all values of Missouri adjusted gross income to zero.", - "label": "Abolish Missouri adjusted gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mo_net_state_income_taxes": { - "type": "parameter", - "parameter": "gov.abolitions.mo_net_state_income_taxes", - "description": "Set all values of Missouri net state income taxes to zero.", - "label": "Abolish Missouri net state income taxes", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mo_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.mo_taxable_income", - "description": "Set all values of Missouri AGI minus deductions to zero.", - "label": "Abolish Missouri AGI minus deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mo_qualified_health_insurance_premiums": { - "type": "parameter", - "parameter": "gov.abolitions.mo_qualified_health_insurance_premiums", - "description": "Set all values of Missouri qualified healh insurance premiums to zero.", - "label": "Abolish Missouri qualified healh insurance premiums", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mo_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.mo_income_tax", - "description": "Set all values of Missouri income tax to zero.", - "label": "Abolish Missouri income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mo_income_tax_before_credits": { - "type": "parameter", - "parameter": "gov.abolitions.mo_income_tax_before_credits", - "description": "Set all values of Missouri income tax before credits to zero.", - "label": "Abolish Missouri income tax before credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mo_income_tax_exempt": { - "type": "parameter", - "parameter": "gov.abolitions.mo_income_tax_exempt", - "description": "Set all values of Missouri income tax exempt to zero.", - "label": "Abolish Missouri income tax exempt", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mo_income_tax_before_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.mo_income_tax_before_refundable_credits", - "description": "Set all values of Missouri income tax to zero.", - "label": "Abolish Missouri income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mo_federal_income_tax_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.mo_federal_income_tax_deduction", - "description": "Set all values of Missouri Federal income tax deduction to zero.", - "label": "Abolish Missouri Federal income tax deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mo_pension_and_ss_or_ssd_deduction_section_a": { - "type": "parameter", - "parameter": "gov.abolitions.mo_pension_and_ss_or_ssd_deduction_section_a", - "description": "Set all values of Missouri Pension and Social Security or SS Disability Deduction to zero.", - "label": "Abolish Missouri Pension and Social Security or SS Disability Deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mo_pension_and_ss_or_ssd_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.mo_pension_and_ss_or_ssd_deduction", - "description": "Set all values of Missouri Pension and Social Security or SS Disability Deduction to zero.", - "label": "Abolish Missouri Pension and Social Security or SS Disability Deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mo_itemized_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.mo_itemized_deductions", - "description": "Set all values of Sum of itemized deductions applicable to Missouri taxable income calculation to zero.", - "label": "Abolish Sum of itemized deductions applicable to Missouri taxable income calculation", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mo_pension_and_ss_or_ssd_deduction_section_b": { - "type": "parameter", - "parameter": "gov.abolitions.mo_pension_and_ss_or_ssd_deduction_section_b", - "description": "Set all values of Missouri Pension and Social Security or SS Disability Deduction to zero.", - "label": "Abolish Missouri Pension and Social Security or SS Disability Deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mo_business_income_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.mo_business_income_deduction", - "description": "Set all values of Missouri business income deduction to zero.", - "label": "Abolish Missouri business income deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mo_pension_and_ss_or_ssd_deduction_section_c": { - "type": "parameter", - "parameter": "gov.abolitions.mo_pension_and_ss_or_ssd_deduction_section_c", - "description": "Set all values of Missouri Pension and Social Security or SS Disability Deduction to zero.", - "label": "Abolish Missouri Pension and Social Security or SS Disability Deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nc_income_tax_before_credits": { - "type": "parameter", - "parameter": "gov.abolitions.nc_income_tax_before_credits", - "description": "Set all values of North Carolina income tax before credits to zero.", - "label": "Abolish North Carolina income tax before credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nc_withheld_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.nc_withheld_income_tax", - "description": "Set all values of North Carolina withheld income tax to zero.", - "label": "Abolish North Carolina withheld income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nc_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.nc_taxable_income", - "description": "Set all values of North Carolina taxable income to zero.", - "label": "Abolish North Carolina taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nc_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.nc_income_tax", - "description": "Set all values of North Carolina income tax to zero.", - "label": "Abolish North Carolina income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nc_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.nc_non_refundable_credits", - "description": "Set all values of North Carolina non-refundable credits to zero.", - "label": "Abolish North Carolina non-refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nc_use_tax": { - "type": "parameter", - "parameter": "gov.abolitions.nc_use_tax", - "description": "Set all values of North Carolina use tax to zero.", - "label": "Abolish North Carolina use tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nc_ctc": { - "type": "parameter", - "parameter": "gov.abolitions.nc_ctc", - "description": "Set all values of North Carolina credit for children to zero.", - "label": "Abolish North Carolina credit for children", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nc_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.nc_deductions", - "description": "Set all values of North Carolina deductions to zero.", - "label": "Abolish North Carolina deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nc_standard_or_itemized_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.nc_standard_or_itemized_deductions", - "description": "Set all values of North Carolina standard or itemized deductions amount to zero.", - "label": "Abolish North Carolina standard or itemized deductions amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nc_itemized_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.nc_itemized_deductions", - "description": "Set all values of North Carolina itemized deductions to zero.", - "label": "Abolish North Carolina itemized deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nc_child_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.nc_child_deduction", - "description": "Set all values of North Carolina child deduction to zero.", - "label": "Abolish North Carolina child deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nc_standard_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.nc_standard_deduction", - "description": "Set all values of North Carolina standard deduction to zero.", - "label": "Abolish North Carolina standard deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nc_military_retirement_deduction_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.nc_military_retirement_deduction_eligible", - "description": "Set all values of North Carolina military retirement deduction eligible to zero.", - "label": "Abolish North Carolina military retirement deduction eligible", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nc_military_retirement_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.nc_military_retirement_deduction", - "description": "Set all values of North Carolina military retirement deduction to zero.", - "label": "Abolish North Carolina military retirement deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nc_scca_child_age_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.nc_scca_child_age_eligible", - "description": "Set all values of North Carolina child age eligibility for Subsidized Child Care Assistance (SCCA) program to zero.", - "label": "Abolish North Carolina child age eligibility for Subsidized Child Care Assistance (SCCA) program", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nc_scca_has_eligible_child": { - "type": "parameter", - "parameter": "gov.abolitions.nc_scca_has_eligible_child", - "description": "Set all values of Any eligible child for North Carolina Subsidized Child Care Assistance program to zero.", - "label": "Abolish Any eligible child for North Carolina Subsidized Child Care Assistance program", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nc_scca_market_rate": { - "type": "parameter", - "parameter": "gov.abolitions.nc_scca_market_rate", - "description": "Set all values of North Carolina Subsidized Child Care Assistance (SCCA) program market rate to zero.", - "label": "Abolish North Carolina Subsidized Child Care Assistance (SCCA) program market rate", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nc_scca": { - "type": "parameter", - "parameter": "gov.abolitions.nc_scca", - "description": "Set all values of North Carolina Subsidized Child Care Assistance Program to zero.", - "label": "Abolish North Carolina Subsidized Child Care Assistance Program", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nc_scca_age_group": { - "type": "parameter", - "parameter": "gov.abolitions.nc_scca_age_group", - "description": "Set all values of North Carolina SCCA age group to zero.", - "label": "Abolish North Carolina SCCA age group", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nc_scca_countable_income": { - "type": "parameter", - "parameter": "gov.abolitions.nc_scca_countable_income", - "description": "Set all values of North Carolina Subsidized Child Care Assistance program countable income to zero.", - "label": "Abolish North Carolina Subsidized Child Care Assistance program countable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nc_scca_is_school_age": { - "type": "parameter", - "parameter": "gov.abolitions.nc_scca_is_school_age", - "description": "Set all values of North Carolina SCCA school age determination to zero.", - "label": "Abolish North Carolina SCCA school age determination", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nc_scca_fpg_rate": { - "type": "parameter", - "parameter": "gov.abolitions.nc_scca_fpg_rate", - "description": "Set all values of North Carolina Subsidized Child Care Assistance (SCCA) program income limits compared to the FPL to zero.", - "label": "Abolish North Carolina Subsidized Child Care Assistance (SCCA) program income limits compared to the FPL", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nc_scca_parent_fee": { - "type": "parameter", - "parameter": "gov.abolitions.nc_scca_parent_fee", - "description": "Set all values of North Carolina Subsidized Child Care Assistance Program parent fee to zero.", - "label": "Abolish North Carolina Subsidized Child Care Assistance Program parent fee", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nc_scca_entry_income_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.nc_scca_entry_income_eligible", - "description": "Set all values of North Carolina entry income eligibility for Subsidized Child Care Assistance program to zero.", - "label": "Abolish North Carolina entry income eligibility for Subsidized Child Care Assistance program", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nc_scca_entry_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.nc_scca_entry_eligible", - "description": "Set all values of North Carolina entry eligibility for Subsidized Child Care Assistance Program to zero.", - "label": "Abolish North Carolina entry eligibility for Subsidized Child Care Assistance Program", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nc_tanf_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.nc_tanf_eligible", - "description": "Set all values of North Carolina TANF eligible to zero.", - "label": "Abolish North Carolina TANF eligible", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nc_demographic_tanf_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.nc_demographic_tanf_eligible", - "description": "Set all values of North Carolina Demographic eligibility for TANF to zero.", - "label": "Abolish North Carolina Demographic eligibility for TANF", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nc_tanf": { - "type": "parameter", - "parameter": "gov.abolitions.nc_tanf", - "description": "Set all values of North Carolina TANF to zero.", - "label": "Abolish North Carolina TANF", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nc_tanf_reduced_need_standard": { - "type": "parameter", - "parameter": "gov.abolitions.nc_tanf_reduced_need_standard", - "description": "Set all values of North Carolina TANF reduced need standard to zero.", - "label": "Abolish North Carolina TANF reduced need standard", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nc_tanf_income_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.nc_tanf_income_eligible", - "description": "Set all values of North Carolina TANF income eligible to zero.", - "label": "Abolish North Carolina TANF income eligible", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nc_tanf_need_standard": { - "type": "parameter", - "parameter": "gov.abolitions.nc_tanf_need_standard", - "description": "Set all values of North Carolina TANF need standard to zero.", - "label": "Abolish North Carolina TANF need standard", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nc_tanf_countable_gross_unearned_income": { - "type": "parameter", - "parameter": "gov.abolitions.nc_tanf_countable_gross_unearned_income", - "description": "Set all values of North Carolina TANF countable gross unearned income to zero.", - "label": "Abolish North Carolina TANF countable gross unearned income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nc_tanf_countable_earned_income": { - "type": "parameter", - "parameter": "gov.abolitions.nc_tanf_countable_earned_income", - "description": "Set all values of North Carolina TANF countable earned income to zero.", - "label": "Abolish North Carolina TANF countable earned income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.sc_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.sc_taxable_income", - "description": "Set all values of South Carolina taxable income to zero.", - "label": "Abolish South Carolina taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.sc_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.sc_income_tax", - "description": "Set all values of South Carolina income tax to zero.", - "label": "Abolish South Carolina income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.sc_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.sc_refundable_credits", - "description": "Set all values of South Carolina refundable credits to zero.", - "label": "Abolish South Carolina refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.sc_income_tax_before_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.sc_income_tax_before_refundable_credits", - "description": "Set all values of South Carolina income tax before refundable credits to zero.", - "label": "Abolish South Carolina income tax before refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.sc_withheld_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.sc_withheld_income_tax", - "description": "Set all values of South Carolina withheld income tax to zero.", - "label": "Abolish South Carolina withheld income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.sc_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.sc_non_refundable_credits", - "description": "Set all values of South Carolina non-refundable credits to zero.", - "label": "Abolish South Carolina non-refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.sc_income_tax_before_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.sc_income_tax_before_non_refundable_credits", - "description": "Set all values of South Carolina income tax before non-refundable credits to zero.", - "label": "Abolish South Carolina income tax before non-refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.sc_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.sc_eitc", - "description": "Set all values of South Carolina EITC to zero.", - "label": "Abolish South Carolina EITC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.sc_cdcc": { - "type": "parameter", - "parameter": "gov.abolitions.sc_cdcc", - "description": "Set all values of South Carolina CDCC to zero.", - "label": "Abolish South Carolina CDCC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.sc_two_wage_earner_credit": { - "type": "parameter", - "parameter": "gov.abolitions.sc_two_wage_earner_credit", - "description": "Set all values of South Carolina two wage earner credit to zero.", - "label": "Abolish South Carolina two wage earner credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.sc_gross_earned_income": { - "type": "parameter", - "parameter": "gov.abolitions.sc_gross_earned_income", - "description": "Set all values of South Carolina gross earned income to zero.", - "label": "Abolish South Carolina gross earned income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.sc_dependent_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.sc_dependent_exemption", - "description": "Set all values of South Carolina dependent exemption to zero.", - "label": "Abolish South Carolina dependent exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.sc_senior_exemption_person": { - "type": "parameter", - "parameter": "gov.abolitions.sc_senior_exemption_person", - "description": "Set all values of South Carolina senior exemption for each person to zero.", - "label": "Abolish South Carolina senior exemption for each person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.sc_senior_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.sc_senior_exemption", - "description": "Set all values of South Carolina senior exemption to zero.", - "label": "Abolish South Carolina senior exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.sc_subtractions": { - "type": "parameter", - "parameter": "gov.abolitions.sc_subtractions", - "description": "Set all values of South Carolina subtractions to zero.", - "label": "Abolish South Carolina subtractions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.sc_military_deduction_indv": { - "type": "parameter", - "parameter": "gov.abolitions.sc_military_deduction_indv", - "description": "Set all values of South Carolina military deduction for eligible individuals to zero.", - "label": "Abolish South Carolina military deduction for eligible individuals", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.sc_military_deduction_survivors": { - "type": "parameter", - "parameter": "gov.abolitions.sc_military_deduction_survivors", - "description": "Set all values of South Carolina military retirement deduction for survivors to zero.", - "label": "Abolish South Carolina military retirement deduction for survivors", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.sc_military_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.sc_military_deduction", - "description": "Set all values of South Carolina military retirement deduction to zero.", - "label": "Abolish South Carolina military retirement deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.sc_retirement_cap": { - "type": "parameter", - "parameter": "gov.abolitions.sc_retirement_cap", - "description": "Set all values of South Carolina retirement income subtraction cap to zero.", - "label": "Abolish South Carolina retirement income subtraction cap", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.sc_retirement_deduction_survivors": { - "type": "parameter", - "parameter": "gov.abolitions.sc_retirement_deduction_survivors", - "description": "Set all values of South Carolina retirement deduction for survivors to zero.", - "label": "Abolish South Carolina retirement deduction for survivors", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.sc_retirement_deduction_indv": { - "type": "parameter", - "parameter": "gov.abolitions.sc_retirement_deduction_indv", - "description": "Set all values of South Carolina retirement deduction for eligible individuals to zero.", - "label": "Abolish South Carolina retirement deduction for eligible individuals", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.sc_retirement_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.sc_retirement_deduction", - "description": "Set all values of South Carolina retirement deduction to zero.", - "label": "Abolish South Carolina retirement deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.sc_additions": { - "type": "parameter", - "parameter": "gov.abolitions.sc_additions", - "description": "Set all values of South Carolina additions to zero.", - "label": "Abolish South Carolina additions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.sc_state_tax_addback": { - "type": "parameter", - "parameter": "gov.abolitions.sc_state_tax_addback", - "description": "Set all values of South Carolina State Tax addback to zero.", - "label": "Abolish South Carolina State Tax addback", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.sc_young_child_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.sc_young_child_deduction", - "description": "Set all values of South Carolina young child deduction to zero.", - "label": "Abolish South Carolina young child deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.sc_net_capital_gain_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.sc_net_capital_gain_deduction", - "description": "Set all values of South Carolina net capital gain deduction to zero.", - "label": "Abolish South Carolina net capital gain deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ms_withheld_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.ms_withheld_income_tax", - "description": "Set all values of Mississippi withheld income tax to zero.", - "label": "Abolish Mississippi withheld income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ms_prorate_fraction": { - "type": "parameter", - "parameter": "gov.abolitions.ms_prorate_fraction", - "description": "Set all values of Share of Mississippi AGI within tax unit to zero.", - "label": "Abolish Share of Mississippi AGI within tax unit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ms_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.ms_income_tax", - "description": "Set all values of Mississippi income tax to zero.", - "label": "Abolish Mississippi income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ms_files_separately": { - "type": "parameter", - "parameter": "gov.abolitions.ms_files_separately", - "description": "Set all values of married couple files separately on Mississippi tax return to zero.", - "label": "Abolish married couple files separately on Mississippi tax return", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ms_income_tax_before_credits_joint": { - "type": "parameter", - "parameter": "gov.abolitions.ms_income_tax_before_credits_joint", - "description": "Set all values of Mississippi income tax before credits when married couples file jointly to zero.", - "label": "Abolish Mississippi income tax before credits when married couples file jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ms_agi_adjustments": { - "type": "parameter", - "parameter": "gov.abolitions.ms_agi_adjustments", - "description": "Set all values of Mississippi adjustments to federal adjusted gross income to zero.", - "label": "Abolish Mississippi adjustments to federal adjusted gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ms_income_tax_before_credits_unit": { - "type": "parameter", - "parameter": "gov.abolitions.ms_income_tax_before_credits_unit", - "description": "Set all values of Mississippi income tax before credits to zero.", - "label": "Abolish Mississippi income tax before credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ms_agi": { - "type": "parameter", - "parameter": "gov.abolitions.ms_agi", - "description": "Set all values of Mississippi adjusted gross income to zero.", - "label": "Abolish Mississippi adjusted gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ms_income_tax_before_credits_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.ms_income_tax_before_credits_indiv", - "description": "Set all values of Mississippi income tax before credits when married couples file separately to zero.", - "label": "Abolish Mississippi income tax before credits when married couples file separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ms_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ms_non_refundable_credits", - "description": "Set all values of Mississippi non-refundable credits to zero.", - "label": "Abolish Mississippi non-refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ms_retirement_income_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.ms_retirement_income_exemption", - "description": "Set all values of Mississippi retirement income exemption to zero.", - "label": "Abolish Mississippi retirement income exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ms_self_employment_adjustment": { - "type": "parameter", - "parameter": "gov.abolitions.ms_self_employment_adjustment", - "description": "Set all values of Mississippi self employment adjustment to zero.", - "label": "Abolish Mississippi self employment adjustment", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ms_national_guard_or_reserve_pay_adjustment": { - "type": "parameter", - "parameter": "gov.abolitions.ms_national_guard_or_reserve_pay_adjustment", - "description": "Set all values of Mississippi national guard or reserve pay adjustment to zero.", - "label": "Abolish Mississippi national guard or reserve pay adjustment", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ms_cdcc": { - "type": "parameter", - "parameter": "gov.abolitions.ms_cdcc", - "description": "Set all values of Mississippi child and dependent care credit to zero.", - "label": "Abolish Mississippi child and dependent care credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ms_cdcc_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ms_cdcc_eligible", - "description": "Set all values of Eligible for the Mississippi child and dependent care credit to zero.", - "label": "Abolish Eligible for the Mississippi child and dependent care credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ms_charitable_contributions_credit": { - "type": "parameter", - "parameter": "gov.abolitions.ms_charitable_contributions_credit", - "description": "Set all values of Mississippi charitable contributions credit to zero.", - "label": "Abolish Mississippi charitable contributions credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ms_blind_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.ms_blind_exemption", - "description": "Set all values of Mississippi blind exemption to zero.", - "label": "Abolish Mississippi blind exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ms_regular_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.ms_regular_exemption", - "description": "Set all values of Mississippi regular exemption to zero.", - "label": "Abolish Mississippi regular exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ms_total_exemptions": { - "type": "parameter", - "parameter": "gov.abolitions.ms_total_exemptions", - "description": "Set all values of Mississippi total exemptions to zero.", - "label": "Abolish Mississippi total exemptions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ms_dependents_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.ms_dependents_exemption", - "description": "Set all values of Mississippi qualified and other dependent children exemption to zero.", - "label": "Abolish Mississippi qualified and other dependent children exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ms_aged_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.ms_aged_exemption", - "description": "Set all values of Mississippi aged exemption to zero.", - "label": "Abolish Mississippi aged exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ms_total_exemptions_joint": { - "type": "parameter", - "parameter": "gov.abolitions.ms_total_exemptions_joint", - "description": "Set all values of Mississippi total exemptions when married couples file jointly to zero.", - "label": "Abolish Mississippi total exemptions when married couples file jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ms_total_exemptions_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.ms_total_exemptions_indiv", - "description": "Set all values of Mississippi total exemptions when married couples file separately to zero.", - "label": "Abolish Mississippi total exemptions when married couples file separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ms_taxable_income_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.ms_taxable_income_indiv", - "description": "Set all values of Mississippi taxable income when married couple file separately to zero.", - "label": "Abolish Mississippi taxable income when married couple file separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ms_taxable_income_joint": { - "type": "parameter", - "parameter": "gov.abolitions.ms_taxable_income_joint", - "description": "Set all values of Mississippi taxable income when married couple file jointly to zero.", - "label": "Abolish Mississippi taxable income when married couple file jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ms_pre_deductions_taxable_income_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.ms_pre_deductions_taxable_income_indiv", - "description": "Set all values of Mississippi pre deductions taxable income when married couple file separately to zero.", - "label": "Abolish Mississippi pre deductions taxable income when married couple file separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ms_tax_unit_itemizes": { - "type": "parameter", - "parameter": "gov.abolitions.ms_tax_unit_itemizes", - "description": "Set all values of Whether the tax unit in Mississippi itemizes the deductions when married filing separately to zero.", - "label": "Abolish Whether the tax unit in Mississippi itemizes the deductions when married filing separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ms_deductions_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.ms_deductions_indiv", - "description": "Set all values of Mississippi deductions when married couples file separately to zero.", - "label": "Abolish Mississippi deductions when married couples file separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ms_deductions_joint": { - "type": "parameter", - "parameter": "gov.abolitions.ms_deductions_joint", - "description": "Set all values of Mississippi deductions when married couples file jointly to zero.", - "label": "Abolish Mississippi deductions when married couples file jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ms_itemized_deductions_joint": { - "type": "parameter", - "parameter": "gov.abolitions.ms_itemized_deductions_joint", - "description": "Set all values of Mississippi itemized deductions for joint couples to zero.", - "label": "Abolish Mississippi itemized deductions for joint couples", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ms_itemized_deductions_unit": { - "type": "parameter", - "parameter": "gov.abolitions.ms_itemized_deductions_unit", - "description": "Set all values of Mississippi itemized deductions to zero.", - "label": "Abolish Mississippi itemized deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ms_itemized_deductions_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.ms_itemized_deductions_indiv", - "description": "Set all values of Mississippi itemized deductions for individual couples to zero.", - "label": "Abolish Mississippi itemized deductions for individual couples", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ms_real_estate_tax_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.ms_real_estate_tax_deduction", - "description": "Set all values of Mississippi real estate tax deduction to zero.", - "label": "Abolish Mississippi real estate tax deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ms_standard_deduction_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.ms_standard_deduction_indiv", - "description": "Set all values of Mississippi standard deduction when married couples file separately to zero.", - "label": "Abolish Mississippi standard deduction when married couples file separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ms_standard_deduction_joint": { - "type": "parameter", - "parameter": "gov.abolitions.ms_standard_deduction_joint", - "description": "Set all values of Mississippi personal standard deduction for married couples filing jointly to zero.", - "label": "Abolish Mississippi personal standard deduction for married couples filing jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_state_supplement": { - "type": "parameter", - "parameter": "gov.abolitions.ma_state_supplement", - "description": "Set all values of Massachusetts State Supplement payment amount to zero.", - "label": "Abolish Massachusetts State Supplement payment amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_maximum_state_supplement": { - "type": "parameter", - "parameter": "gov.abolitions.ma_maximum_state_supplement", - "description": "Set all values of Massachusetts maximum State Supplement payment amount to zero.", - "label": "Abolish Massachusetts maximum State Supplement payment amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_tcap_gross_unearned_income": { - "type": "parameter", - "parameter": "gov.abolitions.ma_tcap_gross_unearned_income", - "description": "Set all values of Massachusetts Transitional Cash Assistance Program (TCAP) gross unearned income to zero.", - "label": "Abolish Massachusetts Transitional Cash Assistance Program (TCAP) gross unearned income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_tcap_gross_earned_income": { - "type": "parameter", - "parameter": "gov.abolitions.ma_tcap_gross_earned_income", - "description": "Set all values of Massachusetts Transitional Cash Assistance Program (TCAP) gross earned income to zero.", - "label": "Abolish Massachusetts Transitional Cash Assistance Program (TCAP) gross earned income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_tafdc_exceeds_eaedc": { - "type": "parameter", - "parameter": "gov.abolitions.ma_tafdc_exceeds_eaedc", - "description": "Set all values of Whether the TAFDC value exceeds the EAEDC value to zero.", - "label": "Abolish Whether the TAFDC value exceeds the EAEDC value", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_eaedc_countable_assets": { - "type": "parameter", - "parameter": "gov.abolitions.ma_eaedc_countable_assets", - "description": "Set all values of Massachusetts EAEDC countable assets to zero.", - "label": "Abolish Massachusetts EAEDC countable assets", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_eaedc_if_claimed": { - "type": "parameter", - "parameter": "gov.abolitions.ma_eaedc_if_claimed", - "description": "Set all values of Massachusetts EAEDC benefit amount if claimed to zero.", - "label": "Abolish Massachusetts EAEDC benefit amount if claimed", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_eaedc": { - "type": "parameter", - "parameter": "gov.abolitions.ma_eaedc", - "description": "Set all values of Massachusetts EAEDC to zero.", - "label": "Abolish Massachusetts EAEDC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_eaedc_dependent_care_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.ma_eaedc_dependent_care_deduction", - "description": "Set all values of Massachusetts EAEDC dependent care deduction to zero.", - "label": "Abolish Massachusetts EAEDC dependent care deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_eaedc_eligible_dependent": { - "type": "parameter", - "parameter": "gov.abolitions.ma_eaedc_eligible_dependent", - "description": "Set all values of Eligible dependent for the Massachusetts EAEDC dependent care deduction to zero.", - "label": "Abolish Eligible dependent for the Massachusetts EAEDC dependent care deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_eaedc_dependent_care_deduction_person": { - "type": "parameter", - "parameter": "gov.abolitions.ma_eaedc_dependent_care_deduction_person", - "description": "Set all values of Massachusetts EAEDC dependent care deduction for each person to zero.", - "label": "Abolish Massachusetts EAEDC dependent care deduction for each person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_eaedc_countable_earned_income": { - "type": "parameter", - "parameter": "gov.abolitions.ma_eaedc_countable_earned_income", - "description": "Set all values of Massachusetts EAEDC countable earned income to zero.", - "label": "Abolish Massachusetts EAEDC countable earned income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_eaedc_net_income": { - "type": "parameter", - "parameter": "gov.abolitions.ma_eaedc_net_income", - "description": "Set all values of Massachusetts EAEDC net income to zero.", - "label": "Abolish Massachusetts EAEDC net income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_eaedc_standard_assistance": { - "type": "parameter", - "parameter": "gov.abolitions.ma_eaedc_standard_assistance", - "description": "Set all values of Massachusetts EAEDC standard assistance to zero.", - "label": "Abolish Massachusetts EAEDC standard assistance", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_eaedc_earned_income_after_disregard_person": { - "type": "parameter", - "parameter": "gov.abolitions.ma_eaedc_earned_income_after_disregard_person", - "description": "Set all values of Massachusetts EAEDC earned income after disregard for each person to zero.", - "label": "Abolish Massachusetts EAEDC earned income after disregard for each person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_eaedc_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ma_eaedc_eligible", - "description": "Set all values of Eligible for the Massachusetts EAEDC to zero.", - "label": "Abolish Eligible for the Massachusetts EAEDC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_eaedc_income_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ma_eaedc_income_eligible", - "description": "Set all values of Eligible for the Massachusetts EAEDC based on income to zero.", - "label": "Abolish Eligible for the Massachusetts EAEDC based on income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_eaedc_assets_limit_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ma_eaedc_assets_limit_eligible", - "description": "Set all values of Eligible based on the asset limit for the Massachusetts EAEDC to zero.", - "label": "Abolish Eligible based on the asset limit for the Massachusetts EAEDC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_eaedc_financial_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ma_eaedc_financial_eligible", - "description": "Set all values of Financial eligible for Massachusetts EAEDC to zero.", - "label": "Abolish Financial eligible for Massachusetts EAEDC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_eaedc_immigration_status_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ma_eaedc_immigration_status_eligible", - "description": "Set all values of Eligible for the Massachusetts EAEDC based on immigration status to zero.", - "label": "Abolish Eligible for the Massachusetts EAEDC based on immigration status", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_eaedc_eligible_disabled_head_or_spouse": { - "type": "parameter", - "parameter": "gov.abolitions.ma_eaedc_eligible_disabled_head_or_spouse", - "description": "Set all values of Disabled head or spouse present for Massachusetts EAEDC to zero.", - "label": "Abolish Disabled head or spouse present for Massachusetts EAEDC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_eaedc_eligible_elderly_present": { - "type": "parameter", - "parameter": "gov.abolitions.ma_eaedc_eligible_elderly_present", - "description": "Set all values of Eligible elderly present for the Massachusetts EAEDC to zero.", - "label": "Abolish Eligible elderly present for the Massachusetts EAEDC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_eaedc_eligible_disabled_dependent_present": { - "type": "parameter", - "parameter": "gov.abolitions.ma_eaedc_eligible_disabled_dependent_present", - "description": "Set all values of Disabled dependent present for Massachusetts EAEDC to zero.", - "label": "Abolish Disabled dependent present for Massachusetts EAEDC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_eaedc_non_financial_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ma_eaedc_non_financial_eligible", - "description": "Set all values of Non-financial eligible for Massachusetts EAEDC to zero.", - "label": "Abolish Non-financial eligible for Massachusetts EAEDC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_eaedc_eligible_caretaker_family": { - "type": "parameter", - "parameter": "gov.abolitions.ma_eaedc_eligible_caretaker_family", - "description": "Set all values of Eligible caretaker family for the Massachusetts EAEDC to zero.", - "label": "Abolish Eligible caretaker family for the Massachusetts EAEDC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_tafdc": { - "type": "parameter", - "parameter": "gov.abolitions.ma_tafdc", - "description": "Set all values of Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) to zero.", - "label": "Abolish Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_tafdc_eligible_infant": { - "type": "parameter", - "parameter": "gov.abolitions.ma_tafdc_eligible_infant", - "description": "Set all values of Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) eligible infant to zero.", - "label": "Abolish Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) eligible infant", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_tafdc_if_claimed": { - "type": "parameter", - "parameter": "gov.abolitions.ma_tafdc_if_claimed", - "description": "Set all values of Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) benefit amount if claimed to zero.", - "label": "Abolish Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) benefit amount if claimed", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_tafdc_applicable_income_for_financial_eligibility": { - "type": "parameter", - "parameter": "gov.abolitions.ma_tafdc_applicable_income_for_financial_eligibility", - "description": "Set all values of Applicable income for the Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) financial eligibility check to zero.", - "label": "Abolish Applicable income for the Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) financial eligibility check", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_tafdc_applicable_income_grant_amount": { - "type": "parameter", - "parameter": "gov.abolitions.ma_tafdc_applicable_income_grant_amount", - "description": "Set all values of Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) countable income to zero.", - "label": "Abolish Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) countable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_tafdc_countable_unearned_income": { - "type": "parameter", - "parameter": "gov.abolitions.ma_tafdc_countable_unearned_income", - "description": "Set all values of Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) countable unearned income to zero.", - "label": "Abolish Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) countable unearned income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_tafdc_full_earned_income_disregard_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ma_tafdc_full_earned_income_disregard_eligible", - "description": "Set all values of Is eligible for the full earned income disregard under the Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) to zero.", - "label": "Abolish Is eligible for the full earned income disregard under the Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_tafdc_countable_earned_income": { - "type": "parameter", - "parameter": "gov.abolitions.ma_tafdc_countable_earned_income", - "description": "Set all values of Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) countable earned income to zero.", - "label": "Abolish Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) countable earned income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_tafdc_earned_income_after_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.ma_tafdc_earned_income_after_deductions", - "description": "Set all values of Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) earned income after deductions to zero.", - "label": "Abolish Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) earned income after deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_tafdc_partially_disregarded_earned_income": { - "type": "parameter", - "parameter": "gov.abolitions.ma_tafdc_partially_disregarded_earned_income", - "description": "Set all values of Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) partially disregarded earned income to zero.", - "label": "Abolish Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) partially disregarded earned income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_tafdc_child_support_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.ma_tafdc_child_support_deduction", - "description": "Set all values of Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) child support deduction to zero.", - "label": "Abolish Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) child support deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_tafdc_work_related_expense_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.ma_tafdc_work_related_expense_deduction", - "description": "Set all values of Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) work-related expense deduction to zero.", - "label": "Abolish Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) work-related expense deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_tafdc_dependent_care_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.ma_tafdc_dependent_care_deduction", - "description": "Set all values of Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) dependent care deduction to zero.", - "label": "Abolish Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) dependent care deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_tafdc_dependent_care_deduction_person": { - "type": "parameter", - "parameter": "gov.abolitions.ma_tafdc_dependent_care_deduction_person", - "description": "Set all values of Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) dependent care deduction for each person to zero.", - "label": "Abolish Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) dependent care deduction for each person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_tafdc_financial_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ma_tafdc_financial_eligible", - "description": "Set all values of Eligible for Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) due to income to zero.", - "label": "Abolish Eligible for Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) due to income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_tafdc_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ma_tafdc_eligible", - "description": "Set all values of Eligible for Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) to zero.", - "label": "Abolish Eligible for Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_tafdc_immigration_status_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ma_tafdc_immigration_status_eligible", - "description": "Set all values of Eligible for Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) due to immigration status to zero.", - "label": "Abolish Eligible for Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) due to immigration status", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_tafdc_pregnancy_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ma_tafdc_pregnancy_eligible", - "description": "Set all values of Eligible for Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) due to pregnancy to zero.", - "label": "Abolish Eligible for Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) due to pregnancy", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_tafdc_age_limit": { - "type": "parameter", - "parameter": "gov.abolitions.ma_tafdc_age_limit", - "description": "Set all values of Applicable age limit for the Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) to zero.", - "label": "Abolish Applicable age limit for the Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_tafdc_eligible_dependent": { - "type": "parameter", - "parameter": "gov.abolitions.ma_tafdc_eligible_dependent", - "description": "Set all values of Eligible dependent for the Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) to zero.", - "label": "Abolish Eligible dependent for the Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_tafdc_non_financial_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ma_tafdc_non_financial_eligible", - "description": "Set all values of Eligible for Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) to zero.", - "label": "Abolish Eligible for Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_tafdc_dependent_criteria_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ma_tafdc_dependent_criteria_eligible", - "description": "Set all values of Eligible based on the dependent criteria for the Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) to zero.", - "label": "Abolish Eligible based on the dependent criteria for the Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_tafdc_potential_main_benefit": { - "type": "parameter", - "parameter": "gov.abolitions.ma_tafdc_potential_main_benefit", - "description": "Set all values of Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) potential main benefit to zero.", - "label": "Abolish Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) potential main benefit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_tafdc_infant_benefit": { - "type": "parameter", - "parameter": "gov.abolitions.ma_tafdc_infant_benefit", - "description": "Set all values of Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) infant benefit to zero.", - "label": "Abolish Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) infant benefit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_tafdc_clothing_allowance": { - "type": "parameter", - "parameter": "gov.abolitions.ma_tafdc_clothing_allowance", - "description": "Set all values of Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) clothing allowance to zero.", - "label": "Abolish Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) clothing allowance", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_tafdc_payment_standard": { - "type": "parameter", - "parameter": "gov.abolitions.ma_tafdc_payment_standard", - "description": "Set all values of Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) payment standard to zero.", - "label": "Abolish Massachusetts Temporary Assistance for Families with Dependent Children (TAFDC) payment standard", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_withheld_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.ma_withheld_income_tax", - "description": "Set all values of Massachusetts withheld income tax to zero.", - "label": "Abolish Massachusetts withheld income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_ma_income_tax_exempt": { - "type": "parameter", - "parameter": "gov.abolitions.is_ma_income_tax_exempt", - "description": "Set all values of MA income tax exempt to zero.", - "label": "Abolish MA income tax exempt", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_income_tax_before_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ma_income_tax_before_credits", - "description": "Set all values of MA income tax before credits to zero.", - "label": "Abolish MA income tax before credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ma_non_refundable_credits", - "description": "Set all values of MA non-refundable credits to zero.", - "label": "Abolish MA non-refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_income_tax_exemption_threshold": { - "type": "parameter", - "parameter": "gov.abolitions.ma_income_tax_exemption_threshold", - "description": "Set all values of MA income tax exemption threshold to zero.", - "label": "Abolish MA income tax exemption threshold", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ma_refundable_credits", - "description": "Set all values of MA refundable credits to zero.", - "label": "Abolish MA refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_income_tax_before_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ma_income_tax_before_refundable_credits", - "description": "Set all values of MA income tax before refundable credits to zero.", - "label": "Abolish MA income tax before refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.ma_income_tax", - "description": "Set all values of MA income tax to zero.", - "label": "Abolish MA income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_gross_income": { - "type": "parameter", - "parameter": "gov.abolitions.ma_gross_income", - "description": "Set all values of MA gross income to zero.", - "label": "Abolish MA gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_part_a_gross_income": { - "type": "parameter", - "parameter": "gov.abolitions.ma_part_a_gross_income", - "description": "Set all values of MA Part A gross income to zero.", - "label": "Abolish MA Part A gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_part_c_gross_income": { - "type": "parameter", - "parameter": "gov.abolitions.ma_part_c_gross_income", - "description": "Set all values of MA Part C gross income to zero.", - "label": "Abolish MA Part C gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_part_b_gross_income": { - "type": "parameter", - "parameter": "gov.abolitions.ma_part_b_gross_income", - "description": "Set all values of MA Part B gross income to zero.", - "label": "Abolish MA Part B gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_dependent_care_credit": { - "type": "parameter", - "parameter": "gov.abolitions.ma_dependent_care_credit", - "description": "Set all values of MA dependent care credit to zero.", - "label": "Abolish MA dependent care credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_child_and_family_credit": { - "type": "parameter", - "parameter": "gov.abolitions.ma_child_and_family_credit", - "description": "Set all values of Massachusetts child and family tax credit to zero.", - "label": "Abolish Massachusetts child and family tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_limited_income_tax_credit": { - "type": "parameter", - "parameter": "gov.abolitions.ma_limited_income_tax_credit", - "description": "Set all values of MA Limited Income Credit to zero.", - "label": "Abolish MA Limited Income Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.ma_eitc", - "description": "Set all values of MA EITC to zero.", - "label": "Abolish MA EITC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_child_and_family_credit_or_dependent_care_credit": { - "type": "parameter", - "parameter": "gov.abolitions.ma_child_and_family_credit_or_dependent_care_credit", - "description": "Set all values of MA dependent or dependent care credit to zero.", - "label": "Abolish MA dependent or dependent care credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_covid_19_essential_employee_premium_pay_program": { - "type": "parameter", - "parameter": "gov.abolitions.ma_covid_19_essential_employee_premium_pay_program", - "description": "Set all values of MA COVID 19 Essential Employee Premium Pay Program to zero.", - "label": "Abolish MA COVID 19 Essential Employee Premium Pay Program", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_scb_total_income": { - "type": "parameter", - "parameter": "gov.abolitions.ma_scb_total_income", - "description": "Set all values of Total income for the MA Senior Circuit Breaker to zero.", - "label": "Abolish Total income for the MA Senior Circuit Breaker", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_senior_circuit_breaker": { - "type": "parameter", - "parameter": "gov.abolitions.ma_senior_circuit_breaker", - "description": "Set all values of MA Senior Circuit Breaker Credit to zero.", - "label": "Abolish MA Senior Circuit Breaker Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_part_a_agi": { - "type": "parameter", - "parameter": "gov.abolitions.ma_part_a_agi", - "description": "Set all values of MA Part A AGI to zero.", - "label": "Abolish MA Part A AGI", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_part_b_agi": { - "type": "parameter", - "parameter": "gov.abolitions.ma_part_b_agi", - "description": "Set all values of MA Part B AGI to zero.", - "label": "Abolish MA Part B AGI", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_agi": { - "type": "parameter", - "parameter": "gov.abolitions.ma_agi", - "description": "Set all values of MA adjusted gross income to zero.", - "label": "Abolish MA adjusted gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_part_c_agi": { - "type": "parameter", - "parameter": "gov.abolitions.ma_part_c_agi", - "description": "Set all values of MA Part C AGI to zero.", - "label": "Abolish MA Part C AGI", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_part_b_taxable_income_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.ma_part_b_taxable_income_exemption", - "description": "Set all values of MA Part B taxable income exemption to zero.", - "label": "Abolish MA Part B taxable income exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_part_a_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.ma_part_a_taxable_income", - "description": "Set all values of MA Part A taxable income to zero.", - "label": "Abolish MA Part A taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_part_a_cg_excess_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.ma_part_a_cg_excess_exemption", - "description": "Set all values of MA Part A (short-term) capital gains excess exemption to zero.", - "label": "Abolish MA Part A (short-term) capital gains excess exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_part_b_excess_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.ma_part_b_excess_exemption", - "description": "Set all values of MA Part B excess exemption to zero.", - "label": "Abolish MA Part B excess exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_part_a_div_excess_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.ma_part_a_div_excess_exemption", - "description": "Set all values of MA Part A dividends excess exemption to zero.", - "label": "Abolish MA Part A dividends excess exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_part_b_taxable_income_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.ma_part_b_taxable_income_deductions", - "description": "Set all values of MA Part B taxable income deductions to zero.", - "label": "Abolish MA Part B taxable income deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_part_a_taxable_capital_gains_income": { - "type": "parameter", - "parameter": "gov.abolitions.ma_part_a_taxable_capital_gains_income", - "description": "Set all values of MA Part A taxable income from short-term capital gains to zero.", - "label": "Abolish MA Part A taxable income from short-term capital gains", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_part_c_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.ma_part_c_taxable_income", - "description": "Set all values of MA Part C taxable income to zero.", - "label": "Abolish MA Part C taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_part_b_taxable_income_before_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.ma_part_b_taxable_income_before_exemption", - "description": "Set all values of MA Part B taxable income before exemption to zero.", - "label": "Abolish MA Part B taxable income before exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_part_b_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.ma_part_b_taxable_income", - "description": "Set all values of MA Part B taxable income to zero.", - "label": "Abolish MA Part B taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_part_a_taxable_dividend_income": { - "type": "parameter", - "parameter": "gov.abolitions.ma_part_a_taxable_dividend_income", - "description": "Set all values of MA Part A taxable income from dividends to zero.", - "label": "Abolish MA Part A taxable income from dividends", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_mbta_tap_charlie_card_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ma_mbta_tap_charlie_card_eligible", - "description": "Set all values of Eligible for the Massachusetts Bay Transportation Authority Transportation Access Pass (TAP) Charlie Card program to zero.", - "label": "Abolish Eligible for the Massachusetts Bay Transportation Authority Transportation Access Pass (TAP) Charlie Card program", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_mbta_senior_charlie_card_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ma_mbta_senior_charlie_card_eligible", - "description": "Set all values of Eligible for the Massachusetts Bay Transportation Authority Senior Charlie Card program to zero.", - "label": "Abolish Eligible for the Massachusetts Bay Transportation Authority Senior Charlie Card program", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_mbta_enrolled_in_applicable_programs": { - "type": "parameter", - "parameter": "gov.abolitions.ma_mbta_enrolled_in_applicable_programs", - "description": "Set all values of Enrolled in applicable programs to receive the Massachusetts Bay Transportation Authority income-eligible reduced fare program to zero.", - "label": "Abolish Enrolled in applicable programs to receive the Massachusetts Bay Transportation Authority income-eligible reduced fare program", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_mbta_income_eligible_reduced_fare_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ma_mbta_income_eligible_reduced_fare_eligible", - "description": "Set all values of Eligible for the Massachusetts Bay Transportation Authority income-eligible reduced fare program to zero.", - "label": "Abolish Eligible for the Massachusetts Bay Transportation Authority income-eligible reduced fare program", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_liheap_benefit_level": { - "type": "parameter", - "parameter": "gov.abolitions.ma_liheap_benefit_level", - "description": "Set all values of Benefit Level for Massachusetts LIHEAP payment to zero.", - "label": "Abolish Benefit Level for Massachusetts LIHEAP payment", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_liheap_state_median_income_threshold": { - "type": "parameter", - "parameter": "gov.abolitions.ma_liheap_state_median_income_threshold", - "description": "Set all values of Massachusetts LIHEAP state median income threshold to zero.", - "label": "Abolish Massachusetts LIHEAP state median income threshold", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_liheap_income": { - "type": "parameter", - "parameter": "gov.abolitions.ma_liheap_income", - "description": "Set all values of Massachusetts LIHEAP income to zero.", - "label": "Abolish Massachusetts LIHEAP income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_liheap_fpg": { - "type": "parameter", - "parameter": "gov.abolitions.ma_liheap_fpg", - "description": "Set all values of Massachusetts LIHEAP federal poverty guideline to zero.", - "label": "Abolish Massachusetts LIHEAP federal poverty guideline", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_liheap_income_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ma_liheap_income_eligible", - "description": "Set all values of Eligible for Massachusetts LIHEAP due to income to zero.", - "label": "Abolish Eligible for Massachusetts LIHEAP due to income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_liheap_eligible_subsidized_housing": { - "type": "parameter", - "parameter": "gov.abolitions.ma_liheap_eligible_subsidized_housing", - "description": "Set all values of Massachusetts LIHEAP eligible subsidized housing to zero.", - "label": "Abolish Massachusetts LIHEAP eligible subsidized housing", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_liheap_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ma_liheap_eligible", - "description": "Set all values of Eligible for the Massachusetts LIHEAP to zero.", - "label": "Abolish Eligible for the Massachusetts LIHEAP", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_liheap_hecs_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ma_liheap_hecs_eligible", - "description": "Set all values of Eligible for Massachusetts LIHEAP High Energy Cost Supplement (HECS) to zero.", - "label": "Abolish Eligible for Massachusetts LIHEAP High Energy Cost Supplement (HECS)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_liheap_hecs_payment": { - "type": "parameter", - "parameter": "gov.abolitions.ma_liheap_hecs_payment", - "description": "Set all values of Massachusetts LIHEAP High Energy Cost Supplement (HECS) payment to zero.", - "label": "Abolish Massachusetts LIHEAP High Energy Cost Supplement (HECS) payment", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_liheap_standard_payment": { - "type": "parameter", - "parameter": "gov.abolitions.ma_liheap_standard_payment", - "description": "Set all values of Massachusetts LIHEAP standard payment to zero.", - "label": "Abolish Massachusetts LIHEAP standard payment", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ma_liheap": { - "type": "parameter", - "parameter": "gov.abolitions.ma_liheap", - "description": "Set all values of Massachusetts LIHEAP payment to zero.", - "label": "Abolish Massachusetts LIHEAP payment", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.mi_taxable_income", - "description": "Set all values of Michigan taxable income to zero.", - "label": "Abolish Michigan taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_household_resources": { - "type": "parameter", - "parameter": "gov.abolitions.mi_household_resources", - "description": "Set all values of Michigan household resources to zero.", - "label": "Abolish Michigan household resources", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.mi_refundable_credits", - "description": "Set all values of Michigan refundable credits to zero.", - "label": "Abolish Michigan refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_income_tax_before_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.mi_income_tax_before_refundable_credits", - "description": "Set all values of Michigan income tax before refundable credits to zero.", - "label": "Abolish Michigan income tax before refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_subtractions": { - "type": "parameter", - "parameter": "gov.abolitions.mi_subtractions", - "description": "Set all values of Michigan taxable income subtractions to zero.", - "label": "Abolish Michigan taxable income subtractions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_withheld_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.mi_withheld_income_tax", - "description": "Set all values of Michigan withheld income tax to zero.", - "label": "Abolish Michigan withheld income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_additions": { - "type": "parameter", - "parameter": "gov.abolitions.mi_additions", - "description": "Set all values of Michigan taxable income additions to zero.", - "label": "Abolish Michigan taxable income additions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_is_senior_for_tax": { - "type": "parameter", - "parameter": "gov.abolitions.mi_is_senior_for_tax", - "description": "Set all values of Michigan filer is a senior to zero.", - "label": "Abolish Michigan filer is a senior", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.mi_income_tax", - "description": "Set all values of Michigan income tax to zero.", - "label": "Abolish Michigan income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_income_tax_before_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.mi_income_tax_before_non_refundable_credits", - "description": "Set all values of Michigan income tax before non-refundable credits to zero.", - "label": "Abolish Michigan income tax before non-refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.mi_eitc", - "description": "Set all values of Michigan Earned Income Tax Credit to zero.", - "label": "Abolish Michigan Earned Income Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_home_heating_credit": { - "type": "parameter", - "parameter": "gov.abolitions.mi_home_heating_credit", - "description": "Set all values of Michigan home heating credit to zero.", - "label": "Abolish Michigan home heating credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_home_heating_credit_eligible_rate": { - "type": "parameter", - "parameter": "gov.abolitions.mi_home_heating_credit_eligible_rate", - "description": "Set all values of Eligible for the Michigan home heating credit to zero.", - "label": "Abolish Eligible for the Michigan home heating credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_alternate_home_heating_credit_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.mi_alternate_home_heating_credit_eligible", - "description": "Set all values of Eligible for the Michigan alternate home heating credit to zero.", - "label": "Abolish Eligible for the Michigan alternate home heating credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_alternate_home_heating_credit": { - "type": "parameter", - "parameter": "gov.abolitions.mi_alternate_home_heating_credit", - "description": "Set all values of Michigan alternate home heating credit amount to zero.", - "label": "Abolish Michigan alternate home heating credit amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_standard_home_heating_credit": { - "type": "parameter", - "parameter": "gov.abolitions.mi_standard_home_heating_credit", - "description": "Set all values of Michigan standard home heating credit amount to zero.", - "label": "Abolish Michigan standard home heating credit amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_standard_home_heating_credit_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.mi_standard_home_heating_credit_eligible", - "description": "Set all values of Eligible for the Michigan home heating standard credit to zero.", - "label": "Abolish Eligible for the Michigan home heating standard credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_homestead_property_tax_credit": { - "type": "parameter", - "parameter": "gov.abolitions.mi_homestead_property_tax_credit", - "description": "Set all values of Michigan homestead property tax credit to zero.", - "label": "Abolish Michigan homestead property tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_allowable_homestead_property_tax_credit": { - "type": "parameter", - "parameter": "gov.abolitions.mi_allowable_homestead_property_tax_credit", - "description": "Set all values of Michigan allowable homestead property tax credit to zero.", - "label": "Abolish Michigan allowable homestead property tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_homestead_property_tax_credit_alternate_senior_amount": { - "type": "parameter", - "parameter": "gov.abolitions.mi_homestead_property_tax_credit_alternate_senior_amount", - "description": "Set all values of Michigan alternate senior renter homestead property tax credit amount to zero.", - "label": "Abolish Michigan alternate senior renter homestead property tax credit amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_homestead_property_tax_credit_countable_property_tax": { - "type": "parameter", - "parameter": "gov.abolitions.mi_homestead_property_tax_credit_countable_property_tax", - "description": "Set all values of Michigan homestead property tax credit countable property tax (including rent equivalent) to zero.", - "label": "Abolish Michigan homestead property tax credit countable property tax (including rent equivalent)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_homestead_property_tax_credit_pre_alternate_senior_amount": { - "type": "parameter", - "parameter": "gov.abolitions.mi_homestead_property_tax_credit_pre_alternate_senior_amount", - "description": "Set all values of Michigan homestead property tax credit per alternate senior credit amount to zero.", - "label": "Abolish Michigan homestead property tax credit per alternate senior credit amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_homestead_property_tax_credit_household_resource_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.mi_homestead_property_tax_credit_household_resource_exemption", - "description": "Set all values of Michigan homestead property tax credit household resource exemption to zero.", - "label": "Abolish Michigan homestead property tax credit household resource exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_homestead_property_tax_credit_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.mi_homestead_property_tax_credit_eligible", - "description": "Set all values of Eligible for the Michigan homestead property tax credit to zero.", - "label": "Abolish Eligible for the Michigan homestead property tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_personal_exemptions": { - "type": "parameter", - "parameter": "gov.abolitions.mi_personal_exemptions", - "description": "Set all values of Michigan personal and stillborn exemptions to zero.", - "label": "Abolish Michigan personal and stillborn exemptions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_disabled_exemption_eligible_person": { - "type": "parameter", - "parameter": "gov.abolitions.mi_disabled_exemption_eligible_person", - "description": "Set all values of Eligible person for the Michigan disabled exemptions to zero.", - "label": "Abolish Eligible person for the Michigan disabled exemptions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_exemptions_count": { - "type": "parameter", - "parameter": "gov.abolitions.mi_exemptions_count", - "description": "Set all values of Michigan exemptions count to zero.", - "label": "Abolish Michigan exemptions count", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_exemptions": { - "type": "parameter", - "parameter": "gov.abolitions.mi_exemptions", - "description": "Set all values of Michigan exemptions to zero.", - "label": "Abolish Michigan exemptions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_standard_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.mi_standard_deduction", - "description": "Set all values of Michigan standard deduction to zero.", - "label": "Abolish Michigan standard deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_standard_deduction_tier_two_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.mi_standard_deduction_tier_two_eligible", - "description": "Set all values of Eligible for the Michigan tier two standard deduction to zero.", - "label": "Abolish Eligible for the Michigan tier two standard deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_standard_deduction_tier_two": { - "type": "parameter", - "parameter": "gov.abolitions.mi_standard_deduction_tier_two", - "description": "Set all values of Michigan tier two standard deduction to zero.", - "label": "Abolish Michigan tier two standard deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_standard_deduction_tier_two_increase_eligible_people": { - "type": "parameter", - "parameter": "gov.abolitions.mi_standard_deduction_tier_two_increase_eligible_people", - "description": "Set all values of Number of eligible people for the Michigan tier two standard deduction increase to zero.", - "label": "Abolish Number of eligible people for the Michigan tier two standard deduction increase", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_standard_deduction_tier_three_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.mi_standard_deduction_tier_three_eligible", - "description": "Set all values of Eligible for the Michigan standard deduction to zero.", - "label": "Abolish Eligible for the Michigan standard deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_standard_deduction_tier_three": { - "type": "parameter", - "parameter": "gov.abolitions.mi_standard_deduction_tier_three", - "description": "Set all values of Michigan tier three standard deduction to zero.", - "label": "Abolish Michigan tier three standard deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_interest_dividends_capital_gains_deduction_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.mi_interest_dividends_capital_gains_deduction_eligible", - "description": "Set all values of Eligible for the Michigan interest dividends capital gains deduction to zero.", - "label": "Abolish Eligible for the Michigan interest dividends capital gains deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_interest_dividends_capital_gains_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.mi_interest_dividends_capital_gains_deduction", - "description": "Set all values of Michigan interest, dividends, and capital gains deduction to zero.", - "label": "Abolish Michigan interest, dividends, and capital gains deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_pension_benefit": { - "type": "parameter", - "parameter": "gov.abolitions.mi_pension_benefit", - "description": "Set all values of Michigan pension benefit to zero.", - "label": "Abolish Michigan pension benefit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_expanded_retirement_benefits_deduction_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.mi_expanded_retirement_benefits_deduction_eligible", - "description": "Set all values of Eligible for the Michigan expanded retirement benefits deduction to zero.", - "label": "Abolish Eligible for the Michigan expanded retirement benefits deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_expanded_retirement_benefits_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.mi_expanded_retirement_benefits_deduction", - "description": "Set all values of Michigan expanded retirement benefits deduction to zero.", - "label": "Abolish Michigan expanded retirement benefits deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_retirement_benefits_deduction_tier_one": { - "type": "parameter", - "parameter": "gov.abolitions.mi_retirement_benefits_deduction_tier_one", - "description": "Set all values of Michigan retirement benefits deduction for tier one to zero.", - "label": "Abolish Michigan retirement benefits deduction for tier one", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_retirement_benefits_deduction_tier_one_amount": { - "type": "parameter", - "parameter": "gov.abolitions.mi_retirement_benefits_deduction_tier_one_amount", - "description": "Set all values of Michigan retirement benefits deduction amount for tier one, regardless of eligiblity to zero.", - "label": "Abolish Michigan retirement benefits deduction amount for tier one, regardless of eligiblity", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_retirement_benefits_deduction_tier_one_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.mi_retirement_benefits_deduction_tier_one_eligible", - "description": "Set all values of Eligible for the Michigan tier one retirement benefits deduction to zero.", - "label": "Abolish Eligible for the Michigan tier one retirement benefits deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_retirement_benefits_deduction_tier_three": { - "type": "parameter", - "parameter": "gov.abolitions.mi_retirement_benefits_deduction_tier_three", - "description": "Set all values of Michigan retirement benefits deduction for tier three to zero.", - "label": "Abolish Michigan retirement benefits deduction for tier three", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_retirement_benefits_deduction_tier_three_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.mi_retirement_benefits_deduction_tier_three_eligible", - "description": "Set all values of Eligible for the Michigan tier three retirement benefits deduction to zero.", - "label": "Abolish Eligible for the Michigan tier three retirement benefits deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_retirement_benefits_deduction_tier_three_ss_exempt_retired_eligible_people": { - "type": "parameter", - "parameter": "gov.abolitions.mi_retirement_benefits_deduction_tier_three_ss_exempt_retired_eligible_people", - "description": "Set all values of Eligible for the Michigan tier three retired retirement benefits deduction to zero.", - "label": "Abolish Eligible for the Michigan tier three retired retirement benefits deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_retirement_benefits_deduction_tier_three_ss_exempt_retired": { - "type": "parameter", - "parameter": "gov.abolitions.mi_retirement_benefits_deduction_tier_three_ss_exempt_retired", - "description": "Set all values of Michigan retired tier three retirement benefits deduction to zero.", - "label": "Abolish Michigan retired tier three retirement benefits deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_retirement_benefits_deduction_tier_three_ss_exempt_not_retired_eligible_people": { - "type": "parameter", - "parameter": "gov.abolitions.mi_retirement_benefits_deduction_tier_three_ss_exempt_not_retired_eligible_people", - "description": "Set all values of Number of eligible people for the Michigan non-retired tier three retirement benefits deduction to zero.", - "label": "Abolish Number of eligible people for the Michigan non-retired tier three retirement benefits deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mi_retirement_benefits_deduction_tier_three_ss_exempt_not_retired": { - "type": "parameter", - "parameter": "gov.abolitions.mi_retirement_benefits_deduction_tier_three_ss_exempt_not_retired", - "description": "Set all values of Michigan non-retired tier three retirement benefits deduction to zero.", - "label": "Abolish Michigan non-retired tier three retirement benefits deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ok_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.ok_income_tax", - "description": "Set all values of Oklahoma income tax to zero.", - "label": "Abolish Oklahoma income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ok_agi_subtractions": { - "type": "parameter", - "parameter": "gov.abolitions.ok_agi_subtractions", - "description": "Set all values of Oklahoma AGI subtractions from federal AGI to zero.", - "label": "Abolish Oklahoma AGI subtractions from federal AGI", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ok_withheld_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.ok_withheld_income_tax", - "description": "Set all values of Oklahoma withheld income tax to zero.", - "label": "Abolish Oklahoma withheld income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ok_agi": { - "type": "parameter", - "parameter": "gov.abolitions.ok_agi", - "description": "Set all values of Oklahoma AGI to zero.", - "label": "Abolish Oklahoma AGI", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ok_income_tax_before_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ok_income_tax_before_credits", - "description": "Set all values of Oklahoma income tax before credits to zero.", - "label": "Abolish Oklahoma income tax before credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ok_use_tax": { - "type": "parameter", - "parameter": "gov.abolitions.ok_use_tax", - "description": "Set all values of Oklahoma use tax to zero.", - "label": "Abolish Oklahoma use tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ok_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.ok_taxable_income", - "description": "Set all values of Oklahoma taxable income to zero.", - "label": "Abolish Oklahoma taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ok_income_tax_before_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ok_income_tax_before_refundable_credits", - "description": "Set all values of Oklahoma income tax before refundable credits to zero.", - "label": "Abolish Oklahoma income tax before refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ok_child_care_child_tax_credit": { - "type": "parameter", - "parameter": "gov.abolitions.ok_child_care_child_tax_credit", - "description": "Set all values of Oklahoma Child Care/Child Tax Credit to zero.", - "label": "Abolish Oklahoma Child Care/Child Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ok_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ok_refundable_credits", - "description": "Set all values of Oklahoma refundable income tax credits to zero.", - "label": "Abolish Oklahoma refundable income tax credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ok_ptc": { - "type": "parameter", - "parameter": "gov.abolitions.ok_ptc", - "description": "Set all values of Oklahoma property tax credit to zero.", - "label": "Abolish Oklahoma property tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ok_gross_income": { - "type": "parameter", - "parameter": "gov.abolitions.ok_gross_income", - "description": "Set all values of Oklahoma gross income used in OK credit calculations to zero.", - "label": "Abolish Oklahoma gross income used in OK credit calculations", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ok_stc": { - "type": "parameter", - "parameter": "gov.abolitions.ok_stc", - "description": "Set all values of Oklahoma sales tax credit to zero.", - "label": "Abolish Oklahoma sales tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ok_nonrefundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ok_nonrefundable_credits", - "description": "Set all values of Oklahoma nonrefundable income tax credits to zero.", - "label": "Abolish Oklahoma nonrefundable income tax credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ok_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.ok_eitc", - "description": "Set all values of Oklahoma EITC to zero.", - "label": "Abolish Oklahoma EITC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ok_federal_eitc_maximum": { - "type": "parameter", - "parameter": "gov.abolitions.ok_federal_eitc_maximum", - "description": "Set all values of Maximum federal EITC for the Oklahoma EITC computation to zero.", - "label": "Abolish Maximum federal EITC for the Oklahoma EITC computation", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ok_federal_eitc_phase_out_start": { - "type": "parameter", - "parameter": "gov.abolitions.ok_federal_eitc_phase_out_start", - "description": "Set all values of Federal EITC phase-out start for the Oklahoma EITC computation to zero.", - "label": "Abolish Federal EITC phase-out start for the Oklahoma EITC computation", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ok_federal_eitc_reduction": { - "type": "parameter", - "parameter": "gov.abolitions.ok_federal_eitc_reduction", - "description": "Set all values of Federal EITC reduction for the Oklahoma EITC computation to zero.", - "label": "Abolish Federal EITC reduction for the Oklahoma EITC computation", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ok_federal_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.ok_federal_eitc", - "description": "Set all values of Federal earned income credit for the Oklahoma EITC computation to zero.", - "label": "Abolish Federal earned income credit for the Oklahoma EITC computation", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ok_federal_eitc_phased_in": { - "type": "parameter", - "parameter": "gov.abolitions.ok_federal_eitc_phased_in", - "description": "Set all values of Federal EITC phase-in amount for the Oklahoma EITC computation to zero.", - "label": "Abolish Federal EITC phase-in amount for the Oklahoma EITC computation", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ok_federal_eitc_phase_in_rate": { - "type": "parameter", - "parameter": "gov.abolitions.ok_federal_eitc_phase_in_rate", - "description": "Set all values of Federal EITC phase-in rate for the Oklahoma EITC computation to zero.", - "label": "Abolish Federal EITC phase-in rate for the Oklahoma EITC computation", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ok_federal_eitc_phase_out_rate": { - "type": "parameter", - "parameter": "gov.abolitions.ok_federal_eitc_phase_out_rate", - "description": "Set all values of Federal EITC phase-out rate for the Oklahoma EITC computation to zero.", - "label": "Abolish Federal EITC phase-out rate for the Oklahoma EITC computation", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ok_federal_eitc_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ok_federal_eitc_eligible", - "description": "Set all values of Eligible for federal EITC for the Oklahoma EITC computation to zero.", - "label": "Abolish Eligible for federal EITC for the Oklahoma EITC computation", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ok_federal_eitc_demographic_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ok_federal_eitc_demographic_eligible", - "description": "Set all values of Meets demographic eligibility for EITC for the Oklahoma EITC computation to zero.", - "label": "Abolish Meets demographic eligibility for EITC for the Oklahoma EITC computation", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ok_federal_eitc_investment_income_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ok_federal_eitc_investment_income_eligible", - "description": "Set all values of Meets investment income eligibility for EITC to zero.", - "label": "Abolish Meets investment income eligibility for EITC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ok_exemptions": { - "type": "parameter", - "parameter": "gov.abolitions.ok_exemptions", - "description": "Set all values of Oklahoma exemptions amount to zero.", - "label": "Abolish Oklahoma exemptions amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ok_count_exemptions": { - "type": "parameter", - "parameter": "gov.abolitions.ok_count_exemptions", - "description": "Set all values of Count of Oklahoma exemptions to zero.", - "label": "Abolish Count of Oklahoma exemptions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ok_military_retirement_exclusion": { - "type": "parameter", - "parameter": "gov.abolitions.ok_military_retirement_exclusion", - "description": "Set all values of Oklahoma military retirement exclusion to zero.", - "label": "Abolish Oklahoma military retirement exclusion", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ok_pension_subtraction": { - "type": "parameter", - "parameter": "gov.abolitions.ok_pension_subtraction", - "description": "Set all values of Oklahoma pension subtraction to zero.", - "label": "Abolish Oklahoma pension subtraction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ok_itemized_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.ok_itemized_deductions", - "description": "Set all values of Oklahoma itemized deductions to zero.", - "label": "Abolish Oklahoma itemized deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ok_standard_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.ok_standard_deduction", - "description": "Set all values of Oklahoma standard deduction to zero.", - "label": "Abolish Oklahoma standard deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.oh_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.oh_taxable_income", - "description": "Set all values of Ohio taxable income to zero.", - "label": "Abolish Ohio taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.oh_modified_agi": { - "type": "parameter", - "parameter": "gov.abolitions.oh_modified_agi", - "description": "Set all values of Ohio modified adjusted gross income to zero.", - "label": "Abolish Ohio modified adjusted gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.oh_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.oh_non_refundable_credits", - "description": "Set all values of Ohio non-refundable credits to zero.", - "label": "Abolish Ohio non-refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.oh_income_tax_before_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.oh_income_tax_before_non_refundable_credits", - "description": "Set all values of Ohio income tax before credits to zero.", - "label": "Abolish Ohio income tax before credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.oh_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.oh_income_tax", - "description": "Set all values of Ohio income tax to zero.", - "label": "Abolish Ohio income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.oh_income_tax_before_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.oh_income_tax_before_refundable_credits", - "description": "Set all values of Ohio income tax before refundable credits to zero.", - "label": "Abolish Ohio income tax before refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.oh_income_tax_exempt": { - "type": "parameter", - "parameter": "gov.abolitions.oh_income_tax_exempt", - "description": "Set all values of Ohio income tax exempt to zero.", - "label": "Abolish Ohio income tax exempt", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.oh_withheld_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.oh_withheld_income_tax", - "description": "Set all values of Ohio withheld income tax to zero.", - "label": "Abolish Ohio withheld income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.oh_exemption_credit": { - "type": "parameter", - "parameter": "gov.abolitions.oh_exemption_credit", - "description": "Set all values of Ohio Exemption Credit to zero.", - "label": "Abolish Ohio Exemption Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.oh_senior_citizen_credit": { - "type": "parameter", - "parameter": "gov.abolitions.oh_senior_citizen_credit", - "description": "Set all values of Ohio senior citizen credit to zero.", - "label": "Abolish Ohio senior citizen credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.oh_non_public_school_credits": { - "type": "parameter", - "parameter": "gov.abolitions.oh_non_public_school_credits", - "description": "Set all values of Ohio Nonchartered, Nonpublic, School Tuition Credit AGI Credit to zero.", - "label": "Abolish Ohio Nonchartered, Nonpublic, School Tuition Credit AGI Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.oh_adoption_credit": { - "type": "parameter", - "parameter": "gov.abolitions.oh_adoption_credit", - "description": "Set all values of Ohio adoption credit to zero.", - "label": "Abolish Ohio adoption credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.oh_cdcc": { - "type": "parameter", - "parameter": "gov.abolitions.oh_cdcc", - "description": "Set all values of Ohio child and dependent care credit to zero.", - "label": "Abolish Ohio child and dependent care credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.oh_adoption_credit_person": { - "type": "parameter", - "parameter": "gov.abolitions.oh_adoption_credit_person", - "description": "Set all values of Ohio adoption credit for each person to zero.", - "label": "Abolish Ohio adoption credit for each person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.oh_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.oh_eitc", - "description": "Set all values of Ohio Earned Income Credit to zero.", - "label": "Abolish Ohio Earned Income Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.oh_lump_sum_distribution_credit_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.oh_lump_sum_distribution_credit_eligible", - "description": "Set all values of Eligible for the Ohio lump sum distribution credit to zero.", - "label": "Abolish Eligible for the Ohio lump sum distribution credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.oh_lump_sum_distribution_credit": { - "type": "parameter", - "parameter": "gov.abolitions.oh_lump_sum_distribution_credit", - "description": "Set all values of Ohio lump sum distribution credit to zero.", - "label": "Abolish Ohio lump sum distribution credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.oh_lump_sum_distribution_credit_person": { - "type": "parameter", - "parameter": "gov.abolitions.oh_lump_sum_distribution_credit_person", - "description": "Set all values of Ohio lump sum distribution credit to zero.", - "label": "Abolish Ohio lump sum distribution credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.oh_lump_sum_distribution_credit_eligible_person": { - "type": "parameter", - "parameter": "gov.abolitions.oh_lump_sum_distribution_credit_eligible_person", - "description": "Set all values of Eligible person for the Ohio lump sum distribution credit to zero.", - "label": "Abolish Eligible person for the Ohio lump sum distribution credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.oh_partial_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.oh_partial_non_refundable_credits", - "description": "Set all values of Ohio non-refundable credits prior to the joint filing credit to zero.", - "label": "Abolish Ohio non-refundable credits prior to the joint filing credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.oh_tax_before_joint_filing_credit": { - "type": "parameter", - "parameter": "gov.abolitions.oh_tax_before_joint_filing_credit", - "description": "Set all values of Ohio tax liability before the joint filing credit to zero.", - "label": "Abolish Ohio tax liability before the joint filing credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.oh_joint_filing_credit": { - "type": "parameter", - "parameter": "gov.abolitions.oh_joint_filing_credit", - "description": "Set all values of Ohio joint filing credit to zero.", - "label": "Abolish Ohio joint filing credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.oh_joint_filing_credit_agi_subtractions": { - "type": "parameter", - "parameter": "gov.abolitions.oh_joint_filing_credit_agi_subtractions", - "description": "Set all values of Ohio qualifying income for the joint filing credit to zero.", - "label": "Abolish Ohio qualifying income for the joint filing credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.oh_joint_filing_credit_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.oh_joint_filing_credit_eligible", - "description": "Set all values of Eligible for the Ohio joint filing credit to zero.", - "label": "Abolish Eligible for the Ohio joint filing credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.oh_joint_filing_credit_qualifying_income": { - "type": "parameter", - "parameter": "gov.abolitions.oh_joint_filing_credit_qualifying_income", - "description": "Set all values of Ohio qualifying income for the joint filing credit to zero.", - "label": "Abolish Ohio qualifying income for the joint filing credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.oh_retirement_credit": { - "type": "parameter", - "parameter": "gov.abolitions.oh_retirement_credit", - "description": "Set all values of Ohio Retirement Income Credit to zero.", - "label": "Abolish Ohio Retirement Income Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.oh_pension_based_retirement_income_credit": { - "type": "parameter", - "parameter": "gov.abolitions.oh_pension_based_retirement_income_credit", - "description": "Set all values of Ohio pension based retirement income credit to zero.", - "label": "Abolish Ohio pension based retirement income credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.oh_pension_based_retirement_income_credit_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.oh_pension_based_retirement_income_credit_eligible", - "description": "Set all values of Eligible for the Ohio pension based retirement income credit to zero.", - "label": "Abolish Eligible for the Ohio pension based retirement income credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.oh_lump_sum_retirement_credit_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.oh_lump_sum_retirement_credit_eligible", - "description": "Set all values of Eligible for the Ohio lump sum retirement income credit to zero.", - "label": "Abolish Eligible for the Ohio lump sum retirement income credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.oh_lump_sum_retirement_credit": { - "type": "parameter", - "parameter": "gov.abolitions.oh_lump_sum_retirement_credit", - "description": "Set all values of Ohio Lump Sum Retirement Income Credit to zero.", - "label": "Abolish Ohio Lump Sum Retirement Income Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.oh_personal_exemptions_eligible_person": { - "type": "parameter", - "parameter": "gov.abolitions.oh_personal_exemptions_eligible_person", - "description": "Set all values of Eligible person for the Ohio Exemption Credit to zero.", - "label": "Abolish Eligible person for the Ohio Exemption Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.oh_personal_exemptions": { - "type": "parameter", - "parameter": "gov.abolitions.oh_personal_exemptions", - "description": "Set all values of Ohio personal exemptions to zero.", - "label": "Abolish Ohio personal exemptions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.oh_agi": { - "type": "parameter", - "parameter": "gov.abolitions.oh_agi", - "description": "Set all values of Ohio adjusted gross income to zero.", - "label": "Abolish Ohio adjusted gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.oh_agi_person": { - "type": "parameter", - "parameter": "gov.abolitions.oh_agi_person", - "description": "Set all values of Ohio adjusted gross income to zero.", - "label": "Abolish Ohio adjusted gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.oh_additions": { - "type": "parameter", - "parameter": "gov.abolitions.oh_additions", - "description": "Set all values of Ohio additions to zero.", - "label": "Abolish Ohio additions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.oh_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.oh_deductions", - "description": "Set all values of Ohio deductions to zero.", - "label": "Abolish Ohio deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.oh_unreimbursed_medical_care_expense_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.oh_unreimbursed_medical_care_expense_deduction", - "description": "Set all values of Ohio unreimbursed medical and health care expense deduction to zero.", - "label": "Abolish Ohio unreimbursed medical and health care expense deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.oh_unreimbursed_medical_care_expense_deduction_person": { - "type": "parameter", - "parameter": "gov.abolitions.oh_unreimbursed_medical_care_expense_deduction_person", - "description": "Set all values of Ohio unreimbursed medical and health care expense deduction to zero.", - "label": "Abolish Ohio unreimbursed medical and health care expense deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.oh_uninsured_unreimbursed_medical_care_expenses": { - "type": "parameter", - "parameter": "gov.abolitions.oh_uninsured_unreimbursed_medical_care_expenses", - "description": "Set all values of Ohio unreimbursed medical and health care expense deduction for uninsured expenses to zero.", - "label": "Abolish Ohio unreimbursed medical and health care expense deduction for uninsured expenses", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.oh_insured_unreimbursed_medical_care_expenses": { - "type": "parameter", - "parameter": "gov.abolitions.oh_insured_unreimbursed_medical_care_expenses", - "description": "Set all values of Ohio insured unreimbursed medical and health care expense deduction to zero.", - "label": "Abolish Ohio insured unreimbursed medical and health care expense deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.oh_insured_unreimbursed_medical_care_expenses_person": { - "type": "parameter", - "parameter": "gov.abolitions.oh_insured_unreimbursed_medical_care_expenses_person", - "description": "Set all values of Ohio insured unreimbursed medical and health care expense deduction for each person to zero.", - "label": "Abolish Ohio insured unreimbursed medical and health care expense deduction for each person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.oh_insured_unreimbursed_medical_care_expense_amount": { - "type": "parameter", - "parameter": "gov.abolitions.oh_insured_unreimbursed_medical_care_expense_amount", - "description": "Set all values of Ohio insured unreimbursed medical and health care expense amount to zero.", - "label": "Abolish Ohio insured unreimbursed medical and health care expense amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.oh_529_plan_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.oh_529_plan_deduction", - "description": "Set all values of Ohio deduction for contributions to 529 plans to zero.", - "label": "Abolish Ohio deduction for contributions to 529 plans", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.oh_529_plan_deduction_person": { - "type": "parameter", - "parameter": "gov.abolitions.oh_529_plan_deduction_person", - "description": "Set all values of Ohio deduction for contributions to 529 plans to zero.", - "label": "Abolish Ohio deduction for contributions to 529 plans", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_cta_benefit": { - "type": "parameter", - "parameter": "gov.abolitions.il_cta_benefit", - "description": "Set all values of Illinois Chicago Transit Authority benefit amount to zero.", - "label": "Abolish Illinois Chicago Transit Authority benefit amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_cta_children_reduced_fare_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.il_cta_children_reduced_fare_eligible", - "description": "Set all values of Eligible for the Illinois Chicago Transit Authority children reduced fare to zero.", - "label": "Abolish Eligible for the Illinois Chicago Transit Authority children reduced fare", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_cta_reduced_fare_benefit": { - "type": "parameter", - "parameter": "gov.abolitions.il_cta_reduced_fare_benefit", - "description": "Set all values of Illinois Chicago Transit Authority Reduced Fare Program benefit to zero.", - "label": "Abolish Illinois Chicago Transit Authority Reduced Fare Program benefit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_cta_reduced_fare_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.il_cta_reduced_fare_eligible", - "description": "Set all values of Eligible for the Illinois Chicago Transit Authority Reduced Fare Program to zero.", - "label": "Abolish Eligible for the Illinois Chicago Transit Authority Reduced Fare Program", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_cta_rta_reduced_fare_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.il_cta_rta_reduced_fare_eligible", - "description": "Set all values of Eligible for the Illinois Chicago Transit Authority RTA reduced fare to zero.", - "label": "Abolish Eligible for the Illinois Chicago Transit Authority RTA reduced fare", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_cta_student_reduced_fare_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.il_cta_student_reduced_fare_eligible", - "description": "Set all values of Eligible for the Illinois Chicago Transit Authority student reduced fare to zero.", - "label": "Abolish Eligible for the Illinois Chicago Transit Authority student reduced fare", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_cta_military_service_pass_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.il_cta_military_service_pass_eligible", - "description": "Set all values of Eligible for the Illinois Chicago Transit Authority military service pass to zero.", - "label": "Abolish Eligible for the Illinois Chicago Transit Authority military service pass", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_cta_free_ride_benefit": { - "type": "parameter", - "parameter": "gov.abolitions.il_cta_free_ride_benefit", - "description": "Set all values of Illinois Chicago Transit Authority Free Ride Program benefit to zero.", - "label": "Abolish Illinois Chicago Transit Authority Free Ride Program benefit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_cta_free_ride_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.il_cta_free_ride_eligible", - "description": "Set all values of Eligible for the Illinois Chicago Transit Authority Free Ride Program to zero.", - "label": "Abolish Eligible for the Illinois Chicago Transit Authority Free Ride Program", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_bap_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.il_bap_eligible", - "description": "Set all values of Eligible person for the Illinois Chicago Department of Aging Benefit Access Program (BAP) to zero.", - "label": "Abolish Eligible person for the Illinois Chicago Department of Aging Benefit Access Program (BAP)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_income_tax_before_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.il_income_tax_before_non_refundable_credits", - "description": "Set all values of IL income tax before credits to zero.", - "label": "Abolish IL income tax before credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_income_tax_before_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.il_income_tax_before_refundable_credits", - "description": "Set all values of Illinois income tax before refundable credits to zero.", - "label": "Abolish Illinois income tax before refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.il_taxable_income", - "description": "Set all values of IL taxable income to zero.", - "label": "Abolish IL taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.il_income_tax", - "description": "Set all values of Illinois income tax to zero.", - "label": "Abolish Illinois income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_use_tax": { - "type": "parameter", - "parameter": "gov.abolitions.il_use_tax", - "description": "Set all values of IL use tax to zero.", - "label": "Abolish IL use tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_total_tax": { - "type": "parameter", - "parameter": "gov.abolitions.il_total_tax", - "description": "Set all values of Illinois total tax to zero.", - "label": "Abolish Illinois total tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_withheld_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.il_withheld_income_tax", - "description": "Set all values of Illinois withheld income tax to zero.", - "label": "Abolish Illinois withheld income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.il_eitc", - "description": "Set all values of IL EITC to zero.", - "label": "Abolish IL EITC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_ctc": { - "type": "parameter", - "parameter": "gov.abolitions.il_ctc", - "description": "Set all values of Illinois Child Tax Credit to zero.", - "label": "Abolish Illinois Child Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_nonrefundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.il_nonrefundable_credits", - "description": "Set all values of Illinois non-refundable credits to zero.", - "label": "Abolish Illinois non-refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_k12_education_expense_credit": { - "type": "parameter", - "parameter": "gov.abolitions.il_k12_education_expense_credit", - "description": "Set all values of Illinois K-12 Education Expense Credit to zero.", - "label": "Abolish Illinois K-12 Education Expense Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_property_tax_credit": { - "type": "parameter", - "parameter": "gov.abolitions.il_property_tax_credit", - "description": "Set all values of Illinois Property Tax Credit to zero.", - "label": "Abolish Illinois Property Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.il_refundable_credits", - "description": "Set all values of Illinois refundable credits to zero.", - "label": "Abolish Illinois refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_total_exemptions": { - "type": "parameter", - "parameter": "gov.abolitions.il_total_exemptions", - "description": "Set all values of IL total exemption allowance to zero.", - "label": "Abolish IL total exemption allowance", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_dependent_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.il_dependent_exemption", - "description": "Set all values of Illinois dependent exemption to zero.", - "label": "Abolish Illinois dependent exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_personal_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.il_personal_exemption", - "description": "Set all values of Illinois personal exemption amount to zero.", - "label": "Abolish Illinois personal exemption amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_aged_blind_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.il_aged_blind_exemption", - "description": "Set all values of IL aged and blind exemption to zero.", - "label": "Abolish IL aged and blind exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_is_exemption_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.il_is_exemption_eligible", - "description": "Set all values of Whether this tax unit is eligible for any exemptions to zero.", - "label": "Abolish Whether this tax unit is eligible for any exemptions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_base_income_additions": { - "type": "parameter", - "parameter": "gov.abolitions.il_base_income_additions", - "description": "Set all values of IL base income additions to zero.", - "label": "Abolish IL base income additions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_base_income_subtractions": { - "type": "parameter", - "parameter": "gov.abolitions.il_base_income_subtractions", - "description": "Set all values of IL base income subtractions to zero.", - "label": "Abolish IL base income subtractions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_base_income": { - "type": "parameter", - "parameter": "gov.abolitions.il_base_income", - "description": "Set all values of IL base income to zero.", - "label": "Abolish IL base income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_aabd": { - "type": "parameter", - "parameter": "gov.abolitions.il_aabd", - "description": "Set all values of Illinois Aid to the Aged, Blind or Disabled (AABD) cash benefit to zero.", - "label": "Abolish Illinois Aid to the Aged, Blind or Disabled (AABD) cash benefit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_aabd_person": { - "type": "parameter", - "parameter": "gov.abolitions.il_aabd_person", - "description": "Set all values of Illinois Aid to the Aged, Blind or Disabled (AABD) cash benefit per person to zero.", - "label": "Abolish Illinois Aid to the Aged, Blind or Disabled (AABD) cash benefit per person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_aabd_countable_vehicle_value": { - "type": "parameter", - "parameter": "gov.abolitions.il_aabd_countable_vehicle_value", - "description": "Set all values of Illinois Aid to the Aged, Blind or Disabled (AABD) countable vehicles value to zero.", - "label": "Abolish Illinois Aid to the Aged, Blind or Disabled (AABD) countable vehicles value", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_aabd_countable_assets": { - "type": "parameter", - "parameter": "gov.abolitions.il_aabd_countable_assets", - "description": "Set all values of Illinois Aid to the Aged, Blind or Disabled (AABD) countable assets to zero.", - "label": "Abolish Illinois Aid to the Aged, Blind or Disabled (AABD) countable assets", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_aabd_asset_value_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.il_aabd_asset_value_eligible", - "description": "Set all values of Eligible for Illinois Aid to the Aged, Blind or Disabled (AABD) due to asset to zero.", - "label": "Abolish Eligible for Illinois Aid to the Aged, Blind or Disabled (AABD) due to asset", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_aabd_gross_unearned_income": { - "type": "parameter", - "parameter": "gov.abolitions.il_aabd_gross_unearned_income", - "description": "Set all values of Illinois Aid to the Aged, Blind or Disabled (AABD) gross unearned income to zero.", - "label": "Abolish Illinois Aid to the Aged, Blind or Disabled (AABD) gross unearned income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_aabd_flat_exemption_excess_over_unearned_income": { - "type": "parameter", - "parameter": "gov.abolitions.il_aabd_flat_exemption_excess_over_unearned_income", - "description": "Set all values of Illinois Aid to the Aged, Blind or Disabled (AABD) flat exemption excess over unearned income to zero.", - "label": "Abolish Illinois Aid to the Aged, Blind or Disabled (AABD) flat exemption excess over unearned income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_aabd_countable_income": { - "type": "parameter", - "parameter": "gov.abolitions.il_aabd_countable_income", - "description": "Set all values of Illinois Aid to the Aged, Blind or Disabled (AABD) countable income to zero.", - "label": "Abolish Illinois Aid to the Aged, Blind or Disabled (AABD) countable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_aabd_countable_unearned_income": { - "type": "parameter", - "parameter": "gov.abolitions.il_aabd_countable_unearned_income", - "description": "Set all values of Illinois Aid to the Aged, Blind or Disabled (AABD) countable unearned income to zero.", - "label": "Abolish Illinois Aid to the Aged, Blind or Disabled (AABD) countable unearned income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_aabd_expense_exemption_person": { - "type": "parameter", - "parameter": "gov.abolitions.il_aabd_expense_exemption_person", - "description": "Set all values of Illinois Aid to the Aged, Blind or Disabled (AABD) expense exemption per person to zero.", - "label": "Abolish Illinois Aid to the Aged, Blind or Disabled (AABD) expense exemption per person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_aabd_child_care_expense_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.il_aabd_child_care_expense_exemption", - "description": "Set all values of Illinois Aid to the Aged, Blind or Disabled (AABD) childcare expense exemption to zero.", - "label": "Abolish Illinois Aid to the Aged, Blind or Disabled (AABD) childcare expense exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_aabd_gross_earned_income": { - "type": "parameter", - "parameter": "gov.abolitions.il_aabd_gross_earned_income", - "description": "Set all values of Illinois Aid to the Aged, Blind or Disabled (AABD) gross earned income to zero.", - "label": "Abolish Illinois Aid to the Aged, Blind or Disabled (AABD) gross earned income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_aabd_earned_income_after_exemption_person": { - "type": "parameter", - "parameter": "gov.abolitions.il_aabd_earned_income_after_exemption_person", - "description": "Set all values of Illinois Aid to the Aged, Blind or Disabled (AABD) earned income after exemption per person to zero.", - "label": "Abolish Illinois Aid to the Aged, Blind or Disabled (AABD) earned income after exemption per person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_aabd_aged_blind_disabled_person": { - "type": "parameter", - "parameter": "gov.abolitions.il_aabd_aged_blind_disabled_person", - "description": "Set all values of Aged, blind, or disabled person for Illinois Aid to the Aged, Blind or Disabled (AABD) to zero.", - "label": "Abolish Aged, blind, or disabled person for Illinois Aid to the Aged, Blind or Disabled (AABD)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_aabd_eligible_person": { - "type": "parameter", - "parameter": "gov.abolitions.il_aabd_eligible_person", - "description": "Set all values of Eligible person for Illinois Aid to the Aged, Blind or Disabled (AABD) to zero.", - "label": "Abolish Eligible person for Illinois Aid to the Aged, Blind or Disabled (AABD)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_aabd_immigration_status_eligible_person": { - "type": "parameter", - "parameter": "gov.abolitions.il_aabd_immigration_status_eligible_person", - "description": "Set all values of Eligible person for Illinois Aid to the Aged, Blind or Disabled (AABD) based on immigration status to zero.", - "label": "Abolish Eligible person for Illinois Aid to the Aged, Blind or Disabled (AABD) based on immigration status", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_aabd_financial_eligible_person": { - "type": "parameter", - "parameter": "gov.abolitions.il_aabd_financial_eligible_person", - "description": "Set all values of Illinois Aid to the Aged, Blind or Disabled (AABD) eligible person due to financial criteria to zero.", - "label": "Abolish Illinois Aid to the Aged, Blind or Disabled (AABD) eligible person due to financial criteria", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_aabd_non_financial_eligible_person": { - "type": "parameter", - "parameter": "gov.abolitions.il_aabd_non_financial_eligible_person", - "description": "Set all values of Eligible person for Illinois Aid to the Aged, Blind or Disabled (AABD) to zero.", - "label": "Abolish Eligible person for Illinois Aid to the Aged, Blind or Disabled (AABD)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_aabd_need_standard_person": { - "type": "parameter", - "parameter": "gov.abolitions.il_aabd_need_standard_person", - "description": "Set all values of Illinois Aid to the Aged, Blind or Disabled (AABD) need standard for each person to zero.", - "label": "Abolish Illinois Aid to the Aged, Blind or Disabled (AABD) need standard for each person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_aabd_grant_amount": { - "type": "parameter", - "parameter": "gov.abolitions.il_aabd_grant_amount", - "description": "Set all values of Illinois Aid to the Aged, Blind or Disabled (AABD) grant amount to zero.", - "label": "Abolish Illinois Aid to the Aged, Blind or Disabled (AABD) grant amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_aabd_personal_allowance": { - "type": "parameter", - "parameter": "gov.abolitions.il_aabd_personal_allowance", - "description": "Set all values of Illinois Aid to the Aged, Blind or Disabled (AABD) personal allowance to zero.", - "label": "Abolish Illinois Aid to the Aged, Blind or Disabled (AABD) personal allowance", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_aabd_utility_allowance": { - "type": "parameter", - "parameter": "gov.abolitions.il_aabd_utility_allowance", - "description": "Set all values of Illinois Aid to the Aged, Blind or Disabled (AABD) utility allowance to zero.", - "label": "Abolish Illinois Aid to the Aged, Blind or Disabled (AABD) utility allowance", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_aabd_utility_allowance_person": { - "type": "parameter", - "parameter": "gov.abolitions.il_aabd_utility_allowance_person", - "description": "Set all values of Illinois Aid to the Aged, Blind or Disabled (AABD) utility allowance per person to zero.", - "label": "Abolish Illinois Aid to the Aged, Blind or Disabled (AABD) utility allowance per person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_aabd_shelter_allowance": { - "type": "parameter", - "parameter": "gov.abolitions.il_aabd_shelter_allowance", - "description": "Set all values of Illinois Aid to the Aged, Blind or Disabled (AABD) shelter allowance to zero.", - "label": "Abolish Illinois Aid to the Aged, Blind or Disabled (AABD) shelter allowance", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_ccap_countable_income": { - "type": "parameter", - "parameter": "gov.abolitions.il_ccap_countable_income", - "description": "Set all values of Illinois Child Care Assistance Program (CCAP) countable income to zero.", - "label": "Abolish Illinois Child Care Assistance Program (CCAP) countable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_ccap_parent_meets_working_requirements": { - "type": "parameter", - "parameter": "gov.abolitions.il_ccap_parent_meets_working_requirements", - "description": "Set all values of Parent meets Illinois Child Care Assistance Program (CCAP) working requirements to zero.", - "label": "Abolish Parent meets Illinois Child Care Assistance Program (CCAP) working requirements", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_ccap_income_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.il_ccap_income_eligible", - "description": "Set all values of Eligible for Illinois Child Care Assistance Program (CCAP) due to income to zero.", - "label": "Abolish Eligible for Illinois Child Care Assistance Program (CCAP) due to income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_ccap_eligible_child": { - "type": "parameter", - "parameter": "gov.abolitions.il_ccap_eligible_child", - "description": "Set all values of Eligible child for Illinois Child Care Assistance Program (CCAP) to zero.", - "label": "Abolish Eligible child for Illinois Child Care Assistance Program (CCAP)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_ccap_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.il_ccap_eligible", - "description": "Set all values of Eligible for Illinois Child Care Assistance Program (CCAP) to zero.", - "label": "Abolish Eligible for Illinois Child Care Assistance Program (CCAP)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_ccap_immigration_status_eligible_person": { - "type": "parameter", - "parameter": "gov.abolitions.il_ccap_immigration_status_eligible_person", - "description": "Set all values of Eligible person for Illinois Child Care Assistance Program (CCAP) based on immigration status to zero.", - "label": "Abolish Eligible person for Illinois Child Care Assistance Program (CCAP) based on immigration status", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_tanf_payment_level_for_grant_calculation": { - "type": "parameter", - "parameter": "gov.abolitions.il_tanf_payment_level_for_grant_calculation", - "description": "Set all values of Illinois Temporary Assistance for Needy Families (TANF) payment level for grant calculation to zero.", - "label": "Abolish Illinois Temporary Assistance for Needy Families (TANF) payment level for grant calculation", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_tanf_payment_level_for_initial_eligibility": { - "type": "parameter", - "parameter": "gov.abolitions.il_tanf_payment_level_for_initial_eligibility", - "description": "Set all values of Illinois Temporary Assistance for Needy Families (TANF) payment level for initial eligibility to zero.", - "label": "Abolish Illinois Temporary Assistance for Needy Families (TANF) payment level for initial eligibility", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_tanf": { - "type": "parameter", - "parameter": "gov.abolitions.il_tanf", - "description": "Set all values of Illinois Temporary Assistance for Needy Families (TANF) to zero.", - "label": "Abolish Illinois Temporary Assistance for Needy Families (TANF)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_tanf_countable_income_for_initial_eligibility": { - "type": "parameter", - "parameter": "gov.abolitions.il_tanf_countable_income_for_initial_eligibility", - "description": "Set all values of Illinois Temporary Assistance for Needy Families (TANF) countable income at application to zero.", - "label": "Abolish Illinois Temporary Assistance for Needy Families (TANF) countable income at application", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_tanf_countable_income_for_grant_calculation": { - "type": "parameter", - "parameter": "gov.abolitions.il_tanf_countable_income_for_grant_calculation", - "description": "Set all values of Illinois Temporary Assistance for Needy Families (TANF) countable income for grant calculation to zero.", - "label": "Abolish Illinois Temporary Assistance for Needy Families (TANF) countable income for grant calculation", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_tanf_countable_unearned_income": { - "type": "parameter", - "parameter": "gov.abolitions.il_tanf_countable_unearned_income", - "description": "Set all values of Illinois Temporary Assistance for Needy Families (TANF) countable unearned income to zero.", - "label": "Abolish Illinois Temporary Assistance for Needy Families (TANF) countable unearned income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_tanf_gross_unearned_income": { - "type": "parameter", - "parameter": "gov.abolitions.il_tanf_gross_unearned_income", - "description": "Set all values of Illinois Temporary Assistance for Needy Families (TANF) gross unearned income to zero.", - "label": "Abolish Illinois Temporary Assistance for Needy Families (TANF) gross unearned income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_tanf_countable_earned_income_for_grant_calculation": { - "type": "parameter", - "parameter": "gov.abolitions.il_tanf_countable_earned_income_for_grant_calculation", - "description": "Set all values of Illinois Temporary Assistance for Needy Families (TANF) countable earned income for grant calculation to zero.", - "label": "Abolish Illinois Temporary Assistance for Needy Families (TANF) countable earned income for grant calculation", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_tanf_countable_earned_income_for_initial_eligibility": { - "type": "parameter", - "parameter": "gov.abolitions.il_tanf_countable_earned_income_for_initial_eligibility", - "description": "Set all values of Illinois Temporary Assistance for Needy Families (TANF) countable earned income for initial eligibility to zero.", - "label": "Abolish Illinois Temporary Assistance for Needy Families (TANF) countable earned income for initial eligibility", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_tanf_countable_gross_earned_income": { - "type": "parameter", - "parameter": "gov.abolitions.il_tanf_countable_gross_earned_income", - "description": "Set all values of Illinois Temporary Assistance for Needy Families (TANF) countable gross earned income to zero.", - "label": "Abolish Illinois Temporary Assistance for Needy Families (TANF) countable gross earned income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_tanf_gross_earned_income": { - "type": "parameter", - "parameter": "gov.abolitions.il_tanf_gross_earned_income", - "description": "Set all values of Illinois Temporary Assistance for Needy Families (TANF) gross earned income to zero.", - "label": "Abolish Illinois Temporary Assistance for Needy Families (TANF) gross earned income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_tanf_initial_employment_deduction_person": { - "type": "parameter", - "parameter": "gov.abolitions.il_tanf_initial_employment_deduction_person", - "description": "Set all values of Illinois Temporary Assistance for Needy Families (TANF) initial employment deduction per person to zero.", - "label": "Abolish Illinois Temporary Assistance for Needy Families (TANF) initial employment deduction per person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_tanf_childcare_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.il_tanf_childcare_deduction", - "description": "Set all values of Illinois Temporary Assistance for Needy Families (TANF) child care deduction to zero.", - "label": "Abolish Illinois Temporary Assistance for Needy Families (TANF) child care deduction ", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_tanf_payment_eligible_requirements": { - "type": "parameter", - "parameter": "gov.abolitions.il_tanf_payment_eligible_requirements", - "description": "Set all values of Eligible requirements for Illinois Temporary Assistance for Needy Families (TANF) payment to zero.", - "label": "Abolish Eligible requirements for Illinois Temporary Assistance for Needy Families (TANF) payment", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_tanf_assistance_unit_size": { - "type": "parameter", - "parameter": "gov.abolitions.il_tanf_assistance_unit_size", - "description": "Set all values of Illinois Temporary Assistance for Needy Families (TANF) assistance unit size to zero.", - "label": "Abolish Illinois Temporary Assistance for Needy Families (TANF) assistance unit size", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_tanf_assistance_unit_fpg": { - "type": "parameter", - "parameter": "gov.abolitions.il_tanf_assistance_unit_fpg", - "description": "Set all values of Illinois TANF assistance unit's federal poverty guideline to zero.", - "label": "Abolish Illinois TANF assistance unit's federal poverty guideline", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_tanf_payment_eligible_parent": { - "type": "parameter", - "parameter": "gov.abolitions.il_tanf_payment_eligible_parent", - "description": "Set all values of Eligible parent for Illinois Temporary Assistance for Needy Families (TANF) payment to zero.", - "label": "Abolish Eligible parent for Illinois Temporary Assistance for Needy Families (TANF) payment", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_tanf_payment_eligible_child": { - "type": "parameter", - "parameter": "gov.abolitions.il_tanf_payment_eligible_child", - "description": "Set all values of Eligible child for Illinois Temporary Assistance for Needy Families (TANF) payment to zero.", - "label": "Abolish Eligible child for Illinois Temporary Assistance for Needy Families (TANF) payment", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_tanf_immigration_status_eligible_person": { - "type": "parameter", - "parameter": "gov.abolitions.il_tanf_immigration_status_eligible_person", - "description": "Set all values of Eligible person for the Illinois TANF based on immigration status to zero.", - "label": "Abolish Eligible person for the Illinois TANF based on immigration status", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_tanf_non_financial_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.il_tanf_non_financial_eligible", - "description": "Set all values of Eligible for Illinois Temporary Assistance for Needy Families (TANF) due to non financial requirements to zero.", - "label": "Abolish Eligible for Illinois Temporary Assistance for Needy Families (TANF) due to non financial requirements", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_tanf_eligible_child": { - "type": "parameter", - "parameter": "gov.abolitions.il_tanf_eligible_child", - "description": "Set all values of Eligible child for Illinois Temporary Assistance for Needy Families (TANF) based on demographics to zero.", - "label": "Abolish Eligible child for Illinois Temporary Assistance for Needy Families (TANF) based on demographics", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_tanf_income_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.il_tanf_income_eligible", - "description": "Set all values of Eligible for Illinois Temporary Assistance for Needy Families (TANF) due to income to zero.", - "label": "Abolish Eligible for Illinois Temporary Assistance for Needy Families (TANF) due to income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_tanf_demographic_eligible_person": { - "type": "parameter", - "parameter": "gov.abolitions.il_tanf_demographic_eligible_person", - "description": "Set all values of Eligible person for Illinois Temporary Assistance for Needy Families (TANF) based on demographics to zero.", - "label": "Abolish Eligible person for Illinois Temporary Assistance for Needy Families (TANF) based on demographics", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.il_tanf_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.il_tanf_eligible", - "description": "Set all values of Eligible for Illinois Temporary Assistance for Needy Families (TANF) to zero.", - "label": "Abolish Eligible for Illinois Temporary Assistance for Needy Families (TANF)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ut_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.ut_income_tax", - "description": "Set all values of Utah income tax to zero.", - "label": "Abolish Utah income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ut_income_tax_before_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ut_income_tax_before_refundable_credits", - "description": "Set all values of Utah income tax before refundable credits to zero.", - "label": "Abolish Utah income tax before refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ut_income_tax_before_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ut_income_tax_before_non_refundable_credits", - "description": "Set all values of Utah income tax before non-refundable credits to zero.", - "label": "Abolish Utah income tax before non-refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ut_income_tax_before_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ut_income_tax_before_credits", - "description": "Set all values of Utah income tax before credits to zero.", - "label": "Abolish Utah income tax before credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ut_income_tax_exempt": { - "type": "parameter", - "parameter": "gov.abolitions.ut_income_tax_exempt", - "description": "Set all values of exempt from Utah income tax to zero.", - "label": "Abolish exempt from Utah income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ut_withheld_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.ut_withheld_income_tax", - "description": "Set all values of Utah withheld income tax to zero.", - "label": "Abolish Utah withheld income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ut_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ut_non_refundable_credits", - "description": "Set all values of Utah non-refundable tax credits to zero.", - "label": "Abolish Utah non-refundable tax credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ut_at_home_parent_credit": { - "type": "parameter", - "parameter": "gov.abolitions.ut_at_home_parent_credit", - "description": "Set all values of Utah at-home parent credit to zero.", - "label": "Abolish Utah at-home parent credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ut_at_home_parent_credit_agi_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ut_at_home_parent_credit_agi_eligible", - "description": "Set all values of Eligible for the Utah at-home parent credit based on adjusted gross income to zero.", - "label": "Abolish Eligible for the Utah at-home parent credit based on adjusted gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ut_at_home_parent_credit_earned_income_eligible_person": { - "type": "parameter", - "parameter": "gov.abolitions.ut_at_home_parent_credit_earned_income_eligible_person", - "description": "Set all values of Eligible person for the Utah at-home parent credit income based on the earned income to zero.", - "label": "Abolish Eligible person for the Utah at-home parent credit income based on the earned income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ut_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.ut_eitc", - "description": "Set all values of Utah Earned Income Tax Credit to zero.", - "label": "Abolish Utah Earned Income Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ut_retirement_credit_max": { - "type": "parameter", - "parameter": "gov.abolitions.ut_retirement_credit_max", - "description": "Set all values of Utah retirement credit maximum amount to zero.", - "label": "Abolish Utah retirement credit maximum amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ut_retirement_credit": { - "type": "parameter", - "parameter": "gov.abolitions.ut_retirement_credit", - "description": "Set all values of Utah retirement credit to zero.", - "label": "Abolish Utah retirement credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ut_claims_retirement_credit": { - "type": "parameter", - "parameter": "gov.abolitions.ut_claims_retirement_credit", - "description": "Set all values of claims the Utah retirement credit to zero.", - "label": "Abolish claims the Utah retirement credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ut_ss_benefits_credit": { - "type": "parameter", - "parameter": "gov.abolitions.ut_ss_benefits_credit", - "description": "Set all values of Utah Social Security Benefits Credit to zero.", - "label": "Abolish Utah Social Security Benefits Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ut_ss_benefits_credit_max": { - "type": "parameter", - "parameter": "gov.abolitions.ut_ss_benefits_credit_max", - "description": "Set all values of Utah Social Security Benefits Credit maximum amount to zero.", - "label": "Abolish Utah Social Security Benefits Credit maximum amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ut_taxpayer_credit_reduction": { - "type": "parameter", - "parameter": "gov.abolitions.ut_taxpayer_credit_reduction", - "description": "Set all values of Utah taxpayer credit reduction to zero.", - "label": "Abolish Utah taxpayer credit reduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ut_personal_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.ut_personal_exemption", - "description": "Set all values of Utah personal exemption to zero.", - "label": "Abolish Utah personal exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ut_personal_exemption_additional_dependents": { - "type": "parameter", - "parameter": "gov.abolitions.ut_personal_exemption_additional_dependents", - "description": "Set all values of Utah total additional dependents under the personal exemption to zero.", - "label": "Abolish Utah total additional dependents under the personal exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ut_taxpayer_credit_phase_out_income": { - "type": "parameter", - "parameter": "gov.abolitions.ut_taxpayer_credit_phase_out_income", - "description": "Set all values of Utah taxpayer credit phase-out income to zero.", - "label": "Abolish Utah taxpayer credit phase-out income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ut_total_dependents": { - "type": "parameter", - "parameter": "gov.abolitions.ut_total_dependents", - "description": "Set all values of Utah total dependents to zero.", - "label": "Abolish Utah total dependents", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ut_federal_deductions_for_taxpayer_credit": { - "type": "parameter", - "parameter": "gov.abolitions.ut_federal_deductions_for_taxpayer_credit", - "description": "Set all values of Utah federal deductions considered for taxpayer credit to zero.", - "label": "Abolish Utah federal deductions considered for taxpayer credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ut_personal_exemption_additional_dependent_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ut_personal_exemption_additional_dependent_eligible", - "description": "Set all values of Utah additional dependent personal exemption eligible to zero.", - "label": "Abolish Utah additional dependent personal exemption eligible", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ut_taxpayer_credit": { - "type": "parameter", - "parameter": "gov.abolitions.ut_taxpayer_credit", - "description": "Set all values of Utah taxpayer credit to zero.", - "label": "Abolish Utah taxpayer credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ut_taxpayer_credit_max": { - "type": "parameter", - "parameter": "gov.abolitions.ut_taxpayer_credit_max", - "description": "Set all values of Utah initial taxpayer credit to zero.", - "label": "Abolish Utah initial taxpayer credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ut_ctc": { - "type": "parameter", - "parameter": "gov.abolitions.ut_ctc", - "description": "Set all values of Utah Child Tax Credit to zero.", - "label": "Abolish Utah Child Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ut_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.ut_taxable_income", - "description": "Set all values of Utah taxable income to zero.", - "label": "Abolish Utah taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ut_state_tax_refund": { - "type": "parameter", - "parameter": "gov.abolitions.ut_state_tax_refund", - "description": "Set all values of Utah state tax refund to zero.", - "label": "Abolish Utah state tax refund", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ut_total_income": { - "type": "parameter", - "parameter": "gov.abolitions.ut_total_income", - "description": "Set all values of Utah total income to zero.", - "label": "Abolish Utah total income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_income_tax_before_credits": { - "type": "parameter", - "parameter": "gov.abolitions.dc_income_tax_before_credits", - "description": "Set all values of DC income tax before credits to zero.", - "label": "Abolish DC income tax before credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_snap_temporary_local_benefit": { - "type": "parameter", - "parameter": "gov.abolitions.dc_snap_temporary_local_benefit", - "description": "Set all values of DC temporary local SNAP benefit amount to zero.", - "label": "Abolish DC temporary local SNAP benefit amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_income_tax_before_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.dc_income_tax_before_refundable_credits", - "description": "Set all values of DC income tax before refundable credits to zero.", - "label": "Abolish DC income tax before refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_income_tax_before_credits_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.dc_income_tax_before_credits_indiv", - "description": "Set all values of DC income tax before credits when married couples file separately to zero.", - "label": "Abolish DC income tax before credits when married couples file separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_agi": { - "type": "parameter", - "parameter": "gov.abolitions.dc_agi", - "description": "Set all values of DC AGI (adjusted gross income) for each person in tax unit to zero.", - "label": "Abolish DC AGI (adjusted gross income) for each person in tax unit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_withheld_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.dc_withheld_income_tax", - "description": "Set all values of DC withheld income tax to zero.", - "label": "Abolish DC withheld income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_income_tax_before_credits_joint": { - "type": "parameter", - "parameter": "gov.abolitions.dc_income_tax_before_credits_joint", - "description": "Set all values of DC income tax before credits when married couples file jointly to zero.", - "label": "Abolish DC income tax before credits when married couples file jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_taxable_income_joint": { - "type": "parameter", - "parameter": "gov.abolitions.dc_taxable_income_joint", - "description": "Set all values of DC taxable income (can be negative) when married couple files jointly to zero.", - "label": "Abolish DC taxable income (can be negative) when married couple files jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_taxable_income_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.dc_taxable_income_indiv", - "description": "Set all values of DC taxable income (can be negative) when married couple files separately to zero.", - "label": "Abolish DC taxable income (can be negative) when married couple files separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_files_separately": { - "type": "parameter", - "parameter": "gov.abolitions.dc_files_separately", - "description": "Set all values of Married couple files separately on DC tax return to zero.", - "label": "Abolish Married couple files separately on DC tax return", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.dc_income_tax", - "description": "Set all values of DC income tax to zero.", - "label": "Abolish DC income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_cdcc": { - "type": "parameter", - "parameter": "gov.abolitions.dc_cdcc", - "description": "Set all values of DC child and dependent care credit to zero.", - "label": "Abolish DC child and dependent care credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_ptc": { - "type": "parameter", - "parameter": "gov.abolitions.dc_ptc", - "description": "Set all values of DC property tax credit to zero.", - "label": "Abolish DC property tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_kccatc": { - "type": "parameter", - "parameter": "gov.abolitions.dc_kccatc", - "description": "Set all values of DC keep child care affordable tax credit to zero.", - "label": "Abolish DC keep child care affordable tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.dc_refundable_credits", - "description": "Set all values of DC refundable credits to zero.", - "label": "Abolish DC refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.dc_non_refundable_credits", - "description": "Set all values of DC non-refundable credits to zero.", - "label": "Abolish DC non-refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.dc_eitc", - "description": "Set all values of DC EITC to zero.", - "label": "Abolish DC EITC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_eitc_without_qualifying_child": { - "type": "parameter", - "parameter": "gov.abolitions.dc_eitc_without_qualifying_child", - "description": "Set all values of DC EITC without qualifying children to zero.", - "label": "Abolish DC EITC without qualifying children", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_eitc_with_qualifying_child": { - "type": "parameter", - "parameter": "gov.abolitions.dc_eitc_with_qualifying_child", - "description": "Set all values of DC EITC with qualifying children to zero.", - "label": "Abolish DC EITC with qualifying children", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_ctc_capped_children": { - "type": "parameter", - "parameter": "gov.abolitions.dc_ctc_capped_children", - "description": "Set all values of Capped number of DC CTC eligible children to zero.", - "label": "Abolish Capped number of DC CTC eligible children", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_ctc": { - "type": "parameter", - "parameter": "gov.abolitions.dc_ctc", - "description": "Set all values of DC Child Tax Credit to zero.", - "label": "Abolish DC Child Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_ctc_eligible_child": { - "type": "parameter", - "parameter": "gov.abolitions.dc_ctc_eligible_child", - "description": "Set all values of Whether the child is eligible for the DC CTC to zero.", - "label": "Abolish Whether the child is eligible for the DC CTC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_disabled_exclusion_subtraction": { - "type": "parameter", - "parameter": "gov.abolitions.dc_disabled_exclusion_subtraction", - "description": "Set all values of DC disabled exclusion subtraction to zero.", - "label": "Abolish DC disabled exclusion subtraction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_disability_exclusion": { - "type": "parameter", - "parameter": "gov.abolitions.dc_disability_exclusion", - "description": "Set all values of DC disability exclusion to zero.", - "label": "Abolish DC disability exclusion", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_income_subtractions": { - "type": "parameter", - "parameter": "gov.abolitions.dc_income_subtractions", - "description": "Set all values of DC subtractions from federal adjusted gross income to zero.", - "label": "Abolish DC subtractions from federal adjusted gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_additions": { - "type": "parameter", - "parameter": "gov.abolitions.dc_additions", - "description": "Set all values of DC additions to federal adjusted gross income to zero.", - "label": "Abolish DC additions to federal adjusted gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_self_employment_loss_addition": { - "type": "parameter", - "parameter": "gov.abolitions.dc_self_employment_loss_addition", - "description": "Set all values of DC excess self-employment loss addition to zero.", - "label": "Abolish DC excess self-employment loss addition", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_standard_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.dc_standard_deduction", - "description": "Set all values of DC standard deduction to zero.", - "label": "Abolish DC standard deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_deduction_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.dc_deduction_indiv", - "description": "Set all values of DC deduction for each person in tax unit to zero.", - "label": "Abolish DC deduction for each person in tax unit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_itemized_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.dc_itemized_deductions", - "description": "Set all values of DC itemized deductions to zero.", - "label": "Abolish DC itemized deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_deduction_joint": { - "type": "parameter", - "parameter": "gov.abolitions.dc_deduction_joint", - "description": "Set all values of DC deduction for each tax unit to zero.", - "label": "Abolish DC deduction for each tax unit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_liheap_payment": { - "type": "parameter", - "parameter": "gov.abolitions.dc_liheap_payment", - "description": "Set all values of DC LIHEAP payment to zero.", - "label": "Abolish DC LIHEAP payment", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_liheap_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.dc_liheap_eligible", - "description": "Set all values of Eligible for the DC LIHEAP to zero.", - "label": "Abolish Eligible for the DC LIHEAP", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_liheap_income_level": { - "type": "parameter", - "parameter": "gov.abolitions.dc_liheap_income_level", - "description": "Set all values of Income level for DC LIHEAP payment to zero.", - "label": "Abolish Income level for DC LIHEAP payment", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_pap_eligible_child": { - "type": "parameter", - "parameter": "gov.abolitions.dc_pap_eligible_child", - "description": "Set all values of Eligible child for DC Public Assistance Programs based on demographics to zero.", - "label": "Abolish Eligible child for DC Public Assistance Programs based on demographics", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_ccsp_assets": { - "type": "parameter", - "parameter": "gov.abolitions.dc_ccsp_assets", - "description": "Set all values of DC Child Care Subsidy Program (CCSP) asset to zero.", - "label": "Abolish DC Child Care Subsidy Program (CCSP) asset", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_ccsp": { - "type": "parameter", - "parameter": "gov.abolitions.dc_ccsp", - "description": "Set all values of DC Child Care Subsidy Program (CCSP) benefit amount to zero.", - "label": "Abolish DC Child Care Subsidy Program (CCSP) benefit amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_ccsp_countable_income": { - "type": "parameter", - "parameter": "gov.abolitions.dc_ccsp_countable_income", - "description": "Set all values of DC Child Care Subsidy Program (CCSP) countable income to zero.", - "label": "Abolish DC Child Care Subsidy Program (CCSP) countable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_ccsp_first_child_copay": { - "type": "parameter", - "parameter": "gov.abolitions.dc_ccsp_first_child_copay", - "description": "Set all values of DC Child Care Subsidy Program (CCSP) fist child copay amount to zero.", - "label": "Abolish DC Child Care Subsidy Program (CCSP) fist child copay amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_ccsp_is_full_time": { - "type": "parameter", - "parameter": "gov.abolitions.dc_ccsp_is_full_time", - "description": "Set all values of Person is attending full time day care under DC Child Care Subsidy Program (CCSP) to zero.", - "label": "Abolish Person is attending full time day care under DC Child Care Subsidy Program (CCSP)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_ccsp_is_second_youngest_child": { - "type": "parameter", - "parameter": "gov.abolitions.dc_ccsp_is_second_youngest_child", - "description": "Set all values of Person is the second youngest child for DC Child Care Subsidy Program (CCSP) to zero.", - "label": "Abolish Person is the second youngest child for DC Child Care Subsidy Program (CCSP) ", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_ccsp_second_child_copay": { - "type": "parameter", - "parameter": "gov.abolitions.dc_ccsp_second_child_copay", - "description": "Set all values of DC Child Care Subsidy Program (CCSP) second child copay amount to zero.", - "label": "Abolish DC Child Care Subsidy Program (CCSP) second child copay amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_ccsp_copay": { - "type": "parameter", - "parameter": "gov.abolitions.dc_ccsp_copay", - "description": "Set all values of DC Child Care Subsidy Program (CCSP) copay to zero.", - "label": "Abolish DC Child Care Subsidy Program (CCSP) copay", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_ccsp_is_youngest_child": { - "type": "parameter", - "parameter": "gov.abolitions.dc_ccsp_is_youngest_child", - "description": "Set all values of Person is the youngest child for DC Child Care Subsidy Program (CCSP) to zero.", - "label": "Abolish Person is the youngest child for DC Child Care Subsidy Program (CCSP) ", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_ccsp_income_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.dc_ccsp_income_eligible", - "description": "Set all values of Eligible for DC Child Care Subsidy Program (CCSP) due to income to zero.", - "label": "Abolish Eligible for DC Child Care Subsidy Program (CCSP) due to income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_ccsp_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.dc_ccsp_eligible", - "description": "Set all values of Eligible for DC Child Care Subsidy Program (CCSP) to zero.", - "label": "Abolish Eligible for DC Child Care Subsidy Program (CCSP)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_ccsp_eligible_child": { - "type": "parameter", - "parameter": "gov.abolitions.dc_ccsp_eligible_child", - "description": "Set all values of Eligible child for DC Child Care Subsidy Program (CCSP) to zero.", - "label": "Abolish Eligible child for DC Child Care Subsidy Program (CCSP)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_ccsp_immigration_status_eligible_person": { - "type": "parameter", - "parameter": "gov.abolitions.dc_ccsp_immigration_status_eligible_person", - "description": "Set all values of Eligible person for DC Child Care Subsidy Program (CCSP) based on immigration status to zero.", - "label": "Abolish Eligible person for DC Child Care Subsidy Program (CCSP) based on immigration status", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_ccsp_income_test_waived": { - "type": "parameter", - "parameter": "gov.abolitions.dc_ccsp_income_test_waived", - "description": "Set all values of Income test exemption under DC Child Care Subsidy Program (CCSP) to zero.", - "label": "Abolish Income test exemption under DC Child Care Subsidy Program (CCSP)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_ccsp_asset_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.dc_ccsp_asset_eligible", - "description": "Set all values of Eligible for DC Child Care Subsidy Program (CCSP) due to income to zero.", - "label": "Abolish Eligible for DC Child Care Subsidy Program (CCSP) due to income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_ccsp_qualified_activity_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.dc_ccsp_qualified_activity_eligible", - "description": "Set all values of Eligible for DC Child Care Subsidy Program (CCSP) due to qualified activity to zero.", - "label": "Abolish Eligible for DC Child Care Subsidy Program (CCSP) due to qualified activity", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_ccsp_qualified_need_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.dc_ccsp_qualified_need_eligible", - "description": "Set all values of Eligible for DC Child Care Subsidy Program (CCSP) due to qualified need to zero.", - "label": "Abolish Eligible for DC Child Care Subsidy Program (CCSP) due to qualified need", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_ccsp_qualified_activity_or_need_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.dc_ccsp_qualified_activity_or_need_eligible", - "description": "Set all values of Eligible for DC Child Care Subsidy Program (CCSP) due to qualified activity or need to zero.", - "label": "Abolish Eligible for DC Child Care Subsidy Program (CCSP) due to qualified activity or need", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_ccsp_maximum_subsidy_amount": { - "type": "parameter", - "parameter": "gov.abolitions.dc_ccsp_maximum_subsidy_amount", - "description": "Set all values of DC Child Care Subsidy Program (CCSP) maximum subsidy amount per child to zero.", - "label": "Abolish DC Child Care Subsidy Program (CCSP) maximum subsidy amount per child", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_gac_standard_payment": { - "type": "parameter", - "parameter": "gov.abolitions.dc_gac_standard_payment", - "description": "Set all values of DC General Assistance for Children (GAC) standard payment to zero.", - "label": "Abolish DC General Assistance for Children (GAC) standard payment", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_gac": { - "type": "parameter", - "parameter": "gov.abolitions.dc_gac", - "description": "Set all values of DC General Assistance for Children (GAC) to zero.", - "label": "Abolish DC General Assistance for Children (GAC)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_gac_assistance_unit_size": { - "type": "parameter", - "parameter": "gov.abolitions.dc_gac_assistance_unit_size", - "description": "Set all values of DC General Assistance for Children (GAC) assistance unit size to zero.", - "label": "Abolish DC General Assistance for Children (GAC) assistance unit size", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_gac_earned_income_after_disregard_person": { - "type": "parameter", - "parameter": "gov.abolitions.dc_gac_earned_income_after_disregard_person", - "description": "Set all values of DC General Assistance for Children (GAC) earned income after disregard per person to zero.", - "label": "Abolish DC General Assistance for Children (GAC) earned income after disregard per person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_gac_countable_unearned_income_person": { - "type": "parameter", - "parameter": "gov.abolitions.dc_gac_countable_unearned_income_person", - "description": "Set all values of DC General Assistance for Children (GAC) unearned income per person to zero.", - "label": "Abolish DC General Assistance for Children (GAC) unearned income per person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_gac_countable_income": { - "type": "parameter", - "parameter": "gov.abolitions.dc_gac_countable_income", - "description": "Set all values of DC General Assistance for Children (GAC) countable income to zero.", - "label": "Abolish DC General Assistance for Children (GAC) countable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_gac_eligible_child": { - "type": "parameter", - "parameter": "gov.abolitions.dc_gac_eligible_child", - "description": "Set all values of Eligible child for DC General Assistance for Children (GAC) based on demographics to zero.", - "label": "Abolish Eligible child for DC General Assistance for Children (GAC) based on demographics", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_gac_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.dc_gac_eligible", - "description": "Set all values of Eligible for DC General Assistance for Children (GAC) to zero.", - "label": "Abolish Eligible for DC General Assistance for Children (GAC)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_gac_income_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.dc_gac_income_eligible", - "description": "Set all values of Eligible for DC General Assistance for Children (GAC) due to income to zero.", - "label": "Abolish Eligible for DC General Assistance for Children (GAC) due to income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_power_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.dc_power_eligible", - "description": "Set all values of Eligible for DC Program on Work, Employment, and Responsibility (POWER) to zero.", - "label": "Abolish Eligible for DC Program on Work, Employment, and Responsibility (POWER)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_power": { - "type": "parameter", - "parameter": "gov.abolitions.dc_power", - "description": "Set all values of DC Program on Work, Employment, and Responsibility (POWER) to zero.", - "label": "Abolish DC Program on Work, Employment, and Responsibility (POWER)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_power_head_or_spouse_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.dc_power_head_or_spouse_eligible", - "description": "Set all values of Eligible for DC Program on Work, Employment, and Responsibility (POWER) to zero.", - "label": "Abolish Eligible for DC Program on Work, Employment, and Responsibility (POWER)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_power_has_disqualifying_benefits": { - "type": "parameter", - "parameter": "gov.abolitions.dc_power_has_disqualifying_benefits", - "description": "Set all values of Is receiving disqualifying benefits under DC Program on Work, Employment, and Responsibility (POWER) to zero.", - "label": "Abolish Is receiving disqualifying benefits under DC Program on Work, Employment, and Responsibility (POWER)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_tanf_standard_payment": { - "type": "parameter", - "parameter": "gov.abolitions.dc_tanf_standard_payment", - "description": "Set all values of DC Temporary Assistance for Needy Families (TANF) standard payment to zero.", - "label": "Abolish DC Temporary Assistance for Needy Families (TANF) standard payment", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_tanf": { - "type": "parameter", - "parameter": "gov.abolitions.dc_tanf", - "description": "Set all values of DC Temporary Assistance for Needy Families (TANF) to zero.", - "label": "Abolish DC Temporary Assistance for Needy Families (TANF)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_tanf_assistance_unit_size": { - "type": "parameter", - "parameter": "gov.abolitions.dc_tanf_assistance_unit_size", - "description": "Set all values of DC Temporary Assistance for Needy Families (TANF) assistance unit size to zero.", - "label": "Abolish DC Temporary Assistance for Needy Families (TANF) assistance unit size", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_tanf_countable_income": { - "type": "parameter", - "parameter": "gov.abolitions.dc_tanf_countable_income", - "description": "Set all values of DC Temporary Assistance for Needy Families (TANF) countable income to zero.", - "label": "Abolish DC Temporary Assistance for Needy Families (TANF) countable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_tanf_countable_unearned_income": { - "type": "parameter", - "parameter": "gov.abolitions.dc_tanf_countable_unearned_income", - "description": "Set all values of DC Temporary Assistance for Needy Families (TANF) countable unearned income to zero.", - "label": "Abolish DC Temporary Assistance for Needy Families (TANF) countable unearned income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_tanf_gross_unearned_income": { - "type": "parameter", - "parameter": "gov.abolitions.dc_tanf_gross_unearned_income", - "description": "Set all values of DC Temporary Assistance for Needy Families (TANF) gross unearned income to zero.", - "label": "Abolish DC Temporary Assistance for Needy Families (TANF) gross unearned income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_tanf_earned_income_after_disregard_person": { - "type": "parameter", - "parameter": "gov.abolitions.dc_tanf_earned_income_after_disregard_person", - "description": "Set all values of DC Temporary Assistance for Needy Families (TANF) earned income after disregard per person to zero.", - "label": "Abolish DC Temporary Assistance for Needy Families (TANF) earned income after disregard per person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_tanf_gross_earned_income": { - "type": "parameter", - "parameter": "gov.abolitions.dc_tanf_gross_earned_income", - "description": "Set all values of DC Temporary Assistance for Needy Families (TANF) gross earned income to zero.", - "label": "Abolish DC Temporary Assistance for Needy Families (TANF) gross earned income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_tanf_countable_earned_income": { - "type": "parameter", - "parameter": "gov.abolitions.dc_tanf_countable_earned_income", - "description": "Set all values of DC Temporary Assistance for Needy Families (TANF) countable earned income to zero.", - "label": "Abolish DC Temporary Assistance for Needy Families (TANF) countable earned income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_tanf_childcare_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.dc_tanf_childcare_deduction", - "description": "Set all values of DC Temporary Assistance for Needy Families (TANF) child care deduction to zero.", - "label": "Abolish DC Temporary Assistance for Needy Families (TANF) child care deduction ", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_tanf_work_requirement_exempt": { - "type": "parameter", - "parameter": "gov.abolitions.dc_tanf_work_requirement_exempt", - "description": "Set all values of Exempted from working requirement for DC Temporary Assistance for Needy Families (TANF) to zero.", - "label": "Abolish Exempted from working requirement for DC Temporary Assistance for Needy Families (TANF)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_tanf_is_working": { - "type": "parameter", - "parameter": "gov.abolitions.dc_tanf_is_working", - "description": "Set all values of Person is working under the work requirement for DC Temporary Assistance for Needy Families (TANF) to zero.", - "label": "Abolish Person is working under the work requirement for DC Temporary Assistance for Needy Families (TANF)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_tanf_meets_work_requirements": { - "type": "parameter", - "parameter": "gov.abolitions.dc_tanf_meets_work_requirements", - "description": "Set all values of Work requirement satisfied for DC Temporary Assistance for Needy Families (TANF) to zero.", - "label": "Abolish Work requirement satisfied for DC Temporary Assistance for Needy Families (TANF)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_tanf_immigration_status_eligible_person": { - "type": "parameter", - "parameter": "gov.abolitions.dc_tanf_immigration_status_eligible_person", - "description": "Set all values of Eligible person for DC Temporary Assistance for Needy Families (TANF) based on immigration status to zero.", - "label": "Abolish Eligible person for DC Temporary Assistance for Needy Families (TANF) based on immigration status", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_tanf_demographic_eligible_person": { - "type": "parameter", - "parameter": "gov.abolitions.dc_tanf_demographic_eligible_person", - "description": "Set all values of Eligible person for DC Temporary Assistance for Needy Families (TANF) based on demographics to zero.", - "label": "Abolish Eligible person for DC Temporary Assistance for Needy Families (TANF) based on demographics", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_tanf_income_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.dc_tanf_income_eligible", - "description": "Set all values of Eligible for DC Temporary Assistance for Needy Families (TANF) due to income to zero.", - "label": "Abolish Eligible for DC Temporary Assistance for Needy Families (TANF) due to income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_tanf_basic_eligibility_requirements": { - "type": "parameter", - "parameter": "gov.abolitions.dc_tanf_basic_eligibility_requirements", - "description": "Set all values of Basic eligibility requirements for DC Temporary Assistance for Needy Families (TANF) to zero.", - "label": "Abolish Basic eligibility requirements for DC Temporary Assistance for Needy Families (TANF)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_tanf_resources_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.dc_tanf_resources_eligible", - "description": "Set all values of Eligible for DC Temporary Assistance for Needy Families (TANF) due to resources to zero.", - "label": "Abolish Eligible for DC Temporary Assistance for Needy Families (TANF) due to resources", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.dc_tanf_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.dc_tanf_eligible", - "description": "Set all values of Eligible for DC Temporary Assistance for Needy Families (TANF) to zero.", - "label": "Abolish Eligible for DC Temporary Assistance for Needy Families (TANF)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.al_income_tax_before_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.al_income_tax_before_refundable_credits", - "description": "Set all values of Alabama income tax before refundable credits to zero.", - "label": "Abolish Alabama income tax before refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.al_agi": { - "type": "parameter", - "parameter": "gov.abolitions.al_agi", - "description": "Set all values of Alabama adjusted gross income to zero.", - "label": "Abolish Alabama adjusted gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.al_withheld_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.al_withheld_income_tax", - "description": "Set all values of Alabama withheld income tax to zero.", - "label": "Abolish Alabama withheld income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.al_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.al_income_tax", - "description": "Set all values of Alabama income tax to zero.", - "label": "Abolish Alabama income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.al_income_tax_before_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.al_income_tax_before_non_refundable_credits", - "description": "Set all values of Alabama income tax before non-refundable credits to zero.", - "label": "Abolish Alabama income tax before non-refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.al_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.al_taxable_income", - "description": "Set all values of Alabama taxable income to zero.", - "label": "Abolish Alabama taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.al_personal_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.al_personal_exemption", - "description": "Set all values of Alabama personal exemption to zero.", - "label": "Abolish Alabama personal exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.al_dependent_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.al_dependent_exemption", - "description": "Set all values of Alabama dependent exemption to zero.", - "label": "Abolish Alabama dependent exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.al_retirement_exemption_person": { - "type": "parameter", - "parameter": "gov.abolitions.al_retirement_exemption_person", - "description": "Set all values of Alabama retirement exemption for each person to zero.", - "label": "Abolish Alabama retirement exemption for each person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.al_retirement_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.al_retirement_exemption", - "description": "Set all values of Alabama retirement exemption to zero.", - "label": "Abolish Alabama retirement exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.al_retirement_exemption_eligible_person": { - "type": "parameter", - "parameter": "gov.abolitions.al_retirement_exemption_eligible_person", - "description": "Set all values of Alabama retirement exemption to zero.", - "label": "Abolish Alabama retirement exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.al_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.al_deductions", - "description": "Set all values of Alabama deductions to zero.", - "label": "Abolish Alabama deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.al_standard_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.al_standard_deduction", - "description": "Set all values of Alabama standard deduction to zero.", - "label": "Abolish Alabama standard deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.al_federal_income_tax_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.al_federal_income_tax_deduction", - "description": "Set all values of Alabama federal income tax deduction to zero.", - "label": "Abolish Alabama federal income tax deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.al_itemized_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.al_itemized_deductions", - "description": "Set all values of Alabama itemized deductions to zero.", - "label": "Abolish Alabama itemized deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.al_interest_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.al_interest_deduction", - "description": "Set all values of Alabama investment interest to zero.", - "label": "Abolish Alabama investment interest", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.al_medical_expense_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.al_medical_expense_deduction", - "description": "Set all values of Alabama medical expense deduction to zero.", - "label": "Abolish Alabama medical expense deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.al_misc_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.al_misc_deduction", - "description": "Set all values of Alabama Work Related Expense to zero.", - "label": "Abolish Alabama Work Related Expense", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.al_casualty_loss_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.al_casualty_loss_deduction", - "description": "Set all values of Alabama casualty loss deduction to zero.", - "label": "Abolish Alabama casualty loss deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ri_withheld_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.ri_withheld_income_tax", - "description": "Set all values of Rhode Island withheld income tax to zero.", - "label": "Abolish Rhode Island withheld income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ri_income_tax_before_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ri_income_tax_before_refundable_credits", - "description": "Set all values of Rhode Island income tax before refundable credits to zero.", - "label": "Abolish Rhode Island income tax before refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ri_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ri_non_refundable_credits", - "description": "Set all values of Rhode Island non-refundable credits to zero.", - "label": "Abolish Rhode Island non-refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ri_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.ri_taxable_income", - "description": "Set all values of Rhode Island taxable income to zero.", - "label": "Abolish Rhode Island taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ri_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.ri_income_tax", - "description": "Set all values of Rhode Island income tax to zero.", - "label": "Abolish Rhode Island income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ri_income_tax_before_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ri_income_tax_before_non_refundable_credits", - "description": "Set all values of Rhode Island income tax before refundable credits to zero.", - "label": "Abolish Rhode Island income tax before refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ri_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ri_refundable_credits", - "description": "Set all values of Rhode Island refundable credits to zero.", - "label": "Abolish Rhode Island refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ri_agi": { - "type": "parameter", - "parameter": "gov.abolitions.ri_agi", - "description": "Set all values of Rhode Island AGI to zero.", - "label": "Abolish Rhode Island AGI", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ri_additions": { - "type": "parameter", - "parameter": "gov.abolitions.ri_additions", - "description": "Set all values of Rhode Island AGI Additions to zero.", - "label": "Abolish Rhode Island AGI Additions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ri_tuition_saving_program_contribution_subtraction": { - "type": "parameter", - "parameter": "gov.abolitions.ri_tuition_saving_program_contribution_subtraction", - "description": "Set all values of Rhode Island tuition saving program contribution subtraction to zero.", - "label": "Abolish Rhode Island tuition saving program contribution subtraction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ri_subtractions": { - "type": "parameter", - "parameter": "gov.abolitions.ri_subtractions", - "description": "Set all values of Rhode Island AGI Subtractions to zero.", - "label": "Abolish Rhode Island AGI Subtractions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ri_social_security_modification": { - "type": "parameter", - "parameter": "gov.abolitions.ri_social_security_modification", - "description": "Set all values of Rhode Island Social Security Modification to zero.", - "label": "Abolish Rhode Island Social Security Modification", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ri_social_security_modification_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ri_social_security_modification_eligible", - "description": "Set all values of Eligible for the Rhode Island Social Security Modification to zero.", - "label": "Abolish Eligible for the Rhode Island Social Security Modification", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ri_retirement_income_subtraction_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ri_retirement_income_subtraction_eligible", - "description": "Set all values of Eligible for the Rhode Island retirement income subtraction to zero.", - "label": "Abolish Eligible for the Rhode Island retirement income subtraction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ri_retirement_income_subtraction": { - "type": "parameter", - "parameter": "gov.abolitions.ri_retirement_income_subtraction", - "description": "Set all values of Rhode Island retirement income subtraction to zero.", - "label": "Abolish Rhode Island retirement income subtraction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ri_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.ri_eitc", - "description": "Set all values of Rhode Island earned income tax credit to zero.", - "label": "Abolish Rhode Island earned income tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ri_child_tax_rebate": { - "type": "parameter", - "parameter": "gov.abolitions.ri_child_tax_rebate", - "description": "Set all values of Rhode Island Child Tax Rebate to zero.", - "label": "Abolish Rhode Island Child Tax Rebate", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ri_child_tax_rebate_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ri_child_tax_rebate_eligible", - "description": "Set all values of Rhode Island Child Tax Rebate to zero.", - "label": "Abolish Rhode Island Child Tax Rebate", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ri_cdcc": { - "type": "parameter", - "parameter": "gov.abolitions.ri_cdcc", - "description": "Set all values of Rhode Island child and dependent care credit to zero.", - "label": "Abolish Rhode Island child and dependent care credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ri_property_tax_household_income": { - "type": "parameter", - "parameter": "gov.abolitions.ri_property_tax_household_income", - "description": "Set all values of Rhode Island total household income for the property tax credit computation to zero.", - "label": "Abolish Rhode Island total household income for the property tax credit computation", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ri_property_tax_credit_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ri_property_tax_credit_eligible", - "description": "Set all values of Rhode Island property tax credit eligibility status to zero.", - "label": "Abolish Rhode Island property tax credit eligibility status", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ri_property_tax_credit": { - "type": "parameter", - "parameter": "gov.abolitions.ri_property_tax_credit", - "description": "Set all values of Rhode Island property tax credit to zero.", - "label": "Abolish Rhode Island property tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ri_exemptions": { - "type": "parameter", - "parameter": "gov.abolitions.ri_exemptions", - "description": "Set all values of Rhode Island exemptions to zero.", - "label": "Abolish Rhode Island exemptions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ri_standard_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.ri_standard_deduction", - "description": "Set all values of Rhode Island standard deduction to zero.", - "label": "Abolish Rhode Island standard deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ri_standard_deduction_applicable_percentage": { - "type": "parameter", - "parameter": "gov.abolitions.ri_standard_deduction_applicable_percentage", - "description": "Set all values of Rhode Island standard deduction applicable percentage to zero.", - "label": "Abolish Rhode Island standard deduction applicable percentage", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.in_withheld_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.in_withheld_income_tax", - "description": "Set all values of Indiana withheld income tax to zero.", - "label": "Abolish Indiana withheld income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.in_agi_tax": { - "type": "parameter", - "parameter": "gov.abolitions.in_agi_tax", - "description": "Set all values of Indiana adjusted gross income tax to zero.", - "label": "Abolish Indiana adjusted gross income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.in_county_tax": { - "type": "parameter", - "parameter": "gov.abolitions.in_county_tax", - "description": "Set all values of Indiana county tax to zero.", - "label": "Abolish Indiana county tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.in_agi": { - "type": "parameter", - "parameter": "gov.abolitions.in_agi", - "description": "Set all values of Indiana adjusted gross income to zero.", - "label": "Abolish Indiana adjusted gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.in_income_tax_before_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.in_income_tax_before_refundable_credits", - "description": "Set all values of Indiana income tax before refundable credits to zero.", - "label": "Abolish Indiana income tax before refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.in_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.in_income_tax", - "description": "Set all values of Indiana income tax to zero.", - "label": "Abolish Indiana income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.in_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.in_refundable_credits", - "description": "Set all values of Indiana refundable income tax credits to zero.", - "label": "Abolish Indiana refundable income tax credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.in_eitc_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.in_eitc_eligible", - "description": "Set all values of Indiana earned income tax credit eligibility status to zero.", - "label": "Abolish Indiana earned income tax credit eligibility status", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.in_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.in_eitc", - "description": "Set all values of Indiana earned income tax credit to zero.", - "label": "Abolish Indiana earned income tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.in_unified_elderly_tax_credit": { - "type": "parameter", - "parameter": "gov.abolitions.in_unified_elderly_tax_credit", - "description": "Set all values of Indiana unified elderly tax credit to zero.", - "label": "Abolish Indiana unified elderly tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.in_adoption_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.in_adoption_exemption", - "description": "Set all values of Indiana adoption exemption to zero.", - "label": "Abolish Indiana adoption exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.in_additional_exemptions": { - "type": "parameter", - "parameter": "gov.abolitions.in_additional_exemptions", - "description": "Set all values of Indiana additional exemptions to zero.", - "label": "Abolish Indiana additional exemptions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.in_aged_low_agi_exemptions": { - "type": "parameter", - "parameter": "gov.abolitions.in_aged_low_agi_exemptions", - "description": "Set all values of Indiana aged and low-AGI exemptions to zero.", - "label": "Abolish Indiana aged and low-AGI exemptions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.in_exemptions": { - "type": "parameter", - "parameter": "gov.abolitions.in_exemptions", - "description": "Set all values of Indiana exemptions to zero.", - "label": "Abolish Indiana exemptions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.in_qualifying_child_count": { - "type": "parameter", - "parameter": "gov.abolitions.in_qualifying_child_count", - "description": "Set all values of Indiana qualifying dependent child count to zero.", - "label": "Abolish Indiana qualifying dependent child count", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.in_aged_blind_exemptions": { - "type": "parameter", - "parameter": "gov.abolitions.in_aged_blind_exemptions", - "description": "Set all values of Indiana exemptions for aged and or blind to zero.", - "label": "Abolish Indiana exemptions for aged and or blind", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.in_is_qualifying_dependent_child": { - "type": "parameter", - "parameter": "gov.abolitions.in_is_qualifying_dependent_child", - "description": "Set all values of Indiana additional exemption qualifying dependent child to zero.", - "label": "Abolish Indiana additional exemption qualifying dependent child", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.in_base_exemptions": { - "type": "parameter", - "parameter": "gov.abolitions.in_base_exemptions", - "description": "Set all values of Indiana base exemptions to zero.", - "label": "Abolish Indiana base exemptions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.in_add_backs": { - "type": "parameter", - "parameter": "gov.abolitions.in_add_backs", - "description": "Set all values of Indiana add-backs to zero.", - "label": "Abolish Indiana add-backs", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.in_unemployment_compensation_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.in_unemployment_compensation_deduction", - "description": "Set all values of Indiana unemployment compensation deduction to zero.", - "label": "Abolish Indiana unemployment compensation deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.in_nonpublic_school_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.in_nonpublic_school_deduction", - "description": "Set all values of Indiana nonpublic school expenditures deduction to zero.", - "label": "Abolish Indiana nonpublic school expenditures deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.in_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.in_deductions", - "description": "Set all values of Indiana deductions to zero.", - "label": "Abolish Indiana deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.in_renters_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.in_renters_deduction", - "description": "Set all values of Indiana renter's deduction to zero.", - "label": "Abolish Indiana renter's deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.in_military_service_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.in_military_service_deduction", - "description": "Set all values of Indiana military service deduction to zero.", - "label": "Abolish Indiana military service deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.in_homeowners_property_tax_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.in_homeowners_property_tax_deduction", - "description": "Set all values of Indiana homeowner's residential property tax deduction to zero.", - "label": "Abolish Indiana homeowner's residential property tax deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.id_income_tax_liable": { - "type": "parameter", - "parameter": "gov.abolitions.id_income_tax_liable", - "description": "Set all values of Liable to pay income taxes in Idaho to zero.", - "label": "Abolish Liable to pay income taxes in Idaho", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.id_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.id_income_tax", - "description": "Set all values of Idaho income tax to zero.", - "label": "Abolish Idaho income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.id_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.id_refundable_credits", - "description": "Set all values of Idaho refundable credits to zero.", - "label": "Abolish Idaho refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.id_income_tax_before_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.id_income_tax_before_non_refundable_credits", - "description": "Set all values of Idaho income tax before non-refundable credits to zero.", - "label": "Abolish Idaho income tax before non-refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.id_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.id_taxable_income", - "description": "Set all values of Idaho taxable income to zero.", - "label": "Abolish Idaho taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.id_income_tax_before_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.id_income_tax_before_refundable_credits", - "description": "Set all values of Idaho income tax before refundable credits to zero.", - "label": "Abolish Idaho income tax before refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.id_agi": { - "type": "parameter", - "parameter": "gov.abolitions.id_agi", - "description": "Set all values of Idaho adjusted gross income to zero.", - "label": "Abolish Idaho adjusted gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.id_withheld_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.id_withheld_income_tax", - "description": "Set all values of Idaho withheld income tax to zero.", - "label": "Abolish Idaho withheld income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.id_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.id_non_refundable_credits", - "description": "Set all values of Idaho non-refundable credits to zero.", - "label": "Abolish Idaho non-refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.id_pbf": { - "type": "parameter", - "parameter": "gov.abolitions.id_pbf", - "description": "Set all values of Idaho permanent building tax to zero.", - "label": "Abolish Idaho permanent building tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.id_pbf_liable": { - "type": "parameter", - "parameter": "gov.abolitions.id_pbf_liable", - "description": "Set all values of Liable for the Idaho permanent building fund tax to zero.", - "label": "Abolish Liable for the Idaho permanent building fund tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.id_aged_or_disabled_credit": { - "type": "parameter", - "parameter": "gov.abolitions.id_aged_or_disabled_credit", - "description": "Set all values of Idaho aged or disabled credit to zero.", - "label": "Abolish Idaho aged or disabled credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.id_ctc": { - "type": "parameter", - "parameter": "gov.abolitions.id_ctc", - "description": "Set all values of Idaho Child Tax Credit to zero.", - "label": "Abolish Idaho Child Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.id_aged_or_disabled_credit_eligible_person": { - "type": "parameter", - "parameter": "gov.abolitions.id_aged_or_disabled_credit_eligible_person", - "description": "Set all values of Eligible person for the Idaho aged or disabled credit to zero.", - "label": "Abolish Eligible person for the Idaho aged or disabled credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.id_grocery_credit": { - "type": "parameter", - "parameter": "gov.abolitions.id_grocery_credit", - "description": "Set all values of Idaho grocery credit to zero.", - "label": "Abolish Idaho grocery credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.id_grocery_credit_aged": { - "type": "parameter", - "parameter": "gov.abolitions.id_grocery_credit_aged", - "description": "Set all values of Idaho aged grocery credit to zero.", - "label": "Abolish Idaho aged grocery credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.id_grocery_credit_base": { - "type": "parameter", - "parameter": "gov.abolitions.id_grocery_credit_base", - "description": "Set all values of Idaho base grocery credit to zero.", - "label": "Abolish Idaho base grocery credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.id_grocery_credit_qualified_months": { - "type": "parameter", - "parameter": "gov.abolitions.id_grocery_credit_qualified_months", - "description": "Set all values of Months qualified for the Idaho grocery credit to zero.", - "label": "Abolish Months qualified for the Idaho grocery credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.id_grocery_credit_qualifying_month": { - "type": "parameter", - "parameter": "gov.abolitions.id_grocery_credit_qualifying_month", - "description": "Set all values of Qualifies for the Idaho grocery credit in the given month to zero.", - "label": "Abolish Qualifies for the Idaho grocery credit in the given month", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.id_aged_or_disabled_deduction_eligible_person": { - "type": "parameter", - "parameter": "gov.abolitions.id_aged_or_disabled_deduction_eligible_person", - "description": "Set all values of Eligible person for the Idaho aged or disabled deduction to zero.", - "label": "Abolish Eligible person for the Idaho aged or disabled deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.id_aged_or_disabled_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.id_aged_or_disabled_deduction", - "description": "Set all values of Idaho aged or disabled deduction to zero.", - "label": "Abolish Idaho aged or disabled deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.id_subtractions": { - "type": "parameter", - "parameter": "gov.abolitions.id_subtractions", - "description": "Set all values of Idaho subtractions to zero.", - "label": "Abolish Idaho subtractions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.id_cdcc_limit": { - "type": "parameter", - "parameter": "gov.abolitions.id_cdcc_limit", - "description": "Set all values of Federal CDCC-relevant care expense limit for Idaho tax purposes to zero.", - "label": "Abolish Federal CDCC-relevant care expense limit for Idaho tax purposes", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.id_household_and_dependent_care_expense_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.id_household_and_dependent_care_expense_deduction", - "description": "Set all values of Idaho household and dependent care expense deduction to zero.", - "label": "Abolish Idaho household and dependent care expense deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.id_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.id_deductions", - "description": "Set all values of Idaho deductions to zero.", - "label": "Abolish Idaho deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.id_capital_gains_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.id_capital_gains_deduction", - "description": "Set all values of Idaho capital gains deduction to zero.", - "label": "Abolish Idaho capital gains deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.id_itemized_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.id_itemized_deductions", - "description": "Set all values of Idaho itemized deductions to zero.", - "label": "Abolish Idaho itemized deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.id_salt_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.id_salt_deduction", - "description": "Set all values of Idaho SALT deduction to zero.", - "label": "Abolish Idaho SALT deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.id_retirement_benefits_deduction_relevant_income": { - "type": "parameter", - "parameter": "gov.abolitions.id_retirement_benefits_deduction_relevant_income", - "description": "Set all values of Idaho retirement benefits deduction income sources to zero.", - "label": "Abolish Idaho retirement benefits deduction income sources", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.id_retirement_benefits_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.id_retirement_benefits_deduction", - "description": "Set all values of Idaho retirement benefits deduction to zero.", - "label": "Abolish Idaho retirement benefits deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.id_retirement_benefits_deduction_eligible_person": { - "type": "parameter", - "parameter": "gov.abolitions.id_retirement_benefits_deduction_eligible_person", - "description": "Set all values of Eligible person for the Idaho retirement benefits deduction to zero.", - "label": "Abolish Eligible person for the Idaho retirement benefits deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tx_tanf_income_limit": { - "type": "parameter", - "parameter": "gov.abolitions.tx_tanf_income_limit", - "description": "Set all values of Texas TANF income limit to zero.", - "label": "Abolish Texas TANF income limit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wi_standard_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.wi_standard_deduction", - "description": "Set all values of Wisconsin standard deduction to zero.", - "label": "Abolish Wisconsin standard deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wi_agi": { - "type": "parameter", - "parameter": "gov.abolitions.wi_agi", - "description": "Set all values of Wisconsin Adjusted Gross Income to zero.", - "label": "Abolish Wisconsin Adjusted Gross Income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wi_withheld_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.wi_withheld_income_tax", - "description": "Set all values of Wisconsin withheld income tax to zero.", - "label": "Abolish Wisconsin withheld income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wi_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.wi_taxable_income", - "description": "Set all values of Wisconsin taxable income to zero.", - "label": "Abolish Wisconsin taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wi_income_tax_before_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.wi_income_tax_before_refundable_credits", - "description": "Set all values of Wisconsin income tax before refundable credits to zero.", - "label": "Abolish Wisconsin income tax before refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wi_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.wi_income_tax", - "description": "Set all values of Wisconsin income tax to zero.", - "label": "Abolish Wisconsin income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wi_income_tax_before_credits": { - "type": "parameter", - "parameter": "gov.abolitions.wi_income_tax_before_credits", - "description": "Set all values of Wisconsin income tax before credits to zero.", - "label": "Abolish Wisconsin income tax before credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wi_nonrefundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.wi_nonrefundable_credits", - "description": "Set all values of Wisconsin nonrefundable credits to zero.", - "label": "Abolish Wisconsin nonrefundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wi_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.wi_refundable_credits", - "description": "Set all values of Wisconsin refundable credits to zero.", - "label": "Abolish Wisconsin refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wi_married_couple_credit": { - "type": "parameter", - "parameter": "gov.abolitions.wi_married_couple_credit", - "description": "Set all values of Wisconsin married couple credit to zero.", - "label": "Abolish Wisconsin married couple credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wi_homestead_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.wi_homestead_eligible", - "description": "Set all values of Wisconsin homestead credit eligibility status to zero.", - "label": "Abolish Wisconsin homestead credit eligibility status", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wi_homestead_income": { - "type": "parameter", - "parameter": "gov.abolitions.wi_homestead_income", - "description": "Set all values of Wisconsin homestead credit income to zero.", - "label": "Abolish Wisconsin homestead credit income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wi_homestead_property_tax": { - "type": "parameter", - "parameter": "gov.abolitions.wi_homestead_property_tax", - "description": "Set all values of Wisconsin homestead credit property tax amount to zero.", - "label": "Abolish Wisconsin homestead credit property tax amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wi_homestead_credit": { - "type": "parameter", - "parameter": "gov.abolitions.wi_homestead_credit", - "description": "Set all values of Wisconsin homestead credit to zero.", - "label": "Abolish Wisconsin homestead credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wi_childcare_expense_credit": { - "type": "parameter", - "parameter": "gov.abolitions.wi_childcare_expense_credit", - "description": "Set all values of Wisconsin childcare expense credit to zero.", - "label": "Abolish Wisconsin childcare expense credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wi_property_tax_credit": { - "type": "parameter", - "parameter": "gov.abolitions.wi_property_tax_credit", - "description": "Set all values of Wisconsin property tax credit to zero.", - "label": "Abolish Wisconsin property tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wi_earned_income_credit": { - "type": "parameter", - "parameter": "gov.abolitions.wi_earned_income_credit", - "description": "Set all values of Wisconsin earned income credit (WI EITC) to zero.", - "label": "Abolish Wisconsin earned income credit (WI EITC)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wi_itemized_deduction_credit": { - "type": "parameter", - "parameter": "gov.abolitions.wi_itemized_deduction_credit", - "description": "Set all values of Wisconsin itemized deduction credit to zero.", - "label": "Abolish Wisconsin itemized deduction credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wi_base_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.wi_base_exemption", - "description": "Set all values of Wisconsin base exemption to zero.", - "label": "Abolish Wisconsin base exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wi_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.wi_exemption", - "description": "Set all values of Wisconsin exemption to zero.", - "label": "Abolish Wisconsin exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wi_additional_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.wi_additional_exemption", - "description": "Set all values of Wisconsin additional exemption to zero.", - "label": "Abolish Wisconsin additional exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wi_childcare_expense_subtraction": { - "type": "parameter", - "parameter": "gov.abolitions.wi_childcare_expense_subtraction", - "description": "Set all values of Wisconsin childcare expense subtraction from federal AGI to zero.", - "label": "Abolish Wisconsin childcare expense subtraction from federal AGI", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wi_capital_gain_loss_subtraction": { - "type": "parameter", - "parameter": "gov.abolitions.wi_capital_gain_loss_subtraction", - "description": "Set all values of Wisconsin capital gain/loss subtraction from federal AGI to zero.", - "label": "Abolish Wisconsin capital gain/loss subtraction from federal AGI", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wi_unemployment_compensation_subtraction": { - "type": "parameter", - "parameter": "gov.abolitions.wi_unemployment_compensation_subtraction", - "description": "Set all values of Wisconsin unemployment compensation subtraction from federal AGI to zero.", - "label": "Abolish Wisconsin unemployment compensation subtraction from federal AGI", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wi_retirement_income_subtraction": { - "type": "parameter", - "parameter": "gov.abolitions.wi_retirement_income_subtraction", - "description": "Set all values of Wisconsin retirement income subtraction from federal AGI to zero.", - "label": "Abolish Wisconsin retirement income subtraction from federal AGI", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wi_retirement_income_subtraction_agi_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.wi_retirement_income_subtraction_agi_eligible", - "description": "Set all values of Wisconsin retirement income subtraction AGI eligibility to zero.", - "label": "Abolish Wisconsin retirement income subtraction AGI eligibility", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wi_income_subtractions": { - "type": "parameter", - "parameter": "gov.abolitions.wi_income_subtractions", - "description": "Set all values of Wisconsin subtractions from federal adjusted gross income to zero.", - "label": "Abolish Wisconsin subtractions from federal adjusted gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wi_additions": { - "type": "parameter", - "parameter": "gov.abolitions.wi_additions", - "description": "Set all values of Wisconsin additions to federal adjusted gross income to zero.", - "label": "Abolish Wisconsin additions to federal adjusted gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wi_capital_loss": { - "type": "parameter", - "parameter": "gov.abolitions.wi_capital_loss", - "description": "Set all values of Wisconsin capital loss (limited differently than US capital loss) to zero.", - "label": "Abolish Wisconsin capital loss (limited differently than US capital loss)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wi_capital_gain_loss_addition": { - "type": "parameter", - "parameter": "gov.abolitions.wi_capital_gain_loss_addition", - "description": "Set all values of WI capital gain/loss addition to federal adjusted gross income to zero.", - "label": "Abolish WI capital gain/loss addition to federal adjusted gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_child_care_subsidies": { - "type": "parameter", - "parameter": "gov.abolitions.ca_child_care_subsidies", - "description": "Set all values of California child care subsidies to zero.", - "label": "Abolish California child care subsidies", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_foster_care_minor_dependent": { - "type": "parameter", - "parameter": "gov.abolitions.ca_foster_care_minor_dependent", - "description": "Set all values of California foster care minor dependent to zero.", - "label": "Abolish California foster care minor dependent", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_ffyp_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ca_ffyp_eligible", - "description": "Set all values of Eligible person for the California Former Foster Youth Program to zero.", - "label": "Abolish Eligible person for the California Former Foster Youth Program", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.ca_taxable_income", - "description": "Set all values of CA taxable income to zero.", - "label": "Abolish CA taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.ca_income_tax", - "description": "Set all values of CA income tax to zero.", - "label": "Abolish CA income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_agi_subtractions": { - "type": "parameter", - "parameter": "gov.abolitions.ca_agi_subtractions", - "description": "Set all values of CA AGI subtractions from federal AGI to zero.", - "label": "Abolish CA AGI subtractions from federal AGI", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_mental_health_services_tax": { - "type": "parameter", - "parameter": "gov.abolitions.ca_mental_health_services_tax", - "description": "Set all values of CA mental health services tax to zero.", - "label": "Abolish CA mental health services tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_use_tax": { - "type": "parameter", - "parameter": "gov.abolitions.ca_use_tax", - "description": "Set all values of CA Use Tax to zero.", - "label": "Abolish CA Use Tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_agi": { - "type": "parameter", - "parameter": "gov.abolitions.ca_agi", - "description": "Set all values of CA AGI to zero.", - "label": "Abolish CA AGI", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_income_tax_before_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ca_income_tax_before_refundable_credits", - "description": "Set all values of CA income tax before refundable credits to zero.", - "label": "Abolish CA income tax before refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_withheld_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.ca_withheld_income_tax", - "description": "Set all values of California withheld income tax to zero.", - "label": "Abolish California withheld income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_income_tax_before_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ca_income_tax_before_credits", - "description": "Set all values of CA income tax before credits to zero.", - "label": "Abolish CA income tax before credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_amt": { - "type": "parameter", - "parameter": "gov.abolitions.ca_amt", - "description": "Set all values of California alternative minimum tax to zero.", - "label": "Abolish California alternative minimum tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_amt_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.ca_amt_exemption", - "description": "Set all values of California AMT exemption amount to zero.", - "label": "Abolish California AMT exemption amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_amti": { - "type": "parameter", - "parameter": "gov.abolitions.ca_amti", - "description": "Set all values of California alternative minimum taxable income to zero.", - "label": "Abolish California alternative minimum taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_pre_exemption_amti": { - "type": "parameter", - "parameter": "gov.abolitions.ca_pre_exemption_amti", - "description": "Set all values of California pre-exemption alternative minimum taxable income to zero.", - "label": "Abolish California pre-exemption alternative minimum taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_amti_adjustments": { - "type": "parameter", - "parameter": "gov.abolitions.ca_amti_adjustments", - "description": "Set all values of California AMTI adjustment to zero.", - "label": "Abolish California AMTI adjustment", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ca_refundable_credits", - "description": "Set all values of California refundable income tax credits to zero.", - "label": "Abolish California refundable income tax credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_federal_cdcc": { - "type": "parameter", - "parameter": "gov.abolitions.ca_federal_cdcc", - "description": "Set all values of Child and Dependent Care Expenses Credit replicated to include California limitations to zero.", - "label": "Abolish Child and Dependent Care Expenses Credit replicated to include California limitations", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_cdcc_relevant_expenses": { - "type": "parameter", - "parameter": "gov.abolitions.ca_cdcc_relevant_expenses", - "description": "Set all values of CDCC-relevant care expenses replicated to include California limitations to zero.", - "label": "Abolish CDCC-relevant care expenses replicated to include California limitations", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_cdcc_rate": { - "type": "parameter", - "parameter": "gov.abolitions.ca_cdcc_rate", - "description": "Set all values of CDCC credit rate replicated to include California limitations to zero.", - "label": "Abolish CDCC credit rate replicated to include California limitations", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_nonrefundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ca_nonrefundable_credits", - "description": "Set all values of California nonrefundable income tax credits to zero.", - "label": "Abolish California nonrefundable income tax credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_federal_capped_cdcc": { - "type": "parameter", - "parameter": "gov.abolitions.ca_federal_capped_cdcc", - "description": "Set all values of Capped child/dependent care credit replicated to include California limitations to zero.", - "label": "Abolish Capped child/dependent care credit replicated to include California limitations", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_cdcc": { - "type": "parameter", - "parameter": "gov.abolitions.ca_cdcc", - "description": "Set all values of California Child and Dependent Care Expenses Credit to zero.", - "label": "Abolish California Child and Dependent Care Expenses Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_renter_credit": { - "type": "parameter", - "parameter": "gov.abolitions.ca_renter_credit", - "description": "Set all values of California Renter Tax Credit to zero.", - "label": "Abolish California Renter Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_foster_youth_tax_credit_eligible_person": { - "type": "parameter", - "parameter": "gov.abolitions.ca_foster_youth_tax_credit_eligible_person", - "description": "Set all values of Eligible person for the California foster youth tax credit to zero.", - "label": "Abolish Eligible person for the California foster youth tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_foster_youth_tax_credit_person": { - "type": "parameter", - "parameter": "gov.abolitions.ca_foster_youth_tax_credit_person", - "description": "Set all values of California foster youth tax credit to zero.", - "label": "Abolish California foster youth tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_foster_youth_tax_credit": { - "type": "parameter", - "parameter": "gov.abolitions.ca_foster_youth_tax_credit", - "description": "Set all values of California foster youth tax credit to zero.", - "label": "Abolish California foster youth tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.ca_eitc", - "description": "Set all values of CalEITC to zero.", - "label": "Abolish CalEITC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_is_qualifying_child_for_caleitc": { - "type": "parameter", - "parameter": "gov.abolitions.ca_is_qualifying_child_for_caleitc", - "description": "Set all values of Child qualifies for CalEITC to zero.", - "label": "Abolish Child qualifies for CalEITC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_eitc_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ca_eitc_eligible", - "description": "Set all values of CalEITC eligible to zero.", - "label": "Abolish CalEITC eligible", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_yctc": { - "type": "parameter", - "parameter": "gov.abolitions.ca_yctc", - "description": "Set all values of California Young Child Tax Credit to zero.", - "label": "Abolish California Young Child Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_exemptions": { - "type": "parameter", - "parameter": "gov.abolitions.ca_exemptions", - "description": "Set all values of CA Exemptions to zero.", - "label": "Abolish CA Exemptions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.ca_deductions", - "description": "Set all values of California deductions to zero.", - "label": "Abolish California deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_investment_interest_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.ca_investment_interest_deduction", - "description": "Set all values of California investment interest deduction to zero.", - "label": "Abolish California investment interest deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_itemized_deductions_pre_limitation": { - "type": "parameter", - "parameter": "gov.abolitions.ca_itemized_deductions_pre_limitation", - "description": "Set all values of California pre-limitation itemized deductions to zero.", - "label": "Abolish California pre-limitation itemized deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_itemized_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.ca_itemized_deductions", - "description": "Set all values of California itemized deductions to zero.", - "label": "Abolish California itemized deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_standard_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.ca_standard_deduction", - "description": "Set all values of California standard deduction to zero.", - "label": "Abolish California standard deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_care_amount_if_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ca_care_amount_if_eligible", - "description": "Set all values of California CARE amount discounted to zero.", - "label": "Abolish California CARE amount discounted", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_care": { - "type": "parameter", - "parameter": "gov.abolitions.ca_care", - "description": "Set all values of California CARE to zero.", - "label": "Abolish California CARE", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_care_income_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ca_care_income_eligible", - "description": "Set all values of Eligible for California CARE program by virtue of income to zero.", - "label": "Abolish Eligible for California CARE program by virtue of income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_care_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ca_care_eligible", - "description": "Set all values of Eligible for California CARE program to zero.", - "label": "Abolish Eligible for California CARE program", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_care_categorically_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ca_care_categorically_eligible", - "description": "Set all values of Eligible for California CARE program by virtue of participation in a qualifying program to zero.", - "label": "Abolish Eligible for California CARE program by virtue of participation in a qualifying program", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_care_poverty_line": { - "type": "parameter", - "parameter": "gov.abolitions.ca_care_poverty_line", - "description": "Set all values of Poverty line as defined for California CARE program to zero.", - "label": "Abolish Poverty line as defined for California CARE program", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_fera": { - "type": "parameter", - "parameter": "gov.abolitions.ca_fera", - "description": "Set all values of California FERA to zero.", - "label": "Abolish California FERA", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_fera_amount_if_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ca_fera_amount_if_eligible", - "description": "Set all values of California FERA discounted amount to zero.", - "label": "Abolish California FERA discounted amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_fera_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ca_fera_eligible", - "description": "Set all values of Eligible for California FERA program to zero.", - "label": "Abolish Eligible for California FERA program", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_capi": { - "type": "parameter", - "parameter": "gov.abolitions.ca_capi", - "description": "Set all values of California CAPI to zero.", - "label": "Abolish California CAPI", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_capi_income_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ca_capi_income_eligible", - "description": "Set all values of California CAPI income eligible to zero.", - "label": "Abolish California CAPI income eligible", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_capi_eligible_person": { - "type": "parameter", - "parameter": "gov.abolitions.ca_capi_eligible_person", - "description": "Set all values of California CAPI eligible person to zero.", - "label": "Abolish California CAPI eligible person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_capi_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ca_capi_eligible", - "description": "Set all values of California CAPI eligible to zero.", - "label": "Abolish California CAPI eligible", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_capi_resource_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ca_capi_resource_eligible", - "description": "Set all values of California CAPI resource eligible to zero.", - "label": "Abolish California CAPI resource eligible", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_capi_resources": { - "type": "parameter", - "parameter": "gov.abolitions.ca_capi_resources", - "description": "Set all values of California CAPI resources to zero.", - "label": "Abolish California CAPI resources", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_capi_countable_vehicle_value": { - "type": "parameter", - "parameter": "gov.abolitions.ca_capi_countable_vehicle_value", - "description": "Set all values of California CAPI countable vehicle value to zero.", - "label": "Abolish California CAPI countable vehicle value", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_state_supplement_eligible_person": { - "type": "parameter", - "parameter": "gov.abolitions.ca_state_supplement_eligible_person", - "description": "Set all values of California SSI state supplement eligible person to zero.", - "label": "Abolish California SSI state supplement eligible person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_state_supplement": { - "type": "parameter", - "parameter": "gov.abolitions.ca_state_supplement", - "description": "Set all values of California state supplement to zero.", - "label": "Abolish California state supplement", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_state_supplement_aged_blind_disabled_amount": { - "type": "parameter", - "parameter": "gov.abolitions.ca_state_supplement_aged_blind_disabled_amount", - "description": "Set all values of California SSI state supplement aged disabled and blind amount to zero.", - "label": "Abolish California SSI state supplement aged disabled and blind amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_state_supplement_food_allowance_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ca_state_supplement_food_allowance_eligible", - "description": "Set all values of California SSI state supplement food allowance eligible to zero.", - "label": "Abolish California SSI state supplement food allowance eligible", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_state_supplement_food_allowance": { - "type": "parameter", - "parameter": "gov.abolitions.ca_state_supplement_food_allowance", - "description": "Set all values of California SSI state supplement food allowance to zero.", - "label": "Abolish California SSI state supplement food allowance", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_state_supplement_payment_standard": { - "type": "parameter", - "parameter": "gov.abolitions.ca_state_supplement_payment_standard", - "description": "Set all values of California SSI state supplement payment standard to zero.", - "label": "Abolish California SSI state supplement payment standard", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_state_supplement_out_of_home_care_facility_amount": { - "type": "parameter", - "parameter": "gov.abolitions.ca_state_supplement_out_of_home_care_facility_amount", - "description": "Set all values of California SSI state supplement out of home care facility amount to zero.", - "label": "Abolish California SSI state supplement out of home care facility amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_state_supplement_aged_disabled_amount": { - "type": "parameter", - "parameter": "gov.abolitions.ca_state_supplement_aged_disabled_amount", - "description": "Set all values of California SSI state supplement aged disabled amount to zero.", - "label": "Abolish California SSI state supplement aged disabled amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_state_supplement_aged_disabled_count": { - "type": "parameter", - "parameter": "gov.abolitions.ca_state_supplement_aged_disabled_count", - "description": "Set all values of California SSI state supplement aged or disabled count to zero.", - "label": "Abolish California SSI state supplement aged or disabled count", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_state_supplement_medical_care_facility_amount": { - "type": "parameter", - "parameter": "gov.abolitions.ca_state_supplement_medical_care_facility_amount", - "description": "Set all values of California SSI state supplement medical care facility amount to zero.", - "label": "Abolish California SSI state supplement medical care facility amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_state_supplement_dependent_amount": { - "type": "parameter", - "parameter": "gov.abolitions.ca_state_supplement_dependent_amount", - "description": "Set all values of California SSI state supplement dependent amount to zero.", - "label": "Abolish California SSI state supplement dependent amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_state_supplement_blind_amount": { - "type": "parameter", - "parameter": "gov.abolitions.ca_state_supplement_blind_amount", - "description": "Set all values of California SSI state supplement blind amount to zero.", - "label": "Abolish California SSI state supplement blind amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_tanf": { - "type": "parameter", - "parameter": "gov.abolitions.ca_tanf", - "description": "Set all values of California CalWORKs Cash Benefit to zero.", - "label": "Abolish California CalWORKs Cash Benefit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_tanf_countable_income_recipient": { - "type": "parameter", - "parameter": "gov.abolitions.ca_tanf_countable_income_recipient", - "description": "Set all values of California CalWORKs countable income for payment computation to zero.", - "label": "Abolish California CalWORKs countable income for payment computation", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_tanf_db_unearned_income": { - "type": "parameter", - "parameter": "gov.abolitions.ca_tanf_db_unearned_income", - "description": "Set all values of California CalWORKs Disability-Based Unearned Income to zero.", - "label": "Abolish California CalWORKs Disability-Based Unearned Income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_tanf_countable_income_applicant": { - "type": "parameter", - "parameter": "gov.abolitions.ca_tanf_countable_income_applicant", - "description": "Set all values of California CalWORKs Countable Income for Eligibility to zero.", - "label": "Abolish California CalWORKs Countable Income for Eligibility", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_tanf_earned_income": { - "type": "parameter", - "parameter": "gov.abolitions.ca_tanf_earned_income", - "description": "Set all values of California CalWORKs gross earned income to zero.", - "label": "Abolish California CalWORKs gross earned income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_tanf_other_unearned_income": { - "type": "parameter", - "parameter": "gov.abolitions.ca_tanf_other_unearned_income", - "description": "Set all values of California CalWORKs other unearned income to zero.", - "label": "Abolish California CalWORKs other unearned income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_tanf_vehicle_value_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ca_tanf_vehicle_value_eligible", - "description": "Set all values of Eligible child for the California CalWORKs based on the vehicle value to zero.", - "label": "Abolish Eligible child for the California CalWORKs based on the vehicle value", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_tanf_immigration_status_eligible_person": { - "type": "parameter", - "parameter": "gov.abolitions.ca_tanf_immigration_status_eligible_person", - "description": "Set all values of California TANF immigration status Eligibility to zero.", - "label": "Abolish California TANF immigration status Eligibility", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_tanf_income_limit": { - "type": "parameter", - "parameter": "gov.abolitions.ca_tanf_income_limit", - "description": "Set all values of California CalWORKs Minimum Basic Standard of Adequate Care to zero.", - "label": "Abolish California CalWORKs Minimum Basic Standard of Adequate Care", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_tanf_recipient_financial_test": { - "type": "parameter", - "parameter": "gov.abolitions.ca_tanf_recipient_financial_test", - "description": "Set all values of California CalWORKs Recipient Financial Test to zero.", - "label": "Abolish California CalWORKs Recipient Financial Test", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_tanf_applicant_financial_test": { - "type": "parameter", - "parameter": "gov.abolitions.ca_tanf_applicant_financial_test", - "description": "Set all values of California CalWORKs Applicant Financial Test to zero.", - "label": "Abolish California CalWORKs Applicant Financial Test", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_tanf_region1": { - "type": "parameter", - "parameter": "gov.abolitions.ca_tanf_region1", - "description": "Set all values of In a CalWORKs region 1 county to zero.", - "label": "Abolish In a CalWORKs region 1 county", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_tanf_financial_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ca_tanf_financial_eligible", - "description": "Set all values of California CalWORKs Financial Eligibility to zero.", - "label": "Abolish California CalWORKs Financial Eligibility", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_tanf_resources_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ca_tanf_resources_eligible", - "description": "Set all values of Eligible for the California CalWORKs based on the available resources to zero.", - "label": "Abolish Eligible for the California CalWORKs based on the available resources", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_tanf_exempt": { - "type": "parameter", - "parameter": "gov.abolitions.ca_tanf_exempt", - "description": "Set all values of California CalWORKs Exempt Eligibility to zero.", - "label": "Abolish California CalWORKs Exempt Eligibility", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_tanf_maximum_payment": { - "type": "parameter", - "parameter": "gov.abolitions.ca_tanf_maximum_payment", - "description": "Set all values of California CalWORKs Maximum Aid Payment to zero.", - "label": "Abolish California CalWORKs Maximum Aid Payment", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_tanf_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ca_tanf_eligible", - "description": "Set all values of Eligible for the California CalWORKs to zero.", - "label": "Abolish Eligible for the California CalWORKs", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_tanf_resources": { - "type": "parameter", - "parameter": "gov.abolitions.ca_tanf_resources", - "description": "Set all values of California CalWORKs Resources to zero.", - "label": "Abolish California CalWORKs Resources", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_tanf_resources_limit": { - "type": "parameter", - "parameter": "gov.abolitions.ca_tanf_resources_limit", - "description": "Set all values of California CalWORKs Resources Limit to zero.", - "label": "Abolish California CalWORKs Resources Limit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_calworks_child_care_full_time": { - "type": "parameter", - "parameter": "gov.abolitions.ca_calworks_child_care_full_time", - "description": "Set all values of Whether a child is classified as receiving full-time care for CalWORKs Child Care to zero.", - "label": "Abolish Whether a child is classified as receiving full-time care for CalWORKs Child Care", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_calworks_child_care_child_age_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ca_calworks_child_care_child_age_eligible", - "description": "Set all values of Eligible child for the California CalWORKs Child Care based on age to zero.", - "label": "Abolish Eligible child for the California CalWORKs Child Care based on age", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_calworks_child_care_age_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ca_calworks_child_care_age_eligible", - "description": "Set all values of California CalWORKs Child Care SPMUnit Age Eligibility to zero.", - "label": "Abolish California CalWORKs Child Care SPMUnit Age Eligibility", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_calworks_child_care_meets_work_requirement": { - "type": "parameter", - "parameter": "gov.abolitions.ca_calworks_child_care_meets_work_requirement", - "description": "Set all values of Meets CalWORKs Child Care Work Requirement to zero.", - "label": "Abolish Meets CalWORKs Child Care Work Requirement", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_calworks_child_care_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ca_calworks_child_care_eligible", - "description": "Set all values of Eligible for the California CalWORKs Child Care to zero.", - "label": "Abolish Eligible for the California CalWORKs Child Care", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_calworks_child_care_immigration_status_eligible_person": { - "type": "parameter", - "parameter": "gov.abolitions.ca_calworks_child_care_immigration_status_eligible_person", - "description": "Set all values of California CalWORKs Child Care immigration status Eligibility to zero.", - "label": "Abolish California CalWORKs Child Care immigration status Eligibility", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_calworks_child_care_payment_factor": { - "type": "parameter", - "parameter": "gov.abolitions.ca_calworks_child_care_payment_factor", - "description": "Set all values of California CalWORKs Child Care payment factor to zero.", - "label": "Abolish California CalWORKs Child Care payment factor", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_calworks_child_care_payment": { - "type": "parameter", - "parameter": "gov.abolitions.ca_calworks_child_care_payment", - "description": "Set all values of California CalWORKs Child Care payment to zero.", - "label": "Abolish California CalWORKs Child Care payment", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_calworks_child_care_time_coefficient": { - "type": "parameter", - "parameter": "gov.abolitions.ca_calworks_child_care_time_coefficient", - "description": "Set all values of California CalWORKs Child Care hours per month to zero.", - "label": "Abolish California CalWORKs Child Care hours per month", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_calworks_child_care_payment_standard": { - "type": "parameter", - "parameter": "gov.abolitions.ca_calworks_child_care_payment_standard", - "description": "Set all values of California CalWORKs Child Care Payment Standard to zero.", - "label": "Abolish California CalWORKs Child Care Payment Standard", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_calworks_child_care": { - "type": "parameter", - "parameter": "gov.abolitions.ca_calworks_child_care", - "description": "Set all values of California CalWORKs Child Care final payment to zero.", - "label": "Abolish California CalWORKs Child Care final payment", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_ca_cvrp_normal_rebate_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.is_ca_cvrp_normal_rebate_eligible", - "description": "Set all values of Eligible for CVRP normal rebate to zero.", - "label": "Abolish Eligible for CVRP normal rebate", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ca_cvrp": { - "type": "parameter", - "parameter": "gov.abolitions.ca_cvrp", - "description": "Set all values of California Clean Vehicle Rebate Project to zero.", - "label": "Abolish California Clean Vehicle Rebate Project", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_ca_cvrp_increased_rebate_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.is_ca_cvrp_increased_rebate_eligible", - "description": "Set all values of Eligible for CVRP increased rebate to zero.", - "label": "Abolish Eligible for CVRP increased rebate", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mn_withheld_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.mn_withheld_income_tax", - "description": "Set all values of Minnesota withheld income tax to zero.", - "label": "Abolish Minnesota withheld income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mn_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.mn_taxable_income", - "description": "Set all values of Minnesota taxable income to zero.", - "label": "Abolish Minnesota taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mn_income_tax_before_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.mn_income_tax_before_refundable_credits", - "description": "Set all values of Minnesota income tax before refundable credits to zero.", - "label": "Abolish Minnesota income tax before refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mn_basic_tax": { - "type": "parameter", - "parameter": "gov.abolitions.mn_basic_tax", - "description": "Set all values of Minnesota basic tax calculated using tax rate schedules to zero.", - "label": "Abolish Minnesota basic tax calculated using tax rate schedules", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mn_income_tax_before_credits": { - "type": "parameter", - "parameter": "gov.abolitions.mn_income_tax_before_credits", - "description": "Set all values of Minnesota income tax before credits to zero.", - "label": "Abolish Minnesota income tax before credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mn_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.mn_income_tax", - "description": "Set all values of Minnesota income tax to zero.", - "label": "Abolish Minnesota income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mn_niit": { - "type": "parameter", - "parameter": "gov.abolitions.mn_niit", - "description": "Set all values of Minnesota Net Investment Income Tax (NIIT) to zero.", - "label": "Abolish Minnesota Net Investment Income Tax (NIIT)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mn_child_and_working_families_credits": { - "type": "parameter", - "parameter": "gov.abolitions.mn_child_and_working_families_credits", - "description": "Set all values of Minnesota child and working families credits to zero.", - "label": "Abolish Minnesota child and working families credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mn_cdcc": { - "type": "parameter", - "parameter": "gov.abolitions.mn_cdcc", - "description": "Set all values of Minnesota child and dependent care expense credit to zero.", - "label": "Abolish Minnesota child and dependent care expense credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mn_wfc": { - "type": "parameter", - "parameter": "gov.abolitions.mn_wfc", - "description": "Set all values of Minnesota working family credit amount to zero.", - "label": "Abolish Minnesota working family credit amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mn_wfc_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.mn_wfc_eligible", - "description": "Set all values of Minnesota working family credit eligibilty status to zero.", - "label": "Abolish Minnesota working family credit eligibilty status", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mn_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.mn_refundable_credits", - "description": "Set all values of Minnesota refundable income tax credits to zero.", - "label": "Abolish Minnesota refundable income tax credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mn_marriage_credit": { - "type": "parameter", - "parameter": "gov.abolitions.mn_marriage_credit", - "description": "Set all values of Minnesota marriage credit to zero.", - "label": "Abolish Minnesota marriage credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mn_nonrefundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.mn_nonrefundable_credits", - "description": "Set all values of Minnesota nonrefundable income tax credits to zero.", - "label": "Abolish Minnesota nonrefundable income tax credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mn_exemptions": { - "type": "parameter", - "parameter": "gov.abolitions.mn_exemptions", - "description": "Set all values of Minnesota exemptions amount to zero.", - "label": "Abolish Minnesota exemptions amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mn_amt": { - "type": "parameter", - "parameter": "gov.abolitions.mn_amt", - "description": "Set all values of Minnesota alternative minimum tax (AMT) to zero.", - "label": "Abolish Minnesota alternative minimum tax (AMT)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mn_amt_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.mn_amt_taxable_income", - "description": "Set all values of Minnesota alternative minimum tax (AMT) taxable income to zero.", - "label": "Abolish Minnesota alternative minimum tax (AMT) taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mn_charity_subtraction": { - "type": "parameter", - "parameter": "gov.abolitions.mn_charity_subtraction", - "description": "Set all values of Minnesota charity subtraction to zero.", - "label": "Abolish Minnesota charity subtraction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mn_social_security_subtraction": { - "type": "parameter", - "parameter": "gov.abolitions.mn_social_security_subtraction", - "description": "Set all values of Minnesota social security subtraction to zero.", - "label": "Abolish Minnesota social security subtraction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mn_elderly_disabled_subtraction": { - "type": "parameter", - "parameter": "gov.abolitions.mn_elderly_disabled_subtraction", - "description": "Set all values of Minnesota elderly/disabled subtraction to zero.", - "label": "Abolish Minnesota elderly/disabled subtraction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mn_public_pension_subtraction": { - "type": "parameter", - "parameter": "gov.abolitions.mn_public_pension_subtraction", - "description": "Set all values of Minnesota public pension subtraction to zero.", - "label": "Abolish Minnesota public pension subtraction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mn_subtractions": { - "type": "parameter", - "parameter": "gov.abolitions.mn_subtractions", - "description": "Set all values of Minnesota subtractions from federal AGI to zero.", - "label": "Abolish Minnesota subtractions from federal AGI", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mn_additions": { - "type": "parameter", - "parameter": "gov.abolitions.mn_additions", - "description": "Set all values of Minnesota additions to federal AGI to zero.", - "label": "Abolish Minnesota additions to federal AGI", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mn_itemized_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.mn_itemized_deductions", - "description": "Set all values of Minnesota itemized deductions to zero.", - "label": "Abolish Minnesota itemized deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mn_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.mn_deductions", - "description": "Set all values of Minnesota deductions to zero.", - "label": "Abolish Minnesota deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mn_standard_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.mn_standard_deduction", - "description": "Set all values of Minnesota standard deduction to zero.", - "label": "Abolish Minnesota standard deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mn_itemizing": { - "type": "parameter", - "parameter": "gov.abolitions.mn_itemizing", - "description": "Set all values of whether or not itemizing Minnesota deductions to zero.", - "label": "Abolish whether or not itemizing Minnesota deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nj_tanf_resources_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.nj_tanf_resources_eligible", - "description": "Set all values of New Jersey TANF resources eligible to zero.", - "label": "Abolish New Jersey TANF resources eligible", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nj_tanf_maximum_benefit": { - "type": "parameter", - "parameter": "gov.abolitions.nj_tanf_maximum_benefit", - "description": "Set all values of New Jersey TANF maximum benefit to zero.", - "label": "Abolish New Jersey TANF maximum benefit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nj_tanf_maximum_allowable_income": { - "type": "parameter", - "parameter": "gov.abolitions.nj_tanf_maximum_allowable_income", - "description": "Set all values of New Jersey TANF maximum allowable income to zero.", - "label": "Abolish New Jersey TANF maximum allowable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nj_tanf_countable_gross_unearned_income": { - "type": "parameter", - "parameter": "gov.abolitions.nj_tanf_countable_gross_unearned_income", - "description": "Set all values of New Jersey TANF countable gross unearned income to zero.", - "label": "Abolish New Jersey TANF countable gross unearned income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nj_tanf_gross_earned_income": { - "type": "parameter", - "parameter": "gov.abolitions.nj_tanf_gross_earned_income", - "description": "Set all values of New Jersey TANF gross earned income to zero.", - "label": "Abolish New Jersey TANF gross earned income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nj_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.nj_income_tax", - "description": "Set all values of New Jersey income tax to zero.", - "label": "Abolish New Jersey income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nj_main_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.nj_main_income_tax", - "description": "Set all values of New Jersey income tax to zero.", - "label": "Abolish New Jersey income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nj_income_tax_before_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.nj_income_tax_before_refundable_credits", - "description": "Set all values of New Jersey income tax to zero.", - "label": "Abolish New Jersey income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nj_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.nj_refundable_credits", - "description": "Set all values of New Jersey refundable credits to zero.", - "label": "Abolish New Jersey refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nj_withheld_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.nj_withheld_income_tax", - "description": "Set all values of New Jersey withheld income tax to zero.", - "label": "Abolish New Jersey withheld income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nj_childless_eitc_age_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.nj_childless_eitc_age_eligible", - "description": "Set all values of New Jersey Eligible for EITC to zero.", - "label": "Abolish New Jersey Eligible for EITC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nj_eitc_income_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.nj_eitc_income_eligible", - "description": "Set all values of New Jersey Eligible for EITC to zero.", - "label": "Abolish New Jersey Eligible for EITC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nj_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.nj_eitc", - "description": "Set all values of New Jersey EITC to zero.", - "label": "Abolish New Jersey EITC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nj_ctc_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.nj_ctc_eligible", - "description": "Set all values of Eligible for the New Jersey child tax credit to zero.", - "label": "Abolish Eligible for the New Jersey child tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nj_ctc": { - "type": "parameter", - "parameter": "gov.abolitions.nj_ctc", - "description": "Set all values of New Jersey Child Tax Credit to zero.", - "label": "Abolish New Jersey Child Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nj_cdcc": { - "type": "parameter", - "parameter": "gov.abolitions.nj_cdcc", - "description": "Set all values of New Jersey CDCC to zero.", - "label": "Abolish New Jersey CDCC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nj_property_tax_credit": { - "type": "parameter", - "parameter": "gov.abolitions.nj_property_tax_credit", - "description": "Set all values of New Jersey property tax credit to zero.", - "label": "Abolish New Jersey property tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nj_property_tax_credit_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.nj_property_tax_credit_eligible", - "description": "Set all values of New Jersey property tax credit eligibility to zero.", - "label": "Abolish New Jersey property tax credit eligibility", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nj_dependents_attending_college_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.nj_dependents_attending_college_exemption", - "description": "Set all values of New Jersey dependents attending college exemption to zero.", - "label": "Abolish New Jersey dependents attending college exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nj_blind_or_disabled_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.nj_blind_or_disabled_exemption", - "description": "Set all values of New Jersey blind or disabled exemption to zero.", - "label": "Abolish New Jersey blind or disabled exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nj_senior_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.nj_senior_exemption", - "description": "Set all values of New Jersey senior exemption to zero.", - "label": "Abolish New Jersey senior exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nj_dependents_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.nj_dependents_exemption", - "description": "Set all values of New Jersey qualified and other dependent children exemption to zero.", - "label": "Abolish New Jersey qualified and other dependent children exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nj_regular_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.nj_regular_exemption", - "description": "Set all values of New Jersey regular exemption to zero.", - "label": "Abolish New Jersey regular exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nj_total_exemptions": { - "type": "parameter", - "parameter": "gov.abolitions.nj_total_exemptions", - "description": "Set all values of New Jersey total exemption allowance to zero.", - "label": "Abolish New Jersey total exemption allowance", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nj_total_income": { - "type": "parameter", - "parameter": "gov.abolitions.nj_total_income", - "description": "Set all values of New Jersey total income by person to zero.", - "label": "Abolish New Jersey total income by person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nj_agi": { - "type": "parameter", - "parameter": "gov.abolitions.nj_agi", - "description": "Set all values of New Jersey adjusted gross income to zero.", - "label": "Abolish New Jersey adjusted gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nj_agi_subtractions": { - "type": "parameter", - "parameter": "gov.abolitions.nj_agi_subtractions", - "description": "Set all values of New Jersey subtractions from federal AGI by person to zero.", - "label": "Abolish New Jersey subtractions from federal AGI by person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nj_taxable_income_before_property_tax_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.nj_taxable_income_before_property_tax_deduction", - "description": "Set all values of New Jersey taxable income before property tax deduction to zero.", - "label": "Abolish New Jersey taxable income before property tax deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nj_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.nj_taxable_income", - "description": "Set all values of New Jersey taxable income to zero.", - "label": "Abolish New Jersey taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nj_taking_property_tax_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.nj_taking_property_tax_deduction", - "description": "Set all values of Household taking New Jersey property tax deduction to zero.", - "label": "Abolish Household taking New Jersey property tax deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nj_property_tax_deduction_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.nj_property_tax_deduction_eligible", - "description": "Set all values of New Jersey property tax deduction eligibility to zero.", - "label": "Abolish New Jersey property tax deduction eligibility", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nj_potential_property_tax_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.nj_potential_property_tax_deduction", - "description": "Set all values of New Jersey potential property tax deduction to zero.", - "label": "Abolish New Jersey potential property tax deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nj_property_tax_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.nj_property_tax_deduction", - "description": "Set all values of New Jersey property tax deduction to zero.", - "label": "Abolish New Jersey property tax deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nj_other_retirement_income_exclusion": { - "type": "parameter", - "parameter": "gov.abolitions.nj_other_retirement_income_exclusion", - "description": "Set all values of New Jersey Other Retirement Income Exclusion to zero.", - "label": "Abolish New Jersey Other Retirement Income Exclusion", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nj_eligible_pension_income": { - "type": "parameter", - "parameter": "gov.abolitions.nj_eligible_pension_income", - "description": "Set all values of New Jersey pension income eligible for pension exclusion to zero.", - "label": "Abolish New Jersey pension income eligible for pension exclusion", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nj_pension_retirement_exclusion": { - "type": "parameter", - "parameter": "gov.abolitions.nj_pension_retirement_exclusion", - "description": "Set all values of New Jersey Pension/Retirement Exclusion to zero.", - "label": "Abolish New Jersey Pension/Retirement Exclusion", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nj_retirement_exclusion_fraction": { - "type": "parameter", - "parameter": "gov.abolitions.nj_retirement_exclusion_fraction", - "description": "Set all values of New Jersey retirement exclusion fraction based on total income to zero.", - "label": "Abolish New Jersey retirement exclusion fraction based on total income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nj_other_retirement_special_exclusion": { - "type": "parameter", - "parameter": "gov.abolitions.nj_other_retirement_special_exclusion", - "description": "Set all values of New Jersey Other Retirement Special Exclusion to zero.", - "label": "Abolish New Jersey Other Retirement Special Exclusion", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nj_medical_expense_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.nj_medical_expense_deduction", - "description": "Set all values of New Jersey medical expense deduction to zero.", - "label": "Abolish New Jersey medical expense deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nj_total_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.nj_total_deductions", - "description": "Set all values of New Jersey total deductions to income to zero.", - "label": "Abolish New Jersey total deductions to income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ky_files_separately": { - "type": "parameter", - "parameter": "gov.abolitions.ky_files_separately", - "description": "Set all values of Married couple file separately on the Kentucky tax return to zero.", - "label": "Abolish Married couple file separately on the Kentucky tax return", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ky_income_tax_before_non_refundable_credits_unit": { - "type": "parameter", - "parameter": "gov.abolitions.ky_income_tax_before_non_refundable_credits_unit", - "description": "Set all values of Kentucky income tax before non-refundable credits combined to zero.", - "label": "Abolish Kentucky income tax before non-refundable credits combined", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ky_income_tax_before_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ky_income_tax_before_refundable_credits", - "description": "Set all values of Kentucky income tax before refundable credits to zero.", - "label": "Abolish Kentucky income tax before refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ky_subtractions": { - "type": "parameter", - "parameter": "gov.abolitions.ky_subtractions", - "description": "Set all values of Kentucky subtractions to zero.", - "label": "Abolish Kentucky subtractions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ky_income_tax_before_non_refundable_credits_joint": { - "type": "parameter", - "parameter": "gov.abolitions.ky_income_tax_before_non_refundable_credits_joint", - "description": "Set all values of Kentucky income tax before non-refundable credits when married filing jointly to zero.", - "label": "Abolish Kentucky income tax before non-refundable credits when married filing jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ky_agi": { - "type": "parameter", - "parameter": "gov.abolitions.ky_agi", - "description": "Set all values of Kentucky adjusted gross income to zero.", - "label": "Abolish Kentucky adjusted gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ky_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.ky_income_tax", - "description": "Set all values of Kentucky income tax to zero.", - "label": "Abolish Kentucky income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ky_taxable_income_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.ky_taxable_income_indiv", - "description": "Set all values of Kentucky taxable income when married couples file separately to zero.", - "label": "Abolish Kentucky taxable income when married couples file separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ky_income_tax_before_non_refundable_credits_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.ky_income_tax_before_non_refundable_credits_indiv", - "description": "Set all values of Kentucky income tax before non-refundable credits when married couples are filing separately to zero.", - "label": "Abolish Kentucky income tax before non-refundable credits when married couples are filing separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ky_taxable_income_joint": { - "type": "parameter", - "parameter": "gov.abolitions.ky_taxable_income_joint", - "description": "Set all values of Kentucky taxable income when married couples file jointly to zero.", - "label": "Abolish Kentucky taxable income when married couples file jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ky_withheld_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.ky_withheld_income_tax", - "description": "Set all values of Kentucky withheld income tax to zero.", - "label": "Abolish Kentucky withheld income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ky_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ky_non_refundable_credits", - "description": "Set all values of Kentucky non-refundable credits to zero.", - "label": "Abolish Kentucky non-refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ky_modified_agi": { - "type": "parameter", - "parameter": "gov.abolitions.ky_modified_agi", - "description": "Set all values of Kentucky modified adjusted gross income for the family size tax credit to zero.", - "label": "Abolish Kentucky modified adjusted gross income for the family size tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ky_family_size_tax_credit": { - "type": "parameter", - "parameter": "gov.abolitions.ky_family_size_tax_credit", - "description": "Set all values of Kentucky family size tax credit to zero.", - "label": "Abolish Kentucky family size tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ky_family_size_tax_credit_rate": { - "type": "parameter", - "parameter": "gov.abolitions.ky_family_size_tax_credit_rate", - "description": "Set all values of Kentucky family size tax credit rate to zero.", - "label": "Abolish Kentucky family size tax credit rate", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ky_tuition_tax_credit": { - "type": "parameter", - "parameter": "gov.abolitions.ky_tuition_tax_credit", - "description": "Set all values of Kentucky tuition tax credit to zero.", - "label": "Abolish Kentucky tuition tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ky_tuition_tax_credit_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ky_tuition_tax_credit_eligible", - "description": "Set all values of Eligible for the Kentucky tuition tax credit to zero.", - "label": "Abolish Eligible for the Kentucky tuition tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ky_military_personal_tax_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ky_military_personal_tax_credits", - "description": "Set all values of Kentucky personal tax credits military service amount to zero.", - "label": "Abolish Kentucky personal tax credits military service amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ky_personal_tax_credits_joint": { - "type": "parameter", - "parameter": "gov.abolitions.ky_personal_tax_credits_joint", - "description": "Set all values of Kentucky personal tax credits when married couples file jointly to zero.", - "label": "Abolish Kentucky personal tax credits when married couples file jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ky_personal_tax_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ky_personal_tax_credits", - "description": "Set all values of Kentucky personal tax credits combined to zero.", - "label": "Abolish Kentucky personal tax credits combined", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ky_blind_personal_tax_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ky_blind_personal_tax_credits", - "description": "Set all values of Kentucky personal tax credits blind amount to zero.", - "label": "Abolish Kentucky personal tax credits blind amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ky_aged_personal_tax_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ky_aged_personal_tax_credits", - "description": "Set all values of Kentucky personal tax credits aged amount to zero.", - "label": "Abolish Kentucky personal tax credits aged amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ky_personal_tax_credits_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.ky_personal_tax_credits_indiv", - "description": "Set all values of Kentucky personal tax credits when married couples file separately to zero.", - "label": "Abolish Kentucky personal tax credits when married couples file separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ky_cdcc": { - "type": "parameter", - "parameter": "gov.abolitions.ky_cdcc", - "description": "Set all values of Kentucky household and dependent care service credit to zero.", - "label": "Abolish Kentucky household and dependent care service credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ky_service_credits_percentage_pre_1998": { - "type": "parameter", - "parameter": "gov.abolitions.ky_service_credits_percentage_pre_1998", - "description": "Set all values of Share of service credit months worked before 1998 to zero.", - "label": "Abolish Share of service credit months worked before 1998", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ky_pension_income_exclusion": { - "type": "parameter", - "parameter": "gov.abolitions.ky_pension_income_exclusion", - "description": "Set all values of KY Pension Income Exclusion to zero.", - "label": "Abolish KY Pension Income Exclusion", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ky_pension_income_exclusion_exemption_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ky_pension_income_exclusion_exemption_eligible", - "description": "Set all values of KY Pension Income Exclusion Exemption Eligible to zero.", - "label": "Abolish KY Pension Income Exclusion Exemption Eligible", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ky_deductions_joint": { - "type": "parameter", - "parameter": "gov.abolitions.ky_deductions_joint", - "description": "Set all values of Kentucky itemized deductions when married couples file jointly to zero.", - "label": "Abolish Kentucky itemized deductions when married couples file jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ky_itemized_deductions_unit": { - "type": "parameter", - "parameter": "gov.abolitions.ky_itemized_deductions_unit", - "description": "Set all values of Kentucky itemized deductions to zero.", - "label": "Abolish Kentucky itemized deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ky_standard_deduction_joint": { - "type": "parameter", - "parameter": "gov.abolitions.ky_standard_deduction_joint", - "description": "Set all values of Kentucky standard deduction when married couples file jointly to zero.", - "label": "Abolish Kentucky standard deduction when married couples file jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ky_itemized_deductions_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.ky_itemized_deductions_indiv", - "description": "Set all values of Kentucky itemized deductions when married couples file separately to zero.", - "label": "Abolish Kentucky itemized deductions when married couples file separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ky_standard_deduction_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.ky_standard_deduction_indiv", - "description": "Set all values of Kentucky standard deduction when married couples file separately to zero.", - "label": "Abolish Kentucky standard deduction when married couples file separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ky_itemized_deductions_joint": { - "type": "parameter", - "parameter": "gov.abolitions.ky_itemized_deductions_joint", - "description": "Set all values of Kentucky itemized deductions when married couples file jointly to zero.", - "label": "Abolish Kentucky itemized deductions when married couples file jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ky_tax_unit_itemizes": { - "type": "parameter", - "parameter": "gov.abolitions.ky_tax_unit_itemizes", - "description": "Set all values of Whether the tax unit in Kentucky itemizes the deductions when married filing separately to zero.", - "label": "Abolish Whether the tax unit in Kentucky itemizes the deductions when married filing separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ky_deductions_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.ky_deductions_indiv", - "description": "Set all values of Kentucky income deductions when married couples file separately to zero.", - "label": "Abolish Kentucky income deductions when married couples file separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pa_withheld_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.pa_withheld_income_tax", - "description": "Set all values of Pennsylvania withheld income tax to zero.", - "label": "Abolish Pennsylvania withheld income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pa_refundable_tax_credits": { - "type": "parameter", - "parameter": "gov.abolitions.pa_refundable_tax_credits", - "description": "Set all values of Pennsylvania refundable tax credits to zero.", - "label": "Abolish Pennsylvania refundable tax credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pa_use_tax": { - "type": "parameter", - "parameter": "gov.abolitions.pa_use_tax", - "description": "Set all values of PA Use Tax to zero.", - "label": "Abolish PA Use Tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pa_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.pa_income_tax", - "description": "Set all values of Pennsylvania income tax to zero.", - "label": "Abolish Pennsylvania income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pa_tax_forgiveness_rate": { - "type": "parameter", - "parameter": "gov.abolitions.pa_tax_forgiveness_rate", - "description": "Set all values of PA tax forgiveness on eligibility income to zero.", - "label": "Abolish PA tax forgiveness on eligibility income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pa_income_tax_after_forgiveness": { - "type": "parameter", - "parameter": "gov.abolitions.pa_income_tax_after_forgiveness", - "description": "Set all values of PA income tax after forgiveness to zero.", - "label": "Abolish PA income tax after forgiveness", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pa_income_tax_before_forgiveness": { - "type": "parameter", - "parameter": "gov.abolitions.pa_income_tax_before_forgiveness", - "description": "Set all values of PA income tax before forgiveness to zero.", - "label": "Abolish PA income tax before forgiveness", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pa_eligibility_income": { - "type": "parameter", - "parameter": "gov.abolitions.pa_eligibility_income", - "description": "Set all values of PA eligibility income to zero.", - "label": "Abolish PA eligibility income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pa_tax_forgiveness_amount": { - "type": "parameter", - "parameter": "gov.abolitions.pa_tax_forgiveness_amount", - "description": "Set all values of PA forgiveness amount to zero.", - "label": "Abolish PA forgiveness amount", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pa_cdcc": { - "type": "parameter", - "parameter": "gov.abolitions.pa_cdcc", - "description": "Set all values of Pennsylvania Child and Dependent Care Credit to zero.", - "label": "Abolish Pennsylvania Child and Dependent Care Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pa_nontaxable_pension_income": { - "type": "parameter", - "parameter": "gov.abolitions.pa_nontaxable_pension_income", - "description": "Set all values of Pension income taxable by US but not by PA to zero.", - "label": "Abolish Pension income taxable by US but not by PA", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pa_adjusted_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.pa_adjusted_taxable_income", - "description": "Set all values of PA income tax after deductions to zero.", - "label": "Abolish PA income tax after deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pa_total_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.pa_total_taxable_income", - "description": "Set all values of PA total taxable income to zero.", - "label": "Abolish PA total taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pa_tanf_age_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.pa_tanf_age_eligible", - "description": "Set all values of Pennsylvania TANF age eligibility to zero.", - "label": "Abolish Pennsylvania TANF age eligibility", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pa_tanf_resources_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.pa_tanf_resources_eligible", - "description": "Set all values of Meets Pennsylvania TANF resource limit to zero.", - "label": "Abolish Meets Pennsylvania TANF resource limit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.pa_tanf_age_eligible_on_pregnant_women_limitation": { - "type": "parameter", - "parameter": "gov.abolitions.pa_tanf_age_eligible_on_pregnant_women_limitation", - "description": "Set all values of Pennsylvania TANF age eligibility on pregnant women requirement to zero.", - "label": "Abolish Pennsylvania TANF age eligibility on pregnant women requirement", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wv_withheld_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.wv_withheld_income_tax", - "description": "Set all values of West Virginia withheld income tax to zero.", - "label": "Abolish West Virginia withheld income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wv_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.wv_non_refundable_credits", - "description": "Set all values of West Virginia refundable tax credits to zero.", - "label": "Abolish West Virginia refundable tax credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wv_subtractions": { - "type": "parameter", - "parameter": "gov.abolitions.wv_subtractions", - "description": "Set all values of West Virginia subtractions from the adjusted gross income to zero.", - "label": "Abolish West Virginia subtractions from the adjusted gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wv_agi": { - "type": "parameter", - "parameter": "gov.abolitions.wv_agi", - "description": "Set all values of West Virginia adjusted gross income to zero.", - "label": "Abolish West Virginia adjusted gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wv_income_tax_before_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.wv_income_tax_before_refundable_credits", - "description": "Set all values of West Virginia income tax before refundable tax credits to zero.", - "label": "Abolish West Virginia income tax before refundable tax credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wv_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.wv_taxable_income", - "description": "Set all values of West Virginia taxable income to zero.", - "label": "Abolish West Virginia taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wv_income_tax_before_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.wv_income_tax_before_non_refundable_credits", - "description": "Set all values of West Virginia income tax before non-refundable tax credits to zero.", - "label": "Abolish West Virginia income tax before non-refundable tax credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wv_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.wv_refundable_credits", - "description": "Set all values of West Virginia refundable tax credits to zero.", - "label": "Abolish West Virginia refundable tax credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wv_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.wv_income_tax", - "description": "Set all values of West Virginia income tax to zero.", - "label": "Abolish West Virginia income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wv_cdcc": { - "type": "parameter", - "parameter": "gov.abolitions.wv_cdcc", - "description": "Set all values of West Virginia Child and Dependent Care Credit to zero.", - "label": "Abolish West Virginia Child and Dependent Care Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wv_sctc_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.wv_sctc_eligible", - "description": "Set all values of Eligible for the West Virginia senior citizens tax credit to zero.", - "label": "Abolish Eligible for the West Virginia senior citizens tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wv_sctc": { - "type": "parameter", - "parameter": "gov.abolitions.wv_sctc", - "description": "Set all values of West Virginia senior citizens tax credit to zero.", - "label": "Abolish West Virginia senior citizens tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wv_taxable_property_value": { - "type": "parameter", - "parameter": "gov.abolitions.wv_taxable_property_value", - "description": "Set all values of West Virginia taxable property value to zero.", - "label": "Abolish West Virginia taxable property value", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wv_homestead_excess_property_tax_credit_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.wv_homestead_excess_property_tax_credit_eligible", - "description": "Set all values of Eligible for the West Virginia homestead excess property tax credit to zero.", - "label": "Abolish Eligible for the West Virginia homestead excess property tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wv_homestead_excess_property_tax_credit": { - "type": "parameter", - "parameter": "gov.abolitions.wv_homestead_excess_property_tax_credit", - "description": "Set all values of West Virginia homestead excess property tax credit to zero.", - "label": "Abolish West Virginia homestead excess property tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wv_gross_household_income": { - "type": "parameter", - "parameter": "gov.abolitions.wv_gross_household_income", - "description": "Set all values of West Virginia gross household income to zero.", - "label": "Abolish West Virginia gross household income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wv_low_income_family_tax_credit_fpg": { - "type": "parameter", - "parameter": "gov.abolitions.wv_low_income_family_tax_credit_fpg", - "description": "Set all values of Federal poverty guidelines for the West Virginia low-income family tax credit to zero.", - "label": "Abolish Federal poverty guidelines for the West Virginia low-income family tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wv_low_income_family_tax_credit_agi": { - "type": "parameter", - "parameter": "gov.abolitions.wv_low_income_family_tax_credit_agi", - "description": "Set all values of Adjusted gross income for the West Virginia low-income family tax credit to zero.", - "label": "Abolish Adjusted gross income for the West Virginia low-income family tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wv_low_income_family_tax_credit_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.wv_low_income_family_tax_credit_eligible", - "description": "Set all values of Eligible for the West Virginia low-income family tax credit to zero.", - "label": "Abolish Eligible for the West Virginia low-income family tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wv_low_income_family_tax_credit": { - "type": "parameter", - "parameter": "gov.abolitions.wv_low_income_family_tax_credit", - "description": "Set all values of West Virginia low-income family tax credit to zero.", - "label": "Abolish West Virginia low-income family tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wv_personal_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.wv_personal_exemption", - "description": "Set all values of West Virginia personal exemption to zero.", - "label": "Abolish West Virginia personal exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wv_homestead_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.wv_homestead_exemption", - "description": "Set all values of West Virginia homestead exemption to zero.", - "label": "Abolish West Virginia homestead exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wv_low_income_earned_income_exclusion_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.wv_low_income_earned_income_exclusion_eligible", - "description": "Set all values of Eligible for the West Virginia low-income earned income exclusion to zero.", - "label": "Abolish Eligible for the West Virginia low-income earned income exclusion", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wv_low_income_earned_income_exclusion": { - "type": "parameter", - "parameter": "gov.abolitions.wv_low_income_earned_income_exclusion", - "description": "Set all values of West Virginia low-income earned income exclusion to zero.", - "label": "Abolish West Virginia low-income earned income exclusion", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wv_social_security_benefits_subtraction_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.wv_social_security_benefits_subtraction_eligible", - "description": "Set all values of Eligible for the West Virginia social security benefits subtraction to zero.", - "label": "Abolish Eligible for the West Virginia social security benefits subtraction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wv_social_security_benefits_subtraction_person": { - "type": "parameter", - "parameter": "gov.abolitions.wv_social_security_benefits_subtraction_person", - "description": "Set all values of West Virginia social security benefits subtraction for each person to zero.", - "label": "Abolish West Virginia social security benefits subtraction for each person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wv_social_security_benefits_subtraction": { - "type": "parameter", - "parameter": "gov.abolitions.wv_social_security_benefits_subtraction", - "description": "Set all values of West Virginia social security benefits subtraction to zero.", - "label": "Abolish West Virginia social security benefits subtraction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wv_senior_citizen_disability_deduction_person": { - "type": "parameter", - "parameter": "gov.abolitions.wv_senior_citizen_disability_deduction_person", - "description": "Set all values of West Virginia senior citizen or disability deduction for each person to zero.", - "label": "Abolish West Virginia senior citizen or disability deduction for each person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wv_senior_citizen_disability_deduction_eligible_person": { - "type": "parameter", - "parameter": "gov.abolitions.wv_senior_citizen_disability_deduction_eligible_person", - "description": "Set all values of Eligible person for the West Virginia senior citizen or disability deduction to zero.", - "label": "Abolish Eligible person for the West Virginia senior citizen or disability deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wv_senior_citizen_disability_deduction_total_modifications": { - "type": "parameter", - "parameter": "gov.abolitions.wv_senior_citizen_disability_deduction_total_modifications", - "description": "Set all values of West Virginia total modifications for the senior citizen or disability deduction to zero.", - "label": "Abolish West Virginia total modifications for the senior citizen or disability deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wv_senior_citizen_disability_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.wv_senior_citizen_disability_deduction", - "description": "Set all values of West Virginia senior citizen or disability deduction to zero.", - "label": "Abolish West Virginia senior citizen or disability deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wv_public_pension_subtraction_person": { - "type": "parameter", - "parameter": "gov.abolitions.wv_public_pension_subtraction_person", - "description": "Set all values of West Virginia public pension subtraction for each person to zero.", - "label": "Abolish West Virginia public pension subtraction for each person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.wv_public_pension_subtraction": { - "type": "parameter", - "parameter": "gov.abolitions.wv_public_pension_subtraction", - "description": "Set all values of West Virginia public pension subtraction to zero.", - "label": "Abolish West Virginia public pension subtraction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_reduced_tax": { - "type": "parameter", - "parameter": "gov.abolitions.ia_reduced_tax", - "description": "Set all values of Iowa income tax reduced amount for single tax units to zero.", - "label": "Abolish Iowa income tax reduced amount for single tax units", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_alternate_tax_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ia_alternate_tax_eligible", - "description": "Set all values of Iowa alternate tax eligible to zero.", - "label": "Abolish Iowa alternate tax eligible", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_income_tax_before_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ia_income_tax_before_refundable_credits", - "description": "Set all values of Iowa income tax before refundable credits to zero.", - "label": "Abolish Iowa income tax before refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_is_tax_exempt": { - "type": "parameter", - "parameter": "gov.abolitions.ia_is_tax_exempt", - "description": "Set all values of whether or not exempt from Iowa income tax because of low income to zero.", - "label": "Abolish whether or not exempt from Iowa income tax because of low income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_modified_income": { - "type": "parameter", - "parameter": "gov.abolitions.ia_modified_income", - "description": "Set all values of Iowa modified income used in tax-exempt and alternate-tax calculations to zero.", - "label": "Abolish Iowa modified income used in tax-exempt and alternate-tax calculations", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.ia_income_tax", - "description": "Set all values of Iowa income tax to zero.", - "label": "Abolish Iowa income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_reportable_social_security": { - "type": "parameter", - "parameter": "gov.abolitions.ia_reportable_social_security", - "description": "Set all values of Iowa reportable social security benefits to zero.", - "label": "Abolish Iowa reportable social security benefits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_withheld_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.ia_withheld_income_tax", - "description": "Set all values of Iowa withheld income tax to zero.", - "label": "Abolish Iowa withheld income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_income_tax_before_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ia_income_tax_before_credits", - "description": "Set all values of Iowa income tax before credits to zero.", - "label": "Abolish Iowa income tax before credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_files_separately": { - "type": "parameter", - "parameter": "gov.abolitions.ia_files_separately", - "description": "Set all values of married couple files separately on Iowa tax return to zero.", - "label": "Abolish married couple files separately on Iowa tax return", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_base_tax_joint": { - "type": "parameter", - "parameter": "gov.abolitions.ia_base_tax_joint", - "description": "Set all values of Iowa base tax when married couples file jointly to zero.", - "label": "Abolish Iowa base tax when married couples file jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_amt_joint": { - "type": "parameter", - "parameter": "gov.abolitions.ia_amt_joint", - "description": "Set all values of Iowa alternative minimum tax when married couples file jointly to zero.", - "label": "Abolish Iowa alternative minimum tax when married couples file jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_income_tax_joint": { - "type": "parameter", - "parameter": "gov.abolitions.ia_income_tax_joint", - "description": "Set all values of Iowa income tax when married couples file jointly to zero.", - "label": "Abolish Iowa income tax when married couples file jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_income_tax_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.ia_income_tax_indiv", - "description": "Set all values of Iowa income tax when married couples file separately to zero.", - "label": "Abolish Iowa income tax when married couples file separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_regular_tax_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.ia_regular_tax_indiv", - "description": "Set all values of Iowa regular tax calculated using income tax rate schedule when married couples file separately to zero.", - "label": "Abolish Iowa regular tax calculated using income tax rate schedule when married couples file separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_base_tax_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.ia_base_tax_indiv", - "description": "Set all values of Iowa base tax when married couples file separately to zero.", - "label": "Abolish Iowa base tax when married couples file separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_regular_tax_joint": { - "type": "parameter", - "parameter": "gov.abolitions.ia_regular_tax_joint", - "description": "Set all values of Iowa regular tax calculated using income tax rate schedule when married couples file jointly to zero.", - "label": "Abolish Iowa regular tax calculated using income tax rate schedule when married couples file jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_taxable_income_joint": { - "type": "parameter", - "parameter": "gov.abolitions.ia_taxable_income_joint", - "description": "Set all values of Iowa taxable income when married couple file jointly to zero.", - "label": "Abolish Iowa taxable income when married couple file jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_amt_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.ia_amt_indiv", - "description": "Set all values of Iowa alternative minimum tax when married couples file separately to zero.", - "label": "Abolish Iowa alternative minimum tax when married couples file separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_taxable_income_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.ia_taxable_income_indiv", - "description": "Set all values of Iowa taxable income when married couple file separately to zero.", - "label": "Abolish Iowa taxable income when married couple file separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_alternate_tax_unit": { - "type": "parameter", - "parameter": "gov.abolitions.ia_alternate_tax_unit", - "description": "Set all values of Iowa alternate tax calculated using worksheet to zero.", - "label": "Abolish Iowa alternate tax calculated using worksheet", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_alternate_tax_joint": { - "type": "parameter", - "parameter": "gov.abolitions.ia_alternate_tax_joint", - "description": "Set all values of Iowa alternate tax when married couples file jointly to zero.", - "label": "Abolish Iowa alternate tax when married couples file jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_alternate_tax_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.ia_alternate_tax_indiv", - "description": "Set all values of Iowa alternate tax when married couples file separately to zero.", - "label": "Abolish Iowa alternate tax when married couples file separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_itemized_deductions_joint": { - "type": "parameter", - "parameter": "gov.abolitions.ia_itemized_deductions_joint", - "description": "Set all values of Iowa itemized deductions for joint couples to zero.", - "label": "Abolish Iowa itemized deductions for joint couples", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_basic_deduction_joint": { - "type": "parameter", - "parameter": "gov.abolitions.ia_basic_deduction_joint", - "description": "Set all values of Iowa deduction of either standard or itemized deductions when married couples file jointly to zero.", - "label": "Abolish Iowa deduction of either standard or itemized deductions when married couples file jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_standard_deduction_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.ia_standard_deduction_indiv", - "description": "Set all values of Iowa standard deduction when married couples file separately to zero.", - "label": "Abolish Iowa standard deduction when married couples file separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_basic_deduction_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.ia_basic_deduction_indiv", - "description": "Set all values of Iowa deduction of either standard or itemized deductions when married couples file separately to zero.", - "label": "Abolish Iowa deduction of either standard or itemized deductions when married couples file separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_standard_deduction_joint": { - "type": "parameter", - "parameter": "gov.abolitions.ia_standard_deduction_joint", - "description": "Set all values of Iowa standard deduction when married couples file jointly to zero.", - "label": "Abolish Iowa standard deduction when married couples file jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_itemized_deductions_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.ia_itemized_deductions_indiv", - "description": "Set all values of Iowa itemized deductions for individual couples to zero.", - "label": "Abolish Iowa itemized deductions for individual couples", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_fedtax_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.ia_fedtax_deduction", - "description": "Set all values of Iowa deduction for selected components of federal income tax to zero.", - "label": "Abolish Iowa deduction for selected components of federal income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_qbi_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.ia_qbi_deduction", - "description": "Set all values of Iowa deduction that is fraction of federal qualified business income deduction to zero.", - "label": "Abolish Iowa deduction that is fraction of federal qualified business income deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_itemized_deductions_unit": { - "type": "parameter", - "parameter": "gov.abolitions.ia_itemized_deductions_unit", - "description": "Set all values of Iowa itemized deductions for tax unit to zero.", - "label": "Abolish Iowa itemized deductions for tax unit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.ia_eitc", - "description": "Set all values of Iowa earned income tax credit to zero.", - "label": "Abolish Iowa earned income tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ia_refundable_credits", - "description": "Set all values of Iowa refundable income tax credits to zero.", - "label": "Abolish Iowa refundable income tax credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_cdcc": { - "type": "parameter", - "parameter": "gov.abolitions.ia_cdcc", - "description": "Set all values of Iowa child/dependent care credit to zero.", - "label": "Abolish Iowa child/dependent care credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_exemption_credit": { - "type": "parameter", - "parameter": "gov.abolitions.ia_exemption_credit", - "description": "Set all values of Iowa exemption credit to zero.", - "label": "Abolish Iowa exemption credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_nonrefundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.ia_nonrefundable_credits", - "description": "Set all values of Iowa nonrefundable income tax credits to zero.", - "label": "Abolish Iowa nonrefundable income tax credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_pension_exclusion_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.ia_pension_exclusion_eligible", - "description": "Set all values of Eligible for the Iowa pension exclusion to zero.", - "label": "Abolish Eligible for the Iowa pension exclusion", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_pension_exclusion": { - "type": "parameter", - "parameter": "gov.abolitions.ia_pension_exclusion", - "description": "Set all values of Iowa pension exclusion to zero.", - "label": "Abolish Iowa pension exclusion", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_net_income": { - "type": "parameter", - "parameter": "gov.abolitions.ia_net_income", - "description": "Set all values of Iowa net income to zero.", - "label": "Abolish Iowa net income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_income_adjustments": { - "type": "parameter", - "parameter": "gov.abolitions.ia_income_adjustments", - "description": "Set all values of Iowa income adjustments to zero.", - "label": "Abolish Iowa income adjustments", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_gross_income": { - "type": "parameter", - "parameter": "gov.abolitions.ia_gross_income", - "description": "Set all values of Iowa gross income to zero.", - "label": "Abolish Iowa gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_prorate_fraction": { - "type": "parameter", - "parameter": "gov.abolitions.ia_prorate_fraction", - "description": "Set all values of Iowa joint amount proration fraction to zero.", - "label": "Abolish Iowa joint amount proration fraction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_regular_tax_consolidated": { - "type": "parameter", - "parameter": "gov.abolitions.ia_regular_tax_consolidated", - "description": "Set all values of Iowa regular tax for years on or after 2023 to zero.", - "label": "Abolish Iowa regular tax for years on or after 2023", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_alternate_tax_consolidated": { - "type": "parameter", - "parameter": "gov.abolitions.ia_alternate_tax_consolidated", - "description": "Set all values of Iowa alternate tax for years on or after 2023 to zero.", - "label": "Abolish Iowa alternate tax for years on or after 2023", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_income_tax_consolidated": { - "type": "parameter", - "parameter": "gov.abolitions.ia_income_tax_consolidated", - "description": "Set all values of Iowa income tax for years on or after 2023 to zero.", - "label": "Abolish Iowa income tax for years on or after 2023", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_additions_consolidated": { - "type": "parameter", - "parameter": "gov.abolitions.ia_additions_consolidated", - "description": "Set all values of Iowa additions to taxable income for years on or after 2023 to zero.", - "label": "Abolish Iowa additions to taxable income for years on or after 2023", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_taxable_income_modifications_consolidated": { - "type": "parameter", - "parameter": "gov.abolitions.ia_taxable_income_modifications_consolidated", - "description": "Set all values of Iowa modifications to taxable income for years on or after 2023 to zero.", - "label": "Abolish Iowa modifications to taxable income for years on or after 2023", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_taxable_income_consolidated": { - "type": "parameter", - "parameter": "gov.abolitions.ia_taxable_income_consolidated", - "description": "Set all values of Iowa taxable income for years on or after 2023 to zero.", - "label": "Abolish Iowa taxable income for years on or after 2023", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ia_subtractions_consolidated": { - "type": "parameter", - "parameter": "gov.abolitions.ia_subtractions_consolidated", - "description": "Set all values of Iowa subtractions from taxable income for years on or after 2023 to zero.", - "label": "Abolish Iowa subtractions from taxable income for years on or after 2023", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.az_withheld_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.az_withheld_income_tax", - "description": "Set all values of Arizona withheld income tax to zero.", - "label": "Abolish Arizona withheld income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.az_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.az_non_refundable_credits", - "description": "Set all values of Arizona non-refundable credits to zero.", - "label": "Abolish Arizona non-refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.az_agi": { - "type": "parameter", - "parameter": "gov.abolitions.az_agi", - "description": "Set all values of Arizona adjusted gross income to zero.", - "label": "Abolish Arizona adjusted gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.az_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.az_income_tax", - "description": "Set all values of Arizona income tax to zero.", - "label": "Abolish Arizona income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.az_subtractions": { - "type": "parameter", - "parameter": "gov.abolitions.az_subtractions", - "description": "Set all values of Arizona subtractions to zero.", - "label": "Abolish Arizona subtractions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.az_income_tax_before_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.az_income_tax_before_non_refundable_credits", - "description": "Set all values of Arizona income tax before non-refundable credits to zero.", - "label": "Abolish Arizona income tax before non-refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.az_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.az_taxable_income", - "description": "Set all values of Arizona taxable income to zero.", - "label": "Abolish Arizona taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.az_income_tax_before_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.az_income_tax_before_refundable_credits", - "description": "Set all values of Arizona income tax before refundable credits to zero.", - "label": "Abolish Arizona income tax before refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.az_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.az_refundable_credits", - "description": "Set all values of Arizona refundable credits to zero.", - "label": "Abolish Arizona refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.az_increased_excise_tax_credit": { - "type": "parameter", - "parameter": "gov.abolitions.az_increased_excise_tax_credit", - "description": "Set all values of Arizona Increased Excise Tax Credit to zero.", - "label": "Abolish Arizona Increased Excise Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.az_increased_excise_tax_credit_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.az_increased_excise_tax_credit_eligible", - "description": "Set all values of Eligible for Arizona Increased Excise Tax Credit to zero.", - "label": "Abolish Eligible for Arizona Increased Excise Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.az_dependent_tax_credit": { - "type": "parameter", - "parameter": "gov.abolitions.az_dependent_tax_credit", - "description": "Set all values of Arizona dependent tax credit to zero.", - "label": "Abolish Arizona dependent tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.az_family_tax_credit_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.az_family_tax_credit_eligible", - "description": "Set all values of Eligible for the Arizona Family Tax Credit to zero.", - "label": "Abolish Eligible for the Arizona Family Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.az_family_tax_credit": { - "type": "parameter", - "parameter": "gov.abolitions.az_family_tax_credit", - "description": "Set all values of Arizona Family Tax Credit to zero.", - "label": "Abolish Arizona Family Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.az_charitable_contributions_credit": { - "type": "parameter", - "parameter": "gov.abolitions.az_charitable_contributions_credit", - "description": "Set all values of Arizona charitable contributions credit to zero.", - "label": "Abolish Arizona charitable contributions credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.az_property_tax_credit_income": { - "type": "parameter", - "parameter": "gov.abolitions.az_property_tax_credit_income", - "description": "Set all values of Income for the Arizona property tax the credit to zero.", - "label": "Abolish Income for the Arizona property tax the credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.az_property_tax_credit_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.az_property_tax_credit_eligible", - "description": "Set all values of Eligible for the Arizona Property Tax Credit to zero.", - "label": "Abolish Eligible for the Arizona Property Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.az_property_tax_credit": { - "type": "parameter", - "parameter": "gov.abolitions.az_property_tax_credit", - "description": "Set all values of Arizona Property Tax Credit to zero.", - "label": "Abolish Arizona Property Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.az_blind_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.az_blind_exemption", - "description": "Set all values of Arizona blind exemption to zero.", - "label": "Abolish Arizona blind exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.az_stillborn_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.az_stillborn_exemption", - "description": "Set all values of Arizona stillborn exemption to zero.", - "label": "Abolish Arizona stillborn exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.az_exemptions": { - "type": "parameter", - "parameter": "gov.abolitions.az_exemptions", - "description": "Set all values of Arizona total exemptions to zero.", - "label": "Abolish Arizona total exemptions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.az_parents_grandparents_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.az_parents_grandparents_exemption", - "description": "Set all values of Arizona parents and grandparents exemption to zero.", - "label": "Abolish Arizona parents and grandparents exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.az_aged_exemption_eligible_person": { - "type": "parameter", - "parameter": "gov.abolitions.az_aged_exemption_eligible_person", - "description": "Set all values of Eligible person for the Arizona aged exemption to zero.", - "label": "Abolish Eligible person for the Arizona aged exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.az_aged_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.az_aged_exemption", - "description": "Set all values of Arizona aged exemption to zero.", - "label": "Abolish Arizona aged exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.az_public_pension_exclusion": { - "type": "parameter", - "parameter": "gov.abolitions.az_public_pension_exclusion", - "description": "Set all values of Arizona Pension Exclusion to zero.", - "label": "Abolish Arizona Pension Exclusion", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.az_military_retirement_subtraction": { - "type": "parameter", - "parameter": "gov.abolitions.az_military_retirement_subtraction", - "description": "Set all values of Arizona military retirement subtraction to zero.", - "label": "Abolish Arizona military retirement subtraction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.az_529_college_savings_plan_subtraction": { - "type": "parameter", - "parameter": "gov.abolitions.az_529_college_savings_plan_subtraction", - "description": "Set all values of Arizona 529 college savings plan subtraction to zero.", - "label": "Abolish Arizona 529 college savings plan subtraction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.az_long_term_capital_gains_subtraction": { - "type": "parameter", - "parameter": "gov.abolitions.az_long_term_capital_gains_subtraction", - "description": "Set all values of Arizona long-term capital gains subtraction to zero.", - "label": "Abolish Arizona long-term capital gains subtraction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.az_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.az_deductions", - "description": "Set all values of Arizona deductions to zero.", - "label": "Abolish Arizona deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.az_itemized_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.az_itemized_deductions", - "description": "Set all values of Arizona Itemized Deductions to zero.", - "label": "Abolish Arizona Itemized Deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.az_standard_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.az_standard_deduction", - "description": "Set all values of Arizona standard deduction to zero.", - "label": "Abolish Arizona standard deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.az_base_standard_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.az_base_standard_deduction", - "description": "Set all values of Arizona base standard deduction to zero.", - "label": "Abolish Arizona base standard deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.az_increased_standard_deduction_for_charitable_contributions": { - "type": "parameter", - "parameter": "gov.abolitions.az_increased_standard_deduction_for_charitable_contributions", - "description": "Set all values of Arizona increased standard deduction for charitable contributions to zero.", - "label": "Abolish Arizona increased standard deduction for charitable contributions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.az_tanf_eligible_child": { - "type": "parameter", - "parameter": "gov.abolitions.az_tanf_eligible_child", - "description": "Set all values of Eligible child for the Arizona Cash Assistance to zero.", - "label": "Abolish Eligible child for the Arizona Cash Assistance", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_files_separately": { - "type": "parameter", - "parameter": "gov.abolitions.mt_files_separately", - "description": "Set all values of married couple files separately on Montana tax return to zero.", - "label": "Abolish married couple files separately on Montana tax return", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.mt_eitc", - "description": "Set all values of Montana EITC to zero.", - "label": "Abolish Montana EITC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_capital_gain_credit": { - "type": "parameter", - "parameter": "gov.abolitions.mt_capital_gain_credit", - "description": "Set all values of Montana capital gain credit to zero.", - "label": "Abolish Montana capital gain credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_property_tax_rebate": { - "type": "parameter", - "parameter": "gov.abolitions.mt_property_tax_rebate", - "description": "Set all values of Montana property tax rebate to zero.", - "label": "Abolish Montana property tax rebate", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_income_tax_rebate": { - "type": "parameter", - "parameter": "gov.abolitions.mt_income_tax_rebate", - "description": "Set all values of Montana 2023 income tax rebate to zero.", - "label": "Abolish Montana 2023 income tax rebate", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_elderly_homeowner_or_renter_credit_gross_household_income": { - "type": "parameter", - "parameter": "gov.abolitions.mt_elderly_homeowner_or_renter_credit_gross_household_income", - "description": "Set all values of Montana gross household income for the elderly homeowner/renter credit to zero.", - "label": "Abolish Montana gross household income for the elderly homeowner/renter credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_elderly_homeowner_or_renter_credit_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.mt_elderly_homeowner_or_renter_credit_eligible", - "description": "Set all values of Eligible for the Montana Elderly Homeowner/Renter Credit to zero.", - "label": "Abolish Eligible for the Montana Elderly Homeowner/Renter Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_elderly_homeowner_or_renter_credit": { - "type": "parameter", - "parameter": "gov.abolitions.mt_elderly_homeowner_or_renter_credit", - "description": "Set all values of Montana Elderly Homeowner/Renter Credit to zero.", - "label": "Abolish Montana Elderly Homeowner/Renter Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_elderly_homeowner_or_renter_credit_net_household_income": { - "type": "parameter", - "parameter": "gov.abolitions.mt_elderly_homeowner_or_renter_credit_net_household_income", - "description": "Set all values of Net household income for Montana elderly homeowner or renter credit to zero.", - "label": "Abolish Net household income for Montana elderly homeowner or renter credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_interest_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.mt_interest_exemption", - "description": "Set all values of Montana interest exemption for the tax unit to zero.", - "label": "Abolish Montana interest exemption for the tax unit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_interest_exemption_person": { - "type": "parameter", - "parameter": "gov.abolitions.mt_interest_exemption_person", - "description": "Set all values of Montana interest exemption for each person to zero.", - "label": "Abolish Montana interest exemption for each person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_interest_exemption_eligible_person": { - "type": "parameter", - "parameter": "gov.abolitions.mt_interest_exemption_eligible_person", - "description": "Set all values of Eligible for the Montana interest exemption to zero.", - "label": "Abolish Eligible for the Montana interest exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_aged_exemption_eligible_person": { - "type": "parameter", - "parameter": "gov.abolitions.mt_aged_exemption_eligible_person", - "description": "Set all values of Montana aged exemptions when married couples file separately to zero.", - "label": "Abolish Montana aged exemptions when married couples file separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_dependent_exemptions_person": { - "type": "parameter", - "parameter": "gov.abolitions.mt_dependent_exemptions_person", - "description": "Set all values of Montana dependent exemption for each dependent to zero.", - "label": "Abolish Montana dependent exemption for each dependent", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_personal_exemptions_joint": { - "type": "parameter", - "parameter": "gov.abolitions.mt_personal_exemptions_joint", - "description": "Set all values of Montana exemptions when married couple files jointly to zero.", - "label": "Abolish Montana exemptions when married couple files jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_personal_exemptions_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.mt_personal_exemptions_indiv", - "description": "Set all values of Montana exemptions when married couples file separately to zero.", - "label": "Abolish Montana exemptions when married couples file separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_capital_gains_tax_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.mt_capital_gains_tax_indiv", - "description": "Set all values of Montana net long-term capital gains tax when married couples file separately to zero.", - "label": "Abolish Montana net long-term capital gains tax when married couples file separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_capital_gains_tax_joint": { - "type": "parameter", - "parameter": "gov.abolitions.mt_capital_gains_tax_joint", - "description": "Set all values of Montana net long-term capital gains tax when married couples file jointly to zero.", - "label": "Abolish Montana net long-term capital gains tax when married couples file jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_capital_gains_tax_applicable_threshold_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.mt_capital_gains_tax_applicable_threshold_indiv", - "description": "Set all values of Montana applicable threshold for the capital gains tax when married couples file separately to zero.", - "label": "Abolish Montana applicable threshold for the capital gains tax when married couples file separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_capital_gains_tax_applicable_threshold_joint": { - "type": "parameter", - "parameter": "gov.abolitions.mt_capital_gains_tax_applicable_threshold_joint", - "description": "Set all values of Montana applicable threshold for the capital gains tax when married couples file jointly to zero.", - "label": "Abolish Montana applicable threshold for the capital gains tax when married couples file jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_subtractions": { - "type": "parameter", - "parameter": "gov.abolitions.mt_subtractions", - "description": "Set all values of Montana subtractions from federal adjusted gross income to zero.", - "label": "Abolish Montana subtractions from federal adjusted gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_tuition_subtraction_person": { - "type": "parameter", - "parameter": "gov.abolitions.mt_tuition_subtraction_person", - "description": "Set all values of Montana tuition subtraction to zero.", - "label": "Abolish Montana tuition subtraction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_tuition_subtraction": { - "type": "parameter", - "parameter": "gov.abolitions.mt_tuition_subtraction", - "description": "Set all values of Montana tuition subtraction to zero.", - "label": "Abolish Montana tuition subtraction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_disability_income_exclusion_person": { - "type": "parameter", - "parameter": "gov.abolitions.mt_disability_income_exclusion_person", - "description": "Set all values of Montana disability income exclusion for each person to zero.", - "label": "Abolish Montana disability income exclusion for each person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_disability_income_exclusion": { - "type": "parameter", - "parameter": "gov.abolitions.mt_disability_income_exclusion", - "description": "Set all values of Montana disability income exclusion to zero.", - "label": "Abolish Montana disability income exclusion", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_disability_income_exclusion_eligible_person": { - "type": "parameter", - "parameter": "gov.abolitions.mt_disability_income_exclusion_eligible_person", - "description": "Set all values of Montana disability income exclusion eligible person to zero.", - "label": "Abolish Montana disability income exclusion eligible person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_old_age_subtraction": { - "type": "parameter", - "parameter": "gov.abolitions.mt_old_age_subtraction", - "description": "Set all values of Montana old age subtraction to zero.", - "label": "Abolish Montana old age subtraction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.mt_income_tax", - "description": "Set all values of Montana income tax to zero.", - "label": "Abolish Montana income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_taxable_social_security": { - "type": "parameter", - "parameter": "gov.abolitions.mt_taxable_social_security", - "description": "Set all values of Montana taxable social security benefits to zero.", - "label": "Abolish Montana taxable social security benefits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_applicable_ald_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.mt_applicable_ald_deductions", - "description": "Set all values of Montana applicable above-the-line deductions to zero.", - "label": "Abolish Montana applicable above-the-line deductions ", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_withheld_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.mt_withheld_income_tax", - "description": "Set all values of Montana withheld income tax to zero.", - "label": "Abolish Montana withheld income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_agi": { - "type": "parameter", - "parameter": "gov.abolitions.mt_agi", - "description": "Set all values of Montana Adjusted Gross Income for each individual to zero.", - "label": "Abolish Montana Adjusted Gross Income for each individual", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_additions": { - "type": "parameter", - "parameter": "gov.abolitions.mt_additions", - "description": "Set all values of Montana additions to federal adjusted gross income to zero.", - "label": "Abolish Montana additions to federal adjusted gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_income_tax_joint": { - "type": "parameter", - "parameter": "gov.abolitions.mt_income_tax_joint", - "description": "Set all values of Montana income tax when married couples are filing jointly to zero.", - "label": "Abolish Montana income tax when married couples are filing jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_regular_income_tax_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.mt_regular_income_tax_indiv", - "description": "Set all values of Montana income (subtracting capital gains before 2024) tax before refundable credits, when married couples file separately to zero.", - "label": "Abolish Montana income (subtracting capital gains before 2024) tax before refundable credits, when married couples file separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_income_tax_before_non_refundable_credits_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.mt_income_tax_before_non_refundable_credits_indiv", - "description": "Set all values of Montana income tax before refundable credits when married couples file separately to zero.", - "label": "Abolish Montana income tax before refundable credits when married couples file separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_refundable_credits_before_renter_credit": { - "type": "parameter", - "parameter": "gov.abolitions.mt_refundable_credits_before_renter_credit", - "description": "Set all values of Montana refundable credits before adding the elderly homeowner or renter credit to zero.", - "label": "Abolish Montana refundable credits before adding the elderly homeowner or renter credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_income_tax_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.mt_income_tax_indiv", - "description": "Set all values of Montana income tax when married couples are filing separately to zero.", - "label": "Abolish Montana income tax when married couples are filing separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.mt_non_refundable_credits", - "description": "Set all values of Montana refundable credits to zero.", - "label": "Abolish Montana refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_taxable_income_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.mt_taxable_income_indiv", - "description": "Set all values of Montana taxable income when married couples are filing separately to zero.", - "label": "Abolish Montana taxable income when married couples are filing separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_income_tax_before_non_refundable_credits_joint": { - "type": "parameter", - "parameter": "gov.abolitions.mt_income_tax_before_non_refundable_credits_joint", - "description": "Set all values of Montana income tax before refundable credits when married couples file jointly to zero.", - "label": "Abolish Montana income tax before refundable credits when married couples file jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_income_tax_before_refundable_credits_joint": { - "type": "parameter", - "parameter": "gov.abolitions.mt_income_tax_before_refundable_credits_joint", - "description": "Set all values of Montana income tax before refundable credits when married couples are filing jointly to zero.", - "label": "Abolish Montana income tax before refundable credits when married couples are filing jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_regular_income_tax_joint": { - "type": "parameter", - "parameter": "gov.abolitions.mt_regular_income_tax_joint", - "description": "Set all values of Montana income (subtracting capital gains since 2024) tax before refundable credits, when married couples file separately to zero.", - "label": "Abolish Montana income (subtracting capital gains since 2024) tax before refundable credits, when married couples file separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.mt_refundable_credits", - "description": "Set all values of Montana refundable credits to zero.", - "label": "Abolish Montana refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_income_tax_before_refundable_credits_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.mt_income_tax_before_refundable_credits_indiv", - "description": "Set all values of Montana income tax before refundable credits when married couples are filing separately to zero.", - "label": "Abolish Montana income tax before refundable credits when married couples are filing separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_taxable_income_joint": { - "type": "parameter", - "parameter": "gov.abolitions.mt_taxable_income_joint", - "description": "Set all values of Montana taxable income when married couples file jointly to zero.", - "label": "Abolish Montana taxable income when married couples file jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_pre_dependent_exemption_taxable_income_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.mt_pre_dependent_exemption_taxable_income_indiv", - "description": "Set all values of Montana taxable income before the dependent exemption when married couples are filing separately to zero.", - "label": "Abolish Montana taxable income before the dependent exemption when married couples are filing separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_income_tax_before_refundable_credits_unit": { - "type": "parameter", - "parameter": "gov.abolitions.mt_income_tax_before_refundable_credits_unit", - "description": "Set all values of Montana income tax before refundable credits to zero.", - "label": "Abolish Montana income tax before refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_deductions_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.mt_deductions_indiv", - "description": "Set all values of The total amount of Montana deductions and exemptions when married filing separately to zero.", - "label": "Abolish The total amount of Montana deductions and exemptions when married filing separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_child_dependent_care_expense_deduction_eligible_child": { - "type": "parameter", - "parameter": "gov.abolitions.mt_child_dependent_care_expense_deduction_eligible_child", - "description": "Set all values of Eligible child for the Montana child dependent care expense deduction to zero.", - "label": "Abolish Eligible child for the Montana child dependent care expense deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_child_dependent_care_expense_deduction_eligible_children": { - "type": "parameter", - "parameter": "gov.abolitions.mt_child_dependent_care_expense_deduction_eligible_children", - "description": "Set all values of Eligible children for the Montana child dependent care expense deduction to zero.", - "label": "Abolish Eligible children for the Montana child dependent care expense deduction ", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_child_dependent_care_expense_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.mt_child_dependent_care_expense_deduction", - "description": "Set all values of Montana child dependent care expense deduction to zero.", - "label": "Abolish Montana child dependent care expense deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_federal_income_tax_deduction_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.mt_federal_income_tax_deduction_indiv", - "description": "Set all values of Montana federal income tax deduction when married couples are filing separately to zero.", - "label": "Abolish Montana federal income tax deduction when married couples are filing separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_federal_income_tax_deduction_unit": { - "type": "parameter", - "parameter": "gov.abolitions.mt_federal_income_tax_deduction_unit", - "description": "Set all values of Montana federal income tax deduction for the entire tax unit to zero.", - "label": "Abolish Montana federal income tax deduction for the entire tax unit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_salt_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.mt_salt_deduction", - "description": "Set all values of Montana state and local tax deduction to zero.", - "label": "Abolish Montana state and local tax deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_misc_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.mt_misc_deductions", - "description": "Set all values of Montana miscellaneous deductions to zero.", - "label": "Abolish Montana miscellaneous deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_itemized_deductions_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.mt_itemized_deductions_indiv", - "description": "Set all values of Montana itemized deductions when married couples are filing separately to zero.", - "label": "Abolish Montana itemized deductions when married couples are filing separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_itemized_deductions_joint": { - "type": "parameter", - "parameter": "gov.abolitions.mt_itemized_deductions_joint", - "description": "Set all values of Montana itemized deductions when married couples are filing jointly to zero.", - "label": "Abolish Montana itemized deductions when married couples are filing jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_medical_expense_deduction_joint": { - "type": "parameter", - "parameter": "gov.abolitions.mt_medical_expense_deduction_joint", - "description": "Set all values of Montana medical expense deduction when married couples are filing jointly to zero.", - "label": "Abolish Montana medical expense deduction when married couples are filing jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_medical_expense_deduction_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.mt_medical_expense_deduction_indiv", - "description": "Set all values of Montana medical expense deduction when married couples are filing separately to zero.", - "label": "Abolish Montana medical expense deduction when married couples are filing separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_standard_deduction_joint": { - "type": "parameter", - "parameter": "gov.abolitions.mt_standard_deduction_joint", - "description": "Set all values of Montana standard deduction when married couples are filing jointly to zero.", - "label": "Abolish Montana standard deduction when married couples are filing jointly", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_standard_deduction_indiv": { - "type": "parameter", - "parameter": "gov.abolitions.mt_standard_deduction_indiv", - "description": "Set all values of Montana standard deduction when married couples are filing separately to zero.", - "label": "Abolish Montana standard deduction when married couples are filing separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.mt_tax_unit_itemizes": { - "type": "parameter", - "parameter": "gov.abolitions.mt_tax_unit_itemizes", - "description": "Set all values of Whether the tax unit in Montana itemizes the deductions when married filing separately to zero.", - "label": "Abolish Whether the tax unit in Montana itemizes the deductions when married filing separately", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nm_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.nm_income_tax", - "description": "Set all values of New Mexico income tax to zero.", - "label": "Abolish New Mexico income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nm_other_deductions_and_exemptions": { - "type": "parameter", - "parameter": "gov.abolitions.nm_other_deductions_and_exemptions", - "description": "Set all values of New Mexico other income deductions and exemptions to zero.", - "label": "Abolish New Mexico other income deductions and exemptions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nm_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.nm_taxable_income", - "description": "Set all values of New Mexico taxable income to zero.", - "label": "Abolish New Mexico taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nm_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.nm_refundable_credits", - "description": "Set all values of New Mexico refundable credits to zero.", - "label": "Abolish New Mexico refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nm_income_tax_before_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.nm_income_tax_before_refundable_credits", - "description": "Set all values of New Mexico income tax before refundable credits to zero.", - "label": "Abolish New Mexico income tax before refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nm_income_tax_before_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.nm_income_tax_before_non_refundable_credits", - "description": "Set all values of New Mexico income tax before non-refundable credits to zero.", - "label": "Abolish New Mexico income tax before non-refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nm_modified_gross_income": { - "type": "parameter", - "parameter": "gov.abolitions.nm_modified_gross_income", - "description": "Set all values of New Mexico modified gross income to zero.", - "label": "Abolish New Mexico modified gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nm_withheld_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.nm_withheld_income_tax", - "description": "Set all values of New Mexico withheld income tax to zero.", - "label": "Abolish New Mexico withheld income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nm_2021_income_rebate": { - "type": "parameter", - "parameter": "gov.abolitions.nm_2021_income_rebate", - "description": "Set all values of New Mexico 2021 income tax rebate to zero.", - "label": "Abolish New Mexico 2021 income tax rebate", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nm_additional_2021_income_rebate": { - "type": "parameter", - "parameter": "gov.abolitions.nm_additional_2021_income_rebate", - "description": "Set all values of New Mexico additional 2021 income tax rebate to zero.", - "label": "Abolish New Mexico additional 2021 income tax rebate", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nm_supplemental_2021_income_rebate": { - "type": "parameter", - "parameter": "gov.abolitions.nm_supplemental_2021_income_rebate", - "description": "Set all values of New Mexico supplemental 2021 income tax rebate to zero.", - "label": "Abolish New Mexico supplemental 2021 income tax rebate", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nm_property_tax_rebate": { - "type": "parameter", - "parameter": "gov.abolitions.nm_property_tax_rebate", - "description": "Set all values of New Mexico property tax rebate to zero.", - "label": "Abolish New Mexico property tax rebate", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nm_property_tax_rebate_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.nm_property_tax_rebate_eligible", - "description": "Set all values of Eligible for the New Mexico property tax rebate to zero.", - "label": "Abolish Eligible for the New Mexico property tax rebate", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nm_low_income_comprehensive_tax_rebate": { - "type": "parameter", - "parameter": "gov.abolitions.nm_low_income_comprehensive_tax_rebate", - "description": "Set all values of New Mexico low income comprehensive tax rebate to zero.", - "label": "Abolish New Mexico low income comprehensive tax rebate", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nm_low_income_comprehensive_tax_rebate_exemptions": { - "type": "parameter", - "parameter": "gov.abolitions.nm_low_income_comprehensive_tax_rebate_exemptions", - "description": "Set all values of New Mexico low income comprehensive tax rebate exemptions to zero.", - "label": "Abolish New Mexico low income comprehensive tax rebate exemptions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nm_medical_expense_credit": { - "type": "parameter", - "parameter": "gov.abolitions.nm_medical_expense_credit", - "description": "Set all values of New Mexico unreimbursed medical expense care credit to zero.", - "label": "Abolish New Mexico unreimbursed medical expense care credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nm_ctc": { - "type": "parameter", - "parameter": "gov.abolitions.nm_ctc", - "description": "Set all values of New Mexico child income tax credit to zero.", - "label": "Abolish New Mexico child income tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nm_eitc_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.nm_eitc_eligible", - "description": "Set all values of Eligible for New Mexico EITC to zero.", - "label": "Abolish Eligible for New Mexico EITC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nm_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.nm_eitc", - "description": "Set all values of New Mexico EITC to zero.", - "label": "Abolish New Mexico EITC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nm_eitc_demographic_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.nm_eitc_demographic_eligible", - "description": "Set all values of Meets demographic eligibility for New Mexico EITC to zero.", - "label": "Abolish Meets demographic eligibility for New Mexico EITC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nm_cdcc_eligible_child": { - "type": "parameter", - "parameter": "gov.abolitions.nm_cdcc_eligible_child", - "description": "Set all values of Eligible child for the New Mexico dependent child day care credit to zero.", - "label": "Abolish Eligible child for the New Mexico dependent child day care credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nm_cdcc_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.nm_cdcc_eligible", - "description": "Set all values of Eligible household for the New Mexico dependent child day care credit to zero.", - "label": "Abolish Eligible household for the New Mexico dependent child day care credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nm_cdcc_max_amount": { - "type": "parameter", - "parameter": "gov.abolitions.nm_cdcc_max_amount", - "description": "Set all values of New Mexico maximum credit for dependent child day care credit to zero.", - "label": "Abolish New Mexico maximum credit for dependent child day care credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nm_cdcc": { - "type": "parameter", - "parameter": "gov.abolitions.nm_cdcc", - "description": "Set all values of New Mexico dependent child day care credit to zero.", - "label": "Abolish New Mexico dependent child day care credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nm_social_security_income_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.nm_social_security_income_exemption", - "description": "Set all values of New Mexico social security income exemption to zero.", - "label": "Abolish New Mexico social security income exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nm_low_and_middle_income_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.nm_low_and_middle_income_exemption", - "description": "Set all values of New Mexico low- and middle-income exemption to zero.", - "label": "Abolish New Mexico low- and middle-income exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nm_aged_blind_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.nm_aged_blind_exemption", - "description": "Set all values of New Mexico aged and blind exemption to zero.", - "label": "Abolish New Mexico aged and blind exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nm_hundred_year_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.nm_hundred_year_exemption", - "description": "Set all values of New Mexico hundred year exemption to zero.", - "label": "Abolish New Mexico hundred year exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nm_medical_expense_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.nm_medical_expense_exemption", - "description": "Set all values of New Mexico unreimbursed medical expense care exemption to zero.", - "label": "Abolish New Mexico unreimbursed medical expense care exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nm_exemptions": { - "type": "parameter", - "parameter": "gov.abolitions.nm_exemptions", - "description": "Set all values of New Mexico income exemptions to zero.", - "label": "Abolish New Mexico income exemptions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nm_armed_forces_retirement_pay_exemption_person": { - "type": "parameter", - "parameter": "gov.abolitions.nm_armed_forces_retirement_pay_exemption_person", - "description": "Set all values of New Mexico armed forces retirement pay exemption per person to zero.", - "label": "Abolish New Mexico armed forces retirement pay exemption per person ", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nm_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.nm_deductions", - "description": "Set all values of New Mexico income deductions to zero.", - "label": "Abolish New Mexico income deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nm_medical_care_expense_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.nm_medical_care_expense_deduction", - "description": "Set all values of New Mexico medical care expense deduction to zero.", - "label": "Abolish New Mexico medical care expense deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nm_net_capital_gains_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.nm_net_capital_gains_deduction", - "description": "Set all values of New Mexico net capital gain deduction to zero.", - "label": "Abolish New Mexico net capital gain deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nm_salt_add_back": { - "type": "parameter", - "parameter": "gov.abolitions.nm_salt_add_back", - "description": "Set all values of New Mexico salt addback to zero.", - "label": "Abolish New Mexico salt addback", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nm_deduction_for_certain_dependents": { - "type": "parameter", - "parameter": "gov.abolitions.nm_deduction_for_certain_dependents", - "description": "Set all values of New Mexico deduction for certain dependents to zero.", - "label": "Abolish New Mexico deduction for certain dependents", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.nm_deduction_for_certain_dependents_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.nm_deduction_for_certain_dependents_eligible", - "description": "Set all values of Eligibility for New Mexico deduction for certain dependents to zero.", - "label": "Abolish Eligibility for New Mexico deduction for certain dependents", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.md_taxable_income", - "description": "Set all values of MD taxable income to zero.", - "label": "Abolish MD taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_withheld_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.md_withheld_income_tax", - "description": "Set all values of Maryland withheld income tax to zero.", - "label": "Abolish Maryland withheld income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.md_income_tax", - "description": "Set all values of MD income tax to zero.", - "label": "Abolish MD income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_income_tax_before_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.md_income_tax_before_refundable_credits", - "description": "Set all values of MD income tax after non-refundable credits to zero.", - "label": "Abolish MD income tax after non-refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_income_tax_before_credits": { - "type": "parameter", - "parameter": "gov.abolitions.md_income_tax_before_credits", - "description": "Set all values of MD income tax before credits to zero.", - "label": "Abolish MD income tax before credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_agi": { - "type": "parameter", - "parameter": "gov.abolitions.md_agi", - "description": "Set all values of MD AGI to zero.", - "label": "Abolish MD AGI", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_total_subtractions": { - "type": "parameter", - "parameter": "gov.abolitions.md_total_subtractions", - "description": "Set all values of MD total subtractions from AGI to zero.", - "label": "Abolish MD total subtractions from AGI", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_two_income_subtraction": { - "type": "parameter", - "parameter": "gov.abolitions.md_two_income_subtraction", - "description": "Set all values of MD two-income married couple subtraction from AGI to zero.", - "label": "Abolish MD two-income married couple subtraction from AGI", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_socsec_subtraction": { - "type": "parameter", - "parameter": "gov.abolitions.md_socsec_subtraction", - "description": "Set all values of MD social security subtraction from AGI to zero.", - "label": "Abolish MD social security subtraction from AGI", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_socsec_subtraction_amount": { - "type": "parameter", - "parameter": "gov.abolitions.md_socsec_subtraction_amount", - "description": "Set all values of MD social security subtraction from AGI to zero.", - "label": "Abolish MD social security subtraction from AGI", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_pension_subtraction": { - "type": "parameter", - "parameter": "gov.abolitions.md_pension_subtraction", - "description": "Set all values of MD pension subtraction from AGI to zero.", - "label": "Abolish MD pension subtraction from AGI", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_dependent_care_subtraction": { - "type": "parameter", - "parameter": "gov.abolitions.md_dependent_care_subtraction", - "description": "Set all values of MD depdendent care subtraction from AGI to zero.", - "label": "Abolish MD depdendent care subtraction from AGI", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_pension_subtraction_amount": { - "type": "parameter", - "parameter": "gov.abolitions.md_pension_subtraction_amount", - "description": "Set all values of MD pension subtraction from AGI to zero.", - "label": "Abolish MD pension subtraction from AGI", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_hundred_year_subtraction_person": { - "type": "parameter", - "parameter": "gov.abolitions.md_hundred_year_subtraction_person", - "description": "Set all values of Maryland hundred year subtraction per person to zero.", - "label": "Abolish Maryland hundred year subtraction per person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_hundred_year_subtraction_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.md_hundred_year_subtraction_eligible", - "description": "Set all values of Eligible for the Maryland hundred year subtraction to zero.", - "label": "Abolish Eligible for the Maryland hundred year subtraction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_hundred_year_subtraction": { - "type": "parameter", - "parameter": "gov.abolitions.md_hundred_year_subtraction", - "description": "Set all values of Maryland hundred year subtraction to zero.", - "label": "Abolish Maryland hundred year subtraction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_tax_unit_earned_income": { - "type": "parameter", - "parameter": "gov.abolitions.md_tax_unit_earned_income", - "description": "Set all values of MD tax unit earned income to zero.", - "label": "Abolish MD tax unit earned income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.md_non_refundable_credits", - "description": "Set all values of MD non-refundable credits to zero.", - "label": "Abolish MD non-refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.md_refundable_credits", - "description": "Set all values of MD refundable credits to zero.", - "label": "Abolish MD refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_qualifies_for_unmarried_childless_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.md_qualifies_for_unmarried_childless_eitc", - "description": "Set all values of Qualifies for the MD unmarried childless EITC to zero.", - "label": "Abolish Qualifies for the MD unmarried childless EITC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.federal_eitc_without_age_minimum": { - "type": "parameter", - "parameter": "gov.abolitions.federal_eitc_without_age_minimum", - "description": "Set all values of Federal EITC without age minimum to zero.", - "label": "Abolish Federal EITC without age minimum", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.md_eitc", - "description": "Set all values of MD total EITC to zero.", - "label": "Abolish MD total EITC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_married_or_has_child_non_refundable_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.md_married_or_has_child_non_refundable_eitc", - "description": "Set all values of Maryland non-refundable EITC for filers who are married or have qualifying child to zero.", - "label": "Abolish Maryland non-refundable EITC for filers who are married or have qualifying child", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_non_refundable_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.md_non_refundable_eitc", - "description": "Set all values of MD EITC non-refundable State tax credit to zero.", - "label": "Abolish MD EITC non-refundable State tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_unmarried_childless_non_refundable_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.md_unmarried_childless_non_refundable_eitc", - "description": "Set all values of Maryland unmarried childless non-refundable EITC to zero.", - "label": "Abolish Maryland unmarried childless non-refundable EITC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_refundable_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.md_refundable_eitc", - "description": "Set all values of MD EITC refundable State tax credit to zero.", - "label": "Abolish MD EITC refundable State tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_married_or_has_child_refundable_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.md_married_or_has_child_refundable_eitc", - "description": "Set all values of Maryland refundable EITC for filers who are married or have qualifying child to zero.", - "label": "Abolish Maryland refundable EITC for filers who are married or have qualifying child", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_unmarried_childless_refundable_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.md_unmarried_childless_refundable_eitc", - "description": "Set all values of Maryland unmarried childless refundable EITC to zero.", - "label": "Abolish Maryland unmarried childless refundable EITC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_eligible_md_poverty_line_credit": { - "type": "parameter", - "parameter": "gov.abolitions.is_eligible_md_poverty_line_credit", - "description": "Set all values of Eligible for MD Poverty Line Credit to zero.", - "label": "Abolish Eligible for MD Poverty Line Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_poverty_line_credit": { - "type": "parameter", - "parameter": "gov.abolitions.md_poverty_line_credit", - "description": "Set all values of MD Poverty Line Credit to zero.", - "label": "Abolish MD Poverty Line Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_senior_tax_credit": { - "type": "parameter", - "parameter": "gov.abolitions.md_senior_tax_credit", - "description": "Set all values of Maryland Senior Tax Credit to zero.", - "label": "Abolish Maryland Senior Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_senior_tax_credit_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.md_senior_tax_credit_eligible", - "description": "Set all values of Eligible for the Maryland Senior Tax Credit to zero.", - "label": "Abolish Eligible for the Maryland Senior Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_ctc": { - "type": "parameter", - "parameter": "gov.abolitions.md_ctc", - "description": "Set all values of Maryland Child Tax Credit to zero.", - "label": "Abolish Maryland Child Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_ctc_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.md_ctc_eligible", - "description": "Set all values of Eligible for the Maryland Child Tax Credit to zero.", - "label": "Abolish Eligible for the Maryland Child Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_refundable_cdcc": { - "type": "parameter", - "parameter": "gov.abolitions.md_refundable_cdcc", - "description": "Set all values of MD refundable CDCC to zero.", - "label": "Abolish MD refundable CDCC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_cdcc": { - "type": "parameter", - "parameter": "gov.abolitions.md_cdcc", - "description": "Set all values of MD CDCC to zero.", - "label": "Abolish MD CDCC", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_aged_blind_exemptions": { - "type": "parameter", - "parameter": "gov.abolitions.md_aged_blind_exemptions", - "description": "Set all values of MD aged blind exemptions to zero.", - "label": "Abolish MD aged blind exemptions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_blind_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.md_blind_exemption", - "description": "Set all values of MD blind exemption to zero.", - "label": "Abolish MD blind exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_exemptions": { - "type": "parameter", - "parameter": "gov.abolitions.md_exemptions", - "description": "Set all values of MD exemptions to zero.", - "label": "Abolish MD exemptions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_aged_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.md_aged_exemption", - "description": "Set all values of MD aged exemption to zero.", - "label": "Abolish MD aged exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_personal_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.md_personal_exemption", - "description": "Set all values of MD value per personal exemption to zero.", - "label": "Abolish MD value per personal exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_aged_dependent_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.md_aged_dependent_exemption", - "description": "Set all values of MD aged dependent exemption to zero.", - "label": "Abolish MD aged dependent exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_total_personal_exemptions": { - "type": "parameter", - "parameter": "gov.abolitions.md_total_personal_exemptions", - "description": "Set all values of MD total personal exemptions to zero.", - "label": "Abolish MD total personal exemptions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_capital_gains_surtax_applies": { - "type": "parameter", - "parameter": "gov.abolitions.md_capital_gains_surtax_applies", - "description": "Set all values of Maryland capital gains surtax applies to zero.", - "label": "Abolish Maryland capital gains surtax applies", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_capital_gains_surtax": { - "type": "parameter", - "parameter": "gov.abolitions.md_capital_gains_surtax", - "description": "Set all values of Maryland capital gains surtax to zero.", - "label": "Abolish Maryland capital gains surtax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_local_income_tax_before_credits": { - "type": "parameter", - "parameter": "gov.abolitions.md_local_income_tax_before_credits", - "description": "Set all values of MD local income tax before credits to zero.", - "label": "Abolish MD local income tax before credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_itemized_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.md_itemized_deductions", - "description": "Set all values of Maryland itemized deductions to zero.", - "label": "Abolish Maryland itemized deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_standard_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.md_standard_deduction", - "description": "Set all values of MD standard deduction to zero.", - "label": "Abolish MD standard deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.md_deductions", - "description": "Set all values of MD deductions to zero.", - "label": "Abolish MD deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_tanf_maximum_benefit": { - "type": "parameter", - "parameter": "gov.abolitions.md_tanf_maximum_benefit", - "description": "Set all values of Maryland TANF maximum benefit to zero.", - "label": "Abolish Maryland TANF maximum benefit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_tanf_count_children": { - "type": "parameter", - "parameter": "gov.abolitions.md_tanf_count_children", - "description": "Set all values of Maryland TANF number of children to zero.", - "label": "Abolish Maryland TANF number of children", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_tanf_gross_earned_income_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.md_tanf_gross_earned_income_deduction", - "description": "Set all values of Maryland TANF earned income deduction to zero.", - "label": "Abolish Maryland TANF earned income deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_snap_elderly_present": { - "type": "parameter", - "parameter": "gov.abolitions.md_snap_elderly_present", - "description": "Set all values of Elderly person is present for the Maryland SNAP minimum allotment to zero.", - "label": "Abolish Elderly person is present for the Maryland SNAP minimum allotment", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.md_snap_is_elderly": { - "type": "parameter", - "parameter": "gov.abolitions.md_snap_is_elderly", - "description": "Set all values of Is an elderly person for Maryland SNAP minimum allotment to zero.", - "label": "Abolish Is an elderly person for Maryland SNAP minimum allotment", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ak_permanent_fund_dividend": { - "type": "parameter", - "parameter": "gov.abolitions.ak_permanent_fund_dividend", - "description": "Set all values of Alaska Permanent Fund Dividend to zero.", - "label": "Abolish Alaska Permanent Fund Dividend", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ak_energy_relief": { - "type": "parameter", - "parameter": "gov.abolitions.ak_energy_relief", - "description": "Set all values of Alaska One Time Energy Relief to zero.", - "label": "Abolish Alaska One Time Energy Relief", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.la_income_tax", - "description": "Set all values of Louisiana income tax to zero.", - "label": "Abolish Louisiana income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_agi": { - "type": "parameter", - "parameter": "gov.abolitions.la_agi", - "description": "Set all values of Louisiana adjusted gross income income to zero.", - "label": "Abolish Louisiana adjusted gross income income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.la_refundable_credits", - "description": "Set all values of Louisiana refundable credits to zero.", - "label": "Abolish Louisiana refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_income_tax_before_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.la_income_tax_before_refundable_credits", - "description": "Set all values of Louisiana income tax before refundable credits to zero.", - "label": "Abolish Louisiana income tax before refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_withheld_income_tax": { - "type": "parameter", - "parameter": "gov.abolitions.la_withheld_income_tax", - "description": "Set all values of Louisiana withheld income tax to zero.", - "label": "Abolish Louisiana withheld income tax", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_income_tax_before_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.la_income_tax_before_non_refundable_credits", - "description": "Set all values of Louisiana income tax before non-refundable credits to zero.", - "label": "Abolish Louisiana income tax before non-refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_taxable_income": { - "type": "parameter", - "parameter": "gov.abolitions.la_taxable_income", - "description": "Set all values of Louisiana taxable income to zero.", - "label": "Abolish Louisiana taxable income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_non_refundable_credits": { - "type": "parameter", - "parameter": "gov.abolitions.la_non_refundable_credits", - "description": "Set all values of Louisiana non-refundable credits to zero.", - "label": "Abolish Louisiana non-refundable credits", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_disability_income_exemption_person": { - "type": "parameter", - "parameter": "gov.abolitions.la_disability_income_exemption_person", - "description": "Set all values of Louisiana disability income exemption for each person to zero.", - "label": "Abolish Louisiana disability income exemption for each person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_agi_exempt_income": { - "type": "parameter", - "parameter": "gov.abolitions.la_agi_exempt_income", - "description": "Set all values of Louisiana income that is exempt from the adjusted gross income to zero.", - "label": "Abolish Louisiana income that is exempt from the adjusted gross income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_retirement_exemption_person": { - "type": "parameter", - "parameter": "gov.abolitions.la_retirement_exemption_person", - "description": "Set all values of Louisiana retirement exemption for each person to zero.", - "label": "Abolish Louisiana retirement exemption for each person", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_military_pay_exclusion": { - "type": "parameter", - "parameter": "gov.abolitions.la_military_pay_exclusion", - "description": "Set all values of Louisiana military pay exclusion to zero.", - "label": "Abolish Louisiana military pay exclusion", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_eitc": { - "type": "parameter", - "parameter": "gov.abolitions.la_eitc", - "description": "Set all values of Louisiana Earned Income Tax Credit to zero.", - "label": "Abolish Louisiana Earned Income Tax Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_school_readiness_credit_refundable": { - "type": "parameter", - "parameter": "gov.abolitions.la_school_readiness_credit_refundable", - "description": "Set all values of Louisiana refundable school readiness tax credit to zero.", - "label": "Abolish Louisiana refundable school readiness tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_school_readiness_credit_eligible_child": { - "type": "parameter", - "parameter": "gov.abolitions.la_school_readiness_credit_eligible_child", - "description": "Set all values of Eligible child for the Louisiana school readiness tax credit to zero.", - "label": "Abolish Eligible child for the Louisiana school readiness tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_school_readiness_credit_non_refundable": { - "type": "parameter", - "parameter": "gov.abolitions.la_school_readiness_credit_non_refundable", - "description": "Set all values of Louisiana non-refundable school readiness tax credit to zero.", - "label": "Abolish Louisiana non-refundable school readiness tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_school_readiness_credit_refundable_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.la_school_readiness_credit_refundable_eligible", - "description": "Set all values of Louisiana refundable school readiness tax credit eligibility to zero.", - "label": "Abolish Louisiana refundable school readiness tax credit eligibility", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_school_readiness_credit": { - "type": "parameter", - "parameter": "gov.abolitions.la_school_readiness_credit", - "description": "Set all values of Louisiana school readiness tax credit to zero.", - "label": "Abolish Louisiana school readiness tax credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_non_refundable_cdcc": { - "type": "parameter", - "parameter": "gov.abolitions.la_non_refundable_cdcc", - "description": "Set all values of Louisiana non-refundable Child and Dependent Care Credit to zero.", - "label": "Abolish Louisiana non-refundable Child and Dependent Care Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_refundable_cdcc": { - "type": "parameter", - "parameter": "gov.abolitions.la_refundable_cdcc", - "description": "Set all values of Louisiana refundable Child and Dependent Care Credit to zero.", - "label": "Abolish Louisiana refundable Child and Dependent Care Credit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_exemptions": { - "type": "parameter", - "parameter": "gov.abolitions.la_exemptions", - "description": "Set all values of Louisiana exemptions to zero.", - "label": "Abolish Louisiana exemptions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_surviving_spouse_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.la_surviving_spouse_exemption", - "description": "Set all values of Louisiana qualifying surviving spouse exemption to zero.", - "label": "Abolish Louisiana qualifying surviving spouse exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_dependents_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.la_dependents_exemption", - "description": "Set all values of Louisiana qualified dependents exemption to zero.", - "label": "Abolish Louisiana qualified dependents exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_personal_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.la_personal_exemption", - "description": "Set all values of Louisiana personal exemption to zero.", - "label": "Abolish Louisiana personal exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_aged_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.la_aged_exemption", - "description": "Set all values of Louisiana aged exemption to zero.", - "label": "Abolish Louisiana aged exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_blind_exemption": { - "type": "parameter", - "parameter": "gov.abolitions.la_blind_exemption", - "description": "Set all values of Louisiana blind exemption to zero.", - "label": "Abolish Louisiana blind exemption", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_blind_exemption_person": { - "type": "parameter", - "parameter": "gov.abolitions.la_blind_exemption_person", - "description": "Set all values of Louisiana blind exemption for each individual to zero.", - "label": "Abolish Louisiana blind exemption for each individual", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_standard_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.la_standard_deduction", - "description": "Set all values of Louisiana standard deduction to zero.", - "label": "Abolish Louisiana standard deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_itemized_deductions": { - "type": "parameter", - "parameter": "gov.abolitions.la_itemized_deductions", - "description": "Set all values of Louisiana itemized deductions to zero.", - "label": "Abolish Louisiana itemized deductions", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.la_federal_tax_deduction": { - "type": "parameter", - "parameter": "gov.abolitions.la_federal_tax_deduction", - "description": "Set all values of Louisiana federal tax deduction to zero.", - "label": "Abolish Louisiana federal tax deduction", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.hhs_smi": { - "type": "parameter", - "parameter": "gov.abolitions.hhs_smi", - "description": "Set all values of State Median Income (HHS) to zero.", - "label": "Abolish State Median Income (HHS)", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.spm_unit_fpg": { - "type": "parameter", - "parameter": "gov.abolitions.spm_unit_fpg", - "description": "Set all values of SPM unit's federal poverty guideline to zero.", - "label": "Abolish SPM unit's federal poverty guideline", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tax_unit_fpg": { - "type": "parameter", - "parameter": "gov.abolitions.tax_unit_fpg", - "description": "Set all values of Tax unit's federal poverty guideline to zero.", - "label": "Abolish Tax unit's federal poverty guideline", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_medicare_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.is_medicare_eligible", - "description": "Set all values of Person is eligible for Medicare to zero.", - "label": "Abolish Person is eligible for Medicare", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_chip_eligible_standard_pregnant_person": { - "type": "parameter", - "parameter": "gov.abolitions.is_chip_eligible_standard_pregnant_person", - "description": "Set all values of Pregnant person eligible for standard CHIP to zero.", - "label": "Abolish Pregnant person eligible for standard CHIP", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_chip_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.is_chip_eligible", - "description": "Set all values of CHIP eligible to zero.", - "label": "Abolish CHIP eligible", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.chip": { - "type": "parameter", - "parameter": "gov.abolitions.chip", - "description": "Set all values of CHIP to zero.", - "label": "Abolish CHIP", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_chip_eligible_pregnant": { - "type": "parameter", - "parameter": "gov.abolitions.is_chip_eligible_pregnant", - "description": "Set all values of Pregnant person eligible for CHIP to zero.", - "label": "Abolish Pregnant person eligible for CHIP", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_chip_fcep_eligible_person": { - "type": "parameter", - "parameter": "gov.abolitions.is_chip_fcep_eligible_person", - "description": "Set all values of Pregnant person eligible for CHIP through FCEP to zero.", - "label": "Abolish Pregnant person eligible for CHIP through FCEP", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.per_capita_chip": { - "type": "parameter", - "parameter": "gov.abolitions.per_capita_chip", - "description": "Set all values of Average CHIP payment to zero.", - "label": "Abolish Average CHIP payment", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_chip_eligible_child": { - "type": "parameter", - "parameter": "gov.abolitions.is_chip_eligible_child", - "description": "Set all values of Child eligible for CHIP to zero.", - "label": "Abolish Child eligible for CHIP", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.spm_unit_ccdf_subsidy": { - "type": "parameter", - "parameter": "gov.abolitions.spm_unit_ccdf_subsidy", - "description": "Set all values of SPM unit CCDF subsidy to zero.", - "label": "Abolish SPM unit CCDF subsidy", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ccdf_county_cluster": { - "type": "parameter", - "parameter": "gov.abolitions.ccdf_county_cluster", - "description": "Set all values of County cluster for CCDF to zero.", - "label": "Abolish County cluster for CCDF", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ccdf_market_rate": { - "type": "parameter", - "parameter": "gov.abolitions.ccdf_market_rate", - "description": "Set all values of CCDF market rate to zero.", - "label": "Abolish CCDF market rate", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_ccdf_reason_for_care_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.is_ccdf_reason_for_care_eligible", - "description": "Set all values of Reason-for-care eligibility for CCDF to zero.", - "label": "Abolish Reason-for-care eligibility for CCDF", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.spm_unit_total_ccdf_copay": { - "type": "parameter", - "parameter": "gov.abolitions.spm_unit_total_ccdf_copay", - "description": "Set all values of SPM unit total CCDF copay to zero.", - "label": "Abolish SPM unit total CCDF copay", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_ccdf_asset_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.is_ccdf_asset_eligible", - "description": "Set all values of Asset eligibility for CCDF to zero.", - "label": "Abolish Asset eligibility for CCDF", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_ccdf_age_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.is_ccdf_age_eligible", - "description": "Set all values of Age eligibility for CCDF to zero.", - "label": "Abolish Age eligibility for CCDF", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ccdf_income_to_smi_ratio": { - "type": "parameter", - "parameter": "gov.abolitions.ccdf_income_to_smi_ratio", - "description": "Set all values of Income to SMI ratio to zero.", - "label": "Abolish Income to SMI ratio", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_ccdf_home_based": { - "type": "parameter", - "parameter": "gov.abolitions.is_ccdf_home_based", - "description": "Set all values of Whether CCDF care is home-based versus center-based to zero.", - "label": "Abolish Whether CCDF care is home-based versus center-based", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_ccdf_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.is_ccdf_eligible", - "description": "Set all values of Eligibility for CCDF to zero.", - "label": "Abolish Eligibility for CCDF", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.ccdf_income": { - "type": "parameter", - "parameter": "gov.abolitions.ccdf_income", - "description": "Set all values of Income to zero.", - "label": "Abolish Income", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_ccdf_income_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.is_ccdf_income_eligible", - "description": "Set all values of Income eligibility for CCDF to zero.", - "label": "Abolish Income eligibility for CCDF", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_early_head_start_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.is_early_head_start_eligible", - "description": "Set all values of Eligible person for the Early Head Start program to zero.", - "label": "Abolish Eligible person for the Early Head Start program", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_head_start_categorically_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.is_head_start_categorically_eligible", - "description": "Set all values of Early Head Start or Head Start program eligible to zero.", - "label": "Abolish Early Head Start or Head Start program eligible", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_head_start_income_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.is_head_start_income_eligible", - "description": "Set all values of Early Head Start or Head Start income eligible to zero.", - "label": "Abolish Early Head Start or Head Start income eligible", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_head_start_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.is_head_start_eligible", - "description": "Set all values of Eligible person for the Head Start program to zero.", - "label": "Abolish Eligible person for the Head Start program", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.medicaid_enrolled": { - "type": "parameter", - "parameter": "gov.abolitions.medicaid_enrolled", - "description": "Set all values of Medicaid enrolled to zero.", - "label": "Abolish Medicaid enrolled", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.takes_up_medicaid_if_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.takes_up_medicaid_if_eligible", - "description": "Set all values of Whether a random eligible person unit does not enroll in Medicaid to zero.", - "label": "Abolish Whether a random eligible person unit does not enroll in Medicaid", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.medicaid_cost": { - "type": "parameter", - "parameter": "gov.abolitions.medicaid_cost", - "description": "Set all values of Medicaid_cost to zero.", - "label": "Abolish Medicaid_cost", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.medicaid": { - "type": "parameter", - "parameter": "gov.abolitions.medicaid", - "description": "Set all values of Medicaid to zero.", - "label": "Abolish Medicaid", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tax_unit_medicaid_income_level": { - "type": "parameter", - "parameter": "gov.abolitions.tax_unit_medicaid_income_level", - "description": "Set all values of Medicaid/CHIP-related modified adjusted gross income (MAGI) level to zero.", - "label": "Abolish Medicaid/CHIP-related modified adjusted gross income (MAGI) level", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.medicaid_magi": { - "type": "parameter", - "parameter": "gov.abolitions.medicaid_magi", - "description": "Set all values of Medicaid/CHIP/ACA-related Modified AGI to zero.", - "label": "Abolish Medicaid/CHIP/ACA-related Modified AGI", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.medicaid_income_level": { - "type": "parameter", - "parameter": "gov.abolitions.medicaid_income_level", - "description": "Set all values of Medicaid/CHIP-related income level to zero.", - "label": "Abolish Medicaid/CHIP-related income level", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.medicaid_cost_if_enrolled": { - "type": "parameter", - "parameter": "gov.abolitions.medicaid_cost_if_enrolled", - "description": "Set all values of Per capita Medicaid cost by eligibility group & state to zero.", - "label": "Abolish Per capita Medicaid cost by eligibility group & state", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_medicaid_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.is_medicaid_eligible", - "description": "Set all values of Eligible for Medicaid to zero.", - "label": "Abolish Eligible for Medicaid", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.medicaid_work_requirement_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.medicaid_work_requirement_eligible", - "description": "Set all values of Eligible person for Medicaid via work requirement to zero.", - "label": "Abolish Eligible person for Medicaid via work requirement", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_optional_senior_or_disabled_income_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.is_optional_senior_or_disabled_income_eligible", - "description": "Set all values of Income-eligibility for State’s optional Medicaid pathway for seniors or people with disabilities to zero.", - "label": "Abolish Income-eligibility for State’s optional Medicaid pathway for seniors or people with disabilities", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_ssi_recipient_for_medicaid": { - "type": "parameter", - "parameter": "gov.abolitions.is_ssi_recipient_for_medicaid", - "description": "Set all values of SSI recipients to zero.", - "label": "Abolish SSI recipients", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_optional_senior_or_disabled_asset_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.is_optional_senior_or_disabled_asset_eligible", - "description": "Set all values of Asset-eligibility for State’s optional Medicaid pathway for seniors or people with disabilities to zero.", - "label": "Abolish Asset-eligibility for State’s optional Medicaid pathway for seniors or people with disabilities", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_optional_senior_or_disabled_for_medicaid": { - "type": "parameter", - "parameter": "gov.abolitions.is_optional_senior_or_disabled_for_medicaid", - "description": "Set all values of Seniors or disabled people not meeting SSI rules to zero.", - "label": "Abolish Seniors or disabled people not meeting SSI rules", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_parent_for_medicaid": { - "type": "parameter", - "parameter": "gov.abolitions.is_parent_for_medicaid", - "description": "Set all values of Parents to zero.", - "label": "Abolish Parents", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_parent_for_medicaid_fc": { - "type": "parameter", - "parameter": "gov.abolitions.is_parent_for_medicaid_fc", - "description": "Set all values of Medicaid parent financial criteria to zero.", - "label": "Abolish Medicaid parent financial criteria", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_parent_for_medicaid_nfc": { - "type": "parameter", - "parameter": "gov.abolitions.is_parent_for_medicaid_nfc", - "description": "Set all values of Medicaid parent non-financial criteria to zero.", - "label": "Abolish Medicaid parent non-financial criteria", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_young_adult_for_medicaid_nfc": { - "type": "parameter", - "parameter": "gov.abolitions.is_young_adult_for_medicaid_nfc", - "description": "Set all values of Medicaid young adult non-financial criteria to zero.", - "label": "Abolish Medicaid young adult non-financial criteria", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_young_adult_for_medicaid": { - "type": "parameter", - "parameter": "gov.abolitions.is_young_adult_for_medicaid", - "description": "Set all values of Young adults to zero.", - "label": "Abolish Young adults", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_young_adult_for_medicaid_fc": { - "type": "parameter", - "parameter": "gov.abolitions.is_young_adult_for_medicaid_fc", - "description": "Set all values of Medicaid young adult financial criteria to zero.", - "label": "Abolish Medicaid young adult financial criteria", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_pregnant_for_medicaid_fc": { - "type": "parameter", - "parameter": "gov.abolitions.is_pregnant_for_medicaid_fc", - "description": "Set all values of Medicaid pregnant financial criteria to zero.", - "label": "Abolish Medicaid pregnant financial criteria", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_pregnant_for_medicaid_nfc": { - "type": "parameter", - "parameter": "gov.abolitions.is_pregnant_for_medicaid_nfc", - "description": "Set all values of Medicaid pregnant non-financial criteria to zero.", - "label": "Abolish Medicaid pregnant non-financial criteria", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_pregnant_for_medicaid": { - "type": "parameter", - "parameter": "gov.abolitions.is_pregnant_for_medicaid", - "description": "Set all values of Pregnant people to zero.", - "label": "Abolish Pregnant people", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_adult_for_medicaid": { - "type": "parameter", - "parameter": "gov.abolitions.is_adult_for_medicaid", - "description": "Set all values of Working-age and childless adults to zero.", - "label": "Abolish Working-age and childless adults", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_adult_for_medicaid_fc": { - "type": "parameter", - "parameter": "gov.abolitions.is_adult_for_medicaid_fc", - "description": "Set all values of Medicaid adult financial criteria to zero.", - "label": "Abolish Medicaid adult financial criteria", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_adult_for_medicaid_nfc": { - "type": "parameter", - "parameter": "gov.abolitions.is_adult_for_medicaid_nfc", - "description": "Set all values of Medicaid adult non-financial criteria to zero.", - "label": "Abolish Medicaid adult non-financial criteria", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_in_medicaid_medically_needy_category": { - "type": "parameter", - "parameter": "gov.abolitions.is_in_medicaid_medically_needy_category", - "description": "Set all values of In Medicaid medically needy category to zero.", - "label": "Abolish In Medicaid medically needy category", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_medically_needy_for_medicaid": { - "type": "parameter", - "parameter": "gov.abolitions.is_medically_needy_for_medicaid", - "description": "Set all values of Medically needy to zero.", - "label": "Abolish Medically needy", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_older_child_for_medicaid_nfc": { - "type": "parameter", - "parameter": "gov.abolitions.is_older_child_for_medicaid_nfc", - "description": "Set all values of Medicaid older child non-financial criteria to zero.", - "label": "Abolish Medicaid older child non-financial criteria", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_older_child_for_medicaid_fc": { - "type": "parameter", - "parameter": "gov.abolitions.is_older_child_for_medicaid_fc", - "description": "Set all values of Medicaid older child financial criteria to zero.", - "label": "Abolish Medicaid older child financial criteria", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_older_child_for_medicaid": { - "type": "parameter", - "parameter": "gov.abolitions.is_older_child_for_medicaid", - "description": "Set all values of Older children to zero.", - "label": "Abolish Older children", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_infant_for_medicaid_nfc": { - "type": "parameter", - "parameter": "gov.abolitions.is_infant_for_medicaid_nfc", - "description": "Set all values of Medicaid infant non-financial criteria to zero.", - "label": "Abolish Medicaid infant non-financial criteria", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_infant_for_medicaid": { - "type": "parameter", - "parameter": "gov.abolitions.is_infant_for_medicaid", - "description": "Set all values of Infants to zero.", - "label": "Abolish Infants", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_infant_for_medicaid_fc": { - "type": "parameter", - "parameter": "gov.abolitions.is_infant_for_medicaid_fc", - "description": "Set all values of Medicaid infant financial criteria to zero.", - "label": "Abolish Medicaid infant financial criteria", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_young_child_for_medicaid_nfc": { - "type": "parameter", - "parameter": "gov.abolitions.is_young_child_for_medicaid_nfc", - "description": "Set all values of Medicaid young child non-financial criteria to zero.", - "label": "Abolish Medicaid young child non-financial criteria", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_young_child_for_medicaid": { - "type": "parameter", - "parameter": "gov.abolitions.is_young_child_for_medicaid", - "description": "Set all values of Young children to zero.", - "label": "Abolish Young children", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_young_child_for_medicaid_fc": { - "type": "parameter", - "parameter": "gov.abolitions.is_young_child_for_medicaid_fc", - "description": "Set all values of Medicaid young child financial criteria to zero.", - "label": "Abolish Medicaid young child financial criteria", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.meets_tanf_non_cash_gross_income_test": { - "type": "parameter", - "parameter": "gov.abolitions.meets_tanf_non_cash_gross_income_test", - "description": "Set all values of Meets gross income test for TANF non-cash benefit to zero.", - "label": "Abolish Meets gross income test for TANF non-cash benefit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_tanf_non_cash_hheod": { - "type": "parameter", - "parameter": "gov.abolitions.is_tanf_non_cash_hheod", - "description": "Set all values of Elderly or disabled for TANF non-cash benefit to zero.", - "label": "Abolish Elderly or disabled for TANF non-cash benefit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.meets_tanf_non_cash_asset_test": { - "type": "parameter", - "parameter": "gov.abolitions.meets_tanf_non_cash_asset_test", - "description": "Set all values of Meets asset test for TANF non-cash benefit to zero.", - "label": "Abolish Meets asset test for TANF non-cash benefit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_tanf_non_cash_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.is_tanf_non_cash_eligible", - "description": "Set all values of Eligibility for TANF non-cash benefit to zero.", - "label": "Abolish Eligibility for TANF non-cash benefit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.meets_tanf_non_cash_net_income_test": { - "type": "parameter", - "parameter": "gov.abolitions.meets_tanf_non_cash_net_income_test", - "description": "Set all values of Meets net income test for TANF non-cash benefit to zero.", - "label": "Abolish Meets net income test for TANF non-cash benefit", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tanf_person": { - "type": "parameter", - "parameter": "gov.abolitions.tanf_person", - "description": "Set all values of Per-capita TANF to zero.", - "label": "Abolish Per-capita TANF", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.tanf": { - "type": "parameter", - "parameter": "gov.abolitions.tanf", - "description": "Set all values of TANF to zero.", - "label": "Abolish TANF", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_person_demographic_tanf_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.is_person_demographic_tanf_eligible", - "description": "Set all values of Person demographic eligibility for TANF to zero.", - "label": "Abolish Person demographic eligibility for TANF", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.is_demographic_tanf_eligible": { - "type": "parameter", - "parameter": "gov.abolitions.is_demographic_tanf_eligible", - "description": "Set all values of Demographic eligibility for TANF to zero.", - "label": "Abolish Demographic eligibility for TANF", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.residential_efficiency_electrification_rebate": { - "type": "parameter", - "parameter": "gov.abolitions.residential_efficiency_electrification_rebate", - "description": "Set all values of Residential efficiency and electrification rebate to zero.", - "label": "Abolish Residential efficiency and electrification rebate", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.capped_heat_pump_water_heater_rebate": { - "type": "parameter", - "parameter": "gov.abolitions.capped_heat_pump_water_heater_rebate", - "description": "Set all values of Capped heat pump water heater rebate to zero.", - "label": "Abolish Capped heat pump water heater rebate", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.capped_electric_stove_cooktop_range_or_oven_rebate": { - "type": "parameter", - "parameter": "gov.abolitions.capped_electric_stove_cooktop_range_or_oven_rebate", - "description": "Set all values of Capped electric stove cooktop range or oven rebate to zero.", - "label": "Abolish Capped electric stove cooktop range or oven rebate", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.capped_electric_wiring_rebate": { - "type": "parameter", - "parameter": "gov.abolitions.capped_electric_wiring_rebate", - "description": "Set all values of Capped electric wiring rebate to zero.", - "label": "Abolish Capped electric wiring rebate", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.capped_electric_heat_pump_clothes_dryer_rebate": { - "type": "parameter", - "parameter": "gov.abolitions.capped_electric_heat_pump_clothes_dryer_rebate", - "description": "Set all values of Capped electric heat pump clothes dryer rebate to zero.", - "label": "Abolish Capped electric heat pump clothes dryer rebate", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.capped_insulation_air_sealing_ventilation_rebate": { - "type": "parameter", - "parameter": "gov.abolitions.capped_insulation_air_sealing_ventilation_rebate", - "description": "Set all values of Capped insulation air sealing and ventilation rebate to zero.", - "label": "Abolish Capped insulation air sealing and ventilation rebate", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.capped_electric_load_service_center_upgrade_rebate": { - "type": "parameter", - "parameter": "gov.abolitions.capped_electric_load_service_center_upgrade_rebate", - "description": "Set all values of Capped electric load service center upgrade rebate to zero.", - "label": "Abolish Capped electric load service center upgrade rebate", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.capped_heat_pump_rebate": { - "type": "parameter", - "parameter": "gov.abolitions.capped_heat_pump_rebate", - "description": "Set all values of Capped heat pump rebate to zero.", - "label": "Abolish Capped heat pump rebate", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.high_efficiency_electric_home_rebate_percent_covered": { - "type": "parameter", - "parameter": "gov.abolitions.high_efficiency_electric_home_rebate_percent_covered", - "description": "Set all values of Percent of expenditures covered by high electricity home rebate to zero.", - "label": "Abolish Percent of expenditures covered by high electricity home rebate", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.high_efficiency_electric_home_rebate": { - "type": "parameter", - "parameter": "gov.abolitions.high_efficiency_electric_home_rebate", - "description": "Set all values of High efficiency electric home rebate to zero.", - "label": "Abolish High efficiency electric home rebate", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.relative_capital_gains_mtr_change": { - "type": "parameter", - "parameter": "gov.abolitions.relative_capital_gains_mtr_change", - "description": "Set all values of relative change in capital gains tax rate to zero.", - "label": "Abolish relative change in capital gains tax rate", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.capital_gains_elasticity": { - "type": "parameter", - "parameter": "gov.abolitions.capital_gains_elasticity", - "description": "Set all values of elasticity of capital gains realizations to zero.", - "label": "Abolish elasticity of capital gains realizations", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.capital_gains_behavioral_response": { - "type": "parameter", - "parameter": "gov.abolitions.capital_gains_behavioral_response", - "description": "Set all values of capital gains behavioral response to zero.", - "label": "Abolish capital gains behavioral response", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.adult_index_cg": { - "type": "parameter", - "parameter": "gov.abolitions.adult_index_cg", - "description": "Set all values of index of adult in household, ranked by capital gains to zero.", - "label": "Abolish index of adult in household, ranked by capital gains", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.marginal_tax_rate_on_capital_gains": { - "type": "parameter", - "parameter": "gov.abolitions.marginal_tax_rate_on_capital_gains", - "description": "Set all values of capital gains marginal tax rate to zero.", - "label": "Abolish capital gains marginal tax rate", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.relative_wage_change": { - "type": "parameter", - "parameter": "gov.abolitions.relative_wage_change", - "description": "Set all values of relative wage change to zero.", - "label": "Abolish relative wage change", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.relative_income_change": { - "type": "parameter", - "parameter": "gov.abolitions.relative_income_change", - "description": "Set all values of relative income change to zero.", - "label": "Abolish relative income change", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.substitution_elasticity_lsr": { - "type": "parameter", - "parameter": "gov.abolitions.substitution_elasticity_lsr", - "description": "Set all values of substitution elasticity of labor supply response to zero.", - "label": "Abolish substitution elasticity of labor supply response", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.self_employment_income_behavioral_response": { - "type": "parameter", - "parameter": "gov.abolitions.self_employment_income_behavioral_response", - "description": "Set all values of self-employment income behavioral response to zero.", - "label": "Abolish self-employment income behavioral response", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.substitution_elasticity": { - "type": "parameter", - "parameter": "gov.abolitions.substitution_elasticity", - "description": "Set all values of substitution elasticity of labor supply to zero.", - "label": "Abolish substitution elasticity of labor supply", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.labor_supply_behavioral_response": { - "type": "parameter", - "parameter": "gov.abolitions.labor_supply_behavioral_response", - "description": "Set all values of earnings-related labor supply change to zero.", - "label": "Abolish earnings-related labor supply change", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.income_elasticity": { - "type": "parameter", - "parameter": "gov.abolitions.income_elasticity", - "description": "Set all values of income elasticity of labor supply to zero.", - "label": "Abolish income elasticity of labor supply", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.employment_income_behavioral_response": { - "type": "parameter", - "parameter": "gov.abolitions.employment_income_behavioral_response", - "description": "Set all values of employment income behavioral response to zero.", - "label": "Abolish employment income behavioral response", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - }, - "gov.abolitions.income_elasticity_lsr": { - "type": "parameter", - "parameter": "gov.abolitions.income_elasticity_lsr", - "description": "Set all values of income elasticity of labor supply response to zero.", - "label": "Abolish income elasticity of labor supply response", - "unit": "bool", - "period": null, - "values": { - "0000-01-01": false - }, - "economy": true, - "household": true - } - }, - "entities": { - "household": { - "plural": "households", - "label": "Household", - "doc": "\nA household.\n", - "is_person": false, - "key": "household", - "roles": { - "member": { - "plural": "members", - "label": "Member", - "doc": "A member of the household" - } - } - }, - "spm_unit": { - "plural": "spm_units", - "label": "SPM unit", - "doc": "\nAn SPM unit.\n", - "is_person": false, - "key": "spm_unit", - "roles": { - "member": { - "plural": "members", - "label": "Member", - "doc": "A member of the SPM unit" - } - } - }, - "family": { - "plural": "families", - "label": "Family", - "doc": "\nA family.\n", - "is_person": false, - "key": "family", - "roles": { - "member": { - "plural": "members", - "label": "Member", - "doc": "A member of the family" - } - } - }, - "tax_unit": { - "plural": "tax_units", - "label": "Tax unit", - "doc": "\nA tax unit.\n", - "is_person": false, - "key": "tax_unit", - "roles": { - "member": { - "plural": "members", - "label": "Member", - "doc": "A member of the tax unit" - } - } - }, - "marital_unit": { - "plural": "marital_units", - "label": "Marital unit", - "doc": "\nAn unmarried person, or a married and co-habiting couple.\n", - "is_person": false, - "key": "marital_unit", - "roles": { - "member": { - "plural": "members", - "label": "Member", - "doc": "A member of the marital unit." - } - } - }, - "person": { - "plural": "people", - "label": "Person", - "doc": "\nA person.\n", - "is_person": true, - "key": "person", - "roles": {} - } - }, - "variableModules": { - "contrib.ubi_center.flat_tax": { - "label": "contrib.ubi_center.flat_tax", - "description": null, - "index": 0 - }, - "contrib.ubi_center.basic_income.basic_income_phase_out": { - "label": "contrib.ubi_center.basic_income.basic_income_phase_out", - "description": null, - "index": 0 - }, - "contrib.ubi_center.basic_income.basic_income_eligible": { - "label": "contrib.ubi_center.basic_income.basic_income_eligible", - "description": null, - "index": 0 - }, - "contrib.ubi_center.basic_income.basic_income": { - "label": "contrib.ubi_center.basic_income.basic_income", - "description": null, - "index": 0 - }, - "contrib.ubi_center.basic_income.basic_income_phase_in": { - "label": "contrib.ubi_center.basic_income.basic_income_phase_in", - "description": null, - "index": 0 - }, - "contrib.ubi_center.basic_income.basic_income_before_phase_out": { - "label": "contrib.ubi_center.basic_income.basic_income_before_phase_out", - "description": null, - "index": 0 - }, - "contrib.taxsim.taxsim_pensions": { - "label": "contrib.taxsim.taxsim_pensions", - "description": null, - "index": 0 - }, - "contrib.taxsim.taxsim_v18": { - "label": "contrib.taxsim.taxsim_v18", - "description": null, - "index": 0 - }, - "contrib.taxsim.taxsim_pprofinc": { - "label": "contrib.taxsim.taxsim_pprofinc", - "description": null, - "index": 0 - }, - "contrib.taxsim.taxsim_sbusinc": { - "label": "contrib.taxsim.taxsim_sbusinc", - "description": null, - "index": 0 - }, - "contrib.taxsim.taxsim_depx": { - "label": "contrib.taxsim.taxsim_depx", - "description": null, - "index": 0 - }, - "contrib.taxsim.taxsim_fiitax": { - "label": "contrib.taxsim.taxsim_fiitax", - "description": null, - "index": 0 - }, - "contrib.taxsim.taxsim_age2": { - "label": "contrib.taxsim.taxsim_age2", - "description": null, - "index": 0 - }, - "contrib.taxsim.taxsim_siitax": { - "label": "contrib.taxsim.taxsim_siitax", - "description": null, - "index": 0 - }, - "contrib.taxsim.taxsim_stcg": { - "label": "contrib.taxsim.taxsim_stcg", - "description": null, - "index": 0 - }, - "contrib.taxsim.taxsim_page": { - "label": "contrib.taxsim.taxsim_page", - "description": null, - "index": 0 - }, - "contrib.taxsim.taxsim_pui": { - "label": "contrib.taxsim.taxsim_pui", - "description": null, - "index": 0 - }, - "contrib.taxsim.taxsim_v10": { - "label": "contrib.taxsim.taxsim_v10", - "description": null, - "index": 0 - }, - "contrib.taxsim.taxsim_v11": { - "label": "contrib.taxsim.taxsim_v11", - "description": null, - "index": 0 - }, - "contrib.taxsim.taxsim_v12": { - "label": "contrib.taxsim.taxsim_v12", - "description": null, - "index": 0 - }, - "contrib.taxsim.taxsim_scorp": { - "label": "contrib.taxsim.taxsim_scorp", - "description": null, - "index": 0 - }, - "contrib.taxsim.taxsim_ltcg": { - "label": "contrib.taxsim.taxsim_ltcg", - "description": null, - "index": 0 - }, - "contrib.taxsim.taxsim_state": { - "label": "contrib.taxsim.taxsim_state", - "description": null, - "index": 0 - }, - "contrib.taxsim.taxsim_v25": { - "label": "contrib.taxsim.taxsim_v25", - "description": null, - "index": 0 - }, - "contrib.taxsim.taxsim_mstat": { - "label": "contrib.taxsim.taxsim_mstat", - "description": null, - "index": 0 - }, - "contrib.taxsim.taxsim_pbusinc": { - "label": "contrib.taxsim.taxsim_pbusinc", - "description": null, - "index": 0 - }, - "contrib.taxsim.taxsim_year": { - "label": "contrib.taxsim.taxsim_year", - "description": null, - "index": 0 - }, - "contrib.taxsim.taxsim_age1": { - "label": "contrib.taxsim.taxsim_age1", - "description": null, - "index": 0 - }, - "contrib.taxsim.taxsim_dividends": { - "label": "contrib.taxsim.taxsim_dividends", - "description": null, - "index": 0 - }, - "contrib.taxsim.taxsim_psemp": { - "label": "contrib.taxsim.taxsim_psemp", - "description": null, - "index": 0 - }, - "contrib.taxsim.taxsim_taxsimid": { - "label": "contrib.taxsim.taxsim_taxsimid", - "description": null, - "index": 0 - }, - "contrib.taxsim.taxsim_dep17": { - "label": "contrib.taxsim.taxsim_dep17", - "description": null, - "index": 0 - }, - "contrib.taxsim.taxsim_dep18": { - "label": "contrib.taxsim.taxsim_dep18", - "description": null, - "index": 0 - }, - "contrib.taxsim.taxsim_sage": { - "label": "contrib.taxsim.taxsim_sage", - "description": null, - "index": 0 - }, - "contrib.taxsim.taxsim_swages": { - "label": "contrib.taxsim.taxsim_swages", - "description": null, - "index": 0 - }, - "contrib.taxsim.taxsim_age3": { - "label": "contrib.taxsim.taxsim_age3", - "description": null, - "index": 0 - }, - "contrib.taxsim.taxsim_ssemp": { - "label": "contrib.taxsim.taxsim_ssemp", - "description": null, - "index": 0 - }, - "contrib.taxsim.taxsim_sprofinc": { - "label": "contrib.taxsim.taxsim_sprofinc", - "description": null, - "index": 0 - }, - "contrib.taxsim.taxsim_intrec": { - "label": "contrib.taxsim.taxsim_intrec", - "description": null, - "index": 0 - }, - "contrib.taxsim.taxsim_ui": { - "label": "contrib.taxsim.taxsim_ui", - "description": null, - "index": 0 - }, - "contrib.taxsim.taxsim_tfica": { - "label": "contrib.taxsim.taxsim_tfica", - "description": null, - "index": 0 - }, - "contrib.taxsim.taxsim_pwages": { - "label": "contrib.taxsim.taxsim_pwages", - "description": null, - "index": 0 - }, - "contrib.taxsim.taxsim_dep13": { - "label": "contrib.taxsim.taxsim_dep13", - "description": null, - "index": 0 - }, - "contrib.taxsim.taxsim_childcare": { - "label": "contrib.taxsim.taxsim_childcare", - "description": null, - "index": 0 - }, - "contrib.taxsim.taxsim_gssi": { - "label": "contrib.taxsim.taxsim_gssi", - "description": null, - "index": 0 - }, - "contrib.congress.wftca.bonus_guaranteed_deduction": { - "label": "contrib.congress.wftca.bonus_guaranteed_deduction", - "description": null, - "index": 0 - }, - "household.healthcare_benefit_value": { - "label": "household.healthcare_benefit_value", - "description": null, - "index": 0 - }, - "household.marginal_tax_rate_including_health_benefits": { - "label": "household.marginal_tax_rate_including_health_benefits", - "description": null, - "index": 0 - }, - "household.cliff": { - "label": "household.cliff", - "description": null, - "index": 0 - }, - "household.child_index": { - "label": "household.child_index", - "description": null, - "index": 0 - }, - "household.emp_self_emp_ratio": { - "label": "household.emp_self_emp_ratio", - "description": null, - "index": 0 - }, - "household.household_net_income_including_health_benefits": { - "label": "household.household_net_income_including_health_benefits", - "description": null, - "index": 0 - }, - "household.marginal_tax_rate": { - "label": "household.marginal_tax_rate", - "description": null, - "index": 0 - }, - "household.demographic.tax_unit.military_disabled_head": { - "label": "household.demographic.tax_unit.military_disabled_head", - "description": null, - "index": 0 - }, - "household.demographic.tax_unit.cohabitating_spouses": { - "label": "household.demographic.tax_unit.cohabitating_spouses", - "description": null, - "index": 0 - }, - "household.demographic.tax_unit.tax_unit_household_id": { - "label": "household.demographic.tax_unit.tax_unit_household_id", - "description": null, - "index": 0 - }, - "household.demographic.tax_unit.is_tax_unit_head": { - "label": "household.demographic.tax_unit.is_tax_unit_head", - "description": null, - "index": 0 - }, - "household.demographic.tax_unit.spouse_separate_tax_unit_size": { - "label": "household.demographic.tax_unit.spouse_separate_tax_unit_size", - "description": null, - "index": 0 - }, - "household.demographic.tax_unit.older_spouse_birth_year": { - "label": "household.demographic.tax_unit.older_spouse_birth_year", - "description": null, - "index": 0 - }, - "household.demographic.tax_unit.tax_unit_children": { - "label": "household.demographic.tax_unit.tax_unit_children", - "description": null, - "index": 0 - }, - "household.demographic.tax_unit.taxpayer_has_itin": { - "label": "household.demographic.tax_unit.taxpayer_has_itin", - "description": null, - "index": 0 - }, - "household.demographic.tax_unit.blind_head": { - "label": "household.demographic.tax_unit.blind_head", - "description": null, - "index": 0 - }, - "household.demographic.tax_unit.disabled_tax_unit_head_or_spouse": { - "label": "household.demographic.tax_unit.disabled_tax_unit_head_or_spouse", - "description": null, - "index": 0 - }, - "household.demographic.tax_unit.disabled_spouse": { - "label": "household.demographic.tax_unit.disabled_spouse", - "description": null, - "index": 0 - }, - "household.demographic.tax_unit.tax_unit_dependents": { - "label": "household.demographic.tax_unit.tax_unit_dependents", - "description": null, - "index": 0 - }, - "household.demographic.tax_unit.is_tax_unit_head_or_spouse": { - "label": "household.demographic.tax_unit.is_tax_unit_head_or_spouse", - "description": null, - "index": 0 - }, - "household.demographic.tax_unit.tax_unit_parents": { - "label": "household.demographic.tax_unit.tax_unit_parents", - "description": null, - "index": 0 - }, - "household.demographic.tax_unit.is_tax_unit_spouse": { - "label": "household.demographic.tax_unit.is_tax_unit_spouse", - "description": null, - "index": 0 - }, - "household.demographic.tax_unit.separate_filer_itemizes": { - "label": "household.demographic.tax_unit.separate_filer_itemizes", - "description": null, - "index": 0 - }, - "household.demographic.tax_unit.tax_unit_grandparents": { - "label": "household.demographic.tax_unit.tax_unit_grandparents", - "description": null, - "index": 0 - }, - "household.demographic.tax_unit.tax_unit_count": { - "label": "household.demographic.tax_unit.tax_unit_count", - "description": null, - "index": 0 - }, - "household.demographic.tax_unit.military_disabled_spouse": { - "label": "household.demographic.tax_unit.military_disabled_spouse", - "description": null, - "index": 0 - }, - "household.demographic.tax_unit.age_spouse": { - "label": "household.demographic.tax_unit.age_spouse", - "description": null, - "index": 0 - }, - "household.demographic.tax_unit.head_is_dependent_elsewhere": { - "label": "household.demographic.tax_unit.head_is_dependent_elsewhere", - "description": null, - "index": 0 - }, - "household.demographic.tax_unit.blind_spouse": { - "label": "household.demographic.tax_unit.blind_spouse", - "description": null, - "index": 0 - }, - "household.demographic.tax_unit.tax_unit_stillborn_children": { - "label": "household.demographic.tax_unit.tax_unit_stillborn_children", - "description": null, - "index": 0 - }, - "household.demographic.tax_unit.head_of_household_eligible": { - "label": "household.demographic.tax_unit.head_of_household_eligible", - "description": null, - "index": 0 - }, - "household.demographic.tax_unit.spouse_is_dependent_elsewhere": { - "label": "household.demographic.tax_unit.spouse_is_dependent_elsewhere", - "description": null, - "index": 0 - }, - "household.demographic.tax_unit.head_is_disabled": { - "label": "household.demographic.tax_unit.head_is_disabled", - "description": null, - "index": 0 - }, - "household.demographic.tax_unit.tax_unit_married": { - "label": "household.demographic.tax_unit.tax_unit_married", - "description": null, - "index": 0 - }, - "household.demographic.tax_unit.disabled_head": { - "label": "household.demographic.tax_unit.disabled_head", - "description": null, - "index": 0 - }, - "household.demographic.tax_unit.filing_status": { - "label": "household.demographic.tax_unit.filing_status", - "description": null, - "index": 0 - }, - "household.demographic.tax_unit.is_tax_unit_dependent": { - "label": "household.demographic.tax_unit.is_tax_unit_dependent", - "description": null, - "index": 0 - }, - "household.demographic.tax_unit.tax_unit_child_dependents": { - "label": "household.demographic.tax_unit.tax_unit_child_dependents", - "description": null, - "index": 0 - }, - "household.demographic.tax_unit.is_child_of_tax_head": { - "label": "household.demographic.tax_unit.is_child_of_tax_head", - "description": null, - "index": 0 - }, - "household.demographic.tax_unit.age_head": { - "label": "household.demographic.tax_unit.age_head", - "description": null, - "index": 0 - }, - "household.demographic.tax_unit.spouse_is_disabled": { - "label": "household.demographic.tax_unit.spouse_is_disabled", - "description": null, - "index": 0 - }, - "household.demographic.tax_unit.surviving_spouse_eligible": { - "label": "household.demographic.tax_unit.surviving_spouse_eligible", - "description": null, - "index": 0 - }, - "household.demographic.tax_unit.greater_age_head_spouse": { - "label": "household.demographic.tax_unit.greater_age_head_spouse", - "description": null, - "index": 0 - }, - "household.demographic.household.is_sro": { - "label": "household.demographic.household.is_sro", - "description": null, - "index": 0 - }, - "household.demographic.household.household_count": { - "label": "household.demographic.household.household_count", - "description": null, - "index": 0 - }, - "household.demographic.household.household_size": { - "label": "household.demographic.household.household_size", - "description": null, - "index": 0 - }, - "household.demographic.household.household_vehicles_owned": { - "label": "household.demographic.household.household_vehicles_owned", - "description": null, - "index": 0 - }, - "household.demographic.household.household_vehicle_value": { - "label": "household.demographic.household.household_vehicle_value", - "description": null, - "index": 0 - }, - "household.demographic.household.living_arrangements_allow_for_food_preparation": { - "label": "household.demographic.household.living_arrangements_allow_for_food_preparation", - "description": null, - "index": 0 - }, - "household.demographic.household.rent_is_shared_with_another_tax_unit": { - "label": "household.demographic.household.rent_is_shared_with_another_tax_unit", - "description": null, - "index": 0 - }, - "household.demographic.household.bedrooms": { - "label": "household.demographic.household.bedrooms", - "description": null, - "index": 0 - }, - "household.demographic.person.is_in_foster_care": { - "label": "household.demographic.person.is_in_foster_care", - "description": null, - "index": 0 - }, - "household.demographic.person.is_deceased": { - "label": "household.demographic.person.is_deceased", - "description": null, - "index": 0 - }, - "household.demographic.person.is_blind": { - "label": "household.demographic.person.is_blind", - "description": null, - "index": 0 - }, - "household.demographic.person.is_adult": { - "label": "household.demographic.person.is_adult", - "description": null, - "index": 0 - }, - "household.demographic.person.is_breastfeeding": { - "label": "household.demographic.person.is_breastfeeding", - "description": null, - "index": 0 - }, - "household.demographic.person.four_year_college_student": { - "label": "household.demographic.person.four_year_college_student", - "description": null, - "index": 0 - }, - "household.demographic.person.is_related_to_head_or_spouse": { - "label": "household.demographic.person.is_related_to_head_or_spouse", - "description": null, - "index": 0 - }, - "household.demographic.person.person_count": { - "label": "household.demographic.person.person_count", - "description": null, - "index": 0 - }, - "household.demographic.person.is_surviving_spouse_of_disabled_veteran": { - "label": "household.demographic.person.is_surviving_spouse_of_disabled_veteran", - "description": null, - "index": 0 - }, - "household.demographic.person.is_father": { - "label": "household.demographic.person.is_father", - "description": null, - "index": 0 - }, - "household.demographic.person.is_incarcerated": { - "label": "household.demographic.person.is_incarcerated", - "description": null, - "index": 0 - }, - "household.demographic.person.is_in_k12_nonpublic_school": { - "label": "household.demographic.person.is_in_k12_nonpublic_school", - "description": null, - "index": 0 - }, - "household.demographic.person.is_runaway_child": { - "label": "household.demographic.person.is_runaway_child", - "description": null, - "index": 0 - }, - "household.demographic.person.in_out_of_home_care_facility": { - "label": "household.demographic.person.in_out_of_home_care_facility", - "description": null, - "index": 0 - }, - "household.demographic.person.is_in_foster_care_group_home": { - "label": "household.demographic.person.is_in_foster_care_group_home", - "description": null, - "index": 0 - }, - "household.demographic.person.is_incapable_of_self_care": { - "label": "household.demographic.person.is_incapable_of_self_care", - "description": null, - "index": 0 - }, - "household.demographic.person.is_permanently_disabled_veteran": { - "label": "household.demographic.person.is_permanently_disabled_veteran", - "description": null, - "index": 0 - }, - "household.demographic.person.is_english_proficient": { - "label": "household.demographic.person.is_english_proficient", - "description": null, - "index": 0 - }, - "household.demographic.person.is_deaf": { - "label": "household.demographic.person.is_deaf", - "description": null, - "index": 0 - }, - "household.demographic.person.is_grandparent_of_filer_or_spouse": { - "label": "household.demographic.person.is_grandparent_of_filer_or_spouse", - "description": null, - "index": 0 - }, - "household.demographic.person.year_deceased": { - "label": "household.demographic.person.year_deceased", - "description": null, - "index": 0 - }, - "household.demographic.person.is_child_dependent": { - "label": "household.demographic.person.is_child_dependent", - "description": null, - "index": 0 - }, - "household.demographic.person.is_in_k12_school": { - "label": "household.demographic.person.is_in_k12_school", - "description": null, - "index": 0 - }, - "household.demographic.person.has_never_worked": { - "label": "household.demographic.person.has_never_worked", - "description": null, - "index": 0 - }, - "household.demographic.person.is_farmer_fisher": { - "label": "household.demographic.person.is_farmer_fisher", - "description": null, - "index": 0 - }, - "household.demographic.person.current_pregnancy_month": { - "label": "household.demographic.person.current_pregnancy_month", - "description": null, - "index": 0 - }, - "household.demographic.person.adopted_this_year": { - "label": "household.demographic.person.adopted_this_year", - "description": null, - "index": 0 - }, - "household.demographic.person.own_children_in_household": { - "label": "household.demographic.person.own_children_in_household", - "description": null, - "index": 0 - }, - "household.demographic.person.is_male": { - "label": "household.demographic.person.is_male", - "description": null, - "index": 0 - }, - "household.demographic.person.is_full_time_student": { - "label": "household.demographic.person.is_full_time_student", - "description": null, - "index": 0 - }, - "household.demographic.person.is_married": { - "label": "household.demographic.person.is_married", - "description": null, - "index": 0 - }, - "household.demographic.person.is_reference_person": { - "label": "household.demographic.person.is_reference_person", - "description": null, - "index": 0 - }, - "household.demographic.person.has_itin": { - "label": "household.demographic.person.has_itin", - "description": null, - "index": 0 - }, - "household.demographic.person.current_pregnancies": { - "label": "household.demographic.person.current_pregnancies", - "description": null, - "index": 0 - }, - "household.demographic.person.claimed_as_dependent_on_another_return": { - "label": "household.demographic.person.claimed_as_dependent_on_another_return", - "description": null, - "index": 0 - }, - "household.demographic.person.was_in_foster_care": { - "label": "household.demographic.person.was_in_foster_care", - "description": null, - "index": 0 - }, - "household.demographic.person.is_migratory_child": { - "label": "household.demographic.person.is_migratory_child", - "description": null, - "index": 0 - }, - "household.demographic.person.is_permanently_and_totally_disabled": { - "label": "household.demographic.person.is_permanently_and_totally_disabled", - "description": null, - "index": 0 - }, - "household.demographic.person.is_surviving_child_of_disabled_veteran": { - "label": "household.demographic.person.is_surviving_child_of_disabled_veteran", - "description": null, - "index": 0 - }, - "household.demographic.person.is_executive_administrative_professional": { - "label": "household.demographic.person.is_executive_administrative_professional", - "description": null, - "index": 0 - }, - "household.demographic.person.is_retired": { - "label": "household.demographic.person.is_retired", - "description": null, - "index": 0 - }, - "household.demographic.person.is_mother": { - "label": "household.demographic.person.is_mother", - "description": null, - "index": 0 - }, - "household.demographic.person.is_hispanic": { - "label": "household.demographic.person.is_hispanic", - "description": null, - "index": 0 - }, - "household.demographic.person.has_disabled_spouse": { - "label": "household.demographic.person.has_disabled_spouse", - "description": null, - "index": 0 - }, - "household.demographic.person.immigration_status": { - "label": "household.demographic.person.immigration_status", - "description": null, - "index": 0 - }, - "household.demographic.person.divorce_year": { - "label": "household.demographic.person.divorce_year", - "description": null, - "index": 0 - }, - "household.demographic.person.detailed_occupation_recode": { - "label": "household.demographic.person.detailed_occupation_recode", - "description": null, - "index": 0 - }, - "household.demographic.person.receives_or_needs_protective_services": { - "label": "household.demographic.person.receives_or_needs_protective_services", - "description": null, - "index": 0 - }, - "household.demographic.person.cps_race": { - "label": "household.demographic.person.cps_race", - "description": null, - "index": 0 - }, - "household.demographic.person.years_in_military": { - "label": "household.demographic.person.years_in_military", - "description": null, - "index": 0 - }, - "household.demographic.person.is_disabled": { - "label": "household.demographic.person.is_disabled", - "description": null, - "index": 0 - }, - "household.demographic.person.is_pregnant": { - "label": "household.demographic.person.is_pregnant", - "description": null, - "index": 0 - }, - "household.demographic.person.is_military": { - "label": "household.demographic.person.is_military", - "description": null, - "index": 0 - }, - "household.demographic.person.care_and_support_costs": { - "label": "household.demographic.person.care_and_support_costs", - "description": null, - "index": 0 - }, - "household.demographic.person.retired_from_federal_government": { - "label": "household.demographic.person.retired_from_federal_government", - "description": null, - "index": 0 - }, - "household.demographic.person.ssn_card_type": { - "label": "household.demographic.person.ssn_card_type", - "description": null, - "index": 0 - }, - "household.demographic.person.share_of_care_and_support_costs_paid_by_tax_filer": { - "label": "household.demographic.person.share_of_care_and_support_costs_paid_by_tax_filer", - "description": null, - "index": 0 - }, - "household.demographic.person.race": { - "label": "household.demographic.person.race", - "description": null, - "index": 0 - }, - "household.demographic.person.is_computer_scientist": { - "label": "household.demographic.person.is_computer_scientist", - "description": null, - "index": 0 - }, - "household.demographic.person.is_full_time_college_student": { - "label": "household.demographic.person.is_full_time_college_student", - "description": null, - "index": 0 - }, - "household.demographic.person.immigration_status_str": { - "label": "household.demographic.person.immigration_status_str", - "description": null, - "index": 0 - }, - "household.demographic.person.is_veteran": { - "label": "household.demographic.person.is_veteran", - "description": null, - "index": 0 - }, - "household.demographic.person.technical_institution_student": { - "label": "household.demographic.person.technical_institution_student", - "description": null, - "index": 0 - }, - "household.demographic.person.is_parent": { - "label": "household.demographic.person.is_parent", - "description": null, - "index": 0 - }, - "household.demographic.person.is_in_secondary_school": { - "label": "household.demographic.person.is_in_secondary_school", - "description": null, - "index": 0 - }, - "household.demographic.person.is_fully_disabled_service_connected_veteran": { - "label": "household.demographic.person.is_fully_disabled_service_connected_veteran", - "description": null, - "index": 0 - }, - "household.demographic.person.is_severely_disabled": { - "label": "household.demographic.person.is_severely_disabled", - "description": null, - "index": 0 - }, - "household.demographic.person.is_female": { - "label": "household.demographic.person.is_female", - "description": null, - "index": 0 - }, - "household.demographic.person.is_parent_of_filer_or_spouse": { - "label": "household.demographic.person.is_parent_of_filer_or_spouse", - "description": null, - "index": 0 - }, - "household.demographic.person.care_and_support_payments_from_tax_filer": { - "label": "household.demographic.person.care_and_support_payments_from_tax_filer", - "description": null, - "index": 0 - }, - "household.demographic.person.year_of_retirement": { - "label": "household.demographic.person.year_of_retirement", - "description": null, - "index": 0 - }, - "household.demographic.person.postpartum.under_60_days_postpartum": { - "label": "household.demographic.person.postpartum.under_60_days_postpartum", - "description": null, - "index": 0 - }, - "household.demographic.person.postpartum.under_12_months_postpartum": { - "label": "household.demographic.person.postpartum.under_12_months_postpartum", - "description": null, - "index": 0 - }, - "household.demographic.person.postpartum.count_days_postpartum": { - "label": "household.demographic.person.postpartum.count_days_postpartum", - "description": null, - "index": 0 - }, - "household.demographic.identifiers.person_tax_unit_id": { - "label": "household.demographic.identifiers.person_tax_unit_id", - "description": null, - "index": 0 - }, - "household.demographic.identifiers.household_id": { - "label": "household.demographic.identifiers.household_id", - "description": null, - "index": 0 - }, - "household.demographic.identifiers.person_family_id": { - "label": "household.demographic.identifiers.person_family_id", - "description": null, - "index": 0 - }, - "household.demographic.identifiers.person_id": { - "label": "household.demographic.identifiers.person_id", - "description": null, - "index": 0 - }, - "household.demographic.identifiers.tax_unit_id": { - "label": "household.demographic.identifiers.tax_unit_id", - "description": null, - "index": 0 - }, - "household.demographic.identifiers.person_household_id": { - "label": "household.demographic.identifiers.person_household_id", - "description": null, - "index": 0 - }, - "household.demographic.identifiers.family_id": { - "label": "household.demographic.identifiers.family_id", - "description": null, - "index": 0 - }, - "household.demographic.weights.household_weight": { - "label": "household.demographic.weights.household_weight", - "description": null, - "index": 0 - }, - "household.demographic.weights.spm_unit_weight": { - "label": "household.demographic.weights.spm_unit_weight", - "description": null, - "index": 0 - }, - "household.demographic.weights.person_weight": { - "label": "household.demographic.weights.person_weight", - "description": null, - "index": 0 - }, - "household.demographic.weights.family_weight": { - "label": "household.demographic.weights.family_weight", - "description": null, - "index": 0 - }, - "household.demographic.weights.tax_unit_weight": { - "label": "household.demographic.weights.tax_unit_weight", - "description": null, - "index": 0 - }, - "household.demographic.marital_unit.person_marital_unit_id": { - "label": "household.demographic.marital_unit.person_marital_unit_id", - "description": null, - "index": 0 - }, - "household.demographic.marital_unit.is_surviving_spouse": { - "label": "household.demographic.marital_unit.is_surviving_spouse", - "description": null, - "index": 0 - }, - "household.demographic.marital_unit.marital_unit_weight": { - "label": "household.demographic.marital_unit.marital_unit_weight", - "description": null, - "index": 0 - }, - "household.demographic.marital_unit.marital_unit_id": { - "label": "household.demographic.marital_unit.marital_unit_id", - "description": null, - "index": 0 - }, - "household.demographic.marital_unit.is_separated": { - "label": "household.demographic.marital_unit.is_separated", - "description": null, - "index": 0 - }, - "household.demographic.geographic.is_on_tribal_land": { - "label": "household.demographic.geographic.is_on_tribal_land", - "description": null, - "index": 0 - }, - "household.demographic.geographic.state_code_str": { - "label": "household.demographic.geographic.state_code_str", - "description": null, - "index": 0 - }, - "household.demographic.geographic.is_homeless": { - "label": "household.demographic.geographic.is_homeless", - "description": null, - "index": 0 - }, - "household.demographic.geographic.in_nyc": { - "label": "household.demographic.geographic.in_nyc", - "description": null, - "index": 0 - }, - "household.demographic.geographic.state_group_str": { - "label": "household.demographic.geographic.state_group_str", - "description": null, - "index": 0 - }, - "household.demographic.geographic.state_group": { - "label": "household.demographic.geographic.state_group", - "description": null, - "index": 0 - }, - "household.demographic.geographic.tax_unit_state": { - "label": "household.demographic.geographic.tax_unit_state", - "description": null, - "index": 0 - }, - "household.demographic.geographic.is_rural": { - "label": "household.demographic.geographic.is_rural", - "description": null, - "index": 0 - }, - "household.demographic.geographic.state_code": { - "label": "household.demographic.geographic.state_code", - "description": null, - "index": 0 - }, - "household.demographic.geographic.lives_in_vehicle": { - "label": "household.demographic.geographic.lives_in_vehicle", - "description": null, - "index": 0 - }, - "household.demographic.geographic.safmr_used_for_hcv": { - "label": "household.demographic.geographic.safmr_used_for_hcv", - "description": null, - "index": 0 - }, - "household.demographic.geographic.state_name": { - "label": "household.demographic.geographic.state_name", - "description": null, - "index": 0 - }, - "household.demographic.geographic.ucgid.ucgid_str": { - "label": "household.demographic.geographic.ucgid.ucgid_str", - "description": null, - "index": 0 - }, - "household.demographic.geographic.ucgid.ucgid_enum": { - "label": "household.demographic.geographic.ucgid.ucgid_enum", - "description": null, - "index": 0 - }, - "household.demographic.geographic.ucgid.ucgid": { - "label": "household.demographic.geographic.ucgid.ucgid", - "description": null, - "index": 0 - }, - "household.demographic.geographic.county.first_county_in_state": { - "label": "household.demographic.geographic.county.first_county_in_state", - "description": null, - "index": 0 - }, - "household.demographic.geographic.county.county_enum": { - "label": "household.demographic.geographic.county.county_enum", - "description": null, - "index": 0 - }, - "household.demographic.geographic.county.county_str": { - "label": "household.demographic.geographic.county.county_str", - "description": null, - "index": 0 - }, - "household.demographic.geographic.county.county": { - "label": "household.demographic.geographic.county.county", - "description": null, - "index": 0 - }, - "household.demographic.geographic.zip_code.zip_code": { - "label": "household.demographic.geographic.zip_code.zip_code", - "description": null, - "index": 0 - }, - "household.demographic.geographic.zip_code.three_digit_zip_code": { - "label": "household.demographic.geographic.zip_code.three_digit_zip_code", - "description": null, - "index": 0 - }, - "household.demographic.geographic.state.average_home_energy_use_in_state": { - "label": "household.demographic.geographic.state.average_home_energy_use_in_state", - "description": null, - "index": 0 - }, - "household.demographic.geographic.state.in_state": { - "label": "household.demographic.geographic.state.in_state", - "description": null, - "index": 0 - }, - "household.demographic.age.monthly_age": { - "label": "household.demographic.age.monthly_age", - "description": null, - "index": 0 - }, - "household.demographic.age.age_group": { - "label": "household.demographic.age.age_group", - "description": null, - "index": 0 - }, - "household.demographic.age.age": { - "label": "household.demographic.age.age", - "description": null, - "index": 0 - }, - "household.demographic.age.is_senior": { - "label": "household.demographic.age.is_senior", - "description": null, - "index": 0 - }, - "household.demographic.age.birth_year": { - "label": "household.demographic.age.birth_year", - "description": null, - "index": 0 - }, - "household.demographic.age.is_wa_adult": { - "label": "household.demographic.age.is_wa_adult", - "description": null, - "index": 0 - }, - "household.demographic.age.is_child": { - "label": "household.demographic.age.is_child", - "description": null, - "index": 0 - }, - "household.demographic.spm_unit.spm_unit_count_children": { - "label": "household.demographic.spm_unit.spm_unit_count_children", - "description": null, - "index": 0 - }, - "household.demographic.spm_unit.spm_unit_count": { - "label": "household.demographic.spm_unit.spm_unit_count", - "description": null, - "index": 0 - }, - "household.demographic.spm_unit.spm_unit_size": { - "label": "household.demographic.spm_unit.spm_unit_size", - "description": null, - "index": 0 - }, - "household.demographic.spm_unit.spm_unit_is_married": { - "label": "household.demographic.spm_unit.spm_unit_is_married", - "description": null, - "index": 0 - }, - "household.demographic.spm_unit.spm_unit_count_adults": { - "label": "household.demographic.spm_unit.spm_unit_count_adults", - "description": null, - "index": 0 - }, - "household.demographic.spm_unit.spm_unit_id": { - "label": "household.demographic.spm_unit.spm_unit_id", - "description": null, - "index": 0 - }, - "household.expense.education.investment_in_529_plan": { - "label": "household.expense.education.investment_in_529_plan", - "description": null, - "index": 0 - }, - "household.expense.education.count_529_contribution_beneficiaries": { - "label": "household.expense.education.count_529_contribution_beneficiaries", - "description": null, - "index": 0 - }, - "household.expense.education.investment_in_529_plan_indv": { - "label": "household.expense.education.investment_in_529_plan_indv", - "description": null, - "index": 0 - }, - "household.expense.education.non_public_school_tuition": { - "label": "household.expense.education.non_public_school_tuition", - "description": null, - "index": 0 - }, - "household.expense.vehicle.new_clean_vehicle_battery_critical_minerals_extracted_in_trading_partner_country": { - "label": "household.expense.vehicle.new_clean_vehicle_battery_critical_minerals_extracted_in_trading_partner_country", - "description": null, - "index": 0 - }, - "household.expense.vehicle.used_clean_vehicle_sale_price": { - "label": "household.expense.vehicle.used_clean_vehicle_sale_price", - "description": null, - "index": 0 - }, - "household.expense.vehicle.new_clean_vehicle_battery_capacity": { - "label": "household.expense.vehicle.new_clean_vehicle_battery_capacity", - "description": null, - "index": 0 - }, - "household.expense.vehicle.new_clean_vehicle_msrp": { - "label": "household.expense.vehicle.new_clean_vehicle_msrp", - "description": null, - "index": 0 - }, - "household.expense.vehicle.new_clean_vehicle_classification": { - "label": "household.expense.vehicle.new_clean_vehicle_classification", - "description": null, - "index": 0 - }, - "household.expense.vehicle.new_clean_vehicle_battery_components_made_in_north_america": { - "label": "household.expense.vehicle.new_clean_vehicle_battery_components_made_in_north_america", - "description": null, - "index": 0 - }, - "household.expense.vehicle.auto_loan_interest": { - "label": "household.expense.vehicle.auto_loan_interest", - "description": null, - "index": 0 - }, - "household.expense.vehicle.purchased_qualifying_new_clean_vehicle": { - "label": "household.expense.vehicle.purchased_qualifying_new_clean_vehicle", - "description": null, - "index": 0 - }, - "household.expense.vehicle.auto_loan_balance": { - "label": "household.expense.vehicle.auto_loan_balance", - "description": null, - "index": 0 - }, - "household.expense.vehicle.purchased_qualifying_used_clean_vehicle": { - "label": "household.expense.vehicle.purchased_qualifying_used_clean_vehicle", - "description": null, - "index": 0 - }, - "household.expense.person.student_loan_interest": { - "label": "household.expense.person.student_loan_interest", - "description": null, - "index": 0 - }, - "household.expense.person.qualified_tuition_expenses": { - "label": "household.expense.person.qualified_tuition_expenses", - "description": null, - "index": 0 - }, - "household.expense.person.investment_interest_expense": { - "label": "household.expense.person.investment_interest_expense", - "description": null, - "index": 0 - }, - "household.expense.person.deductible_mortgage_interest": { - "label": "household.expense.person.deductible_mortgage_interest", - "description": null, - "index": 0 - }, - "household.expense.person.educator_expense": { - "label": "household.expense.person.educator_expense", - "description": null, - "index": 0 - }, - "household.expense.person.k12_tuition_and_fees": { - "label": "household.expense.person.k12_tuition_and_fees", - "description": null, - "index": 0 - }, - "household.expense.person.unreimbursed_business_employee_expenses": { - "label": "household.expense.person.unreimbursed_business_employee_expenses", - "description": null, - "index": 0 - }, - "household.expense.person.mortgage_interest": { - "label": "household.expense.person.mortgage_interest", - "description": null, - "index": 0 - }, - "household.expense.person.investment_expense": { - "label": "household.expense.person.investment_expense", - "description": null, - "index": 0 - }, - "household.expense.person.tuition_and_fees": { - "label": "household.expense.person.tuition_and_fees", - "description": null, - "index": 0 - }, - "household.expense.person.qualified_adoption_assistance_expense": { - "label": "household.expense.person.qualified_adoption_assistance_expense", - "description": null, - "index": 0 - }, - "household.expense.person.alimony_expense": { - "label": "household.expense.person.alimony_expense", - "description": null, - "index": 0 - }, - "household.expense.person.tax_preparation_fees": { - "label": "household.expense.person.tax_preparation_fees", - "description": null, - "index": 0 - }, - "household.expense.person.non_mortgage_interest": { - "label": "household.expense.person.non_mortgage_interest", - "description": null, - "index": 0 - }, - "household.expense.person.home_mortgage_interest": { - "label": "household.expense.person.home_mortgage_interest", - "description": null, - "index": 0 - }, - "household.expense.person.deductible_interest_expense": { - "label": "household.expense.person.deductible_interest_expense", - "description": null, - "index": 0 - }, - "household.expense.person.non_deductible_mortgage_interest": { - "label": "household.expense.person.non_deductible_mortgage_interest", - "description": null, - "index": 0 - }, - "household.expense.childcare.care_expenses": { - "label": "household.expense.childcare.care_expenses", - "description": null, - "index": 0 - }, - "household.expense.childcare.pre_subsidy_childcare_expenses": { - "label": "household.expense.childcare.pre_subsidy_childcare_expenses", - "description": null, - "index": 0 - }, - "household.expense.childcare.childcare_hours_per_week": { - "label": "household.expense.childcare.childcare_hours_per_week", - "description": null, - "index": 0 - }, - "household.expense.childcare.tax_unit_childcare_expenses": { - "label": "household.expense.childcare.tax_unit_childcare_expenses", - "description": null, - "index": 0 - }, - "household.expense.childcare.childcare_expenses": { - "label": "household.expense.childcare.childcare_expenses", - "description": null, - "index": 0 - }, - "household.expense.childcare.childcare_days_per_week": { - "label": "household.expense.childcare.childcare_days_per_week", - "description": null, - "index": 0 - }, - "household.expense.childcare.spm_unit_pre_subsidy_childcare_expenses": { - "label": "household.expense.childcare.spm_unit_pre_subsidy_childcare_expenses", - "description": null, - "index": 0 - }, - "household.expense.childcare.pre_subsidy_care_expenses": { - "label": "household.expense.childcare.pre_subsidy_care_expenses", - "description": null, - "index": 0 - }, - "household.expense.childcare.spm_unit_capped_work_childcare_expenses": { - "label": "household.expense.childcare.spm_unit_capped_work_childcare_expenses", - "description": null, - "index": 0 - }, - "household.expense.childcare.childcare_hours_per_day": { - "label": "household.expense.childcare.childcare_hours_per_day", - "description": null, - "index": 0 - }, - "household.expense.childcare.childcare_provider_type_group": { - "label": "household.expense.childcare.childcare_provider_type_group", - "description": null, - "index": 0 - }, - "household.expense.childcare.after_school_expenses": { - "label": "household.expense.childcare.after_school_expenses", - "description": null, - "index": 0 - }, - "household.expense.charitable.charitable_cash_donations": { - "label": "household.expense.charitable.charitable_cash_donations", - "description": null, - "index": 0 - }, - "household.expense.charitable.charitable_non_cash_donations": { - "label": "household.expense.charitable.charitable_non_cash_donations", - "description": null, - "index": 0 - }, - "household.expense.tax.spm_unit_payroll_tax_reported": { - "label": "household.expense.tax.spm_unit_payroll_tax_reported", - "description": null, - "index": 0 - }, - "household.expense.tax.excess_withheld_payroll_tax": { - "label": "household.expense.tax.excess_withheld_payroll_tax", - "description": null, - "index": 0 - }, - "household.expense.tax.qualified_retirement_penalty": { - "label": "household.expense.tax.qualified_retirement_penalty", - "description": null, - "index": 0 - }, - "household.expense.tax.spm_unit_payroll_tax": { - "label": "household.expense.tax.spm_unit_payroll_tax", - "description": null, - "index": 0 - }, - "household.expense.tax.spm_unit_state_tax": { - "label": "household.expense.tax.spm_unit_state_tax", - "description": null, - "index": 0 - }, - "household.expense.tax.casualty_loss": { - "label": "household.expense.tax.casualty_loss", - "description": null, - "index": 0 - }, - "household.expense.tax.spm_unit_federal_tax_reported": { - "label": "household.expense.tax.spm_unit_federal_tax_reported", - "description": null, - "index": 0 - }, - "household.expense.tax.spm_unit_federal_tax": { - "label": "household.expense.tax.spm_unit_federal_tax", - "description": null, - "index": 0 - }, - "household.expense.tax.spm_unit_self_employment_tax": { - "label": "household.expense.tax.spm_unit_self_employment_tax", - "description": null, - "index": 0 - }, - "household.expense.tax.real_estate_taxes": { - "label": "household.expense.tax.real_estate_taxes", - "description": null, - "index": 0 - }, - "household.expense.tax.taxable_estate_value": { - "label": "household.expense.tax.taxable_estate_value", - "description": null, - "index": 0 - }, - "household.expense.tax.state_income_tax_reported": { - "label": "household.expense.tax.state_income_tax_reported", - "description": null, - "index": 0 - }, - "household.expense.tax.spm_unit_state_tax_reported": { - "label": "household.expense.tax.spm_unit_state_tax_reported", - "description": null, - "index": 0 - }, - "household.expense.utilities.metered_gas_expense": { - "label": "household.expense.utilities.metered_gas_expense", - "description": null, - "index": 0 - }, - "household.expense.utilities.broadband_cost": { - "label": "household.expense.utilities.broadband_cost", - "description": null, - "index": 0 - }, - "household.expense.utilities.coal_expense": { - "label": "household.expense.utilities.coal_expense", - "description": null, - "index": 0 - }, - "household.expense.utilities.sewage_expense": { - "label": "household.expense.utilities.sewage_expense", - "description": null, - "index": 0 - }, - "household.expense.utilities.heating_cooling_expense": { - "label": "household.expense.utilities.heating_cooling_expense", - "description": null, - "index": 0 - }, - "household.expense.utilities.utility_expense": { - "label": "household.expense.utilities.utility_expense", - "description": null, - "index": 0 - }, - "household.expense.utilities.has_heating_cooling_expense": { - "label": "household.expense.utilities.has_heating_cooling_expense", - "description": null, - "index": 0 - }, - "household.expense.utilities.fuel_oil_expense": { - "label": "household.expense.utilities.fuel_oil_expense", - "description": null, - "index": 0 - }, - "household.expense.utilities.count_distinct_utility_expenses": { - "label": "household.expense.utilities.count_distinct_utility_expenses", - "description": null, - "index": 0 - }, - "household.expense.utilities.gas_expense": { - "label": "household.expense.utilities.gas_expense", - "description": null, - "index": 0 - }, - "household.expense.utilities.pre_subsidy_electricity_expense": { - "label": "household.expense.utilities.pre_subsidy_electricity_expense", - "description": null, - "index": 0 - }, - "household.expense.utilities.phone_cost": { - "label": "household.expense.utilities.phone_cost", - "description": null, - "index": 0 - }, - "household.expense.utilities.cooking_fuel_expense": { - "label": "household.expense.utilities.cooking_fuel_expense", - "description": null, - "index": 0 - }, - "household.expense.utilities.bottled_gas_expense": { - "label": "household.expense.utilities.bottled_gas_expense", - "description": null, - "index": 0 - }, - "household.expense.utilities.water_expense": { - "label": "household.expense.utilities.water_expense", - "description": null, - "index": 0 - }, - "household.expense.utilities.has_phone_expense": { - "label": "household.expense.utilities.has_phone_expense", - "description": null, - "index": 0 - }, - "household.expense.utilities.phone_expense": { - "label": "household.expense.utilities.phone_expense", - "description": null, - "index": 0 - }, - "household.expense.utilities.trash_expense": { - "label": "household.expense.utilities.trash_expense", - "description": null, - "index": 0 - }, - "household.expense.utilities.electricity_expense": { - "label": "household.expense.utilities.electricity_expense", - "description": null, - "index": 0 - }, - "household.expense.child_support.child_support_received": { - "label": "household.expense.child_support.child_support_received", - "description": null, - "index": 0 - }, - "household.expense.child_support.child_support_expense": { - "label": "household.expense.child_support.child_support_expense", - "description": null, - "index": 0 - }, - "household.expense.housing.heating_expense_last_year": { - "label": "household.expense.housing.heating_expense_last_year", - "description": null, - "index": 0 - }, - "household.expense.housing.small_area_fair_market_rent": { - "label": "household.expense.housing.small_area_fair_market_rent", - "description": null, - "index": 0 - }, - "household.expense.housing.heat_expense_included_in_rent": { - "label": "household.expense.housing.heat_expense_included_in_rent", - "description": null, - "index": 0 - }, - "household.expense.housing.homeowners_association_fees": { - "label": "household.expense.housing.homeowners_association_fees", - "description": null, - "index": 0 - }, - "household.expense.housing.pre_subsidy_rent": { - "label": "household.expense.housing.pre_subsidy_rent", - "description": null, - "index": 0 - }, - "household.expense.housing.rent": { - "label": "household.expense.housing.rent", - "description": null, - "index": 0 - }, - "household.expense.housing.homeowners_insurance": { - "label": "household.expense.housing.homeowners_insurance", - "description": null, - "index": 0 - }, - "household.expense.housing.rents": { - "label": "household.expense.housing.rents", - "description": null, - "index": 0 - }, - "household.expense.housing.tenure_type": { - "label": "household.expense.housing.tenure_type", - "description": null, - "index": 0 - }, - "household.expense.housing.mortgage_payments": { - "label": "household.expense.housing.mortgage_payments", - "description": null, - "index": 0 - }, - "household.expense.housing.utilities_included_in_rent": { - "label": "household.expense.housing.utilities_included_in_rent", - "description": null, - "index": 0 - }, - "household.expense.housing.is_in_public_housing": { - "label": "household.expense.housing.is_in_public_housing", - "description": null, - "index": 0 - }, - "household.expense.housing.housing_cost": { - "label": "household.expense.housing.housing_cost", - "description": null, - "index": 0 - }, - "household.expense.housing.heating_expenses": { - "label": "household.expense.housing.heating_expenses", - "description": null, - "index": 0 - }, - "household.expense.housing.heating_expense_person": { - "label": "household.expense.housing.heating_expense_person", - "description": null, - "index": 0 - }, - "household.expense.housing.expenditures.home_energy_audit_expenditures": { - "label": "household.expense.housing.expenditures.home_energy_audit_expenditures", - "description": null, - "index": 0 - }, - "household.expense.housing.expenditures.residential_efficiency_electrification.current_home_energy_use": { - "label": "household.expense.housing.expenditures.residential_efficiency_electrification.current_home_energy_use", - "description": null, - "index": 0 - }, - "household.expense.housing.expenditures.residential_efficiency_electrification.residential_efficiency_electrification_retrofit_expenditures": { - "label": "household.expense.housing.expenditures.residential_efficiency_electrification.residential_efficiency_electrification_retrofit_expenditures", - "description": null, - "index": 0 - }, - "household.expense.housing.expenditures.residential_efficiency_electrification.residential_efficiency_electrification_retrofit_energy_savings": { - "label": "household.expense.housing.expenditures.residential_efficiency_electrification.residential_efficiency_electrification_retrofit_energy_savings", - "description": null, - "index": 0 - }, - "household.expense.housing.expenditures.energy_efficiency_improvements.energy_efficient_insulation_expenditures": { - "label": "household.expense.housing.expenditures.energy_efficiency_improvements.energy_efficient_insulation_expenditures", - "description": null, - "index": 0 - }, - "household.expense.housing.expenditures.energy_efficiency_improvements.energy_efficient_door_expenditures": { - "label": "household.expense.housing.expenditures.energy_efficiency_improvements.energy_efficient_door_expenditures", - "description": null, - "index": 0 - }, - "household.expense.housing.expenditures.energy_efficiency_improvements.energy_efficient_roof_expenditures": { - "label": "household.expense.housing.expenditures.energy_efficiency_improvements.energy_efficient_roof_expenditures", - "description": null, - "index": 0 - }, - "household.expense.housing.expenditures.energy_efficiency_improvements.energy_efficient_window_expenditures": { - "label": "household.expense.housing.expenditures.energy_efficiency_improvements.energy_efficient_window_expenditures", - "description": null, - "index": 0 - }, - "household.expense.housing.expenditures.energy_property.qualified_furnace_or_hot_water_boiler_expenditures": { - "label": "household.expense.housing.expenditures.energy_property.qualified_furnace_or_hot_water_boiler_expenditures", - "description": null, - "index": 0 - }, - "household.expense.housing.expenditures.energy_property.electric_wiring_expenditures": { - "label": "household.expense.housing.expenditures.energy_property.electric_wiring_expenditures", - "description": null, - "index": 0 - }, - "household.expense.housing.expenditures.energy_property.electric_load_service_center_upgrade_expenditures": { - "label": "household.expense.housing.expenditures.energy_property.electric_load_service_center_upgrade_expenditures", - "description": null, - "index": 0 - }, - "household.expense.housing.expenditures.energy_property.air_sealing_ventilation_expenditures": { - "label": "household.expense.housing.expenditures.energy_property.air_sealing_ventilation_expenditures", - "description": null, - "index": 0 - }, - "household.expense.housing.expenditures.energy_property.electric_stove_cooktop_range_or_oven_expenditures": { - "label": "household.expense.housing.expenditures.energy_property.electric_stove_cooktop_range_or_oven_expenditures", - "description": null, - "index": 0 - }, - "household.expense.housing.expenditures.energy_property.biomass_stove_boiler_expenditures": { - "label": "household.expense.housing.expenditures.energy_property.biomass_stove_boiler_expenditures", - "description": null, - "index": 0 - }, - "household.expense.housing.expenditures.energy_property.electric_heat_pump_clothes_dryer_expenditures": { - "label": "household.expense.housing.expenditures.energy_property.electric_heat_pump_clothes_dryer_expenditures", - "description": null, - "index": 0 - }, - "household.expense.housing.expenditures.energy_property.heat_pump_water_heater_expenditures": { - "label": "household.expense.housing.expenditures.energy_property.heat_pump_water_heater_expenditures", - "description": null, - "index": 0 - }, - "household.expense.housing.expenditures.energy_property.heat_pump_expenditures": { - "label": "household.expense.housing.expenditures.energy_property.heat_pump_expenditures", - "description": null, - "index": 0 - }, - "household.expense.housing.expenditures.energy_property.energy_efficient_central_air_conditioner_expenditures": { - "label": "household.expense.housing.expenditures.energy_property.energy_efficient_central_air_conditioner_expenditures", - "description": null, - "index": 0 - }, - "household.expense.housing.expenditures.energy_property.advanced_main_air_circulating_fan_expenditures": { - "label": "household.expense.housing.expenditures.energy_property.advanced_main_air_circulating_fan_expenditures", - "description": null, - "index": 0 - }, - "household.expense.housing.expenditures.energy_efficient_property.solar_electric_property_expenditures": { - "label": "household.expense.housing.expenditures.energy_efficient_property.solar_electric_property_expenditures", - "description": null, - "index": 0 - }, - "household.expense.housing.expenditures.energy_efficient_property.fuel_cell_property_capacity": { - "label": "household.expense.housing.expenditures.energy_efficient_property.fuel_cell_property_capacity", - "description": null, - "index": 0 - }, - "household.expense.housing.expenditures.energy_efficient_property.fuel_cell_property_expenditures": { - "label": "household.expense.housing.expenditures.energy_efficient_property.fuel_cell_property_expenditures", - "description": null, - "index": 0 - }, - "household.expense.housing.expenditures.energy_efficient_property.small_wind_energy_property_expenditures": { - "label": "household.expense.housing.expenditures.energy_efficient_property.small_wind_energy_property_expenditures", - "description": null, - "index": 0 - }, - "household.expense.housing.expenditures.energy_efficient_property.geothermal_heat_pump_property_expenditures": { - "label": "household.expense.housing.expenditures.energy_efficient_property.geothermal_heat_pump_property_expenditures", - "description": null, - "index": 0 - }, - "household.expense.housing.expenditures.energy_efficient_property.solar_water_heating_property_expenditures": { - "label": "household.expense.housing.expenditures.energy_efficient_property.solar_water_heating_property_expenditures", - "description": null, - "index": 0 - }, - "household.expense.housing.expenditures.energy_efficient_property.qualified_battery_storage_technology_expenditures": { - "label": "household.expense.housing.expenditures.energy_efficient_property.qualified_battery_storage_technology_expenditures", - "description": null, - "index": 0 - }, - "household.expense.health.employer_contribution_to_health_insurance_premiums_category": { - "label": "household.expense.health.employer_contribution_to_health_insurance_premiums_category", - "description": null, - "index": 0 - }, - "household.expense.health.imaging_expense": { - "label": "household.expense.health.imaging_expense", - "description": null, - "index": 0 - }, - "household.expense.health.has_marketplace_health_coverage": { - "label": "household.expense.health.has_marketplace_health_coverage", - "description": null, - "index": 0 - }, - "household.expense.health.prescription_expense": { - "label": "household.expense.health.prescription_expense", - "description": null, - "index": 0 - }, - "household.expense.health.medicare_part_b_premiums": { - "label": "household.expense.health.medicare_part_b_premiums", - "description": null, - "index": 0 - }, - "household.expense.health.inpatient_expense": { - "label": "household.expense.health.inpatient_expense", - "description": null, - "index": 0 - }, - "household.expense.health.health_insurance_premiums": { - "label": "household.expense.health.health_insurance_premiums", - "description": null, - "index": 0 - }, - "household.expense.health.urgent_care_expense": { - "label": "household.expense.health.urgent_care_expense", - "description": null, - "index": 0 - }, - "household.expense.health.health_insurance_premiums_without_medicare_part_b": { - "label": "household.expense.health.health_insurance_premiums_without_medicare_part_b", - "description": null, - "index": 0 - }, - "household.expense.health.other_medical_expenses": { - "label": "household.expense.health.other_medical_expenses", - "description": null, - "index": 0 - }, - "household.expense.health.medical_out_of_pocket_expenses": { - "label": "household.expense.health.medical_out_of_pocket_expenses", - "description": null, - "index": 0 - }, - "household.expense.health.physician_services_expense": { - "label": "household.expense.health.physician_services_expense", - "description": null, - "index": 0 - }, - "household.expense.health.long_term_health_insurance_premiums": { - "label": "household.expense.health.long_term_health_insurance_premiums", - "description": null, - "index": 0 - }, - "household.expense.health.ambulance_expense": { - "label": "household.expense.health.ambulance_expense", - "description": null, - "index": 0 - }, - "household.expense.health.outpatient_expense": { - "label": "household.expense.health.outpatient_expense", - "description": null, - "index": 0 - }, - "household.expense.health.self_employed_health_insurance_premiums": { - "label": "household.expense.health.self_employed_health_insurance_premiums", - "description": null, - "index": 0 - }, - "household.expense.health.over_the_counter_health_expenses": { - "label": "household.expense.health.over_the_counter_health_expenses", - "description": null, - "index": 0 - }, - "household.expense.health.lab_expense": { - "label": "household.expense.health.lab_expense", - "description": null, - "index": 0 - }, - "household.expense.health.er_visit_expense": { - "label": "household.expense.health.er_visit_expense", - "description": null, - "index": 0 - }, - "household.expense.health.health_savings_account_contributions": { - "label": "household.expense.health.health_savings_account_contributions", - "description": null, - "index": 0 - }, - "household.expense.retirement.able_contributions_person": { - "label": "household.expense.retirement.able_contributions_person", - "description": null, - "index": 0 - }, - "household.expense.retirement.able_contributions": { - "label": "household.expense.retirement.able_contributions", - "description": null, - "index": 0 - }, - "household.expense.retirement.traditional_401k_contributions": { - "label": "household.expense.retirement.traditional_401k_contributions", - "description": null, - "index": 0 - }, - "household.expense.retirement.self_employed_pension_contributions": { - "label": "household.expense.retirement.self_employed_pension_contributions", - "description": null, - "index": 0 - }, - "household.expense.retirement.early_withdrawal_penalty": { - "label": "household.expense.retirement.early_withdrawal_penalty", - "description": null, - "index": 0 - }, - "household.expense.retirement.roth_ira_contributions": { - "label": "household.expense.retirement.roth_ira_contributions", - "description": null, - "index": 0 - }, - "household.expense.retirement.traditional_403b_contributions": { - "label": "household.expense.retirement.traditional_403b_contributions", - "description": null, - "index": 0 - }, - "household.expense.retirement.roth_401k_contributions": { - "label": "household.expense.retirement.roth_401k_contributions", - "description": null, - "index": 0 - }, - "household.expense.retirement.roth_403b_contributions": { - "label": "household.expense.retirement.roth_403b_contributions", - "description": null, - "index": 0 - }, - "household.expense.retirement.traditional_ira_contributions": { - "label": "household.expense.retirement.traditional_ira_contributions", - "description": null, - "index": 0 - }, - "household.income.fsla_overtime_salary_threshold": { - "label": "household.income.fsla_overtime_salary_threshold", - "description": null, - "index": 0 - }, - "household.income.illicit_income": { - "label": "household.income.illicit_income", - "description": null, - "index": 0 - }, - "household.income.tax_unit.property_sales_net_capital_gain": { - "label": "household.income.tax_unit.property_sales_net_capital_gain", - "description": null, - "index": 0 - }, - "household.income.tax_unit.us_govt_interest": { - "label": "household.income.tax_unit.us_govt_interest", - "description": null, - "index": 0 - }, - "household.income.tax_unit.spouse_separate_adjusted_gross_income": { - "label": "household.income.tax_unit.spouse_separate_adjusted_gross_income", - "description": null, - "index": 0 - }, - "household.income.tax_unit.form_4972_lumpsum_distributions": { - "label": "household.income.tax_unit.form_4972_lumpsum_distributions", - "description": null, - "index": 0 - }, - "household.income.tax_unit.net_capital_gains": { - "label": "household.income.tax_unit.net_capital_gains", - "description": null, - "index": 0 - }, - "household.income.household.equiv_household_net_income": { - "label": "household.income.household.equiv_household_net_income", - "description": null, - "index": 0 - }, - "household.income.household.household_income_decile": { - "label": "household.income.household.household_income_decile", - "description": null, - "index": 0 - }, - "household.income.household.household_net_income": { - "label": "household.income.household.household_net_income", - "description": null, - "index": 0 - }, - "household.income.household.household_benefits": { - "label": "household.income.household.household_benefits", - "description": null, - "index": 0 - }, - "household.income.household.household_refundable_state_tax_credits": { - "label": "household.income.household.household_refundable_state_tax_credits", - "description": null, - "index": 0 - }, - "household.income.household.household_health_benefits": { - "label": "household.income.household.household_health_benefits", - "description": null, - "index": 0 - }, - "household.income.household.household_refundable_tax_credits": { - "label": "household.income.household.household_refundable_tax_credits", - "description": null, - "index": 0 - }, - "household.income.household.income_decile": { - "label": "household.income.household.income_decile", - "description": null, - "index": 0 - }, - "household.income.household.household_tax_before_refundable_credits": { - "label": "household.income.household.household_tax_before_refundable_credits", - "description": null, - "index": 0 - }, - "household.income.household.person_in_poverty": { - "label": "household.income.household.person_in_poverty", - "description": null, - "index": 0 - }, - "household.income.household.household_count_people": { - "label": "household.income.household.household_count_people", - "description": null, - "index": 0 - }, - "household.income.household.household_market_income": { - "label": "household.income.household.household_market_income", - "description": null, - "index": 0 - }, - "household.income.household.household_tax": { - "label": "household.income.household.household_tax", - "description": null, - "index": 0 - }, - "household.income.household.household_state_tax_before_refundable_credits": { - "label": "household.income.household.household_state_tax_before_refundable_credits", - "description": null, - "index": 0 - }, - "household.income.household.household_state_benefits": { - "label": "household.income.household.household_state_benefits", - "description": null, - "index": 0 - }, - "household.income.household.household_local_benefits": { - "label": "household.income.household.household_local_benefits", - "description": null, - "index": 0 - }, - "household.income.household.household_state_income_tax": { - "label": "household.income.household.household_state_income_tax", - "description": null, - "index": 0 - }, - "household.income.person.dependent_care_employer_benefits": { - "label": "household.income.person.dependent_care_employer_benefits", - "description": null, - "index": 0 - }, - "household.income.person.gambling_winnings": { - "label": "household.income.person.gambling_winnings", - "description": null, - "index": 0 - }, - "household.income.person.gambling_losses": { - "label": "household.income.person.gambling_losses", - "description": null, - "index": 0 - }, - "household.income.person.ssi_reported": { - "label": "household.income.person.ssi_reported", - "description": null, - "index": 0 - }, - "household.income.person.is_eligible_for_fsla_overtime": { - "label": "household.income.person.is_eligible_for_fsla_overtime", - "description": null, - "index": 0 - }, - "household.income.person.ssi_qualifying_quarters_earnings": { - "label": "household.income.person.ssi_qualifying_quarters_earnings", - "description": null, - "index": 0 - }, - "household.income.person.hours_worked_last_week": { - "label": "household.income.person.hours_worked_last_week", - "description": null, - "index": 0 - }, - "household.income.person.fsla_overtime_occupation_exemption_category": { - "label": "household.income.person.fsla_overtime_occupation_exemption_category", - "description": null, - "index": 0 - }, - "household.income.person.weekly_hours_worked": { - "label": "household.income.person.weekly_hours_worked", - "description": null, - "index": 0 - }, - "household.income.person.monthly_hours_worked": { - "label": "household.income.person.monthly_hours_worked", - "description": null, - "index": 0 - }, - "household.income.person.fsla_overtime_premium": { - "label": "household.income.person.fsla_overtime_premium", - "description": null, - "index": 0 - }, - "household.income.person.is_paid_hourly": { - "label": "household.income.person.is_paid_hourly", - "description": null, - "index": 0 - }, - "household.income.person.tip_income": { - "label": "household.income.person.tip_income", - "description": null, - "index": 0 - }, - "household.income.person.employment_income_last_year": { - "label": "household.income.person.employment_income_last_year", - "description": null, - "index": 0 - }, - "household.income.person.interest.interest_income": { - "label": "household.income.person.interest.interest_income", - "description": null, - "index": 0 - }, - "household.income.person.interest.tax_exempt_interest_income": { - "label": "household.income.person.interest.tax_exempt_interest_income", - "description": null, - "index": 0 - }, - "household.income.person.interest.taxable_interest_income": { - "label": "household.income.person.interest.taxable_interest_income", - "description": null, - "index": 0 - }, - "household.income.person.farm.farm_operations_income_would_be_qualified": { - "label": "household.income.person.farm.farm_operations_income_would_be_qualified", - "description": null, - "index": 0 - }, - "household.income.person.farm.farm_rent_income_would_be_qualified": { - "label": "household.income.person.farm.farm_rent_income_would_be_qualified", - "description": null, - "index": 0 - }, - "household.income.person.farm.farm_rent_income": { - "label": "household.income.person.farm.farm_rent_income", - "description": null, - "index": 0 - }, - "household.income.person.farm.farm_operations_income": { - "label": "household.income.person.farm.farm_operations_income", - "description": null, - "index": 0 - }, - "household.income.person.dividends.non_qualified_dividend_income": { - "label": "household.income.person.dividends.non_qualified_dividend_income", - "description": null, - "index": 0 - }, - "household.income.person.dividends.qualified_bdc_income": { - "label": "household.income.person.dividends.qualified_bdc_income", - "description": null, - "index": 0 - }, - "household.income.person.dividends.qualified_dividend_income": { - "label": "household.income.person.dividends.qualified_dividend_income", - "description": null, - "index": 0 - }, - "household.income.person.dividends.dividend_income": { - "label": "household.income.person.dividends.dividend_income", - "description": null, - "index": 0 - }, - "household.income.person.dividends.qualified_reit_and_ptp_income": { - "label": "household.income.person.dividends.qualified_reit_and_ptp_income", - "description": null, - "index": 0 - }, - "household.income.person.misc.gi_cash_assistance": { - "label": "household.income.person.misc.gi_cash_assistance", - "description": null, - "index": 0 - }, - "household.income.person.misc.military_basic_pay": { - "label": "household.income.person.misc.military_basic_pay", - "description": null, - "index": 0 - }, - "household.income.person.misc.miscellaneous_income": { - "label": "household.income.person.misc.miscellaneous_income", - "description": null, - "index": 0 - }, - "household.income.person.misc.debt_relief": { - "label": "household.income.person.misc.debt_relief", - "description": null, - "index": 0 - }, - "household.income.person.misc.rental_income": { - "label": "household.income.person.misc.rental_income", - "description": null, - "index": 0 - }, - "household.income.person.misc.investment_income_elected_form_4952": { - "label": "household.income.person.misc.investment_income_elected_form_4952", - "description": null, - "index": 0 - }, - "household.income.person.misc.salt_refund_income": { - "label": "household.income.person.misc.salt_refund_income", - "description": null, - "index": 0 - }, - "household.income.person.misc.us_bonds_for_higher_ed": { - "label": "household.income.person.misc.us_bonds_for_higher_ed", - "description": null, - "index": 0 - }, - "household.income.person.misc.rental_income_would_be_qualified": { - "label": "household.income.person.misc.rental_income_would_be_qualified", - "description": null, - "index": 0 - }, - "household.income.person.misc.strike_benefits": { - "label": "household.income.person.misc.strike_benefits", - "description": null, - "index": 0 - }, - "household.income.person.misc.alimony_income": { - "label": "household.income.person.misc.alimony_income", - "description": null, - "index": 0 - }, - "household.income.person.capital_gains.short_term_capital_gains": { - "label": "household.income.person.capital_gains.short_term_capital_gains", - "description": null, - "index": 0 - }, - "household.income.person.capital_gains.long_term_capital_gains_on_small_business_stock": { - "label": "household.income.person.capital_gains.long_term_capital_gains_on_small_business_stock", - "description": null, - "index": 0 - }, - "household.income.person.capital_gains.capital_gains": { - "label": "household.income.person.capital_gains.capital_gains", - "description": null, - "index": 0 - }, - "household.income.person.capital_gains.long_term_capital_gains": { - "label": "household.income.person.capital_gains.long_term_capital_gains", - "description": null, - "index": 0 - }, - "household.income.person.capital_gains.unrecaptured_section_1250_gain": { - "label": "household.income.person.capital_gains.unrecaptured_section_1250_gain", - "description": null, - "index": 0 - }, - "household.income.person.capital_gains.long_term_capital_gains_on_collectibles": { - "label": "household.income.person.capital_gains.long_term_capital_gains_on_collectibles", - "description": null, - "index": 0 - }, - "household.income.person.capital_gains.other_net_gain": { - "label": "household.income.person.capital_gains.other_net_gain", - "description": null, - "index": 0 - }, - "household.income.person.capital_gains.non_sch_d_capital_gains": { - "label": "household.income.person.capital_gains.non_sch_d_capital_gains", - "description": null, - "index": 0 - }, - "household.income.person.capital_gains.capital_losses": { - "label": "household.income.person.capital_gains.capital_losses", - "description": null, - "index": 0 - }, - "household.income.person.self_employment.is_self_employed": { - "label": "household.income.person.self_employment.is_self_employed", - "description": null, - "index": 0 - }, - "household.income.person.self_employment.business_is_qualified": { - "label": "household.income.person.self_employment.business_is_qualified", - "description": null, - "index": 0 - }, - "household.income.person.self_employment.partnership_s_corp_income_would_be_qualified": { - "label": "household.income.person.self_employment.partnership_s_corp_income_would_be_qualified", - "description": null, - "index": 0 - }, - "household.income.person.self_employment.business_is_sstb": { - "label": "household.income.person.self_employment.business_is_sstb", - "description": null, - "index": 0 - }, - "household.income.person.self_employment.self_employment_income_would_be_qualified": { - "label": "household.income.person.self_employment.self_employment_income_would_be_qualified", - "description": null, - "index": 0 - }, - "household.income.person.self_employment.partnership_s_corp_income": { - "label": "household.income.person.self_employment.partnership_s_corp_income", - "description": null, - "index": 0 - }, - "household.income.person.self_employment.s_corp_self_employment_income": { - "label": "household.income.person.self_employment.s_corp_self_employment_income", - "description": null, - "index": 0 - }, - "household.income.person.self_employment.self_employment_income_last_year": { - "label": "household.income.person.self_employment.self_employment_income_last_year", - "description": null, - "index": 0 - }, - "household.income.person.self_employment.unadjusted_basis_qualified_property": { - "label": "household.income.person.self_employment.unadjusted_basis_qualified_property", - "description": null, - "index": 0 - }, - "household.income.person.self_employment.w2_wages_from_qualified_business": { - "label": "household.income.person.self_employment.w2_wages_from_qualified_business", - "description": null, - "index": 0 - }, - "household.income.person.retirement.tax_exempt_401k_distributions": { - "label": "household.income.person.retirement.tax_exempt_401k_distributions", - "description": null, - "index": 0 - }, - "household.income.person.retirement.csrs_retirement_pay": { - "label": "household.income.person.retirement.csrs_retirement_pay", - "description": null, - "index": 0 - }, - "household.income.person.retirement.tax_exempt_private_pension_income": { - "label": "household.income.person.retirement.tax_exempt_private_pension_income", - "description": null, - "index": 0 - }, - "household.income.person.retirement.taxable_sep_distributions": { - "label": "household.income.person.retirement.taxable_sep_distributions", - "description": null, - "index": 0 - }, - "household.income.person.retirement.retirement_benefits_from_ss_exempt_employment": { - "label": "household.income.person.retirement.retirement_benefits_from_ss_exempt_employment", - "description": null, - "index": 0 - }, - "household.income.person.retirement.tax_exempt_public_pension_income": { - "label": "household.income.person.retirement.tax_exempt_public_pension_income", - "description": null, - "index": 0 - }, - "household.income.person.retirement.taxable_retirement_distributions": { - "label": "household.income.person.retirement.taxable_retirement_distributions", - "description": null, - "index": 0 - }, - "household.income.person.retirement.retirement_distributions": { - "label": "household.income.person.retirement.retirement_distributions", - "description": null, - "index": 0 - }, - "household.income.person.retirement.private_pension_income": { - "label": "household.income.person.retirement.private_pension_income", - "description": null, - "index": 0 - }, - "household.income.person.retirement.keogh_distributions": { - "label": "household.income.person.retirement.keogh_distributions", - "description": null, - "index": 0 - }, - "household.income.person.retirement.railroad_benefits": { - "label": "household.income.person.retirement.railroad_benefits", - "description": null, - "index": 0 - }, - "household.income.person.retirement.tax_exempt_retirement_distributions": { - "label": "household.income.person.retirement.tax_exempt_retirement_distributions", - "description": null, - "index": 0 - }, - "household.income.person.retirement.taxable_public_pension_income": { - "label": "household.income.person.retirement.taxable_public_pension_income", - "description": null, - "index": 0 - }, - "household.income.person.retirement.tax_exempt_sep_distributions": { - "label": "household.income.person.retirement.tax_exempt_sep_distributions", - "description": null, - "index": 0 - }, - "household.income.person.retirement.military_retirement_pay": { - "label": "household.income.person.retirement.military_retirement_pay", - "description": null, - "index": 0 - }, - "household.income.person.retirement.public_pension_income": { - "label": "household.income.person.retirement.public_pension_income", - "description": null, - "index": 0 - }, - "household.income.person.retirement.taxable_federal_pension_income": { - "label": "household.income.person.retirement.taxable_federal_pension_income", - "description": null, - "index": 0 - }, - "household.income.person.retirement.tax_exempt_ira_distributions": { - "label": "household.income.person.retirement.tax_exempt_ira_distributions", - "description": null, - "index": 0 - }, - "household.income.person.retirement.tax_exempt_403b_distributions": { - "label": "household.income.person.retirement.tax_exempt_403b_distributions", - "description": null, - "index": 0 - }, - "household.income.person.retirement.sep_distributions": { - "label": "household.income.person.retirement.sep_distributions", - "description": null, - "index": 0 - }, - "household.income.person.retirement.pension_income": { - "label": "household.income.person.retirement.pension_income", - "description": null, - "index": 0 - }, - "household.income.person.retirement.military_retirement_pay_survivors": { - "label": "household.income.person.retirement.military_retirement_pay_survivors", - "description": null, - "index": 0 - }, - "household.income.person.retirement.pension_survivors": { - "label": "household.income.person.retirement.pension_survivors", - "description": null, - "index": 0 - }, - "household.income.person.retirement.taxable_403b_distributions": { - "label": "household.income.person.retirement.taxable_403b_distributions", - "description": null, - "index": 0 - }, - "household.income.person.retirement.taxable_private_pension_income": { - "label": "household.income.person.retirement.taxable_private_pension_income", - "description": null, - "index": 0 - }, - "household.income.person.retirement.taxable_401k_distributions": { - "label": "household.income.person.retirement.taxable_401k_distributions", - "description": null, - "index": 0 - }, - "household.income.person.retirement.taxable_ira_distributions": { - "label": "household.income.person.retirement.taxable_ira_distributions", - "description": null, - "index": 0 - }, - "household.income.person.retirement.tax_exempt_pension_income": { - "label": "household.income.person.retirement.tax_exempt_pension_income", - "description": null, - "index": 0 - }, - "household.income.person.retirement.taxable_pension_income": { - "label": "household.income.person.retirement.taxable_pension_income", - "description": null, - "index": 0 - }, - "household.income.person.general.military_service_income": { - "label": "household.income.person.general.military_service_income", - "description": null, - "index": 0 - }, - "household.income.person.general.market_income": { - "label": "household.income.person.general.market_income", - "description": null, - "index": 0 - }, - "household.income.person.general.state_or_federal_salary": { - "label": "household.income.person.general.state_or_federal_salary", - "description": null, - "index": 0 - }, - "household.income.person.general.personal_property": { - "label": "household.income.person.general.personal_property", - "description": null, - "index": 0 - }, - "household.income.person.general.disability_benefits": { - "label": "household.income.person.general.disability_benefits", - "description": null, - "index": 0 - }, - "household.income.person.general.veterans_benefits": { - "label": "household.income.person.general.veterans_benefits", - "description": null, - "index": 0 - }, - "household.income.person.estate.estate_income_would_be_qualified": { - "label": "household.income.person.estate.estate_income_would_be_qualified", - "description": null, - "index": 0 - }, - "household.income.person.estate.estate_income": { - "label": "household.income.person.estate.estate_income", - "description": null, - "index": 0 - }, - "household.income.spm_unit.spm_unit_total_income": { - "label": "household.income.spm_unit.spm_unit_total_income", - "description": null, - "index": 0 - }, - "household.income.spm_unit.deep_poverty_line": { - "label": "household.income.spm_unit.deep_poverty_line", - "description": null, - "index": 0 - }, - "household.income.spm_unit.spm_unit_capped_housing_subsidy_reported": { - "label": "household.income.spm_unit.spm_unit_capped_housing_subsidy_reported", - "description": null, - "index": 0 - }, - "household.income.spm_unit.spm_unit_fips": { - "label": "household.income.spm_unit.spm_unit_fips", - "description": null, - "index": 0 - }, - "household.income.spm_unit.spm_unit_energy_subsidy": { - "label": "household.income.spm_unit.spm_unit_energy_subsidy", - "description": null, - "index": 0 - }, - "household.income.spm_unit.spm_unit_spm_threshold": { - "label": "household.income.spm_unit.spm_unit_spm_threshold", - "description": null, - "index": 0 - }, - "household.income.spm_unit.experienced_covid_income_loss": { - "label": "household.income.spm_unit.experienced_covid_income_loss", - "description": null, - "index": 0 - }, - "household.income.spm_unit.spm_unit_broadband_subsidy_reported": { - "label": "household.income.spm_unit.spm_unit_broadband_subsidy_reported", - "description": null, - "index": 0 - }, - "household.income.spm_unit.poverty_gap": { - "label": "household.income.spm_unit.poverty_gap", - "description": null, - "index": 0 - }, - "household.income.spm_unit.spm_unit_taxes": { - "label": "household.income.spm_unit.spm_unit_taxes", - "description": null, - "index": 0 - }, - "household.income.spm_unit.spm_unit_net_income_reported": { - "label": "household.income.spm_unit.spm_unit_net_income_reported", - "description": null, - "index": 0 - }, - "household.income.spm_unit.spm_unit_broadband_subsidy": { - "label": "household.income.spm_unit.spm_unit_broadband_subsidy", - "description": null, - "index": 0 - }, - "household.income.spm_unit.spm_unit_oecd_equiv_net_income'": { - "label": "household.income.spm_unit.spm_unit_oecd_equiv_net_income'", - "description": null, - "index": 0 - }, - "household.income.spm_unit.spm_unit_wic_reported": { - "label": "household.income.spm_unit.spm_unit_wic_reported", - "description": null, - "index": 0 - }, - "household.income.spm_unit.spm_unit_paycheck_withholdings": { - "label": "household.income.spm_unit.spm_unit_paycheck_withholdings", - "description": null, - "index": 0 - }, - "household.income.spm_unit.spm_unit_net_income": { - "label": "household.income.spm_unit.spm_unit_net_income", - "description": null, - "index": 0 - }, - "household.income.spm_unit.in_poverty": { - "label": "household.income.spm_unit.in_poverty", - "description": null, - "index": 0 - }, - "household.income.spm_unit.spm_unit_market_income": { - "label": "household.income.spm_unit.spm_unit_market_income", - "description": null, - "index": 0 - }, - "household.income.spm_unit.spm_unit_school_lunch_subsidy": { - "label": "household.income.spm_unit.spm_unit_school_lunch_subsidy", - "description": null, - "index": 0 - }, - "household.income.spm_unit.spm_unit_energy_subsidy_reported": { - "label": "household.income.spm_unit.spm_unit_energy_subsidy_reported", - "description": null, - "index": 0 - }, - "household.income.spm_unit.deep_poverty_gap": { - "label": "household.income.spm_unit.deep_poverty_gap", - "description": null, - "index": 0 - }, - "household.income.spm_unit.in_deep_poverty": { - "label": "household.income.spm_unit.in_deep_poverty", - "description": null, - "index": 0 - }, - "household.income.spm_unit.spm_unit_snap": { - "label": "household.income.spm_unit.spm_unit_snap", - "description": null, - "index": 0 - }, - "household.income.spm_unit.poverty_line": { - "label": "household.income.spm_unit.poverty_line", - "description": null, - "index": 0 - }, - "household.income.spm_unit.spm_unit_spm_expenses": { - "label": "household.income.spm_unit.spm_unit_spm_expenses", - "description": null, - "index": 0 - }, - "household.income.spm_unit.spm_unit_capped_housing_subsidy": { - "label": "household.income.spm_unit.spm_unit_capped_housing_subsidy", - "description": null, - "index": 0 - }, - "household.income.spm_unit.spm_unit_benefits": { - "label": "household.income.spm_unit.spm_unit_benefits", - "description": null, - "index": 0 - }, - "household.income.spm_unit.spm_unit_pell_grant": { - "label": "household.income.spm_unit.spm_unit_pell_grant", - "description": null, - "index": 0 - }, - "household.income.spm_unit.spm_unit_is_in_spm_poverty": { - "label": "household.income.spm_unit.spm_unit_is_in_spm_poverty", - "description": null, - "index": 0 - }, - "household.income.spm_unit.spm_unit_wic": { - "label": "household.income.spm_unit.spm_unit_wic", - "description": null, - "index": 0 - }, - "household.income.spm_unit.spm_unit_income_decile": { - "label": "household.income.spm_unit.spm_unit_income_decile", - "description": null, - "index": 0 - }, - "household.income.spm_unit.spm_unit_is_in_deep_spm_poverty": { - "label": "household.income.spm_unit.spm_unit_is_in_deep_spm_poverty", - "description": null, - "index": 0 - }, - "household.assets.spm_unit_cash_assets": { - "label": "household.assets.spm_unit_cash_assets", - "description": null, - "index": 0 - }, - "household.assets.net_worth": { - "label": "household.assets.net_worth", - "description": null, - "index": 0 - }, - "household.assets.spm_unit_assets": { - "label": "household.assets.spm_unit_assets", - "description": null, - "index": 0 - }, - "input.employment_income_before_lsr": { - "label": "input.employment_income_before_lsr", - "description": null, - "index": 0 - }, - "input.geography": { - "label": "Geography", - "description": null, - "index": 0 - }, - "input.self_employment_income": { - "label": "input.self_employment_income", - "description": null, - "index": 0 - }, - "input.self_employment_income_before_lsr": { - "label": "input.self_employment_income_before_lsr", - "description": null, - "index": 0 - }, - "input.employment_income": { - "label": "input.employment_income", - "description": null, - "index": 0 - }, - "input.farm_income": { - "label": "input.farm_income", - "description": null, - "index": 0 - }, - "gov.puf": { - "label": "gov.puf", - "description": null, - "index": 0 - }, - "gov.irs.total_income_tax": { - "label": "gov.irs.total_income_tax", - "description": null, - "index": 0 - }, - "gov.irs.puf": { - "label": "gov.irs.puf", - "description": null, - "index": 0 - }, - "gov.irs.tax_unit_is_filer": { - "label": "gov.irs.tax_unit_is_filer", - "description": null, - "index": 0 - }, - "gov.irs.tax_unit.tax_unit_is_joint": { - "label": "gov.irs.tax_unit.tax_unit_is_joint", - "description": null, - "index": 0 - }, - "gov.irs.tax_unit.head_spouse_count": { - "label": "gov.irs.tax_unit.head_spouse_count", - "description": null, - "index": 0 - }, - "gov.irs.tax_unit.tax_unit_count_dependents": { - "label": "gov.irs.tax_unit.tax_unit_count_dependents", - "description": null, - "index": 0 - }, - "gov.irs.tax_unit.tax_unit_size": { - "label": "gov.irs.tax_unit.tax_unit_size", - "description": null, - "index": 0 - }, - "gov.irs.credits.other_credits": { - "label": "gov.irs.credits.other_credits", - "description": null, - "index": 0 - }, - "gov.irs.credits.amt_foreign_tax_credit": { - "label": "gov.irs.credits.amt_foreign_tax_credit", - "description": null, - "index": 0 - }, - "gov.irs.credits.income_tax_refundable_credits": { - "label": "gov.irs.credits.income_tax_refundable_credits", - "description": null, - "index": 0 - }, - "gov.irs.credits.refundable_payroll_tax_credit": { - "label": "gov.irs.credits.refundable_payroll_tax_credit", - "description": null, - "index": 0 - }, - "gov.irs.credits.income_tax_capped_non_refundable_credits": { - "label": "gov.irs.credits.income_tax_capped_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.irs.credits.recapture_of_investment_credit": { - "label": "gov.irs.credits.recapture_of_investment_credit", - "description": null, - "index": 0 - }, - "gov.irs.credits.income_tax_non_refundable_credits": { - "label": "gov.irs.credits.income_tax_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.irs.credits.energy_efficient_home_improvement.capped_home_energy_audit_credit": { - "label": "gov.irs.credits.energy_efficient_home_improvement.capped_home_energy_audit_credit", - "description": null, - "index": 0 - }, - "gov.irs.credits.energy_efficient_home_improvement.prior_energy_efficient_home_improvement_credits": { - "label": "gov.irs.credits.energy_efficient_home_improvement.prior_energy_efficient_home_improvement_credits", - "description": null, - "index": 0 - }, - "gov.irs.credits.energy_efficient_home_improvement.energy_efficient_home_improvement_credit": { - "label": "gov.irs.credits.energy_efficient_home_improvement.energy_efficient_home_improvement_credit", - "description": null, - "index": 0 - }, - "gov.irs.credits.energy_efficient_home_improvement.energy_efficient_home_improvement_credit_credit_limit": { - "label": "gov.irs.credits.energy_efficient_home_improvement.energy_efficient_home_improvement_credit_credit_limit", - "description": null, - "index": 0 - }, - "gov.irs.credits.energy_efficient_home_improvement.energy_efficient_home_improvement_credit_potential": { - "label": "gov.irs.credits.energy_efficient_home_improvement.energy_efficient_home_improvement_credit_potential", - "description": null, - "index": 0 - }, - "gov.irs.credits.energy_efficient_home_improvement.improvements.prior_energy_efficient_window_credits": { - "label": "gov.irs.credits.energy_efficient_home_improvement.improvements.prior_energy_efficient_window_credits", - "description": null, - "index": 0 - }, - "gov.irs.credits.energy_efficient_home_improvement.improvements.capped_energy_efficient_door_credit": { - "label": "gov.irs.credits.energy_efficient_home_improvement.improvements.capped_energy_efficient_door_credit", - "description": null, - "index": 0 - }, - "gov.irs.credits.energy_efficient_home_improvement.improvements.capped_energy_efficient_roof_credit": { - "label": "gov.irs.credits.energy_efficient_home_improvement.improvements.capped_energy_efficient_roof_credit", - "description": null, - "index": 0 - }, - "gov.irs.credits.energy_efficient_home_improvement.improvements.capped_energy_efficient_window_credit": { - "label": "gov.irs.credits.energy_efficient_home_improvement.improvements.capped_energy_efficient_window_credit", - "description": null, - "index": 0 - }, - "gov.irs.credits.energy_efficient_home_improvement.improvements.capped_energy_efficient_insulation_credit": { - "label": "gov.irs.credits.energy_efficient_home_improvement.improvements.capped_energy_efficient_insulation_credit", - "description": null, - "index": 0 - }, - "gov.irs.credits.energy_efficient_home_improvement.property.capped_advanced_main_air_circulating_fan_credit": { - "label": "gov.irs.credits.energy_efficient_home_improvement.property.capped_advanced_main_air_circulating_fan_credit", - "description": null, - "index": 0 - }, - "gov.irs.credits.energy_efficient_home_improvement.property.capped_energy_efficient_central_air_conditioner_credit": { - "label": "gov.irs.credits.energy_efficient_home_improvement.property.capped_energy_efficient_central_air_conditioner_credit", - "description": null, - "index": 0 - }, - "gov.irs.credits.energy_efficient_home_improvement.property.capped_heat_pump_heat_pump_water_heater_biomass_stove_boiler_credit": { - "label": "gov.irs.credits.energy_efficient_home_improvement.property.capped_heat_pump_heat_pump_water_heater_biomass_stove_boiler_credit", - "description": null, - "index": 0 - }, - "gov.irs.credits.energy_efficient_home_improvement.property.capped_qualified_furnace_or_hot_water_boiler_credit": { - "label": "gov.irs.credits.energy_efficient_home_improvement.property.capped_qualified_furnace_or_hot_water_boiler_credit", - "description": null, - "index": 0 - }, - "gov.irs.credits.education.lifetime_learning_credit_potential": { - "label": "gov.irs.credits.education.lifetime_learning_credit_potential", - "description": null, - "index": 0 - }, - "gov.irs.credits.education.education_credit_phase_out": { - "label": "gov.irs.credits.education.education_credit_phase_out", - "description": null, - "index": 0 - }, - "gov.irs.credits.education.lifetime_learning_credit": { - "label": "gov.irs.credits.education.lifetime_learning_credit", - "description": null, - "index": 0 - }, - "gov.irs.credits.education.education_tax_credits": { - "label": "gov.irs.credits.education.education_tax_credits", - "description": null, - "index": 0 - }, - "gov.irs.credits.education.lifetime_learning_credit_credit_limit": { - "label": "gov.irs.credits.education.lifetime_learning_credit_credit_limit", - "description": null, - "index": 0 - }, - "gov.irs.credits.education.american_opportunity_credit.non_refundable_american_opportunity_credit": { - "label": "gov.irs.credits.education.american_opportunity_credit.non_refundable_american_opportunity_credit", - "description": null, - "index": 0 - }, - "gov.irs.credits.education.american_opportunity_credit.non_refundable_american_opportunity_credit_potential": { - "label": "gov.irs.credits.education.american_opportunity_credit.non_refundable_american_opportunity_credit_potential", - "description": null, - "index": 0 - }, - "gov.irs.credits.education.american_opportunity_credit.refundable_american_opportunity_credit": { - "label": "gov.irs.credits.education.american_opportunity_credit.refundable_american_opportunity_credit", - "description": null, - "index": 0 - }, - "gov.irs.credits.education.american_opportunity_credit.non_refundable_american_opportunity_credit_credit_limit": { - "label": "gov.irs.credits.education.american_opportunity_credit.non_refundable_american_opportunity_credit_credit_limit", - "description": null, - "index": 0 - }, - "gov.irs.credits.education.american_opportunity_credit.is_eligible_for_american_opportunity_credit": { - "label": "gov.irs.credits.education.american_opportunity_credit.is_eligible_for_american_opportunity_credit", - "description": null, - "index": 0 - }, - "gov.irs.credits.education.american_opportunity_credit.american_opportunity_credit": { - "label": "gov.irs.credits.education.american_opportunity_credit.american_opportunity_credit", - "description": null, - "index": 0 - }, - "gov.irs.credits.clean_vehicle.new.new_clean_vehicle_credit_potential": { - "label": "gov.irs.credits.clean_vehicle.new.new_clean_vehicle_credit_potential", - "description": null, - "index": 0 - }, - "gov.irs.credits.clean_vehicle.new.new_clean_vehicle_credit": { - "label": "gov.irs.credits.clean_vehicle.new.new_clean_vehicle_credit", - "description": null, - "index": 0 - }, - "gov.irs.credits.clean_vehicle.new.new_clean_vehicle_credit_credit_limit": { - "label": "gov.irs.credits.clean_vehicle.new.new_clean_vehicle_credit_credit_limit", - "description": null, - "index": 0 - }, - "gov.irs.credits.clean_vehicle.new.new_clean_vehicle_credit_eligible": { - "label": "gov.irs.credits.clean_vehicle.new.new_clean_vehicle_credit_eligible", - "description": null, - "index": 0 - }, - "gov.irs.credits.clean_vehicle.used.used_clean_vehicle_credit_potential": { - "label": "gov.irs.credits.clean_vehicle.used.used_clean_vehicle_credit_potential", - "description": null, - "index": 0 - }, - "gov.irs.credits.clean_vehicle.used.used_clean_vehicle_credit_credit_limit": { - "label": "gov.irs.credits.clean_vehicle.used.used_clean_vehicle_credit_credit_limit", - "description": null, - "index": 0 - }, - "gov.irs.credits.clean_vehicle.used.used_clean_vehicle_credit": { - "label": "gov.irs.credits.clean_vehicle.used.used_clean_vehicle_credit", - "description": null, - "index": 0 - }, - "gov.irs.credits.clean_vehicle.used.used_clean_vehicle_credit_eligible": { - "label": "gov.irs.credits.clean_vehicle.used.used_clean_vehicle_credit_eligible", - "description": null, - "index": 0 - }, - "gov.irs.credits.ctc.ctc_value": { - "label": "gov.irs.credits.ctc.ctc_value", - "description": null, - "index": 0 - }, - "gov.irs.credits.ctc.ctc": { - "label": "gov.irs.credits.ctc.ctc", - "description": null, - "index": 0 - }, - "gov.irs.credits.ctc.non_refundable_ctc": { - "label": "gov.irs.credits.ctc.non_refundable_ctc", - "description": null, - "index": 0 - }, - "gov.irs.credits.ctc.refundable.ctc_social_security_tax": { - "label": "gov.irs.credits.ctc.refundable.ctc_social_security_tax", - "description": null, - "index": 0 - }, - "gov.irs.credits.ctc.refundable.ctc_limiting_tax_liability": { - "label": "gov.irs.credits.ctc.refundable.ctc_limiting_tax_liability", - "description": null, - "index": 0 - }, - "gov.irs.credits.ctc.refundable.ctc_refundable_maximum": { - "label": "gov.irs.credits.ctc.refundable.ctc_refundable_maximum", - "description": null, - "index": 0 - }, - "gov.irs.credits.ctc.refundable.refundable_ctc": { - "label": "gov.irs.credits.ctc.refundable.refundable_ctc", - "description": null, - "index": 0 - }, - "gov.irs.credits.ctc.refundable.ctc_phase_in": { - "label": "gov.irs.credits.ctc.refundable.ctc_phase_in", - "description": null, - "index": 0 - }, - "gov.irs.credits.ctc.maximum.ctc_qualifying_children": { - "label": "gov.irs.credits.ctc.maximum.ctc_qualifying_children", - "description": null, - "index": 0 - }, - "gov.irs.credits.ctc.maximum.ctc_maximum": { - "label": "gov.irs.credits.ctc.maximum.ctc_maximum", - "description": null, - "index": 0 - }, - "gov.irs.credits.ctc.maximum.ctc_maximum_with_arpa_addition": { - "label": "gov.irs.credits.ctc.maximum.ctc_maximum_with_arpa_addition", - "description": null, - "index": 0 - }, - "gov.irs.credits.ctc.maximum.ctc_qualifying_child": { - "label": "gov.irs.credits.ctc.maximum.ctc_qualifying_child", - "description": null, - "index": 0 - }, - "gov.irs.credits.ctc.maximum.individual.ctc_adult_individual_maximum": { - "label": "gov.irs.credits.ctc.maximum.individual.ctc_adult_individual_maximum", - "description": null, - "index": 0 - }, - "gov.irs.credits.ctc.maximum.individual.meets_ctc_identification_requirements": { - "label": "gov.irs.credits.ctc.maximum.individual.meets_ctc_identification_requirements", - "description": null, - "index": 0 - }, - "gov.irs.credits.ctc.maximum.individual.filer_meets_ctc_identification_requirements": { - "label": "gov.irs.credits.ctc.maximum.individual.filer_meets_ctc_identification_requirements", - "description": null, - "index": 0 - }, - "gov.irs.credits.ctc.maximum.individual.meets_ctc_child_identification_requirements": { - "label": "gov.irs.credits.ctc.maximum.individual.meets_ctc_child_identification_requirements", - "description": null, - "index": 0 - }, - "gov.irs.credits.ctc.maximum.individual.ctc_child_individual_maximum_arpa": { - "label": "gov.irs.credits.ctc.maximum.individual.ctc_child_individual_maximum_arpa", - "description": null, - "index": 0 - }, - "gov.irs.credits.ctc.maximum.individual.ctc_child_individual_maximum": { - "label": "gov.irs.credits.ctc.maximum.individual.ctc_child_individual_maximum", - "description": null, - "index": 0 - }, - "gov.irs.credits.ctc.maximum.individual.ctc_individual_maximum": { - "label": "gov.irs.credits.ctc.maximum.individual.ctc_individual_maximum", - "description": null, - "index": 0 - }, - "gov.irs.credits.ctc.phase_out.ctc_phase_out": { - "label": "gov.irs.credits.ctc.phase_out.ctc_phase_out", - "description": null, - "index": 0 - }, - "gov.irs.credits.ctc.phase_out.ctc_phase_out_threshold": { - "label": "gov.irs.credits.ctc.phase_out.ctc_phase_out_threshold", - "description": null, - "index": 0 - }, - "gov.irs.credits.ctc.phase_out.arpa.ctc_arpa_max_addition": { - "label": "gov.irs.credits.ctc.phase_out.arpa.ctc_arpa_max_addition", - "description": null, - "index": 0 - }, - "gov.irs.credits.ctc.phase_out.arpa.ctc_arpa_phase_out_threshold": { - "label": "gov.irs.credits.ctc.phase_out.arpa.ctc_arpa_phase_out_threshold", - "description": null, - "index": 0 - }, - "gov.irs.credits.ctc.phase_out.arpa.ctc_arpa_uncapped_phase_out": { - "label": "gov.irs.credits.ctc.phase_out.arpa.ctc_arpa_uncapped_phase_out", - "description": null, - "index": 0 - }, - "gov.irs.credits.ctc.phase_out.arpa.ctc_arpa_phase_out": { - "label": "gov.irs.credits.ctc.phase_out.arpa.ctc_arpa_phase_out", - "description": null, - "index": 0 - }, - "gov.irs.credits.ctc.phase_out.arpa.ctc_arpa_phase_out_cap": { - "label": "gov.irs.credits.ctc.phase_out.arpa.ctc_arpa_phase_out_cap", - "description": null, - "index": 0 - }, - "gov.irs.credits.ctc.phase_out.arpa.ctc_arpa_addition": { - "label": "gov.irs.credits.ctc.phase_out.arpa.ctc_arpa_addition", - "description": null, - "index": 0 - }, - "gov.irs.credits.recovery_rebate_credit.rrc_caa": { - "label": "gov.irs.credits.recovery_rebate_credit.rrc_caa", - "description": null, - "index": 0 - }, - "gov.irs.credits.recovery_rebate_credit.rrc_arpa": { - "label": "gov.irs.credits.recovery_rebate_credit.rrc_arpa", - "description": null, - "index": 0 - }, - "gov.irs.credits.recovery_rebate_credit.recovery_rebate_credit": { - "label": "gov.irs.credits.recovery_rebate_credit.recovery_rebate_credit", - "description": null, - "index": 0 - }, - "gov.irs.credits.recovery_rebate_credit.rrc_cares": { - "label": "gov.irs.credits.recovery_rebate_credit.rrc_cares", - "description": null, - "index": 0 - }, - "gov.irs.credits.foreign_tax.foreign_tax_credit_potential": { - "label": "gov.irs.credits.foreign_tax.foreign_tax_credit_potential", - "description": null, - "index": 0 - }, - "gov.irs.credits.foreign_tax.foreign_tax_credit_credit_limit": { - "label": "gov.irs.credits.foreign_tax.foreign_tax_credit_credit_limit", - "description": null, - "index": 0 - }, - "gov.irs.credits.foreign_tax.foreign_tax_credit": { - "label": "gov.irs.credits.foreign_tax.foreign_tax_credit", - "description": null, - "index": 0 - }, - "gov.irs.credits.cdcc.spouse_earned": { - "label": "gov.irs.credits.cdcc.spouse_earned", - "description": null, - "index": 0 - }, - "gov.irs.credits.cdcc.cdcc_rate": { - "label": "gov.irs.credits.cdcc.cdcc_rate", - "description": null, - "index": 0 - }, - "gov.irs.credits.cdcc.cdcc_credit_limit": { - "label": "gov.irs.credits.cdcc.cdcc_credit_limit", - "description": null, - "index": 0 - }, - "gov.irs.credits.cdcc.capped_count_cdcc_eligible": { - "label": "gov.irs.credits.cdcc.capped_count_cdcc_eligible", - "description": null, - "index": 0 - }, - "gov.irs.credits.cdcc.cdcc": { - "label": "gov.irs.credits.cdcc.cdcc", - "description": null, - "index": 0 - }, - "gov.irs.credits.cdcc.capped_cdcc": { - "label": "gov.irs.credits.cdcc.capped_cdcc", - "description": null, - "index": 0 - }, - "gov.irs.credits.cdcc.count_cdcc_eligible": { - "label": "gov.irs.credits.cdcc.count_cdcc_eligible", - "description": null, - "index": 0 - }, - "gov.irs.credits.cdcc.cdcc_potential": { - "label": "gov.irs.credits.cdcc.cdcc_potential", - "description": null, - "index": 0 - }, - "gov.irs.credits.cdcc.cdcc_eligible": { - "label": "gov.irs.credits.cdcc.cdcc_eligible", - "description": null, - "index": 0 - }, - "gov.irs.credits.cdcc.head_earned": { - "label": "gov.irs.credits.cdcc.head_earned", - "description": null, - "index": 0 - }, - "gov.irs.credits.cdcc.cdcc_limit": { - "label": "gov.irs.credits.cdcc.cdcc_limit", - "description": null, - "index": 0 - }, - "gov.irs.credits.cdcc.cdcc_relevant_expenses": { - "label": "gov.irs.credits.cdcc.cdcc_relevant_expenses", - "description": null, - "index": 0 - }, - "gov.irs.credits.cdcc.min_head_spouse_earned": { - "label": "gov.irs.credits.cdcc.min_head_spouse_earned", - "description": null, - "index": 0 - }, - "gov.irs.credits.general_business.general_business_credit": { - "label": "gov.irs.credits.general_business.general_business_credit", - "description": null, - "index": 0 - }, - "gov.irs.credits.residential_clean_energy.residential_clean_energy_credit": { - "label": "gov.irs.credits.residential_clean_energy.residential_clean_energy_credit", - "description": null, - "index": 0 - }, - "gov.irs.credits.residential_clean_energy.residential_clean_energy_credit_potential": { - "label": "gov.irs.credits.residential_clean_energy.residential_clean_energy_credit_potential", - "description": null, - "index": 0 - }, - "gov.irs.credits.residential_clean_energy.residential_clean_energy_credit_credit_limit": { - "label": "gov.irs.credits.residential_clean_energy.residential_clean_energy_credit_credit_limit", - "description": null, - "index": 0 - }, - "gov.irs.credits.retirement_savings.savers_credit_person": { - "label": "gov.irs.credits.retirement_savings.savers_credit_person", - "description": null, - "index": 0 - }, - "gov.irs.credits.retirement_savings.savers_credit_potential": { - "label": "gov.irs.credits.retirement_savings.savers_credit_potential", - "description": null, - "index": 0 - }, - "gov.irs.credits.retirement_savings.savers_credit_qualified_contributions": { - "label": "gov.irs.credits.retirement_savings.savers_credit_qualified_contributions", - "description": null, - "index": 0 - }, - "gov.irs.credits.retirement_savings.savers_credit": { - "label": "gov.irs.credits.retirement_savings.savers_credit", - "description": null, - "index": 0 - }, - "gov.irs.credits.retirement_savings.savers_credit_eligible_person": { - "label": "gov.irs.credits.retirement_savings.savers_credit_eligible_person", - "description": null, - "index": 0 - }, - "gov.irs.credits.retirement_savings.savers_credit_credit_limit": { - "label": "gov.irs.credits.retirement_savings.savers_credit_credit_limit", - "description": null, - "index": 0 - }, - "gov.irs.credits.prior_year_minimum_tax.prior_year_minimum_tax_credit": { - "label": "gov.irs.credits.prior_year_minimum_tax.prior_year_minimum_tax_credit", - "description": null, - "index": 0 - }, - "gov.irs.credits.earned_income.filer_meets_eitc_identification_requirements": { - "label": "gov.irs.credits.earned_income.filer_meets_eitc_identification_requirements", - "description": null, - "index": 0 - }, - "gov.irs.credits.earned_income.eitc_relevant_investment_income": { - "label": "gov.irs.credits.earned_income.eitc_relevant_investment_income", - "description": null, - "index": 0 - }, - "gov.irs.credits.earned_income.eitc_reduction": { - "label": "gov.irs.credits.earned_income.eitc_reduction", - "description": null, - "index": 0 - }, - "gov.irs.credits.earned_income.eitc_phased_in": { - "label": "gov.irs.credits.earned_income.eitc_phased_in", - "description": null, - "index": 0 - }, - "gov.irs.credits.earned_income.meets_eitc_identification_requirements": { - "label": "gov.irs.credits.earned_income.meets_eitc_identification_requirements", - "description": null, - "index": 0 - }, - "gov.irs.credits.earned_income.eitc_phase_in_rate": { - "label": "gov.irs.credits.earned_income.eitc_phase_in_rate", - "description": null, - "index": 0 - }, - "gov.irs.credits.earned_income.eitc_phase_out_start": { - "label": "gov.irs.credits.earned_income.eitc_phase_out_start", - "description": null, - "index": 0 - }, - "gov.irs.credits.earned_income.eitc_child_count": { - "label": "gov.irs.credits.earned_income.eitc_child_count", - "description": null, - "index": 0 - }, - "gov.irs.credits.earned_income.eitc_phase_out_rate": { - "label": "gov.irs.credits.earned_income.eitc_phase_out_rate", - "description": null, - "index": 0 - }, - "gov.irs.credits.earned_income.eitc": { - "label": "gov.irs.credits.earned_income.eitc", - "description": null, - "index": 0 - }, - "gov.irs.credits.earned_income.eitc_agi_limit": { - "label": "gov.irs.credits.earned_income.eitc_agi_limit", - "description": null, - "index": 0 - }, - "gov.irs.credits.earned_income.takes_up_eitc": { - "label": "gov.irs.credits.earned_income.takes_up_eitc", - "description": null, - "index": 0 - }, - "gov.irs.credits.earned_income.eitc_maximum": { - "label": "gov.irs.credits.earned_income.eitc_maximum", - "description": null, - "index": 0 - }, - "gov.irs.credits.earned_income.eligibility.eitc_demographic_eligible": { - "label": "gov.irs.credits.earned_income.eligibility.eitc_demographic_eligible", - "description": null, - "index": 0 - }, - "gov.irs.credits.earned_income.eligibility.eitc_investment_income_eligible": { - "label": "gov.irs.credits.earned_income.eligibility.eitc_investment_income_eligible", - "description": null, - "index": 0 - }, - "gov.irs.credits.earned_income.eligibility.eitc_eligible": { - "label": "gov.irs.credits.earned_income.eligibility.eitc_eligible", - "description": null, - "index": 0 - }, - "gov.irs.credits.elderly_and_disabled.elderly_disabled_credit": { - "label": "gov.irs.credits.elderly_and_disabled.elderly_disabled_credit", - "description": null, - "index": 0 - }, - "gov.irs.credits.elderly_and_disabled.elderly_disabled_credit_credit_limit": { - "label": "gov.irs.credits.elderly_and_disabled.elderly_disabled_credit_credit_limit", - "description": null, - "index": 0 - }, - "gov.irs.credits.elderly_and_disabled.section_22_income": { - "label": "gov.irs.credits.elderly_and_disabled.section_22_income", - "description": null, - "index": 0 - }, - "gov.irs.credits.elderly_and_disabled.eligibility": { - "label": "gov.irs.credits.elderly_and_disabled.eligibility", - "description": null, - "index": 0 - }, - "gov.irs.credits.elderly_and_disabled.total_disability_payments": { - "label": "gov.irs.credits.elderly_and_disabled.total_disability_payments", - "description": null, - "index": 0 - }, - "gov.irs.credits.elderly_and_disabled.elderly_disabled_credit_potential": { - "label": "gov.irs.credits.elderly_and_disabled.elderly_disabled_credit_potential", - "description": null, - "index": 0 - }, - "gov.irs.credits.estate.estate_tax_credit": { - "label": "gov.irs.credits.estate.estate_tax_credit", - "description": null, - "index": 0 - }, - "gov.irs.tce.is_tce_eligible": { - "label": "gov.irs.tce.is_tce_eligible", - "description": null, - "index": 0 - }, - "gov.irs.income.adjusted_earnings": { - "label": "gov.irs.income.adjusted_earnings", - "description": null, - "index": 0 - }, - "gov.irs.income.filer_adjusted_earnings": { - "label": "gov.irs.income.filer_adjusted_earnings", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.taxable_income": { - "label": "gov.irs.income.taxable_income.taxable_income", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.exemptions.exemptions_count": { - "label": "gov.irs.income.taxable_income.exemptions.exemptions_count", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.exemptions.exemptions": { - "label": "gov.irs.income.taxable_income.exemptions.exemptions", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.adjusted_gross_income.adjusted_gross_income": { - "label": "gov.irs.income.taxable_income.adjusted_gross_income.adjusted_gross_income", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.adjusted_gross_income.positive_gross_income": { - "label": "gov.irs.income.taxable_income.adjusted_gross_income.positive_gross_income", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.adjusted_gross_income.adjusted_gross_income_person": { - "label": "gov.irs.income.taxable_income.adjusted_gross_income.adjusted_gross_income_person", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.adjusted_gross_income.positive_agi": { - "label": "gov.irs.income.taxable_income.adjusted_gross_income.positive_agi", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.irs_employment_income": { - "label": "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.irs_employment_income", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.pre_tax_contributions": { - "label": "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.pre_tax_contributions", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.tax_unit_partnership_s_corp_income": { - "label": "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.tax_unit_partnership_s_corp_income", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.has_qdiv_or_ltcg": { - "label": "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.has_qdiv_or_ltcg", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.tax_unit_rental_income": { - "label": "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.tax_unit_rental_income", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.loss_limited_net_capital_gains": { - "label": "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.loss_limited_net_capital_gains", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.irs_gross_income": { - "label": "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.irs_gross_income", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.earned_income.earned_income_last_year": { - "label": "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.earned_income.earned_income_last_year", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.earned_income.earned_income": { - "label": "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.earned_income.earned_income", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.earned_income.tax_unit_earned_income_last_year": { - "label": "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.earned_income.tax_unit_earned_income_last_year", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.earned_income.tax_unit_earned_income": { - "label": "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.earned_income.tax_unit_earned_income", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.unemployment_insurance.tax_unit_taxable_unemployment_compensation": { - "label": "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.unemployment_insurance.tax_unit_taxable_unemployment_compensation", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.unemployment_insurance.tax_unit_unemployment_compensation": { - "label": "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.unemployment_insurance.tax_unit_unemployment_compensation", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.unemployment_insurance.taxable_uc_agi": { - "label": "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.unemployment_insurance.taxable_uc_agi", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.unemployment_insurance.taxable_unemployment_insurance": { - "label": "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.unemployment_insurance.taxable_unemployment_insurance", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.unemployment_insurance.tax_exempt_unemployment_compensation": { - "label": "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.unemployment_insurance.tax_exempt_unemployment_compensation", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.social_security.taxable_social_security": { - "label": "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.social_security.taxable_social_security", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.social_security.tax_unit_social_security": { - "label": "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.social_security.tax_unit_social_security", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.social_security.tax_unit_ss_combined_income_excess": { - "label": "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.social_security.tax_unit_ss_combined_income_excess", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.social_security.tax_unit_combined_income_for_social_security_taxability": { - "label": "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.social_security.tax_unit_combined_income_for_social_security_taxability", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.social_security.tax_exempt_social_security": { - "label": "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.social_security.tax_exempt_social_security", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.social_security.tax_unit_taxable_social_security": { - "label": "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.social_security.tax_unit_taxable_social_security", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.social_security.taxable_ss_magi": { - "label": "gov.irs.income.taxable_income.adjusted_gross_income.irs_gross_income.social_security.taxable_ss_magi", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions": { - "label": "'Above-the-line' deductions", - "description": "Above-the-line deductions are deductions made from gross income to arrive at adjusted gross income. The Code refers to deductions by their section; below is an in-progress table of the sections and their deductions.\n\n| Section | Deduction |\n| --- | --- |\n| [85](https://www.law.cornell.edu/uscode/text/26/85) | Unemployment compensation |\n| [86](https://www.law.cornell.edu/uscode/text/26/86) | Social security |\n| [135](https://www.law.cornell.edu/uscode/text/26/135) | Tuition fees |\n| [137](https://www.law.cornell.edu/uscode/text/26/137) | Adoption expenses |\n| [199](https://www.law.cornell.edu/uscode/text/26/199) | Domestic production activities (repealed) |\n| [219](https://www.law.cornell.edu/uscode/text/26/219) | Retirement savings |\n| [221](https://www.law.cornell.edu/uscode/text/26/221) | Education/student loan interest |\n| [222](https://www.law.cornell.edu/uscode/text/26/222) | Qualified tuition expenses (repealed) |\n| [223](https://www.law.cornell.edu/uscode/text/26/223) | Health savings accounts |\n| [469](https://www.law.cornell.edu/uscode/text/26/469) | Passive activity |\n| [911](https://www.law.cornell.edu/uscode/text/26/911) | Foreign earned income |\n| [933](https://www.law.cornell.edu/uscode/text/26/933) | Income from Puerto Rico |" - }, - "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.self_employed_health_insurance_ald_person": { - "label": "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.self_employed_health_insurance_ald_person", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.self_employment_tax_ald": { - "label": "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.self_employment_tax_ald", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.health_savings_account_ald": { - "label": "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.health_savings_account_ald", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.loss_ald": { - "label": "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.loss_ald", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.foreign_earned_income": { - "label": "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.foreign_earned_income", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.limited_capital_loss": { - "label": "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.limited_capital_loss", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.self_employment_tax_ald_person": { - "label": "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.self_employment_tax_ald_person", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.alimony_expense_ald": { - "label": "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.alimony_expense_ald", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.domestic_production_ald": { - "label": "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.domestic_production_ald", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.self_employed_pension_contribution_ald": { - "label": "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.self_employed_pension_contribution_ald", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.specified_possession_income": { - "label": "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.specified_possession_income", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.above_the_line_deductions": { - "label": "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.above_the_line_deductions", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.self_employed_pension_contribution_ald_person": { - "label": "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.self_employed_pension_contribution_ald_person", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.puerto_rico_income": { - "label": "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.puerto_rico_income", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.self_employed_health_insurance_ald": { - "label": "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.self_employed_health_insurance_ald", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.student_loan_interest.student_loan_interest_ald_magi": { - "label": "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.student_loan_interest.student_loan_interest_ald_magi", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.student_loan_interest.student_loan_interest_ald_eligible": { - "label": "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.student_loan_interest.student_loan_interest_ald_eligible", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.student_loan_interest.student_loan_interest_ald": { - "label": "gov.irs.income.taxable_income.adjusted_gross_income.above_the_line_deductions.student_loan_interest.student_loan_interest_ald", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.deductions.capped_property_taxes": { - "label": "gov.irs.income.taxable_income.deductions.capped_property_taxes", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.deductions.taxable_income_deductions_if_itemizing": { - "label": "gov.irs.income.taxable_income.deductions.taxable_income_deductions_if_itemizing", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.deductions.taxable_income_deductions_if_not_itemizing": { - "label": "gov.irs.income.taxable_income.deductions.taxable_income_deductions_if_not_itemizing", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.deductions.tuition_and_fees_deduction": { - "label": "gov.irs.income.taxable_income.deductions.tuition_and_fees_deduction", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.deductions.tax_liability_if_not_itemizing": { - "label": "gov.irs.income.taxable_income.deductions.tax_liability_if_not_itemizing", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.deductions.tax_unit_itemizes": { - "label": "gov.irs.income.taxable_income.deductions.tax_unit_itemizes", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.deductions.itemized_deductions_less_salt": { - "label": "gov.irs.income.taxable_income.deductions.itemized_deductions_less_salt", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.deductions.tax_liability_if_itemizing": { - "label": "gov.irs.income.taxable_income.deductions.tax_liability_if_itemizing", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.deductions.taxable_income_deductions": { - "label": "gov.irs.income.taxable_income.deductions.taxable_income_deductions", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.deductions.tuition_and_fees_deduction_eligible": { - "label": "gov.irs.income.taxable_income.deductions.tuition_and_fees_deduction_eligible", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.deductions.qualified_business_income_deduction.qualified_business_income_deduction": { - "label": "gov.irs.income.taxable_income.deductions.qualified_business_income_deduction.qualified_business_income_deduction", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.deductions.qualified_business_income_deduction.taxable_income_less_qbid": { - "label": "gov.irs.income.taxable_income.deductions.qualified_business_income_deduction.taxable_income_less_qbid", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.deductions.qualified_business_income_deduction.qualified_business_income": { - "label": "gov.irs.income.taxable_income.deductions.qualified_business_income_deduction.qualified_business_income", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.deductions.qualified_business_income_deduction.qbid_amount": { - "label": "gov.irs.income.taxable_income.deductions.qualified_business_income_deduction.qbid_amount", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.deductions.qualified_business_income_deduction.qualified_business_income_deduction_person": { - "label": "gov.irs.income.taxable_income.deductions.qualified_business_income_deduction.qualified_business_income_deduction_person", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.deductions.itemizing.total_itemized_taxable_income_deductions": { - "label": "gov.irs.income.taxable_income.deductions.itemizing.total_itemized_taxable_income_deductions", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.deductions.itemizing.salt": { - "label": "gov.irs.income.taxable_income.deductions.itemizing.salt", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.deductions.itemizing.casualty_loss_deduction": { - "label": "gov.irs.income.taxable_income.deductions.itemizing.casualty_loss_deduction", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.deductions.itemizing.salt_cap": { - "label": "gov.irs.income.taxable_income.deductions.itemizing.salt_cap", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.deductions.itemizing.salt_deduction": { - "label": "gov.irs.income.taxable_income.deductions.itemizing.salt_deduction", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.deductions.itemizing.charitable_deduction": { - "label": "gov.irs.income.taxable_income.deductions.itemizing.charitable_deduction", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.deductions.itemizing.interest_deduction": { - "label": "gov.irs.income.taxable_income.deductions.itemizing.interest_deduction", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.deductions.itemizing.state_and_local_sales_or_income_tax": { - "label": "gov.irs.income.taxable_income.deductions.itemizing.state_and_local_sales_or_income_tax", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.deductions.itemizing.wagering_losses_deduction": { - "label": "gov.irs.income.taxable_income.deductions.itemizing.wagering_losses_deduction", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.deductions.itemizing.reported_salt": { - "label": "gov.irs.income.taxable_income.deductions.itemizing.reported_salt", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.deductions.itemizing.total_misc_deductions": { - "label": "gov.irs.income.taxable_income.deductions.itemizing.total_misc_deductions", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.deductions.itemizing.misc_deduction": { - "label": "gov.irs.income.taxable_income.deductions.itemizing.misc_deduction", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.deductions.itemizing.charitable_deduction_for_non_itemizers": { - "label": "gov.irs.income.taxable_income.deductions.itemizing.charitable_deduction_for_non_itemizers", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.deductions.itemizing.itemized_taxable_income_deductions": { - "label": "gov.irs.income.taxable_income.deductions.itemizing.itemized_taxable_income_deductions", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.deductions.itemizing.itemized_taxable_income_deductions_reduction": { - "label": "gov.irs.income.taxable_income.deductions.itemizing.itemized_taxable_income_deductions_reduction", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.deductions.itemizing.medical_expense_deduction": { - "label": "gov.irs.income.taxable_income.deductions.itemizing.medical_expense_deduction", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.deductions.overtime_income.overtime_income_deduction_ssn_requirement_met": { - "label": "gov.irs.income.taxable_income.deductions.overtime_income.overtime_income_deduction_ssn_requirement_met", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.deductions.overtime_income.overtime_income_deduction": { - "label": "gov.irs.income.taxable_income.deductions.overtime_income.overtime_income_deduction", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.deductions.tip_income.tip_income_deduction": { - "label": "gov.irs.income.taxable_income.deductions.tip_income.tip_income_deduction", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.deductions.tip_income.tip_income_deduction_ssn_requirement_met": { - "label": "gov.irs.income.taxable_income.deductions.tip_income.tip_income_deduction_ssn_requirement_met", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.deductions.standard_deduction.additional_standard_deduction": { - "label": "gov.irs.income.taxable_income.deductions.standard_deduction.additional_standard_deduction", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.deductions.standard_deduction.aged_blind_count": { - "label": "gov.irs.income.taxable_income.deductions.standard_deduction.aged_blind_count", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.deductions.standard_deduction.aged_head": { - "label": "gov.irs.income.taxable_income.deductions.standard_deduction.aged_head", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.deductions.standard_deduction.is_irs_aged": { - "label": "gov.irs.income.taxable_income.deductions.standard_deduction.is_irs_aged", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.deductions.standard_deduction.standard_deduction": { - "label": "gov.irs.income.taxable_income.deductions.standard_deduction.standard_deduction", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.deductions.standard_deduction.basic_standard_deduction": { - "label": "gov.irs.income.taxable_income.deductions.standard_deduction.basic_standard_deduction", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.deductions.standard_deduction.aged_spouse": { - "label": "gov.irs.income.taxable_income.deductions.standard_deduction.aged_spouse", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.deductions.senior_deduction.additional_senior_deduction_eligible_person": { - "label": "gov.irs.income.taxable_income.deductions.senior_deduction.additional_senior_deduction_eligible_person", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.deductions.senior_deduction.additional_senior_deduction": { - "label": "gov.irs.income.taxable_income.deductions.senior_deduction.additional_senior_deduction", - "description": null, - "index": 0 - }, - "gov.irs.income.taxable_income.deductions.auto_loan_interest.auto_loan_interest_deduction": { - "label": "gov.irs.income.taxable_income.deductions.auto_loan_interest.auto_loan_interest_deduction", - "description": null, - "index": 0 - }, - "gov.irs.income.sources.amt_non_agi_income": { - "label": "gov.irs.income.sources.amt_non_agi_income", - "description": null, - "index": 0 - }, - "gov.irs.income.sources.investment_income_form_4952": { - "label": "gov.irs.income.sources.investment_income_form_4952", - "description": null, - "index": 0 - }, - "gov.irs.tax.payroll.unreported_payroll_tax": { - "label": "gov.irs.tax.payroll.unreported_payroll_tax", - "description": null, - "index": 0 - }, - "gov.irs.tax.payroll.employee_payroll_tax": { - "label": "gov.irs.tax.payroll.employee_payroll_tax", - "description": null, - "index": 0 - }, - "gov.irs.tax.payroll.payroll_tax_gross_wages": { - "label": "gov.irs.tax.payroll.payroll_tax_gross_wages", - "description": null, - "index": 0 - }, - "gov.irs.tax.payroll.excess_payroll_tax_withheld": { - "label": "gov.irs.tax.payroll.excess_payroll_tax_withheld", - "description": null, - "index": 0 - }, - "gov.irs.tax.payroll.medicare.employee_medicare_tax": { - "label": "gov.irs.tax.payroll.medicare.employee_medicare_tax", - "description": null, - "index": 0 - }, - "gov.irs.tax.payroll.medicare.employer_medicare_tax": { - "label": "gov.irs.tax.payroll.medicare.employer_medicare_tax", - "description": null, - "index": 0 - }, - "gov.irs.tax.payroll.social_security.employer_social_security_tax": { - "label": "gov.irs.tax.payroll.social_security.employer_social_security_tax", - "description": null, - "index": 0 - }, - "gov.irs.tax.payroll.social_security.employee_social_security_tax": { - "label": "gov.irs.tax.payroll.social_security.employee_social_security_tax", - "description": null, - "index": 0 - }, - "gov.irs.tax.payroll.social_security.taxable_earnings_for_social_security": { - "label": "gov.irs.tax.payroll.social_security.taxable_earnings_for_social_security", - "description": null, - "index": 0 - }, - "gov.irs.tax.self_employment.taxable_self_employment_income": { - "label": "gov.irs.tax.self_employment.taxable_self_employment_income", - "description": null, - "index": 0 - }, - "gov.irs.tax.self_employment.self_employment_tax": { - "label": "gov.irs.tax.self_employment.self_employment_tax", - "description": null, - "index": 0 - }, - "gov.irs.tax.self_employment.social_security_taxable_self_employment_income": { - "label": "gov.irs.tax.self_employment.social_security_taxable_self_employment_income", - "description": null, - "index": 0 - }, - "gov.irs.tax.self_employment.self_employment_medicare_tax": { - "label": "gov.irs.tax.self_employment.self_employment_medicare_tax", - "description": null, - "index": 0 - }, - "gov.irs.tax.self_employment.self_employment_social_security_tax": { - "label": "gov.irs.tax.self_employment.self_employment_social_security_tax", - "description": null, - "index": 0 - }, - "gov.irs.tax.federal_income.net_investment_income": { - "label": "gov.irs.tax.federal_income.net_investment_income", - "description": null, - "index": 0 - }, - "gov.irs.tax.federal_income.additional_medicare_tax": { - "label": "gov.irs.tax.federal_income.additional_medicare_tax", - "description": null, - "index": 0 - }, - "gov.irs.tax.federal_income.income_tax_excluding_ptc": { - "label": "gov.irs.tax.federal_income.income_tax_excluding_ptc", - "description": null, - "index": 0 - }, - "gov.irs.tax.federal_income.income_tax": { - "label": "gov.irs.tax.federal_income.income_tax", - "description": null, - "index": 0 - }, - "gov.irs.tax.federal_income.net_investment_income_tax": { - "label": "gov.irs.tax.federal_income.net_investment_income_tax", - "description": null, - "index": 0 - }, - "gov.irs.tax.federal_income.income_tax_before_refundable_credits": { - "label": "gov.irs.tax.federal_income.income_tax_before_refundable_credits", - "description": null, - "index": 0 - }, - "gov.irs.tax.federal_income.amt_form_completed": { - "label": "gov.irs.tax.federal_income.amt_form_completed", - "description": null, - "index": 0 - }, - "gov.irs.tax.federal_income.alternative_minimum_tax.amt_tax_including_cg": { - "label": "gov.irs.tax.federal_income.alternative_minimum_tax.amt_tax_including_cg", - "description": null, - "index": 0 - }, - "gov.irs.tax.federal_income.alternative_minimum_tax.alternative_minimum_tax": { - "label": "gov.irs.tax.federal_income.alternative_minimum_tax.alternative_minimum_tax", - "description": null, - "index": 0 - }, - "gov.irs.tax.federal_income.alternative_minimum_tax.amt_part_iii_required": { - "label": "gov.irs.tax.federal_income.alternative_minimum_tax.amt_part_iii_required", - "description": null, - "index": 0 - }, - "gov.irs.tax.federal_income.alternative_minimum_tax.regular_tax_before_credits": { - "label": "gov.irs.tax.federal_income.alternative_minimum_tax.regular_tax_before_credits", - "description": null, - "index": 0 - }, - "gov.irs.tax.federal_income.alternative_minimum_tax.base_tax.amt_lower_base_tax": { - "label": "gov.irs.tax.federal_income.alternative_minimum_tax.base_tax.amt_lower_base_tax", - "description": null, - "index": 0 - }, - "gov.irs.tax.federal_income.alternative_minimum_tax.base_tax.amt_base_tax": { - "label": "gov.irs.tax.federal_income.alternative_minimum_tax.base_tax.amt_base_tax", - "description": null, - "index": 0 - }, - "gov.irs.tax.federal_income.alternative_minimum_tax.base_tax.amt_higher_base_tax": { - "label": "gov.irs.tax.federal_income.alternative_minimum_tax.base_tax.amt_higher_base_tax", - "description": null, - "index": 0 - }, - "gov.irs.tax.federal_income.alternative_minimum_tax.income.amt_income": { - "label": "gov.irs.tax.federal_income.alternative_minimum_tax.income.amt_income", - "description": null, - "index": 0 - }, - "gov.irs.tax.federal_income.alternative_minimum_tax.income.amt_separate_addition": { - "label": "gov.irs.tax.federal_income.alternative_minimum_tax.income.amt_separate_addition", - "description": null, - "index": 0 - }, - "gov.irs.tax.federal_income.alternative_minimum_tax.income.amt_excluded_deductions": { - "label": "gov.irs.tax.federal_income.alternative_minimum_tax.income.amt_excluded_deductions", - "description": null, - "index": 0 - }, - "gov.irs.tax.federal_income.alternative_minimum_tax.income.amt_income_less_exemptions": { - "label": "gov.irs.tax.federal_income.alternative_minimum_tax.income.amt_income_less_exemptions", - "description": null, - "index": 0 - }, - "gov.irs.tax.federal_income.alternative_minimum_tax.kiddie_tax.amt_kiddie_tax_applies": { - "label": "gov.irs.tax.federal_income.alternative_minimum_tax.kiddie_tax.amt_kiddie_tax_applies", - "description": null, - "index": 0 - }, - "gov.irs.tax.federal_income.before_credits.income_tax_main_rates": { - "label": "gov.irs.tax.federal_income.before_credits.income_tax_main_rates", - "description": null, - "index": 0 - }, - "gov.irs.tax.federal_income.before_credits.income_tax_before_credits": { - "label": "gov.irs.tax.federal_income.before_credits.income_tax_before_credits", - "description": null, - "index": 0 - }, - "gov.irs.tax.federal_income.capital_gains.capital_gains_tax": { - "label": "gov.irs.tax.federal_income.capital_gains.capital_gains_tax", - "description": null, - "index": 0 - }, - "gov.irs.tax.federal_income.capital_gains.dwks14": { - "label": "gov.irs.tax.federal_income.capital_gains.dwks14", - "description": null, - "index": 0 - }, - "gov.irs.tax.federal_income.capital_gains.dwks09": { - "label": "gov.irs.tax.federal_income.capital_gains.dwks09", - "description": null, - "index": 0 - }, - "gov.irs.tax.federal_income.capital_gains.dwks10": { - "label": "gov.irs.tax.federal_income.capital_gains.dwks10", - "description": null, - "index": 0 - }, - "gov.irs.tax.federal_income.capital_gains.dwks13": { - "label": "gov.irs.tax.federal_income.capital_gains.dwks13", - "description": null, - "index": 0 - }, - "gov.irs.tax.federal_income.capital_gains.dwks19": { - "label": "gov.irs.tax.federal_income.capital_gains.dwks19", - "description": null, - "index": 0 - }, - "gov.irs.tax.federal_income.capital_gains.dividend_income_reduced_by_investment_income": { - "label": "gov.irs.tax.federal_income.capital_gains.dividend_income_reduced_by_investment_income", - "description": null, - "index": 0 - }, - "gov.irs.tax.federal_income.capital_gains.capital_gains_excluded_from_taxable_income": { - "label": "gov.irs.tax.federal_income.capital_gains.capital_gains_excluded_from_taxable_income", - "description": null, - "index": 0 - }, - "gov.irs.tax.federal_income.capital_gains.adjusted_net_capital_gain": { - "label": "gov.irs.tax.federal_income.capital_gains.adjusted_net_capital_gain", - "description": null, - "index": 0 - }, - "gov.irs.tax.federal_income.capital_gains.capital_gains_28_percent_rate_gain": { - "label": "gov.irs.tax.federal_income.capital_gains.capital_gains_28_percent_rate_gain", - "description": null, - "index": 0 - }, - "gov.irs.tax.federal_income.capital_gains.net_capital_gain": { - "label": "gov.irs.tax.federal_income.capital_gains.net_capital_gain", - "description": null, - "index": 0 - }, - "gov.irs.tax.estate.estate_tax_before_credits": { - "label": "gov.irs.tax.estate.estate_tax_before_credits", - "description": null, - "index": 0 - }, - "gov.irs.tax.estate.estate_tax": { - "label": "gov.irs.tax.estate.estate_tax", - "description": null, - "index": 0 - }, - "gov.irs.vita.vita_eligible": { - "label": "gov.irs.vita.vita_eligible", - "description": null, - "index": 0 - }, - "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_income_bracket": { - "label": "gov.irs.deductions.itemized.salt_and_real_estate.state_sales_tax_income_bracket", - "description": null, - "index": 0 - }, - "gov.ssa.ss.social_security_retirement": { - "label": "gov.ssa.ss.social_security_retirement", - "description": null, - "index": 0 - }, - "gov.ssa.ss.social_security_survivors": { - "label": "gov.ssa.ss.social_security_survivors", - "description": null, - "index": 0 - }, - "gov.ssa.ss.never_eligible_for_social_security_benefits": { - "label": "gov.ssa.ss.never_eligible_for_social_security_benefits", - "description": null, - "index": 0 - }, - "gov.ssa.ss.social_security": { - "label": "gov.ssa.ss.social_security", - "description": null, - "index": 0 - }, - "gov.ssa.ss.social_security_disability": { - "label": "gov.ssa.ss.social_security_disability", - "description": null, - "index": 0 - }, - "gov.ssa.ss.social_security_dependents": { - "label": "gov.ssa.ss.social_security_dependents", - "description": null, - "index": 0 - }, - "gov.ssa.ssi.is_ssi_eligible": { - "label": "gov.ssa.ssi.is_ssi_eligible", - "description": null, - "index": 0 - }, - "gov.ssa.ssi.tax_unit_ssi": { - "label": "gov.ssa.ssi.tax_unit_ssi", - "description": null, - "index": 0 - }, - "gov.ssa.ssi.ssi_claim_is_joint": { - "label": "gov.ssa.ssi.ssi_claim_is_joint", - "description": null, - "index": 0 - }, - "gov.ssa.ssi.ssi_amount_if_eligible": { - "label": "gov.ssa.ssi.ssi_amount_if_eligible", - "description": null, - "index": 0 - }, - "gov.ssa.ssi.uncapped_ssi": { - "label": "gov.ssa.ssi.uncapped_ssi", - "description": null, - "index": 0 - }, - "gov.ssa.ssi.ssi": { - "label": "gov.ssa.ssi.ssi", - "description": null, - "index": 0 - }, - "gov.ssa.ssi.eligibility.status.is_ssi_aged": { - "label": "gov.ssa.ssi.eligibility.status.is_ssi_aged", - "description": null, - "index": 0 - }, - "gov.ssa.ssi.eligibility.status.is_ssi_eligible_individual": { - "label": "gov.ssa.ssi.eligibility.status.is_ssi_eligible_individual", - "description": null, - "index": 0 - }, - "gov.ssa.ssi.eligibility.status.is_ssi_disabled": { - "label": "gov.ssa.ssi.eligibility.status.is_ssi_disabled", - "description": null, - "index": 0 - }, - "gov.ssa.ssi.eligibility.status.is_ssi_qualified_noncitizen": { - "label": "gov.ssa.ssi.eligibility.status.is_ssi_qualified_noncitizen", - "description": null, - "index": 0 - }, - "gov.ssa.ssi.eligibility.status.is_ssi_ineligible_child": { - "label": "gov.ssa.ssi.eligibility.status.is_ssi_ineligible_child", - "description": null, - "index": 0 - }, - "gov.ssa.ssi.eligibility.status.is_ssi_ineligible_spouse": { - "label": "gov.ssa.ssi.eligibility.status.is_ssi_ineligible_spouse", - "description": null, - "index": 0 - }, - "gov.ssa.ssi.eligibility.status.is_ssi_ineligible_parent": { - "label": "gov.ssa.ssi.eligibility.status.is_ssi_ineligible_parent", - "description": null, - "index": 0 - }, - "gov.ssa.ssi.eligibility.status.is_ssi_eligible_spouse": { - "label": "gov.ssa.ssi.eligibility.status.is_ssi_eligible_spouse", - "description": null, - "index": 0 - }, - "gov.ssa.ssi.eligibility.status.ssi_category": { - "label": "gov.ssa.ssi.eligibility.status.ssi_category", - "description": null, - "index": 0 - }, - "gov.ssa.ssi.eligibility.status.is_ssi_aged_blind_disabled": { - "label": "gov.ssa.ssi.eligibility.status.is_ssi_aged_blind_disabled", - "description": null, - "index": 0 - }, - "gov.ssa.ssi.eligibility.income.ssi_countable_income": { - "label": "gov.ssa.ssi.eligibility.income.ssi_countable_income", - "description": null, - "index": 0 - }, - "gov.ssa.ssi.eligibility.income.ssi_engaged_in_sga": { - "label": "gov.ssa.ssi.eligibility.income.ssi_engaged_in_sga", - "description": null, - "index": 0 - }, - "gov.ssa.ssi.eligibility.income._apply_ssi_exclusions": { - "label": "gov.ssa.ssi.eligibility.income._apply_ssi_exclusions", - "description": null, - "index": 0 - }, - "gov.ssa.ssi.eligibility.income.ssi_unearned_income": { - "label": "gov.ssa.ssi.eligibility.income.ssi_unearned_income", - "description": null, - "index": 0 - }, - "gov.ssa.ssi.eligibility.income.is_ssi_blind_or_disabled_working_student_exclusion_eligible": { - "label": "gov.ssa.ssi.eligibility.income.is_ssi_blind_or_disabled_working_student_exclusion_eligible", - "description": null, - "index": 0 - }, - "gov.ssa.ssi.eligibility.income.ssi_blind_or_disabled_working_student_exclusion": { - "label": "gov.ssa.ssi.eligibility.income.ssi_blind_or_disabled_working_student_exclusion", - "description": null, - "index": 0 - }, - "gov.ssa.ssi.eligibility.income.ssi_earned_income": { - "label": "gov.ssa.ssi.eligibility.income.ssi_earned_income", - "description": null, - "index": 0 - }, - "gov.ssa.ssi.eligibility.income.deemed.ssi_ineligible_parent_allocation": { - "label": "gov.ssa.ssi.eligibility.income.deemed.ssi_ineligible_parent_allocation", - "description": null, - "index": 0 - }, - "gov.ssa.ssi.eligibility.income.deemed.ssi_ineligible_child_allocation": { - "label": "gov.ssa.ssi.eligibility.income.deemed.ssi_ineligible_child_allocation", - "description": null, - "index": 0 - }, - "gov.ssa.ssi.eligibility.income.deemed.from_ineligible_spouse": { - "label": "SSI Spousal Deeming", - "description": "This module implements the Supplemental Security Income (SSI) spousal deeming rules as specified in [20 CFR §416.1163](https://www.ssa.gov/OP_Home/cfr20/416/416-1163.htm).\n\n## Overview\n\nWhen an SSI-eligible individual lives with an ineligible spouse, a portion of the ineligible spouse's income may be \"deemed\" available to meet the needs of the eligible individual. This process is called spousal deeming.\n\n## Deeming Process\n\nThe implementation follows these steps according to the regulations:\n\n1. **Determine ineligible spouse's income** (§416.1163(a))\n\n - Calculate the ineligible spouse's earned and unearned income\n - Apply appropriate exclusions\n\n2. **Apply allocations for ineligible children** (§416.1163(b))\n\n - Deduct allocations for ineligible children from the ineligible spouse's income\n - Deductions are made from unearned income first, then earned income\n\n3. **Compare remaining income to FBR differential** (§416.1163(d))\n\n - Compare the remaining income to the difference between couple and individual FBR\n - If less than the differential, no income is deemed\n - If more than the differential, continue with deeming calculations\n\n4. **Calculate combined countable income** (§416.1163(d)(2))\n\n - Combine the eligible individual's and ineligible spouse's incomes\n - Apply all appropriate income exclusions to the combined income\n\n5. **Calculate deemed income amount**\n - The deemed amount is the difference between the combined countable income and the individual's countable income\n\n## Exclusions Applied\n\nIncome exclusions are applied in the following order:\n\n1. General exclusion ($20/month)\n2. Earned income exclusion ($65/month)\n3. 50% remainder reduction on earned income\n\n## Testing\n\n### Unit Tests\n\nUnit tests for this variable directly test the `ssi_income_deemed_from_ineligible_spouse` calculation with various input scenarios:\n\n- Disabled individual with working ineligible spouse\n- Disabled individual with non-working ineligible spouse\n- High-income scenarios\n- Mixed income (earned and unearned) scenarios\n- Income below FBR differential threshold\n\nThese tests can be found in `ssi_income_deemed_from_ineligible_spouse.yaml` and focus solely on testing this variable's specific logic.\n\n### Integration Tests\n\nIntegration tests verify the full SSI benefit calculation pipeline and can be found in the `integration.yaml` file. These tests check:\n\n- The entire SSI benefit calculation for households with ineligible spouses\n- Interactions between spousal deeming and other components of the SSI program\n- Edge cases like income just below and above threshold values\n- Households with various income combinations\n\nIntegration tests are particularly important for SSI spousal deeming as they validate the correct application of the regulation's multi-step process in a full benefit calculation context." - }, - "gov.ssa.ssi.eligibility.income.deemed.from_ineligible_spouse.ssi_income_deemed_from_ineligible_spouse": { - "label": "gov.ssa.ssi.eligibility.income.deemed.from_ineligible_spouse.ssi_income_deemed_from_ineligible_spouse", - "description": null, - "index": 0 - }, - "gov.ssa.ssi.eligibility.income.deemed.from_ineligible_spouse.ssi_earned_income_deemed_from_ineligible_spouse": { - "label": "gov.ssa.ssi.eligibility.income.deemed.from_ineligible_spouse.ssi_earned_income_deemed_from_ineligible_spouse", - "description": null, - "index": 0 - }, - "gov.ssa.ssi.eligibility.income.deemed.from_ineligible_spouse.ssi_unearned_income_deemed_from_ineligible_spouse": { - "label": "gov.ssa.ssi.eligibility.income.deemed.from_ineligible_spouse.ssi_unearned_income_deemed_from_ineligible_spouse", - "description": null, - "index": 0 - }, - "gov.ssa.ssi.eligibility.income.deemed.from_ineligible_parent.ssi_unearned_income_deemed_from_ineligible_parent": { - "label": "gov.ssa.ssi.eligibility.income.deemed.from_ineligible_parent.ssi_unearned_income_deemed_from_ineligible_parent", - "description": null, - "index": 0 - }, - "gov.ssa.ssi.eligibility.income.marital.ssi_marital_earned_income": { - "label": "gov.ssa.ssi.eligibility.income.marital.ssi_marital_earned_income", - "description": null, - "index": 0 - }, - "gov.ssa.ssi.eligibility.income.marital.ssi_marital_both_eligible": { - "label": "gov.ssa.ssi.eligibility.income.marital.ssi_marital_both_eligible", - "description": null, - "index": 0 - }, - "gov.ssa.ssi.eligibility.income.marital.ssi_marital_unearned_income": { - "label": "gov.ssa.ssi.eligibility.income.marital.ssi_marital_unearned_income", - "description": null, - "index": 0 - }, - "gov.ssa.ssi.eligibility.resources.ssi_countable_resources": { - "label": "gov.ssa.ssi.eligibility.resources.ssi_countable_resources", - "description": null, - "index": 0 - }, - "gov.ssa.ssi.eligibility.resources.meets_ssi_resource_test": { - "label": "gov.ssa.ssi.eligibility.resources.meets_ssi_resource_test", - "description": null, - "index": 0 - }, - "gov.aca": { - "label": "ACA employer-sponsored-insurance (ESI) variables", - "description": "" - }, - "gov.aca.takes_up_aca_if_eligible": { - "label": "gov.aca.takes_up_aca_if_eligible", - "description": null, - "index": 0 - }, - "gov.aca.aca_take_up_seed": { - "label": "gov.aca.aca_take_up_seed", - "description": null, - "index": 0 - }, - "gov.aca.ptc.aca_ptc_phase_out_rate": { - "label": "gov.aca.ptc.aca_ptc_phase_out_rate", - "description": null, - "index": 0 - }, - "gov.aca.ptc.premium_tax_credit": { - "label": "gov.aca.ptc.premium_tax_credit", - "description": null, - "index": 0 - }, - "gov.aca.ptc.aca_ptc": { - "label": "gov.aca.ptc.aca_ptc", - "description": null, - "index": 0 - }, - "gov.aca.slspc.slcsp_age_0": { - "label": "gov.aca.slspc.slcsp_age_0", - "description": null, - "index": 0 - }, - "gov.aca.slspc.slcsp_family_tier_applies": { - "label": "gov.aca.slspc.slcsp_family_tier_applies", - "description": null, - "index": 0 - }, - "gov.aca.slspc.slcsp": { - "label": "gov.aca.slspc.slcsp", - "description": null, - "index": 0 - }, - "gov.aca.slspc.slcsp_family_tier_category": { - "label": "gov.aca.slspc.slcsp_family_tier_category", - "description": null, - "index": 0 - }, - "gov.aca.slspc.slcsp_age_curve_applies": { - "label": "gov.aca.slspc.slcsp_age_curve_applies", - "description": null, - "index": 0 - }, - "gov.aca.slspc.slcsp_age_curve_amount_person": { - "label": "gov.aca.slspc.slcsp_age_curve_amount_person", - "description": null, - "index": 0 - }, - "gov.aca.slspc.slcsp_family_tier_multiplier": { - "label": "gov.aca.slspc.slcsp_family_tier_multiplier", - "description": null, - "index": 0 - }, - "gov.aca.slspc.slcsp_rating_area_default": { - "label": "gov.aca.slspc.slcsp_rating_area_default", - "description": null, - "index": 0 - }, - "gov.aca.slspc.slcsp_rating_area_la_county": { - "label": "gov.aca.slspc.slcsp_rating_area_la_county", - "description": null, - "index": 0 - }, - "gov.aca.slspc.slcsp_rating_area": { - "label": "gov.aca.slspc.slcsp_rating_area", - "description": null, - "index": 0 - }, - "gov.aca.slspc.slcsp_family_tier_amount": { - "label": "gov.aca.slspc.slcsp_family_tier_amount", - "description": null, - "index": 0 - }, - "gov.aca.eligibility.is_aca_eshi_eligible": { - "label": "gov.aca.eligibility.is_aca_eshi_eligible", - "description": null, - "index": 0 - }, - "gov.aca.eligibility.is_aca_ptc_immigration_status_eligible": { - "label": "gov.aca.eligibility.is_aca_ptc_immigration_status_eligible", - "description": null, - "index": 0 - }, - "gov.aca.eligibility.aca_magi_fraction": { - "label": "gov.aca.eligibility.aca_magi_fraction", - "description": null, - "index": 0 - }, - "gov.aca.eligibility.aca_child_index": { - "label": "gov.aca.eligibility.aca_child_index", - "description": null, - "index": 0 - }, - "gov.aca.eligibility.aca_magi": { - "label": "gov.aca.eligibility.aca_magi", - "description": null, - "index": 0 - }, - "gov.aca.eligibility.is_aca_ptc_eligible": { - "label": "gov.aca.eligibility.is_aca_ptc_eligible", - "description": null, - "index": 0 - }, - "gov.aca.eligibility.offered_aca_disqualifying_esi": { - "label": "gov.aca.eligibility.offered_aca_disqualifying_esi", - "description": null, - "index": 0 - }, - "gov.aca.eligibility.has_esi": { - "label": "gov.aca.eligibility.has_esi", - "description": null, - "index": 0 - }, - "gov.local.co.denver.in_denver": { - "label": "gov.local.co.denver.in_denver", - "description": null, - "index": 0 - }, - "gov.local.co.denver.dhs.is_co_denver_dhs_elderly": { - "label": "gov.local.co.denver.dhs.is_co_denver_dhs_elderly", - "description": null, - "index": 0 - }, - "gov.local.co.denver.dhs.has_co_denver_dhs_elderly_disabled": { - "label": "gov.local.co.denver.dhs.has_co_denver_dhs_elderly_disabled", - "description": null, - "index": 0 - }, - "gov.local.co.denver.dhs.property_tax_relief.co_denver_property_tax_relief_income": { - "label": "gov.local.co.denver.dhs.property_tax_relief.co_denver_property_tax_relief_income", - "description": null, - "index": 0 - }, - "gov.local.co.denver.dhs.property_tax_relief.co_denver_renter_property_tax_relief": { - "label": "gov.local.co.denver.dhs.property_tax_relief.co_denver_renter_property_tax_relief", - "description": null, - "index": 0 - }, - "gov.local.co.denver.dhs.property_tax_relief.co_denver_property_tax_relief": { - "label": "gov.local.co.denver.dhs.property_tax_relief.co_denver_property_tax_relief", - "description": null, - "index": 0 - }, - "gov.local.co.denver.dhs.property_tax_relief.co_denver_homeowner_property_tax_relief": { - "label": "gov.local.co.denver.dhs.property_tax_relief.co_denver_homeowner_property_tax_relief", - "description": null, - "index": 0 - }, - "gov.local.co.denver.dhs.property_tax_relief.eligibility.co_denver_property_tax_relief_renter_eligible": { - "label": "gov.local.co.denver.dhs.property_tax_relief.eligibility.co_denver_property_tax_relief_renter_eligible", - "description": null, - "index": 0 - }, - "gov.local.co.denver.dhs.property_tax_relief.eligibility.co_denver_property_tax_relief_homeowner_eligible": { - "label": "gov.local.co.denver.dhs.property_tax_relief.eligibility.co_denver_property_tax_relief_homeowner_eligible", - "description": null, - "index": 0 - }, - "gov.local.ny.nyc.tax.income.nyc_income_tax_before_credits": { - "label": "gov.local.ny.nyc.tax.income.nyc_income_tax_before_credits", - "description": null, - "index": 0 - }, - "gov.local.ny.nyc.tax.income.nyc_income_tax_before_refundable_credits": { - "label": "gov.local.ny.nyc.tax.income.nyc_income_tax_before_refundable_credits", - "description": null, - "index": 0 - }, - "gov.local.ny.nyc.tax.income.nyc_non_refundable_credits": { - "label": "gov.local.ny.nyc.tax.income.nyc_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.local.ny.nyc.tax.income.nyc_refundable_credits": { - "label": "gov.local.ny.nyc.tax.income.nyc_refundable_credits", - "description": null, - "index": 0 - }, - "gov.local.ny.nyc.tax.income.nyc_income_tax": { - "label": "gov.local.ny.nyc.tax.income.nyc_income_tax", - "description": null, - "index": 0 - }, - "gov.local.ny.nyc.tax.income.credits.nyc_eitc": { - "label": "gov.local.ny.nyc.tax.income.credits.nyc_eitc", - "description": null, - "index": 0 - }, - "gov.local.ny.nyc.tax.income.credits.household.nyc_household_credit": { - "label": "gov.local.ny.nyc.tax.income.credits.household.nyc_household_credit", - "description": null, - "index": 0 - }, - "gov.local.ny.nyc.tax.income.credits.unincorporated_business.nyc_unincorporated_business_credit": { - "label": "gov.local.ny.nyc.tax.income.credits.unincorporated_business.nyc_unincorporated_business_credit", - "description": null, - "index": 0 - }, - "gov.local.ny.nyc.tax.income.credits.cdcc.nyc_cdcc": { - "label": "gov.local.ny.nyc.tax.income.credits.cdcc.nyc_cdcc", - "description": null, - "index": 0 - }, - "gov.local.ny.nyc.tax.income.credits.cdcc.nyc_cdcc_applicable_percentage": { - "label": "gov.local.ny.nyc.tax.income.credits.cdcc.nyc_cdcc_applicable_percentage", - "description": null, - "index": 0 - }, - "gov.local.ny.nyc.tax.income.credits.cdcc.nyc_cdcc_age_restricted_expenses": { - "label": "gov.local.ny.nyc.tax.income.credits.cdcc.nyc_cdcc_age_restricted_expenses", - "description": null, - "index": 0 - }, - "gov.local.ny.nyc.tax.income.credits.cdcc.nyc_cdcc_eligible": { - "label": "gov.local.ny.nyc.tax.income.credits.cdcc.nyc_cdcc_eligible", - "description": null, - "index": 0 - }, - "gov.local.ny.nyc.tax.income.credits.cdcc.nyc_cdcc_share_qualifying_childcare_expenses": { - "label": "gov.local.ny.nyc.tax.income.credits.cdcc.nyc_cdcc_share_qualifying_childcare_expenses", - "description": null, - "index": 0 - }, - "gov.local.ny.nyc.tax.income.credits.school.nyc_school_tax_credit_rate_reduction_amount": { - "label": "gov.local.ny.nyc.tax.income.credits.school.nyc_school_tax_credit_rate_reduction_amount", - "description": null, - "index": 0 - }, - "gov.local.ny.nyc.tax.income.credits.school.nyc_school_tax_credit": { - "label": "gov.local.ny.nyc.tax.income.credits.school.nyc_school_tax_credit", - "description": null, - "index": 0 - }, - "gov.local.ny.nyc.tax.income.credits.school.nyc_school_tax_credit_rate_reduction_amount_eligible": { - "label": "gov.local.ny.nyc.tax.income.credits.school.nyc_school_tax_credit_rate_reduction_amount_eligible", - "description": null, - "index": 0 - }, - "gov.local.ny.nyc.tax.income.credits.school.nyc_school_tax_credit_fixed_amount": { - "label": "gov.local.ny.nyc.tax.income.credits.school.nyc_school_tax_credit_fixed_amount", - "description": null, - "index": 0 - }, - "gov.local.ny.nyc.tax.income.credits.school.nyc_school_tax_credit_fixed_amount_eligible": { - "label": "gov.local.ny.nyc.tax.income.credits.school.nyc_school_tax_credit_fixed_amount_eligible", - "description": null, - "index": 0 - }, - "gov.local.ny.nyc.tax.income.credits.school.nyc_school_credit_income": { - "label": "gov.local.ny.nyc.tax.income.credits.school.nyc_school_credit_income", - "description": null, - "index": 0 - }, - "gov.local.ny.nyc.tax.income.taxable_income.nyc_taxable_income": { - "label": "gov.local.ny.nyc.tax.income.taxable_income.nyc_taxable_income", - "description": null, - "index": 0 - }, - "gov.local.tax.assessed_property_value": { - "label": "gov.local.tax.assessed_property_value", - "description": null, - "index": 0 - }, - "gov.local.tax.salt_refund_last_year": { - "label": "gov.local.tax.salt_refund_last_year", - "description": null, - "index": 0 - }, - "gov.local.tax.sales.local_sales_tax": { - "label": "gov.local.tax.sales.local_sales_tax", - "description": null, - "index": 0 - }, - "gov.local.tax.income.local_income_tax": { - "label": "gov.local.tax.income.local_income_tax", - "description": null, - "index": 0 - }, - "gov.local.ca.riv.in_riv": { - "label": "gov.local.ca.riv.in_riv", - "description": null, - "index": 0 - }, - "gov.local.ca.riv.share.ca_riv_share_payment": { - "label": "gov.local.ca.riv.share.ca_riv_share_payment", - "description": null, - "index": 0 - }, - "gov.local.ca.riv.share.ca_riv_share_eligible": { - "label": "gov.local.ca.riv.share.ca_riv_share_eligible", - "description": null, - "index": 0 - }, - "gov.local.ca.riv.share.ca_riv_share_countable_income": { - "label": "gov.local.ca.riv.share.ca_riv_share_countable_income", - "description": null, - "index": 0 - }, - "gov.local.ca.riv.share.emergency_payment.ca_riv_share_electricity_emergency_payment": { - "label": "gov.local.ca.riv.share.emergency_payment.ca_riv_share_electricity_emergency_payment", - "description": null, - "index": 0 - }, - "gov.local.ca.riv.share.emergency_payment.ca_riv_share_eligible_for_emergency_payment": { - "label": "gov.local.ca.riv.share.emergency_payment.ca_riv_share_eligible_for_emergency_payment", - "description": null, - "index": 0 - }, - "gov.local.ca.riv.liheap.ca_riv_liheap_eligible": { - "label": "gov.local.ca.riv.liheap.ca_riv_liheap_eligible", - "description": null, - "index": 0 - }, - "gov.local.ca.riv.liheap.ca_riv_liheap_countable_income": { - "label": "gov.local.ca.riv.liheap.ca_riv_liheap_countable_income", - "description": null, - "index": 0 - }, - "gov.local.ca.sf.wftc.ca_sf_wftc": { - "label": "gov.local.ca.sf.wftc.ca_sf_wftc", - "description": null, - "index": 0 - }, - "gov.local.ca.la.in_la": { - "label": "gov.local.ca.la.in_la", - "description": null, - "index": 0 - }, - "gov.local.ca.la.dss.expectant_parent_payment.ca_la_expectant_parent_payment": { - "label": "gov.local.ca.la.dss.expectant_parent_payment.ca_la_expectant_parent_payment", - "description": null, - "index": 0 - }, - "gov.local.ca.la.dss.expectant_parent_payment.ca_la_expectant_parent_payment_eligible": { - "label": "gov.local.ca.la.dss.expectant_parent_payment.ca_la_expectant_parent_payment_eligible", - "description": null, - "index": 0 - }, - "gov.local.ca.la.dss.infant_supplement.ca_la_infant_supplement_eligible_person": { - "label": "gov.local.ca.la.dss.infant_supplement.ca_la_infant_supplement_eligible_person", - "description": null, - "index": 0 - }, - "gov.local.ca.la.dss.infant_supplement.ca_la_infant_supplement": { - "label": "gov.local.ca.la.dss.infant_supplement.ca_la_infant_supplement", - "description": null, - "index": 0 - }, - "gov.local.ca.la.general_relief.la_general_relief_net_income": { - "label": "gov.local.ca.la.general_relief.la_general_relief_net_income", - "description": null, - "index": 0 - }, - "gov.local.ca.la.general_relief.la_general_relief": { - "label": "gov.local.ca.la.general_relief.la_general_relief", - "description": null, - "index": 0 - }, - "gov.local.ca.la.general_relief.la_general_relief_gross_income": { - "label": "gov.local.ca.la.general_relief.la_general_relief_gross_income", - "description": null, - "index": 0 - }, - "gov.local.ca.la.general_relief.la_general_relief_base_amount": { - "label": "gov.local.ca.la.general_relief.la_general_relief_base_amount", - "description": null, - "index": 0 - }, - "gov.local.ca.la.general_relief.la_general_relief_recipient": { - "label": "gov.local.ca.la.general_relief.la_general_relief_recipient", - "description": null, - "index": 0 - }, - "gov.local.ca.la.general_relief.housing_subsidy.la_general_relief_rent_contribution": { - "label": "gov.local.ca.la.general_relief.housing_subsidy.la_general_relief_rent_contribution", - "description": null, - "index": 0 - }, - "gov.local.ca.la.general_relief.housing_subsidy.la_general_relief_housing_subsidy": { - "label": "gov.local.ca.la.general_relief.housing_subsidy.la_general_relief_housing_subsidy", - "description": null, - "index": 0 - }, - "gov.local.ca.la.general_relief.housing_subsidy.eligibility.la_general_relief_housing_subsidy_program_eligible": { - "label": "gov.local.ca.la.general_relief.housing_subsidy.eligibility.la_general_relief_housing_subsidy_program_eligible", - "description": null, - "index": 0 - }, - "gov.local.ca.la.general_relief.housing_subsidy.eligibility.la_general_relief_housing_subsidy_eligible": { - "label": "gov.local.ca.la.general_relief.housing_subsidy.eligibility.la_general_relief_housing_subsidy_eligible", - "description": null, - "index": 0 - }, - "gov.local.ca.la.general_relief.housing_subsidy.eligibility.la_general_relief_housing_subsidy_base_amount_eligible": { - "label": "gov.local.ca.la.general_relief.housing_subsidy.eligibility.la_general_relief_housing_subsidy_base_amount_eligible", - "description": null, - "index": 0 - }, - "gov.local.ca.la.general_relief.eligibility.la_general_relief_eligible": { - "label": "gov.local.ca.la.general_relief.eligibility.la_general_relief_eligible", - "description": null, - "index": 0 - }, - "gov.local.ca.la.general_relief.eligibility.la_general_relief_disability_eligible": { - "label": "gov.local.ca.la.general_relief.eligibility.la_general_relief_disability_eligible", - "description": null, - "index": 0 - }, - "gov.local.ca.la.general_relief.eligibility.la_general_relief_personal_property_eligible": { - "label": "gov.local.ca.la.general_relief.eligibility.la_general_relief_personal_property_eligible", - "description": null, - "index": 0 - }, - "gov.local.ca.la.general_relief.eligibility.la_general_relief_home_value_eligible": { - "label": "gov.local.ca.la.general_relief.eligibility.la_general_relief_home_value_eligible", - "description": null, - "index": 0 - }, - "gov.local.ca.la.general_relief.eligibility.la_general_relief_motor_vehicle_value_eligible": { - "label": "gov.local.ca.la.general_relief.eligibility.la_general_relief_motor_vehicle_value_eligible", - "description": null, - "index": 0 - }, - "gov.local.ca.la.general_relief.eligibility.la_general_relief_age_eligible": { - "label": "gov.local.ca.la.general_relief.eligibility.la_general_relief_age_eligible", - "description": null, - "index": 0 - }, - "gov.local.ca.la.general_relief.eligibility.net_income.la_general_relief_net_income_eligible": { - "label": "gov.local.ca.la.general_relief.eligibility.net_income.la_general_relief_net_income_eligible", - "description": null, - "index": 0 - }, - "gov.local.ca.la.general_relief.eligibility.net_income.la_general_relief_net_income_limit": { - "label": "gov.local.ca.la.general_relief.eligibility.net_income.la_general_relief_net_income_limit", - "description": null, - "index": 0 - }, - "gov.local.ca.la.general_relief.eligibility.cash.la_general_relief_cash_asset_eligible": { - "label": "gov.local.ca.la.general_relief.eligibility.cash.la_general_relief_cash_asset_eligible", - "description": null, - "index": 0 - }, - "gov.local.ca.la.general_relief.eligibility.cash.la_general_relief_cash_asset_limit": { - "label": "gov.local.ca.la.general_relief.eligibility.cash.la_general_relief_cash_asset_limit", - "description": null, - "index": 0 - }, - "gov.local.ca.la.general_relief.eligibility.immigration.la_general_relief_immigration_status_eligible_person": { - "label": "gov.local.ca.la.general_relief.eligibility.immigration.la_general_relief_immigration_status_eligible_person", - "description": null, - "index": 0 - }, - "gov.local.ca.la.general_relief.eligibility.immigration.la_general_relief_immigration_status_eligible": { - "label": "gov.local.ca.la.general_relief.eligibility.immigration.la_general_relief_immigration_status_eligible", - "description": null, - "index": 0 - }, - "gov.local.ca.la.dwp.ez_save.ca_la_ez_save_eligible": { - "label": "gov.local.ca.la.dwp.ez_save.ca_la_ez_save_eligible", - "description": null, - "index": 0 - }, - "gov.local.ca.la.dwp.ez_save.ca_la_ez_save_fpg": { - "label": "gov.local.ca.la.dwp.ez_save.ca_la_ez_save_fpg", - "description": null, - "index": 0 - }, - "gov.local.ca.la.dwp.ez_save.ca_la_ez_save_countable_income": { - "label": "gov.local.ca.la.dwp.ez_save.ca_la_ez_save_countable_income", - "description": null, - "index": 0 - }, - "gov.local.ca.la.dwp.ez_save.ca_la_ez_save": { - "label": "gov.local.ca.la.dwp.ez_save.ca_la_ez_save", - "description": null, - "index": 0 - }, - "gov.local.md.montgomery.tax.income.credits.eitc.refundable.montgomery_refundable_eitc": { - "label": "gov.local.md.montgomery.tax.income.credits.eitc.refundable.montgomery_refundable_eitc", - "description": null, - "index": 0 - }, - "gov.fcc.fcc_fpg_ratio": { - "label": "gov.fcc.fcc_fpg_ratio", - "description": null, - "index": 0 - }, - "gov.fcc.acp.is_acp_eligible": { - "label": "gov.fcc.acp.is_acp_eligible", - "description": null, - "index": 0 - }, - "gov.fcc.acp.acp": { - "label": "gov.fcc.acp.acp", - "description": null, - "index": 0 - }, - "gov.fcc.lifeline.lifeline": { - "label": "gov.fcc.lifeline.lifeline", - "description": null, - "index": 0 - }, - "gov.fcc.lifeline.broadband_cost_after_lifeline": { - "label": "gov.fcc.lifeline.broadband_cost_after_lifeline", - "description": null, - "index": 0 - }, - "gov.fcc.lifeline.is_lifeline_eligible": { - "label": "gov.fcc.lifeline.is_lifeline_eligible", - "description": null, - "index": 0 - }, - "gov.fcc.ebb.ebb": { - "label": "gov.fcc.ebb.ebb", - "description": null, - "index": 0 - }, - "gov.fcc.ebb.is_ebb_eligible": { - "label": "gov.fcc.ebb.is_ebb_eligible", - "description": null, - "index": 0 - }, - "gov.fcc.ebb.enrolled_in_ebb": { - "label": "gov.fcc.ebb.enrolled_in_ebb", - "description": null, - "index": 0 - }, - "gov.territories.pr.tax.income.pr_gross_income": { - "label": "gov.territories.pr.tax.income.pr_gross_income", - "description": null, - "index": 0 - }, - "gov.territories.pr.tax.income.pr_agi_person": { - "label": "gov.territories.pr.tax.income.pr_agi_person", - "description": null, - "index": 0 - }, - "gov.territories.pr.tax.income.pr_gross_income_person": { - "label": "gov.territories.pr.tax.income.pr_gross_income_person", - "description": null, - "index": 0 - }, - "gov.territories.pr.tax.income.pr_agi": { - "label": "gov.territories.pr.tax.income.pr_agi", - "description": null, - "index": 0 - }, - "gov.territories.pr.tax.income.credits.pr_refundable_credits": { - "label": "gov.territories.pr.tax.income.credits.pr_refundable_credits", - "description": null, - "index": 0 - }, - "gov.territories.pr.tax.income.credits.low_income.pr_low_income_credit_eligible": { - "label": "gov.territories.pr.tax.income.credits.low_income.pr_low_income_credit_eligible", - "description": null, - "index": 0 - }, - "gov.territories.pr.tax.income.credits.low_income.pr_low_income_credit": { - "label": "gov.territories.pr.tax.income.credits.low_income.pr_low_income_credit", - "description": null, - "index": 0 - }, - "gov.territories.pr.tax.income.credits.low_income.pr_low_income_credit_eligible_person": { - "label": "gov.territories.pr.tax.income.credits.low_income.pr_low_income_credit_eligible_person", - "description": null, - "index": 0 - }, - "gov.territories.pr.tax.income.credits.low_income.pr_compensatory_low_income_credit": { - "label": "gov.territories.pr.tax.income.credits.low_income.pr_compensatory_low_income_credit", - "description": null, - "index": 0 - }, - "gov.territories.pr.tax.income.credits.low_income.pr_low_income_credit_eligible_people": { - "label": "gov.territories.pr.tax.income.credits.low_income.pr_low_income_credit_eligible_people", - "description": null, - "index": 0 - }, - "gov.territories.pr.tax.income.credits.earned_income.pr_earned_income_credit_eligible_person": { - "label": "gov.territories.pr.tax.income.credits.earned_income.pr_earned_income_credit_eligible_person", - "description": null, - "index": 0 - }, - "gov.territories.pr.tax.income.credits.earned_income.pr_earned_income_credit_eligible": { - "label": "gov.territories.pr.tax.income.credits.earned_income.pr_earned_income_credit_eligible", - "description": null, - "index": 0 - }, - "gov.territories.pr.tax.income.credits.earned_income.pr_earned_income_credit_unearned_income": { - "label": "gov.territories.pr.tax.income.credits.earned_income.pr_earned_income_credit_unearned_income", - "description": null, - "index": 0 - }, - "gov.territories.pr.tax.income.credits.earned_income.pr_earned_income_credit": { - "label": "gov.territories.pr.tax.income.credits.earned_income.pr_earned_income_credit", - "description": null, - "index": 0 - }, - "gov.territories.pr.tax.income.taxable_income.deductions.pr_charitable_deduction": { - "label": "gov.territories.pr.tax.income.taxable_income.deductions.pr_charitable_deduction", - "description": null, - "index": 0 - }, - "gov.territories.pr.tax.income.taxable_income.deductions.pr_casualty_loss_deduction": { - "label": "gov.territories.pr.tax.income.taxable_income.deductions.pr_casualty_loss_deduction", - "description": null, - "index": 0 - }, - "gov.territories.pr.tax.income.taxable_income.deductions.pr_mortgage_deduction": { - "label": "gov.territories.pr.tax.income.taxable_income.deductions.pr_mortgage_deduction", - "description": null, - "index": 0 - }, - "gov.territories.pr.tax.income.taxable_income.deductions.pr_medical_expense_deduction": { - "label": "gov.territories.pr.tax.income.taxable_income.deductions.pr_medical_expense_deduction", - "description": null, - "index": 0 - }, - "gov.territories.pr.tax.income.taxable_income.deductions.education.pr_education_deduction_beneficiary_count": { - "label": "gov.territories.pr.tax.income.taxable_income.deductions.education.pr_education_deduction_beneficiary_count", - "description": null, - "index": 0 - }, - "gov.territories.pr.tax.income.taxable_income.deductions.education.pr_education_deduction": { - "label": "gov.territories.pr.tax.income.taxable_income.deductions.education.pr_education_deduction", - "description": null, - "index": 0 - }, - "gov.territories.pr.tax.income.taxable_income.deductions.retirement.pr_retirement_deduction": { - "label": "gov.territories.pr.tax.income.taxable_income.deductions.retirement.pr_retirement_deduction", - "description": null, - "index": 0 - }, - "gov.territories.pr.tax.income.taxable_income.deductions.retirement.pr_retirement_deduction_eligibility": { - "label": "gov.territories.pr.tax.income.taxable_income.deductions.retirement.pr_retirement_deduction_eligibility", - "description": null, - "index": 0 - }, - "gov.hud.hud_max_subsidy": { - "label": "gov.hud.hud_max_subsidy", - "description": null, - "index": 0 - }, - "gov.hud.ami": { - "label": "gov.hud.ami", - "description": null, - "index": 0 - }, - "gov.hud.hud_annual_income": { - "label": "gov.hud.hud_annual_income", - "description": null, - "index": 0 - }, - "gov.hud.is_hud_elderly_disabled_family": { - "label": "gov.hud.is_hud_elderly_disabled_family", - "description": null, - "index": 0 - }, - "gov.hud.housing_assistance": { - "label": "gov.hud.housing_assistance", - "description": null, - "index": 0 - }, - "gov.hud.housing_designated_welfare": { - "label": "gov.hud.housing_designated_welfare", - "description": null, - "index": 0 - }, - "gov.hud.tax_unit_income_ami_ratio": { - "label": "gov.hud.tax_unit_income_ami_ratio", - "description": null, - "index": 0 - }, - "gov.hud.household_income_ami_ratio": { - "label": "gov.hud.household_income_ami_ratio", - "description": null, - "index": 0 - }, - "gov.hud.receives_housing_assistance": { - "label": "gov.hud.receives_housing_assistance", - "description": null, - "index": 0 - }, - "gov.hud.hud_income_level": { - "label": "gov.hud.hud_income_level", - "description": null, - "index": 0 - }, - "gov.hud.hud_adjusted_income": { - "label": "gov.hud.hud_adjusted_income", - "description": null, - "index": 0 - }, - "gov.hud.hud_gross_rent": { - "label": "gov.hud.hud_gross_rent", - "description": null, - "index": 0 - }, - "gov.hud.is_eligible_for_housing_assistance": { - "label": "gov.hud.is_eligible_for_housing_assistance", - "description": null, - "index": 0 - }, - "gov.hud.hud_hap": { - "label": "gov.hud.hud_hap", - "description": null, - "index": 0 - }, - "gov.hud.hud_utility_allowance": { - "label": "gov.hud.hud_utility_allowance", - "description": null, - "index": 0 - }, - "gov.hud.pha_payment_standard": { - "label": "gov.hud.pha_payment_standard", - "description": null, - "index": 0 - }, - "gov.hud.hud_minimum_rent": { - "label": "gov.hud.hud_minimum_rent", - "description": null, - "index": 0 - }, - "gov.hud.ttp.hud_ttp": { - "label": "gov.hud.ttp.hud_ttp", - "description": null, - "index": 0 - }, - "gov.hud.ttp.hud_ttp_adjusted_income_share": { - "label": "gov.hud.ttp.hud_ttp_adjusted_income_share", - "description": null, - "index": 0 - }, - "gov.hud.ttp.hud_ttp_income_share": { - "label": "gov.hud.ttp.hud_ttp_income_share", - "description": null, - "index": 0 - }, - "gov.hud.income_level_factor.hud_especially_low_income_factor": { - "label": "gov.hud.income_level_factor.hud_especially_low_income_factor", - "description": null, - "index": 0 - }, - "gov.hud.income_level_factor.hud_low_income_factor": { - "label": "gov.hud.income_level_factor.hud_low_income_factor", - "description": null, - "index": 0 - }, - "gov.hud.income_level_factor.hud_very_low_income_factor": { - "label": "gov.hud.income_level_factor.hud_very_low_income_factor", - "description": null, - "index": 0 - }, - "gov.hud.income_level_factor.hud_moderate_income_factor": { - "label": "gov.hud.income_level_factor.hud_moderate_income_factor", - "description": null, - "index": 0 - }, - "gov.ed.pell_grant.pell_grant_calculation_method": { - "label": "gov.ed.pell_grant.pell_grant_calculation_method", - "description": null, - "index": 0 - }, - "gov.ed.pell_grant.pell_grant_countable_assets": { - "label": "gov.ed.pell_grant.pell_grant_countable_assets", - "description": null, - "index": 0 - }, - "gov.ed.pell_grant.pell_grant_cost_of_attending_college": { - "label": "gov.ed.pell_grant.pell_grant_cost_of_attending_college", - "description": null, - "index": 0 - }, - "gov.ed.pell_grant.pell_grant_formula": { - "label": "gov.ed.pell_grant.pell_grant_formula", - "description": null, - "index": 0 - }, - "gov.ed.pell_grant.pell_grant": { - "label": "gov.ed.pell_grant.pell_grant", - "description": null, - "index": 0 - }, - "gov.ed.pell_grant.pell_grant_months_in_school": { - "label": "gov.ed.pell_grant.pell_grant_months_in_school", - "description": null, - "index": 0 - }, - "gov.ed.pell_grant.sai.pell_grant_uses_sai": { - "label": "gov.ed.pell_grant.sai.pell_grant_uses_sai", - "description": null, - "index": 0 - }, - "gov.ed.pell_grant.sai.pell_grant_sai": { - "label": "gov.ed.pell_grant.sai.pell_grant_sai", - "description": null, - "index": 0 - }, - "gov.ed.pell_grant.sai.eligibility_type.pell_grant_max_fpg_limit": { - "label": "gov.ed.pell_grant.sai.eligibility_type.pell_grant_max_fpg_limit", - "description": null, - "index": 0 - }, - "gov.ed.pell_grant.sai.eligibility_type.pell_grant_household_type": { - "label": "gov.ed.pell_grant.sai.eligibility_type.pell_grant_household_type", - "description": null, - "index": 0 - }, - "gov.ed.pell_grant.sai.eligibility_type.pell_grant_min_fpg_limit": { - "label": "gov.ed.pell_grant.sai.eligibility_type.pell_grant_min_fpg_limit", - "description": null, - "index": 0 - }, - "gov.ed.pell_grant.sai.eligibility_type.pell_grant_eligibility_type": { - "label": "gov.ed.pell_grant.sai.eligibility_type.pell_grant_eligibility_type", - "description": null, - "index": 0 - }, - "gov.ed.pell_grant.head.pell_grant_head_allowances": { - "label": "gov.ed.pell_grant.head.pell_grant_head_allowances", - "description": null, - "index": 0 - }, - "gov.ed.pell_grant.head.pell_grant_head_contribution_from_assets": { - "label": "gov.ed.pell_grant.head.pell_grant_head_contribution_from_assets", - "description": null, - "index": 0 - }, - "gov.ed.pell_grant.head.pell_grant_head_assets": { - "label": "gov.ed.pell_grant.head.pell_grant_head_assets", - "description": null, - "index": 0 - }, - "gov.ed.pell_grant.head.pell_grant_head_available_income": { - "label": "gov.ed.pell_grant.head.pell_grant_head_available_income", - "description": null, - "index": 0 - }, - "gov.ed.pell_grant.head.pell_grant_head_contribution": { - "label": "gov.ed.pell_grant.head.pell_grant_head_contribution", - "description": null, - "index": 0 - }, - "gov.ed.pell_grant.head.pell_grant_head_income": { - "label": "gov.ed.pell_grant.head.pell_grant_head_income", - "description": null, - "index": 0 - }, - "gov.ed.pell_grant.dependent.pell_grant_dependent_other_allowances": { - "label": "gov.ed.pell_grant.dependent.pell_grant_dependent_other_allowances", - "description": null, - "index": 0 - }, - "gov.ed.pell_grant.dependent.pell_grant_dependent_available_income": { - "label": "gov.ed.pell_grant.dependent.pell_grant_dependent_available_income", - "description": null, - "index": 0 - }, - "gov.ed.pell_grant.dependent.pell_grant_dependent_contribution": { - "label": "gov.ed.pell_grant.dependent.pell_grant_dependent_contribution", - "description": null, - "index": 0 - }, - "gov.ed.pell_grant.dependent.pell_grant_dependent_allowances": { - "label": "gov.ed.pell_grant.dependent.pell_grant_dependent_allowances", - "description": null, - "index": 0 - }, - "gov.ed.pell_grant.efc.pell_grant_uses_efc": { - "label": "gov.ed.pell_grant.efc.pell_grant_uses_efc", - "description": null, - "index": 0 - }, - "gov.ed.pell_grant.efc.pell_grant_efc": { - "label": "gov.ed.pell_grant.efc.pell_grant_efc", - "description": null, - "index": 0 - }, - "gov.ed.pell_grant.efc.pell_grant_simplified_formula_applies": { - "label": "gov.ed.pell_grant.efc.pell_grant_simplified_formula_applies", - "description": null, - "index": 0 - }, - "gov.ed.pell_grant.efc.pell_grant_dependents_in_college": { - "label": "gov.ed.pell_grant.efc.pell_grant_dependents_in_college", - "description": null, - "index": 0 - }, - "gov.usda.has_usda_elderly_disabled": { - "label": "gov.usda.has_usda_elderly_disabled", - "description": null, - "index": 0 - }, - "gov.usda.has_all_usda_elderly_disabled": { - "label": "gov.usda.has_all_usda_elderly_disabled", - "description": null, - "index": 0 - }, - "gov.usda.is_usda_elderly": { - "label": "gov.usda.is_usda_elderly", - "description": null, - "index": 0 - }, - "gov.usda.is_usda_disabled": { - "label": "gov.usda.is_usda_disabled", - "description": null, - "index": 0 - }, - "gov.usda.fdpir.fdpir": { - "label": "gov.usda.fdpir.fdpir", - "description": null, - "index": 0 - }, - "gov.usda.csfp.commodity_supplemental_food_program_eligible": { - "label": "gov.usda.csfp.commodity_supplemental_food_program_eligible", - "description": null, - "index": 0 - }, - "gov.usda.csfp.commodity_supplemental_food_program": { - "label": "gov.usda.csfp.commodity_supplemental_food_program", - "description": null, - "index": 0 - }, - "gov.usda.wic.receives_wic": { - "label": "gov.usda.wic.receives_wic", - "description": null, - "index": 0 - }, - "gov.usda.wic.is_wic_eligible": { - "label": "gov.usda.wic.is_wic_eligible", - "description": null, - "index": 0 - }, - "gov.usda.wic.wic": { - "label": "gov.usda.wic.wic", - "description": null, - "index": 0 - }, - "gov.usda.wic.meets_wic_income_test": { - "label": "gov.usda.wic.meets_wic_income_test", - "description": null, - "index": 0 - }, - "gov.usda.wic.is_wic_at_nutritional_risk": { - "label": "gov.usda.wic.is_wic_at_nutritional_risk", - "description": null, - "index": 0 - }, - "gov.usda.wic.wic_fpg": { - "label": "gov.usda.wic.wic_fpg", - "description": null, - "index": 0 - }, - "gov.usda.wic.wic_category": { - "label": "gov.usda.wic.wic_category", - "description": null, - "index": 0 - }, - "gov.usda.wic.meets_wic_categorical_eligibility": { - "label": "gov.usda.wic.meets_wic_categorical_eligibility", - "description": null, - "index": 0 - }, - "gov.usda.wic.would_claim_wic": { - "label": "gov.usda.wic.would_claim_wic", - "description": null, - "index": 0 - }, - "gov.usda.wic.wic_category_str": { - "label": "gov.usda.wic.wic_category_str", - "description": null, - "index": 0 - }, - "gov.usda.school_meals.school_meal_daily_subsidy": { - "label": "gov.usda.school_meals.school_meal_daily_subsidy", - "description": null, - "index": 0 - }, - "gov.usda.school_meals.free_school_meals": { - "label": "gov.usda.school_meals.free_school_meals", - "description": null, - "index": 0 - }, - "gov.usda.school_meals.meets_school_meal_categorical_eligibility": { - "label": "gov.usda.school_meals.meets_school_meal_categorical_eligibility", - "description": null, - "index": 0 - }, - "gov.usda.school_meals.free_school_meals_reported": { - "label": "gov.usda.school_meals.free_school_meals_reported", - "description": null, - "index": 0 - }, - "gov.usda.school_meals.school_meal_tier": { - "label": "gov.usda.school_meals.school_meal_tier", - "description": null, - "index": 0 - }, - "gov.usda.school_meals.school_meal_net_subsidy": { - "label": "gov.usda.school_meals.school_meal_net_subsidy", - "description": null, - "index": 0 - }, - "gov.usda.school_meals.school_meal_fpg_ratio": { - "label": "gov.usda.school_meals.school_meal_fpg_ratio", - "description": null, - "index": 0 - }, - "gov.usda.school_meals.reduced_price_school_meals": { - "label": "gov.usda.school_meals.reduced_price_school_meals", - "description": null, - "index": 0 - }, - "gov.usda.school_meals.school_meal_paid_daily_subsidy": { - "label": "gov.usda.school_meals.school_meal_paid_daily_subsidy", - "description": null, - "index": 0 - }, - "gov.usda.school_meals.school_meal_countable_income": { - "label": "gov.usda.school_meals.school_meal_countable_income", - "description": null, - "index": 0 - }, - "gov.usda.snap.snap_reported": { - "label": "gov.usda.snap.snap_reported", - "description": null, - "index": 0 - }, - "gov.usda.snap.snap_utility_region_str": { - "label": "gov.usda.snap.snap_utility_region_str", - "description": null, - "index": 0 - }, - "gov.usda.snap.snap": { - "label": "gov.usda.snap.snap", - "description": null, - "index": 0 - }, - "gov.usda.snap.snap_normal_allotment": { - "label": "gov.usda.snap.snap_normal_allotment", - "description": null, - "index": 0 - }, - "gov.usda.snap.snap_utility_region": { - "label": "gov.usda.snap.snap_utility_region", - "description": null, - "index": 0 - }, - "gov.usda.snap.snap_take_up_seed": { - "label": "gov.usda.snap.snap_take_up_seed", - "description": null, - "index": 0 - }, - "gov.usda.snap.snap_expected_contribution": { - "label": "gov.usda.snap.snap_expected_contribution", - "description": null, - "index": 0 - }, - "gov.usda.snap.snap_min_allotment": { - "label": "gov.usda.snap.snap_min_allotment", - "description": null, - "index": 0 - }, - "gov.usda.snap.snap_region_str": { - "label": "gov.usda.snap.snap_region_str", - "description": null, - "index": 0 - }, - "gov.usda.snap.snap_max_allotment": { - "label": "gov.usda.snap.snap_max_allotment", - "description": null, - "index": 0 - }, - "gov.usda.snap.snap_unit": { - "label": "gov.usda.snap.snap_unit", - "description": null, - "index": 0 - }, - "gov.usda.snap.snap_region": { - "label": "gov.usda.snap.snap_region", - "description": null, - "index": 0 - }, - "gov.usda.snap.snap_emergency_allotment": { - "label": "gov.usda.snap.snap_emergency_allotment", - "description": null, - "index": 0 - }, - "gov.usda.snap.takes_up_snap_if_eligible": { - "label": "gov.usda.snap.takes_up_snap_if_eligible", - "description": null, - "index": 0 - }, - "gov.usda.snap.income.snap_fpg": { - "label": "gov.usda.snap.income.snap_fpg", - "description": null, - "index": 0 - }, - "gov.usda.snap.income.snap_excluded_child_earner": { - "label": "gov.usda.snap.income.snap_excluded_child_earner", - "description": null, - "index": 0 - }, - "gov.usda.snap.income.snap_countable_earner": { - "label": "gov.usda.snap.income.snap_countable_earner", - "description": null, - "index": 0 - }, - "gov.usda.snap.income.snap_net_income": { - "label": "gov.usda.snap.income.snap_net_income", - "description": null, - "index": 0 - }, - "gov.usda.snap.income.snap_unearned_income": { - "label": "gov.usda.snap.income.snap_unearned_income", - "description": null, - "index": 0 - }, - "gov.usda.snap.income.snap_net_income_fpg_ratio": { - "label": "gov.usda.snap.income.snap_net_income_fpg_ratio", - "description": null, - "index": 0 - }, - "gov.usda.snap.income.snap_earned_income": { - "label": "gov.usda.snap.income.snap_earned_income", - "description": null, - "index": 0 - }, - "gov.usda.snap.income.snap_earned_income_person": { - "label": "gov.usda.snap.income.snap_earned_income_person", - "description": null, - "index": 0 - }, - "gov.usda.snap.income.gross.snap_gross_income": { - "label": "gov.usda.snap.income.gross.snap_gross_income", - "description": null, - "index": 0 - }, - "gov.usda.snap.income.gross.snap_gross_income_fpg_ratio": { - "label": "gov.usda.snap.income.gross.snap_gross_income_fpg_ratio", - "description": null, - "index": 0 - }, - "gov.usda.snap.income.gross.snap_child_support_gross_income_deduction": { - "label": "gov.usda.snap.income.gross.snap_child_support_gross_income_deduction", - "description": null, - "index": 0 - }, - "gov.usda.snap.income.deductions.snap_earned_income_deduction": { - "label": "gov.usda.snap.income.deductions.snap_earned_income_deduction", - "description": null, - "index": 0 - }, - "gov.usda.snap.income.deductions.snap_dependent_care_deduction": { - "label": "gov.usda.snap.income.deductions.snap_dependent_care_deduction", - "description": null, - "index": 0 - }, - "gov.usda.snap.income.deductions.snap_child_support_deduction": { - "label": "gov.usda.snap.income.deductions.snap_child_support_deduction", - "description": null, - "index": 0 - }, - "gov.usda.snap.income.deductions.snap_excess_medical_expense_deduction": { - "label": "gov.usda.snap.income.deductions.snap_excess_medical_expense_deduction", - "description": null, - "index": 0 - }, - "gov.usda.snap.income.deductions.snap_standard_deduction": { - "label": "gov.usda.snap.income.deductions.snap_standard_deduction", - "description": null, - "index": 0 - }, - "gov.usda.snap.income.deductions.snap_deductions": { - "label": "gov.usda.snap.income.deductions.snap_deductions", - "description": null, - "index": 0 - }, - "gov.usda.snap.income.deductions.self_employment.snap_self_employment_income_after_expense_deduction": { - "label": "gov.usda.snap.income.deductions.self_employment.snap_self_employment_income_after_expense_deduction", - "description": null, - "index": 0 - }, - "gov.usda.snap.income.deductions.self_employment.snap_self_employment_income_expense": { - "label": "gov.usda.snap.income.deductions.self_employment.snap_self_employment_income_expense", - "description": null, - "index": 0 - }, - "gov.usda.snap.income.deductions.self_employment.snap_self_employment_expense_deduction": { - "label": "gov.usda.snap.income.deductions.self_employment.snap_self_employment_expense_deduction", - "description": null, - "index": 0 - }, - "gov.usda.snap.income.deductions.shelter.snap_utility_allowance_type": { - "label": "gov.usda.snap.income.deductions.shelter.snap_utility_allowance_type", - "description": null, - "index": 0 - }, - "gov.usda.snap.income.deductions.shelter.snap_excess_shelter_expense_deduction": { - "label": "gov.usda.snap.income.deductions.shelter.snap_excess_shelter_expense_deduction", - "description": null, - "index": 0 - }, - "gov.usda.snap.income.deductions.shelter.snap_standard_utility_allowance": { - "label": "gov.usda.snap.income.deductions.shelter.snap_standard_utility_allowance", - "description": null, - "index": 0 - }, - "gov.usda.snap.income.deductions.shelter.snap_limited_utility_allowance_by_household_size": { - "label": "gov.usda.snap.income.deductions.shelter.snap_limited_utility_allowance_by_household_size", - "description": null, - "index": 0 - }, - "gov.usda.snap.income.deductions.shelter.snap_individual_utility_allowance": { - "label": "gov.usda.snap.income.deductions.shelter.snap_individual_utility_allowance", - "description": null, - "index": 0 - }, - "gov.usda.snap.income.deductions.shelter.snap_state_using_standard_utility_allowance": { - "label": "gov.usda.snap.income.deductions.shelter.snap_state_using_standard_utility_allowance", - "description": null, - "index": 0 - }, - "gov.usda.snap.income.deductions.shelter.snap_standard_utility_allowance_by_household_size": { - "label": "gov.usda.snap.income.deductions.shelter.snap_standard_utility_allowance_by_household_size", - "description": null, - "index": 0 - }, - "gov.usda.snap.income.deductions.shelter.snap_limited_utility_allowance": { - "label": "gov.usda.snap.income.deductions.shelter.snap_limited_utility_allowance", - "description": null, - "index": 0 - }, - "gov.usda.snap.income.deductions.shelter.snap_utility_allowance": { - "label": "gov.usda.snap.income.deductions.shelter.snap_utility_allowance", - "description": null, - "index": 0 - }, - "gov.usda.snap.income.deductions.shelter.snap_net_income_pre_shelter": { - "label": "gov.usda.snap.income.deductions.shelter.snap_net_income_pre_shelter", - "description": null, - "index": 0 - }, - "gov.usda.snap.eligibility.meets_snap_gross_income_test": { - "label": "gov.usda.snap.eligibility.meets_snap_gross_income_test", - "description": null, - "index": 0 - }, - "gov.usda.snap.eligibility.meets_snap_net_income_test": { - "label": "gov.usda.snap.eligibility.meets_snap_net_income_test", - "description": null, - "index": 0 - }, - "gov.usda.snap.eligibility.meets_snap_asset_test": { - "label": "gov.usda.snap.eligibility.meets_snap_asset_test", - "description": null, - "index": 0 - }, - "gov.usda.snap.eligibility.snap_assets": { - "label": "gov.usda.snap.eligibility.snap_assets", - "description": null, - "index": 0 - }, - "gov.usda.snap.eligibility.is_snap_eligible": { - "label": "gov.usda.snap.eligibility.is_snap_eligible", - "description": null, - "index": 0 - }, - "gov.usda.snap.eligibility.meets_snap_categorical_eligibility": { - "label": "gov.usda.snap.eligibility.meets_snap_categorical_eligibility", - "description": null, - "index": 0 - }, - "gov.usda.snap.eligibility.work_requirements.meets_snap_general_work_requirements": { - "label": "gov.usda.snap.eligibility.work_requirements.meets_snap_general_work_requirements", - "description": null, - "index": 0 - }, - "gov.usda.snap.eligibility.work_requirements.meets_snap_abawd_work_requirements": { - "label": "gov.usda.snap.eligibility.work_requirements.meets_snap_abawd_work_requirements", - "description": null, - "index": 0 - }, - "gov.usda.snap.eligibility.work_requirements.meets_snap_work_requirements": { - "label": "gov.usda.snap.eligibility.work_requirements.meets_snap_work_requirements", - "description": null, - "index": 0 - }, - "gov.usda.snap.eligibility.student.is_snap_ineligible_student": { - "label": "gov.usda.snap.eligibility.student.is_snap_ineligible_student", - "description": null, - "index": 0 - }, - "gov.states.state_filing_status_if_married_filing_separately_on_same_return": { - "label": "gov.states.state_filing_status_if_married_filing_separately_on_same_return", - "description": null, - "index": 0 - }, - "gov.states.unemployment_compensation": { - "label": "gov.states.unemployment_compensation", - "description": null, - "index": 0 - }, - "gov.states.workers_compensation": { - "label": "gov.states.workers_compensation", - "description": null, - "index": 0 - }, - "gov.states.general_assistance": { - "label": "gov.states.general_assistance", - "description": null, - "index": 0 - }, - "gov.states.nd.tax.income.nd_income_tax_before_refundable_credits": { - "label": "gov.states.nd.tax.income.nd_income_tax_before_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.nd.tax.income.nd_income_tax": { - "label": "gov.states.nd.tax.income.nd_income_tax", - "description": null, - "index": 0 - }, - "gov.states.nd.tax.income.nd_withheld_income_tax": { - "label": "gov.states.nd.tax.income.nd_withheld_income_tax", - "description": null, - "index": 0 - }, - "gov.states.nd.tax.income.nd_taxable_income": { - "label": "gov.states.nd.tax.income.nd_taxable_income", - "description": null, - "index": 0 - }, - "gov.states.nd.tax.income.nd_income_tax_before_credits": { - "label": "gov.states.nd.tax.income.nd_income_tax_before_credits", - "description": null, - "index": 0 - }, - "gov.states.nd.tax.income.nd_nonrefundable_credits": { - "label": "gov.states.nd.tax.income.nd_nonrefundable_credits", - "description": null, - "index": 0 - }, - "gov.states.nd.tax.income.nd_additions": { - "label": "gov.states.nd.tax.income.nd_additions", - "description": null, - "index": 0 - }, - "gov.states.nd.tax.income.nd_refundable_credits": { - "label": "gov.states.nd.tax.income.nd_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.nd.tax.income.credits.nd_mpc": { - "label": "gov.states.nd.tax.income.credits.nd_mpc", - "description": null, - "index": 0 - }, - "gov.states.nd.tax.income.credits.nd_rtrc": { - "label": "gov.states.nd.tax.income.credits.nd_rtrc", - "description": null, - "index": 0 - }, - "gov.states.nd.tax.income.subtractions.nd_subtractions": { - "label": "gov.states.nd.tax.income.subtractions.nd_subtractions", - "description": null, - "index": 0 - }, - "gov.states.nd.tax.income.subtractions.nd_qdiv_subtraction": { - "label": "gov.states.nd.tax.income.subtractions.nd_qdiv_subtraction", - "description": null, - "index": 0 - }, - "gov.states.nd.tax.income.subtractions.nd_ltcg_subtraction": { - "label": "gov.states.nd.tax.income.subtractions.nd_ltcg_subtraction", - "description": null, - "index": 0 - }, - "gov.states.co.co_child_care_subsidies": { - "label": "gov.states.co.co_child_care_subsidies", - "description": null, - "index": 0 - }, - "gov.states.co.ssa.state_suplement.co_state_supplement": { - "label": "gov.states.co.ssa.state_suplement.co_state_supplement", - "description": null, - "index": 0 - }, - "gov.states.co.ssa.state_suplement.co_state_supplement_eligible": { - "label": "gov.states.co.ssa.state_suplement.co_state_supplement_eligible", - "description": null, - "index": 0 - }, - "gov.states.co.ssa.oap.co_oap_eligible": { - "label": "gov.states.co.ssa.oap.co_oap_eligible", - "description": null, - "index": 0 - }, - "gov.states.co.ssa.oap.co_oap": { - "label": "gov.states.co.ssa.oap.co_oap", - "description": null, - "index": 0 - }, - "gov.states.co.cdhs.tanf.co_tanf_income_eligible": { - "label": "gov.states.co.cdhs.tanf.co_tanf_income_eligible", - "description": null, - "index": 0 - }, - "gov.states.co.cdhs.tanf.co_tanf": { - "label": "gov.states.co.cdhs.tanf.co_tanf", - "description": null, - "index": 0 - }, - "gov.states.co.cdhs.tanf.co_tanf_eligible": { - "label": "gov.states.co.cdhs.tanf.co_tanf_eligible", - "description": null, - "index": 0 - }, - "gov.states.co.cdhs.tanf.co_tanf_need_standard": { - "label": "gov.states.co.cdhs.tanf.co_tanf_need_standard", - "description": null, - "index": 0 - }, - "gov.states.co.cdhs.tanf.co_tanf_count_children": { - "label": "gov.states.co.cdhs.tanf.co_tanf_count_children", - "description": null, - "index": 0 - }, - "gov.states.co.cdhs.tanf.co_tanf_grant_standard": { - "label": "gov.states.co.cdhs.tanf.co_tanf_grant_standard", - "description": null, - "index": 0 - }, - "gov.states.co.cdhs.tanf.income.co_tanf_countable_gross_unearned_income": { - "label": "gov.states.co.cdhs.tanf.income.co_tanf_countable_gross_unearned_income", - "description": null, - "index": 0 - }, - "gov.states.co.cdhs.tanf.income.co_tanf_countable_earned_income_need": { - "label": "gov.states.co.cdhs.tanf.income.co_tanf_countable_earned_income_need", - "description": null, - "index": 0 - }, - "gov.states.co.cdhs.tanf.income.co_tanf_countable_earned_income_grant_standard": { - "label": "gov.states.co.cdhs.tanf.income.co_tanf_countable_earned_income_grant_standard", - "description": null, - "index": 0 - }, - "gov.states.co.cdhs.tanf.income.co_tanf_countable_gross_earned_income": { - "label": "gov.states.co.cdhs.tanf.income.co_tanf_countable_gross_earned_income", - "description": null, - "index": 0 - }, - "gov.states.co.hcpf.chp.co_chp_eligible": { - "label": "gov.states.co.hcpf.chp.co_chp_eligible", - "description": null, - "index": 0 - }, - "gov.states.co.hcpf.chp.co_chp": { - "label": "gov.states.co.hcpf.chp.co_chp", - "description": null, - "index": 0 - }, - "gov.states.co.hcpf.chp.co_chp_out_of_pocket_maximum": { - "label": "gov.states.co.hcpf.chp.co_chp_out_of_pocket_maximum", - "description": null, - "index": 0 - }, - "gov.states.co.tax.income.co_income_tax_before_refundable_credits": { - "label": "gov.states.co.tax.income.co_income_tax_before_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.co.tax.income.co_income_tax_before_non_refundable_credits": { - "label": "gov.states.co.tax.income.co_income_tax_before_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.co.tax.income.co_refundable_credits": { - "label": "gov.states.co.tax.income.co_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.co.tax.income.co_non_refundable_credits": { - "label": "gov.states.co.tax.income.co_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.co.tax.income.co_taxable_income": { - "label": "gov.states.co.tax.income.co_taxable_income", - "description": null, - "index": 0 - }, - "gov.states.co.tax.income.co_income_tax": { - "label": "gov.states.co.tax.income.co_income_tax", - "description": null, - "index": 0 - }, - "gov.states.co.tax.income.co_withheld_income_tax": { - "label": "gov.states.co.tax.income.co_withheld_income_tax", - "description": null, - "index": 0 - }, - "gov.states.co.tax.income.credits.eitc.co_eitc": { - "label": "gov.states.co.tax.income.credits.eitc.co_eitc", - "description": null, - "index": 0 - }, - "gov.states.co.tax.income.credits.sales_tax_refund.co_sales_tax_refund_eligible": { - "label": "gov.states.co.tax.income.credits.sales_tax_refund.co_sales_tax_refund_eligible", - "description": null, - "index": 0 - }, - "gov.states.co.tax.income.credits.sales_tax_refund.co_sales_tax_refund": { - "label": "gov.states.co.tax.income.credits.sales_tax_refund.co_sales_tax_refund", - "description": null, - "index": 0 - }, - "gov.states.co.tax.income.credits.sales_tax_refund.co_modified_agi": { - "label": "gov.states.co.tax.income.credits.sales_tax_refund.co_modified_agi", - "description": null, - "index": 0 - }, - "gov.states.co.tax.income.credits.ctc.co_ctc": { - "label": "gov.states.co.tax.income.credits.ctc.co_ctc", - "description": null, - "index": 0 - }, - "gov.states.co.tax.income.credits.ctc.co_ctc_eligible_child": { - "label": "gov.states.co.tax.income.credits.ctc.co_ctc_eligible_child", - "description": null, - "index": 0 - }, - "gov.states.co.tax.income.credits.ctc.co_ctc_eligible_children_count": { - "label": "gov.states.co.tax.income.credits.ctc.co_ctc_eligible_children_count", - "description": null, - "index": 0 - }, - "gov.states.co.tax.income.credits.ctc.federal_ctc.co_refundable_ctc": { - "label": "gov.states.co.tax.income.credits.ctc.federal_ctc.co_refundable_ctc", - "description": null, - "index": 0 - }, - "gov.states.co.tax.income.credits.ctc.federal_ctc.co_non_refundable_ctc": { - "label": "gov.states.co.tax.income.credits.ctc.federal_ctc.co_non_refundable_ctc", - "description": null, - "index": 0 - }, - "gov.states.co.tax.income.credits.ctc.federal_ctc.co_federal_ctc_child_individual_maximum": { - "label": "gov.states.co.tax.income.credits.ctc.federal_ctc.co_federal_ctc_child_individual_maximum", - "description": null, - "index": 0 - }, - "gov.states.co.tax.income.credits.ctc.federal_ctc.co_federal_ctc_maximum": { - "label": "gov.states.co.tax.income.credits.ctc.federal_ctc.co_federal_ctc_maximum", - "description": null, - "index": 0 - }, - "gov.states.co.tax.income.credits.ctc.federal_ctc.co_federal_ctc": { - "label": "gov.states.co.tax.income.credits.ctc.federal_ctc.co_federal_ctc", - "description": null, - "index": 0 - }, - "gov.states.co.tax.income.credits.cdcc.co_low_income_cdcc_eligible": { - "label": "gov.states.co.tax.income.credits.cdcc.co_low_income_cdcc_eligible", - "description": null, - "index": 0 - }, - "gov.states.co.tax.income.credits.cdcc.co_cdcc": { - "label": "gov.states.co.tax.income.credits.cdcc.co_cdcc", - "description": null, - "index": 0 - }, - "gov.states.co.tax.income.credits.cdcc.co_low_income_cdcc": { - "label": "gov.states.co.tax.income.credits.cdcc.co_low_income_cdcc", - "description": null, - "index": 0 - }, - "gov.states.co.tax.income.credits.family_affordability.co_family_affordability_credit": { - "label": "gov.states.co.tax.income.credits.family_affordability.co_family_affordability_credit", - "description": null, - "index": 0 - }, - "gov.states.co.tax.income.credits.income_qualified_senior_housing.co_income_qualified_senior_housing_credit": { - "label": "gov.states.co.tax.income.credits.income_qualified_senior_housing.co_income_qualified_senior_housing_credit", - "description": null, - "index": 0 - }, - "gov.states.co.tax.income.credits.income_qualified_senior_housing.co_income_qualified_senior_housing_eligible": { - "label": "gov.states.co.tax.income.credits.income_qualified_senior_housing.co_income_qualified_senior_housing_eligible", - "description": null, - "index": 0 - }, - "gov.states.co.tax.income.exemptions.co_property_tax_exemption": { - "label": "gov.states.co.tax.income.exemptions.co_property_tax_exemption", - "description": null, - "index": 0 - }, - "gov.states.co.tax.income.subtractions.co_subtractions": { - "label": "gov.states.co.tax.income.subtractions.co_subtractions", - "description": null, - "index": 0 - }, - "gov.states.co.tax.income.subtractions.military_retirement.co_military_retirement_subtraction": { - "label": "gov.states.co.tax.income.subtractions.military_retirement.co_military_retirement_subtraction", - "description": null, - "index": 0 - }, - "gov.states.co.tax.income.subtractions.charitable_contribution.co_charitable_contribution_subtraction": { - "label": "gov.states.co.tax.income.subtractions.charitable_contribution.co_charitable_contribution_subtraction", - "description": null, - "index": 0 - }, - "gov.states.co.tax.income.subtractions.charitable_contribution.co_charitable_contribution_subtraction_eligible": { - "label": "gov.states.co.tax.income.subtractions.charitable_contribution.co_charitable_contribution_subtraction_eligible", - "description": null, - "index": 0 - }, - "gov.states.co.tax.income.subtractions.collegeinvest_contribution.co_collegeinvest_subtraction": { - "label": "gov.states.co.tax.income.subtractions.collegeinvest_contribution.co_collegeinvest_subtraction", - "description": null, - "index": 0 - }, - "gov.states.co.tax.income.subtractions.able_contribution.co_able_contribution_subtraction": { - "label": "gov.states.co.tax.income.subtractions.able_contribution.co_able_contribution_subtraction", - "description": null, - "index": 0 - }, - "gov.states.co.tax.income.subtractions.pension.co_pension_subtraction": { - "label": "gov.states.co.tax.income.subtractions.pension.co_pension_subtraction", - "description": null, - "index": 0 - }, - "gov.states.co.tax.income.subtractions.pension.co_social_security_subtraction_indv": { - "label": "gov.states.co.tax.income.subtractions.pension.co_social_security_subtraction_indv", - "description": null, - "index": 0 - }, - "gov.states.co.tax.income.subtractions.pension.co_pension_subtraction_indv": { - "label": "gov.states.co.tax.income.subtractions.pension.co_pension_subtraction_indv", - "description": null, - "index": 0 - }, - "gov.states.co.tax.income.subtractions.pension.co_pension_subtraction_indv_eligible.": { - "label": "gov.states.co.tax.income.subtractions.pension.co_pension_subtraction_indv_eligible.", - "description": null, - "index": 0 - }, - "gov.states.co.tax.income.subtractions.pension.co_social_security_subtraction_indv_eligible": { - "label": "gov.states.co.tax.income.subtractions.pension.co_social_security_subtraction_indv_eligible", - "description": null, - "index": 0 - }, - "gov.states.co.tax.income.subtractions.pension.co_pension_subtraction_income": { - "label": "gov.states.co.tax.income.subtractions.pension.co_pension_subtraction_income", - "description": null, - "index": 0 - }, - "gov.states.co.tax.income.additions.co_additions": { - "label": "gov.states.co.tax.income.additions.co_additions", - "description": null, - "index": 0 - }, - "gov.states.co.tax.income.additions.co_state_addback": { - "label": "gov.states.co.tax.income.additions.co_state_addback", - "description": null, - "index": 0 - }, - "gov.states.co.tax.income.additions.qualified_business_income_deduction.co_qualified_business_income_deduction_addback_required": { - "label": "gov.states.co.tax.income.additions.qualified_business_income_deduction.co_qualified_business_income_deduction_addback_required", - "description": null, - "index": 0 - }, - "gov.states.co.tax.income.additions.qualified_business_income_deduction.co_qualified_business_income_deduction_addback": { - "label": "gov.states.co.tax.income.additions.qualified_business_income_deduction.co_qualified_business_income_deduction_addback", - "description": null, - "index": 0 - }, - "gov.states.co.tax.income.additions.federal_deductions.co_federal_deduction_addback": { - "label": "gov.states.co.tax.income.additions.federal_deductions.co_federal_deduction_addback", - "description": null, - "index": 0 - }, - "gov.states.co.tax.income.additions.federal_deductions.co_federal_deduction_addback_required": { - "label": "gov.states.co.tax.income.additions.federal_deductions.co_federal_deduction_addback_required", - "description": null, - "index": 0 - }, - "gov.states.co.ccap.co_ccap_subsidy": { - "label": "gov.states.co.ccap.co_ccap_subsidy", - "description": null, - "index": 0 - }, - "gov.states.co.ccap.co_ccap_countable_income": { - "label": "gov.states.co.ccap.co_ccap_countable_income", - "description": null, - "index": 0 - }, - "gov.states.co.ccap.co_ccap_eligible_children": { - "label": "gov.states.co.ccap.co_ccap_eligible_children", - "description": null, - "index": 0 - }, - "gov.states.co.ccap.co_ccap_eligible": { - "label": "gov.states.co.ccap.co_ccap_eligible", - "description": null, - "index": 0 - }, - "gov.states.co.ccap.co_quality_rating_of_child_care_facility": { - "label": "gov.states.co.ccap.co_quality_rating_of_child_care_facility", - "description": null, - "index": 0 - }, - "gov.states.co.ccap.co_ccap_parent_fee": { - "label": "gov.states.co.ccap.co_ccap_parent_fee", - "description": null, - "index": 0 - }, - "gov.states.co.ccap.co_ccap_child_eligible": { - "label": "gov.states.co.ccap.co_ccap_child_eligible", - "description": null, - "index": 0 - }, - "gov.states.co.ccap.co_ccap_add_on_parent_fee": { - "label": "gov.states.co.ccap.co_ccap_add_on_parent_fee", - "description": null, - "index": 0 - }, - "gov.states.co.ccap.co_ccap_base_parent_fee": { - "label": "gov.states.co.ccap.co_ccap_base_parent_fee", - "description": null, - "index": 0 - }, - "gov.states.co.ccap.co_ccap_smi": { - "label": "gov.states.co.ccap.co_ccap_smi", - "description": null, - "index": 0 - }, - "gov.states.co.ccap.re_determination.co_ccap_re_determination_income_eligible": { - "label": "gov.states.co.ccap.re_determination.co_ccap_re_determination_income_eligible", - "description": null, - "index": 0 - }, - "gov.states.co.ccap.re_determination.co_ccap_re_determination_eligible": { - "label": "gov.states.co.ccap.re_determination.co_ccap_re_determination_eligible", - "description": null, - "index": 0 - }, - "gov.states.co.ccap.re_determination.co_ccap_is_in_re_determination_process": { - "label": "gov.states.co.ccap.re_determination.co_ccap_is_in_re_determination_process", - "description": null, - "index": 0 - }, - "gov.states.co.ccap.entry.co_ccap_entry_eligible": { - "label": "gov.states.co.ccap.entry.co_ccap_entry_eligible", - "description": null, - "index": 0 - }, - "gov.states.co.ccap.entry.co_ccap_smi_eligible": { - "label": "gov.states.co.ccap.entry.co_ccap_smi_eligible", - "description": null, - "index": 0 - }, - "gov.states.co.ccap.entry.co_ccap_entry_income_eligible": { - "label": "gov.states.co.ccap.entry.co_ccap_entry_income_eligible", - "description": null, - "index": 0 - }, - "gov.states.co.ccap.entry.co_ccap_is_in_entry_process": { - "label": "gov.states.co.ccap.entry.co_ccap_is_in_entry_process", - "description": null, - "index": 0 - }, - "gov.states.co.ccap.entry.co_ccap_fpg_eligible": { - "label": "gov.states.co.ccap.entry.co_ccap_fpg_eligible", - "description": null, - "index": 0 - }, - "gov.states.de.tax.income.de_taxable_income_indv": { - "label": "gov.states.de.tax.income.de_taxable_income_indv", - "description": null, - "index": 0 - }, - "gov.states.de.tax.income.de_income_tax": { - "label": "gov.states.de.tax.income.de_income_tax", - "description": null, - "index": 0 - }, - "gov.states.de.tax.income.de_withheld_income_tax": { - "label": "gov.states.de.tax.income.de_withheld_income_tax", - "description": null, - "index": 0 - }, - "gov.states.de.tax.income.de_pre_exclusions_agi": { - "label": "gov.states.de.tax.income.de_pre_exclusions_agi", - "description": null, - "index": 0 - }, - "gov.states.de.tax.income.de_non_refundable_credits": { - "label": "gov.states.de.tax.income.de_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.de.tax.income.de_taxable_income_joint": { - "label": "gov.states.de.tax.income.de_taxable_income_joint", - "description": null, - "index": 0 - }, - "gov.states.de.tax.income.de_income_tax_before_refundable_credits": { - "label": "gov.states.de.tax.income.de_income_tax_before_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.de.tax.income.de_files_separately": { - "label": "gov.states.de.tax.income.de_files_separately", - "description": null, - "index": 0 - }, - "gov.states.de.tax.income.de_income_tax_before_non_refundable_credits_unit": { - "label": "gov.states.de.tax.income.de_income_tax_before_non_refundable_credits_unit", - "description": null, - "index": 0 - }, - "gov.states.de.tax.income.de_agi_joint": { - "label": "gov.states.de.tax.income.de_agi_joint", - "description": null, - "index": 0 - }, - "gov.states.de.tax.income.de_income_tax_before_non_refundable_credits_joint": { - "label": "gov.states.de.tax.income.de_income_tax_before_non_refundable_credits_joint", - "description": null, - "index": 0 - }, - "gov.states.de.tax.income.de_income_tax_before_non_refundable_credits_indv": { - "label": "gov.states.de.tax.income.de_income_tax_before_non_refundable_credits_indv", - "description": null, - "index": 0 - }, - "gov.states.de.tax.income.de_refundable_credits": { - "label": "gov.states.de.tax.income.de_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.de.tax.income.de_agi_indiv": { - "label": "gov.states.de.tax.income.de_agi_indiv", - "description": null, - "index": 0 - }, - "gov.states.de.tax.income.credits.eitc.de_eitc": { - "label": "gov.states.de.tax.income.credits.eitc.de_eitc", - "description": null, - "index": 0 - }, - "gov.states.de.tax.income.credits.eitc.de_refundable_eitc": { - "label": "gov.states.de.tax.income.credits.eitc.de_refundable_eitc", - "description": null, - "index": 0 - }, - "gov.states.de.tax.income.credits.eitc.de_refundable_eitc_if_claimed": { - "label": "gov.states.de.tax.income.credits.eitc.de_refundable_eitc_if_claimed", - "description": null, - "index": 0 - }, - "gov.states.de.tax.income.credits.eitc.de_non_refundable_eitc": { - "label": "gov.states.de.tax.income.credits.eitc.de_non_refundable_eitc", - "description": null, - "index": 0 - }, - "gov.states.de.tax.income.credits.eitc.de_non_refundable_eitc_if_claimed": { - "label": "gov.states.de.tax.income.credits.eitc.de_non_refundable_eitc_if_claimed", - "description": null, - "index": 0 - }, - "gov.states.de.tax.income.credits.eitc.refundability_calculation.de_claims_refundable_eitc": { - "label": "gov.states.de.tax.income.credits.eitc.refundability_calculation.de_claims_refundable_eitc", - "description": null, - "index": 0 - }, - "gov.states.de.tax.income.credits.eitc.refundability_calculation.de_income_tax_if_claiming_refundable_eitc": { - "label": "gov.states.de.tax.income.credits.eitc.refundability_calculation.de_income_tax_if_claiming_refundable_eitc", - "description": null, - "index": 0 - }, - "gov.states.de.tax.income.credits.eitc.refundability_calculation.de_income_tax_if_claiming_non_refundable_eitc": { - "label": "gov.states.de.tax.income.credits.eitc.refundability_calculation.de_income_tax_if_claiming_non_refundable_eitc", - "description": null, - "index": 0 - }, - "gov.states.de.tax.income.credits.relief_rebate.de_relief_rebate": { - "label": "gov.states.de.tax.income.credits.relief_rebate.de_relief_rebate", - "description": null, - "index": 0 - }, - "gov.states.de.tax.income.credits.cdcc.de_cdcc": { - "label": "gov.states.de.tax.income.credits.cdcc.de_cdcc", - "description": null, - "index": 0 - }, - "gov.states.de.tax.income.credits.personal.de_personal_credit": { - "label": "gov.states.de.tax.income.credits.personal.de_personal_credit", - "description": null, - "index": 0 - }, - "gov.states.de.tax.income.credits.personal.de_aged_personal_credit": { - "label": "gov.states.de.tax.income.credits.personal.de_aged_personal_credit", - "description": null, - "index": 0 - }, - "gov.states.de.tax.income.subtractions.de_subtractions": { - "label": "gov.states.de.tax.income.subtractions.de_subtractions", - "description": null, - "index": 0 - }, - "gov.states.de.tax.income.subtractions.pension_exclusion.de_pension_exclusion_income": { - "label": "gov.states.de.tax.income.subtractions.pension_exclusion.de_pension_exclusion_income", - "description": null, - "index": 0 - }, - "gov.states.de.tax.income.subtractions.pension_exclusion.de_pension_exclusion": { - "label": "gov.states.de.tax.income.subtractions.pension_exclusion.de_pension_exclusion", - "description": null, - "index": 0 - }, - "gov.states.de.tax.income.subtractions.exclusions.de_elderly_or_disabled_income_exclusion_joint": { - "label": "gov.states.de.tax.income.subtractions.exclusions.de_elderly_or_disabled_income_exclusion_joint", - "description": null, - "index": 0 - }, - "gov.states.de.tax.income.subtractions.exclusions.de_elderly_or_disabled_income_exclusion_eligible_person": { - "label": "gov.states.de.tax.income.subtractions.exclusions.de_elderly_or_disabled_income_exclusion_eligible_person", - "description": null, - "index": 0 - }, - "gov.states.de.tax.income.subtractions.exclusions.de_elderly_or_disabled_income_exclusion_indiv": { - "label": "gov.states.de.tax.income.subtractions.exclusions.de_elderly_or_disabled_income_exclusion_indiv", - "description": null, - "index": 0 - }, - "gov.states.de.tax.income.additions.de_additions": { - "label": "gov.states.de.tax.income.additions.de_additions", - "description": null, - "index": 0 - }, - "gov.states.de.tax.income.deductions.de_tax_unit_itemizes": { - "label": "gov.states.de.tax.income.deductions.de_tax_unit_itemizes", - "description": null, - "index": 0 - }, - "gov.states.de.tax.income.deductions.de_deduction_joint": { - "label": "gov.states.de.tax.income.deductions.de_deduction_joint", - "description": null, - "index": 0 - }, - "gov.states.de.tax.income.deductions.de_deduction_indv": { - "label": "gov.states.de.tax.income.deductions.de_deduction_indv", - "description": null, - "index": 0 - }, - "gov.states.de.tax.income.deductions.itemized.de_itemized_deductions_unit": { - "label": "gov.states.de.tax.income.deductions.itemized.de_itemized_deductions_unit", - "description": null, - "index": 0 - }, - "gov.states.de.tax.income.deductions.itemized.de_itemized_deductions_joint": { - "label": "gov.states.de.tax.income.deductions.itemized.de_itemized_deductions_joint", - "description": null, - "index": 0 - }, - "gov.states.de.tax.income.deductions.itemized.de_itemized_deductions_indv": { - "label": "gov.states.de.tax.income.deductions.itemized.de_itemized_deductions_indv", - "description": null, - "index": 0 - }, - "gov.states.de.tax.income.deductions.itemized.de_capped_real_estate_tax": { - "label": "gov.states.de.tax.income.deductions.itemized.de_capped_real_estate_tax", - "description": null, - "index": 0 - }, - "gov.states.de.tax.income.deductions.standard.de_base_standard_deduction_joint": { - "label": "gov.states.de.tax.income.deductions.standard.de_base_standard_deduction_joint", - "description": null, - "index": 0 - }, - "gov.states.de.tax.income.deductions.standard.de_standard_deduction_indv": { - "label": "gov.states.de.tax.income.deductions.standard.de_standard_deduction_indv", - "description": null, - "index": 0 - }, - "gov.states.de.tax.income.deductions.standard.de_standard_deduction_joint": { - "label": "gov.states.de.tax.income.deductions.standard.de_standard_deduction_joint", - "description": null, - "index": 0 - }, - "gov.states.de.tax.income.deductions.standard.de_base_standard_deduction_indv": { - "label": "gov.states.de.tax.income.deductions.standard.de_base_standard_deduction_indv", - "description": null, - "index": 0 - }, - "gov.states.de.tax.income.deductions.standard.de_additional_standard_deduction": { - "label": "gov.states.de.tax.income.deductions.standard.de_additional_standard_deduction", - "description": null, - "index": 0 - }, - "gov.states.ks.tax.income.ks_withheld_income_tax": { - "label": "gov.states.ks.tax.income.ks_withheld_income_tax", - "description": null, - "index": 0 - }, - "gov.states.ks.tax.income.ks_income_tax_before_refundable_credits": { - "label": "gov.states.ks.tax.income.ks_income_tax_before_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.ks.tax.income.ks_income_tax": { - "label": "gov.states.ks.tax.income.ks_income_tax", - "description": null, - "index": 0 - }, - "gov.states.ks.tax.income.ks_income_tax_before_credits": { - "label": "gov.states.ks.tax.income.ks_income_tax_before_credits", - "description": null, - "index": 0 - }, - "gov.states.ks.tax.income.ks_agi": { - "label": "gov.states.ks.tax.income.ks_agi", - "description": null, - "index": 0 - }, - "gov.states.ks.tax.income.ks_agi_subtractions": { - "label": "gov.states.ks.tax.income.ks_agi_subtractions", - "description": null, - "index": 0 - }, - "gov.states.ks.tax.income.ks_taxable_income": { - "label": "gov.states.ks.tax.income.ks_taxable_income", - "description": null, - "index": 0 - }, - "gov.states.ks.tax.income.ks_additions": { - "label": "gov.states.ks.tax.income.ks_additions", - "description": null, - "index": 0 - }, - "gov.states.ks.tax.income.credits.ks_fstc": { - "label": "gov.states.ks.tax.income.credits.ks_fstc", - "description": null, - "index": 0 - }, - "gov.states.ks.tax.income.credits.ks_nonrefundable_credits": { - "label": "gov.states.ks.tax.income.credits.ks_nonrefundable_credits", - "description": null, - "index": 0 - }, - "gov.states.ks.tax.income.credits.ks_refundable_credits": { - "label": "gov.states.ks.tax.income.credits.ks_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.ks.tax.income.credits.ks_cdcc": { - "label": "gov.states.ks.tax.income.credits.ks_cdcc", - "description": null, - "index": 0 - }, - "gov.states.ks.tax.income.credits.eitc.ks_refundable_eitc": { - "label": "gov.states.ks.tax.income.credits.eitc.ks_refundable_eitc", - "description": null, - "index": 0 - }, - "gov.states.ks.tax.income.credits.eitc.ks_nonrefundable_eitc": { - "label": "gov.states.ks.tax.income.credits.eitc.ks_nonrefundable_eitc", - "description": null, - "index": 0 - }, - "gov.states.ks.tax.income.credits.eitc.ks_total_eitc": { - "label": "gov.states.ks.tax.income.credits.eitc.ks_total_eitc", - "description": null, - "index": 0 - }, - "gov.states.ks.tax.income.exemptions.ks_count_exemptions": { - "label": "gov.states.ks.tax.income.exemptions.ks_count_exemptions", - "description": null, - "index": 0 - }, - "gov.states.ks.tax.income.exemptions.ks_disabled_veteran_exemptions_person": { - "label": "gov.states.ks.tax.income.exemptions.ks_disabled_veteran_exemptions_person", - "description": null, - "index": 0 - }, - "gov.states.ks.tax.income.exemptions.ks_exemptions": { - "label": "gov.states.ks.tax.income.exemptions.ks_exemptions", - "description": null, - "index": 0 - }, - "gov.states.ks.tax.income.deductions.ks_standard_deduction": { - "label": "gov.states.ks.tax.income.deductions.ks_standard_deduction", - "description": null, - "index": 0 - }, - "gov.states.ks.tax.income.deductions.ks_itemized_deductions": { - "label": "gov.states.ks.tax.income.deductions.ks_itemized_deductions", - "description": null, - "index": 0 - }, - "gov.states.me.tax.income.me_income_tax_before_refundable_credits": { - "label": "gov.states.me.tax.income.me_income_tax_before_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.me.tax.income.me_income_tax_before_credits": { - "label": "gov.states.me.tax.income.me_income_tax_before_credits", - "description": null, - "index": 0 - }, - "gov.states.me.tax.income.me_refundable_credits": { - "label": "gov.states.me.tax.income.me_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.me.tax.income.me_non_refundable_credits": { - "label": "gov.states.me.tax.income.me_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.me.tax.income.me_withheld_income_tax": { - "label": "gov.states.me.tax.income.me_withheld_income_tax", - "description": null, - "index": 0 - }, - "gov.states.me.tax.income.me_income_tax": { - "label": "gov.states.me.tax.income.me_income_tax", - "description": null, - "index": 0 - }, - "gov.states.me.tax.income.credits.me_eitc": { - "label": "gov.states.me.tax.income.credits.me_eitc", - "description": null, - "index": 0 - }, - "gov.states.me.tax.income.credits.fairness.me_sales_and_property_tax_fairness_credit_income": { - "label": "gov.states.me.tax.income.credits.fairness.me_sales_and_property_tax_fairness_credit_income", - "description": null, - "index": 0 - }, - "gov.states.me.tax.income.credits.fairness.sales_tax_fairness_credit.me_sales_tax_fairness_credit": { - "label": "gov.states.me.tax.income.credits.fairness.sales_tax_fairness_credit.me_sales_tax_fairness_credit", - "description": null, - "index": 0 - }, - "gov.states.me.tax.income.credits.fairness.sales_tax_fairness_credit.me_sales_tax_fairness_credit_eligible": { - "label": "gov.states.me.tax.income.credits.fairness.sales_tax_fairness_credit.me_sales_tax_fairness_credit_eligible", - "description": null, - "index": 0 - }, - "gov.states.me.tax.income.credits.fairness.property_tax_fairness_credit.me_property_tax_fairness_credit_veterans_cap": { - "label": "gov.states.me.tax.income.credits.fairness.property_tax_fairness_credit.me_property_tax_fairness_credit_veterans_cap", - "description": null, - "index": 0 - }, - "gov.states.me.tax.income.credits.fairness.property_tax_fairness_credit.me_property_tax_fairness_credit_base_cap": { - "label": "gov.states.me.tax.income.credits.fairness.property_tax_fairness_credit.me_property_tax_fairness_credit_base_cap", - "description": null, - "index": 0 - }, - "gov.states.me.tax.income.credits.fairness.property_tax_fairness_credit.me_property_tax_fairness_credit_cap": { - "label": "gov.states.me.tax.income.credits.fairness.property_tax_fairness_credit.me_property_tax_fairness_credit_cap", - "description": null, - "index": 0 - }, - "gov.states.me.tax.income.credits.fairness.property_tax_fairness_credit.me_property_tax_fairness_credit_eligible": { - "label": "gov.states.me.tax.income.credits.fairness.property_tax_fairness_credit.me_property_tax_fairness_credit_eligible", - "description": null, - "index": 0 - }, - "gov.states.me.tax.income.credits.fairness.property_tax_fairness_credit.me_property_tax_fairness_credit_benefit_base": { - "label": "gov.states.me.tax.income.credits.fairness.property_tax_fairness_credit.me_property_tax_fairness_credit_benefit_base", - "description": null, - "index": 0 - }, - "gov.states.me.tax.income.credits.fairness.property_tax_fairness_credit.me_property_tax_fairness_credit_countable_rent_property_tax": { - "label": "gov.states.me.tax.income.credits.fairness.property_tax_fairness_credit.me_property_tax_fairness_credit_countable_rent_property_tax", - "description": null, - "index": 0 - }, - "gov.states.me.tax.income.credits.fairness.property_tax_fairness_credit.me_property_tax_fairness_credit": { - "label": "gov.states.me.tax.income.credits.fairness.property_tax_fairness_credit.me_property_tax_fairness_credit", - "description": null, - "index": 0 - }, - "gov.states.me.tax.income.credits.fairness.property_tax_fairness_credit.me_property_tax_fairness_credit_countable_rent": { - "label": "gov.states.me.tax.income.credits.fairness.property_tax_fairness_credit.me_property_tax_fairness_credit_countable_rent", - "description": null, - "index": 0 - }, - "gov.states.me.tax.income.credits.child_care_credit.me_step_4_share_of_child_care_expenses": { - "label": "gov.states.me.tax.income.credits.child_care_credit.me_step_4_share_of_child_care_expenses", - "description": null, - "index": 0 - }, - "gov.states.me.tax.income.credits.child_care_credit.me_child_care_credit": { - "label": "gov.states.me.tax.income.credits.child_care_credit.me_child_care_credit", - "description": null, - "index": 0 - }, - "gov.states.me.tax.income.credits.child_care_credit.me_refundable_child_care_credit": { - "label": "gov.states.me.tax.income.credits.child_care_credit.me_refundable_child_care_credit", - "description": null, - "index": 0 - }, - "gov.states.me.tax.income.credits.child_care_credit.me_non_refundable_child_care_credit": { - "label": "gov.states.me.tax.income.credits.child_care_credit.me_non_refundable_child_care_credit", - "description": null, - "index": 0 - }, - "gov.states.me.tax.income.credits.dependent_exemption.me_dependent_exemption_credit_amount_person": { - "label": "gov.states.me.tax.income.credits.dependent_exemption.me_dependent_exemption_credit_amount_person", - "description": null, - "index": 0 - }, - "gov.states.me.tax.income.credits.dependent_exemption.me_dependent_exemption_credit": { - "label": "gov.states.me.tax.income.credits.dependent_exemption.me_dependent_exemption_credit", - "description": null, - "index": 0 - }, - "gov.states.me.tax.income.adjusted_gross_income.me_additions": { - "label": "gov.states.me.tax.income.adjusted_gross_income.me_additions", - "description": null, - "index": 0 - }, - "gov.states.me.tax.income.adjusted_gross_income.me_agi_subtractions": { - "label": "gov.states.me.tax.income.adjusted_gross_income.me_agi_subtractions", - "description": null, - "index": 0 - }, - "gov.states.me.tax.income.adjusted_gross_income.me_agi": { - "label": "gov.states.me.tax.income.adjusted_gross_income.me_agi", - "description": null, - "index": 0 - }, - "gov.states.me.tax.income.adjusted_gross_income.me_pension_income_deduction": { - "label": "gov.states.me.tax.income.adjusted_gross_income.me_pension_income_deduction", - "description": null, - "index": 0 - }, - "gov.states.me.tax.income.taxable_income.me_exemptions": { - "label": "gov.states.me.tax.income.taxable_income.me_exemptions", - "description": null, - "index": 0 - }, - "gov.states.me.tax.income.taxable_income.me_deductions": { - "label": "gov.states.me.tax.income.taxable_income.me_deductions", - "description": null, - "index": 0 - }, - "gov.states.me.tax.income.taxable_income.me_taxable_income": { - "label": "gov.states.me.tax.income.taxable_income.me_taxable_income", - "description": null, - "index": 0 - }, - "gov.states.me.tax.income.taxable_income.deductions.me_itemized_deductions_pre_phaseout": { - "label": "gov.states.me.tax.income.taxable_income.deductions.me_itemized_deductions_pre_phaseout", - "description": null, - "index": 0 - }, - "gov.states.me.tax.income.taxable_income.deductions.me_deduction_phaseout_percentage": { - "label": "gov.states.me.tax.income.taxable_income.deductions.me_deduction_phaseout_percentage", - "description": null, - "index": 0 - }, - "gov.states.me.tax.income.taxable_income.deductions.personal_exemption.me_personal_exemption_deduction": { - "label": "gov.states.me.tax.income.taxable_income.deductions.personal_exemption.me_personal_exemption_deduction", - "description": null, - "index": 0 - }, - "gov.states.or.tax.income.or_income_tax": { - "label": "gov.states.or.tax.income.or_income_tax", - "description": null, - "index": 0 - }, - "gov.states.or.tax.income.or_agi": { - "label": "gov.states.or.tax.income.or_agi", - "description": null, - "index": 0 - }, - "gov.states.or.tax.income.or_income_tax_before_refundable_credits": { - "label": "gov.states.or.tax.income.or_income_tax_before_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.or.tax.income.or_withheld_income_tax": { - "label": "gov.states.or.tax.income.or_withheld_income_tax", - "description": null, - "index": 0 - }, - "gov.states.or.tax.income.or_additions": { - "label": "gov.states.or.tax.income.or_additions", - "description": null, - "index": 0 - }, - "gov.states.or.tax.income.or_taxable_income": { - "label": "gov.states.or.tax.income.or_taxable_income", - "description": null, - "index": 0 - }, - "gov.states.or.tax.income.or_income_tax_before_credits": { - "label": "gov.states.or.tax.income.or_income_tax_before_credits", - "description": null, - "index": 0 - }, - "gov.states.or.tax.income.credits.or_non_refundable_credits": { - "label": "gov.states.or.tax.income.credits.or_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.or.tax.income.credits.or_ctc": { - "label": "gov.states.or.tax.income.credits.or_ctc", - "description": null, - "index": 0 - }, - "gov.states.or.tax.income.credits.or_eitc": { - "label": "gov.states.or.tax.income.credits.or_eitc", - "description": null, - "index": 0 - }, - "gov.states.or.tax.income.credits.or_refundable_credits": { - "label": "gov.states.or.tax.income.credits.or_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.or.tax.income.credits.retirement_credit.or_retirement_credit_eligible_person": { - "label": "gov.states.or.tax.income.credits.retirement_credit.or_retirement_credit_eligible_person", - "description": null, - "index": 0 - }, - "gov.states.or.tax.income.credits.retirement_credit.or_retirement_credit": { - "label": "gov.states.or.tax.income.credits.retirement_credit.or_retirement_credit", - "description": null, - "index": 0 - }, - "gov.states.or.tax.income.credits.retirement_credit.or_retirement_credit_household_income": { - "label": "gov.states.or.tax.income.credits.retirement_credit.or_retirement_credit_household_income", - "description": null, - "index": 0 - }, - "gov.states.or.tax.income.credits.wfhdc.or_wfhdc_household_income": { - "label": "gov.states.or.tax.income.credits.wfhdc.or_wfhdc_household_income", - "description": null, - "index": 0 - }, - "gov.states.or.tax.income.credits.wfhdc.or_wfhdc_employment_eligible": { - "label": "gov.states.or.tax.income.credits.wfhdc.or_wfhdc_employment_eligible", - "description": null, - "index": 0 - }, - "gov.states.or.tax.income.credits.wfhdc.or_wfhdc_income_category": { - "label": "gov.states.or.tax.income.credits.wfhdc.or_wfhdc_income_category", - "description": null, - "index": 0 - }, - "gov.states.or.tax.income.credits.wfhdc.or_wfhdc_eligibility_category": { - "label": "gov.states.or.tax.income.credits.wfhdc.or_wfhdc_eligibility_category", - "description": null, - "index": 0 - }, - "gov.states.or.tax.income.credits.wfhdc.or_wfhdc_income_eligible": { - "label": "gov.states.or.tax.income.credits.wfhdc.or_wfhdc_income_eligible", - "description": null, - "index": 0 - }, - "gov.states.or.tax.income.credits.wfhdc.or_working_family_household_and_dependent_care_credit": { - "label": "gov.states.or.tax.income.credits.wfhdc.or_working_family_household_and_dependent_care_credit", - "description": null, - "index": 0 - }, - "gov.states.or.tax.income.credits.wfhdc.or_wfhdc_has_qualified_individual_eligible": { - "label": "gov.states.or.tax.income.credits.wfhdc.or_wfhdc_has_qualified_individual_eligible", - "description": null, - "index": 0 - }, - "gov.states.or.tax.income.credits.wfhdc.or_wfhdc_household_size_eligible": { - "label": "gov.states.or.tax.income.credits.wfhdc.or_wfhdc_household_size_eligible", - "description": null, - "index": 0 - }, - "gov.states.or.tax.income.credits.wfhdc.or_wfhdc_eligible": { - "label": "gov.states.or.tax.income.credits.wfhdc.or_wfhdc_eligible", - "description": null, - "index": 0 - }, - "gov.states.or.tax.income.credits.wfhdc.or_cdcc_relevant_expenses": { - "label": "gov.states.or.tax.income.credits.wfhdc.or_cdcc_relevant_expenses", - "description": null, - "index": 0 - }, - "gov.states.or.tax.income.credits.exemption.or_disabled_child_dependent_exemptions": { - "label": "gov.states.or.tax.income.credits.exemption.or_disabled_child_dependent_exemptions", - "description": null, - "index": 0 - }, - "gov.states.or.tax.income.credits.exemption.or_severely_disabled_exemptions": { - "label": "gov.states.or.tax.income.credits.exemption.or_severely_disabled_exemptions", - "description": null, - "index": 0 - }, - "gov.states.or.tax.income.credits.exemption.or_regular_exemptions": { - "label": "gov.states.or.tax.income.credits.exemption.or_regular_exemptions", - "description": null, - "index": 0 - }, - "gov.states.or.tax.income.credits.exemption.or_exemption_credit": { - "label": "gov.states.or.tax.income.credits.exemption.or_exemption_credit", - "description": null, - "index": 0 - }, - "gov.states.or.tax.income.credits.kicker.or_kicker": { - "label": "gov.states.or.tax.income.credits.kicker.or_kicker", - "description": null, - "index": 0 - }, - "gov.states.or.tax.income.credits.kicker.or_tax_before_credits_in_prior_year": { - "label": "gov.states.or.tax.income.credits.kicker.or_tax_before_credits_in_prior_year", - "description": null, - "index": 0 - }, - "gov.states.or.tax.income.subtractions.or_federal_tax_liability_subtraction": { - "label": "gov.states.or.tax.income.subtractions.or_federal_tax_liability_subtraction", - "description": null, - "index": 0 - }, - "gov.states.or.tax.income.subtractions.or_income_subtractions": { - "label": "gov.states.or.tax.income.subtractions.or_income_subtractions", - "description": null, - "index": 0 - }, - "gov.states.or.tax.income.subtractions.or_federal_pension_subtraction": { - "label": "gov.states.or.tax.income.subtractions.or_federal_pension_subtraction", - "description": null, - "index": 0 - }, - "gov.states.or.tax.income.deductions.or_standard_deduction": { - "label": "gov.states.or.tax.income.deductions.or_standard_deduction", - "description": null, - "index": 0 - }, - "gov.states.or.tax.income.deductions.or_deductions": { - "label": "gov.states.or.tax.income.deductions.or_deductions", - "description": null, - "index": 0 - }, - "gov.states.or.tax.income.deductions.or_itemized_deductions": { - "label": "gov.states.or.tax.income.deductions.or_itemized_deductions", - "description": null, - "index": 0 - }, - "gov.states.ga.tax.income.ga_agi": { - "label": "gov.states.ga.tax.income.ga_agi", - "description": null, - "index": 0 - }, - "gov.states.ga.tax.income.ga_refundable_credits": { - "label": "gov.states.ga.tax.income.ga_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.ga.tax.income.ga_taxable_income": { - "label": "gov.states.ga.tax.income.ga_taxable_income", - "description": null, - "index": 0 - }, - "gov.states.ga.tax.income.ga_subtractions": { - "label": "gov.states.ga.tax.income.ga_subtractions", - "description": null, - "index": 0 - }, - "gov.states.ga.tax.income.ga_withheld_income_tax": { - "label": "gov.states.ga.tax.income.ga_withheld_income_tax", - "description": null, - "index": 0 - }, - "gov.states.ga.tax.income.ga_income_tax": { - "label": "gov.states.ga.tax.income.ga_income_tax", - "description": null, - "index": 0 - }, - "gov.states.ga.tax.income.ga_income_tax_before_non_refundable_credits": { - "label": "gov.states.ga.tax.income.ga_income_tax_before_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.ga.tax.income.ga_income_tax_before_refundable_credits": { - "label": "gov.states.ga.tax.income.ga_income_tax_before_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.ga.tax.income.ga_additions": { - "label": "gov.states.ga.tax.income.ga_additions", - "description": null, - "index": 0 - }, - "gov.states.ga.tax.income.ga_non_refundable_credits": { - "label": "gov.states.ga.tax.income.ga_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.ga.tax.income.credits.ga_low_income_credit": { - "label": "gov.states.ga.tax.income.credits.ga_low_income_credit", - "description": null, - "index": 0 - }, - "gov.states.ga.tax.income.credits.cdcc.ga_cdcc": { - "label": "gov.states.ga.tax.income.credits.cdcc.ga_cdcc", - "description": null, - "index": 0 - }, - "gov.states.ga.tax.income.exemptions.ga_exemptions": { - "label": "gov.states.ga.tax.income.exemptions.ga_exemptions", - "description": null, - "index": 0 - }, - "gov.states.ga.tax.income.subtractions.ga_investment_in_529_plan_deduction": { - "label": "gov.states.ga.tax.income.subtractions.ga_investment_in_529_plan_deduction", - "description": null, - "index": 0 - }, - "gov.states.ga.tax.income.subtractions.retirement.ga_retirement_exclusion_person": { - "label": "gov.states.ga.tax.income.subtractions.retirement.ga_retirement_exclusion_person", - "description": null, - "index": 0 - }, - "gov.states.ga.tax.income.subtractions.retirement.ga_retirement_exclusion": { - "label": "gov.states.ga.tax.income.subtractions.retirement.ga_retirement_exclusion", - "description": null, - "index": 0 - }, - "gov.states.ga.tax.income.subtractions.retirement.ga_retirement_income_exclusion_retirement_income": { - "label": "gov.states.ga.tax.income.subtractions.retirement.ga_retirement_income_exclusion_retirement_income", - "description": null, - "index": 0 - }, - "gov.states.ga.tax.income.subtractions.retirement.ga_retirement_exclusion_countable_earned_income": { - "label": "gov.states.ga.tax.income.subtractions.retirement.ga_retirement_exclusion_countable_earned_income", - "description": null, - "index": 0 - }, - "gov.states.ga.tax.income.subtractions.retirement.ga_retirement_exclusion_eligible_person": { - "label": "gov.states.ga.tax.income.subtractions.retirement.ga_retirement_exclusion_eligible_person", - "description": null, - "index": 0 - }, - "gov.states.ga.tax.income.subtractions.retirement.military.ga_military_retirement_exclusion_eligible_person": { - "label": "gov.states.ga.tax.income.subtractions.retirement.military.ga_military_retirement_exclusion_eligible_person", - "description": null, - "index": 0 - }, - "gov.states.ga.tax.income.subtractions.retirement.military.ga_military_retirement_exclusion_person": { - "label": "gov.states.ga.tax.income.subtractions.retirement.military.ga_military_retirement_exclusion_person", - "description": null, - "index": 0 - }, - "gov.states.ga.tax.income.subtractions.retirement.military.ga_military_retirement_exclusion": { - "label": "gov.states.ga.tax.income.subtractions.retirement.military.ga_military_retirement_exclusion", - "description": null, - "index": 0 - }, - "gov.states.ga.tax.income.deductions.ga_standard_deduction": { - "label": "gov.states.ga.tax.income.deductions.ga_standard_deduction", - "description": null, - "index": 0 - }, - "gov.states.ga.tax.income.deductions.ga_additional_standard_deduction": { - "label": "gov.states.ga.tax.income.deductions.ga_additional_standard_deduction", - "description": null, - "index": 0 - }, - "gov.states.ga.tax.income.deductions.ga_deductions": { - "label": "gov.states.ga.tax.income.deductions.ga_deductions", - "description": null, - "index": 0 - }, - "gov.states.vt.tax.income.vt_non_refundable_credits": { - "label": "gov.states.vt.tax.income.vt_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.vt.tax.income.vt_normal_income_tax": { - "label": "gov.states.vt.tax.income.vt_normal_income_tax", - "description": null, - "index": 0 - }, - "gov.states.vt.tax.income.vt_income_tax": { - "label": "gov.states.vt.tax.income.vt_income_tax", - "description": null, - "index": 0 - }, - "gov.states.vt.tax.income.vt_eitc": { - "label": "gov.states.vt.tax.income.vt_eitc", - "description": null, - "index": 0 - }, - "gov.states.vt.tax.income.vt_amt": { - "label": "gov.states.vt.tax.income.vt_amt", - "description": null, - "index": 0 - }, - "gov.states.vt.tax.income.vt_refundable_credits": { - "label": "gov.states.vt.tax.income.vt_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.vt.tax.income.vt_income_tax_before_non_refundable_credits": { - "label": "gov.states.vt.tax.income.vt_income_tax_before_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.vt.tax.income.vt_income_tax_before_refundable_credits": { - "label": "gov.states.vt.tax.income.vt_income_tax_before_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.vt.tax.income.vt_taxable_income": { - "label": "gov.states.vt.tax.income.vt_taxable_income", - "description": null, - "index": 0 - }, - "gov.states.vt.tax.income.vt_withheld_income_tax": { - "label": "gov.states.vt.tax.income.vt_withheld_income_tax", - "description": null, - "index": 0 - }, - "gov.states.vt.tax.income.credits.vt_elderly_or_disabled_credit": { - "label": "gov.states.vt.tax.income.credits.vt_elderly_or_disabled_credit", - "description": null, - "index": 0 - }, - "gov.states.vt.tax.income.credits.vt_veteran_tax_credit": { - "label": "gov.states.vt.tax.income.credits.vt_veteran_tax_credit", - "description": null, - "index": 0 - }, - "gov.states.vt.tax.income.credits.vt_charitable_contributions_credit": { - "label": "gov.states.vt.tax.income.credits.vt_charitable_contributions_credit", - "description": null, - "index": 0 - }, - "gov.states.vt.tax.income.credits.ctc.vt_ctc": { - "label": "gov.states.vt.tax.income.credits.ctc.vt_ctc", - "description": null, - "index": 0 - }, - "gov.states.vt.tax.income.credits.cdcc.vt_low_income_cdcc": { - "label": "gov.states.vt.tax.income.credits.cdcc.vt_low_income_cdcc", - "description": null, - "index": 0 - }, - "gov.states.vt.tax.income.credits.cdcc.vt_low_income_cdcc_eligible": { - "label": "gov.states.vt.tax.income.credits.cdcc.vt_low_income_cdcc_eligible", - "description": null, - "index": 0 - }, - "gov.states.vt.tax.income.credits.cdcc.vt_cdcc": { - "label": "gov.states.vt.tax.income.credits.cdcc.vt_cdcc", - "description": null, - "index": 0 - }, - "gov.states.vt.tax.income.credits.renter.vt_renter_credit_income": { - "label": "gov.states.vt.tax.income.credits.renter.vt_renter_credit_income", - "description": null, - "index": 0 - }, - "gov.states.vt.tax.income.credits.renter.vt_renter_credit": { - "label": "gov.states.vt.tax.income.credits.renter.vt_renter_credit", - "description": null, - "index": 0 - }, - "gov.states.vt.tax.income.credits.renter.vt_renter_credit_countable_tax_exempt_ss": { - "label": "gov.states.vt.tax.income.credits.renter.vt_renter_credit_countable_tax_exempt_ss", - "description": null, - "index": 0 - }, - "gov.states.vt.tax.income.exemptions.vt_personal_exemptions": { - "label": "gov.states.vt.tax.income.exemptions.vt_personal_exemptions", - "description": null, - "index": 0 - }, - "gov.states.vt.tax.income.adjusted_gross_income.vt_agi": { - "label": "gov.states.vt.tax.income.adjusted_gross_income.vt_agi", - "description": null, - "index": 0 - }, - "gov.states.vt.tax.income.adjusted_gross_income.vt_additions": { - "label": "gov.states.vt.tax.income.adjusted_gross_income.vt_additions", - "description": null, - "index": 0 - }, - "gov.states.vt.tax.income.adjusted_gross_income.subtractions.vt_subtractions": { - "label": "gov.states.vt.tax.income.adjusted_gross_income.subtractions.vt_subtractions", - "description": null, - "index": 0 - }, - "gov.states.vt.tax.income.adjusted_gross_income.subtractions.vt_medical_expense_deduction": { - "label": "gov.states.vt.tax.income.adjusted_gross_income.subtractions.vt_medical_expense_deduction", - "description": null, - "index": 0 - }, - "gov.states.vt.tax.income.adjusted_gross_income.subtractions.vt_capital_gain_exclusion.vt_percentage_capital_gains_exclusion": { - "label": "gov.states.vt.tax.income.adjusted_gross_income.subtractions.vt_capital_gain_exclusion.vt_percentage_capital_gains_exclusion", - "description": null, - "index": 0 - }, - "gov.states.vt.tax.income.adjusted_gross_income.subtractions.vt_capital_gain_exclusion.vt_capital_gains_exclusion": { - "label": "gov.states.vt.tax.income.adjusted_gross_income.subtractions.vt_capital_gain_exclusion.vt_capital_gains_exclusion", - "description": null, - "index": 0 - }, - "gov.states.vt.tax.income.adjusted_gross_income.subtractions.retirement_income_exemption.vt_military_retirement_pay_exclusion": { - "label": "gov.states.vt.tax.income.adjusted_gross_income.subtractions.retirement_income_exemption.vt_military_retirement_pay_exclusion", - "description": null, - "index": 0 - }, - "gov.states.vt.tax.income.adjusted_gross_income.subtractions.retirement_income_exemption.vt_military_retirement_cap_based_exemption": { - "label": "gov.states.vt.tax.income.adjusted_gross_income.subtractions.retirement_income_exemption.vt_military_retirement_cap_based_exemption", - "description": null, - "index": 0 - }, - "gov.states.vt.tax.income.adjusted_gross_income.subtractions.retirement_income_exemption.vt_retirement_income_exemption": { - "label": "gov.states.vt.tax.income.adjusted_gross_income.subtractions.retirement_income_exemption.vt_retirement_income_exemption", - "description": null, - "index": 0 - }, - "gov.states.vt.tax.income.adjusted_gross_income.subtractions.retirement_income_exemption.vt_military_retirement_income_based_exemption": { - "label": "gov.states.vt.tax.income.adjusted_gross_income.subtractions.retirement_income_exemption.vt_military_retirement_income_based_exemption", - "description": null, - "index": 0 - }, - "gov.states.vt.tax.income.adjusted_gross_income.subtractions.retirement_income_exemption.vt_retirement_income_exemption_eligible": { - "label": "gov.states.vt.tax.income.adjusted_gross_income.subtractions.retirement_income_exemption.vt_retirement_income_exemption_eligible", - "description": null, - "index": 0 - }, - "gov.states.vt.tax.income.adjusted_gross_income.subtractions.retirement_income_exemption.vt_csrs_retirement_pay_exclusion": { - "label": "gov.states.vt.tax.income.adjusted_gross_income.subtractions.retirement_income_exemption.vt_csrs_retirement_pay_exclusion", - "description": null, - "index": 0 - }, - "gov.states.vt.tax.income.deductions.vt_standard_deduction": { - "label": "gov.states.vt.tax.income.deductions.vt_standard_deduction", - "description": null, - "index": 0 - }, - "gov.states.ct.tax.income.ct_income_tax_after_personal_credits": { - "label": "gov.states.ct.tax.income.ct_income_tax_after_personal_credits", - "description": null, - "index": 0 - }, - "gov.states.ct.tax.income.ct_income_tax_after_amt": { - "label": "gov.states.ct.tax.income.ct_income_tax_after_amt", - "description": null, - "index": 0 - }, - "gov.states.ct.tax.income.ct_taxable_income": { - "label": "gov.states.ct.tax.income.ct_taxable_income", - "description": null, - "index": 0 - }, - "gov.states.ct.tax.income.ct_agi_subtractions": { - "label": "gov.states.ct.tax.income.ct_agi_subtractions", - "description": null, - "index": 0 - }, - "gov.states.ct.tax.income.ct_refundable_credits": { - "label": "gov.states.ct.tax.income.ct_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.ct.tax.income.ct_agi": { - "label": "gov.states.ct.tax.income.ct_agi", - "description": null, - "index": 0 - }, - "gov.states.ct.tax.income.ct_income_tax_before_refundable_credits": { - "label": "gov.states.ct.tax.income.ct_income_tax_before_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.ct.tax.income.ct_withheld_income_tax": { - "label": "gov.states.ct.tax.income.ct_withheld_income_tax", - "description": null, - "index": 0 - }, - "gov.states.ct.tax.income.ct_non_refundable_credits": { - "label": "gov.states.ct.tax.income.ct_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.ct.tax.income.ct_income_tax": { - "label": "gov.states.ct.tax.income.ct_income_tax", - "description": null, - "index": 0 - }, - "gov.states.ct.tax.income.credits.ct_personal_credit_rate": { - "label": "gov.states.ct.tax.income.credits.ct_personal_credit_rate", - "description": null, - "index": 0 - }, - "gov.states.ct.tax.income.credits.eitc.ct_eitc": { - "label": "gov.states.ct.tax.income.credits.eitc.ct_eitc", - "description": null, - "index": 0 - }, - "gov.states.ct.tax.income.credits.property_tax.ct_property_tax_credit_eligible": { - "label": "gov.states.ct.tax.income.credits.property_tax.ct_property_tax_credit_eligible", - "description": null, - "index": 0 - }, - "gov.states.ct.tax.income.credits.property_tax.ct_property_tax_credit": { - "label": "gov.states.ct.tax.income.credits.property_tax.ct_property_tax_credit", - "description": null, - "index": 0 - }, - "gov.states.ct.tax.income.exemptions.ct_personal_exemptions": { - "label": "gov.states.ct.tax.income.exemptions.ct_personal_exemptions", - "description": null, - "index": 0 - }, - "gov.states.ct.tax.income.amt.ct_amt": { - "label": "gov.states.ct.tax.income.amt.ct_amt", - "description": null, - "index": 0 - }, - "gov.states.ct.tax.income.subtractions.ct_social_security_benefit_adjustment": { - "label": "gov.states.ct.tax.income.subtractions.ct_social_security_benefit_adjustment", - "description": null, - "index": 0 - }, - "gov.states.ct.tax.income.subtractions.ct_subtractions": { - "label": "gov.states.ct.tax.income.subtractions.ct_subtractions", - "description": null, - "index": 0 - }, - "gov.states.ct.tax.income.subtractions.tuition.ct_tuition_subtraction": { - "label": "gov.states.ct.tax.income.subtractions.tuition.ct_tuition_subtraction", - "description": null, - "index": 0 - }, - "gov.states.ct.tax.income.subtractions.pension_annuity.ct_pension_annuity_subtraction": { - "label": "gov.states.ct.tax.income.subtractions.pension_annuity.ct_pension_annuity_subtraction", - "description": null, - "index": 0 - }, - "gov.states.ct.tax.income.rebate.ct_child_tax_rebate": { - "label": "gov.states.ct.tax.income.rebate.ct_child_tax_rebate", - "description": null, - "index": 0 - }, - "gov.states.ct.tax.income.additions.ct_additions": { - "label": "gov.states.ct.tax.income.additions.ct_additions", - "description": null, - "index": 0 - }, - "gov.states.ct.tax.income.additions.ct_section_179_expense_add_back": { - "label": "gov.states.ct.tax.income.additions.ct_section_179_expense_add_back", - "description": null, - "index": 0 - }, - "gov.states.ct.tax.income.add_back.ct_income_tax_recapture": { - "label": "gov.states.ct.tax.income.add_back.ct_income_tax_recapture", - "description": null, - "index": 0 - }, - "gov.states.ct.tax.income.add_back.ct_income_tax_high_tax_recapture": { - "label": "gov.states.ct.tax.income.add_back.ct_income_tax_high_tax_recapture", - "description": null, - "index": 0 - }, - "gov.states.ct.tax.income.add_back.ct_income_tax_phase_out_add_back": { - "label": "gov.states.ct.tax.income.add_back.ct_income_tax_phase_out_add_back", - "description": null, - "index": 0 - }, - "gov.states.ct.tax.income.add_back.ct_income_tax_middle_tax_recapture": { - "label": "gov.states.ct.tax.income.add_back.ct_income_tax_middle_tax_recapture", - "description": null, - "index": 0 - }, - "gov.states.ct.tax.income.add_back.ct_income_tax_low_tax_recapture": { - "label": "gov.states.ct.tax.income.add_back.ct_income_tax_low_tax_recapture", - "description": null, - "index": 0 - }, - "gov.states.ny.nyserda.drive_clean.ny_drive_clean_purchased_qualifying_vehicle": { - "label": "gov.states.ny.nyserda.drive_clean.ny_drive_clean_purchased_qualifying_vehicle", - "description": null, - "index": 0 - }, - "gov.states.ny.nyserda.drive_clean.ny_drive_clean_vehicle_electric_range": { - "label": "gov.states.ny.nyserda.drive_clean.ny_drive_clean_vehicle_electric_range", - "description": null, - "index": 0 - }, - "gov.states.ny.nyserda.drive_clean.ny_drive_clean_rebate": { - "label": "gov.states.ny.nyserda.drive_clean.ny_drive_clean_rebate", - "description": null, - "index": 0 - }, - "gov.states.ny.nyserda.drive_clean.ny_drive_clean_vehicle_cost": { - "label": "gov.states.ny.nyserda.drive_clean.ny_drive_clean_vehicle_cost", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.ny_income_tax_before_refundable_credits": { - "label": "gov.states.ny.tax.income.ny_income_tax_before_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.ny_supplemental_tax": { - "label": "gov.states.ny.tax.income.ny_supplemental_tax", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.ny_withheld_income_tax": { - "label": "gov.states.ny.tax.income.ny_withheld_income_tax", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.ny_non_refundable_credits": { - "label": "gov.states.ny.tax.income.ny_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.ny_refundable_credits": { - "label": "gov.states.ny.tax.income.ny_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.ny_allowable_college_tuition_expenses": { - "label": "gov.states.ny.tax.income.ny_allowable_college_tuition_expenses", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.ny_income_tax_before_credits": { - "label": "gov.states.ny.tax.income.ny_income_tax_before_credits", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.ny_main_income_tax": { - "label": "gov.states.ny.tax.income.ny_main_income_tax", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.ny_income_tax": { - "label": "gov.states.ny.tax.income.ny_income_tax", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.credits.ny_geothermal_energy_system_credit": { - "label": "gov.states.ny.tax.income.credits.ny_geothermal_energy_system_credit", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.credits.ny_eitc": { - "label": "gov.states.ny.tax.income.credits.ny_eitc", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.credits.ny_household_credit": { - "label": "gov.states.ny.tax.income.credits.ny_household_credit", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.credits.ny_real_property_tax_credit": { - "label": "gov.states.ny.tax.income.credits.ny_real_property_tax_credit", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.credits.ny_qualified_geothermal_energy_system_expenditures": { - "label": "gov.states.ny.tax.income.credits.ny_qualified_geothermal_energy_system_expenditures", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.credits.ny_supplemental_eitc": { - "label": "gov.states.ny.tax.income.credits.ny_supplemental_eitc", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.credits.ny_inflation_refund_credit": { - "label": "gov.states.ny.tax.income.credits.ny_inflation_refund_credit", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.credits.ctc.ny_ctc_post_2024": { - "label": "gov.states.ny.tax.income.credits.ctc.ny_ctc_post_2024", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.credits.ctc.ny_ctc_pre_2024_eligible": { - "label": "gov.states.ny.tax.income.credits.ctc.ny_ctc_pre_2024_eligible", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.credits.ctc.ny_ctc_post_2024_phase_out": { - "label": "gov.states.ny.tax.income.credits.ctc.ny_ctc_post_2024_phase_out", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.credits.ctc.ny_ctc_post_2024_eligible": { - "label": "gov.states.ny.tax.income.credits.ctc.ny_ctc_post_2024_eligible", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.credits.ctc.ny_ctc_post_2024_base": { - "label": "gov.states.ny.tax.income.credits.ctc.ny_ctc_post_2024_base", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.credits.ctc.ny_ctc": { - "label": "gov.states.ny.tax.income.credits.ctc.ny_ctc", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.credits.ctc.ny_additional_ctc": { - "label": "gov.states.ny.tax.income.credits.ctc.ny_additional_ctc", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.credits.ctc.ny_ctc_pre_2024": { - "label": "gov.states.ny.tax.income.credits.ctc.ny_ctc_pre_2024", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.credits.cdcc.ny_cdcc_max": { - "label": "gov.states.ny.tax.income.credits.cdcc.ny_cdcc_max", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.credits.cdcc.ny_cdcc": { - "label": "gov.states.ny.tax.income.credits.cdcc.ny_cdcc", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.credits.cdcc.ny_cdcc_rate": { - "label": "gov.states.ny.tax.income.credits.cdcc.ny_cdcc_rate", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.credits.college_tuition.ny_college_tuition_credit_eligible": { - "label": "gov.states.ny.tax.income.credits.college_tuition.ny_college_tuition_credit_eligible", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.credits.college_tuition.ny_college_tuition_credit": { - "label": "gov.states.ny.tax.income.credits.college_tuition.ny_college_tuition_credit", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.credits.solar_energy_systems.ny_qualified_solar_energy_systems_equipment_expenditures": { - "label": "gov.states.ny.tax.income.credits.solar_energy_systems.ny_qualified_solar_energy_systems_equipment_expenditures", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.credits.solar_energy_systems.ny_solar_energy_systems_equipment_credit": { - "label": "gov.states.ny.tax.income.credits.solar_energy_systems.ny_solar_energy_systems_equipment_credit", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.adjusted_gross_income.ny_pension_exclusion": { - "label": "gov.states.ny.tax.income.adjusted_gross_income.ny_pension_exclusion", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.adjusted_gross_income.ny_agi_subtractions": { - "label": "gov.states.ny.tax.income.adjusted_gross_income.ny_agi_subtractions", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.adjusted_gross_income.ny_agi": { - "label": "gov.states.ny.tax.income.adjusted_gross_income.ny_agi", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.adjusted_gross_income.ny_additions": { - "label": "gov.states.ny.tax.income.adjusted_gross_income.ny_additions", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.taxable_income.ny_deductions": { - "label": "gov.states.ny.tax.income.taxable_income.ny_deductions", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.taxable_income.ny_taxable_income": { - "label": "gov.states.ny.tax.income.taxable_income.ny_taxable_income", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.taxable_income.ny_exemptions": { - "label": "gov.states.ny.tax.income.taxable_income.ny_exemptions", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.taxable_income.deductions.ny_standard_deduction": { - "label": "gov.states.ny.tax.income.taxable_income.deductions.ny_standard_deduction", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.taxable_income.deductions.itemized.ny_itemizes": { - "label": "gov.states.ny.tax.income.taxable_income.deductions.itemized.ny_itemizes", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.taxable_income.deductions.itemized.ny_itemized_deductions": { - "label": "gov.states.ny.tax.income.taxable_income.deductions.itemized.ny_itemized_deductions", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.taxable_income.deductions.itemized.ny_itemized_deductions_max": { - "label": "gov.states.ny.tax.income.taxable_income.deductions.itemized.ny_itemized_deductions_max", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.taxable_income.deductions.itemized.ny_college_tuition_deduction": { - "label": "gov.states.ny.tax.income.taxable_income.deductions.itemized.ny_college_tuition_deduction", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.taxable_income.deductions.itemized.reduction.ny_itemized_deductions_reduction": { - "label": "gov.states.ny.tax.income.taxable_income.deductions.itemized.reduction.ny_itemized_deductions_reduction", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.taxable_income.deductions.itemized.reduction.ny_itemized_deductions_reduction_applies": { - "label": "gov.states.ny.tax.income.taxable_income.deductions.itemized.reduction.ny_itemized_deductions_reduction_applies", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.taxable_income.deductions.itemized.reduction.based_on_charitable_deduction.ny_itemized_deductions_reduction_based_on_charitable_deduction": { - "label": "gov.states.ny.tax.income.taxable_income.deductions.itemized.reduction.based_on_charitable_deduction.ny_itemized_deductions_reduction_based_on_charitable_deduction", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.taxable_income.deductions.itemized.reduction.based_on_charitable_deduction.ny_itemized_deductions_reduction_based_on_charitable_deduction_applies": { - "label": "gov.states.ny.tax.income.taxable_income.deductions.itemized.reduction.based_on_charitable_deduction.ny_itemized_deductions_reduction_based_on_charitable_deduction_applies", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.taxable_income.deductions.itemized.reduction.based_on_charitable_deduction.incremental.ny_itemized_deductions_higher_incremental_reduction": { - "label": "gov.states.ny.tax.income.taxable_income.deductions.itemized.reduction.based_on_charitable_deduction.incremental.ny_itemized_deductions_higher_incremental_reduction", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.taxable_income.deductions.itemized.reduction.based_on_charitable_deduction.incremental.ny_itemized_deductions_incremental_reduction": { - "label": "gov.states.ny.tax.income.taxable_income.deductions.itemized.reduction.based_on_charitable_deduction.incremental.ny_itemized_deductions_incremental_reduction", - "description": null, - "index": 0 - }, - "gov.states.ny.tax.income.taxable_income.deductions.itemized.reduction.based_on_charitable_deduction.incremental.ny_itemized_deductions_lower_incremental_reduction": { - "label": "gov.states.ny.tax.income.taxable_income.deductions.itemized.reduction.based_on_charitable_deduction.incremental.ny_itemized_deductions_lower_incremental_reduction", - "description": null, - "index": 0 - }, - "gov.states.ny.otda.tanf.ny_tanf": { - "label": "gov.states.ny.otda.tanf.ny_tanf", - "description": null, - "index": 0 - }, - "gov.states.ny.otda.tanf.ny_tanf_resources_eligible": { - "label": "gov.states.ny.otda.tanf.ny_tanf_resources_eligible", - "description": null, - "index": 0 - }, - "gov.states.ny.otda.tanf.ny_tanf_need_standard": { - "label": "gov.states.ny.otda.tanf.ny_tanf_need_standard", - "description": null, - "index": 0 - }, - "gov.states.ny.otda.tanf.ny_tanf_eligible": { - "label": "gov.states.ny.otda.tanf.ny_tanf_eligible", - "description": null, - "index": 0 - }, - "gov.states.ny.otda.tanf.ny_tanf_income_eligible": { - "label": "gov.states.ny.otda.tanf.ny_tanf_income_eligible", - "description": null, - "index": 0 - }, - "gov.states.ny.otda.tanf.ny_tanf_countable_resources": { - "label": "gov.states.ny.otda.tanf.ny_tanf_countable_resources", - "description": null, - "index": 0 - }, - "gov.states.ny.otda.tanf.ny_tanf_grant_standard": { - "label": "gov.states.ny.otda.tanf.ny_tanf_grant_standard", - "description": null, - "index": 0 - }, - "gov.states.ny.otda.tanf.income.ny_tanf_countable_earned_income": { - "label": "gov.states.ny.otda.tanf.income.ny_tanf_countable_earned_income", - "description": null, - "index": 0 - }, - "gov.states.ny.otda.tanf.income.ny_tanf_gross_earned_income": { - "label": "gov.states.ny.otda.tanf.income.ny_tanf_gross_earned_income", - "description": null, - "index": 0 - }, - "gov.states.ny.otda.tanf.income.ny_tanf_countable_gross_unearned_income": { - "label": "gov.states.ny.otda.tanf.income.ny_tanf_countable_gross_unearned_income", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.va_must_file": { - "label": "gov.states.va.tax.income.va_must_file", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.va_agi": { - "label": "gov.states.va.tax.income.va_agi", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.va_rebate": { - "label": "gov.states.va.tax.income.va_rebate", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.va_agi_share": { - "label": "gov.states.va.tax.income.va_agi_share", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.va_income_tax": { - "label": "gov.states.va.tax.income.va_income_tax", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.va_subtractions": { - "label": "gov.states.va.tax.income.va_subtractions", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.va_non_refundable_credits": { - "label": "gov.states.va.tax.income.va_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.va_taxable_income": { - "label": "gov.states.va.tax.income.va_taxable_income", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.va_agi_person": { - "label": "gov.states.va.tax.income.va_agi_person", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.va_withheld_income_tax": { - "label": "gov.states.va.tax.income.va_withheld_income_tax", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.va_refundable_credits": { - "label": "gov.states.va.tax.income.va_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.va_income_tax_before_non_refundable_credits": { - "label": "gov.states.va.tax.income.va_income_tax_before_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.va_income_tax_before_refundable_credits": { - "label": "gov.states.va.tax.income.va_income_tax_before_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.credits.eitc.va_refundable_eitc_if_claimed": { - "label": "gov.states.va.tax.income.credits.eitc.va_refundable_eitc_if_claimed", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.credits.eitc.va_non_refundable_eitc_if_claimed": { - "label": "gov.states.va.tax.income.credits.eitc.va_non_refundable_eitc_if_claimed", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.credits.eitc.va_eitc_person": { - "label": "gov.states.va.tax.income.credits.eitc.va_eitc_person", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.credits.eitc.va_non_refundable_eitc": { - "label": "gov.states.va.tax.income.credits.eitc.va_non_refundable_eitc", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.credits.eitc.va_refundable_eitc": { - "label": "gov.states.va.tax.income.credits.eitc.va_refundable_eitc", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.credits.eitc.va_eitc": { - "label": "gov.states.va.tax.income.credits.eitc.va_eitc", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.credits.eitc.refundability_calculation.va_claims_refundable_eitc": { - "label": "gov.states.va.tax.income.credits.eitc.refundability_calculation.va_claims_refundable_eitc", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.credits.eitc.refundability_calculation.va_income_tax_if_claiming_refundable_eitc": { - "label": "gov.states.va.tax.income.credits.eitc.refundability_calculation.va_income_tax_if_claiming_refundable_eitc", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.credits.eitc.refundability_calculation.va_income_tax_if_claiming_non_refundable_eitc": { - "label": "gov.states.va.tax.income.credits.eitc.refundability_calculation.va_income_tax_if_claiming_non_refundable_eitc", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.credits.low_income_credit.va_low_income_tax_credit": { - "label": "gov.states.va.tax.income.credits.low_income_credit.va_low_income_tax_credit", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.credits.low_income_credit.va_low_income_tax_credit_eligible": { - "label": "gov.states.va.tax.income.credits.low_income_credit.va_low_income_tax_credit_eligible", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.credits.low_income_credit.va_low_income_tax_credit_agi_eligible": { - "label": "gov.states.va.tax.income.credits.low_income_credit.va_low_income_tax_credit_agi_eligible", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.exemptions.va_personal_exemption_person": { - "label": "gov.states.va.tax.income.exemptions.va_personal_exemption_person", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.exemptions.va_total_exemptions": { - "label": "gov.states.va.tax.income.exemptions.va_total_exemptions", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.exemptions.va_aged_blind_exemption_person": { - "label": "gov.states.va.tax.income.exemptions.va_aged_blind_exemption_person", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.exemptions.va_aged_blind_exemption": { - "label": "gov.states.va.tax.income.exemptions.va_aged_blind_exemption", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.exemptions.va_personal_exemption": { - "label": "gov.states.va.tax.income.exemptions.va_personal_exemption", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.subtractions.va_disability_income_subtraction": { - "label": "gov.states.va.tax.income.subtractions.va_disability_income_subtraction", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.subtractions.va_national_guard_subtraction": { - "label": "gov.states.va.tax.income.subtractions.va_national_guard_subtraction", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.subtractions.va_federal_state_employees_subtraction": { - "label": "gov.states.va.tax.income.subtractions.va_federal_state_employees_subtraction", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.subtractions.va_military_benefit_subtraction": { - "label": "gov.states.va.tax.income.subtractions.va_military_benefit_subtraction", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.subtractions.va_military_basic_pay.va_military_basic_pay_subtraction": { - "label": "gov.states.va.tax.income.subtractions.va_military_basic_pay.va_military_basic_pay_subtraction", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.subtractions.age_deduction.va_age_deduction_agi": { - "label": "gov.states.va.tax.income.subtractions.age_deduction.va_age_deduction_agi", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.subtractions.age_deduction.va_age_deduction": { - "label": "gov.states.va.tax.income.subtractions.age_deduction.va_age_deduction", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.additions.va_additions": { - "label": "gov.states.va.tax.income.additions.va_additions", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.spouse_tax_adjustment.va_agi_less_exemptions_person": { - "label": "gov.states.va.tax.income.spouse_tax_adjustment.va_agi_less_exemptions_person", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.spouse_tax_adjustment.va_spouse_tax_adjustment_eligible": { - "label": "gov.states.va.tax.income.spouse_tax_adjustment.va_spouse_tax_adjustment_eligible", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.spouse_tax_adjustment.va_spouse_tax_adjustment": { - "label": "gov.states.va.tax.income.spouse_tax_adjustment.va_spouse_tax_adjustment", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.deductions.va_deductions": { - "label": "gov.states.va.tax.income.deductions.va_deductions", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.deductions.va_standard_deduction": { - "label": "gov.states.va.tax.income.deductions.va_standard_deduction", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.deductions.va_capped_state_and_local_sales_or_income_tax": { - "label": "gov.states.va.tax.income.deductions.va_capped_state_and_local_sales_or_income_tax", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.deductions.va_itemized_deductions": { - "label": "gov.states.va.tax.income.deductions.va_itemized_deductions", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.deductions.va_reduced_itemized_deductions": { - "label": "gov.states.va.tax.income.deductions.va_reduced_itemized_deductions", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.deductions.cdcc_expense.va_child_dependent_care_expense_deduction": { - "label": "gov.states.va.tax.income.deductions.cdcc_expense.va_child_dependent_care_expense_deduction", - "description": null, - "index": 0 - }, - "gov.states.va.tax.income.deductions.cdcc_expense.va_child_dependent_care_deduction_cdcc_limit": { - "label": "gov.states.va.tax.income.deductions.cdcc_expense.va_child_dependent_care_deduction_cdcc_limit", - "description": null, - "index": 0 - }, - "gov.states.ar.tax.income.ar_taxable_capital_gains_joint": { - "label": "gov.states.ar.tax.income.ar_taxable_capital_gains_joint", - "description": null, - "index": 0 - }, - "gov.states.ar.tax.income.ar_files_separately": { - "label": "gov.states.ar.tax.income.ar_files_separately", - "description": null, - "index": 0 - }, - "gov.states.ar.tax.income.ar_income_tax_before_non_refundable_credits_indiv": { - "label": "gov.states.ar.tax.income.ar_income_tax_before_non_refundable_credits_indiv", - "description": null, - "index": 0 - }, - "gov.states.ar.tax.income.ar_taxable_capital_gains_indiv": { - "label": "gov.states.ar.tax.income.ar_taxable_capital_gains_indiv", - "description": null, - "index": 0 - }, - "gov.states.ar.tax.income.ar_exemptions": { - "label": "gov.states.ar.tax.income.ar_exemptions", - "description": null, - "index": 0 - }, - "gov.states.ar.tax.income.ar_non_refundable_credits": { - "label": "gov.states.ar.tax.income.ar_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.ar.tax.income.ar_gross_income_indiv": { - "label": "gov.states.ar.tax.income.ar_gross_income_indiv", - "description": null, - "index": 0 - }, - "gov.states.ar.tax.income.ar_agi_indiv": { - "label": "gov.states.ar.tax.income.ar_agi_indiv", - "description": null, - "index": 0 - }, - "gov.states.ar.tax.income.ar_taxable_income_joint": { - "label": "gov.states.ar.tax.income.ar_taxable_income_joint", - "description": null, - "index": 0 - }, - "gov.states.ar.tax.income.ar_agi_joint": { - "label": "gov.states.ar.tax.income.ar_agi_joint", - "description": null, - "index": 0 - }, - "gov.states.ar.tax.income.ar_gross_income_joint": { - "label": "gov.states.ar.tax.income.ar_gross_income_joint", - "description": null, - "index": 0 - }, - "gov.states.ar.tax.income.ar_taxable_income_indiv": { - "label": "gov.states.ar.tax.income.ar_taxable_income_indiv", - "description": null, - "index": 0 - }, - "gov.states.ar.tax.income.ar_refundable_credits": { - "label": "gov.states.ar.tax.income.ar_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.ar.tax.income.ar_withheld_income_tax": { - "label": "gov.states.ar.tax.income.ar_withheld_income_tax", - "description": null, - "index": 0 - }, - "gov.states.ar.tax.income.ar_income_tax_before_refundable_credits": { - "label": "gov.states.ar.tax.income.ar_income_tax_before_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.ar.tax.income.ar_income_tax_before_non_refundable_credits_unit": { - "label": "gov.states.ar.tax.income.ar_income_tax_before_non_refundable_credits_unit", - "description": null, - "index": 0 - }, - "gov.states.ar.tax.income.ar_income_tax": { - "label": "gov.states.ar.tax.income.ar_income_tax", - "description": null, - "index": 0 - }, - "gov.states.ar.tax.income.ar_income_tax_before_non_refundable_credits_joint": { - "label": "gov.states.ar.tax.income.ar_income_tax_before_non_refundable_credits_joint", - "description": null, - "index": 0 - }, - "gov.states.ar.tax.income.low_income.ar_low_income_tax_joint": { - "label": "gov.states.ar.tax.income.low_income.ar_low_income_tax_joint", - "description": null, - "index": 0 - }, - "gov.states.ar.tax.income.credits.ar_inflation_relief_credit_person": { - "label": "gov.states.ar.tax.income.credits.ar_inflation_relief_credit_person", - "description": null, - "index": 0 - }, - "gov.states.ar.tax.income.credits.ar_inflationary_relief_tax_credit": { - "label": "gov.states.ar.tax.income.credits.ar_inflationary_relief_tax_credit", - "description": null, - "index": 0 - }, - "gov.states.ar.tax.income.credits.ar_cdcc": { - "label": "gov.states.ar.tax.income.credits.ar_cdcc", - "description": null, - "index": 0 - }, - "gov.states.ar.tax.income.credits.personal.ar_personal_credits_base": { - "label": "gov.states.ar.tax.income.credits.personal.ar_personal_credits_base", - "description": null, - "index": 0 - }, - "gov.states.ar.tax.income.credits.personal.ar_personal_credit_dependent": { - "label": "gov.states.ar.tax.income.credits.personal.ar_personal_credit_dependent", - "description": null, - "index": 0 - }, - "gov.states.ar.tax.income.credits.personal.ar_personal_credit_disabled_dependent": { - "label": "gov.states.ar.tax.income.credits.personal.ar_personal_credit_disabled_dependent", - "description": null, - "index": 0 - }, - "gov.states.ar.tax.income.credits.personal.ar_personal_credits": { - "label": "gov.states.ar.tax.income.credits.personal.ar_personal_credits", - "description": null, - "index": 0 - }, - "gov.states.ar.tax.income.exemptions.ar_retirement_or_disability_benefits_exemption_person": { - "label": "gov.states.ar.tax.income.exemptions.ar_retirement_or_disability_benefits_exemption_person", - "description": null, - "index": 0 - }, - "gov.states.ar.tax.income.exemptions.ar_military_retirement_income_person": { - "label": "gov.states.ar.tax.income.exemptions.ar_military_retirement_income_person", - "description": null, - "index": 0 - }, - "gov.states.ar.tax.income.exemptions.ar_retirement_or_disability_benefits_exemption": { - "label": "gov.states.ar.tax.income.exemptions.ar_retirement_or_disability_benefits_exemption", - "description": null, - "index": 0 - }, - "gov.states.ar.tax.income.exemptions.ar_capped_retirement_or_disability_benefits_exemption_person": { - "label": "gov.states.ar.tax.income.exemptions.ar_capped_retirement_or_disability_benefits_exemption_person", - "description": null, - "index": 0 - }, - "gov.states.ar.tax.income.deductions.ar_deduction_indiv": { - "label": "gov.states.ar.tax.income.deductions.ar_deduction_indiv", - "description": null, - "index": 0 - }, - "gov.states.ar.tax.income.deductions.ar_deduction_joint": { - "label": "gov.states.ar.tax.income.deductions.ar_deduction_joint", - "description": null, - "index": 0 - }, - "gov.states.ar.tax.income.deductions.ar_tax_unit_itemizes": { - "label": "gov.states.ar.tax.income.deductions.ar_tax_unit_itemizes", - "description": null, - "index": 0 - }, - "gov.states.ar.tax.income.deductions.itemized.ar_misc_deduction_joint": { - "label": "gov.states.ar.tax.income.deductions.itemized.ar_misc_deduction_joint", - "description": null, - "index": 0 - }, - "gov.states.ar.tax.income.deductions.itemized.ar_itemized_deductions_joint": { - "label": "gov.states.ar.tax.income.deductions.itemized.ar_itemized_deductions_joint", - "description": null, - "index": 0 - }, - "gov.states.ar.tax.income.deductions.itemized.ar_medical_expense_deduction_joint": { - "label": "gov.states.ar.tax.income.deductions.itemized.ar_medical_expense_deduction_joint", - "description": null, - "index": 0 - }, - "gov.states.ar.tax.income.deductions.itemized.ar_misc_deduction_indiv": { - "label": "gov.states.ar.tax.income.deductions.itemized.ar_misc_deduction_indiv", - "description": null, - "index": 0 - }, - "gov.states.ar.tax.income.deductions.itemized.ar_medical_expense_deduction_indiv": { - "label": "gov.states.ar.tax.income.deductions.itemized.ar_medical_expense_deduction_indiv", - "description": null, - "index": 0 - }, - "gov.states.ar.tax.income.deductions.itemized.ar_itemized_deductions_indiv": { - "label": "gov.states.ar.tax.income.deductions.itemized.ar_itemized_deductions_indiv", - "description": null, - "index": 0 - }, - "gov.states.ar.tax.income.deductions.itemized.post_secondary_education.ar_post_secondary_education_tuition_deduction_person": { - "label": "gov.states.ar.tax.income.deductions.itemized.post_secondary_education.ar_post_secondary_education_tuition_deduction_person", - "description": null, - "index": 0 - }, - "gov.states.ar.tax.income.deductions.itemized.post_secondary_education.ar_post_secondary_education_tuition_deduction": { - "label": "gov.states.ar.tax.income.deductions.itemized.post_secondary_education.ar_post_secondary_education_tuition_deduction", - "description": null, - "index": 0 - }, - "gov.states.ar.tax.income.deductions.standard.ar_standard_deduction_indiv": { - "label": "gov.states.ar.tax.income.deductions.standard.ar_standard_deduction_indiv", - "description": null, - "index": 0 - }, - "gov.states.ar.tax.income.deductions.standard.ar_standard_deduction_joint": { - "label": "gov.states.ar.tax.income.deductions.standard.ar_standard_deduction_joint", - "description": null, - "index": 0 - }, - "gov.states.ne.dhhs.ne_child_care_subsidies": { - "label": "gov.states.ne.dhhs.ne_child_care_subsidies", - "description": null, - "index": 0 - }, - "gov.states.ne.dhhs.ne_dhhs_has_special_needs": { - "label": "gov.states.ne.dhhs.ne_dhhs_has_special_needs", - "description": null, - "index": 0 - }, - "gov.states.ne.dhhs.child_care_subsidy.ne_child_care_subsidy_eligible_child": { - "label": "gov.states.ne.dhhs.child_care_subsidy.ne_child_care_subsidy_eligible_child", - "description": null, - "index": 0 - }, - "gov.states.ne.dhhs.child_care_subsidy.ne_child_care_subsidy": { - "label": "gov.states.ne.dhhs.child_care_subsidy.ne_child_care_subsidy", - "description": null, - "index": 0 - }, - "gov.states.ne.dhhs.child_care_subsidy.ne_child_care_subsidy_eligible_parent": { - "label": "gov.states.ne.dhhs.child_care_subsidy.ne_child_care_subsidy_eligible_parent", - "description": null, - "index": 0 - }, - "gov.states.ne.dhhs.child_care_subsidy.ne_child_care_subsidy_eligible": { - "label": "gov.states.ne.dhhs.child_care_subsidy.ne_child_care_subsidy_eligible", - "description": null, - "index": 0 - }, - "gov.states.ne.dhhs.child_care_subsidy.ne_child_care_subsidy_income_eligible": { - "label": "gov.states.ne.dhhs.child_care_subsidy.ne_child_care_subsidy_income_eligible", - "description": null, - "index": 0 - }, - "gov.states.ne.tax.income.ne_income_tax_before_credits": { - "label": "gov.states.ne.tax.income.ne_income_tax_before_credits", - "description": null, - "index": 0 - }, - "gov.states.ne.tax.income.ne_withheld_income_tax": { - "label": "gov.states.ne.tax.income.ne_withheld_income_tax", - "description": null, - "index": 0 - }, - "gov.states.ne.tax.income.ne_income_tax_before_refundable_credits": { - "label": "gov.states.ne.tax.income.ne_income_tax_before_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.ne.tax.income.ne_income_tax": { - "label": "gov.states.ne.tax.income.ne_income_tax", - "description": null, - "index": 0 - }, - "gov.states.ne.tax.income.ne_nonrefundable_credits": { - "label": "gov.states.ne.tax.income.ne_nonrefundable_credits", - "description": null, - "index": 0 - }, - "gov.states.ne.tax.income.ne_taxable_income": { - "label": "gov.states.ne.tax.income.ne_taxable_income", - "description": null, - "index": 0 - }, - "gov.states.ne.tax.income.ne_refundable_credits": { - "label": "gov.states.ne.tax.income.ne_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.ne.tax.income.credits.ne_elderly_disabled_credit": { - "label": "gov.states.ne.tax.income.credits.ne_elderly_disabled_credit", - "description": null, - "index": 0 - }, - "gov.states.ne.tax.income.credits.eitc.ne_eitc": { - "label": "gov.states.ne.tax.income.credits.eitc.ne_eitc", - "description": null, - "index": 0 - }, - "gov.states.ne.tax.income.credits.school_readiness.ne_school_readiness_credit": { - "label": "gov.states.ne.tax.income.credits.school_readiness.ne_school_readiness_credit", - "description": null, - "index": 0 - }, - "gov.states.ne.tax.income.credits.school_readiness.ne_school_readiness_credit_child_care_worker_rating": { - "label": "gov.states.ne.tax.income.credits.school_readiness.ne_school_readiness_credit_child_care_worker_rating", - "description": null, - "index": 0 - }, - "gov.states.ne.tax.income.credits.school_readiness.ne_school_readiness_credit_eligible_worker": { - "label": "gov.states.ne.tax.income.credits.school_readiness.ne_school_readiness_credit_eligible_worker", - "description": null, - "index": 0 - }, - "gov.states.ne.tax.income.credits.ctc.refundable.ne_refundable_ctc": { - "label": "gov.states.ne.tax.income.credits.ctc.refundable.ne_refundable_ctc", - "description": null, - "index": 0 - }, - "gov.states.ne.tax.income.credits.ctc.refundable.ne_refundable_ctc_total_household_income": { - "label": "gov.states.ne.tax.income.credits.ctc.refundable.ne_refundable_ctc_total_household_income", - "description": null, - "index": 0 - }, - "gov.states.ne.tax.income.credits.ctc.refundable.ne_refundable_ctc_income_eligible": { - "label": "gov.states.ne.tax.income.credits.ctc.refundable.ne_refundable_ctc_income_eligible", - "description": null, - "index": 0 - }, - "gov.states.ne.tax.income.credits.ctc.refundable.ne_refundable_ctc_eligible_child": { - "label": "gov.states.ne.tax.income.credits.ctc.refundable.ne_refundable_ctc_eligible_child", - "description": null, - "index": 0 - }, - "gov.states.ne.tax.income.credits.cdcc.ne_cdcc_refundable_eligible": { - "label": "gov.states.ne.tax.income.credits.cdcc.ne_cdcc_refundable_eligible", - "description": null, - "index": 0 - }, - "gov.states.ne.tax.income.credits.cdcc.ne_cdcc_nonrefundable": { - "label": "gov.states.ne.tax.income.credits.cdcc.ne_cdcc_nonrefundable", - "description": null, - "index": 0 - }, - "gov.states.ne.tax.income.credits.cdcc.ne_cdcc_refundable": { - "label": "gov.states.ne.tax.income.credits.cdcc.ne_cdcc_refundable", - "description": null, - "index": 0 - }, - "gov.states.ne.tax.income.exemptions.ne_exemptions": { - "label": "gov.states.ne.tax.income.exemptions.ne_exemptions", - "description": null, - "index": 0 - }, - "gov.states.ne.tax.income.adjusted_gross_income.ne_agi": { - "label": "gov.states.ne.tax.income.adjusted_gross_income.ne_agi", - "description": null, - "index": 0 - }, - "gov.states.ne.tax.income.adjusted_gross_income.ne_additions": { - "label": "gov.states.ne.tax.income.adjusted_gross_income.ne_additions", - "description": null, - "index": 0 - }, - "gov.states.ne.tax.income.adjusted_gross_income.ne_agi_subtractions": { - "label": "gov.states.ne.tax.income.adjusted_gross_income.ne_agi_subtractions", - "description": null, - "index": 0 - }, - "gov.states.ne.tax.income.adjusted_gross_income.subtractions.ne_social_security_subtraction": { - "label": "gov.states.ne.tax.income.adjusted_gross_income.subtractions.ne_social_security_subtraction", - "description": null, - "index": 0 - }, - "gov.states.ne.tax.income.adjusted_gross_income.subtractions.ne_military_retirement_substraction": { - "label": "gov.states.ne.tax.income.adjusted_gross_income.subtractions.ne_military_retirement_substraction", - "description": null, - "index": 0 - }, - "gov.states.ne.tax.income.deductions.ne_itemized_deductions": { - "label": "gov.states.ne.tax.income.deductions.ne_itemized_deductions", - "description": null, - "index": 0 - }, - "gov.states.ne.tax.income.deductions.ne_standard_deduction": { - "label": "gov.states.ne.tax.income.deductions.ne_standard_deduction", - "description": null, - "index": 0 - }, - "gov.states.ne.tax.income.deductions.ne_base_standard_deduction": { - "label": "gov.states.ne.tax.income.deductions.ne_base_standard_deduction", - "description": null, - "index": 0 - }, - "gov.states.wa.tax.income.wa_capital_gains_tax": { - "label": "gov.states.wa.tax.income.wa_capital_gains_tax", - "description": null, - "index": 0 - }, - "gov.states.wa.tax.income.wa_income_tax": { - "label": "gov.states.wa.tax.income.wa_income_tax", - "description": null, - "index": 0 - }, - "gov.states.wa.tax.income.wa_income_tax_before_refundable_credits": { - "label": "gov.states.wa.tax.income.wa_income_tax_before_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.wa.tax.income.credits.wa_working_families_tax_credit": { - "label": "gov.states.wa.tax.income.credits.wa_working_families_tax_credit", - "description": null, - "index": 0 - }, - "gov.states.wa.tax.income.credits.wa_refundable_credits": { - "label": "gov.states.wa.tax.income.credits.wa_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.wa.dshs.tanf.wa_tanf_countable_resources": { - "label": "gov.states.wa.dshs.tanf.wa_tanf_countable_resources", - "description": null, - "index": 0 - }, - "gov.states.wa.dshs.tanf.wa_tanf_resources_eligible": { - "label": "gov.states.wa.dshs.tanf.wa_tanf_resources_eligible", - "description": null, - "index": 0 - }, - "gov.states.hi.tax.income.hi_refundable_credits": { - "label": "gov.states.hi.tax.income.hi_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.hi.tax.income.hi_taxable_income": { - "label": "gov.states.hi.tax.income.hi_taxable_income", - "description": null, - "index": 0 - }, - "gov.states.hi.tax.income.hi_subtractions": { - "label": "gov.states.hi.tax.income.hi_subtractions", - "description": null, - "index": 0 - }, - "gov.states.hi.tax.income.hi_additions": { - "label": "gov.states.hi.tax.income.hi_additions", - "description": null, - "index": 0 - }, - "gov.states.hi.tax.income.hi_agi": { - "label": "gov.states.hi.tax.income.hi_agi", - "description": null, - "index": 0 - }, - "gov.states.hi.tax.income.hi_income_tax_before_non_refundable_credits": { - "label": "gov.states.hi.tax.income.hi_income_tax_before_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.hi.tax.income.hi_non_refundable_credits": { - "label": "gov.states.hi.tax.income.hi_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.hi.tax.income.hi_income_tax": { - "label": "gov.states.hi.tax.income.hi_income_tax", - "description": null, - "index": 0 - }, - "gov.states.hi.tax.income.hi_withheld_income_tax": { - "label": "gov.states.hi.tax.income.hi_withheld_income_tax", - "description": null, - "index": 0 - }, - "gov.states.hi.tax.income.hi_income_tax_before_refundable_credits": { - "label": "gov.states.hi.tax.income.hi_income_tax_before_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.hi.tax.income.credits.hi_eitc": { - "label": "gov.states.hi.tax.income.credits.hi_eitc", - "description": null, - "index": 0 - }, - "gov.states.hi.tax.income.credits.cdcc.hi_cdcc": { - "label": "gov.states.hi.tax.income.credits.cdcc.hi_cdcc", - "description": null, - "index": 0 - }, - "gov.states.hi.tax.income.credits.cdcc.dependent_care_benefit.hi_cdcc_min_head_spouse_earned": { - "label": "gov.states.hi.tax.income.credits.cdcc.dependent_care_benefit.hi_cdcc_min_head_spouse_earned", - "description": null, - "index": 0 - }, - "gov.states.hi.tax.income.credits.cdcc.dependent_care_benefit.hi_cdcc_income_floor_eligible": { - "label": "gov.states.hi.tax.income.credits.cdcc.dependent_care_benefit.hi_cdcc_income_floor_eligible", - "description": null, - "index": 0 - }, - "gov.states.hi.tax.income.credits.cdcc.dependent_care_benefit.hi_dependent_care_benefits": { - "label": "gov.states.hi.tax.income.credits.cdcc.dependent_care_benefit.hi_dependent_care_benefits", - "description": null, - "index": 0 - }, - "gov.states.hi.tax.income.credits.food_excise.hi_food_excise_credit_minor_child_count": { - "label": "gov.states.hi.tax.income.credits.food_excise.hi_food_excise_credit_minor_child_count", - "description": null, - "index": 0 - }, - "gov.states.hi.tax.income.credits.food_excise.hi_food_excise_credit": { - "label": "gov.states.hi.tax.income.credits.food_excise.hi_food_excise_credit", - "description": null, - "index": 0 - }, - "gov.states.hi.tax.income.credits.food_excise.hi_food_excise_credit_child_receiving_public_support": { - "label": "gov.states.hi.tax.income.credits.food_excise.hi_food_excise_credit_child_receiving_public_support", - "description": null, - "index": 0 - }, - "gov.states.hi.tax.income.credits.food_excise.hi_food_excise_exemption_amount": { - "label": "gov.states.hi.tax.income.credits.food_excise.hi_food_excise_exemption_amount", - "description": null, - "index": 0 - }, - "gov.states.hi.tax.income.credits.food_excise.hi_food_excise_credit_minor_child_amount": { - "label": "gov.states.hi.tax.income.credits.food_excise.hi_food_excise_credit_minor_child_amount", - "description": null, - "index": 0 - }, - "gov.states.hi.tax.income.credits.hi_low_income_household_renters.hi_low_income_household_renters_tax_credit": { - "label": "gov.states.hi.tax.income.credits.hi_low_income_household_renters.hi_low_income_household_renters_tax_credit", - "description": null, - "index": 0 - }, - "gov.states.hi.tax.income.credits.hi_low_income_household_renters.hi_tax_credit_for_low_income_household_renters_eligible": { - "label": "gov.states.hi.tax.income.credits.hi_low_income_household_renters.hi_tax_credit_for_low_income_household_renters_eligible", - "description": null, - "index": 0 - }, - "gov.states.hi.tax.income.exemptions.hi_regular_exemptions": { - "label": "gov.states.hi.tax.income.exemptions.hi_regular_exemptions", - "description": null, - "index": 0 - }, - "gov.states.hi.tax.income.exemptions.hi_exemptions": { - "label": "gov.states.hi.tax.income.exemptions.hi_exemptions", - "description": null, - "index": 0 - }, - "gov.states.hi.tax.income.exemptions.hi_disabled_exemptions": { - "label": "gov.states.hi.tax.income.exemptions.hi_disabled_exemptions", - "description": null, - "index": 0 - }, - "gov.states.hi.tax.income.subtractions.hi_military_pay_exclusion": { - "label": "gov.states.hi.tax.income.subtractions.hi_military_pay_exclusion", - "description": null, - "index": 0 - }, - "gov.states.hi.tax.income.alternative_tax.hi_alternative_tax_on_capital_gains_eligible": { - "label": "gov.states.hi.tax.income.alternative_tax.hi_alternative_tax_on_capital_gains_eligible", - "description": null, - "index": 0 - }, - "gov.states.hi.tax.income.alternative_tax.hi_alternative_tax_on_capital_gains": { - "label": "gov.states.hi.tax.income.alternative_tax.hi_alternative_tax_on_capital_gains", - "description": null, - "index": 0 - }, - "gov.states.hi.tax.income.alternative_tax.hi_taxable_income_for_alternative_tax": { - "label": "gov.states.hi.tax.income.alternative_tax.hi_taxable_income_for_alternative_tax", - "description": null, - "index": 0 - }, - "gov.states.hi.tax.income.deductions.hi_deductions": { - "label": "gov.states.hi.tax.income.deductions.hi_deductions", - "description": null, - "index": 0 - }, - "gov.states.hi.tax.income.deductions.itemized.hi_itemized_deductions": { - "label": "gov.states.hi.tax.income.deductions.itemized.hi_itemized_deductions", - "description": null, - "index": 0 - }, - "gov.states.hi.tax.income.deductions.itemized.hi_interest_deduction": { - "label": "gov.states.hi.tax.income.deductions.itemized.hi_interest_deduction", - "description": null, - "index": 0 - }, - "gov.states.hi.tax.income.deductions.itemized.hi_salt_deduction": { - "label": "gov.states.hi.tax.income.deductions.itemized.hi_salt_deduction", - "description": null, - "index": 0 - }, - "gov.states.hi.tax.income.deductions.itemized.hi_reduced_itemized_deductions": { - "label": "gov.states.hi.tax.income.deductions.itemized.hi_reduced_itemized_deductions", - "description": null, - "index": 0 - }, - "gov.states.hi.tax.income.deductions.itemized.hi_medical_expense_deduction": { - "label": "gov.states.hi.tax.income.deductions.itemized.hi_medical_expense_deduction", - "description": null, - "index": 0 - }, - "gov.states.hi.tax.income.deductions.itemized.hi_casualty_loss_deduction": { - "label": "gov.states.hi.tax.income.deductions.itemized.hi_casualty_loss_deduction", - "description": null, - "index": 0 - }, - "gov.states.hi.tax.income.deductions.itemized.hi_total_itemized_deductions": { - "label": "gov.states.hi.tax.income.deductions.itemized.hi_total_itemized_deductions", - "description": null, - "index": 0 - }, - "gov.states.hi.tax.income.deductions.standard.hi_standard_deduction": { - "label": "gov.states.hi.tax.income.deductions.standard.hi_standard_deduction", - "description": null, - "index": 0 - }, - "gov.states.tax.sales.state_sales_tax": { - "label": "gov.states.tax.sales.state_sales_tax", - "description": null, - "index": 0 - }, - "gov.states.tax.income.state_refundable_credits": { - "label": "gov.states.tax.income.state_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.tax.income.state_itemized_deductions": { - "label": "gov.states.tax.income.state_itemized_deductions", - "description": null, - "index": 0 - }, - "gov.states.tax.income.state_standard_deduction": { - "label": "gov.states.tax.income.state_standard_deduction", - "description": null, - "index": 0 - }, - "gov.states.tax.income.state_eitc": { - "label": "gov.states.tax.income.state_eitc", - "description": null, - "index": 0 - }, - "gov.states.tax.income.state_agi": { - "label": "gov.states.tax.income.state_agi", - "description": null, - "index": 0 - }, - "gov.states.tax.income.state_property_tax_credit": { - "label": "gov.states.tax.income.state_property_tax_credit", - "description": null, - "index": 0 - }, - "gov.states.tax.income.state_withheld_income_tax": { - "label": "gov.states.tax.income.state_withheld_income_tax", - "description": null, - "index": 0 - }, - "gov.states.tax.income.state_cdcc": { - "label": "gov.states.tax.income.state_cdcc", - "description": null, - "index": 0 - }, - "gov.states.tax.income.state_ctc": { - "label": "gov.states.tax.income.state_ctc", - "description": null, - "index": 0 - }, - "gov.states.tax.income.state_income_tax": { - "label": "gov.states.tax.income.state_income_tax", - "description": null, - "index": 0 - }, - "gov.states.tax.income._generate_state_mfs_variables": { - "label": "gov.states.tax.income._generate_state_mfs_variables", - "description": null, - "index": 0 - }, - "gov.states.tax.income.state_income_tax_before_refundable_credits": { - "label": "gov.states.tax.income.state_income_tax_before_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.tax.income.state_taxable_income": { - "label": "gov.states.tax.income.state_taxable_income", - "description": null, - "index": 0 - }, - "gov.states.nh.tax.credits.nh_education_tax_credit": { - "label": "gov.states.nh.tax.credits.nh_education_tax_credit", - "description": null, - "index": 0 - }, - "gov.states.nh.tax.income.nh_income_tax_before_refundable_credits": { - "label": "gov.states.nh.tax.income.nh_income_tax_before_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.nh.tax.income.nh_income_tax": { - "label": "gov.states.nh.tax.income.nh_income_tax", - "description": null, - "index": 0 - }, - "gov.states.nh.tax.income.nh_refundable_credits": { - "label": "gov.states.nh.tax.income.nh_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.nh.tax.income.nh_taxable_income": { - "label": "gov.states.nh.tax.income.nh_taxable_income", - "description": null, - "index": 0 - }, - "gov.states.nh.tax.income.exemptions.nh_base_exemption": { - "label": "gov.states.nh.tax.income.exemptions.nh_base_exemption", - "description": null, - "index": 0 - }, - "gov.states.nh.tax.income.exemptions.nh_old_age_exemption": { - "label": "gov.states.nh.tax.income.exemptions.nh_old_age_exemption", - "description": null, - "index": 0 - }, - "gov.states.nh.tax.income.exemptions.nh_total_exemptions": { - "label": "gov.states.nh.tax.income.exemptions.nh_total_exemptions", - "description": null, - "index": 0 - }, - "gov.states.nh.tax.income.exemptions.nh_disabled_exemption": { - "label": "gov.states.nh.tax.income.exemptions.nh_disabled_exemption", - "description": null, - "index": 0 - }, - "gov.states.nh.tax.income.exemptions.nh_blind_exemption": { - "label": "gov.states.nh.tax.income.exemptions.nh_blind_exemption", - "description": null, - "index": 0 - }, - "gov.states.mo.dss.tanf.mo_tanf_income_limit": { - "label": "gov.states.mo.dss.tanf.mo_tanf_income_limit", - "description": null, - "index": 0 - }, - "gov.states.mo.tax.income.mo_withheld_income_tax": { - "label": "gov.states.mo.tax.income.mo_withheld_income_tax", - "description": null, - "index": 0 - }, - "gov.states.mo.tax.income.credits.mo_non_refundable_credits": { - "label": "gov.states.mo.tax.income.credits.mo_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.mo.tax.income.credits.mo_refundable_credits": { - "label": "gov.states.mo.tax.income.credits.mo_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.mo.tax.income.credits.mo_wftc": { - "label": "gov.states.mo.tax.income.credits.mo_wftc", - "description": null, - "index": 0 - }, - "gov.states.mo.tax.income.credits.property_tax.mo_property_tax_credit": { - "label": "gov.states.mo.tax.income.credits.property_tax.mo_property_tax_credit", - "description": null, - "index": 0 - }, - "gov.states.mo.tax.income.credits.property_tax.mo_ptc_net_income": { - "label": "gov.states.mo.tax.income.credits.property_tax.mo_ptc_net_income", - "description": null, - "index": 0 - }, - "gov.states.mo.tax.income.credits.property_tax.mo_ptc_gross_income": { - "label": "gov.states.mo.tax.income.credits.property_tax.mo_ptc_gross_income", - "description": null, - "index": 0 - }, - "gov.states.mo.tax.income.credits.property_tax.mo_ptc_income_offset": { - "label": "gov.states.mo.tax.income.credits.property_tax.mo_ptc_income_offset", - "description": null, - "index": 0 - }, - "gov.states.mo.tax.income.credits.property_tax.mo_ptc_taxunit_eligible": { - "label": "gov.states.mo.tax.income.credits.property_tax.mo_ptc_taxunit_eligible", - "description": null, - "index": 0 - }, - "gov.states.mo.tax.income.adjusted_gross_income.mo_adjusted_gross_income": { - "label": "gov.states.mo.tax.income.adjusted_gross_income.mo_adjusted_gross_income", - "description": null, - "index": 0 - }, - "gov.states.mo.tax.income.taxable_income.mo_net_state_income_taxes": { - "label": "gov.states.mo.tax.income.taxable_income.mo_net_state_income_taxes", - "description": null, - "index": 0 - }, - "gov.states.mo.tax.income.taxable_income.mo_taxable_income": { - "label": "gov.states.mo.tax.income.taxable_income.mo_taxable_income", - "description": null, - "index": 0 - }, - "gov.states.mo.tax.income.subtractions.mo_qualified_health_insurance_premiums": { - "label": "gov.states.mo.tax.income.subtractions.mo_qualified_health_insurance_premiums", - "description": null, - "index": 0 - }, - "gov.states.mo.tax.income.income_tax.mo_income_tax": { - "label": "gov.states.mo.tax.income.income_tax.mo_income_tax", - "description": null, - "index": 0 - }, - "gov.states.mo.tax.income.income_tax.mo_income_tax_before_credits": { - "label": "gov.states.mo.tax.income.income_tax.mo_income_tax_before_credits", - "description": null, - "index": 0 - }, - "gov.states.mo.tax.income.income_tax.mo_income_tax_exempt": { - "label": "gov.states.mo.tax.income.income_tax.mo_income_tax_exempt", - "description": null, - "index": 0 - }, - "gov.states.mo.tax.income.income_tax.mo_income_tax_before_refundable_credits": { - "label": "gov.states.mo.tax.income.income_tax.mo_income_tax_before_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.mo.tax.income.deductions.mo_federal_income_tax_deduction": { - "label": "gov.states.mo.tax.income.deductions.mo_federal_income_tax_deduction", - "description": null, - "index": 0 - }, - "gov.states.mo.tax.income.deductions.mo_pension_and_ss_or_ssd_deduction_section_a": { - "label": "gov.states.mo.tax.income.deductions.mo_pension_and_ss_or_ssd_deduction_section_a", - "description": null, - "index": 0 - }, - "gov.states.mo.tax.income.deductions.mo_pension_and_ss_or_ssd_deduction": { - "label": "gov.states.mo.tax.income.deductions.mo_pension_and_ss_or_ssd_deduction", - "description": null, - "index": 0 - }, - "gov.states.mo.tax.income.deductions.mo_itemized_deductions": { - "label": "gov.states.mo.tax.income.deductions.mo_itemized_deductions", - "description": null, - "index": 0 - }, - "gov.states.mo.tax.income.deductions.mo_pension_and_ss_or_ssd_deduction_section_b": { - "label": "gov.states.mo.tax.income.deductions.mo_pension_and_ss_or_ssd_deduction_section_b", - "description": null, - "index": 0 - }, - "gov.states.mo.tax.income.deductions.mo_business_income_deduction": { - "label": "gov.states.mo.tax.income.deductions.mo_business_income_deduction", - "description": null, - "index": 0 - }, - "gov.states.mo.tax.income.deductions.mo_pension_and_ss_or_ssd_deduction_section_c": { - "label": "gov.states.mo.tax.income.deductions.mo_pension_and_ss_or_ssd_deduction_section_c", - "description": null, - "index": 0 - }, - "gov.states.nc.tax.income.nc_income_tax_before_credits": { - "label": "gov.states.nc.tax.income.nc_income_tax_before_credits", - "description": null, - "index": 0 - }, - "gov.states.nc.tax.income.nc_withheld_income_tax": { - "label": "gov.states.nc.tax.income.nc_withheld_income_tax", - "description": null, - "index": 0 - }, - "gov.states.nc.tax.income.nc_additions": { - "label": "gov.states.nc.tax.income.nc_additions", - "description": null, - "index": 0 - }, - "gov.states.nc.tax.income.nc_taxable_income": { - "label": "gov.states.nc.tax.income.nc_taxable_income", - "description": null, - "index": 0 - }, - "gov.states.nc.tax.income.nc_income_tax": { - "label": "gov.states.nc.tax.income.nc_income_tax", - "description": null, - "index": 0 - }, - "gov.states.nc.tax.income.nc_non_refundable_credits": { - "label": "gov.states.nc.tax.income.nc_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.nc.tax.income.nc_use_tax": { - "label": "gov.states.nc.tax.income.nc_use_tax", - "description": null, - "index": 0 - }, - "gov.states.nc.tax.income.credits.nc_ctc": { - "label": "gov.states.nc.tax.income.credits.nc_ctc", - "description": null, - "index": 0 - }, - "gov.states.nc.tax.income.deductions.nc_deductions": { - "label": "gov.states.nc.tax.income.deductions.nc_deductions", - "description": null, - "index": 0 - }, - "gov.states.nc.tax.income.deductions.nc_standard_or_itemized_deductions": { - "label": "gov.states.nc.tax.income.deductions.nc_standard_or_itemized_deductions", - "description": null, - "index": 0 - }, - "gov.states.nc.tax.income.deductions.nc_itemized_deductions": { - "label": "gov.states.nc.tax.income.deductions.nc_itemized_deductions", - "description": null, - "index": 0 - }, - "gov.states.nc.tax.income.deductions.nc_child_deduction": { - "label": "gov.states.nc.tax.income.deductions.nc_child_deduction", - "description": null, - "index": 0 - }, - "gov.states.nc.tax.income.deductions.nc_standard_deduction": { - "label": "gov.states.nc.tax.income.deductions.nc_standard_deduction", - "description": null, - "index": 0 - }, - "gov.states.nc.tax.income.deductions.military_retirement.nc_military_retirement_deduction_eligible": { - "label": "gov.states.nc.tax.income.deductions.military_retirement.nc_military_retirement_deduction_eligible", - "description": null, - "index": 0 - }, - "gov.states.nc.tax.income.deductions.military_retirement.nc_military_retirement_deduction": { - "label": "gov.states.nc.tax.income.deductions.military_retirement.nc_military_retirement_deduction", - "description": null, - "index": 0 - }, - "gov.states.nc.ncdhhs.scca.nc_scca_child_age_eligible": { - "label": "gov.states.nc.ncdhhs.scca.nc_scca_child_age_eligible", - "description": null, - "index": 0 - }, - "gov.states.nc.ncdhhs.scca.nc_scca_has_eligible_child": { - "label": "gov.states.nc.ncdhhs.scca.nc_scca_has_eligible_child", - "description": null, - "index": 0 - }, - "gov.states.nc.ncdhhs.scca.nc_scca_market_rate": { - "label": "gov.states.nc.ncdhhs.scca.nc_scca_market_rate", - "description": null, - "index": 0 - }, - "gov.states.nc.ncdhhs.scca.nc_scca": { - "label": "gov.states.nc.ncdhhs.scca.nc_scca", - "description": null, - "index": 0 - }, - "gov.states.nc.ncdhhs.scca.nc_scca_age_group": { - "label": "gov.states.nc.ncdhhs.scca.nc_scca_age_group", - "description": null, - "index": 0 - }, - "gov.states.nc.ncdhhs.scca.nc_scca_countable_income": { - "label": "gov.states.nc.ncdhhs.scca.nc_scca_countable_income", - "description": null, - "index": 0 - }, - "gov.states.nc.ncdhhs.scca.nc_scca_is_school_age": { - "label": "gov.states.nc.ncdhhs.scca.nc_scca_is_school_age", - "description": null, - "index": 0 - }, - "gov.states.nc.ncdhhs.scca.nc_scca_fpg_rate": { - "label": "gov.states.nc.ncdhhs.scca.nc_scca_fpg_rate", - "description": null, - "index": 0 - }, - "gov.states.nc.ncdhhs.scca.nc_scca_parent_fee": { - "label": "gov.states.nc.ncdhhs.scca.nc_scca_parent_fee", - "description": null, - "index": 0 - }, - "gov.states.nc.ncdhhs.scca.entry.nc_scca_entry_income_eligible": { - "label": "gov.states.nc.ncdhhs.scca.entry.nc_scca_entry_income_eligible", - "description": null, - "index": 0 - }, - "gov.states.nc.ncdhhs.scca.entry.nc_scca_entry_eligible": { - "label": "gov.states.nc.ncdhhs.scca.entry.nc_scca_entry_eligible", - "description": null, - "index": 0 - }, - "gov.states.nc.ncdhhs.tanf.nc_tanf_eligible": { - "label": "gov.states.nc.ncdhhs.tanf.nc_tanf_eligible", - "description": null, - "index": 0 - }, - "gov.states.nc.ncdhhs.tanf.nc_demographic_tanf_eligible": { - "label": "gov.states.nc.ncdhhs.tanf.nc_demographic_tanf_eligible", - "description": null, - "index": 0 - }, - "gov.states.nc.ncdhhs.tanf.nc_tanf": { - "label": "gov.states.nc.ncdhhs.tanf.nc_tanf", - "description": null, - "index": 0 - }, - "gov.states.nc.ncdhhs.tanf.nc_tanf_reduced_need_standard": { - "label": "gov.states.nc.ncdhhs.tanf.nc_tanf_reduced_need_standard", - "description": null, - "index": 0 - }, - "gov.states.nc.ncdhhs.tanf.nc_tanf_income_eligible": { - "label": "gov.states.nc.ncdhhs.tanf.nc_tanf_income_eligible", - "description": null, - "index": 0 - }, - "gov.states.nc.ncdhhs.tanf.nc_tanf_need_standard": { - "label": "gov.states.nc.ncdhhs.tanf.nc_tanf_need_standard", - "description": null, - "index": 0 - }, - "gov.states.nc.ncdhhs.tanf.income.nc_tanf_countable_gross_unearned_income": { - "label": "gov.states.nc.ncdhhs.tanf.income.nc_tanf_countable_gross_unearned_income", - "description": null, - "index": 0 - }, - "gov.states.nc.ncdhhs.tanf.income.nc_tanf_countable_earned_income": { - "label": "gov.states.nc.ncdhhs.tanf.income.nc_tanf_countable_earned_income", - "description": null, - "index": 0 - }, - "gov.states.sc.tax.income.sc_taxable_income": { - "label": "gov.states.sc.tax.income.sc_taxable_income", - "description": null, - "index": 0 - }, - "gov.states.sc.tax.income.sc_income_tax": { - "label": "gov.states.sc.tax.income.sc_income_tax", - "description": null, - "index": 0 - }, - "gov.states.sc.tax.income.sc_refundable_credits": { - "label": "gov.states.sc.tax.income.sc_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.sc.tax.income.sc_income_tax_before_refundable_credits": { - "label": "gov.states.sc.tax.income.sc_income_tax_before_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.sc.tax.income.sc_withheld_income_tax": { - "label": "gov.states.sc.tax.income.sc_withheld_income_tax", - "description": null, - "index": 0 - }, - "gov.states.sc.tax.income.sc_non_refundable_credits": { - "label": "gov.states.sc.tax.income.sc_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.sc.tax.income.sc_income_tax_before_non_refundable_credits": { - "label": "gov.states.sc.tax.income.sc_income_tax_before_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.sc.tax.income.credits.eitc.sc_eitc": { - "label": "gov.states.sc.tax.income.credits.eitc.sc_eitc", - "description": null, - "index": 0 - }, - "gov.states.sc.tax.income.credits.cdcc.sc_cdcc": { - "label": "gov.states.sc.tax.income.credits.cdcc.sc_cdcc", - "description": null, - "index": 0 - }, - "gov.states.sc.tax.income.credits.two_wage_earner.sc_two_wage_earner_credit": { - "label": "gov.states.sc.tax.income.credits.two_wage_earner.sc_two_wage_earner_credit", - "description": null, - "index": 0 - }, - "gov.states.sc.tax.income.credits.two_wage_earner.sc_gross_earned_income": { - "label": "gov.states.sc.tax.income.credits.two_wage_earner.sc_gross_earned_income", - "description": null, - "index": 0 - }, - "gov.states.sc.tax.income.credits.college_tuition.sc_tuition_credit": { - "label": "gov.states.sc.tax.income.credits.college_tuition.sc_tuition_credit", - "description": null, - "index": 0 - }, - "gov.states.sc.tax.income.credits.college_tuition.sc_tuition_credit_eligible": { - "label": "gov.states.sc.tax.income.credits.college_tuition.sc_tuition_credit_eligible", - "description": null, - "index": 0 - }, - "gov.states.sc.tax.income.exemptions.sc_dependent_exemption": { - "label": "gov.states.sc.tax.income.exemptions.sc_dependent_exemption", - "description": null, - "index": 0 - }, - "gov.states.sc.tax.income.exemptions.senior.sc_senior_exemption_person": { - "label": "gov.states.sc.tax.income.exemptions.senior.sc_senior_exemption_person", - "description": null, - "index": 0 - }, - "gov.states.sc.tax.income.exemptions.senior.sc_senior_exemption": { - "label": "gov.states.sc.tax.income.exemptions.senior.sc_senior_exemption", - "description": null, - "index": 0 - }, - "gov.states.sc.tax.income.subtractions.sc_subtractions": { - "label": "gov.states.sc.tax.income.subtractions.sc_subtractions", - "description": null, - "index": 0 - }, - "gov.states.sc.tax.income.subtractions.military_retirement.sc_military_deduction_indv": { - "label": "gov.states.sc.tax.income.subtractions.military_retirement.sc_military_deduction_indv", - "description": null, - "index": 0 - }, - "gov.states.sc.tax.income.subtractions.military_retirement.sc_military_deduction_survivors": { - "label": "gov.states.sc.tax.income.subtractions.military_retirement.sc_military_deduction_survivors", - "description": null, - "index": 0 - }, - "gov.states.sc.tax.income.subtractions.military_retirement.sc_military_deduction": { - "label": "gov.states.sc.tax.income.subtractions.military_retirement.sc_military_deduction", - "description": null, - "index": 0 - }, - "gov.states.sc.tax.income.subtractions.retirement.sc_retirement_cap": { - "label": "gov.states.sc.tax.income.subtractions.retirement.sc_retirement_cap", - "description": null, - "index": 0 - }, - "gov.states.sc.tax.income.subtractions.retirement.sc_retirement_deduction_survivors": { - "label": "gov.states.sc.tax.income.subtractions.retirement.sc_retirement_deduction_survivors", - "description": null, - "index": 0 - }, - "gov.states.sc.tax.income.subtractions.retirement.sc_retirement_deduction_indv": { - "label": "gov.states.sc.tax.income.subtractions.retirement.sc_retirement_deduction_indv", - "description": null, - "index": 0 - }, - "gov.states.sc.tax.income.subtractions.retirement.sc_retirement_deduction": { - "label": "gov.states.sc.tax.income.subtractions.retirement.sc_retirement_deduction", - "description": null, - "index": 0 - }, - "gov.states.sc.tax.income.additions.sc_additions": { - "label": "gov.states.sc.tax.income.additions.sc_additions", - "description": null, - "index": 0 - }, - "gov.states.sc.tax.income.additions.sc_state_tax_addback": { - "label": "gov.states.sc.tax.income.additions.sc_state_tax_addback", - "description": null, - "index": 0 - }, - "gov.states.sc.tax.income.deductions.sc_young_child_deduction": { - "label": "gov.states.sc.tax.income.deductions.sc_young_child_deduction", - "description": null, - "index": 0 - }, - "gov.states.sc.tax.income.deductions.net_capital_gain.sc_net_capital_gain_deduction": { - "label": "gov.states.sc.tax.income.deductions.net_capital_gain.sc_net_capital_gain_deduction", - "description": null, - "index": 0 - }, - "gov.states.ms.tax.income.ms_withheld_income_tax": { - "label": "gov.states.ms.tax.income.ms_withheld_income_tax", - "description": null, - "index": 0 - }, - "gov.states.ms.tax.income.ms_prorate_fraction": { - "label": "gov.states.ms.tax.income.ms_prorate_fraction", - "description": null, - "index": 0 - }, - "gov.states.ms.tax.income.ms_income_tax": { - "label": "gov.states.ms.tax.income.ms_income_tax", - "description": null, - "index": 0 - }, - "gov.states.ms.tax.income.ms_files_separately": { - "label": "gov.states.ms.tax.income.ms_files_separately", - "description": null, - "index": 0 - }, - "gov.states.ms.tax.income.ms_income_tax_before_credits_joint": { - "label": "gov.states.ms.tax.income.ms_income_tax_before_credits_joint", - "description": null, - "index": 0 - }, - "gov.states.ms.tax.income.ms_agi_adjustments": { - "label": "gov.states.ms.tax.income.ms_agi_adjustments", - "description": null, - "index": 0 - }, - "gov.states.ms.tax.income.ms_income_tax_before_credits_unit": { - "label": "gov.states.ms.tax.income.ms_income_tax_before_credits_unit", - "description": null, - "index": 0 - }, - "gov.states.ms.tax.income.ms_agi": { - "label": "gov.states.ms.tax.income.ms_agi", - "description": null, - "index": 0 - }, - "gov.states.ms.tax.income.ms_income_tax_before_credits_indiv": { - "label": "gov.states.ms.tax.income.ms_income_tax_before_credits_indiv", - "description": null, - "index": 0 - }, - "gov.states.ms.tax.income.ms_non_refundable_credits": { - "label": "gov.states.ms.tax.income.ms_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.ms.tax.income.ms_refundable_credits": { - "label": "gov.states.ms.tax.income.ms_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.ms.tax.income.adjustments.ms_retirement_income_exemption": { - "label": "gov.states.ms.tax.income.adjustments.ms_retirement_income_exemption", - "description": null, - "index": 0 - }, - "gov.states.ms.tax.income.adjustments.ms_self_employment_adjustment": { - "label": "gov.states.ms.tax.income.adjustments.ms_self_employment_adjustment", - "description": null, - "index": 0 - }, - "gov.states.ms.tax.income.adjustments.ms_national_guard_or_reserve_pay_adjustment": { - "label": "gov.states.ms.tax.income.adjustments.ms_national_guard_or_reserve_pay_adjustment", - "description": null, - "index": 0 - }, - "gov.states.ms.tax.income.credits.cdcc.ms_cdcc": { - "label": "gov.states.ms.tax.income.credits.cdcc.ms_cdcc", - "description": null, - "index": 0 - }, - "gov.states.ms.tax.income.credits.cdcc.ms_cdcc_eligible": { - "label": "gov.states.ms.tax.income.credits.cdcc.ms_cdcc_eligible", - "description": null, - "index": 0 - }, - "gov.states.ms.tax.income.credits.charitable_contribution.ms_charitable_contributions_credit": { - "label": "gov.states.ms.tax.income.credits.charitable_contribution.ms_charitable_contributions_credit", - "description": null, - "index": 0 - }, - "gov.states.ms.tax.income.credits.charitable_contribution.ms_charitable_contributions_to_qualifying_foster_care_organizations": { - "label": "gov.states.ms.tax.income.credits.charitable_contribution.ms_charitable_contributions_to_qualifying_foster_care_organizations", - "description": null, - "index": 0 - }, - "gov.states.ms.tax.income.exemptions.ms_blind_exemption": { - "label": "gov.states.ms.tax.income.exemptions.ms_blind_exemption", - "description": null, - "index": 0 - }, - "gov.states.ms.tax.income.exemptions.ms_regular_exemption": { - "label": "gov.states.ms.tax.income.exemptions.ms_regular_exemption", - "description": null, - "index": 0 - }, - "gov.states.ms.tax.income.exemptions.ms_total_exemptions": { - "label": "gov.states.ms.tax.income.exemptions.ms_total_exemptions", - "description": null, - "index": 0 - }, - "gov.states.ms.tax.income.exemptions.ms_dependents_exemption": { - "label": "gov.states.ms.tax.income.exemptions.ms_dependents_exemption", - "description": null, - "index": 0 - }, - "gov.states.ms.tax.income.exemptions.ms_aged_exemption": { - "label": "gov.states.ms.tax.income.exemptions.ms_aged_exemption", - "description": null, - "index": 0 - }, - "gov.states.ms.tax.income.exemptions.ms_total_exemptions_joint": { - "label": "gov.states.ms.tax.income.exemptions.ms_total_exemptions_joint", - "description": null, - "index": 0 - }, - "gov.states.ms.tax.income.exemptions.ms_total_exemptions_indiv": { - "label": "gov.states.ms.tax.income.exemptions.ms_total_exemptions_indiv", - "description": null, - "index": 0 - }, - "gov.states.ms.tax.income.taxable_income.ms_taxable_income_indiv": { - "label": "gov.states.ms.tax.income.taxable_income.ms_taxable_income_indiv", - "description": null, - "index": 0 - }, - "gov.states.ms.tax.income.taxable_income.ms_taxable_income_joint": { - "label": "gov.states.ms.tax.income.taxable_income.ms_taxable_income_joint", - "description": null, - "index": 0 - }, - "gov.states.ms.tax.income.taxable_income.ms_pre_deductions_taxable_income_indiv": { - "label": "gov.states.ms.tax.income.taxable_income.ms_pre_deductions_taxable_income_indiv", - "description": null, - "index": 0 - }, - "gov.states.ms.tax.income.deductions.ms_tax_unit_itemizes": { - "label": "gov.states.ms.tax.income.deductions.ms_tax_unit_itemizes", - "description": null, - "index": 0 - }, - "gov.states.ms.tax.income.deductions.ms_deductions_indiv": { - "label": "gov.states.ms.tax.income.deductions.ms_deductions_indiv", - "description": null, - "index": 0 - }, - "gov.states.ms.tax.income.deductions.ms_deductions_joint": { - "label": "gov.states.ms.tax.income.deductions.ms_deductions_joint", - "description": null, - "index": 0 - }, - "gov.states.ms.tax.income.deductions.itemized.ms_itemized_deductions_joint": { - "label": "gov.states.ms.tax.income.deductions.itemized.ms_itemized_deductions_joint", - "description": null, - "index": 0 - }, - "gov.states.ms.tax.income.deductions.itemized.ms_itemized_deductions_unit": { - "label": "gov.states.ms.tax.income.deductions.itemized.ms_itemized_deductions_unit", - "description": null, - "index": 0 - }, - "gov.states.ms.tax.income.deductions.itemized.ms_itemized_deductions_indiv": { - "label": "gov.states.ms.tax.income.deductions.itemized.ms_itemized_deductions_indiv", - "description": null, - "index": 0 - }, - "gov.states.ms.tax.income.deductions.itemized.ms_real_estate_tax_deduction": { - "label": "gov.states.ms.tax.income.deductions.itemized.ms_real_estate_tax_deduction", - "description": null, - "index": 0 - }, - "gov.states.ms.tax.income.deductions.standard.ms_standard_deduction_indiv": { - "label": "gov.states.ms.tax.income.deductions.standard.ms_standard_deduction_indiv", - "description": null, - "index": 0 - }, - "gov.states.ms.tax.income.deductions.standard.ms_standard_deduction_joint": { - "label": "gov.states.ms.tax.income.deductions.standard.ms_standard_deduction_joint", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.ssp.ma_state_living_arrangement": { - "label": "gov.states.ma.dta.ssp.ma_state_living_arrangement", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.ssp.ma_state_supplement": { - "label": "gov.states.ma.dta.ssp.ma_state_supplement", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.ssp.ma_maximum_state_supplement": { - "label": "gov.states.ma.dta.ssp.ma_maximum_state_supplement", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.ma_tcap_gross_unearned_income": { - "label": "gov.states.ma.dta.tcap.ma_tcap_gross_unearned_income", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.ma_tcap_gross_earned_income": { - "label": "gov.states.ma.dta.tcap.ma_tcap_gross_earned_income", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.ma_tafdc_exceeds_eaedc": { - "label": "gov.states.ma.dta.tcap.ma_tafdc_exceeds_eaedc", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.eaedc.ma_eaedc_countable_assets": { - "label": "gov.states.ma.dta.tcap.eaedc.ma_eaedc_countable_assets", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.eaedc.ma_eaedc_if_claimed": { - "label": "gov.states.ma.dta.tcap.eaedc.ma_eaedc_if_claimed", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.eaedc.ma_eaedc": { - "label": "gov.states.ma.dta.tcap.eaedc.ma_eaedc", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.eaedc.dependent_care_deduction.ma_eaedc_dependent_care_deduction": { - "label": "gov.states.ma.dta.tcap.eaedc.dependent_care_deduction.ma_eaedc_dependent_care_deduction", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.eaedc.dependent_care_deduction.ma_eaedc_eligible_dependent": { - "label": "gov.states.ma.dta.tcap.eaedc.dependent_care_deduction.ma_eaedc_eligible_dependent", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.eaedc.dependent_care_deduction.ma_eaedc_dependent_care_deduction_person": { - "label": "gov.states.ma.dta.tcap.eaedc.dependent_care_deduction.ma_eaedc_dependent_care_deduction_person", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.eaedc.income.ma_eaedc_countable_earned_income": { - "label": "gov.states.ma.dta.tcap.eaedc.income.ma_eaedc_countable_earned_income", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.eaedc.income.ma_eaedc_net_income": { - "label": "gov.states.ma.dta.tcap.eaedc.income.ma_eaedc_net_income", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.eaedc.income.ma_eaedc_living_arrangement": { - "label": "gov.states.ma.dta.tcap.eaedc.income.ma_eaedc_living_arrangement", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.eaedc.income.ma_eaedc_standard_assistance": { - "label": "gov.states.ma.dta.tcap.eaedc.income.ma_eaedc_standard_assistance", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.eaedc.income.ma_eaedc_earned_income_after_disregard_person": { - "label": "gov.states.ma.dta.tcap.eaedc.income.ma_eaedc_earned_income_after_disregard_person", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.eaedc.eligibility.ma_eaedc_eligible": { - "label": "gov.states.ma.dta.tcap.eaedc.eligibility.ma_eaedc_eligible", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.eaedc.eligibility.financial.ma_eaedc_income_eligible": { - "label": "gov.states.ma.dta.tcap.eaedc.eligibility.financial.ma_eaedc_income_eligible", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.eaedc.eligibility.financial.ma_eaedc_assets_limit_eligible": { - "label": "gov.states.ma.dta.tcap.eaedc.eligibility.financial.ma_eaedc_assets_limit_eligible", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.eaedc.eligibility.financial.ma_eaedc_financial_eligible": { - "label": "gov.states.ma.dta.tcap.eaedc.eligibility.financial.ma_eaedc_financial_eligible", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.eaedc.eligibility.non_financial.ma_eaedc_immigration_status_eligible": { - "label": "gov.states.ma.dta.tcap.eaedc.eligibility.non_financial.ma_eaedc_immigration_status_eligible", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.eaedc.eligibility.non_financial.ma_eaedc_eligible_disabled_head_or_spouse": { - "label": "gov.states.ma.dta.tcap.eaedc.eligibility.non_financial.ma_eaedc_eligible_disabled_head_or_spouse", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.eaedc.eligibility.non_financial.ma_eaedc_eligible_elderly_present": { - "label": "gov.states.ma.dta.tcap.eaedc.eligibility.non_financial.ma_eaedc_eligible_elderly_present", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.eaedc.eligibility.non_financial.ma_eaedc_eligible_disabled_dependent_present": { - "label": "gov.states.ma.dta.tcap.eaedc.eligibility.non_financial.ma_eaedc_eligible_disabled_dependent_present", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.eaedc.eligibility.non_financial.ma_eaedc_non_financial_eligible": { - "label": "gov.states.ma.dta.tcap.eaedc.eligibility.non_financial.ma_eaedc_non_financial_eligible", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.eaedc.eligibility.non_financial.ma_eaedc_eligible_caretaker_family": { - "label": "gov.states.ma.dta.tcap.eaedc.eligibility.non_financial.ma_eaedc_eligible_caretaker_family", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.tafdc.ma_tafdc": { - "label": "gov.states.ma.dta.tcap.tafdc.ma_tafdc", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.tafdc.ma_tafdc_eligible_infant": { - "label": "gov.states.ma.dta.tcap.tafdc.ma_tafdc_eligible_infant", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.tafdc.ma_tafdc_if_claimed": { - "label": "gov.states.ma.dta.tcap.tafdc.ma_tafdc_if_claimed", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.tafdc.is_tafdc_related_to_head_or_spouse": { - "label": "gov.states.ma.dta.tcap.tafdc.is_tafdc_related_to_head_or_spouse", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.tafdc.income.ma_tafdc_applicable_income_for_financial_eligibility": { - "label": "gov.states.ma.dta.tcap.tafdc.income.ma_tafdc_applicable_income_for_financial_eligibility", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.tafdc.income.ma_tafdc_applicable_income_grant_amount": { - "label": "gov.states.ma.dta.tcap.tafdc.income.ma_tafdc_applicable_income_grant_amount", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.tafdc.income.unearned.ma_tafdc_countable_unearned_income": { - "label": "gov.states.ma.dta.tcap.tafdc.income.unearned.ma_tafdc_countable_unearned_income", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.tafdc.income.earned.ma_tafdc_full_earned_income_disregard_eligible": { - "label": "gov.states.ma.dta.tcap.tafdc.income.earned.ma_tafdc_full_earned_income_disregard_eligible", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.tafdc.income.earned.ma_tafdc_countable_earned_income": { - "label": "gov.states.ma.dta.tcap.tafdc.income.earned.ma_tafdc_countable_earned_income", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.tafdc.income.earned.ma_tafdc_earned_income_after_deductions": { - "label": "gov.states.ma.dta.tcap.tafdc.income.earned.ma_tafdc_earned_income_after_deductions", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.tafdc.income.earned.ma_tafdc_partially_disregarded_earned_income": { - "label": "gov.states.ma.dta.tcap.tafdc.income.earned.ma_tafdc_partially_disregarded_earned_income", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.tafdc.income.deductions.ma_tafdc_child_support_deduction": { - "label": "gov.states.ma.dta.tcap.tafdc.income.deductions.ma_tafdc_child_support_deduction", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.tafdc.income.deductions.ma_tafdc_work_related_expense_deduction": { - "label": "gov.states.ma.dta.tcap.tafdc.income.deductions.ma_tafdc_work_related_expense_deduction", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.tafdc.income.deductions.ma_tafdc_dependent_care_deduction": { - "label": "gov.states.ma.dta.tcap.tafdc.income.deductions.ma_tafdc_dependent_care_deduction", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.tafdc.income.deductions.ma_tafdc_dependent_care_deduction_person": { - "label": "gov.states.ma.dta.tcap.tafdc.income.deductions.ma_tafdc_dependent_care_deduction_person", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.ma_tafdc_financial_eligible": { - "label": "gov.states.ma.dta.tcap.tafdc.eligibility.ma_tafdc_financial_eligible", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.ma_tafdc_eligible": { - "label": "gov.states.ma.dta.tcap.tafdc.eligibility.ma_tafdc_eligible", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.non_financial.ma_tafdc_immigration_status_eligible": { - "label": "gov.states.ma.dta.tcap.tafdc.eligibility.non_financial.ma_tafdc_immigration_status_eligible", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.non_financial.ma_tafdc_pregnancy_eligible": { - "label": "gov.states.ma.dta.tcap.tafdc.eligibility.non_financial.ma_tafdc_pregnancy_eligible", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.non_financial.ma_tafdc_age_limit": { - "label": "gov.states.ma.dta.tcap.tafdc.eligibility.non_financial.ma_tafdc_age_limit", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.non_financial.ma_tafdc_eligible_dependent": { - "label": "gov.states.ma.dta.tcap.tafdc.eligibility.non_financial.ma_tafdc_eligible_dependent", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.non_financial.ma_tafdc_non_financial_eligible": { - "label": "gov.states.ma.dta.tcap.tafdc.eligibility.non_financial.ma_tafdc_non_financial_eligible", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.tafdc.eligibility.non_financial.ma_tafdc_dependent_criteria_eligible": { - "label": "gov.states.ma.dta.tcap.tafdc.eligibility.non_financial.ma_tafdc_dependent_criteria_eligible", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.tafdc.payment.ma_tafdc_potential_main_benefit": { - "label": "gov.states.ma.dta.tcap.tafdc.payment.ma_tafdc_potential_main_benefit", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.tafdc.payment.ma_tafdc_infant_benefit": { - "label": "gov.states.ma.dta.tcap.tafdc.payment.ma_tafdc_infant_benefit", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.tafdc.payment.ma_tafdc_clothing_allowance": { - "label": "gov.states.ma.dta.tcap.tafdc.payment.ma_tafdc_clothing_allowance", - "description": null, - "index": 0 - }, - "gov.states.ma.dta.tcap.tafdc.payment.ma_tafdc_payment_standard": { - "label": "gov.states.ma.dta.tcap.tafdc.payment.ma_tafdc_payment_standard", - "description": null, - "index": 0 - }, - "gov.states.ma.tax.income.ma_withheld_income_tax": { - "label": "gov.states.ma.tax.income.ma_withheld_income_tax", - "description": null, - "index": 0 - }, - "gov.states.ma.tax.income.is_ma_income_tax_exempt": { - "label": "gov.states.ma.tax.income.is_ma_income_tax_exempt", - "description": null, - "index": 0 - }, - "gov.states.ma.tax.income.ma_income_tax_before_credits": { - "label": "gov.states.ma.tax.income.ma_income_tax_before_credits", - "description": null, - "index": 0 - }, - "gov.states.ma.tax.income.ma_non_refundable_credits": { - "label": "gov.states.ma.tax.income.ma_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.ma.tax.income.ma_income_tax_exemption_threshold": { - "label": "gov.states.ma.tax.income.ma_income_tax_exemption_threshold", - "description": null, - "index": 0 - }, - "gov.states.ma.tax.income.ma_refundable_credits": { - "label": "gov.states.ma.tax.income.ma_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.ma.tax.income.ma_income_tax_before_refundable_credits": { - "label": "gov.states.ma.tax.income.ma_income_tax_before_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.ma.tax.income.ma_income_tax": { - "label": "gov.states.ma.tax.income.ma_income_tax", - "description": null, - "index": 0 - }, - "gov.states.ma.tax.income.gross_income.ma_gross_income": { - "label": "gov.states.ma.tax.income.gross_income.ma_gross_income", - "description": null, - "index": 0 - }, - "gov.states.ma.tax.income.gross_income.ma_part_a_gross_income": { - "label": "gov.states.ma.tax.income.gross_income.ma_part_a_gross_income", - "description": null, - "index": 0 - }, - "gov.states.ma.tax.income.gross_income.ma_part_c_gross_income": { - "label": "gov.states.ma.tax.income.gross_income.ma_part_c_gross_income", - "description": null, - "index": 0 - }, - "gov.states.ma.tax.income.gross_income.ma_part_b_gross_income": { - "label": "gov.states.ma.tax.income.gross_income.ma_part_b_gross_income", - "description": null, - "index": 0 - }, - "gov.states.ma.tax.income.credits.ma_dependent_care_credit": { - "label": "gov.states.ma.tax.income.credits.ma_dependent_care_credit", - "description": null, - "index": 0 - }, - "gov.states.ma.tax.income.credits.ma_child_and_family_credit": { - "label": "gov.states.ma.tax.income.credits.ma_child_and_family_credit", - "description": null, - "index": 0 - }, - "gov.states.ma.tax.income.credits.ma_limited_income_tax_credit": { - "label": "gov.states.ma.tax.income.credits.ma_limited_income_tax_credit", - "description": null, - "index": 0 - }, - "gov.states.ma.tax.income.credits.ma_eitc": { - "label": "gov.states.ma.tax.income.credits.ma_eitc", - "description": null, - "index": 0 - }, - "gov.states.ma.tax.income.credits.ma_child_and_family_credit_or_dependent_care_credit": { - "label": "gov.states.ma.tax.income.credits.ma_child_and_family_credit_or_dependent_care_credit", - "description": null, - "index": 0 - }, - "gov.states.ma.tax.income.credits.ma_covid_19_essential_employee_premium_pay_program.ma_covid_19_essential_employee_premium_pay_program": { - "label": "gov.states.ma.tax.income.credits.ma_covid_19_essential_employee_premium_pay_program.ma_covid_19_essential_employee_premium_pay_program", - "description": null, - "index": 0 - }, - "gov.states.ma.tax.income.credits.ma_covid_19_essential_employee_premium_pay_program.claimed_ma_covid_19_essential_employee_premium_pay_program_2020": { - "label": "gov.states.ma.tax.income.credits.ma_covid_19_essential_employee_premium_pay_program.claimed_ma_covid_19_essential_employee_premium_pay_program_2020", - "description": null, - "index": 0 - }, - "gov.states.ma.tax.income.credits.senior_circuit_breaker.ma_scb_total_income": { - "label": "gov.states.ma.tax.income.credits.senior_circuit_breaker.ma_scb_total_income", - "description": null, - "index": 0 - }, - "gov.states.ma.tax.income.credits.senior_circuit_breaker.ma_senior_circuit_breaker": { - "label": "gov.states.ma.tax.income.credits.senior_circuit_breaker.ma_senior_circuit_breaker", - "description": null, - "index": 0 - }, - "gov.states.ma.tax.income.adjusted_gross_income.ma_part_a_agi": { - "label": "gov.states.ma.tax.income.adjusted_gross_income.ma_part_a_agi", - "description": null, - "index": 0 - }, - "gov.states.ma.tax.income.adjusted_gross_income.ma_part_b_agi": { - "label": "gov.states.ma.tax.income.adjusted_gross_income.ma_part_b_agi", - "description": null, - "index": 0 - }, - "gov.states.ma.tax.income.adjusted_gross_income.ma_agi": { - "label": "gov.states.ma.tax.income.adjusted_gross_income.ma_agi", - "description": null, - "index": 0 - }, - "gov.states.ma.tax.income.adjusted_gross_income.ma_part_c_agi": { - "label": "gov.states.ma.tax.income.adjusted_gross_income.ma_part_c_agi", - "description": null, - "index": 0 - }, - "gov.states.ma.tax.income.taxable_income.ma_part_b_taxable_income_exemption": { - "label": "gov.states.ma.tax.income.taxable_income.ma_part_b_taxable_income_exemption", - "description": null, - "index": 0 - }, - "gov.states.ma.tax.income.taxable_income.ma_part_a_taxable_income": { - "label": "gov.states.ma.tax.income.taxable_income.ma_part_a_taxable_income", - "description": null, - "index": 0 - }, - "gov.states.ma.tax.income.taxable_income.ma_part_a_cg_excess_exemption": { - "label": "gov.states.ma.tax.income.taxable_income.ma_part_a_cg_excess_exemption", - "description": null, - "index": 0 - }, - "gov.states.ma.tax.income.taxable_income.ma_part_b_excess_exemption": { - "label": "gov.states.ma.tax.income.taxable_income.ma_part_b_excess_exemption", - "description": null, - "index": 0 - }, - "gov.states.ma.tax.income.taxable_income.ma_part_a_div_excess_exemption": { - "label": "gov.states.ma.tax.income.taxable_income.ma_part_a_div_excess_exemption", - "description": null, - "index": 0 - }, - "gov.states.ma.tax.income.taxable_income.ma_part_b_taxable_income_deductions": { - "label": "gov.states.ma.tax.income.taxable_income.ma_part_b_taxable_income_deductions", - "description": null, - "index": 0 - }, - "gov.states.ma.tax.income.taxable_income.ma_part_a_taxable_capital_gains_income": { - "label": "gov.states.ma.tax.income.taxable_income.ma_part_a_taxable_capital_gains_income", - "description": null, - "index": 0 - }, - "gov.states.ma.tax.income.taxable_income.ma_part_c_taxable_income": { - "label": "gov.states.ma.tax.income.taxable_income.ma_part_c_taxable_income", - "description": null, - "index": 0 - }, - "gov.states.ma.tax.income.taxable_income.ma_part_b_taxable_income_before_exemption": { - "label": "gov.states.ma.tax.income.taxable_income.ma_part_b_taxable_income_before_exemption", - "description": null, - "index": 0 - }, - "gov.states.ma.tax.income.taxable_income.ma_part_b_taxable_income": { - "label": "gov.states.ma.tax.income.taxable_income.ma_part_b_taxable_income", - "description": null, - "index": 0 - }, - "gov.states.ma.tax.income.taxable_income.ma_part_a_taxable_dividend_income": { - "label": "gov.states.ma.tax.income.taxable_income.ma_part_a_taxable_dividend_income", - "description": null, - "index": 0 - }, - "gov.states.ma.dot.mbta.tap_charlie_card.ma_mbta_tap_charlie_card_eligible": { - "label": "gov.states.ma.dot.mbta.tap_charlie_card.ma_mbta_tap_charlie_card_eligible", - "description": null, - "index": 0 - }, - "gov.states.ma.dot.mbta.senior_charlie_card.ma_mbta_senior_charlie_card_eligible": { - "label": "gov.states.ma.dot.mbta.senior_charlie_card.ma_mbta_senior_charlie_card_eligible", - "description": null, - "index": 0 - }, - "gov.states.ma.dot.mbta.income_eligible_reduced_fares.ma_mbta_enrolled_in_applicable_programs": { - "label": "gov.states.ma.dot.mbta.income_eligible_reduced_fares.ma_mbta_enrolled_in_applicable_programs", - "description": null, - "index": 0 - }, - "gov.states.ma.dot.mbta.income_eligible_reduced_fares.ma_mbta_income_eligible_reduced_fare_eligible": { - "label": "gov.states.ma.dot.mbta.income_eligible_reduced_fares.ma_mbta_income_eligible_reduced_fare_eligible", - "description": null, - "index": 0 - }, - "gov.states.ma.doer.liheap.ma_liheap_heating_type": { - "label": "gov.states.ma.doer.liheap.ma_liheap_heating_type", - "description": null, - "index": 0 - }, - "gov.states.ma.doer.liheap.ma_liheap_benefit_level": { - "label": "gov.states.ma.doer.liheap.ma_liheap_benefit_level", - "description": null, - "index": 0 - }, - "gov.states.ma.doer.liheap.ma_liheap_state_median_income_threshold": { - "label": "gov.states.ma.doer.liheap.ma_liheap_state_median_income_threshold", - "description": null, - "index": 0 - }, - "gov.states.ma.doer.liheap.ma_liheap_income": { - "label": "gov.states.ma.doer.liheap.ma_liheap_income", - "description": null, - "index": 0 - }, - "gov.states.ma.doer.liheap.ma_liheap_fpg": { - "label": "gov.states.ma.doer.liheap.ma_liheap_fpg", - "description": null, - "index": 0 - }, - "gov.states.ma.doer.liheap.ma_liheap_utility_category": { - "label": "gov.states.ma.doer.liheap.ma_liheap_utility_category", - "description": null, - "index": 0 - }, - "gov.states.ma.doer.liheap.eligibility.ma_liheap_income_eligible": { - "label": "gov.states.ma.doer.liheap.eligibility.ma_liheap_income_eligible", - "description": null, - "index": 0 - }, - "gov.states.ma.doer.liheap.eligibility.ma_liheap_eligible_subsidized_housing": { - "label": "gov.states.ma.doer.liheap.eligibility.ma_liheap_eligible_subsidized_housing", - "description": null, - "index": 0 - }, - "gov.states.ma.doer.liheap.eligibility.ma_liheap_eligible": { - "label": "gov.states.ma.doer.liheap.eligibility.ma_liheap_eligible", - "description": null, - "index": 0 - }, - "gov.states.ma.doer.liheap.eligibility.ma_liheap_hecs_eligible": { - "label": "gov.states.ma.doer.liheap.eligibility.ma_liheap_hecs_eligible", - "description": null, - "index": 0 - }, - "gov.states.ma.doer.liheap.payment.ma_liheap_hecs_payment": { - "label": "gov.states.ma.doer.liheap.payment.ma_liheap_hecs_payment", - "description": null, - "index": 0 - }, - "gov.states.ma.doer.liheap.payment.ma_liheap_standard_payment": { - "label": "gov.states.ma.doer.liheap.payment.ma_liheap_standard_payment", - "description": null, - "index": 0 - }, - "gov.states.ma.doer.liheap.payment.ma_liheap": { - "label": "gov.states.ma.doer.liheap.payment.ma_liheap", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.mi_taxable_income": { - "label": "gov.states.mi.tax.income.mi_taxable_income", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.mi_non_refundable_credits": { - "label": "gov.states.mi.tax.income.mi_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.mi_household_resources": { - "label": "gov.states.mi.tax.income.mi_household_resources", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.mi_refundable_credits": { - "label": "gov.states.mi.tax.income.mi_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.mi_income_tax_before_refundable_credits": { - "label": "gov.states.mi.tax.income.mi_income_tax_before_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.mi_subtractions": { - "label": "gov.states.mi.tax.income.mi_subtractions", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.mi_withheld_income_tax": { - "label": "gov.states.mi.tax.income.mi_withheld_income_tax", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.mi_additions": { - "label": "gov.states.mi.tax.income.mi_additions", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.mi_is_senior_for_tax": { - "label": "gov.states.mi.tax.income.mi_is_senior_for_tax", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.mi_income_tax": { - "label": "gov.states.mi.tax.income.mi_income_tax", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.mi_income_tax_before_non_refundable_credits": { - "label": "gov.states.mi.tax.income.mi_income_tax_before_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.credits.mi_eitc": { - "label": "gov.states.mi.tax.income.credits.mi_eitc", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.credits.home_heating.mi_home_heating_credit": { - "label": "gov.states.mi.tax.income.credits.home_heating.mi_home_heating_credit", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.credits.home_heating.mi_home_heating_credit_eligible_rate": { - "label": "gov.states.mi.tax.income.credits.home_heating.mi_home_heating_credit_eligible_rate", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.credits.home_heating.alternate.mi_alternate_home_heating_credit_eligible": { - "label": "gov.states.mi.tax.income.credits.home_heating.alternate.mi_alternate_home_heating_credit_eligible", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.credits.home_heating.alternate.mi_alternate_home_heating_credit": { - "label": "gov.states.mi.tax.income.credits.home_heating.alternate.mi_alternate_home_heating_credit", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.credits.home_heating.standard.mi_standard_home_heating_credit": { - "label": "gov.states.mi.tax.income.credits.home_heating.standard.mi_standard_home_heating_credit", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.credits.home_heating.standard.mi_standard_home_heating_credit_eligible": { - "label": "gov.states.mi.tax.income.credits.home_heating.standard.mi_standard_home_heating_credit_eligible", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.mi_homestead_property_tax_credit": { - "label": "gov.states.mi.tax.income.credits.homestead_property_tax.mi_homestead_property_tax_credit", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.mi_allowable_homestead_property_tax_credit": { - "label": "gov.states.mi.tax.income.credits.homestead_property_tax.mi_allowable_homestead_property_tax_credit", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.mi_homestead_property_tax_credit_alternate_senior_amount": { - "label": "gov.states.mi.tax.income.credits.homestead_property_tax.mi_homestead_property_tax_credit_alternate_senior_amount", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.mi_homestead_property_tax_credit_countable_property_tax": { - "label": "gov.states.mi.tax.income.credits.homestead_property_tax.mi_homestead_property_tax_credit_countable_property_tax", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.mi_homestead_property_tax_credit_pre_alternate_senior_amount": { - "label": "gov.states.mi.tax.income.credits.homestead_property_tax.mi_homestead_property_tax_credit_pre_alternate_senior_amount", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.mi_homestead_property_tax_credit_household_resource_exemption": { - "label": "gov.states.mi.tax.income.credits.homestead_property_tax.mi_homestead_property_tax_credit_household_resource_exemption", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.credits.homestead_property_tax.mi_homestead_property_tax_credit_eligible": { - "label": "gov.states.mi.tax.income.credits.homestead_property_tax.mi_homestead_property_tax_credit_eligible", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.exemptions.mi_personal_exemptions": { - "label": "gov.states.mi.tax.income.exemptions.mi_personal_exemptions", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.exemptions.mi_disabled_exemption_eligible_person": { - "label": "gov.states.mi.tax.income.exemptions.mi_disabled_exemption_eligible_person", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.exemptions.mi_exemptions_count": { - "label": "gov.states.mi.tax.income.exemptions.mi_exemptions_count", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.exemptions.mi_exemptions": { - "label": "gov.states.mi.tax.income.exemptions.mi_exemptions", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.deductions.standard.mi_standard_deduction": { - "label": "gov.states.mi.tax.income.deductions.standard.mi_standard_deduction", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.deductions.standard.tier_two.mi_standard_deduction_tier_two_eligible": { - "label": "gov.states.mi.tax.income.deductions.standard.tier_two.mi_standard_deduction_tier_two_eligible", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.deductions.standard.tier_two.mi_standard_deduction_tier_two": { - "label": "gov.states.mi.tax.income.deductions.standard.tier_two.mi_standard_deduction_tier_two", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.deductions.standard.tier_two.mi_standard_deduction_tier_two_increase_eligible_people": { - "label": "gov.states.mi.tax.income.deductions.standard.tier_two.mi_standard_deduction_tier_two_increase_eligible_people", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.deductions.standard.tier_three.mi_standard_deduction_tier_three_eligible": { - "label": "gov.states.mi.tax.income.deductions.standard.tier_three.mi_standard_deduction_tier_three_eligible", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.deductions.standard.tier_three.mi_standard_deduction_tier_three": { - "label": "gov.states.mi.tax.income.deductions.standard.tier_three.mi_standard_deduction_tier_three", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.deductions.interest_dividends_capital_gains.mi_interest_dividends_capital_gains_deduction_eligible": { - "label": "gov.states.mi.tax.income.deductions.interest_dividends_capital_gains.mi_interest_dividends_capital_gains_deduction_eligible", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.deductions.interest_dividends_capital_gains.mi_interest_dividends_capital_gains_deduction": { - "label": "gov.states.mi.tax.income.deductions.interest_dividends_capital_gains.mi_interest_dividends_capital_gains_deduction", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.deductions.retirement.mi_pension_benefit": { - "label": "gov.states.mi.tax.income.deductions.retirement.mi_pension_benefit", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.deductions.retirement.expanded.mi_expanded_retirement_benefits_deduction_eligible": { - "label": "gov.states.mi.tax.income.deductions.retirement.expanded.mi_expanded_retirement_benefits_deduction_eligible", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.deductions.retirement.expanded.mi_expanded_retirement_benefits_deduction": { - "label": "gov.states.mi.tax.income.deductions.retirement.expanded.mi_expanded_retirement_benefits_deduction", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.deductions.retirement.tier_one.mi_retirement_benefits_deduction_tier_one": { - "label": "gov.states.mi.tax.income.deductions.retirement.tier_one.mi_retirement_benefits_deduction_tier_one", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.deductions.retirement.tier_one.mi_retirement_benefits_deduction_tier_one_amount": { - "label": "gov.states.mi.tax.income.deductions.retirement.tier_one.mi_retirement_benefits_deduction_tier_one_amount", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.deductions.retirement.tier_one.mi_retirement_benefits_deduction_tier_one_eligible": { - "label": "gov.states.mi.tax.income.deductions.retirement.tier_one.mi_retirement_benefits_deduction_tier_one_eligible", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.deductions.retirement.tier_three.mi_retirement_benefits_deduction_tier_three": { - "label": "gov.states.mi.tax.income.deductions.retirement.tier_three.mi_retirement_benefits_deduction_tier_three", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.deductions.retirement.tier_three.mi_retirement_benefits_deduction_tier_three_eligible": { - "label": "gov.states.mi.tax.income.deductions.retirement.tier_three.mi_retirement_benefits_deduction_tier_three_eligible", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.deductions.retirement.tier_three.ss_exempt.retired.mi_retirement_benefits_deduction_tier_three_ss_exempt_retired_eligible_people": { - "label": "gov.states.mi.tax.income.deductions.retirement.tier_three.ss_exempt.retired.mi_retirement_benefits_deduction_tier_three_ss_exempt_retired_eligible_people", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.deductions.retirement.tier_three.ss_exempt.retired.mi_retirement_benefits_deduction_tier_three_ss_exempt_retired": { - "label": "gov.states.mi.tax.income.deductions.retirement.tier_three.ss_exempt.retired.mi_retirement_benefits_deduction_tier_three_ss_exempt_retired", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.deductions.retirement.tier_three.ss_exempt.not_retired.mi_retirement_benefits_deduction_tier_three_ss_exempt_not_retired_eligible_people": { - "label": "gov.states.mi.tax.income.deductions.retirement.tier_three.ss_exempt.not_retired.mi_retirement_benefits_deduction_tier_three_ss_exempt_not_retired_eligible_people", - "description": null, - "index": 0 - }, - "gov.states.mi.tax.income.deductions.retirement.tier_three.ss_exempt.not_retired.mi_retirement_benefits_deduction_tier_three_ss_exempt_not_retired": { - "label": "gov.states.mi.tax.income.deductions.retirement.tier_three.ss_exempt.not_retired.mi_retirement_benefits_deduction_tier_three_ss_exempt_not_retired", - "description": null, - "index": 0 - }, - "gov.states.ok.tax.income.ok_income_tax": { - "label": "gov.states.ok.tax.income.ok_income_tax", - "description": null, - "index": 0 - }, - "gov.states.ok.tax.income.ok_agi_subtractions": { - "label": "gov.states.ok.tax.income.ok_agi_subtractions", - "description": null, - "index": 0 - }, - "gov.states.ok.tax.income.ok_withheld_income_tax": { - "label": "gov.states.ok.tax.income.ok_withheld_income_tax", - "description": null, - "index": 0 - }, - "gov.states.ok.tax.income.ok_agi": { - "label": "gov.states.ok.tax.income.ok_agi", - "description": null, - "index": 0 - }, - "gov.states.ok.tax.income.ok_income_tax_before_credits": { - "label": "gov.states.ok.tax.income.ok_income_tax_before_credits", - "description": null, - "index": 0 - }, - "gov.states.ok.tax.income.ok_use_tax": { - "label": "gov.states.ok.tax.income.ok_use_tax", - "description": null, - "index": 0 - }, - "gov.states.ok.tax.income.ok_adjustments": { - "label": "gov.states.ok.tax.income.ok_adjustments", - "description": null, - "index": 0 - }, - "gov.states.ok.tax.income.ok_additions": { - "label": "gov.states.ok.tax.income.ok_additions", - "description": null, - "index": 0 - }, - "gov.states.ok.tax.income.ok_taxable_income": { - "label": "gov.states.ok.tax.income.ok_taxable_income", - "description": null, - "index": 0 - }, - "gov.states.ok.tax.income.ok_income_tax_before_refundable_credits": { - "label": "gov.states.ok.tax.income.ok_income_tax_before_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.ok.tax.income.credits.ok_child_care_child_tax_credit": { - "label": "gov.states.ok.tax.income.credits.ok_child_care_child_tax_credit", - "description": null, - "index": 0 - }, - "gov.states.ok.tax.income.credits.ok_refundable_credits": { - "label": "gov.states.ok.tax.income.credits.ok_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.ok.tax.income.credits.ok_ptc": { - "label": "gov.states.ok.tax.income.credits.ok_ptc", - "description": null, - "index": 0 - }, - "gov.states.ok.tax.income.credits.ok_gross_income": { - "label": "gov.states.ok.tax.income.credits.ok_gross_income", - "description": null, - "index": 0 - }, - "gov.states.ok.tax.income.credits.ok_stc": { - "label": "gov.states.ok.tax.income.credits.ok_stc", - "description": null, - "index": 0 - }, - "gov.states.ok.tax.income.credits.ok_nonrefundable_credits": { - "label": "gov.states.ok.tax.income.credits.ok_nonrefundable_credits", - "description": null, - "index": 0 - }, - "gov.states.ok.tax.income.credits.eitc.ok_eitc": { - "label": "gov.states.ok.tax.income.credits.eitc.ok_eitc", - "description": null, - "index": 0 - }, - "gov.states.ok.tax.income.credits.eitc.federal_credit.ok_federal_eitc_maximum": { - "label": "gov.states.ok.tax.income.credits.eitc.federal_credit.ok_federal_eitc_maximum", - "description": null, - "index": 0 - }, - "gov.states.ok.tax.income.credits.eitc.federal_credit.ok_federal_eitc_phase_out_start": { - "label": "gov.states.ok.tax.income.credits.eitc.federal_credit.ok_federal_eitc_phase_out_start", - "description": null, - "index": 0 - }, - "gov.states.ok.tax.income.credits.eitc.federal_credit.ok_federal_eitc_reduction": { - "label": "gov.states.ok.tax.income.credits.eitc.federal_credit.ok_federal_eitc_reduction", - "description": null, - "index": 0 - }, - "gov.states.ok.tax.income.credits.eitc.federal_credit.ok_federal_eitc": { - "label": "gov.states.ok.tax.income.credits.eitc.federal_credit.ok_federal_eitc", - "description": null, - "index": 0 - }, - "gov.states.ok.tax.income.credits.eitc.federal_credit.ok_federal_eitc_phased_in": { - "label": "gov.states.ok.tax.income.credits.eitc.federal_credit.ok_federal_eitc_phased_in", - "description": null, - "index": 0 - }, - "gov.states.ok.tax.income.credits.eitc.federal_credit.ok_federal_eitc_phase_in_rate": { - "label": "gov.states.ok.tax.income.credits.eitc.federal_credit.ok_federal_eitc_phase_in_rate", - "description": null, - "index": 0 - }, - "gov.states.ok.tax.income.credits.eitc.federal_credit.ok_federal_eitc_phase_out_rate": { - "label": "gov.states.ok.tax.income.credits.eitc.federal_credit.ok_federal_eitc_phase_out_rate", - "description": null, - "index": 0 - }, - "gov.states.ok.tax.income.credits.eitc.federal_credit.eligible.ok_federal_eitc_eligible": { - "label": "gov.states.ok.tax.income.credits.eitc.federal_credit.eligible.ok_federal_eitc_eligible", - "description": null, - "index": 0 - }, - "gov.states.ok.tax.income.credits.eitc.federal_credit.eligible.ok_federal_eitc_demographic_eligible": { - "label": "gov.states.ok.tax.income.credits.eitc.federal_credit.eligible.ok_federal_eitc_demographic_eligible", - "description": null, - "index": 0 - }, - "gov.states.ok.tax.income.credits.eitc.federal_credit.eligible.ok_federal_eitc_investment_income_eligible": { - "label": "gov.states.ok.tax.income.credits.eitc.federal_credit.eligible.ok_federal_eitc_investment_income_eligible", - "description": null, - "index": 0 - }, - "gov.states.ok.tax.income.exemptions.ok_exemptions": { - "label": "gov.states.ok.tax.income.exemptions.ok_exemptions", - "description": null, - "index": 0 - }, - "gov.states.ok.tax.income.exemptions.ok_count_exemptions": { - "label": "gov.states.ok.tax.income.exemptions.ok_count_exemptions", - "description": null, - "index": 0 - }, - "gov.states.ok.tax.income.subtractions.ok_military_retirement_exclusion": { - "label": "gov.states.ok.tax.income.subtractions.ok_military_retirement_exclusion", - "description": null, - "index": 0 - }, - "gov.states.ok.tax.income.subtractions.ok_pension_subtraction": { - "label": "gov.states.ok.tax.income.subtractions.ok_pension_subtraction", - "description": null, - "index": 0 - }, - "gov.states.ok.tax.income.deductions.ok_itemized_deductions": { - "label": "gov.states.ok.tax.income.deductions.ok_itemized_deductions", - "description": null, - "index": 0 - }, - "gov.states.ok.tax.income.deductions.ok_standard_deduction": { - "label": "gov.states.ok.tax.income.deductions.ok_standard_deduction", - "description": null, - "index": 0 - }, - "gov.states.ok.tanf.ok_tanf": { - "label": "gov.states.ok.tanf.ok_tanf", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.oh_taxable_income": { - "label": "gov.states.oh.tax.income.oh_taxable_income", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.oh_modifed_agi": { - "label": "gov.states.oh.tax.income.oh_modifed_agi", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.oh_non_refundable_credits": { - "label": "gov.states.oh.tax.income.oh_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.oh_income_tax_before_non_refundable_credits": { - "label": "gov.states.oh.tax.income.oh_income_tax_before_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.oh_income_tax": { - "label": "gov.states.oh.tax.income.oh_income_tax", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.oh_income_tax_before_refundable_credits": { - "label": "gov.states.oh.tax.income.oh_income_tax_before_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.oh_refundable_credits": { - "label": "gov.states.oh.tax.income.oh_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.oh_income_tax_exempt": { - "label": "gov.states.oh.tax.income.oh_income_tax_exempt", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.oh_withheld_income_tax": { - "label": "gov.states.oh.tax.income.oh_withheld_income_tax", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.credits.oh_exemption_credit": { - "label": "gov.states.oh.tax.income.credits.oh_exemption_credit", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.credits.oh_senior_citizen_credit": { - "label": "gov.states.oh.tax.income.credits.oh_senior_citizen_credit", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.credits.oh_non_public_school_credits": { - "label": "gov.states.oh.tax.income.credits.oh_non_public_school_credits", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.credits.oh_has_taken_oh_lump_sum_credits": { - "label": "gov.states.oh.tax.income.credits.oh_has_taken_oh_lump_sum_credits", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.credits.oh_adoption_credit": { - "label": "gov.states.oh.tax.income.credits.oh_adoption_credit", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.credits.oh_cdcc": { - "label": "gov.states.oh.tax.income.credits.oh_cdcc", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.credits.oh_adoption_credit_person": { - "label": "gov.states.oh.tax.income.credits.oh_adoption_credit_person", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.credits.oh_eitc": { - "label": "gov.states.oh.tax.income.credits.oh_eitc", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.oh_lump_sum_distribution_credit_eligible": { - "label": "gov.states.oh.tax.income.credits.lump_sum_distribution.oh_lump_sum_distribution_credit_eligible", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.oh_lump_sum_distribution_credit": { - "label": "gov.states.oh.tax.income.credits.lump_sum_distribution.oh_lump_sum_distribution_credit", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.oh_lump_sum_distribution_credit_person": { - "label": "gov.states.oh.tax.income.credits.lump_sum_distribution.oh_lump_sum_distribution_credit_person", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.credits.lump_sum_distribution.oh_lump_sum_distribution_credit_eligible_person": { - "label": "gov.states.oh.tax.income.credits.lump_sum_distribution.oh_lump_sum_distribution_credit_eligible_person", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.credits.joint_filing_credit.oh_partial_non_refundable_credits": { - "label": "gov.states.oh.tax.income.credits.joint_filing_credit.oh_partial_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.credits.joint_filing_credit.oh_tax_before_joint_filing_credit": { - "label": "gov.states.oh.tax.income.credits.joint_filing_credit.oh_tax_before_joint_filing_credit", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.credits.joint_filing_credit.oh_joint_filing_credit": { - "label": "gov.states.oh.tax.income.credits.joint_filing_credit.oh_joint_filing_credit", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.credits.joint_filing_credit.oh_joint_filing_credit_agi_subtractions": { - "label": "gov.states.oh.tax.income.credits.joint_filing_credit.oh_joint_filing_credit_agi_subtractions", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.credits.joint_filing_credit.oh_joint_filing_credit_eligible": { - "label": "gov.states.oh.tax.income.credits.joint_filing_credit.oh_joint_filing_credit_eligible", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.credits.joint_filing_credit.oh_joint_filing_credit_qualifying_income": { - "label": "gov.states.oh.tax.income.credits.joint_filing_credit.oh_joint_filing_credit_qualifying_income", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.credits.retirement_income.oh_retirement_credit": { - "label": "gov.states.oh.tax.income.credits.retirement_income.oh_retirement_credit", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.credits.retirement_income.pension_based.oh_pension_based_retirement_income_credit": { - "label": "gov.states.oh.tax.income.credits.retirement_income.pension_based.oh_pension_based_retirement_income_credit", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.credits.retirement_income.pension_based.oh_pension_based_retirement_income_credit_eligible": { - "label": "gov.states.oh.tax.income.credits.retirement_income.pension_based.oh_pension_based_retirement_income_credit_eligible", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.credits.retirement_income.lump_sum.oh_lump_sum_retirement_credit_eligible": { - "label": "gov.states.oh.tax.income.credits.retirement_income.lump_sum.oh_lump_sum_retirement_credit_eligible", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.credits.retirement_income.lump_sum.oh_lump_sum_retirement_credit": { - "label": "gov.states.oh.tax.income.credits.retirement_income.lump_sum.oh_lump_sum_retirement_credit", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.exemptions.oh_personal_exemptions_eligible_person": { - "label": "gov.states.oh.tax.income.exemptions.oh_personal_exemptions_eligible_person", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.exemptions.oh_personal_exemptions": { - "label": "gov.states.oh.tax.income.exemptions.oh_personal_exemptions", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.adjusted_gross_income.oh_agi": { - "label": "gov.states.oh.tax.income.adjusted_gross_income.oh_agi", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.adjusted_gross_income.oh_agi_person": { - "label": "gov.states.oh.tax.income.adjusted_gross_income.oh_agi_person", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.additions.oh_other_add_backs": { - "label": "gov.states.oh.tax.income.additions.oh_other_add_backs", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.additions.oh_bonus_depreciation_add_back": { - "label": "gov.states.oh.tax.income.additions.oh_bonus_depreciation_add_back", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.additions.oh_additions": { - "label": "gov.states.oh.tax.income.additions.oh_additions", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.deductions.oh_uniformed_services_retirement_income_deduction": { - "label": "gov.states.oh.tax.income.deductions.oh_uniformed_services_retirement_income_deduction", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.deductions.oh_deductions": { - "label": "gov.states.oh.tax.income.deductions.oh_deductions", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.deductions.oh_section_179_expense_add_back": { - "label": "gov.states.oh.tax.income.deductions.oh_section_179_expense_add_back", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.deductions.oh_federal_conformity_deduction": { - "label": "gov.states.oh.tax.income.deductions.oh_federal_conformity_deduction", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.deductions.medical_exepenses.oh_unreimbursed_medical_care_expense_deduction": { - "label": "gov.states.oh.tax.income.deductions.medical_exepenses.oh_unreimbursed_medical_care_expense_deduction", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.deductions.medical_exepenses.oh_unreimbursed_medical_care_expense_deduction_person": { - "label": "gov.states.oh.tax.income.deductions.medical_exepenses.oh_unreimbursed_medical_care_expense_deduction_person", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.deductions.medical_exepenses.oh_uninsured_unreimbursed_medical_care_expenses": { - "label": "gov.states.oh.tax.income.deductions.medical_exepenses.oh_uninsured_unreimbursed_medical_care_expenses", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.deductions.medical_exepenses.insured_unreimbursed_expenses.oh_insured_unreimbursed_medical_care_expenses": { - "label": "gov.states.oh.tax.income.deductions.medical_exepenses.insured_unreimbursed_expenses.oh_insured_unreimbursed_medical_care_expenses", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.deductions.medical_exepenses.insured_unreimbursed_expenses.oh_insured_unreimbursed_medical_care_expenses_person": { - "label": "gov.states.oh.tax.income.deductions.medical_exepenses.insured_unreimbursed_expenses.oh_insured_unreimbursed_medical_care_expenses_person", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.deductions.medical_exepenses.insured_unreimbursed_expenses.oh_insured_unreimbursed_medical_care_expense_amount": { - "label": "gov.states.oh.tax.income.deductions.medical_exepenses.insured_unreimbursed_expenses.oh_insured_unreimbursed_medical_care_expense_amount", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.deductions.529_plan.oh_529_plan_deduction": { - "label": "gov.states.oh.tax.income.deductions.529_plan.oh_529_plan_deduction", - "description": null, - "index": 0 - }, - "gov.states.oh.tax.income.deductions.529_plan.oh_529_plan_deduction_person": { - "label": "gov.states.oh.tax.income.deductions.529_plan.oh_529_plan_deduction_person", - "description": null, - "index": 0 - }, - "gov.states.il.rta.cta.il_cta_benefit": { - "label": "gov.states.il.rta.cta.il_cta_benefit", - "description": null, - "index": 0 - }, - "gov.states.il.rta.cta.reduced_fare.il_cta_children_reduced_fare_eligible": { - "label": "gov.states.il.rta.cta.reduced_fare.il_cta_children_reduced_fare_eligible", - "description": null, - "index": 0 - }, - "gov.states.il.rta.cta.reduced_fare.il_cta_reduced_fare_benefit": { - "label": "gov.states.il.rta.cta.reduced_fare.il_cta_reduced_fare_benefit", - "description": null, - "index": 0 - }, - "gov.states.il.rta.cta.reduced_fare.il_cta_reduced_fare_eligible": { - "label": "gov.states.il.rta.cta.reduced_fare.il_cta_reduced_fare_eligible", - "description": null, - "index": 0 - }, - "gov.states.il.rta.cta.reduced_fare.il_cta_rta_reduced_fare_eligible": { - "label": "gov.states.il.rta.cta.reduced_fare.il_cta_rta_reduced_fare_eligible", - "description": null, - "index": 0 - }, - "gov.states.il.rta.cta.reduced_fare.il_cta_student_reduced_fare_eligible": { - "label": "gov.states.il.rta.cta.reduced_fare.il_cta_student_reduced_fare_eligible", - "description": null, - "index": 0 - }, - "gov.states.il.rta.cta.free_ride.il_cta_military_service_pass_eligible": { - "label": "gov.states.il.rta.cta.free_ride.il_cta_military_service_pass_eligible", - "description": null, - "index": 0 - }, - "gov.states.il.rta.cta.free_ride.il_cta_free_ride_benefit": { - "label": "gov.states.il.rta.cta.free_ride.il_cta_free_ride_benefit", - "description": null, - "index": 0 - }, - "gov.states.il.rta.cta.free_ride.il_cta_free_ride_eligible": { - "label": "gov.states.il.rta.cta.free_ride.il_cta_free_ride_eligible", - "description": null, - "index": 0 - }, - "gov.states.il.idoa.bap.il_bap_eligible": { - "label": "gov.states.il.idoa.bap.il_bap_eligible", - "description": null, - "index": 0 - }, - "gov.states.il.tax.income.il_income_tax_before_non_refundable_credits": { - "label": "gov.states.il.tax.income.il_income_tax_before_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.il.tax.income.il_income_tax_before_refundable_credits": { - "label": "gov.states.il.tax.income.il_income_tax_before_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.il.tax.income.il_taxable_income": { - "label": "gov.states.il.tax.income.il_taxable_income", - "description": null, - "index": 0 - }, - "gov.states.il.tax.income.il_income_tax": { - "label": "gov.states.il.tax.income.il_income_tax", - "description": null, - "index": 0 - }, - "gov.states.il.tax.income.il_use_tax": { - "label": "gov.states.il.tax.income.il_use_tax", - "description": null, - "index": 0 - }, - "gov.states.il.tax.income.il_total_tax": { - "label": "gov.states.il.tax.income.il_total_tax", - "description": null, - "index": 0 - }, - "gov.states.il.tax.income.il_withheld_income_tax": { - "label": "gov.states.il.tax.income.il_withheld_income_tax", - "description": null, - "index": 0 - }, - "gov.states.il.tax.income.schedule_m.il_schedule_m_additions": { - "label": "gov.states.il.tax.income.schedule_m.il_schedule_m_additions", - "description": null, - "index": 0 - }, - "gov.states.il.tax.income.schedule_m.il_schedule_m_subtractions": { - "label": "gov.states.il.tax.income.schedule_m.il_schedule_m_subtractions", - "description": null, - "index": 0 - }, - "gov.states.il.tax.income.credits.il_eitc": { - "label": "gov.states.il.tax.income.credits.il_eitc", - "description": null, - "index": 0 - }, - "gov.states.il.tax.income.credits.il_ctc": { - "label": "gov.states.il.tax.income.credits.il_ctc", - "description": null, - "index": 0 - }, - "gov.states.il.tax.income.credits.il_nonrefundable_credits": { - "label": "gov.states.il.tax.income.credits.il_nonrefundable_credits", - "description": null, - "index": 0 - }, - "gov.states.il.tax.income.credits.il_k12_education_expense_credit": { - "label": "gov.states.il.tax.income.credits.il_k12_education_expense_credit", - "description": null, - "index": 0 - }, - "gov.states.il.tax.income.credits.il_property_tax_credit": { - "label": "gov.states.il.tax.income.credits.il_property_tax_credit", - "description": null, - "index": 0 - }, - "gov.states.il.tax.income.credits.il_refundable_credits": { - "label": "gov.states.il.tax.income.credits.il_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.il.tax.income.exemptions.il_total_exemptions": { - "label": "gov.states.il.tax.income.exemptions.il_total_exemptions", - "description": null, - "index": 0 - }, - "gov.states.il.tax.income.exemptions.il_personal_exemption_eligibility_status": { - "label": "gov.states.il.tax.income.exemptions.il_personal_exemption_eligibility_status", - "description": null, - "index": 0 - }, - "gov.states.il.tax.income.exemptions.il_dependent_exemption": { - "label": "gov.states.il.tax.income.exemptions.il_dependent_exemption", - "description": null, - "index": 0 - }, - "gov.states.il.tax.income.exemptions.il_personal_exemption": { - "label": "gov.states.il.tax.income.exemptions.il_personal_exemption", - "description": null, - "index": 0 - }, - "gov.states.il.tax.income.exemptions.il_aged_blind_exemption": { - "label": "gov.states.il.tax.income.exemptions.il_aged_blind_exemption", - "description": null, - "index": 0 - }, - "gov.states.il.tax.income.exemptions.il_is_exemption_eligible": { - "label": "gov.states.il.tax.income.exemptions.il_is_exemption_eligible", - "description": null, - "index": 0 - }, - "gov.states.il.tax.income.pass_through.il_pass_through_entity_tax_credit": { - "label": "gov.states.il.tax.income.pass_through.il_pass_through_entity_tax_credit", - "description": null, - "index": 0 - }, - "gov.states.il.tax.income.pass_through.il_pass_through_withholding": { - "label": "gov.states.il.tax.income.pass_through.il_pass_through_withholding", - "description": null, - "index": 0 - }, - "gov.states.il.tax.income.base_income.il_base_income_additions": { - "label": "gov.states.il.tax.income.base_income.il_base_income_additions", - "description": null, - "index": 0 - }, - "gov.states.il.tax.income.base_income.il_base_income_subtractions": { - "label": "gov.states.il.tax.income.base_income.il_base_income_subtractions", - "description": null, - "index": 0 - }, - "gov.states.il.tax.income.base_income.il_base_income": { - "label": "gov.states.il.tax.income.base_income.il_base_income", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.aabd.il_aabd_institutional_status": { - "label": "gov.states.il.dhs.aabd.il_aabd_institutional_status", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.aabd.il_aabd_area": { - "label": "gov.states.il.dhs.aabd.il_aabd_area", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.aabd.il_aabd": { - "label": "gov.states.il.dhs.aabd.il_aabd", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.aabd.il_aabd_person": { - "label": "gov.states.il.dhs.aabd.il_aabd_person", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.aabd.asset.il_aabd_countable_vehicle_value": { - "label": "gov.states.il.dhs.aabd.asset.il_aabd_countable_vehicle_value", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.aabd.asset.il_aabd_countable_assets": { - "label": "gov.states.il.dhs.aabd.asset.il_aabd_countable_assets", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.aabd.asset.il_aabd_vehicle_is_essential": { - "label": "gov.states.il.dhs.aabd.asset.il_aabd_vehicle_is_essential", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.aabd.asset.il_aabd_asset_value_eligible": { - "label": "gov.states.il.dhs.aabd.asset.il_aabd_asset_value_eligible", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.aabd.income.il_aabd_gross_unearned_income": { - "label": "gov.states.il.dhs.aabd.income.il_aabd_gross_unearned_income", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.aabd.income.il_aabd_flat_exemption_excess_over_unearned_income": { - "label": "gov.states.il.dhs.aabd.income.il_aabd_flat_exemption_excess_over_unearned_income", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.aabd.income.il_aabd_countable_income": { - "label": "gov.states.il.dhs.aabd.income.il_aabd_countable_income", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.aabd.income.il_aabd_countable_unearned_income": { - "label": "gov.states.il.dhs.aabd.income.il_aabd_countable_unearned_income", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.aabd.income.expense.il_aabd_expense_exemption_person": { - "label": "gov.states.il.dhs.aabd.income.expense.il_aabd_expense_exemption_person", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.aabd.income.expense.il_aabd_child_care_expense_exemption": { - "label": "gov.states.il.dhs.aabd.income.expense.il_aabd_child_care_expense_exemption", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.aabd.income.earned.il_aabd_gross_earned_income": { - "label": "gov.states.il.dhs.aabd.income.earned.il_aabd_gross_earned_income", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.aabd.income.earned.il_aabd_earned_income_after_exemption_person": { - "label": "gov.states.il.dhs.aabd.income.earned.il_aabd_earned_income_after_exemption_person", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.aabd.eligibility.il_aabd_aged_blind_disabled_person": { - "label": "gov.states.il.dhs.aabd.eligibility.il_aabd_aged_blind_disabled_person", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.aabd.eligibility.il_aabd_eligible_person": { - "label": "gov.states.il.dhs.aabd.eligibility.il_aabd_eligible_person", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.aabd.eligibility.il_aabd_immigration_status_eligible_person": { - "label": "gov.states.il.dhs.aabd.eligibility.il_aabd_immigration_status_eligible_person", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.aabd.eligibility.il_aabd_financial_eligible_person": { - "label": "gov.states.il.dhs.aabd.eligibility.il_aabd_financial_eligible_person", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.aabd.eligibility.il_aabd_non_financial_eligible_person": { - "label": "gov.states.il.dhs.aabd.eligibility.il_aabd_non_financial_eligible_person", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.aabd.payment.il_aabd_need_standard_person": { - "label": "gov.states.il.dhs.aabd.payment.il_aabd_need_standard_person", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.aabd.payment.il_aabd_grant_amount": { - "label": "gov.states.il.dhs.aabd.payment.il_aabd_grant_amount", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.aabd.payment.personal_allowance.il_aabd_is_bedfast": { - "label": "gov.states.il.dhs.aabd.payment.personal_allowance.il_aabd_is_bedfast", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.aabd.payment.personal_allowance.il_aabd_personal_allowance": { - "label": "gov.states.il.dhs.aabd.payment.personal_allowance.il_aabd_personal_allowance", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.aabd.payment.utility.il_utility_allowance": { - "label": "gov.states.il.dhs.aabd.payment.utility.il_utility_allowance", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.aabd.payment.utility.il_utility_allowance_person": { - "label": "gov.states.il.dhs.aabd.payment.utility.il_utility_allowance_person", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.aabd.payment.shelter.il_aabd_shelter_allowance": { - "label": "gov.states.il.dhs.aabd.payment.shelter.il_aabd_shelter_allowance", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.ccap.il_ccap_enrolled": { - "label": "gov.states.il.dhs.ccap.il_ccap_enrolled", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.ccap.il_ccap_countable_income": { - "label": "gov.states.il.dhs.ccap.il_ccap_countable_income", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.ccap.eligibility.il_ccap_parent_meets_working_requirements": { - "label": "gov.states.il.dhs.ccap.eligibility.il_ccap_parent_meets_working_requirements", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.ccap.eligibility.il_ccap_income_eligible": { - "label": "gov.states.il.dhs.ccap.eligibility.il_ccap_income_eligible", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.ccap.eligibility.il_ccap_eligible_child": { - "label": "gov.states.il.dhs.ccap.eligibility.il_ccap_eligible_child", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.ccap.eligibility.il_ccap_eligible": { - "label": "gov.states.il.dhs.ccap.eligibility.il_ccap_eligible", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.ccap.eligibility.il_ccap_immigration_status_eligible_person": { - "label": "gov.states.il.dhs.ccap.eligibility.il_ccap_immigration_status_eligible_person", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.tanf.il_tanf_payment_level_for_grant_application": { - "label": "gov.states.il.dhs.tanf.il_tanf_payment_level_for_grant_application", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.tanf.il_tanf_payment_level_for_initial_eligibility": { - "label": "gov.states.il.dhs.tanf.il_tanf_payment_level_for_initial_eligibility", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.tanf.il_tanf": { - "label": "gov.states.il.dhs.tanf.il_tanf", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.tanf.income.il_tanf_countable_income_for_initial_eligibility": { - "label": "gov.states.il.dhs.tanf.income.il_tanf_countable_income_for_initial_eligibility", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.tanf.income.il_tanf_countable_income_for_grant_calculation": { - "label": "gov.states.il.dhs.tanf.income.il_tanf_countable_income_for_grant_calculation", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.tanf.income.unearned.il_tanf_countable_unearned_income": { - "label": "gov.states.il.dhs.tanf.income.unearned.il_tanf_countable_unearned_income", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.tanf.income.unearned.il_tanf_gross_unearned_income": { - "label": "gov.states.il.dhs.tanf.income.unearned.il_tanf_gross_unearned_income", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.tanf.income.earned.il_tanf_countable_earned_income_for_grant_calculation": { - "label": "gov.states.il.dhs.tanf.income.earned.il_tanf_countable_earned_income_for_grant_calculation", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.tanf.income.earned.il_tanf_countable_earned_income_for_initial_eligibility": { - "label": "gov.states.il.dhs.tanf.income.earned.il_tanf_countable_earned_income_for_initial_eligibility", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.tanf.income.earned.il_tanf_countable_gross_earned_income": { - "label": "gov.states.il.dhs.tanf.income.earned.il_tanf_countable_gross_earned_income", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.tanf.income.earned.il_tanf_gross_earned_income": { - "label": "gov.states.il.dhs.tanf.income.earned.il_tanf_gross_earned_income", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.tanf.income.deductions.il_tanf_initial_employment_deduction_person": { - "label": "gov.states.il.dhs.tanf.income.deductions.il_tanf_initial_employment_deduction_person", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.tanf.income.deductions.il_tanf_childcare_deduction": { - "label": "gov.states.il.dhs.tanf.income.deductions.il_tanf_childcare_deduction", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.tanf.assistance_unit.il_tanf_payment_eligible_requirements": { - "label": "gov.states.il.dhs.tanf.assistance_unit.il_tanf_payment_eligible_requirements", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.tanf.assistance_unit.il_tanf_assistance_unit_size": { - "label": "gov.states.il.dhs.tanf.assistance_unit.il_tanf_assistance_unit_size", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.tanf.assistance_unit.il_tanf_assistance_unit_fpg": { - "label": "gov.states.il.dhs.tanf.assistance_unit.il_tanf_assistance_unit_fpg", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.tanf.assistance_unit.il_tanf_payment_eligible_parent": { - "label": "gov.states.il.dhs.tanf.assistance_unit.il_tanf_payment_eligible_parent", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.tanf.assistance_unit.il_tanf_payment_eligible_child": { - "label": "gov.states.il.dhs.tanf.assistance_unit.il_tanf_payment_eligible_child", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.tanf.eligibility.il_tanf_immigration_status_eligible_person": { - "label": "gov.states.il.dhs.tanf.eligibility.il_tanf_immigration_status_eligible_person", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.tanf.eligibility.il_tanf_non_financial_eligible": { - "label": "gov.states.il.dhs.tanf.eligibility.il_tanf_non_financial_eligible", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.tanf.eligibility.il_tanf_eligible_child": { - "label": "gov.states.il.dhs.tanf.eligibility.il_tanf_eligible_child", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.tanf.eligibility.il_tanf_income_eligible": { - "label": "gov.states.il.dhs.tanf.eligibility.il_tanf_income_eligible", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.tanf.eligibility.il_tanf_demographic_eligible_person": { - "label": "gov.states.il.dhs.tanf.eligibility.il_tanf_demographic_eligible_person", - "description": null, - "index": 0 - }, - "gov.states.il.dhs.tanf.eligibility.il_tanf_eligible": { - "label": "gov.states.il.dhs.tanf.eligibility.il_tanf_eligible", - "description": null, - "index": 0 - }, - "gov.states.ut": { - "label": "Utah", - "description": "* We don't have any code logic in FiscalSim-US for Utah exempt status as stated in line 21 of the 2022 Utah Individual Income Tax Return [form TC-40](https://tax.utah.gov/forms/current/tc-40.pdf). Page 2 of the [instructions for form TC-40](https://tax.utah.gov/forms/current/tc-40inst.pdf) describe \"Qualified Exempt Taxpayer\" and \"Nonresident Filing Exemption\".\n* We don't have any code logic in FiscalSim-US for Utah Penalty and interest described in line 4 of the 2022 Utah Individual Income Tax Return [form TC-40](https://tax.utah.gov/forms/current/tc-40.pdf).\n* We do not model full or part-year resident status in line 25 of the 2022 Utah Individual Income Tax Return [form TC-40](https://tax.utah.gov/forms/current/tc-40.pdf).\n* We do not model voluntary contributions from TC-40 on page 3, part 4 in line 28 of the 2022 Utah Individual Income Tax Return [form TC-40](https://tax.utah.gov/forms/current/tc-40.pdf).\n* We do not model previous refund for amended returns on line 29 of the 2022 Utah Individual Income Tax Return [form TC-40](https://tax.utah.gov/forms/current/tc-40.pdf).\n* We do not model the Utah use tax from line 31 of the 2022 Utah Individual Income Tax Return [form TC-40](https://tax.utah.gov/forms/current/tc-40.pdf). This is a tax on goods and taxable services for use, storage, or other consumption in Utah during the taxable year and applies only if sales tax was not paid at the time of purchase. (see [TC-40 instructions](https://tax.utah.gov/forms/current/tc-40inst.pdf), pages 9-10). The Use Tax Worksheet is available in the TC-40 instructions along with the use tax rates in each Utah local unit." - }, - "gov.states.ut.tax.income.ut_income_tax": { - "label": "gov.states.ut.tax.income.ut_income_tax", - "description": null, - "index": 0 - }, - "gov.states.ut.tax.income.ut_income_tax_before_refundable_credits": { - "label": "gov.states.ut.tax.income.ut_income_tax_before_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.ut.tax.income.ut_income_tax_before_non_refundable_credits": { - "label": "gov.states.ut.tax.income.ut_income_tax_before_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.ut.tax.income.ut_income_tax_before_credits": { - "label": "gov.states.ut.tax.income.ut_income_tax_before_credits", - "description": null, - "index": 0 - }, - "gov.states.ut.tax.income.ut_income_tax_exempt": { - "label": "gov.states.ut.tax.income.ut_income_tax_exempt", - "description": null, - "index": 0 - }, - "gov.states.ut.tax.income.ut_withheld_income_tax": { - "label": "gov.states.ut.tax.income.ut_withheld_income_tax", - "description": null, - "index": 0 - }, - "gov.states.ut.tax.income.credits.ut_non_refundable_credits": { - "label": "gov.states.ut.tax.income.credits.ut_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.ut.tax.income.credits.ut_at_home_parent_credit": { - "label": "gov.states.ut.tax.income.credits.ut_at_home_parent_credit", - "description": null, - "index": 0 - }, - "gov.states.ut.tax.income.credits.ut_refundable_credits": { - "label": "gov.states.ut.tax.income.credits.ut_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.ut.tax.income.credits.ut_at_home_parent_credit_agi_eligible": { - "label": "gov.states.ut.tax.income.credits.ut_at_home_parent_credit_agi_eligible", - "description": null, - "index": 0 - }, - "gov.states.ut.tax.income.credits.ut_at_home_parent_credit_earned_income_eligible_person": { - "label": "gov.states.ut.tax.income.credits.ut_at_home_parent_credit_earned_income_eligible_person", - "description": null, - "index": 0 - }, - "gov.states.ut.tax.income.credits.ut_eitc": { - "label": "gov.states.ut.tax.income.credits.ut_eitc", - "description": null, - "index": 0 - }, - "gov.states.ut.tax.income.credits.retirement_credit.ut_retirement_credit_max": { - "label": "gov.states.ut.tax.income.credits.retirement_credit.ut_retirement_credit_max", - "description": null, - "index": 0 - }, - "gov.states.ut.tax.income.credits.retirement_credit.ut_retirement_credit": { - "label": "gov.states.ut.tax.income.credits.retirement_credit.ut_retirement_credit", - "description": null, - "index": 0 - }, - "gov.states.ut.tax.income.credits.retirement_credit.ut_claims_retirement_credit": { - "label": "gov.states.ut.tax.income.credits.retirement_credit.ut_claims_retirement_credit", - "description": null, - "index": 0 - }, - "gov.states.ut.tax.income.credits.ss_benefits_credit.ut_ss_benefits_credit": { - "label": "gov.states.ut.tax.income.credits.ss_benefits_credit.ut_ss_benefits_credit", - "description": null, - "index": 0 - }, - "gov.states.ut.tax.income.credits.ss_benefits_credit.ut_ss_benefits_credit_max": { - "label": "gov.states.ut.tax.income.credits.ss_benefits_credit.ut_ss_benefits_credit_max", - "description": null, - "index": 0 - }, - "gov.states.ut.tax.income.credits.taxpayer_credit.ut_taxpayer_credit_reduction": { - "label": "gov.states.ut.tax.income.credits.taxpayer_credit.ut_taxpayer_credit_reduction", - "description": null, - "index": 0 - }, - "gov.states.ut.tax.income.credits.taxpayer_credit.ut_personal_exemption": { - "label": "gov.states.ut.tax.income.credits.taxpayer_credit.ut_personal_exemption", - "description": null, - "index": 0 - }, - "gov.states.ut.tax.income.credits.taxpayer_credit.ut_personal_exemption_additional_dependents": { - "label": "gov.states.ut.tax.income.credits.taxpayer_credit.ut_personal_exemption_additional_dependents", - "description": null, - "index": 0 - }, - "gov.states.ut.tax.income.credits.taxpayer_credit.ut_taxpayer_credit_phase_out_income": { - "label": "gov.states.ut.tax.income.credits.taxpayer_credit.ut_taxpayer_credit_phase_out_income", - "description": null, - "index": 0 - }, - "gov.states.ut.tax.income.credits.taxpayer_credit.ut_total_dependents": { - "label": "gov.states.ut.tax.income.credits.taxpayer_credit.ut_total_dependents", - "description": null, - "index": 0 - }, - "gov.states.ut.tax.income.credits.taxpayer_credit.ut_federal_deductions_for_taxpayer_credit": { - "label": "gov.states.ut.tax.income.credits.taxpayer_credit.ut_federal_deductions_for_taxpayer_credit", - "description": null, - "index": 0 - }, - "gov.states.ut.tax.income.credits.taxpayer_credit.ut_personal_exemption_additional_dependent_eligible": { - "label": "gov.states.ut.tax.income.credits.taxpayer_credit.ut_personal_exemption_additional_dependent_eligible", - "description": null, - "index": 0 - }, - "gov.states.ut.tax.income.credits.taxpayer_credit.ut_taxpayer_credit": { - "label": "gov.states.ut.tax.income.credits.taxpayer_credit.ut_taxpayer_credit", - "description": null, - "index": 0 - }, - "gov.states.ut.tax.income.credits.taxpayer_credit.ut_taxpayer_credit_max": { - "label": "gov.states.ut.tax.income.credits.taxpayer_credit.ut_taxpayer_credit_max", - "description": null, - "index": 0 - }, - "gov.states.ut.tax.income.credits.child_tax_credit.ut_ctc": { - "label": "gov.states.ut.tax.income.credits.child_tax_credit.ut_ctc", - "description": null, - "index": 0 - }, - "gov.states.ut.tax.income.taxable_income.ut_taxable_income": { - "label": "gov.states.ut.tax.income.taxable_income.ut_taxable_income", - "description": null, - "index": 0 - }, - "gov.states.ut.tax.income.taxable_income.ut_state_tax_refund": { - "label": "gov.states.ut.tax.income.taxable_income.ut_state_tax_refund", - "description": null, - "index": 0 - }, - "gov.states.ut.tax.income.taxable_income.ut_total_income": { - "label": "gov.states.ut.tax.income.taxable_income.ut_total_income", - "description": null, - "index": 0 - }, - "gov.states.ut.tax.income.taxable_income.ut_additions": { - "label": "gov.states.ut.tax.income.taxable_income.ut_additions", - "description": null, - "index": 0 - }, - "gov.states.ut.tax.income.taxable_income.ut_subtractions": { - "label": "gov.states.ut.tax.income.taxable_income.ut_subtractions", - "description": null, - "index": 0 - }, - "gov.states.dc.tax.income.dc_income_tax_before_credits": { - "label": "gov.states.dc.tax.income.dc_income_tax_before_credits", - "description": null, - "index": 0 - }, - "gov.states.dc.tax.income.dc_snap_temporary_local_benefit": { - "label": "gov.states.dc.tax.income.dc_snap_temporary_local_benefit", - "description": null, - "index": 0 - }, - "gov.states.dc.tax.income.dc_income_tax_before_refundable_credits": { - "label": "gov.states.dc.tax.income.dc_income_tax_before_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.dc.tax.income.dc_income_tax_before_credits_indiv": { - "label": "gov.states.dc.tax.income.dc_income_tax_before_credits_indiv", - "description": null, - "index": 0 - }, - "gov.states.dc.tax.income.dc_agi": { - "label": "gov.states.dc.tax.income.dc_agi", - "description": null, - "index": 0 - }, - "gov.states.dc.tax.income.dc_withheld_income_tax": { - "label": "gov.states.dc.tax.income.dc_withheld_income_tax", - "description": null, - "index": 0 - }, - "gov.states.dc.tax.income.dc_income_tax_before_credits_joint": { - "label": "gov.states.dc.tax.income.dc_income_tax_before_credits_joint", - "description": null, - "index": 0 - }, - "gov.states.dc.tax.income.dc_taxable_income_joint": { - "label": "gov.states.dc.tax.income.dc_taxable_income_joint", - "description": null, - "index": 0 - }, - "gov.states.dc.tax.income.dc_taxable_income_indiv": { - "label": "gov.states.dc.tax.income.dc_taxable_income_indiv", - "description": null, - "index": 0 - }, - "gov.states.dc.tax.income.dc_files_separately": { - "label": "gov.states.dc.tax.income.dc_files_separately", - "description": null, - "index": 0 - }, - "gov.states.dc.tax.income.dc_income_tax": { - "label": "gov.states.dc.tax.income.dc_income_tax", - "description": null, - "index": 0 - }, - "gov.states.dc.tax.income.credits.dc_cdcc": { - "label": "gov.states.dc.tax.income.credits.dc_cdcc", - "description": null, - "index": 0 - }, - "gov.states.dc.tax.income.credits.dc_ptc": { - "label": "gov.states.dc.tax.income.credits.dc_ptc", - "description": null, - "index": 0 - }, - "gov.states.dc.tax.income.credits.takes_up_dc_ptc": { - "label": "gov.states.dc.tax.income.credits.takes_up_dc_ptc", - "description": null, - "index": 0 - }, - "gov.states.dc.tax.income.credits.dc_kccatc": { - "label": "gov.states.dc.tax.income.credits.dc_kccatc", - "description": null, - "index": 0 - }, - "gov.states.dc.tax.income.credits.dc_refundable_credits": { - "label": "gov.states.dc.tax.income.credits.dc_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.dc.tax.income.credits.dc_non_refundable_credits": { - "label": "gov.states.dc.tax.income.credits.dc_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.dc.tax.income.credits.eitc.dc_eitc": { - "label": "gov.states.dc.tax.income.credits.eitc.dc_eitc", - "description": null, - "index": 0 - }, - "gov.states.dc.tax.income.credits.eitc.dc_eitc_without_qualifying_child": { - "label": "gov.states.dc.tax.income.credits.eitc.dc_eitc_without_qualifying_child", - "description": null, - "index": 0 - }, - "gov.states.dc.tax.income.credits.eitc.dc_eitc_with_qualifying_child": { - "label": "gov.states.dc.tax.income.credits.eitc.dc_eitc_with_qualifying_child", - "description": null, - "index": 0 - }, - "gov.states.dc.tax.income.credits.ctc.dc_ctc_capped_children": { - "label": "gov.states.dc.tax.income.credits.ctc.dc_ctc_capped_children", - "description": null, - "index": 0 - }, - "gov.states.dc.tax.income.credits.ctc.dc_ctc": { - "label": "gov.states.dc.tax.income.credits.ctc.dc_ctc", - "description": null, - "index": 0 - }, - "gov.states.dc.tax.income.credits.ctc.dc_ctc_eligible_child": { - "label": "gov.states.dc.tax.income.credits.ctc.dc_ctc_eligible_child", - "description": null, - "index": 0 - }, - "gov.states.dc.tax.income.subtractions.dc_disabled_exclusion_subtraction": { - "label": "gov.states.dc.tax.income.subtractions.dc_disabled_exclusion_subtraction", - "description": null, - "index": 0 - }, - "gov.states.dc.tax.income.subtractions.dc_disability_exclusion": { - "label": "gov.states.dc.tax.income.subtractions.dc_disability_exclusion", - "description": null, - "index": 0 - }, - "gov.states.dc.tax.income.subtractions.dc_income_subtractions": { - "label": "gov.states.dc.tax.income.subtractions.dc_income_subtractions", - "description": null, - "index": 0 - }, - "gov.states.dc.tax.income.additions.dc_additions": { - "label": "gov.states.dc.tax.income.additions.dc_additions", - "description": null, - "index": 0 - }, - "gov.states.dc.tax.income.additions.dc_self_employment_loss_addition": { - "label": "gov.states.dc.tax.income.additions.dc_self_employment_loss_addition", - "description": null, - "index": 0 - }, - "gov.states.dc.tax.income.deductions.dc_standard_deduction": { - "label": "gov.states.dc.tax.income.deductions.dc_standard_deduction", - "description": null, - "index": 0 - }, - "gov.states.dc.tax.income.deductions.dc_deduction_indiv": { - "label": "gov.states.dc.tax.income.deductions.dc_deduction_indiv", - "description": null, - "index": 0 - }, - "gov.states.dc.tax.income.deductions.dc_itemized_deductions": { - "label": "gov.states.dc.tax.income.deductions.dc_itemized_deductions", - "description": null, - "index": 0 - }, - "gov.states.dc.tax.income.deductions.dc_deduction_joint": { - "label": "gov.states.dc.tax.income.deductions.dc_deduction_joint", - "description": null, - "index": 0 - }, - "gov.states.dc.doee.liheap.dc_liheap_housing_type": { - "label": "gov.states.dc.doee.liheap.dc_liheap_housing_type", - "description": null, - "index": 0 - }, - "gov.states.dc.doee.liheap.dc_liheap_payment": { - "label": "gov.states.dc.doee.liheap.dc_liheap_payment", - "description": null, - "index": 0 - }, - "gov.states.dc.doee.liheap.dc_liheap_eligible": { - "label": "gov.states.dc.doee.liheap.dc_liheap_eligible", - "description": null, - "index": 0 - }, - "gov.states.dc.doee.liheap.dc_liheap_income_level": { - "label": "gov.states.dc.doee.liheap.dc_liheap_income_level", - "description": null, - "index": 0 - }, - "gov.states.dc.doee.liheap.dc_liheap_heating_type": { - "label": "gov.states.dc.doee.liheap.dc_liheap_heating_type", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.dc_pap_eligible_child": { - "label": "gov.states.dc.dhs.dc_pap_eligible_child", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.ccsp.dc_ccsp_enrolled": { - "label": "gov.states.dc.dhs.ccsp.dc_ccsp_enrolled", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.ccsp.dc_ccsp_assets": { - "label": "gov.states.dc.dhs.ccsp.dc_ccsp_assets", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.ccsp.dc_ccsp": { - "label": "gov.states.dc.dhs.ccsp.dc_ccsp", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.ccsp.dc_ccsp_countable_income": { - "label": "gov.states.dc.dhs.ccsp.dc_ccsp_countable_income", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.ccsp.copay.dc_ccsp_first_child_copay": { - "label": "gov.states.dc.dhs.ccsp.copay.dc_ccsp_first_child_copay", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.ccsp.copay.dc_ccsp_is_full_time": { - "label": "gov.states.dc.dhs.ccsp.copay.dc_ccsp_is_full_time", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.ccsp.copay.dc_ccsp_is_second_youngest_child": { - "label": "gov.states.dc.dhs.ccsp.copay.dc_ccsp_is_second_youngest_child", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.ccsp.copay.dc_ccsp_second_child_copay": { - "label": "gov.states.dc.dhs.ccsp.copay.dc_ccsp_second_child_copay", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.ccsp.copay.dc_ccsp_copay": { - "label": "gov.states.dc.dhs.ccsp.copay.dc_ccsp_copay", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.ccsp.copay.dc_ccsp_is_youngest_child": { - "label": "gov.states.dc.dhs.ccsp.copay.dc_ccsp_is_youngest_child", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.ccsp.eligibility.dc_ccsp_income_eligible": { - "label": "gov.states.dc.dhs.ccsp.eligibility.dc_ccsp_income_eligible", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.ccsp.eligibility.dc_ccsp_eligible": { - "label": "gov.states.dc.dhs.ccsp.eligibility.dc_ccsp_eligible", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.ccsp.eligibility.dc_ccsp_eligible_child": { - "label": "gov.states.dc.dhs.ccsp.eligibility.dc_ccsp_eligible_child", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.ccsp.eligibility.dc_ccsp_immigration_status_eligible_person": { - "label": "gov.states.dc.dhs.ccsp.eligibility.dc_ccsp_immigration_status_eligible_person", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.ccsp.eligibility.dc_ccsp_income_test_waived": { - "label": "gov.states.dc.dhs.ccsp.eligibility.dc_ccsp_income_test_waived", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.ccsp.eligibility.dc_ccsp_asset_eligible": { - "label": "gov.states.dc.dhs.ccsp.eligibility.dc_ccsp_asset_eligible", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.ccsp.eligibility.qualified_activity_or_need.dc_ccsp_qualified_activity_eligible": { - "label": "gov.states.dc.dhs.ccsp.eligibility.qualified_activity_or_need.dc_ccsp_qualified_activity_eligible", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.ccsp.eligibility.qualified_activity_or_need.dc_ccsp_qualified_need_eligible": { - "label": "gov.states.dc.dhs.ccsp.eligibility.qualified_activity_or_need.dc_ccsp_qualified_need_eligible", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.ccsp.eligibility.qualified_activity_or_need.dc_ccsp_qualified_activity_or_need_eligible": { - "label": "gov.states.dc.dhs.ccsp.eligibility.qualified_activity_or_need.dc_ccsp_qualified_activity_or_need_eligible", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.ccsp.payment.dc_ccsp_childcare_provider_category": { - "label": "gov.states.dc.dhs.ccsp.payment.dc_ccsp_childcare_provider_category", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.ccsp.payment.dc_ccsp_maximum_subsidy_amount": { - "label": "gov.states.dc.dhs.ccsp.payment.dc_ccsp_maximum_subsidy_amount", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.ccsp.payment.dc_ccsp_child_category": { - "label": "gov.states.dc.dhs.ccsp.payment.dc_ccsp_child_category", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.ccsp.payment.dc_ccsp_attending_days_per_month": { - "label": "gov.states.dc.dhs.ccsp.payment.dc_ccsp_attending_days_per_month", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.ccsp.payment.dc_ccsp_schedule_type": { - "label": "gov.states.dc.dhs.ccsp.payment.dc_ccsp_schedule_type", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.gac.dc_gac_standard_payment": { - "label": "gov.states.dc.dhs.gac.dc_gac_standard_payment", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.gac.dc_gac": { - "label": "gov.states.dc.dhs.gac.dc_gac", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.gac.dc_gac_assistance_unit_size": { - "label": "gov.states.dc.dhs.gac.dc_gac_assistance_unit_size", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.gac.income.dc_gac_earned_income_after_disregard_person": { - "label": "gov.states.dc.dhs.gac.income.dc_gac_earned_income_after_disregard_person", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.gac.income.dc_gac_countable_unearned_income_person": { - "label": "gov.states.dc.dhs.gac.income.dc_gac_countable_unearned_income_person", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.gac.income.dc_gac_countable_income": { - "label": "gov.states.dc.dhs.gac.income.dc_gac_countable_income", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.gac.eligibility.dc_gac_eligible_child": { - "label": "gov.states.dc.dhs.gac.eligibility.dc_gac_eligible_child", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.gac.eligibility.dc_gac_eligible": { - "label": "gov.states.dc.dhs.gac.eligibility.dc_gac_eligible", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.gac.eligibility.dc_gac_income_eligible": { - "label": "gov.states.dc.dhs.gac.eligibility.dc_gac_income_eligible", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.power.dc_power_eligible": { - "label": "gov.states.dc.dhs.power.dc_power_eligible", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.power.dc_power": { - "label": "gov.states.dc.dhs.power.dc_power", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.power.dc_power_head_or_spouse_eligible": { - "label": "gov.states.dc.dhs.power.dc_power_head_or_spouse_eligible", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.power.dc_power_has_disqualifying_beneifts": { - "label": "gov.states.dc.dhs.power.dc_power_has_disqualifying_beneifts", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.tanf.dc_tanf_countable_resources": { - "label": "gov.states.dc.dhs.tanf.dc_tanf_countable_resources", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.tanf.dc_tanf_standard_payment": { - "label": "gov.states.dc.dhs.tanf.dc_tanf_standard_payment", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.tanf.dc_tanf": { - "label": "gov.states.dc.dhs.tanf.dc_tanf", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.tanf.dc_tanf_assistance_unit_size": { - "label": "gov.states.dc.dhs.tanf.dc_tanf_assistance_unit_size", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.tanf.income.dc_tanf_countable_income": { - "label": "gov.states.dc.dhs.tanf.income.dc_tanf_countable_income", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.tanf.income.unearned.dc_tanf_countable_unearned_income": { - "label": "gov.states.dc.dhs.tanf.income.unearned.dc_tanf_countable_unearned_income", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.tanf.income.unearned.dc_tanf_gross_unearned_income": { - "label": "gov.states.dc.dhs.tanf.income.unearned.dc_tanf_gross_unearned_income", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.tanf.income.earned.dc_tanf_earned_income_after_disregard_person": { - "label": "gov.states.dc.dhs.tanf.income.earned.dc_tanf_earned_income_after_disregard_person", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.tanf.income.earned.dc_tanf_gross_earned_income": { - "label": "gov.states.dc.dhs.tanf.income.earned.dc_tanf_gross_earned_income", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.tanf.income.earned.dc_tanf_countable_earned_income": { - "label": "gov.states.dc.dhs.tanf.income.earned.dc_tanf_countable_earned_income", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.tanf.income.deductions.dc_tanf_childcare_deduction": { - "label": "gov.states.dc.dhs.tanf.income.deductions.dc_tanf_childcare_deduction", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.tanf.work_requirement.dc_tanf_work_requirement_exempt": { - "label": "gov.states.dc.dhs.tanf.work_requirement.dc_tanf_work_requirement_exempt", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.tanf.work_requirement.dc_tanf_is_working": { - "label": "gov.states.dc.dhs.tanf.work_requirement.dc_tanf_is_working", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.tanf.work_requirement.dc_tanf_meets_work_requirements": { - "label": "gov.states.dc.dhs.tanf.work_requirement.dc_tanf_meets_work_requirements", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.tanf.eligibility.dc_tanf_immigration_status_eligible_person": { - "label": "gov.states.dc.dhs.tanf.eligibility.dc_tanf_immigration_status_eligible_person", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.tanf.eligibility.dc_tanf_demographic_eligible_person": { - "label": "gov.states.dc.dhs.tanf.eligibility.dc_tanf_demographic_eligible_person", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.tanf.eligibility.dc_tanf_income_eligible": { - "label": "gov.states.dc.dhs.tanf.eligibility.dc_tanf_income_eligible", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.tanf.eligibility.dc_tanf_basic_eligibility_requirements": { - "label": "gov.states.dc.dhs.tanf.eligibility.dc_tanf_basic_eligibility_requirements", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.tanf.eligibility.dc_tanf_resources_eligible": { - "label": "gov.states.dc.dhs.tanf.eligibility.dc_tanf_resources_eligible", - "description": null, - "index": 0 - }, - "gov.states.dc.dhs.tanf.eligibility.dc_tanf_eligible": { - "label": "gov.states.dc.dhs.tanf.eligibility.dc_tanf_eligible", - "description": null, - "index": 0 - }, - "gov.states.al.tax.income.al_income_tax_before_refundable_credits": { - "label": "gov.states.al.tax.income.al_income_tax_before_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.al.tax.income.al_agi": { - "label": "gov.states.al.tax.income.al_agi", - "description": null, - "index": 0 - }, - "gov.states.al.tax.income.al_withheld_income_tax": { - "label": "gov.states.al.tax.income.al_withheld_income_tax", - "description": null, - "index": 0 - }, - "gov.states.al.tax.income.al_refundable_credits": { - "label": "gov.states.al.tax.income.al_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.al.tax.income.al_income_tax": { - "label": "gov.states.al.tax.income.al_income_tax", - "description": null, - "index": 0 - }, - "gov.states.al.tax.income.al_income_tax_before_non_refundable_credits": { - "label": "gov.states.al.tax.income.al_income_tax_before_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.al.tax.income.al_taxable_income": { - "label": "gov.states.al.tax.income.al_taxable_income", - "description": null, - "index": 0 - }, - "gov.states.al.tax.income.al_non_refundable_credits": { - "label": "gov.states.al.tax.income.al_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.al.tax.income.exemptions.al_personal_exemption": { - "label": "gov.states.al.tax.income.exemptions.al_personal_exemption", - "description": null, - "index": 0 - }, - "gov.states.al.tax.income.exemptions.al_dependent_exemption": { - "label": "gov.states.al.tax.income.exemptions.al_dependent_exemption", - "description": null, - "index": 0 - }, - "gov.states.al.tax.income.exemptions.retirement.al_retirement_exemption_person": { - "label": "gov.states.al.tax.income.exemptions.retirement.al_retirement_exemption_person", - "description": null, - "index": 0 - }, - "gov.states.al.tax.income.exemptions.retirement.al_retirement_exemption": { - "label": "gov.states.al.tax.income.exemptions.retirement.al_retirement_exemption", - "description": null, - "index": 0 - }, - "gov.states.al.tax.income.exemptions.retirement.al_retirement_exemption_eligible_person": { - "label": "gov.states.al.tax.income.exemptions.retirement.al_retirement_exemption_eligible_person", - "description": null, - "index": 0 - }, - "gov.states.al.tax.income.deductions.al_deductions": { - "label": "gov.states.al.tax.income.deductions.al_deductions", - "description": null, - "index": 0 - }, - "gov.states.al.tax.income.deductions.al_standard_deduction": { - "label": "gov.states.al.tax.income.deductions.al_standard_deduction", - "description": null, - "index": 0 - }, - "gov.states.al.tax.income.deductions.federal_income_tax.al_federal_income_tax_deduction": { - "label": "gov.states.al.tax.income.deductions.federal_income_tax.al_federal_income_tax_deduction", - "description": null, - "index": 0 - }, - "gov.states.al.tax.income.deductions.itemized.al_itemized_deductions": { - "label": "gov.states.al.tax.income.deductions.itemized.al_itemized_deductions", - "description": null, - "index": 0 - }, - "gov.states.al.tax.income.deductions.itemized.al_investment_interest": { - "label": "gov.states.al.tax.income.deductions.itemized.al_investment_interest", - "description": null, - "index": 0 - }, - "gov.states.al.tax.income.deductions.itemized.al_medical_expense_deduction": { - "label": "gov.states.al.tax.income.deductions.itemized.al_medical_expense_deduction", - "description": null, - "index": 0 - }, - "gov.states.al.tax.income.deductions.itemized.al_misc_deduction": { - "label": "gov.states.al.tax.income.deductions.itemized.al_misc_deduction", - "description": null, - "index": 0 - }, - "gov.states.al.tax.income.deductions.itemized.al_casualty_loss_deduction": { - "label": "gov.states.al.tax.income.deductions.itemized.al_casualty_loss_deduction", - "description": null, - "index": 0 - }, - "gov.states.ri.tax.income.ri_withheld_income_tax": { - "label": "gov.states.ri.tax.income.ri_withheld_income_tax", - "description": null, - "index": 0 - }, - "gov.states.ri.tax.income.ri_income_tax_before_refundable_credits": { - "label": "gov.states.ri.tax.income.ri_income_tax_before_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.ri.tax.income.ri_non_refundable_credits": { - "label": "gov.states.ri.tax.income.ri_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.ri.tax.income.ri_taxable_income": { - "label": "gov.states.ri.tax.income.ri_taxable_income", - "description": null, - "index": 0 - }, - "gov.states.ri.tax.income.ri_income_tax": { - "label": "gov.states.ri.tax.income.ri_income_tax", - "description": null, - "index": 0 - }, - "gov.states.ri.tax.income.ri_income_tax_before_non_refundable_credits": { - "label": "gov.states.ri.tax.income.ri_income_tax_before_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.ri.tax.income.ri_refundable_credits": { - "label": "gov.states.ri.tax.income.ri_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.ri.tax.income.agi.ri_agi": { - "label": "gov.states.ri.tax.income.agi.ri_agi", - "description": null, - "index": 0 - }, - "gov.states.ri.tax.income.agi.ri_additions": { - "label": "gov.states.ri.tax.income.agi.ri_additions", - "description": null, - "index": 0 - }, - "gov.states.ri.tax.income.agi.subtractions.ri_tuition_saving_program_contribution_subtraction": { - "label": "gov.states.ri.tax.income.agi.subtractions.ri_tuition_saving_program_contribution_subtraction", - "description": null, - "index": 0 - }, - "gov.states.ri.tax.income.agi.subtractions.ri_subtractions": { - "label": "gov.states.ri.tax.income.agi.subtractions.ri_subtractions", - "description": null, - "index": 0 - }, - "gov.states.ri.tax.income.agi.subtractions.social_security.ri_social_security_modification": { - "label": "gov.states.ri.tax.income.agi.subtractions.social_security.ri_social_security_modification", - "description": null, - "index": 0 - }, - "gov.states.ri.tax.income.agi.subtractions.social_security.ri_social_security_modification_eligible": { - "label": "gov.states.ri.tax.income.agi.subtractions.social_security.ri_social_security_modification_eligible", - "description": null, - "index": 0 - }, - "gov.states.ri.tax.income.agi.subtractions.taxable_retirement_income.ri_retirement_income_subtraction_eligible": { - "label": "gov.states.ri.tax.income.agi.subtractions.taxable_retirement_income.ri_retirement_income_subtraction_eligible", - "description": null, - "index": 0 - }, - "gov.states.ri.tax.income.agi.subtractions.taxable_retirement_income.ri_retirement_income_subtraction": { - "label": "gov.states.ri.tax.income.agi.subtractions.taxable_retirement_income.ri_retirement_income_subtraction", - "description": null, - "index": 0 - }, - "gov.states.ri.tax.income.credits.eitc.ri_eitc": { - "label": "gov.states.ri.tax.income.credits.eitc.ri_eitc", - "description": null, - "index": 0 - }, - "gov.states.ri.tax.income.credits.rebates.ri_child_tax_rebate": { - "label": "gov.states.ri.tax.income.credits.rebates.ri_child_tax_rebate", - "description": null, - "index": 0 - }, - "gov.states.ri.tax.income.credits.rebates.ri_child_tax_rebate_eligible": { - "label": "gov.states.ri.tax.income.credits.rebates.ri_child_tax_rebate_eligible", - "description": null, - "index": 0 - }, - "gov.states.ri.tax.income.credits.cdcc.ri_cdcc": { - "label": "gov.states.ri.tax.income.credits.cdcc.ri_cdcc", - "description": null, - "index": 0 - }, - "gov.states.ri.tax.income.credits.property_tax.ri_property_tax_household_income": { - "label": "gov.states.ri.tax.income.credits.property_tax.ri_property_tax_household_income", - "description": null, - "index": 0 - }, - "gov.states.ri.tax.income.credits.property_tax.ri_property_tax_credit_eligible": { - "label": "gov.states.ri.tax.income.credits.property_tax.ri_property_tax_credit_eligible", - "description": null, - "index": 0 - }, - "gov.states.ri.tax.income.credits.property_tax.ri_property_tax_credit": { - "label": "gov.states.ri.tax.income.credits.property_tax.ri_property_tax_credit", - "description": null, - "index": 0 - }, - "gov.states.ri.tax.income.exemption.ri_exemptions": { - "label": "gov.states.ri.tax.income.exemption.ri_exemptions", - "description": null, - "index": 0 - }, - "gov.states.ri.tax.income.deductions.standard.ri_standard_deduction": { - "label": "gov.states.ri.tax.income.deductions.standard.ri_standard_deduction", - "description": null, - "index": 0 - }, - "gov.states.ri.tax.income.deductions.standard.ri_standard_deduction_applicable_percentage": { - "label": "gov.states.ri.tax.income.deductions.standard.ri_standard_deduction_applicable_percentage", - "description": null, - "index": 0 - }, - "gov.states.in.tax.income.in_withheld_income_tax": { - "label": "gov.states.in.tax.income.in_withheld_income_tax", - "description": null, - "index": 0 - }, - "gov.states.in.tax.income.in_agi_tax": { - "label": "gov.states.in.tax.income.in_agi_tax", - "description": null, - "index": 0 - }, - "gov.states.in.tax.income.in_county_tax": { - "label": "gov.states.in.tax.income.in_county_tax", - "description": null, - "index": 0 - }, - "gov.states.in.tax.income.in_agi": { - "label": "gov.states.in.tax.income.in_agi", - "description": null, - "index": 0 - }, - "gov.states.in.tax.income.in_income_tax_before_refundable_credits": { - "label": "gov.states.in.tax.income.in_income_tax_before_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.in.tax.income.in_income_tax": { - "label": "gov.states.in.tax.income.in_income_tax", - "description": null, - "index": 0 - }, - "gov.states.in.tax.income.credits.in_refundable_credits": { - "label": "gov.states.in.tax.income.credits.in_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.in.tax.income.credits.earned_income_credit.in_eitc_eligible": { - "label": "gov.states.in.tax.income.credits.earned_income_credit.in_eitc_eligible", - "description": null, - "index": 0 - }, - "gov.states.in.tax.income.credits.earned_income_credit.in_eitc": { - "label": "gov.states.in.tax.income.credits.earned_income_credit.in_eitc", - "description": null, - "index": 0 - }, - "gov.states.in.tax.income.credits.elderly_tax_credit.in_unified_elderly_tax_credit": { - "label": "gov.states.in.tax.income.credits.elderly_tax_credit.in_unified_elderly_tax_credit", - "description": null, - "index": 0 - }, - "gov.states.in.tax.income.exemptions.in_adoption_exemption": { - "label": "gov.states.in.tax.income.exemptions.in_adoption_exemption", - "description": null, - "index": 0 - }, - "gov.states.in.tax.income.exemptions.in_additional_exemptions": { - "label": "gov.states.in.tax.income.exemptions.in_additional_exemptions", - "description": null, - "index": 0 - }, - "gov.states.in.tax.income.exemptions.in_aged_low_agi_exemptions": { - "label": "gov.states.in.tax.income.exemptions.in_aged_low_agi_exemptions", - "description": null, - "index": 0 - }, - "gov.states.in.tax.income.exemptions.in_exemptions": { - "label": "gov.states.in.tax.income.exemptions.in_exemptions", - "description": null, - "index": 0 - }, - "gov.states.in.tax.income.exemptions.in_qualifying_child_count": { - "label": "gov.states.in.tax.income.exemptions.in_qualifying_child_count", - "description": null, - "index": 0 - }, - "gov.states.in.tax.income.exemptions.in_aged_blind_exemptions": { - "label": "gov.states.in.tax.income.exemptions.in_aged_blind_exemptions", - "description": null, - "index": 0 - }, - "gov.states.in.tax.income.exemptions.in_is_qualifying_dependent_child": { - "label": "gov.states.in.tax.income.exemptions.in_is_qualifying_dependent_child", - "description": null, - "index": 0 - }, - "gov.states.in.tax.income.exemptions.in_base_exemptions": { - "label": "gov.states.in.tax.income.exemptions.in_base_exemptions", - "description": null, - "index": 0 - }, - "gov.states.in.tax.income.add_backs.in_oos_municipal_obligation_interest_add_back": { - "label": "gov.states.in.tax.income.add_backs.in_oos_municipal_obligation_interest_add_back", - "description": null, - "index": 0 - }, - "gov.states.in.tax.income.add_backs.in_bonus_depreciation_add_back": { - "label": "gov.states.in.tax.income.add_backs.in_bonus_depreciation_add_back", - "description": null, - "index": 0 - }, - "gov.states.in.tax.income.add_backs.in_nol_add_back": { - "label": "gov.states.in.tax.income.add_backs.in_nol_add_back", - "description": null, - "index": 0 - }, - "gov.states.in.tax.income.add_backs.in_add_backs": { - "label": "gov.states.in.tax.income.add_backs.in_add_backs", - "description": null, - "index": 0 - }, - "gov.states.in.tax.income.add_backs.in_section_179_expense_add_back": { - "label": "gov.states.in.tax.income.add_backs.in_section_179_expense_add_back", - "description": null, - "index": 0 - }, - "gov.states.in.tax.income.add_backs.in_tax_add_back": { - "label": "gov.states.in.tax.income.add_backs.in_tax_add_back", - "description": null, - "index": 0 - }, - "gov.states.in.tax.income.add_backs.in_other_add_backs": { - "label": "gov.states.in.tax.income.add_backs.in_other_add_backs", - "description": null, - "index": 0 - }, - "gov.states.in.tax.income.deductions.in_unemployment_compensation_deduction": { - "label": "gov.states.in.tax.income.deductions.in_unemployment_compensation_deduction", - "description": null, - "index": 0 - }, - "gov.states.in.tax.income.deductions.in_nonpublic_school_deduction": { - "label": "gov.states.in.tax.income.deductions.in_nonpublic_school_deduction", - "description": null, - "index": 0 - }, - "gov.states.in.tax.income.deductions.in_healthcare_sharing_deduction": { - "label": "gov.states.in.tax.income.deductions.in_healthcare_sharing_deduction", - "description": null, - "index": 0 - }, - "gov.states.in.tax.income.deductions.in_deductions": { - "label": "gov.states.in.tax.income.deductions.in_deductions", - "description": null, - "index": 0 - }, - "gov.states.in.tax.income.deductions.in_renters_deduction": { - "label": "gov.states.in.tax.income.deductions.in_renters_deduction", - "description": null, - "index": 0 - }, - "gov.states.in.tax.income.deductions.in_military_service_deduction": { - "label": "gov.states.in.tax.income.deductions.in_military_service_deduction", - "description": null, - "index": 0 - }, - "gov.states.in.tax.income.deductions.in_homeowners_property_tax_deduction": { - "label": "gov.states.in.tax.income.deductions.in_homeowners_property_tax_deduction", - "description": null, - "index": 0 - }, - "gov.states.in.tax.income.deductions.in_other_deductions": { - "label": "gov.states.in.tax.income.deductions.in_other_deductions", - "description": null, - "index": 0 - }, - "gov.states.in.tax.income.deductions.in_nol": { - "label": "gov.states.in.tax.income.deductions.in_nol", - "description": null, - "index": 0 - }, - "gov.states.in.tax.use.in_use_tax": { - "label": "gov.states.in.tax.use.in_use_tax", - "description": null, - "index": 0 - }, - "gov.states.id.tax.income.id_income_tax_liable": { - "label": "gov.states.id.tax.income.id_income_tax_liable", - "description": null, - "index": 0 - }, - "gov.states.id.tax.income.id_additions": { - "label": "gov.states.id.tax.income.id_additions", - "description": null, - "index": 0 - }, - "gov.states.id.tax.income.id_income_tax": { - "label": "gov.states.id.tax.income.id_income_tax", - "description": null, - "index": 0 - }, - "gov.states.id.tax.income.id_refundable_credits": { - "label": "gov.states.id.tax.income.id_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.id.tax.income.id_income_tax_before_non_refundable_credits": { - "label": "gov.states.id.tax.income.id_income_tax_before_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.id.tax.income.id_taxable_income": { - "label": "gov.states.id.tax.income.id_taxable_income", - "description": null, - "index": 0 - }, - "gov.states.id.tax.income.id_income_tax_before_refundable_credits": { - "label": "gov.states.id.tax.income.id_income_tax_before_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.id.tax.income.id_receives_aged_or_disabled_credit": { - "label": "gov.states.id.tax.income.id_receives_aged_or_disabled_credit", - "description": null, - "index": 0 - }, - "gov.states.id.tax.income.id_agi": { - "label": "gov.states.id.tax.income.id_agi", - "description": null, - "index": 0 - }, - "gov.states.id.tax.income.id_withheld_income_tax": { - "label": "gov.states.id.tax.income.id_withheld_income_tax", - "description": null, - "index": 0 - }, - "gov.states.id.tax.income.id_non_refundable_credits": { - "label": "gov.states.id.tax.income.id_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.id.tax.income.other_taxes.pbf.id_pbf": { - "label": "gov.states.id.tax.income.other_taxes.pbf.id_pbf", - "description": null, - "index": 0 - }, - "gov.states.id.tax.income.other_taxes.pbf.id_pbf_liable": { - "label": "gov.states.id.tax.income.other_taxes.pbf.id_pbf_liable", - "description": null, - "index": 0 - }, - "gov.states.id.tax.income.credits.id_aged_or_disabled_credit": { - "label": "gov.states.id.tax.income.credits.id_aged_or_disabled_credit", - "description": null, - "index": 0 - }, - "gov.states.id.tax.income.credits.id_ctc": { - "label": "gov.states.id.tax.income.credits.id_ctc", - "description": null, - "index": 0 - }, - "gov.states.id.tax.income.credits.id_aged_or_disabled_credit_eligible_person": { - "label": "gov.states.id.tax.income.credits.id_aged_or_disabled_credit_eligible_person", - "description": null, - "index": 0 - }, - "gov.states.id.tax.income.credits.grocery.id_grocery_credit": { - "label": "gov.states.id.tax.income.credits.grocery.id_grocery_credit", - "description": null, - "index": 0 - }, - "gov.states.id.tax.income.credits.grocery.id_grocery_credit_aged": { - "label": "gov.states.id.tax.income.credits.grocery.id_grocery_credit_aged", - "description": null, - "index": 0 - }, - "gov.states.id.tax.income.credits.grocery.id_grocery_credit_base": { - "label": "gov.states.id.tax.income.credits.grocery.id_grocery_credit_base", - "description": null, - "index": 0 - }, - "gov.states.id.tax.income.credits.grocery.eligible.id_grocery_credit_qualified_months": { - "label": "gov.states.id.tax.income.credits.grocery.eligible.id_grocery_credit_qualified_months", - "description": null, - "index": 0 - }, - "gov.states.id.tax.income.credits.grocery.eligible.id_grocery_credit_qualifying_month": { - "label": "gov.states.id.tax.income.credits.grocery.eligible.id_grocery_credit_qualifying_month", - "description": null, - "index": 0 - }, - "gov.states.id.tax.income.subtractions.id_aged_or_disabled_deduction_eligible_person": { - "label": "gov.states.id.tax.income.subtractions.id_aged_or_disabled_deduction_eligible_person", - "description": null, - "index": 0 - }, - "gov.states.id.tax.income.subtractions.id_aged_or_disabled_deduction": { - "label": "gov.states.id.tax.income.subtractions.id_aged_or_disabled_deduction", - "description": null, - "index": 0 - }, - "gov.states.id.tax.income.subtractions.id_subtractions": { - "label": "gov.states.id.tax.income.subtractions.id_subtractions", - "description": null, - "index": 0 - }, - "gov.states.id.tax.income.subtractions.household_and_dependent_care.id_cdcc_limit": { - "label": "gov.states.id.tax.income.subtractions.household_and_dependent_care.id_cdcc_limit", - "description": null, - "index": 0 - }, - "gov.states.id.tax.income.subtractions.household_and_dependent_care.id_household_and_dependent_care_expense_deduction": { - "label": "gov.states.id.tax.income.subtractions.household_and_dependent_care.id_household_and_dependent_care_expense_deduction", - "description": null, - "index": 0 - }, - "gov.states.id.tax.income.deductions.id_deductions": { - "label": "gov.states.id.tax.income.deductions.id_deductions", - "description": null, - "index": 0 - }, - "gov.states.id.tax.income.deductions.id_capital_gains_deduction": { - "label": "gov.states.id.tax.income.deductions.id_capital_gains_deduction", - "description": null, - "index": 0 - }, - "gov.states.id.tax.income.deductions.id_itemized_deductions": { - "label": "gov.states.id.tax.income.deductions.id_itemized_deductions", - "description": null, - "index": 0 - }, - "gov.states.id.tax.income.deductions.id_salt_deduction": { - "label": "gov.states.id.tax.income.deductions.id_salt_deduction", - "description": null, - "index": 0 - }, - "gov.states.id.tax.income.deductions.retirement_benefits.id_retirement_benefits_deduction_relevant_income": { - "label": "gov.states.id.tax.income.deductions.retirement_benefits.id_retirement_benefits_deduction_relevant_income", - "description": null, - "index": 0 - }, - "gov.states.id.tax.income.deductions.retirement_benefits.id_retirement_benefits_deduction": { - "label": "gov.states.id.tax.income.deductions.retirement_benefits.id_retirement_benefits_deduction", - "description": null, - "index": 0 - }, - "gov.states.id.tax.income.deductions.retirement_benefits.id_retirement_benefits_eligible_person": { - "label": "gov.states.id.tax.income.deductions.retirement_benefits.id_retirement_benefits_eligible_person", - "description": null, - "index": 0 - }, - "gov.states.tx.tanf.tx_tanf_income_limit": { - "label": "gov.states.tx.tanf.tx_tanf_income_limit", - "description": null, - "index": 0 - }, - "gov.states.wi.tax.income.wi_standard_deduction": { - "label": "gov.states.wi.tax.income.wi_standard_deduction", - "description": null, - "index": 0 - }, - "gov.states.wi.tax.income.wi_agi": { - "label": "gov.states.wi.tax.income.wi_agi", - "description": null, - "index": 0 - }, - "gov.states.wi.tax.income.wi_withheld_income_tax": { - "label": "gov.states.wi.tax.income.wi_withheld_income_tax", - "description": null, - "index": 0 - }, - "gov.states.wi.tax.income.wi_taxable_income": { - "label": "gov.states.wi.tax.income.wi_taxable_income", - "description": null, - "index": 0 - }, - "gov.states.wi.tax.income.wi_income_tax_before_refundable_credits": { - "label": "gov.states.wi.tax.income.wi_income_tax_before_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.wi.tax.income.wi_income_tax": { - "label": "gov.states.wi.tax.income.wi_income_tax", - "description": null, - "index": 0 - }, - "gov.states.wi.tax.income.wi_income_before_credits": { - "label": "gov.states.wi.tax.income.wi_income_before_credits", - "description": null, - "index": 0 - }, - "gov.states.wi.tax.income.credits.wi_nonrefundable_credits": { - "label": "gov.states.wi.tax.income.credits.wi_nonrefundable_credits", - "description": null, - "index": 0 - }, - "gov.states.wi.tax.income.credits.wi_refundable_credits": { - "label": "gov.states.wi.tax.income.credits.wi_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.wi.tax.income.credits.married_couple.wi_married_couple_credit": { - "label": "gov.states.wi.tax.income.credits.married_couple.wi_married_couple_credit", - "description": null, - "index": 0 - }, - "gov.states.wi.tax.income.credits.homestead.wi_homestead_eligible": { - "label": "gov.states.wi.tax.income.credits.homestead.wi_homestead_eligible", - "description": null, - "index": 0 - }, - "gov.states.wi.tax.income.credits.homestead.wi_homestead_income": { - "label": "gov.states.wi.tax.income.credits.homestead.wi_homestead_income", - "description": null, - "index": 0 - }, - "gov.states.wi.tax.income.credits.homestead.wi_homestead_property_tax": { - "label": "gov.states.wi.tax.income.credits.homestead.wi_homestead_property_tax", - "description": null, - "index": 0 - }, - "gov.states.wi.tax.income.credits.homestead.wi_homestead_credit": { - "label": "gov.states.wi.tax.income.credits.homestead.wi_homestead_credit", - "description": null, - "index": 0 - }, - "gov.states.wi.tax.income.credits.childcare_expense.wi_childcare_expense_credit": { - "label": "gov.states.wi.tax.income.credits.childcare_expense.wi_childcare_expense_credit", - "description": null, - "index": 0 - }, - "gov.states.wi.tax.income.credits.property_tax.wi_property_tax_credit": { - "label": "gov.states.wi.tax.income.credits.property_tax.wi_property_tax_credit", - "description": null, - "index": 0 - }, - "gov.states.wi.tax.income.credits.earned_income.wi_earned_income_credit": { - "label": "gov.states.wi.tax.income.credits.earned_income.wi_earned_income_credit", - "description": null, - "index": 0 - }, - "gov.states.wi.tax.income.credits.itemized_deduction.wi_itemized_deduction_credit": { - "label": "gov.states.wi.tax.income.credits.itemized_deduction.wi_itemized_deduction_credit", - "description": null, - "index": 0 - }, - "gov.states.wi.tax.income.exemptions.wi_base_exemption": { - "label": "gov.states.wi.tax.income.exemptions.wi_base_exemption", - "description": null, - "index": 0 - }, - "gov.states.wi.tax.income.exemptions.wi_exemption": { - "label": "gov.states.wi.tax.income.exemptions.wi_exemption", - "description": null, - "index": 0 - }, - "gov.states.wi.tax.income.exemptions.wi_additional_exemption": { - "label": "gov.states.wi.tax.income.exemptions.wi_additional_exemption", - "description": null, - "index": 0 - }, - "gov.states.wi.tax.income.subtractions.wi_childcare_expense_subtraction": { - "label": "gov.states.wi.tax.income.subtractions.wi_childcare_expense_subtraction", - "description": null, - "index": 0 - }, - "gov.states.wi.tax.income.subtractions.wi_capital_gain_loss_subtraction": { - "label": "gov.states.wi.tax.income.subtractions.wi_capital_gain_loss_subtraction", - "description": null, - "index": 0 - }, - "gov.states.wi.tax.income.subtractions.wi_unemployment_compensation_subtraction": { - "label": "gov.states.wi.tax.income.subtractions.wi_unemployment_compensation_subtraction", - "description": null, - "index": 0 - }, - "gov.states.wi.tax.income.subtractions.wi_retirement_income_subtraction": { - "label": "gov.states.wi.tax.income.subtractions.wi_retirement_income_subtraction", - "description": null, - "index": 0 - }, - "gov.states.wi.tax.income.subtractions.wi_retirement_income_subtraction_agi_eligible": { - "label": "gov.states.wi.tax.income.subtractions.wi_retirement_income_subtraction_agi_eligible", - "description": null, - "index": 0 - }, - "gov.states.wi.tax.income.subtractions.wi_income_subtractions": { - "label": "gov.states.wi.tax.income.subtractions.wi_income_subtractions", - "description": null, - "index": 0 - }, - "gov.states.wi.tax.income.additions.wi_additions": { - "label": "gov.states.wi.tax.income.additions.wi_additions", - "description": null, - "index": 0 - }, - "gov.states.wi.tax.income.additions.wi_capital_loss": { - "label": "gov.states.wi.tax.income.additions.wi_capital_loss", - "description": null, - "index": 0 - }, - "gov.states.wi.tax.income.additions.wi_capital_gain_loss_addition": { - "label": "gov.states.wi.tax.income.additions.wi_capital_gain_loss_addition", - "description": null, - "index": 0 - }, - "gov.states.ca.ca_child_care_subsidies": { - "label": "gov.states.ca.ca_child_care_subsidies", - "description": null, - "index": 0 - }, - "gov.states.ca.ca_in_medical_care_facility": { - "label": "gov.states.ca.ca_in_medical_care_facility", - "description": null, - "index": 0 - }, - "gov.states.ca.ca_foster_care_minor_dependent": { - "label": "gov.states.ca.ca_foster_care_minor_dependent", - "description": null, - "index": 0 - }, - "gov.states.ca.dhcs.ffyp.ca_ffyp_eligible": { - "label": "gov.states.ca.dhcs.ffyp.ca_ffyp_eligible", - "description": null, - "index": 0 - }, - "gov.states.ca.tax.income.ca_taxable_income": { - "label": "gov.states.ca.tax.income.ca_taxable_income", - "description": null, - "index": 0 - }, - "gov.states.ca.tax.income.ca_income_tax": { - "label": "gov.states.ca.tax.income.ca_income_tax", - "description": null, - "index": 0 - }, - "gov.states.ca.tax.income.ca_agi_subtractions": { - "label": "gov.states.ca.tax.income.ca_agi_subtractions", - "description": null, - "index": 0 - }, - "gov.states.ca.tax.income.ca_mental_health_services_tax": { - "label": "gov.states.ca.tax.income.ca_mental_health_services_tax", - "description": null, - "index": 0 - }, - "gov.states.ca.tax.income.ca_use_tax": { - "label": "gov.states.ca.tax.income.ca_use_tax", - "description": null, - "index": 0 - }, - "gov.states.ca.tax.income.ca_agi": { - "label": "gov.states.ca.tax.income.ca_agi", - "description": null, - "index": 0 - }, - "gov.states.ca.tax.income.ca_income_tax_before_refundable_credits": { - "label": "gov.states.ca.tax.income.ca_income_tax_before_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.ca.tax.income.ca_additions": { - "label": "gov.states.ca.tax.income.ca_additions", - "description": null, - "index": 0 - }, - "gov.states.ca.tax.income.ca_withheld_income_tax": { - "label": "gov.states.ca.tax.income.ca_withheld_income_tax", - "description": null, - "index": 0 - }, - "gov.states.ca.tax.income.ca_income_tax_before_credits": { - "label": "gov.states.ca.tax.income.ca_income_tax_before_credits", - "description": null, - "index": 0 - }, - "gov.states.ca.tax.income.alternative_minimum_tax.ca_amt": { - "label": "gov.states.ca.tax.income.alternative_minimum_tax.ca_amt", - "description": null, - "index": 0 - }, - "gov.states.ca.tax.income.alternative_minimum_tax.exemption.ca_amt_exemption": { - "label": "gov.states.ca.tax.income.alternative_minimum_tax.exemption.ca_amt_exemption", - "description": null, - "index": 0 - }, - "gov.states.ca.tax.income.alternative_minimum_tax.amti.ca_amti": { - "label": "gov.states.ca.tax.income.alternative_minimum_tax.amti.ca_amti", - "description": null, - "index": 0 - }, - "gov.states.ca.tax.income.alternative_minimum_tax.amti.ca_pre_exemption_amti": { - "label": "gov.states.ca.tax.income.alternative_minimum_tax.amti.ca_pre_exemption_amti", - "description": null, - "index": 0 - }, - "gov.states.ca.tax.income.alternative_minimum_tax.amti.ca_amti_adjustments": { - "label": "gov.states.ca.tax.income.alternative_minimum_tax.amti.ca_amti_adjustments", - "description": null, - "index": 0 - }, - "gov.states.ca.tax.income.credits.ca_refundable_credits": { - "label": "gov.states.ca.tax.income.credits.ca_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.ca.tax.income.credits.ca_federal_cdcc": { - "label": "gov.states.ca.tax.income.credits.ca_federal_cdcc", - "description": null, - "index": 0 - }, - "gov.states.ca.tax.income.credits.ca_cdcc_relevant_expenses": { - "label": "gov.states.ca.tax.income.credits.ca_cdcc_relevant_expenses", - "description": null, - "index": 0 - }, - "gov.states.ca.tax.income.credits.ca_cdcc_rate": { - "label": "gov.states.ca.tax.income.credits.ca_cdcc_rate", - "description": null, - "index": 0 - }, - "gov.states.ca.tax.income.credits.ca_nonrefundable_credits": { - "label": "gov.states.ca.tax.income.credits.ca_nonrefundable_credits", - "description": null, - "index": 0 - }, - "gov.states.ca.tax.income.credits.ca_federal_capped_cdcc": { - "label": "gov.states.ca.tax.income.credits.ca_federal_capped_cdcc", - "description": null, - "index": 0 - }, - "gov.states.ca.tax.income.credits.ca_cdcc": { - "label": "gov.states.ca.tax.income.credits.ca_cdcc", - "description": null, - "index": 0 - }, - "gov.states.ca.tax.income.credits.ca_renter_credit": { - "label": "gov.states.ca.tax.income.credits.ca_renter_credit", - "description": null, - "index": 0 - }, - "gov.states.ca.tax.income.credits.foster_youth.ca_foster_youth_tax_credit_eligible_person": { - "label": "gov.states.ca.tax.income.credits.foster_youth.ca_foster_youth_tax_credit_eligible_person", - "description": null, - "index": 0 - }, - "gov.states.ca.tax.income.credits.foster_youth.ca_foster_youth_tax_credit_person": { - "label": "gov.states.ca.tax.income.credits.foster_youth.ca_foster_youth_tax_credit_person", - "description": null, - "index": 0 - }, - "gov.states.ca.tax.income.credits.foster_youth.ca_foster_youth_tax_credit": { - "label": "gov.states.ca.tax.income.credits.foster_youth.ca_foster_youth_tax_credit", - "description": null, - "index": 0 - }, - "gov.states.ca.tax.income.credits.earned_income.ca_eitc": { - "label": "gov.states.ca.tax.income.credits.earned_income.ca_eitc", - "description": null, - "index": 0 - }, - "gov.states.ca.tax.income.credits.earned_income.ca_is_qualifying_child_for_caleitc": { - "label": "gov.states.ca.tax.income.credits.earned_income.ca_is_qualifying_child_for_caleitc", - "description": null, - "index": 0 - }, - "gov.states.ca.tax.income.credits.earned_income.ca_eitc_eligible": { - "label": "gov.states.ca.tax.income.credits.earned_income.ca_eitc_eligible", - "description": null, - "index": 0 - }, - "gov.states.ca.tax.income.credits.young_child.ca_yctc": { - "label": "gov.states.ca.tax.income.credits.young_child.ca_yctc", - "description": null, - "index": 0 - }, - "gov.states.ca.tax.income.exemptions.ca_exemptions": { - "label": "gov.states.ca.tax.income.exemptions.ca_exemptions", - "description": null, - "index": 0 - }, - "gov.states.ca.tax.income.deductions.ca_deductions": { - "label": "gov.states.ca.tax.income.deductions.ca_deductions", - "description": null, - "index": 0 - }, - "gov.states.ca.tax.income.deductions.ca_investment_interest_deduction": { - "label": "gov.states.ca.tax.income.deductions.ca_investment_interest_deduction", - "description": null, - "index": 0 - }, - "gov.states.ca.tax.income.deductions.itemized.ca_itemized_deductions_pre_limitation": { - "label": "gov.states.ca.tax.income.deductions.itemized.ca_itemized_deductions_pre_limitation", - "description": null, - "index": 0 - }, - "gov.states.ca.tax.income.deductions.itemized.ca_itemized_deductions": { - "label": "gov.states.ca.tax.income.deductions.itemized.ca_itemized_deductions", - "description": null, - "index": 0 - }, - "gov.states.ca.tax.income.deductions.standard.ca_standard_deduction": { - "label": "gov.states.ca.tax.income.deductions.standard.ca_standard_deduction", - "description": null, - "index": 0 - }, - "gov.states.ca.cpuc.care.ca_care_amount_if_eligible": { - "label": "gov.states.ca.cpuc.care.ca_care_amount_if_eligible", - "description": null, - "index": 0 - }, - "gov.states.ca.cpuc.care.ca_care": { - "label": "gov.states.ca.cpuc.care.ca_care", - "description": null, - "index": 0 - }, - "gov.states.ca.cpuc.care.eligibility.ca_care_income_eligible": { - "label": "gov.states.ca.cpuc.care.eligibility.ca_care_income_eligible", - "description": null, - "index": 0 - }, - "gov.states.ca.cpuc.care.eligibility.ca_care_eligible": { - "label": "gov.states.ca.cpuc.care.eligibility.ca_care_eligible", - "description": null, - "index": 0 - }, - "gov.states.ca.cpuc.care.eligibility.ca_care_categorically_eligible": { - "label": "gov.states.ca.cpuc.care.eligibility.ca_care_categorically_eligible", - "description": null, - "index": 0 - }, - "gov.states.ca.cpuc.care.eligibility.ca_care_poverty_line": { - "label": "gov.states.ca.cpuc.care.eligibility.ca_care_poverty_line", - "description": null, - "index": 0 - }, - "gov.states.ca.cpuc.fera.ca_fera": { - "label": "gov.states.ca.cpuc.fera.ca_fera", - "description": null, - "index": 0 - }, - "gov.states.ca.cpuc.fera.ca_fera_amount_if_eligible": { - "label": "gov.states.ca.cpuc.fera.ca_fera_amount_if_eligible", - "description": null, - "index": 0 - }, - "gov.states.ca.cpuc.fera.ca_fera_eligible": { - "label": "gov.states.ca.cpuc.fera.ca_fera_eligible", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.ca_in_home_supportive_services": { - "label": "gov.states.ca.cdss.ca_in_home_supportive_services", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.capi.ca_capi": { - "label": "gov.states.ca.cdss.capi.ca_capi", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.capi.eligibility.ca_capi_income_eligible": { - "label": "gov.states.ca.cdss.capi.eligibility.ca_capi_income_eligible", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.capi.eligibility.ca_capi_eligible_person": { - "label": "gov.states.ca.cdss.capi.eligibility.ca_capi_eligible_person", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.capi.eligibility.ca_capi_eligible": { - "label": "gov.states.ca.cdss.capi.eligibility.ca_capi_eligible", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.capi.eligibility.ca_capi_resource_eligible": { - "label": "gov.states.ca.cdss.capi.eligibility.ca_capi_resource_eligible", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.capi.resources.ca_capi_resources": { - "label": "gov.states.ca.cdss.capi.resources.ca_capi_resources", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.capi.resources.ca_capi_countable_vehicle_value": { - "label": "gov.states.ca.cdss.capi.resources.ca_capi_countable_vehicle_value", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.state_supplement.ca_state_supplement_eligible_person": { - "label": "gov.states.ca.cdss.state_supplement.ca_state_supplement_eligible_person", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.state_supplement.ca_state_supplement": { - "label": "gov.states.ca.cdss.state_supplement.ca_state_supplement", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.state_supplement.payment_standard.ca_state_supplement_aged_blind_disabled_amount": { - "label": "gov.states.ca.cdss.state_supplement.payment_standard.ca_state_supplement_aged_blind_disabled_amount", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.state_supplement.payment_standard.ca_state_supplement_food_allowance_eligible": { - "label": "gov.states.ca.cdss.state_supplement.payment_standard.ca_state_supplement_food_allowance_eligible", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.state_supplement.payment_standard.ca_state_supplement_food_allowance": { - "label": "gov.states.ca.cdss.state_supplement.payment_standard.ca_state_supplement_food_allowance", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.state_supplement.payment_standard.ca_state_supplement_payment_standard": { - "label": "gov.states.ca.cdss.state_supplement.payment_standard.ca_state_supplement_payment_standard", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.state_supplement.payment_standard.ca_state_supplement_out_of_home_care_facility_amount": { - "label": "gov.states.ca.cdss.state_supplement.payment_standard.ca_state_supplement_out_of_home_care_facility_amount", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.state_supplement.payment_standard.ca_state_supplement_aged_disabled_amount": { - "label": "gov.states.ca.cdss.state_supplement.payment_standard.ca_state_supplement_aged_disabled_amount", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.state_supplement.payment_standard.ca_state_supplement_aged_disabled_count": { - "label": "gov.states.ca.cdss.state_supplement.payment_standard.ca_state_supplement_aged_disabled_count", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.state_supplement.payment_standard.ca_state_supplement_medical_care_facility_amount": { - "label": "gov.states.ca.cdss.state_supplement.payment_standard.ca_state_supplement_medical_care_facility_amount", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.state_supplement.payment_standard.ca_state_supplement_dependent_amount": { - "label": "gov.states.ca.cdss.state_supplement.payment_standard.ca_state_supplement_dependent_amount", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.state_supplement.payment_standard.ca_state_supplement_blind_amount": { - "label": "gov.states.ca.cdss.state_supplement.payment_standard.ca_state_supplement_blind_amount", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.tanf.cash.ca_tanf": { - "label": "gov.states.ca.cdss.tanf.cash.ca_tanf", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.tanf.cash.income.ca_tanf_countable_income_recipient": { - "label": "gov.states.ca.cdss.tanf.cash.income.ca_tanf_countable_income_recipient", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.tanf.cash.income.ca_tanf_db_unearned_income": { - "label": "gov.states.ca.cdss.tanf.cash.income.ca_tanf_db_unearned_income", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.tanf.cash.income.ca_tanf_countable_income_applicant": { - "label": "gov.states.ca.cdss.tanf.cash.income.ca_tanf_countable_income_applicant", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.tanf.cash.income.ca_tanf_earned_income": { - "label": "gov.states.ca.cdss.tanf.cash.income.ca_tanf_earned_income", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.tanf.cash.income.ca_tanf_other_unearned_income": { - "label": "gov.states.ca.cdss.tanf.cash.income.ca_tanf_other_unearned_income", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.tanf.cash.eligibility.ca_tanf_vehicle_value_eligible": { - "label": "gov.states.ca.cdss.tanf.cash.eligibility.ca_tanf_vehicle_value_eligible", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.tanf.cash.eligibility.ca_tanf_immigration_status_eligible_person": { - "label": "gov.states.ca.cdss.tanf.cash.eligibility.ca_tanf_immigration_status_eligible_person", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.tanf.cash.eligibility.ca_tanf_income_limit": { - "label": "gov.states.ca.cdss.tanf.cash.eligibility.ca_tanf_income_limit", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.tanf.cash.eligibility.ca_tanf_recipient_financial_test": { - "label": "gov.states.ca.cdss.tanf.cash.eligibility.ca_tanf_recipient_financial_test", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.tanf.cash.eligibility.ca_tanf_applicant_financial_test": { - "label": "gov.states.ca.cdss.tanf.cash.eligibility.ca_tanf_applicant_financial_test", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.tanf.cash.eligibility.ca_tanf_region1": { - "label": "gov.states.ca.cdss.tanf.cash.eligibility.ca_tanf_region1", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.tanf.cash.eligibility.ca_tanf_financial_eligible": { - "label": "gov.states.ca.cdss.tanf.cash.eligibility.ca_tanf_financial_eligible", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.tanf.cash.eligibility.ca_tanf_resources_eligible": { - "label": "gov.states.ca.cdss.tanf.cash.eligibility.ca_tanf_resources_eligible", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.tanf.cash.eligibility.ca_tanf_exempt": { - "label": "gov.states.ca.cdss.tanf.cash.eligibility.ca_tanf_exempt", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.tanf.cash.eligibility.ca_tanf_maximum_payment": { - "label": "gov.states.ca.cdss.tanf.cash.eligibility.ca_tanf_maximum_payment", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.tanf.cash.eligibility.ca_tanf_eligible": { - "label": "gov.states.ca.cdss.tanf.cash.eligibility.ca_tanf_eligible", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.tanf.cash.resources.ca_tanf_resources": { - "label": "gov.states.ca.cdss.tanf.cash.resources.ca_tanf_resources", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.tanf.cash.resources.ca_tanf_resources_limit": { - "label": "gov.states.ca.cdss.tanf.cash.resources.ca_tanf_resources_limit", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.tanf.child_care.child_care_time.ca_calworks_child_care_full_time": { - "label": "gov.states.ca.cdss.tanf.child_care.child_care_time.ca_calworks_child_care_full_time", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.tanf.child_care.child_care_time.ca_calworks_child_care_time_category": { - "label": "gov.states.ca.cdss.tanf.child_care.child_care_time.ca_calworks_child_care_time_category", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.tanf.child_care.child_care_time.ca_calworks_child_care_weeks_per_month": { - "label": "gov.states.ca.cdss.tanf.child_care.child_care_time.ca_calworks_child_care_weeks_per_month", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.tanf.child_care.child_care_time.ca_calworks_child_care_days_per_month": { - "label": "gov.states.ca.cdss.tanf.child_care.child_care_time.ca_calworks_child_care_days_per_month", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.tanf.child_care.child_care_time.ca_calworks_child_care_provider_category": { - "label": "gov.states.ca.cdss.tanf.child_care.child_care_time.ca_calworks_child_care_provider_category", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.tanf.child_care.eligibility.ca_calworks_child_care_child_age_eligible": { - "label": "gov.states.ca.cdss.tanf.child_care.eligibility.ca_calworks_child_care_child_age_eligible", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.tanf.child_care.eligibility.ca_calworks_child_care_age_eligible": { - "label": "gov.states.ca.cdss.tanf.child_care.eligibility.ca_calworks_child_care_age_eligible", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.tanf.child_care.eligibility.ca_calworks_child_care_meets_work_requirement": { - "label": "gov.states.ca.cdss.tanf.child_care.eligibility.ca_calworks_child_care_meets_work_requirement", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.tanf.child_care.eligibility.ca_calworks_child_care_welfare_to_work": { - "label": "gov.states.ca.cdss.tanf.child_care.eligibility.ca_calworks_child_care_welfare_to_work", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.tanf.child_care.eligibility.ca_calworks_child_care_eligible": { - "label": "gov.states.ca.cdss.tanf.child_care.eligibility.ca_calworks_child_care_eligible", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.tanf.child_care.eligibility.ca_calworks_child_care_immigration_status_eligible_person": { - "label": "gov.states.ca.cdss.tanf.child_care.eligibility.ca_calworks_child_care_immigration_status_eligible_person", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.tanf.child_care.reimbursement.ca_calworks_child_care_factor_category": { - "label": "gov.states.ca.cdss.tanf.child_care.reimbursement.ca_calworks_child_care_factor_category", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.tanf.child_care.reimbursement.ca_calworks_child_care_payment_factor": { - "label": "gov.states.ca.cdss.tanf.child_care.reimbursement.ca_calworks_child_care_payment_factor", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.tanf.child_care.reimbursement.ca_calworks_child_care_payment": { - "label": "gov.states.ca.cdss.tanf.child_care.reimbursement.ca_calworks_child_care_payment", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.tanf.child_care.reimbursement.ca_calworks_child_care_time_coefficient": { - "label": "gov.states.ca.cdss.tanf.child_care.reimbursement.ca_calworks_child_care_time_coefficient", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.tanf.child_care.reimbursement.ca_calworks_child_care_payment_standard": { - "label": "gov.states.ca.cdss.tanf.child_care.reimbursement.ca_calworks_child_care_payment_standard", - "description": null, - "index": 0 - }, - "gov.states.ca.cdss.tanf.child_care.reimbursement.ca_calworks_child_care": { - "label": "gov.states.ca.cdss.tanf.child_care.reimbursement.ca_calworks_child_care", - "description": null, - "index": 0 - }, - "gov.states.ca.calepa.carb.cvrp.ca_cvrp_vehicle_rebate_amount": { - "label": "gov.states.ca.calepa.carb.cvrp.ca_cvrp_vehicle_rebate_amount", - "description": null, - "index": 0 - }, - "gov.states.ca.calepa.carb.cvrp.is_ca_cvrp_normal_rebate_eligible": { - "label": "gov.states.ca.calepa.carb.cvrp.is_ca_cvrp_normal_rebate_eligible", - "description": null, - "index": 0 - }, - "gov.states.ca.calepa.carb.cvrp.ca_cvrp": { - "label": "gov.states.ca.calepa.carb.cvrp.ca_cvrp", - "description": null, - "index": 0 - }, - "gov.states.ca.calepa.carb.cvrp.is_ca_cvrp_increased_rebate_eligible": { - "label": "gov.states.ca.calepa.carb.cvrp.is_ca_cvrp_increased_rebate_eligible", - "description": null, - "index": 0 - }, - "gov.states.ca.edd.ca_state_disability_insurance": { - "label": "gov.states.ca.edd.ca_state_disability_insurance", - "description": null, - "index": 0 - }, - "gov.states.mn.tax.income.mn_withheld_income_tax": { - "label": "gov.states.mn.tax.income.mn_withheld_income_tax", - "description": null, - "index": 0 - }, - "gov.states.mn.tax.income.mn_taxable_income": { - "label": "gov.states.mn.tax.income.mn_taxable_income", - "description": null, - "index": 0 - }, - "gov.states.mn.tax.income.mn_income_tax_before_refundable_credits": { - "label": "gov.states.mn.tax.income.mn_income_tax_before_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.mn.tax.income.mn_basic_tax": { - "label": "gov.states.mn.tax.income.mn_basic_tax", - "description": null, - "index": 0 - }, - "gov.states.mn.tax.income.mn_income_tax_before_credits": { - "label": "gov.states.mn.tax.income.mn_income_tax_before_credits", - "description": null, - "index": 0 - }, - "gov.states.mn.tax.income.mn_income_tax": { - "label": "gov.states.mn.tax.income.mn_income_tax", - "description": null, - "index": 0 - }, - "gov.states.mn.tax.income.niit.mn_niit": { - "label": "gov.states.mn.tax.income.niit.mn_niit", - "description": null, - "index": 0 - }, - "gov.states.mn.tax.income.credits.mn_child_and_working_families_credits": { - "label": "gov.states.mn.tax.income.credits.mn_child_and_working_families_credits", - "description": null, - "index": 0 - }, - "gov.states.mn.tax.income.credits.mn_cdcc": { - "label": "gov.states.mn.tax.income.credits.mn_cdcc", - "description": null, - "index": 0 - }, - "gov.states.mn.tax.income.credits.mn_wfc": { - "label": "gov.states.mn.tax.income.credits.mn_wfc", - "description": null, - "index": 0 - }, - "gov.states.mn.tax.income.credits.mn_wfc_eligible": { - "label": "gov.states.mn.tax.income.credits.mn_wfc_eligible", - "description": null, - "index": 0 - }, - "gov.states.mn.tax.income.credits.mn_refundable_credits": { - "label": "gov.states.mn.tax.income.credits.mn_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.mn.tax.income.credits.mn_marriage_credit": { - "label": "gov.states.mn.tax.income.credits.mn_marriage_credit", - "description": null, - "index": 0 - }, - "gov.states.mn.tax.income.credits.mn_nonrefundable_credits": { - "label": "gov.states.mn.tax.income.credits.mn_nonrefundable_credits", - "description": null, - "index": 0 - }, - "gov.states.mn.tax.income.exemptions.mn_exemptions": { - "label": "gov.states.mn.tax.income.exemptions.mn_exemptions", - "description": null, - "index": 0 - }, - "gov.states.mn.tax.income.amt.mn_amt": { - "label": "gov.states.mn.tax.income.amt.mn_amt", - "description": null, - "index": 0 - }, - "gov.states.mn.tax.income.amt.mn_amt_taxable_income": { - "label": "gov.states.mn.tax.income.amt.mn_amt_taxable_income", - "description": null, - "index": 0 - }, - "gov.states.mn.tax.income.subtractions.mn_charity_subtraction": { - "label": "gov.states.mn.tax.income.subtractions.mn_charity_subtraction", - "description": null, - "index": 0 - }, - "gov.states.mn.tax.income.subtractions.mn_social_security_subtraction": { - "label": "gov.states.mn.tax.income.subtractions.mn_social_security_subtraction", - "description": null, - "index": 0 - }, - "gov.states.mn.tax.income.subtractions.mn_elderly_disabled_subtraction": { - "label": "gov.states.mn.tax.income.subtractions.mn_elderly_disabled_subtraction", - "description": null, - "index": 0 - }, - "gov.states.mn.tax.income.subtractions.mn_public_pension_subtraction": { - "label": "gov.states.mn.tax.income.subtractions.mn_public_pension_subtraction", - "description": null, - "index": 0 - }, - "gov.states.mn.tax.income.subtractions.mn_subtractions": { - "label": "gov.states.mn.tax.income.subtractions.mn_subtractions", - "description": null, - "index": 0 - }, - "gov.states.mn.tax.income.additions.mn_additions": { - "label": "gov.states.mn.tax.income.additions.mn_additions", - "description": null, - "index": 0 - }, - "gov.states.mn.tax.income.deductions.mn_itemized_deductions": { - "label": "gov.states.mn.tax.income.deductions.mn_itemized_deductions", - "description": null, - "index": 0 - }, - "gov.states.mn.tax.income.deductions.mn_deductions": { - "label": "gov.states.mn.tax.income.deductions.mn_deductions", - "description": null, - "index": 0 - }, - "gov.states.mn.tax.income.deductions.mn_standard_deduction": { - "label": "gov.states.mn.tax.income.deductions.mn_standard_deduction", - "description": null, - "index": 0 - }, - "gov.states.mn.tax.income.deductions.mn_itemizing": { - "label": "gov.states.mn.tax.income.deductions.mn_itemizing", - "description": null, - "index": 0 - }, - "gov.states.nj.njdhs.tanf.nj_tanf_countable_resources": { - "label": "gov.states.nj.njdhs.tanf.nj_tanf_countable_resources", - "description": null, - "index": 0 - }, - "gov.states.nj.njdhs.tanf.nj_tanf_resources_eligible": { - "label": "gov.states.nj.njdhs.tanf.nj_tanf_resources_eligible", - "description": null, - "index": 0 - }, - "gov.states.nj.njdhs.tanf.nj_tanf_maximum_benefit": { - "label": "gov.states.nj.njdhs.tanf.nj_tanf_maximum_benefit", - "description": null, - "index": 0 - }, - "gov.states.nj.njdhs.tanf.nj_tanf_maximum_allowable_income": { - "label": "gov.states.nj.njdhs.tanf.nj_tanf_maximum_allowable_income", - "description": null, - "index": 0 - }, - "gov.states.nj.njdhs.tanf.income.nj_tanf_countable_gross_unearned_income": { - "label": "gov.states.nj.njdhs.tanf.income.nj_tanf_countable_gross_unearned_income", - "description": null, - "index": 0 - }, - "gov.states.nj.njdhs.tanf.income.nj_tanf_gross_earned_income": { - "label": "gov.states.nj.njdhs.tanf.income.nj_tanf_gross_earned_income", - "description": null, - "index": 0 - }, - "gov.states.nj.tax.income.nj_income_tax": { - "label": "gov.states.nj.tax.income.nj_income_tax", - "description": null, - "index": 0 - }, - "gov.states.nj.tax.income.nj_non_refundable_credits": { - "label": "gov.states.nj.tax.income.nj_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.nj.tax.income.nj_main_income_tax": { - "label": "gov.states.nj.tax.income.nj_main_income_tax", - "description": null, - "index": 0 - }, - "gov.states.nj.tax.income.nj_income_tax_before_refundable_credits": { - "label": "gov.states.nj.tax.income.nj_income_tax_before_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.nj.tax.income.nj_refundable_credits": { - "label": "gov.states.nj.tax.income.nj_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.nj.tax.income.nj_withheld_income_tax": { - "label": "gov.states.nj.tax.income.nj_withheld_income_tax", - "description": null, - "index": 0 - }, - "gov.states.nj.tax.income.credits.eitc.nj_childless_eitc_age_eligible": { - "label": "gov.states.nj.tax.income.credits.eitc.nj_childless_eitc_age_eligible", - "description": null, - "index": 0 - }, - "gov.states.nj.tax.income.credits.eitc.nj_eitc_income_eligible": { - "label": "gov.states.nj.tax.income.credits.eitc.nj_eitc_income_eligible", - "description": null, - "index": 0 - }, - "gov.states.nj.tax.income.credits.eitc.nj_eitc": { - "label": "gov.states.nj.tax.income.credits.eitc.nj_eitc", - "description": null, - "index": 0 - }, - "gov.states.nj.tax.income.credits.ctc.nj_ctc_eligible": { - "label": "gov.states.nj.tax.income.credits.ctc.nj_ctc_eligible", - "description": null, - "index": 0 - }, - "gov.states.nj.tax.income.credits.ctc.nj_ctc": { - "label": "gov.states.nj.tax.income.credits.ctc.nj_ctc", - "description": null, - "index": 0 - }, - "gov.states.nj.tax.income.credits.cdcc.nj_cdcc": { - "label": "gov.states.nj.tax.income.credits.cdcc.nj_cdcc", - "description": null, - "index": 0 - }, - "gov.states.nj.tax.income.credits.property_tax_credit.nj_property_tax_credit": { - "label": "gov.states.nj.tax.income.credits.property_tax_credit.nj_property_tax_credit", - "description": null, - "index": 0 - }, - "gov.states.nj.tax.income.credits.property_tax_credit.nj_property_tax_credit_eligible": { - "label": "gov.states.nj.tax.income.credits.property_tax_credit.nj_property_tax_credit_eligible", - "description": null, - "index": 0 - }, - "gov.states.nj.tax.income.exemptions.nj_dependents_attending_college_exemption": { - "label": "gov.states.nj.tax.income.exemptions.nj_dependents_attending_college_exemption", - "description": null, - "index": 0 - }, - "gov.states.nj.tax.income.exemptions.nj_blind_or_disabled_exemption": { - "label": "gov.states.nj.tax.income.exemptions.nj_blind_or_disabled_exemption", - "description": null, - "index": 0 - }, - "gov.states.nj.tax.income.exemptions.nj_senior_exemption": { - "label": "gov.states.nj.tax.income.exemptions.nj_senior_exemption", - "description": null, - "index": 0 - }, - "gov.states.nj.tax.income.exemptions.nj_dependents_exemption": { - "label": "gov.states.nj.tax.income.exemptions.nj_dependents_exemption", - "description": null, - "index": 0 - }, - "gov.states.nj.tax.income.exemptions.nj_regular_exemption": { - "label": "gov.states.nj.tax.income.exemptions.nj_regular_exemption", - "description": null, - "index": 0 - }, - "gov.states.nj.tax.income.exemptions.nj_total_exemptions": { - "label": "gov.states.nj.tax.income.exemptions.nj_total_exemptions", - "description": null, - "index": 0 - }, - "gov.states.nj.tax.income.adjusted_gross_income.nj_total_income": { - "label": "gov.states.nj.tax.income.adjusted_gross_income.nj_total_income", - "description": null, - "index": 0 - }, - "gov.states.nj.tax.income.adjusted_gross_income.nj_additions": { - "label": "gov.states.nj.tax.income.adjusted_gross_income.nj_additions", - "description": null, - "index": 0 - }, - "gov.states.nj.tax.income.adjusted_gross_income.nj_agi": { - "label": "gov.states.nj.tax.income.adjusted_gross_income.nj_agi", - "description": null, - "index": 0 - }, - "gov.states.nj.tax.income.adjusted_gross_income.nj_agi_subtractions": { - "label": "gov.states.nj.tax.income.adjusted_gross_income.nj_agi_subtractions", - "description": null, - "index": 0 - }, - "gov.states.nj.tax.income.taxable_income.nj_taxable_income_before_property_tax_deduction": { - "label": "gov.states.nj.tax.income.taxable_income.nj_taxable_income_before_property_tax_deduction", - "description": null, - "index": 0 - }, - "gov.states.nj.tax.income.taxable_income.nj_taxable_income": { - "label": "gov.states.nj.tax.income.taxable_income.nj_taxable_income", - "description": null, - "index": 0 - }, - "gov.states.nj.tax.income.property_tax.nj_taking_property_tax_deduction": { - "label": "gov.states.nj.tax.income.property_tax.nj_taking_property_tax_deduction", - "description": null, - "index": 0 - }, - "gov.states.nj.tax.income.property_tax.nj_property_tax_deduction_eligible": { - "label": "gov.states.nj.tax.income.property_tax.nj_property_tax_deduction_eligible", - "description": null, - "index": 0 - }, - "gov.states.nj.tax.income.property_tax.nj_potential_property_tax_deduction": { - "label": "gov.states.nj.tax.income.property_tax.nj_potential_property_tax_deduction", - "description": null, - "index": 0 - }, - "gov.states.nj.tax.income.property_tax.nj_property_tax_deduction": { - "label": "gov.states.nj.tax.income.property_tax.nj_property_tax_deduction", - "description": null, - "index": 0 - }, - "gov.states.nj.tax.income.exclusions.nj_other_retirement_income_exclusion": { - "label": "gov.states.nj.tax.income.exclusions.nj_other_retirement_income_exclusion", - "description": null, - "index": 0 - }, - "gov.states.nj.tax.income.exclusions.nj_eligible_pension_income": { - "label": "gov.states.nj.tax.income.exclusions.nj_eligible_pension_income", - "description": null, - "index": 0 - }, - "gov.states.nj.tax.income.exclusions.nj_pension_retirement_exclusion": { - "label": "gov.states.nj.tax.income.exclusions.nj_pension_retirement_exclusion", - "description": null, - "index": 0 - }, - "gov.states.nj.tax.income.exclusions.nj_retirement_exclusion_fraction": { - "label": "gov.states.nj.tax.income.exclusions.nj_retirement_exclusion_fraction", - "description": null, - "index": 0 - }, - "gov.states.nj.tax.income.exclusions.nj_other_retirement_special_exclusion": { - "label": "gov.states.nj.tax.income.exclusions.nj_other_retirement_special_exclusion", - "description": null, - "index": 0 - }, - "gov.states.nj.tax.income.deductions.nj_medical_expense_deduction": { - "label": "gov.states.nj.tax.income.deductions.nj_medical_expense_deduction", - "description": null, - "index": 0 - }, - "gov.states.nj.tax.income.deductions.nj_total_deductions": { - "label": "gov.states.nj.tax.income.deductions.nj_total_deductions", - "description": null, - "index": 0 - }, - "gov.states.ky.tax.income.ky_filing_separately": { - "label": "gov.states.ky.tax.income.ky_filing_separately", - "description": null, - "index": 0 - }, - "gov.states.ky.tax.income.ky_additions": { - "label": "gov.states.ky.tax.income.ky_additions", - "description": null, - "index": 0 - }, - "gov.states.ky.tax.income.ky_income_tax_before_non_refundable_credits_unit": { - "label": "gov.states.ky.tax.income.ky_income_tax_before_non_refundable_credits_unit", - "description": null, - "index": 0 - }, - "gov.states.ky.tax.income.ky_income_tax_before_refundable_credits": { - "label": "gov.states.ky.tax.income.ky_income_tax_before_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.ky.tax.income.ky_subtractions": { - "label": "gov.states.ky.tax.income.ky_subtractions", - "description": null, - "index": 0 - }, - "gov.states.ky.tax.income.ky_income_tax_before_non_refundable_credits_joint": { - "label": "gov.states.ky.tax.income.ky_income_tax_before_non_refundable_credits_joint", - "description": null, - "index": 0 - }, - "gov.states.ky.tax.income.ky_agi": { - "label": "gov.states.ky.tax.income.ky_agi", - "description": null, - "index": 0 - }, - "gov.states.ky.tax.income.ky_income_tax": { - "label": "gov.states.ky.tax.income.ky_income_tax", - "description": null, - "index": 0 - }, - "gov.states.ky.tax.income.ky_taxable_income_indiv": { - "label": "gov.states.ky.tax.income.ky_taxable_income_indiv", - "description": null, - "index": 0 - }, - "gov.states.ky.tax.income.ky_filing_status": { - "label": "gov.states.ky.tax.income.ky_filing_status", - "description": null, - "index": 0 - }, - "gov.states.ky.tax.income.ky_income_tax_before_non_refundable_credits_indiv": { - "label": "gov.states.ky.tax.income.ky_income_tax_before_non_refundable_credits_indiv", - "description": null, - "index": 0 - }, - "gov.states.ky.tax.income.ky_taxable_income_joint": { - "label": "gov.states.ky.tax.income.ky_taxable_income_joint", - "description": null, - "index": 0 - }, - "gov.states.ky.tax.income.ky_withheld_income_tax": { - "label": "gov.states.ky.tax.income.ky_withheld_income_tax", - "description": null, - "index": 0 - }, - "gov.states.ky.tax.income.credits.ky_refundable_credits": { - "label": "gov.states.ky.tax.income.credits.ky_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.ky.tax.income.credits.ky_non_refundable_credits": { - "label": "gov.states.ky.tax.income.credits.ky_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.ky.tax.income.credits.family_size_credit.ky_modified_agi": { - "label": "gov.states.ky.tax.income.credits.family_size_credit.ky_modified_agi", - "description": null, - "index": 0 - }, - "gov.states.ky.tax.income.credits.family_size_credit.ky_family_size_tax_credit": { - "label": "gov.states.ky.tax.income.credits.family_size_credit.ky_family_size_tax_credit", - "description": null, - "index": 0 - }, - "gov.states.ky.tax.income.credits.family_size_credit.ky_family_size_tax_credit_rate": { - "label": "gov.states.ky.tax.income.credits.family_size_credit.ky_family_size_tax_credit_rate", - "description": null, - "index": 0 - }, - "gov.states.ky.tax.income.credits.tuition_tax.ky_tuition_tax_credit": { - "label": "gov.states.ky.tax.income.credits.tuition_tax.ky_tuition_tax_credit", - "description": null, - "index": 0 - }, - "gov.states.ky.tax.income.credits.tuition_tax.ky_tuition_tax_credit_eligible": { - "label": "gov.states.ky.tax.income.credits.tuition_tax.ky_tuition_tax_credit_eligible", - "description": null, - "index": 0 - }, - "gov.states.ky.tax.income.credits.personal.ky_military_personal_tax_credits": { - "label": "gov.states.ky.tax.income.credits.personal.ky_military_personal_tax_credits", - "description": null, - "index": 0 - }, - "gov.states.ky.tax.income.credits.personal.ky_personal_tax_credits_joint": { - "label": "gov.states.ky.tax.income.credits.personal.ky_personal_tax_credits_joint", - "description": null, - "index": 0 - }, - "gov.states.ky.tax.income.credits.personal.ky_personal_tax_credits": { - "label": "gov.states.ky.tax.income.credits.personal.ky_personal_tax_credits", - "description": null, - "index": 0 - }, - "gov.states.ky.tax.income.credits.personal.ky_blind_personal_tax_credits": { - "label": "gov.states.ky.tax.income.credits.personal.ky_blind_personal_tax_credits", - "description": null, - "index": 0 - }, - "gov.states.ky.tax.income.credits.personal.ky_aged_personal_tax_credits": { - "label": "gov.states.ky.tax.income.credits.personal.ky_aged_personal_tax_credits", - "description": null, - "index": 0 - }, - "gov.states.ky.tax.income.credits.personal.ky_personal_tax_credits_indiv": { - "label": "gov.states.ky.tax.income.credits.personal.ky_personal_tax_credits_indiv", - "description": null, - "index": 0 - }, - "gov.states.ky.tax.income.credits.dependent_care_service.ky_cdcc": { - "label": "gov.states.ky.tax.income.credits.dependent_care_service.ky_cdcc", - "description": null, - "index": 0 - }, - "gov.states.ky.tax.income.exclusions.pension_income.ky_service_credits_percentage_pre_1998": { - "label": "gov.states.ky.tax.income.exclusions.pension_income.ky_service_credits_percentage_pre_1998", - "description": null, - "index": 0 - }, - "gov.states.ky.tax.income.exclusions.pension_income.ky_pension_income_exclusion": { - "label": "gov.states.ky.tax.income.exclusions.pension_income.ky_pension_income_exclusion", - "description": null, - "index": 0 - }, - "gov.states.ky.tax.income.exclusions.pension_income.ky_service_credit_months_pre_1998": { - "label": "gov.states.ky.tax.income.exclusions.pension_income.ky_service_credit_months_pre_1998", - "description": null, - "index": 0 - }, - "gov.states.ky.tax.income.exclusions.pension_income.ky_pension_income_exclusion_exemption_eligible": { - "label": "gov.states.ky.tax.income.exclusions.pension_income.ky_pension_income_exclusion_exemption_eligible", - "description": null, - "index": 0 - }, - "gov.states.ky.tax.income.exclusions.pension_income.ky_service_credit_months_post_1997": { - "label": "gov.states.ky.tax.income.exclusions.pension_income.ky_service_credit_months_post_1997", - "description": null, - "index": 0 - }, - "gov.states.ky.tax.income.exclusions.pension_income.retired_from_ky_government": { - "label": "gov.states.ky.tax.income.exclusions.pension_income.retired_from_ky_government", - "description": null, - "index": 0 - }, - "gov.states.ky.tax.income.deductions.ky_deductions_joint": { - "label": "gov.states.ky.tax.income.deductions.ky_deductions_joint", - "description": null, - "index": 0 - }, - "gov.states.ky.tax.income.deductions.ky_itemized_deductions_unit": { - "label": "gov.states.ky.tax.income.deductions.ky_itemized_deductions_unit", - "description": null, - "index": 0 - }, - "gov.states.ky.tax.income.deductions.ky_standard_deduction_joint": { - "label": "gov.states.ky.tax.income.deductions.ky_standard_deduction_joint", - "description": null, - "index": 0 - }, - "gov.states.ky.tax.income.deductions.ky_itemized_deduction_indiv": { - "label": "gov.states.ky.tax.income.deductions.ky_itemized_deduction_indiv", - "description": null, - "index": 0 - }, - "gov.states.ky.tax.income.deductions.ky_standard_deduction_indiv": { - "label": "gov.states.ky.tax.income.deductions.ky_standard_deduction_indiv", - "description": null, - "index": 0 - }, - "gov.states.ky.tax.income.deductions.ky_itemized_deduction_joint": { - "label": "gov.states.ky.tax.income.deductions.ky_itemized_deduction_joint", - "description": null, - "index": 0 - }, - "gov.states.ky.tax.income.deductions.ky_tax_unit_itemizes": { - "label": "gov.states.ky.tax.income.deductions.ky_tax_unit_itemizes", - "description": null, - "index": 0 - }, - "gov.states.ky.tax.income.deductions.ky_deductions_indiv": { - "label": "gov.states.ky.tax.income.deductions.ky_deductions_indiv", - "description": null, - "index": 0 - }, - "gov.states.pa.tax.income.pa_withheld_income_tax": { - "label": "gov.states.pa.tax.income.pa_withheld_income_tax", - "description": null, - "index": 0 - }, - "gov.states.pa.tax.income.pa_refundable_tax_credits": { - "label": "gov.states.pa.tax.income.pa_refundable_tax_credits", - "description": null, - "index": 0 - }, - "gov.states.pa.tax.income.pa_use_tax": { - "label": "gov.states.pa.tax.income.pa_use_tax", - "description": null, - "index": 0 - }, - "gov.states.pa.tax.income.pa_income_tax": { - "label": "gov.states.pa.tax.income.pa_income_tax", - "description": null, - "index": 0 - }, - "gov.states.pa.tax.income.forgiveness.pa_tax_forgiveness_rate": { - "label": "gov.states.pa.tax.income.forgiveness.pa_tax_forgiveness_rate", - "description": null, - "index": 0 - }, - "gov.states.pa.tax.income.forgiveness.pa_income_tax_after_forgiveness": { - "label": "gov.states.pa.tax.income.forgiveness.pa_income_tax_after_forgiveness", - "description": null, - "index": 0 - }, - "gov.states.pa.tax.income.forgiveness.pa_income_tax_before_forgiveness": { - "label": "gov.states.pa.tax.income.forgiveness.pa_income_tax_before_forgiveness", - "description": null, - "index": 0 - }, - "gov.states.pa.tax.income.forgiveness.pa_eligibility_income": { - "label": "gov.states.pa.tax.income.forgiveness.pa_eligibility_income", - "description": null, - "index": 0 - }, - "gov.states.pa.tax.income.forgiveness.pa_tax_forgiveness_amount": { - "label": "gov.states.pa.tax.income.forgiveness.pa_tax_forgiveness_amount", - "description": null, - "index": 0 - }, - "gov.states.pa.tax.income.credits.pa_cdcc": { - "label": "gov.states.pa.tax.income.credits.pa_cdcc", - "description": null, - "index": 0 - }, - "gov.states.pa.tax.income.taxable_income.pa_nontaxable_pension_income": { - "label": "gov.states.pa.tax.income.taxable_income.pa_nontaxable_pension_income", - "description": null, - "index": 0 - }, - "gov.states.pa.tax.income.taxable_income.pa_adjusted_taxable_income": { - "label": "gov.states.pa.tax.income.taxable_income.pa_adjusted_taxable_income", - "description": null, - "index": 0 - }, - "gov.states.pa.tax.income.taxable_income.pa_total_taxable_income": { - "label": "gov.states.pa.tax.income.taxable_income.pa_total_taxable_income", - "description": null, - "index": 0 - }, - "gov.states.pa.tax.income.deductions.pa_tax_deductions": { - "label": "gov.states.pa.tax.income.deductions.pa_tax_deductions", - "description": null, - "index": 0 - }, - "gov.states.pa.dhs.tanf.cash_assistance.pa_tanf_age_eligible": { - "label": "gov.states.pa.dhs.tanf.cash_assistance.pa_tanf_age_eligible", - "description": null, - "index": 0 - }, - "gov.states.pa.dhs.tanf.eligibility.pa_tanf_countable_resources": { - "label": "gov.states.pa.dhs.tanf.eligibility.pa_tanf_countable_resources", - "description": null, - "index": 0 - }, - "gov.states.pa.dhs.tanf.eligibility.pa_tanf_resources_eligible": { - "label": "gov.states.pa.dhs.tanf.eligibility.pa_tanf_resources_eligible", - "description": null, - "index": 0 - }, - "gov.states.pa.dhs.tanf.eligibility.pregnancy_eligibility.age_eligibility": { - "label": "gov.states.pa.dhs.tanf.eligibility.pregnancy_eligibility.age_eligibility", - "description": null, - "index": 0 - }, - "gov.states.wv.tax.income.wv_additions": { - "label": "gov.states.wv.tax.income.wv_additions", - "description": null, - "index": 0 - }, - "gov.states.wv.tax.income.wv_withheld_income_tax": { - "label": "gov.states.wv.tax.income.wv_withheld_income_tax", - "description": null, - "index": 0 - }, - "gov.states.wv.tax.income.wv_non_refundable_credits": { - "label": "gov.states.wv.tax.income.wv_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.wv.tax.income.wv_subtractions": { - "label": "gov.states.wv.tax.income.wv_subtractions", - "description": null, - "index": 0 - }, - "gov.states.wv.tax.income.wv_agi": { - "label": "gov.states.wv.tax.income.wv_agi", - "description": null, - "index": 0 - }, - "gov.states.wv.tax.income.wv_income_tax_before_refundable_credits": { - "label": "gov.states.wv.tax.income.wv_income_tax_before_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.wv.tax.income.wv_taxable_income": { - "label": "gov.states.wv.tax.income.wv_taxable_income", - "description": null, - "index": 0 - }, - "gov.states.wv.tax.income.wv_income_tax_before_non_refundable_credits": { - "label": "gov.states.wv.tax.income.wv_income_tax_before_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.wv.tax.income.wv_refundable_credits": { - "label": "gov.states.wv.tax.income.wv_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.wv.tax.income.wv_income_tax": { - "label": "gov.states.wv.tax.income.wv_income_tax", - "description": null, - "index": 0 - }, - "gov.states.wv.tax.income.credits.wv_cdcc": { - "label": "gov.states.wv.tax.income.credits.wv_cdcc", - "description": null, - "index": 0 - }, - "gov.states.wv.tax.income.credits.sctc.wv_sctc_eligible": { - "label": "gov.states.wv.tax.income.credits.sctc.wv_sctc_eligible", - "description": null, - "index": 0 - }, - "gov.states.wv.tax.income.credits.sctc.wv_sctc": { - "label": "gov.states.wv.tax.income.credits.sctc.wv_sctc", - "description": null, - "index": 0 - }, - "gov.states.wv.tax.income.credits.sctc.wv_taxable_property_value": { - "label": "gov.states.wv.tax.income.credits.sctc.wv_taxable_property_value", - "description": null, - "index": 0 - }, - "gov.states.wv.tax.income.credits.heptc.wv_homestead_excess_property_tax_credit_eligible": { - "label": "gov.states.wv.tax.income.credits.heptc.wv_homestead_excess_property_tax_credit_eligible", - "description": null, - "index": 0 - }, - "gov.states.wv.tax.income.credits.heptc.wv_homestead_excess_property_tax_credit": { - "label": "gov.states.wv.tax.income.credits.heptc.wv_homestead_excess_property_tax_credit", - "description": null, - "index": 0 - }, - "gov.states.wv.tax.income.credits.heptc.wv_gross_household_income": { - "label": "gov.states.wv.tax.income.credits.heptc.wv_gross_household_income", - "description": null, - "index": 0 - }, - "gov.states.wv.tax.income.credits.liftc.wv_low_income_family_tax_credit_fpg": { - "label": "gov.states.wv.tax.income.credits.liftc.wv_low_income_family_tax_credit_fpg", - "description": null, - "index": 0 - }, - "gov.states.wv.tax.income.credits.liftc.wv_low_income_family_tax_credit_agi": { - "label": "gov.states.wv.tax.income.credits.liftc.wv_low_income_family_tax_credit_agi", - "description": null, - "index": 0 - }, - "gov.states.wv.tax.income.credits.liftc.wv_low_income_family_tax_credit_eligible": { - "label": "gov.states.wv.tax.income.credits.liftc.wv_low_income_family_tax_credit_eligible", - "description": null, - "index": 0 - }, - "gov.states.wv.tax.income.credits.liftc.wv_low_income_family_tax_credit": { - "label": "gov.states.wv.tax.income.credits.liftc.wv_low_income_family_tax_credit", - "description": null, - "index": 0 - }, - "gov.states.wv.tax.income.exemptions.wv_personal_exemption": { - "label": "gov.states.wv.tax.income.exemptions.wv_personal_exemption", - "description": null, - "index": 0 - }, - "gov.states.wv.tax.income.exemptions.homestead_exemption.wv_homestead_exemption": { - "label": "gov.states.wv.tax.income.exemptions.homestead_exemption.wv_homestead_exemption", - "description": null, - "index": 0 - }, - "gov.states.wv.tax.income.subtractions.low_income_earned_income.wv_low_income_earned_income_exclusion_eligible": { - "label": "gov.states.wv.tax.income.subtractions.low_income_earned_income.wv_low_income_earned_income_exclusion_eligible", - "description": null, - "index": 0 - }, - "gov.states.wv.tax.income.subtractions.low_income_earned_income.wv_low_income_earned_income_exclusion": { - "label": "gov.states.wv.tax.income.subtractions.low_income_earned_income.wv_low_income_earned_income_exclusion", - "description": null, - "index": 0 - }, - "gov.states.wv.tax.income.subtractions.social_security.wv_social_security_benefits_subtraction_eligible": { - "label": "gov.states.wv.tax.income.subtractions.social_security.wv_social_security_benefits_subtraction_eligible", - "description": null, - "index": 0 - }, - "gov.states.wv.tax.income.subtractions.social_security.wv_social_security_benefits_subtraction_person": { - "label": "gov.states.wv.tax.income.subtractions.social_security.wv_social_security_benefits_subtraction_person", - "description": null, - "index": 0 - }, - "gov.states.wv.tax.income.subtractions.social_security.wv_social_security_benefits_subtraction": { - "label": "gov.states.wv.tax.income.subtractions.social_security.wv_social_security_benefits_subtraction", - "description": null, - "index": 0 - }, - "gov.states.wv.tax.income.subtractions.senior_citizen_disability.wv_senior_citizen_disability_deduction_person": { - "label": "gov.states.wv.tax.income.subtractions.senior_citizen_disability.wv_senior_citizen_disability_deduction_person", - "description": null, - "index": 0 - }, - "gov.states.wv.tax.income.subtractions.senior_citizen_disability.wv_senior_citizen_disability_deduction_eligible_person": { - "label": "gov.states.wv.tax.income.subtractions.senior_citizen_disability.wv_senior_citizen_disability_deduction_eligible_person", - "description": null, - "index": 0 - }, - "gov.states.wv.tax.income.subtractions.senior_citizen_disability.wv_senior_citizen_disability_deduction_total_modifications": { - "label": "gov.states.wv.tax.income.subtractions.senior_citizen_disability.wv_senior_citizen_disability_deduction_total_modifications", - "description": null, - "index": 0 - }, - "gov.states.wv.tax.income.subtractions.senior_citizen_disability.wv_senior_citizen_disability_deduction": { - "label": "gov.states.wv.tax.income.subtractions.senior_citizen_disability.wv_senior_citizen_disability_deduction", - "description": null, - "index": 0 - }, - "gov.states.wv.tax.income.subtractions.public_pension.wv_public_pension_subtraction_person": { - "label": "gov.states.wv.tax.income.subtractions.public_pension.wv_public_pension_subtraction_person", - "description": null, - "index": 0 - }, - "gov.states.wv.tax.income.subtractions.public_pension.wv_public_pension_subtraction": { - "label": "gov.states.wv.tax.income.subtractions.public_pension.wv_public_pension_subtraction", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.ia_reduced_tax": { - "label": "gov.states.ia.tax.income.ia_reduced_tax", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.ia_alternate_tax_eligible": { - "label": "gov.states.ia.tax.income.ia_alternate_tax_eligible", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.ia_income_tax_before_refundable_credits": { - "label": "gov.states.ia.tax.income.ia_income_tax_before_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.ia_is_tax_exempt": { - "label": "gov.states.ia.tax.income.ia_is_tax_exempt", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.ia_modified_income": { - "label": "gov.states.ia.tax.income.ia_modified_income", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.ia_income_tax": { - "label": "gov.states.ia.tax.income.ia_income_tax", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.ia_reportable_social_security": { - "label": "gov.states.ia.tax.income.ia_reportable_social_security", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.ia_withheld_income_tax": { - "label": "gov.states.ia.tax.income.ia_withheld_income_tax", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.ia_income_tax_before_credits": { - "label": "gov.states.ia.tax.income.ia_income_tax_before_credits", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.ia_files_separately": { - "label": "gov.states.ia.tax.income.ia_files_separately", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.including_married_filing_separately.ia_base_tax_joint": { - "label": "gov.states.ia.tax.income.including_married_filing_separately.ia_base_tax_joint", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.including_married_filing_separately.ia_amt_joint": { - "label": "gov.states.ia.tax.income.including_married_filing_separately.ia_amt_joint", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.including_married_filing_separately.ia_income_tax_joint": { - "label": "gov.states.ia.tax.income.including_married_filing_separately.ia_income_tax_joint", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.including_married_filing_separately.ia_income_tax_indiv": { - "label": "gov.states.ia.tax.income.including_married_filing_separately.ia_income_tax_indiv", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.including_married_filing_separately.ia_regular_tax_indiv": { - "label": "gov.states.ia.tax.income.including_married_filing_separately.ia_regular_tax_indiv", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.including_married_filing_separately.ia_base_tax_indiv": { - "label": "gov.states.ia.tax.income.including_married_filing_separately.ia_base_tax_indiv", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.including_married_filing_separately.ia_regular_tax_joint": { - "label": "gov.states.ia.tax.income.including_married_filing_separately.ia_regular_tax_joint", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.including_married_filing_separately.ia_taxable_income_joint": { - "label": "gov.states.ia.tax.income.including_married_filing_separately.ia_taxable_income_joint", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.including_married_filing_separately.ia_amt_indiv": { - "label": "gov.states.ia.tax.income.including_married_filing_separately.ia_amt_indiv", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.including_married_filing_separately.ia_taxable_income_indiv": { - "label": "gov.states.ia.tax.income.including_married_filing_separately.ia_taxable_income_indiv", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.including_married_filing_separately.alternate_tax.ia_alternate_tax_unit": { - "label": "gov.states.ia.tax.income.including_married_filing_separately.alternate_tax.ia_alternate_tax_unit", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.including_married_filing_separately.alternate_tax.ia_alternate_tax_joint": { - "label": "gov.states.ia.tax.income.including_married_filing_separately.alternate_tax.ia_alternate_tax_joint", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.including_married_filing_separately.alternate_tax.ia_alternate_tax_indiv": { - "label": "gov.states.ia.tax.income.including_married_filing_separately.alternate_tax.ia_alternate_tax_indiv", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.including_married_filing_separately.deductions.ia_itemized_deductions_joint": { - "label": "gov.states.ia.tax.income.including_married_filing_separately.deductions.ia_itemized_deductions_joint", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.including_married_filing_separately.deductions.ia_basic_deduction_joint": { - "label": "gov.states.ia.tax.income.including_married_filing_separately.deductions.ia_basic_deduction_joint", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.including_married_filing_separately.deductions.ia_standard_deduction_indiv": { - "label": "gov.states.ia.tax.income.including_married_filing_separately.deductions.ia_standard_deduction_indiv", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.including_married_filing_separately.deductions.ia_basic_deduction_indiv": { - "label": "gov.states.ia.tax.income.including_married_filing_separately.deductions.ia_basic_deduction_indiv", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.including_married_filing_separately.deductions.ia_standard_deduction_joint": { - "label": "gov.states.ia.tax.income.including_married_filing_separately.deductions.ia_standard_deduction_joint", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.including_married_filing_separately.deductions.ia_itemized_deductions_indiv": { - "label": "gov.states.ia.tax.income.including_married_filing_separately.deductions.ia_itemized_deductions_indiv", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.including_married_filing_separately.deductions.ia_fedtax_deduction": { - "label": "gov.states.ia.tax.income.including_married_filing_separately.deductions.ia_fedtax_deduction", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.including_married_filing_separately.deductions.ia_qbi_deduction": { - "label": "gov.states.ia.tax.income.including_married_filing_separately.deductions.ia_qbi_deduction", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.including_married_filing_separately.deductions.ia_itemized_deductions_unit": { - "label": "gov.states.ia.tax.income.including_married_filing_separately.deductions.ia_itemized_deductions_unit", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.credits.ia_eitc": { - "label": "gov.states.ia.tax.income.credits.ia_eitc", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.credits.ia_refundable_credits": { - "label": "gov.states.ia.tax.income.credits.ia_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.credits.ia_cdcc": { - "label": "gov.states.ia.tax.income.credits.ia_cdcc", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.credits.ia_exemption_credit": { - "label": "gov.states.ia.tax.income.credits.ia_exemption_credit", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.credits.ia_nonrefundable_credits": { - "label": "gov.states.ia.tax.income.credits.ia_nonrefundable_credits", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.net_income.ia_pension_exclusion_eligible": { - "label": "gov.states.ia.tax.income.net_income.ia_pension_exclusion_eligible", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.net_income.ia_pension_exclusion": { - "label": "gov.states.ia.tax.income.net_income.ia_pension_exclusion", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.net_income.ia_net_income": { - "label": "gov.states.ia.tax.income.net_income.ia_net_income", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.net_income.ia_income_adjustments": { - "label": "gov.states.ia.tax.income.net_income.ia_income_adjustments", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.net_income.ia_gross_income": { - "label": "gov.states.ia.tax.income.net_income.ia_gross_income", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.net_income.ia_prorate_fraction": { - "label": "gov.states.ia.tax.income.net_income.ia_prorate_fraction", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.consolidated.ia_regular_tax_consolidated": { - "label": "gov.states.ia.tax.income.consolidated.ia_regular_tax_consolidated", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.consolidated.ia_alternate_tax_consolidated": { - "label": "gov.states.ia.tax.income.consolidated.ia_alternate_tax_consolidated", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.consolidated.ia_income_tax_consolidated": { - "label": "gov.states.ia.tax.income.consolidated.ia_income_tax_consolidated", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.consolidated.taxable_income.ia_additions_consolidated": { - "label": "gov.states.ia.tax.income.consolidated.taxable_income.ia_additions_consolidated", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.consolidated.taxable_income.ia_taxable_income_modifications_consolidated": { - "label": "gov.states.ia.tax.income.consolidated.taxable_income.ia_taxable_income_modifications_consolidated", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.consolidated.taxable_income.ia_taxable_income_consolidated": { - "label": "gov.states.ia.tax.income.consolidated.taxable_income.ia_taxable_income_consolidated", - "description": null, - "index": 0 - }, - "gov.states.ia.tax.income.consolidated.taxable_income.ia_subtractions_consolidated": { - "label": "gov.states.ia.tax.income.consolidated.taxable_income.ia_subtractions_consolidated", - "description": null, - "index": 0 - }, - "gov.states.az.tax.income.az_additions": { - "label": "gov.states.az.tax.income.az_additions", - "description": null, - "index": 0 - }, - "gov.states.az.tax.income.az_filing_status": { - "label": "gov.states.az.tax.income.az_filing_status", - "description": null, - "index": 0 - }, - "gov.states.az.tax.income.az_withheld_income_tax": { - "label": "gov.states.az.tax.income.az_withheld_income_tax", - "description": null, - "index": 0 - }, - "gov.states.az.tax.income.az_non_refundable_credits": { - "label": "gov.states.az.tax.income.az_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.az.tax.income.az_agi": { - "label": "gov.states.az.tax.income.az_agi", - "description": null, - "index": 0 - }, - "gov.states.az.tax.income.az_income_tax": { - "label": "gov.states.az.tax.income.az_income_tax", - "description": null, - "index": 0 - }, - "gov.states.az.tax.income.az_subtractions": { - "label": "gov.states.az.tax.income.az_subtractions", - "description": null, - "index": 0 - }, - "gov.states.az.tax.income.az_income_tax_before_non_refundable_credits": { - "label": "gov.states.az.tax.income.az_income_tax_before_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.az.tax.income.az_taxable_income": { - "label": "gov.states.az.tax.income.az_taxable_income", - "description": null, - "index": 0 - }, - "gov.states.az.tax.income.az_income_tax_before_refundable_credits": { - "label": "gov.states.az.tax.income.az_income_tax_before_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.az.tax.income.az_refundable_credits": { - "label": "gov.states.az.tax.income.az_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.az.tax.income.credits.az_increased_excise_tax_credit": { - "label": "gov.states.az.tax.income.credits.az_increased_excise_tax_credit", - "description": null, - "index": 0 - }, - "gov.states.az.tax.income.credits.az_increased_excise_tax_credit_eligible": { - "label": "gov.states.az.tax.income.credits.az_increased_excise_tax_credit_eligible", - "description": null, - "index": 0 - }, - "gov.states.az.tax.income.credits.dependent_credit.az_dependent_tax_credit": { - "label": "gov.states.az.tax.income.credits.dependent_credit.az_dependent_tax_credit", - "description": null, - "index": 0 - }, - "gov.states.az.tax.income.credits.family_tax_credit.az_family_tax_credit_eligible": { - "label": "gov.states.az.tax.income.credits.family_tax_credit.az_family_tax_credit_eligible", - "description": null, - "index": 0 - }, - "gov.states.az.tax.income.credits.family_tax_credit.az_family_tax_credit": { - "label": "gov.states.az.tax.income.credits.family_tax_credit.az_family_tax_credit", - "description": null, - "index": 0 - }, - "gov.states.az.tax.income.credits.charitable_contribution.az_charitable_contributions_to_qualifying_charitable_organizations": { - "label": "gov.states.az.tax.income.credits.charitable_contribution.az_charitable_contributions_to_qualifying_charitable_organizations", - "description": null, - "index": 0 - }, - "gov.states.az.tax.income.credits.charitable_contribution.az_charitable_contributions_to_qualifying_foster_care_organizations": { - "label": "gov.states.az.tax.income.credits.charitable_contribution.az_charitable_contributions_to_qualifying_foster_care_organizations", - "description": null, - "index": 0 - }, - "gov.states.az.tax.income.credits.charitable_contribution.az_charitable_contributions_credit": { - "label": "gov.states.az.tax.income.credits.charitable_contribution.az_charitable_contributions_credit", - "description": null, - "index": 0 - }, - "gov.states.az.tax.income.credits.property_tax_credit.az_property_tax_credit_income": { - "label": "gov.states.az.tax.income.credits.property_tax_credit.az_property_tax_credit_income", - "description": null, - "index": 0 - }, - "gov.states.az.tax.income.credits.property_tax_credit.az_property_tax_credit_eligible": { - "label": "gov.states.az.tax.income.credits.property_tax_credit.az_property_tax_credit_eligible", - "description": null, - "index": 0 - }, - "gov.states.az.tax.income.credits.property_tax_credit.az_property_tax_credit": { - "label": "gov.states.az.tax.income.credits.property_tax_credit.az_property_tax_credit", - "description": null, - "index": 0 - }, - "gov.states.az.tax.income.exemptions.az_blind_exemption": { - "label": "gov.states.az.tax.income.exemptions.az_blind_exemption", - "description": null, - "index": 0 - }, - "gov.states.az.tax.income.exemptions.az_stillborn_exemption": { - "label": "gov.states.az.tax.income.exemptions.az_stillborn_exemption", - "description": null, - "index": 0 - }, - "gov.states.az.tax.income.exemptions.az_exemptions": { - "label": "gov.states.az.tax.income.exemptions.az_exemptions", - "description": null, - "index": 0 - }, - "gov.states.az.tax.income.exemptions.az_parents_grandparents_exemption": { - "label": "gov.states.az.tax.income.exemptions.az_parents_grandparents_exemption", - "description": null, - "index": 0 - }, - "gov.states.az.tax.income.exemptions.az_aged_exemption_eligible_person": { - "label": "gov.states.az.tax.income.exemptions.az_aged_exemption_eligible_person", - "description": null, - "index": 0 - }, - "gov.states.az.tax.income.exemptions.az_aged_exemption": { - "label": "gov.states.az.tax.income.exemptions.az_aged_exemption", - "description": null, - "index": 0 - }, - "gov.states.az.tax.income.subtractions.az_public_pension_exclusion": { - "label": "gov.states.az.tax.income.subtractions.az_public_pension_exclusion", - "description": null, - "index": 0 - }, - "gov.states.az.tax.income.subtractions.az_military_retirement_subtraction": { - "label": "gov.states.az.tax.income.subtractions.az_military_retirement_subtraction", - "description": null, - "index": 0 - }, - "gov.states.az.tax.income.subtractions.college_savings.az_529_college_savings_plan_subtraction": { - "label": "gov.states.az.tax.income.subtractions.college_savings.az_529_college_savings_plan_subtraction", - "description": null, - "index": 0 - }, - "gov.states.az.tax.income.subtractions.capital_gains.az_long_term_capital_gains_subtraction": { - "label": "gov.states.az.tax.income.subtractions.capital_gains.az_long_term_capital_gains_subtraction", - "description": null, - "index": 0 - }, - "gov.states.az.tax.income.deductions.az_deductions": { - "label": "gov.states.az.tax.income.deductions.az_deductions", - "description": null, - "index": 0 - }, - "gov.states.az.tax.income.deductions.itemized.az_itemized_deductions": { - "label": "gov.states.az.tax.income.deductions.itemized.az_itemized_deductions", - "description": null, - "index": 0 - }, - "gov.states.az.tax.income.deductions.standard.az_standard_deduction": { - "label": "gov.states.az.tax.income.deductions.standard.az_standard_deduction", - "description": null, - "index": 0 - }, - "gov.states.az.tax.income.deductions.standard.az_base_standard_deduction": { - "label": "gov.states.az.tax.income.deductions.standard.az_base_standard_deduction", - "description": null, - "index": 0 - }, - "gov.states.az.tax.income.deductions.standard.az_increased_standard_deduction_for_charitable_contributions": { - "label": "gov.states.az.tax.income.deductions.standard.az_increased_standard_deduction_for_charitable_contributions", - "description": null, - "index": 0 - }, - "gov.states.az.hhs.tanf.eligibility.az_tanf_eligible_child": { - "label": "gov.states.az.hhs.tanf.eligibility.az_tanf_eligible_child", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.filing.mt_files_separately": { - "label": "gov.states.mt.tax.income.filing.mt_files_separately", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.credits.eitc.mt_eitc": { - "label": "gov.states.mt.tax.income.credits.eitc.mt_eitc", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.credits.capital_gain.mt_capital_gain_credit": { - "label": "gov.states.mt.tax.income.credits.capital_gain.mt_capital_gain_credit", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.credits.rebate.mt_property_tax_rebate": { - "label": "gov.states.mt.tax.income.credits.rebate.mt_property_tax_rebate", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.credits.rebate.mt_income_tax_rebate": { - "label": "gov.states.mt.tax.income.credits.rebate.mt_income_tax_rebate", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.credits.mt_elderly_homeowner_or_renter.mt_elderly_homeowner_or_renter_credit_gross_household_income": { - "label": "gov.states.mt.tax.income.credits.mt_elderly_homeowner_or_renter.mt_elderly_homeowner_or_renter_credit_gross_household_income", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.credits.mt_elderly_homeowner_or_renter.mt_elderly_homeowner_or_renter_credit_eligible": { - "label": "gov.states.mt.tax.income.credits.mt_elderly_homeowner_or_renter.mt_elderly_homeowner_or_renter_credit_eligible", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.credits.mt_elderly_homeowner_or_renter.mt_elderly_homeowner_or_renter_credit": { - "label": "gov.states.mt.tax.income.credits.mt_elderly_homeowner_or_renter.mt_elderly_homeowner_or_renter_credit", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.credits.mt_elderly_homeowner_or_renter.mt_elderly_homeowner_or_renter_credit_net_household_income": { - "label": "gov.states.mt.tax.income.credits.mt_elderly_homeowner_or_renter.mt_elderly_homeowner_or_renter_credit_net_household_income", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.exemptions.interest.mt_interest_exemption": { - "label": "gov.states.mt.tax.income.exemptions.interest.mt_interest_exemption", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.exemptions.interest.mt_interest_exemption_person": { - "label": "gov.states.mt.tax.income.exemptions.interest.mt_interest_exemption_person", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.exemptions.interest.mt_interest_exemption_eligible_person": { - "label": "gov.states.mt.tax.income.exemptions.interest.mt_interest_exemption_eligible_person", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.exemptions.aged.mt_aged_exemption_eligible_person": { - "label": "gov.states.mt.tax.income.exemptions.aged.mt_aged_exemption_eligible_person", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.exemptions.dependent.mt_dependent_exemptions_person": { - "label": "gov.states.mt.tax.income.exemptions.dependent.mt_dependent_exemptions_person", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.exemptions.personal.mt_personal_exemptions_joint": { - "label": "gov.states.mt.tax.income.exemptions.personal.mt_personal_exemptions_joint", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.exemptions.personal.mt_personal_exemptions_indiv": { - "label": "gov.states.mt.tax.income.exemptions.personal.mt_personal_exemptions_indiv", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.capital_gains.mt_capital_gains_tax_indiv": { - "label": "gov.states.mt.tax.income.capital_gains.mt_capital_gains_tax_indiv", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.capital_gains.mt_capital_gains_tax_joint": { - "label": "gov.states.mt.tax.income.capital_gains.mt_capital_gains_tax_joint", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.capital_gains.mt_capital_gains_tax_applicable_threshold_indiv": { - "label": "gov.states.mt.tax.income.capital_gains.mt_capital_gains_tax_applicable_threshold_indiv", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.capital_gains.mt_capital_gains_tax_applicable_threshold_joint": { - "label": "gov.states.mt.tax.income.capital_gains.mt_capital_gains_tax_applicable_threshold_joint", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.subtractions.mt_subtractions": { - "label": "gov.states.mt.tax.income.subtractions.mt_subtractions", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.subtractions.tuition.mt_tuition_subtraction_person": { - "label": "gov.states.mt.tax.income.subtractions.tuition.mt_tuition_subtraction_person", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.subtractions.tuition.mt_tuition_subtraction": { - "label": "gov.states.mt.tax.income.subtractions.tuition.mt_tuition_subtraction", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.subtractions.disability.mt_disability_income_exclusion_person": { - "label": "gov.states.mt.tax.income.subtractions.disability.mt_disability_income_exclusion_person", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.subtractions.disability.mt_disability_income_exclusion": { - "label": "gov.states.mt.tax.income.subtractions.disability.mt_disability_income_exclusion", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.subtractions.disability.mt_disability_income_exclusion_eligible_person": { - "label": "gov.states.mt.tax.income.subtractions.disability.mt_disability_income_exclusion_eligible_person", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.subtractions.old_age.mt_old_age_subtraction": { - "label": "gov.states.mt.tax.income.subtractions.old_age.mt_old_age_subtraction", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.base.mt_income_tax": { - "label": "gov.states.mt.tax.income.base.mt_income_tax", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.base.mt_taxable_social_security": { - "label": "gov.states.mt.tax.income.base.mt_taxable_social_security", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.base.mt_applicable_ald_deductions": { - "label": "gov.states.mt.tax.income.base.mt_applicable_ald_deductions", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.base.mt_withheld_income_tax": { - "label": "gov.states.mt.tax.income.base.mt_withheld_income_tax", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.base.mt_agi": { - "label": "gov.states.mt.tax.income.base.mt_agi", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.additions.mt_additions": { - "label": "gov.states.mt.tax.income.additions.mt_additions", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.tax_calculation.mt_income_tax_joint": { - "label": "gov.states.mt.tax.income.tax_calculation.mt_income_tax_joint", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.tax_calculation.mt_regular_income_tax_indiv": { - "label": "gov.states.mt.tax.income.tax_calculation.mt_regular_income_tax_indiv", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.tax_calculation.mt_income_tax_before_non_refundable_credits_indiv": { - "label": "gov.states.mt.tax.income.tax_calculation.mt_income_tax_before_non_refundable_credits_indiv", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.tax_calculation.mt_refundable_credits_before_renter_credit": { - "label": "gov.states.mt.tax.income.tax_calculation.mt_refundable_credits_before_renter_credit", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.tax_calculation.mt_income_tax_indiv": { - "label": "gov.states.mt.tax.income.tax_calculation.mt_income_tax_indiv", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.tax_calculation.mt_non_refundable_credits": { - "label": "gov.states.mt.tax.income.tax_calculation.mt_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.tax_calculation.mt_taxable_income_indiv": { - "label": "gov.states.mt.tax.income.tax_calculation.mt_taxable_income_indiv", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.tax_calculation.mt_income_tax_before_non_refundable_credits_joint": { - "label": "gov.states.mt.tax.income.tax_calculation.mt_income_tax_before_non_refundable_credits_joint", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.tax_calculation.mt_income_tax_before_refundable_credits_joint": { - "label": "gov.states.mt.tax.income.tax_calculation.mt_income_tax_before_refundable_credits_joint", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.tax_calculation.mt_regular_income_tax_joint": { - "label": "gov.states.mt.tax.income.tax_calculation.mt_regular_income_tax_joint", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.tax_calculation.mt_refundable_credits": { - "label": "gov.states.mt.tax.income.tax_calculation.mt_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.tax_calculation.mt_income_tax_before_refundable_credits_indiv": { - "label": "gov.states.mt.tax.income.tax_calculation.mt_income_tax_before_refundable_credits_indiv", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.tax_calculation.mt_taxable_income_joint": { - "label": "gov.states.mt.tax.income.tax_calculation.mt_taxable_income_joint", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.tax_calculation.mt_pre_dependent_exemption_taxable_income_indiv": { - "label": "gov.states.mt.tax.income.tax_calculation.mt_pre_dependent_exemption_taxable_income_indiv", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.tax_calculation.mt_income_tax_before_refundable_credits_unit": { - "label": "gov.states.mt.tax.income.tax_calculation.mt_income_tax_before_refundable_credits_unit", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.deductions.mt_deductions_indiv": { - "label": "gov.states.mt.tax.income.deductions.mt_deductions_indiv", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.deductions.cdcc.mt_child_dependent_care_expense_deduction_eligibile_child": { - "label": "gov.states.mt.tax.income.deductions.cdcc.mt_child_dependent_care_expense_deduction_eligibile_child", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.deductions.cdcc.mt_child_dependent_care_expense_deduction_eligible_children": { - "label": "gov.states.mt.tax.income.deductions.cdcc.mt_child_dependent_care_expense_deduction_eligible_children", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.deductions.cdcc.mt_child_dependent_care_expense_deduction": { - "label": "gov.states.mt.tax.income.deductions.cdcc.mt_child_dependent_care_expense_deduction", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.deductions.itemized.federal_tax.mt_federal_income_tax_deduction_indiv": { - "label": "gov.states.mt.tax.income.deductions.itemized.federal_tax.mt_federal_income_tax_deduction_indiv", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.deductions.itemized.federal_tax.mt_federal_income_tax_deduction_unit": { - "label": "gov.states.mt.tax.income.deductions.itemized.federal_tax.mt_federal_income_tax_deduction_unit", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.deductions.itemized.salt.mt_salt_deduction": { - "label": "gov.states.mt.tax.income.deductions.itemized.salt.mt_salt_deduction", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.deductions.itemized.general.mt_misc_deductions": { - "label": "gov.states.mt.tax.income.deductions.itemized.general.mt_misc_deductions", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.deductions.itemized.general.mt_itemized_deductions_indiv": { - "label": "gov.states.mt.tax.income.deductions.itemized.general.mt_itemized_deductions_indiv", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.deductions.itemized.general.mt_itemized_deductions_joint": { - "label": "gov.states.mt.tax.income.deductions.itemized.general.mt_itemized_deductions_joint", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.deductions.itemized.medical.mt_medical_expense_deduction_joint": { - "label": "gov.states.mt.tax.income.deductions.itemized.medical.mt_medical_expense_deduction_joint", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.deductions.itemized.medical.mt_medical_expense_deduction_indiv": { - "label": "gov.states.mt.tax.income.deductions.itemized.medical.mt_medical_expense_deduction_indiv", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.deductions.standard.mt_standard_deduction_joint": { - "label": "gov.states.mt.tax.income.deductions.standard.mt_standard_deduction_joint", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.deductions.standard.mt_standard_deduction_indiv": { - "label": "gov.states.mt.tax.income.deductions.standard.mt_standard_deduction_indiv", - "description": null, - "index": 0 - }, - "gov.states.mt.tax.income.deductions.general.mt_tax_unit_itemizes": { - "label": "gov.states.mt.tax.income.deductions.general.mt_tax_unit_itemizes", - "description": null, - "index": 0 - }, - "gov.states.nm.tax.income.nm_income_tax": { - "label": "gov.states.nm.tax.income.nm_income_tax", - "description": null, - "index": 0 - }, - "gov.states.nm.tax.income.nm_other_deductions_and_exemptions": { - "label": "gov.states.nm.tax.income.nm_other_deductions_and_exemptions", - "description": null, - "index": 0 - }, - "gov.states.nm.tax.income.nm_taxable_income": { - "label": "gov.states.nm.tax.income.nm_taxable_income", - "description": null, - "index": 0 - }, - "gov.states.nm.tax.income.nm_refundable_credits": { - "label": "gov.states.nm.tax.income.nm_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.nm.tax.income.nm_income_tax_before_refundable_credits": { - "label": "gov.states.nm.tax.income.nm_income_tax_before_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.nm.tax.income.nm_income_tax_before_non_refundable_credits": { - "label": "gov.states.nm.tax.income.nm_income_tax_before_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.nm.tax.income.nm_non_refundable_credits": { - "label": "gov.states.nm.tax.income.nm_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.nm.tax.income.nm_additions": { - "label": "gov.states.nm.tax.income.nm_additions", - "description": null, - "index": 0 - }, - "gov.states.nm.tax.income.nm_modified_gross_income": { - "label": "gov.states.nm.tax.income.nm_modified_gross_income", - "description": null, - "index": 0 - }, - "gov.states.nm.tax.income.nm_withheld_income_tax": { - "label": "gov.states.nm.tax.income.nm_withheld_income_tax", - "description": null, - "index": 0 - }, - "gov.states.nm.tax.income.rebates.2021_rebate.nm_2021_income_rebate": { - "label": "gov.states.nm.tax.income.rebates.2021_rebate.nm_2021_income_rebate", - "description": null, - "index": 0 - }, - "gov.states.nm.tax.income.rebates.2021_rebate.nm_additional_2021_income_rebate": { - "label": "gov.states.nm.tax.income.rebates.2021_rebate.nm_additional_2021_income_rebate", - "description": null, - "index": 0 - }, - "gov.states.nm.tax.income.rebates.2021_rebate.nm_supplemental_2021_income_rebate": { - "label": "gov.states.nm.tax.income.rebates.2021_rebate.nm_supplemental_2021_income_rebate", - "description": null, - "index": 0 - }, - "gov.states.nm.tax.income.rebates.property_tax_rebate.nm_property_tax_rebate": { - "label": "gov.states.nm.tax.income.rebates.property_tax_rebate.nm_property_tax_rebate", - "description": null, - "index": 0 - }, - "gov.states.nm.tax.income.rebates.property_tax_rebate.nm_property_tax_rebate_eligible": { - "label": "gov.states.nm.tax.income.rebates.property_tax_rebate.nm_property_tax_rebate_eligible", - "description": null, - "index": 0 - }, - "gov.states.nm.tax.income.rebates.low_income_comprehensive.nm_low_income_comprehensive_tax_rebate": { - "label": "gov.states.nm.tax.income.rebates.low_income_comprehensive.nm_low_income_comprehensive_tax_rebate", - "description": null, - "index": 0 - }, - "gov.states.nm.tax.income.rebates.low_income_comprehensive.nm_low_income_comprehensive_tax_rebate_exemptions": { - "label": "gov.states.nm.tax.income.rebates.low_income_comprehensive.nm_low_income_comprehensive_tax_rebate_exemptions", - "description": null, - "index": 0 - }, - "gov.states.nm.tax.income.credits.nm_medical_expense_credit": { - "label": "gov.states.nm.tax.income.credits.nm_medical_expense_credit", - "description": null, - "index": 0 - }, - "gov.states.nm.tax.income.credits.nm_ctc": { - "label": "gov.states.nm.tax.income.credits.nm_ctc", - "description": null, - "index": 0 - }, - "gov.states.nm.tax.income.credits.eitc.nm_eitc_eligible": { - "label": "gov.states.nm.tax.income.credits.eitc.nm_eitc_eligible", - "description": null, - "index": 0 - }, - "gov.states.nm.tax.income.credits.eitc.nm_eitc": { - "label": "gov.states.nm.tax.income.credits.eitc.nm_eitc", - "description": null, - "index": 0 - }, - "gov.states.nm.tax.income.credits.eitc.nm_eitc_demographic_eligible": { - "label": "gov.states.nm.tax.income.credits.eitc.nm_eitc_demographic_eligible", - "description": null, - "index": 0 - }, - "gov.states.nm.tax.income.credits.cdcc.nm_cdcc_eligible_child": { - "label": "gov.states.nm.tax.income.credits.cdcc.nm_cdcc_eligible_child", - "description": null, - "index": 0 - }, - "gov.states.nm.tax.income.credits.cdcc.nm_cdcc_eligible": { - "label": "gov.states.nm.tax.income.credits.cdcc.nm_cdcc_eligible", - "description": null, - "index": 0 - }, - "gov.states.nm.tax.income.credits.cdcc.nm_cdcc_max_amount": { - "label": "gov.states.nm.tax.income.credits.cdcc.nm_cdcc_max_amount", - "description": null, - "index": 0 - }, - "gov.states.nm.tax.income.credits.cdcc.nm_cdcc": { - "label": "gov.states.nm.tax.income.credits.cdcc.nm_cdcc", - "description": null, - "index": 0 - }, - "gov.states.nm.tax.income.exemptions.nm_social_security_income_exemption": { - "label": "gov.states.nm.tax.income.exemptions.nm_social_security_income_exemption", - "description": null, - "index": 0 - }, - "gov.states.nm.tax.income.exemptions.nm_low_and_middle_income_exemption": { - "label": "gov.states.nm.tax.income.exemptions.nm_low_and_middle_income_exemption", - "description": null, - "index": 0 - }, - "gov.states.nm.tax.income.exemptions.nm_blind_and_aged_exemption": { - "label": "gov.states.nm.tax.income.exemptions.nm_blind_and_aged_exemption", - "description": null, - "index": 0 - }, - "gov.states.nm.tax.income.exemptions.nm_hundred_year_exemption": { - "label": "gov.states.nm.tax.income.exemptions.nm_hundred_year_exemption", - "description": null, - "index": 0 - }, - "gov.states.nm.tax.income.exemptions.nm_medical_expense_exemption": { - "label": "gov.states.nm.tax.income.exemptions.nm_medical_expense_exemption", - "description": null, - "index": 0 - }, - "gov.states.nm.tax.income.exemptions.nm_exemptions": { - "label": "gov.states.nm.tax.income.exemptions.nm_exemptions", - "description": null, - "index": 0 - }, - "gov.states.nm.tax.income.exemptions.nm_armed_forces_retirement_pay_exemption_person": { - "label": "gov.states.nm.tax.income.exemptions.nm_armed_forces_retirement_pay_exemption_person", - "description": null, - "index": 0 - }, - "gov.states.nm.tax.income.deductions.nm_deductions": { - "label": "gov.states.nm.tax.income.deductions.nm_deductions", - "description": null, - "index": 0 - }, - "gov.states.nm.tax.income.deductions.nm_medical_care_expense_deduction": { - "label": "gov.states.nm.tax.income.deductions.nm_medical_care_expense_deduction", - "description": null, - "index": 0 - }, - "gov.states.nm.tax.income.deductions.nm_net_capital_gains_deduction": { - "label": "gov.states.nm.tax.income.deductions.nm_net_capital_gains_deduction", - "description": null, - "index": 0 - }, - "gov.states.nm.tax.income.deductions.nm_salt_add_back": { - "label": "gov.states.nm.tax.income.deductions.nm_salt_add_back", - "description": null, - "index": 0 - }, - "gov.states.nm.tax.income.deductions.certain_dependents.nm_deduction_for_certain_dependents": { - "label": "gov.states.nm.tax.income.deductions.certain_dependents.nm_deduction_for_certain_dependents", - "description": null, - "index": 0 - }, - "gov.states.nm.tax.income.deductions.certain_dependents.nm_deduction_for_certain_dependents_eligible": { - "label": "gov.states.nm.tax.income.deductions.certain_dependents.nm_deduction_for_certain_dependents_eligible", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.md_taxable_income": { - "label": "gov.states.md.tax.income.md_taxable_income", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.md_withheld_income_tax": { - "label": "gov.states.md.tax.income.md_withheld_income_tax", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.md_income_tax": { - "label": "gov.states.md.tax.income.md_income_tax", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.md_income_tax_before_refundable_credits": { - "label": "gov.states.md.tax.income.md_income_tax_before_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.md_income_tax_before_credits": { - "label": "gov.states.md.tax.income.md_income_tax_before_credits", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.agi.md_agi": { - "label": "gov.states.md.tax.income.agi.md_agi", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.agi.subtractions.md_total_subtractions": { - "label": "gov.states.md.tax.income.agi.subtractions.md_total_subtractions", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.agi.subtractions.md_two_income_subtraction": { - "label": "gov.states.md.tax.income.agi.subtractions.md_two_income_subtraction", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.agi.subtractions.md_socsec_subtraction": { - "label": "gov.states.md.tax.income.agi.subtractions.md_socsec_subtraction", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.agi.subtractions.md_socsec_subtraction_amount": { - "label": "gov.states.md.tax.income.agi.subtractions.md_socsec_subtraction_amount", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.agi.subtractions.md_pension_subtraction": { - "label": "gov.states.md.tax.income.agi.subtractions.md_pension_subtraction", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.agi.subtractions.md_dependent_care_subtraction": { - "label": "gov.states.md.tax.income.agi.subtractions.md_dependent_care_subtraction", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.agi.subtractions.md_pension_subtraction_amount": { - "label": "gov.states.md.tax.income.agi.subtractions.md_pension_subtraction_amount", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.agi.subtractions.hundred_year.md_hundred_year_subtraction_person": { - "label": "gov.states.md.tax.income.agi.subtractions.hundred_year.md_hundred_year_subtraction_person", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.agi.subtractions.hundred_year.md_hundred_year_subtraction_eligible": { - "label": "gov.states.md.tax.income.agi.subtractions.hundred_year.md_hundred_year_subtraction_eligible", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.agi.subtractions.hundred_year.md_hundred_year_subtraction": { - "label": "gov.states.md.tax.income.agi.subtractions.hundred_year.md_hundred_year_subtraction", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.agi.additions.md_total_additions": { - "label": "gov.states.md.tax.income.agi.additions.md_total_additions", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.income_sources.md_tax_unit_earned_income": { - "label": "gov.states.md.tax.income.income_sources.md_tax_unit_earned_income", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.credits.md_non_refundable_credits": { - "label": "gov.states.md.tax.income.credits.md_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.credits.md_refundable_credits": { - "label": "gov.states.md.tax.income.credits.md_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.credits.eitc.md_qualifies_for_unmarried_childless_eitc": { - "label": "gov.states.md.tax.income.credits.eitc.md_qualifies_for_unmarried_childless_eitc", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.credits.eitc.federal_eitc_without_age_minimum": { - "label": "gov.states.md.tax.income.credits.eitc.federal_eitc_without_age_minimum", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.credits.eitc.md_eitc": { - "label": "gov.states.md.tax.income.credits.eitc.md_eitc", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.credits.eitc.non_refundable.md_married_or_has_child_non_refundable_eitc": { - "label": "gov.states.md.tax.income.credits.eitc.non_refundable.md_married_or_has_child_non_refundable_eitc", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.credits.eitc.non_refundable.md_non_refundable_eitc": { - "label": "gov.states.md.tax.income.credits.eitc.non_refundable.md_non_refundable_eitc", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.credits.eitc.non_refundable.md_unmarried_childless_non_refundable_eitc": { - "label": "gov.states.md.tax.income.credits.eitc.non_refundable.md_unmarried_childless_non_refundable_eitc", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.credits.eitc.refundable.md_refundable_eitc": { - "label": "gov.states.md.tax.income.credits.eitc.refundable.md_refundable_eitc", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.credits.eitc.refundable.md_married_or_has_child_refundable_eitc": { - "label": "gov.states.md.tax.income.credits.eitc.refundable.md_married_or_has_child_refundable_eitc", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.credits.eitc.refundable.md_unmarried_childless_refundable_eitc": { - "label": "gov.states.md.tax.income.credits.eitc.refundable.md_unmarried_childless_refundable_eitc", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.credits.poverty_line.is_eligible_md_poverty_line_credit": { - "label": "gov.states.md.tax.income.credits.poverty_line.is_eligible_md_poverty_line_credit", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.credits.poverty_line.md_poverty_line_credit": { - "label": "gov.states.md.tax.income.credits.poverty_line.md_poverty_line_credit", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.credits.senior_tax.md_senior_tax_credit": { - "label": "gov.states.md.tax.income.credits.senior_tax.md_senior_tax_credit", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.credits.senior_tax.md_senior_tax_credit_eligible": { - "label": "gov.states.md.tax.income.credits.senior_tax.md_senior_tax_credit_eligible", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.credits.ctc.md_ctc": { - "label": "gov.states.md.tax.income.credits.ctc.md_ctc", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.credits.ctc.md_ctc_eligible": { - "label": "gov.states.md.tax.income.credits.ctc.md_ctc_eligible", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.credits.cdcc.md_refundable_cdcc": { - "label": "gov.states.md.tax.income.credits.cdcc.md_refundable_cdcc", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.credits.cdcc.md_cdcc": { - "label": "gov.states.md.tax.income.credits.cdcc.md_cdcc", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.exemptions.md_aged_blind_exemptions": { - "label": "gov.states.md.tax.income.exemptions.md_aged_blind_exemptions", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.exemptions.md_blind_exemption": { - "label": "gov.states.md.tax.income.exemptions.md_blind_exemption", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.exemptions.md_exemptions": { - "label": "gov.states.md.tax.income.exemptions.md_exemptions", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.exemptions.md_aged_exemption": { - "label": "gov.states.md.tax.income.exemptions.md_aged_exemption", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.exemptions.md_personal_exemption": { - "label": "gov.states.md.tax.income.exemptions.md_personal_exemption", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.exemptions.md_aged_dependent_exemption": { - "label": "gov.states.md.tax.income.exemptions.md_aged_dependent_exemption", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.exemptions.md_total_personal_exemptions": { - "label": "gov.states.md.tax.income.exemptions.md_total_personal_exemptions", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.capital_gains.md_capital_gains_surtax_applies": { - "label": "gov.states.md.tax.income.capital_gains.md_capital_gains_surtax_applies", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.capital_gains.md_capital_gains_surtax": { - "label": "gov.states.md.tax.income.capital_gains.md_capital_gains_surtax", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.local.md_local_income_tax_before_credits": { - "label": "gov.states.md.tax.income.local.md_local_income_tax_before_credits", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.deductions.md_itemized_deductions": { - "label": "gov.states.md.tax.income.deductions.md_itemized_deductions", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.deductions.md_standard_deduction": { - "label": "gov.states.md.tax.income.deductions.md_standard_deduction", - "description": null, - "index": 0 - }, - "gov.states.md.tax.income.deductions.md_deductions": { - "label": "gov.states.md.tax.income.deductions.md_deductions", - "description": null, - "index": 0 - }, - "gov.states.md.tanf.md_tanf_eligible": { - "label": "gov.states.md.tanf.md_tanf_eligible", - "description": null, - "index": 0 - }, - "gov.states.md.tanf.md_tanf_maximum_benefit": { - "label": "gov.states.md.tanf.md_tanf_maximum_benefit", - "description": null, - "index": 0 - }, - "gov.states.md.tanf.md_tanf_count_children": { - "label": "gov.states.md.tanf.md_tanf_count_children", - "description": null, - "index": 0 - }, - "gov.states.md.tanf.income.earned.md_tanf_gross_earned_income_deduction": { - "label": "gov.states.md.tanf.income.earned.md_tanf_gross_earned_income_deduction", - "description": null, - "index": 0 - }, - "gov.states.md.usda.snap.min_allotment.md_snap_elderly_present": { - "label": "gov.states.md.usda.snap.min_allotment.md_snap_elderly_present", - "description": null, - "index": 0 - }, - "gov.states.md.usda.snap.min_allotment.md_snap_is_elderly": { - "label": "gov.states.md.usda.snap.min_allotment.md_snap_is_elderly", - "description": null, - "index": 0 - }, - "gov.states.ak.dor.ak_permanent_fund_dividend": { - "label": "gov.states.ak.dor.ak_permanent_fund_dividend", - "description": null, - "index": 0 - }, - "gov.states.ak.dor.ak_energy_relief": { - "label": "gov.states.ak.dor.ak_energy_relief", - "description": null, - "index": 0 - }, - "gov.states.la.tax.income.la_income_tax": { - "label": "gov.states.la.tax.income.la_income_tax", - "description": null, - "index": 0 - }, - "gov.states.la.tax.income.la_agi": { - "label": "gov.states.la.tax.income.la_agi", - "description": null, - "index": 0 - }, - "gov.states.la.tax.income.la_refundable_credits": { - "label": "gov.states.la.tax.income.la_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.la.tax.income.la_income_tax_before_refundable_credits": { - "label": "gov.states.la.tax.income.la_income_tax_before_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.la.tax.income.la_withheld_income_tax": { - "label": "gov.states.la.tax.income.la_withheld_income_tax", - "description": null, - "index": 0 - }, - "gov.states.la.tax.income.la_income_tax_before_non_refundable_credits": { - "label": "gov.states.la.tax.income.la_income_tax_before_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.la.tax.income.la_taxable_income": { - "label": "gov.states.la.tax.income.la_taxable_income", - "description": null, - "index": 0 - }, - "gov.states.la.tax.income.la_non_refundable_credits": { - "label": "gov.states.la.tax.income.la_non_refundable_credits", - "description": null, - "index": 0 - }, - "gov.states.la.tax.income.exempt_income.la_disability_income_exemption_person": { - "label": "gov.states.la.tax.income.exempt_income.la_disability_income_exemption_person", - "description": null, - "index": 0 - }, - "gov.states.la.tax.income.exempt_income.la_agi_exempt_income": { - "label": "gov.states.la.tax.income.exempt_income.la_agi_exempt_income", - "description": null, - "index": 0 - }, - "gov.states.la.tax.income.exempt_income.la_retirement_exemption_person": { - "label": "gov.states.la.tax.income.exempt_income.la_retirement_exemption_person", - "description": null, - "index": 0 - }, - "gov.states.la.tax.income.exempt_income.military_pay_exclusion.la_military_pay_exclusion": { - "label": "gov.states.la.tax.income.exempt_income.military_pay_exclusion.la_military_pay_exclusion", - "description": null, - "index": 0 - }, - "gov.states.la.tax.income.credits.la_eitc": { - "label": "gov.states.la.tax.income.credits.la_eitc", - "description": null, - "index": 0 - }, - "gov.states.la.tax.income.credits.school_readiness.la_school_readiness_credit_refundable": { - "label": "gov.states.la.tax.income.credits.school_readiness.la_school_readiness_credit_refundable", - "description": null, - "index": 0 - }, - "gov.states.la.tax.income.credits.school_readiness.la_school_readiness_credit_eligible_child": { - "label": "gov.states.la.tax.income.credits.school_readiness.la_school_readiness_credit_eligible_child", - "description": null, - "index": 0 - }, - "gov.states.la.tax.income.credits.school_readiness.la_school_readiness_credit_non_refundable": { - "label": "gov.states.la.tax.income.credits.school_readiness.la_school_readiness_credit_non_refundable", - "description": null, - "index": 0 - }, - "gov.states.la.tax.income.credits.school_readiness.la_quality_rating_of_child_care_facility": { - "label": "gov.states.la.tax.income.credits.school_readiness.la_quality_rating_of_child_care_facility", - "description": null, - "index": 0 - }, - "gov.states.la.tax.income.credits.school_readiness.la_school_readiness_credit_refundable_eligible": { - "label": "gov.states.la.tax.income.credits.school_readiness.la_school_readiness_credit_refundable_eligible", - "description": null, - "index": 0 - }, - "gov.states.la.tax.income.credits.school_readiness.la_school_readiness_tax_credit": { - "label": "gov.states.la.tax.income.credits.school_readiness.la_school_readiness_tax_credit", - "description": null, - "index": 0 - }, - "gov.states.la.tax.income.credits.cdcc.la_non_refundable_cdcc": { - "label": "gov.states.la.tax.income.credits.cdcc.la_non_refundable_cdcc", - "description": null, - "index": 0 - }, - "gov.states.la.tax.income.credits.cdcc.la_refundable_cdcc": { - "label": "gov.states.la.tax.income.credits.cdcc.la_refundable_cdcc", - "description": null, - "index": 0 - }, - "gov.states.la.tax.income.exemptions.la_exemptions": { - "label": "gov.states.la.tax.income.exemptions.la_exemptions", - "description": null, - "index": 0 - }, - "gov.states.la.tax.income.exemptions.personal.la_widow_exemption": { - "label": "gov.states.la.tax.income.exemptions.personal.la_widow_exemption", - "description": null, - "index": 0 - }, - "gov.states.la.tax.income.exemptions.personal.la_dependents_exemption": { - "label": "gov.states.la.tax.income.exemptions.personal.la_dependents_exemption", - "description": null, - "index": 0 - }, - "gov.states.la.tax.income.exemptions.personal.la_personal_exemption": { - "label": "gov.states.la.tax.income.exemptions.personal.la_personal_exemption", - "description": null, - "index": 0 - }, - "gov.states.la.tax.income.exemptions.personal.la_aged_exemption": { - "label": "gov.states.la.tax.income.exemptions.personal.la_aged_exemption", - "description": null, - "index": 0 - }, - "gov.states.la.tax.income.exemptions.personal.blind.la_blind_exemption": { - "label": "gov.states.la.tax.income.exemptions.personal.blind.la_blind_exemption", - "description": null, - "index": 0 - }, - "gov.states.la.tax.income.exemptions.personal.blind.la_receives_blind_exemption": { - "label": "gov.states.la.tax.income.exemptions.personal.blind.la_receives_blind_exemption", - "description": null, - "index": 0 - }, - "gov.states.la.tax.income.exemptions.personal.blind.la_blind_exemption_person": { - "label": "gov.states.la.tax.income.exemptions.personal.blind.la_blind_exemption_person", - "description": null, - "index": 0 - }, - "gov.states.la.tax.income.deductions.la_standard_deduction": { - "label": "gov.states.la.tax.income.deductions.la_standard_deduction", - "description": null, - "index": 0 - }, - "gov.states.la.tax.income.deductions.la_itemized_deductions": { - "label": "gov.states.la.tax.income.deductions.la_itemized_deductions", - "description": null, - "index": 0 - }, - "gov.states.la.tax.income.deductions.la_federal_tax_deduction": { - "label": "gov.states.la.tax.income.deductions.la_federal_tax_deduction", - "description": null, - "index": 0 - }, - "gov.hhs.hhs_smi": { - "label": "gov.hhs.hhs_smi", - "description": null, - "index": 0 - }, - "gov.hhs.spm_unit_fpg": { - "label": "gov.hhs.spm_unit_fpg", - "description": null, - "index": 0 - }, - "gov.hhs.tax_unit_fpg": { - "label": "gov.hhs.tax_unit_fpg", - "description": null, - "index": 0 - }, - "gov.hhs.medicare.eligibility.is_medicare_eligible": { - "label": "gov.hhs.medicare.eligibility.is_medicare_eligible", - "description": null, - "index": 0 - }, - "gov.hhs.medicare.eligibility.months_receiving_social_security_disability": { - "label": "gov.hhs.medicare.eligibility.months_receiving_social_security_disability", - "description": null, - "index": 0 - }, - "gov.hhs.chip.is_chip_eligible_standard_pregnant_person": { - "label": "gov.hhs.chip.is_chip_eligible_standard_pregnant_person", - "description": null, - "index": 0 - }, - "gov.hhs.chip.is_chip_eligible": { - "label": "gov.hhs.chip.is_chip_eligible", - "description": null, - "index": 0 - }, - "gov.hhs.chip.chip": { - "label": "gov.hhs.chip.chip", - "description": null, - "index": 0 - }, - "gov.hhs.chip.is_chip_eligible_pregnant": { - "label": "gov.hhs.chip.is_chip_eligible_pregnant", - "description": null, - "index": 0 - }, - "gov.hhs.chip.is_chip_fcep_eligible_person": { - "label": "gov.hhs.chip.is_chip_fcep_eligible_person", - "description": null, - "index": 0 - }, - "gov.hhs.chip.chip_category": { - "label": "gov.hhs.chip.chip_category", - "description": null, - "index": 0 - }, - "gov.hhs.chip.per_capita_chip": { - "label": "gov.hhs.chip.per_capita_chip", - "description": null, - "index": 0 - }, - "gov.hhs.chip.is_chip_eligible_child": { - "label": "gov.hhs.chip.is_chip_eligible_child", - "description": null, - "index": 0 - }, - "gov.hhs.ccdf.ccdf_age_group": { - "label": "gov.hhs.ccdf.ccdf_age_group", - "description": null, - "index": 0 - }, - "gov.hhs.ccdf.spm_unit_ccdf_subsidy": { - "label": "gov.hhs.ccdf.spm_unit_ccdf_subsidy", - "description": null, - "index": 0 - }, - "gov.hhs.ccdf.is_enrolled_in_ccdf": { - "label": "gov.hhs.ccdf.is_enrolled_in_ccdf", - "description": null, - "index": 0 - }, - "gov.hhs.ccdf.is_ccdf_initial_income_eligible": { - "label": "gov.hhs.ccdf.is_ccdf_initial_income_eligible", - "description": null, - "index": 0 - }, - "gov.hhs.ccdf.ccdf_county_cluster": { - "label": "gov.hhs.ccdf.ccdf_county_cluster", - "description": null, - "index": 0 - }, - "gov.hhs.ccdf.ccdf_market_rate": { - "label": "gov.hhs.ccdf.ccdf_market_rate", - "description": null, - "index": 0 - }, - "gov.hhs.ccdf.is_ccdf_reason_for_care_eligible": { - "label": "gov.hhs.ccdf.is_ccdf_reason_for_care_eligible", - "description": null, - "index": 0 - }, - "gov.hhs.ccdf.spm_unit_total_ccdf_copay": { - "label": "gov.hhs.ccdf.spm_unit_total_ccdf_copay", - "description": null, - "index": 0 - }, - "gov.hhs.ccdf.is_ccdf_asset_eligible": { - "label": "gov.hhs.ccdf.is_ccdf_asset_eligible", - "description": null, - "index": 0 - }, - "gov.hhs.ccdf.is_ccdf_age_eligible": { - "label": "gov.hhs.ccdf.is_ccdf_age_eligible", - "description": null, - "index": 0 - }, - "gov.hhs.ccdf.is_ccdf_continuous_income_eligible": { - "label": "gov.hhs.ccdf.is_ccdf_continuous_income_eligible", - "description": null, - "index": 0 - }, - "gov.hhs.ccdf.ccdf_income_to_smi_ratio": { - "label": "gov.hhs.ccdf.ccdf_income_to_smi_ratio", - "description": null, - "index": 0 - }, - "gov.hhs.ccdf.is_ccdf_home_based": { - "label": "gov.hhs.ccdf.is_ccdf_home_based", - "description": null, - "index": 0 - }, - "gov.hhs.ccdf.ccdf_duration_of_care": { - "label": "gov.hhs.ccdf.ccdf_duration_of_care", - "description": null, - "index": 0 - }, - "gov.hhs.ccdf.is_ccdf_eligible": { - "label": "gov.hhs.ccdf.is_ccdf_eligible", - "description": null, - "index": 0 - }, - "gov.hhs.ccdf.ccdf_income": { - "label": "gov.hhs.ccdf.ccdf_income", - "description": null, - "index": 0 - }, - "gov.hhs.ccdf.is_ccdf_income_eligible": { - "label": "gov.hhs.ccdf.is_ccdf_income_eligible", - "description": null, - "index": 0 - }, - "gov.hhs.ccdf.meets_ccdf_activity_test": { - "label": "gov.hhs.ccdf.meets_ccdf_activity_test", - "description": null, - "index": 0 - }, - "gov.hhs.head_start.head_start": { - "label": "gov.hhs.head_start.head_start", - "description": null, - "index": 0 - }, - "gov.hhs.head_start.is_early_head_start_eligible": { - "label": "gov.hhs.head_start.is_early_head_start_eligible", - "description": null, - "index": 0 - }, - "gov.hhs.head_start.early_head_start": { - "label": "gov.hhs.head_start.early_head_start", - "description": null, - "index": 0 - }, - "gov.hhs.head_start.is_head_start_categorically_eligible": { - "label": "gov.hhs.head_start.is_head_start_categorically_eligible", - "description": null, - "index": 0 - }, - "gov.hhs.head_start.is_head_start_income_eligible": { - "label": "gov.hhs.head_start.is_head_start_income_eligible", - "description": null, - "index": 0 - }, - "gov.hhs.head_start.is_head_start_eligible": { - "label": "gov.hhs.head_start.is_head_start_eligible", - "description": null, - "index": 0 - }, - "gov.hhs.medicaid.medicaid_enrolled": { - "label": "gov.hhs.medicaid.medicaid_enrolled", - "description": null, - "index": 0 - }, - "gov.hhs.medicaid.takes_up_medicaid_if_eligible": { - "label": "gov.hhs.medicaid.takes_up_medicaid_if_eligible", - "description": null, - "index": 0 - }, - "gov.hhs.medicaid.medicaid_cost": { - "label": "gov.hhs.medicaid.medicaid_cost", - "description": null, - "index": 0 - }, - "gov.hhs.medicaid.medicaid": { - "label": "gov.hhs.medicaid.medicaid", - "description": null, - "index": 0 - }, - "gov.hhs.medicaid.medicaid_take_up_seed": { - "label": "gov.hhs.medicaid.medicaid_take_up_seed", - "description": null, - "index": 0 - }, - "gov.hhs.medicaid.income.tax_unit_medicaid_income_level": { - "label": "gov.hhs.medicaid.income.tax_unit_medicaid_income_level", - "description": null, - "index": 0 - }, - "gov.hhs.medicaid.income.medicaid_magi": { - "label": "gov.hhs.medicaid.income.medicaid_magi", - "description": null, - "index": 0 - }, - "gov.hhs.medicaid.income.medicaid_income_level": { - "label": "gov.hhs.medicaid.income.medicaid_income_level", - "description": null, - "index": 0 - }, - "gov.hhs.medicaid.costs.medicaid_group": { - "label": "gov.hhs.medicaid.costs.medicaid_group", - "description": null, - "index": 0 - }, - "gov.hhs.medicaid.costs.medicaid_cost_if_enrolled": { - "label": "gov.hhs.medicaid.costs.medicaid_cost_if_enrolled", - "description": null, - "index": 0 - }, - "gov.hhs.medicaid.eligibility.is_medicaid_eligible": { - "label": "gov.hhs.medicaid.eligibility.is_medicaid_eligible", - "description": null, - "index": 0 - }, - "gov.hhs.medicaid.eligibility.medicaid_work_requirement_eligible": { - "label": "gov.hhs.medicaid.eligibility.medicaid_work_requirement_eligible", - "description": null, - "index": 0 - }, - "gov.hhs.medicaid.eligibility.categories.is_optional_senior_or_disabled_income_eligible": { - "label": "gov.hhs.medicaid.eligibility.categories.is_optional_senior_or_disabled_income_eligible", - "description": null, - "index": 0 - }, - "gov.hhs.medicaid.eligibility.categories.is_ssi_recipient_for_medicaid": { - "label": "gov.hhs.medicaid.eligibility.categories.is_ssi_recipient_for_medicaid", - "description": null, - "index": 0 - }, - "gov.hhs.medicaid.eligibility.categories.is_optional_senior_or_disabled_asset_eligible": { - "label": "gov.hhs.medicaid.eligibility.categories.is_optional_senior_or_disabled_asset_eligible", - "description": null, - "index": 0 - }, - "gov.hhs.medicaid.eligibility.categories.medicaid_category": { - "label": "gov.hhs.medicaid.eligibility.categories.medicaid_category", - "description": null, - "index": 0 - }, - "gov.hhs.medicaid.eligibility.categories.is_optional_senior_or_disabled_for_medicaid": { - "label": "gov.hhs.medicaid.eligibility.categories.is_optional_senior_or_disabled_for_medicaid", - "description": null, - "index": 0 - }, - "gov.hhs.medicaid.eligibility.categories.parent.is_parent_for_medicaid": { - "label": "gov.hhs.medicaid.eligibility.categories.parent.is_parent_for_medicaid", - "description": null, - "index": 0 - }, - "gov.hhs.medicaid.eligibility.categories.parent.is_parent_for_medicaid_fc": { - "label": "gov.hhs.medicaid.eligibility.categories.parent.is_parent_for_medicaid_fc", - "description": null, - "index": 0 - }, - "gov.hhs.medicaid.eligibility.categories.parent.is_parent_for_medicaid_nfc": { - "label": "gov.hhs.medicaid.eligibility.categories.parent.is_parent_for_medicaid_nfc", - "description": null, - "index": 0 - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.is_young_adult_for_medicaid_nfc": { - "label": "gov.hhs.medicaid.eligibility.categories.young_adult.is_young_adult_for_medicaid_nfc", - "description": null, - "index": 0 - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.is_young_adult_for_medicaid": { - "label": "gov.hhs.medicaid.eligibility.categories.young_adult.is_young_adult_for_medicaid", - "description": null, - "index": 0 - }, - "gov.hhs.medicaid.eligibility.categories.young_adult.is_young_adult_for_medicaid_fc": { - "label": "gov.hhs.medicaid.eligibility.categories.young_adult.is_young_adult_for_medicaid_fc", - "description": null, - "index": 0 - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.is_pregnant_for_medicaid_fc": { - "label": "gov.hhs.medicaid.eligibility.categories.pregnant.is_pregnant_for_medicaid_fc", - "description": null, - "index": 0 - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.is_pregnant_for_medicaid_nfc": { - "label": "gov.hhs.medicaid.eligibility.categories.pregnant.is_pregnant_for_medicaid_nfc", - "description": null, - "index": 0 - }, - "gov.hhs.medicaid.eligibility.categories.pregnant.is_pregnant_for_medicaid": { - "label": "gov.hhs.medicaid.eligibility.categories.pregnant.is_pregnant_for_medicaid", - "description": null, - "index": 0 - }, - "gov.hhs.medicaid.eligibility.categories.adult.is_adult_for_medicaid": { - "label": "gov.hhs.medicaid.eligibility.categories.adult.is_adult_for_medicaid", - "description": null, - "index": 0 - }, - "gov.hhs.medicaid.eligibility.categories.adult.is_adult_for_medicaid_fc": { - "label": "gov.hhs.medicaid.eligibility.categories.adult.is_adult_for_medicaid_fc", - "description": null, - "index": 0 - }, - "gov.hhs.medicaid.eligibility.categories.adult.is_adult_for_medicaid_nfc": { - "label": "gov.hhs.medicaid.eligibility.categories.adult.is_adult_for_medicaid_nfc", - "description": null, - "index": 0 - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.is_in_medicaid_medically_needy_category": { - "label": "gov.hhs.medicaid.eligibility.categories.medically_needy.is_in_medicaid_medically_needy_category", - "description": null, - "index": 0 - }, - "gov.hhs.medicaid.eligibility.categories.medically_needy.is_medically_needy_for_medicaid": { - "label": "gov.hhs.medicaid.eligibility.categories.medically_needy.is_medically_needy_for_medicaid", - "description": null, - "index": 0 - }, - "gov.hhs.medicaid.eligibility.categories.older_child.is_older_child_for_medicaid_nfc": { - "label": "gov.hhs.medicaid.eligibility.categories.older_child.is_older_child_for_medicaid_nfc", - "description": null, - "index": 0 - }, - "gov.hhs.medicaid.eligibility.categories.older_child.is_older_child_for_medicaid_fc": { - "label": "gov.hhs.medicaid.eligibility.categories.older_child.is_older_child_for_medicaid_fc", - "description": null, - "index": 0 - }, - "gov.hhs.medicaid.eligibility.categories.older_child.is_older_child_for_medicaid": { - "label": "gov.hhs.medicaid.eligibility.categories.older_child.is_older_child_for_medicaid", - "description": null, - "index": 0 - }, - "gov.hhs.medicaid.eligibility.categories.infant.is_infant_for_medicaid_nfc": { - "label": "gov.hhs.medicaid.eligibility.categories.infant.is_infant_for_medicaid_nfc", - "description": null, - "index": 0 - }, - "gov.hhs.medicaid.eligibility.categories.infant.is_infant_for_medicaid": { - "label": "gov.hhs.medicaid.eligibility.categories.infant.is_infant_for_medicaid", - "description": null, - "index": 0 - }, - "gov.hhs.medicaid.eligibility.categories.infant.is_infant_for_medicaid_fc": { - "label": "gov.hhs.medicaid.eligibility.categories.infant.is_infant_for_medicaid_fc", - "description": null, - "index": 0 - }, - "gov.hhs.medicaid.eligibility.categories.young_child.is_young_child_for_medicaid_nfc": { - "label": "gov.hhs.medicaid.eligibility.categories.young_child.is_young_child_for_medicaid_nfc", - "description": null, - "index": 0 - }, - "gov.hhs.medicaid.eligibility.categories.young_child.is_young_child_for_medicaid": { - "label": "gov.hhs.medicaid.eligibility.categories.young_child.is_young_child_for_medicaid", - "description": null, - "index": 0 - }, - "gov.hhs.medicaid.eligibility.categories.young_child.is_young_child_for_medicaid_fc": { - "label": "gov.hhs.medicaid.eligibility.categories.young_child.is_young_child_for_medicaid_fc", - "description": null, - "index": 0 - }, - "gov.hhs.tanf.non_cash.meets_tanf_non_cash_gross_income_test": { - "label": "gov.hhs.tanf.non_cash.meets_tanf_non_cash_gross_income_test", - "description": null, - "index": 0 - }, - "gov.hhs.tanf.non_cash.is_tanf_non_cash_hheod": { - "label": "gov.hhs.tanf.non_cash.is_tanf_non_cash_hheod", - "description": null, - "index": 0 - }, - "gov.hhs.tanf.non_cash.meets_tanf_non_cash_asset_test": { - "label": "gov.hhs.tanf.non_cash.meets_tanf_non_cash_asset_test", - "description": null, - "index": 0 - }, - "gov.hhs.tanf.non_cash.is_tanf_non_cash_eligible": { - "label": "gov.hhs.tanf.non_cash.is_tanf_non_cash_eligible", - "description": null, - "index": 0 - }, - "gov.hhs.tanf.non_cash.meets_tanf_non_cash_net_income_test": { - "label": "gov.hhs.tanf.non_cash.meets_tanf_non_cash_net_income_test", - "description": null, - "index": 0 - }, - "gov.hhs.tanf.cash.tanf_reported": { - "label": "gov.hhs.tanf.cash.tanf_reported", - "description": null, - "index": 0 - }, - "gov.hhs.tanf.cash.tanf_person": { - "label": "gov.hhs.tanf.cash.tanf_person", - "description": null, - "index": 0 - }, - "gov.hhs.tanf.cash.tanf": { - "label": "gov.hhs.tanf.cash.tanf", - "description": null, - "index": 0 - }, - "gov.hhs.tanf.cash.eligibility.is_tanf_enrolled": { - "label": "gov.hhs.tanf.cash.eligibility.is_tanf_enrolled", - "description": null, - "index": 0 - }, - "gov.hhs.tanf.cash.eligibility.is_person_demographic_tanf_eligible": { - "label": "gov.hhs.tanf.cash.eligibility.is_person_demographic_tanf_eligible", - "description": null, - "index": 0 - }, - "gov.hhs.tanf.cash.eligibility.is_demographic_tanf_eligible": { - "label": "gov.hhs.tanf.cash.eligibility.is_demographic_tanf_eligible", - "description": null, - "index": 0 - }, - "gov.doe.residential_efficiency_electrification_rebate.residential_efficiency_electrification_rebate": { - "label": "gov.doe.residential_efficiency_electrification_rebate.residential_efficiency_electrification_rebate", - "description": null, - "index": 0 - }, - "gov.doe.high_efficiency_electric_home_rebate.capped_heat_pump_water_heater_rebate": { - "label": "gov.doe.high_efficiency_electric_home_rebate.capped_heat_pump_water_heater_rebate", - "description": null, - "index": 0 - }, - "gov.doe.high_efficiency_electric_home_rebate.capped_electric_stove_cooktop_range_or_oven_rebate": { - "label": "gov.doe.high_efficiency_electric_home_rebate.capped_electric_stove_cooktop_range_or_oven_rebate", - "description": null, - "index": 0 - }, - "gov.doe.high_efficiency_electric_home_rebate.capped_electric_wiring_rebate": { - "label": "gov.doe.high_efficiency_electric_home_rebate.capped_electric_wiring_rebate", - "description": null, - "index": 0 - }, - "gov.doe.high_efficiency_electric_home_rebate.capped_electric_heat_pump_clothes_dryer_rebate": { - "label": "gov.doe.high_efficiency_electric_home_rebate.capped_electric_heat_pump_clothes_dryer_rebate", - "description": null, - "index": 0 - }, - "gov.doe.high_efficiency_electric_home_rebate.capped_insulation_air_sealing_ventilation_rebate": { - "label": "gov.doe.high_efficiency_electric_home_rebate.capped_insulation_air_sealing_ventilation_rebate", - "description": null, - "index": 0 - }, - "gov.doe.high_efficiency_electric_home_rebate.capped_electric_load_service_center_upgrade_rebate": { - "label": "gov.doe.high_efficiency_electric_home_rebate.capped_electric_load_service_center_upgrade_rebate", - "description": null, - "index": 0 - }, - "gov.doe.high_efficiency_electric_home_rebate.capped_heat_pump_rebate": { - "label": "gov.doe.high_efficiency_electric_home_rebate.capped_heat_pump_rebate", - "description": null, - "index": 0 - }, - "gov.doe.high_efficiency_electric_home_rebate.high_efficiency_electric_home_rebate_percent_covered": { - "label": "gov.doe.high_efficiency_electric_home_rebate.high_efficiency_electric_home_rebate_percent_covered", - "description": null, - "index": 0 - }, - "gov.doe.high_efficiency_electric_home_rebate.high_efficiency_electric_home_rebate": { - "label": "gov.doe.high_efficiency_electric_home_rebate.high_efficiency_electric_home_rebate", - "description": null, - "index": 0 - }, - "gov.simulation.capital_gains_responses": { - "label": "gov.simulation.capital_gains_responses", - "description": null, - "index": 0 - }, - "gov.simulation.labor_supply_response.relative_wage_change": { - "label": "gov.simulation.labor_supply_response.relative_wage_change", - "description": null, - "index": 0 - }, - "gov.simulation.labor_supply_response.relative_income_change": { - "label": "gov.simulation.labor_supply_response.relative_income_change", - "description": null, - "index": 0 - }, - "gov.simulation.labor_supply_response.substitution_elasticity_lsr": { - "label": "gov.simulation.labor_supply_response.substitution_elasticity_lsr", - "description": null, - "index": 0 - }, - "gov.simulation.labor_supply_response.self_employment_income_behavioral_response": { - "label": "gov.simulation.labor_supply_response.self_employment_income_behavioral_response", - "description": null, - "index": 0 - }, - "gov.simulation.labor_supply_response.substitution_elasticity": { - "label": "gov.simulation.labor_supply_response.substitution_elasticity", - "description": null, - "index": 0 - }, - "gov.simulation.labor_supply_response.labor_supply_behavioral_response": { - "label": "gov.simulation.labor_supply_response.labor_supply_behavioral_response", - "description": null, - "index": 0 - }, - "gov.simulation.labor_supply_response.income_elasticity": { - "label": "gov.simulation.labor_supply_response.income_elasticity", - "description": null, - "index": 0 - }, - "gov.simulation.labor_supply_response.employment_income_behavioral_response": { - "label": "gov.simulation.labor_supply_response.employment_income_behavioral_response", - "description": null, - "index": 0 - }, - "gov.simulation.labor_supply_response.income_elasticity_lsr": { - "label": "gov.simulation.labor_supply_response.income_elasticity_lsr", - "description": null, - "index": 0 - } - }, - "economy_options": { - "region": [ - { - "name": "us", - "label": "the US" - }, - { - "name": "al", - "label": "Alabama" - }, - { - "name": "ak", - "label": "Alaska" - }, - { - "name": "az", - "label": "Arizona" - }, - { - "name": "ar", - "label": "Arkansas" - }, - { - "name": "ca", - "label": "California" - }, - { - "name": "co", - "label": "Colorado" - }, - { - "name": "ct", - "label": "Connecticut" - }, - { - "name": "de", - "label": "Delaware" - }, - { - "name": "dc", - "label": "District of Columbia" - }, - { - "name": "fl", - "label": "Florida" - }, - { - "name": "ga", - "label": "Georgia" - }, - { - "name": "hi", - "label": "Hawaii" - }, - { - "name": "id", - "label": "Idaho" - }, - { - "name": "il", - "label": "Illinois" - }, - { - "name": "in", - "label": "Indiana" - }, - { - "name": "ia", - "label": "Iowa" - }, - { - "name": "ks", - "label": "Kansas" - }, - { - "name": "ky", - "label": "Kentucky" - }, - { - "name": "la", - "label": "Louisiana" - }, - { - "name": "me", - "label": "Maine" - }, - { - "name": "md", - "label": "Maryland" - }, - { - "name": "ma", - "label": "Massachusetts" - }, - { - "name": "mi", - "label": "Michigan" - }, - { - "name": "mn", - "label": "Minnesota" - }, - { - "name": "ms", - "label": "Mississippi" - }, - { - "name": "mo", - "label": "Missouri" - }, - { - "name": "mt", - "label": "Montana" - }, - { - "name": "ne", - "label": "Nebraska" - }, - { - "name": "nv", - "label": "Nevada" - }, - { - "name": "nh", - "label": "New Hampshire" - }, - { - "name": "nj", - "label": "New Jersey" - }, - { - "name": "nm", - "label": "New Mexico" - }, - { - "name": "ny", - "label": "New York" - }, - { - "name": "nyc", - "label": "New York City" - }, - { - "name": "nc", - "label": "North Carolina" - }, - { - "name": "nd", - "label": "North Dakota" - }, - { - "name": "oh", - "label": "Ohio" - }, - { - "name": "ok", - "label": "Oklahoma" - }, - { - "name": "or", - "label": "Oregon" - }, - { - "name": "pa", - "label": "Pennsylvania" - }, - { - "name": "ri", - "label": "Rhode Island" - }, - { - "name": "sc", - "label": "South Carolina" - }, - { - "name": "sd", - "label": "South Dakota" - }, - { - "name": "tn", - "label": "Tennessee" - }, - { - "name": "tx", - "label": "Texas" - }, - { - "name": "ut", - "label": "Utah" - }, - { - "name": "vt", - "label": "Vermont" - }, - { - "name": "va", - "label": "Virginia" - }, - { - "name": "wa", - "label": "Washington" - }, - { - "name": "wv", - "label": "West Virginia" - }, - { - "name": "wi", - "label": "Wisconsin" - }, - { - "name": "wy", - "label": "Wyoming" - } - ], - "time_period": [ - { - "name": 2035, - "label": "2035" - }, - { - "name": 2034, - "label": "2034" - }, - { - "name": 2033, - "label": "2033" - }, - { - "name": 2032, - "label": "2032" - }, - { - "name": 2031, - "label": "2031" - }, - { - "name": 2030, - "label": "2030" - }, - { - "name": 2029, - "label": "2029" - }, - { - "name": 2028, - "label": "2028" - }, - { - "name": 2027, - "label": "2027" - }, - { - "name": 2026, - "label": "2026" - }, - { - "name": 2025, - "label": "2025" - }, - { - "name": 2024, - "label": "2024" - }, - { - "name": 2023, - "label": "2023" - }, - { - "name": 2022, - "label": "2022" - } - ], - "datasets": [ - { - "name": "cps", - "label": "CPS", - "title": "Current Population Survey", - "default": true - }, - { - "name": "enhanced_cps", - "label": "enhanced CPS", - "title": "Enhanced Current Population Survey", - "default": false - } - ] - }, - "current_law_id": 2, - "basicInputs": ["state_name", "employment_income", "age"], - "modelled_policies": { - "core": { - "modelled": [ - "Federal income tax", - "Payroll taxes", - "Supplemental Security Income", - "Supplemental Nutrition Assistance Program", - "Affordable Connectivity Program", - "Lifeline", - "Free and reduced price school meals", - "WIC" - ] - }, - "filtered": { - "state_name": { - "AL": { - "modelled": ["Alabama state income tax"], - "not_modelled": ["Alabama TANF"] - }, - "AR": { - "modelled": ["Arkansas state income tax"], - "not_modelled": ["Arkansas TANF"] - }, - "AZ": { - "modelled": ["Arizona state income tax"], - "not_modelled": ["Arizona TANF"] - }, - "CA": { - "modelled": [ - "California state income tax", - "California TANF", - "California's Clean Vehicle Rebate Project" - ] - }, - "CO": { - "modelled": [ - "Colorado state income tax", - "Colorado Old Age Pension", - "Colorado State Supplement", - "Colorado TANF" - ] - }, - "CT": { - "modelled": ["Connecticut state income tax"], - "not_modelled": ["Connecticut TANF"] - }, - "DC": { - "modelled": ["District of Columbia income tax", "District of Columbia TANF"] - }, - "DE": { - "modelled": ["Delaware state income tax"], - "not_modelled": ["Delaware TANF"] - }, - "GA": { - "modelled": ["Georgia state income tax"], - "not_modelled": ["Georgia TANF"] - }, - "HI": { - "modelled": ["Hawaii state income tax"], - "not_modelled": ["Hawaii TANF"] - }, - "IA": { - "modelled": ["Iowa state income tax"], - "not_modelled": ["Iowa TANF"] - }, - "ID": { - "modelled": ["Idaho state income tax"], - "not_modelled": ["Idaho TANF"] - }, - "IL": { - "modelled": ["Illinois state income tax", "Illinois TANF"] - }, - "IN": { - "modelled": ["Indiana state income tax"], - "not_modelled": ["Indiana TANF"] - }, - "KS": { - "modelled": ["Kansas state income tax"], - "not_modelled": ["Kansas TANF"] - }, - "KY": { - "modelled": ["Kentucky state income tax"], - "not_modelled": ["Kentucky TANF"] - }, - "LA": { - "modelled": ["Louisiana state income tax"], - "not_modelled": ["Louisiana TANF"] - }, - "MA": { - "modelled": ["Massachusetts state income tax"], - "not_modelled": ["Massachusetts TANF"] - }, - "MD": { - "modelled": ["Maryland state income tax"], - "not_modelled": ["Maryland TANF"] - }, - "ME": { - "modelled": ["Maine state income tax"], - "not_modelled": ["Maine TANF"] - }, - "MI": { - "modelled": ["Michigan state income tax"], - "not_modelled": ["Michigan TANF"] - }, - "MN": { - "modelled": ["Minnesota state income tax"], - "not_modelled": ["Minnesota TANF"] - }, - "MO": { - "modelled": ["Missouri state income tax"], - "not_modelled": ["Missouri TANF"] - }, - "MS": { - "modelled": ["Mississippi state income tax"], - "not_modelled": ["Mississippi TANF"] - }, - "MT": { - "modelled": ["Montana state income tax"], - "not_modelled": ["Montana TANF"] - }, - "NC": { - "modelled": ["North Carolina state income tax"], - "not_modelled": ["North Carolina TANF"] - }, - "ND": { - "modelled": ["North Dakota state income tax"], - "not_modelled": ["North Dakota TANF"] - }, - "NE": { - "modelled": ["Nebraska state income tax"], - "not_modelled": ["Nebraska TANF"] - }, - "NH": { - "modelled": ["New Hampshire state income tax"], - "not_modelled": ["New Hampshire TANF"] - }, - "NJ": { - "modelled": ["New Jersey state income tax"], - "not_modelled": ["New Jersey TANF"] - }, - "NM": { - "modelled": ["New Mexico state income tax"], - "not_modelled": ["New Mexico TANF"] - }, - "NY": { - "modelled": ["New York state and city income tax", "New York TANF"] - }, - "OH": { - "modelled": ["Ohio state income tax"], - "not_modelled": ["Ohio TANF"] - }, - "OK": { - "modelled": ["Oklahoma state income tax"], - "not_modelled": ["Oklahoma TANF"] - }, - "OR": { - "modelled": ["Oregon state income tax"], - "not_modelled": ["Oregon TANF"] - }, - "PA": { - "modelled": ["Pennsylvania state income tax"], - "not_modelled": ["Pennsylvania TANF"] - }, - "RI": { - "modelled": ["Rhode Island state income tax"], - "not_modelled": ["Rhode Island TANF"] - }, - "SC": { - "modelled": ["South Carolina state income tax"], - "not_modelled": ["South Carolina TANF"] - }, - "UT": { - "modelled": ["Utah state income tax"], - "not_modelled": ["Utah TANF"] - }, - "VA": { - "modelled": ["Virginia state income tax"], - "not_modelled": ["Virginia TANF"] - }, - "VT": { - "modelled": ["Vermont state income tax"], - "not_modelled": ["Vermont TANF"] - }, - "WA": { - "modelled": ["Washington state income tax"], - "not_modelled": ["Washington TANF"] - }, - "WI": { - "modelled": ["Wisconsin state income tax"], - "not_modelled": ["Wisconsin TANF"] - }, - "WV": { - "modelled": ["West Virginia state income tax"], - "not_modelled": ["West Virginia TANF"] - } - } - } - }, - "version": "1.366.2" - } -} diff --git a/app/src/tests/fixtures/api/metadataMocks.ts b/app/src/tests/fixtures/api/metadataMocks.ts deleted file mode 100644 index f042b3c6f..000000000 --- a/app/src/tests/fixtures/api/metadataMocks.ts +++ /dev/null @@ -1,186 +0,0 @@ -import { CURRENT_YEAR } from '@/constants'; -import { MetadataApiPayload } from '@/types/metadata'; -import { UK_REGION_TYPES } from '@/types/regionTypes'; - -export const mockMetadataResponse: MetadataApiPayload = { - status: 'ok', - message: null, - result: { - parameters: { - income_tax: { - parameter: 'income_tax', - description: 'Income tax', - label: 'Income tax', - unit: 'currency-GBP', - values: { - '2023-01-01': 1000, - [`${CURRENT_YEAR}-01-01`]: 1200, - }, - }, - national_insurance: { - parameter: 'national_insurance', - description: 'National Insurance contributions', - label: 'National Insurance', - unit: 'currency-GBP', - values: { - '2023-01-01': 500, - [`${CURRENT_YEAR}-01-01`]: 550, - }, - }, - }, - variables: { - household_income: { - name: 'household_income', - entity: 'household', - description: 'Total household income', - label: 'Household income', - unit: 'currency-GBP', - valueType: 'float', - }, - age: { - name: 'age', - entity: 'person', - description: 'Age of person', - label: 'Age', - unit: 'year', - valueType: 'int', - }, - }, - entities: { - person: { - label: 'Person', - plural: 'People', - }, - household: { - label: 'Household', - plural: 'Households', - }, - }, - variableModules: { - household: { - label: 'Household', - }, - person: { - label: 'Person', - }, - }, - economy_options: { - region: [ - { name: 'uk', label: 'UK', type: UK_REGION_TYPES.NATIONAL }, - { name: 'country/england', label: 'England', type: UK_REGION_TYPES.COUNTRY }, - { name: 'country/scotland', label: 'Scotland', type: UK_REGION_TYPES.COUNTRY }, - { name: 'country/wales', label: 'Wales', type: UK_REGION_TYPES.COUNTRY }, - { - name: 'country/northern_ireland', - label: 'Northern Ireland', - type: UK_REGION_TYPES.COUNTRY, - }, - ], - time_period: [ - { name: 2023, label: '2023' }, - { name: parseInt(CURRENT_YEAR, 10), label: CURRENT_YEAR }, - { name: parseInt(CURRENT_YEAR, 10), label: CURRENT_YEAR }, - ], - datasets: [ - { - name: 'frs_2022', - label: 'FRS 2022', - title: 'Family Resources Survey 2022', - default: true, - }, - ], - }, - current_law_id: 1, - basicInputs: ['age', 'household_income'], - modelled_policies: { - core: { - baseline: { - id: 1, - label: 'Current law', - }, - }, - filtered: { - reform: { - id: 2, - label: 'Reform proposal', - }, - }, - }, - version: '1.0.0', - }, -}; - -export const mockCountryId = 'uk'; -export const mockInvalidCountryId = 'invalid-country'; -export const mockUSCountryId = 'us'; -export const mockEmptyCountryId = ''; - -// Test constants for assertions -export const TEST_PARAMETER_KEY = 'test'; - -export const mockCustomResponse: MetadataApiPayload = { - status: 'ok', - message: null, - result: { - parameters: { - [TEST_PARAMETER_KEY]: { - parameter: TEST_PARAMETER_KEY, - label: 'Test Parameter', - values: { '2024-01-01': 100 }, - }, - }, - variables: {}, - entities: {}, - variableModules: {}, - economy_options: { - region: [], - time_period: [], - datasets: [], - }, - current_law_id: 1, - basicInputs: [], - modelled_policies: { - core: {}, - filtered: {}, - }, - version: '1.0.0', - }, -}; - -// Error responses -export const mockNetworkError = new Error('Network error'); -export const mockJSONParseError = new Error('Invalid JSON'); - -// Response mocks -export const mockSuccessResponse = { - ok: true, - json: async () => mockMetadataResponse, -} as Response; - -export const mock404Response = { - ok: false, - status: 404, - statusText: 'Not Found', -} as Response; - -export const mock500Response = { - ok: false, - status: 500, - statusText: 'Internal Server Error', -} as Response; - -export const mockInvalidJSONResponse = { - ok: true, - json: async () => { - throw mockJSONParseError; - }, -} as unknown as Response; - -export const mockCustomSuccessResponse = { - ok: true, - json: async () => mockCustomResponse, -} as Response; - -// Expected error messages -export const getExpectedFetchError = (countryId: string) => - `Failed to fetch metadata for ${countryId}`; diff --git a/app/src/tests/fixtures/libs/buildParameterTreeMocks.ts b/app/src/tests/fixtures/libs/buildParameterTreeMocks.ts index f130d358d..6d935ed80 100644 --- a/app/src/tests/fixtures/libs/buildParameterTreeMocks.ts +++ b/app/src/tests/fixtures/libs/buildParameterTreeMocks.ts @@ -1,6 +1,5 @@ import { CURRENT_YEAR } from '@/constants'; import { ParameterTreeNode } from '@/libs/buildParameterTree'; -import { MetadataApiPayload } from '@/types/metadata'; // Test constants export const TEST_PARAMETER_NAME = 'gov.tax.income_tax'; @@ -288,29 +287,6 @@ export const expectedSimpleTree: ParameterTreeNode = { type: 'parameterNode', }; -// Mock MetadataApiPayload for convertMetadataToParameterTree test -export const mockMetadataApiPayload: MetadataApiPayload = { - status: 'ok', - message: null, - result: { - parameters: mockSimpleParameters, - variables: {}, - entities: {}, - variableModules: {}, - economy_options: { - region: [], - time_period: [], - datasets: [], - }, - current_law_id: 1, - basicInputs: [], - modelled_policies: { - core: {}, - filtered: {}, - }, - version: '1.0.0', - }, -}; // Mock parameters for alphabetical sorting test export const mockAlphabeticalParameters = { diff --git a/app/src/tests/fixtures/libs/metadataUtilsMocks.ts b/app/src/tests/fixtures/libs/metadataUtilsMocks.ts index 142f122d5..556af4526 100644 --- a/app/src/tests/fixtures/libs/metadataUtilsMocks.ts +++ b/app/src/tests/fixtures/libs/metadataUtilsMocks.ts @@ -1,6 +1,5 @@ -import { transformMetadataPayload } from '@/libs/metadataUtils'; import type { RootState } from '@/store'; -import type { MetadataApiPayload } from '@/types/metadata'; +import type { VariableMetadata } from '@/types/metadata'; export const TEST_FIELD_NAMES = { STATE_NAME: 'state_name', @@ -22,101 +21,75 @@ export const EXPECTED_LABELS = { HOUSEHOLD_INCOME: 'Household Income', } as const; -export const mockMetadataPayload = (overrides?: any): MetadataApiPayload => ({ - status: 'ok', - message: 'Success', - result: { - variables: { - age: { name: 'age', entity: 'person', description: 'Age', label: 'Age' }, - state_name: { - name: 'state_name', - entity: 'household', - description: 'State Name', - label: 'State', - possible_values: { - CA: 'California', - NY: 'New York', - }, - }, - region: { - name: 'region', - entity: 'household', - description: 'Region', - label: 'Region', - possible_values: { - NORTH_EAST: 'North East', - SOUTH: 'South', - }, - }, - brma: { - name: 'brma', - entity: 'household', - description: 'BRMA', - label: 'BRMA', - possible_values: { - LONDON: 'London', - MANCHESTER: 'Manchester', - }, - }, - local_authority: { - name: 'local_authority', - entity: 'household', - description: 'Local Authority', - label: 'Local Authority', - possible_values: { - WESTMINSTER: 'Westminster', - CAMDEN: 'Camden', - }, - }, - employment_income: { - name: 'employment_income', - entity: 'person', - description: 'Employment Income', - label: 'Employment Income', - }, +/** + * Mock variables for testing metadataUtils functions + */ +export const MOCK_VARIABLES: Record = { + age: { name: 'age', entity: 'person', description: 'Age', label: 'Age' }, + state_name: { + name: 'state_name', + entity: 'household', + description: 'State Name', + label: 'State', + possible_values: { + CA: 'California', + NY: 'New York', }, - parameters: { tax_rate: {} }, - entities: { person: {} }, - variableModules: { household: ['age'] }, - economy_options: { - region: [{ name: 'us', label: 'United States' }], - time_period: [{ name: 2024, label: '2024' }], - datasets: [], + }, + region: { + name: 'region', + entity: 'household', + description: 'Region', + label: 'Region', + possible_values: { + NORTH_EAST: 'North East', + SOUTH: 'South', }, - current_law_id: 1, - basicInputs: ['age', 'employment_income'], - modelled_policies: { - core: { '1': 'Policy 1' }, - filtered: {}, + }, + brma: { + name: 'brma', + entity: 'household', + description: 'BRMA', + label: 'BRMA', + possible_values: { + LONDON: 'London', + MANCHESTER: 'Manchester', }, - version: '1.0.0', - ...overrides, }, -}); - -export const mockMinimalPayload = (): MetadataApiPayload => ({ - status: 'ok', - message: 'Success', - result: { - variables: {}, - parameters: {}, - entities: {}, - } as any, -}); - -// Helper to create a mock RootState with metadata for testing -export const mockStateWithMetadata = ( - overrides?: Partial -): Partial => { - const payload = mockMetadataPayload(overrides); - const metadata = transformMetadataPayload(payload, 'us'); + local_authority: { + name: 'local_authority', + entity: 'household', + description: 'Local Authority', + label: 'Local Authority', + possible_values: { + WESTMINSTER: 'Westminster', + CAMDEN: 'Camden', + }, + }, + employment_income: { + name: 'employment_income', + entity: 'person', + description: 'Employment Income', + label: 'Employment Income', + }, +}; +/** + * Creates a mock RootState with variables for testing metadataUtils functions + */ +export const mockStateWithVariables = (): Partial => { return { metadata: { - ...metadata, + currentCountry: 'us', loading: false, + loaded: true, error: null, progress: 100, + variables: MOCK_VARIABLES, + parameters: {}, + datasets: [], + version: '1.0.0', + parameterTree: null, }, } as Partial; }; diff --git a/app/src/tests/fixtures/reducers/metadataReducerMocks.ts b/app/src/tests/fixtures/reducers/metadataReducerMocks.ts index 2dd324c52..570cbbdc1 100644 --- a/app/src/tests/fixtures/reducers/metadataReducerMocks.ts +++ b/app/src/tests/fixtures/reducers/metadataReducerMocks.ts @@ -1,6 +1,6 @@ import { CURRENT_YEAR } from '@/constants'; import { ParameterTreeNode } from '@/libs/buildParameterTree'; -import { MetadataApiPayload, MetadataState, VariableMetadata, ParameterMetadata } from '@/types/metadata'; +import { MetadataState, VariableMetadata, ParameterMetadata } from '@/types/metadata'; import { US_REGION_TYPES } from '@/types/regionTypes'; // Test constants @@ -160,26 +160,6 @@ export const MOCK_PARAMETER_TREE: ParameterTreeNode = { type: 'parameterNode', }; -// Mock API payload -export const createMockApiPayload = ( - overrides?: Partial -): MetadataApiPayload => ({ - status: 'ok', - message: null, - result: { - variables: MOCK_VARIABLES, - parameters: MOCK_PARAMETERS, - entities: MOCK_ENTITIES, - variableModules: MOCK_VARIABLE_MODULES, - economy_options: MOCK_ECONOMY_OPTIONS, - current_law_id: TEST_CURRENT_LAW_ID, - basicInputs: MOCK_BASIC_INPUTS, - modelled_policies: MOCK_MODELLED_POLICIES, - version: TEST_VERSION, - ...overrides, - }, -}); - // Mock state with data (only API-driven data) export const createMockStateWithData = (overrides?: Partial): MetadataState => ({ currentCountry: TEST_COUNTRY_US, @@ -212,22 +192,6 @@ export const createMockClearedState = (country: string | null): MetadataState => currentCountry: country, }); -// Expected state after successful fetch (only API-driven data) -export const createExpectedFulfilledState = ( - country: string, - apiPayload: MetadataApiPayload -): MetadataState => ({ - currentCountry: country, - ...DEFAULT_LOADING_STATES, - loaded: true, - progress: 100, - variables: apiPayload.result.variables, - parameters: apiPayload.result.parameters, - datasets: apiPayload.result.economy_options.datasets, - version: apiPayload.result.version, - parameterTree: null, // Will be built by reducer -}); - // Test utility functions export const expectStateToEqual = (actual: MetadataState, expected: MetadataState) => { expect(actual).toEqual(expected); diff --git a/app/src/tests/unit/libs/buildParameterTree.test.ts b/app/src/tests/unit/libs/buildParameterTree.test.ts index 6c6f2dd25..d5d6e829d 100644 --- a/app/src/tests/unit/libs/buildParameterTree.test.ts +++ b/app/src/tests/unit/libs/buildParameterTree.test.ts @@ -1,15 +1,13 @@ import { beforeEach, describe, expect, test, vi } from 'vitest'; -import { buildParameterTree, convertMetadataToParameterTree } from '@/libs/buildParameterTree'; +import { buildParameterTreeV2 } from '@/libs/buildParameterTree'; import { EXPECTED_ALLOWANCE_LABEL, - EXPECTED_BENEFITS_LABEL, EXPECTED_BRACKET_1_LABEL, EXPECTED_BRACKET_2_LABEL, EXPECTED_BRACKETS_LABEL, EXPECTED_CHILD_CARE_SUPPORT_LABEL, EXPECTED_FIRST_BRACKET_LABEL, EXPECTED_GOV_LABEL, - EXPECTED_GOVERNMENT_LABEL, EXPECTED_INCOME_LABEL, EXPECTED_INCOME_TAX_RATE_LABEL, EXPECTED_ONE_CHILD, @@ -19,7 +17,6 @@ import { EXPECTED_SORTED_LABELS, EXPECTED_TAX_LABEL, EXPECTED_TAXATION_LABEL, - EXPECTED_TAXATION_NODE_LABEL, EXPECTED_THIRD_BRACKET_LABEL, EXPECTED_THREE_CHILDREN, EXPECTED_TWO_CHILDREN, @@ -27,8 +24,6 @@ import { expectNodeToHaveLabel, findNodeByName, GOV_ABOLITIONS_NODE_NAME, - GOV_BENEFIT_NODE_NAME, - GOV_INTERNAL_NODE_NAME, GOV_TAX_BRACKETS_NODE_NAME, GOV_TAX_INCOME_NODE_NAME, GOV_TAX_INCOME_PERSONAL_ALLOWANCE_NODE_NAME, @@ -43,9 +38,6 @@ import { mockDeepNestedParameters, mockEmptyParameters, mockFilteredParameters, - mockMetadataApiPayload, - mockNestedParameters, - mockNonApplicableParameters, mockNonGovParameters, mockSimpleParameters, mockSpecialCharParameters, @@ -55,7 +47,7 @@ import { TEST_VALUE_2025, } from '@/tests/fixtures/libs/buildParameterTreeMocks'; -describe('buildParameterTree', () => { +describe('buildParameterTreeV2', () => { beforeEach(() => { vi.clearAllMocks(); // Clear console.error mock @@ -67,7 +59,7 @@ describe('buildParameterTree', () => { const parameters = mockSimpleParameters; // When - const tree = buildParameterTree(parameters); + const tree = buildParameterTreeV2(parameters); // Then expect(tree).toBeDefined(); @@ -75,34 +67,13 @@ describe('buildParameterTree', () => { expectNodeToHaveChildren(tree, EXPECTED_TWO_CHILDREN); // tax and benefit nodes }); - test('given nested parameters then creates proper hierarchy', () => { - // Given - const parameters = mockNestedParameters; - - // When - const tree = buildParameterTree(parameters); - - // Then - expect(tree).toBeDefined(); - expectNodeToHaveLabel(tree, EXPECTED_GOVERNMENT_LABEL); - - const taxNode = findNodeByName(tree, GOV_TAX_NODE_NAME); - expect(taxNode).toBeDefined(); - expectNodeToHaveLabel(taxNode, EXPECTED_TAXATION_NODE_LABEL); - expectNodeToHaveChildren(taxNode, EXPECTED_TWO_CHILDREN); // income_tax and capital_gains - - const benefitNode = findNodeByName(tree, GOV_BENEFIT_NODE_NAME); - expect(benefitNode).toBeDefined(); - expectNodeToHaveLabel(benefitNode, EXPECTED_BENEFITS_LABEL); - expectNodeToHaveChildren(benefitNode, EXPECTED_ONE_CHILD); // child_benefit - }); test('given parameters with brackets then creates bracket structure', () => { // Given const parameters = mockBracketParameters; // When - const tree = buildParameterTree(parameters); + const tree = buildParameterTreeV2(parameters); // Then expect(tree).toBeDefined(); @@ -133,7 +104,7 @@ describe('buildParameterTree', () => { const parameters = mockBracketIndicesParameters; // When - const tree = buildParameterTree(parameters); + const tree = buildParameterTreeV2(parameters); // Then const ratesNode = findNodeByName(tree, GOV_TAX_RATES_NODE_NAME); @@ -152,7 +123,7 @@ describe('buildParameterTree', () => { const parameters = mockFilteredParameters; // When - const tree = buildParameterTree(parameters); + const tree = buildParameterTreeV2(parameters); // Then expect(tree).toBeDefined(); @@ -170,32 +141,13 @@ describe('buildParameterTree', () => { expect(abolitionsNode).toBeUndefined(); }); - test('given parameters without economy or household flags then excludes them', () => { - // Given - const parameters = mockNonApplicableParameters; - - // When - const tree = buildParameterTree(parameters); - - // Then - expect(tree).toBeDefined(); - - // Should only have the income_tax parameter - const taxNode = findNodeByName(tree, GOV_TAX_NODE_NAME); - expect(taxNode).toBeDefined(); - expectNodeToHaveChildren(taxNode, EXPECTED_ONE_CHILD); - - // Should not have internal config - const internalNode = findNodeByName(tree, GOV_INTERNAL_NODE_NAME); - expect(internalNode).toBeUndefined(); - }); test('given empty parameters then returns undefined', () => { // Given const parameters = mockEmptyParameters; // When - const tree = buildParameterTree(parameters); + const tree = buildParameterTreeV2(parameters); // Then expect(tree).toBeUndefined(); @@ -206,7 +158,7 @@ describe('buildParameterTree', () => { const parameters = mockNonGovParameters; // When - const tree = buildParameterTree(parameters); + const tree = buildParameterTreeV2(parameters); // Then expect(tree).toBeUndefined(); @@ -217,7 +169,7 @@ describe('buildParameterTree', () => { const parameters = mockSpecialCharParameters; // When - const tree = buildParameterTree(parameters); + const tree = buildParameterTreeV2(parameters); // Then expect(tree).toBeDefined(); @@ -236,7 +188,7 @@ describe('buildParameterTree', () => { const parameters = mockAlphabeticalParameters; // When - const tree = buildParameterTree(parameters); + const tree = buildParameterTreeV2(parameters); // Then expect(tree).toBeDefined(); @@ -251,7 +203,7 @@ describe('buildParameterTree', () => { const parameters = mockCustomLabelParameters; // When - const tree = buildParameterTree(parameters); + const tree = buildParameterTreeV2(parameters); // Then expect(tree).toBeDefined(); @@ -269,7 +221,7 @@ describe('buildParameterTree', () => { const parameters = mockSimpleParameters; // When - const tree = buildParameterTree(parameters); + const tree = buildParameterTreeV2(parameters); // Then const incomeTaxNode = findNodeByName(tree, 'gov.tax.income_tax'); @@ -288,7 +240,7 @@ describe('buildParameterTree', () => { const parameters = mockDeepNestedParameters; // When - const tree = buildParameterTree(parameters); + const tree = buildParameterTreeV2(parameters); // Then expect(tree).toBeDefined(); @@ -316,7 +268,7 @@ describe('buildParameterTree', () => { const parameters = mockSimpleParameters; // When - const tree = buildParameterTree(parameters); + const tree = buildParameterTreeV2(parameters); // Then expect(tree).toBeDefined(); @@ -325,39 +277,3 @@ describe('buildParameterTree', () => { }); }); -describe('convertMetadataToParameterTree', () => { - test('given metadata API payload then extracts parameters and builds tree', () => { - // Given - const metadata = mockMetadataApiPayload; - - // When - const tree = convertMetadataToParameterTree(metadata); - - // Then - expect(tree).toBeDefined(); - expectNodeToHaveLabel(tree, EXPECTED_GOV_LABEL); - expectNodeToHaveChildren(tree, EXPECTED_TWO_CHILDREN); - - // Verify it used the parameters from the metadata - const incomeTaxNode = findNodeByName(tree, 'gov.tax.income_tax'); - expect(incomeTaxNode).toBeDefined(); - expect(incomeTaxNode?.description).toBe(TEST_DESCRIPTION); - }); - - test('given metadata with empty parameters then returns undefined', () => { - // Given - const metadata = { - ...mockMetadataApiPayload, - result: { - ...mockMetadataApiPayload.result, - parameters: {}, - }, - }; - - // When - const tree = convertMetadataToParameterTree(metadata); - - // Then - expect(tree).toBeUndefined(); - }); -}); diff --git a/app/src/tests/unit/libs/metadataUtils.test.ts b/app/src/tests/unit/libs/metadataUtils.test.ts index 2a10a2e92..180befd65 100644 --- a/app/src/tests/unit/libs/metadataUtils.test.ts +++ b/app/src/tests/unit/libs/metadataUtils.test.ts @@ -1,16 +1,9 @@ import { describe, expect, it } from 'vitest'; -import { - getFieldLabel, - getFieldOptions, - isDropdownField, - transformMetadataPayload, -} from '@/libs/metadataUtils'; +import { getFieldLabel, getFieldOptions, isDropdownField } from '@/libs/metadataUtils'; import type { RootState } from '@/store'; import { EXPECTED_LABELS, - mockMetadataPayload, - mockMinimalPayload, - mockStateWithMetadata, + mockStateWithVariables, TEST_FIELD_NAMES, } from '@/tests/fixtures/libs/metadataUtilsMocks'; @@ -18,7 +11,7 @@ describe('metadataUtils', () => { describe('isDropdownField', () => { it('given state_name with possibleValues then returns true', () => { // Given - const state = mockStateWithMetadata() as RootState; + const state = mockStateWithVariables() as RootState; // When const result = isDropdownField(state, TEST_FIELD_NAMES.STATE_NAME); @@ -29,7 +22,7 @@ describe('metadataUtils', () => { it('given region with possibleValues then returns true', () => { // Given - const state = mockStateWithMetadata() as RootState; + const state = mockStateWithVariables() as RootState; // When const result = isDropdownField(state, TEST_FIELD_NAMES.REGION); @@ -40,7 +33,7 @@ describe('metadataUtils', () => { it('given brma with possibleValues then returns true', () => { // Given - const state = mockStateWithMetadata() as RootState; + const state = mockStateWithVariables() as RootState; // When const result = isDropdownField(state, TEST_FIELD_NAMES.BRMA); @@ -51,7 +44,7 @@ describe('metadataUtils', () => { it('given local_authority with possibleValues then returns true', () => { // Given - const state = mockStateWithMetadata() as RootState; + const state = mockStateWithVariables() as RootState; // When const result = isDropdownField(state, TEST_FIELD_NAMES.LOCAL_AUTHORITY); @@ -62,7 +55,7 @@ describe('metadataUtils', () => { it('given age without possibleValues then returns false', () => { // Given - const state = mockStateWithMetadata() as RootState; + const state = mockStateWithVariables() as RootState; // When const result = isDropdownField(state, TEST_FIELD_NAMES.AGE); @@ -73,7 +66,7 @@ describe('metadataUtils', () => { it('given employment_income without possibleValues then returns false', () => { // Given - const state = mockStateWithMetadata() as RootState; + const state = mockStateWithVariables() as RootState; // When const result = isDropdownField(state, TEST_FIELD_NAMES.EMPLOYMENT_INCOME); @@ -84,7 +77,7 @@ describe('metadataUtils', () => { it('given unknown field then returns false', () => { // Given - const state = mockStateWithMetadata() as RootState; + const state = mockStateWithVariables() as RootState; // When const result = isDropdownField(state, 'unknown_field'); @@ -97,7 +90,7 @@ describe('metadataUtils', () => { describe('getFieldOptions', () => { it('given field with possibleValues then returns options array', () => { // Given - const state = mockStateWithMetadata() as RootState; + const state = mockStateWithVariables() as RootState; const fieldName = TEST_FIELD_NAMES.STATE_NAME; // When @@ -112,7 +105,7 @@ describe('metadataUtils', () => { it('given field without possibleValues then returns empty array', () => { // Given - const state = mockStateWithMetadata() as RootState; + const state = mockStateWithVariables() as RootState; const fieldName = TEST_FIELD_NAMES.AGE; // When @@ -124,7 +117,7 @@ describe('metadataUtils', () => { it('given region field then returns region options from possibleValues', () => { // Given - const state = mockStateWithMetadata() as RootState; + const state = mockStateWithVariables() as RootState; const fieldName = TEST_FIELD_NAMES.REGION; // When @@ -139,7 +132,7 @@ describe('metadataUtils', () => { it('given nonexistent field then returns empty array', () => { // Given - const state = mockStateWithMetadata() as RootState; + const state = mockStateWithVariables() as RootState; const fieldName = 'nonexistent_field'; // When @@ -184,56 +177,4 @@ describe('metadataUtils', () => { }); }); - describe('transformMetadataPayload', () => { - it('given valid payload then transforms correctly', () => { - // Given - const payload = mockMetadataPayload(); - - // When - const result = transformMetadataPayload(payload, 'us'); - - // Then - only API-driven data is included - expect(result.currentCountry).toBe('us'); - expect(result.version).toBe('1.0.0'); - expect(result.parameterTree).toBeNull(); - expect(result.variables).toHaveProperty('age'); - expect(result.variables).toHaveProperty('state_name'); - expect(result.variables.state_name.possible_values).toBeDefined(); - // Static data (entities, basicInputs, economyOptions, etc.) is no longer returned - }); - - it('given missing economy_options then datasets uses empty array', () => { - // Given - const payload = mockMinimalPayload(); - - // When - const result = transformMetadataPayload(payload, 'us'); - - // Then - datasets is extracted from economy_options - expect(result.datasets).toEqual([]); - }); - - it('given parameterTree in payload then sets to null', () => { - // Given - const payload = mockMinimalPayload(); - - // When - const result = transformMetadataPayload(payload, 'us'); - - // Then - expect(result.parameterTree).toBeNull(); - }); - - it('given payload with datasets then extracts datasets', () => { - // Given - const payload = mockMetadataPayload(); - - // When - const result = transformMetadataPayload(payload, 'us'); - - // Then - expect(result.datasets).toBeDefined(); - expect(Array.isArray(result.datasets)).toBe(true); - }); - }); }); diff --git a/app/src/tests/unit/reducers/metadataReducer.test.ts b/app/src/tests/unit/reducers/metadataReducer.test.ts index d7be37a9a..d22f40907 100644 --- a/app/src/tests/unit/reducers/metadataReducer.test.ts +++ b/app/src/tests/unit/reducers/metadataReducer.test.ts @@ -139,7 +139,7 @@ describe('metadataReducer', () => { }, }; - vi.mocked(buildParameterTreeModule.buildParameterTree).mockReturnValue(MOCK_PARAMETER_TREE); + vi.mocked(buildParameterTreeModule.buildParameterTreeV2).mockReturnValue(MOCK_PARAMETER_TREE); const state = metadataReducer(initialState, action); @@ -186,7 +186,7 @@ describe('metadataReducer', () => { expect(state.loading).toBe(true); // Receive data - vi.mocked(buildParameterTreeModule.buildParameterTree).mockReturnValue(MOCK_PARAMETER_TREE); + vi.mocked(buildParameterTreeModule.buildParameterTreeV2).mockReturnValue(MOCK_PARAMETER_TREE); state = metadataReducer(state, { type: fetchMetadataThunk.fulfilled.type, payload: { diff --git a/app/src/types/metadata.ts b/app/src/types/metadata.ts index fcf8ca65a..3abd9894e 100644 --- a/app/src/types/metadata.ts +++ b/app/src/types/metadata.ts @@ -70,33 +70,6 @@ export interface MetadataRegionEntry { state_name?: string; } -export interface MetadataApiPayload { - status: string; - message: string | null; - result: { - variables: Record; - parameters: Record; - entities: Record; - variableModules: Record; - economy_options: { - region: MetadataRegionEntry[]; - time_period: Array<{ name: number; label: string }>; - datasets: Array<{ - name: string; - label: string; - title: string; - default: boolean; - }>; - }; - current_law_id: number; - basicInputs: string[]; - modelled_policies: { - core: Record; - filtered: Record; - }; - version: string; - }; -} /** * Variable metadata - represents a variable in the tax-benefit model From 74e69a6811754cf9c92332a9c91e1f18a555d2d2 Mon Sep 17 00:00:00 2001 From: Anthony Volk Date: Tue, 20 Jan 2026 13:07:43 +0300 Subject: [PATCH 29/32] fix: Simplify metadata handler --- .../household/HouseholdSummaryCard.tsx | 20 +++----------- .../household/VariableArithmetic.tsx | 26 +++++------------- app/src/hooks/useMetadata.ts | 22 ++++++++++++++- .../pages/report-output/HouseholdOverview.tsx | 23 +++------------- .../BaselineAndReformChart.tsx | 19 ++++--------- .../earnings-variation/BaselineOnlyChart.tsx | 18 +++---------- .../EarningsVariationSubPage.tsx | 23 +++++----------- .../MarginalTaxRatesSubPage.tsx | 17 +++--------- .../net-income/NetIncomeSubPage.tsx | 27 +++---------------- app/vite.config.mjs | 9 +++++++ 10 files changed, 69 insertions(+), 135 deletions(-) diff --git a/app/src/components/household/HouseholdSummaryCard.tsx b/app/src/components/household/HouseholdSummaryCard.tsx index 82ee682f7..0479f6002 100644 --- a/app/src/components/household/HouseholdSummaryCard.tsx +++ b/app/src/components/household/HouseholdSummaryCard.tsx @@ -1,13 +1,9 @@ -import { useMemo } from 'react'; -import { useSelector } from 'react-redux'; import { Box, Stack, Text } from '@mantine/core'; import { colors, spacing, typography } from '@/designTokens'; -import { useCurrentCountry } from '@/hooks/useCurrentCountry'; -import { useEntities } from '@/hooks/useStaticMetadata'; -import { RootState } from '@/store'; +import { useHouseholdMetadataContext } from '@/hooks/useMetadata'; import { Household } from '@/types/ingredients/Household'; import { calculateVariableComparison } from '@/utils/householdComparison'; -import { formatVariableValue, HouseholdMetadataContext } from '@/utils/householdValues'; +import { formatVariableValue } from '@/utils/householdValues'; import HouseholdBreakdown from './HouseholdBreakdown'; interface HouseholdSummaryCardProps { @@ -25,17 +21,9 @@ export default function HouseholdSummaryCard({ reform, policyLabels, }: HouseholdSummaryCardProps) { - const countryId = useCurrentCountry(); - const reduxMetadata = useSelector((state: RootState) => state.metadata); - const entities = useEntities(countryId); + const metadataContext = useHouseholdMetadataContext(); - // Build HouseholdMetadataContext - const metadataContext: HouseholdMetadataContext = useMemo( - () => ({ variables: reduxMetadata.variables, entities }), - [reduxMetadata.variables, entities] - ); - - const rootVariable = reduxMetadata.variables.household_net_income; + const rootVariable = metadataContext.variables.household_net_income; if (!rootVariable) { return ( diff --git a/app/src/components/household/VariableArithmetic.tsx b/app/src/components/household/VariableArithmetic.tsx index ebce2722f..41a0c02a7 100644 --- a/app/src/components/household/VariableArithmetic.tsx +++ b/app/src/components/household/VariableArithmetic.tsx @@ -1,11 +1,10 @@ -import { useMemo, useState } from 'react'; +import { useState } from 'react'; import { IconCircleMinus, IconCirclePlus, IconTriangleFilled } from '@tabler/icons-react'; import { useSelector } from 'react-redux'; import { ActionIcon, Box, Group, Text } from '@mantine/core'; import { spacing, typography } from '@/designTokens'; -import { useCurrentCountry } from '@/hooks/useCurrentCountry'; +import { useHouseholdMetadataContext } from '@/hooks/useMetadata'; import { useReportYear } from '@/hooks/useReportYear'; -import { useEntities } from '@/hooks/useStaticMetadata'; import { RootState } from '@/store'; import { Household } from '@/types/ingredients/Household'; import { calculateVariableComparison } from '@/utils/householdComparison'; @@ -14,7 +13,6 @@ import { getVariableDisplayText } from '@/utils/householdDisplayText'; import { formatVariableValue, getParameterAtInstant, - HouseholdMetadataContext, shouldShowVariable, } from '@/utils/householdValues'; @@ -43,20 +41,10 @@ export default function VariableArithmetic({ }: VariableArithmeticProps) { const [expanded, setExpanded] = useState(defaultExpanded); const reportYear = useReportYear(); - const countryId = useCurrentCountry(); - const reduxMetadata = useSelector((state: RootState) => state.metadata); - const entities = useEntities(countryId); - - // Build HouseholdMetadataContext by combining Redux variables with static entities - const metadataContext: HouseholdMetadataContext = useMemo( - () => ({ - variables: reduxMetadata.variables, - entities, - }), - [reduxMetadata.variables, entities] - ); + const metadataContext = useHouseholdMetadataContext(); + const parameters = useSelector((state: RootState) => state.metadata.parameters); - const variable = reduxMetadata.variables[variableName]; + const variable = metadataContext.variables[variableName]; if (!variable) { return null; } @@ -72,7 +60,7 @@ export default function VariableArithmetic({ if (variable.adds) { if (typeof variable.adds === 'string') { // It's a parameter name - resolve it - const parameter = reduxMetadata.parameters[variable.adds]; + const parameter = parameters[variable.adds]; if (parameter) { addsArray = getParameterAtInstant(parameter, `${reportYear}-01-01`) || []; } @@ -84,7 +72,7 @@ export default function VariableArithmetic({ if (variable.subtracts) { if (typeof variable.subtracts === 'string') { // It's a parameter name - resolve it - const parameter = reduxMetadata.parameters[variable.subtracts]; + const parameter = parameters[variable.subtracts]; if (parameter) { subtractsArray = getParameterAtInstant(parameter, `${reportYear}-01-01`) || []; } diff --git a/app/src/hooks/useMetadata.ts b/app/src/hooks/useMetadata.ts index 1774f5093..d1d0625fc 100644 --- a/app/src/hooks/useMetadata.ts +++ b/app/src/hooks/useMetadata.ts @@ -1,7 +1,10 @@ -import { useEffect } from 'react'; +import { useEffect, useMemo } from 'react'; import { useDispatch, useSelector } from 'react-redux'; +import { useCurrentCountry } from '@/hooks/useCurrentCountry'; +import { useEntities } from '@/hooks/useStaticMetadata'; import { fetchMetadataThunk } from '@/reducers/metadataReducer'; import { AppDispatch, RootState } from '@/store'; +import { HouseholdMetadataContext } from '@/utils/householdValues'; /** * Selects metadata loading state from Redux. @@ -37,3 +40,20 @@ export function useFetchMetadata(countryId: string): void { } }, [countryId, loading, loaded, currentCountry, dispatch]); } + +/** + * Hook that builds a HouseholdMetadataContext by combining Redux variables with static entities. + * Use this to get the metadata context needed for household value extraction utilities. + * + * @returns HouseholdMetadataContext with variables and entities + */ +export function useHouseholdMetadataContext(): HouseholdMetadataContext { + const countryId = useCurrentCountry(); + const reduxMetadata = useSelector((state: RootState) => state.metadata); + const entities = useEntities(countryId); + + return useMemo( + () => ({ variables: reduxMetadata.variables, entities }), + [reduxMetadata.variables, entities] + ); +} diff --git a/app/src/pages/report-output/HouseholdOverview.tsx b/app/src/pages/report-output/HouseholdOverview.tsx index fec80f357..1091ffaf1 100644 --- a/app/src/pages/report-output/HouseholdOverview.tsx +++ b/app/src/pages/report-output/HouseholdOverview.tsx @@ -1,17 +1,13 @@ -import { useMemo } from 'react'; import { IconChevronDown, IconChevronRight, IconWallet } from '@tabler/icons-react'; -import { useSelector } from 'react-redux'; import { Box, Collapse, Group, Stack, Text, UnstyledButton } from '@mantine/core'; import { useDisclosure } from '@mantine/hooks'; import HouseholdBreakdown from '@/components/household/HouseholdBreakdown'; import MetricCard from '@/components/report/MetricCard'; import { colors, spacing, typography } from '@/designTokens'; -import { useCurrentCountry } from '@/hooks/useCurrentCountry'; -import { useEntities } from '@/hooks/useStaticMetadata'; -import { RootState } from '@/store'; +import { useHouseholdMetadataContext } from '@/hooks/useMetadata'; import { Household } from '@/types/ingredients/Household'; import { calculateVariableComparison } from '@/utils/householdComparison'; -import { formatVariableValue, HouseholdMetadataContext } from '@/utils/householdValues'; +import { formatVariableValue } from '@/utils/householdValues'; interface HouseholdOverviewProps { outputs: Household[]; @@ -31,20 +27,9 @@ const HERO_ICON_SIZE = 48; */ export default function HouseholdOverview({ outputs, policyLabels }: HouseholdOverviewProps) { const [breakdownOpen, { toggle: toggleBreakdown }] = useDisclosure(false); - const countryId = useCurrentCountry(); - const reduxMetadata = useSelector((state: RootState) => state.metadata); - const entities = useEntities(countryId); - - // Build HouseholdMetadataContext by combining Redux variables with static entities - const metadataContext: HouseholdMetadataContext = useMemo( - () => ({ - variables: reduxMetadata.variables, - entities, - }), - [reduxMetadata.variables, entities] - ); + const metadataContext = useHouseholdMetadataContext(); - const rootVariable = reduxMetadata.variables.household_net_income; + const rootVariable = metadataContext.variables.household_net_income; if (!rootVariable) { return ( diff --git a/app/src/pages/report-output/earnings-variation/BaselineAndReformChart.tsx b/app/src/pages/report-output/earnings-variation/BaselineAndReformChart.tsx index f7ddf7312..511d33220 100644 --- a/app/src/pages/report-output/earnings-variation/BaselineAndReformChart.tsx +++ b/app/src/pages/report-output/earnings-variation/BaselineAndReformChart.tsx @@ -1,14 +1,12 @@ -import { useMemo, useState } from 'react'; +import { useState } from 'react'; import type { Layout } from 'plotly.js'; import Plot from 'react-plotly.js'; -import { useSelector } from 'react-redux'; import { Group, Radio, Stack } from '@mantine/core'; import { useMediaQuery, useViewportSize } from '@mantine/hooks'; import { colors } from '@/designTokens'; import { spacing } from '@/designTokens/spacing'; import { useCurrentCountry } from '@/hooks/useCurrentCountry'; -import { useEntities } from '@/hooks/useStaticMetadata'; -import type { RootState } from '@/store'; +import { useHouseholdMetadataContext } from '@/hooks/useMetadata'; import type { Household } from '@/types/ingredients/Household'; import { DEFAULT_CHART_CONFIG, @@ -16,7 +14,7 @@ import { getClampedChartHeight, } from '@/utils/chartUtils'; import { currencySymbol, localeCode } from '@/utils/formatters'; -import { getValueFromHousehold, HouseholdMetadataContext } from '@/utils/householdValues'; +import { getValueFromHousehold } from '@/utils/householdValues'; interface Props { baseline: Household; @@ -47,17 +45,10 @@ export default function BaselineAndReformChart({ const mobile = useMediaQuery('(max-width: 768px)'); const { height: viewportHeight } = useViewportSize(); const countryId = useCurrentCountry(); - const reduxMetadata = useSelector((state: RootState) => state.metadata); - const entities = useEntities(countryId); + const metadataContext = useHouseholdMetadataContext(); const chartHeight = getClampedChartHeight(viewportHeight, mobile); - // Build HouseholdMetadataContext - const metadataContext: HouseholdMetadataContext = useMemo( - () => ({ variables: reduxMetadata.variables, entities }), - [reduxMetadata.variables, entities] - ); - - const variable = reduxMetadata.variables[variableName]; + const variable = metadataContext.variables[variableName]; if (!variable) { return
Variable not found
; } diff --git a/app/src/pages/report-output/earnings-variation/BaselineOnlyChart.tsx b/app/src/pages/report-output/earnings-variation/BaselineOnlyChart.tsx index 79d23a97b..c5b62046f 100644 --- a/app/src/pages/report-output/earnings-variation/BaselineOnlyChart.tsx +++ b/app/src/pages/report-output/earnings-variation/BaselineOnlyChart.tsx @@ -1,12 +1,9 @@ -import { useMemo } from 'react'; import type { Layout } from 'plotly.js'; import Plot from 'react-plotly.js'; -import { useSelector } from 'react-redux'; import { useMediaQuery, useViewportSize } from '@mantine/hooks'; import { colors } from '@/designTokens'; import { useCurrentCountry } from '@/hooks/useCurrentCountry'; -import { useEntities } from '@/hooks/useStaticMetadata'; -import type { RootState } from '@/store'; +import { useHouseholdMetadataContext } from '@/hooks/useMetadata'; import type { Household } from '@/types/ingredients/Household'; import { DEFAULT_CHART_CONFIG, @@ -14,7 +11,7 @@ import { getClampedChartHeight, } from '@/utils/chartUtils'; import { currencySymbol, localeCode } from '@/utils/formatters'; -import { getValueFromHousehold, HouseholdMetadataContext } from '@/utils/householdValues'; +import { getValueFromHousehold } from '@/utils/householdValues'; interface Props { baseline: Household; @@ -36,17 +33,10 @@ export default function BaselineOnlyChart({ const mobile = useMediaQuery('(max-width: 768px)'); const { height: viewportHeight } = useViewportSize(); const countryId = useCurrentCountry(); - const reduxMetadata = useSelector((state: RootState) => state.metadata); - const entities = useEntities(countryId); + const metadataContext = useHouseholdMetadataContext(); const chartHeight = getClampedChartHeight(viewportHeight, mobile); - // Build HouseholdMetadataContext - const metadataContext: HouseholdMetadataContext = useMemo( - () => ({ variables: reduxMetadata.variables, entities }), - [reduxMetadata.variables, entities] - ); - - const variable = reduxMetadata.variables[variableName]; + const variable = metadataContext.variables[variableName]; if (!variable) { return
Variable not found
; } diff --git a/app/src/pages/report-output/earnings-variation/EarningsVariationSubPage.tsx b/app/src/pages/report-output/earnings-variation/EarningsVariationSubPage.tsx index 3b0b67666..9404b8c53 100644 --- a/app/src/pages/report-output/earnings-variation/EarningsVariationSubPage.tsx +++ b/app/src/pages/report-output/earnings-variation/EarningsVariationSubPage.tsx @@ -1,18 +1,16 @@ -import { useMemo, useState } from 'react'; -import { useSelector } from 'react-redux'; +import { useState } from 'react'; import { Group, Select, Stack, Text } from '@mantine/core'; import { PolicyAdapter } from '@/adapters/PolicyAdapter'; import { spacing } from '@/designTokens'; import { useCurrentCountry } from '@/hooks/useCurrentCountry'; import { useHouseholdVariation } from '@/hooks/useHouseholdVariation'; +import { useHouseholdMetadataContext } from '@/hooks/useMetadata'; import { useReportYear } from '@/hooks/useReportYear'; -import { useEntities } from '@/hooks/useStaticMetadata'; -import type { RootState } from '@/store'; import type { Household } from '@/types/ingredients/Household'; import type { Policy } from '@/types/ingredients/Policy'; import type { Simulation } from '@/types/ingredients/Simulation'; import type { UserPolicy } from '@/types/ingredients/UserPolicy'; -import { getValueFromHousehold, HouseholdMetadataContext } from '@/utils/householdValues'; +import { getValueFromHousehold } from '@/utils/householdValues'; import LoadingPage from '../LoadingPage'; import BaselineAndReformChart from './BaselineAndReformChart'; import BaselineOnlyChart from './BaselineOnlyChart'; @@ -42,14 +40,7 @@ export default function EarningsVariationSubPage({ const [selectedVariable, setSelectedVariable] = useState('household_net_income'); const countryId = useCurrentCountry(); const reportYear = useReportYear(); - const reduxMetadata = useSelector((state: RootState) => state.metadata); - const entities = useEntities(countryId); - - // Build HouseholdMetadataContext - const metadataContext: HouseholdMetadataContext = useMemo( - () => ({ variables: reduxMetadata.variables, entities }), - [reduxMetadata.variables, entities] - ); + const metadataContext = useHouseholdMetadataContext(); // Early return if no report year available (shouldn't happen in report output context) if (!reportYear) { @@ -140,9 +131,9 @@ export default function EarningsVariationSubPage({ } // Build variable options (only non-input variables with array values) - const variableOptions = Object.keys(reduxMetadata.variables) + const variableOptions = Object.keys(metadataContext.variables) .filter((varName) => { - const variable = reduxMetadata.variables[varName]; + const variable = metadataContext.variables[varName]; // Exclude input variables and marginal_tax_rate (has its own page) if (!variable || variable.isInputVariable || varName === 'marginal_tax_rate') { return false; @@ -154,7 +145,7 @@ export default function EarningsVariationSubPage({ }) .map((varName) => ({ value: varName, - label: reduxMetadata.variables[varName]?.label || varName, + label: metadataContext.variables[varName]?.label || varName, })); return ( diff --git a/app/src/pages/report-output/marginal-tax-rates/MarginalTaxRatesSubPage.tsx b/app/src/pages/report-output/marginal-tax-rates/MarginalTaxRatesSubPage.tsx index ceb08b02b..aba197795 100644 --- a/app/src/pages/report-output/marginal-tax-rates/MarginalTaxRatesSubPage.tsx +++ b/app/src/pages/report-output/marginal-tax-rates/MarginalTaxRatesSubPage.tsx @@ -1,16 +1,14 @@ -import { useMemo, useState } from 'react'; +import { useState } from 'react'; import type { Layout } from 'plotly.js'; import Plot from 'react-plotly.js'; -import { useSelector } from 'react-redux'; import { Group, Radio, Stack, Text } from '@mantine/core'; import { useMediaQuery, useViewportSize } from '@mantine/hooks'; import { PolicyAdapter } from '@/adapters/PolicyAdapter'; import { colors, spacing } from '@/designTokens'; import { useCurrentCountry } from '@/hooks/useCurrentCountry'; import { useHouseholdVariation } from '@/hooks/useHouseholdVariation'; +import { useHouseholdMetadataContext } from '@/hooks/useMetadata'; import { useReportYear } from '@/hooks/useReportYear'; -import { useEntities } from '@/hooks/useStaticMetadata'; -import type { RootState } from '@/store'; import type { Household } from '@/types/ingredients/Household'; import type { Policy } from '@/types/ingredients/Policy'; import type { Simulation } from '@/types/ingredients/Simulation'; @@ -21,7 +19,7 @@ import { getClampedChartHeight, } from '@/utils/chartUtils'; import { currencySymbol, localeCode } from '@/utils/formatters'; -import { getValueFromHousehold, HouseholdMetadataContext } from '@/utils/householdValues'; +import { getValueFromHousehold } from '@/utils/householdValues'; import LoadingPage from '../LoadingPage'; interface Props { @@ -53,16 +51,9 @@ export default function MarginalTaxRatesSubPage({ const { height: viewportHeight } = useViewportSize(); const countryId = useCurrentCountry(); const reportYear = useReportYear(); - const reduxMetadata = useSelector((state: RootState) => state.metadata); - const entities = useEntities(countryId); + const metadataContext = useHouseholdMetadataContext(); const chartHeight = getClampedChartHeight(viewportHeight, mobile); - // Build HouseholdMetadataContext - const metadataContext: HouseholdMetadataContext = useMemo( - () => ({ variables: reduxMetadata.variables, entities }), - [reduxMetadata.variables, entities] - ); - // Early return if no report year available (shouldn't happen in report output context) if (!reportYear) { return ( diff --git a/app/src/pages/report-output/net-income/NetIncomeSubPage.tsx b/app/src/pages/report-output/net-income/NetIncomeSubPage.tsx index 52fb9ffc0..83006ff4d 100644 --- a/app/src/pages/report-output/net-income/NetIncomeSubPage.tsx +++ b/app/src/pages/report-output/net-income/NetIncomeSubPage.tsx @@ -1,18 +1,10 @@ -import { useMemo } from 'react'; -import { useSelector } from 'react-redux'; import { Stack, Text, Title } from '@mantine/core'; import VariableArithmetic from '@/components/household/VariableArithmetic'; import { spacing } from '@/designTokens'; -import { useCurrentCountry } from '@/hooks/useCurrentCountry'; +import { useHouseholdMetadataContext } from '@/hooks/useMetadata'; import { useReportYear } from '@/hooks/useReportYear'; -import { useEntities } from '@/hooks/useStaticMetadata'; -import type { RootState } from '@/store'; import type { Household } from '@/types/ingredients/Household'; -import { - formatVariableValue, - getValueFromHousehold, - HouseholdMetadataContext, -} from '@/utils/householdValues'; +import { formatVariableValue, getValueFromHousehold } from '@/utils/householdValues'; interface Props { baseline: Household; @@ -25,22 +17,11 @@ interface Props { * Supports both single mode (baseline only) and comparison mode (baseline vs reform) */ export default function NetIncomeSubPage({ baseline, reform }: Props) { - const countryId = useCurrentCountry(); - const reduxMetadata = useSelector((state: RootState) => state.metadata); - const entities = useEntities(countryId); + const metadataContext = useHouseholdMetadataContext(); const reportYear = useReportYear(); - // Build HouseholdMetadataContext by combining Redux variables with static entities - const metadataContext: HouseholdMetadataContext = useMemo( - () => ({ - variables: reduxMetadata.variables, - entities, - }), - [reduxMetadata.variables, entities] - ); - // Check if we have the household_net_income variable - const netIncomeVariable = reduxMetadata.variables.household_net_income; + const netIncomeVariable = metadataContext.variables.household_net_income; if (!netIncomeVariable) { return ( diff --git a/app/vite.config.mjs b/app/vite.config.mjs index 4868b1f75..74a38345d 100644 --- a/app/vite.config.mjs +++ b/app/vite.config.mjs @@ -105,5 +105,14 @@ export default defineConfig({ globals: true, environment: 'jsdom', setupFiles: './vitest.setup.mjs', + testTimeout: 30000, // 30 seconds per test (increased from default 5s) + hookTimeout: 30000, // 30 seconds for setup/teardown hooks + pool: 'forks', // Use process forks for better isolation + poolOptions: { + forks: { + singleFork: false, // Use multiple forks for parallelization + isolate: true, // Isolate each test file + }, + }, }, }); From bba58dca81f4d93c63e2123bb95854e6f6596d77 Mon Sep 17 00:00:00 2001 From: Anthony Volk Date: Tue, 20 Jan 2026 15:13:39 +0300 Subject: [PATCH 30/32] fix: Remove deprecated variable handling; chore: Lint --- app/src/adapters/MetadataAdapter.ts | 29 ++++----- app/src/api/v2/datasets.ts | 8 +-- app/src/api/v2/index.ts | 10 +-- app/src/api/v2/parameterValues.ts | 14 ++--- app/src/api/v2/parameters.ts | 6 +- app/src/api/v2/taxBenefitModels.ts | 16 ++--- app/src/api/v2/variables.ts | 6 +- .../household/VariableArithmetic.tsx | 6 +- .../components/household/VariableInput.tsx | 21 ++++--- .../household/VariableSearchDropdown.tsx | 4 +- app/src/data/static/basicInputs.ts | 12 +--- app/src/data/static/index.ts | 16 ++--- app/src/data/static/regions/resolver.ts | 17 ++---- .../data/static/regions/uk/constituencies.ts | 4 +- .../static/regions/uk/localAuthorities.ts | 4 +- .../regions/us/congressionalDistricts.ts | 14 ++--- app/src/hooks/useBasicInputFields.ts | 6 +- app/src/hooks/useParameterValues.ts | 32 ++++------ app/src/hooks/useRegions.ts | 7 +-- app/src/hooks/useStaticMetadata.ts | 13 ++-- app/src/libs/buildParameterTree.ts | 10 +-- app/src/libs/metadataUtils.ts | 1 - .../BaselineAndReformChart.tsx | 8 ++- .../earnings-variation/BaselineOnlyChart.tsx | 8 ++- .../EarningsVariationSubPage.tsx | 14 +++-- .../PolicyParameterSelectorMain.tsx | 2 +- .../views/population/HouseholdBuilderView.tsx | 2 +- app/src/reducers/metadataReducer.ts | 29 +++------ app/src/tests/fixtures/api/v2/apiV2Mocks.ts | 15 +++-- .../tests/fixtures/hooks/useMetadataMocks.ts | 32 ++++++++-- .../fixtures/libs/buildParameterTreeMocks.ts | 1 - .../fixtures/reducers/metadataReducerMocks.ts | 6 +- .../utils/householdValidationMocks.ts | 47 ++++---------- .../fixtures/utils/householdValuesMocks.ts | 24 ++++---- .../unit/adapters/MetadataAdapter.test.ts | 14 ++--- app/src/tests/unit/api/v2/datasets.test.ts | 13 ++-- .../tests/unit/api/v2/parameterValues.test.ts | 11 ++-- app/src/tests/unit/api/v2/parameters.test.ts | 13 ++-- .../unit/api/v2/taxBenefitModels.test.ts | 61 ++++++++----------- app/src/tests/unit/api/v2/variables.test.ts | 13 ++-- .../unit/data/static/basicInputs.test.ts | 6 +- .../tests/unit/data/static/entities.test.ts | 8 +-- .../tests/unit/data/static/taxYears.test.ts | 6 +- .../unit/hooks/useBasicInputFields.test.ts | 13 ++-- app/src/tests/unit/hooks/useMetadata.test.ts | 24 +++++--- .../unit/hooks/useParameterValues.test.ts | 24 +++----- .../unit/hooks/useStaticMetadata.test.ts | 17 +++--- .../unit/libs/buildParameterTree.test.ts | 3 - app/src/tests/unit/libs/metadataUtils.test.ts | 1 - .../report-output/PolicySubPage.test.tsx | 2 +- .../unit/reducers/metadataReducer.test.ts | 12 +--- .../routing/guards/MetadataGuard.test.tsx | 19 +++--- .../unit/utils/HouseholdValidation.test.ts | 4 +- .../tests/unit/utils/householdValues.test.ts | 38 +++++++----- app/src/types/metadata.ts | 31 ++++++---- app/src/utils/HouseholdValidation.ts | 6 +- app/src/utils/VariableResolver.ts | 48 ++++++--------- app/src/utils/geographyUtils.ts | 5 +- app/src/utils/householdValues.ts | 8 +-- 59 files changed, 396 insertions(+), 448 deletions(-) diff --git a/app/src/adapters/MetadataAdapter.ts b/app/src/adapters/MetadataAdapter.ts index b265f15f6..f62cd0537 100644 --- a/app/src/adapters/MetadataAdapter.ts +++ b/app/src/adapters/MetadataAdapter.ts @@ -1,12 +1,12 @@ import { - V2VariableMetadata, - V2ParameterMetadata, + ParameterMetadata, V2DatasetMetadata, + V2ParameterMetadata, V2ParameterValueMetadata, + V2VariableMetadata, VariableMetadata, - ParameterMetadata, -} from "@/types/metadata"; -import { ValuesList } from "@/types/subIngredients/valueInterval"; +} from '@/types/metadata'; +import { ValuesList } from '@/types/subIngredients/valueInterval'; /** * Dataset type used in the frontend (simplified from V2DatasetMetadata) @@ -35,19 +35,16 @@ export class MetadataAdapter { possible_values: v2.possible_values, tax_benefit_model_version_id: v2.tax_benefit_model_version_id, created_at: v2.created_at, - // Generate label from name if not provided - label: v2.name - .replace(/_/g, " ") - .replace(/\b\w/g, (c: string) => c.toUpperCase()), + // Auto-generate label from name (sentence case) + // TODO: V2 API should provide labels like V1 API did + label: v2.name.replace(/_/g, ' ').replace(/^./, (c: string) => c.toUpperCase()), }; } /** * Convert V2 variables array to a keyed record */ - static variablesFromV2( - variables: V2VariableMetadata[] - ): Record { + static variablesFromV2(variables: V2VariableMetadata[]): Record { const record: Record = {}; for (const v of variables) { record[v.name] = MetadataAdapter.variableFromV2(v); @@ -69,7 +66,7 @@ export class MetadataAdapter { tax_benefit_model_version_id: p.tax_benefit_model_version_id, created_at: p.created_at, parameter: p.name, // Use name as parameter path - type: "parameter", + type: 'parameter', values: {}, // Parameter values are fetched on-demand }; } @@ -77,9 +74,7 @@ export class MetadataAdapter { /** * Convert V2 parameters array to a keyed record */ - static parametersFromV2( - parameters: V2ParameterMetadata[] - ): Record { + static parametersFromV2(parameters: V2ParameterMetadata[]): Record { const record: Record = {}; for (const p of parameters) { record[p.name] = MetadataAdapter.parameterFromV2(p); @@ -119,7 +114,7 @@ export class MetadataAdapter { const valuesList: ValuesList = {}; for (const v of values) { // Convert ISO timestamp (e.g., "2025-01-01T00:00:00") to date string (e.g., "2025-01-01") - const dateKey = v.start_date.split("T")[0]; + const dateKey = v.start_date.split('T')[0]; valuesList[dateKey] = v.value_json; } return valuesList; diff --git a/app/src/api/v2/datasets.ts b/app/src/api/v2/datasets.ts index bcd766bc8..cf5446012 100644 --- a/app/src/api/v2/datasets.ts +++ b/app/src/api/v2/datasets.ts @@ -1,14 +1,12 @@ -import { API_V2_BASE_URL, getModelName } from "./taxBenefitModels"; -import type { V2DatasetMetadata } from "@/types/metadata"; +import type { V2DatasetMetadata } from '@/types/metadata'; +import { API_V2_BASE_URL, getModelName } from './taxBenefitModels'; /** * Fetch all datasets for a country */ export async function fetchDatasets(countryId: string): Promise { const modelName = getModelName(countryId); - const res = await fetch( - `${API_V2_BASE_URL}/datasets/?tax_benefit_model_name=${modelName}`, - ); + const res = await fetch(`${API_V2_BASE_URL}/datasets/?tax_benefit_model_name=${modelName}`); if (!res.ok) { throw new Error(`Failed to fetch datasets for ${countryId}`); diff --git a/app/src/api/v2/index.ts b/app/src/api/v2/index.ts index 4ac7f2475..14b009cf8 100644 --- a/app/src/api/v2/index.ts +++ b/app/src/api/v2/index.ts @@ -8,16 +8,16 @@ export { fetchModelVersionId, type TaxBenefitModel, type TaxBenefitModelVersion, -} from "./taxBenefitModels"; +} from './taxBenefitModels'; // Variables -export { fetchVariables } from "./variables"; +export { fetchVariables } from './variables'; // Parameters -export { fetchParameters } from "./parameters"; +export { fetchParameters } from './parameters'; // Parameter values (on-demand fetching) -export { fetchParameterValues, BASELINE_POLICY_ID } from "./parameterValues"; +export { fetchParameterValues, BASELINE_POLICY_ID } from './parameterValues'; // Datasets -export { fetchDatasets } from "./datasets"; +export { fetchDatasets } from './datasets'; diff --git a/app/src/api/v2/parameterValues.ts b/app/src/api/v2/parameterValues.ts index d1e0c6723..622c06b8a 100644 --- a/app/src/api/v2/parameterValues.ts +++ b/app/src/api/v2/parameterValues.ts @@ -1,12 +1,12 @@ -import { API_V2_BASE_URL } from "./taxBenefitModels"; -import type { V2ParameterValueMetadata } from "@/types/metadata"; +import type { V2ParameterValueMetadata } from '@/types/metadata'; +import { API_V2_BASE_URL } from './taxBenefitModels'; /** * Special constant to indicate baseline (current law) values. * Baseline values have policy_id = null in the database. * When fetching baseline values, we omit the policy_id parameter entirely. */ -export const BASELINE_POLICY_ID = "baseline" as const; +export const BASELINE_POLICY_ID = 'baseline' as const; /** * Fetch parameter values for a specific parameter and policy. @@ -23,17 +23,15 @@ export async function fetchParameterValues( policyId: string ): Promise { const params = new URLSearchParams(); - params.set("parameter_id", parameterId); + params.set('parameter_id', parameterId); // For baseline (current law), omit policy_id to get values where policy_id IS NULL // For reform policies, include the actual policy UUID if (policyId !== BASELINE_POLICY_ID) { - params.set("policy_id", policyId); + params.set('policy_id', policyId); } - const res = await fetch( - `${API_V2_BASE_URL}/parameter-values/?${params.toString()}` - ); + const res = await fetch(`${API_V2_BASE_URL}/parameter-values/?${params.toString()}`); if (!res.ok) { throw new Error( diff --git a/app/src/api/v2/parameters.ts b/app/src/api/v2/parameters.ts index 3cc67fe69..87bc7a9e9 100644 --- a/app/src/api/v2/parameters.ts +++ b/app/src/api/v2/parameters.ts @@ -1,5 +1,5 @@ -import { API_V2_BASE_URL, getModelName } from "./taxBenefitModels"; -import type { V2ParameterMetadata } from "@/types/metadata"; +import type { V2ParameterMetadata } from '@/types/metadata'; +import { API_V2_BASE_URL, getModelName } from './taxBenefitModels'; /** * Fetch all parameters for a country. @@ -7,7 +7,7 @@ import type { V2ParameterMetadata } from "@/types/metadata"; export async function fetchParameters(countryId: string): Promise { const modelName = getModelName(countryId); const res = await fetch( - `${API_V2_BASE_URL}/parameters/?tax_benefit_model_name=${modelName}&limit=10000`, + `${API_V2_BASE_URL}/parameters/?tax_benefit_model_name=${modelName}&limit=10000` ); if (!res.ok) { diff --git a/app/src/api/v2/taxBenefitModels.ts b/app/src/api/v2/taxBenefitModels.ts index aa1a96ff6..562802580 100644 --- a/app/src/api/v2/taxBenefitModels.ts +++ b/app/src/api/v2/taxBenefitModels.ts @@ -1,12 +1,12 @@ -export const API_V2_BASE_URL = "https://v2.api.policyengine.org"; +export const API_V2_BASE_URL = 'https://v2.api.policyengine.org'; /** * Map country IDs to their API model names. * The API uses model names (e.g., "policyengine-us") for filtering. */ export const COUNTRY_TO_MODEL_NAME: Record = { - us: "policyengine-us", - uk: "policyengine-uk", + us: 'policyengine-us', + uk: 'policyengine-uk', }; export interface TaxBenefitModel { @@ -29,7 +29,7 @@ export async function fetchTaxBenefitModels(): Promise { const res = await fetch(`${API_V2_BASE_URL}/tax-benefit-models/`); if (!res.ok) { - throw new Error("Failed to fetch tax benefit models"); + throw new Error('Failed to fetch tax benefit models'); } return res.json(); @@ -63,9 +63,7 @@ export async function fetchModelVersion(countryId: string): Promise { throw new Error(`Model not found for ${countryId}`); } - const versionsRes = await fetch( - `${API_V2_BASE_URL}/tax-benefit-model-versions/`, - ); + const versionsRes = await fetch(`${API_V2_BASE_URL}/tax-benefit-model-versions/`); if (!versionsRes.ok) { throw new Error(`Failed to fetch model versions`); @@ -98,9 +96,7 @@ export async function fetchModelVersionId(countryId: string): Promise { throw new Error(`Model not found for ${countryId}`); } - const versionsRes = await fetch( - `${API_V2_BASE_URL}/tax-benefit-model-versions/`, - ); + const versionsRes = await fetch(`${API_V2_BASE_URL}/tax-benefit-model-versions/`); if (!versionsRes.ok) { throw new Error(`Failed to fetch model versions`); diff --git a/app/src/api/v2/variables.ts b/app/src/api/v2/variables.ts index 4848d38ff..b5b5ad5cc 100644 --- a/app/src/api/v2/variables.ts +++ b/app/src/api/v2/variables.ts @@ -1,5 +1,5 @@ -import { API_V2_BASE_URL, getModelName } from "./taxBenefitModels"; -import type { V2VariableMetadata } from "@/types/metadata"; +import type { V2VariableMetadata } from '@/types/metadata'; +import { API_V2_BASE_URL, getModelName } from './taxBenefitModels'; /** * Fetch all variables for a country. @@ -7,7 +7,7 @@ import type { V2VariableMetadata } from "@/types/metadata"; export async function fetchVariables(countryId: string): Promise { const modelName = getModelName(countryId); const res = await fetch( - `${API_V2_BASE_URL}/variables/?tax_benefit_model_name=${modelName}&limit=10000`, + `${API_V2_BASE_URL}/variables/?tax_benefit_model_name=${modelName}&limit=10000` ); if (!res.ok) { diff --git a/app/src/components/household/VariableArithmetic.tsx b/app/src/components/household/VariableArithmetic.tsx index 41a0c02a7..74e7a86e3 100644 --- a/app/src/components/household/VariableArithmetic.tsx +++ b/app/src/components/household/VariableArithmetic.tsx @@ -121,7 +121,11 @@ export default function VariableArithmetic({ } // Get display text and style configuration - const displayText = getVariableDisplayText(variable.label ?? variable.name, comparison, isComparisonMode); + const displayText = getVariableDisplayText( + variable.label ?? variable.name, + comparison, + isComparisonMode + ); const styleConfig = getDisplayStyleConfig(isComparisonMode, comparison.direction, isAdd); // Create arrow element based on configuration (hide if no change) diff --git a/app/src/components/household/VariableInput.tsx b/app/src/components/household/VariableInput.tsx index bac3d86c0..01ebe70f4 100644 --- a/app/src/components/household/VariableInput.tsx +++ b/app/src/components/household/VariableInput.tsx @@ -1,7 +1,7 @@ /** * VariableInput - Renders the appropriate input control based on variable metadata * - * Dynamically selects NumberInput, Select, Switch, or TextInput based on valueType. + * Dynamically selects NumberInput, Select, Switch, or TextInput based on data_type. * Uses VariableResolver for entity-aware value getting/setting. */ @@ -38,12 +38,11 @@ export default function VariableInput({ // Get formatting props for number inputs const formattingProps = getInputFormattingProps({ - valueType: variable.valueType, - unit: variable.unit, + data_type: variable.dataType, }); - // Render based on valueType - switch (variable.valueType) { + // Render based on data_type (V2 API field) + switch (variable.dataType) { // Note: Same pattern in ValueInputBox.tsx - extract to shared component if reused again case 'bool': { const isChecked = Boolean(currentValue); @@ -65,15 +64,19 @@ export default function VariableInput({ } case 'Enum': - if (variable.possibleValues && variable.possibleValues.length > 0) { + if ( + variable.possibleValues && + Array.isArray(variable.possibleValues) && + variable.possibleValues.length > 0 + ) { return (